[
  {
    "path": ".bach/bach.info/module-info.java",
    "content": "import com.github.sormuras.bach.api.ProjectInfo;\nimport com.github.sormuras.bach.api.ProjectInfo.Tool;\nimport com.github.sormuras.bach.api.ProjectInfo.Tweak;\n\n@ProjectInfo(\n    version = \"12.3.1\",\n\n    tool = @Tool(\n        tweaks = {@Tweak(\n            tool = \"javac\",\n            with = \"-encoding\",\n            more = \"UTF-8\"\n        ), @Tweak(\n            tool = \"javac\",\n            with = \"--processor-path\",\n            more = \".bach/external-modules/jipsy-processor-1.1.1.jar:.bach/external-modules/org.kordamp.jipsy.annotations.jar\"\n        ), @Tweak(\n            tool = \"javac\",\n            with = \"--default-module-for-created-files\",\n            more = \"org.kordamp.ikonli.core\"\n        ), @Tweak(\n            tool = \"jlink\",\n            with = \"--launcher\",\n            more = \"browxer=org.kordamp.ikonli.browser/org.kordamp.ikonli.browser.Launcher\"\n        )}\n    )\n)\nmodule bach.info {\n    requires com.github.sormuras.bach;\n}"
  },
  {
    "path": ".github/FUNDING.yml",
    "content": "patreon: aalmiray\ngithub: aalmiray\ntidelift: \"maven/org.kordamp.ikonli:ikonli-core\"\n"
  },
  {
    "path": ".github/workflows/build.yml",
    "content": "name: Build\n\non:\n  pull_request:\n\njobs:\n  build:\n    name: Build\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [ ubuntu-latest, macos-13, windows-latest ]\n    runs-on: ${{ matrix.os }}\n    if: startsWith(github.event.head_commit.message, 'Releasing version') != true\n\n    steps:\n      - uses: actions/checkout@v4\n\n      - name: Setup Java\n        uses: actions/setup-java@v4\n        with:\n          java-version: 21\n          distribution: zulu\n          cache: gradle\n\n      - name: Build\n        run: ./gradlew build -S\n"
  },
  {
    "path": ".github/workflows/early-access.yml",
    "content": "name: EarlyAccess\n\non:\n  push:\n    branches: [ master ]\n\njobs:\n  precheck:\n    name: Precheck\n    if: startsWith(github.event.head_commit.message, 'Releasing version') != true\n    runs-on: ubuntu-latest\n    outputs:\n      VERSION: ${{ steps.vars.outputs.VERSION }}\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n\n      - name: Cancel previous run\n        uses: styfle/cancel-workflow-action@0.12.1\n        with:\n          access_token: ${{ secrets.GITHUB_TOKEN }}\n\n      - name: Version\n        id: vars\n        shell: bash\n        run: |\n          echo \"VERSION=$(cat VERSION)\" >> $GITHUB_OUTPUT\n\n  build:\n    name: Build\n    needs: [precheck]\n    if: endsWith(${{ needs.precheck.outputs.VERSION }}, '-SNAPSHOT')\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [ ubuntu-latest, macos-13, windows-latest ]\n    runs-on: ${{ matrix.os }}\n    steps:\n      - uses: actions/checkout@v4\n\n      - name: Setup Java\n        uses: actions/setup-java@v4\n        with:\n          java-version: 21\n          distribution: zulu\n          cache: gradle\n\n      - name: Build\n        run: ./gradlew -PreproducibleBuild=true build\n\n      - name: Assemble\n        run: ./gradlew -PreproducibleBuild=true :ikonli-browser:jlinkZip :ikonli-browser:jpackage\n\n      - name: Upload artifacts\n        uses: actions/upload-artifact@v4\n        with:\n          name: artifacts-${{ runner.os }}-${{ runner.arch }}\n          if-no-files-found: ignore\n          retention-days: 1\n          path: |\n            apps/ikonli-browser/build/distributions/ikonli-browser-*.zip\n            apps/ikonli-browser/build/packagers/ikonli-browser-*.rpm\n            apps/ikonli-browser/build/packagers/ikonli-browser-*.dmg\n            apps/ikonli-browser/build/packagers/ikonli-browser-*.exe\n            apps/ikonli-browser/build/packagers/ikonli-browser-*.msi\n            apps/ikonli-browser/build/packagers/ikonli-browser-*.pkg\n            apps/ikonli-browser/build/packagers/ikonli-browser-*.deb\n\n  release:\n    name: Release\n    needs: [precheck, build]\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Download build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          pattern: artifacts-*\n          merge-multiple: true\n          path: artifacts\n\n      - name: Release\n        uses: jreleaser/release-action@v2\n        with:\n          version: early-access\n          arguments: full-release -P artifactsDir=artifacts\n        env:\n          JRELEASER_PROJECT_VERSION: ${{ needs.precheck.outputs.VERSION }}\n          JRELEASER_GITHUB_TOKEN: ${{ secrets.GIT_ACCESS_TOKEN }}\n          JRELEASER_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}\n          JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }}\n          JRELEASER_GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }}\n\n      - name: JReleaser output\n        if: always()\n        uses: actions/upload-artifact@v4\n        with:\n          name: jreleaser-release\n          path: |\n            out/jreleaser/trace.log\n            out/jreleaser/output.properties\n"
  },
  {
    "path": ".github/workflows/release.yml",
    "content": "name: Release\n\non:\n  workflow_dispatch:\n    inputs:\n      version:\n        description: 'Release version'\n        required: true\n\njobs:\n  precheck:\n    name: Precheck\n    runs-on: ubuntu-latest\n    outputs:\n      VERSION: ${{ steps.vars.outputs.VERSION }}\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n\n      - name: Cancel previous run\n        uses: styfle/cancel-workflow-action@0.12.1\n        with:\n          access_token: ${{ secrets.GITHUB_TOKEN }}\n\n      - name: Version\n        id: vars\n        shell: bash\n        run: |\n          echo \"VERSION=${{ github.event.inputs.version }}\" >> $GITHUB_OUTPUT\n\n  build:\n    name: Build\n    needs: [precheck]\n    strategy:\n      fail-fast: false\n      matrix:\n        os: [ ubuntu-latest, macos-13, windows-latest ]\n    runs-on: ${{ matrix.os }}\n\n    steps:\n      - name: Check out repository\n        uses: actions/checkout@v4\n\n      - name: Setup Java\n        uses: actions/setup-java@v4\n        with:\n          java-version: 21\n          distribution: zulu\n          cache: gradle\n\n      - name: Version\n        run: |\n          echo ${{ needs.precheck.outputs.VERSION }} > VERSION\n\n      - name: Build\n        run: ./gradlew -PreproducibleBuild=true build\n\n      - name: Assemble\n        run: ./gradlew -PreproducibleBuild=true :ikonli-browser:jlinkZip :ikonli-browser:jpackage\n\n      - name: Upload artifacts\n        uses: actions/upload-artifact@v4\n        with:\n          name: artifacts-${{ runner.os }}-${{ runner.arch }}\n          if-no-files-found: ignore\n          retention-days: 1\n          path: |\n            apps/ikonli-browser/build/distributions/ikonli-browser-*.zip\n            apps/ikonli-browser/build/packagers/ikonli-browser-*.rpm\n            apps/ikonli-browser/build/packagers/ikonli-browser-*.dmg\n            apps/ikonli-browser/build/packagers/ikonli-browser-*.exe\n            apps/ikonli-browser/build/packagers/ikonli-browser-*.msi\n            apps/ikonli-browser/build/packagers/ikonli-browser-*.pkg\n            apps/ikonli-browser/build/packagers/ikonli-browser-*.deb\n\n  release:\n    name: Release\n    needs: [precheck, build]\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Download build artifacts\n        uses: actions/download-artifact@v4\n        with:\n          pattern: artifacts-*\n          merge-multiple: true\n          path: artifacts\n\n      - name: Setup Java\n        uses: actions/setup-java@v4\n        with:\n          java-version: 21\n          distribution: zulu\n          cache: gradle\n\n      - name: Version\n        run: |\n          echo ${{ needs.precheck.outputs.VERSION }} > VERSION\n          git add VERSION\n          sed -i -e \"s/^\\:project-version\\:\\ .*/:project-version: ${{ needs.precheck.outputs.VERSION }}/g\" README.adoc\n          git config --global user.email \"41898282+github-actions[bot]@users.noreply.github.com\"\n          git config --global user.name \"GitHub Action\"\n          git commit -a -m \"Releasing version ${{ needs.precheck.outputs.VERSION }}\"\n          git push origin master\n\n      - name: Deploy\n        run: |\n          ./gradlew -Pprofile=release,sbom -PreproducibleBuild=true publish -S\n\n      - name: Upload deploy artifacts\n        uses: actions/upload-artifact@v4\n        with:\n          retention-days: 7\n          name: deploy\n          path: |\n            build/repos/local/release/\n\n      - name: Release\n        uses: jreleaser/release-action@v2\n        with:\n          arguments: full-release -P artifactsDir=artifacts\n        env:\n          JRELEASER_PROJECT_VERSION: ${{ needs.precheck.outputs.VERSION }}\n          JRELEASER_GITHUB_TOKEN: ${{ secrets.GIT_ACCESS_TOKEN }}\n          JRELEASER_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}\n          JRELEASER_GPG_PUBLIC_KEY: ${{ secrets.GPG_PUBLIC_KEY }}\n          JRELEASER_GPG_SECRET_KEY: ${{ secrets.GPG_SECRET_KEY }}\n          JRELEASER_MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }}\n          JRELEASER_NEXUS2_MAVEN_CENTRAL_USERNAME: ${{ secrets.SONATYPE_USERNAME }}\n          JRELEASER_NEXUS2_MAVEN_CENTRAL_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}\n\n      - name: JReleaser release output\n        if: always()\n        uses: actions/upload-artifact@v4\n        with:\n          name: jreleaser-release\n          path: |\n            out/jreleaser/trace.log\n            out/jreleaser/output.properties\n"
  },
  {
    "path": ".gitignore",
    "content": ".gradle\n*.iml\n*.ipr\n*.iws\n.idea\nbuild\nout\ntarget\n.classpath\n.project\n.gen-changelog.sh\n.tmp\n.DS_Store\njdks\n.bach/workspace\n.bach/external-tools\n.bach/external-modules\nbin\n.settings"
  },
  {
    "path": "LICENSE",
    "content": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n"
  },
  {
    "path": "README.adoc",
    "content": "= Ikonli\n:linkattrs:\n:project-owner:   kordamp\n:project-repo:    maven\n:project-name:    ikonli\n:project-group:   org.kordamp.ikonli\n:project-version: 12.4.0\n\nimage:https://img.shields.io/github/actions/workflow/status/{project-owner}/{project-name}/early-access.yml?branch=master&logo=github&label=Build[\"Build Status\", link=\"https://github.com/{project-owner}/{project-name}/actions\"]\nimage:https://img.shields.io/maven-central/v/{project-group}/{project-name}-core.svg?label=maven[link=\"https://search.maven.org/#search|ga|1|{project-group}\"]\nimage:https://img.shields.io/badge/Find_me_on-JFXCentral-blue?logo=googlechrome&logoColor=white[\"JFXCentral\", link=\"https://www.jfx-central.com/libraries/{project-name}\"]\n\n---\n\nIkonli provides icon packs that can be used in Java applications. Currently Swing and JavaFX UI toolkits are supported.\n\n== Installing\n\nYou can get the latest version of **Ikonli** directly from link:https://search.maven.org/#search|ga|1|{project-group}[Maven Central].\n\nRefer to the link:http://{project-owner}.github.io/ikonli/[guide, window=\"_blank\"] for further information on configuration\nand usage.\n\n== Building\n\nYou must meet the following requirements:\n\n * JDK11 as a minimum\n * Gradle 6.4+\n\nYou may use the included gradle wrapper script if you don't have `gradle` installed.\n\nAdapt these instructions to Windows settings if running on Windows.\n\n=== Installing Gradle\n\n.Manual\n\n . Download Gradle from http://gradle.org/downloads\n . Unzip the file into a directory without spaces (recommended).\n . Create a GRADLE_HOME environment variable that points to this directory.\n . Adjust your PATH environment variable to include $GRADLE_HOME/bin (%GRADLE_HOME%\\bin on Windows).\n . Test your setup by invoking `gradle --version`.\n\n.SDKMAN\n\n . Follow the instructions found at http://sdkman.io/ to install SDKMAN.\n . You need a POSIX environment if running Windows. We recommend using Babun Shell (http://babun.github.io/)\n . Once SDKMAN is installed invoke `sdk install gradle 6.9.2`.\n . Test your setup by invoking `gradle --version`.\n\n.Gum\n\nGum is a wrapper script that facilitates invoking gradle tasks anywhere within a Gradle project. It's smart enough\nto use the gradle wrapper if available or your global gradle command. This is an optional download.\n\n . Follow the instructions found at https://github.com/kordamp/gm to install gum\n\n=== Next Steps\n\nMake a full build issuing `gm build`.\n\nRun the sampler JavaFX application by invoking the following command\n[source]\n----\n$ gm :sampler-javafx:run\n----\n\nRun the sampler Swing application by invoking the following command\n[source]\n----\n$ gm :sampler-swing:run\n----\n\nRun the Ikonli Browser application  by invoking the following command\n[source]\n----\n$ gm :ikonli-browser:run\n----\n\n=== Publishing your own SNAPSHOT\n\nYou can publish a local snapshot release by issuing this command\n\n[source]\n----\n$ gm install\n----\n\nIf you don't Gum installed then issue this command\n\n[source]\n----\n$ ./gradlew publishToMavenLocal\n----\n\n"
  },
  {
    "path": "SECURITY.md",
    "content": "## Security contact information\n\nTo report a security vulnerability, please use the\n[Tidelift security contact](https://tidelift.com/security).\nTidelift will coordinate the fix and disclosure.\n"
  },
  {
    "path": "VERSION",
    "content": "12.5.0-SNAPSHOT\n"
  },
  {
    "path": "apps/ikonli-browser/ikonli-browser.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nplugins {\n    id 'application'\n    id 'org.beryx.jlink'\n    id 'org.jreleaser.jdks'\n}\n\napplication {\n    mainModule = 'org.kordamp.ikonli.browser'\n    mainClass = 'org.kordamp.ikonli.browser.Launcher'\n    applicationName = 'ikonli-browser'\n}\n\nrepositories {\n    mavenLocal()\n}\n\ndependencies {\n    implementation('org.kordamp.bootstrapfx:bootstrapfx-core:0.4.0') { transitive = false }\n    implementation('org.kordamp.desktoppanefx:desktoppanefx-core:0.15.0') { transitive = false }\n    implementation \"com.miglayout:miglayout-javafx:$miglayoutVersion\"\n\n    implementation project(':ikonli-core')\n    implementation project(':ikonli-javafx')\n    implementation project(':ikonli-antdesignicons-pack')\n    implementation project(':ikonli-bootstrapicons-pack')\n    implementation project(':ikonli-boxicons-pack')\n    implementation project(':ikonli-bpmn-pack')\n    implementation project(':ikonli-bytedance-pack')\n    implementation project(':ikonli-captainicon-pack')\n    implementation project(':ikonli-carbonicons-pack')\n    implementation project(':ikonli-codicons-pack')\n    implementation project(':ikonli-coreui-pack')\n    implementation project(':ikonli-dashicons-pack')\n    implementation project(':ikonli-devicons-pack')\n    implementation project(':ikonli-elusive-pack')\n    implementation project(':ikonli-entypo-pack')\n    implementation project(':ikonli-evaicons-pack')\n    implementation project(':ikonli-feather-pack')\n    implementation project(':ikonli-fileicons-pack')\n    implementation project(':ikonli-fluentui-pack')\n    implementation project(':ikonli-fontawesome-pack')\n    implementation project(':ikonli-fontawesome5-pack')\n    implementation project(':ikonli-fontawesome6-pack')\n    implementation project(':ikonli-fontelico-pack')\n    implementation project(':ikonli-foundation-pack')\n    implementation project(':ikonli-hawcons-pack')\n    implementation project(':ikonli-icomoon-pack')\n    implementation project(':ikonli-ionicons-pack')\n    implementation project(':ikonli-ionicons4-pack')\n    implementation project(':ikonli-jamicons-pack')\n    implementation project(':ikonli-ligaturesymbols-pack')\n    implementation project(':ikonli-lineawesome-pack')\n    implementation project(':ikonli-linecons-pack')\n    implementation project(':ikonli-maki-pack')\n    implementation project(':ikonli-maki2-pack')\n    implementation project(':ikonli-mapicons-pack')\n    implementation project(':ikonli-material-pack')\n    implementation project(':ikonli-material2-pack')\n    implementation project(':ikonli-materialdesign-pack')\n    implementation project(':ikonli-materialdesign2-pack')\n    implementation project(':ikonli-medicons-pack')\n    implementation project(':ikonli-metrizeicons-pack')\n    implementation project(':ikonli-microns-pack')\n    implementation project(':ikonli-ociicons-pack')\n    implementation project(':ikonli-octicons-pack')\n    implementation project(':ikonli-openiconic-pack')\n    implementation project(':ikonli-paymentfont-pack')\n    implementation project(':ikonli-prestashopicons-pack')\n    implementation project(':ikonli-remixicon-pack')\n    implementation project(':ikonli-runestroicons-pack')\n    implementation project(':ikonli-simpleicons-pack')\n    implementation project(':ikonli-simplelineicons-pack')\n    implementation project(':ikonli-subway-pack')\n    implementation project(':ikonli-themify-pack')\n    implementation project(':ikonli-typicons-pack')\n    implementation project(':ikonli-unicons-pack')\n    implementation project(':ikonli-weathericons-pack')\n    implementation project(':ikonli-websymbols-pack')\n    implementation project(':ikonli-whhg-pack')\n    implementation project(':ikonli-win10-pack')\n    implementation project(':ikonli-zondicons-pack')\n\n    implementation \"org.openjfx:javafx-base:${javafxVersion}:${javafx_platform}\"\n    implementation \"org.openjfx:javafx-graphics:${javafxVersion}:${javafx_platform}\"\n    implementation \"org.openjfx:javafx-controls:${javafxVersion}:${javafx_platform}\"\n    implementation \"org.openjfx:javafx-fxml:${javafxVersion}:${javafx_platform}\"\n    implementation \"org.openjfx:javafx-media:${javafxVersion}:${javafx_platform}\"\n    implementation \"org.openjfx:javafx-swing:${javafxVersion}:${javafx_platform}\"\n}\n\nconfig {\n    info {\n        description = 'Ikonli icon browser'\n    }\n\n    publishing {\n        enabled = false\n    }\n}\n\nlicense {\n    exclude 'eu/hansolo/**/*'\n}\n\nprocessResources {\n    expand(\n        'ikonli_version': version\n    )\n}\n\next {\n    zuluPlatform = rootProject.javafx_platform == 'mac' ? 'macosx' : rootProject.javafx_platform\n    zuluHome = project.file(\"${buildDir}/jdks/zulu21Linux/${zuluVersion}-${zuluPlatform}_x64\")\n}\nif (rootProject.javafx_platform == 'mac') {\n    zuluHome = project.file(\"${buildDir}/jdks/zulu21Osx/${zuluVersion}-${zuluPlatform}_x64/zulu-21.jdk/Contents/Home\")\n} else if (rootProject.javafx_platform == 'win') {\n    zuluHome = project.file(\"${buildDir}/jdks/zulu21Windows/${zuluVersion}-${zuluPlatform}_x64\")\n}\nSystem.properties['badass.jlink.java.home'] = zuluHome.absolutePath\nSystem.properties['badass.jlink.jpackage.home'] = zuluHome.absolutePath\n\njdks {\n    zulu21Linux {\n        platform = 'linux-x86_64'\n        url = 'https://cdn.azul.com/zulu/bin/zulu21.38.21-ca-jdk21.0.5-linux_x64.tar.gz'\n        checksum = '5320a33714f58c0104191d244759daa6a6d46819d447347ba9003132e5489d92'\n    }\n    zulu21Windows {\n        platform = 'windows-x86_64'\n        url = 'https://cdn.azul.com/zulu/bin/zulu21.38.21-ca-jdk21.0.5-win_x64.zip'\n        checksum = '8dea44fd3a6f7ad0f42f38abc1371075710b58bed9bd8f093c2ef2d450dd2672'\n    }\n    zulu21Osx {\n        platform = 'osx-x86_64'\n        url = 'https://cdn.azul.com/zulu/bin/zulu21.38.21-ca-jdk21.0.5-macosx_x64.zip'\n        checksum = 'a77a9c67d8f9a2341674bcea7056d9d70f69ff0850dd3874303641cc9cec2dfc'\n    }\n}\n\njlink {\n    imageDir = file(\"${buildDir}/jlink/ikonli-browser-${version}-${platform}\")\n    imageZip = file(\"${buildDir}/distributions/ikonli-browser-${version}-${platform}.zip\")\n    options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']\n\n    launcher {\n        noConsole = true\n    }\n\n    addExtraDependencies('javafx')\n\n    jpackage {\n        appVersion = rootProject.baseVersion\n        outputDir = 'packagers'\n        def imgType = rootProject.javafx_platform == 'win' ? 'ico' : rootProject.javafx_platform == 'mac' ? 'icns' : 'png'\n        imageOptions += ['--icon', \"apps/ikonli-browser/src/main/jpackage/icons/ikonli-browser.$imgType\"]\n        installerOptions += ['--resource-dir', 'apps/ikonli-browser/src/main/resources']\n        installerOptions += ['--vendor', 'Kordamp']\n        if (rootProject.javafx_platform == 'win') {\n            installerOptions += ['--win-per-user-install', '--win-dir-chooser', '--win-menu', '--win-shortcut']\n        } else if (rootProject.javafx_platform == 'linux') {\n            installerOptions += ['--linux-package-name', 'ikonli-browser', '--linux-shortcut']\n        } else if (rootProject.javafx_platform == 'mac') {\n            installerOptions += ['--mac-package-name', 'ikonli-browser']\n        }\n    }\n}\n\nafterEvaluate {\n    tasks.findByName('jpackageImage').dependsOn(tasks.findByName('jlinkZip'))\n    def copyJdksToCache = project.tasks.findByName('copyJdksToCache')\n    ['zulu21Linux', 'zulu21Windows', 'zulu21Osx',].each { jdk ->\n        def copyTask = project.tasks.findByName('copyJdkFromCache' + jdk.capitalize())\n        if (copyJdksToCache && copyTask) copyTask.dependsOn(copyJdksToCache)\n    }\n}\n"
  },
  {
    "path": "apps/ikonli-browser/src/main/java/eu/hansolo/tilesfx/tools/FlowGridPane.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2016-2020 Gerrit Grunwald.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     https://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage eu.hansolo.tilesfx.tools;\n\nimport javafx.beans.NamedArg;\nimport javafx.beans.property.IntegerProperty;\nimport javafx.beans.property.IntegerPropertyBase;\nimport javafx.collections.ListChangeListener;\nimport javafx.collections.ObservableList;\nimport javafx.geometry.HPos;\nimport javafx.geometry.VPos;\nimport javafx.scene.Node;\nimport javafx.scene.layout.ColumnConstraints;\nimport javafx.scene.layout.GridPane;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.RowConstraints;\n\n\n/**\n * Created by hansolo on 10.02.17.\n */\npublic class FlowGridPane extends GridPane {\n    private boolean         internalCall;\n    private int             _noOfCols;\n    private int             _noOfRows;\n    private IntegerProperty noOfCols;\n    private IntegerProperty noOfRows;\n\n\n    // ******************** Constructors **************************************\n    public FlowGridPane(final @NamedArg(\"NO_OF_COLS\")int NO_OF_COLS, final @NamedArg(\"NO_OF_ROWS\")int NO_OF_ROWS) {\n        super();\n        internalCall = false;\n        _noOfCols    = NO_OF_COLS;\n        _noOfRows    = NO_OF_ROWS;\n        noOfCols     = new IntegerPropertyBase(NO_OF_COLS) {\n            @Override protected void invalidated() {\n                ObservableList<ColumnConstraints> constraints = getColumnConstraints();\n                constraints.clear();\n                int cols = get();\n                for (int i = 0 ; i < cols ; ++i) {\n                    ColumnConstraints c = new ColumnConstraints();\n                    c.setHalignment(HPos.CENTER);\n                    c.setHgrow(Priority.ALWAYS);\n                    c.setMinWidth(60);\n                    constraints.add(c);\n                }\n                set(cols);\n                relayout();\n                if (internalCall) return;\n                _noOfCols = cols;\n            }\n            @Override public Object getBean() { return FlowGridPane.this; }\n            @Override public String getName() { return \"noOfCols\"; }\n        };\n        noOfRows     = new IntegerPropertyBase(NO_OF_ROWS) {\n            @Override protected void invalidated() {\n                ObservableList<RowConstraints> constraints = getRowConstraints();\n                constraints.clear();\n                int rows = get();\n                for (int i=0; i < rows; ++i) {\n                    RowConstraints r = new RowConstraints();\n                    r.setValignment(VPos.CENTER);\n                    r.setVgrow(Priority.ALWAYS);\n                    r.setMinHeight(20);\n                    constraints.add(r);\n                }\n                set(rows);\n                relayout();\n                if (internalCall) return;\n                _noOfRows = rows;\n            }\n            @Override public Object getBean() { return FlowGridPane.this; }\n            @Override public String getName() { return \"noOfRows\"; }\n        };\n        getChildren().addListener((ListChangeListener<Node>) change -> relayout());\n        registerListeners();\n    }\n    public FlowGridPane(final @NamedArg(\"NO_OF_COLS\")int NO_OF_COLS, final @NamedArg(\"NO_OF_ROWS\")int NO_OF_ROWS, final Node... NODES) {\n        super();\n        internalCall = false;\n        _noOfCols    = NO_OF_COLS;\n        _noOfRows    = NO_OF_ROWS;\n        noOfCols     = new IntegerPropertyBase(NO_OF_COLS) {\n            @Override protected void invalidated() {\n                ObservableList<ColumnConstraints> constraints = getColumnConstraints();\n                constraints.clear();\n                int cols = get();\n                for (int i = 0 ; i < cols ; ++i) {\n                    ColumnConstraints c = new ColumnConstraints();\n                    c.setHalignment(HPos.CENTER);\n                    c.setHgrow(Priority.ALWAYS);\n                    c.setMinWidth(60);\n                    constraints.add(c);\n                }\n                set(cols);\n                relayout();\n                if (internalCall) return;\n                _noOfCols = cols;\n            }\n            @Override public Object getBean() { return FlowGridPane.this; }\n            @Override public String getName() { return \"noOfCols\"; }\n        };\n        noOfRows     = new IntegerPropertyBase(NO_OF_ROWS) {\n            @Override protected void invalidated() {\n                ObservableList<RowConstraints> constraints = getRowConstraints();\n                constraints.clear();\n                int rows = get();\n                for (int i=0; i < rows; ++i) {\n                    RowConstraints r = new RowConstraints();\n                    r.setValignment(VPos.CENTER);\n                    r.setVgrow(Priority.ALWAYS);\n                    r.setMinHeight(20);\n                    constraints.add(r);\n                }\n                set(rows);\n                relayout();\n                if (internalCall) return;\n                _noOfRows = rows;\n            }\n            @Override public Object getBean() { return FlowGridPane.this; }\n            @Override public String getName() { return \"noOfRows\"; }\n        };\n        getChildren().addListener((ListChangeListener<Node>) change -> relayout());\n        registerListeners();\n        if (null != NODES) { getChildren().setAll(NODES); }\n    }\n\n    private void registerListeners() {\n        widthProperty().addListener(o -> checkAspectRatio());\n        heightProperty().addListener(o -> checkAspectRatio());\n    }\n\n\n    // ******************** Methods *******************************************\n    public Integer getNoOfCols() { return noOfCols.get(); }\n    public void setNoOfCols(final Integer COLS) { noOfCols.set(COLS); }\n    public IntegerProperty noOfColsProperty() { return noOfCols; }\n\n    public Integer getNoOfRows() { return noOfRows.get(); }\n    public void setNoOfRows(final Integer ROWS) { noOfRows.set(ROWS); }\n    public IntegerProperty noOfRowsProperty() { return noOfRows; }\n\n    public void setNoOfColsAndNoOfRows(final int COLS, final int ROWS) {\n        setNoOfCols(COLS);\n        setNoOfRows(ROWS);\n    }\n\n    private int coordsToOffset(final int COL, final int ROW) { return ROW * noOfCols.get() + COL; }\n    private int offsetToCol(final int OFFSET) { return OFFSET % noOfCols.get(); }\n    private int offsetToRow(final int OFFSET) { return OFFSET / noOfCols.get(); }\n\n    private void checkAspectRatio() {\n        internalCall = true;\n        if (getWidth() < getHeight()) {\n            setNoOfColsAndNoOfRows(_noOfRows, _noOfCols);\n        } else {\n            setNoOfColsAndNoOfRows(_noOfCols, _noOfRows);\n        }\n        internalCall = false;\n        relayout();\n    }\n\n    private void relayout() {\n        ObservableList<Node> children = getChildren();\n        int    lastColSpan = 0;\n        int    lastRowSpan = 0;\n        for (Node child : children ) {\n            int offs = children.indexOf(child);\n            GridPane.setConstraints(child, offsetToCol(offs + lastColSpan), offsetToRow(offs + lastRowSpan));\n            //lastColSpan = GridPane.getColumnSpan(child) == null ? 0 : GridPane.getColumnSpan(child);\n            //lastRowSpan = GridPane.getRowSpan(child) == null ? 0 : GridPane.getRowSpan(child);\n        }\n    }\n}"
  },
  {
    "path": "apps/ikonli-browser/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.browser {\n    exports org.kordamp.ikonli.browser;\n    opens org.kordamp.ikonli.browser;\n    requires javafx.base;\n    requires javafx.graphics;\n    requires javafx.controls;\n    requires com.miglayout.javafx;\n    requires org.kordamp.bootstrapfx.core;\n    requires org.kordamp.desktoppanefx.core;\n    requires org.kordamp.ikonli.core;\n    requires org.kordamp.ikonli.javafx;\n    requires org.kordamp.ikonli.antdesignicons;\n    requires org.kordamp.ikonli.bootstrapicons;\n    requires org.kordamp.ikonli.boxicons;\n    requires org.kordamp.ikonli.bpmn;\n    requires org.kordamp.ikonli.bytedance;\n    requires org.kordamp.ikonli.captainicon;\n    requires org.kordamp.ikonli.carbonicons;\n    requires org.kordamp.ikonli.codicons;\n    requires org.kordamp.ikonli.coreui;\n    requires org.kordamp.ikonli.dashicons;\n    requires org.kordamp.ikonli.devicons;\n    requires org.kordamp.ikonli.elusive;\n    requires org.kordamp.ikonli.entypo;\n    requires org.kordamp.ikonli.evaicons;\n    requires org.kordamp.ikonli.feather;\n    requires org.kordamp.ikonli.fileicons;\n    requires org.kordamp.ikonli.fluentui;\n    requires org.kordamp.ikonli.fontawesome;\n    requires org.kordamp.ikonli.fontawesome5;\n    requires org.kordamp.ikonli.fontawesome6;\n    requires org.kordamp.ikonli.fontelico;\n    requires org.kordamp.ikonli.foundation;\n    requires org.kordamp.ikonli.hawcons;\n    requires org.kordamp.ikonli.icomoon;\n    requires org.kordamp.ikonli.ionicons;\n    requires org.kordamp.ikonli.ionicons4;\n    requires org.kordamp.ikonli.jam;\n    requires org.kordamp.ikonli.ligaturesymbols;\n    requires org.kordamp.ikonli.lineawesome;\n    requires org.kordamp.ikonli.linecons;\n    requires org.kordamp.ikonli.maki;\n    requires org.kordamp.ikonli.maki2;\n    requires org.kordamp.ikonli.mapicons;\n    requires org.kordamp.ikonli.material;\n    requires org.kordamp.ikonli.material2;\n    requires org.kordamp.ikonli.materialdesign;\n    requires org.kordamp.ikonli.materialdesign2;\n    requires org.kordamp.ikonli.medicons;\n    requires org.kordamp.ikonli.metrizeicons;\n    requires org.kordamp.ikonli.microns;\n    requires org.kordamp.ikonli.ociicons;\n    requires org.kordamp.ikonli.octicons;\n    requires org.kordamp.ikonli.openiconic;\n    requires org.kordamp.ikonli.paymentfont;\n    requires org.kordamp.ikonli.prestashopicons;\n    requires org.kordamp.ikonli.remixicon;\n    requires org.kordamp.ikonli.runestroicons;\n    requires org.kordamp.ikonli.simpleicons;\n    requires org.kordamp.ikonli.simplelineicons;\n    requires org.kordamp.ikonli.subway;\n    requires org.kordamp.ikonli.themify;\n    requires org.kordamp.ikonli.typicons;\n    requires org.kordamp.ikonli.unicons;\n    requires org.kordamp.ikonli.weathericons;\n    requires org.kordamp.ikonli.websymbols;\n    requires org.kordamp.ikonli.whhg;\n    requires org.kordamp.ikonli.win10;\n    requires org.kordamp.ikonli.zondicons;\n\n    uses org.kordamp.ikonli.IkonHandler;\n    uses org.kordamp.ikonli.IkonProvider;\n}\n"
  },
  {
    "path": "apps/ikonli-browser/src/main/java/org/kordamp/ikonli/browser/AboutDialog.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.browser;\n\nimport javafx.scene.control.Alert;\nimport javafx.scene.control.ButtonType;\nimport org.kordamp.bootstrapfx.BootstrapFX;\n\n/**\n * @author Andres Almiray\n */\npublic class AboutDialog {\n    public static void show() {\n        Alert alert = new Alert(Alert.AlertType.INFORMATION);\n        alert.setTitle(\"About\");\n        alert.setHeaderText(null);\n        alert.setContentText(\"Ikon Browser v\" + Versions.IKONLI_VERSION);\n\n        alert.getDialogPane().getScene()\n            .getStylesheets().addAll(\n                IkonBrowser.class.getResource(\"common.css\").toExternalForm(),\n                BootstrapFX.bootstrapFXStylesheet());\n        alert.getDialogPane().lookupButton(ButtonType.OK)\n            .getStyleClass().addAll(\"btn\", \"btn-primary\");\n        alert.getDialogPane().getStyleClass().add(\"dialog-content\");\n\n        alert.showAndWait();\n    }\n}\n"
  },
  {
    "path": "apps/ikonli-browser/src/main/java/org/kordamp/ikonli/browser/IkonBrowser.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.browser;\n\nimport javafx.application.Application;\nimport javafx.collections.ObservableList;\nimport javafx.scene.Scene;\nimport javafx.scene.control.Menu;\nimport javafx.scene.control.MenuBar;\nimport javafx.scene.control.MenuItem;\nimport javafx.scene.layout.BorderPane;\nimport javafx.stage.Stage;\nimport org.kordamp.bootstrapfx.BootstrapFX;\nimport org.kordamp.desktoppanefx.scene.layout.DesktopPane;\nimport org.kordamp.desktoppanefx.scene.layout.IncubatingFeatures;\nimport org.kordamp.desktoppanefx.scene.layout.InternalWindow;\nimport org.kordamp.desktoppanefx.scene.layout.TaskBar;\nimport org.kordamp.desktoppanefx.scene.layout.TaskBarIcon;\nimport org.kordamp.ikonli.boxicons.BoxiconsRegular;\nimport org.kordamp.ikonli.javafx.FontIcon;\n\nimport static javafx.beans.binding.Bindings.createBooleanBinding;\n\n/**\n * @author Andres Almiray\n */\npublic class IkonBrowser extends Application {\n    private DesktopPane desktopPane;\n\n    @Override\n    public void start(Stage stage) throws Exception {\n        desktopPane = new DesktopPane();\n        desktopPane.getStylesheets().add(IkonBrowser.class.getResource(\"browser.css\").toExternalForm());\n        desktopPane.getTaskBar().setPosition(TaskBar.Position.BOTTOM);\n\n        ObservableList<TaskBarIcon> icons = desktopPane.getTaskBar().getTaskBarIcons();\n        desktopPane.getTaskBar().visibleProperty().bind(createBooleanBinding(() -> icons.size() > 0, icons));\n\n        System.setProperty(IncubatingFeatures.DETACHABLE_WINDOWS, \"true\");\n\n        BorderPane mainPane = new BorderPane();\n        mainPane.setPrefSize(1024, 768);\n\n        MenuBar menuBar = createMenuBar();\n\n        mainPane.setTop(menuBar);\n        mainPane.setCenter(desktopPane);\n\n        Scene scene = new Scene(mainPane);\n        scene.getStylesheets().addAll(\n            IkonBrowser.class.getResource(\"browser.css\").toExternalForm(),\n            BootstrapFX.bootstrapFXStylesheet());\n\n        stage.setScene(scene);\n        stage.setTitle(\"Ikonli - https://kordamp.org/ikonli\");\n        stage.show();\n    }\n\n    @Override\n    public void stop() throws Exception {\n        desktopPane.getInternalWindows()\n            .forEach(InternalWindow::closeWindow);\n    }\n\n    private MenuBar createMenuBar() {\n        MenuBar menuBar = new MenuBar();\n\n        menuBar.getMenus().addAll(\n            createActionsMenu(),\n            createWindowsMenu(),\n            createHelpMenu());\n\n        return menuBar;\n    }\n\n    private Menu createActionsMenu() {\n        Menu actionsMenu = new Menu(\"Actions\");\n\n        MenuItem browse = new MenuItem(\"Browse\");\n        browse.setGraphic(FontIcon.of(BoxiconsRegular.GRID_SMALL));\n        browse.setOnAction(e -> IkonPickerDialog.show(desktopPane));\n        MenuItem search = new MenuItem(\"Search\");\n        search.setGraphic(FontIcon.of(BoxiconsRegular.SEARCH));\n        search.setOnAction(e -> SearchInternalWindow.show(desktopPane));\n        actionsMenu.getItems().addAll(browse, search);\n\n        return actionsMenu;\n    }\n\n    private Menu createWindowsMenu() {\n        Menu windowsMenu = new Menu(\"Windows\");\n\n        Menu tileMenu = new Menu(\"Tile\");\n        tileMenu.setGraphic(FontIcon.of(BoxiconsRegular.WINDOWS));\n        Menu minimizeMenu = new Menu(\"Minimize\");\n        minimizeMenu.setGraphic(FontIcon.of(BoxiconsRegular.COLLAPSE));\n        Menu maximizeMenu = new Menu(\"Maximize\");\n        maximizeMenu.setGraphic(FontIcon.of(BoxiconsRegular.EXPAND));\n        Menu closeMenu = new Menu(\"Close\");\n        closeMenu.setGraphic(FontIcon.of(BoxiconsRegular.WINDOW_CLOSE));\n        Menu restoreMenu = new Menu(\"Restore\");\n        restoreMenu.setGraphic(FontIcon.of(BoxiconsRegular.WINDOW_OPEN));\n        windowsMenu.getItems().addAll(tileMenu, minimizeMenu, maximizeMenu, closeMenu, restoreMenu);\n\n        MenuItem minimizeAll = new MenuItem(\"Minimize All\");\n        minimizeAll.setOnAction(e -> desktopPane.minimizeAllWindows());\n        MenuItem minimizeOthers = new MenuItem(\"Minimize Others\");\n        minimizeOthers.setOnAction(e -> desktopPane.minimizeOtherWindows());\n        minimizeMenu.getItems().addAll(minimizeAll, minimizeOthers);\n\n        MenuItem maximizeAll = new MenuItem(\"Maximize All\");\n        maximizeAll.setOnAction(e -> desktopPane.maximizeAllWindows());\n        MenuItem maximizeVisible = new MenuItem(\"Maximize Visible\");\n        maximizeVisible.setOnAction(e -> desktopPane.maximizeVisibleWindows());\n        maximizeMenu.getItems().addAll(maximizeAll, maximizeVisible);\n\n        MenuItem closeAll = new MenuItem(\"Close All\");\n        closeAll.setOnAction(e -> desktopPane.closeAllWindows());\n        MenuItem closeOthers = new MenuItem(\"Close Others\");\n        closeOthers.setOnAction(e -> desktopPane.closeOtherWindows());\n        closeMenu.getItems().addAll(closeAll, closeOthers);\n\n        MenuItem restoreMinimized = new MenuItem(\"Restore Minimized\");\n        restoreMinimized.setOnAction(e -> desktopPane.restoreMinimizedWindows());\n        MenuItem restoreVisible = new MenuItem(\"Restore Visible\");\n        restoreVisible.setOnAction(e -> desktopPane.restoreVisibleWindows());\n        restoreMenu.getItems().addAll(restoreMinimized, restoreVisible);\n\n        MenuItem tileAll = new MenuItem(\"Tile All\");\n        tileAll.setOnAction(e -> desktopPane.tileAllWindows());\n        MenuItem tileVisible = new MenuItem(\"Tile Visible\");\n        tileVisible.setOnAction(e -> desktopPane.tileVisibleWindows());\n        MenuItem tileHorizontally = new MenuItem(\"Tile Horizontally\");\n        tileHorizontally.setOnAction(e -> desktopPane.tileHorizontally());\n        MenuItem tileVertically = new MenuItem(\"Tile Vertically\");\n        tileVertically.setOnAction(e -> desktopPane.tileVertically());\n        tileMenu.getItems().addAll(tileAll, tileVisible, tileHorizontally, tileVertically);\n\n        return windowsMenu;\n    }\n\n    private Menu createHelpMenu() {\n        Menu helpMenu = new Menu(\"Help\");\n\n        MenuItem about = new MenuItem(\"About\");\n        about.setGraphic(FontIcon.of(BoxiconsRegular.COPYRIGHT));\n        about.setOnAction(e -> AboutDialog.show());\n        helpMenu.getItems().addAll(about);\n\n        return helpMenu;\n    }\n}\n"
  },
  {
    "path": "apps/ikonli-browser/src/main/java/org/kordamp/ikonli/browser/IkonInternalWindow.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.browser;\n\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Node;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.control.TextField;\nimport javafx.scene.input.Clipboard;\nimport javafx.scene.input.ClipboardContent;\nimport javafx.scene.layout.Background;\nimport javafx.scene.layout.BackgroundFill;\nimport javafx.scene.layout.BorderPane;\nimport javafx.scene.layout.CornerRadii;\nimport javafx.scene.layout.GridPane;\nimport javafx.scene.layout.HBox;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.paint.Color;\nimport org.kordamp.desktoppanefx.scene.layout.DesktopPane;\nimport org.kordamp.desktoppanefx.scene.layout.InternalWindow;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.ikonli.boxicons.BoxiconsRegular;\nimport org.kordamp.ikonli.javafx.FontIcon;\n\nimport java.util.EnumSet;\nimport java.util.Optional;\n\nimport static java.util.EnumSet.allOf;\n\n/**\n * @author Andres Almiray\n */\npublic class IkonInternalWindow extends InternalWindow {\n    public IkonInternalWindow(String mdiWindowID, Node icon, String title, Node content) {\n        super(mdiWindowID, icon, title, content);\n    }\n\n    public static void show(IkonProvider ikonProvider, DesktopPane desktopPane) {\n        String windowId = ikonProvider.getIkon().getName().toLowerCase();\n\n        desktopPane.findInternalWindow(windowId)\n            .or(() -> Optional.of(createInternalWindow(ikonProvider, windowId)))\n            .ifPresent(desktopPane::addInternalWindow);\n    }\n\n    private static IkonInternalWindow createInternalWindow(IkonProvider ikonProvider, String windowId) {\n        IkonInternalWindow internalWindow = new IkonInternalWindow(windowId,\n            FontIcon.of(BoxiconsRegular.GRID_SMALL, Color.WHITE),\n            ikonProvider.getIkon().getSimpleName(),\n            createIkonGrid(allOf(ikonProvider.getIkon())));\n        internalWindow.setPrefSize(800, 600);\n        internalWindow.getStylesheets().addAll(\n            IkonBrowser.class.getResource(\"common.css\").toExternalForm(),\n            IkonBrowser.class.getResource(\"ikon-window.css\").toExternalForm());\n        return internalWindow;\n    }\n\n    private static Node createIkonGrid(EnumSet<? extends Ikon> enumSet) {\n        BorderPane borderPane = new BorderPane();\n\n        Label label = new Label(\"Selection:\");\n        TextField selection = new TextField();\n        selection.setEditable(false);\n        Button copy = new Button();\n        copy.setGraphic(FontIcon.of(BoxiconsRegular.COPY, Color.WHITE));\n        copy.getStyleClass().addAll(\"btn\", \"btm-sm\", \"btn-primary\");\n        HBox.setMargin(label, new Insets(10, 5, 10, 10));\n        HBox.setMargin(selection, new Insets(10, 5, 10, 5));\n        HBox.setMargin(copy, new Insets(10, 10, 10, 5));\n        HBox.setHgrow(selection, Priority.ALWAYS);\n        HBox hbox = new HBox(label, selection, copy);\n        hbox.setAlignment(Pos.BASELINE_CENTER);\n        borderPane.setTop(hbox);\n\n        copy.disableProperty().bind(selection.textProperty().isEmpty());\n        copy.setOnAction(e -> {\n            final Clipboard clipboard = Clipboard.getSystemClipboard();\n            final ClipboardContent content = new ClipboardContent();\n            content.putString(selection.getText());\n            clipboard.setContent(content);\n        });\n\n        GridPane pane = new GridPane();\n        pane.setHgap(5);\n        pane.setVgap(5);\n        pane.setAlignment(Pos.CENTER);\n        pane.setCenterShape(true);\n        pane.setPadding(new Insets(5));\n        pane.setBackground(new Background(new BackgroundFill(Color.WHITE, CornerRadii.EMPTY, Insets.EMPTY)));\n        borderPane.setCenter(new ScrollPane(pane));\n\n        int column = 0;\n        int row = 0;\n        int index = 0;\n\n        FontIcon[] previousIcon = new FontIcon[1];\n\n        for (Ikon value : enumSet) {\n            FontIcon icon = FontIcon.of(value);\n            icon.getStyleClass().setAll(\"font-icon\");\n            icon.setOnMouseClicked(me -> {\n                if (previousIcon[0] != null) {\n                    previousIcon[0].getStyleClass().remove(\"active-icon\");\n                }\n                FontIcon nextIcon = (FontIcon) me.getSource();\n                selection.setText(nextIcon.getIconCode().getDescription());\n                nextIcon.getStyleClass().add(\"active-icon\");\n                previousIcon[0] = nextIcon;\n            });\n            pane.add(icon, column++, row);\n            GridPane.setMargin(icon, new Insets(10, 10, 10, 10));\n            if (++index % 10 == 0) {\n                column = 0;\n                row++;\n            }\n        }\n\n        return borderPane;\n    }\n}\n"
  },
  {
    "path": "apps/ikonli-browser/src/main/java/org/kordamp/ikonli/browser/IkonPickerDialog.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.browser;\n\nimport javafx.application.Platform;\nimport javafx.collections.FXCollections;\nimport javafx.collections.ObservableList;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.ButtonBar;\nimport javafx.scene.control.ButtonType;\nimport javafx.scene.control.Dialog;\nimport javafx.scene.control.DialogPane;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ListView;\nimport javafx.scene.control.SelectionMode;\nimport javafx.scene.layout.GridPane;\nimport javafx.scene.layout.Priority;\nimport javafx.scene.layout.Region;\nimport org.kordamp.bootstrapfx.BootstrapFX;\nimport org.kordamp.desktoppanefx.scene.layout.DesktopPane;\nimport org.kordamp.ikonli.IkonProvider;\n\nimport java.util.ServiceLoader;\nimport java.util.Set;\nimport java.util.TreeSet;\n\n/**\n * @author Andres Almiray\n */\npublic class IkonPickerDialog extends Dialog<IkonProvider> {\n    private final ObservableList<IkonData> data;\n    private final Set<IkonData> ikons;\n\n    private IkonPickerDialog() {\n        this.ikons = resolveIkonData();\n        DialogPane dialogPane = getDialogPane();\n\n        GridPane grid = new GridPane();\n        grid.setHgap(10);\n        grid.setMaxWidth(Double.MAX_VALUE);\n        grid.setAlignment(Pos.CENTER_LEFT);\n\n        Label label = createContentLabel(dialogPane.getContentText());\n        label.setPrefWidth(Region.USE_COMPUTED_SIZE);\n\n        setTitle(\"Ikon Picker\");\n        dialogPane.setHeaderText(\"Select an Ikon provider (\" + ikons.size() + \" in total)\");\n        dialogPane.getStyleClass().add(\"ikon-picker\");\n        dialogPane.getButtonTypes().addAll(ButtonType.OK, ButtonType.CANCEL);\n        dialogPane.getScene().getStylesheets().addAll(\n            IkonBrowser.class.getResource(\"common.css\").toExternalForm(),\n            BootstrapFX.bootstrapFXStylesheet());\n        dialogPane.getStyleClass().add(\"dialog-content\");\n        dialogPane.lookupButton(ButtonType.OK)\n            .getStyleClass().addAll(\"btn\", \"btn-primary\");\n        dialogPane.lookupButton(ButtonType.CANCEL)\n            .getStyleClass().addAll(\"btn\", \"btn-danger\");\n\n        Button okButton = (Button) dialogPane.lookupButton(ButtonType.OK);\n\n        data = FXCollections.observableArrayList(ikons);\n\n        ListView<IkonData> listView = new ListView<>();\n        listView.setItems(data);\n        listView.setMinWidth(400);\n        listView.setMaxHeight(400);\n        listView.setMaxWidth(400);\n        listView.setMaxHeight(400);\n        listView.getSelectionModel().setSelectionMode(SelectionMode.SINGLE);\n\n        listView.setOnMouseClicked(me -> {\n            if (me.getClickCount() > 1) {\n                okButton.fire();\n            }\n        });\n        okButton.disableProperty().bind(\n            listView.getSelectionModel()\n                .selectedItemProperty()\n                .isNull());\n\n        setResultConverter((dialogButton) -> {\n            ButtonBar.ButtonData data = dialogButton == null ? null : dialogButton.getButtonData();\n            return data == ButtonBar.ButtonData.OK_DONE ? getSelectedItem(listView) : null;\n        });\n\n        GridPane.setHgrow(listView, Priority.ALWAYS);\n        GridPane.setFillWidth(listView, true);\n        grid.add(label, 0, 0);\n        grid.add(listView, 1, 0);\n        getDialogPane().setContent(grid);\n\n        Platform.runLater(listView::requestFocus);\n    }\n\n    private Set<IkonData> resolveIkonData() {\n        Set<IkonData> ikons = new TreeSet<>();\n        if (null != IkonProvider.class.getModule().getLayer()) {\n            for (IkonProvider provider : ServiceLoader.load(IkonProvider.class.getModule().getLayer(), IkonProvider.class)) {\n                ikons.add(IkonData.of(provider));\n            }\n        } else {\n            for (IkonProvider provider : ServiceLoader.load(IkonProvider.class)) {\n                ikons.add(IkonData.of(provider));\n            }\n        }\n\n        return ikons;\n    }\n\n    private IkonProvider getSelectedItem(ListView<IkonData> listView) {\n        IkonData selectedItem = listView.getSelectionModel().getSelectedItem();\n        return selectedItem != null ? selectedItem.ikonProvider : null;\n    }\n\n    private Label createContentLabel(String text) {\n        Label label = new Label(text);\n        label.setMaxWidth(Double.MAX_VALUE);\n        label.setMaxHeight(Double.MAX_VALUE);\n        label.getStyleClass().add(\"content\");\n        label.setWrapText(true);\n        label.setPrefWidth(360);\n        return label;\n    }\n\n    public static void show(DesktopPane desktopPane) {\n        new IkonPickerDialog()\n            .showAndWait()\n            .ifPresent(ikonProvider -> IkonInternalWindow.show(ikonProvider, desktopPane));\n    }\n\n    private static class IkonData implements Comparable<IkonData> {\n        private String name;\n        private IkonProvider ikonProvider;\n\n        @Override\n        public String toString() {\n            return name;\n        }\n\n        @Override\n        public int compareTo(IkonData o) {\n            return name.compareTo(o.name);\n        }\n\n        static IkonData of(IkonProvider ikonProvider) {\n            IkonData ikonData = new IkonData();\n            ikonData.ikonProvider = ikonProvider;\n            ikonData.name = ikonProvider.getIkon().getSimpleName();\n            return ikonData;\n        }\n    }\n}\n"
  },
  {
    "path": "apps/ikonli-browser/src/main/java/org/kordamp/ikonli/browser/Launcher.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.browser;\n\nimport javafx.application.Application;\n\n/**\n * @author Andres Almiray\n */\npublic class Launcher {\n    public static void main(String[] args) {\n        if (printVersion(args)) return;\n        Application.launch(IkonBrowser.class, args);\n    }\n\n    private static boolean printVersion(String[] args) {\n        if (args != null) {\n            for (String arg : args) {\n                if (\"-version\".equals(arg) || \"--version\".equals(arg)) {\n                    System.out.println(\"Ikonli Browser \" + Versions.IKONLI_VERSION);\n                    return true;\n                }\n            }\n        }\n        return false;\n    }\n}\n"
  },
  {
    "path": "apps/ikonli-browser/src/main/java/org/kordamp/ikonli/browser/SearchInternalWindow.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.browser;\n\nimport eu.hansolo.tilesfx.tools.FlowGridPane;\nimport javafx.application.Platform;\nimport javafx.beans.binding.Bindings;\nimport javafx.beans.property.BooleanProperty;\nimport javafx.beans.property.ObjectProperty;\nimport javafx.beans.property.SimpleBooleanProperty;\nimport javafx.beans.property.SimpleObjectProperty;\nimport javafx.beans.property.SimpleStringProperty;\nimport javafx.beans.property.StringProperty;\nimport javafx.collections.ListChangeListener;\nimport javafx.collections.ObservableList;\nimport javafx.concurrent.Task;\nimport javafx.geometry.Insets;\nimport javafx.geometry.Pos;\nimport javafx.scene.Node;\nimport javafx.scene.control.Button;\nimport javafx.scene.control.Label;\nimport javafx.scene.control.ProgressBar;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.control.TextField;\nimport javafx.scene.input.Clipboard;\nimport javafx.scene.input.ClipboardContent;\nimport javafx.scene.layout.Background;\nimport javafx.scene.layout.BackgroundFill;\nimport javafx.scene.layout.CornerRadii;\nimport javafx.scene.paint.Color;\nimport org.kordamp.desktoppanefx.scene.layout.DesktopPane;\nimport org.kordamp.desktoppanefx.scene.layout.InternalWindow;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.ikonli.boxicons.BoxiconsRegular;\nimport org.kordamp.ikonli.browser.internal.JavaFXThreadProxyObservableList;\nimport org.kordamp.ikonli.javafx.FontIcon;\nimport org.tbee.javafx.scene.layout.MigPane;\n\nimport java.util.ArrayList;\nimport java.util.EnumSet;\nimport java.util.List;\nimport java.util.Optional;\nimport java.util.ServiceLoader;\nimport java.util.concurrent.ExecutorService;\nimport java.util.concurrent.Executors;\n\nimport static java.util.EnumSet.allOf;\nimport static java.util.Objects.requireNonNull;\nimport static javafx.collections.FXCollections.observableArrayList;\n\n/**\n * @author Andres Almiray\n */\npublic class SearchInternalWindow extends InternalWindow {\n    private static final String SEARCH_WINDOW_ID = \"__SEARCH__\";\n\n    private final Model model = new Model();\n    private final Controller controller = new Controller(model);\n\n    public SearchInternalWindow(Node icon, MigPane migPane) {\n        super(SEARCH_WINDOW_ID, icon, \"Search\", migPane);\n\n        Label label = new Label(\"Search:\");\n        TextField searchItem = new TextField();\n        model.termProperty().bind(searchItem.textProperty());\n        Button searchButton = new Button();\n        searchButton.setGraphic(FontIcon.of(BoxiconsRegular.SEARCH_ALT_2, Color.WHITE));\n        searchButton.getStyleClass().addAll(\"btn\", \"btm-sm\", \"btn-primary\");\n        migPane.add(label);\n        migPane.add(searchItem, \"grow\");\n        migPane.add(searchButton);\n\n        Button cancelButton = new Button();\n        cancelButton.setGraphic(FontIcon.of(BoxiconsRegular.X, Color.WHITE));\n        cancelButton.getStyleClass().addAll(\"btn\", \"btm-sm\", \"btn-danger\");\n        ProgressBar progress = new ProgressBar();\n        migPane.add(progress, \"span 2, grow\");\n        migPane.add(cancelButton);\n\n        label = new Label(\"Selection:\");\n        TextField selection = new TextField();\n        selection.setEditable(false);\n        selection.textProperty().bind(model.selectionProperty());\n        Button copy = new Button();\n        copy.setGraphic(FontIcon.of(BoxiconsRegular.COPY, Color.WHITE));\n        copy.getStyleClass().addAll(\"btn\", \"btm-sm\", \"btn-primary\");\n        migPane.add(label);\n        migPane.add(selection, \"grow\");\n        migPane.add(copy);\n\n        copy.disableProperty().bind(selection.textProperty().isEmpty());\n        copy.setOnAction(e -> {\n            final Clipboard clipboard = Clipboard.getSystemClipboard();\n            final ClipboardContent content = new ClipboardContent();\n            content.putString(model.getSelection());\n            clipboard.setContent(content);\n        });\n\n        final FlowGridPane grid = new FlowGridPane(10, 20);\n        grid.setHgap(5);\n        grid.setVgap(5);\n        grid.setAlignment(Pos.CENTER);\n        grid.setCenterShape(true);\n        grid.setPadding(new Insets(5));\n        grid.setBackground(new Background(new BackgroundFill(Color.WHITE, CornerRadii.EMPTY, Insets.EMPTY)));\n        migPane.add(new ScrollPane(grid), \"span 3, grow\");\n\n        searchButton.setOnAction(e -> searchIcons());\n\n        BooleanProperty enabled = new SimpleBooleanProperty(this, \"enabled\", true);\n        BooleanProperty running = new SimpleBooleanProperty(this, \"running\", false);\n\n        searchItem.textProperty().addListener((observable, oldValue, newValue) -> {\n            model.setState(null == newValue || newValue.isEmpty() ? State.DISABLED : State.READY);\n        });\n        running.addListener((observable, oldValue, newValue) -> {\n            if (null != newValue && newValue) grid.getChildren().clear();\n        });\n\n        model.stateProperty().addListener((observable, oldValue, newValue) ->\n            Platform.runLater(() -> {\n                switch (newValue) {\n                    case DISABLED:\n                        enabled.setValue(false);\n                        running.setValue(false);\n                        break;\n                    case READY:\n                        enabled.setValue(true);\n                        running.setValue(false);\n                        break;\n                    case RUNNING:\n                        enabled.setValue(false);\n                        running.setValue(true);\n                        break;\n                }\n            }));\n\n        searchButton.disableProperty().bind(Bindings.not(enabled));\n        cancelButton.visibleProperty().bind(running);\n        cancelButton.managedProperty().bind(running);\n        progress.visibleProperty().bind(running);\n        progress.managedProperty().bind(running);\n\n        model.getIkons().addListener(new ListChangeListener<>() {\n            private final FontIcon[] previousIcon = new FontIcon[1];\n\n            @Override\n            public void onChanged(Change<? extends Ikon> c) {\n                while (c.next()) {\n                    if (c.wasAdded()) {\n                        addIcons(new ArrayList<>(c.getAddedSubList()), grid);\n                    } else if (c.wasRemoved()) {\n                        // can only happen when we clear the list\n                        if (Platform.isFxApplicationThread()) {\n                            grid.getChildren().clear();\n                        } else {\n                            Platform.runLater(() -> grid.getChildren().clear());\n                        }\n                    }\n                }\n            }\n\n            private void addIcons(List<? extends Ikon> list, FlowGridPane grid) {\n                if (Platform.isFxApplicationThread()) {\n                    doAddIcons(list, grid);\n                } else {\n                    Platform.runLater(() -> doAddIcons(list, grid));\n                }\n            }\n\n            private void doAddIcons(List<? extends Ikon> list, FlowGridPane grid) {\n                list.forEach(ikon -> grid.getChildren().add(createIcon(ikon)));\n            }\n\n            private FontIcon createIcon(Ikon ikon) {\n                FontIcon icon = FontIcon.of(ikon);\n                icon.getStyleClass().setAll(\"font-icon\");\n                icon.setOnMouseClicked(me -> {\n                    if (previousIcon[0] != null) {\n                        previousIcon[0].getStyleClass().remove(\"active-icon\");\n                    }\n                    FontIcon nextIcon = (FontIcon) me.getSource();\n                    model.setSelection(nextIcon.getIconCode().getDescription());\n                    nextIcon.getStyleClass().add(\"active-icon\");\n                    previousIcon[0] = nextIcon;\n                });\n                return icon;\n            }\n        });\n\n        setOnHidden(e -> controller.cancel());\n    }\n\n    @Override\n    public void closeWindow() {\n        controller.shutdown();\n        super.closeWindow();\n    }\n\n    private void searchIcons() {\n        controller.cancel();\n        controller.search();\n    }\n\n    public static void show(DesktopPane desktopPane) {\n        desktopPane.findInternalWindow(SEARCH_WINDOW_ID)\n            .or(() -> Optional.of(createInternalWindow()))\n            .ifPresent(desktopPane::addInternalWindow);\n    }\n\n    private static SearchInternalWindow createInternalWindow() {\n        SearchInternalWindow internalWindow = new SearchInternalWindow(\n            FontIcon.of(BoxiconsRegular.GRID_SMALL, Color.WHITE),\n            new MigPane(\"fill, wrap 3\",\n                \"[left, p!][80%][center]\",\n                \"[p][p][p][80%]\"));\n        internalWindow.setPrefSize(800, 600);\n        internalWindow.getStylesheets().addAll(\n            IkonBrowser.class.getResource(\"common.css\").toExternalForm(),\n            IkonBrowser.class.getResource(\"ikon-window.css\").toExternalForm());\n        return internalWindow;\n    }\n\n    private static <E> ObservableList<E> createJavaFXThreadProxyList(ObservableList<E> source) {\n        requireNonNull(source, \"Argument 'source' must not be null\");\n        return new JavaFXThreadProxyObservableList<>(source);\n    }\n\n    public enum State {\n        DISABLED,\n        READY,\n        RUNNING\n    }\n\n    private static class Model {\n        private final ObservableList<Ikon> ikons = observableArrayList();\n        private StringProperty term;\n        private StringProperty selection;\n        private ObjectProperty<State> state;\n        private Task<Void> task;\n\n        public Model() {\n            stateProperty().addListener((observable, oldValue, newValue) -> {\n                if (newValue == State.RUNNING) {\n                    ikons.clear();\n                }\n            });\n        }\n\n        public ObservableList<Ikon> getIkons() {\n            return ikons;\n        }\n\n        public Task<Void> getTask() {\n            return task;\n        }\n\n        public void setTask(Task<Void> task) {\n            this.task = task;\n        }\n\n        public StringProperty termProperty() {\n            if (term == null) {\n                term = new SimpleStringProperty(this, \"term\");\n            }\n            return term;\n        }\n\n        public String getTerm() {\n            return termProperty().get();\n        }\n\n        public void setTerm(String term) {\n            termProperty().set(term);\n        }\n\n        public StringProperty selectionProperty() {\n            if (selection == null) {\n                selection = new SimpleStringProperty(this, \"selection\");\n            }\n            return selection;\n        }\n\n        public String getSelection() {\n            return selectionProperty().get();\n        }\n\n        public void setSelection(String selection) {\n            this.selectionProperty().set(selection);\n        }\n\n        public State getState() {\n            return stateProperty().get();\n        }\n\n        public void setState(State state) {\n            stateProperty().set(state);\n        }\n\n        public ObjectProperty<State> stateProperty() {\n            if (state == null) {\n                state = new SimpleObjectProperty<>(this, \"state\", State.READY);\n            }\n            return state;\n        }\n    }\n\n    private static class Controller {\n        private final Model model;\n        private final List<Ikon> ikons = new ArrayList<>();\n        private ExecutorService executor;\n\n        public Controller(Model model) {\n            this.model = model;\n        }\n\n        public void search() {\n            model.getIkons().clear();\n\n            if (executor == null) {\n                executor = Executors.newSingleThreadExecutor();\n            }\n\n            if (ikons.isEmpty()) {\n                loadIcons();\n            }\n\n            Task<Void> task = createTask();\n            model.setTask(task);\n            executor.execute(task);\n        }\n\n        private Task<Void> createTask() {\n            return new Task<>() {\n                @Override\n                protected Void call() throws Exception {\n                    String term = model.getTerm().toLowerCase();\n                    ikons.stream()\n                        .filter(ikon -> ikon.getDescription().contains(term))\n                        .peek(model.getIkons()::add)\n                        .forEach(Controller::noop);\n\n                    return null;\n                }\n            };\n        }\n\n        public void cancel() {\n            model.setSelection(\"\");\n            if (model.getTask() != null) {\n                model.getTask().cancel(true);\n                model.setState(State.READY);\n            }\n        }\n\n        public void shutdown() {\n            executor.shutdownNow();\n            executor = null;\n        }\n\n        private void loadIcons() {\n            if (null != IkonProvider.class.getModule().getLayer()) {\n                for (IkonProvider provider : ServiceLoader.load(IkonProvider.class.getModule().getLayer(), IkonProvider.class)) {\n                    add(allOf(provider.getIkon()), ikons);\n                }\n            } else {\n                for (IkonProvider provider : ServiceLoader.load(IkonProvider.class)) {\n                    add(allOf(provider.getIkon()), ikons);\n                }\n            }\n        }\n\n        private void add(EnumSet<? extends Ikon> set, List<Ikon> ikons) {\n            ikons.addAll(set);\n        }\n\n        private static void noop(Ikon ikon) {\n        }\n    }\n}\n"
  },
  {
    "path": "apps/ikonli-browser/src/main/java/org/kordamp/ikonli/browser/Versions.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.browser;\n\nimport java.util.ResourceBundle;\n\n/**\n * @author Andres Almiray\n */\npublic class Versions {\n    private static final ResourceBundle bundle = ResourceBundle.getBundle(\"org.kordamp.ikonli.browser.versions\");\n    public static final String IKONLI_VERSION = bundle.getString(\"ikonli_version\");\n}\n"
  },
  {
    "path": "apps/ikonli-browser/src/main/java/org/kordamp/ikonli/browser/internal/JavaFXThreadProxyObservableList.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.browser.internal;\n\nimport javafx.application.Platform;\nimport javafx.collections.ListChangeListener;\nimport javafx.collections.ObservableList;\nimport javafx.collections.transformation.TransformationList;\n\n/**\n * @author Andres Almiray\n */\npublic class JavaFXThreadProxyObservableList<E> extends TransformationList<E, E> {\n    public JavaFXThreadProxyObservableList(ObservableList<E> source) {\n        super(source);\n    }\n\n    @Override\n    protected void sourceChanged(ListChangeListener.Change<? extends E> c) {\n        if (Platform.isFxApplicationThread()) {\n            fireChange(c);\n        } else {\n            Platform.runLater(() -> fireChange(c));\n        }\n    }\n\n    @Override\n    public int getSourceIndex(int index) {\n        return index;\n    }\n\n    @Override\n    public E get(int index) {\n        return getSource().get(index);\n    }\n\n    @Override\n    public int size() {\n        return getSource().size();\n    }\n\n    @Override\n    public int getViewIndex(int index) {\n        return index;\n    }\n}"
  },
  {
    "path": "apps/ikonli-browser/src/main/resources/org/kordamp/ikonli/browser/browser.css",
    "content": ".desktoppane,\n.internal-window-content {\n    -fx-background-color: white;\n    -fx-border-color: darkgrey;\n    -fx-border-width: 1px;\n    -fx-border-style: solid;\n}\n\n.taskbar-icon .label,\n.internal-window .internal-window-titlebar-title {\n    -fx-text-fill: white;\n}\n\n.internal-window:active,\n.internal-window:active .internal-window-titlebar {\n    -fx-background-color: #120caf, linear-gradient(#1f52ff 10%, #120caf 30%, #1f52ff 100%);\n    -fx-border-color: #120caf;\n}\n\n.internal-window,\n.internal-window .internal-window-titlebar {\n    -fx-background-color: #1f52ff, linear-gradient(#5ca6ff 10%, #1f52ff 30%, #5ca6ff 100%);\n    -fx-border-color: #1f52ff;\n}\n\n.taskbar-icon {\n    -fx-background-color: #1f52ff, linear-gradient(#5ca6ff 10%, #1f52ff 30%, #5ca6ff 100%);\n    -fx-border-color: #1f52ff;\n    -fx-border-radius: 6;\n}\n\n.internal-window:active .internal-window-titlebar-button .ikonli-font-icon {\n    -fx-icon-color: #120caf;\n}\n\n.internal-window .taskbar-icon-button .ikonli-font-icon,\n.internal-window .internal-window-titlebar-button .ikonli-font-icon {\n    -fx-icon-color: #1f52ff;\n}"
  },
  {
    "path": "apps/ikonli-browser/src/main/resources/org/kordamp/ikonli/browser/common.css",
    "content": ".dialog-content {\n    -fx-background-color: white;\n    -fx-border-color: darkgrey;\n    -fx-border-width: 1px;\n    -fx-border-style: solid;\n}"
  },
  {
    "path": "apps/ikonli-browser/src/main/resources/org/kordamp/ikonli/browser/ikon-window.css",
    "content": ".font-icon {\n    -fx-icon-size: 48px;\n    -fx-icon-color: black;\n}\n\n.active-icon {\n    -fx-icon-color: red;\n}"
  },
  {
    "path": "apps/ikonli-browser/src/main/resources/org/kordamp/ikonli/browser/versions.properties",
    "content": "#\n# SPDX-License-Identifier: Apache-2.0\n#\n# Copyright 2015-2025 Andres Almiray\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\nikonli_version=${ikonli_version}"
  },
  {
    "path": "apps/sampler-javafx/sampler-javafx.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nplugins {\n    id 'application'\n}\n\napplication {\n    mainModule = 'org.kordamp.ikonli.sampler.javafx'\n    mainClass = 'org.kordamp.ikonli.sampler.javafx.Sampler'\n}\n\ndependencies {\n    implementation project(':ikonli-core')\n    implementation project(':ikonli-javafx')\n    implementation project(':ikonli-antdesignicons-pack')\n    implementation project(':ikonli-bootstrapicons-pack')\n    implementation project(':ikonli-boxicons-pack')\n    implementation project(':ikonli-bpmn-pack')\n    implementation project(':ikonli-bytedance-pack')\n    implementation project(':ikonli-captainicon-pack')\n    implementation project(':ikonli-carbonicons-pack')\n    implementation project(':ikonli-codicons-pack')\n    implementation project(':ikonli-coreui-pack')\n    implementation project(':ikonli-dashicons-pack')\n    implementation project(':ikonli-devicons-pack')\n    implementation project(':ikonli-elusive-pack')\n    implementation project(':ikonli-entypo-pack')\n    implementation project(':ikonli-evaicons-pack')\n    implementation project(':ikonli-feather-pack')\n    implementation project(':ikonli-fileicons-pack')\n    implementation project(':ikonli-fluentui-pack')\n    implementation project(':ikonli-fontawesome-pack')\n    implementation project(':ikonli-fontawesome5-pack')\n    implementation project(':ikonli-fontawesome6-pack')\n    implementation project(':ikonli-fontelico-pack')\n    implementation project(':ikonli-foundation-pack')\n    implementation project(':ikonli-hawcons-pack')\n    implementation project(':ikonli-icomoon-pack')\n    implementation project(':ikonli-ionicons-pack')\n    implementation project(':ikonli-ionicons4-pack')\n    implementation project(':ikonli-jamicons-pack')\n    implementation project(':ikonli-ligaturesymbols-pack')\n    implementation project(':ikonli-lineawesome-pack')\n    implementation project(':ikonli-linecons-pack')\n    implementation project(':ikonli-maki-pack')\n    implementation project(':ikonli-maki2-pack')\n    implementation project(':ikonli-mapicons-pack')\n    implementation project(':ikonli-material-pack')\n    implementation project(':ikonli-material2-pack')\n    implementation project(':ikonli-materialdesign-pack')\n    implementation project(':ikonli-materialdesign2-pack')\n    implementation project(':ikonli-medicons-pack')\n    implementation project(':ikonli-metrizeicons-pack')\n    implementation project(':ikonli-microns-pack')\n    implementation project(':ikonli-ociicons-pack')\n    implementation project(':ikonli-octicons-pack')\n    implementation project(':ikonli-openiconic-pack')\n    implementation project(':ikonli-paymentfont-pack')\n    implementation project(':ikonli-prestashopicons-pack')\n    implementation project(':ikonli-remixicon-pack')\n    implementation project(':ikonli-runestroicons-pack')\n    implementation project(':ikonli-simpleicons-pack')\n    implementation project(':ikonli-simplelineicons-pack')\n    implementation project(':ikonli-subway-pack')\n    implementation project(':ikonli-themify-pack')\n    implementation project(':ikonli-typicons-pack')\n    implementation project(':ikonli-unicons-pack')\n    implementation project(':ikonli-weathericons-pack')\n    implementation project(':ikonli-websymbols-pack')\n    implementation project(':ikonli-whhg-pack')\n    implementation project(':ikonli-win10-pack')\n    implementation project(':ikonli-zondicons-pack')\n\n    implementation \"org.openjfx:javafx-base:${javafxVersion}:${javafx_platform}\"\n    implementation \"org.openjfx:javafx-graphics:${javafxVersion}:${javafx_platform}\"\n    implementation \"org.openjfx:javafx-controls:${javafxVersion}:${javafx_platform}\"\n    implementation \"org.openjfx:javafx-fxml:${javafxVersion}:${javafx_platform}\"\n    implementation \"org.openjfx:javafx-swing:${javafxVersion}:${javafx_platform}\"\n}\n\nconfig {\n    publishing {\n        enabled = false\n    }\n}\n"
  },
  {
    "path": "apps/sampler-javafx/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.sampler.javafx {\n    opens org.kordamp.ikonli.sampler.javafx;\n    requires javafx.base;\n    requires javafx.graphics;\n    requires javafx.controls;\n    requires javafx.fxml;\n    requires org.kordamp.ikonli.core;\n    requires org.kordamp.ikonli.javafx;\n\n    uses org.kordamp.ikonli.IkonHandler;\n    uses org.kordamp.ikonli.IkonProvider;\n}\n"
  },
  {
    "path": "apps/sampler-javafx/src/main/java/org/kordamp/ikonli/sampler/javafx/Sampler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.sampler.javafx;\n\nimport javafx.application.Application;\nimport javafx.fxml.FXMLLoader;\nimport javafx.geometry.Insets;\nimport javafx.scene.Scene;\nimport javafx.scene.control.ScrollPane;\nimport javafx.scene.control.Tab;\nimport javafx.scene.control.TabPane;\nimport javafx.scene.layout.GridPane;\nimport javafx.stage.Stage;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.ikonli.javafx.FontIcon;\n\nimport java.net.URL;\nimport java.util.EnumSet;\nimport java.util.Map;\nimport java.util.ServiceLoader;\nimport java.util.TreeMap;\n\nimport static java.util.EnumSet.allOf;\n\n/**\n * @author Andres Almiray\n */\npublic class Sampler extends Application {\n    @Override\n    public void start(Stage primaryStage) throws Exception {\n        URL location = getClass().getResource(\"sampler.fxml\");\n        FXMLLoader fxmlLoader = new FXMLLoader(location);\n        TabPane tabPane = fxmlLoader.load();\n\n        Map<String, IkonProvider> ikons = new TreeMap<>();\n        ServiceLoader<IkonProvider> providers = ServiceLoader.load(IkonProvider.class);\n        for (IkonProvider provider : providers) {\n            ikons.put(provider.getIkon().getSimpleName(), provider);\n        }\n        for (IkonProvider provider : ikons.values()) {\n            tabPane.getTabs().add(new DemoTab(provider.getIkon(), allOf(provider.getIkon())));\n        }\n\n        Scene scene = new Scene(tabPane);\n        scene.getStylesheets().add(\"org/kordamp/ikonli/sampler/javafx/sampler.css\");\n\n        primaryStage.setTitle(\"Ikonli Sampler\");\n        primaryStage.setScene(scene);\n        primaryStage.setWidth(1024);\n        primaryStage.setHeight(1024);\n        primaryStage.show();\n    }\n\n    public static void main(String[] args) {\n        launch(Sampler.class);\n    }\n\n    private static class DemoTab extends Tab {\n        private DemoTab(Class<? extends Ikon> iconFontClass, EnumSet<? extends Ikon> enumSet) throws Exception {\n            super(iconFontClass.getSimpleName());\n            setClosable(false);\n\n            GridPane pane = new GridPane();\n            ScrollPane scrollPane = new ScrollPane(pane);\n            setContent(scrollPane);\n\n            int column = 0;\n            int row = 0;\n            int index = 0;\n            for (Ikon value : enumSet) {\n                FontIcon icon = FontIcon.of(value);\n                icon.getStyleClass().setAll(\"font-icon\");\n                pane.add(icon, column++, row);\n                GridPane.setMargin(icon, new Insets(10, 10, 10, 10));\n                if (++index % 10 == 0) {\n                    column = 0;\n                    row++;\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "apps/sampler-javafx/src/main/resources/org/kordamp/ikonli/sampler/javafx/sampler.css",
    "content": ".font-icon {\n    -fx-icon-size: 48px;\n}"
  },
  {
    "path": "apps/sampler-javafx/src/main/resources/org/kordamp/ikonli/sampler/javafx/sampler.fxml",
    "content": "<!--\n\n    SPDX-License-Identifier: Apache-2.0\n\n    Copyright 2015-2025 Andres Almiray\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n        http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n-->\n<?import javafx.geometry.Insets?>\n<?import javafx.scene.control.Tab?>\n<?import javafx.scene.control.TabPane?>\n<?import javafx.scene.layout.GridPane?>\n<?import org.kordamp.ikonli.javafx.FontIcon?>\n<?import org.kordamp.ikonli.javafx.StackedFontIcon?>\n<TabPane xmlns:fx=\"http://javafx.com/fxml\">\n    <padding>\n        <Insets top=\"10\" left=\"10\" bottom=\"10\" right=\"10\"/>\n    </padding>\n    <Tab text=\"Stacked\" closable=\"false\">\n        <GridPane hgap=\"20\" vgap=\"20\">\n            <StackedFontIcon GridPane.columnIndex=\"0\" GridPane.rowIndex=\"0\" iconSize=\"48\">\n                <FontIcon iconLiteral=\"fa-circle-thin\" iconColor=\"red\"/>\n                <FontIcon iconLiteral=\"fa-camera\" StackedFontIcon.iconSize=\"0.5\"/>\n            </StackedFontIcon>\n            <StackedFontIcon GridPane.columnIndex=\"1\" GridPane.rowIndex=\"0\" iconSize=\"64\">\n                <FontIcon iconLiteral=\"fa-circle-thin\" iconColor=\"forestgreen\"/>\n                <FontIcon iconLiteral=\"oct-heart-24\" StackedFontIcon.iconSize=\"0.5\"/>\n            </StackedFontIcon>\n            <StackedFontIcon GridPane.columnIndex=\"2\" GridPane.rowIndex=\"0\" iconSize=\"80\">\n                <FontIcon iconLiteral=\"fa-circle-thin\" iconColor=\"blue\"/>\n                <FontIcon iconLiteral=\"ion-alert\" StackedFontIcon.iconSize=\"0.5\"/>\n            </StackedFontIcon>\n            <StackedFontIcon GridPane.columnIndex=\"3\" GridPane.rowIndex=\"0\" iconSize=\"96\">\n                <FontIcon iconLiteral=\"fa-circle-thin\" iconColor=\"red\"/>\n                <FontIcon iconLiteral=\"fi-first-aid\" StackedFontIcon.iconSize=\"0.5\"/>\n            </StackedFontIcon>\n            <StackedFontIcon GridPane.columnIndex=\"4\" GridPane.rowIndex=\"0\" iconSize=\"112\">\n                <FontIcon iconLiteral=\"fa-circle-thin\" iconColor=\"forestgreen\"/>\n                <FontIcon iconLiteral=\"di-java\" StackedFontIcon.iconSize=\"0.5\"/>\n            </StackedFontIcon>\n            <StackedFontIcon GridPane.columnIndex=\"5\" GridPane.rowIndex=\"0\" iconSize=\"124\">\n                <FontIcon iconLiteral=\"fa-circle-thin\" iconColor=\"blue\"/>\n                <FontIcon iconLiteral=\"eli-hand-right\" StackedFontIcon.iconSize=\"0.5\"/>\n            </StackedFontIcon>\n        </GridPane>\n    </Tab>\n</TabPane>"
  },
  {
    "path": "apps/sampler-swing/sampler-swing.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\napply plugin: 'application'\n\napplication {\n    mainModule = 'org.kordamp.ikonli.sampler.swing'\n    mainClass = 'org.kordamp.ikonli.sampler.swing.Sampler'\n}\n\ndependencies {\n    implementation project(':ikonli-core')\n    implementation project(':ikonli-swing')\n    implementation project(':ikonli-antdesignicons-pack')\n    implementation project(':ikonli-bootstrapicons-pack')\n    implementation project(':ikonli-boxicons-pack')\n    implementation project(':ikonli-bpmn-pack')\n    implementation project(':ikonli-bytedance-pack')\n    implementation project(':ikonli-captainicon-pack')\n    implementation project(':ikonli-carbonicons-pack')\n    implementation project(':ikonli-codicons-pack')\n    implementation project(':ikonli-coreui-pack')\n    implementation project(':ikonli-dashicons-pack')\n    implementation project(':ikonli-devicons-pack')\n    implementation project(':ikonli-elusive-pack')\n    implementation project(':ikonli-entypo-pack')\n    implementation project(':ikonli-evaicons-pack')\n    implementation project(':ikonli-feather-pack')\n    implementation project(':ikonli-fileicons-pack')\n    implementation project(':ikonli-fluentui-pack')\n    implementation project(':ikonli-fontawesome-pack')\n    implementation project(':ikonli-fontawesome5-pack')\n    implementation project(':ikonli-fontawesome6-pack')\n    implementation project(':ikonli-fontelico-pack')\n    implementation project(':ikonli-foundation-pack')\n    implementation project(':ikonli-hawcons-pack')\n    implementation project(':ikonli-icomoon-pack')\n    implementation project(':ikonli-ionicons-pack')\n    implementation project(':ikonli-ionicons4-pack')\n    implementation project(':ikonli-jamicons-pack')\n    implementation project(':ikonli-ligaturesymbols-pack')\n    implementation project(':ikonli-lineawesome-pack')\n    implementation project(':ikonli-linecons-pack')\n    implementation project(':ikonli-maki-pack')\n    implementation project(':ikonli-maki2-pack')\n    implementation project(':ikonli-mapicons-pack')\n    implementation project(':ikonli-material-pack')\n    implementation project(':ikonli-material2-pack')\n    implementation project(':ikonli-materialdesign-pack')\n    implementation project(':ikonli-materialdesign2-pack')\n    implementation project(':ikonli-medicons-pack')\n    implementation project(':ikonli-metrizeicons-pack')\n    implementation project(':ikonli-microns-pack')\n    implementation project(':ikonli-ociicons-pack')\n    implementation project(':ikonli-octicons-pack')\n    implementation project(':ikonli-openiconic-pack')\n    implementation project(':ikonli-paymentfont-pack')\n    implementation project(':ikonli-prestashopicons-pack')\n    implementation project(':ikonli-remixicon-pack')\n    implementation project(':ikonli-runestroicons-pack')\n    implementation project(':ikonli-simpleicons-pack')\n    implementation project(':ikonli-simplelineicons-pack')\n    implementation project(':ikonli-subway-pack')\n    implementation project(':ikonli-themify-pack')\n    implementation project(':ikonli-typicons-pack')\n    implementation project(':ikonli-unicons-pack')\n    implementation project(':ikonli-weathericons-pack')\n    implementation project(':ikonli-websymbols-pack')\n    implementation project(':ikonli-whhg-pack')\n    implementation project(':ikonli-win10-pack')\n    implementation project(':ikonli-zondicons-pack')\n}\n\nconfig {\n    publishing {\n        enabled = false\n    }\n}\n"
  },
  {
    "path": "apps/sampler-swing/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.sampler.swing {\n    opens org.kordamp.ikonli.sampler.swing;\n    requires java.desktop;\n    requires org.kordamp.ikonli.core;\n    requires org.kordamp.ikonli.swing;\n\n    uses org.kordamp.ikonli.IkonHandler;\n    uses org.kordamp.ikonli.IkonProvider;\n}\n"
  },
  {
    "path": "apps/sampler-swing/src/main/java/org/kordamp/ikonli/sampler/swing/Sampler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.sampler.swing;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.ikonli.swing.FontIcon;\n\nimport javax.swing.JFrame;\nimport javax.swing.JLabel;\nimport javax.swing.JPanel;\nimport javax.swing.JScrollPane;\nimport javax.swing.JTabbedPane;\nimport javax.swing.SwingUtilities;\nimport javax.swing.WindowConstants;\nimport java.awt.Dimension;\nimport java.awt.GridLayout;\nimport java.util.EnumSet;\nimport java.util.Map;\nimport java.util.ServiceLoader;\nimport java.util.TreeMap;\n\nimport static java.util.EnumSet.allOf;\n\n/**\n * @author Andres Almiray\n */\npublic class Sampler {\n    public static void main(String[] args) {\n        SwingUtilities.invokeLater(Sampler::launch);\n    }\n\n    private static void launch() {\n        JTabbedPane tabPane = new JTabbedPane();\n\n        Map<String, IkonProvider> ikons = new TreeMap<>();\n        ServiceLoader<IkonProvider> providers = ServiceLoader.load(IkonProvider.class);\n        for (IkonProvider provider : providers) {\n            ikons.put(provider.getIkon().getSimpleName(), provider);\n        }\n        for (IkonProvider provider : ikons.values()) {\n            createTab(tabPane, provider.getIkon(), new DemoTab(allOf(provider.getIkon())));\n        }\n\n        JFrame frame = new JFrame(\"Ikonli Sampler\");\n        frame.add(tabPane);\n        frame.setSize(new Dimension(1024, 1024));\n        frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);\n        frame.setVisible(true);\n    }\n\n    private static void createTab(JTabbedPane tabPane, Class<? extends Ikon> iconFontClass, DemoTab tab) {\n        tabPane.add(iconFontClass.getSimpleName(), tab);\n    }\n\n    private static class DemoTab extends JScrollPane {\n        private DemoTab(EnumSet<? extends Ikon> enumSet) {\n            JPanel pane = new JPanel(new GridLayout(0, 10, 10, 10));\n            setViewportView(pane);\n\n            for (Ikon value : enumSet) {\n                pane.add(new JLabel(FontIcon.of(value, 48)));\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "bach.args",
    "content": "--external-library-version\n  sormuras-modules=2021.06.06\n--external-library-version\n  javafx=11\n--limit-tool\n  javac,jar,jlink\n--main-java-release\n  11\n--main-module-pattern\n  core/ikonli-*/src/main/java/module-info.java\n--main-module-pattern\n  icon-packs/ikonli-*-pack/src/main/java/module-info.java\n--main-module-pattern\n  apps/*/src/main/java/module-info.java\n"
  },
  {
    "path": "build.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nplugins {\n    id 'com.google.osdetector'\n}\n\next.javafx_platform = osdetector.os == 'osx' ? 'mac' : osdetector.os == 'windows' ? 'win' : osdetector.os\next.platform = \"${osdetector.os}-${osdetector.arch}\"\next.baseVersion = version - '-SNAPSHOT'\n\nconfig {\n    info {\n        name          = 'Ikonli'\n        description   = 'Icon packs for Java applications'\n        inceptionYear = '2015'\n        tags          = ['icons', 'javafx', 'swing']\n\n        specification { enabled = false }\n    }\n\n    docs {\n        javadoc {\n            autoLinks {\n                enabled = false\n            }\n            options {\n                addBooleanOption('javafx', true)\n            }\n            aggregate {\n                enabled = false\n            }\n        }\n    }\n}\n\nidea {\n    project {\n        jdkName '11'\n        languageLevel '11'\n\n        ipr {\n            withXml { provider ->\n                def node = provider.asNode()\n                node.component.find { it.'@name' == 'VcsDirectoryMappings' }?.mapping[0].'@vcs' = 'Git'\n\n                def compilerConfiguration = node.component.find { it.'@name' == 'CompilerConfiguration' }\n                compilerConfiguration.remove(compilerConfiguration.annotationProcessing)\n                compilerConfiguration.append(new XmlParser().parseText('''\n    <annotationProcessing>\n      <profile default=\"true\" name=\"Default\" enabled=\"true\">\n        <processorPath useClasspath=\"true\" />\n      </profile>\n    </annotationProcessing>'''))\n            }\n        }\n    }\n}\n\nsubprojects { subproj ->\n    if (!subproj.name.contains('guide') && !subproj.name.contains('bom')) {\n        tasks.named('compileJava') {\n            options.javaModuleVersion = provider { project.version }\n            options.release = Integer.parseInt(subproj.rootProject.findProperty('targetCompatibility'))\n        }\n\n        license {\n            mapping {\n                fxml = 'XML_STYLE'\n            }\n            exclude '**/*.ttf'\n            exclude '**/*.eot'\n            exclude '**/*.svg'\n            exclude '**/*.otf'\n            exclude '**/*.woff'\n            exclude '**/*.woff2'\n            exclude '**/*.css'\n            exclude '**/*.md'\n            exclude '**/*.txt'\n        }\n    }\n\n    if (subproj.projectDir.parentFile.name.contains('core') || subproj.name.endsWith('-pack')) {\n        jar {\n            bundle {\n                bnd '''\n                    Bundle-SymbolicName: ${project.name}\n                    Bundle-Name: ${project.name}\n                    Bundle-Version: ${project.version}\n                    \n                    Import-Package:         !javafx.*, *;\n                    Export-Package:         *;\n                    Bundle-ActivationPolicy: lazy\n                    \n                    # Remove private packages to prevent embedding\n                    Private-Package: !*\n                    \n                    -nouses: true\n                    -noimportjava: true\n                    '''\n            }\n        }\n\n        dependencies {\n            compileOnly 'org.osgi:osgi.core:8.0.0'\n            compileOnly 'org.osgi:org.osgi.service.component.annotations:1.5.1'\n            testImplementation 'junit:junit:4.13.2'\n\n            compileOnly project(':ikonli-nativeimage-annotations')\n            annotationProcessor project(':ikonli-nativeimage-processor')\n        }\n    }\n\n    if (subproj.name.endsWith('-pack')) {\n        dependencies {\n            api project(':ikonli-core')\n            compileOnly \"org.kordamp.jipsy:jipsy-annotations:${jipsyVersion}\"\n            annotationProcessor \"org.kordamp.jipsy:jipsy-processor:${jipsyVersion}\"\n        }\n\n        tasks.processResources.dependsOn(tasks.register('generateNativeImageResource', org.kordamp.ikonli.gradle.NativeImageResourceGeneratorTask) { t ->\n            String ipn = project.name - 'ikonli-' - '-pack'\n\n            t.outputDirectory.set(file('build/resources/main/META-INF/native-image'))\n            t.groupId.set(project.group)\n            t.artifactId.set(project.name)\n            t.version.set(project.\"${ipn}Version\")\n            t.iconPackName.set(ipn)\n        })\n    }\n}\n\nproject.rootProject.gradle.addBuildListener(new BuildAdapter() {\n    @Override\n    void projectsEvaluated(Gradle gradle) {\n        gradle.rootProject.childProjects.values()\n            .grep({ p -> p.name.endsWith('-pack') })\n            .each { p ->\n                p.tasks.withType(Jar).each { Jar jar ->\n                    jar.configure {\n                        exclude '**/*.css'\n                        exclude '**/*.otf'\n                        exclude '**/*.eot'\n                        exclude '**/*.svg'\n                        exclude '**/*.woff'\n                        exclude '**/*.woff2'\n                    }\n                }\n            }\n    }\n})\n\nprofiles {\n    profile('sbom') {\n        activation {\n            property {\n                key   = 'sbom'\n                value = true\n            }\n        }\n        action {\n            println 'SBOM generation is turned ON'\n\n            gradleProjects {\n                subprojects {\n                    dirs(['core', 'icon-packs']) {\n                        cyclonedxBom {\n                            includeConfigs = ['runtimeClasspath']\n                            projectType = 'library'\n                            outputName = \"${project.name}-${project.version}-cyclonedx\".toString()\n                            destination = file('build/reports/cyclonedx')\n                            includeLicenseText = false\n\n                            def lic = new org.cyclonedx.model.License()\n                            lic.setId('Apache-2.0')\n                            lic.setUrl('https://www.apache.org/licenses/LICENSE-2.0')\n                            def attachmentText = new org.cyclonedx.model.AttachmentText()\n                            attachmentText.setText('')\n                            lic.setLicenseText(attachmentText)\n                            licenseChoice { lc ->\n                                lc.addLicense(lic)\n                            }\n                        }\n\n                        publishing {\n                            publications {\n                                main(MavenPublication) {\n                                    artifact classifier: 'cyclonedx', source: new File(cyclonedxBom.destination.get(), cyclonedxBom.outputName.get() + '.xml')\n                                    artifact classifier: 'cyclonedx', source: new File(cyclonedxBom.destination.get(), cyclonedxBom.outputName.get() + '.json')\n                                }\n                            }\n                        }\n\n                        project.generatePomFileForMainPublication.dependsOn(cyclonedxBom)\n                    }\n                }\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "buildSrc/build.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nplugins {\n    id 'java-library'\n    id 'groovy'\n}\n\n"
  },
  {
    "path": "buildSrc/src/main/groovy/org/kordamp/ikonli/gradle/NativeImageResourceGeneratorTask.groovy",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.gradle\n\nimport groovy.transform.CompileStatic\nimport org.gradle.api.DefaultTask\nimport org.gradle.api.file.DirectoryProperty\nimport org.gradle.api.model.ObjectFactory\nimport org.gradle.api.provider.Property\nimport org.gradle.api.tasks.Input\nimport org.gradle.api.tasks.OutputDirectory\nimport org.gradle.api.tasks.TaskAction\n\nimport javax.inject.Inject\nimport java.nio.file.Files\n\n@CompileStatic\nclass NativeImageResourceGeneratorTask extends DefaultTask {\n    @OutputDirectory\n    final DirectoryProperty outputDirectory\n\n    @Input\n    final Property<String> groupId\n\n    @Input\n    final Property<String> artifactId\n\n    @Input\n    final Property<String> version\n\n    @Input\n    final Property<String> iconPackName\n\n    @Inject\n    NativeImageResourceGeneratorTask(ObjectFactory objects) {\n        outputDirectory = objects.directoryProperty()\n        groupId = objects.property(String)\n        artifactId = objects.property(String)\n        version = objects.property(String)\n        iconPackName = objects.property(String)\n    }\n\n    @TaskAction\n    void generateResourceConfigFile() {\n        File resourceConfig = outputDirectory.get().file(\"${groupId.get()}/${artifactId.get()}/resources-config.json\").asFile\n        Files.createDirectories(resourceConfig.parentFile.toPath())\n\n        resourceConfig.text = \"\"\"\n{\n  \"resources\": {\n    \"includes\": [\n      {\n        \"pattern\": \"META-INF/resources/${iconPackName.get()}/${version.get()}/fonts/*.ttf\"\n      }\n    ]\n  }\n}      \n\"\"\"\n    }\n}\n"
  },
  {
    "path": "core/ikonli-bom/ikonli-bom.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nplugins {\n    id 'org.kordamp.gradle.bom'\n}\n\nconfig {\n    bom {\n        exclude('guide')\n        exclude('sampler-javafx')\n        exclude('sampler-swing')\n        exclude('ikonli-browser')\n    }\n}"
  },
  {
    "path": "core/ikonli-core/ikonli-core.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\ndependencies {\n    compileOnly \"org.kordamp.jipsy:jipsy-annotations:${jipsyVersion}\"\n    annotationProcessor \"org.kordamp.jipsy:jipsy-processor:${jipsyVersion}\"\n}"
  },
  {
    "path": "core/ikonli-core/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.core {\n    exports org.kordamp.ikonli;\n    requires static org.kordamp.jipsy.annotations;\n    requires java.logging;\n    requires static org.osgi.service.component.annotations;\n    requires static osgi.core;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n\n    uses org.kordamp.ikonli.IkonHandler;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.IkonliIkonResolver;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.IkonliIkonProvider;\n}"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/AbstractIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\n/**\n * @author Andres Almiray\n */\npublic abstract class AbstractIkonHandler implements IkonHandler {\n    private Object font;\n\n    public Object getFont() {\n        return font;\n    }\n\n    public void setFont(Object font) {\n        this.font = font;\n    }\n}"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/AbstractIkonResolver.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\nimport java.util.Arrays;\nimport java.util.ServiceLoader;\nimport java.util.Set;\nimport java.util.concurrent.CopyOnWriteArraySet;\nimport java.util.logging.Logger;\n\nimport static java.util.Objects.requireNonNull;\n\n/**\n * @author Andres Almiray\n */\npublic class AbstractIkonResolver implements IkonResolver {\n    private static final String ORG_KORDAMP_IKONLI_STRICT = \"org.kordamp.ikonli.strict\";\n    private final static Logger LOGGER = Logger.getLogger(AbstractIkonResolver.class.getName());\n\n    protected final Set<IkonHandler> handlers = new CopyOnWriteArraySet<>();\n    protected final Set<IkonHandler> customHandlers = new CopyOnWriteArraySet<>();\n\n    @Override\n    public boolean registerHandler(IkonHandler handler) {\n        requireNonNull(handler, \"Handler must not be null\");\n        if (isHandlerLoadedViaClasspath(handler)) {\n            throwOrWarn(String.format(\"IkonHandler for %s is already loaded via classpath\", handler.getFontFamily()));\n            return false;\n        }\n        return customHandlers.add(handler);\n    }\n\n    @Override\n    public boolean unregisterHandler(IkonHandler handler) {\n        requireNonNull(handler, \"Handler must not be null\");\n        if (isHandlerLoadedViaClasspath(handler)) {\n            throwOrWarn(String.format(\"IkonHandler for %s was loaded via classpath and can't be unregistered\", handler.getFontFamily()));\n            return false;\n        }\n        return customHandlers.remove(handler);\n    }\n\n    @Override\n    public IkonHandler resolve(String value) {\n        requireNonNull(value, \"Ikon description must not be null\");\n        return findHandler(value)\n            .orElseThrow(() -> new UnsupportedOperationException(\"Cannot resolve '\" + value + \"'\"));\n    }\n\n    protected java.util.Optional<IkonHandler> findHandler(String value) {\n        return Arrays.asList(handlers, customHandlers).stream()\n            .flatMap(Set::stream)\n            .filter(handler -> handler.supports(value))\n            .findFirst();\n    }\n\n    private boolean isHandlerLoadedViaClasspath(IkonHandler handler) {\n        return handlers.stream()\n            .anyMatch(h -> h.getFontFamily().equals(handler.getFontFamily()));\n    }\n\n    private void throwOrWarn(String message) {\n        if (Boolean.getBoolean(ORG_KORDAMP_IKONLI_STRICT)) {\n            throw new IllegalArgumentException(message);\n        }\n        LOGGER.warning(message);\n    }\n\n    public static ServiceLoader<IkonHandler> resolveServiceLoader() {\n        // Check if handlers must be loaded from a ModuleLayer\n        if (null != IkonHandler.class.getModule().getLayer()) {\n            ServiceLoader<IkonHandler> ikonHandlerServiceLoaders = ServiceLoader.load(\n                IkonHandler.class.getModule().getLayer(),\n                IkonHandler.class\n            );\n            if (ikonHandlerServiceLoaders.findFirst().isPresent()) {\n                return ikonHandlerServiceLoaders;\n            }\n        }\n\n        ServiceLoader<IkonHandler> handlers = ServiceLoader.load(\n            IkonHandler.class,\n            IkonHandler.class.getClassLoader()\n        );\n        // Return if the IkonHandler.class.classLoader works or if *nothing* else works\n        return handlers.findFirst().isPresent() ? handlers : ServiceLoader.load(IkonHandler.class);\n    }\n}\n"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/DefaultIkonResolver.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\npublic class DefaultIkonResolver extends AbstractIkonResolver implements IkonResolver {\n    private final FontLoader fontLoader;\n    private static volatile DefaultIkonResolver instance;\n\n    protected DefaultIkonResolver(FontLoader fontLoader) {\n        this.fontLoader = fontLoader;\n        resolveServiceLoader().forEach(handler -> {\n            handlers.add(handler);\n            fontLoader.loadFont(handler);\n        });\n    }\n\n    @Override\n    public boolean registerHandler(IkonHandler handler) {\n        boolean result = super.registerHandler(handler);\n        if (result) {\n            fontLoader.loadFont(handler);\n        }\n        return result;\n    }\n\n    public static IkonResolver getInstance(FontLoader fontLoader) {\n        if (instance == null) {\n            synchronized (DefaultIkonResolver.class) {\n                if (instance == null) {\n                    instance = new DefaultIkonResolver(fontLoader);\n                }\n            }\n        }\n        return instance;\n    }\n}\n"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/FontLoader.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\npublic interface FontLoader {\n\n    void loadFont(IkonHandler handler);\n\n}\n"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/Ikon.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\n/**\n * @author Andres Almiray\n */\npublic interface Ikon {\n    String getDescription();\n\n    int getCode();\n}"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/IkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\npublic interface IkonHandler {\n    boolean supports(String description);\n\n    Ikon resolve(String description);\n\n    URL getFontResource();\n\n    InputStream getFontResourceAsStream();\n\n    String getFontFamily();\n\n    Object getFont();\n\n    void setFont(Object font);\n}"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/IkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\n/**\n * @author Andres Almiray\n */\npublic interface IkonProvider<IKON extends Ikon> {\n    Class<IKON> getIkon();\n}"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/IkonResolver.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\npublic interface IkonResolver {\n\n    IkonHandler resolve(String value);\n\n    boolean registerHandler(IkonHandler handler);\n\n    boolean unregisterHandler(IkonHandler handler);\n}\n"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/IkonResolverProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\nimport org.osgi.framework.Bundle;\nimport org.osgi.framework.BundleContext;\nimport org.osgi.framework.FrameworkUtil;\nimport org.osgi.framework.ServiceReference;\n\npublic class IkonResolverProvider {\n    private static volatile IkonResolver instance;\n\n    private IkonResolverProvider() {\n    }\n\n    public static IkonResolver getInstance(FontLoader fontLoader) {\n        IkonResolver localInstance = instance;\n        if (localInstance == null) {\n            synchronized (IkonResolverProvider.class) {\n                localInstance = instance;\n                if (localInstance == null) {\n                    instance = localInstance = createIkonResolver(fontLoader);\n                }\n            }\n        }\n        return localInstance;\n    }\n\n    private static IkonResolver createIkonResolver(FontLoader fontLoader) {\n        return tryGetOSGiResolver().orElseGet(() -> DefaultIkonResolver.getInstance(fontLoader));\n    }\n\n    private static java.util.Optional<IkonResolver> tryGetOSGiResolver() {\n        try {\n            if (!isOSGiAvailable()) {\n                return java.util.Optional.empty();\n            }\n\n            Bundle bundle = FrameworkUtil.getBundle(IkonResolverProvider.class);\n            if (bundle == null) {\n                return java.util.Optional.empty();\n            }\n\n            BundleContext context = bundle.getBundleContext();\n            if (context == null) {\n                return java.util.Optional.empty();\n            }\n\n            ServiceReference<IkonResolver> ref = context.getServiceReference(IkonResolver.class);\n            if (ref == null) {\n                return java.util.Optional.empty();\n            }\n\n            IkonResolver resolver = context.getService(ref);\n            return java.util.Optional.ofNullable(resolver);\n\n        } catch (NoClassDefFoundError | IllegalStateException e) {\n            return java.util.Optional.empty();\n        }\n    }\n\n    private static boolean isOSGiAvailable() {\n        try {\n            Class.forName(\"org.osgi.framework.BundleContext\");\n            return true;\n        } catch (ClassNotFoundException e) {\n            return false;\n        }\n    }\n}\n"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/Ikonli.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\n/**\n * @author Andres Almiray\n */\npublic enum Ikonli implements Ikon {\n    NONE(\"ikn-none\", '\\ue600');\n\n    public static Ikonli findByDescription(String description) {\n        for (Ikonli font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Ikonli(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/IkonliIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class IkonliIkonProvider implements IkonProvider<Ikonli> {\n    @Override\n    public Class<Ikonli> getIkon() {\n        return Ikonli.class;\n    }\n}"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/IkonliIkonResolver.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class IkonliIkonResolver extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/ikonli/0.0.0/fonts/ikonli.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"ikn-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Ikonli.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Ikonli\";\n    }\n}\n"
  },
  {
    "path": "core/ikonli-core/src/main/java/org/kordamp/ikonli/OSGiIkonResolver.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli;\n\nimport org.osgi.service.component.annotations.Component;\nimport org.osgi.service.component.annotations.Reference;\nimport org.osgi.service.component.annotations.ReferenceCardinality;\nimport org.osgi.service.component.annotations.ReferencePolicyOption;\n\n@Component(service = IkonResolver.class)\npublic class OSGiIkonResolver extends AbstractIkonResolver implements IkonResolver {\n    private FontLoader fontLoader;\n\n    public OSGiIkonResolver() {\n    }\n\n    @Reference\n    protected void setFontLoader(FontLoader fontLoader) {\n        this.fontLoader = fontLoader;\n    }\n\n    @Reference(\n        cardinality = ReferenceCardinality.MULTIPLE,\n        policyOption = ReferencePolicyOption.GREEDY,\n        unbind = \"unbindIkonHandler\"\n    )\n    protected void bindIkonHandler(IkonHandler handler) {\n        if (registerHandler(handler)) {\n            fontLoader.loadFont(handler);\n        }\n    }\n\n    protected void unbindIkonHandler(IkonHandler handler) {\n        unregisterHandler(handler);\n    }\n}\n"
  },
  {
    "path": "core/ikonli-javafx/ikonli-javafx.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\ndependencies {\n    api project(':ikonli-core')\n\n    compileOnly \"org.openjfx:javafx-base:${javafxVersion}:${javafx_platform}\"\n    compileOnly \"org.openjfx:javafx-graphics:${javafxVersion}:${javafx_platform}\"\n    compileOnly \"org.openjfx:javafx-controls:${javafxVersion}:${javafx_platform}\"\n    compileOnly \"org.openjfx:javafx-fxml:${javafxVersion}:${javafx_platform}\"\n    compileOnly \"org.openjfx:javafx-swing:${javafxVersion}:${javafx_platform}\"\n\n    testImplementation \"org.openjfx:javafx-base:${javafxVersion}:${javafx_platform}\"\n    testImplementation \"org.openjfx:javafx-graphics:${javafxVersion}:${javafx_platform}\"\n    testImplementation \"org.openjfx:javafx-controls:${javafxVersion}:${javafx_platform}\"\n    testImplementation \"org.openjfx:javafx-fxml:${javafxVersion}:${javafx_platform}\"\n    testImplementation \"org.openjfx:javafx-swing:${javafxVersion}:${javafx_platform}\"\n}\n"
  },
  {
    "path": "core/ikonli-javafx/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.javafx {\n    exports org.kordamp.ikonli.javafx;\n\n    requires transitive org.kordamp.ikonli.core;\n\n    requires javafx.base;\n    requires javafx.graphics;\n    requires javafx.controls;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n}"
  },
  {
    "path": "core/ikonli-javafx/src/main/java/org/kordamp/ikonli/javafx/FontIcon.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.javafx;\n\nimport javafx.beans.property.IntegerProperty;\nimport javafx.beans.property.ObjectProperty;\nimport javafx.beans.property.SimpleStringProperty;\nimport javafx.beans.property.StringProperty;\nimport javafx.css.CssMetaData;\nimport javafx.css.StyleOrigin;\nimport javafx.css.Styleable;\nimport javafx.css.StyleableIntegerProperty;\nimport javafx.css.StyleableObjectProperty;\nimport javafx.css.StyleableProperty;\nimport javafx.css.converter.PaintConverter;\nimport javafx.css.converter.SizeConverter;\nimport javafx.scene.paint.Color;\nimport javafx.scene.paint.LinearGradient;\nimport javafx.scene.paint.Paint;\nimport javafx.scene.paint.RadialGradient;\nimport javafx.scene.text.Font;\nimport javafx.scene.text.Text;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.ikonli.IkonResolverProvider;\n\nimport java.util.ArrayList;\nimport java.util.List;\nimport java.util.Objects;\n\nimport static java.util.Collections.unmodifiableList;\nimport static java.util.Objects.requireNonNull;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class FontIcon extends Text implements Icon {\n    private static final double EPSILON = 0.000001d;\n    protected StyleableIntegerProperty iconSize;\n    protected StyleableObjectProperty<Paint> iconColor;\n    private StyleableObjectProperty<Ikon> iconCode;\n    private final StringProperty units;\n\n    public FontIcon() {\n        getStyleClass().setAll(\"ikonli-font-icon\");\n        setIconSize(8);\n        setIconColor(Color.BLACK);\n\n        fontProperty().addListener((v, o, n) -> {\n            int size = (int) n.getSize();\n            if (size != getIconSize()) {\n                setIconSize(size);\n            }\n        });\n\n        fillProperty().addListener((v, o, n) -> {\n            Paint fill = getIconColor();\n            if (!Objects.equals(fill, n)) {\n                setIconColor(n);\n            }\n        });\n\n        iconCodeProperty().addListener((v, o, n) -> {\n            if (n != null) {\n                IkonHandler ikonHandler = IkonResolverProvider.getInstance(JavaFXFontLoader.getInstance()).resolve(n.getDescription());\n                setStyle(normalizeStyle(getStyle(), \"-fx-font-family\", \"'\" + ikonHandler.getFontFamily() + \"'\"));\n                int code = n.getCode();\n                if (code <= '\\uFFFF') {\n                    setText(String.valueOf((char) code));\n                } else {\n                    char[] charPair = Character.toChars(code);\n                    String symbol = new String(charPair);\n                    setText(symbol);\n                }\n            }\n        });\n\n        units = new SimpleStringProperty(\"px\");\n    }\n\n    public FontIcon(String iconCode) {\n        this();\n        setIconLiteral(iconCode);\n    }\n\n    public FontIcon(Ikon iconCode) {\n        this();\n        setIconCode(iconCode);\n    }\n\n    public StringProperty unitsProperty() {\n        return units;\n    }\n\n    @Override\n    public String toString() {\n        Ikon iconCode = getIconCode();\n        return (iconCode != null ? iconCode.getDescription() : \"<undef>\") + \":\" + getIconSize() + \":\" + getIconColor();\n    }\n\n    @Override\n    public IntegerProperty iconSizeProperty() {\n        if (iconSize == null) {\n            iconSize = new StyleableIntegerProperty(8) {\n                @Override\n                public CssMetaData getCssMetaData() {\n                    return StyleableProperties.ICON_SIZE;\n                }\n\n                @Override\n                public Object getBean() {\n                    return FontIcon.this;\n                }\n\n                @Override\n                public String getName() {\n                    return \"iconSize\";\n                }\n\n                @Override\n                public StyleOrigin getStyleOrigin() {\n                    return StyleOrigin.USER_AGENT;\n                }\n            };\n            iconSize.addListener((v, o, n) -> {\n                Font font = FontIcon.this.getFont();\n                if (Math.abs(font.getSize() - n.doubleValue()) >= EPSILON) {\n                    FontIcon.this.setFont(Font.font(font.getFamily(), n.doubleValue()));\n                    FontIcon.this.setStyle(normalizeStyle(getStyle(), \"-fx-font-size\", n.intValue() + resolveUnits()));\n                }\n            });\n        }\n        return iconSize;\n    }\n\n    private String resolveUnits() {\n        String u = units.get();\n        return null == u || u.isBlank() ? \"px\" : u;\n    }\n\n    @Override\n    public ObjectProperty<Paint> iconColorProperty() {\n        if (iconColor == null) {\n            iconColor = new StyleableObjectProperty<>(Color.BLACK) {\n                @Override\n                public CssMetaData getCssMetaData() {\n                    return StyleableProperties.ICON_COLOR;\n                }\n\n                @Override\n                public Object getBean() {\n                    return FontIcon.this;\n                }\n\n                @Override\n                public String getName() {\n                    return \"iconColor\";\n                }\n\n                @Override\n                public StyleOrigin getStyleOrigin() {\n                    return StyleOrigin.USER_AGENT;\n                }\n            };\n            iconColor.addListener((v, o, n) -> FontIcon.this.setFill(n));\n        }\n        return iconColor;\n    }\n\n    public ObjectProperty<Ikon> iconCodeProperty() {\n        if (iconCode == null) {\n            iconCode = new StyleableObjectProperty<>() {\n                @Override\n                public CssMetaData getCssMetaData() {\n                    return StyleableProperties.ICON_CODE;\n                }\n\n                @Override\n                public Object getBean() {\n                    return FontIcon.this;\n                }\n\n                @Override\n                public String getName() {\n                    return \"iconCode\";\n                }\n\n                @Override\n                public StyleOrigin getStyleOrigin() {\n                    return StyleOrigin.USER_AGENT;\n                }\n            };\n\n            iconCode.addListener((v, o, n) -> {\n                if (!iconCode.isBound()) {\n                    FontIcon.this.setIconCode(n);\n                }\n            });\n        }\n        return iconCode;\n    }\n\n    @Override\n    public int getIconSize() {\n        return iconSizeProperty().get();\n    }\n\n    @Override\n    public void setIconSize(int size) {\n        if (size <= 0) {\n            throw new IllegalStateException(\"Argument 'size' must be greater than zero.\");\n        }\n        iconSizeProperty().set(size);\n    }\n\n    @Override\n    public Paint getIconColor() {\n        return iconColorProperty().get();\n    }\n\n    @Override\n    public void setIconColor(Paint paint) {\n        iconColorProperty().set(requireNonNull(paint, \"Argument 'paint' must not be null\"));\n    }\n\n    public Ikon getIconCode() {\n        return iconCodeProperty().get();\n    }\n\n    public void setIconCode(Ikon iconCode) {\n        iconCodeProperty().set(requireNonNull(iconCode, \"Argument 'code' must not be null\"));\n    }\n\n    private String normalizeStyle(String style, String key, String value) {\n        int start = style.indexOf(key);\n        if (start != -1) {\n            int end = style.indexOf(\";\", start);\n            end = end >= start ? end : style.length() - 1;\n            style = style.substring(0, start) + style.substring(end + 1);\n        }\n        return style + key + \": \" + value + \";\";\n    }\n\n    public String getIconLiteral() {\n        Ikon ikon = iconCodeProperty().get();\n        return ikon != null ? ikon.getDescription() : null;\n    }\n\n    public void setIconLiteral(String iconCode) {\n        String[] parts = iconCode.split(\":\");\n        setIconCode(IkonResolverProvider.getInstance(JavaFXFontLoader.getInstance()).resolve(parts[0]).resolve(parts[0]));\n        resolveSize(iconCode, parts);\n        resolvePaint(iconCode, parts);\n    }\n\n    @Override\n    public List<CssMetaData<? extends Styleable, ?>> getCssMetaData() {\n        return FontIcon.getClassCssMetaData();\n    }\n\n    private void resolveSize(String iconCode, String[] parts) {\n        if (parts.length > 1) {\n            try {\n                setIconSize(Integer.parseInt(parts[1]));\n            } catch (NumberFormatException e) {\n                throw invalidDescription(iconCode, e);\n            }\n        }\n    }\n\n    private void resolvePaint(String iconCode, String[] parts) {\n        if (parts.length > 2) {\n            Paint paint = resolvePaintValue(iconCode, parts[2]);\n            if (paint != null) {\n                setIconColor(paint);\n            }\n        }\n    }\n\n    public static FontIcon of(Ikon ikon) {\n        return of(ikon, 8, Color.BLACK);\n    }\n\n    public static FontIcon of(Ikon ikon, int iconSize) {\n        return of(ikon, iconSize, Color.BLACK);\n    }\n\n    public static FontIcon of(Ikon ikon, Color iconColor) {\n        return of(ikon, 8, iconColor);\n    }\n\n    public static FontIcon of(Ikon iconCode, int iconSize, Color iconColor) {\n        FontIcon icon = new FontIcon();\n        icon.setIconCode(iconCode);\n        icon.setIconSize(iconSize);\n        icon.setIconColor(iconColor);\n        return icon;\n    }\n\n    public static List<CssMetaData<? extends Styleable, ?>> getClassCssMetaData() {\n        return StyleableProperties.STYLEABLES;\n    }\n\n    private static Paint resolvePaintValue(String iconCode, String value) {\n        try {\n            return Color.valueOf(value);\n        } catch (IllegalArgumentException e1) {\n            try {\n                return LinearGradient.valueOf(value);\n            } catch (IllegalArgumentException e2) {\n                try {\n                    return RadialGradient.valueOf(value);\n                } catch (IllegalArgumentException e3) {\n                    throw invalidDescription(iconCode, e3);\n                }\n            }\n        }\n    }\n\n    public static IllegalArgumentException invalidDescription(String description, Exception e) {\n        throw new IllegalArgumentException(\"Description \" + description + \" is not a valid icon description\", e);\n    }\n\n    private static class StyleableProperties {\n        private static final CssMetaData<FontIcon, Number> ICON_SIZE =\n            new CssMetaData<FontIcon, Number>(\"-fx-icon-size\",\n                SizeConverter.getInstance(), 8) {\n\n                @Override\n                public boolean isSettable(FontIcon icon) {\n                    return true;\n                }\n\n                @Override\n                public StyleableProperty<Number> getStyleableProperty(FontIcon icon) {\n                    return (StyleableProperty<Number>) icon.iconSizeProperty();\n                }\n            };\n\n        private static final CssMetaData<FontIcon, Paint> ICON_COLOR =\n            new CssMetaData<FontIcon, Paint>(\"-fx-icon-color\",\n                PaintConverter.getInstance(), Color.BLACK) {\n\n                @Override\n                public boolean isSettable(FontIcon node) {\n                    return true;\n                }\n\n                @Override\n                public StyleableProperty<Paint> getStyleableProperty(FontIcon icon) {\n                    return (StyleableProperty<Paint>) icon.iconColorProperty();\n                }\n            };\n\n        private static final CssMetaData<FontIcon, Ikon> ICON_CODE =\n            new CssMetaData<FontIcon, Ikon>(\"-fx-icon-code\",\n                FontIconConverter.getInstance(), null) {\n\n                @Override\n                public boolean isSettable(FontIcon node) {\n                    return true;\n                }\n\n                @Override\n                public StyleableProperty<Ikon> getStyleableProperty(FontIcon icon) {\n                    return (StyleableProperty<Ikon>) icon.iconCodeProperty();\n                }\n            };\n\n        private static final List<CssMetaData<? extends Styleable, ?>> STYLEABLES;\n\n        static {\n            final List<CssMetaData<? extends Styleable, ?>> styleables =\n                new ArrayList<>(Text.getClassCssMetaData());\n            styleables.add(ICON_SIZE);\n            styleables.add(ICON_COLOR);\n            styleables.add(ICON_CODE);\n            STYLEABLES = unmodifiableList(styleables);\n        }\n    }\n}"
  },
  {
    "path": "core/ikonli-javafx/src/main/java/org/kordamp/ikonli/javafx/FontIconConverter.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.javafx;\n\nimport javafx.css.ParsedValue;\nimport javafx.css.StyleConverter;\nimport javafx.scene.text.Font;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonResolverProvider;\n\n/**\n * @author Andres Almiray\n */\npublic class FontIconConverter extends StyleConverter<String, Ikon> {\n    private static class Holder {\n        static final FontIconConverter INSTANCE = new FontIconConverter();\n        static final SequenceConverter SEQUENCE_INSTANCE = new SequenceConverter();\n    }\n\n    public static StyleConverter<String, Ikon> getInstance() {\n        return Holder.INSTANCE;\n    }\n\n    private FontIconConverter() {\n\n    }\n\n    @Override\n    public String toString() {\n        return \"FontIconConverter\";\n    }\n\n    @Override\n    public Ikon convert(ParsedValue<String, Ikon> value, Font font) {\n        String description = value.getValue().trim();\n        return IkonResolverProvider.getInstance(JavaFXFontLoader.getInstance()).resolve(description).resolve(description);\n    }\n\n    public static final class SequenceConverter extends StyleConverter<String, Ikon[]> {\n        public static SequenceConverter getInstance() {\n            return Holder.SEQUENCE_INSTANCE;\n        }\n\n        private SequenceConverter() {\n            super();\n        }\n\n        @Override\n        public Ikon[] convert(ParsedValue<String, Ikon[]> value, Font font) {\n            String[] descriptions = value.getValue().split(\",\");\n            Ikon[] ikons = new Ikon[descriptions.length];\n            for (int i = 0; i < descriptions.length; i++) {\n                String description = descriptions[i].trim();\n                ikons[i] = IkonResolverProvider.getInstance(JavaFXFontLoader.getInstance()).resolve(description).resolve(description);\n            }\n            return ikons;\n        }\n\n        @Override\n        public String toString() {\n            return \"FontIcon.SequenceConverter\";\n        }\n    }\n}"
  },
  {
    "path": "core/ikonli-javafx/src/main/java/org/kordamp/ikonli/javafx/FontIconTableCell.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.javafx;\n\nimport javafx.beans.property.ObjectProperty;\nimport javafx.beans.property.SimpleObjectProperty;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.geometry.Pos;\nimport javafx.scene.control.TableCell;\nimport javafx.scene.control.TableColumn;\nimport javafx.util.Callback;\nimport javafx.util.StringConverter;\nimport org.kordamp.ikonli.Ikon;\n\nimport static java.util.Objects.requireNonNull;\n\npublic class FontIconTableCell<S, T> extends TableCell<S, T> {\n    private static final String ERROR_CONVERTER_NULL = \"Argument 'converter' must not be null\";\n\n    public static <S, T> Callback<TableColumn<S, T>, TableCell<S, T>> forTableColumn() {\n        return param -> new FontIconTableCell<S, T>();\n    }\n\n    public static <S, T> Callback<TableColumn<S, T>, TableCell<S, T>> forTableColumn(StringConverter<T> converter) {\n        return param -> new FontIconTableCell<S, T>(converter);\n    }\n\n    private Subscription subscription;\n    private final FontIcon icon;\n    private final ObjectProperty<StringConverter<T>> converter = new SimpleObjectProperty<StringConverter<T>>(this, \"converter\");\n\n    @SuppressWarnings(\"unchecked\")\n    public FontIconTableCell() {\n        this(new StringConverter<T>() {\n            @Override\n            public String toString(T object) {\n                return object != null ? String.valueOf(object) : \"\";\n            }\n\n            @Override\n            public T fromString(String string) {\n                // leave it as is for now\n                return null;\n            }\n        });\n    }\n\n    public FontIconTableCell(StringConverter<T> converter) {\n        this.getStyleClass().add(\"font-icon-table-cell\");\n        this.icon = new FontIcon();\n        setConverter(requireNonNull(converter, ERROR_CONVERTER_NULL));\n    }\n\n    public final ObjectProperty<StringConverter<T>> converterProperty() {\n        return converter;\n    }\n\n    public final void setConverter(StringConverter<T> converter) {\n        converterProperty().set(requireNonNull(converter, ERROR_CONVERTER_NULL));\n    }\n\n    public final StringConverter<T> getConverter() {\n        return converterProperty().get();\n    }\n\n    @Override\n    public void updateItem(T item, boolean empty) {\n        super.updateItem(item, empty);\n\n        if (empty) {\n            setGraphic(null);\n        } else {\n            if (subscription != null) {\n                subscription.unsubscribe();\n                subscription = null;\n            }\n\n            final TableColumn<S, T> column = getTableColumn();\n            ObservableValue<T> observable = column == null ? null : column.getCellObservableValue(getIndex());\n\n            if (observable != null) {\n                ChangeListener<T> listener = (v, o, n) -> setIconCode(n);\n                observable.addListener(listener);\n                subscription = () -> observable.removeListener(listener);\n                setIconCode(observable.getValue());\n            } else if (item != null) {\n                setIconCode(item);\n            }\n\n            setGraphic(icon);\n            setAlignment(Pos.CENTER);\n        }\n    }\n\n    private void setIconCode(T value) {\n        if (value instanceof Ikon) {\n            icon.setIconCode((Ikon) value);\n        } else {\n            icon.setIconLiteral(getConverter().toString(value));\n        }\n    }\n\n    private interface Subscription {\n        void unsubscribe();\n    }\n}\n"
  },
  {
    "path": "core/ikonli-javafx/src/main/java/org/kordamp/ikonli/javafx/Icon.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.javafx;\n\nimport javafx.beans.property.IntegerProperty;\nimport javafx.beans.property.ObjectProperty;\nimport javafx.css.Styleable;\nimport javafx.scene.paint.Paint;\n\n/**\n * @author Andres Almiray\n */\npublic interface Icon extends Styleable {\n    IntegerProperty iconSizeProperty();\n\n    ObjectProperty<Paint> iconColorProperty();\n\n    void setIconSize(int size);\n\n    int getIconSize();\n\n    void setIconColor(Paint paint);\n\n    Paint getIconColor();\n}\n"
  },
  {
    "path": "core/ikonli-javafx/src/main/java/org/kordamp/ikonli/javafx/JavaFXFontLoader.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.javafx;\n\nimport javafx.scene.text.Font;\nimport org.kordamp.ikonli.FontLoader;\nimport org.kordamp.ikonli.IkonHandler;\n\nimport java.util.Map;\nimport java.util.concurrent.ConcurrentHashMap;\n\n@org.osgi.service.component.annotations.Component(service = FontLoader.class)\npublic class JavaFXFontLoader implements FontLoader {\n    private static final Map<String, Font> FONTS = new ConcurrentHashMap<>();\n\n    @Override\n    public void loadFont(IkonHandler handler) {\n        String fontResource = handler.getFontResource().toExternalForm();\n        Font font = FONTS.computeIfAbsent(fontResource, key -> Font.loadFont(key, 16));\n        handler.setFont(font);\n    }\n\n    public static FontLoader getInstance() {\n        return new JavaFXFontLoader();\n    }\n}\n"
  },
  {
    "path": "core/ikonli-javafx/src/main/java/org/kordamp/ikonli/javafx/StackedFontIcon.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.javafx;\n\nimport javafx.beans.property.IntegerProperty;\nimport javafx.beans.property.ObjectProperty;\nimport javafx.beans.value.ChangeListener;\nimport javafx.collections.ListChangeListener;\nimport javafx.collections.MapChangeListener;\nimport javafx.css.CssMetaData;\nimport javafx.css.StyleOrigin;\nimport javafx.css.Styleable;\nimport javafx.css.StyleableIntegerProperty;\nimport javafx.css.StyleableObjectProperty;\nimport javafx.css.StyleableProperty;\nimport javafx.css.converter.PaintConverter;\nimport javafx.css.converter.SizeConverter;\nimport javafx.scene.Node;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport javafx.scene.paint.Paint;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonResolverProvider;\n\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.List;\n\nimport static java.util.Collections.unmodifiableList;\nimport static java.util.Objects.requireNonNull;\n\n/**\n * @author Andres Almiray\n */\npublic class StackedFontIcon extends StackPane implements Icon {\n    private static final String KEY_STACKED_FONT_ICON_SIZE = StackedFontIcon.class.getName() + \".iconSize\";\n\n    private StyleableIntegerProperty iconSize;\n    private StyleableObjectProperty<Paint> iconColor;\n    private double[] iconSizes = new double[0];\n\n    private final ChangeListener<Number> iconSizeChangeListener = (v, o, n) -> setIconSizeOnChildren(n.intValue());\n    private final ChangeListener<Paint> iconColorChangeListener = (v, o, n) -> setIconColorOnChildren(n);\n\n    public static void setIconSize(Node icon, double size) {\n        if (icon != null && size >= 0d && size <= 1.0d) {\n            icon.getProperties().put(KEY_STACKED_FONT_ICON_SIZE, size);\n        }\n    }\n\n    public static double getIconSize(Node icon) {\n        if (icon != null) {\n            Object value = icon.getProperties().get(KEY_STACKED_FONT_ICON_SIZE);\n            if (value instanceof Number) {\n                return ((Number) value).doubleValue();\n            }\n        }\n        return 1.0d;\n    }\n\n    private class NodeSizeListener implements MapChangeListener<Object, Object> {\n        private final Node node;\n\n        private NodeSizeListener(Node node) {\n            this.node = node;\n        }\n\n        @Override\n        public void onChanged(Change<?, ?> change) {\n            if (KEY_STACKED_FONT_ICON_SIZE.equals(String.valueOf(change.getKey()))) {\n                int size = getChildren().size();\n                for (int i = 0; i < size; i++) {\n                    if (node == getChildren().get(i)) {\n                        double value = 0;\n                        Object valueAdded = change.getValueAdded();\n                        if (valueAdded instanceof Number) {\n                            value = ((Number) valueAdded).doubleValue();\n                        } else {\n                            value = Double.parseDouble(String.valueOf(valueAdded));\n                        }\n                        iconSizes[i] = value;\n                        return;\n                    }\n                }\n            }\n        }\n    }\n\n    public StackedFontIcon() {\n        getStyleClass().setAll(\"stacked-ikonli-font-icon\");\n\n        final String propertiesListenerKey = StackedFontIcon.class.getName() + \"-\" + System.identityHashCode(this);\n\n        getChildren().addListener(new ListChangeListener<Node>() {\n            @Override\n            public void onChanged(Change<? extends Node> c) {\n                while (c.next()) {\n                    if (c.wasAdded()) {\n                        int size = c.getTo() - c.getFrom();\n                        // grow iconSizes by size\n                        iconSizes = Arrays.copyOf(iconSizes, iconSizes.length + size);\n                        // apply 1.0 [from..to]\n                        for (int i = c.getFrom(); i < c.getTo(); i++) {\n                            iconSizes[i] = getIconSize(c.getList().get(i));\n                        }\n                        for (Node node : c.getAddedSubList()) {\n                            node.getProperties().put(propertiesListenerKey, new NodeSizeListener(node));\n                        }\n                    } else if (c.wasRemoved()) {\n                        int size = c.getTo() - c.getFrom();\n                        // shrink iconSizes by size\n                        double[] newIconSizes = new double[iconSizes.length - size];\n                        // copy [0..from]\n                        int index = 0;\n                        for (int i = 0; i < c.getFrom(); i++) {\n                            newIconSizes[index++] = iconSizes[i];\n                        }\n                        // copy [to..-1]\n                        for (int i = c.getTo(); i < iconSizes.length; i++) {\n                            newIconSizes[index++] = iconSizes[i];\n                        }\n                        iconSizes = newIconSizes;\n                        for (Node node : c.getRemoved()) {\n                            node.getProperties().remove(propertiesListenerKey);\n                        }\n                    } else if (c.wasPermutated()) {\n                        double[] newIconSizes = Arrays.copyOf(iconSizes, iconSizes.length);\n                        for (int i = c.getFrom(); i <= c.getTo(); i++) {\n                            newIconSizes[i] = c.getPermutation(i);\n                        }\n                        iconSizes = newIconSizes;\n                    }\n                }\n            }\n        });\n    }\n\n    public IntegerProperty iconSizeProperty() {\n        if (iconSize == null) {\n            iconSize = new StyleableIntegerProperty(16) {\n                @Override\n                public CssMetaData getCssMetaData() {\n                    return StyleableProperties.ICON_SIZE;\n                }\n\n                @Override\n                public Object getBean() {\n                    return StackedFontIcon.this;\n                }\n\n                @Override\n                public String getName() {\n                    return \"iconSize\";\n                }\n\n                @Override\n                public StyleOrigin getStyleOrigin() {\n                    return StyleOrigin.USER_AGENT;\n                }\n            };\n            iconSize.addListener(iconSizeChangeListener);\n        }\n        return iconSize;\n    }\n\n    public ObjectProperty<Paint> iconColorProperty() {\n        if (iconColor == null) {\n            iconColor = new StyleableObjectProperty<Paint>(Color.BLACK) {\n                @Override\n                public CssMetaData getCssMetaData() {\n                    return StyleableProperties.ICON_COLOR;\n                }\n\n                @Override\n                public Object getBean() {\n                    return StackedFontIcon.this;\n                }\n\n                @Override\n                public String getName() {\n                    return \"iconColor\";\n                }\n\n                @Override\n                public StyleOrigin getStyleOrigin() {\n                    return StyleOrigin.USER_AGENT;\n                }\n            };\n            iconColor.addListener(iconColorChangeListener);\n        }\n        return iconColor;\n    }\n\n    public void setIconSize(int size) {\n        if (size <= 0) {\n            throw new IllegalStateException(\"Argument 'size' must be greater than zero.\");\n        }\n        iconSizeProperty().set(size);\n    }\n\n    public int getIconSize() {\n        return iconSizeProperty().get();\n    }\n\n    public void setIconColor(Paint paint) {\n        requireNonNull(paint, \"Argument 'paint' must not be null\");\n        iconColorProperty().set(paint);\n    }\n\n    public Paint getIconColor() {\n        return iconColorProperty().get();\n    }\n\n    public void setIconCodes(Ikon... iconCodes) {\n        getChildren().clear();\n        initializeSizesIfNeeded(iconCodes);\n        updateIconCodes(iconCodes);\n    }\n\n    public void setIconCodeLiterals(String... iconCodes) {\n        getChildren().clear();\n        Ikon[] codes = new Ikon[iconCodes.length];\n        for (int i = 0; i < iconCodes.length; i++) {\n            codes[i] = IkonResolverProvider.getInstance(JavaFXFontLoader.getInstance()).resolve(iconCodes[i]).resolve(iconCodes[i]);\n        }\n        initializeSizesIfNeeded(iconCodes);\n        updateIconCodes(codes);\n    }\n\n    /**\n     * Sets the size for each child icon relative to this icon's size.\n     *\n     * @param iconSizes values must be within the range [0..1]\n     */\n    public void setIconSizes(double... iconSizes) {\n        this.iconSizes = iconSizes;\n        setIconSizeOnChildren(getIconSize());\n    }\n\n    public void setColors(Paint... iconColors) {\n        int i = 0;\n        for (Node node : getChildren()) {\n            if (node instanceof Icon) {\n                ((Icon) node).setIconColor(iconColors[i++]);\n            }\n        }\n    }\n\n    private void initializeSizesIfNeeded(Object[] array) {\n        if (iconSizes.length == 0 || iconSizes.length != array.length) {\n            iconSizes = new double[array.length];\n            Arrays.fill(iconSizes, 1d);\n        }\n    }\n\n    private void updateIconCodes(Ikon[] iconCodes) {\n        for (int index = 0; index < iconCodes.length; index++) {\n            getChildren().add(createFontIcon(iconCodes[index], index));\n        }\n    }\n\n    private FontIcon createFontIcon(Ikon iconCode, int index) {\n        FontIcon icon = new FontIcon(iconCode);\n        icon.setIconSize(getIconSize());\n        icon.setIconColor(getIconColor());\n        int size = icon.getIconSize();\n        applySizeToIcon(size, icon, index);\n        return icon;\n    }\n\n    private static class StyleableProperties {\n        private static final CssMetaData<StackedFontIcon, Number> ICON_SIZE =\n            new CssMetaData<StackedFontIcon, Number>(\"-fx-icon-size\",\n                SizeConverter.getInstance(), 16.0) {\n\n                @Override\n                public boolean isSettable(StackedFontIcon fontIcon) {\n                    return true;\n                }\n\n                @Override\n                public StyleableProperty<Number> getStyleableProperty(StackedFontIcon icon) {\n                    return (StyleableProperty<Number>) icon.iconSizeProperty();\n                }\n            };\n\n        private static final CssMetaData<StackedFontIcon, Paint> ICON_COLOR =\n            new CssMetaData<StackedFontIcon, Paint>(\"-fx-icon-color\",\n                PaintConverter.getInstance(), Color.BLACK) {\n\n                @Override\n                public boolean isSettable(StackedFontIcon node) {\n                    return true;\n                }\n\n                @Override\n                public StyleableProperty<Paint> getStyleableProperty(StackedFontIcon icon) {\n                    return (StyleableProperty<Paint>) icon.iconColorProperty();\n                }\n            };\n\n        private static final List<CssMetaData<? extends Styleable, ?>> STYLEABLES;\n\n        static {\n            final List<CssMetaData<? extends Styleable, ?>> styleables =\n                new ArrayList<CssMetaData<? extends Styleable, ?>>(StackPane.getClassCssMetaData());\n            styleables.add(ICON_SIZE);\n            styleables.add(ICON_COLOR);\n            STYLEABLES = unmodifiableList(styleables);\n        }\n    }\n\n    public static List<CssMetaData<? extends Styleable, ?>> getClassCssMetaData() {\n        return StyleableProperties.STYLEABLES;\n    }\n\n    public List<CssMetaData<? extends Styleable, ?>> getCssMetaData() {\n        return StackedFontIcon.getClassCssMetaData();\n    }\n\n    private void setIconSizeOnChildren(int size) {\n        int i = 0;\n        for (Node node : getChildren()) {\n            if (node instanceof Icon) {\n                applySizeToIcon(size, (Icon) node, i++);\n            }\n        }\n    }\n\n    private void applySizeToIcon(int size, Icon icon, int index) {\n        double childPercentageSize = iconSizes[index];\n        double newSize = size * childPercentageSize;\n        icon.setIconSize((int) newSize);\n    }\n\n    private void setIconColorOnChildren(Paint color) {\n        for (Node node : getChildren()) {\n            if (node instanceof Icon) {\n                ((Icon) node).setIconColor(color);\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "core/ikonli-javafx/tmp/FontIconTest.java",
    "content": "/*\n * Copyright 2015-2018 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.javafx;\n\nimport javafx.embed.swing.JFXPanel;\nimport org.junit.Test;\n\nimport static org.hamcrest.CoreMatchers.equalTo;\nimport static org.junit.Assert.assertThat;\n\npublic class FontIconTest {\n    static {\n        new JFXPanel();\n    }\n\n    @Test\n    public void ensureStyleHasNoDuplicateSize() {\n        // given:\n        FontIcon icon = new FontIcon();\n\n        // expect\n        String style = icon.getStyle();\n        assertThat(style, equalTo(\"\"));\n\n        // when:\n        icon.setIconSize(32);\n\n        // then:\n        style = icon.getStyle();\n        assertThat(style, equalTo(\"-fx-font-size: 32px;\"));\n\n        // when:\n        icon.setIconSize(48);\n\n        // then:\n        style = icon.getStyle();\n        assertThat(style, equalTo(\"-fx-font-size: 48px;\"));\n    }\n}\n"
  },
  {
    "path": "core/ikonli-javafx/tmp/PaintConverter.java",
    "content": "package org.kordamp.ikonli.javafx.converters;\n\nimport javafx.css.ParsedValue;\nimport javafx.css.StyleConverter;\nimport javafx.scene.paint.Paint;\nimport javafx.scene.text.Font;\n\nimport java.lang.reflect.Method;\n\n/**\n * @author Andres Almiray\n */\npublic class PaintConverter extends StyleConverter<ParsedValue<?, Paint>, Paint> {\n    private final StyleConverter<ParsedValue<?, Paint>, Paint> delegate;\n\n    public static PaintConverter getInstance() {\n\n        ClassLoader classLoader = PaintConverter.class.getClassLoader();\n        Class<?> converterClass = null;\n\n        String JDK9_CLASS = \"javafx.css.converter.PaintConverter\";\n        String JDK8_CLASS = \"com.sun.javafx.css.converters.PaintConverter\";\n        try {\n            converterClass = classLoader.loadClass(JDK9_CLASS);\n        } catch (ClassNotFoundException e) {\n            try {\n                converterClass = classLoader.loadClass(JDK8_CLASS);\n            } catch (ClassNotFoundException e1) {\n                throw new IllegalStateException(\"Can't locate either \" + JDK9_CLASS + \" or \" + JDK8_CLASS);\n            }\n        }\n\n        try {\n            Method getInstance = converterClass.getDeclaredMethod(\"getInstance\");\n            return new PaintConverter((StyleConverter<ParsedValue<?, Paint>, Paint>) getInstance.invoke(null));\n        } catch (Exception e) {\n            throw new IllegalStateException(\"Unnexpected error while grabbing instance from \" + converterClass.getName(), e);\n        }\n    }\n\n    private PaintConverter(StyleConverter<ParsedValue<?, Paint>, Paint> delegate) {\n        this.delegate = delegate;\n    }\n\n    @Override\n    public Paint convert(ParsedValue<ParsedValue<?, Paint>, Paint> value, Font font) {\n        return delegate.convert(value, font);\n    }\n}\n"
  },
  {
    "path": "core/ikonli-javafx/tmp/SVGGlyphRegistry.java",
    "content": "package org.kordamp.ikonli.javafx;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.w3c.dom.Document;\nimport org.w3c.dom.Node;\nimport org.w3c.dom.NodeList;\n\nimport javax.xml.parsers.DocumentBuilder;\nimport javax.xml.parsers.DocumentBuilderFactory;\nimport java.io.InputStream;\nimport java.util.LinkedHashMap;\nimport java.util.Map;\nimport java.util.concurrent.ConcurrentHashMap;\n\n/**\n * @author Andres Almiray\n */\npublic final class SVGGlyphRegistry {\n    private static final SVGGlyphRegistry INSTANCE;\n    private final Map<String, Map<String, String>> glyphCache = new ConcurrentHashMap<>();\n\n    static {\n        INSTANCE = new SVGGlyphRegistry();\n    }\n\n    public static SVGGlyphRegistry getInstance() {\n        return INSTANCE;\n    }\n\n    private SVGGlyphRegistry() {\n    }\n\n    public String getSVGContent(Ikon ikon) {\n        return resolveGlyphs(ikon).get(String.valueOf(ikon.getCode()));\n    }\n\n    private Map<String, String> resolveGlyphs(Ikon ikon) {\n        String className = ikon.getClass().getName();\n        Map<String, String> glyphs = glyphCache.get(className);\n        if (glyphs == null) {\n            glyphs = new LinkedHashMap<>();\n            glyphCache.put(className, glyphs);\n            try {\n                loadGlyphs(glyphs, ikon);\n            } catch (Exception e) {\n                // ignore\n                e.printStackTrace();\n            }\n        }\n        return glyphs;\n    }\n\n    private void loadGlyphs(Map<String, String> glyphs, Ikon ikon) throws Exception {\n        IkonHandler ikonHandler = IkonResolver.getInstance().resolveIkonHandler(ikon.getDescription());\n        String resource = ikonHandler.getFontResourcePath();\n        resource = resource.substring(0, resource.length() - 3) + \"svg\";\n\n        DocumentBuilderFactory docFactory = DocumentBuilderFactory.newInstance();\n        DocumentBuilder docBuilder = docFactory.newDocumentBuilder();\n\n        InputStream is = getClass().getClassLoader().getResourceAsStream(resource);\n        Document doc = docBuilder.parse(is);\n        doc.getDocumentElement().normalize();\n        NodeList glyphsList = doc.getElementsByTagName(\"glyph\");\n        for (int i = 0; i < glyphsList.getLength(); i++) {\n            Node glyphNode = glyphsList.item(i);\n            Node unicodeNode = glyphNode.getAttributes().getNamedItem(\"unicode\");\n            if (unicodeNode == null) {\n                continue;\n            }\n            String unicode = unicodeNode.getNodeValue();\n            Node pathNode = glyphNode.getAttributes().getNamedItem(\"d\");\n            if (pathNode == null) {\n                continue;\n            }\n            glyphs.put(unicode, pathNode.getNodeValue());\n        }\n    }\n}\n"
  },
  {
    "path": "core/ikonli-javafx/tmp/SVGIcon.java",
    "content": "package org.kordamp.ikonli.javafx;\n\nimport com.sun.javafx.css.converters.PaintConverter;\nimport com.sun.javafx.css.converters.SizeConverter;\nimport javafx.beans.property.IntegerProperty;\nimport javafx.beans.property.ObjectProperty;\nimport javafx.beans.value.ChangeListener;\nimport javafx.beans.value.ObservableValue;\nimport javafx.css.CssMetaData;\nimport javafx.css.Styleable;\nimport javafx.css.StyleableIntegerProperty;\nimport javafx.css.StyleableObjectProperty;\nimport javafx.css.StyleableProperty;\nimport javafx.scene.control.ContentDisplay;\nimport javafx.scene.control.Label;\nimport javafx.scene.layout.Region;\nimport javafx.scene.paint.Color;\nimport javafx.scene.paint.LinearGradient;\nimport javafx.scene.paint.Paint;\nimport javafx.scene.paint.RadialGradient;\nimport javafx.scene.shape.SVGPath;\nimport org.kordamp.ikonli.Ikon;\n\nimport java.util.ArrayList;\nimport java.util.List;\n\nimport static java.util.Collections.unmodifiableList;\nimport static java.util.Objects.requireNonNull;\n\n/**\n * @author Andres Almiray\n */\npublic class SVGIcon extends Region implements Icon {\n    protected StyleableIntegerProperty iconSize;\n    protected StyleableObjectProperty<Paint> iconColor;\n    private StyleableObjectProperty<Ikon> iconCode;\n    private final SVGPath path = new SVGPath();\n\n    private ChangeListener<Number> iconSizeChangeListener = new ChangeListener<Number>() {\n        @Override\n        public void changed(ObservableValue<? extends Number> v, Number o, Number n) {\n            //SVGIcon.this.setStyle(getStyle() + \"-fx-font-size: \" + n + \"px;\");\n        }\n    };\n    private ChangeListener<Paint> iconColorChangeListener = new ChangeListener<Paint>() {\n        @Override\n        public void changed(ObservableValue<? extends Paint> v, Paint o, Paint n) {\n            path.setFill(n);\n        }\n    };\n    private ChangeListener<Ikon> iconFontChangeListener = new ChangeListener<Ikon>() {\n        @Override\n        public void changed(ObservableValue<? extends Ikon> v, Ikon o, Ikon n) {\n            SVGIcon.this.setIconCode(n);\n        }\n    };\n\n    public SVGIcon() {\n        getChildren().add(path);\n        path.setScaleX(0.1);\n        path.setScaleY(0.1);\n        getStyleClass().setAll(\"ikonli-svg-icon\");\n        setIconSize(16);\n        setIconColor(Color.BLACK);\n    }\n\n    public SVGIcon(String iconCode) {\n        this();\n        setIconLiteral(iconCode);\n    }\n\n    public SVGIcon(Ikon iconCode) {\n        this();\n        setIconCode(iconCode);\n    }\n\n    public String toString() {\n        return getIconCode().getDescription() + \":\" + getIconSize() + \":\" + getIconColor();\n    }\n\n    @Override\n    public IntegerProperty iconSizeProperty() {\n        if (iconSize == null) {\n            iconSize = new StyleableIntegerProperty(16) {\n                @Override\n                public CssMetaData getCssMetaData() {\n                    return StyleableProperties.ICON_SIZE;\n                }\n\n                @Override\n                public Object getBean() {\n                    return SVGIcon.this;\n                }\n\n                @Override\n                public String getName() {\n                    return \"iconSize\";\n                }\n            };\n            iconSize.addListener(iconSizeChangeListener);\n        }\n        return iconSize;\n    }\n\n    @Override\n    public ObjectProperty<Paint> iconColorProperty() {\n        if (iconColor == null) {\n            iconColor = new StyleableObjectProperty<Paint>(Color.BLACK) {\n                @Override\n                public CssMetaData getCssMetaData() {\n                    return StyleableProperties.ICON_COLOR;\n                }\n\n                @Override\n                public Object getBean() {\n                    return SVGIcon.this;\n                }\n\n                @Override\n                public String getName() {\n                    return \"iconColor\";\n                }\n            };\n            iconColor.addListener(iconColorChangeListener);\n        }\n        return iconColor;\n    }\n\n    public ObjectProperty<Ikon> iconCodeProperty() {\n        if (iconCode == null) {\n            iconCode = new StyleableObjectProperty<Ikon>() {\n                @Override\n                public CssMetaData getCssMetaData() {\n                    return StyleableProperties.ICON_CODE;\n                }\n\n                @Override\n                public Object getBean() {\n                    return SVGIcon.this;\n                }\n\n                @Override\n                public String getName() {\n                    return \"iconCode\";\n                }\n            };\n            iconCode.addListener(iconFontChangeListener);\n        }\n        return iconCode;\n    }\n\n    public ObjectProperty<Ikon> getIconCodeProperty() {\n        return iconCodeProperty();\n    }\n\n    @Override\n    public void setIconSize(int size) {\n        if (size <= 0) {\n            throw new IllegalStateException(\"Argument 'size' must be greater than zero.\");\n        }\n        iconSizeProperty().set(size);\n    }\n\n    @Override\n    public int getIconSize() {\n        return iconSizeProperty().get();\n    }\n\n    @Override\n    public void setIconColor(Paint paint) {\n        requireNonNull(paint, \"Argument 'paint' must not be null\");\n        iconColorProperty().set(paint);\n    }\n\n    @Override\n    public Paint getIconColor() {\n        return iconColorProperty().get();\n    }\n\n    public Ikon getIconCode() {\n        return iconCodeProperty().get();\n    }\n\n    public void setIconCode(Ikon iconCode) {\n        iconCodeProperty().set(requireNonNull(iconCode, \"Argument 'code' must not be null\"));\n        path.setContent(SVGGlyphRegistry.getInstance().getSVGContent(iconCode));\n    }\n\n    public void setIconLiteral(String iconCode) {\n        String[] parts = iconCode.split(\":\");\n        setIconCode(IkonResolver.getInstance().resolveIkonHandler(parts[0]).resolve(parts[0]));\n        resolveSize(iconCode, parts);\n        resolvePaint(iconCode, parts);\n    }\n\n    public String getIconLiteral() {\n        Ikon ikon = iconCodeProperty().get();\n        return ikon != null ? ikon.getDescription() : null;\n    }\n\n    private static class StyleableProperties {\n        private static final CssMetaData<SVGIcon, Number> ICON_SIZE =\n            new CssMetaData<SVGIcon, Number>(\"-fx-icon-size\",\n                SizeConverter.getInstance(), 16.0) {\n\n                @Override\n                public boolean isSettable(SVGIcon icon) {\n                    return true;\n                }\n\n                @Override\n                public StyleableProperty<Number> getStyleableProperty(SVGIcon icon) {\n                    return (StyleableProperty<Number>) icon.iconSizeProperty();\n                }\n            };\n\n        private static final CssMetaData<SVGIcon, Paint> ICON_COLOR =\n            new CssMetaData<SVGIcon, Paint>(\"-fx-icon-color\",\n                PaintConverter.getInstance(), Color.BLACK) {\n\n                @Override\n                public boolean isSettable(SVGIcon node) {\n                    return true;\n                }\n\n                @Override\n                public StyleableProperty<Paint> getStyleableProperty(SVGIcon icon) {\n                    return (StyleableProperty<Paint>) icon.iconColorProperty();\n                }\n            };\n\n        private static final CssMetaData<SVGIcon, Ikon> ICON_CODE =\n            new CssMetaData<SVGIcon, Ikon>(\"-fx-icon-code\",\n                SVGIconConverter.getInstance(), null) {\n\n                @Override\n                public boolean isSettable(SVGIcon node) {\n                    return true;\n                }\n\n                @Override\n                public StyleableProperty<Ikon> getStyleableProperty(SVGIcon icon) {\n                    return (StyleableProperty<Ikon>) icon.iconCodeProperty();\n                }\n            };\n\n        private static final List<CssMetaData<? extends Styleable, ?>> STYLEABLES;\n\n        static {\n            final List<CssMetaData<? extends Styleable, ?>> styleables =\n                new ArrayList<CssMetaData<? extends Styleable, ?>>(Region.getClassCssMetaData());\n            styleables.add(ICON_SIZE);\n            styleables.add(ICON_COLOR);\n            styleables.add(ICON_CODE);\n            STYLEABLES = unmodifiableList(styleables);\n        }\n    }\n\n    public static List<CssMetaData<? extends Styleable, ?>> getClassCssMetaData() {\n        return StyleableProperties.STYLEABLES;\n    }\n\n    public List<CssMetaData<? extends Styleable, ?>> getCssMetaData() {\n        return SVGIcon.getClassCssMetaData();\n    }\n\n    private void resolveSize(String iconCode, String[] parts) {\n        if (parts.length > 1) {\n            try {\n                setIconSize(Integer.parseInt(parts[1]));\n            } catch (NumberFormatException e) {\n                throw invalidDescription(iconCode, e);\n            }\n        } else {\n            setIconSize(16);\n        }\n    }\n\n    private void resolvePaint(String iconCode, String[] parts) {\n        if (parts.length > 2) {\n            Paint paint = resolvePaintValue(iconCode, parts[2]);\n            if (paint != null) {\n                setIconColor(paint);\n            }\n        }\n    }\n\n    private static Paint resolvePaintValue(String iconCode, String value) {\n        try {\n            return Color.valueOf(value);\n        } catch (IllegalArgumentException e1) {\n            try {\n                return LinearGradient.valueOf(value);\n            } catch (IllegalArgumentException e2) {\n                try {\n                    return RadialGradient.valueOf(value);\n                } catch (IllegalArgumentException e3) {\n                    throw invalidDescription(iconCode, e3);\n                }\n            }\n        }\n    }\n\n    public static IllegalArgumentException invalidDescription(String description, Exception e) {\n        throw new IllegalArgumentException(\"Description \" + description + \" is not a valid icon description\", e);\n    }\n}\n"
  },
  {
    "path": "core/ikonli-javafx/tmp/SVGIconConverter.java",
    "content": "/*\n * Copyright 2015-2016 Andres Almiray. <aalmiray@yahoo.com>\n *\n * This file is part of Ikonli\n *\n * Ikonli is free software: you can redistribute it and/or modify\n * it under the terms of the GNU General Public License as published by\n * the Free Software Foundation, either version 3 of the License, or\n * (at your option) any later version.\n *\n * Ikonli is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n * GNU General Public License for more details.\n *\n * You should have received a copy of the GNU General Public License\n * along with Ikonli. If not, see <http://www.gnu.org/licenses/>.\n *\n * ========================================================================\n *\n * This library is distributed under the terms of the GNU General Public\n * License with the following clarification and special exception:\n *\n * Linking this library statically or dynamically with other modules is\n * making a combined work based on this library. Thus, the terms and\n * conditions of the GNU General Public License cover the whole\n * combination.\n *\n * As an special exception, the copyright holders of this library give\n * you permission to use this library under the terms of the Apache\n * Software License v2 and forego the licensing terms of the GNU General\n * Public License if and only if the library is used as part of an\n * executable and/or application that makes use of the APIs of either the\n * Griffon Framework (https://github.com/griffon/griffon) or the\n * Basilisk Framework (https://github.com/basilisk-fw/basilisk).\n *\n * ========================================================================\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.javafx;\n\nimport javafx.css.ParsedValue;\nimport javafx.css.StyleConverter;\nimport javafx.scene.text.Font;\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic class SVGIconConverter extends StyleConverter<String, Ikon> {\n    private static class Holder {\n        static final SVGIconConverter INSTANCE = new SVGIconConverter();\n    }\n\n    public static StyleConverter<String, Ikon> getInstance() {\n        return Holder.INSTANCE;\n    }\n\n    private SVGIconConverter() {\n\n    }\n\n    @Override\n    public String toString() {\n        return \"SVGIconConverter\";\n    }\n\n    @Override\n    public Ikon convert(ParsedValue<String, Ikon> value, Font font) {\n        String description = value.getValue().trim();\n        return IkonResolver.getInstance().resolveIkonHandler(description).resolve(description);\n    }\n}"
  },
  {
    "path": "core/ikonli-javafx/tmp/StackedFontIcon.java",
    "content": "package org.kordamp.ikonli.javafx;\n\nimport com.sun.javafx.css.converters.PaintConverter;\nimport com.sun.javafx.css.converters.SizeConverter;\nimport javafx.beans.property.IntegerProperty;\nimport javafx.beans.property.ObjectProperty;\nimport javafx.beans.value.ChangeListener;\nimport javafx.css.CssMetaData;\nimport javafx.css.Styleable;\nimport javafx.css.StyleableIntegerProperty;\nimport javafx.css.StyleableObjectProperty;\nimport javafx.css.StyleableProperty;\nimport javafx.scene.Node;\nimport javafx.scene.layout.StackPane;\nimport javafx.scene.paint.Color;\nimport javafx.scene.paint.Paint;\nimport org.kordamp.ikonli.Ikon;\n\nimport java.util.ArrayList;\nimport java.util.Arrays;\nimport java.util.List;\n\nimport static java.util.Collections.unmodifiableList;\nimport static java.util.Objects.requireNonNull;\n\n/**\n * @author Andres Almiray\n */\npublic class StackedFontIcon extends StackPane implements Icon {\n    private StyleableIntegerProperty iconSize;\n    private StyleableObjectProperty<Paint> iconColor;\n    private ObjectProperty<Ikon[]> iconCodes;\n    private ObjectProperty<Number[]> iconSizes;\n\n    private ChangeListener<Number> iconSizeChangeListener = (v, o, n) -> setIconSizeOnChildren(n.intValue());\n    private ChangeListener<Paint> iconColorChangeListener = (v, o, n) -> setIconColorOnChildren(n);\n    private ChangeListener<Ikon[]> iconCodesChangeListener = (v, o, n) -> updateIconCodes(n);\n    private ChangeListener<Number[]> iconSizesChangeListener = (v, o, n) -> updateIconSizes(n);\n\n    public StackedFontIcon() {\n        getStyleClass().setAll(\"stacked-ikonli-font-icon\");\n    }\n\n    public ObjectProperty<Ikon[]> iconCodesProperty() {\n        if (iconCodes == null) {\n            iconCodes = new StyleableObjectProperty<Ikon[]>() {\n                @Override\n                public Object getBean() {\n                    return StackedFontIcon.this;\n                }\n\n                @Override\n                public String getName() {\n                    return \"iconCodes\";\n                }\n\n                @Override\n                public CssMetaData<? extends Styleable, Ikon[]> getCssMetaData() {\n                    return StyleableProperties.ICON_CODES;\n                }\n            };\n            iconCodes.addListener(iconCodesChangeListener);\n        }\n        return iconCodes;\n    }\n\n    public IntegerProperty iconSizeProperty() {\n        if (iconSize == null) {\n            iconSize = new StyleableIntegerProperty(16) {\n                @Override\n                public CssMetaData getCssMetaData() {\n                    return StyleableProperties.ICON_SIZE;\n                }\n\n                @Override\n                public Object getBean() {\n                    return StackedFontIcon.this;\n                }\n\n                @Override\n                public String getName() {\n                    return \"iconSize\";\n                }\n            };\n            iconSize.addListener(iconSizeChangeListener);\n        }\n        return iconSize;\n    }\n\n    public ObjectProperty<Number[]> iconSizesProperty() {\n        if (iconSizes == null) {\n            iconSizes = new StyleableObjectProperty<Number[]>() {\n                @Override\n                public Object getBean() {\n                    return StackedFontIcon.this;\n                }\n\n                @Override\n                public String getName() {\n                    return \"iconSizes\";\n                }\n\n                @Override\n                public CssMetaData<? extends Styleable, Number[]> getCssMetaData() {\n                    return StyleableProperties.ICON_SIZES;\n                }\n            };\n            iconSizes.addListener(iconSizesChangeListener);\n        }\n        return iconSizes;\n    }\n\n    public ObjectProperty<Paint> iconColorProperty() {\n        if (iconColor == null) {\n            iconColor = new StyleableObjectProperty<Paint>(Color.BLACK) {\n                @Override\n                public CssMetaData getCssMetaData() {\n                    return StyleableProperties.ICON_COLOR;\n                }\n\n                @Override\n                public Object getBean() {\n                    return StackedFontIcon.this;\n                }\n\n                @Override\n                public String getName() {\n                    return \"iconColor\";\n                }\n            };\n            iconColor.addListener(iconColorChangeListener);\n        }\n        return iconColor;\n    }\n\n    public void setIconSize(int size) {\n        if (size <= 0) {\n            throw new IllegalStateException(\"Argument 'size' must be greater than zero.\");\n        }\n        iconSizeProperty().set(size);\n    }\n\n    public int getIconSize() {\n        return iconSizeProperty().get();\n    }\n\n    public void setIconColor(Paint paint) {\n        requireNonNull(paint, \"Argument 'paint' must not be null\");\n        iconColorProperty().set(paint);\n    }\n\n    public Paint getIconColor() {\n        return iconColorProperty().get();\n    }\n\n    public Ikon[] getIconCodes() {\n        Ikon[] iconFonts = iconCodesProperty().get();\n        return Arrays.copyOf(iconFonts, iconFonts.length);\n    }\n\n    public void setIkons(Ikon... iconCodes) {\n        getChildren().clear();\n        initializeSizesIfNeeded(iconCodes);\n        iconCodesProperty().set(iconCodes);\n    }\n\n    public void setIconCodes(Ikon[] iconCodes) {\n        getChildren().clear();\n        initializeSizesIfNeeded(iconCodes);\n        iconCodesProperty().set(iconCodes);\n    }\n\n    public void setIconCodeLiterals(String... iconCodes) {\n        getChildren().clear();\n        Ikon[] codes = new Ikon[iconCodes.length];\n        for (int i = 0; i < iconCodes.length; i++) {\n            codes[i] = IkonResolver.getInstance().resolveIkonHandler(iconCodes[i]).resolve(iconCodes[i]);\n        }\n        initializeSizesIfNeeded(iconCodes);\n        iconCodesProperty().set(codes);\n    }\n\n    private void initializeSizesIfNeeded(Object[] iconCodes) {\n        if (iconSizesProperty().get() == null) {\n            Double[] sizes = new Double[iconCodes.length];\n            Arrays.fill(sizes, 1d);\n            iconSizesProperty().set(sizes);\n        }\n    }\n\n    private void updateIconCodes(Ikon[] iconCodes) {\n        for (int index = 0; index < iconCodes.length; index++) {\n            getChildren().add(createFontIcon(iconCodes[index], index));\n        }\n    }\n\n    private FontIcon createFontIcon(Ikon iconCode, int index) {\n        FontIcon icon = new FontIcon(iconCode);\n        icon.setIconSize(getIconSize());\n        icon.setIconColor(getIconColor());\n        int size = icon.getIconSize();\n        applySizeToIcon(size, icon, index);\n        return icon;\n    }\n\n    public Number[] getIconSizes() {\n        Number[] iconSizes = iconSizesProperty().get();\n        return Arrays.copyOf(iconSizes, iconSizes.length);\n    }\n\n    public void setSizes(double... iconSizes) {\n        Number[] array = new Number[iconSizes.length];\n        for (int i = 0; i < array.length; i++) {\n            array[i] = iconSizes[i];\n        }\n        iconSizesProperty().set(array);\n    }\n\n    public void setIconSizes(Number[] iconSizes) {\n        iconSizesProperty().set(iconSizes);\n    }\n\n    private void updateIconSizes(Number[] iconSizes) {\n        iconSizesProperty().set(iconSizes);\n        setIconSizeOnChildren(getIconSize());\n    }\n\n    public void setColors(Paint... iconColors) {\n        int i = 0;\n        for (Node node : getChildren()) {\n            if (node instanceof Icon) {\n                ((Icon) node).setIconColor(iconColors[i++]);\n            }\n        }\n    }\n\n    private static class StyleableProperties {\n        private static final CssMetaData<StackedFontIcon, Number> ICON_SIZE =\n            new CssMetaData<StackedFontIcon, Number>(\"-fx-icon-size\",\n                SizeConverter.getInstance(), 16.0) {\n\n                @Override\n                public boolean isSettable(StackedFontIcon fontIcon) {\n                    return true;\n                }\n\n                @Override\n                public StyleableProperty<Number> getStyleableProperty(StackedFontIcon icon) {\n                    return (StyleableProperty<Number>) icon.iconSizeProperty();\n                }\n            };\n\n        private static final CssMetaData<StackedFontIcon, Paint> ICON_COLOR =\n            new CssMetaData<StackedFontIcon, Paint>(\"-fx-icon-color\",\n                PaintConverter.getInstance(), Color.BLACK) {\n\n                @Override\n                public boolean isSettable(StackedFontIcon node) {\n                    return true;\n                }\n\n                @Override\n                public StyleableProperty<Paint> getStyleableProperty(StackedFontIcon icon) {\n                    return (StyleableProperty<Paint>) icon.iconColorProperty();\n                }\n            };\n\n        private static final CssMetaData<StackedFontIcon, Ikon[]> ICON_CODES =\n            new CssMetaData<StackedFontIcon, Ikon[]>(\"-fx-icon-codes\",\n                FontIconConverter.SequenceConverter.getInstance(), null) {\n\n                @Override\n                public boolean isSettable(StackedFontIcon node) {\n                    return true;\n                }\n\n                @Override\n                public StyleableProperty<Ikon[]> getStyleableProperty(StackedFontIcon icon) {\n                    return (StyleableProperty<Ikon[]>) icon.iconCodesProperty();\n                }\n            };\n\n        private static final CssMetaData<StackedFontIcon, Number[]> ICON_SIZES =\n            new CssMetaData<StackedFontIcon, Number[]>(\"-fx-icon-sizes\",\n                SizeConverter.SequenceConverter.getInstance(), null) {\n\n                @Override\n                public boolean isSettable(StackedFontIcon node) {\n                    return true;\n                }\n\n                @Override\n                public StyleableProperty<Number[]> getStyleableProperty(StackedFontIcon icon) {\n                    return (StyleableProperty<Number[]>) icon.iconSizesProperty();\n                }\n            };\n\n        private static final List<CssMetaData<? extends Styleable, ?>> STYLEABLES;\n\n        static {\n            final List<CssMetaData<? extends Styleable, ?>> styleables =\n                new ArrayList<CssMetaData<? extends Styleable, ?>>(StackPane.getClassCssMetaData());\n            styleables.add(ICON_SIZE);\n            styleables.add(ICON_COLOR);\n            styleables.add(ICON_CODES);\n            styleables.add(ICON_SIZES);\n            STYLEABLES = unmodifiableList(styleables);\n        }\n    }\n\n    public static List<CssMetaData<? extends Styleable, ?>> getClassCssMetaData() {\n        return StyleableProperties.STYLEABLES;\n    }\n\n    public List<CssMetaData<? extends Styleable, ?>> getCssMetaData() {\n        return StackedFontIcon.getClassCssMetaData();\n    }\n\n    private void setIconSizeOnChildren(int size) {\n        int i = 0;\n        for (Node node : getChildren()) {\n            if (node instanceof Icon) {\n                applySizeToIcon(size, (Icon) node, i++);\n            }\n        }\n    }\n\n    private void applySizeToIcon(int size, Icon icon, int index) {\n        double childPercentageSize = iconSizesProperty().get()[index].doubleValue();\n        double newSize = size * childPercentageSize;\n        icon.setIconSize((int) newSize);\n    }\n\n    private void setIconColorOnChildren(Paint color) {\n        for (Node node : getChildren()) {\n            if (node instanceof Icon) {\n                ((Icon) node).setIconColor(color);\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "core/ikonli-swing/ikonli-swing.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\ndependencies {\n    api project(':ikonli-core')\n}"
  },
  {
    "path": "core/ikonli-swing/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.swing {\n    exports org.kordamp.ikonli.swing;\n\n    requires transitive org.kordamp.ikonli.core;\n\n    requires java.desktop;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n}"
  },
  {
    "path": "core/ikonli-swing/src/main/java/org/kordamp/ikonli/swing/FontIcon.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.swing;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.ikonli.IkonResolverProvider;\n\nimport javax.swing.Icon;\nimport javax.swing.ImageIcon;\nimport java.awt.Color;\nimport java.awt.Component;\nimport java.awt.Font;\nimport java.awt.Graphics;\nimport java.awt.Graphics2D;\nimport java.awt.RenderingHints;\nimport java.awt.image.BufferedImage;\n\nimport static java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment;\nimport static java.util.Objects.requireNonNull;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class FontIcon implements Icon {\n    private static final Object LOCK = new Object[0];\n\n    private Font font;\n    private int width = 8;\n    private int height = 8;\n\n    private int iconSize = 8;\n    private Color iconColor = Color.BLACK;\n    private Ikon ikon;\n\n    public void paintIcon(Component c, Graphics g, int x, int y) {\n        int w = getIconWidth();\n        int h = getIconHeight();\n        if (w <= 0 || h <= 0) return;\n\n        g.translate(x, y);\n        Color previousColor = g.getColor();\n        Font previousFont = g.getFont();\n\n        try {\n            Graphics2D g2 = (Graphics2D) g;\n            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,\n                RenderingHints.VALUE_ANTIALIAS_ON);\n\n            g2.setFont(font);\n            g2.setColor(iconColor);\n\n            int sy = g2.getFontMetrics().getAscent();\n            int code = ikon.getCode();\n\n            if (code <= '\\uFFFF') {\n                g2.drawString(String.valueOf((char) code), 0, sy);\n            } else {\n                char[] charPair = Character.toChars(code);\n                String symbol = new String(charPair);\n                g2.drawString(symbol, 0, sy);\n            }\n        } finally {\n            g.translate(-x, -y);\n            g.setColor(previousColor);\n            g.setFont(previousFont);\n        }\n    }\n\n    public ImageIcon toImageIcon() {\n        return toImageIcon(this);\n    }\n\n    public ImageIcon toImageIcon(Icon icon) {\n        BufferedImage image = new BufferedImage(icon.getIconWidth(), icon.getIconHeight(), BufferedImage.TYPE_INT_ARGB);\n        icon.paintIcon(null, image.getGraphics(), 0, 0);\n        return new ImageIcon(image);\n    }\n\n    public Ikon getIkon() {\n        return ikon;\n    }\n\n    public void setIkon(Ikon ikon) {\n        requireNonNull(iconColor, \"Argument 'iconFont' must not be null\");\n        this.ikon = ikon;\n        synchronized (LOCK) {\n            IkonHandler ikonHandler = IkonResolverProvider.getInstance(SwingFontLoader.getInstance()).resolve(ikon.getDescription());\n            font = ((Font) ikonHandler.getFont()).deriveFont(Font.PLAIN, iconSize);\n            setProperties();\n        }\n    }\n\n    public int getIconSize() {\n        return iconSize;\n    }\n\n    public void setIconSize(int iconSize) {\n        if (iconSize > 0) {\n            this.iconSize = iconSize;\n            if (null != font) {\n                font = font.deriveFont(Font.PLAIN, iconSize);\n                setProperties();\n            }\n        }\n    }\n\n    protected void setProperties() {\n        BufferedImage tmp = new BufferedImage(iconSize, iconSize,\n            BufferedImage.TYPE_INT_ARGB);\n        Graphics2D g2 = getLocalGraphicsEnvironment().createGraphics(tmp);\n        g2.setFont(font);\n        this.width = g2.getFontMetrics().charWidth(ikon.getCode());\n        this.height = g2.getFontMetrics().getHeight();\n\n        g2.dispose();\n    }\n\n    public Color getIconColor() {\n        return iconColor;\n    }\n\n    public void setIconColor(Color iconColor) {\n        requireNonNull(iconColor, \"Argument 'iconColor' must not be null\");\n        this.iconColor = iconColor;\n    }\n\n    public int getIconHeight() {\n        return height;\n    }\n\n    public int getIconWidth() {\n        return width;\n    }\n\n    public static FontIcon of(Ikon ikon) {\n        return of(ikon, 8, Color.BLACK);\n    }\n\n    public static FontIcon of(Ikon ikon, int iconSize) {\n        return of(ikon, iconSize, Color.BLACK);\n    }\n\n    public static FontIcon of(Ikon ikon, Color iconColor) {\n        return of(ikon, 8, iconColor);\n    }\n\n    public static FontIcon of(Ikon ikon, int iconSize, Color iconColor) {\n        FontIcon icon = new FontIcon();\n        icon.setIkon(ikon);\n        icon.setIconSize(iconSize);\n        icon.setIconColor(iconColor);\n        return icon;\n    }\n}\n"
  },
  {
    "path": "core/ikonli-swing/src/main/java/org/kordamp/ikonli/swing/SwingFontLoader.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.swing;\n\nimport org.kordamp.ikonli.FontLoader;\nimport org.kordamp.ikonli.IkonHandler;\n\nimport java.awt.Font;\nimport java.awt.FontFormatException;\nimport java.awt.GraphicsEnvironment;\nimport java.io.IOException;\nimport java.io.InputStream;\nimport java.util.Map;\nimport java.util.concurrent.ConcurrentHashMap;\n\n@org.osgi.service.component.annotations.Component(service = FontLoader.class)\npublic class SwingFontLoader implements FontLoader {\n    private static final Map<String, Font> FONTS = new ConcurrentHashMap<>();\n\n    @Override\n    public void loadFont(IkonHandler handler) {\n        String fontResource = handler.getFontResource().toExternalForm();\n        Font font = FONTS.computeIfAbsent(fontResource, key -> {\n            try (InputStream stream = handler.getFontResourceAsStream()) {\n                if (stream == null) {\n                    throw new IllegalStateException(\"Font resource not found: \" + fontResource);\n                }\n                Font newFont = Font.createFont(Font.TRUETYPE_FONT, stream);\n                GraphicsEnvironment.getLocalGraphicsEnvironment().registerFont(newFont);\n                return newFont;\n            } catch (FontFormatException | IOException e) {\n                throw new IllegalStateException(\"Failed to load font from \" + fontResource, e);\n            }\n        });\n        handler.setFont(font);\n    }\n\n    public static FontLoader getInstance() {\n        return new SwingFontLoader();\n    }\n}\n"
  },
  {
    "path": "docs/guide/guide.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nplugins {\n    id 'org.kordamp.gradle.guide'\n    id 'org.ajoberstar.git-publish'\n}\n\nclass GenerateIconCheatSheetTask extends DefaultTask {\n    @Input\n    String packName\n    @Input\n    String iconName\n    @Input\n    String prefix\n    @Input\n    String iconClassName\n    @Input\n    Integer shortNameSize\n    @Input\n    Boolean dataGlyph\n    @Input @Optional\n    String classifier\n\n    @TaskAction\n    def generate() {\n        GroovyClassLoader gcl = new GroovyClassLoader()\n        gcl.addClasspath(project.project(':ikonli-core').file('build/classes/java/main').absolutePath)\n        gcl.addClasspath(project.project(\":ikonli-${packName}-pack\").file('build/classes/java/main').absolutePath)\n        gcl.addClasspath(project.project(\":ikonli-${packName}-pack\").file('build/resources/java/main').absolutePath)\n        def iconFontClass = gcl.loadClass(iconClassName, true)\n\n        int index = 1\n        String document = '''\n        The following table shows all available icons.\n\n        [columns=\"1,3,2,^\", options=\"header\"]\n        |===\n        | Index | Enum | Name | Icon\n        '''.stripIndent(8)\n\n        iconFontClass.values().each { font ->\n            document += \"| ${index++} \"\n            document += \"| ${font} \"\n            document += \"| ${font.description} \"\n            if (dataGlyph) {\n                document += \"| pass:[<span class=\\\"${iconName}\\\" data-glyph=\\\"${font.description[shortNameSize..-1]}\\\" aria-hidden=\\\"true\\\"></span>] \"\n            } else {\n                document += \"| pass:[<i class=\\\"${iconName} ${prefix}-${font.description[shortNameSize..-1]}\\\"></i>] \"\n            }\n            document += '\\n'\n        }\n\n        document += '|===\\n'\n\n        document += '\\n\\n'\n        File f = project.file(\"${project.buildDir}/tmp/_${packName + (classifier ? '_' + classifier : '')}_cheat_sheet.adoc\")\n        f.parentFile.mkdirs()\n        f.text = document\n    }\n}\n\ndef createIconGenerationTask(Map args) {\n    Map realArgs = [*: args]\n    realArgs.get('dataGlyph', false)\n    realArgs.get('shortNameSize', 3)\n    realArgs.get('iconName', realArgs.packName)\n\n    String name = realArgs.packName + (realArgs.classifier ? realArgs.classifier.capitalize() : '')\n\n    Task task = project.tasks.create(type: GenerateIconCheatSheetTask, name: \"${name}GenerateIconCheatSheet\")\n    task.packName = realArgs.packName\n    task.iconName = realArgs.iconName\n    task.prefix = realArgs.prefix ?: realArgs.iconName\n    task.iconClassName = realArgs.iconClassName\n    task.shortNameSize = realArgs.shortNameSize\n    task.dataGlyph = realArgs.dataGlyph\n    task.classifier = realArgs.classifier\n    task.dependsOn(project(':ikonli-core').classes)\n    task.dependsOn(project(\":ikonli-${realArgs.packName}-pack\").classes)\n    task\n}\n\nproject.ext.versions = [\n    antdesignicons  : project.antdesigniconsVersion,\n    bootstrapicons  : project.bootstrapiconsVersion,\n    boxicons        : project.boxiconsVersion,\n    bpmn            : project.bpmnVersion,\n    bytedance       : project.bytedanceVersion,\n    captainicon     : project.captainiconVersion,\n    carbonicons     : project.carboniconsVersion,\n    codicons        : project.codiconsVersion,\n    coreui          : project.coreuiVersion,\n    dashicons       : project.dashiconsVersion,\n    devicons        : project.deviconsVersion,\n    elusive         : project.elusiveVersion,\n    entypo          : project.entypoVersion,\n    evaicons        : project.evaiconsVersion,\n    feather         : project.featherVersion,\n    fileicons       : project.fileiconsVersion,\n    fluentui        : project.fluentuiVersion,\n    fontawesome     : project.fontawesomeVersion,\n    fontawesome5    : project.fontawesome5Version,\n    fontawesome6    : project.fontawesome6Version,\n    fontelico       : project.fontelicoVersion,\n    foundation      : project.foundationVersion,\n    icomoon         : project.icomoonVersion,\n    hawcons         : project.hawconsVersion,\n    ionicons        : project.ioniconsVersion,\n    ionicons4       : project.ionicons4Version,\n    jamicons        : project.jamiconsVersion,\n    ligaturesymbols : project.ligaturesymbolsVersion,\n    lineawesome     : project.lineawesomeVersion,\n    linecons        : project.lineconsVersion,\n    maki            : project.makiVersion,\n    maki2           : project.maki2Version,\n    mapicons        : project.mapiconsVersion,\n    material        : project.materialVersion,\n    material2       : project.material2Version,\n    materialdesign  : project.materialdesignVersion,\n    materialdesign2 : project.materialdesign2Version,\n    medicons        : project.mediconsVersion,\n    metrizeicons    : project.metrizeiconsVersion,\n    microns         : project.micronsVersion,\n    ociicons        : project.ociiconsVersion,\n    octicons        : project.octiconsVersion,\n    openiconic      : project.openiconicVersion,\n    paymentfont     : project.paymentfontVersion,\n    prestashopicons : project.prestashopiconsVersion,\n    remixicon       : project.remixiconVersion,\n    runestroicons   : project.runestroiconsVersion,\n    simpleicons     : project.simpleiconsVersion,\n    simplelineicons : project.simplelineiconsVersion,\n    subway          : project.subwayVersion,\n    themify         : project.themifyVersion,\n    typicons        : project.typiconsVersion,\n    unicons         : project.uniconsVersion,\n    weathericons    : project.weathericonsVersion,\n    websymbols      : project.websymbolsVersion,\n    whhg            : project.whhgVersion,\n    win10           : project.win10Version,\n    zondicons       : project.zondiconsVersion\n]\n\nasciidoctor {\n    dependsOn createIconGenerationTask(packName: 'devicons', iconClassName: 'org.kordamp.ikonli.devicons.Devicons'),\n            createIconGenerationTask(packName: 'antdesignicons', iconClassName: 'org.kordamp.ikonli.antdesignicons.AntDesignIconsFilled', iconName: 'antf', shortNameSize: 5, classifier: 'filled'),\n            createIconGenerationTask(packName: 'antdesignicons', iconClassName: 'org.kordamp.ikonli.antdesignicons.AntDesignIconsOutlined', iconName: 'anto', shortNameSize: 5, classifier: 'outlined'),\n            createIconGenerationTask(packName: 'bootstrapicons', iconClassName: 'org.kordamp.ikonli.bootstrapicons.BootstrapIcons', iconName: 'bi'),\n            createIconGenerationTask(packName: 'boxicons', iconClassName: 'org.kordamp.ikonli.boxicons.BoxiconsLogos', iconName: 'bxl', shortNameSize: 4, classifier: 'logos'),\n            createIconGenerationTask(packName: 'boxicons', iconClassName: 'org.kordamp.ikonli.boxicons.BoxiconsRegular', iconName: 'bx', shortNameSize: 3, classifier: 'regular'),\n            createIconGenerationTask(packName: 'boxicons', iconClassName: 'org.kordamp.ikonli.boxicons.BoxiconsSolid', iconName: 'bxs', shortNameSize: 4, classifier: 'solid'),\n            createIconGenerationTask(packName: 'bpmn', iconClassName: 'org.kordamp.ikonli.bpmn.Bpmn', shortNameSize: 5),\n            createIconGenerationTask(packName: 'bytedance', iconClassName: 'org.kordamp.ikonli.bytedance.BytedanceIconsThinAL', iconName: 'bd1', shortNameSize: 4, classifier: 'thinal'),\n            createIconGenerationTask(packName: 'bytedance', iconClassName: 'org.kordamp.ikonli.bytedance.BytedanceIconsThinMZ', iconName: 'bd1', shortNameSize: 4, classifier: 'thinmz'),\n            createIconGenerationTask(packName: 'bytedance', iconClassName: 'org.kordamp.ikonli.bytedance.BytedanceIconsRegularAL', iconName: 'bd2', shortNameSize: 4, classifier: 'regularal'),\n            createIconGenerationTask(packName: 'bytedance', iconClassName: 'org.kordamp.ikonli.bytedance.BytedanceIconsRegularMZ', iconName: 'bd2', shortNameSize: 4, classifier: 'regularmz'),\n            createIconGenerationTask(packName: 'bytedance', iconClassName: 'org.kordamp.ikonli.bytedance.BytedanceIconsBoldAL', iconName: 'bd3', shortNameSize: 4, classifier: 'boldal'),\n            createIconGenerationTask(packName: 'bytedance', iconClassName: 'org.kordamp.ikonli.bytedance.BytedanceIconsBoldMZ', iconName: 'bd3', shortNameSize: 4, classifier: 'boldmz'),\n            createIconGenerationTask(packName: 'bytedance', iconClassName: 'org.kordamp.ikonli.bytedance.BytedanceIconsExtraBoldAL', iconName: 'bd4', shortNameSize: 4, classifier: 'extraboldal'),\n            createIconGenerationTask(packName: 'bytedance', iconClassName: 'org.kordamp.ikonli.bytedance.BytedanceIconsExtraBoldMZ', iconName: 'bd4', shortNameSize: 4, classifier: 'extraboldmz'),\n            createIconGenerationTask(packName: 'captainicon', iconClassName: 'org.kordamp.ikonli.captainicon.Captainicon', iconName: 'captainicon', shortNameSize: 12),\n            createIconGenerationTask(packName: 'carbonicons', iconClassName: 'org.kordamp.ikonli.carbonicons.CarbonIcons', iconName: 'ci'),\n            createIconGenerationTask(packName: 'codicons', iconClassName: 'org.kordamp.ikonli.codicons.Codicons', iconName: 'codicon', shortNameSize: 8),\n            createIconGenerationTask(packName: 'coreui', iconClassName: 'org.kordamp.ikonli.coreui.CoreUiBrands', iconName: 'cib', shortNameSize: 4, classifier: 'brands'),\n            createIconGenerationTask(packName: 'coreui', iconClassName: 'org.kordamp.ikonli.coreui.CoreUiFree', iconName: 'cil', shortNameSize: 4, classifier: 'free'),\n            createIconGenerationTask(packName: 'dashicons', iconClassName: 'org.kordamp.ikonli.dashicons.Dashicons', iconName: 'dashicons', shortNameSize: 10),\n            createIconGenerationTask(packName: 'elusive', iconClassName: 'org.kordamp.ikonli.elusive.Elusive', iconName: 'el-icon', shortNameSize: 4),\n            createIconGenerationTask(packName: 'entypo', iconClassName: 'org.kordamp.ikonli.entypo.Entypo', iconName: 'enty', shortNameSize: 5),\n            createIconGenerationTask(packName: 'evaicons', iconClassName: 'org.kordamp.ikonli.evaicons.Evaicons', iconName: 'eva', shortNameSize: 4),\n            createIconGenerationTask(packName: 'feather', iconClassName: 'org.kordamp.ikonli.feather.Feather', iconName: 'fth', shortNameSize: 4),\n            createIconGenerationTask(packName: 'fileicons', iconClassName: 'org.kordamp.ikonli.fileicons.FileIcons', iconName: 'file', shortNameSize: 5),\n            createIconGenerationTask(packName: 'fluentui', iconClassName: 'org.kordamp.ikonli.fluentui.FluentUiFilledAL', iconName: 'fltf', shortNameSize: 7, classifier: 'fal'),\n            createIconGenerationTask(packName: 'fluentui', iconClassName: 'org.kordamp.ikonli.fluentui.FluentUiFilledMZ', iconName: 'fltf', shortNameSize: 7, classifier: 'fmz'),\n            createIconGenerationTask(packName: 'fluentui', iconClassName: 'org.kordamp.ikonli.fluentui.FluentUiRegularAL', iconName: 'fltr', shortNameSize: 7, classifier: 'ral'),\n            createIconGenerationTask(packName: 'fluentui', iconClassName: 'org.kordamp.ikonli.fluentui.FluentUiRegularMZ', iconName: 'fltr', shortNameSize: 7, classifier: 'rmz'),\n            createIconGenerationTask(packName: 'fontawesome', iconClassName: 'org.kordamp.ikonli.fontawesome.FontAwesome', iconName: 'fa'),\n            createIconGenerationTask(packName: 'fontawesome5', iconClassName: 'org.kordamp.ikonli.fontawesome5.FontAwesomeBrands', iconName: 'fab', prefix: 'fa', shortNameSize: 4, classifier: 'brands'),\n            createIconGenerationTask(packName: 'fontawesome5', iconClassName: 'org.kordamp.ikonli.fontawesome5.FontAwesomeRegular', iconName: 'far', prefix: 'fa', shortNameSize: 4, classifier: 'regular'),\n            createIconGenerationTask(packName: 'fontawesome5', iconClassName: 'org.kordamp.ikonli.fontawesome5.FontAwesomeSolid', iconName: 'fas', prefix: 'fa', shortNameSize: 4, classifier: 'solid'),\n            createIconGenerationTask(packName: 'fontawesome6', iconClassName: 'org.kordamp.ikonli.fontawesome6.FontAwesomeBrands', iconName: 'fab', prefix: 'fa', shortNameSize: 4, classifier: 'brands'),\n            createIconGenerationTask(packName: 'fontawesome6', iconClassName: 'org.kordamp.ikonli.fontawesome6.FontAwesomeRegular', iconName: 'far', prefix: 'fa', shortNameSize: 4, classifier: 'regular'),\n            createIconGenerationTask(packName: 'fontawesome6', iconClassName: 'org.kordamp.ikonli.fontawesome6.FontAwesomeSolid', iconName: 'fas', prefix: 'fa', shortNameSize: 4, classifier: 'solid'),\n            createIconGenerationTask(packName: 'fontelico', iconClassName: 'org.kordamp.ikonli.fontelico.Fontelico', shortNameSize: 4),\n            createIconGenerationTask(packName: 'foundation', iconClassName: 'org.kordamp.ikonli.foundation.Foundation'),\n            createIconGenerationTask(packName: 'hawcons', iconClassName: 'org.kordamp.ikonli.hawcons.HawconsFilled', iconName: 'hwf', shortNameSize: 4, classifier: 'filled'),\n            createIconGenerationTask(packName: 'hawcons', iconClassName: 'org.kordamp.ikonli.hawcons.HawconsStroke', iconName: 'hws', shortNameSize: 4, classifier: 'stroke'),\n            createIconGenerationTask(packName: 'icomoon', iconClassName: 'org.kordamp.ikonli.icomoon.Icomoon', iconName: 'icm', shortNameSize: 4),\n            createIconGenerationTask(packName: 'ionicons', iconClassName: 'org.kordamp.ikonli.ionicons.Ionicons', iconName: 'ion', shortNameSize: 4),\n            createIconGenerationTask(packName: 'ionicons4', iconClassName: 'org.kordamp.ikonli.ionicons4.Ionicons4IOS', iconName: 'ion', shortNameSize: 5, classifier: 'ios'),\n            createIconGenerationTask(packName: 'ionicons4', iconClassName: 'org.kordamp.ikonli.ionicons4.Ionicons4Logo', iconName: 'ion', shortNameSize: 5, classifier: 'logo'),\n            createIconGenerationTask(packName: 'ionicons4', iconClassName: 'org.kordamp.ikonli.ionicons4.Ionicons4Material', iconName: 'ion', shortNameSize: 5, classifier: 'material'),\n            createIconGenerationTask(packName: 'jamicons', iconClassName: 'org.kordamp.ikonli.jam.Jam', iconName: 'jam', shortNameSize: 4),\n            createIconGenerationTask(packName: 'ligaturesymbols', iconClassName: 'org.kordamp.ikonli.ligaturesymbols.LigatureSymbols', iconName: 'lsf', shortNameSize: 4),\n            createIconGenerationTask(packName: 'lineawesome', iconClassName: 'org.kordamp.ikonli.lineawesome.LineAwesomeBrands', iconName: 'lab', prefix: 'la', shortNameSize: 4, classifier: 'brands'),\n            createIconGenerationTask(packName: 'lineawesome', iconClassName: 'org.kordamp.ikonli.lineawesome.LineAwesomeRegular', iconName: 'lar', prefix: 'la', shortNameSize: 4, classifier: 'regular'),\n            createIconGenerationTask(packName: 'lineawesome', iconClassName: 'org.kordamp.ikonli.lineawesome.LineAwesomeSolid', iconName: 'las', prefix: 'la', shortNameSize: 4, classifier: 'solid'),\n            createIconGenerationTask(packName: 'linecons', iconClassName: 'org.kordamp.ikonli.linecons.Linecons', iconName: 'li'),\n            createIconGenerationTask(packName: 'maki', iconClassName: 'org.kordamp.ikonli.maki.Maki', shortNameSize: 5),\n            createIconGenerationTask(packName: 'maki2', iconClassName: 'org.kordamp.ikonli.maki2.Maki2', shortNameSize: 6),\n            createIconGenerationTask(packName: 'mapicons', iconClassName: 'org.kordamp.ikonli.mapicons.Mapicons', iconName: 'map-icon', shortNameSize: 9),\n            createIconGenerationTask(packName: 'material', iconClassName: 'org.kordamp.ikonli.material.Material', iconName: 'gmi', shortNameSize: 4),\n            createIconGenerationTask(packName: 'material2', iconClassName: 'org.kordamp.ikonli.material2.Material2AL', iconName: 'md', prefix: 'md', shortNameSize: 5, classifier: 'al'),\n            createIconGenerationTask(packName: 'material2', iconClassName: 'org.kordamp.ikonli.material2.Material2MZ', iconName: 'md', prefix: 'md', shortNameSize: 5, classifier: 'mz'),\n            createIconGenerationTask(packName: 'material2', iconClassName: 'org.kordamp.ikonli.material2.Material2OutlinedAL', iconName: 'mdo', prefix: 'mdo', shortNameSize: 6, classifier: 'oal'),\n            createIconGenerationTask(packName: 'material2', iconClassName: 'org.kordamp.ikonli.material2.Material2OutlinedMZ', iconName: 'mdo', prefix: 'mdo', shortNameSize: 6, classifier: 'omz'),\n            createIconGenerationTask(packName: 'material2', iconClassName: 'org.kordamp.ikonli.material2.Material2RoundAL', iconName: 'mdr', prefix: 'mdr', shortNameSize: 6, classifier: 'ral'),\n            createIconGenerationTask(packName: 'material2', iconClassName: 'org.kordamp.ikonli.material2.Material2RoundMZ', iconName: 'mdr', prefix: 'mdr', shortNameSize: 6, classifier: 'rmz'),\n            createIconGenerationTask(packName: 'material2', iconClassName: 'org.kordamp.ikonli.material2.Material2SharpAL', iconName: 'mds', prefix: 'mds', shortNameSize: 6, classifier: 'sal'),\n            createIconGenerationTask(packName: 'material2', iconClassName: 'org.kordamp.ikonli.material2.Material2SharpMZ', iconName: 'mds', prefix: 'mds', shortNameSize: 6, classifier: 'smz'),\n            createIconGenerationTask(packName: 'materialdesign', iconClassName: 'org.kordamp.ikonli.materialdesign.MaterialDesign', iconName: 'mdi', shortNameSize: 4),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignA', iconName: 'mdi2', shortNameSize: 6, classifier: 'a'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignB', iconName: 'mdi2', shortNameSize: 6, classifier: 'b'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignC', iconName: 'mdi2', shortNameSize: 6, classifier: 'c'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignD', iconName: 'mdi2', shortNameSize: 6, classifier: 'd'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignE', iconName: 'mdi2', shortNameSize: 6, classifier: 'e'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignF', iconName: 'mdi2', shortNameSize: 6, classifier: 'f'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignG', iconName: 'mdi2', shortNameSize: 6, classifier: 'g'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignH', iconName: 'mdi2', shortNameSize: 6, classifier: 'h'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignI', iconName: 'mdi2', shortNameSize: 6, classifier: 'i'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignJ', iconName: 'mdi2', shortNameSize: 6, classifier: 'j'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignK', iconName: 'mdi2', shortNameSize: 6, classifier: 'k'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignL', iconName: 'mdi2', shortNameSize: 6, classifier: 'l'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignM', iconName: 'mdi2', shortNameSize: 6, classifier: 'm'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignN', iconName: 'mdi2', shortNameSize: 6, classifier: 'n'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignO', iconName: 'mdi2', shortNameSize: 6, classifier: 'o'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignP', iconName: 'mdi2', shortNameSize: 6, classifier: 'p'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignQ', iconName: 'mdi2', shortNameSize: 6, classifier: 'q'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignR', iconName: 'mdi2', shortNameSize: 6, classifier: 'r'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignS', iconName: 'mdi2', shortNameSize: 6, classifier: 's'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignT', iconName: 'mdi2', shortNameSize: 6, classifier: 't'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignU', iconName: 'mdi2', shortNameSize: 6, classifier: 'u'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignV', iconName: 'mdi2', shortNameSize: 6, classifier: 'v'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignW', iconName: 'mdi2', shortNameSize: 6, classifier: 'w'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignX', iconName: 'mdi2', shortNameSize: 6, classifier: 'x'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignY', iconName: 'mdi2', shortNameSize: 6, classifier: 'y'),\n            createIconGenerationTask(packName: 'materialdesign2', iconClassName: 'org.kordamp.ikonli.materialdesign2.MaterialDesignZ', iconName: 'mdi2', shortNameSize: 6, classifier: 'z'),\n            createIconGenerationTask(packName: 'medicons', iconClassName: 'org.kordamp.ikonli.medicons.Medicons', iconName: 'medicon', shortNameSize: 8),\n            createIconGenerationTask(packName: 'metrizeicons', iconClassName: 'org.kordamp.ikonli.metrizeicons.MetrizeIcons', iconName: 'met', shortNameSize: 4),\n            createIconGenerationTask(packName: 'microns', iconClassName: 'org.kordamp.ikonli.microns.Microns', iconName: 'mu'),\n            createIconGenerationTask(packName: 'ociicons', iconClassName: 'org.kordamp.ikonli.ociicons.Ociicons', iconName: 'oci', shortNameSize: 4),\n            createIconGenerationTask(packName: 'octicons', iconClassName: 'org.kordamp.ikonli.octicons.Octicons', iconName: 'octicon', shortNameSize: 4),\n            createIconGenerationTask(packName: 'openiconic', iconClassName: 'org.kordamp.ikonli.openiconic.Openiconic', iconName: 'oi', dataGlyph: true),\n            createIconGenerationTask(packName: 'paymentfont', iconClassName: 'org.kordamp.ikonli.paymentfont.PaymentFont', iconName: 'pf', shortNameSize: 3),\n            createIconGenerationTask(packName: 'prestashopicons', iconClassName: 'org.kordamp.ikonli.prestashopicons.PrestaShopIcons', iconName: 'ps', shortNameSize: 3),\n            createIconGenerationTask(packName: 'remixicon', iconClassName: 'org.kordamp.ikonli.remixicon.RemixiconAL', iconName: 'remix', shortNameSize: 8, classifier: 'al'),\n            createIconGenerationTask(packName: 'remixicon', iconClassName: 'org.kordamp.ikonli.remixicon.RemixiconMZ', iconName: 'remix', shortNameSize: 8, classifier: 'mz'),\n            createIconGenerationTask(packName: 'runestroicons', iconClassName: 'org.kordamp.ikonli.runestroicons.Runestroicons', iconName: 'ri'),\n            createIconGenerationTask(packName: 'simpleicons', iconClassName: 'org.kordamp.ikonli.simpleicons.SimpleIcons', iconName: 'si'),\n            createIconGenerationTask(packName: 'simplelineicons', iconClassName: 'org.kordamp.ikonli.simplelineicons.SimpleLineIcons', iconName: 'sil', shortNameSize: 4),\n            createIconGenerationTask(packName: 'subway', iconClassName: 'org.kordamp.ikonli.subway.Subway', iconName: 'subway', shortNameSize: 7),\n            createIconGenerationTask(packName: 'themify', iconClassName: 'org.kordamp.ikonli.themify.Themify', iconName: 'ti', shortNameSize: 3),\n            createIconGenerationTask(packName: 'typicons', iconClassName: 'org.kordamp.ikonli.typicons.Typicons', iconName: 'typcn', shortNameSize: 4),\n            createIconGenerationTask(packName: 'unicons', iconClassName: 'org.kordamp.ikonli.unicons.UniconsLine', iconName: 'unil', shortNameSize: 5, classifier: 'line'),\n            createIconGenerationTask(packName: 'unicons', iconClassName: 'org.kordamp.ikonli.unicons.UniconsMonochrome', iconName: 'unim', shortNameSize: 5, classifier: 'monochrome'),\n            createIconGenerationTask(packName: 'unicons', iconClassName: 'org.kordamp.ikonli.unicons.UniconsSolid', iconName: 'unis', shortNameSize: 5, classifier: 'solid'),\n            createIconGenerationTask(packName: 'weathericons', iconClassName: 'org.kordamp.ikonli.weathericons.WeatherIcons', iconName: 'wi'),\n            createIconGenerationTask(packName: 'websymbols', iconClassName: 'org.kordamp.ikonli.websymbols.Websymbols', iconName: 'websymbols'),\n            createIconGenerationTask(packName: 'whhg', iconClassName: 'org.kordamp.ikonli.whhg.WhhgAL', iconName: 'whhg', shortNameSize: 7, classifier: 'al'),\n            createIconGenerationTask(packName: 'whhg', iconClassName: 'org.kordamp.ikonli.whhg.WhhgMZ', iconName: 'whhg', shortNameSize: 7, classifier: 'mz'),\n            createIconGenerationTask(packName: 'win10', iconClassName: 'org.kordamp.ikonli.win10.Win10', iconName: 'win10', shortNameSize: 6),\n            createIconGenerationTask(packName: 'zondicons', iconClassName: 'org.kordamp.ikonli.zondicons.Zondicons', iconName: 'zondi', shortNameSize: 6)\n\n    attributes = [\n            ikonliJdk8Version      : project.ikonliJdk8Version,\n            antdesigniconsVersion  : project.antdesigniconsVersion,\n            bootstrapiconsVersion  : project.bootstrapiconsVersion,\n            boxiconsVersion        : project.boxiconsVersion,\n            bpmnVersion            : project.bpmnVersion,\n            bytedanceVersion       : project.bytedanceVersion,\n            captainiconVersion     : project.captainiconVersion,\n            carboniconsVersion     : project.carboniconsVersion,\n            codiconsVersion        : project.codiconsVersion,\n            coreuiVersion          : project.coreuiVersion,\n            dashiconsVersion       : project.dashiconsVersion,\n            deviconsVersion        : project.deviconsVersion,\n            elusiveVersion         : project.elusiveVersion,\n            entypoVersion          : project.entypoVersion,\n            evaiconsVersion        : project.evaiconsVersion,\n            featherVersion         : project.featherVersion,\n            fileiconsVersion       : project.fileiconsVersion,\n            fluentuiVersion        : project.fluentuiVersion,\n            fontawesomeVersion     : project.fontawesomeVersion,\n            fontawesome5Version    : project.fontawesome5Version,\n            fontawesome6Version    : project.fontawesome6Version,\n            fontelicoVersion       : project.fontelicoVersion,\n            foundationVersion      : project.foundationVersion,\n            icomoonVersion         : project.icomoonVersion,\n            hawconsVersion         : project.hawconsVersion,\n            ioniconsVersion        : project.ioniconsVersion,\n            ionicons4Version       : project.ionicons4Version,\n            jamiconsVersion        : project.jamiconsVersion,\n            ligaturesymbolsVersion : project.ligaturesymbolsVersion,\n            lineawesomeVersion     : project.lineawesomeVersion,\n            lineconsVersion        : project.lineconsVersion,\n            makiVersion            : project.makiVersion,\n            maki2Version           : project.maki2Version,\n            mapiconsVersion        : project.mapiconsVersion,\n            materialVersion        : project.materialVersion,\n            material2Version       : project.material2Version,\n            materialdesignVersion  : project.materialdesignVersion,\n            materialdesign2Version : project.materialdesign2Version,\n            mediconsVersion        : project.mediconsVersion,\n            metrizeiconsVersion    : project.metrizeiconsVersion,\n            micronsVersion         : project.micronsVersion,\n            ociiconsVersion        : project.ociiconsVersion,\n            octiconsVersion        : project.octiconsVersion,\n            openiconicVersion      : project.openiconicVersion,\n            paymentfontVersion     : project.paymentfontVersion,\n            prestashopiconsVersion : project.prestashopiconsVersion,\n            remixiconVersion       : project.remixiconVersion,\n            runestroiconsVersion   : project.runestroiconsVersion,\n            simpleiconsVersion     : project.simpleiconsVersion,\n            simplelineiconsVersion : project.simplelineiconsVersion,\n            subwayVersion          : project.subwayVersion,\n            themifyVersion         : project.themifyVersion,\n            typiconsVersion        : project.typiconsVersion,\n            uniconsVersion         : project.uniconsVersion,\n            weathericonsVersion    : project.weathericonsVersion,\n            websymbolsVersion      : project.websymbolsVersion,\n            whhgVersion            : project.whhgVersion,\n            win10Version           : project.win10Version,\n            zondiconsVersion       : project.zondiconsVersion\n    ]\n\n    sources {\n        include '*.adoc'\n    }\n\n    resources {\n        from file('src/resources')\n        project.ext.versions.each { k, v ->\n            from(project(\":ikonli-${k}-pack\").file(\"src/main/resources/META-INF/resources/${k}/${v}\")) {\n                into(k)\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/authoring.adoc",
    "content": "\n[[_authoring]]\n= Authoring\n\nFollow these steps to create and register custom icons.\n\n== Define an Ikon class\n\nCreate an Enum that implements the `org.kordamp.ikonli.Ikon` type. Each enum entry should define\nthe icon's description and code. Make sure to use a unique prefix in the description, for example\n\n[source,java]\n.MyIcon.java\n----\npackage com.acme.mine;\n\nimport org.kordamp.ikonli.Ikon;\n\npublic enum MyIcon implements Ikon {\n    ICON_NAME(\"my-icon-name\", '\\ue600');\n\n    public static MyIcon findByDescription(String description) {\n        for (MyIcon font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    MyIcon(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n----\n\n== Define an Ikon handler\n\nImplement the `org.kordamp.ikonli.IkonHandler` interface.\n\n[source,java]\n.MyIconIkonHandler.java\n----\npackage com.acme.mine;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport java.io.InputStream;\nimport java.net.URL;\n\n@ServiceProviderFor(IkonHandler.class)                                 // <1>\npublic class MyIconIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/myicon/1.2.3/fonts/myicon.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"my-\");   // <2>\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MyIcon.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);                  // <3>\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);          // <3>\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"MyIcon-Font\";                                          // <4>\n    }\n}\n----\n<1> Generates an entry at `META-INF/services/org.kordamp.ikonli.IkonHandler`.\n<2> Note the use of the icon prefix.\n<3> Locate the font resource.\n<4> Name of the font family.\n\nThe use of the `@ServiceProviderFor` annotation requires having link:https://github.com/kordamp/jipsy/[jipsy] configured\nas an annotation processor. You may skip this dependency and manually create the service file yourself. You must provide\na service entry if the icon is to be consumed in the classpath, as not everyone uses the modulepath.\n\n[source,java]\n.META-INF/services/org.kordamp.ikonli.IkonHandler\n----\ncom.acme.mine.MyIconIkonHandler\n----\n\n== Define an Ikon provider\n\nImplement the `org.kordamp.ikonli.IkonProvider` interface.\n\n[source,java]\n.MyIconIkonProvider.java\n----\npackage com.acme.mine;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\n\n@ServiceProviderFor(IkonProvider.class)                                // <1>\npublic class MyIconIkonProvider implements IkonProvider<MyIcon> {\n    @Override\n    public Class<MyIcon> getIkon() {\n        return MyIcon.class;\n    }\n}\n----\n<1> Generates an entry at `META-INF/services/org.kordamp.ikonli.IkonProvider`.\n\nThe use of the `@ServiceProviderFor` annotation requires having link:https://github.com/kordamp/jipsy/[jipsy] configured\nas an annotation processor. You may skip this dependency and manually create the service file yourself. You must provide\na service entry if the icon is to be consumed in the classpath, as not everyone uses the modulepath.\n\n[source,java]\n.META-INF/services/org.kordamp.ikonli.IkonProvider\n----\ncom.acme.mine.MyIconIkonProvider\n----\n\n== Configure the module descriptor (Optional)\n\nIf you're building a Java module then you must register the previous implementations in a module descriptor\n\n[source,java]\n.module-info.java\n----\nmodule com.acme.mine {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;                     // <1>\n    exports com.acme.mine;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with com.acme.mine.MyIconIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with com.acme.mine.MyIconIkonProvider;\n}\n----\n<1> Needed only if you use link:https://github.com/kordamp/jipsy/[jipsy].\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-antdesignicons.adoc",
    "content": "= AntDesignIcons\n\nUse the indicated enum type for each set.\n\n== Filled (AntDesignIconsFilled)\n\n++++\n<link href='./antdesignicons/css/antdesignicons-filled.css' rel='stylesheet'>\n<style>\n    .antf {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_antdesignicons_filled_cheat_sheet.adoc[]\n\n== Outlined (BoxiconsOutlined)\n\n++++\n<link href='./antdesignicons/css/antdesignicons-outlined.css' rel='stylesheet'>\n<style>\n    .anto {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_antdesignicons_outlined_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-bootstrapicons.adoc",
    "content": "= BootstrapIcons\n\n++++\n<link href='./bootstrapicons/css/bootstrap-icons.css' rel='stylesheet'>\n<style>\n    .bi {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_bootstrapicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-boxicons.adoc",
    "content": "= Boxicons\n\nUse the indicated enum type for each set.\n\n== Logos (BoxiconsLogos)\n\n++++\n<link href='./boxicons/css/boxicons.css' rel='stylesheet'>\n<style>\n    .bx,\n    .bxl,\n    .bxs {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_boxicons_logos_cheat_sheet.adoc[]\n\n== Regular (BoxiconsRegular)\n\ninclude::{gradle-projectdir}/build/tmp/_boxicons_regular_cheat_sheet.adoc[]\n\n== Solid (BoxiconsSolid)\n\ninclude::{gradle-projectdir}/build/tmp/_boxicons_solid_cheat_sheet.adoc[]\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-bpmn.adoc",
    "content": "= Bpmn\n\n++++\n<link href='./bpmn/css/bpmn.css' rel='stylesheet'>\n<style>\n    .bpmn {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_bpmn_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-bytedance.adoc",
    "content": "= BytedanceIcons\n\nUse the indicated enum type for each set.\n\n++++\n<link href='./bytedance/css/bytedance-iconpack-thin.css' rel='stylesheet'>\n<style>\n    .bd1 {\n        font-size: 32px;\n    }\n</style>\n++++\n\n== Thin A-L (BytedanceIconsThinAL)\n\ninclude::{gradle-projectdir}/build/tmp/_bytedance_thinal_cheat_sheet.adoc[]\n\n== Thin M-Z (BytedanceIconsThinMZ)\n\ninclude::{gradle-projectdir}/build/tmp/_bytedance_thinmz_cheat_sheet.adoc[]\n\n++++\n<link href='./css/bytedance-iconpack-regular.css' rel='stylesheet'>\n<style>\n    .bd2 {\n        font-size: 32px;\n    }\n</style>\n++++\n\n== Regular A-L (BytedanceIconsRegularAL)\n\ninclude::{gradle-projectdir}/build/tmp/_bytedance_regularal_cheat_sheet.adoc[]\n\n== Regular M-Z (BytedanceIconsRegularMZ)\n\ninclude::{gradle-projectdir}/build/tmp/_bytedance_regularmz_cheat_sheet.adoc[]\n\n++++\n<link href='./bytedance/css/bytedance-iconpack-bold.css' rel='stylesheet'>\n<style>\n    .bd3 {\n        font-size: 32px;\n    }\n</style>\n++++\n\n== Bold A-L (BytedanceIconsBoldAL)\n\ninclude::{gradle-projectdir}/build/tmp/_bytedance_boldal_cheat_sheet.adoc[]\n\n== Bold M-Z (BytedanceIconsBoldMZ)\n\ninclude::{gradle-projectdir}/build/tmp/_bytedance_boldmz_cheat_sheet.adoc[]\n\n++++\n<link href='./bytedance/css/bytedance-iconpack-extrabold.css' rel='stylesheet'>\n<style>\n    .bd4 {\n        font-size: 32px;\n    }\n</style>\n++++\n\n== ExtraBold A-L (BytedanceIconsExtraBoldAL)\n\ninclude::{gradle-projectdir}/build/tmp/_bytedance_extraboldal_cheat_sheet.adoc[]\n\n== ExtraBold M-Z (BytedanceIconsExtraBoldMZ)\n\ninclude::{gradle-projectdir}/build/tmp/_bytedance_extraboldmz_cheat_sheet.adoc[]"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-captainicon.adoc",
    "content": "= Captainicon\n\n++++\n<link href='./captainicon/css/captainicon.css' rel='stylesheet'>\n<style>\n    .captainicon {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_captainicon_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-carbonicons.adoc",
    "content": "= CarbonIcons\n\n++++\n<link href='./carbonicons/css/carbonicons.css' rel='stylesheet'>\n<style>\n    .ci {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_carbonicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-codicons.adoc",
    "content": "= Codicons\n\n++++\n<link href='./codicons/css/codicon.css' rel='stylesheet'>\n<style>\n    .codicon {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_codicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-coreui.adoc",
    "content": "= CoreUI\n\nUse the indicated enum type for each set.\n\n== Brands (CoreUIBrands)\n\n++++\n<link href='./coreui/css/coreui-brand.css' rel='stylesheet'>\n<style>\n    .cib {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_coreui_brands_cheat_sheet.adoc[]\n\n== Free (CoreUIFree)\n\n++++\n<link href='./coreui/css/coreui-free.css' rel='stylesheet'>\n<style>\n    .cil {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_coreui_free_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-dashicons.adoc",
    "content": "= Dashicons\n\n++++\n<link href='./dashicons/css/dashicons.css' rel='stylesheet'>\n<style>\n    .dashicons {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_dashicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-devicons.adoc",
    "content": "= Devicons\n\n++++\n<link href='./devicons/css/devicons.min.css' rel='stylesheet'>\n<style>\n    .devicons {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_devicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-elusive.adoc",
    "content": "= Elusive\n\n++++\n<link href='./elusive/css/elusive-webfont.css' rel='stylesheet'>\n<style>\n    .el-icon {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_elusive_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-entypo.adoc",
    "content": "= Entypo\n\n++++\n<link href='./entypo/css/entypo.css' rel='stylesheet'>\n<style>\n    .enty {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_entypo_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-evaicons.adoc",
    "content": "= Evaicons\n\n++++\n<link href='./evaicons/css/evaicons.css' rel='stylesheet'>\n<style>\n    .eva {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_evaicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-feather.adoc",
    "content": "= Feather\n\n++++\n<link href='./feather/css/feather.css' rel='stylesheet'>\n<style>\n    .fth {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_feather_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-fileicons.adoc",
    "content": "= Fileicons\n\n++++\n<link href='./fileicons/css/fileicons.css' rel='stylesheet'>\n<style>\n    .file {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_fileicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-fluentui.adoc",
    "content": "= FluentUI\n\nUse the indicated enum type for each set.\n\n++++\n<link href='./fluentui/css/FluentSystemIcons-Filled.css' rel='stylesheet'>\n<style>\n    .fltf {\n        font-size: 32px;\n    }\n</style>\n++++\n\nUse the indicated enum type for each set.\n\n== Filled A-L (FluentUIFilledAL)\n\ninclude::{gradle-projectdir}/build/tmp/_fluentui_fal_cheat_sheet.adoc[]\n\n== Filled M-Z (FluentUIFilledMZ)\n\ninclude::{gradle-projectdir}/build/tmp/_fluentui_fmz_cheat_sheet.adoc[]\n\n++++\n<link href='./fluentui/css/FluentSystemIcons-Regular.css' rel='stylesheet'>\n<style>\n    .fltr {\n        font-size: 32px;\n    }\n</style>\n++++\n\n== Regular A-L (FluentUIRegularAL)\n\ninclude::{gradle-projectdir}/build/tmp/_fluentui_ral_cheat_sheet.adoc[]\n\n== Regular M-Z (FluentUIRegularMZ)\n\ninclude::{gradle-projectdir}/build/tmp/_fluentui_rmz_cheat_sheet.adoc[]\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-fontawesome.adoc",
    "content": "= Fontawesome\n\n++++\n<link href='./fontawesome/css/font-awesome.min.css' rel='stylesheet'>\n<style>\n    .fa {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_fontawesome_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-fontawesome5.adoc",
    "content": "= Fontawesome5\n\nUse the indicated enum type for each set.\n\n== Brands (FontAwesomeBrands)\n\n++++\n<link href='./fontawesome5/css/fontawesome-all.css' rel='stylesheet'>\n<link href='./fontawesome5/css/fa-brands.css' rel='stylesheet'>\n<style>\n    .fa,\n    .fab {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_fontawesome5_brands_cheat_sheet.adoc[]\n\n== Regular (FontAwesomeRegular)\n\n++++\n<link href='./fontawesome5/css/fa-regular.css' rel='stylesheet'>\n<style>\n    .fa,\n    .far {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_fontawesome5_regular_cheat_sheet.adoc[]\n\n== Solid (FontAwesomeSolid)\n\n++++\n<link href='./fontawesome5/css/fontawesome-all.css' rel='stylesheet'>\n<link href='./fontawesome5/css/fa-solid.css' rel='stylesheet'>\n<style>\n    .fa,\n    .fas {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_fontawesome5_solid_cheat_sheet.adoc[]\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-fontawesome6.adoc",
    "content": "= Fontawesome6\n\nUse the indicated enum type for each set.\n\n== Brands (FontAwesomeBrands)\n\n++++\n<link href='./fontawesome6/css/all.css' rel='stylesheet'>\n<link href='./fontawesome6/css/brands.css' rel='stylesheet'>\n<style>\n    .fa,\n    .fab {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_fontawesome6_brands_cheat_sheet.adoc[]\n\n== Regular (FontAwesomeRegular)\n\n++++\n<link href='./fontawesome6/css/regular.css' rel='stylesheet'>\n<style>\n    .fa,\n    .far {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_fontawesome6_regular_cheat_sheet.adoc[]\n\n== Solid (FontAwesomeSolid)\n\n++++\n<link href='./fontawesome6/css/all.css' rel='stylesheet'>\n<link href='./fontawesome6/css/solid.css' rel='stylesheet'>\n<style>\n    .fa,\n    .fas {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_fontawesome6_solid_cheat_sheet.adoc[]\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-fontelico.adoc",
    "content": "= Fontelico\n\n++++\n<link href='./fontelico/css/fontelico.css' rel='stylesheet'>\n<style>\n    .fontelico {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_fontelico_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-foundation.adoc",
    "content": "= Foundation\n\n++++\n<link href='./foundation/css/foundation-icons.css' rel='stylesheet'>\n<style>\n    .foundation {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_foundation_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-hawcons.adoc",
    "content": "= Hawcons\n\nUse the indicated enum type for each set.\n\n== Filled (HawconsFilled)\n++++\n<link href='./hawcons/css/hawconsfilled.css' rel='stylesheet'>\n<style>\n    .hwf {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_hawcons_filled_cheat_sheet.adoc[]\n\n== Stroke (HawconsStroke)\n\n++++\n<link href='./hawcons/css/hawconsstroke.css' rel='stylesheet'>\n<style>\n    .hws {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_hawcons_stroke_cheat_sheet.adoc[]\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-icomoon.adoc",
    "content": "= Icomoon\n\n++++\n<link href='./icomoon/css/icomoon.css' rel='stylesheet'>\n<style>\n    .icm {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_icomoon_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-ionicons.adoc",
    "content": "= Ionicons\n\n++++\n<link href='./ionicons/css/ionicons.css' rel='stylesheet'>\n<style>\n    .ion {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_ionicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-ionicons4.adoc",
    "content": "= Ionicons4\n\n== IOS\n\n++++\n<link href='./ionicons4/css/ionicons4.css' rel='stylesheet'>\n<style>\n    .ion, .ionicons {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_ionicons4_IOS_cheat_sheet.adoc[]\n\n== Material\n\n++++\n<link href='./ionicons4/css/ionicons4.css' rel='stylesheet'>\n<style>\n    .ion, .ionicons {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_ionicons4_Material_cheat_sheet.adoc[]\n\n== Logo\n\n++++\n<link href='./ionicons4/css/ionicons4.css' rel='stylesheet'>\n\n<style>\n    .ion, .ionicons {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_ionicons4_Logo_cheat_sheet.adoc[]\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-jamicons.adoc",
    "content": "= Jam\n\n++++\n<link href='./jamicons/css/jam.css' rel='stylesheet'>\n<style>\n    .jam {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_jamicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-ligaturesymbols.adoc",
    "content": "= Ligature Symbols\n\n++++\n<link href='./ligaturesymbols/css/ligaturesymbols.css' rel='stylesheet'>\n<style>\n    .lsf {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_ligaturesymbols_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-lineawesome.adoc",
    "content": "= Lineawesome\n\nUse the indicated enum type for each set.\n\n== Brands (LineAwesomeBrands)\n\n++++\n<link href='./lineawesome/css/lineawesome-all.css' rel='stylesheet'>\n<link href='./lineawesome/css/la-brands.css' rel='stylesheet'>\n<style>\n    .la,\n    .lab {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_lineawesome_brands_cheat_sheet.adoc[]\n\n== Regular (LineAwesomeRegular)\n\n++++\n<link href='./lineawesome/css/la-regular.css' rel='stylesheet'>\n<style>\n    .la,\n    .lar {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_lineawesome_regular_cheat_sheet.adoc[]\n\n== Solid (LineAwesomeSolid)\n\n++++\n<link href='./lineawesome/css/lineawesome-all.css' rel='stylesheet'>\n<link href='./lineawesome/css/la-solid.css' rel='stylesheet'>\n<style>\n    .la,\n    .las {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_lineawesome_solid_cheat_sheet.adoc[]\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-linecons.adoc",
    "content": "= Linecons\n\n++++\n<link href='./linecons/css/linecons.css' rel='stylesheet'>\n<style>\n    .li {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_linecons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-maki.adoc",
    "content": "= Maki\n\n++++\n<link href='./maki/css/maki.css' rel='stylesheet'>\n<style>\n    .maki {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_maki_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-maki2.adoc",
    "content": "= Maki2\n\n++++\n<link href='./maki2/css/maki2.css' rel='stylesheet'>\n<style>\n    .maki2 {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_maki2_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-mapicons.adoc",
    "content": "= Mapicons\n\n++++\n<link href='./mapicons/css/map-icons.css' rel='stylesheet'>\n<style>\n    .map-icon {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_mapicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-material.adoc",
    "content": "= Material Icons\n\n++++\n<link href='./_material/css/material-icons.css' rel='stylesheet'>\n<style>\n    .gmi {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_material_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-material2.adoc",
    "content": "= Material2\n\nUse the indicated enum type for each set.\n\n++++\n<link href='./material2/css/md-baseline.css' rel='stylesheet'>\n<style>\n    .md, .mdal, .mdmz {\n        font-size: 32px;\n    }\n</style>\n++++\n\n== A-L (Material2AL)\n\ninclude::{gradle-projectdir}/build/tmp/_material2_al_cheat_sheet.adoc[]\n\n== M-Z (Material2MZ)\n\ninclude::{gradle-projectdir}/build/tmp/_material2_mz_cheat_sheet.adoc[]\n\n++++\n<link href='./material2/css/md-outlined.css' rel='stylesheet'>\n<style>\n    .mdo, .mdoal, .mdomz {\n        font-size: 32px;\n    }\n</style>\n++++\n\n== Outlined A-L (MaterialOutlined2AL)\n\ninclude::{gradle-projectdir}/build/tmp/_material2_oal_cheat_sheet.adoc[]\n\n== Outlined M-Z (Material2OutlinedMZ)\n\ninclude::{gradle-projectdir}/build/tmp/_material2_omz_cheat_sheet.adoc[]\n\n++++\n<link href='./material2/css/md-round.css' rel='stylesheet'>\n<style>\n    .mdr, .mdral, .mdrmz {\n        font-size: 32px;\n    }\n</style>\n++++\n\n== Round A-L (MaterialRound2AL)\n\ninclude::{gradle-projectdir}/build/tmp/_material2_ral_cheat_sheet.adoc[]\n\n== Round M-Z (Material2RoundMZ)\n\ninclude::{gradle-projectdir}/build/tmp/_material2_rmz_cheat_sheet.adoc[]\n\n++++\n<link href='./material2/css/md-sharp.css' rel='stylesheet'>\n<style>\n    .mds, .mdsal, .mdsmz {\n        font-size: 32px;\n    }\n</style>\n++++\n\n== Sharp A-L (MaterialSharp2AL)\n\ninclude::{gradle-projectdir}/build/tmp/_material2_sal_cheat_sheet.adoc[]\n\n== Sharp M-Z (Material2SharpMZ)\n\ninclude::{gradle-projectdir}/build/tmp/_material2_smz_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-materialdesign.adoc",
    "content": "= Material Design Icons\n\n++++\n<link href='./materialdesign/css/materialdesignicons.css' rel='stylesheet'>\n<style>\n    .mdi {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_materialdesign_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-materialdesign2.adoc",
    "content": "= Material Design Icons (Latest)\n\nUse the indicated enum type for each set.\n\n++++\n<link href='./materialdesign2/css/materialdesignicons2.css' rel='stylesheet'>\n<style>\n    .mdi2 {\n        font-size: 32px;\n    }\n</style>\n++++\n\nUse the indicated enum type for each set.\n\n== A (MaterialDesignA)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_a_cheat_sheet.adoc[]\n\n== B (MaterialDesignB)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_b_cheat_sheet.adoc[]\n\n== C (MaterialDesignC)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_c_cheat_sheet.adoc[]\n\n== D (MaterialDesignD)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_d_cheat_sheet.adoc[]\n\n== E (MaterialDesignE)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_e_cheat_sheet.adoc[]\n\n== F (MaterialDesignF)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_f_cheat_sheet.adoc[]\n\n== G (MaterialDesignG)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_g_cheat_sheet.adoc[]\n\n== H (MaterialDesignH)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_h_cheat_sheet.adoc[]\n\n== I (MaterialDesignI)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_i_cheat_sheet.adoc[]\n\n== J (MaterialDesignJ)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_j_cheat_sheet.adoc[]\n\n== K (MaterialDesignK)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_k_cheat_sheet.adoc[]\n\n== L (MaterialDesignL)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_l_cheat_sheet.adoc[]\n\n== M (MaterialDesignM)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_m_cheat_sheet.adoc[]\n\n== N (MaterialDesignN)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_n_cheat_sheet.adoc[]\n\n== O (MaterialDesignO)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_o_cheat_sheet.adoc[]\n\n== P (MaterialDesignP)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_p_cheat_sheet.adoc[]\n\n== Q (MaterialDesignQ)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_q_cheat_sheet.adoc[]\n\n== R (MaterialDesignR)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_r_cheat_sheet.adoc[]\n\n== S (MaterialDesignS)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_s_cheat_sheet.adoc[]\n\n== T (MaterialDesignT)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_t_cheat_sheet.adoc[]\n\n== U (MaterialDesignU)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_u_cheat_sheet.adoc[]\n\n== V (MaterialDesignV)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_v_cheat_sheet.adoc[]\n\n== W (MaterialDesignW)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_w_cheat_sheet.adoc[]\n\n== X (MaterialDesignX)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_x_cheat_sheet.adoc[]\n\n== Y (MaterialDesignY)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_y_cheat_sheet.adoc[]\n\n== Z (MaterialDesignZ)\ninclude::{gradle-projectdir}/build/tmp/_materialdesign2_z_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-medicons.adoc",
    "content": "= Medicons\n\n++++\n<link href='./medicons/css/medicons.css' rel='stylesheet'>\n<style>\n    .medicon {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_medicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-metrizeicons.adoc",
    "content": "= Metrizeicons\n\n++++\n<link href='./metrizeicons/css/metrizeicons.css' rel='stylesheet'>\n<style>\n    .met {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_metrizeicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-microns.adoc",
    "content": "= Microns\n\n++++\n<link href='./microns_/css/microns.css' rel='stylesheet'>\n<style>\n    .mu {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_microns_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-ociicons.adoc",
    "content": "= Ociicons\n\n++++\n<link href='./ociicons/css/ociicons.css' rel='stylesheet'>\n<style>\n    .oci {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_ociicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-octicons.adoc",
    "content": "= Octicons\n\n++++\n<link href='./octicons/css/octicons.css' rel='stylesheet'>\n<style>\n    .octicon {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_octicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-openiconic.adoc",
    "content": "= Openiconic\n\n++++\n<link href='./openiconic/css/open-iconic.css' rel='stylesheet'>\n<style>\n    .oi {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_openiconic_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-paymentfont.adoc",
    "content": "= PaymentFont\n\n++++\n<link href='./paymentfont/css/paymentfont.min.css' rel='stylesheet'>\n<style>\n    .pf {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_paymentfont_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-prestashopicons.adoc",
    "content": "= PrestaShopIcons\n\n++++\n<link href='./prestashopicons/css/prestashopicons.css' rel='stylesheet'>\n<style>\n    .ps {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_prestashopicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-remixicon.adoc",
    "content": "= Remixicon\n\n++++\n<link href='./remixicon/css/remixicon.css' rel='stylesheet'>\n<style>\n    .remix {\n        font-size: 32px;\n    }\n</style>\n++++\n\nUse the indicated enum type for each set.\n\n== A-L (RemixiconAL)\n\ninclude::{gradle-projectdir}/build/tmp/_remixicon_al_cheat_sheet.adoc[]\n\n== M-Z (RemixiconMZ)\n\ninclude::{gradle-projectdir}/build/tmp/_remixicon_mz_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-runestroicons.adoc",
    "content": "= Runestroicons\n\n++++\n<link href='./runestroicons/css/runestroicons.css' rel='stylesheet'>\n<style>\n    .ri {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_runestroicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-simpleicons.adoc",
    "content": "= SimpleIcons\n\n++++\n<link href='./simpleicons/css/simpleicons.css' rel='stylesheet'>\n<style>\n    .si {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_simpleicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-simplelineicons.adoc",
    "content": "= SimpleLineIcons\n\n++++\n<link href='./simplelineicons/css/simple-line-icons.css' rel='stylesheet'>\n<style>\n    .sil {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_simplelineicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-subway.adoc",
    "content": "= Subway\n\n++++\n<link href='./subway/css/subway.css' rel='stylesheet'>\n<style>\n    .subway {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_subway_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-themify.adoc",
    "content": "= Themify\n\n++++\n<link href='./themify/css/themify-icons.min.css' rel='stylesheet'>\n<style>\n    .ti {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_themify_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-typicons.adoc",
    "content": "= Typicons\n\n++++\n<link href='./typicons/css/typicons.min.css' rel='stylesheet'>\n<style>\n    .typcn {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_typicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-unicons.adoc",
    "content": "= Unicons\n\nUse the indicated enum type for each set.\n\n== Line (UniconsLine)\n\n++++\n<link href='./unicons/css/unicons-line.css' rel='stylesheet'>\n<style>\n    .unil {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_unicons_line_cheat_sheet.adoc[]\n\n== Monochrome (UniconsMonochrome)\n\n++++\n<link href='./unicons/css/unicons-monochrome.css' rel='stylesheet'>\n<style>\n    .unim {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_unicons_monochrome_cheat_sheet.adoc[]\n\n== Solid (UniconsSolid)\n\n++++\n<link href='./unicons/css/unicons-solid.css' rel='stylesheet'>\n<style>\n    .unis {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_unicons_solid_cheat_sheet.adoc[]\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-weathericons.adoc",
    "content": "= Weathericons\n\n++++\n<link href='./weathericons/css/weather-icons.css' rel='stylesheet'>\n<style>\n    .wi {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_weathericons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-websymbols.adoc",
    "content": "= Websymbols\n\n++++\n<link href='./websymbols/css/websymbols.css' rel='stylesheet'>\n<style>\n    .websymbols {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_websymbols_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-whhg.adoc",
    "content": "= Whhg\n\n++++\n<link href='./whhg/css/whhg.css' rel='stylesheet'>\n<style>\n    .whhg {\n        font-size: 32px;\n    }\n</style>\n++++\n\nUse the indicated enum type for each set.\n\n== A-L (WhhgAL)\n\ninclude::{gradle-projectdir}/build/tmp/_whhg_al_cheat_sheet.adoc[]\n\n== M-Z (WhhgMZ)\n\ninclude::{gradle-projectdir}/build/tmp/_whhg_mz_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-win10.adoc",
    "content": "= Win10\n\n++++\n<link href='./win10/css/icons8-win10.css' rel='stylesheet'>\n<style>\n    .win10 {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_win10_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/cheat-sheet-zondicons.adoc",
    "content": "= Zondicons\n\n++++\n<link href='./zondicons/css/zondicons.min.css' rel='stylesheet'>\n<style>\n    .zondi {\n        font-size: 32px;\n    }\n</style>\n++++\n\ninclude::{gradle-projectdir}/build/tmp/_zondicons_cheat_sheet.adoc[]\n\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/icon-packs.adoc",
    "content": "\n[[_cheat_sheets]]\n= Icon Packs\n\n== AntDesignIcons\n* Module: `org.kordamp.ikonli.antdesignicons`\n* Font version: {antdesigniconsVersion}\n* link:https://github.com/ant-design/ant-design-icons[]\n* link:cheat-sheet-antdesignicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-antdesignicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-antdesignicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Bootstrapicons\n* Module: `org.kordamp.ikonli.bootstrapicons`\n* Font version: {bootstrapiconsVersion}\n* link:https://github.com/twbs/icons[]\n* link:cheat-sheet-bootstrapicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-bootstrapicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-bootstrapicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Boxicons\n* Module: `org.kordamp.ikonli.boxicons`\n* Font version: {boxiconsVersion}\n* link:https://github.com/atisawd/boxicons[]\n* link:cheat-sheet-boxicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-boxicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-boxicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Bpmn\n* Module: `org.kordamp.ikonli.bpmn`\n* Font version: {bpmnVersion}\n* link:https://github.com/bpmn-io/bpmn-font[]\n* link:cheat-sheet-bpmn.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-bpmn-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-bpmn-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Bytedance\n* Module: `org.kordamp.ikonli.bytedance`\n* Font version: {bytedanceVersion}\n* link:https://github.com/bytedance/iconpark[]\n* link:cheat-sheet-bytedance.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-bytedance-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-bytedance-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Captainicon\n* Module: `org.kordamp.ikonli.captainicon`\n* Font version: {captainiconVersion}\n* link:https://mariodelvalle.github.io/CaptainIconWeb/[]\n* link:cheat-sheet-captainicon.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-captainicon-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-captainicon-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Carbonicons\n* Module: `org.kordamp.ikonli.carbonicons`\n* Font version: {carboniconsVersion}\n* link:https://github.com/carbon-design-system/carbon/[]\n* link:cheat-sheet-carbonicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-carbonicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-carbonicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Codicons\n* Module: `org.kordamp.ikonli.codicons`\n* Font version: {codiconsVersion}\n* link:https://github.com/microsoft/vscode-codicons[]\n* link:cheat-sheet-codicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-codicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-codicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== CoreUI\n* Module: `org.kordamp.ikonli.coreui`\n* Font version: {coreuiVersion}\n* link:https://github.com/coreui/coreui-icons[]\n* link:cheat-sheet-coreui.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-coreui-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-coreui-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== DashIcons\n * Module: `org.kordamp.ikonli.dashicons`\n * Font version: {dashiconsVersion}\n * link:https://github.com/WordPress/dashicons[]\n * link:cheat-sheet-dashicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-dashicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-dashicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== DevIcons\n * Module: `org.kordamp.ikonli.devicons`\n * Font version: {deviconsVersion}\n * link:http://vorillaz.github.io/devicons/[]\n * link:cheat-sheet-devicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-devicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-devicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Elusive\n * Module: `org.kordamp.ikonli.elusive`\n * Font version: {elusiveVersion}\n * link:https://github.com/fontello/elusive.font[]\n * link:cheat-sheet-elusive.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-elusive-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-elusive-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Entypo\n * Module: `org.kordamp.ikonli.entypo`\n * Font version: {entypoVersion}\n * link:http://www.entypo.com[]\n * link:cheat-sheet-entypo.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-entypo-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-entypo-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== EvaIcons\n* Module: `org.kordamp.ikonli.evaicons`\n* Font version: {evaiconsVersion}\n* link:https://akveo.github.io/eva-icons/#/[]\n* link:cheat-sheet-evaicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-evaicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-evaicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Feather\n * Module: `org.kordamp.ikonli.feather`\n * Font version: {featherVersion}\n * link:https://feathericons.com/[]\n * link:cheat-sheet-feather.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-feather-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-feather-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== FileIcons\n* Module: `org.kordamp.ikonli.fileicons`\n* Font version: {fileiconsVersion}\n* link:https://github.com/file-icons/icons[]\n* link:cheat-sheet-fileicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-fileicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-fileicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== FluentUI\n * Module: `org.kordamp.ikonli.fluentui`\n * Font version: {fluentuiVersion}\n * link:https://github.com/microsoft/fluentui-system-icons/[]\n * link:cheat-sheet-fluentui.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-fluentui-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-fluentui-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== FontAwesome (Legacy)\n * Module: `org.kordamp.ikonli.fontawesome`\n * Font version: {fontawesomeVersion}\n * link:http://fortawesome.github.io/Font-Awesome/[]\n * link:cheat-sheet-fontawesome.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-fontawesome-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-fontawesome-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== FontAwesome5\n * Module: `org.kordamp.ikonli.fontawesome5`\n * Font version: {fontawesome5Version}\n * link:https://fontawesome.com[]\n * link:cheat-sheet-fontawesome5.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-fontawesome5-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-fontawesome5-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== FontAwesome6 (Latest)\n * Module: `org.kordamp.ikonli.fontawesome6`\n * Font version: {fontawesome6Version}\n * link:https://fontawesome.com[]\n * link:cheat-sheet-fontawesome6.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-fontawesome6-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-fontawesome6-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Fontelico\n * Module: `org.kordamp.ikonli.fontelico`\n * Font version: {fontelicoVersion}\n * link:https://github.com/fontello/fontelico.font[]\n * link:cheat-sheet-fontelico.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-fontelico-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-fontelico-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Foundation\n * Module: `org.kordamp.ikonli.foundation`\n * Font version: {foundationVersion}\n * link:http://zurb.com/playground/foundation-icon-fonts-3[]\n * link:cheat-sheet-foundation.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-foundation-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-foundation-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Hawcons\n * Module: `org.kordamp.ikonli.hawcons`\n * Font version: {hawconsVersion}\n * link:http://hawcons.com/[]\n * link:cheat-sheet-hawcons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-hawcons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-hawcons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Icomoon\n * Module: `org.kordamp.ikonli.icomoon`\n * Font version: {icomoonVersion}\n * link:https://icomoon.io/#icons-icomoon[]\n * link:cheat-sheet-icomoon.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-icomoon-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-icomoon-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Ionicons (Legacy)\n * Module: `org.kordamp.ikonli.ionicons`\n * Font version: {ioniconsVersion}\n * link:https://ionicons.com/v2/[]\n * link:cheat-sheet-ionicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-ionicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-ionicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Ionicons 4 (Latest)\n * Module: `org.kordamp.ikonli.ionicons4`\n * Font version: {ionicons4Version}\n * link:https://ionicons.com/[]\n * link:cheat-sheet-ionicons4.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-ionicons4-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-ionicons4-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Jam\n* Module: `org.kordamp.ikonli.jam`\n* Font version: {jamiconsVersion}\n* link:https://github.com/michaelampr/jam[]\n* link:cheat-sheet-jamicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-jamicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-jamicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Ligature Symbols\n * Module: `org.kordamp.ikonli.ligaturesymbols`\n * Font version: {ligaturesymbolsVersion}\n * link:http://kudakurage.com/ligature_symbols/[]\n * link:cheat-sheet-ligaturesymbols.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-ligaturesymbols-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-ligaturesymbols-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== LineAwesome\n* Module: `org.kordamp.ikonli.lineawesome`\n* Font version: {lineawesomeVersion}\n* link:https://icons8.com/line-awesome[]\n* link:cheat-sheet-lineawesome.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-lineawesome-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-lineawesome-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Linecons\n * Module: `org.kordamp.ikonli.linecons`\n * Font version: {lineconsVersion}\n * link:https://designmodo.com/linecons-free/linecons[]\n * link:cheat-sheet-linecons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-linecons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-linecons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Maki (Legacy)\n * Module: `org.kordamp.ikonli.maki`\n * Font version: {makiVersion}\n * link:https://github.com/mapbox/maki[]\n * link:cheat-sheet-maki.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-maki-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-maki-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Maki2 (Latest)\n * Module: `org.kordamp.ikonli.maki2`\n * Font version: {maki2Version}\n * link:https://github.com/mapbox/maki[]\n * link:cheat-sheet-maki2.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-maki2-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-maki2-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Mapicons\n * Module: `org.kordamp.ikonli.mapicons`\n * Font version: {mapiconsVersion}\n * link:https://github.com/scottdejonge/map-icons[]\n * link:cheat-sheet-mapicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-mapicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-mapicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Material Icons (Legacy)\n * Module: `org.kordamp.ikonli.material`\n * Font version: {materialVersion}\n * link:https://design.google.com/icons/[]\n * link:cheat-sheet-material.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-material-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-material-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Material2 Icons (Latest)\n* Module: `org.kordamp.ikonli.material2`\n* Font version: {material2Version}\n* link:https://github.com/material-icons/material-icons-font[]\n* link:cheat-sheet-material2.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-material2-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-material2-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== MaterialDesign (Legacy)\n* Module: `org.kordamp.ikonli.materialdesign`\n* Font version: {materialdesignVersion}\n* link:https://github.com/Templarian/MaterialDesign[]\n* link:cheat-sheet-materialdesign.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-materialdesign-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-materialdesign-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== MaterialDesign2 (Latest)\n * Module: `materialdesign2`\n * Font version: {materialdesign2Version}\n * link:https://github.com/Templarian/MaterialDesign[]\n * link:cheat-sheet-materialdesign2.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-materialdesign2-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-materialdesign2-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Medicons\n* Module: `org.kordamp.ikonli.medicons`\n* Font version: {mediconsVersion}\n* link:https://github.com/samcome/webfont-medical-icons[]\n* link:cheat-sheet-medicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-medicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-medicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Metrizeicons\n * Module: `org.kordamp.ikonli.metrizeicons`\n * Font version: {metrizeiconsVersion}\n * link:http://www.alessioatzeni.com/metrize-icons/[]\n * link:cheat-sheet-metrizeicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-metrizeicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-metrizeicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Microns\n* Module: `org.kordamp.ikonli.microns`\n* Font version: {micronsVersion}\n* link:https://github.com/stephenhutchings/microns[]\n* link:cheat-sheet-microns.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-microns-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-microns-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Ociicons\n* Module: `org.kordamp.ikonli.ociicons`\n* Font version: {ociiconsVersion}\n* link:https://github.com/opencontainers/artwork#oci-icons[]\n* link:cheat-sheet-ociicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-ociicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-ociicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Octicons\n * Module: `org.kordamp.ikonli.octicons`\n * Font version: {octiconsVersion}\n * link:https://github.com/github/octicons[]\n * link:cheat-sheet-octicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-octicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-octicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== OpenIconic\n * Module: `org.kordamp.ikonli.openiconic`\n * Font version: {openiconicVersion}\n * link:https://useiconic.com/open/[]\n * link:cheat-sheet-openiconic.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-openiconic-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-openiconic-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Payment Font\n * Module: `org.kordamp.ikonli.paymentfont`\n * Font version: {paymentfontVersion}\n * link:https://paymentfont.com[]\n * link:cheat-sheet-paymentfont.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-paymentfont-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-paymentfont-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== PrestaShop Icons\n* Module: `org.kordamp.ikonli.prestashopicons`\n* Font version: {prestashopiconsVersion}\n* link:https://github.com/PrestaShop/prestashop-icon-font[]\n* link:cheat-sheet-prestashopicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-prestashopicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-prestashopicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Remixicon\n* Module: `org.kordamp.ikonli.remixicon`\n* Font version: {remixiconVersion}\n* link:https://remixicon.com/[]\n* link:cheat-sheet-remixicon.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-remixicon-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-remixicon-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== RunestroIcons\n * Module: `org.kordamp.ikonli.runestroicons`\n * Font version: {runestroiconsVersion}\n * link:http://525icons.com/[]\n * link:cheat-sheet-runestroicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-runestroicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-runestroicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== SimpleIcons\n* Module: `org.kordamp.ikonli.simpleicons`\n* Font version: {simpleiconsVersion}\n* link:https://simpleicons.org/[]\n* link:cheat-sheet-simpleicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-simpleicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-simpleicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== SimpleLineIcons\n* Module: `org.kordamp.ikonli.simplelineicons`\n* Font version: {simplelineiconsVersion}\n* link:https://github.com/thesabbir/simple-line-icons[]\n* link:cheat-sheet-simplelineicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-simplelineicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-simplelineicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Subway\n* Module: `org.kordamp.ikonli.subway`\n* Font version: {subwayVersion}\n* link:https://github.com/mariuszostrowski/subway[]\n* link:cheat-sheet-subway.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-subway-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-subway-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Themify\n * Module: `org.kordamp.ikonli.themify`\n * Font version: {themifyVersion}\n * link:https://themify.me/themify-icons[]\n * link:cheat-sheet-themify.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-themify-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-themify-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Typicons\n * Module: `org.kordamp.ikonli.typicons`\n * Font version: {typiconsVersion}\n * link:https://github.com/stephenhutchings/typicons.font[]\n * link:cheat-sheet-typicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-typicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-typicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Unicons\n* Module: `org.kordamp.ikonli.unicons`\n* Font version: {uniconsVersion}\n* link:https://github.com/Iconscout/unicons[]\n* link:cheat-sheet-unicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-unicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-unicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Weathericons\n * Module: `org.kordamp.ikonli.weathericons`\n * Font version: {weathericonsVersion}\n * link:http://erikflowers.github.io/weather-icons/[]\n * link:cheat-sheet-weathericons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-weathericons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-weathericons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Websymbols\n * Module: `org.kordamp.ikonli.websymbols`\n * Font version: {websymbolsVersion}\n * link:http://www.justbenice.ru[]\n * link:cheat-sheet-websymbols.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-websymbols-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-websymbols-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Whhg\n* Module: `org.kordamp.ikonli.whhg`\n* Font version: {whhgVersion}\n* link:https://www.webhostinghub.com/glyphs/[]\n* link:cheat-sheet-whhg.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-whhg-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-whhg-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Win10\n* Module: `org.kordamp.ikonli.win10`\n* Font version: {win10Version}\n* link:https://github.com/icons8/windows-10-icons[]\n* link:cheat-sheet-win10.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-win10-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-win10-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n\n== Zondicons\n * Module: `org.kordamp.ikonli.zondicons`\n * Font version: {zondiconsVersion}\n * link:https://www.zondicons.com/[]\n * link:cheat-sheet-zondicons.html[Cheat-Sheet]\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nimplementation '{project-group}:ikonli-zondicons-pack:{project-version}'\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependency>\n    <groupId>{project-group}</groupId>\n    <artifactId>ikonli-zondicons-pack</artifactId>\n    <version>{project-version}</version>\n</dependency>\n----\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/index.adoc",
    "content": "= {project-title}\n:author: {project-author}\n:revnumber: {project-version}\n:toclevels: 2\n:docinfo1:\n\n:api_link_fonticon_javafx: link:api-xref/org/kordamp/ikonli/javafx/FontIcon.html[org.kordamp.ikonli.javafx.FontIcon, window=\"_blank\"]\n:api_link_stackedfonticon_javafx: link:api-xref/org/kordamp/ikonli/javafx/StackedFontIcon.html[org.kordamp.ikonli.javafx.StackedFontIcon, window=\"_blank\"]\n:api_link_fonticon_swing: link:api-xref/org/kordamp/ikonli/swing/FontIcon.html[org.kordamp.ikonli.swing.FontIcon, window=\"_blank\"]\n\n:project-owner: kordamp\n:project-repo:  maven\n:project-name:  ikonli\n:project-group: org.kordamp.ikonli\n\n:leveloffset: 1\ninclude::{includedir}/introduction.adoc[]\ninclude::{includedir}/usage.adoc[]\ninclude::{includedir}/icon-packs.adoc[]\ninclude::{includedir}/authoring.adoc[]\n\n= Links\n\n////\nlink:api/index.html[Javadoc, window=\"_blank\"]\n////\n\nlink:api-html/index.html[API Sources, window=\"_blank\"]\n\nlink:api-xref/index.html[API Xref, window=\"_blank\"]\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/introduction.adoc",
    "content": "\n[[_introduction]]\n= Introduction\n\nIkonli provides icon packs that can be used in Java applications. Currently Swing and JavaFX UI toolkits are supported.\n\n== Download\n\nIkonli and all of its icon packs can be downloaded from Maven Central\nimage:https://img.shields.io/maven-central/v/{project-group}/ikonli-core.svg?label=maven[link=\"https://search.maven.org/#search|ga|1|{project-group}\"].\n\nYou must select a binary that matches your target UI toolkit, such as\n\n[horizontal]\nSwing:: ikonli-swing-{project-version} (JDK 11+) _or_ ikonli-swing-{ikonliJdk8Version} (JDK 8)\nJavaFX:: ikonli-javafx-{project-version} (JDK 11+) _or_ ikonli-javafx-{ikonliJdk8Version} (JDK 8)\n\nWARNING: Not all icon packs are available in the JDK8 only version (`{ikonliJdk8Version}`).\n\nNext, select any of the icon packs you want to use. You may select more than one for the same application.\n\n== Breaking Changes\n\nIf you are upgrading to `12.0.0` or later be aware of the following changes:\n\n* The module names moved from `org.kordamp.iconli` to `org.kordamp.ikonli.*`.\n* The `icon-hawkconsfilled-pack` and `icon-hawkconsstroke-pack` icon packs were merged into a single `icon-hawkcons-pack` icon pack.\n* The method `getCode()` of `org.kordamp.ikonli.Ikon` now returns `int` instead of `char`. This change is needed to accomodate\nicon packs whose icon codes are larger than a single char, such as MaterialDesign.\n* The interface `org.kordamp.ikonli.IkonHandler` no longer has a method `String getFontResourcePath()`; it has two new\nmethods instead: `URL getFontResource()` and `InputStream getFontResourceAsStream()`.\n"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/resources/css/style.css",
    "content": "@import url(http://fonts.googleapis.com/css?family=Open+Sans:400,600);\n@import url(http://fonts.googleapis.com/css?family=Source+Code+Pro:500,700);\n\n/* Asciidoctor default stylesheet | MIT License | http://asciidoctor.org */\narticle, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {\n    display: block\n}\n\naudio, canvas, video {\n    display: inline-block\n}\n\naudio:not([controls]) {\n    display: none;\n    height: 0\n}\n\n[hidden], template {\n    display: none\n}\n\nscript {\n    display: none !important\n}\n\nhtml {\n    background: #fff;\n    color: #000;\n    font-family: sans-serif;\n    -ms-text-size-adjust: 100%;\n    -webkit-text-size-adjust: 100%\n}\n\nbody {\n    margin: 0\n}\n\na {\n    background: transparent\n}\n\na:focus {\n    outline: thin dotted\n}\n\na:active, a:hover {\n    outline: 0\n}\n\nh1 {\n    font-size: 2em;\n    margin: .67em 0\n}\n\nabbr[title] {\n    border-bottom: 1px dotted\n}\n\nb, strong {\n    font-weight: bold\n}\n\ndfn {\n    font-style: italic\n}\n\nhr {\n    -moz-box-sizing: content-box;\n    box-sizing: content-box;\n    height: 0\n}\n\nmark {\n    background: #ff0;\n    color: #000\n}\n\ncode, kbd, pre, samp {\n    font-family: 'Source Code Pro', monospace, serif;\n    font-size: 1em\n}\n\npre {\n    white-space: pre-wrap\n}\n\nq {\n    quotes: \"\\201C\" \"\\201D\" \"\\2018\" \"\\2019\"\n}\n\nsmall {\n    font-size: 80%\n}\n\nsub, sup {\n    font-size: 75%;\n    line-height: 0;\n    position: relative;\n    vertical-align: baseline\n}\n\nsup {\n    top: -.5em\n}\n\nsub {\n    bottom: -.25em\n}\n\nimg {\n    border: 0\n}\n\nsvg:not(:root) {\n    overflow: hidden\n}\n\nfigure {\n    margin: 0\n}\n\nfieldset {\n    border: 1px solid silver;\n    margin: 0 2px;\n    padding: .35em .625em .75em\n}\n\nlegend {\n    border: 0;\n    padding: 0\n}\n\nbutton, input, select, textarea {\n    font-family: inherit;\n    font-size: 100%;\n    margin: 0\n}\n\nbutton, input {\n    line-height: normal\n}\n\nbutton, select {\n    text-transform: none\n}\n\nbutton, html input[type=\"button\"], input[type=\"reset\"], input[type=\"submit\"] {\n    -webkit-appearance: button;\n    cursor: pointer\n}\n\nbutton[disabled], html input[disabled] {\n    cursor: default\n}\n\ninput[type=\"checkbox\"], input[type=\"radio\"] {\n    box-sizing: border-box;\n    padding: 0\n}\n\ninput[type=\"search\"] {\n    -webkit-appearance: textfield;\n    -moz-box-sizing: content-box;\n    -webkit-box-sizing: content-box;\n    box-sizing: content-box\n}\n\ninput[type=\"search\"]::-webkit-search-cancel-button, input[type=\"search\"]::-webkit-search-decoration {\n    -webkit-appearance: none\n}\n\nbutton::-moz-focus-inner, input::-moz-focus-inner {\n    border: 0;\n    padding: 0\n}\n\ntextarea {\n    overflow: auto;\n    vertical-align: top\n}\n\ntable {\n    border-collapse: collapse;\n    border-spacing: 0\n}\n\n*, *:before, *:after {\n    -moz-box-sizing: border-box;\n    -webkit-box-sizing: border-box;\n    box-sizing: border-box\n}\n\nhtml, body {\n    font-size: 100%\n}\n\nbody {\n    background: #fff;\n    color: rgba(0, 0, 0, .8);\n    padding: 0;\n    margin: 0;\n    font-family: \"Noto Serif\", \"DejaVu Serif\", serif;\n    font-weight: 400;\n    font-style: normal;\n    line-height: 1;\n    position: relative;\n    cursor: auto\n}\n\na:hover {\n    cursor: pointer\n}\n\na:focus {\n    outline: none;\n}\n\nimg, object, embed {\n    max-width: 100%;\n    height: auto\n}\n\nobject, embed {\n    height: 100%\n}\n\nimg {\n    -ms-interpolation-mode: bicubic\n}\n\n#map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object {\n    max-width: none !important\n}\n\n.left {\n    float: left !important\n}\n\n.right {\n    float: right !important\n}\n\n.text-left {\n    text-align: left !important\n}\n\n.text-right {\n    text-align: right !important\n}\n\n.text-center {\n    text-align: center !important\n}\n\n.text-justify {\n    text-align: justify !important\n}\n\n.hide {\n    display: none\n}\n\n.antialiased, body {\n    -webkit-font-smoothing: antialiased\n}\n\nimg {\n    display: inline-block;\n    vertical-align: middle\n}\n\ntextarea {\n    height: auto;\n    min-height: 50px\n}\n\nselect {\n    width: 100%\n}\n\np.lead, .paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p {\n    font-size: 1.21875em;\n    line-height: 1.6\n}\n\n.subheader, .admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title {\n    line-height: 1.45;\n    color: #7a2518;\n    font-weight: 400;\n    margin-top: 0;\n    margin-bottom: .25em\n}\n\ndiv, dl, dt, dd, ul, ol, li, h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6, pre, form, p, blockquote, th, td {\n    margin: 0;\n    padding: 0;\n    direction: ltr\n}\n\na {\n    color: #005498;\n    text-decoration: underline;\n    line-height: inherit\n}\n\na:hover, a:focus {\n    color: #00467f;\n}\n\na img {\n    border: none\n}\n\np {\n    font-family: inherit;\n    font-weight: 400;\n    font-size: 1em;\n    line-height: 1.6;\n    margin-bottom: 1.25em;\n    text-rendering: optimizeLegibility\n}\n\np aside {\n    font-size: .875em;\n    line-height: 1.35;\n    font-style: italic\n}\n\nh1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 {\n    font-family: \"Open Sans\", \"DejaVu Sans\", sans-serif;\n    font-weight: 300;\n    font-style: normal;\n    color: #222;\n    text-rendering: optimizeLegibility;\n    margin-top: 1em;\n    margin-bottom: .5em;\n    line-height: 1.0125em\n}\n\nh1 small, h2 small, h3 small, #toctitle small, .sidebarblock > .content > .title small, h4 small, h5 small, h6 small {\n    font-size: 60%;\n    color: #e99b8f;\n    line-height: 0\n}\n\nh1 {\n    font-size: 2.125em;\n    font-weight: bold\n}\n\nh2 {\n    font-size: 1.6875em;\n    font-weight: bold\n}\n\nh3, #toctitle, .sidebarblock > .content > .title {\n    font-size: 1.375em;\n    font-weight: bold\n}\n\nh4 {\n    font-size: 1.125em;\n    font-weight: bold\n}\n\nh5 {\n    font-size: 1.125em;\n    font-weight: bold\n}\n\nh6 {\n    font-size: 1em\n}\n\nhr {\n    border: solid #ddddd8;\n    border-width: 1px 0 0;\n    clear: both;\n    margin: 1.25em 0 1.1875em;\n    height: 0\n}\n\nem, i {\n    font-style: italic;\n    line-height: inherit\n}\n\nstrong, b {\n    font-weight: bold;\n    line-height: inherit\n}\n\nsmall {\n    font-size: 60%;\n    line-height: inherit\n}\n\ncode {\n    font-family: \"Source Code Pro\", \"Droid Sans Mono\", \"DejaVu Sans Mono\", \"Monospace\", monospace;\n    font-weight: 400;\n    color: #6d180b;\n    font-size: 85%;\n}\n\nul, ol, dl {\n    font-size: 1em;\n    line-height: 1.6;\n    margin-bottom: 1.25em;\n    list-style-position: outside;\n    font-family: inherit\n}\n\nul, ol, ul.no-bullet, ol.no-bullet {\n    margin-left: 1.5em\n}\n\nul.no-bullet, ol.no-bullet {\n    margin-left: 1.5em;\n}\n\nul li ul, ul li ol {\n    margin-left: 1.25em;\n    margin-bottom: 0;\n    font-size: 1em\n}\n\nul.square li ul, ul.circle li ul, ul.disc li ul {\n    list-style: inherit\n}\n\nul.square {\n    list-style-type: square\n}\n\nul.circle {\n    list-style-type: circle\n}\n\nul.disc {\n    list-style-type: disc\n}\n\nul.no-bullet {\n    list-style: none\n}\n\nol li ul, ol li ol {\n    margin-left: 1.25em;\n    margin-bottom: 0\n}\n\ndl dt {\n    margin-bottom: .3125em;\n    font-weight: bold\n}\n\ndl dd {\n    margin-bottom: 1.25em\n}\n\nabbr, acronym {\n    text-transform: uppercase;\n    font-size: 90%;\n    color: #333333;\n    border-bottom: 1px dotted #dddddd;\n    cursor: help\n}\n\nabbr {\n    text-transform: none\n}\n\nblockquote {\n    margin: 0 0 1.25em;\n    padding: .5625em 1.25em 0 1.1875em;\n    border-left: 3px solid #487c58\n}\n\nblockquote cite {\n    display: block;\n    font-size: .9375em;\n    color: #454545\n}\n\nblockquote cite:before {\n    content: \"\\2014 \\0020\"\n}\n\nblockquote cite a, blockquote cite a:visited {\n    color: #454545\n}\n\nblockquote, blockquote p {\n    line-height: 1.6;\n    color: #6e6e6e\n}\n\n@media only screen and (min-width: 768px) {\n    h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 {\n        line-height: 1.2\n    }\n\n    h1 {\n        font-size: 2.75em;\n        font-weight: bold\n    }\n\n    h2 {\n        font-size: 2.3125em;\n        font-weight: bold\n    }\n\n    h3, #toctitle, .sidebarblock > .content > .title {\n        font-size: 1.6875em;\n        font-weight: bold\n    }\n\n    h4 {\n        font-size: 1.4375em;\n        font-weight: bold\n    }\n\n    h5 {\n        font-size: 1.3em;\n        font-weight: bold\n    }\n}\n\ntable {\n    background: #fff;\n    margin-bottom: 1.25em;\n    border: solid 1px #dddddd;\n}\n\ntable thead, table tfoot {\n    background: #f7f8f7;\n    font-weight: bold\n}\n\ntable thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td {\n    padding: .5em .625em .625em;\n    font-size: inherit;\n    color: #333333;\n    text-align: left\n}\n\ntable tr th, table tr td {\n    padding: .5625em .625em;\n    font-size: inherit;\n    color: #333333\n}\n\ntable tr.even, table tr.alt, table tr:nth-of-type(even) {\n    background: #f9f9f9\n}\n\ntable thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td {\n    display: table-cell;\n    line-height: 1.6\n}\n\nh1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 {\n    line-height: 1.2;\n    word-spacing: -.05em\n}\n\nh1 strong, h2 strong, h3 strong, #toctitle strong, .sidebarblock > .content > .title strong, h4 strong, h5 strong, h6 strong {\n    font-weight: 400\n}\n\n.clearfix:before, .clearfix:after, .float-group:before, .float-group:after {\n    content: \" \";\n    display: table\n}\n\n.clearfix:after, .float-group:after {\n    clear: both\n}\n\n*:not(pre) > code {\n    font-size: .9375em;\n    font-style: normal !important;\n    letter-spacing: 0;\n    padding: .1em .5ex;\n    word-spacing: -.15em;\n    background-color: inherit;\n    border: 0 solid #dddddd;\n    -webkit-border-radius: 4px;\n    border-radius: 4px;\n    text-shadow: none;\n    line-height: 1.45;\n    text-rendering: optimizeSpeed\n}\n\npre, pre > code {\n    line-height: 1.45;\n    color: #191919;\n    font-family: \"Source Code Pro\", \"Droid Sans Mono\", \"DejaVu Sans Mono\", \"Monospace\", monospace;\n    font-weight: 400;\n    text-rendering: optimizeSpeed\n}\n\n.keyseq {\n    color: #666666\n}\n\nkbd {\n    display: inline-block;\n    color: #333333;\n    font-size: .75em;\n    line-height: 1.4;\n    background-color: #f7f7f7;\n    border: 1px solid #ccc;\n    -webkit-border-radius: 3px;\n    border-radius: 3px;\n    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, .2), 0 0 0 .1em white inset;\n    box-shadow: 0 1px 0 rgba(0, 0, 0, .2), 0 0 0 .1em #fff inset;\n    margin: -.15em .15em 0 .15em;\n    padding: .2em .6em .2em .5em;\n    vertical-align: middle;\n    white-space: nowrap\n}\n\n.keyseq kbd:first-child {\n    margin-left: 0\n}\n\n.keyseq kbd:last-child {\n    margin-right: 0\n}\n\n.menuseq, .menu {\n    color: #1a1a1a\n}\n\nb.button:before, b.button:after {\n    position: relative;\n    top: -1px;\n    font-weight: 400\n}\n\nb.button:before {\n    content: \"[\";\n    padding: 0 3px 0 2px\n}\n\nb.button:after {\n    content: \"]\";\n    padding: 0 2px 0 3px\n}\n\np a > code:hover {\n    color: #561309\n}\n\n#header, #content, #footnotes, #footer {\n    width: 100%;\n    margin-left: auto;\n    margin-right: auto;\n    margin-top: 0;\n    margin-bottom: 0;\n    max-width: 62.5em;\n    *zoom: 1;\n    position: relative;\n    padding-left: .9375em;\n    padding-right: .9375em\n}\n\n#header:before, #header:after, #content:before, #content:after, #footnotes:before, #footnotes:after, #footer:before, #footer:after {\n    content: \" \";\n    display: table\n}\n\n#header:after, #content:after, #footnotes:after, #footer:after {\n    clear: both\n}\n\n#content {\n    margin-top: 1.25em\n}\n\n#content:before {\n    content: none\n}\n\n#header > h1:first-child {\n    color: rgba(0, 0, 0, .85);\n    margin-top: 2.25rem;\n    margin-bottom: 0\n}\n\n#header > h1:first-child + #toc {\n    margin-top: 8px;\n    border-top: 1px solid #ddddd8\n}\n\n#header > h1:only-child, body.toc2 #header > h1:nth-last-child(2) {\n    border-bottom: 1px solid #ddddd8;\n    padding-bottom: 8px\n}\n\n#header .details {\n    border-bottom: 1px solid #ddddd8;\n    line-height: 1.45;\n    padding-top: .25em;\n    padding-bottom: .25em;\n    padding-left: .25em;\n    color: rgba(0, 0, 0, .6);\n    display: -ms-flexbox;\n    display: -webkit-flex;\n    display: flex;\n    -ms-flex-flow: row wrap;\n    -webkit-flex-flow: row wrap;\n    flex-flow: row wrap\n}\n\n#header .details span:first-child {\n    margin-left: -.125em\n}\n\n#header .details span.email a {\n    color: rgba(0, 0, 0, .85)\n}\n\n#header .details br {\n    display: none\n}\n\n#header .details br + span:before {\n    content: \"\\00a0\\2013\\00a0\"\n}\n\n#header .details br + span.author:before {\n    content: \"\\00a0\\22c5\\00a0\";\n    color: rgba(0, 0, 0, .85)\n}\n\n#header .details br + span#revremark:before {\n    content: \"\\00a0|\\00a0\"\n}\n\n#header #revnumber {\n    text-transform: capitalize\n}\n\n#header #revnumber:after {\n    content: \"\\00a0\"\n}\n\n#content > h1:first-child:not([class]) {\n    color: rgba(0, 0, 0, .85);\n    border-bottom: 1px solid #ddddd8;\n    padding-bottom: 8px;\n    margin-top: 0;\n    padding-top: 1rem;\n    margin-bottom: 1.25rem\n}\n\n#toc {\n    border-bottom: 1px solid #efefed;\n    padding-bottom: .5em\n}\n\n#toc > ul {\n    margin-left: .125em\n}\n\n#toc ul.sectlevel0 > li > a {\n    font-style: italic\n}\n\n#toc ul.sectlevel0 ul.sectlevel1 {\n    margin: .5em 0\n}\n\n#toc ul {\n    font-family: \"Open Sans\", \"DejaVu Sans\", sans-serif;\n    list-style-type: none\n}\n\n#toc a {\n    text-decoration: none\n}\n\n#toc a:active {\n    text-decoration: underline\n}\n\n#toctitle {\n    color: #7a2518;\n    font-size: 1.2em\n}\n\n@media only screen and (min-width: 768px) {\n    #toctitle {\n        font-size: 1.375em\n    }\n\n    body.toc2 {\n        padding-left: 15em;\n        padding-right: 0\n    }\n\n    #toc.toc2 {\n        margin-top: 0 !important;\n        background-color: #f8f8f7;\n        position: fixed;\n        width: 15em;\n        left: 0;\n        top: 0;\n        border-right: 1px solid #e5e5e5;\n        border-top-width: 0 !important;\n        border-bottom-width: 0 !important;\n        z-index: 1000;\n        padding: 1.25em 1em;\n        height: 100%;\n        overflow: auto\n    }\n\n    #toc.toc2 #toctitle {\n        margin-top: 0;\n        font-size: 1.2em\n    }\n\n    #toc.toc2 > ul {\n        font-size: .9em;\n        margin-bottom: 0\n    }\n\n    #toc.toc2 ul ul {\n        margin-left: 0;\n        padding-left: 1em\n    }\n\n    #toc.toc2 ul.sectlevel0 ul.sectlevel1 {\n        padding-left: 0;\n        margin-top: .5em;\n        margin-bottom: .5em\n    }\n\n    body.toc2.toc-right {\n        padding-left: 0;\n        padding-right: 15em\n    }\n\n    body.toc2.toc-right #toc.toc2 {\n        border-right-width: 0;\n        border-left: 1px solid #e5e5e5;\n        left: auto;\n        right: 0\n    }\n}\n\n@media only screen and (min-width: 1280px) {\n    body.toc2 {\n        padding-left: 20em;\n        padding-right: 0\n    }\n\n    #toc.toc2 {\n        width: 20em\n    }\n\n    #toc.toc2 #toctitle {\n        font-size: 1.375em\n    }\n\n    #toc.toc2 > ul {\n        font-size: .95em\n    }\n\n    #toc.toc2 ul ul {\n        padding-left: 1.25em\n    }\n\n    body.toc2.toc-right {\n        padding-left: 0;\n        padding-right: 20em\n    }\n}\n\n#toc.toc2 {\n    background-color: #fafaf9;\n}\n\n#content #toc {\n    border-style: solid;\n    border-width: 1px;\n    border-color: #e3e3dd;\n    margin-bottom: 1.25em;\n    padding: 1.25em;\n    background: #fafaf9;\n    border-width: 0;\n    -webkit-border-radius: 4px;\n    border-radius: 4px\n}\n\n#content #toc > :first-child {\n    margin-top: 0\n}\n\n#content #toc > :last-child {\n    margin-bottom: 0\n}\n\n#content #toc a {\n    text-decoration: none;\n}\n\n#content #toctitle {\n    font-weight: bold;\n    font-family: \"Helvetica Neue\", \"Helvetica\", Helvetica, Arial, sans-serif;\n    font-size: 1.375em;\n    padding-left: 0.125em;\n}\n\n#footer {\n    max-width: 100%;\n    background-color: #333333;\n    padding: 1.25em\n}\n\n#footer-text {\n    color: #cccccc;\n    line-height: 1.44\n}\n\n.sect1 {\n    padding-bottom: .625em\n}\n\n@media only screen and (min-width: 768px) {\n    .sect1 {\n        padding-bottom: 1.25em\n    }\n}\n\n.sect1 + .sect1 {\n    border-top: 1px solid #e5e5e5\n}\n\n#content h1 > a.anchor, h2 > a.anchor, h3 > a.anchor, #toctitle > a.anchor, .sidebarblock > .content > .title > a.anchor, h4 > a.anchor, h5 > a.anchor, h6 > a.anchor {\n    position: absolute;\n    z-index: 1001;\n    width: 1.5ex;\n    margin-left: -1.5ex;\n    display: block;\n    text-decoration: none !important;\n    visibility: hidden;\n    text-align: center;\n    font-weight: 400\n}\n\n#content h1 > a.anchor:before, h2 > a.anchor:before, h3 > a.anchor:before, #toctitle > a.anchor:before, .sidebarblock > .content > .title > a.anchor:before, h4 > a.anchor:before, h5 > a.anchor:before, h6 > a.anchor:before {\n    content: \"\\00A7\";\n    font-size: .85em;\n    display: block;\n    padding-top: .1em\n}\n\n#content h1:hover > a.anchor, #content h1 > a.anchor:hover, h2:hover > a.anchor, h2 > a.anchor:hover, h3:hover > a.anchor, #toctitle:hover > a.anchor, .sidebarblock > .content > .title:hover > a.anchor, h3 > a.anchor:hover, #toctitle > a.anchor:hover, .sidebarblock > .content > .title > a.anchor:hover, h4:hover > a.anchor, h4 > a.anchor:hover, h5:hover > a.anchor, h5 > a.anchor:hover, h6:hover > a.anchor, h6 > a.anchor:hover {\n    visibility: visible\n}\n\n#content h1 > a.link, h2 > a.link, h3 > a.link, #toctitle > a.link, .sidebarblock > .content > .title > a.link, h4 > a.link, h5 > a.link, h6 > a.link {\n    color: #ba3925;\n    text-decoration: none\n}\n\n#content h1 > a.link:hover, h2 > a.link:hover, h3 > a.link:hover, #toctitle > a.link:hover, .sidebarblock > .content > .title > a.link:hover, h4 > a.link:hover, h5 > a.link:hover, h6 > a.link:hover {\n    color: #a53221\n}\n\n.audioblock, .imageblock, .literalblock, .listingblock, .stemblock, .videoblock {\n    margin-bottom: 1.25em\n}\n\n.admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title {\n    text-rendering: optimizeLegibility;\n    text-align: left;\n    font-family: \"Noto Serif\", \"DejaVu Serif\", serif;\n    font-size: 1rem;\n    font-style: italic\n}\n\ntable.tableblock > caption.title {\n    white-space: nowrap;\n    overflow: visible;\n    max-width: 0\n}\n\n.paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p {\n    color: rgba(0, 0, 0, .85)\n}\n\ntable.tableblock #preamble > .sectionbody > .paragraph:first-of-type p {\n    font-size: inherit\n}\n\n.admonitionblock > table {\n    border-collapse: separate;\n    border: 0;\n    background: none;\n    width: 100%\n}\n\n.admonitionblock > table td.icon {\n    text-align: center;\n    width: 80px\n}\n\n.admonitionblock > table td.icon img {\n    max-width: none\n}\n\n.admonitionblock > table td.icon .title {\n    font-weight: bold;\n    font-family: \"Open Sans\", \"DejaVu Sans\", sans-serif;\n    text-transform: uppercase\n}\n\n.admonitionblock > table td.content {\n    padding-left: 1.125em;\n    padding-right: 1.25em;\n    border-left: 1px solid #d8d8d8;\n    color: #6e6e6e\n}\n\n.admonitionblock > table td.content > :last-child > :last-child {\n    margin-bottom: 0\n}\n\n.exampleblock > .content {\n    border-style: solid;\n    border-width: 1px;\n    border-color: #e6e6e6;\n    margin-bottom: 1.25em;\n    padding: 1.25em;\n    background: #fff;\n    -webkit-border-radius: 4px;\n    border-radius: 4px\n}\n\n.exampleblock > .content > :first-child {\n    margin-top: 0\n}\n\n.exampleblock > .content > :last-child {\n    margin-bottom: 0\n}\n\n.exampleblock > .content h1, .exampleblock > .content h2, .exampleblock > .content h3, .exampleblock > .content #toctitle, .sidebarblock.exampleblock > .content > .title, .exampleblock > .content h4, .exampleblock > .content h5, .exampleblock > .content h6, .exampleblock > .content p {\n    color: #333333;\n}\n\n.exampleblock > .content h1, .exampleblock > .content h2, .exampleblock > .content h3, .exampleblock > .content #toctitle, .sidebarblock.exampleblock > .content > .title, .exampleblock > .content h4, .exampleblock > .content h5, .exampleblock > .content h6 {\n    line-height: 1;\n    margin-bottom: 0.625em;\n}\n\n.exampleblock > .content h1.subheader, .exampleblock > .content h2.subheader, .exampleblock > .content h3.subheader, .exampleblock > .content .subheader#toctitle, .sidebarblock.exampleblock > .content > .subheader.title, .exampleblock > .content h4.subheader, .exampleblock > .content h5.subheader, .exampleblock > .content h6.subheader {\n    line-height: 1.4;\n}\n\n.exampleblock.result > .content {\n    -webkit-box-shadow: 0 1px 8px #e3e3dd;\n    box-shadow: 0 1px 8px #e3e3dd;\n}\n\n.sidebarblock {\n    border-style: solid;\n    border-width: 1px;\n    border-color: #e3e3dd;\n    margin-bottom: 1.25em;\n    padding: 1.25em;\n    background: #fafaf9;\n    -webkit-border-radius: 4px;\n    border-radius: 4px\n}\n\n.sidebarblock > :first-child {\n    margin-top: 0\n}\n\n.sidebarblock > :last-child {\n    margin-bottom: 0\n}\n\n.sidebarblock h1, .sidebarblock h2, .sidebarblock h3, .sidebarblock #toctitle, .sidebarblock > .content > .title, .sidebarblock h4, .sidebarblock h5, .sidebarblock h6, .sidebarblock p {\n    color: #333333;\n}\n\n.sidebarblock h1, .sidebarblock h2, .sidebarblock h3, .sidebarblock #toctitle, .sidebarblock > .content > .title, .sidebarblock h4, .sidebarblock h5, .sidebarblock h6 {\n    line-height: 1;\n    margin-bottom: 0.625em;\n}\n\n.sidebarblock h1.subheader, .sidebarblock h2.subheader, .sidebarblock h3.subheader, .sidebarblock .subheader#toctitle, .sidebarblock > .content > .subheader.title, .sidebarblock h4.subheader, .sidebarblock h5.subheader, .sidebarblock h6.subheader {\n    line-height: 1.4;\n}\n\n.sidebarblock > .content > .title {\n    color: #7a2518;\n    margin-top: 0;\n    text-align: center\n}\n\n.exampleblock > .content > :last-child > :last-child, .exampleblock > .content .olist > ol > li:last-child > :last-child, .exampleblock > .content .ulist > ul > li:last-child > :last-child, .exampleblock > .content .qlist > ol > li:last-child > :last-child, .sidebarblock > .content > :last-child > :last-child, .sidebarblock > .content .olist > ol > li:last-child > :last-child, .sidebarblock > .content .ulist > ul > li:last-child > :last-child, .sidebarblock > .content .qlist > ol > li:last-child > :last-child {\n    margin-bottom: 0\n}\n\n/*\n.literalblock pre, .listingblock pre:not(.highlight), .listingblock pre[class=\"highlight\"], .listingblock pre[class^=\"highlight \"], .listingblock pre.CodeRay, .listingblock pre.prettyprint {\n    background: #f7f7f8\n}\n*/\n\n.sidebarblock .literalblock pre, .sidebarblock .listingblock pre:not(.highlight), .sidebarblock .listingblock pre[class=\"highlight\"], .sidebarblock .listingblock pre[class^=\"highlight \"], .sidebarblock .listingblock pre.CodeRay, .sidebarblock .listingblock pre.prettyprint {\n    background: #f2f1f1\n}\n\n.literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] {\n    border-width: 1px 0;\n    border-style: dotted;\n    border-color: #bfbfbf;\n    -webkit-border-radius: 4px;\n    border-radius: 4px;\n    word-wrap: break-word;\n    padding: 1em;\n    font-size: .8125em\n}\n\n.literalblock pre.nowrap, .literalblock pre[class].nowrap, .listingblock pre.nowrap, .listingblock pre[class].nowrap {\n    overflow-x: auto;\n    white-space: pre;\n    word-wrap: normal\n}\n\n.literalblock pre > code, .literalblock pre[class] > code, .listingblock pre > code, .listingblock pre[class] > code {\n    display: block;\n}\n\n@media only screen and (min-width: 768px) {\n    .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] {\n        font-size: .90625em\n    }\n}\n\n@media only screen and (min-width: 1280px) {\n    .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] {\n        font-size: 1em\n    }\n}\n\n@media only screen and (min-width: 1280px) {\n    .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] {\n        font-size: 1em;\n    }\n}\n\n.literalblock.output pre {\n    color: #f7f7f8;\n    background-color: rgba(0, 0, 0, .9)\n}\n\n.listingblock pre.highlightjs {\n    padding: 0\n}\n\n.listingblock pre.highlightjs > code {\n    padding: 1em;\n    -webkit-border-radius: 4px;\n    border-radius: 4px\n}\n\n.listingblock pre.prettyprint {\n    border-width: 0\n}\n\n.listingblock > .content {\n    position: relative\n}\n\n.listingblock code[data-lang]:before {\n    display: none;\n    content: attr(data-lang);\n    position: absolute;\n    font-size: .75em;\n    top: .425rem;\n    right: .5rem;\n    line-height: 1;\n    text-transform: uppercase;\n    color: #999\n}\n\n.listingblock:hover code[data-lang]:before {\n    display: block\n}\n\n.listingblock.terminal pre .command:before {\n    content: attr(data-prompt);\n    padding-right: .5em;\n    color: #999\n}\n\n.listingblock.terminal pre .command:not([data-prompt]):before {\n    content: \"$\"\n}\n\ntable.pyhltable {\n    border-collapse: separate;\n    border: 0;\n    margin-bottom: 0;\n    background: none\n}\n\ntable.pyhltable td {\n    vertical-align: top;\n    padding-top: 0;\n    padding-bottom: 0\n}\n\ntable.pyhltable td.code {\n    padding-left: .75em;\n    padding-right: 0\n}\n\npre.pygments .lineno, table.pyhltable td:not(.code) {\n    color: #999;\n    padding-left: 0;\n    padding-right: .5em;\n    border-right: 1px solid #ddddd8\n}\n\npre.pygments .lineno {\n    display: inline-block;\n    margin-right: .25em\n}\n\ntable.pyhltable .linenodiv {\n    background: none !important;\n    padding-right: 0 !important\n}\n\n.quoteblock {\n    margin: 0 1em 1.25em 1.5em;\n    display: table\n}\n\n.quoteblock > .title {\n    margin-left: -1.5em;\n    margin-bottom: .75em\n}\n\n.quoteblock blockquote, .quoteblock blockquote p {\n    color: rgba(0, 0, 0, .85);\n    font-size: 1.15rem;\n    line-height: 1.75;\n    word-spacing: .1em;\n    letter-spacing: 0;\n    font-style: italic;\n    text-align: justify\n}\n\n.quoteblock blockquote {\n    margin: 0;\n    padding: 0;\n    border: 0\n}\n\n.quoteblock blockquote:before {\n    content: \"\\201c\";\n    float: left;\n    font-size: 2.75em;\n    font-weight: bold;\n    line-height: .6em;\n    margin-left: -.6em;\n    color: #7a2518;\n    text-shadow: 0 1px 2px rgba(0, 0, 0, .1)\n}\n\n.quoteblock blockquote > .paragraph:last-child p {\n    margin-bottom: 0\n}\n\n.quoteblock .attribution {\n    margin-top: .5em;\n    margin-right: .5ex;\n    text-align: right\n}\n\n.quoteblock .quoteblock {\n    margin-left: 0;\n    margin-right: 0;\n    padding: .5em 0;\n    border-left: 3px solid rgba(0, 0, 0, .6)\n}\n\n.quoteblock .quoteblock blockquote {\n    padding: 0 0 0 .75em\n}\n\n.quoteblock .quoteblock blockquote:before {\n    display: none\n}\n\n.verseblock {\n    margin: 0 1em 1.25em 1em\n}\n\n.verseblock pre {\n    font-family: \"Open Sans\", \"DejaVu Sans\", sans;\n    font-size: 1.15rem;\n    color: rgba(0, 0, 0, .85);\n    font-weight: 300;\n    text-rendering: optimizeLegibility\n}\n\n.verseblock pre strong {\n    font-weight: 400\n}\n\n.verseblock .attribution {\n    margin-top: 1.25rem;\n    margin-left: .5ex\n}\n\n.quoteblock .attribution, .verseblock .attribution {\n    font-size: .9375em;\n    line-height: 1.45;\n    font-style: italic\n}\n\n.quoteblock .attribution br, .verseblock .attribution br {\n    display: none\n}\n\n.quoteblock .attribution cite, .verseblock .attribution cite {\n    display: block;\n    letter-spacing: -.05em;\n    color: rgba(0, 0, 0, .6)\n}\n\n.quoteblock.abstract {\n    margin: 0 0 1.25em 0;\n    display: block\n}\n\n.quoteblock.abstract blockquote, .quoteblock.abstract blockquote p {\n    text-align: left;\n    word-spacing: 0\n}\n\n.quoteblock.abstract blockquote:before, .quoteblock.abstract blockquote p:first-of-type:before {\n    display: none\n}\n\ntable.tableblock {\n    max-width: 100%;\n    border-collapse: separate\n}\n\ntable.tableblock td > .paragraph:last-child p > p:last-child, table.tableblock th > p:last-child, table.tableblock td > p:last-child {\n    margin-bottom: 0\n}\n\ntable.spread {\n    width: 100%\n}\n\ntable.tableblock, th.tableblock, td.tableblock {\n    border: 0 solid #dedede\n}\n\ntable.grid-all th.tableblock, table.grid-all td.tableblock {\n    border-width: 0 1px 1px 0\n}\n\ntable.grid-all tfoot > tr > th.tableblock, table.grid-all tfoot > tr > td.tableblock {\n    border-width: 1px 1px 0 0\n}\n\ntable.grid-cols th.tableblock, table.grid-cols td.tableblock {\n    border-width: 0 1px 0 0\n}\n\ntable.grid-all * > tr > .tableblock:last-child, table.grid-cols * > tr > .tableblock:last-child {\n    border-right-width: 0\n}\n\ntable.grid-rows th.tableblock, table.grid-rows td.tableblock {\n    border-width: 0 0 1px 0\n}\n\ntable.grid-all tbody > tr:last-child > th.tableblock, table.grid-all tbody > tr:last-child > td.tableblock, table.grid-all thead:last-child > tr > th.tableblock, table.grid-rows tbody > tr:last-child > th.tableblock, table.grid-rows tbody > tr:last-child > td.tableblock, table.grid-rows thead:last-child > tr > th.tableblock {\n    border-bottom-width: 0\n}\n\ntable.grid-rows tfoot > tr > th.tableblock, table.grid-rows tfoot > tr > td.tableblock {\n    border-width: 1px 0 0 0\n}\n\ntable.frame-all {\n    border-width: 1px\n}\n\ntable.frame-sides {\n    border-width: 0 1px\n}\n\ntable.frame-topbot {\n    border-width: 1px 0\n}\n\nth.halign-left, td.halign-left {\n    text-align: left\n}\n\nth.halign-right, td.halign-right {\n    text-align: right\n}\n\nth.halign-center, td.halign-center {\n    text-align: center\n}\n\nth.valign-top, td.valign-top {\n    vertical-align: top\n}\n\nth.valign-bottom, td.valign-bottom {\n    vertical-align: bottom\n}\n\nth.valign-middle, td.valign-middle {\n    vertical-align: middle\n}\n\ntable thead th, table tfoot th {\n    font-weight: bold\n}\n\ntbody tr th {\n    display: table-cell;\n    line-height: 1.6;\n    background: #f7f8f7\n}\n\ntbody tr th, tbody tr th p, tfoot tr th, tfoot tr th p {\n    color: rgba(0, 0, 0, .8);\n    font-weight: bold\n}\n\np.tableblock > code:only-child {\n    background: none;\n    padding: 0\n}\n\np.tableblock {\n    font-size: 1em\n}\n\ntd > div.verse {\n    white-space: pre\n}\n\nol {\n    margin-left: 1.75em\n}\n\nul li ol {\n    margin-left: 1.5em\n}\n\ndl dd {\n    margin-left: 1.125em\n}\n\ndl dd:last-child, dl dd:last-child > :last-child {\n    margin-bottom: 0\n}\n\nol > li p, ul > li p, ul dd, ol dd, .olist .olist, .ulist .ulist, .ulist .olist, .olist .ulist {\n    margin-bottom: .625em\n}\n\nul.unstyled, ol.unnumbered, ul.checklist, ul.none {\n    list-style-type: none\n}\n\nul.unstyled, ol.unnumbered, ul.checklist {\n    margin-left: .625em\n}\n\nul.checklist li > p:first-child > .fa-check-square-o:first-child, ul.checklist li > p:first-child > input[type=\"checkbox\"]:first-child {\n    margin-right: .25em\n}\n\nul.checklist li > p:first-child > input[type=\"checkbox\"]:first-child {\n    position: relative;\n    top: 1px\n}\n\nul.inline {\n    margin: 0 auto .625em auto;\n    margin-left: -1.375em;\n    margin-right: 0;\n    padding: 0;\n    list-style: none;\n    overflow: hidden\n}\n\nul.inline > li {\n    list-style: none;\n    float: left;\n    margin-left: 1.375em;\n    display: block\n}\n\nul.inline > li > * {\n    display: block\n}\n\n.unstyled dl dt {\n    font-weight: 400;\n    font-style: normal\n}\n\nol.arabic {\n    list-style-type: decimal\n}\n\nol.decimal {\n    list-style-type: decimal-leading-zero\n}\n\nol.loweralpha {\n    list-style-type: lower-alpha\n}\n\nol.upperalpha {\n    list-style-type: upper-alpha\n}\n\nol.lowerroman {\n    list-style-type: lower-roman\n}\n\nol.upperroman {\n    list-style-type: upper-roman\n}\n\nol.lowergreek {\n    list-style-type: lower-greek\n}\n\n.hdlist > table, .colist > table {\n    border: 0;\n    background: none\n}\n\n.hdlist > table > tbody > tr, .colist > table > tbody > tr {\n    background: none\n}\n\ntd.hdlist1 {\n    padding-right: .75em;\n    font-weight: bold\n}\n\ntd.hdlist1, td.hdlist2 {\n    vertical-align: top\n}\n\n.literalblock + .colist, .listingblock + .colist {\n    margin-top: -.5em\n}\n\n.colist > table tr > td:first-of-type {\n    padding: 0 .75em;\n    line-height: 1\n}\n\n.colist > table tr > td:last-of-type {\n    padding: .25em 0\n}\n\n.qanda > ol > li > p > em:only-child {\n    color: #1d4b8f;\n}\n\n.thumb, .th {\n    line-height: 0;\n    display: inline-block;\n    border: solid 4px #fff;\n    -webkit-box-shadow: 0 0 0 1px #ddd;\n    box-shadow: 0 0 0 1px #ddd\n}\n\n.imageblock.left, .imageblock[style*=\"float: left\"] {\n    margin: .25em .625em 1.25em 0\n}\n\n.imageblock.right, .imageblock[style*=\"float: right\"] {\n    margin: .25em 0 1.25em .625em\n}\n\n.imageblock > .title {\n    margin-bottom: 0\n}\n\n.imageblock.thumb, .imageblock.th {\n    border-width: 6px\n}\n\n.imageblock.thumb > .title, .imageblock.th > .title {\n    padding: 0 .125em\n}\n\n.image.left, .image.right {\n    margin-top: .25em;\n    margin-bottom: .25em;\n    display: inline-block;\n    line-height: 0\n}\n\n.image.left {\n    margin-right: .625em\n}\n\n.image.right {\n    margin-left: .625em\n}\n\na.image {\n    text-decoration: none\n}\n\nspan.footnote, span.footnoteref {\n    vertical-align: super;\n    font-size: .875em\n}\n\nspan.footnote a, span.footnoteref a {\n    text-decoration: none\n}\n\nspan.footnote a:active, span.footnoteref a:active {\n    text-decoration: underline\n}\n\n#footnotes {\n    padding-top: .75em;\n    padding-bottom: .75em;\n    margin-bottom: .625em\n}\n\n#footnotes hr {\n    width: 20%;\n    min-width: 6.25em;\n    margin: -.25em 0 .75em 0;\n    border-width: 1px 0 0 0\n}\n\n#footnotes .footnote {\n    padding: 0 .375em;\n    line-height: 1.3;\n    font-size: .875em;\n    margin-left: 1.2em;\n    text-indent: -1.2em;\n    margin-bottom: .2em\n}\n\n#footnotes .footnote a:first-of-type {\n    font-weight: bold;\n    text-decoration: none\n}\n\n#footnotes .footnote:last-of-type {\n    margin-bottom: 0\n}\n\n#content #footnotes {\n    margin-top: -.625em;\n    margin-bottom: 0;\n    padding: .75em 0\n}\n\n.gist .file-data > table {\n    border: 0;\n    background: #fff;\n    width: 100%;\n    margin-bottom: 0\n}\n\n.gist .file-data > table td.line-data {\n    width: 99%\n}\n\ndiv.unbreakable {\n    page-break-inside: avoid\n}\n\n.big {\n    font-size: larger\n}\n\n.small {\n    font-size: smaller\n}\n\n.underline {\n    text-decoration: underline\n}\n\n.overline {\n    text-decoration: overline\n}\n\n.line-through {\n    text-decoration: line-through\n}\n\n.aqua {\n    color: #00bfbf\n}\n\n.aqua-background {\n    background-color: #00fafa\n}\n\n.black {\n    color: #000\n}\n\n.black-background {\n    background-color: #000\n}\n\n.blue {\n    color: #0000bf\n}\n\n.blue-background {\n    background-color: #0000fa\n}\n\n.fuchsia {\n    color: #bf00bf\n}\n\n.fuchsia-background {\n    background-color: #fa00fa\n}\n\n.gray {\n    color: #606060\n}\n\n.gray-background {\n    background-color: #7d7d7d\n}\n\n.green {\n    color: #006000\n}\n\n.green-background {\n    background-color: #007d00\n}\n\n.lime {\n    color: #00bf00\n}\n\n.lime-background {\n    background-color: #00fa00\n}\n\n.maroon {\n    color: #600000\n}\n\n.maroon-background {\n    background-color: #7d0000\n}\n\n.navy {\n    color: #000060\n}\n\n.navy-background {\n    background-color: #00007d\n}\n\n.olive {\n    color: #606000\n}\n\n.olive-background {\n    background-color: #7d7d00\n}\n\n.purple {\n    color: #600060\n}\n\n.purple-background {\n    background-color: #7d007d\n}\n\n.red {\n    color: #bf0000\n}\n\n.red-background {\n    background-color: #fa0000\n}\n\n.silver {\n    color: #909090\n}\n\n.silver-background {\n    background-color: #bcbcbc\n}\n\n.teal {\n    color: #006060\n}\n\n.teal-background {\n    background-color: #007d7d\n}\n\n.white {\n    color: #bfbfbf\n}\n\n.white-background {\n    background-color: #fafafa\n}\n\n.yellow {\n    color: #bfbf00\n}\n\n.yellow-background {\n    background-color: #fafa00\n}\n\nspan.icon > .fa {\n    cursor: default\n}\n\n.admonitionblock td.icon [class^=\"fa icon-\"] {\n    font-size: 2.5em;\n    text-shadow: 1px 1px 2px rgba(0, 0, 0, .5);\n    cursor: default\n}\n\n.admonitionblock td.icon .icon-note:before {\n    content: \"\\f05a\";\n    color: #4298b8\n}\n\n.admonitionblock td.icon .icon-tip:before {\n    content: \"\\f0eb\";\n    text-shadow: 1px 1px 2px rgba(155, 155, 0, .8);\n    color: #ffe400\n}\n\n.admonitionblock td.icon .icon-warning:before {\n    content: \"\\f071\";\n    color: #ff8c00\n}\n\n.admonitionblock td.icon .icon-caution:before {\n    content: \"\\f06d\";\n    color: #db4800\n}\n\n.admonitionblock td.icon .icon-important:before {\n    content: \"\\f06a\";\n    color: #db4800\n}\n\n.conum[data-value] {\n    display: inline-block;\n    color: #fff !important;\n    background-color: rgba(0, 0, 0, .8);\n    -webkit-border-radius: 100px;\n    border-radius: 100px;\n    text-align: center;\n    font-size: .75em;\n    width: 1.67em;\n    height: 1.67em;\n    line-height: 1.67em;\n    font-family: \"Open Sans\", \"DejaVu Sans\", sans-serif;\n    font-style: normal;\n    font-weight: bold\n}\n\n.conum[data-value] * {\n    color: #fff !important\n}\n\n.conum[data-value] + b {\n    display: none\n}\n\n.conum[data-value]:after {\n    content: attr(data-value)\n}\n\npre .conum[data-value] {\n    position: relative;\n    top: -.125em\n}\n\nb.conum * {\n    color: inherit !important\n}\n\n.conum:not([data-value]):empty {\n    display: none\n}\n\nh1, h2 {\n    letter-spacing: -.01em\n}\n\ndt, th.tableblock, td.content {\n    text-rendering: optimizeLegibility\n}\n\np, td.content {\n    letter-spacing: -.01em\n}\n\np strong, td.content strong {\n    letter-spacing: -.005em\n}\n\np, blockquote, dt, td.content {\n    font-size: 1.0625rem\n}\n\np {\n    margin-bottom: 1.25rem\n}\n\n.sidebarblock p, .sidebarblock dt, .sidebarblock td.content, p.tableblock {\n    font-size: 1em\n}\n\n.exampleblock > .content {\n    background-color: #fffef7;\n    border-color: #e0e0dc;\n    -webkit-box-shadow: 0 1px 4px #e0e0dc;\n    box-shadow: 0 1px 4px #e0e0dc\n}\n\n.print-only {\n    display: none !important\n}\n\n@media print {\n    @page {\n        margin: 1.25cm .75cm\n    }\n\n    * {\n        -webkit-box-shadow: none !important;\n        box-shadow: none !important;\n        text-shadow: none !important\n    }\n\n    a {\n        color: inherit !important;\n        text-decoration: underline !important\n    }\n\n    a.bare, a[href^=\"#\"], a[href^=\"mailto:\"] {\n        text-decoration: none !important\n    }\n\n    a[href^=\"http:\"]:not(.bare):after, a[href^=\"https:\"]:not(.bare):after, a[href^=\"mailto:\"]:not(.bare):after {\n        content: \"(\" attr(href) \")\";\n        display: inline-block;\n        font-size: .875em;\n        padding-left: .25em\n    }\n\n    abbr[title]:after {\n        content: \" (\" attr(title) \")\"\n    }\n\n    pre, blockquote, tr, img {\n        page-break-inside: avoid\n    }\n\n    thead {\n        display: table-header-group\n    }\n\n    img {\n        max-width: 100% !important\n    }\n\n    p, blockquote, dt, td.content {\n        font-size: 1em;\n        orphans: 3;\n        widows: 3\n    }\n\n    h2, h3, #toctitle, .sidebarblock > .content > .title {\n        page-break-after: avoid\n    }\n\n    #toc, .sidebarblock, .exampleblock > .content {\n        background: none !important\n    }\n\n    #toc {\n        border-bottom: 1px solid #ddddd8 !important;\n        padding-bottom: 0 !important\n    }\n\n    .sect1 {\n        padding-bottom: 0 !important\n    }\n\n    .sect1 + .sect1 {\n        border: 0 !important\n    }\n\n    #header > h1:first-child {\n        margin-top: 1.25rem\n    }\n\n    body.book #header {\n        text-align: center\n    }\n\n    body.book #header > h1:first-child {\n        border: 0 !important;\n        margin: 2.5em 0 1em 0\n    }\n\n    body.book #header .details {\n        border: 0 !important;\n        display: block;\n        padding: 0 !important\n    }\n\n    body.book #header .details span:first-child {\n        margin-left: 0 !important\n    }\n\n    body.book #header .details br {\n        display: block\n    }\n\n    body.book #header .details br + span:before {\n        content: none !important\n    }\n\n    body.book #toc {\n        border: 0 !important;\n        text-align: left !important;\n        padding: 0 !important;\n        margin: 0 !important\n    }\n\n    body.book #toc, body.book #preamble, body.book h1.sect0, body.book .sect1 > h2 {\n        page-break-before: always\n    }\n\n    .listingblock code[data-lang]:before {\n        display: block\n    }\n\n    #footer {\n        background: none !important;\n        padding: 0 .9375em\n    }\n\n    #footer-text {\n        color: rgba(0, 0, 0, .6) !important;\n        font-size: .9em\n    }\n\n    .hide-on-print {\n        display: none !important\n    }\n\n    .print-only {\n        display: block !important\n    }\n\n    .hide-for-print {\n        display: none !important\n    }\n\n    .show-for-print {\n        display: inherit !important\n    }\n}"
  },
  {
    "path": "docs/guide/src/docs/asciidoc/usage.adoc",
    "content": "\n[[_usage]]\n= Usage\n\n== Swing\n\nThe `ikonli-swing:{project-version}` JAR provides a new Icon class: `{api_link_fonticon_swing}`.\nYou may use this class with any Swing component that supports an Icon property.\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nrepositories {\n    mavenCentral()\n}\n\ndependencies {\n    implementation '{project-group}:ikonli-swing:{project-version}'\n}\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependencies>\n    <dependency>\n        <groupId>{project-group}</groupId>\n        <artifactId>ikonli-swing</artifactId>\n        <version>{project-version}</version>\n    </dependency>\n</dependencies>\n----\n\n== JavaFX\n\nThe `ikonli-javafx:{project-version}` JAR provides a new Node class: `{api_link_fonticon_javafx}`.\nYou may use this class with any JavaFX control that accepts a graphic property. You may also use the icon directly as\nit is a subclass of `javafx.scene.text.Text`. The icon class can be used inside an FXML file too.\n\n[source,xml]\n----\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<?import javafx.scene.control.Button?>\n<?import javafx.scene.layout.GridPane?>\n<?import org.kordamp.ikonli.javafx.FontIcon?>\n\n<GridPane prefHeight=\"60.0\" prefWidth=\"200.0\"\n          xmlns:fx=\"http://javafx.com/fxml\"\n          fx:controller=\"org.example.AppController\">\n    <Button GridPane.columnIndex=\"0\" GridPane.rowIndex=\"0\"\n            mnemonicParsing=\"false\"\n            prefWidth=\"200.0\">\n        <graphic>\n            <FontIcon iconLiteral=\"di-java\" iconSize=\"64\"/>\n        </graphic>\n    </Button>\n</GridPane>\n----\n\n.Icon Literal Syntax\n\nThe `iconLiteral` property accepts any of these formats\n\n * icon-code\n * icon-code:icon-size\n * icon-code:icon-size:icon-color\n\nwhere the following rules apply\n\nicon-code:: An icon code literal such as `di-java`. The prefix (`di-`) indicates the icon pack. For this example, DevIcons needs to be installed.\nicon-size:: A number (in pixels) specifying the width of the icon.\nicon-color:: A `javafx.scene.paint.Color`, `javafx.scene.paint.LinearGradient`,\nor `javafx.scene.paint.RadialGradient` literal.\n\n.Examples\n[source]\n----\ndi-java\ndi-java:32\ndi-java:64:BLUE\n----\n\n.Icon Size Units\n\nThe default unit for icon size is _px_. You may set a different value using the `units` property, such as _em_.\n\n.Stylable Properties\n\n`{api_link_fonticon_javafx}` exposes properties that can be styled using CSS. It defines a node class named `ikonli-font-icon`.\n\n[horizontal]\n-fx-icon-code:: An icon literal such as `di-java` or `fa-github`.\n-fx-icon-size:: The size of the icon, in pixels.\n-fx-icon-color:: A JavaFX `Paint` definition, such as a plain color or gradient.\n\nA stackable version is also available, `{api_link_stackedfonticon_javafx}`. This is an specialized version of `javafx.scene.layout.StackPane`\nthat accepts instances of `{api_link_fonticon_javafx}` as child content. You may use this class with FXML, like it's shown\nin the following example\n\n[source,xml]\n----\n<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n\n<?import javafx.scene.layout.GridPane?>\n<?import org.kordamp.ikonli.javafx.FontIcon?>\n<?import org.kordamp.ikonli.javafx.StackedFontIcon?>\n\n<GridPane prefHeight=\"60.0\" prefWidth=\"200.0\"\n          xmlns:fx=\"http://javafx.com/fxml\"\n          fx:controller=\"org.example.AppController\">\n    <StackedFontIcon GridPane.columnIndex=\"0\" GridPane.rowIndex=\"0\" iconSize=\"48\">\n        <FontIcon iconLiteral=\"fa-circle-thin\" iconColor=\"red\"/>\n        <FontIcon iconLiteral=\"fa-camera\" StackedFontIcon.iconSize=\"0.5\"/>\n    </StackedFontIcon>\n</GridPane>\n----\n\n.Stylable Properties\n\n`{api_link_stackedfonticon_javafx}` exposes properties that can be styled using CSS. It defines a node class named `stacked-ikonli-font-icon`.\n\n[horizontal]\n-fx-icon-size:: The size of the icon, in pixels.\n-fx-icon-color:: A JavaFX `Paint` definition, such as a plain color or gradient.\n\n=== Installing\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nrepositories {\n    mavenCentral()\n}\n\ndependencies {\n    implementation '{project-group}:ikonli-javafx:{project-version}'\n}\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependencies>\n    <dependency>\n        <groupId>{project-group}</groupId>\n        <artifactId>ikonli-javafx</artifactId>\n        <version>{project-version}</version>\n    </dependency>\n</dependencies>\n----\n\nNext, don't forget to add entries to your module descriptor (`module-info.java`). Here's for example the\nminimum settings required for a JavaFX application\n\n[source,java]\n.module-info.java\n----\nmodule com.acme.demo {\n    requires javafx.base;\n    requires javafx.graphics;\n    requires javafx.controls;\n    requires org.kordamp.ikonli.core;\n    requires org.kordamp.ikonli.javafx;\n    // add icon pack modules\n    requires org.kordamp.ikonli.fontawesome;\n}\n----\n\n== Creating a Fat JAR\n\nIkonli's icon packs rely on services files to provide their implementation. You must make sure that those services files\nare properly merged when creating a Fat JAR or Uber JAR and your application does not use the modulepath. Fortunately\nthere are build plugins that can help with this task.\n\n.Gradle\nConfigure the `link:https://imperceptiblethoughts.com/shadow/getting-started/[shadow]` plugin and merge service files\n\n[source,groovy]\n.build.gradle\n----\nplugins {\n    id 'com.github.johnrengelman.shadow' version '6.1.0'\n}\n\nshadowJar {\n    mergeServiceFiles()\n}\n----\n\n.Maven\nConfigure the `link:https://maven.apache.org/plugins/maven-shade-plugin/[maven-shade-plugin]` and apply the\n`org.apache.maven.plugins.shade.resource.ServicesResourceTransformer` transformer.\n\n[source,xml]\n[subs=\"verbatim\"]\n.pom.xml\n----\n<plugin>\n    <groupId>org.apache.maven.plugins</groupId>\n    <artifactId>maven-shade-plugin</artifactId>\n    <version>3.2.4</version>\n    <configuration>\n        <transformers>\n            <transformer implementation=\"org.apache.maven.plugins.shade.resource.ServicesResourceTransformer\"/>\n        </transformers>\n    </configuration>\n    <executions>\n        <execution>\n            <phase>package</phase>\n            <goals>\n                <goal>shade</goal>\n            </goals>\n        </execution>\n    </executions>\n</plugin>\n----\n\n== BOM\n\nStarting with version `12.0.0` Ikonli offers a BOM for all core projects and icon packs. You may configure it with either\nGradle or Maven.\n\n[source,groovy]\n[subs=\"attributes\"]\n.gradle\n----\nrepositories {\n    mavenCentral()\n}\n\ndependencies {\n    implementation platform('{project-group}:ikonli-bom:{project-version}')\n    implementation '{project-group}:ikonli-javafx'\n    implementation '{project-group}:ikonli-fontawesome5-pack'\n}\n----\n\n[source,xml]\n[subs=\"attributes,verbatim\"]\n.maven\n----\n<dependencyManagement>\n    <dependencies>\n        <dependency>\n            <groupId>{project-group}</groupId>\n            <artifactId>ikonli-bom</artifactId>\n            <version>{project-version}</version>\n            <type>pom</type>\n            <scope>import</scope>\n        </dependency>\n    </dependencies>\n</dependencyManagement>\n<dependencies>\n    <dependency>\n        <groupId>{project-group}</groupId>\n        <artifactId>ikonli-javafx</artifactId>\n    </dependency>\n    <dependency>\n        <groupId>{project-group}</groupId>\n        <artifactId>ikonli-fontawesome5-pack</artifactId>\n    </dependency>\n</dependencies>\n----\n"
  },
  {
    "path": "docs/guide/src/javadoc/overview.html",
    "content": "<html>\n<head>\n    <title>Ikonli</title>\n</head>\n<body>\n\n</body>\n</html>\n"
  },
  {
    "path": "docs/guide/src/javadoc/resources/css/stylesheet.css",
    "content": "/* Javadoc style sheet */\n/*\nOverall document style\n*/\nbody {\n    background-color:#ffffff;\n    color:#353833;\n    font-family:Arial, Helvetica, sans-serif;\n    font-size:76%;\n    margin:0;\n}\na:link, a:visited {\n    text-decoration:none;\n    color:#3c3b37;\n}\na:hover, a:focus {\n    text-decoration:none;\n    color:#ff0000;\n}\na:active {\n    text-decoration:none;\n    color:#2c2b27;\n}\na[name] {\n    color:#353833;\n}\na[name]:hover {\n    text-decoration:none;\n    color:#353833;\n}\npre {\n    font-size:1.3em;\n}\nh1 {\n    font-size:1.8em;\n}\nh2 {\n    font-size:1.5em;\n}\nh3 {\n    font-size:1.4em;\n}\nh4 {\n    font-size:1.3em;\n}\nh5 {\n    font-size:1.2em;\n}\nh6 {\n    font-size:1.1em;\n}\nul {\n    list-style-type:disc;\n}\ncode, tt {\n    font-size:1.2em;\n}\ndt code {\n    font-size:1.2em;\n}\ntable tr td dt code {\n    font-size:1.2em;\n    vertical-align:top;\n}\nsup {\n    font-size:.6em;\n}\n/*\nDocument title and Copyright styles\n*/\n.clear {\n    clear:both;\n    height:0px;\n    overflow:hidden;\n}\n.aboutLanguage {\n    float:right;\n    padding:0px 21px;\n    font-size:.8em;\n    z-index:200;\n    margin-top:-7px;\n}\n.legalCopy {\n    margin-left:.5em;\n}\n.bar a, .bar a:link, .bar a:visited, .bar a:active {\n    color:#FFFFFF;\n    text-decoration:none;\n}\n.bar a:hover, .bar a:focus {\n    color:#ff0000;\n}\n.tab {\n    background-color:#0066FF;\n    background-image:url(resources/titlebar.gif);\n    background-position:left top;\n    background-repeat:no-repeat;\n    color:#ffffff;\n    padding:8px;\n    width:5em;\n    font-weight:bold;\n}\n/*\nNavigation bar styles\n*/\n.bar {\n    background-image:url(resources/background.gif);\n    background-repeat:repeat-x;\n    color:#FFFFFF;\n    padding:.8em .5em .4em .8em;\n    height:auto;/*height:1.8em;*/\n    font-size:1em;\n    margin:0;\n}\n.topNav {\n    background-image:url(resources/background.gif);\n    background-repeat:repeat-x;\n    color:#FFFFFF;\n    float:left;\n    padding:0;\n    width:100%;\n    clear:right;\n    height:2.8em;\n    padding-top:10px;\n    overflow:hidden;\n}\n.bottomNav {\n    margin-top:10px;\n    background-image:url(resources/background.gif);\n    background-repeat:repeat-x;\n    color:#FFFFFF;\n    float:left;\n    padding:0;\n    width:100%;\n    clear:right;\n    height:2.8em;\n    padding-top:10px;\n    overflow:hidden;\n}\n.subNav {\n    background-color:#dee3e9;\n    border-bottom:1px solid #9eadc0;\n    float:left;\n    width:100%;\n    overflow:hidden;\n}\n.subNav div {\n    clear:left;\n    float:left;\n    padding:0 0 5px 6px;\n}\nul.navList, ul.subNavList {\n    float:left;\n    margin:0 25px 0 0;\n    padding:0;\n}\nul.navList li{\n    list-style:none;\n    float:left;\n    padding:3px 6px;\n}\nul.subNavList li{\n    list-style:none;\n    float:left;\n    font-size:90%;\n}\n.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited {\n    color:#FFFFFF;\n    text-decoration:none;\n}\n.topNav a:hover, .bottomNav a:hover {\n    text-decoration:none;\n    color:#ff0000;\n}\n.navBarCell1Rev {\n    background-image:url(resources/tab.gif);\n    background-color:#dd0000;\n    color:#FFFFFF;\n    margin: auto 5px;\n    border:1px solid #ff3300;\n}\n/*\nPage header and footer styles\n*/\n.header, .footer {\n    clear:both;\n    margin:0 20px;\n    padding:5px 0 0 0;\n}\n.indexHeader {\n    margin:10px;\n    position:relative;\n}\n.indexHeader h1 {\n    font-size:1.3em;\n}\n.title {\n    color:#2c4557;\n    margin:10px 0;\n}\n.subTitle {\n    margin:5px 0 0 0;\n}\n.header ul {\n    margin:0 0 25px 0;\n    padding:0;\n}\n.footer ul {\n    margin:20px 0 5px 0;\n}\n.header ul li, .footer ul li {\n    list-style:none;\n    font-size:1.2em;\n}\n/*\nHeading styles\n*/\ndiv.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 {\n    background-color:#dee3e9;\n    border-top:1px solid #9eadc0;\n    border-bottom:1px solid #9eadc0;\n    margin:0 0 6px -8px;\n    padding:2px 5px;\n}\nul.blockList ul.blockList ul.blockList li.blockList h3 {\n    background-color:#dee3e9;\n    border-top:1px solid #9eadc0;\n    border-bottom:1px solid #9eadc0;\n    margin:0 0 6px -8px;\n    padding:2px 5px;\n}\nul.blockList ul.blockList li.blockList h3 {\n    padding:0;\n    margin:15px 0;\n}\nul.blockList li.blockList h2 {\n    padding:0px 0 20px 0;\n}\n/*\nPage layout container styles\n*/\n.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer {\n    clear:both;\n    padding:10px 20px;\n    position:relative;\n}\n.indexContainer {\n    margin:10px;\n    position:relative;\n    font-size:1.0em;\n}\n.indexContainer h2 {\n    font-size:1.1em;\n    padding:0 0 3px 0;\n}\n.indexContainer ul {\n    margin:0;\n    padding:0;\n}\n.indexContainer ul li {\n    list-style:none;\n}\n.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt {\n    font-size:1.1em;\n    font-weight:bold;\n    margin:10px 0 0 0;\n    color:#4E4E4E;\n}\n.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd {\n    margin:10px 0 10px 20px;\n}\n.serializedFormContainer dl.nameValue dt {\n    margin-left:1px;\n    font-size:1.1em;\n    display:inline;\n    font-weight:bold;\n}\n.serializedFormContainer dl.nameValue dd {\n    margin:0 0 0 1px;\n    font-size:1.1em;\n    display:inline;\n}\n/*\nList styles\n*/\nul.horizontal li {\n    display:inline;\n    font-size:0.9em;\n}\nul.inheritance {\n    margin:0;\n    padding:0;\n}\nul.inheritance li {\n    display:inline;\n    list-style:none;\n}\nul.inheritance li ul.inheritance {\n    margin-left:15px;\n    padding-left:15px;\n    padding-top:1px;\n}\nul.blockList, ul.blockListLast {\n    margin:10px 0 10px 0;\n    padding:0;\n}\nul.blockList li.blockList, ul.blockListLast li.blockList {\n    list-style:none;\n    margin-bottom:25px;\n}\nul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList {\n    padding:0px 20px 5px 10px;\n    border:1px solid #9eadc0;\n    background-color:#f9f9f9;\n}\nul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList {\n    padding:0 0 5px 8px;\n    background-color:#ffffff;\n    border:1px solid #9eadc0;\n    border-top:none;\n}\nul.blockList ul.blockList ul.blockList ul.blockList li.blockList {\n    margin-left:0;\n    padding-left:0;\n    padding-bottom:15px;\n    border:none;\n    border-bottom:1px solid #9eadc0;\n}\nul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast {\n    list-style:none;\n    border-bottom:none;\n    padding-bottom:0;\n}\ntable tr td dl, table tr td dl dt, table tr td dl dd {\n    margin-top:0;\n    margin-bottom:1px;\n}\n/*\nTable styles\n*/\n.contentContainer table, .classUseContainer table, .constantValuesContainer table {\n    border-bottom:1px solid #9eadc0;\n    width:100%;\n}\n.contentContainer ul li table, .classUseContainer ul li table, .constantValuesContainer ul li table {\n    width:100%;\n}\n.contentContainer .description table, .contentContainer .details table {\n    border-bottom:none;\n}\n.contentContainer ul li table th.colOne, .contentContainer ul li table th.colFirst, .contentContainer ul li table th.colLast, .classUseContainer ul li table th, .constantValuesContainer ul li table th, .contentContainer ul li table td.colOne, .contentContainer ul li table td.colFirst, .contentContainer ul li table td.colLast, .classUseContainer ul li table td, .constantValuesContainer ul li table td{\n    vertical-align:top;\n    padding-right:20px;\n}\n.contentContainer ul li table th.colLast, .classUseContainer ul li table th.colLast,.constantValuesContainer ul li table th.colLast,\n.contentContainer ul li table td.colLast, .classUseContainer ul li table td.colLast,.constantValuesContainer ul li table td.colLast,\n.contentContainer ul li table th.colOne, .classUseContainer ul li table th.colOne,\n.contentContainer ul li table td.colOne, .classUseContainer ul li table td.colOne {\n    padding-right:3px;\n}\n.overviewSummary caption, .packageSummary caption, .contentContainer ul.blockList li.blockList caption, .summary caption, .classUseContainer caption, .constantValuesContainer caption {\n    position:relative;\n    text-align:left;\n    background-repeat:no-repeat;\n    color:#FFFFFF;\n    font-weight:bold;\n    clear:none;\n    overflow:hidden;\n    padding:0px;\n    margin:0px;\n}\ncaption a:link, caption a:hover, caption a:active, caption a:visited {\n    color:#FFFFFF;\n}\n.overviewSummary caption span, .packageSummary caption span, .contentContainer ul.blockList li.blockList caption span, .summary caption span, .classUseContainer caption span, .constantValuesContainer caption span {\n    white-space:nowrap;\n    padding-top:8px;\n    padding-left:8px;\n    display:block;\n    float:left;\n    background-image:url(resources/titlebar.gif);\n    height:18px;\n}\n.overviewSummary .tabEnd, .packageSummary .tabEnd, .contentContainer ul.blockList li.blockList .tabEnd, .summary .tabEnd, .classUseContainer .tabEnd, .constantValuesContainer .tabEnd {\n    width:10px;\n    background-image:url(resources/titlebar_end.gif);\n    background-repeat:no-repeat;\n    background-position:top right;\n    position:relative;\n    float:left;\n}\nul.blockList ul.blockList li.blockList table {\n    margin:0 0 12px 0px;\n    width:100%;\n}\n.tableSubHeadingColor {\n    background-color: #EEEEFF;\n}\n.altColor {\n    background-color:#eeeeef;\n}\n.rowColor {\n    background-color:#ffffff;\n}\n.overviewSummary td, .packageSummary td, .contentContainer ul.blockList li.blockList td, .summary td, .classUseContainer td, .constantValuesContainer td {\n    text-align:left;\n    padding:3px 3px 3px 7px;\n}\nth.colFirst, th.colLast, th.colOne, .constantValuesContainer th {\n    background:#dee3e9;\n    border-top:1px solid #9eadc0;\n    border-bottom:1px solid #9eadc0;\n    text-align:left;\n    padding:3px 3px 3px 7px;\n}\ntd.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover {\n    font-weight:bold;\n}\ntd.colFirst, th.colFirst {\n    border-left:1px solid #9eadc0;\n    white-space:nowrap;\n}\ntd.colLast, th.colLast {\n    border-right:1px solid #9eadc0;\n}\ntd.colOne, th.colOne {\n    border-right:1px solid #9eadc0;\n    border-left:1px solid #9eadc0;\n}\ntable.overviewSummary  {\n    padding:0px;\n    margin-left:0px;\n}\ntable.overviewSummary td.colFirst, table.overviewSummary th.colFirst,\ntable.overviewSummary td.colOne, table.overviewSummary th.colOne {\n    width:25%;\n    vertical-align:middle;\n}\ntable.packageSummary td.colFirst, table.overviewSummary th.colFirst {\n    width:25%;\n    vertical-align:middle;\n}\n/*\nContent styles\n*/\n.description pre {\n    margin-top:0;\n}\n.deprecatedContent {\n    margin:0;\n    padding:10px 0;\n}\n.docSummary {\n    padding:0;\n}\n/*\nFormatting effect styles\n*/\n.sourceLineNo {\n    color:green;\n    padding:0 30px 0 0;\n}\nh1.hidden {\n    visibility:hidden;\n    overflow:hidden;\n    font-size:.9em;\n}\n.block {\n    display:block;\n    margin:3px 0 0 0;\n}\n.strong {\n    font-weight:bold;\n}\n"
  },
  {
    "path": "gradle/LICENSE_HEADER",
    "content": "SPDX-License-Identifier: Apache-2.0\n\nCopyright ${copyrightYear} ${author}\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n    http://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
  },
  {
    "path": "gradle/wrapper/gradle-wrapper.properties",
    "content": "distributionBase=GRADLE_USER_HOME\ndistributionPath=wrapper/dists\ndistributionUrl=https\\://services.gradle.org/distributions/gradle-8.12-bin.zip\nnetworkTimeout=10000\nvalidateDistributionUrl=true\nzipStoreBase=GRADLE_USER_HOME\nzipStorePath=wrapper/dists\n"
  },
  {
    "path": "gradle.properties",
    "content": "#\n# SPDX-License-Identifier: Apache-2.0\n#\n# Copyright 2015-2025 Andres Almiray\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\nikonliJdk8Version       = 2.6.0\ngroup                   = org.kordamp.ikonli\n\nsourceCompatibility     = 11\ntargetCompatibility     = 11\njavafxVersion           = 11\njipsyVersion            = 1.2.0\njacocoVersion           = 0.8.6\n\nzuluVersion             = zulu21.38.21-ca-jdk21.0.5\n\nosPluginVersion         = 1.7.0\nkordampPluginVersion    = 0.54.0\nkordampBuildVersion     = 3.4.0\ngitPluginVersion        = 3.0.0\njlinkPluginVersion      = 2.24.4\njreleaserPluginVersion  = 1.10.0\nmiglayoutVersion        = 11.0\nerrorproneVersion       = 2.18.0\nguavaVersion            = 32.0.1-jre\nbndPluginVersion        = 7.1.0\ncyclonedxPluginVersion  = 2.1.0\n\nantdesigniconsVersion   = 4.0.0\nbootstrapiconsVersion   = 1.4.1\nboxiconsVersion         = 2.0.7\nbpmnVersion             = 0.10.0\nbytedanceVersion        = 1.3.0\ncaptainiconVersion      = 20140501\ncarboniconsVersion      = 10.23.2\ncodiconsVersion         = 0.0.12\ncoreuiVersion           = 2.0.0-beta.5\ndashiconsVersion        = 20200504\ndeviconsVersion         = 1.8.0\nelusiveVersion          = 2.0\nentypoVersion           = 1.0\nevaiconsVersion         = 1.1.3\nfeatherVersion          = 4.28\nfileiconsVersion        = 2.1.44\nfluentuiVersion         = 1.1.74\nfontawesomeVersion      = 4.7.0\nfontawesome5Version     = 5.15.3\nfontawesome6Version     = 6.5.2\nfontelicoVersion        = 0.0\nfoundationVersion       = 3.0\nhawconsVersion          = 20140708\nioniconsVersion         = 2.0.1\nionicons4Version        = 4.1.2\nicomoonVersion          = 0.0\njamiconsVersion         = 3.0.0\nlineawesomeVersion      = 1.3.0\nlineconsVersion         = 0.0\nligaturesymbolsVersion  = 2.11\nmakiVersion             = 0.5.0\nmaki2Version            = 6.2.0\nmapiconsVersion         = 3.0.0\nmaterialVersion         = 50\nmaterial2Version        = 20200820\nmaterialdesignVersion   = 1.7.22\nmaterialdesign2Version  = 7.4.47\nmediconsVersion         = 20170612\nmetrizeiconsVersion     = 0.0\nmicronsVersion          = 1.0.8\nociiconsVersion         = 1.0\nocticonsVersion         = 14.2.2\nopeniconicVersion       = 1.1.0\npaymentfontVersion      = 1.2.5\nprestashopiconsVersion  = 0.8.0\nremixiconVersion        = 2.5.0\nrunestroiconsVersion    = 5.6\nsimpleiconsVersion      = 3.12.2\nsimplelineiconsVersion  = 2.5.4\nsubwayVersion           = 20201108\ntypiconsVersion         = 2.0.7\nthemifyVersion          = 1.0.1\nuniconsVersion          = 20201106\nweathericonsVersion     = 2.0.10\nwebsymbolsVersion       = 0.0\nwhhgVersion             = 20201105\nwin10Version            = 1.0.1\nzondiconsVersion        = 20170712\n\norg.gradle.daemon       = true\norg.gradle.caching      = true\norg.gradle.parallel     = false\n"
  },
  {
    "path": "gradlew",
    "content": "#!/bin/sh\n\n#\n# Copyright © 2015-2021 the original authors.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#      https://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n# SPDX-License-Identifier: Apache-2.0\n#\n\n##############################################################################\n#\n#   Gradle start up script for POSIX generated by Gradle.\n#\n#   Important for running:\n#\n#   (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is\n#       noncompliant, but you have some other compliant shell such as ksh or\n#       bash, then to run this script, type that shell name before the whole\n#       command line, like:\n#\n#           ksh Gradle\n#\n#       Busybox and similar reduced shells will NOT work, because this script\n#       requires all of these POSIX shell features:\n#         * functions;\n#         * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,\n#           «${var#prefix}», «${var%suffix}», and «$( cmd )»;\n#         * compound commands having a testable exit status, especially «case»;\n#         * various built-in commands including «command», «set», and «ulimit».\n#\n#   Important for patching:\n#\n#   (2) This script targets any POSIX shell, so it avoids extensions provided\n#       by Bash, Ksh, etc; in particular arrays are avoided.\n#\n#       The \"traditional\" practice of packing multiple parameters into a\n#       space-separated string is a well documented source of bugs and security\n#       problems, so this is (mostly) avoided, by progressively accumulating\n#       options in \"$@\", and eventually passing that to Java.\n#\n#       Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,\n#       and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;\n#       see the in-line comments for details.\n#\n#       There are tweaks for specific operating systems such as AIX, CygWin,\n#       Darwin, MinGW, and NonStop.\n#\n#   (3) This script is generated from the Groovy template\n#       https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt\n#       within the Gradle project.\n#\n#       You can find Gradle at https://github.com/gradle/gradle/.\n#\n##############################################################################\n\n# Attempt to set APP_HOME\n\n# Resolve links: $0 may be a link\napp_path=$0\n\n# Need this for daisy-chained symlinks.\nwhile\n    APP_HOME=${app_path%\"${app_path##*/}\"}  # leaves a trailing /; empty if no leading path\n    [ -h \"$app_path\" ]\ndo\n    ls=$( ls -ld \"$app_path\" )\n    link=${ls#*' -> '}\n    case $link in             #(\n      /*)   app_path=$link ;; #(\n      *)    app_path=$APP_HOME$link ;;\n    esac\ndone\n\n# This is normally unused\n# shellcheck disable=SC2034\nAPP_BASE_NAME=${0##*/}\n# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)\nAPP_HOME=$( cd -P \"${APP_HOME:-./}\" > /dev/null && printf '%s\\n' \"$PWD\" ) || exit\n\n# Use the maximum available, or set MAX_FD != -1 to use that value.\nMAX_FD=maximum\n\nwarn () {\n    echo \"$*\"\n} >&2\n\ndie () {\n    echo\n    echo \"$*\"\n    echo\n    exit 1\n} >&2\n\n# OS specific support (must be 'true' or 'false').\ncygwin=false\nmsys=false\ndarwin=false\nnonstop=false\ncase \"$( uname )\" in                #(\n  CYGWIN* )         cygwin=true  ;; #(\n  Darwin* )         darwin=true  ;; #(\n  MSYS* | MINGW* )  msys=true    ;; #(\n  NONSTOP* )        nonstop=true ;;\nesac\n\nCLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar\n\n\n# Determine the Java command to use to start the JVM.\nif [ -n \"$JAVA_HOME\" ] ; then\n    if [ -x \"$JAVA_HOME/jre/sh/java\" ] ; then\n        # IBM's JDK on AIX uses strange locations for the executables\n        JAVACMD=$JAVA_HOME/jre/sh/java\n    else\n        JAVACMD=$JAVA_HOME/bin/java\n    fi\n    if [ ! -x \"$JAVACMD\" ] ; then\n        die \"ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nelse\n    JAVACMD=java\n    if ! command -v java >/dev/null 2>&1\n    then\n        die \"ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.\n\nPlease set the JAVA_HOME variable in your environment to match the\nlocation of your Java installation.\"\n    fi\nfi\n\n# Increase the maximum file descriptors if we can.\nif ! \"$cygwin\" && ! \"$darwin\" && ! \"$nonstop\" ; then\n    case $MAX_FD in #(\n      max*)\n        # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.\n        # shellcheck disable=SC2039,SC3045\n        MAX_FD=$( ulimit -H -n ) ||\n            warn \"Could not query maximum file descriptor limit\"\n    esac\n    case $MAX_FD in  #(\n      '' | soft) :;; #(\n      *)\n        # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.\n        # shellcheck disable=SC2039,SC3045\n        ulimit -n \"$MAX_FD\" ||\n            warn \"Could not set maximum file descriptor limit to $MAX_FD\"\n    esac\nfi\n\n# Collect all arguments for the java command, stacking in reverse order:\n#   * args from the command line\n#   * the main class name\n#   * -classpath\n#   * -D...appname settings\n#   * --module-path (only if needed)\n#   * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.\n\n# For Cygwin or MSYS, switch paths to Windows format before running java\nif \"$cygwin\" || \"$msys\" ; then\n    APP_HOME=$( cygpath --path --mixed \"$APP_HOME\" )\n    CLASSPATH=$( cygpath --path --mixed \"$CLASSPATH\" )\n\n    JAVACMD=$( cygpath --unix \"$JAVACMD\" )\n\n    # Now convert the arguments - kludge to limit ourselves to /bin/sh\n    for arg do\n        if\n            case $arg in                                #(\n              -*)   false ;;                            # don't mess with options #(\n              /?*)  t=${arg#/} t=/${t%%/*}              # looks like a POSIX filepath\n                    [ -e \"$t\" ] ;;                      #(\n              *)    false ;;\n            esac\n        then\n            arg=$( cygpath --path --ignore --mixed \"$arg\" )\n        fi\n        # Roll the args list around exactly as many times as the number of\n        # args, so each arg winds up back in the position where it started, but\n        # possibly modified.\n        #\n        # NB: a `for` loop captures its iteration list before it begins, so\n        # changing the positional parameters here affects neither the number of\n        # iterations, nor the values presented in `arg`.\n        shift                   # remove old arg\n        set -- \"$@\" \"$arg\"      # push replacement arg\n    done\nfi\n\n\n# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\nDEFAULT_JVM_OPTS='\"-Xmx64m\" \"-Xms64m\"'\n\n# Collect all arguments for the java command:\n#   * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,\n#     and any embedded shellness will be escaped.\n#   * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be\n#     treated as '${Hostname}' itself on the command line.\n\nset -- \\\n        \"-Dorg.gradle.appname=$APP_BASE_NAME\" \\\n        -classpath \"$CLASSPATH\" \\\n        org.gradle.wrapper.GradleWrapperMain \\\n        \"$@\"\n\n# Stop when \"xargs\" is not available.\nif ! command -v xargs >/dev/null 2>&1\nthen\n    die \"xargs is not available\"\nfi\n\n# Use \"xargs\" to parse quoted args.\n#\n# With -n1 it outputs one arg per line, with the quotes and backslashes removed.\n#\n# In Bash we could simply go:\n#\n#   readarray ARGS < <( xargs -n1 <<<\"$var\" ) &&\n#   set -- \"${ARGS[@]}\" \"$@\"\n#\n# but POSIX shell has neither arrays nor command substitution, so instead we\n# post-process each arg (as a line of input to sed) to backslash-escape any\n# character that might be a shell metacharacter, then use eval to reverse\n# that process (while maintaining the separation between arguments), and wrap\n# the whole thing up as a single \"set\" statement.\n#\n# This will of course break if any of these variables contains a newline or\n# an unmatched quote.\n#\n\neval \"set -- $(\n        printf '%s\\n' \"$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS\" |\n        xargs -n1 |\n        sed ' s~[^-[:alnum:]+,./:=@_]~\\\\&~g; ' |\n        tr '\\n' ' '\n    )\" '\"$@\"'\n\nexec \"$JAVACMD\" \"$@\"\n"
  },
  {
    "path": "gradlew.bat",
    "content": "@rem\n@rem Copyright 2015 the original author or authors.\n@rem\n@rem Licensed under the Apache License, Version 2.0 (the \"License\");\n@rem you may not use this file except in compliance with the License.\n@rem You may obtain a copy of the License at\n@rem\n@rem      https://www.apache.org/licenses/LICENSE-2.0\n@rem\n@rem Unless required by applicable law or agreed to in writing, software\n@rem distributed under the License is distributed on an \"AS IS\" BASIS,\n@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n@rem See the License for the specific language governing permissions and\n@rem limitations under the License.\n@rem\n@rem SPDX-License-Identifier: Apache-2.0\n@rem\n\n@if \"%DEBUG%\"==\"\" @echo off\n@rem ##########################################################################\n@rem\n@rem  Gradle startup script for Windows\n@rem\n@rem ##########################################################################\n\n@rem Set local scope for the variables with windows NT shell\nif \"%OS%\"==\"Windows_NT\" setlocal\n\nset DIRNAME=%~dp0\nif \"%DIRNAME%\"==\"\" set DIRNAME=.\n@rem This is normally unused\nset APP_BASE_NAME=%~n0\nset APP_HOME=%DIRNAME%\n\n@rem Resolve any \".\" and \"..\" in APP_HOME to make it shorter.\nfor %%i in (\"%APP_HOME%\") do set APP_HOME=%%~fi\n\n@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.\nset DEFAULT_JVM_OPTS=\"-Xmx64m\" \"-Xms64m\"\n\n@rem Find java.exe\nif defined JAVA_HOME goto findJavaFromJavaHome\n\nset JAVA_EXE=java.exe\n%JAVA_EXE% -version >NUL 2>&1\nif %ERRORLEVEL% equ 0 goto execute\n\necho. 1>&2\necho ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 1>&2\necho. 1>&2\necho Please set the JAVA_HOME variable in your environment to match the 1>&2\necho location of your Java installation. 1>&2\n\ngoto fail\n\n:findJavaFromJavaHome\nset JAVA_HOME=%JAVA_HOME:\"=%\nset JAVA_EXE=%JAVA_HOME%/bin/java.exe\n\nif exist \"%JAVA_EXE%\" goto execute\n\necho. 1>&2\necho ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 1>&2\necho. 1>&2\necho Please set the JAVA_HOME variable in your environment to match the 1>&2\necho location of your Java installation. 1>&2\n\ngoto fail\n\n:execute\n@rem Setup the command line\n\nset CLASSPATH=%APP_HOME%\\gradle\\wrapper\\gradle-wrapper.jar\n\n\n@rem Execute Gradle\n\"%JAVA_EXE%\" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% \"-Dorg.gradle.appname=%APP_BASE_NAME%\" -classpath \"%CLASSPATH%\" org.gradle.wrapper.GradleWrapperMain %*\n\n:end\n@rem End local scope for the variables with windows NT shell\nif %ERRORLEVEL% equ 0 goto mainEnd\n\n:fail\nrem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of\nrem the _cmd.exe /c_ return code!\nset EXIT_CODE=%ERRORLEVEL%\nif %EXIT_CODE% equ 0 set EXIT_CODE=1\nif not \"\"==\"%GRADLE_EXIT_CONSOLE%\" exit %EXIT_CODE%\nexit /b %EXIT_CODE%\n\n:mainEnd\nif \"%OS%\"==\"Windows_NT\" endlocal\n\n:omega\n"
  },
  {
    "path": "icon-packs/ikonli-antdesignicons-pack/ikonli-antdesignicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-antdesignicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.antdesignicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.antdesignicons;\n    \n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.antdesignicons.AntDesignIconsFilledIkonHandler,\n            org.kordamp.ikonli.antdesignicons.AntDesignIconsOutlinedIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.antdesignicons.AntDesignIconsFilledIkonProvider,\n            org.kordamp.ikonli.antdesignicons.AntDesignIconsOutlinedIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-antdesignicons-pack/src/main/java/org/kordamp/ikonli/antdesignicons/AntDesignIconsFilled.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.antdesignicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum AntDesignIconsFilled implements Ikon {\n    ACCOUNT_BOOK(\"antf-account-book\", '\\ue900'),\n    ALERT(\"antf-alert\", '\\ue901'),\n    ALIPAY_CIRCLE(\"antf-alipay-circle\", '\\ue902'),\n    ALIPAY_SQUARE(\"antf-alipay-square\", '\\ue903'),\n    ALIWANGWANG(\"antf-aliwangwang\", '\\ue904'),\n    AMAZON_CIRCLE(\"antf-amazon-circle\", '\\ue905'),\n    AMAZON_SQUARE(\"antf-amazon-square\", '\\ue906'),\n    ANDROID(\"antf-android\", '\\ue907'),\n    API(\"antf-api\", '\\ue908'),\n    APPLE(\"antf-apple\", '\\ue909'),\n    APPSTORE(\"antf-appstore\", '\\ue90a'),\n    AUDIO(\"antf-audio\", '\\ue90b'),\n    BACKWARD(\"antf-backward\", '\\ue90c'),\n    BANK(\"antf-bank\", '\\ue90d'),\n    BEHANCE_CIRCLE(\"antf-behance-circle\", '\\ue90e'),\n    BEHANCE_SQUARE(\"antf-behance-square\", '\\ue90f'),\n    BELL(\"antf-bell\", '\\ue910'),\n    BOOK(\"antf-book\", '\\ue911'),\n    BOX_PLOT(\"antf-box-plot\", '\\ue912'),\n    BUG(\"antf-bug\", '\\ue913'),\n    BUILD(\"antf-build\", '\\ue914'),\n    BULB(\"antf-bulb\", '\\ue915'),\n    CALCULATOR(\"antf-calculator\", '\\ue916'),\n    CALENDAR(\"antf-calendar\", '\\ue917'),\n    CAMERA(\"antf-camera\", '\\ue918'),\n    CAR(\"antf-car\", '\\ue919'),\n    CARET_DOWN(\"antf-caret-down\", '\\ue91a'),\n    CARET_LEFT(\"antf-caret-left\", '\\ue91b'),\n    CARET_RIGHT(\"antf-caret-right\", '\\ue91c'),\n    CARET_UP(\"antf-caret-up\", '\\ue91d'),\n    CARRY_OUT(\"antf-carry-out\", '\\ue91e'),\n    CHECK_CIRCLE(\"antf-check-circle\", '\\ue91f'),\n    CHECK_SQUARE(\"antf-check-square\", '\\ue920'),\n    CHROME(\"antf-chrome\", '\\ue921'),\n    CI_CIRCLE(\"antf-ci-circle\", '\\ue922'),\n    CLOCK_CIRCLE(\"antf-clock-circle\", '\\ue923'),\n    CLOSE_CIRCLE(\"antf-close-circle\", '\\ue924'),\n    CLOSE_SQUARE(\"antf-close-square\", '\\ue925'),\n    CLOUD(\"antf-cloud\", '\\ue926'),\n    CODE(\"antf-code\", '\\ue929'),\n    CODEPEN_CIRCLE(\"antf-codepen-circle\", '\\ue92a'),\n    CODEPEN_SQUARE(\"antf-codepen-square\", '\\ue92b'),\n    CODE_SANDBOX_CIRCLE(\"antf-code-sandbox-circle\", '\\ue927'),\n    CODE_SANDBOX_SQUARE(\"antf-code-sandbox-square\", '\\ue928'),\n    COMPASS(\"antf-compass\", '\\ue92c'),\n    CONTACTS(\"antf-contacts\", '\\ue92d'),\n    CONTAINER(\"antf-container\", '\\ue92e'),\n    CONTROL(\"antf-control\", '\\ue92f'),\n    COPY(\"antf-copy\", '\\ue930'),\n    COPYRIGHT_CIRCLE(\"antf-copyright-circle\", '\\ue931'),\n    CREDIT_CARD(\"antf-credit-card\", '\\ue932'),\n    CROWN(\"antf-crown\", '\\ue933'),\n    CUSTOMER_SERVICE(\"antf-customer-service\", '\\ue934'),\n    DASHBOARD(\"antf-dashboard\", '\\ue935'),\n    DATABASE(\"antf-database\", '\\ue936'),\n    DELETE(\"antf-delete\", '\\ue937'),\n    DIFF(\"antf-diff\", '\\ue938'),\n    DINGTALK_CIRCLE(\"antf-dingtalk-circle\", '\\ue939'),\n    DINGTALK_SQUARE(\"antf-dingtalk-square\", '\\ue93a'),\n    DISLIKE(\"antf-dislike\", '\\ue93b'),\n    DOLLAR_CIRCLE(\"antf-dollar-circle\", '\\ue93c'),\n    DOWN_CIRCLE(\"antf-down-circle\", '\\ue93d'),\n    DOWN_SQUARE(\"antf-down-square\", '\\ue93e'),\n    DRIBBBLE_CIRCLE(\"antf-dribbble-circle\", '\\ue93f'),\n    DRIBBBLE_SQUARE(\"antf-dribbble-square\", '\\ue940'),\n    DROPBOX_CIRCLE(\"antf-dropbox-circle\", '\\ue941'),\n    DROPBOX_SQUARE(\"antf-dropbox-square\", '\\ue942'),\n    EDIT(\"antf-edit\", '\\ue943'),\n    ENVIRONMENT(\"antf-environment\", '\\ue944'),\n    EURO_CIRCLE(\"antf-euro-circle\", '\\ue945'),\n    EXCLAMATION_CIRCLE(\"antf-exclamation-circle\", '\\ue946'),\n    EXPERIMENT(\"antf-experiment\", '\\ue947'),\n    EYE(\"antf-eye\", '\\ue949'),\n    EYE_INVISIBLE(\"antf-eye-invisible\", '\\ue948'),\n    FACEBOOK(\"antf-facebook\", '\\ue94a'),\n    FAST_BACKWARD(\"antf-fast-backward\", '\\ue94b'),\n    FAST_FORWARD(\"antf-fast-forward\", '\\ue94c'),\n    FILE(\"antf-file\", '\\ue958'),\n    FILE_ADD(\"antf-file-add\", '\\ue94d'),\n    FILE_EXCEL(\"antf-file-excel\", '\\ue94e'),\n    FILE_EXCLAMATION(\"antf-file-exclamation\", '\\ue94f'),\n    FILE_IMAGE(\"antf-file-image\", '\\ue950'),\n    FILE_MARKDOWN(\"antf-file-markdown\", '\\ue951'),\n    FILE_PDF(\"antf-file-pdf\", '\\ue952'),\n    FILE_PPT(\"antf-file-ppt\", '\\ue953'),\n    FILE_TEXT(\"antf-file-text\", '\\ue954'),\n    FILE_UNKNOWN(\"antf-file-unknown\", '\\ue955'),\n    FILE_WORD(\"antf-file-word\", '\\ue956'),\n    FILE_ZIP(\"antf-file-zip\", '\\ue957'),\n    FILTER(\"antf-filter\", '\\ue959'),\n    FIRE(\"antf-fire\", '\\ue95a'),\n    FLAG(\"antf-flag\", '\\ue95b'),\n    FOLDER(\"antf-folder\", '\\ue95e'),\n    FOLDER_ADD(\"antf-folder-add\", '\\ue95c'),\n    FOLDER_OPEN(\"antf-folder-open\", '\\ue95d'),\n    FORMAT_PAINTER(\"antf-format-painter\", '\\ue95f'),\n    FORWARD(\"antf-forward\", '\\ue960'),\n    FROWN(\"antf-frown\", '\\ue961'),\n    FUND(\"antf-fund\", '\\ue962'),\n    FUNNEL_PLOT(\"antf-funnel-plot\", '\\ue963'),\n    GIFT(\"antf-gift\", '\\ue964'),\n    GITHUB(\"antf-github\", '\\ue965'),\n    GITLAB(\"antf-gitlab\", '\\ue966'),\n    GOLD(\"antf-gold\", '\\ue967'),\n    GOLDEN(\"antf-golden\", '\\ue968'),\n    GOOGLE_CIRCLE(\"antf-google-circle\", '\\ue969'),\n    GOOGLE_PLUS_CIRCLE(\"antf-google-plus-circle\", '\\ue96a'),\n    GOOGLE_PLUS_SQUARE(\"antf-google-plus-square\", '\\ue96b'),\n    GOOGLE_SQUARE(\"antf-google-square\", '\\ue96c'),\n    HDD(\"antf-hdd\", '\\ue96d'),\n    HEART(\"antf-heart\", '\\ue96e'),\n    HIGHLIGHT(\"antf-highlight\", '\\ue96f'),\n    HOME(\"antf-home\", '\\ue970'),\n    HOURGLASS(\"antf-hourglass\", '\\ue971'),\n    HTML5(\"antf-html5\", '\\ue972'),\n    IDCARD(\"antf-idcard\", '\\ue973'),\n    IE_CIRCLE(\"antf-ie-circle\", '\\ue974'),\n    IE_SQUARE(\"antf-ie-square\", '\\ue975'),\n    INFO_CIRCLE(\"antf-info-circle\", '\\ue976'),\n    INSTAGRAM(\"antf-instagram\", '\\ue977'),\n    INSURANCE(\"antf-insurance\", '\\ue978'),\n    INTERACTION(\"antf-interaction\", '\\ue979'),\n    LAYOUT(\"antf-layout\", '\\ue97a'),\n    LEFT_CIRCLE(\"antf-left-circle\", '\\ue97b'),\n    LEFT_SQUARE(\"antf-left-square\", '\\ue97c'),\n    LIKE(\"antf-like\", '\\ue97d'),\n    LINKEDIN(\"antf-linkedin\", '\\ue97e'),\n    LOCK(\"antf-lock\", '\\ue97f'),\n    MAC_COMMAND(\"antf-mac-command\", '\\ue980'),\n    MAIL(\"antf-mail\", '\\ue981'),\n    MEDICINE_BOX(\"antf-medicine-box\", '\\ue982'),\n    MEDIUM_CIRCLE(\"antf-medium-circle\", '\\ue983'),\n    MEDIUM_SQUARE(\"antf-medium-square\", '\\ue984'),\n    MEH(\"antf-meh\", '\\ue985'),\n    MESSAGE(\"antf-message\", '\\ue986'),\n    MINUS_CIRCLE(\"antf-minus-circle\", '\\ue987'),\n    MINUS_SQUARE(\"antf-minus-square\", '\\ue988'),\n    MOBILE(\"antf-mobile\", '\\ue989'),\n    MONEY_COLLECT(\"antf-money-collect\", '\\ue98a'),\n    NOTIFICATION(\"antf-notification\", '\\ue98b'),\n    PAUSE_CIRCLE(\"antf-pause-circle\", '\\ue98c'),\n    PAY_CIRCLE(\"antf-pay-circle\", '\\ue98d'),\n    PHONE(\"antf-phone\", '\\ue98e'),\n    PICTURE(\"antf-picture\", '\\ue98f'),\n    PIE_CHART(\"antf-pie-chart\", '\\ue990'),\n    PLAY_CIRCLE(\"antf-play-circle\", '\\ue991'),\n    PLAY_SQUARE(\"antf-play-square\", '\\ue992'),\n    PLUS_CIRCLE(\"antf-plus-circle\", '\\ue993'),\n    PLUS_SQUARE(\"antf-plus-square\", '\\ue994'),\n    POUND_CIRCLE(\"antf-pound-circle\", '\\ue995'),\n    PRINTER(\"antf-printer\", '\\ue996'),\n    PROFILE(\"antf-profile\", '\\ue997'),\n    PROJECT(\"antf-project\", '\\ue998'),\n    PROPERTY_SAFETY(\"antf-property-safety\", '\\ue999'),\n    PUSHPIN(\"antf-pushpin\", '\\ue99a'),\n    QQ_CIRCLE(\"antf-qq-circle\", '\\ue99b'),\n    QQ_SQUARE(\"antf-qq-square\", '\\ue99c'),\n    QUESTION_CIRCLE(\"antf-question-circle\", '\\ue99d'),\n    READ(\"antf-read\", '\\ue99e'),\n    RECONCILIATION(\"antf-reconciliation\", '\\ue99f'),\n    REDDIT_CIRCLE(\"antf-reddit-circle\", '\\ue9a1'),\n    REDDIT_SQUARE(\"antf-reddit-square\", '\\ue9a2'),\n    RED_ENVELOPE(\"antf-red-envelope\", '\\ue9a0'),\n    REST(\"antf-rest\", '\\ue9a3'),\n    RIGHT_CIRCLE(\"antf-right-circle\", '\\ue9a4'),\n    RIGHT_SQUARE(\"antf-right-square\", '\\ue9a5'),\n    ROBOT(\"antf-robot\", '\\ue9a6'),\n    ROCKET(\"antf-rocket\", '\\ue9a7'),\n    SAFETY_CERTIFICATE(\"antf-safety-certificate\", '\\ue9a8'),\n    SAVE(\"antf-save\", '\\ue9a9'),\n    SCHEDULE(\"antf-schedule\", '\\ue9aa'),\n    SECURITY_SCAN(\"antf-security-scan\", '\\ue9ab'),\n    SETTING(\"antf-setting\", '\\ue9ac'),\n    SHOP(\"antf-shop\", '\\ue9ad'),\n    SHOPPING(\"antf-shopping\", '\\ue9ae'),\n    SIGNAL(\"antf-signal\", '\\ue9af'),\n    SKETCH_CIRCLE(\"antf-sketch-circle\", '\\ue9b0'),\n    SKETCH_SQUARE(\"antf-sketch-square\", '\\ue9b1'),\n    SKIN(\"antf-skin\", '\\ue9b2'),\n    SKYPE(\"antf-skype\", '\\ue9b3'),\n    SLACK_CIRCLE(\"antf-slack-circle\", '\\ue9b4'),\n    SLACK_SQUARE(\"antf-slack-square\", '\\ue9b5'),\n    SLIDERS(\"antf-sliders\", '\\ue9b6'),\n    SMILE(\"antf-smile\", '\\ue9b7'),\n    SNIPPETS(\"antf-snippets\", '\\ue9b8'),\n    SOUND(\"antf-sound\", '\\ue9b9'),\n    STAR(\"antf-star\", '\\ue9ba'),\n    STEP_BACKWARD(\"antf-step-backward\", '\\ue9bb'),\n    STEP_FORWARD(\"antf-step-forward\", '\\ue9bc'),\n    STOP(\"antf-stop\", '\\ue9bd'),\n    SWITCHER(\"antf-switcher\", '\\ue9be'),\n    TABLET(\"antf-tablet\", '\\ue9bf'),\n    TAG(\"antf-tag\", '\\ue9c0'),\n    TAGS(\"antf-tags\", '\\ue9c1'),\n    TAOBAO_CIRCLE(\"antf-taobao-circle\", '\\ue9c2'),\n    TAOBAO_SQUARE(\"antf-taobao-square\", '\\ue9c3'),\n    THUNDERBOLT(\"antf-thunderbolt\", '\\ue9c4'),\n    TOOL(\"antf-tool\", '\\ue9c5'),\n    TRADEMARK_CIRCLE(\"antf-trademark-circle\", '\\ue9c6'),\n    TROPHY(\"antf-trophy\", '\\ue9c7'),\n    TWITTER_CIRCLE(\"antf-twitter-circle\", '\\ue9c8'),\n    TWITTER_SQUARE(\"antf-twitter-square\", '\\ue9c9'),\n    UNLOCK(\"antf-unlock\", '\\ue9ca'),\n    UP_CIRCLE(\"antf-up-circle\", '\\ue9cb'),\n    UP_SQUARE(\"antf-up-square\", '\\ue9cc'),\n    USB(\"antf-usb\", '\\ue9cd'),\n    VIDEO_CAMERA(\"antf-video-camera\", '\\ue9ce'),\n    WALLET(\"antf-wallet\", '\\ue9cf'),\n    WARNING(\"antf-warning\", '\\ue9d0'),\n    WECHAT(\"antf-wechat\", '\\ue9d1'),\n    WEIBO_CIRCLE(\"antf-weibo-circle\", '\\ue9d2'),\n    WEIBO_SQUARE(\"antf-weibo-square\", '\\ue9d3'),\n    WINDOWS(\"antf-windows\", '\\ue9d4'),\n    YAHOO(\"antf-yahoo\", '\\ue9d5'),\n    YOUTUBE(\"antf-youtube\", '\\ue9d6'),\n    YUQUE(\"antf-yuque\", '\\ue9d7'),\n    ZHIHU_CIRCLE(\"antf-zhihu-circle\", '\\ue9d8'),\n    ZHIHU_SQUARE(\"antf-zhihu-square\", '\\ue9d9');\n    \n    public static AntDesignIconsFilled findByDescription(String description) {\n        for (AntDesignIconsFilled font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    AntDesignIconsFilled(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-antdesignicons-pack/src/main/java/org/kordamp/ikonli/antdesignicons/AntDesignIconsFilledIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.antdesignicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class AntDesignIconsFilledIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/antdesignicons/4.0.0/fonts/AntDesign-Icons-Filled.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"antf-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return AntDesignIconsFilled.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"AntDesign-Icons-Filled\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-antdesignicons-pack/src/main/java/org/kordamp/ikonli/antdesignicons/AntDesignIconsFilledIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.antdesignicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class AntDesignIconsFilledIkonProvider implements IkonProvider<AntDesignIconsFilled> {\n    @Override\n    public Class<AntDesignIconsFilled> getIkon() {\n        return AntDesignIconsFilled.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-antdesignicons-pack/src/main/java/org/kordamp/ikonli/antdesignicons/AntDesignIconsOutlined.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.antdesignicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum AntDesignIconsOutlined implements Ikon {\n    ACCOUNT_BOOK(\"anto-account-book\", '\\ue900'),\n    AIM(\"anto-aim\", '\\ue901'),\n    ALERT(\"anto-alert\", '\\ue902'),\n    ALIBABA(\"anto-alibaba\", '\\ue903'),\n    ALIGN_CENTER(\"anto-align-center\", '\\ue904'),\n    ALIGN_LEFT(\"anto-align-left\", '\\ue905'),\n    ALIGN_RIGHT(\"anto-align-right\", '\\ue906'),\n    ALIPAY(\"anto-alipay\", '\\ue908'),\n    ALIPAY_CIRCLE(\"anto-alipay-circle\", '\\ue907'),\n    ALIWANGWANG(\"anto-aliwangwang\", '\\ue909'),\n    ALIYUN(\"anto-aliyun\", '\\ue90a'),\n    AMAZON(\"anto-amazon\", '\\ue90b'),\n    ANDROID(\"anto-android\", '\\ue90c'),\n    ANT_CLOUD(\"anto-ant-cloud\", '\\ue90d'),\n    ANT_DESIGN(\"anto-ant-design\", '\\ue90e'),\n    APARTMENT(\"anto-apartment\", '\\ue90f'),\n    API(\"anto-api\", '\\ue910'),\n    APPLE(\"anto-apple\", '\\ue911'),\n    APPSTORE(\"anto-appstore\", '\\ue913'),\n    APPSTORE_ADD(\"anto-appstore-add\", '\\ue912'),\n    AREA_CHART(\"anto-area-chart\", '\\ue914'),\n    ARROWS_ALT(\"anto-arrows-alt\", '\\ue919'),\n    ARROW_DOWN(\"anto-arrow-down\", '\\ue915'),\n    ARROW_LEFT(\"anto-arrow-left\", '\\ue916'),\n    ARROW_RIGHT(\"anto-arrow-right\", '\\ue917'),\n    ARROW_UP(\"anto-arrow-up\", '\\ue918'),\n    AUDIO(\"anto-audio\", '\\ue91b'),\n    AUDIO_MUTED(\"anto-audio-muted\", '\\ue91a'),\n    AUDIT(\"anto-audit\", '\\ue91c'),\n    BACKWARD(\"anto-backward\", '\\ue91d'),\n    BANK(\"anto-bank\", '\\ue91e'),\n    BARCODE(\"anto-barcode\", '\\ue920'),\n    BARS(\"anto-bars\", '\\ue921'),\n    BAR_CHART(\"anto-bar-chart\", '\\ue91f'),\n    BEHANCE(\"anto-behance\", '\\ue923'),\n    BEHANCE_SQUARE(\"anto-behance-square\", '\\ue922'),\n    BELL(\"anto-bell\", '\\ue924'),\n    BG_COLORS(\"anto-bg-colors\", '\\ue925'),\n    BLOCK(\"anto-block\", '\\ue926'),\n    BOLD(\"anto-bold\", '\\ue927'),\n    BOOK(\"anto-book\", '\\ue928'),\n    BORDER(\"anto-border\", '\\ue931'),\n    BORDERLESS_TABLE(\"anto-borderless-table\", '\\ue932'),\n    BORDER_BOTTOM(\"anto-border-bottom\", '\\ue929'),\n    BORDER_HORIZONTAL(\"anto-border-horizontal\", '\\ue92a'),\n    BORDER_INNER(\"anto-border-inner\", '\\ue92b'),\n    BORDER_LEFT(\"anto-border-left\", '\\ue92c'),\n    BORDER_OUTER(\"anto-border-outer\", '\\ue92d'),\n    BORDER_RIGHT(\"anto-border-right\", '\\ue92e'),\n    BORDER_TOP(\"anto-border-top\", '\\ue92f'),\n    BORDER_VERTICLE(\"anto-border-verticle\", '\\ue930'),\n    BOX_PLOT(\"anto-box-plot\", '\\ue933'),\n    BRANCHES(\"anto-branches\", '\\ue934'),\n    BUG(\"anto-bug\", '\\ue935'),\n    BUILD(\"anto-build\", '\\ue936'),\n    BULB(\"anto-bulb\", '\\ue937'),\n    CALCULATOR(\"anto-calculator\", '\\ue938'),\n    CALENDAR(\"anto-calendar\", '\\ue939'),\n    CAMERA(\"anto-camera\", '\\ue93a'),\n    CAR(\"anto-car\", '\\ue93b'),\n    CARET_DOWN(\"anto-caret-down\", '\\ue93c'),\n    CARET_LEFT(\"anto-caret-left\", '\\ue93d'),\n    CARET_RIGHT(\"anto-caret-right\", '\\ue93e'),\n    CARET_UP(\"anto-caret-up\", '\\ue93f'),\n    CARRY_OUT(\"anto-carry-out\", '\\ue940'),\n    CHECK(\"anto-check\", '\\ue943'),\n    CHECK_CIRCLE(\"anto-check-circle\", '\\ue941'),\n    CHECK_SQUARE(\"anto-check-square\", '\\ue942'),\n    CHROME(\"anto-chrome\", '\\ue944'),\n    CI(\"anto-ci\", '\\ue946'),\n    CI_CIRCLE(\"anto-ci-circle\", '\\ue945'),\n    CLEAR(\"anto-clear\", '\\ue947'),\n    CLOCK_CIRCLE(\"anto-clock-circle\", '\\ue948'),\n    CLOSE(\"anto-close\", '\\ue94b'),\n    CLOSE_CIRCLE(\"anto-close-circle\", '\\ue949'),\n    CLOSE_SQUARE(\"anto-close-square\", '\\ue94a'),\n    CLOUD(\"anto-cloud\", '\\ue950'),\n    CLOUD_DOWNLOAD(\"anto-cloud-download\", '\\ue94c'),\n    CLOUD_SERVER(\"anto-cloud-server\", '\\ue94d'),\n    CLOUD_SYNC(\"anto-cloud-sync\", '\\ue94e'),\n    CLOUD_UPLOAD(\"anto-cloud-upload\", '\\ue94f'),\n    CLUSTER(\"anto-cluster\", '\\ue951'),\n    CODE(\"anto-code\", '\\ue953'),\n    CODEPEN(\"anto-codepen\", '\\ue955'),\n    CODEPEN_CIRCLE(\"anto-codepen-circle\", '\\ue954'),\n    CODE_SANDBOX(\"anto-code-sandbox\", '\\ue952'),\n    COFFEE(\"anto-coffee\", '\\ue956'),\n    COLUMN_HEIGHT(\"anto-column-height\", '\\ue957'),\n    COLUMN_WIDTH(\"anto-column-width\", '\\ue958'),\n    COMMENT(\"anto-comment\", '\\ue959'),\n    COMPASS(\"anto-compass\", '\\ue95a'),\n    COMPRESS(\"anto-compress\", '\\ue95b'),\n    CONSOLE_SQL(\"anto-console-sql\", '\\ue95c'),\n    CONTACTS(\"anto-contacts\", '\\ue95d'),\n    CONTAINER(\"anto-container\", '\\ue95e'),\n    CONTROL(\"anto-control\", '\\ue95f'),\n    COPY(\"anto-copy\", '\\ue960'),\n    COPYRIGHT(\"anto-copyright\", '\\ue962'),\n    COPYRIGHT_CIRCLE(\"anto-copyright-circle\", '\\ue961'),\n    CREDIT_CARD(\"anto-credit-card\", '\\ue963'),\n    CROWN(\"anto-crown\", '\\ue964'),\n    CUSTOMER_SERVICE(\"anto-customer-service\", '\\ue965'),\n    DASH(\"anto-dash\", '\\ue966'),\n    DASHBOARD(\"anto-dashboard\", '\\ue967'),\n    DATABASE(\"anto-database\", '\\ue968'),\n    DELETE(\"anto-delete\", '\\ue96b'),\n    DELETE_COLUMN(\"anto-delete-column\", '\\ue969'),\n    DELETE_ROW(\"anto-delete-row\", '\\ue96a'),\n    DELIVERED_PROCEDURE(\"anto-delivered-procedure\", '\\ue96c'),\n    DEPLOYMENT_UNIT(\"anto-deployment-unit\", '\\ue96d'),\n    DESKTOP(\"anto-desktop\", '\\ue96e'),\n    DIFF(\"anto-diff\", '\\ue96f'),\n    DINGDING(\"anto-dingding\", '\\ue970'),\n    DINGTALK(\"anto-dingtalk\", '\\ue971'),\n    DISCONNECT(\"anto-disconnect\", '\\ue972'),\n    DISLIKE(\"anto-dislike\", '\\ue973'),\n    DOLLAR(\"anto-dollar\", '\\ue975'),\n    DOLLAR_CIRCLE(\"anto-dollar-circle\", '\\ue974'),\n    DOT_CHART(\"anto-dot-chart\", '\\ue976'),\n    DOUBLE_LEFT(\"anto-double-left\", '\\ue977'),\n    DOUBLE_RIGHT(\"anto-double-right\", '\\ue978'),\n    DOWN(\"anto-down\", '\\ue97b'),\n    DOWNLOAD(\"anto-download\", '\\ue97c'),\n    DOWN_CIRCLE(\"anto-down-circle\", '\\ue979'),\n    DOWN_SQUARE(\"anto-down-square\", '\\ue97a'),\n    DRAG(\"anto-drag\", '\\ue97d'),\n    DRIBBBLE(\"anto-dribbble\", '\\ue97f'),\n    DRIBBBLE_SQUARE(\"anto-dribbble-square\", '\\ue97e'),\n    DROPBOX(\"anto-dropbox\", '\\ue980'),\n    EDIT(\"anto-edit\", '\\ue981'),\n    ELLIPSIS(\"anto-ellipsis\", '\\ue982'),\n    ENTER(\"anto-enter\", '\\ue983'),\n    ENVIRONMENT(\"anto-environment\", '\\ue984'),\n    EURO(\"anto-euro\", '\\ue986'),\n    EURO_CIRCLE(\"anto-euro-circle\", '\\ue985'),\n    EXCEPTION(\"anto-exception\", '\\ue987'),\n    EXCLAMATION(\"anto-exclamation\", '\\ue989'),\n    EXCLAMATION_CIRCLE(\"anto-exclamation-circle\", '\\ue988'),\n    EXPAND(\"anto-expand\", '\\ue98b'),\n    EXPAND_ALT(\"anto-expand-alt\", '\\ue98a'),\n    EXPERIMENT(\"anto-experiment\", '\\ue98c'),\n    EXPORT(\"anto-export\", '\\ue98d'),\n    EYE(\"anto-eye\", '\\ue98f'),\n    EYE_INVISIBLE(\"anto-eye-invisible\", '\\ue98e'),\n    FACEBOOK(\"anto-facebook\", '\\ue990'),\n    FALL(\"anto-fall\", '\\ue991'),\n    FAST_BACKWARD(\"anto-fast-backward\", '\\ue992'),\n    FAST_FORWARD(\"anto-fast-forward\", '\\ue993'),\n    FIELD_BINARY(\"anto-field-binary\", '\\ue994'),\n    FIELD_NUMBER(\"anto-field-number\", '\\ue995'),\n    FIELD_STRING(\"anto-field-string\", '\\ue996'),\n    FIELD_TIME(\"anto-field-time\", '\\ue997'),\n    FILE(\"anto-file\", '\\ue9a9'),\n    FILE_ADD(\"anto-file-add\", '\\ue998'),\n    FILE_DONE(\"anto-file-done\", '\\ue999'),\n    FILE_EXCEL(\"anto-file-excel\", '\\ue99a'),\n    FILE_EXCLAMATION(\"anto-file-exclamation\", '\\ue99b'),\n    FILE_GIF(\"anto-file-gif\", '\\ue99c'),\n    FILE_IMAGE(\"anto-file-image\", '\\ue99d'),\n    FILE_JPG(\"anto-file-jpg\", '\\ue99e'),\n    FILE_MARKDOWN(\"anto-file-markdown\", '\\ue99f'),\n    FILE_PDF(\"anto-file-pdf\", '\\ue9a0'),\n    FILE_PPT(\"anto-file-ppt\", '\\ue9a1'),\n    FILE_PROTECT(\"anto-file-protect\", '\\ue9a2'),\n    FILE_SEARCH(\"anto-file-search\", '\\ue9a3'),\n    FILE_SYNC(\"anto-file-sync\", '\\ue9a4'),\n    FILE_TEXT(\"anto-file-text\", '\\ue9a5'),\n    FILE_UNKNOWN(\"anto-file-unknown\", '\\ue9a6'),\n    FILE_WORD(\"anto-file-word\", '\\ue9a7'),\n    FILE_ZIP(\"anto-file-zip\", '\\ue9a8'),\n    FILTER(\"anto-filter\", '\\ue9aa'),\n    FIRE(\"anto-fire\", '\\ue9ab'),\n    FLAG(\"anto-flag\", '\\ue9ac'),\n    FOLDER(\"anto-folder\", '\\ue9b0'),\n    FOLDER_ADD(\"anto-folder-add\", '\\ue9ad'),\n    FOLDER_OPEN(\"anto-folder-open\", '\\ue9ae'),\n    FOLDER_VIEW(\"anto-folder-view\", '\\ue9af'),\n    FONT_COLORS(\"anto-font-colors\", '\\ue9b1'),\n    FONT_SIZE(\"anto-font-size\", '\\ue9b2'),\n    FORK(\"anto-fork\", '\\ue9b3'),\n    FORM(\"anto-form\", '\\ue9b4'),\n    FORMAT_PAINTER(\"anto-format-painter\", '\\ue9b5'),\n    FORWARD(\"anto-forward\", '\\ue9b6'),\n    FROWN(\"anto-frown\", '\\ue9b7'),\n    FULLSCREEN(\"anto-fullscreen\", '\\ue9b9'),\n    FULLSCREEN_EXIT(\"anto-fullscreen-exit\", '\\ue9b8'),\n    FUNCTION(\"anto-function\", '\\ue9ba'),\n    FUND(\"anto-fund\", '\\ue9bd'),\n    FUND_PROJECTION_SCREEN(\"anto-fund-projection-screen\", '\\ue9bb'),\n    FUND_VIEW(\"anto-fund-view\", '\\ue9bc'),\n    FUNNEL_PLOT(\"anto-funnel-plot\", '\\ue9be'),\n    GATEWAY(\"anto-gateway\", '\\ue9bf'),\n    GIF(\"anto-gif\", '\\ue9c0'),\n    GIFT(\"anto-gift\", '\\ue9c1'),\n    GITHUB(\"anto-github\", '\\ue9c2'),\n    GITLAB(\"anto-gitlab\", '\\ue9c3'),\n    GLOBAL(\"anto-global\", '\\ue9c4'),\n    GOLD(\"anto-gold\", '\\ue9c5'),\n    GOOGLE(\"anto-google\", '\\ue9c7'),\n    GOOGLE_PLUS(\"anto-google-plus\", '\\ue9c6'),\n    GROUP(\"anto-group\", '\\ue9c8'),\n    HDD(\"anto-hdd\", '\\ue9c9'),\n    HEART(\"anto-heart\", '\\ue9ca'),\n    HEAT_MAP(\"anto-heat-map\", '\\ue9cb'),\n    HIGHLIGHT(\"anto-highlight\", '\\ue9cc'),\n    HISTORY(\"anto-history\", '\\ue9cd'),\n    HOME(\"anto-home\", '\\ue9ce'),\n    HOURGLASS(\"anto-hourglass\", '\\ue9cf'),\n    HTML5(\"anto-html5\", '\\ue9d0'),\n    IDCARD(\"anto-idcard\", '\\ue9d1'),\n    IE(\"anto-ie\", '\\ue9d2'),\n    IMPORT(\"anto-import\", '\\ue9d3'),\n    INBOX(\"anto-inbox\", '\\ue9d4'),\n    INFO(\"anto-info\", '\\ue9d6'),\n    INFO_CIRCLE(\"anto-info-circle\", '\\ue9d5'),\n    INSERT_ROW_ABOVE(\"anto-insert-row-above\", '\\ue9d7'),\n    INSERT_ROW_BELOW(\"anto-insert-row-below\", '\\ue9d8'),\n    INSERT_ROW_LEFT(\"anto-insert-row-left\", '\\ue9d9'),\n    INSERT_ROW_RIGHT(\"anto-insert-row-right\", '\\ue9da'),\n    INSTAGRAM(\"anto-instagram\", '\\ue9db'),\n    INSURANCE(\"anto-insurance\", '\\ue9dc'),\n    INTERACTION(\"anto-interaction\", '\\ue9dd'),\n    ISSUES_CLOSE(\"anto-issues-close\", '\\ue9de'),\n    ITALIC(\"anto-italic\", '\\ue9df'),\n    KEY(\"anto-key\", '\\ue9e0'),\n    LAPTOP(\"anto-laptop\", '\\ue9e1'),\n    LAYOUT(\"anto-layout\", '\\ue9e2'),\n    LEFT(\"anto-left\", '\\ue9e5'),\n    LEFT_CIRCLE(\"anto-left-circle\", '\\ue9e3'),\n    LEFT_SQUARE(\"anto-left-square\", '\\ue9e4'),\n    LIKE(\"anto-like\", '\\ue9e6'),\n    LINE(\"anto-line\", '\\ue9e9'),\n    LINE_CHART(\"anto-line-chart\", '\\ue9e7'),\n    LINE_HEIGHT(\"anto-line-height\", '\\ue9e8'),\n    LINK(\"anto-link\", '\\ue9ea'),\n    LINKEDIN(\"anto-linkedin\", '\\ue9eb'),\n    LOADING(\"anto-loading\", '\\ue9ed'),\n    LOADING_3_QUARTERS(\"anto-loading-3-quarters\", '\\ue9ec'),\n    LOCK(\"anto-lock\", '\\ue9ee'),\n    LOGIN(\"anto-login\", '\\ue9ef'),\n    LOGOUT(\"anto-logout\", '\\ue9f0'),\n    MAC_COMMAND(\"anto-mac-command\", '\\ue9f1'),\n    MAIL(\"anto-mail\", '\\ue9f2'),\n    MAN(\"anto-man\", '\\ue9f3'),\n    MEDICINE_BOX(\"anto-medicine-box\", '\\ue9f4'),\n    MEDIUM(\"anto-medium\", '\\ue9f6'),\n    MEDIUM_WORKMARK(\"anto-medium-workmark\", '\\ue9f5'),\n    MEH(\"anto-meh\", '\\ue9f7'),\n    MENU(\"anto-menu\", '\\ue9fa'),\n    MENU_FOLD(\"anto-menu-fold\", '\\ue9f8'),\n    MENU_UNFOLD(\"anto-menu-unfold\", '\\ue9f9'),\n    MERGE_CELLS(\"anto-merge-cells\", '\\ue9fb'),\n    MESSAGE(\"anto-message\", '\\ue9fc'),\n    MINUS(\"anto-minus\", '\\ue9ff'),\n    MINUS_CIRCLE(\"anto-minus-circle\", '\\ue9fd'),\n    MINUS_SQUARE(\"anto-minus-square\", '\\ue9fe'),\n    MOBILE(\"anto-mobile\", '\\uea00'),\n    MONEY_COLLECT(\"anto-money-collect\", '\\uea01'),\n    MONITOR(\"anto-monitor\", '\\uea02'),\n    MORE(\"anto-more\", '\\uea03'),\n    NODE_COLLAPSE(\"anto-node-collapse\", '\\uea04'),\n    NODE_EXPAND(\"anto-node-expand\", '\\uea05'),\n    NODE_INDEX(\"anto-node-index\", '\\uea06'),\n    NOTIFICATION(\"anto-notification\", '\\uea07'),\n    NUMBER(\"anto-number\", '\\uea08'),\n    ONE_TO_ONE(\"anto-one-to-one\", '\\uea09'),\n    ORDERED_LIST(\"anto-ordered-list\", '\\uea0a'),\n    PAPER_CLIP(\"anto-paper-clip\", '\\uea0b'),\n    PARTITION(\"anto-partition\", '\\uea0c'),\n    PAUSE(\"anto-pause\", '\\uea0e'),\n    PAUSE_CIRCLE(\"anto-pause-circle\", '\\uea0d'),\n    PAY_CIRCLE(\"anto-pay-circle\", '\\uea0f'),\n    PERCENTAGE(\"anto-percentage\", '\\uea10'),\n    PHONE(\"anto-phone\", '\\uea11'),\n    PICTURE(\"anto-picture\", '\\uea15'),\n    PIC_CENTER(\"anto-pic-center\", '\\uea12'),\n    PIC_LEFT(\"anto-pic-left\", '\\uea13'),\n    PIC_RIGHT(\"anto-pic-right\", '\\uea14'),\n    PIE_CHART(\"anto-pie-chart\", '\\uea16'),\n    PLAY_CIRCLE(\"anto-play-circle\", '\\uea17'),\n    PLAY_SQUARE(\"anto-play-square\", '\\uea18'),\n    PLUS(\"anto-plus\", '\\uea1b'),\n    PLUS_CIRCLE(\"anto-plus-circle\", '\\uea19'),\n    PLUS_SQUARE(\"anto-plus-square\", '\\uea1a'),\n    POUND(\"anto-pound\", '\\uea1d'),\n    POUND_CIRCLE(\"anto-pound-circle\", '\\uea1c'),\n    POWEROFF(\"anto-poweroff\", '\\uea1e'),\n    PRINTER(\"anto-printer\", '\\uea1f'),\n    PROFILE(\"anto-profile\", '\\uea20'),\n    PROJECT(\"anto-project\", '\\uea21'),\n    PROPERTY_SAFETY(\"anto-property-safety\", '\\uea22'),\n    PULL_REQUEST(\"anto-pull-request\", '\\uea23'),\n    PUSHPIN(\"anto-pushpin\", '\\uea24'),\n    QQ(\"anto-qq\", '\\uea25'),\n    QRCODE(\"anto-qrcode\", '\\uea26'),\n    QUESTION(\"anto-question\", '\\uea28'),\n    QUESTION_CIRCLE(\"anto-question-circle\", '\\uea27'),\n    RADAR_CHART(\"anto-radar-chart\", '\\uea29'),\n    RADIUS_BOTTOMLEFT(\"anto-radius-bottomleft\", '\\uea2a'),\n    RADIUS_BOTTOMRIGHT(\"anto-radius-bottomright\", '\\uea2b'),\n    RADIUS_SETTING(\"anto-radius-setting\", '\\uea2c'),\n    RADIUS_UPLEFT(\"anto-radius-upleft\", '\\uea2d'),\n    RADIUS_UPRIGHT(\"anto-radius-upright\", '\\uea2e'),\n    READ(\"anto-read\", '\\uea2f'),\n    RECONCILIATION(\"anto-reconciliation\", '\\uea30'),\n    REDDIT(\"anto-reddit\", '\\uea32'),\n    REDO(\"anto-redo\", '\\uea33'),\n    RED_ENVELOPE(\"anto-red-envelope\", '\\uea31'),\n    RELOAD(\"anto-reload\", '\\uea34'),\n    REST(\"anto-rest\", '\\uea35'),\n    RETWEET(\"anto-retweet\", '\\uea36'),\n    RIGHT(\"anto-right\", '\\uea39'),\n    RIGHT_CIRCLE(\"anto-right-circle\", '\\uea37'),\n    RIGHT_SQUARE(\"anto-right-square\", '\\uea38'),\n    RISE(\"anto-rise\", '\\uea3a'),\n    ROBOT(\"anto-robot\", '\\uea3b'),\n    ROCKET(\"anto-rocket\", '\\uea3c'),\n    ROLLBACK(\"anto-rollback\", '\\uea3d'),\n    ROTATE_LEFT(\"anto-rotate-left\", '\\uea3e'),\n    ROTATE_RIGHT(\"anto-rotate-right\", '\\uea3f'),\n    SAFETY(\"anto-safety\", '\\uea41'),\n    SAFETY_CERTIFICATE(\"anto-safety-certificate\", '\\uea40'),\n    SAVE(\"anto-save\", '\\uea42'),\n    SCAN(\"anto-scan\", '\\uea43'),\n    SCHEDULE(\"anto-schedule\", '\\uea44'),\n    SCISSOR(\"anto-scissor\", '\\uea45'),\n    SEARCH(\"anto-search\", '\\uea46'),\n    SECURITY_SCAN(\"anto-security-scan\", '\\uea47'),\n    SELECT(\"anto-select\", '\\uea48'),\n    SEND(\"anto-send\", '\\uea49'),\n    SETTING(\"anto-setting\", '\\uea4a'),\n    SHAKE(\"anto-shake\", '\\uea4b'),\n    SHARE_ALT(\"anto-share-alt\", '\\uea4c'),\n    SHOP(\"anto-shop\", '\\uea4d'),\n    SHOPPING(\"anto-shopping\", '\\uea4f'),\n    SHOPPING_CART(\"anto-shopping-cart\", '\\uea4e'),\n    SHRINK(\"anto-shrink\", '\\uea50'),\n    SISTERNODE(\"anto-sisternode\", '\\uea51'),\n    SKETCH(\"anto-sketch\", '\\uea52'),\n    SKIN(\"anto-skin\", '\\uea53'),\n    SKYPE(\"anto-skype\", '\\uea54'),\n    SLACK(\"anto-slack\", '\\uea56'),\n    SLACK_SQUARE(\"anto-slack-square\", '\\uea55'),\n    SLIDERS(\"anto-sliders\", '\\uea57'),\n    SMALL_DASH(\"anto-small-dash\", '\\uea58'),\n    SMILE(\"anto-smile\", '\\uea59'),\n    SNIPPETS(\"anto-snippets\", '\\uea5a'),\n    SOLUTION(\"anto-solution\", '\\uea5b'),\n    SORT_ASCENDING(\"anto-sort-ascending\", '\\uea5c'),\n    SORT_DESCENDING(\"anto-sort-descending\", '\\uea5d'),\n    SOUND(\"anto-sound\", '\\uea5e'),\n    SPLIT_CELLS(\"anto-split-cells\", '\\uea5f'),\n    STAR(\"anto-star\", '\\uea60'),\n    STEP_BACKWARD(\"anto-step-backward\", '\\uea61'),\n    STEP_FORWARD(\"anto-step-forward\", '\\uea62'),\n    STOCK(\"anto-stock\", '\\uea63'),\n    STOP(\"anto-stop\", '\\uea64'),\n    STRIKETHROUGH(\"anto-strikethrough\", '\\uea65'),\n    SUBNODE(\"anto-subnode\", '\\uea66'),\n    SWAP(\"anto-swap\", '\\uea69'),\n    SWAP_LEFT(\"anto-swap-left\", '\\uea67'),\n    SWAP_RIGHT(\"anto-swap-right\", '\\uea68'),\n    SWITCHER(\"anto-switcher\", '\\uea6a'),\n    SYNC(\"anto-sync\", '\\uea6b'),\n    TABLE(\"anto-table\", '\\uea6c'),\n    TABLET(\"anto-tablet\", '\\uea6d'),\n    TAG(\"anto-tag\", '\\uea6e'),\n    TAGS(\"anto-tags\", '\\uea6f'),\n    TAOBAO(\"anto-taobao\", '\\uea71'),\n    TAOBAO_CIRCLE(\"anto-taobao-circle\", '\\uea70'),\n    TEAM(\"anto-team\", '\\uea72'),\n    THUNDERBOLT(\"anto-thunderbolt\", '\\uea73'),\n    TOOL(\"anto-tool\", '\\uea75'),\n    TO_TOP(\"anto-to-top\", '\\uea74'),\n    TRADEMARK(\"anto-trademark\", '\\uea77'),\n    TRADEMARK_CIRCLE(\"anto-trademark-circle\", '\\uea76'),\n    TRANSACTION(\"anto-transaction\", '\\uea78'),\n    TRANSLATION(\"anto-translation\", '\\uea79'),\n    TROPHY(\"anto-trophy\", '\\uea7a'),\n    TWITTER(\"anto-twitter\", '\\uea7b'),\n    UNDERLINE(\"anto-underline\", '\\uea7c'),\n    UNDO(\"anto-undo\", '\\uea7d'),\n    UNGROUP(\"anto-ungroup\", '\\uea7e'),\n    UNLOCK(\"anto-unlock\", '\\uea7f'),\n    UNORDERED_LIST(\"anto-unordered-list\", '\\uea80'),\n    UP(\"anto-up\", '\\uea83'),\n    UPLOAD(\"anto-upload\", '\\uea84'),\n    UP_CIRCLE(\"anto-up-circle\", '\\uea81'),\n    UP_SQUARE(\"anto-up-square\", '\\uea82'),\n    USB(\"anto-usb\", '\\uea85'),\n    USER(\"anto-user\", '\\uea89'),\n    USERGROUP_ADD(\"anto-usergroup-add\", '\\uea8a'),\n    USERGROUP_DELETE(\"anto-usergroup-delete\", '\\uea8b'),\n    USER_ADD(\"anto-user-add\", '\\uea86'),\n    USER_DELETE(\"anto-user-delete\", '\\uea87'),\n    USER_SWITCH(\"anto-user-switch\", '\\uea88'),\n    VERIFIED(\"anto-verified\", '\\uea8c'),\n    VERTICAL_ALIGN_BOTTOM(\"anto-vertical-align-bottom\", '\\uea8d'),\n    VERTICAL_ALIGN_MIDDLE(\"anto-vertical-align-middle\", '\\uea8e'),\n    VERTICAL_ALIGN_TOP(\"anto-vertical-align-top\", '\\uea8f'),\n    VERTICAL_LEFT(\"anto-vertical-left\", '\\uea90'),\n    VERTICAL_RIGHT(\"anto-vertical-right\", '\\uea91'),\n    VIDEO_CAMERA(\"anto-video-camera\", '\\uea93'),\n    VIDEO_CAMERA_ADD(\"anto-video-camera-add\", '\\uea92'),\n    WALLET(\"anto-wallet\", '\\uea94'),\n    WARNING(\"anto-warning\", '\\uea95'),\n    WECHAT(\"anto-wechat\", '\\uea96'),\n    WEIBO(\"anto-weibo\", '\\uea99'),\n    WEIBO_CIRCLE(\"anto-weibo-circle\", '\\uea97'),\n    WEIBO_SQUARE(\"anto-weibo-square\", '\\uea98'),\n    WHATS_APP(\"anto-whats-app\", '\\uea9a'),\n    WIFI(\"anto-wifi\", '\\uea9b'),\n    WINDOWS(\"anto-windows\", '\\uea9c'),\n    WOMAN(\"anto-woman\", '\\uea9d'),\n    YAHOO(\"anto-yahoo\", '\\uea9e'),\n    YOUTUBE(\"anto-youtube\", '\\uea9f'),\n    YUQUE(\"anto-yuque\", '\\ueaa0'),\n    ZHIHU(\"anto-zhihu\", '\\ueaa1'),\n    ZOOM_IN(\"anto-zoom-in\", '\\ueaa2'),\n    ZOOM_OUT(\"anto-zoom-out\", '\\ueaa3');\n    \n    public static AntDesignIconsOutlined findByDescription(String description) {\n        for (AntDesignIconsOutlined font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    AntDesignIconsOutlined(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-antdesignicons-pack/src/main/java/org/kordamp/ikonli/antdesignicons/AntDesignIconsOutlinedIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.antdesignicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class AntDesignIconsOutlinedIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/antdesignicons/4.0.0/fonts/AntDesign-Icons-Outlined.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"anto-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return AntDesignIconsOutlined.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"AntDesign-Icons-Outlined\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-antdesignicons-pack/src/main/java/org/kordamp/ikonli/antdesignicons/AntDesignIconsOutlinedIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.antdesignicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class AntDesignIconsOutlinedIkonProvider implements IkonProvider<AntDesignIconsOutlined> {\n    @Override\n    public Class<AntDesignIconsOutlined> getIkon() {\n        return AntDesignIconsOutlined.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-antdesignicons-pack/src/main/resources/META-INF/resources/antdesignicons/4.0.0/css/antdesignicons-filled.css",
    "content": "@font-face {\n  font-family: 'AntDesign-Icons-Filled';\n  src:  url('../fonts/AntDesign-Icons-Filled.eot?v1adt0');\n  src:  url('../fonts/AntDesign-Icons-Filled.eot?v1adt0#iefix') format('embedded-opentype'),\n    url('../fonts/AntDesign-Icons-Filled.ttf?v1adt0') format('truetype'),\n    url('../fonts/AntDesign-Icons-Filled.woff?v1adt0') format('woff'),\n    url('../fonts/AntDesign-Icons-Filled.svg?v1adt0#AntDesign-Icons-Filled') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"antf\"], [class*=\" antf\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'AntDesign-Icons-Filled' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.antf-account-book:before {\n  content: \"\\e900\";\n}\n.antf-alert:before {\n  content: \"\\e901\";\n}\n.antf-alipay-circle:before {\n  content: \"\\e902\";\n}\n.antf-alipay-square:before {\n  content: \"\\e903\";\n}\n.antf-aliwangwang:before {\n  content: \"\\e904\";\n}\n.antf-amazon-circle:before {\n  content: \"\\e905\";\n}\n.antf-amazon-square:before {\n  content: \"\\e906\";\n}\n.antf-android:before {\n  content: \"\\e907\";\n}\n.antf-api:before {\n  content: \"\\e908\";\n}\n.antf-apple:before {\n  content: \"\\e909\";\n}\n.antf-appstore:before {\n  content: \"\\e90a\";\n}\n.antf-audio:before {\n  content: \"\\e90b\";\n}\n.antf-backward:before {\n  content: \"\\e90c\";\n}\n.antf-bank:before {\n  content: \"\\e90d\";\n}\n.antf-behance-circle:before {\n  content: \"\\e90e\";\n}\n.antf-behance-square:before {\n  content: \"\\e90f\";\n}\n.antf-bell:before {\n  content: \"\\e910\";\n}\n.antf-book:before {\n  content: \"\\e911\";\n}\n.antf-box-plot:before {\n  content: \"\\e912\";\n}\n.antf-bug:before {\n  content: \"\\e913\";\n}\n.antf-build:before {\n  content: \"\\e914\";\n}\n.antf-bulb:before {\n  content: \"\\e915\";\n}\n.antf-calculator:before {\n  content: \"\\e916\";\n}\n.antf-calendar:before {\n  content: \"\\e917\";\n}\n.antf-camera:before {\n  content: \"\\e918\";\n}\n.antf-car:before {\n  content: \"\\e919\";\n}\n.antf-caret-down:before {\n  content: \"\\e91a\";\n}\n.antf-caret-left:before {\n  content: \"\\e91b\";\n}\n.antf-caret-right:before {\n  content: \"\\e91c\";\n}\n.antf-caret-up:before {\n  content: \"\\e91d\";\n}\n.antf-carry-out:before {\n  content: \"\\e91e\";\n}\n.antf-check-circle:before {\n  content: \"\\e91f\";\n}\n.antf-check-square:before {\n  content: \"\\e920\";\n}\n.antf-chrome:before {\n  content: \"\\e921\";\n}\n.antf-ci-circle:before {\n  content: \"\\e922\";\n}\n.antf-clock-circle:before {\n  content: \"\\e923\";\n}\n.antf-close-circle:before {\n  content: \"\\e924\";\n}\n.antf-close-square:before {\n  content: \"\\e925\";\n}\n.antf-cloud:before {\n  content: \"\\e926\";\n}\n.antf-code-sandbox-circle:before {\n  content: \"\\e927\";\n}\n.antf-code-sandbox-square:before {\n  content: \"\\e928\";\n}\n.antf-code:before {\n  content: \"\\e929\";\n}\n.antf-codepen-circle:before {\n  content: \"\\e92a\";\n}\n.antf-codepen-square:before {\n  content: \"\\e92b\";\n}\n.antf-compass:before {\n  content: \"\\e92c\";\n}\n.antf-contacts:before {\n  content: \"\\e92d\";\n}\n.antf-container:before {\n  content: \"\\e92e\";\n}\n.antf-control:before {\n  content: \"\\e92f\";\n}\n.antf-copy:before {\n  content: \"\\e930\";\n}\n.antf-copyright-circle:before {\n  content: \"\\e931\";\n}\n.antf-credit-card:before {\n  content: \"\\e932\";\n}\n.antf-crown:before {\n  content: \"\\e933\";\n}\n.antf-customer-service:before {\n  content: \"\\e934\";\n}\n.antf-dashboard:before {\n  content: \"\\e935\";\n}\n.antf-database:before {\n  content: \"\\e936\";\n}\n.antf-delete:before {\n  content: \"\\e937\";\n}\n.antf-diff:before {\n  content: \"\\e938\";\n}\n.antf-dingtalk-circle:before {\n  content: \"\\e939\";\n}\n.antf-dingtalk-square:before {\n  content: \"\\e93a\";\n}\n.antf-dislike:before {\n  content: \"\\e93b\";\n}\n.antf-dollar-circle:before {\n  content: \"\\e93c\";\n}\n.antf-down-circle:before {\n  content: \"\\e93d\";\n}\n.antf-down-square:before {\n  content: \"\\e93e\";\n}\n.antf-dribbble-circle:before {\n  content: \"\\e93f\";\n}\n.antf-dribbble-square:before {\n  content: \"\\e940\";\n}\n.antf-dropbox-circle:before {\n  content: \"\\e941\";\n}\n.antf-dropbox-square:before {\n  content: \"\\e942\";\n}\n.antf-edit:before {\n  content: \"\\e943\";\n}\n.antf-environment:before {\n  content: \"\\e944\";\n}\n.antf-euro-circle:before {\n  content: \"\\e945\";\n}\n.antf-exclamation-circle:before {\n  content: \"\\e946\";\n}\n.antf-experiment:before {\n  content: \"\\e947\";\n}\n.antf-eye-invisible:before {\n  content: \"\\e948\";\n}\n.antf-eye:before {\n  content: \"\\e949\";\n}\n.antf-facebook:before {\n  content: \"\\e94a\";\n}\n.antf-fast-backward:before {\n  content: \"\\e94b\";\n}\n.antf-fast-forward:before {\n  content: \"\\e94c\";\n}\n.antf-file-add:before {\n  content: \"\\e94d\";\n}\n.antf-file-excel:before {\n  content: \"\\e94e\";\n}\n.antf-file-exclamation:before {\n  content: \"\\e94f\";\n}\n.antf-file-image:before {\n  content: \"\\e950\";\n}\n.antf-file-markdown:before {\n  content: \"\\e951\";\n}\n.antf-file-pdf:before {\n  content: \"\\e952\";\n}\n.antf-file-ppt:before {\n  content: \"\\e953\";\n}\n.antf-file-text:before {\n  content: \"\\e954\";\n}\n.antf-file-unknown:before {\n  content: \"\\e955\";\n}\n.antf-file-word:before {\n  content: \"\\e956\";\n}\n.antf-file-zip:before {\n  content: \"\\e957\";\n}\n.antf-file:before {\n  content: \"\\e958\";\n}\n.antf-filter:before {\n  content: \"\\e959\";\n}\n.antf-fire:before {\n  content: \"\\e95a\";\n}\n.antf-flag:before {\n  content: \"\\e95b\";\n}\n.antf-folder-add:before {\n  content: \"\\e95c\";\n}\n.antf-folder-open:before {\n  content: \"\\e95d\";\n}\n.antf-folder:before {\n  content: \"\\e95e\";\n}\n.antf-format-painter:before {\n  content: \"\\e95f\";\n}\n.antf-forward:before {\n  content: \"\\e960\";\n}\n.antf-frown:before {\n  content: \"\\e961\";\n}\n.antf-fund:before {\n  content: \"\\e962\";\n}\n.antf-funnel-plot:before {\n  content: \"\\e963\";\n}\n.antf-gift:before {\n  content: \"\\e964\";\n}\n.antf-github:before {\n  content: \"\\e965\";\n}\n.antf-gitlab:before {\n  content: \"\\e966\";\n}\n.antf-gold:before {\n  content: \"\\e967\";\n}\n.antf-golden:before {\n  content: \"\\e968\";\n}\n.antf-google-circle:before {\n  content: \"\\e969\";\n}\n.antf-google-plus-circle:before {\n  content: \"\\e96a\";\n}\n.antf-google-plus-square:before {\n  content: \"\\e96b\";\n}\n.antf-google-square:before {\n  content: \"\\e96c\";\n}\n.antf-hdd:before {\n  content: \"\\e96d\";\n}\n.antf-heart:before {\n  content: \"\\e96e\";\n}\n.antf-highlight:before {\n  content: \"\\e96f\";\n}\n.antf-home:before {\n  content: \"\\e970\";\n}\n.antf-hourglass:before {\n  content: \"\\e971\";\n}\n.antf-html5:before {\n  content: \"\\e972\";\n}\n.antf-idcard:before {\n  content: \"\\e973\";\n}\n.antf-ie-circle:before {\n  content: \"\\e974\";\n}\n.antf-ie-square:before {\n  content: \"\\e975\";\n}\n.antf-info-circle:before {\n  content: \"\\e976\";\n}\n.antf-instagram:before {\n  content: \"\\e977\";\n}\n.antf-insurance:before {\n  content: \"\\e978\";\n}\n.antf-interaction:before {\n  content: \"\\e979\";\n}\n.antf-layout:before {\n  content: \"\\e97a\";\n}\n.antf-left-circle:before {\n  content: \"\\e97b\";\n}\n.antf-left-square:before {\n  content: \"\\e97c\";\n}\n.antf-like:before {\n  content: \"\\e97d\";\n}\n.antf-linkedin:before {\n  content: \"\\e97e\";\n}\n.antf-lock:before {\n  content: \"\\e97f\";\n}\n.antf-mac-command:before {\n  content: \"\\e980\";\n}\n.antf-mail:before {\n  content: \"\\e981\";\n}\n.antf-medicine-box:before {\n  content: \"\\e982\";\n}\n.antf-medium-circle:before {\n  content: \"\\e983\";\n}\n.antf-medium-square:before {\n  content: \"\\e984\";\n}\n.antf-meh:before {\n  content: \"\\e985\";\n}\n.antf-message:before {\n  content: \"\\e986\";\n}\n.antf-minus-circle:before {\n  content: \"\\e987\";\n}\n.antf-minus-square:before {\n  content: \"\\e988\";\n}\n.antf-mobile:before {\n  content: \"\\e989\";\n}\n.antf-money-collect:before {\n  content: \"\\e98a\";\n}\n.antf-notification:before {\n  content: \"\\e98b\";\n}\n.antf-pause-circle:before {\n  content: \"\\e98c\";\n}\n.antf-pay-circle:before {\n  content: \"\\e98d\";\n}\n.antf-phone:before {\n  content: \"\\e98e\";\n}\n.antf-picture:before {\n  content: \"\\e98f\";\n}\n.antf-pie-chart:before {\n  content: \"\\e990\";\n}\n.antf-play-circle:before {\n  content: \"\\e991\";\n}\n.antf-play-square:before {\n  content: \"\\e992\";\n}\n.antf-plus-circle:before {\n  content: \"\\e993\";\n}\n.antf-plus-square:before {\n  content: \"\\e994\";\n}\n.antf-pound-circle:before {\n  content: \"\\e995\";\n}\n.antf-printer:before {\n  content: \"\\e996\";\n}\n.antf-profile:before {\n  content: \"\\e997\";\n}\n.antf-project:before {\n  content: \"\\e998\";\n}\n.antf-property-safety:before {\n  content: \"\\e999\";\n}\n.antf-pushpin:before {\n  content: \"\\e99a\";\n}\n.antf-qq-circle:before {\n  content: \"\\e99b\";\n}\n.antf-qq-square:before {\n  content: \"\\e99c\";\n}\n.antf-question-circle:before {\n  content: \"\\e99d\";\n}\n.antf-read:before {\n  content: \"\\e99e\";\n}\n.antf-reconciliation:before {\n  content: \"\\e99f\";\n}\n.antf-red-envelope:before {\n  content: \"\\e9a0\";\n}\n.antf-reddit-circle:before {\n  content: \"\\e9a1\";\n}\n.antf-reddit-square:before {\n  content: \"\\e9a2\";\n}\n.antf-rest:before {\n  content: \"\\e9a3\";\n}\n.antf-right-circle:before {\n  content: \"\\e9a4\";\n}\n.antf-right-square:before {\n  content: \"\\e9a5\";\n}\n.antf-robot:before {\n  content: \"\\e9a6\";\n}\n.antf-rocket:before {\n  content: \"\\e9a7\";\n}\n.antf-safety-certificate:before {\n  content: \"\\e9a8\";\n}\n.antf-save:before {\n  content: \"\\e9a9\";\n}\n.antf-schedule:before {\n  content: \"\\e9aa\";\n}\n.antf-security-scan:before {\n  content: \"\\e9ab\";\n}\n.antf-setting:before {\n  content: \"\\e9ac\";\n}\n.antf-shop:before {\n  content: \"\\e9ad\";\n}\n.antf-shopping:before {\n  content: \"\\e9ae\";\n}\n.antf-signal:before {\n  content: \"\\e9af\";\n}\n.antf-sketch-circle:before {\n  content: \"\\e9b0\";\n}\n.antf-sketch-square:before {\n  content: \"\\e9b1\";\n}\n.antf-skin:before {\n  content: \"\\e9b2\";\n}\n.antf-skype:before {\n  content: \"\\e9b3\";\n}\n.antf-slack-circle:before {\n  content: \"\\e9b4\";\n}\n.antf-slack-square:before {\n  content: \"\\e9b5\";\n}\n.antf-sliders:before {\n  content: \"\\e9b6\";\n}\n.antf-smile:before {\n  content: \"\\e9b7\";\n}\n.antf-snippets:before {\n  content: \"\\e9b8\";\n}\n.antf-sound:before {\n  content: \"\\e9b9\";\n}\n.antf-star:before {\n  content: \"\\e9ba\";\n}\n.antf-step-backward:before {\n  content: \"\\e9bb\";\n}\n.antf-step-forward:before {\n  content: \"\\e9bc\";\n}\n.antf-stop:before {\n  content: \"\\e9bd\";\n}\n.antf-switcher:before {\n  content: \"\\e9be\";\n}\n.antf-tablet:before {\n  content: \"\\e9bf\";\n}\n.antf-tag:before {\n  content: \"\\e9c0\";\n}\n.antf-tags:before {\n  content: \"\\e9c1\";\n}\n.antf-taobao-circle:before {\n  content: \"\\e9c2\";\n}\n.antf-taobao-square:before {\n  content: \"\\e9c3\";\n}\n.antf-thunderbolt:before {\n  content: \"\\e9c4\";\n}\n.antf-tool:before {\n  content: \"\\e9c5\";\n}\n.antf-trademark-circle:before {\n  content: \"\\e9c6\";\n}\n.antf-trophy:before {\n  content: \"\\e9c7\";\n}\n.antf-twitter-circle:before {\n  content: \"\\e9c8\";\n}\n.antf-twitter-square:before {\n  content: \"\\e9c9\";\n}\n.antf-unlock:before {\n  content: \"\\e9ca\";\n}\n.antf-up-circle:before {\n  content: \"\\e9cb\";\n}\n.antf-up-square:before {\n  content: \"\\e9cc\";\n}\n.antf-usb:before {\n  content: \"\\e9cd\";\n}\n.antf-video-camera:before {\n  content: \"\\e9ce\";\n}\n.antf-wallet:before {\n  content: \"\\e9cf\";\n}\n.antf-warning:before {\n  content: \"\\e9d0\";\n}\n.antf-wechat:before {\n  content: \"\\e9d1\";\n}\n.antf-weibo-circle:before {\n  content: \"\\e9d2\";\n}\n.antf-weibo-square:before {\n  content: \"\\e9d3\";\n}\n.antf-windows:before {\n  content: \"\\e9d4\";\n}\n.antf-yahoo:before {\n  content: \"\\e9d5\";\n}\n.antf-youtube:before {\n  content: \"\\e9d6\";\n}\n.antf-yuque:before {\n  content: \"\\e9d7\";\n}\n.antf-zhihu-circle:before {\n  content: \"\\e9d8\";\n}\n.antf-zhihu-square:before {\n  content: \"\\e9d9\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-antdesignicons-pack/src/main/resources/META-INF/resources/antdesignicons/4.0.0/css/antdesignicons-outlined.css",
    "content": "@font-face {\n  font-family: 'AntDesign-Icons-Outlined';\n  src:  url('../fonts/AntDesign-Icons-Outlined.eot?ospa9b');\n  src:  url('../fonts/AntDesign-Icons-Outlined.eot?ospa9b#iefix') format('embedded-opentype'),\n    url('../fonts/AntDesign-Icons-Outlined.ttf?ospa9b') format('truetype'),\n    url('../fonts/AntDesign-Icons-Outlined.woff?ospa9b') format('woff'),\n    url('../fonts/AntDesign-Icons-Outlined.svg?ospa9b#AntDesign-Icons-Outlined') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"anto\"], [class*=\" anto\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'AntDesign-Icons-Outlined' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.anto-account-book:before {\n  content: \"\\e900\";\n}\n.anto-aim:before {\n  content: \"\\e901\";\n}\n.anto-alert:before {\n  content: \"\\e902\";\n}\n.anto-alibaba:before {\n  content: \"\\e903\";\n}\n.anto-align-center:before {\n  content: \"\\e904\";\n}\n.anto-align-left:before {\n  content: \"\\e905\";\n}\n.anto-align-right:before {\n  content: \"\\e906\";\n}\n.anto-alipay-circle:before {\n  content: \"\\e907\";\n}\n.anto-alipay:before {\n  content: \"\\e908\";\n}\n.anto-aliwangwang:before {\n  content: \"\\e909\";\n}\n.anto-aliyun:before {\n  content: \"\\e90a\";\n}\n.anto-amazon:before {\n  content: \"\\e90b\";\n}\n.anto-android:before {\n  content: \"\\e90c\";\n}\n.anto-ant-cloud:before {\n  content: \"\\e90d\";\n}\n.anto-ant-design:before {\n  content: \"\\e90e\";\n}\n.anto-apartment:before {\n  content: \"\\e90f\";\n}\n.anto-api:before {\n  content: \"\\e910\";\n}\n.anto-apple:before {\n  content: \"\\e911\";\n}\n.anto-appstore-add:before {\n  content: \"\\e912\";\n}\n.anto-appstore:before {\n  content: \"\\e913\";\n}\n.anto-area-chart:before {\n  content: \"\\e914\";\n}\n.anto-arrow-down:before {\n  content: \"\\e915\";\n}\n.anto-arrow-left:before {\n  content: \"\\e916\";\n}\n.anto-arrow-right:before {\n  content: \"\\e917\";\n}\n.anto-arrow-up:before {\n  content: \"\\e918\";\n}\n.anto-arrows-alt:before {\n  content: \"\\e919\";\n}\n.anto-audio-muted:before {\n  content: \"\\e91a\";\n}\n.anto-audio:before {\n  content: \"\\e91b\";\n}\n.anto-audit:before {\n  content: \"\\e91c\";\n}\n.anto-backward:before {\n  content: \"\\e91d\";\n}\n.anto-bank:before {\n  content: \"\\e91e\";\n}\n.anto-bar-chart:before {\n  content: \"\\e91f\";\n}\n.anto-barcode:before {\n  content: \"\\e920\";\n}\n.anto-bars:before {\n  content: \"\\e921\";\n}\n.anto-behance-square:before {\n  content: \"\\e922\";\n}\n.anto-behance:before {\n  content: \"\\e923\";\n}\n.anto-bell:before {\n  content: \"\\e924\";\n}\n.anto-bg-colors:before {\n  content: \"\\e925\";\n}\n.anto-block:before {\n  content: \"\\e926\";\n}\n.anto-bold:before {\n  content: \"\\e927\";\n}\n.anto-book:before {\n  content: \"\\e928\";\n}\n.anto-border-bottom:before {\n  content: \"\\e929\";\n}\n.anto-border-horizontal:before {\n  content: \"\\e92a\";\n}\n.anto-border-inner:before {\n  content: \"\\e92b\";\n}\n.anto-border-left:before {\n  content: \"\\e92c\";\n}\n.anto-border-outer:before {\n  content: \"\\e92d\";\n}\n.anto-border-right:before {\n  content: \"\\e92e\";\n}\n.anto-border-top:before {\n  content: \"\\e92f\";\n}\n.anto-border-verticle:before {\n  content: \"\\e930\";\n}\n.anto-border:before {\n  content: \"\\e931\";\n}\n.anto-borderless-table:before {\n  content: \"\\e932\";\n}\n.anto-box-plot:before {\n  content: \"\\e933\";\n}\n.anto-branches:before {\n  content: \"\\e934\";\n}\n.anto-bug:before {\n  content: \"\\e935\";\n}\n.anto-build:before {\n  content: \"\\e936\";\n}\n.anto-bulb:before {\n  content: \"\\e937\";\n}\n.anto-calculator:before {\n  content: \"\\e938\";\n}\n.anto-calendar:before {\n  content: \"\\e939\";\n}\n.anto-camera:before {\n  content: \"\\e93a\";\n}\n.anto-car:before {\n  content: \"\\e93b\";\n}\n.anto-caret-down:before {\n  content: \"\\e93c\";\n}\n.anto-caret-left:before {\n  content: \"\\e93d\";\n}\n.anto-caret-right:before {\n  content: \"\\e93e\";\n}\n.anto-caret-up:before {\n  content: \"\\e93f\";\n}\n.anto-carry-out:before {\n  content: \"\\e940\";\n}\n.anto-check-circle:before {\n  content: \"\\e941\";\n}\n.anto-check-square:before {\n  content: \"\\e942\";\n}\n.anto-check:before {\n  content: \"\\e943\";\n}\n.anto-chrome:before {\n  content: \"\\e944\";\n}\n.anto-ci-circle:before {\n  content: \"\\e945\";\n}\n.anto-ci:before {\n  content: \"\\e946\";\n}\n.anto-clear:before {\n  content: \"\\e947\";\n}\n.anto-clock-circle:before {\n  content: \"\\e948\";\n}\n.anto-close-circle:before {\n  content: \"\\e949\";\n}\n.anto-close-square:before {\n  content: \"\\e94a\";\n}\n.anto-close:before {\n  content: \"\\e94b\";\n}\n.anto-cloud-download:before {\n  content: \"\\e94c\";\n}\n.anto-cloud-server:before {\n  content: \"\\e94d\";\n}\n.anto-cloud-sync:before {\n  content: \"\\e94e\";\n}\n.anto-cloud-upload:before {\n  content: \"\\e94f\";\n}\n.anto-cloud:before {\n  content: \"\\e950\";\n}\n.anto-cluster:before {\n  content: \"\\e951\";\n}\n.anto-code-sandbox:before {\n  content: \"\\e952\";\n}\n.anto-code:before {\n  content: \"\\e953\";\n}\n.anto-codepen-circle:before {\n  content: \"\\e954\";\n}\n.anto-codepen:before {\n  content: \"\\e955\";\n}\n.anto-coffee:before {\n  content: \"\\e956\";\n}\n.anto-column-height:before {\n  content: \"\\e957\";\n}\n.anto-column-width:before {\n  content: \"\\e958\";\n}\n.anto-comment:before {\n  content: \"\\e959\";\n}\n.anto-compass:before {\n  content: \"\\e95a\";\n}\n.anto-compress:before {\n  content: \"\\e95b\";\n}\n.anto-console-sql:before {\n  content: \"\\e95c\";\n}\n.anto-contacts:before {\n  content: \"\\e95d\";\n}\n.anto-container:before {\n  content: \"\\e95e\";\n}\n.anto-control:before {\n  content: \"\\e95f\";\n}\n.anto-copy:before {\n  content: \"\\e960\";\n}\n.anto-copyright-circle:before {\n  content: \"\\e961\";\n}\n.anto-copyright:before {\n  content: \"\\e962\";\n}\n.anto-credit-card:before {\n  content: \"\\e963\";\n}\n.anto-crown:before {\n  content: \"\\e964\";\n}\n.anto-customer-service:before {\n  content: \"\\e965\";\n}\n.anto-dash:before {\n  content: \"\\e966\";\n}\n.anto-dashboard:before {\n  content: \"\\e967\";\n}\n.anto-database:before {\n  content: \"\\e968\";\n}\n.anto-delete-column:before {\n  content: \"\\e969\";\n}\n.anto-delete-row:before {\n  content: \"\\e96a\";\n}\n.anto-delete:before {\n  content: \"\\e96b\";\n}\n.anto-delivered-procedure:before {\n  content: \"\\e96c\";\n}\n.anto-deployment-unit:before {\n  content: \"\\e96d\";\n}\n.anto-desktop:before {\n  content: \"\\e96e\";\n}\n.anto-diff:before {\n  content: \"\\e96f\";\n}\n.anto-dingding:before {\n  content: \"\\e970\";\n}\n.anto-dingtalk:before {\n  content: \"\\e971\";\n}\n.anto-disconnect:before {\n  content: \"\\e972\";\n}\n.anto-dislike:before {\n  content: \"\\e973\";\n}\n.anto-dollar-circle:before {\n  content: \"\\e974\";\n}\n.anto-dollar:before {\n  content: \"\\e975\";\n}\n.anto-dot-chart:before {\n  content: \"\\e976\";\n}\n.anto-double-left:before {\n  content: \"\\e977\";\n}\n.anto-double-right:before {\n  content: \"\\e978\";\n}\n.anto-down-circle:before {\n  content: \"\\e979\";\n}\n.anto-down-square:before {\n  content: \"\\e97a\";\n}\n.anto-down:before {\n  content: \"\\e97b\";\n}\n.anto-download:before {\n  content: \"\\e97c\";\n}\n.anto-drag:before {\n  content: \"\\e97d\";\n}\n.anto-dribbble-square:before {\n  content: \"\\e97e\";\n}\n.anto-dribbble:before {\n  content: \"\\e97f\";\n}\n.anto-dropbox:before {\n  content: \"\\e980\";\n}\n.anto-edit:before {\n  content: \"\\e981\";\n}\n.anto-ellipsis:before {\n  content: \"\\e982\";\n}\n.anto-enter:before {\n  content: \"\\e983\";\n}\n.anto-environment:before {\n  content: \"\\e984\";\n}\n.anto-euro-circle:before {\n  content: \"\\e985\";\n}\n.anto-euro:before {\n  content: \"\\e986\";\n}\n.anto-exception:before {\n  content: \"\\e987\";\n}\n.anto-exclamation-circle:before {\n  content: \"\\e988\";\n}\n.anto-exclamation:before {\n  content: \"\\e989\";\n}\n.anto-expand-alt:before {\n  content: \"\\e98a\";\n}\n.anto-expand:before {\n  content: \"\\e98b\";\n}\n.anto-experiment:before {\n  content: \"\\e98c\";\n}\n.anto-export:before {\n  content: \"\\e98d\";\n}\n.anto-eye-invisible:before {\n  content: \"\\e98e\";\n}\n.anto-eye:before {\n  content: \"\\e98f\";\n}\n.anto-facebook:before {\n  content: \"\\e990\";\n}\n.anto-fall:before {\n  content: \"\\e991\";\n}\n.anto-fast-backward:before {\n  content: \"\\e992\";\n}\n.anto-fast-forward:before {\n  content: \"\\e993\";\n}\n.anto-field-binary:before {\n  content: \"\\e994\";\n}\n.anto-field-number:before {\n  content: \"\\e995\";\n}\n.anto-field-string:before {\n  content: \"\\e996\";\n}\n.anto-field-time:before {\n  content: \"\\e997\";\n}\n.anto-file-add:before {\n  content: \"\\e998\";\n}\n.anto-file-done:before {\n  content: \"\\e999\";\n}\n.anto-file-excel:before {\n  content: \"\\e99a\";\n}\n.anto-file-exclamation:before {\n  content: \"\\e99b\";\n}\n.anto-file-gif:before {\n  content: \"\\e99c\";\n}\n.anto-file-image:before {\n  content: \"\\e99d\";\n}\n.anto-file-jpg:before {\n  content: \"\\e99e\";\n}\n.anto-file-markdown:before {\n  content: \"\\e99f\";\n}\n.anto-file-pdf:before {\n  content: \"\\e9a0\";\n}\n.anto-file-ppt:before {\n  content: \"\\e9a1\";\n}\n.anto-file-protect:before {\n  content: \"\\e9a2\";\n}\n.anto-file-search:before {\n  content: \"\\e9a3\";\n}\n.anto-file-sync:before {\n  content: \"\\e9a4\";\n}\n.anto-file-text:before {\n  content: \"\\e9a5\";\n}\n.anto-file-unknown:before {\n  content: \"\\e9a6\";\n}\n.anto-file-word:before {\n  content: \"\\e9a7\";\n}\n.anto-file-zip:before {\n  content: \"\\e9a8\";\n}\n.anto-file:before {\n  content: \"\\e9a9\";\n}\n.anto-filter:before {\n  content: \"\\e9aa\";\n}\n.anto-fire:before {\n  content: \"\\e9ab\";\n}\n.anto-flag:before {\n  content: \"\\e9ac\";\n}\n.anto-folder-add:before {\n  content: \"\\e9ad\";\n}\n.anto-folder-open:before {\n  content: \"\\e9ae\";\n}\n.anto-folder-view:before {\n  content: \"\\e9af\";\n}\n.anto-folder:before {\n  content: \"\\e9b0\";\n}\n.anto-font-colors:before {\n  content: \"\\e9b1\";\n}\n.anto-font-size:before {\n  content: \"\\e9b2\";\n}\n.anto-fork:before {\n  content: \"\\e9b3\";\n}\n.anto-form:before {\n  content: \"\\e9b4\";\n}\n.anto-format-painter:before {\n  content: \"\\e9b5\";\n}\n.anto-forward:before {\n  content: \"\\e9b6\";\n}\n.anto-frown:before {\n  content: \"\\e9b7\";\n}\n.anto-fullscreen-exit:before {\n  content: \"\\e9b8\";\n}\n.anto-fullscreen:before {\n  content: \"\\e9b9\";\n}\n.anto-function:before {\n  content: \"\\e9ba\";\n}\n.anto-fund-projection-screen:before {\n  content: \"\\e9bb\";\n}\n.anto-fund-view:before {\n  content: \"\\e9bc\";\n}\n.anto-fund:before {\n  content: \"\\e9bd\";\n}\n.anto-funnel-plot:before {\n  content: \"\\e9be\";\n}\n.anto-gateway:before {\n  content: \"\\e9bf\";\n}\n.anto-gif:before {\n  content: \"\\e9c0\";\n}\n.anto-gift:before {\n  content: \"\\e9c1\";\n}\n.anto-github:before {\n  content: \"\\e9c2\";\n}\n.anto-gitlab:before {\n  content: \"\\e9c3\";\n}\n.anto-global:before {\n  content: \"\\e9c4\";\n}\n.anto-gold:before {\n  content: \"\\e9c5\";\n}\n.anto-google-plus:before {\n  content: \"\\e9c6\";\n}\n.anto-google:before {\n  content: \"\\e9c7\";\n}\n.anto-group:before {\n  content: \"\\e9c8\";\n}\n.anto-hdd:before {\n  content: \"\\e9c9\";\n}\n.anto-heart:before {\n  content: \"\\e9ca\";\n}\n.anto-heat-map:before {\n  content: \"\\e9cb\";\n}\n.anto-highlight:before {\n  content: \"\\e9cc\";\n}\n.anto-history:before {\n  content: \"\\e9cd\";\n}\n.anto-home:before {\n  content: \"\\e9ce\";\n}\n.anto-hourglass:before {\n  content: \"\\e9cf\";\n}\n.anto-html5:before {\n  content: \"\\e9d0\";\n}\n.anto-idcard:before {\n  content: \"\\e9d1\";\n}\n.anto-ie:before {\n  content: \"\\e9d2\";\n}\n.anto-import:before {\n  content: \"\\e9d3\";\n}\n.anto-inbox:before {\n  content: \"\\e9d4\";\n}\n.anto-info-circle:before {\n  content: \"\\e9d5\";\n}\n.anto-info:before {\n  content: \"\\e9d6\";\n}\n.anto-insert-row-above:before {\n  content: \"\\e9d7\";\n}\n.anto-insert-row-below:before {\n  content: \"\\e9d8\";\n}\n.anto-insert-row-left:before {\n  content: \"\\e9d9\";\n}\n.anto-insert-row-right:before {\n  content: \"\\e9da\";\n}\n.anto-instagram:before {\n  content: \"\\e9db\";\n}\n.anto-insurance:before {\n  content: \"\\e9dc\";\n}\n.anto-interaction:before {\n  content: \"\\e9dd\";\n}\n.anto-issues-close:before {\n  content: \"\\e9de\";\n}\n.anto-italic:before {\n  content: \"\\e9df\";\n}\n.anto-key:before {\n  content: \"\\e9e0\";\n}\n.anto-laptop:before {\n  content: \"\\e9e1\";\n}\n.anto-layout:before {\n  content: \"\\e9e2\";\n}\n.anto-left-circle:before {\n  content: \"\\e9e3\";\n}\n.anto-left-square:before {\n  content: \"\\e9e4\";\n}\n.anto-left:before {\n  content: \"\\e9e5\";\n}\n.anto-like:before {\n  content: \"\\e9e6\";\n}\n.anto-line-chart:before {\n  content: \"\\e9e7\";\n}\n.anto-line-height:before {\n  content: \"\\e9e8\";\n}\n.anto-line:before {\n  content: \"\\e9e9\";\n}\n.anto-link:before {\n  content: \"\\e9ea\";\n}\n.anto-linkedin:before {\n  content: \"\\e9eb\";\n}\n.anto-loading-3-quarters:before {\n  content: \"\\e9ec\";\n}\n.anto-loading:before {\n  content: \"\\e9ed\";\n}\n.anto-lock:before {\n  content: \"\\e9ee\";\n}\n.anto-login:before {\n  content: \"\\e9ef\";\n}\n.anto-logout:before {\n  content: \"\\e9f0\";\n}\n.anto-mac-command:before {\n  content: \"\\e9f1\";\n}\n.anto-mail:before {\n  content: \"\\e9f2\";\n}\n.anto-man:before {\n  content: \"\\e9f3\";\n}\n.anto-medicine-box:before {\n  content: \"\\e9f4\";\n}\n.anto-medium-workmark:before {\n  content: \"\\e9f5\";\n}\n.anto-medium:before {\n  content: \"\\e9f6\";\n}\n.anto-meh:before {\n  content: \"\\e9f7\";\n}\n.anto-menu-fold:before {\n  content: \"\\e9f8\";\n}\n.anto-menu-unfold:before {\n  content: \"\\e9f9\";\n}\n.anto-menu:before {\n  content: \"\\e9fa\";\n}\n.anto-merge-cells:before {\n  content: \"\\e9fb\";\n}\n.anto-message:before {\n  content: \"\\e9fc\";\n}\n.anto-minus-circle:before {\n  content: \"\\e9fd\";\n}\n.anto-minus-square:before {\n  content: \"\\e9fe\";\n}\n.anto-minus:before {\n  content: \"\\e9ff\";\n}\n.anto-mobile:before {\n  content: \"\\ea00\";\n}\n.anto-money-collect:before {\n  content: \"\\ea01\";\n}\n.anto-monitor:before {\n  content: \"\\ea02\";\n}\n.anto-more:before {\n  content: \"\\ea03\";\n}\n.anto-node-collapse:before {\n  content: \"\\ea04\";\n}\n.anto-node-expand:before {\n  content: \"\\ea05\";\n}\n.anto-node-index:before {\n  content: \"\\ea06\";\n}\n.anto-notification:before {\n  content: \"\\ea07\";\n}\n.anto-number:before {\n  content: \"\\ea08\";\n}\n.anto-one-to-one:before {\n  content: \"\\ea09\";\n}\n.anto-ordered-list:before {\n  content: \"\\ea0a\";\n}\n.anto-paper-clip:before {\n  content: \"\\ea0b\";\n}\n.anto-partition:before {\n  content: \"\\ea0c\";\n}\n.anto-pause-circle:before {\n  content: \"\\ea0d\";\n}\n.anto-pause:before {\n  content: \"\\ea0e\";\n}\n.anto-pay-circle:before {\n  content: \"\\ea0f\";\n}\n.anto-percentage:before {\n  content: \"\\ea10\";\n}\n.anto-phone:before {\n  content: \"\\ea11\";\n}\n.anto-pic-center:before {\n  content: \"\\ea12\";\n}\n.anto-pic-left:before {\n  content: \"\\ea13\";\n}\n.anto-pic-right:before {\n  content: \"\\ea14\";\n}\n.anto-picture:before {\n  content: \"\\ea15\";\n}\n.anto-pie-chart:before {\n  content: \"\\ea16\";\n}\n.anto-play-circle:before {\n  content: \"\\ea17\";\n}\n.anto-play-square:before {\n  content: \"\\ea18\";\n}\n.anto-plus-circle:before {\n  content: \"\\ea19\";\n}\n.anto-plus-square:before {\n  content: \"\\ea1a\";\n}\n.anto-plus:before {\n  content: \"\\ea1b\";\n}\n.anto-pound-circle:before {\n  content: \"\\ea1c\";\n}\n.anto-pound:before {\n  content: \"\\ea1d\";\n}\n.anto-poweroff:before {\n  content: \"\\ea1e\";\n}\n.anto-printer:before {\n  content: \"\\ea1f\";\n}\n.anto-profile:before {\n  content: \"\\ea20\";\n}\n.anto-project:before {\n  content: \"\\ea21\";\n}\n.anto-property-safety:before {\n  content: \"\\ea22\";\n}\n.anto-pull-request:before {\n  content: \"\\ea23\";\n}\n.anto-pushpin:before {\n  content: \"\\ea24\";\n}\n.anto-qq:before {\n  content: \"\\ea25\";\n}\n.anto-qrcode:before {\n  content: \"\\ea26\";\n}\n.anto-question-circle:before {\n  content: \"\\ea27\";\n}\n.anto-question:before {\n  content: \"\\ea28\";\n}\n.anto-radar-chart:before {\n  content: \"\\ea29\";\n}\n.anto-radius-bottomleft:before {\n  content: \"\\ea2a\";\n}\n.anto-radius-bottomright:before {\n  content: \"\\ea2b\";\n}\n.anto-radius-setting:before {\n  content: \"\\ea2c\";\n}\n.anto-radius-upleft:before {\n  content: \"\\ea2d\";\n}\n.anto-radius-upright:before {\n  content: \"\\ea2e\";\n}\n.anto-read:before {\n  content: \"\\ea2f\";\n}\n.anto-reconciliation:before {\n  content: \"\\ea30\";\n}\n.anto-red-envelope:before {\n  content: \"\\ea31\";\n}\n.anto-reddit:before {\n  content: \"\\ea32\";\n}\n.anto-redo:before {\n  content: \"\\ea33\";\n}\n.anto-reload:before {\n  content: \"\\ea34\";\n}\n.anto-rest:before {\n  content: \"\\ea35\";\n}\n.anto-retweet:before {\n  content: \"\\ea36\";\n}\n.anto-right-circle:before {\n  content: \"\\ea37\";\n}\n.anto-right-square:before {\n  content: \"\\ea38\";\n}\n.anto-right:before {\n  content: \"\\ea39\";\n}\n.anto-rise:before {\n  content: \"\\ea3a\";\n}\n.anto-robot:before {\n  content: \"\\ea3b\";\n}\n.anto-rocket:before {\n  content: \"\\ea3c\";\n}\n.anto-rollback:before {\n  content: \"\\ea3d\";\n}\n.anto-rotate-left:before {\n  content: \"\\ea3e\";\n}\n.anto-rotate-right:before {\n  content: \"\\ea3f\";\n}\n.anto-safety-certificate:before {\n  content: \"\\ea40\";\n}\n.anto-safety:before {\n  content: \"\\ea41\";\n}\n.anto-save:before {\n  content: \"\\ea42\";\n}\n.anto-scan:before {\n  content: \"\\ea43\";\n}\n.anto-schedule:before {\n  content: \"\\ea44\";\n}\n.anto-scissor:before {\n  content: \"\\ea45\";\n}\n.anto-search:before {\n  content: \"\\ea46\";\n}\n.anto-security-scan:before {\n  content: \"\\ea47\";\n}\n.anto-select:before {\n  content: \"\\ea48\";\n}\n.anto-send:before {\n  content: \"\\ea49\";\n}\n.anto-setting:before {\n  content: \"\\ea4a\";\n}\n.anto-shake:before {\n  content: \"\\ea4b\";\n}\n.anto-share-alt:before {\n  content: \"\\ea4c\";\n}\n.anto-shop:before {\n  content: \"\\ea4d\";\n}\n.anto-shopping-cart:before {\n  content: \"\\ea4e\";\n}\n.anto-shopping:before {\n  content: \"\\ea4f\";\n}\n.anto-shrink:before {\n  content: \"\\ea50\";\n}\n.anto-sisternode:before {\n  content: \"\\ea51\";\n}\n.anto-sketch:before {\n  content: \"\\ea52\";\n}\n.anto-skin:before {\n  content: \"\\ea53\";\n}\n.anto-skype:before {\n  content: \"\\ea54\";\n}\n.anto-slack-square:before {\n  content: \"\\ea55\";\n}\n.anto-slack:before {\n  content: \"\\ea56\";\n}\n.anto-sliders:before {\n  content: \"\\ea57\";\n}\n.anto-small-dash:before {\n  content: \"\\ea58\";\n}\n.anto-smile:before {\n  content: \"\\ea59\";\n}\n.anto-snippets:before {\n  content: \"\\ea5a\";\n}\n.anto-solution:before {\n  content: \"\\ea5b\";\n}\n.anto-sort-ascending:before {\n  content: \"\\ea5c\";\n}\n.anto-sort-descending:before {\n  content: \"\\ea5d\";\n}\n.anto-sound:before {\n  content: \"\\ea5e\";\n}\n.anto-split-cells:before {\n  content: \"\\ea5f\";\n}\n.anto-star:before {\n  content: \"\\ea60\";\n}\n.anto-step-backward:before {\n  content: \"\\ea61\";\n}\n.anto-step-forward:before {\n  content: \"\\ea62\";\n}\n.anto-stock:before {\n  content: \"\\ea63\";\n}\n.anto-stop:before {\n  content: \"\\ea64\";\n}\n.anto-strikethrough:before {\n  content: \"\\ea65\";\n}\n.anto-subnode:before {\n  content: \"\\ea66\";\n}\n.anto-swap-left:before {\n  content: \"\\ea67\";\n}\n.anto-swap-right:before {\n  content: \"\\ea68\";\n}\n.anto-swap:before {\n  content: \"\\ea69\";\n}\n.anto-switcher:before {\n  content: \"\\ea6a\";\n}\n.anto-sync:before {\n  content: \"\\ea6b\";\n}\n.anto-table:before {\n  content: \"\\ea6c\";\n}\n.anto-tablet:before {\n  content: \"\\ea6d\";\n}\n.anto-tag:before {\n  content: \"\\ea6e\";\n}\n.anto-tags:before {\n  content: \"\\ea6f\";\n}\n.anto-taobao-circle:before {\n  content: \"\\ea70\";\n}\n.anto-taobao:before {\n  content: \"\\ea71\";\n}\n.anto-team:before {\n  content: \"\\ea72\";\n}\n.anto-thunderbolt:before {\n  content: \"\\ea73\";\n}\n.anto-to-top:before {\n  content: \"\\ea74\";\n}\n.anto-tool:before {\n  content: \"\\ea75\";\n}\n.anto-trademark-circle:before {\n  content: \"\\ea76\";\n}\n.anto-trademark:before {\n  content: \"\\ea77\";\n}\n.anto-transaction:before {\n  content: \"\\ea78\";\n}\n.anto-translation:before {\n  content: \"\\ea79\";\n}\n.anto-trophy:before {\n  content: \"\\ea7a\";\n}\n.anto-twitter:before {\n  content: \"\\ea7b\";\n}\n.anto-underline:before {\n  content: \"\\ea7c\";\n}\n.anto-undo:before {\n  content: \"\\ea7d\";\n}\n.anto-ungroup:before {\n  content: \"\\ea7e\";\n}\n.anto-unlock:before {\n  content: \"\\ea7f\";\n}\n.anto-unordered-list:before {\n  content: \"\\ea80\";\n}\n.anto-up-circle:before {\n  content: \"\\ea81\";\n}\n.anto-up-square:before {\n  content: \"\\ea82\";\n}\n.anto-up:before {\n  content: \"\\ea83\";\n}\n.anto-upload:before {\n  content: \"\\ea84\";\n}\n.anto-usb:before {\n  content: \"\\ea85\";\n}\n.anto-user-add:before {\n  content: \"\\ea86\";\n}\n.anto-user-delete:before {\n  content: \"\\ea87\";\n}\n.anto-user-switch:before {\n  content: \"\\ea88\";\n}\n.anto-user:before {\n  content: \"\\ea89\";\n}\n.anto-usergroup-add:before {\n  content: \"\\ea8a\";\n}\n.anto-usergroup-delete:before {\n  content: \"\\ea8b\";\n}\n.anto-verified:before {\n  content: \"\\ea8c\";\n}\n.anto-vertical-align-bottom:before {\n  content: \"\\ea8d\";\n}\n.anto-vertical-align-middle:before {\n  content: \"\\ea8e\";\n}\n.anto-vertical-align-top:before {\n  content: \"\\ea8f\";\n}\n.anto-vertical-left:before {\n  content: \"\\ea90\";\n}\n.anto-vertical-right:before {\n  content: \"\\ea91\";\n}\n.anto-video-camera-add:before {\n  content: \"\\ea92\";\n}\n.anto-video-camera:before {\n  content: \"\\ea93\";\n}\n.anto-wallet:before {\n  content: \"\\ea94\";\n}\n.anto-warning:before {\n  content: \"\\ea95\";\n}\n.anto-wechat:before {\n  content: \"\\ea96\";\n}\n.anto-weibo-circle:before {\n  content: \"\\ea97\";\n}\n.anto-weibo-square:before {\n  content: \"\\ea98\";\n}\n.anto-weibo:before {\n  content: \"\\ea99\";\n}\n.anto-whats-app:before {\n  content: \"\\ea9a\";\n}\n.anto-wifi:before {\n  content: \"\\ea9b\";\n}\n.anto-windows:before {\n  content: \"\\ea9c\";\n}\n.anto-woman:before {\n  content: \"\\ea9d\";\n}\n.anto-yahoo:before {\n  content: \"\\ea9e\";\n}\n.anto-youtube:before {\n  content: \"\\ea9f\";\n}\n.anto-yuque:before {\n  content: \"\\eaa0\";\n}\n.anto-zhihu:before {\n  content: \"\\eaa1\";\n}\n.anto-zoom-in:before {\n  content: \"\\eaa2\";\n}\n.anto-zoom-out:before {\n  content: \"\\eaa3\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-bootstrapicons-pack/ikonli-bootstrapicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-bootstrapicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.bootstrapicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.bootstrapicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.bootstrapicons.BootstrapIconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.bootstrapicons.BootstrapIconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-bootstrapicons-pack/src/main/java/org/kordamp/ikonli/bootstrapicons/BootstrapIcons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bootstrapicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum BootstrapIcons implements Ikon {\n    ALARM(\"bi-alarm\", '\\uf102'),\n    ALARM_FILL(\"bi-alarm-fill\", '\\uf101'),\n    ALIGN_BOTTOM(\"bi-align-bottom\", '\\uf103'),\n    ALIGN_CENTER(\"bi-align-center\", '\\uf104'),\n    ALIGN_END(\"bi-align-end\", '\\uf105'),\n    ALIGN_MIDDLE(\"bi-align-middle\", '\\uf106'),\n    ALIGN_START(\"bi-align-start\", '\\uf107'),\n    ALIGN_TOP(\"bi-align-top\", '\\uf108'),\n    ALT(\"bi-alt\", '\\uf109'),\n    APP(\"bi-app\", '\\uf10b'),\n    APP_INDICATOR(\"bi-app-indicator\", '\\uf10a'),\n    ARCHIVE(\"bi-archive\", '\\uf10d'),\n    ARCHIVE_FILL(\"bi-archive-fill\", '\\uf10c'),\n    ARROWS_ANGLE_CONTRACT(\"bi-arrows-angle-contract\", '\\uf149'),\n    ARROWS_ANGLE_EXPAND(\"bi-arrows-angle-expand\", '\\uf14a'),\n    ARROWS_COLLAPSE(\"bi-arrows-collapse\", '\\uf14b'),\n    ARROWS_EXPAND(\"bi-arrows-expand\", '\\uf14c'),\n    ARROWS_FULLSCREEN(\"bi-arrows-fullscreen\", '\\uf14d'),\n    ARROWS_MOVE(\"bi-arrows-move\", '\\uf14e'),\n    ARROW_90DEG_DOWN(\"bi-arrow-90deg-down\", '\\uf10e'),\n    ARROW_90DEG_LEFT(\"bi-arrow-90deg-left\", '\\uf10f'),\n    ARROW_90DEG_RIGHT(\"bi-arrow-90deg-right\", '\\uf110'),\n    ARROW_90DEG_UP(\"bi-arrow-90deg-up\", '\\uf111'),\n    ARROW_BAR_DOWN(\"bi-arrow-bar-down\", '\\uf112'),\n    ARROW_BAR_LEFT(\"bi-arrow-bar-left\", '\\uf113'),\n    ARROW_BAR_RIGHT(\"bi-arrow-bar-right\", '\\uf114'),\n    ARROW_BAR_UP(\"bi-arrow-bar-up\", '\\uf115'),\n    ARROW_CLOCKWISE(\"bi-arrow-clockwise\", '\\uf116'),\n    ARROW_COUNTERCLOCKWISE(\"bi-arrow-counterclockwise\", '\\uf117'),\n    ARROW_DOWN(\"bi-arrow-down\", '\\uf128'),\n    ARROW_DOWN_CIRCLE(\"bi-arrow-down-circle\", '\\uf119'),\n    ARROW_DOWN_CIRCLE_FILL(\"bi-arrow-down-circle-fill\", '\\uf118'),\n    ARROW_DOWN_LEFT(\"bi-arrow-down-left\", '\\uf11e'),\n    ARROW_DOWN_LEFT_CIRCLE(\"bi-arrow-down-left-circle\", '\\uf11b'),\n    ARROW_DOWN_LEFT_CIRCLE_FILL(\"bi-arrow-down-left-circle-fill\", '\\uf11a'),\n    ARROW_DOWN_LEFT_SQUARE(\"bi-arrow-down-left-square\", '\\uf11d'),\n    ARROW_DOWN_LEFT_SQUARE_FILL(\"bi-arrow-down-left-square-fill\", '\\uf11c'),\n    ARROW_DOWN_RIGHT(\"bi-arrow-down-right\", '\\uf123'),\n    ARROW_DOWN_RIGHT_CIRCLE(\"bi-arrow-down-right-circle\", '\\uf120'),\n    ARROW_DOWN_RIGHT_CIRCLE_FILL(\"bi-arrow-down-right-circle-fill\", '\\uf11f'),\n    ARROW_DOWN_RIGHT_SQUARE(\"bi-arrow-down-right-square\", '\\uf122'),\n    ARROW_DOWN_RIGHT_SQUARE_FILL(\"bi-arrow-down-right-square-fill\", '\\uf121'),\n    ARROW_DOWN_SHORT(\"bi-arrow-down-short\", '\\uf124'),\n    ARROW_DOWN_SQUARE(\"bi-arrow-down-square\", '\\uf126'),\n    ARROW_DOWN_SQUARE_FILL(\"bi-arrow-down-square-fill\", '\\uf125'),\n    ARROW_DOWN_UP(\"bi-arrow-down-up\", '\\uf127'),\n    ARROW_LEFT(\"bi-arrow-left\", '\\uf12f'),\n    ARROW_LEFT_CIRCLE(\"bi-arrow-left-circle\", '\\uf12a'),\n    ARROW_LEFT_CIRCLE_FILL(\"bi-arrow-left-circle-fill\", '\\uf129'),\n    ARROW_LEFT_RIGHT(\"bi-arrow-left-right\", '\\uf12b'),\n    ARROW_LEFT_SHORT(\"bi-arrow-left-short\", '\\uf12c'),\n    ARROW_LEFT_SQUARE(\"bi-arrow-left-square\", '\\uf12e'),\n    ARROW_LEFT_SQUARE_FILL(\"bi-arrow-left-square-fill\", '\\uf12d'),\n    ARROW_REPEAT(\"bi-arrow-repeat\", '\\uf130'),\n    ARROW_RETURN_LEFT(\"bi-arrow-return-left\", '\\uf131'),\n    ARROW_RETURN_RIGHT(\"bi-arrow-return-right\", '\\uf132'),\n    ARROW_RIGHT(\"bi-arrow-right\", '\\uf138'),\n    ARROW_RIGHT_CIRCLE(\"bi-arrow-right-circle\", '\\uf134'),\n    ARROW_RIGHT_CIRCLE_FILL(\"bi-arrow-right-circle-fill\", '\\uf133'),\n    ARROW_RIGHT_SHORT(\"bi-arrow-right-short\", '\\uf135'),\n    ARROW_RIGHT_SQUARE(\"bi-arrow-right-square\", '\\uf137'),\n    ARROW_RIGHT_SQUARE_FILL(\"bi-arrow-right-square-fill\", '\\uf136'),\n    ARROW_UP(\"bi-arrow-up\", '\\uf148'),\n    ARROW_UP_CIRCLE(\"bi-arrow-up-circle\", '\\uf13a'),\n    ARROW_UP_CIRCLE_FILL(\"bi-arrow-up-circle-fill\", '\\uf139'),\n    ARROW_UP_LEFT(\"bi-arrow-up-left\", '\\uf13f'),\n    ARROW_UP_LEFT_CIRCLE(\"bi-arrow-up-left-circle\", '\\uf13c'),\n    ARROW_UP_LEFT_CIRCLE_FILL(\"bi-arrow-up-left-circle-fill\", '\\uf13b'),\n    ARROW_UP_LEFT_SQUARE(\"bi-arrow-up-left-square\", '\\uf13e'),\n    ARROW_UP_LEFT_SQUARE_FILL(\"bi-arrow-up-left-square-fill\", '\\uf13d'),\n    ARROW_UP_RIGHT(\"bi-arrow-up-right\", '\\uf144'),\n    ARROW_UP_RIGHT_CIRCLE(\"bi-arrow-up-right-circle\", '\\uf141'),\n    ARROW_UP_RIGHT_CIRCLE_FILL(\"bi-arrow-up-right-circle-fill\", '\\uf140'),\n    ARROW_UP_RIGHT_SQUARE(\"bi-arrow-up-right-square\", '\\uf143'),\n    ARROW_UP_RIGHT_SQUARE_FILL(\"bi-arrow-up-right-square-fill\", '\\uf142'),\n    ARROW_UP_SHORT(\"bi-arrow-up-short\", '\\uf145'),\n    ARROW_UP_SQUARE(\"bi-arrow-up-square\", '\\uf147'),\n    ARROW_UP_SQUARE_FILL(\"bi-arrow-up-square-fill\", '\\uf146'),\n    ASPECT_RATIO(\"bi-aspect-ratio\", '\\uf150'),\n    ASPECT_RATIO_FILL(\"bi-aspect-ratio-fill\", '\\uf14f'),\n    ASTERISK(\"bi-asterisk\", '\\uf151'),\n    AT(\"bi-at\", '\\uf152'),\n    AWARD(\"bi-award\", '\\uf154'),\n    AWARD_FILL(\"bi-award-fill\", '\\uf153'),\n    BACK(\"bi-back\", '\\uf155'),\n    BACKSPACE(\"bi-backspace\", '\\uf159'),\n    BACKSPACE_FILL(\"bi-backspace-fill\", '\\uf156'),\n    BACKSPACE_REVERSE(\"bi-backspace-reverse\", '\\uf158'),\n    BACKSPACE_REVERSE_FILL(\"bi-backspace-reverse-fill\", '\\uf157'),\n    BADGE_3D(\"bi-badge-3d\", '\\uf15b'),\n    BADGE_3D_FILL(\"bi-badge-3d-fill\", '\\uf15a'),\n    BADGE_4K(\"bi-badge-4k\", '\\uf15d'),\n    BADGE_4K_FILL(\"bi-badge-4k-fill\", '\\uf15c'),\n    BADGE_8K(\"bi-badge-8k\", '\\uf15f'),\n    BADGE_8K_FILL(\"bi-badge-8k-fill\", '\\uf15e'),\n    BADGE_AD(\"bi-badge-ad\", '\\uf161'),\n    BADGE_AD_FILL(\"bi-badge-ad-fill\", '\\uf160'),\n    BADGE_AR(\"bi-badge-ar\", '\\uf163'),\n    BADGE_AR_FILL(\"bi-badge-ar-fill\", '\\uf162'),\n    BADGE_CC(\"bi-badge-cc\", '\\uf165'),\n    BADGE_CC_FILL(\"bi-badge-cc-fill\", '\\uf164'),\n    BADGE_HD(\"bi-badge-hd\", '\\uf167'),\n    BADGE_HD_FILL(\"bi-badge-hd-fill\", '\\uf166'),\n    BADGE_TM(\"bi-badge-tm\", '\\uf169'),\n    BADGE_TM_FILL(\"bi-badge-tm-fill\", '\\uf168'),\n    BADGE_VO(\"bi-badge-vo\", '\\uf16b'),\n    BADGE_VO_FILL(\"bi-badge-vo-fill\", '\\uf16a'),\n    BADGE_VR(\"bi-badge-vr\", '\\uf16d'),\n    BADGE_VR_FILL(\"bi-badge-vr-fill\", '\\uf16c'),\n    BADGE_WC(\"bi-badge-wc\", '\\uf16f'),\n    BADGE_WC_FILL(\"bi-badge-wc-fill\", '\\uf16e'),\n    BAG(\"bi-bag\", '\\uf179'),\n    BAG_CHECK(\"bi-bag-check\", '\\uf171'),\n    BAG_CHECK_FILL(\"bi-bag-check-fill\", '\\uf170'),\n    BAG_DASH(\"bi-bag-dash\", '\\uf173'),\n    BAG_DASH_FILL(\"bi-bag-dash-fill\", '\\uf172'),\n    BAG_FILL(\"bi-bag-fill\", '\\uf174'),\n    BAG_PLUS(\"bi-bag-plus\", '\\uf176'),\n    BAG_PLUS_FILL(\"bi-bag-plus-fill\", '\\uf175'),\n    BAG_X(\"bi-bag-x\", '\\uf178'),\n    BAG_X_FILL(\"bi-bag-x-fill\", '\\uf177'),\n    BAR_CHART(\"bi-bar-chart\", '\\uf17e'),\n    BAR_CHART_FILL(\"bi-bar-chart-fill\", '\\uf17a'),\n    BAR_CHART_LINE(\"bi-bar-chart-line\", '\\uf17c'),\n    BAR_CHART_LINE_FILL(\"bi-bar-chart-line-fill\", '\\uf17b'),\n    BAR_CHART_STEPS(\"bi-bar-chart-steps\", '\\uf17d'),\n    BASKET(\"bi-basket\", '\\uf180'),\n    BASKET2(\"bi-basket2\", '\\uf182'),\n    BASKET2_FILL(\"bi-basket2-fill\", '\\uf181'),\n    BASKET3(\"bi-basket3\", '\\uf184'),\n    BASKET3_FILL(\"bi-basket3-fill\", '\\uf183'),\n    BASKET_FILL(\"bi-basket-fill\", '\\uf17f'),\n    BATTERY(\"bi-battery\", '\\uf188'),\n    BATTERY_CHARGING(\"bi-battery-charging\", '\\uf185'),\n    BATTERY_FULL(\"bi-battery-full\", '\\uf186'),\n    BATTERY_HALF(\"bi-battery-half\", '\\uf187'),\n    BELL(\"bi-bell\", '\\uf18a'),\n    BELL_FILL(\"bi-bell-fill\", '\\uf189'),\n    BEZIER(\"bi-bezier\", '\\uf18b'),\n    BEZIER2(\"bi-bezier2\", '\\uf18c'),\n    BICYCLE(\"bi-bicycle\", '\\uf18d'),\n    BINOCULARS(\"bi-binoculars\", '\\uf18f'),\n    BINOCULARS_FILL(\"bi-binoculars-fill\", '\\uf18e'),\n    BLOCKQUOTE_LEFT(\"bi-blockquote-left\", '\\uf190'),\n    BLOCKQUOTE_RIGHT(\"bi-blockquote-right\", '\\uf191'),\n    BOOK(\"bi-book\", '\\uf194'),\n    BOOKMARK(\"bi-bookmark\", '\\uf1a2'),\n    BOOKMARKS(\"bi-bookmarks\", '\\uf1a4'),\n    BOOKMARKS_FILL(\"bi-bookmarks-fill\", '\\uf1a3'),\n    BOOKMARK_CHECK(\"bi-bookmark-check\", '\\uf196'),\n    BOOKMARK_CHECK_FILL(\"bi-bookmark-check-fill\", '\\uf195'),\n    BOOKMARK_DASH(\"bi-bookmark-dash\", '\\uf198'),\n    BOOKMARK_DASH_FILL(\"bi-bookmark-dash-fill\", '\\uf197'),\n    BOOKMARK_FILL(\"bi-bookmark-fill\", '\\uf199'),\n    BOOKMARK_HEART(\"bi-bookmark-heart\", '\\uf19b'),\n    BOOKMARK_HEART_FILL(\"bi-bookmark-heart-fill\", '\\uf19a'),\n    BOOKMARK_PLUS(\"bi-bookmark-plus\", '\\uf19d'),\n    BOOKMARK_PLUS_FILL(\"bi-bookmark-plus-fill\", '\\uf19c'),\n    BOOKMARK_STAR(\"bi-bookmark-star\", '\\uf19f'),\n    BOOKMARK_STAR_FILL(\"bi-bookmark-star-fill\", '\\uf19e'),\n    BOOKMARK_X(\"bi-bookmark-x\", '\\uf1a1'),\n    BOOKMARK_X_FILL(\"bi-bookmark-x-fill\", '\\uf1a0'),\n    BOOKSHELF(\"bi-bookshelf\", '\\uf1a5'),\n    BOOK_FILL(\"bi-book-fill\", '\\uf192'),\n    BOOK_HALF(\"bi-book-half\", '\\uf193'),\n    BOOTSTRAP(\"bi-bootstrap\", '\\uf1a8'),\n    BOOTSTRAP_FILL(\"bi-bootstrap-fill\", '\\uf1a6'),\n    BOOTSTRAP_REBOOT(\"bi-bootstrap-reboot\", '\\uf1a7'),\n    BORDER(\"bi-border\", '\\uf1b4'),\n    BORDER_ALL(\"bi-border-all\", '\\uf1a9'),\n    BORDER_BOTTOM(\"bi-border-bottom\", '\\uf1aa'),\n    BORDER_CENTER(\"bi-border-center\", '\\uf1ab'),\n    BORDER_INNER(\"bi-border-inner\", '\\uf1ac'),\n    BORDER_LEFT(\"bi-border-left\", '\\uf1ad'),\n    BORDER_MIDDLE(\"bi-border-middle\", '\\uf1ae'),\n    BORDER_OUTER(\"bi-border-outer\", '\\uf1af'),\n    BORDER_RIGHT(\"bi-border-right\", '\\uf1b0'),\n    BORDER_STYLE(\"bi-border-style\", '\\uf1b1'),\n    BORDER_TOP(\"bi-border-top\", '\\uf1b2'),\n    BORDER_WIDTH(\"bi-border-width\", '\\uf1b3'),\n    BOUNDING_BOX(\"bi-bounding-box\", '\\uf1b6'),\n    BOUNDING_BOX_CIRCLES(\"bi-bounding-box-circles\", '\\uf1b5'),\n    BOX(\"bi-box\", '\\uf1c8'),\n    BOX_ARROW_DOWN(\"bi-box-arrow-down\", '\\uf1b9'),\n    BOX_ARROW_DOWN_LEFT(\"bi-box-arrow-down-left\", '\\uf1b7'),\n    BOX_ARROW_DOWN_RIGHT(\"bi-box-arrow-down-right\", '\\uf1b8'),\n    BOX_ARROW_IN_DOWN(\"bi-box-arrow-in-down\", '\\uf1bc'),\n    BOX_ARROW_IN_DOWN_LEFT(\"bi-box-arrow-in-down-left\", '\\uf1ba'),\n    BOX_ARROW_IN_DOWN_RIGHT(\"bi-box-arrow-in-down-right\", '\\uf1bb'),\n    BOX_ARROW_IN_LEFT(\"bi-box-arrow-in-left\", '\\uf1bd'),\n    BOX_ARROW_IN_RIGHT(\"bi-box-arrow-in-right\", '\\uf1be'),\n    BOX_ARROW_IN_UP(\"bi-box-arrow-in-up\", '\\uf1c1'),\n    BOX_ARROW_IN_UP_LEFT(\"bi-box-arrow-in-up-left\", '\\uf1bf'),\n    BOX_ARROW_IN_UP_RIGHT(\"bi-box-arrow-in-up-right\", '\\uf1c0'),\n    BOX_ARROW_LEFT(\"bi-box-arrow-left\", '\\uf1c2'),\n    BOX_ARROW_RIGHT(\"bi-box-arrow-right\", '\\uf1c3'),\n    BOX_ARROW_UP(\"bi-box-arrow-up\", '\\uf1c6'),\n    BOX_ARROW_UP_LEFT(\"bi-box-arrow-up-left\", '\\uf1c4'),\n    BOX_ARROW_UP_RIGHT(\"bi-box-arrow-up-right\", '\\uf1c5'),\n    BOX_SEAM(\"bi-box-seam\", '\\uf1c7'),\n    BRACES(\"bi-braces\", '\\uf1c9'),\n    BRICKS(\"bi-bricks\", '\\uf1ca'),\n    BRIEFCASE(\"bi-briefcase\", '\\uf1cc'),\n    BRIEFCASE_FILL(\"bi-briefcase-fill\", '\\uf1cb'),\n    BRIGHTNESS_ALT_HIGH(\"bi-brightness-alt-high\", '\\uf1ce'),\n    BRIGHTNESS_ALT_HIGH_FILL(\"bi-brightness-alt-high-fill\", '\\uf1cd'),\n    BRIGHTNESS_ALT_LOW(\"bi-brightness-alt-low\", '\\uf1d0'),\n    BRIGHTNESS_ALT_LOW_FILL(\"bi-brightness-alt-low-fill\", '\\uf1cf'),\n    BRIGHTNESS_HIGH(\"bi-brightness-high\", '\\uf1d2'),\n    BRIGHTNESS_HIGH_FILL(\"bi-brightness-high-fill\", '\\uf1d1'),\n    BRIGHTNESS_LOW(\"bi-brightness-low\", '\\uf1d4'),\n    BRIGHTNESS_LOW_FILL(\"bi-brightness-low-fill\", '\\uf1d3'),\n    BROADCAST(\"bi-broadcast\", '\\uf1d6'),\n    BROADCAST_PIN(\"bi-broadcast-pin\", '\\uf1d5'),\n    BRUSH(\"bi-brush\", '\\uf1d8'),\n    BRUSH_FILL(\"bi-brush-fill\", '\\uf1d7'),\n    BUCKET(\"bi-bucket\", '\\uf1da'),\n    BUCKET_FILL(\"bi-bucket-fill\", '\\uf1d9'),\n    BUG(\"bi-bug\", '\\uf1dc'),\n    BUG_FILL(\"bi-bug-fill\", '\\uf1db'),\n    BUILDING(\"bi-building\", '\\uf1dd'),\n    BULLSEYE(\"bi-bullseye\", '\\uf1de'),\n    CALCULATOR(\"bi-calculator\", '\\uf1e0'),\n    CALCULATOR_FILL(\"bi-calculator-fill\", '\\uf1df'),\n    CALENDAR(\"bi-calendar\", '\\uf1f6'),\n    CALENDAR2(\"bi-calendar2\", '\\uf20c'),\n    CALENDAR2_CHECK(\"bi-calendar2-check\", '\\uf1f8'),\n    CALENDAR2_CHECK_FILL(\"bi-calendar2-check-fill\", '\\uf1f7'),\n    CALENDAR2_DATE(\"bi-calendar2-date\", '\\uf1fa'),\n    CALENDAR2_DATE_FILL(\"bi-calendar2-date-fill\", '\\uf1f9'),\n    CALENDAR2_DAY(\"bi-calendar2-day\", '\\uf1fc'),\n    CALENDAR2_DAY_FILL(\"bi-calendar2-day-fill\", '\\uf1fb'),\n    CALENDAR2_EVENT(\"bi-calendar2-event\", '\\uf1fe'),\n    CALENDAR2_EVENT_FILL(\"bi-calendar2-event-fill\", '\\uf1fd'),\n    CALENDAR2_FILL(\"bi-calendar2-fill\", '\\uf1ff'),\n    CALENDAR2_MINUS(\"bi-calendar2-minus\", '\\uf201'),\n    CALENDAR2_MINUS_FILL(\"bi-calendar2-minus-fill\", '\\uf200'),\n    CALENDAR2_MONTH(\"bi-calendar2-month\", '\\uf203'),\n    CALENDAR2_MONTH_FILL(\"bi-calendar2-month-fill\", '\\uf202'),\n    CALENDAR2_PLUS(\"bi-calendar2-plus\", '\\uf205'),\n    CALENDAR2_PLUS_FILL(\"bi-calendar2-plus-fill\", '\\uf204'),\n    CALENDAR2_RANGE(\"bi-calendar2-range\", '\\uf207'),\n    CALENDAR2_RANGE_FILL(\"bi-calendar2-range-fill\", '\\uf206'),\n    CALENDAR2_WEEK(\"bi-calendar2-week\", '\\uf209'),\n    CALENDAR2_WEEK_FILL(\"bi-calendar2-week-fill\", '\\uf208'),\n    CALENDAR2_X(\"bi-calendar2-x\", '\\uf20b'),\n    CALENDAR2_X_FILL(\"bi-calendar2-x-fill\", '\\uf20a'),\n    CALENDAR3(\"bi-calendar3\", '\\uf214'),\n    CALENDAR3_EVENT(\"bi-calendar3-event\", '\\uf20e'),\n    CALENDAR3_EVENT_FILL(\"bi-calendar3-event-fill\", '\\uf20d'),\n    CALENDAR3_FILL(\"bi-calendar3-fill\", '\\uf20f'),\n    CALENDAR3_RANGE(\"bi-calendar3-range\", '\\uf211'),\n    CALENDAR3_RANGE_FILL(\"bi-calendar3-range-fill\", '\\uf210'),\n    CALENDAR3_WEEK(\"bi-calendar3-week\", '\\uf213'),\n    CALENDAR3_WEEK_FILL(\"bi-calendar3-week-fill\", '\\uf212'),\n    CALENDAR4(\"bi-calendar4\", '\\uf218'),\n    CALENDAR4_EVENT(\"bi-calendar4-event\", '\\uf215'),\n    CALENDAR4_RANGE(\"bi-calendar4-range\", '\\uf216'),\n    CALENDAR4_WEEK(\"bi-calendar4-week\", '\\uf217'),\n    CALENDAR_CHECK(\"bi-calendar-check\", '\\uf1e2'),\n    CALENDAR_CHECK_FILL(\"bi-calendar-check-fill\", '\\uf1e1'),\n    CALENDAR_DATE(\"bi-calendar-date\", '\\uf1e4'),\n    CALENDAR_DATE_FILL(\"bi-calendar-date-fill\", '\\uf1e3'),\n    CALENDAR_DAY(\"bi-calendar-day\", '\\uf1e6'),\n    CALENDAR_DAY_FILL(\"bi-calendar-day-fill\", '\\uf1e5'),\n    CALENDAR_EVENT(\"bi-calendar-event\", '\\uf1e8'),\n    CALENDAR_EVENT_FILL(\"bi-calendar-event-fill\", '\\uf1e7'),\n    CALENDAR_FILL(\"bi-calendar-fill\", '\\uf1e9'),\n    CALENDAR_MINUS(\"bi-calendar-minus\", '\\uf1eb'),\n    CALENDAR_MINUS_FILL(\"bi-calendar-minus-fill\", '\\uf1ea'),\n    CALENDAR_MONTH(\"bi-calendar-month\", '\\uf1ed'),\n    CALENDAR_MONTH_FILL(\"bi-calendar-month-fill\", '\\uf1ec'),\n    CALENDAR_PLUS(\"bi-calendar-plus\", '\\uf1ef'),\n    CALENDAR_PLUS_FILL(\"bi-calendar-plus-fill\", '\\uf1ee'),\n    CALENDAR_RANGE(\"bi-calendar-range\", '\\uf1f1'),\n    CALENDAR_RANGE_FILL(\"bi-calendar-range-fill\", '\\uf1f0'),\n    CALENDAR_WEEK(\"bi-calendar-week\", '\\uf1f3'),\n    CALENDAR_WEEK_FILL(\"bi-calendar-week-fill\", '\\uf1f2'),\n    CALENDAR_X(\"bi-calendar-x\", '\\uf1f5'),\n    CALENDAR_X_FILL(\"bi-calendar-x-fill\", '\\uf1f4'),\n    CAMERA(\"bi-camera\", '\\uf220'),\n    CAMERA2(\"bi-camera2\", '\\uf221'),\n    CAMERA_FILL(\"bi-camera-fill\", '\\uf219'),\n    CAMERA_REELS(\"bi-camera-reels\", '\\uf21b'),\n    CAMERA_REELS_FILL(\"bi-camera-reels-fill\", '\\uf21a'),\n    CAMERA_VIDEO(\"bi-camera-video\", '\\uf21f'),\n    CAMERA_VIDEO_FILL(\"bi-camera-video-fill\", '\\uf21c'),\n    CAMERA_VIDEO_OFF(\"bi-camera-video-off\", '\\uf21e'),\n    CAMERA_VIDEO_OFF_FILL(\"bi-camera-video-off-fill\", '\\uf21d'),\n    CAPSLOCK(\"bi-capslock\", '\\uf223'),\n    CAPSLOCK_FILL(\"bi-capslock-fill\", '\\uf222'),\n    CARD_CHECKLIST(\"bi-card-checklist\", '\\uf224'),\n    CARD_HEADING(\"bi-card-heading\", '\\uf225'),\n    CARD_IMAGE(\"bi-card-image\", '\\uf226'),\n    CARD_LIST(\"bi-card-list\", '\\uf227'),\n    CARD_TEXT(\"bi-card-text\", '\\uf228'),\n    CARET_DOWN(\"bi-caret-down\", '\\uf22c'),\n    CARET_DOWN_FILL(\"bi-caret-down-fill\", '\\uf229'),\n    CARET_DOWN_SQUARE(\"bi-caret-down-square\", '\\uf22b'),\n    CARET_DOWN_SQUARE_FILL(\"bi-caret-down-square-fill\", '\\uf22a'),\n    CARET_LEFT(\"bi-caret-left\", '\\uf230'),\n    CARET_LEFT_FILL(\"bi-caret-left-fill\", '\\uf22d'),\n    CARET_LEFT_SQUARE(\"bi-caret-left-square\", '\\uf22f'),\n    CARET_LEFT_SQUARE_FILL(\"bi-caret-left-square-fill\", '\\uf22e'),\n    CARET_RIGHT(\"bi-caret-right\", '\\uf234'),\n    CARET_RIGHT_FILL(\"bi-caret-right-fill\", '\\uf231'),\n    CARET_RIGHT_SQUARE(\"bi-caret-right-square\", '\\uf233'),\n    CARET_RIGHT_SQUARE_FILL(\"bi-caret-right-square-fill\", '\\uf232'),\n    CARET_UP(\"bi-caret-up\", '\\uf238'),\n    CARET_UP_FILL(\"bi-caret-up-fill\", '\\uf235'),\n    CARET_UP_SQUARE(\"bi-caret-up-square\", '\\uf237'),\n    CARET_UP_SQUARE_FILL(\"bi-caret-up-square-fill\", '\\uf236'),\n    CART(\"bi-cart\", '\\uf242'),\n    CART2(\"bi-cart2\", '\\uf243'),\n    CART3(\"bi-cart3\", '\\uf244'),\n    CART4(\"bi-cart4\", '\\uf245'),\n    CART_CHECK(\"bi-cart-check\", '\\uf23a'),\n    CART_CHECK_FILL(\"bi-cart-check-fill\", '\\uf239'),\n    CART_DASH(\"bi-cart-dash\", '\\uf23c'),\n    CART_DASH_FILL(\"bi-cart-dash-fill\", '\\uf23b'),\n    CART_FILL(\"bi-cart-fill\", '\\uf23d'),\n    CART_PLUS(\"bi-cart-plus\", '\\uf23f'),\n    CART_PLUS_FILL(\"bi-cart-plus-fill\", '\\uf23e'),\n    CART_X(\"bi-cart-x\", '\\uf241'),\n    CART_X_FILL(\"bi-cart-x-fill\", '\\uf240'),\n    CASH(\"bi-cash\", '\\uf247'),\n    CASH_STACK(\"bi-cash-stack\", '\\uf246'),\n    CAST(\"bi-cast\", '\\uf248'),\n    CHAT(\"bi-chat\", '\\uf268'),\n    CHAT_DOTS(\"bi-chat-dots\", '\\uf24a'),\n    CHAT_DOTS_FILL(\"bi-chat-dots-fill\", '\\uf249'),\n    CHAT_FILL(\"bi-chat-fill\", '\\uf24b'),\n    CHAT_LEFT(\"bi-chat-left\", '\\uf253'),\n    CHAT_LEFT_DOTS(\"bi-chat-left-dots\", '\\uf24d'),\n    CHAT_LEFT_DOTS_FILL(\"bi-chat-left-dots-fill\", '\\uf24c'),\n    CHAT_LEFT_FILL(\"bi-chat-left-fill\", '\\uf24e'),\n    CHAT_LEFT_QUOTE(\"bi-chat-left-quote\", '\\uf250'),\n    CHAT_LEFT_QUOTE_FILL(\"bi-chat-left-quote-fill\", '\\uf24f'),\n    CHAT_LEFT_TEXT(\"bi-chat-left-text\", '\\uf252'),\n    CHAT_LEFT_TEXT_FILL(\"bi-chat-left-text-fill\", '\\uf251'),\n    CHAT_QUOTE(\"bi-chat-quote\", '\\uf255'),\n    CHAT_QUOTE_FILL(\"bi-chat-quote-fill\", '\\uf254'),\n    CHAT_RIGHT(\"bi-chat-right\", '\\uf25d'),\n    CHAT_RIGHT_DOTS(\"bi-chat-right-dots\", '\\uf257'),\n    CHAT_RIGHT_DOTS_FILL(\"bi-chat-right-dots-fill\", '\\uf256'),\n    CHAT_RIGHT_FILL(\"bi-chat-right-fill\", '\\uf258'),\n    CHAT_RIGHT_QUOTE(\"bi-chat-right-quote\", '\\uf25a'),\n    CHAT_RIGHT_QUOTE_FILL(\"bi-chat-right-quote-fill\", '\\uf259'),\n    CHAT_RIGHT_TEXT(\"bi-chat-right-text\", '\\uf25c'),\n    CHAT_RIGHT_TEXT_FILL(\"bi-chat-right-text-fill\", '\\uf25b'),\n    CHAT_SQUARE(\"bi-chat-square\", '\\uf265'),\n    CHAT_SQUARE_DOTS(\"bi-chat-square-dots\", '\\uf25f'),\n    CHAT_SQUARE_DOTS_FILL(\"bi-chat-square-dots-fill\", '\\uf25e'),\n    CHAT_SQUARE_FILL(\"bi-chat-square-fill\", '\\uf260'),\n    CHAT_SQUARE_QUOTE(\"bi-chat-square-quote\", '\\uf262'),\n    CHAT_SQUARE_QUOTE_FILL(\"bi-chat-square-quote-fill\", '\\uf261'),\n    CHAT_SQUARE_TEXT(\"bi-chat-square-text\", '\\uf264'),\n    CHAT_SQUARE_TEXT_FILL(\"bi-chat-square-text-fill\", '\\uf263'),\n    CHAT_TEXT(\"bi-chat-text\", '\\uf267'),\n    CHAT_TEXT_FILL(\"bi-chat-text-fill\", '\\uf266'),\n    CHECK(\"bi-check\", '\\uf26e'),\n    CHECK2(\"bi-check2\", '\\uf272'),\n    CHECK2_ALL(\"bi-check2-all\", '\\uf26f'),\n    CHECK2_CIRCLE(\"bi-check2-circle\", '\\uf270'),\n    CHECK2_SQUARE(\"bi-check2-square\", '\\uf271'),\n    CHECK_ALL(\"bi-check-all\", '\\uf269'),\n    CHECK_CIRCLE(\"bi-check-circle\", '\\uf26b'),\n    CHECK_CIRCLE_FILL(\"bi-check-circle-fill\", '\\uf26a'),\n    CHECK_SQUARE(\"bi-check-square\", '\\uf26d'),\n    CHECK_SQUARE_FILL(\"bi-check-square-fill\", '\\uf26c'),\n    CHEVRON_BAR_CONTRACT(\"bi-chevron-bar-contract\", '\\uf273'),\n    CHEVRON_BAR_DOWN(\"bi-chevron-bar-down\", '\\uf274'),\n    CHEVRON_BAR_EXPAND(\"bi-chevron-bar-expand\", '\\uf275'),\n    CHEVRON_BAR_LEFT(\"bi-chevron-bar-left\", '\\uf276'),\n    CHEVRON_BAR_RIGHT(\"bi-chevron-bar-right\", '\\uf277'),\n    CHEVRON_BAR_UP(\"bi-chevron-bar-up\", '\\uf278'),\n    CHEVRON_COMPACT_DOWN(\"bi-chevron-compact-down\", '\\uf279'),\n    CHEVRON_COMPACT_LEFT(\"bi-chevron-compact-left\", '\\uf27a'),\n    CHEVRON_COMPACT_RIGHT(\"bi-chevron-compact-right\", '\\uf27b'),\n    CHEVRON_COMPACT_UP(\"bi-chevron-compact-up\", '\\uf27c'),\n    CHEVRON_CONTRACT(\"bi-chevron-contract\", '\\uf27d'),\n    CHEVRON_DOUBLE_DOWN(\"bi-chevron-double-down\", '\\uf27e'),\n    CHEVRON_DOUBLE_LEFT(\"bi-chevron-double-left\", '\\uf27f'),\n    CHEVRON_DOUBLE_RIGHT(\"bi-chevron-double-right\", '\\uf280'),\n    CHEVRON_DOUBLE_UP(\"bi-chevron-double-up\", '\\uf281'),\n    CHEVRON_DOWN(\"bi-chevron-down\", '\\uf282'),\n    CHEVRON_EXPAND(\"bi-chevron-expand\", '\\uf283'),\n    CHEVRON_LEFT(\"bi-chevron-left\", '\\uf284'),\n    CHEVRON_RIGHT(\"bi-chevron-right\", '\\uf285'),\n    CHEVRON_UP(\"bi-chevron-up\", '\\uf286'),\n    CIRCLE(\"bi-circle\", '\\uf28a'),\n    CIRCLE_FILL(\"bi-circle-fill\", '\\uf287'),\n    CIRCLE_HALF(\"bi-circle-half\", '\\uf288'),\n    CIRCLE_SQUARE(\"bi-circle-square\", '\\uf289'),\n    CLIPBOARD(\"bi-clipboard\", '\\uf290'),\n    CLIPBOARD_CHECK(\"bi-clipboard-check\", '\\uf28b'),\n    CLIPBOARD_DATA(\"bi-clipboard-data\", '\\uf28c'),\n    CLIPBOARD_MINUS(\"bi-clipboard-minus\", '\\uf28d'),\n    CLIPBOARD_PLUS(\"bi-clipboard-plus\", '\\uf28e'),\n    CLIPBOARD_X(\"bi-clipboard-x\", '\\uf28f'),\n    CLOCK(\"bi-clock\", '\\uf293'),\n    CLOCK_FILL(\"bi-clock-fill\", '\\uf291'),\n    CLOCK_HISTORY(\"bi-clock-history\", '\\uf292'),\n    CLOUD(\"bi-cloud\", '\\uf2c1'),\n    CLOUDS(\"bi-clouds\", '\\uf2c3'),\n    CLOUDS_FILL(\"bi-clouds-fill\", '\\uf2c2'),\n    CLOUDY(\"bi-cloudy\", '\\uf2c5'),\n    CLOUDY_FILL(\"bi-cloudy-fill\", '\\uf2c4'),\n    CLOUD_ARROW_DOWN(\"bi-cloud-arrow-down\", '\\uf295'),\n    CLOUD_ARROW_DOWN_FILL(\"bi-cloud-arrow-down-fill\", '\\uf294'),\n    CLOUD_ARROW_UP(\"bi-cloud-arrow-up\", '\\uf297'),\n    CLOUD_ARROW_UP_FILL(\"bi-cloud-arrow-up-fill\", '\\uf296'),\n    CLOUD_CHECK(\"bi-cloud-check\", '\\uf299'),\n    CLOUD_CHECK_FILL(\"bi-cloud-check-fill\", '\\uf298'),\n    CLOUD_DOWNLOAD(\"bi-cloud-download\", '\\uf29b'),\n    CLOUD_DOWNLOAD_FILL(\"bi-cloud-download-fill\", '\\uf29a'),\n    CLOUD_DRIZZLE(\"bi-cloud-drizzle\", '\\uf29d'),\n    CLOUD_DRIZZLE_FILL(\"bi-cloud-drizzle-fill\", '\\uf29c'),\n    CLOUD_FILL(\"bi-cloud-fill\", '\\uf29e'),\n    CLOUD_FOG(\"bi-cloud-fog\", '\\uf2a0'),\n    CLOUD_FOG2(\"bi-cloud-fog2\", '\\uf2a2'),\n    CLOUD_FOG2_FILL(\"bi-cloud-fog2-fill\", '\\uf2a1'),\n    CLOUD_FOG_FILL(\"bi-cloud-fog-fill\", '\\uf29f'),\n    CLOUD_HAIL(\"bi-cloud-hail\", '\\uf2a4'),\n    CLOUD_HAIL_FILL(\"bi-cloud-hail-fill\", '\\uf2a3'),\n    CLOUD_HAZE(\"bi-cloud-haze\", '\\uf2a7'),\n    CLOUD_HAZE2_FILL(\"bi-cloud-haze2-fill\", '\\uf2a8'),\n    CLOUD_HAZE_1(\"bi-cloud-haze-1\", '\\uf2a5'),\n    CLOUD_HAZE_FILL(\"bi-cloud-haze-fill\", '\\uf2a6'),\n    CLOUD_LIGHTNING(\"bi-cloud-lightning\", '\\uf2ac'),\n    CLOUD_LIGHTNING_FILL(\"bi-cloud-lightning-fill\", '\\uf2a9'),\n    CLOUD_LIGHTNING_RAIN(\"bi-cloud-lightning-rain\", '\\uf2ab'),\n    CLOUD_LIGHTNING_RAIN_FILL(\"bi-cloud-lightning-rain-fill\", '\\uf2aa'),\n    CLOUD_MINUS(\"bi-cloud-minus\", '\\uf2ae'),\n    CLOUD_MINUS_FILL(\"bi-cloud-minus-fill\", '\\uf2ad'),\n    CLOUD_MOON(\"bi-cloud-moon\", '\\uf2b0'),\n    CLOUD_MOON_FILL(\"bi-cloud-moon-fill\", '\\uf2af'),\n    CLOUD_PLUS(\"bi-cloud-plus\", '\\uf2b2'),\n    CLOUD_PLUS_FILL(\"bi-cloud-plus-fill\", '\\uf2b1'),\n    CLOUD_RAIN(\"bi-cloud-rain\", '\\uf2b6'),\n    CLOUD_RAIN_FILL(\"bi-cloud-rain-fill\", '\\uf2b3'),\n    CLOUD_RAIN_HEAVY(\"bi-cloud-rain-heavy\", '\\uf2b5'),\n    CLOUD_RAIN_HEAVY_FILL(\"bi-cloud-rain-heavy-fill\", '\\uf2b4'),\n    CLOUD_SLASH(\"bi-cloud-slash\", '\\uf2b8'),\n    CLOUD_SLASH_FILL(\"bi-cloud-slash-fill\", '\\uf2b7'),\n    CLOUD_SLEET(\"bi-cloud-sleet\", '\\uf2ba'),\n    CLOUD_SLEET_FILL(\"bi-cloud-sleet-fill\", '\\uf2b9'),\n    CLOUD_SNOW(\"bi-cloud-snow\", '\\uf2bc'),\n    CLOUD_SNOW_FILL(\"bi-cloud-snow-fill\", '\\uf2bb'),\n    CLOUD_SUN(\"bi-cloud-sun\", '\\uf2be'),\n    CLOUD_SUN_FILL(\"bi-cloud-sun-fill\", '\\uf2bd'),\n    CLOUD_UPLOAD(\"bi-cloud-upload\", '\\uf2c0'),\n    CLOUD_UPLOAD_FILL(\"bi-cloud-upload-fill\", '\\uf2bf'),\n    CODE(\"bi-code\", '\\uf2c8'),\n    CODE_SLASH(\"bi-code-slash\", '\\uf2c6'),\n    CODE_SQUARE(\"bi-code-square\", '\\uf2c7'),\n    COLLECTION(\"bi-collection\", '\\uf2cc'),\n    COLLECTION_FILL(\"bi-collection-fill\", '\\uf2c9'),\n    COLLECTION_PLAY(\"bi-collection-play\", '\\uf2cb'),\n    COLLECTION_PLAY_FILL(\"bi-collection-play-fill\", '\\uf2ca'),\n    COLUMNS(\"bi-columns\", '\\uf2ce'),\n    COLUMNS_GAP(\"bi-columns-gap\", '\\uf2cd'),\n    COMMAND(\"bi-command\", '\\uf2cf'),\n    COMPASS(\"bi-compass\", '\\uf2d1'),\n    COMPASS_FILL(\"bi-compass-fill\", '\\uf2d0'),\n    CONE(\"bi-cone\", '\\uf2d3'),\n    CONE_STRIPED(\"bi-cone-striped\", '\\uf2d2'),\n    CONTROLLER(\"bi-controller\", '\\uf2d4'),\n    CPU(\"bi-cpu\", '\\uf2d6'),\n    CPU_FILL(\"bi-cpu-fill\", '\\uf2d5'),\n    CREDIT_CARD(\"bi-credit-card\", '\\uf2dc'),\n    CREDIT_CARD_2_BACK(\"bi-credit-card-2-back\", '\\uf2d8'),\n    CREDIT_CARD_2_BACK_FILL(\"bi-credit-card-2-back-fill\", '\\uf2d7'),\n    CREDIT_CARD_2_FRONT(\"bi-credit-card-2-front\", '\\uf2da'),\n    CREDIT_CARD_2_FRONT_FILL(\"bi-credit-card-2-front-fill\", '\\uf2d9'),\n    CREDIT_CARD_FILL(\"bi-credit-card-fill\", '\\uf2db'),\n    CROP(\"bi-crop\", '\\uf2dd'),\n    CUP(\"bi-cup\", '\\uf2e0'),\n    CUP_FILL(\"bi-cup-fill\", '\\uf2de'),\n    CUP_STRAW(\"bi-cup-straw\", '\\uf2df'),\n    CURSOR(\"bi-cursor\", '\\uf2e3'),\n    CURSOR_FILL(\"bi-cursor-fill\", '\\uf2e1'),\n    CURSOR_TEXT(\"bi-cursor-text\", '\\uf2e2'),\n    DASH(\"bi-dash\", '\\uf2ea'),\n    DASH_CIRCLE(\"bi-dash-circle\", '\\uf2e6'),\n    DASH_CIRCLE_DOTTED(\"bi-dash-circle-dotted\", '\\uf2e4'),\n    DASH_CIRCLE_FILL(\"bi-dash-circle-fill\", '\\uf2e5'),\n    DASH_SQUARE(\"bi-dash-square\", '\\uf2e9'),\n    DASH_SQUARE_DOTTED(\"bi-dash-square-dotted\", '\\uf2e7'),\n    DASH_SQUARE_FILL(\"bi-dash-square-fill\", '\\uf2e8'),\n    DIAGRAM_2(\"bi-diagram-2\", '\\uf2ec'),\n    DIAGRAM_2_FILL(\"bi-diagram-2-fill\", '\\uf2eb'),\n    DIAGRAM_3(\"bi-diagram-3\", '\\uf2ee'),\n    DIAGRAM_3_FILL(\"bi-diagram-3-fill\", '\\uf2ed'),\n    DIAMOND(\"bi-diamond\", '\\uf2f1'),\n    DIAMOND_FILL(\"bi-diamond-fill\", '\\uf2ef'),\n    DIAMOND_HALF(\"bi-diamond-half\", '\\uf2f0'),\n    DICE_1(\"bi-dice-1\", '\\uf2f3'),\n    DICE_1_FILL(\"bi-dice-1-fill\", '\\uf2f2'),\n    DICE_2(\"bi-dice-2\", '\\uf2f5'),\n    DICE_2_FILL(\"bi-dice-2-fill\", '\\uf2f4'),\n    DICE_3(\"bi-dice-3\", '\\uf2f7'),\n    DICE_3_FILL(\"bi-dice-3-fill\", '\\uf2f6'),\n    DICE_4(\"bi-dice-4\", '\\uf2f9'),\n    DICE_4_FILL(\"bi-dice-4-fill\", '\\uf2f8'),\n    DICE_5(\"bi-dice-5\", '\\uf2fb'),\n    DICE_5_FILL(\"bi-dice-5-fill\", '\\uf2fa'),\n    DICE_6(\"bi-dice-6\", '\\uf2fd'),\n    DICE_6_FILL(\"bi-dice-6-fill\", '\\uf2fc'),\n    DISC(\"bi-disc\", '\\uf2ff'),\n    DISCORD(\"bi-discord\", '\\uf300'),\n    DISC_FILL(\"bi-disc-fill\", '\\uf2fe'),\n    DISPLAY(\"bi-display\", '\\uf302'),\n    DISPLAY_FILL(\"bi-display-fill\", '\\uf301'),\n    DISTRIBUTE_HORIZONTAL(\"bi-distribute-horizontal\", '\\uf303'),\n    DISTRIBUTE_VERTICAL(\"bi-distribute-vertical\", '\\uf304'),\n    DOOR_CLOSED(\"bi-door-closed\", '\\uf306'),\n    DOOR_CLOSED_FILL(\"bi-door-closed-fill\", '\\uf305'),\n    DOOR_OPEN(\"bi-door-open\", '\\uf308'),\n    DOOR_OPEN_FILL(\"bi-door-open-fill\", '\\uf307'),\n    DOT(\"bi-dot\", '\\uf309'),\n    DOWNLOAD(\"bi-download\", '\\uf30a'),\n    DROPLET(\"bi-droplet\", '\\uf30d'),\n    DROPLET_FILL(\"bi-droplet-fill\", '\\uf30b'),\n    DROPLET_HALF(\"bi-droplet-half\", '\\uf30c'),\n    EARBUDS(\"bi-earbuds\", '\\uf30e'),\n    EASEL(\"bi-easel\", '\\uf310'),\n    EASEL_FILL(\"bi-easel-fill\", '\\uf30f'),\n    EGG(\"bi-egg\", '\\uf313'),\n    EGG_FILL(\"bi-egg-fill\", '\\uf311'),\n    EGG_FRIED(\"bi-egg-fried\", '\\uf312'),\n    EJECT(\"bi-eject\", '\\uf315'),\n    EJECT_FILL(\"bi-eject-fill\", '\\uf314'),\n    EMOJI_ANGRY(\"bi-emoji-angry\", '\\uf317'),\n    EMOJI_ANGRY_FILL(\"bi-emoji-angry-fill\", '\\uf316'),\n    EMOJI_DIZZY(\"bi-emoji-dizzy\", '\\uf319'),\n    EMOJI_DIZZY_FILL(\"bi-emoji-dizzy-fill\", '\\uf318'),\n    EMOJI_EXPRESSIONLESS(\"bi-emoji-expressionless\", '\\uf31b'),\n    EMOJI_EXPRESSIONLESS_FILL(\"bi-emoji-expressionless-fill\", '\\uf31a'),\n    EMOJI_FROWN(\"bi-emoji-frown\", '\\uf31d'),\n    EMOJI_FROWN_FILL(\"bi-emoji-frown-fill\", '\\uf31c'),\n    EMOJI_HEART_EYES(\"bi-emoji-heart-eyes\", '\\uf31f'),\n    EMOJI_HEART_EYES_FILL(\"bi-emoji-heart-eyes-fill\", '\\uf31e'),\n    EMOJI_LAUGHING(\"bi-emoji-laughing\", '\\uf321'),\n    EMOJI_LAUGHING_FILL(\"bi-emoji-laughing-fill\", '\\uf320'),\n    EMOJI_NEUTRAL(\"bi-emoji-neutral\", '\\uf323'),\n    EMOJI_NEUTRAL_FILL(\"bi-emoji-neutral-fill\", '\\uf322'),\n    EMOJI_SMILE(\"bi-emoji-smile\", '\\uf327'),\n    EMOJI_SMILE_FILL(\"bi-emoji-smile-fill\", '\\uf324'),\n    EMOJI_SMILE_UPSIDE_DOWN(\"bi-emoji-smile-upside-down\", '\\uf326'),\n    EMOJI_SMILE_UPSIDE_DOWN_FILL(\"bi-emoji-smile-upside-down-fill\", '\\uf325'),\n    EMOJI_SUNGLASSES(\"bi-emoji-sunglasses\", '\\uf329'),\n    EMOJI_SUNGLASSES_FILL(\"bi-emoji-sunglasses-fill\", '\\uf328'),\n    EMOJI_WINK(\"bi-emoji-wink\", '\\uf32b'),\n    EMOJI_WINK_FILL(\"bi-emoji-wink-fill\", '\\uf32a'),\n    ENVELOPE(\"bi-envelope\", '\\uf32f'),\n    ENVELOPE_FILL(\"bi-envelope-fill\", '\\uf32c'),\n    ENVELOPE_OPEN(\"bi-envelope-open\", '\\uf32e'),\n    ENVELOPE_OPEN_FILL(\"bi-envelope-open-fill\", '\\uf32d'),\n    ERASER(\"bi-eraser\", '\\uf331'),\n    ERASER_FILL(\"bi-eraser-fill\", '\\uf330'),\n    EXCLAMATION(\"bi-exclamation\", '\\uf33c'),\n    EXCLAMATION_CIRCLE(\"bi-exclamation-circle\", '\\uf333'),\n    EXCLAMATION_CIRCLE_FILL(\"bi-exclamation-circle-fill\", '\\uf332'),\n    EXCLAMATION_DIAMOND(\"bi-exclamation-diamond\", '\\uf335'),\n    EXCLAMATION_DIAMOND_FILL(\"bi-exclamation-diamond-fill\", '\\uf334'),\n    EXCLAMATION_OCTAGON(\"bi-exclamation-octagon\", '\\uf337'),\n    EXCLAMATION_OCTAGON_FILL(\"bi-exclamation-octagon-fill\", '\\uf336'),\n    EXCLAMATION_SQUARE(\"bi-exclamation-square\", '\\uf339'),\n    EXCLAMATION_SQUARE_FILL(\"bi-exclamation-square-fill\", '\\uf338'),\n    EXCLAMATION_TRIANGLE(\"bi-exclamation-triangle\", '\\uf33b'),\n    EXCLAMATION_TRIANGLE_FILL(\"bi-exclamation-triangle-fill\", '\\uf33a'),\n    EXCLUDE(\"bi-exclude\", '\\uf33d'),\n    EYE(\"bi-eye\", '\\uf341'),\n    EYEDROPPER(\"bi-eyedropper\", '\\uf342'),\n    EYEGLASSES(\"bi-eyeglasses\", '\\uf343'),\n    EYE_FILL(\"bi-eye-fill\", '\\uf33e'),\n    EYE_SLASH(\"bi-eye-slash\", '\\uf340'),\n    EYE_SLASH_FILL(\"bi-eye-slash-fill\", '\\uf33f'),\n    FACEBOOK(\"bi-facebook\", '\\uf344'),\n    FILE(\"bi-file\", '\\uf3c0'),\n    FILES(\"bi-files\", '\\uf3c2'),\n    FILES_ALT(\"bi-files-alt\", '\\uf3c1'),\n    FILE_ARROW_DOWN(\"bi-file-arrow-down\", '\\uf346'),\n    FILE_ARROW_DOWN_FILL(\"bi-file-arrow-down-fill\", '\\uf345'),\n    FILE_ARROW_UP(\"bi-file-arrow-up\", '\\uf348'),\n    FILE_ARROW_UP_FILL(\"bi-file-arrow-up-fill\", '\\uf347'),\n    FILE_BAR_GRAPH(\"bi-file-bar-graph\", '\\uf34a'),\n    FILE_BAR_GRAPH_FILL(\"bi-file-bar-graph-fill\", '\\uf349'),\n    FILE_BINARY(\"bi-file-binary\", '\\uf34c'),\n    FILE_BINARY_FILL(\"bi-file-binary-fill\", '\\uf34b'),\n    FILE_BREAK(\"bi-file-break\", '\\uf34e'),\n    FILE_BREAK_FILL(\"bi-file-break-fill\", '\\uf34d'),\n    FILE_CHECK(\"bi-file-check\", '\\uf350'),\n    FILE_CHECK_FILL(\"bi-file-check-fill\", '\\uf34f'),\n    FILE_CODE(\"bi-file-code\", '\\uf352'),\n    FILE_CODE_FILL(\"bi-file-code-fill\", '\\uf351'),\n    FILE_DIFF(\"bi-file-diff\", '\\uf354'),\n    FILE_DIFF_FILL(\"bi-file-diff-fill\", '\\uf353'),\n    FILE_EARMARK(\"bi-file-earmark\", '\\uf392'),\n    FILE_EARMARK_ARROW_DOWN(\"bi-file-earmark-arrow-down\", '\\uf356'),\n    FILE_EARMARK_ARROW_DOWN_FILL(\"bi-file-earmark-arrow-down-fill\", '\\uf355'),\n    FILE_EARMARK_ARROW_UP(\"bi-file-earmark-arrow-up\", '\\uf358'),\n    FILE_EARMARK_ARROW_UP_FILL(\"bi-file-earmark-arrow-up-fill\", '\\uf357'),\n    FILE_EARMARK_BAR_GRAPH(\"bi-file-earmark-bar-graph\", '\\uf35a'),\n    FILE_EARMARK_BAR_GRAPH_FILL(\"bi-file-earmark-bar-graph-fill\", '\\uf359'),\n    FILE_EARMARK_BINARY(\"bi-file-earmark-binary\", '\\uf35c'),\n    FILE_EARMARK_BINARY_FILL(\"bi-file-earmark-binary-fill\", '\\uf35b'),\n    FILE_EARMARK_BREAK(\"bi-file-earmark-break\", '\\uf35e'),\n    FILE_EARMARK_BREAK_FILL(\"bi-file-earmark-break-fill\", '\\uf35d'),\n    FILE_EARMARK_CHECK(\"bi-file-earmark-check\", '\\uf360'),\n    FILE_EARMARK_CHECK_FILL(\"bi-file-earmark-check-fill\", '\\uf35f'),\n    FILE_EARMARK_CODE(\"bi-file-earmark-code\", '\\uf362'),\n    FILE_EARMARK_CODE_FILL(\"bi-file-earmark-code-fill\", '\\uf361'),\n    FILE_EARMARK_DIFF(\"bi-file-earmark-diff\", '\\uf364'),\n    FILE_EARMARK_DIFF_FILL(\"bi-file-earmark-diff-fill\", '\\uf363'),\n    FILE_EARMARK_EASEL(\"bi-file-earmark-easel\", '\\uf366'),\n    FILE_EARMARK_EASEL_FILL(\"bi-file-earmark-easel-fill\", '\\uf365'),\n    FILE_EARMARK_EXCEL(\"bi-file-earmark-excel\", '\\uf368'),\n    FILE_EARMARK_EXCEL_FILL(\"bi-file-earmark-excel-fill\", '\\uf367'),\n    FILE_EARMARK_FILL(\"bi-file-earmark-fill\", '\\uf369'),\n    FILE_EARMARK_FONT(\"bi-file-earmark-font\", '\\uf36b'),\n    FILE_EARMARK_FONT_FILL(\"bi-file-earmark-font-fill\", '\\uf36a'),\n    FILE_EARMARK_IMAGE(\"bi-file-earmark-image\", '\\uf36d'),\n    FILE_EARMARK_IMAGE_FILL(\"bi-file-earmark-image-fill\", '\\uf36c'),\n    FILE_EARMARK_LOCK(\"bi-file-earmark-lock\", '\\uf36f'),\n    FILE_EARMARK_LOCK2(\"bi-file-earmark-lock2\", '\\uf371'),\n    FILE_EARMARK_LOCK2_FILL(\"bi-file-earmark-lock2-fill\", '\\uf370'),\n    FILE_EARMARK_LOCK_FILL(\"bi-file-earmark-lock-fill\", '\\uf36e'),\n    FILE_EARMARK_MEDICAL(\"bi-file-earmark-medical\", '\\uf373'),\n    FILE_EARMARK_MEDICAL_FILL(\"bi-file-earmark-medical-fill\", '\\uf372'),\n    FILE_EARMARK_MINUS(\"bi-file-earmark-minus\", '\\uf375'),\n    FILE_EARMARK_MINUS_FILL(\"bi-file-earmark-minus-fill\", '\\uf374'),\n    FILE_EARMARK_MUSIC(\"bi-file-earmark-music\", '\\uf377'),\n    FILE_EARMARK_MUSIC_FILL(\"bi-file-earmark-music-fill\", '\\uf376'),\n    FILE_EARMARK_PERSON(\"bi-file-earmark-person\", '\\uf379'),\n    FILE_EARMARK_PERSON_FILL(\"bi-file-earmark-person-fill\", '\\uf378'),\n    FILE_EARMARK_PLAY(\"bi-file-earmark-play\", '\\uf37b'),\n    FILE_EARMARK_PLAY_FILL(\"bi-file-earmark-play-fill\", '\\uf37a'),\n    FILE_EARMARK_PLUS(\"bi-file-earmark-plus\", '\\uf37d'),\n    FILE_EARMARK_PLUS_FILL(\"bi-file-earmark-plus-fill\", '\\uf37c'),\n    FILE_EARMARK_POST(\"bi-file-earmark-post\", '\\uf37f'),\n    FILE_EARMARK_POST_FILL(\"bi-file-earmark-post-fill\", '\\uf37e'),\n    FILE_EARMARK_PPT(\"bi-file-earmark-ppt\", '\\uf381'),\n    FILE_EARMARK_PPT_FILL(\"bi-file-earmark-ppt-fill\", '\\uf380'),\n    FILE_EARMARK_RICHTEXT(\"bi-file-earmark-richtext\", '\\uf383'),\n    FILE_EARMARK_RICHTEXT_FILL(\"bi-file-earmark-richtext-fill\", '\\uf382'),\n    FILE_EARMARK_RULED(\"bi-file-earmark-ruled\", '\\uf385'),\n    FILE_EARMARK_RULED_FILL(\"bi-file-earmark-ruled-fill\", '\\uf384'),\n    FILE_EARMARK_SLIDES(\"bi-file-earmark-slides\", '\\uf387'),\n    FILE_EARMARK_SLIDES_FILL(\"bi-file-earmark-slides-fill\", '\\uf386'),\n    FILE_EARMARK_SPREADSHEET(\"bi-file-earmark-spreadsheet\", '\\uf389'),\n    FILE_EARMARK_SPREADSHEET_FILL(\"bi-file-earmark-spreadsheet-fill\", '\\uf388'),\n    FILE_EARMARK_TEXT(\"bi-file-earmark-text\", '\\uf38b'),\n    FILE_EARMARK_TEXT_FILL(\"bi-file-earmark-text-fill\", '\\uf38a'),\n    FILE_EARMARK_WORD(\"bi-file-earmark-word\", '\\uf38d'),\n    FILE_EARMARK_WORD_FILL(\"bi-file-earmark-word-fill\", '\\uf38c'),\n    FILE_EARMARK_X(\"bi-file-earmark-x\", '\\uf38f'),\n    FILE_EARMARK_X_FILL(\"bi-file-earmark-x-fill\", '\\uf38e'),\n    FILE_EARMARK_ZIP(\"bi-file-earmark-zip\", '\\uf391'),\n    FILE_EARMARK_ZIP_FILL(\"bi-file-earmark-zip-fill\", '\\uf390'),\n    FILE_EASEL(\"bi-file-easel\", '\\uf394'),\n    FILE_EASEL_FILL(\"bi-file-easel-fill\", '\\uf393'),\n    FILE_EXCEL(\"bi-file-excel\", '\\uf396'),\n    FILE_EXCEL_FILL(\"bi-file-excel-fill\", '\\uf395'),\n    FILE_FILL(\"bi-file-fill\", '\\uf397'),\n    FILE_FONT(\"bi-file-font\", '\\uf399'),\n    FILE_FONT_FILL(\"bi-file-font-fill\", '\\uf398'),\n    FILE_IMAGE(\"bi-file-image\", '\\uf39b'),\n    FILE_IMAGE_FILL(\"bi-file-image-fill\", '\\uf39a'),\n    FILE_LOCK(\"bi-file-lock\", '\\uf39d'),\n    FILE_LOCK2(\"bi-file-lock2\", '\\uf39f'),\n    FILE_LOCK2_FILL(\"bi-file-lock2-fill\", '\\uf39e'),\n    FILE_LOCK_FILL(\"bi-file-lock-fill\", '\\uf39c'),\n    FILE_MEDICAL(\"bi-file-medical\", '\\uf3a1'),\n    FILE_MEDICAL_FILL(\"bi-file-medical-fill\", '\\uf3a0'),\n    FILE_MINUS(\"bi-file-minus\", '\\uf3a3'),\n    FILE_MINUS_FILL(\"bi-file-minus-fill\", '\\uf3a2'),\n    FILE_MUSIC(\"bi-file-music\", '\\uf3a5'),\n    FILE_MUSIC_FILL(\"bi-file-music-fill\", '\\uf3a4'),\n    FILE_PERSON(\"bi-file-person\", '\\uf3a7'),\n    FILE_PERSON_FILL(\"bi-file-person-fill\", '\\uf3a6'),\n    FILE_PLAY(\"bi-file-play\", '\\uf3a9'),\n    FILE_PLAY_FILL(\"bi-file-play-fill\", '\\uf3a8'),\n    FILE_PLUS(\"bi-file-plus\", '\\uf3ab'),\n    FILE_PLUS_FILL(\"bi-file-plus-fill\", '\\uf3aa'),\n    FILE_POST(\"bi-file-post\", '\\uf3ad'),\n    FILE_POST_FILL(\"bi-file-post-fill\", '\\uf3ac'),\n    FILE_PPT(\"bi-file-ppt\", '\\uf3af'),\n    FILE_PPT_FILL(\"bi-file-ppt-fill\", '\\uf3ae'),\n    FILE_RICHTEXT(\"bi-file-richtext\", '\\uf3b1'),\n    FILE_RICHTEXT_FILL(\"bi-file-richtext-fill\", '\\uf3b0'),\n    FILE_RULED(\"bi-file-ruled\", '\\uf3b3'),\n    FILE_RULED_FILL(\"bi-file-ruled-fill\", '\\uf3b2'),\n    FILE_SLIDES(\"bi-file-slides\", '\\uf3b5'),\n    FILE_SLIDES_FILL(\"bi-file-slides-fill\", '\\uf3b4'),\n    FILE_SPREADSHEET(\"bi-file-spreadsheet\", '\\uf3b7'),\n    FILE_SPREADSHEET_FILL(\"bi-file-spreadsheet-fill\", '\\uf3b6'),\n    FILE_TEXT(\"bi-file-text\", '\\uf3b9'),\n    FILE_TEXT_FILL(\"bi-file-text-fill\", '\\uf3b8'),\n    FILE_WORD(\"bi-file-word\", '\\uf3bb'),\n    FILE_WORD_FILL(\"bi-file-word-fill\", '\\uf3ba'),\n    FILE_X(\"bi-file-x\", '\\uf3bd'),\n    FILE_X_FILL(\"bi-file-x-fill\", '\\uf3bc'),\n    FILE_ZIP(\"bi-file-zip\", '\\uf3bf'),\n    FILE_ZIP_FILL(\"bi-file-zip-fill\", '\\uf3be'),\n    FILM(\"bi-film\", '\\uf3c3'),\n    FILTER(\"bi-filter\", '\\uf3ca'),\n    FILTER_CIRCLE(\"bi-filter-circle\", '\\uf3c5'),\n    FILTER_CIRCLE_FILL(\"bi-filter-circle-fill\", '\\uf3c4'),\n    FILTER_LEFT(\"bi-filter-left\", '\\uf3c6'),\n    FILTER_RIGHT(\"bi-filter-right\", '\\uf3c7'),\n    FILTER_SQUARE(\"bi-filter-square\", '\\uf3c9'),\n    FILTER_SQUARE_FILL(\"bi-filter-square-fill\", '\\uf3c8'),\n    FLAG(\"bi-flag\", '\\uf3cc'),\n    FLAG_FILL(\"bi-flag-fill\", '\\uf3cb'),\n    FLOWER1(\"bi-flower1\", '\\uf3cd'),\n    FLOWER2(\"bi-flower2\", '\\uf3ce'),\n    FLOWER3(\"bi-flower3\", '\\uf3cf'),\n    FOLDER(\"bi-folder\", '\\uf3d7'),\n    FOLDER2(\"bi-folder2\", '\\uf3d9'),\n    FOLDER2_OPEN(\"bi-folder2-open\", '\\uf3d8'),\n    FOLDER_CHECK(\"bi-folder-check\", '\\uf3d0'),\n    FOLDER_FILL(\"bi-folder-fill\", '\\uf3d1'),\n    FOLDER_MINUS(\"bi-folder-minus\", '\\uf3d2'),\n    FOLDER_PLUS(\"bi-folder-plus\", '\\uf3d3'),\n    FOLDER_SYMLINK(\"bi-folder-symlink\", '\\uf3d5'),\n    FOLDER_SYMLINK_FILL(\"bi-folder-symlink-fill\", '\\uf3d4'),\n    FOLDER_X(\"bi-folder-x\", '\\uf3d6'),\n    FONTS(\"bi-fonts\", '\\uf3da'),\n    FORWARD(\"bi-forward\", '\\uf3dc'),\n    FORWARD_FILL(\"bi-forward-fill\", '\\uf3db'),\n    FRONT(\"bi-front\", '\\uf3dd'),\n    FULLSCREEN(\"bi-fullscreen\", '\\uf3df'),\n    FULLSCREEN_EXIT(\"bi-fullscreen-exit\", '\\uf3de'),\n    FUNNEL(\"bi-funnel\", '\\uf3e1'),\n    FUNNEL_FILL(\"bi-funnel-fill\", '\\uf3e0'),\n    GEAR(\"bi-gear\", '\\uf3e5'),\n    GEAR_FILL(\"bi-gear-fill\", '\\uf3e2'),\n    GEAR_WIDE(\"bi-gear-wide\", '\\uf3e4'),\n    GEAR_WIDE_CONNECTED(\"bi-gear-wide-connected\", '\\uf3e3'),\n    GEM(\"bi-gem\", '\\uf3e6'),\n    GEO(\"bi-geo\", '\\uf3ea'),\n    GEO_ALT(\"bi-geo-alt\", '\\uf3e8'),\n    GEO_ALT_FILL(\"bi-geo-alt-fill\", '\\uf3e7'),\n    GEO_FILL(\"bi-geo-fill\", '\\uf3e9'),\n    GIFT(\"bi-gift\", '\\uf3ec'),\n    GIFT_FILL(\"bi-gift-fill\", '\\uf3eb'),\n    GITHUB(\"bi-github\", '\\uf3ed'),\n    GLOBE(\"bi-globe\", '\\uf3ee'),\n    GLOBE2(\"bi-globe2\", '\\uf3ef'),\n    GOOGLE(\"bi-google\", '\\uf3f0'),\n    GRAPH_DOWN(\"bi-graph-down\", '\\uf3f1'),\n    GRAPH_UP(\"bi-graph-up\", '\\uf3f2'),\n    GRID(\"bi-grid\", '\\uf3fc'),\n    GRID_1X2(\"bi-grid-1x2\", '\\uf3f4'),\n    GRID_1X2_FILL(\"bi-grid-1x2-fill\", '\\uf3f3'),\n    GRID_3X2(\"bi-grid-3x2\", '\\uf3f7'),\n    GRID_3X2_GAP(\"bi-grid-3x2-gap\", '\\uf3f6'),\n    GRID_3X2_GAP_FILL(\"bi-grid-3x2-gap-fill\", '\\uf3f5'),\n    GRID_3X3(\"bi-grid-3x3\", '\\uf3fa'),\n    GRID_3X3_GAP(\"bi-grid-3x3-gap\", '\\uf3f9'),\n    GRID_3X3_GAP_FILL(\"bi-grid-3x3-gap-fill\", '\\uf3f8'),\n    GRID_FILL(\"bi-grid-fill\", '\\uf3fb'),\n    GRIP_HORIZONTAL(\"bi-grip-horizontal\", '\\uf3fd'),\n    GRIP_VERTICAL(\"bi-grip-vertical\", '\\uf3fe'),\n    HAMMER(\"bi-hammer\", '\\uf3ff'),\n    HANDBAG(\"bi-handbag\", '\\uf409'),\n    HANDBAG_FILL(\"bi-handbag-fill\", '\\uf408'),\n    HAND_INDEX(\"bi-hand-index\", '\\uf403'),\n    HAND_INDEX_FILL(\"bi-hand-index-fill\", '\\uf400'),\n    HAND_INDEX_THUMB(\"bi-hand-index-thumb\", '\\uf402'),\n    HAND_INDEX_THUMB_FILL(\"bi-hand-index-thumb-fill\", '\\uf401'),\n    HAND_THUMBS_DOWN(\"bi-hand-thumbs-down\", '\\uf405'),\n    HAND_THUMBS_DOWN_FILL(\"bi-hand-thumbs-down-fill\", '\\uf404'),\n    HAND_THUMBS_UP(\"bi-hand-thumbs-up\", '\\uf407'),\n    HAND_THUMBS_UP_FILL(\"bi-hand-thumbs-up-fill\", '\\uf406'),\n    HASH(\"bi-hash\", '\\uf40a'),\n    HDD(\"bi-hdd\", '\\uf412'),\n    HDD_FILL(\"bi-hdd-fill\", '\\uf40b'),\n    HDD_NETWORK(\"bi-hdd-network\", '\\uf40d'),\n    HDD_NETWORK_FILL(\"bi-hdd-network-fill\", '\\uf40c'),\n    HDD_RACK(\"bi-hdd-rack\", '\\uf40f'),\n    HDD_RACK_FILL(\"bi-hdd-rack-fill\", '\\uf40e'),\n    HDD_STACK(\"bi-hdd-stack\", '\\uf411'),\n    HDD_STACK_FILL(\"bi-hdd-stack-fill\", '\\uf410'),\n    HEADPHONES(\"bi-headphones\", '\\uf413'),\n    HEADSET(\"bi-headset\", '\\uf414'),\n    HEART(\"bi-heart\", '\\uf417'),\n    HEART_FILL(\"bi-heart-fill\", '\\uf415'),\n    HEART_HALF(\"bi-heart-half\", '\\uf416'),\n    HEPTAGON(\"bi-heptagon\", '\\uf41a'),\n    HEPTAGON_FILL(\"bi-heptagon-fill\", '\\uf418'),\n    HEPTAGON_HALF(\"bi-heptagon-half\", '\\uf419'),\n    HEXAGON(\"bi-hexagon\", '\\uf41d'),\n    HEXAGON_FILL(\"bi-hexagon-fill\", '\\uf41b'),\n    HEXAGON_HALF(\"bi-hexagon-half\", '\\uf41c'),\n    HOURGLASS(\"bi-hourglass\", '\\uf421'),\n    HOURGLASS_BOTTOM(\"bi-hourglass-bottom\", '\\uf41e'),\n    HOURGLASS_SPLIT(\"bi-hourglass-split\", '\\uf41f'),\n    HOURGLASS_TOP(\"bi-hourglass-top\", '\\uf420'),\n    HOUSE(\"bi-house\", '\\uf425'),\n    HOUSE_DOOR(\"bi-house-door\", '\\uf423'),\n    HOUSE_DOOR_FILL(\"bi-house-door-fill\", '\\uf422'),\n    HOUSE_FILL(\"bi-house-fill\", '\\uf424'),\n    HR(\"bi-hr\", '\\uf426'),\n    HURRICANE(\"bi-hurricane\", '\\uf427'),\n    IMAGE(\"bi-image\", '\\uf42a'),\n    IMAGES(\"bi-images\", '\\uf42b'),\n    IMAGE_ALT(\"bi-image-alt\", '\\uf428'),\n    IMAGE_FILL(\"bi-image-fill\", '\\uf429'),\n    INBOX(\"bi-inbox\", '\\uf42d'),\n    INBOXES(\"bi-inboxes\", '\\uf42f'),\n    INBOXES_FILL(\"bi-inboxes-fill\", '\\uf42e'),\n    INBOX_FILL(\"bi-inbox-fill\", '\\uf42c'),\n    INFO(\"bi-info\", '\\uf434'),\n    INFO_CIRCLE(\"bi-info-circle\", '\\uf431'),\n    INFO_CIRCLE_FILL(\"bi-info-circle-fill\", '\\uf430'),\n    INFO_SQUARE(\"bi-info-square\", '\\uf433'),\n    INFO_SQUARE_FILL(\"bi-info-square-fill\", '\\uf432'),\n    INPUT_CURSOR(\"bi-input-cursor\", '\\uf436'),\n    INPUT_CURSOR_TEXT(\"bi-input-cursor-text\", '\\uf435'),\n    INSTAGRAM(\"bi-instagram\", '\\uf437'),\n    INTERSECT(\"bi-intersect\", '\\uf438'),\n    JOURNAL(\"bi-journal\", '\\uf446'),\n    JOURNALS(\"bi-journals\", '\\uf447'),\n    JOURNAL_ALBUM(\"bi-journal-album\", '\\uf439'),\n    JOURNAL_ARROW_DOWN(\"bi-journal-arrow-down\", '\\uf43a'),\n    JOURNAL_ARROW_UP(\"bi-journal-arrow-up\", '\\uf43b'),\n    JOURNAL_BOOKMARK(\"bi-journal-bookmark\", '\\uf43d'),\n    JOURNAL_BOOKMARK_FILL(\"bi-journal-bookmark-fill\", '\\uf43c'),\n    JOURNAL_CHECK(\"bi-journal-check\", '\\uf43e'),\n    JOURNAL_CODE(\"bi-journal-code\", '\\uf43f'),\n    JOURNAL_MEDICAL(\"bi-journal-medical\", '\\uf440'),\n    JOURNAL_MINUS(\"bi-journal-minus\", '\\uf441'),\n    JOURNAL_PLUS(\"bi-journal-plus\", '\\uf442'),\n    JOURNAL_RICHTEXT(\"bi-journal-richtext\", '\\uf443'),\n    JOURNAL_TEXT(\"bi-journal-text\", '\\uf444'),\n    JOURNAL_X(\"bi-journal-x\", '\\uf445'),\n    JOYSTICK(\"bi-joystick\", '\\uf448'),\n    JUSTIFY(\"bi-justify\", '\\uf44b'),\n    JUSTIFY_LEFT(\"bi-justify-left\", '\\uf449'),\n    JUSTIFY_RIGHT(\"bi-justify-right\", '\\uf44a'),\n    KANBAN(\"bi-kanban\", '\\uf44d'),\n    KANBAN_FILL(\"bi-kanban-fill\", '\\uf44c'),\n    KEY(\"bi-key\", '\\uf44f'),\n    KEYBOARD(\"bi-keyboard\", '\\uf451'),\n    KEYBOARD_FILL(\"bi-keyboard-fill\", '\\uf450'),\n    KEY_FILL(\"bi-key-fill\", '\\uf44e'),\n    LADDER(\"bi-ladder\", '\\uf452'),\n    LAMP(\"bi-lamp\", '\\uf454'),\n    LAMP_FILL(\"bi-lamp-fill\", '\\uf453'),\n    LAPTOP(\"bi-laptop\", '\\uf456'),\n    LAPTOP_FILL(\"bi-laptop-fill\", '\\uf455'),\n    LAYERS(\"bi-layers\", '\\uf45b'),\n    LAYERS_FILL(\"bi-layers-fill\", '\\uf459'),\n    LAYERS_HALF(\"bi-layers-half\", '\\uf45a'),\n    LAYER_BACKWARD(\"bi-layer-backward\", '\\uf457'),\n    LAYER_FORWARD(\"bi-layer-forward\", '\\uf458'),\n    LAYOUT_SIDEBAR(\"bi-layout-sidebar\", '\\uf45f'),\n    LAYOUT_SIDEBAR_INSET(\"bi-layout-sidebar-inset\", '\\uf45d'),\n    LAYOUT_SIDEBAR_INSET_REVERSE(\"bi-layout-sidebar-inset-reverse\", '\\uf45c'),\n    LAYOUT_SIDEBAR_REVERSE(\"bi-layout-sidebar-reverse\", '\\uf45e'),\n    LAYOUT_SPLIT(\"bi-layout-split\", '\\uf460'),\n    LAYOUT_TEXT_SIDEBAR(\"bi-layout-text-sidebar\", '\\uf462'),\n    LAYOUT_TEXT_SIDEBAR_REVERSE(\"bi-layout-text-sidebar-reverse\", '\\uf461'),\n    LAYOUT_TEXT_WINDOW(\"bi-layout-text-window\", '\\uf464'),\n    LAYOUT_TEXT_WINDOW_REVERSE(\"bi-layout-text-window-reverse\", '\\uf463'),\n    LAYOUT_THREE_COLUMNS(\"bi-layout-three-columns\", '\\uf465'),\n    LAYOUT_WTF(\"bi-layout-wtf\", '\\uf466'),\n    LIFE_PRESERVER(\"bi-life-preserver\", '\\uf467'),\n    LIGHTBULB(\"bi-lightbulb\", '\\uf46b'),\n    LIGHTBULB_FILL(\"bi-lightbulb-fill\", '\\uf468'),\n    LIGHTBULB_OFF(\"bi-lightbulb-off\", '\\uf46a'),\n    LIGHTBULB_OFF_FILL(\"bi-lightbulb-off-fill\", '\\uf469'),\n    LIGHTNING(\"bi-lightning\", '\\uf46f'),\n    LIGHTNING_CHARGE(\"bi-lightning-charge\", '\\uf46d'),\n    LIGHTNING_CHARGE_FILL(\"bi-lightning-charge-fill\", '\\uf46c'),\n    LIGHTNING_FILL(\"bi-lightning-fill\", '\\uf46e'),\n    LINK(\"bi-link\", '\\uf471'),\n    LINKEDIN(\"bi-linkedin\", '\\uf472'),\n    LINK_45DEG(\"bi-link-45deg\", '\\uf470'),\n    LIST(\"bi-list\", '\\uf479'),\n    LIST_CHECK(\"bi-list-check\", '\\uf473'),\n    LIST_NESTED(\"bi-list-nested\", '\\uf474'),\n    LIST_OL(\"bi-list-ol\", '\\uf475'),\n    LIST_STARS(\"bi-list-stars\", '\\uf476'),\n    LIST_TASK(\"bi-list-task\", '\\uf477'),\n    LIST_UL(\"bi-list-ul\", '\\uf478'),\n    LOCK(\"bi-lock\", '\\uf47b'),\n    LOCK_FILL(\"bi-lock-fill\", '\\uf47a'),\n    MAILBOX(\"bi-mailbox\", '\\uf47c'),\n    MAILBOX2(\"bi-mailbox2\", '\\uf47d'),\n    MAP(\"bi-map\", '\\uf47f'),\n    MAP_FILL(\"bi-map-fill\", '\\uf47e'),\n    MARKDOWN(\"bi-markdown\", '\\uf481'),\n    MARKDOWN_FILL(\"bi-markdown-fill\", '\\uf480'),\n    MASK(\"bi-mask\", '\\uf482'),\n    MEGAPHONE(\"bi-megaphone\", '\\uf484'),\n    MEGAPHONE_FILL(\"bi-megaphone-fill\", '\\uf483'),\n    MENU_APP(\"bi-menu-app\", '\\uf486'),\n    MENU_APP_FILL(\"bi-menu-app-fill\", '\\uf485'),\n    MENU_BUTTON(\"bi-menu-button\", '\\uf48a'),\n    MENU_BUTTON_FILL(\"bi-menu-button-fill\", '\\uf487'),\n    MENU_BUTTON_WIDE(\"bi-menu-button-wide\", '\\uf489'),\n    MENU_BUTTON_WIDE_FILL(\"bi-menu-button-wide-fill\", '\\uf488'),\n    MENU_DOWN(\"bi-menu-down\", '\\uf48b'),\n    MENU_UP(\"bi-menu-up\", '\\uf48c'),\n    MIC(\"bi-mic\", '\\uf490'),\n    MIC_FILL(\"bi-mic-fill\", '\\uf48d'),\n    MIC_MUTE(\"bi-mic-mute\", '\\uf48f'),\n    MIC_MUTE_FILL(\"bi-mic-mute-fill\", '\\uf48e'),\n    MINECART(\"bi-minecart\", '\\uf492'),\n    MINECART_LOADED(\"bi-minecart-loaded\", '\\uf491'),\n    MOISTURE(\"bi-moisture\", '\\uf493'),\n    MOON(\"bi-moon\", '\\uf497'),\n    MOON_FILL(\"bi-moon-fill\", '\\uf494'),\n    MOON_STARS(\"bi-moon-stars\", '\\uf496'),\n    MOON_STARS_FILL(\"bi-moon-stars-fill\", '\\uf495'),\n    MOUSE(\"bi-mouse\", '\\uf499'),\n    MOUSE2(\"bi-mouse2\", '\\uf49b'),\n    MOUSE2_FILL(\"bi-mouse2-fill\", '\\uf49a'),\n    MOUSE3(\"bi-mouse3\", '\\uf49d'),\n    MOUSE3_FILL(\"bi-mouse3-fill\", '\\uf49c'),\n    MOUSE_FILL(\"bi-mouse-fill\", '\\uf498'),\n    MUSIC_NOTE(\"bi-music-note\", '\\uf4a0'),\n    MUSIC_NOTE_BEAMED(\"bi-music-note-beamed\", '\\uf49e'),\n    MUSIC_NOTE_LIST(\"bi-music-note-list\", '\\uf49f'),\n    MUSIC_PLAYER(\"bi-music-player\", '\\uf4a2'),\n    MUSIC_PLAYER_FILL(\"bi-music-player-fill\", '\\uf4a1'),\n    NEWSPAPER(\"bi-newspaper\", '\\uf4a3'),\n    NODE_MINUS(\"bi-node-minus\", '\\uf4a5'),\n    NODE_MINUS_FILL(\"bi-node-minus-fill\", '\\uf4a4'),\n    NODE_PLUS(\"bi-node-plus\", '\\uf4a7'),\n    NODE_PLUS_FILL(\"bi-node-plus-fill\", '\\uf4a6'),\n    NUT(\"bi-nut\", '\\uf4a9'),\n    NUT_FILL(\"bi-nut-fill\", '\\uf4a8'),\n    OCTAGON(\"bi-octagon\", '\\uf4ac'),\n    OCTAGON_FILL(\"bi-octagon-fill\", '\\uf4aa'),\n    OCTAGON_HALF(\"bi-octagon-half\", '\\uf4ab'),\n    OPTION(\"bi-option\", '\\uf4ad'),\n    OUTLET(\"bi-outlet\", '\\uf4ae'),\n    PAINT_BUCKET(\"bi-paint-bucket\", '\\uf4af'),\n    PALETTE(\"bi-palette\", '\\uf4b1'),\n    PALETTE2(\"bi-palette2\", '\\uf4b2'),\n    PALETTE_FILL(\"bi-palette-fill\", '\\uf4b0'),\n    PAPERCLIP(\"bi-paperclip\", '\\uf4b3'),\n    PARAGRAPH(\"bi-paragraph\", '\\uf4b4'),\n    PATCH_CHECK(\"bi-patch-check\", '\\uf4b6'),\n    PATCH_CHECK_FILL(\"bi-patch-check-fill\", '\\uf4b5'),\n    PATCH_EXCLAMATION(\"bi-patch-exclamation\", '\\uf4b8'),\n    PATCH_EXCLAMATION_FILL(\"bi-patch-exclamation-fill\", '\\uf4b7'),\n    PATCH_MINUS(\"bi-patch-minus\", '\\uf4ba'),\n    PATCH_MINUS_FILL(\"bi-patch-minus-fill\", '\\uf4b9'),\n    PATCH_PLUS(\"bi-patch-plus\", '\\uf4bc'),\n    PATCH_PLUS_FILL(\"bi-patch-plus-fill\", '\\uf4bb'),\n    PATCH_QUESTION(\"bi-patch-question\", '\\uf4be'),\n    PATCH_QUESTION_FILL(\"bi-patch-question-fill\", '\\uf4bd'),\n    PAUSE(\"bi-pause\", '\\uf4c4'),\n    PAUSE_BTN(\"bi-pause-btn\", '\\uf4c0'),\n    PAUSE_BTN_FILL(\"bi-pause-btn-fill\", '\\uf4bf'),\n    PAUSE_CIRCLE(\"bi-pause-circle\", '\\uf4c2'),\n    PAUSE_CIRCLE_FILL(\"bi-pause-circle-fill\", '\\uf4c1'),\n    PAUSE_FILL(\"bi-pause-fill\", '\\uf4c3'),\n    PEACE(\"bi-peace\", '\\uf4c6'),\n    PEACE_FILL(\"bi-peace-fill\", '\\uf4c5'),\n    PEN(\"bi-pen\", '\\uf4c8'),\n    PENCIL(\"bi-pencil\", '\\uf4cb'),\n    PENCIL_FILL(\"bi-pencil-fill\", '\\uf4c9'),\n    PENCIL_SQUARE(\"bi-pencil-square\", '\\uf4ca'),\n    PENTAGON(\"bi-pentagon\", '\\uf4ce'),\n    PENTAGON_FILL(\"bi-pentagon-fill\", '\\uf4cc'),\n    PENTAGON_HALF(\"bi-pentagon-half\", '\\uf4cd'),\n    PEN_FILL(\"bi-pen-fill\", '\\uf4c7'),\n    PEOPLE(\"bi-people\", '\\uf4d0'),\n    PEOPLE_FILL(\"bi-people-fill\", '\\uf4cf'),\n    PERCENT(\"bi-percent\", '\\uf4d1'),\n    PERSON(\"bi-person\", '\\uf4e1'),\n    PERSON_BADGE(\"bi-person-badge\", '\\uf4d3'),\n    PERSON_BADGE_FILL(\"bi-person-badge-fill\", '\\uf4d2'),\n    PERSON_BOUNDING_BOX(\"bi-person-bounding-box\", '\\uf4d4'),\n    PERSON_CHECK(\"bi-person-check\", '\\uf4d6'),\n    PERSON_CHECK_FILL(\"bi-person-check-fill\", '\\uf4d5'),\n    PERSON_CIRCLE(\"bi-person-circle\", '\\uf4d7'),\n    PERSON_DASH(\"bi-person-dash\", '\\uf4d9'),\n    PERSON_DASH_FILL(\"bi-person-dash-fill\", '\\uf4d8'),\n    PERSON_FILL(\"bi-person-fill\", '\\uf4da'),\n    PERSON_LINES_FILL(\"bi-person-lines-fill\", '\\uf4db'),\n    PERSON_PLUS(\"bi-person-plus\", '\\uf4dd'),\n    PERSON_PLUS_FILL(\"bi-person-plus-fill\", '\\uf4dc'),\n    PERSON_SQUARE(\"bi-person-square\", '\\uf4de'),\n    PERSON_X(\"bi-person-x\", '\\uf4e0'),\n    PERSON_X_FILL(\"bi-person-x-fill\", '\\uf4df'),\n    PHONE(\"bi-phone\", '\\uf4e7'),\n    PHONE_FILL(\"bi-phone-fill\", '\\uf4e2'),\n    PHONE_LANDSCAPE(\"bi-phone-landscape\", '\\uf4e4'),\n    PHONE_LANDSCAPE_FILL(\"bi-phone-landscape-fill\", '\\uf4e3'),\n    PHONE_VIBRATE(\"bi-phone-vibrate\", '\\uf4e6'),\n    PHONE_VIBRATE_FILL(\"bi-phone-vibrate-fill\", '\\uf4e5'),\n    PIE_CHART(\"bi-pie-chart\", '\\uf4e9'),\n    PIE_CHART_FILL(\"bi-pie-chart-fill\", '\\uf4e8'),\n    PIN(\"bi-pin\", '\\uf4ed'),\n    PIN_ANGLE(\"bi-pin-angle\", '\\uf4eb'),\n    PIN_ANGLE_FILL(\"bi-pin-angle-fill\", '\\uf4ea'),\n    PIN_FILL(\"bi-pin-fill\", '\\uf4ec'),\n    PIP(\"bi-pip\", '\\uf4ef'),\n    PIP_FILL(\"bi-pip-fill\", '\\uf4ee'),\n    PLAY(\"bi-play\", '\\uf4f5'),\n    PLAY_BTN(\"bi-play-btn\", '\\uf4f1'),\n    PLAY_BTN_FILL(\"bi-play-btn-fill\", '\\uf4f0'),\n    PLAY_CIRCLE(\"bi-play-circle\", '\\uf4f3'),\n    PLAY_CIRCLE_FILL(\"bi-play-circle-fill\", '\\uf4f2'),\n    PLAY_FILL(\"bi-play-fill\", '\\uf4f4'),\n    PLUG(\"bi-plug\", '\\uf4f7'),\n    PLUG_FILL(\"bi-plug-fill\", '\\uf4f6'),\n    PLUS(\"bi-plus\", '\\uf4fe'),\n    PLUS_CIRCLE(\"bi-plus-circle\", '\\uf4fa'),\n    PLUS_CIRCLE_DOTTED(\"bi-plus-circle-dotted\", '\\uf4f8'),\n    PLUS_CIRCLE_FILL(\"bi-plus-circle-fill\", '\\uf4f9'),\n    PLUS_SQUARE(\"bi-plus-square\", '\\uf4fd'),\n    PLUS_SQUARE_DOTTED(\"bi-plus-square-dotted\", '\\uf4fb'),\n    PLUS_SQUARE_FILL(\"bi-plus-square-fill\", '\\uf4fc'),\n    POWER(\"bi-power\", '\\uf4ff'),\n    PRINTER(\"bi-printer\", '\\uf501'),\n    PRINTER_FILL(\"bi-printer-fill\", '\\uf500'),\n    PUZZLE(\"bi-puzzle\", '\\uf503'),\n    PUZZLE_FILL(\"bi-puzzle-fill\", '\\uf502'),\n    QUESTION(\"bi-question\", '\\uf50c'),\n    QUESTION_CIRCLE(\"bi-question-circle\", '\\uf505'),\n    QUESTION_CIRCLE_FILL(\"bi-question-circle-fill\", '\\uf504'),\n    QUESTION_DIAMOND(\"bi-question-diamond\", '\\uf507'),\n    QUESTION_DIAMOND_FILL(\"bi-question-diamond-fill\", '\\uf506'),\n    QUESTION_OCTAGON(\"bi-question-octagon\", '\\uf509'),\n    QUESTION_OCTAGON_FILL(\"bi-question-octagon-fill\", '\\uf508'),\n    QUESTION_SQUARE(\"bi-question-square\", '\\uf50b'),\n    QUESTION_SQUARE_FILL(\"bi-question-square-fill\", '\\uf50a'),\n    RAINBOW(\"bi-rainbow\", '\\uf50d'),\n    RECEIPT(\"bi-receipt\", '\\uf50f'),\n    RECEIPT_CUTOFF(\"bi-receipt-cutoff\", '\\uf50e'),\n    RECEPTION_0(\"bi-reception-0\", '\\uf510'),\n    RECEPTION_1(\"bi-reception-1\", '\\uf511'),\n    RECEPTION_2(\"bi-reception-2\", '\\uf512'),\n    RECEPTION_3(\"bi-reception-3\", '\\uf513'),\n    RECEPTION_4(\"bi-reception-4\", '\\uf514'),\n    RECORD(\"bi-record\", '\\uf51a'),\n    RECORD2(\"bi-record2\", '\\uf51c'),\n    RECORD2_FILL(\"bi-record2-fill\", '\\uf51b'),\n    RECORD_BTN(\"bi-record-btn\", '\\uf516'),\n    RECORD_BTN_FILL(\"bi-record-btn-fill\", '\\uf515'),\n    RECORD_CIRCLE(\"bi-record-circle\", '\\uf518'),\n    RECORD_CIRCLE_FILL(\"bi-record-circle-fill\", '\\uf517'),\n    RECORD_FILL(\"bi-record-fill\", '\\uf519'),\n    REPLY(\"bi-reply\", '\\uf520'),\n    REPLY_ALL(\"bi-reply-all\", '\\uf51e'),\n    REPLY_ALL_FILL(\"bi-reply-all-fill\", '\\uf51d'),\n    REPLY_FILL(\"bi-reply-fill\", '\\uf51f'),\n    RSS(\"bi-rss\", '\\uf522'),\n    RSS_FILL(\"bi-rss-fill\", '\\uf521'),\n    RULERS(\"bi-rulers\", '\\uf523'),\n    SAVE(\"bi-save\", '\\uf525'),\n    SAVE2(\"bi-save2\", '\\uf527'),\n    SAVE2_FILL(\"bi-save2-fill\", '\\uf526'),\n    SAVE_FILL(\"bi-save-fill\", '\\uf524'),\n    SCISSORS(\"bi-scissors\", '\\uf528'),\n    SCREWDRIVER(\"bi-screwdriver\", '\\uf529'),\n    SEARCH(\"bi-search\", '\\uf52a'),\n    SEGMENTED_NAV(\"bi-segmented-nav\", '\\uf52b'),\n    SERVER(\"bi-server\", '\\uf52c'),\n    SHARE(\"bi-share\", '\\uf52e'),\n    SHARE_FILL(\"bi-share-fill\", '\\uf52d'),\n    SHIELD(\"bi-shield\", '\\uf53f'),\n    SHIELD_CHECK(\"bi-shield-check\", '\\uf52f'),\n    SHIELD_EXCLAMATION(\"bi-shield-exclamation\", '\\uf530'),\n    SHIELD_FILL(\"bi-shield-fill\", '\\uf536'),\n    SHIELD_FILL_CHECK(\"bi-shield-fill-check\", '\\uf531'),\n    SHIELD_FILL_EXCLAMATION(\"bi-shield-fill-exclamation\", '\\uf532'),\n    SHIELD_FILL_MINUS(\"bi-shield-fill-minus\", '\\uf533'),\n    SHIELD_FILL_PLUS(\"bi-shield-fill-plus\", '\\uf534'),\n    SHIELD_FILL_X(\"bi-shield-fill-x\", '\\uf535'),\n    SHIELD_LOCK(\"bi-shield-lock\", '\\uf538'),\n    SHIELD_LOCK_FILL(\"bi-shield-lock-fill\", '\\uf537'),\n    SHIELD_MINUS(\"bi-shield-minus\", '\\uf539'),\n    SHIELD_PLUS(\"bi-shield-plus\", '\\uf53a'),\n    SHIELD_SHADED(\"bi-shield-shaded\", '\\uf53b'),\n    SHIELD_SLASH(\"bi-shield-slash\", '\\uf53d'),\n    SHIELD_SLASH_FILL(\"bi-shield-slash-fill\", '\\uf53c'),\n    SHIELD_X(\"bi-shield-x\", '\\uf53e'),\n    SHIFT(\"bi-shift\", '\\uf541'),\n    SHIFT_FILL(\"bi-shift-fill\", '\\uf540'),\n    SHOP(\"bi-shop\", '\\uf543'),\n    SHOP_WINDOW(\"bi-shop-window\", '\\uf542'),\n    SHUFFLE(\"bi-shuffle\", '\\uf544'),\n    SIGNPOST(\"bi-signpost\", '\\uf54a'),\n    SIGNPOST_2(\"bi-signpost-2\", '\\uf546'),\n    SIGNPOST_2_FILL(\"bi-signpost-2-fill\", '\\uf545'),\n    SIGNPOST_FILL(\"bi-signpost-fill\", '\\uf547'),\n    SIGNPOST_SPLIT(\"bi-signpost-split\", '\\uf549'),\n    SIGNPOST_SPLIT_FILL(\"bi-signpost-split-fill\", '\\uf548'),\n    SIM(\"bi-sim\", '\\uf54c'),\n    SIM_FILL(\"bi-sim-fill\", '\\uf54b'),\n    SKIP_BACKWARD(\"bi-skip-backward\", '\\uf552'),\n    SKIP_BACKWARD_BTN(\"bi-skip-backward-btn\", '\\uf54e'),\n    SKIP_BACKWARD_BTN_FILL(\"bi-skip-backward-btn-fill\", '\\uf54d'),\n    SKIP_BACKWARD_CIRCLE(\"bi-skip-backward-circle\", '\\uf550'),\n    SKIP_BACKWARD_CIRCLE_FILL(\"bi-skip-backward-circle-fill\", '\\uf54f'),\n    SKIP_BACKWARD_FILL(\"bi-skip-backward-fill\", '\\uf551'),\n    SKIP_END(\"bi-skip-end\", '\\uf558'),\n    SKIP_END_BTN(\"bi-skip-end-btn\", '\\uf554'),\n    SKIP_END_BTN_FILL(\"bi-skip-end-btn-fill\", '\\uf553'),\n    SKIP_END_CIRCLE(\"bi-skip-end-circle\", '\\uf556'),\n    SKIP_END_CIRCLE_FILL(\"bi-skip-end-circle-fill\", '\\uf555'),\n    SKIP_END_FILL(\"bi-skip-end-fill\", '\\uf557'),\n    SKIP_FORWARD(\"bi-skip-forward\", '\\uf55e'),\n    SKIP_FORWARD_BTN(\"bi-skip-forward-btn\", '\\uf55a'),\n    SKIP_FORWARD_BTN_FILL(\"bi-skip-forward-btn-fill\", '\\uf559'),\n    SKIP_FORWARD_CIRCLE(\"bi-skip-forward-circle\", '\\uf55c'),\n    SKIP_FORWARD_CIRCLE_FILL(\"bi-skip-forward-circle-fill\", '\\uf55b'),\n    SKIP_FORWARD_FILL(\"bi-skip-forward-fill\", '\\uf55d'),\n    SKIP_START(\"bi-skip-start\", '\\uf564'),\n    SKIP_START_BTN(\"bi-skip-start-btn\", '\\uf560'),\n    SKIP_START_BTN_FILL(\"bi-skip-start-btn-fill\", '\\uf55f'),\n    SKIP_START_CIRCLE(\"bi-skip-start-circle\", '\\uf562'),\n    SKIP_START_CIRCLE_FILL(\"bi-skip-start-circle-fill\", '\\uf561'),\n    SKIP_START_FILL(\"bi-skip-start-fill\", '\\uf563'),\n    SLACK(\"bi-slack\", '\\uf565'),\n    SLASH(\"bi-slash\", '\\uf56a'),\n    SLASH_CIRCLE(\"bi-slash-circle\", '\\uf567'),\n    SLASH_CIRCLE_FILL(\"bi-slash-circle-fill\", '\\uf566'),\n    SLASH_SQUARE(\"bi-slash-square\", '\\uf569'),\n    SLASH_SQUARE_FILL(\"bi-slash-square-fill\", '\\uf568'),\n    SLIDERS(\"bi-sliders\", '\\uf56b'),\n    SMARTWATCH(\"bi-smartwatch\", '\\uf56c'),\n    SNOW(\"bi-snow\", '\\uf56d'),\n    SNOW2(\"bi-snow2\", '\\uf56e'),\n    SNOW3(\"bi-snow3\", '\\uf56f'),\n    SORT_ALPHA_DOWN(\"bi-sort-alpha-down\", '\\uf571'),\n    SORT_ALPHA_DOWN_ALT(\"bi-sort-alpha-down-alt\", '\\uf570'),\n    SORT_ALPHA_UP(\"bi-sort-alpha-up\", '\\uf573'),\n    SORT_ALPHA_UP_ALT(\"bi-sort-alpha-up-alt\", '\\uf572'),\n    SORT_DOWN(\"bi-sort-down\", '\\uf575'),\n    SORT_DOWN_ALT(\"bi-sort-down-alt\", '\\uf574'),\n    SORT_NUMERIC_DOWN(\"bi-sort-numeric-down\", '\\uf577'),\n    SORT_NUMERIC_DOWN_ALT(\"bi-sort-numeric-down-alt\", '\\uf576'),\n    SORT_NUMERIC_UP(\"bi-sort-numeric-up\", '\\uf579'),\n    SORT_NUMERIC_UP_ALT(\"bi-sort-numeric-up-alt\", '\\uf578'),\n    SORT_UP(\"bi-sort-up\", '\\uf57b'),\n    SORT_UP_ALT(\"bi-sort-up-alt\", '\\uf57a'),\n    SOUNDWAVE(\"bi-soundwave\", '\\uf57c'),\n    SPEAKER(\"bi-speaker\", '\\uf57e'),\n    SPEAKER_FILL(\"bi-speaker-fill\", '\\uf57d'),\n    SPEEDOMETER(\"bi-speedometer\", '\\uf57f'),\n    SPEEDOMETER2(\"bi-speedometer2\", '\\uf580'),\n    SPELLCHECK(\"bi-spellcheck\", '\\uf581'),\n    SQUARE(\"bi-square\", '\\uf584'),\n    SQUARE_FILL(\"bi-square-fill\", '\\uf582'),\n    SQUARE_HALF(\"bi-square-half\", '\\uf583'),\n    STACK(\"bi-stack\", '\\uf585'),\n    STAR(\"bi-star\", '\\uf588'),\n    STARS(\"bi-stars\", '\\uf589'),\n    STAR_FILL(\"bi-star-fill\", '\\uf586'),\n    STAR_HALF(\"bi-star-half\", '\\uf587'),\n    STICKIES(\"bi-stickies\", '\\uf58b'),\n    STICKIES_FILL(\"bi-stickies-fill\", '\\uf58a'),\n    STICKY(\"bi-sticky\", '\\uf58d'),\n    STICKY_FILL(\"bi-sticky-fill\", '\\uf58c'),\n    STOP(\"bi-stop\", '\\uf593'),\n    STOPLIGHTS(\"bi-stoplights\", '\\uf595'),\n    STOPLIGHTS_FILL(\"bi-stoplights-fill\", '\\uf594'),\n    STOPWATCH(\"bi-stopwatch\", '\\uf597'),\n    STOPWATCH_FILL(\"bi-stopwatch-fill\", '\\uf596'),\n    STOP_BTN(\"bi-stop-btn\", '\\uf58f'),\n    STOP_BTN_FILL(\"bi-stop-btn-fill\", '\\uf58e'),\n    STOP_CIRCLE(\"bi-stop-circle\", '\\uf591'),\n    STOP_CIRCLE_FILL(\"bi-stop-circle-fill\", '\\uf590'),\n    STOP_FILL(\"bi-stop-fill\", '\\uf592'),\n    SUBTRACT(\"bi-subtract\", '\\uf598'),\n    SUIT_CLUB(\"bi-suit-club\", '\\uf59a'),\n    SUIT_CLUB_FILL(\"bi-suit-club-fill\", '\\uf599'),\n    SUIT_DIAMOND(\"bi-suit-diamond\", '\\uf59c'),\n    SUIT_DIAMOND_FILL(\"bi-suit-diamond-fill\", '\\uf59b'),\n    SUIT_HEART(\"bi-suit-heart\", '\\uf59e'),\n    SUIT_HEART_FILL(\"bi-suit-heart-fill\", '\\uf59d'),\n    SUIT_SPADE(\"bi-suit-spade\", '\\uf5a0'),\n    SUIT_SPADE_FILL(\"bi-suit-spade-fill\", '\\uf59f'),\n    SUN(\"bi-sun\", '\\uf5a2'),\n    SUNGLASSES(\"bi-sunglasses\", '\\uf5a3'),\n    SUNRISE(\"bi-sunrise\", '\\uf5a5'),\n    SUNRISE_FILL(\"bi-sunrise-fill\", '\\uf5a4'),\n    SUNSET(\"bi-sunset\", '\\uf5a7'),\n    SUNSET_FILL(\"bi-sunset-fill\", '\\uf5a6'),\n    SUN_FILL(\"bi-sun-fill\", '\\uf5a1'),\n    SYMMETRY_HORIZONTAL(\"bi-symmetry-horizontal\", '\\uf5a8'),\n    SYMMETRY_VERTICAL(\"bi-symmetry-vertical\", '\\uf5a9'),\n    TABLE(\"bi-table\", '\\uf5aa'),\n    TABLET(\"bi-tablet\", '\\uf5ae'),\n    TABLET_FILL(\"bi-tablet-fill\", '\\uf5ab'),\n    TABLET_LANDSCAPE(\"bi-tablet-landscape\", '\\uf5ad'),\n    TABLET_LANDSCAPE_FILL(\"bi-tablet-landscape-fill\", '\\uf5ac'),\n    TAG(\"bi-tag\", '\\uf5b0'),\n    TAGS(\"bi-tags\", '\\uf5b2'),\n    TAGS_FILL(\"bi-tags-fill\", '\\uf5b1'),\n    TAG_FILL(\"bi-tag-fill\", '\\uf5af'),\n    TELEGRAM(\"bi-telegram\", '\\uf5b3'),\n    TELEPHONE(\"bi-telephone\", '\\uf5c1'),\n    TELEPHONE_FILL(\"bi-telephone-fill\", '\\uf5b4'),\n    TELEPHONE_FORWARD(\"bi-telephone-forward\", '\\uf5b6'),\n    TELEPHONE_FORWARD_FILL(\"bi-telephone-forward-fill\", '\\uf5b5'),\n    TELEPHONE_INBOUND(\"bi-telephone-inbound\", '\\uf5b8'),\n    TELEPHONE_INBOUND_FILL(\"bi-telephone-inbound-fill\", '\\uf5b7'),\n    TELEPHONE_MINUS(\"bi-telephone-minus\", '\\uf5ba'),\n    TELEPHONE_MINUS_FILL(\"bi-telephone-minus-fill\", '\\uf5b9'),\n    TELEPHONE_OUTBOUND(\"bi-telephone-outbound\", '\\uf5bc'),\n    TELEPHONE_OUTBOUND_FILL(\"bi-telephone-outbound-fill\", '\\uf5bb'),\n    TELEPHONE_PLUS(\"bi-telephone-plus\", '\\uf5be'),\n    TELEPHONE_PLUS_FILL(\"bi-telephone-plus-fill\", '\\uf5bd'),\n    TELEPHONE_X(\"bi-telephone-x\", '\\uf5c0'),\n    TELEPHONE_X_FILL(\"bi-telephone-x-fill\", '\\uf5bf'),\n    TERMINAL(\"bi-terminal\", '\\uf5c3'),\n    TERMINAL_FILL(\"bi-terminal-fill\", '\\uf5c2'),\n    TEXTAREA(\"bi-textarea\", '\\uf5cc'),\n    TEXTAREA_RESIZE(\"bi-textarea-resize\", '\\uf5ca'),\n    TEXTAREA_T(\"bi-textarea-t\", '\\uf5cb'),\n    TEXT_CENTER(\"bi-text-center\", '\\uf5c4'),\n    TEXT_INDENT_LEFT(\"bi-text-indent-left\", '\\uf5c5'),\n    TEXT_INDENT_RIGHT(\"bi-text-indent-right\", '\\uf5c6'),\n    TEXT_LEFT(\"bi-text-left\", '\\uf5c7'),\n    TEXT_PARAGRAPH(\"bi-text-paragraph\", '\\uf5c8'),\n    TEXT_RIGHT(\"bi-text-right\", '\\uf5c9'),\n    THERMOMETER(\"bi-thermometer\", '\\uf5d2'),\n    THERMOMETER_HALF(\"bi-thermometer-half\", '\\uf5cd'),\n    THERMOMETER_HIGH(\"bi-thermometer-high\", '\\uf5ce'),\n    THERMOMETER_LOW(\"bi-thermometer-low\", '\\uf5cf'),\n    THERMOMETER_SNOW(\"bi-thermometer-snow\", '\\uf5d0'),\n    THERMOMETER_SUN(\"bi-thermometer-sun\", '\\uf5d1'),\n    THREE_DOTS(\"bi-three-dots\", '\\uf5d4'),\n    THREE_DOTS_VERTICAL(\"bi-three-dots-vertical\", '\\uf5d3'),\n    TOGGLE2_OFF(\"bi-toggle2-off\", '\\uf5d7'),\n    TOGGLE2_ON(\"bi-toggle2-on\", '\\uf5d8'),\n    TOGGLES(\"bi-toggles\", '\\uf5d9'),\n    TOGGLES2(\"bi-toggles2\", '\\uf5da'),\n    TOGGLE_OFF(\"bi-toggle-off\", '\\uf5d5'),\n    TOGGLE_ON(\"bi-toggle-on\", '\\uf5d6'),\n    TOOLS(\"bi-tools\", '\\uf5db'),\n    TORNADO(\"bi-tornado\", '\\uf5dc'),\n    TRASH(\"bi-trash\", '\\uf5de'),\n    TRASH2(\"bi-trash2\", '\\uf5e0'),\n    TRASH2_FILL(\"bi-trash2-fill\", '\\uf5df'),\n    TRASH_FILL(\"bi-trash-fill\", '\\uf5dd'),\n    TREE(\"bi-tree\", '\\uf5e2'),\n    TREE_FILL(\"bi-tree-fill\", '\\uf5e1'),\n    TRIANGLE(\"bi-triangle\", '\\uf5e5'),\n    TRIANGLE_FILL(\"bi-triangle-fill\", '\\uf5e3'),\n    TRIANGLE_HALF(\"bi-triangle-half\", '\\uf5e4'),\n    TROPHY(\"bi-trophy\", '\\uf5e7'),\n    TROPHY_FILL(\"bi-trophy-fill\", '\\uf5e6'),\n    TROPICAL_STORM(\"bi-tropical-storm\", '\\uf5e8'),\n    TRUCK(\"bi-truck\", '\\uf5ea'),\n    TRUCK_FLATBED(\"bi-truck-flatbed\", '\\uf5e9'),\n    TSUNAMI(\"bi-tsunami\", '\\uf5eb'),\n    TV(\"bi-tv\", '\\uf5ed'),\n    TV_FILL(\"bi-tv-fill\", '\\uf5ec'),\n    TWITCH(\"bi-twitch\", '\\uf5ee'),\n    TWITTER(\"bi-twitter\", '\\uf5ef'),\n    TYPE(\"bi-type\", '\\uf5f7'),\n    TYPE_BOLD(\"bi-type-bold\", '\\uf5f0'),\n    TYPE_H1(\"bi-type-h1\", '\\uf5f1'),\n    TYPE_H2(\"bi-type-h2\", '\\uf5f2'),\n    TYPE_H3(\"bi-type-h3\", '\\uf5f3'),\n    TYPE_ITALIC(\"bi-type-italic\", '\\uf5f4'),\n    TYPE_STRIKETHROUGH(\"bi-type-strikethrough\", '\\uf5f5'),\n    TYPE_UNDERLINE(\"bi-type-underline\", '\\uf5f6'),\n    UI_CHECKS(\"bi-ui-checks\", '\\uf5f9'),\n    UI_CHECKS_GRID(\"bi-ui-checks-grid\", '\\uf5f8'),\n    UI_RADIOS(\"bi-ui-radios\", '\\uf5fb'),\n    UI_RADIOS_GRID(\"bi-ui-radios-grid\", '\\uf5fa'),\n    UMBRELLA(\"bi-umbrella\", '\\uf5fd'),\n    UMBRELLA_FILL(\"bi-umbrella-fill\", '\\uf5fc'),\n    UNION(\"bi-union\", '\\uf5fe'),\n    UNLOCK(\"bi-unlock\", '\\uf600'),\n    UNLOCK_FILL(\"bi-unlock-fill\", '\\uf5ff'),\n    UPC(\"bi-upc\", '\\uf602'),\n    UPC_SCAN(\"bi-upc-scan\", '\\uf601'),\n    UPLOAD(\"bi-upload\", '\\uf603'),\n    VECTOR_PEN(\"bi-vector-pen\", '\\uf604'),\n    VIEW_LIST(\"bi-view-list\", '\\uf605'),\n    VIEW_STACKED(\"bi-view-stacked\", '\\uf606'),\n    VINYL(\"bi-vinyl\", '\\uf608'),\n    VINYL_FILL(\"bi-vinyl-fill\", '\\uf607'),\n    VOICEMAIL(\"bi-voicemail\", '\\uf609'),\n    VOLUME_DOWN(\"bi-volume-down\", '\\uf60b'),\n    VOLUME_DOWN_FILL(\"bi-volume-down-fill\", '\\uf60a'),\n    VOLUME_MUTE(\"bi-volume-mute\", '\\uf60d'),\n    VOLUME_MUTE_FILL(\"bi-volume-mute-fill\", '\\uf60c'),\n    VOLUME_OFF(\"bi-volume-off\", '\\uf60f'),\n    VOLUME_OFF_FILL(\"bi-volume-off-fill\", '\\uf60e'),\n    VOLUME_UP(\"bi-volume-up\", '\\uf611'),\n    VOLUME_UP_FILL(\"bi-volume-up-fill\", '\\uf610'),\n    VR(\"bi-vr\", '\\uf612'),\n    WALLET(\"bi-wallet\", '\\uf614'),\n    WALLET2(\"bi-wallet2\", '\\uf615'),\n    WALLET_FILL(\"bi-wallet-fill\", '\\uf613'),\n    WATCH(\"bi-watch\", '\\uf616'),\n    WATER(\"bi-water\", '\\uf617'),\n    WHATSAPP(\"bi-whatsapp\", '\\uf618'),\n    WIFI(\"bi-wifi\", '\\uf61c'),\n    WIFI_1(\"bi-wifi-1\", '\\uf619'),\n    WIFI_2(\"bi-wifi-2\", '\\uf61a'),\n    WIFI_OFF(\"bi-wifi-off\", '\\uf61b'),\n    WIND(\"bi-wind\", '\\uf61d'),\n    WINDOW(\"bi-window\", '\\uf620'),\n    WINDOW_DOCK(\"bi-window-dock\", '\\uf61e'),\n    WINDOW_SIDEBAR(\"bi-window-sidebar\", '\\uf61f'),\n    WRENCH(\"bi-wrench\", '\\uf621'),\n    X(\"bi-x\", '\\uf62a'),\n    X_CIRCLE(\"bi-x-circle\", '\\uf623'),\n    X_CIRCLE_FILL(\"bi-x-circle-fill\", '\\uf622'),\n    X_DIAMOND(\"bi-x-diamond\", '\\uf625'),\n    X_DIAMOND_FILL(\"bi-x-diamond-fill\", '\\uf624'),\n    X_OCTAGON(\"bi-x-octagon\", '\\uf627'),\n    X_OCTAGON_FILL(\"bi-x-octagon-fill\", '\\uf626'),\n    X_SQUARE(\"bi-x-square\", '\\uf629'),\n    X_SQUARE_FILL(\"bi-x-square-fill\", '\\uf628'),\n    YOUTUBE(\"bi-youtube\", '\\uf62b'),\n    ZOOM_IN(\"bi-zoom-in\", '\\uf62c'),\n    ZOOM_OUT(\"bi-zoom-out\", '\\uf62d');\n    \n    public static BootstrapIcons findByDescription(String description) {\n        for (BootstrapIcons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    BootstrapIcons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bootstrapicons-pack/src/main/java/org/kordamp/ikonli/bootstrapicons/BootstrapIconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bootstrapicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BootstrapIconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/bootstrapicons/1.4.1/fonts/bootstrap-icons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bi-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return BootstrapIcons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"bootstrap-icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bootstrapicons-pack/src/main/java/org/kordamp/ikonli/bootstrapicons/BootstrapIconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bootstrapicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class BootstrapIconsIkonProvider implements IkonProvider<BootstrapIcons> {\n    @Override\n    public Class<BootstrapIcons> getIkon() {\n        return BootstrapIcons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bootstrapicons-pack/src/main/resources/META-INF/resources/bootstrapicons/1.4.1/css/bootstrap-icons.css",
    "content": "@font-face {\n  font-family: \"bootstrap-icons\";\n  src: url(\"../fonts/bootstrap-icons.woff2?231ce25e89ab5804f9a6c427b8d325c9\") format(\"woff2\"),\nurl(\"../fonts/bootstrap-icons.woff?231ce25e89ab5804f9a6c427b8d325c9\") format(\"woff\");\n}\n\n[class^=\"bi-\"]::before,\n[class*=\" bi-\"]::before {\n  display: inline-block;\n  font-family: bootstrap-icons !important;\n  font-style: normal;\n  font-weight: normal !important;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n  vertical-align: -.125em;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.bi-alarm-fill::before { content: \"\\f101\"; }\n.bi-alarm::before { content: \"\\f102\"; }\n.bi-align-bottom::before { content: \"\\f103\"; }\n.bi-align-center::before { content: \"\\f104\"; }\n.bi-align-end::before { content: \"\\f105\"; }\n.bi-align-middle::before { content: \"\\f106\"; }\n.bi-align-start::before { content: \"\\f107\"; }\n.bi-align-top::before { content: \"\\f108\"; }\n.bi-alt::before { content: \"\\f109\"; }\n.bi-app-indicator::before { content: \"\\f10a\"; }\n.bi-app::before { content: \"\\f10b\"; }\n.bi-archive-fill::before { content: \"\\f10c\"; }\n.bi-archive::before { content: \"\\f10d\"; }\n.bi-arrow-90deg-down::before { content: \"\\f10e\"; }\n.bi-arrow-90deg-left::before { content: \"\\f10f\"; }\n.bi-arrow-90deg-right::before { content: \"\\f110\"; }\n.bi-arrow-90deg-up::before { content: \"\\f111\"; }\n.bi-arrow-bar-down::before { content: \"\\f112\"; }\n.bi-arrow-bar-left::before { content: \"\\f113\"; }\n.bi-arrow-bar-right::before { content: \"\\f114\"; }\n.bi-arrow-bar-up::before { content: \"\\f115\"; }\n.bi-arrow-clockwise::before { content: \"\\f116\"; }\n.bi-arrow-counterclockwise::before { content: \"\\f117\"; }\n.bi-arrow-down-circle-fill::before { content: \"\\f118\"; }\n.bi-arrow-down-circle::before { content: \"\\f119\"; }\n.bi-arrow-down-left-circle-fill::before { content: \"\\f11a\"; }\n.bi-arrow-down-left-circle::before { content: \"\\f11b\"; }\n.bi-arrow-down-left-square-fill::before { content: \"\\f11c\"; }\n.bi-arrow-down-left-square::before { content: \"\\f11d\"; }\n.bi-arrow-down-left::before { content: \"\\f11e\"; }\n.bi-arrow-down-right-circle-fill::before { content: \"\\f11f\"; }\n.bi-arrow-down-right-circle::before { content: \"\\f120\"; }\n.bi-arrow-down-right-square-fill::before { content: \"\\f121\"; }\n.bi-arrow-down-right-square::before { content: \"\\f122\"; }\n.bi-arrow-down-right::before { content: \"\\f123\"; }\n.bi-arrow-down-short::before { content: \"\\f124\"; }\n.bi-arrow-down-square-fill::before { content: \"\\f125\"; }\n.bi-arrow-down-square::before { content: \"\\f126\"; }\n.bi-arrow-down-up::before { content: \"\\f127\"; }\n.bi-arrow-down::before { content: \"\\f128\"; }\n.bi-arrow-left-circle-fill::before { content: \"\\f129\"; }\n.bi-arrow-left-circle::before { content: \"\\f12a\"; }\n.bi-arrow-left-right::before { content: \"\\f12b\"; }\n.bi-arrow-left-short::before { content: \"\\f12c\"; }\n.bi-arrow-left-square-fill::before { content: \"\\f12d\"; }\n.bi-arrow-left-square::before { content: \"\\f12e\"; }\n.bi-arrow-left::before { content: \"\\f12f\"; }\n.bi-arrow-repeat::before { content: \"\\f130\"; }\n.bi-arrow-return-left::before { content: \"\\f131\"; }\n.bi-arrow-return-right::before { content: \"\\f132\"; }\n.bi-arrow-right-circle-fill::before { content: \"\\f133\"; }\n.bi-arrow-right-circle::before { content: \"\\f134\"; }\n.bi-arrow-right-short::before { content: \"\\f135\"; }\n.bi-arrow-right-square-fill::before { content: \"\\f136\"; }\n.bi-arrow-right-square::before { content: \"\\f137\"; }\n.bi-arrow-right::before { content: \"\\f138\"; }\n.bi-arrow-up-circle-fill::before { content: \"\\f139\"; }\n.bi-arrow-up-circle::before { content: \"\\f13a\"; }\n.bi-arrow-up-left-circle-fill::before { content: \"\\f13b\"; }\n.bi-arrow-up-left-circle::before { content: \"\\f13c\"; }\n.bi-arrow-up-left-square-fill::before { content: \"\\f13d\"; }\n.bi-arrow-up-left-square::before { content: \"\\f13e\"; }\n.bi-arrow-up-left::before { content: \"\\f13f\"; }\n.bi-arrow-up-right-circle-fill::before { content: \"\\f140\"; }\n.bi-arrow-up-right-circle::before { content: \"\\f141\"; }\n.bi-arrow-up-right-square-fill::before { content: \"\\f142\"; }\n.bi-arrow-up-right-square::before { content: \"\\f143\"; }\n.bi-arrow-up-right::before { content: \"\\f144\"; }\n.bi-arrow-up-short::before { content: \"\\f145\"; }\n.bi-arrow-up-square-fill::before { content: \"\\f146\"; }\n.bi-arrow-up-square::before { content: \"\\f147\"; }\n.bi-arrow-up::before { content: \"\\f148\"; }\n.bi-arrows-angle-contract::before { content: \"\\f149\"; }\n.bi-arrows-angle-expand::before { content: \"\\f14a\"; }\n.bi-arrows-collapse::before { content: \"\\f14b\"; }\n.bi-arrows-expand::before { content: \"\\f14c\"; }\n.bi-arrows-fullscreen::before { content: \"\\f14d\"; }\n.bi-arrows-move::before { content: \"\\f14e\"; }\n.bi-aspect-ratio-fill::before { content: \"\\f14f\"; }\n.bi-aspect-ratio::before { content: \"\\f150\"; }\n.bi-asterisk::before { content: \"\\f151\"; }\n.bi-at::before { content: \"\\f152\"; }\n.bi-award-fill::before { content: \"\\f153\"; }\n.bi-award::before { content: \"\\f154\"; }\n.bi-back::before { content: \"\\f155\"; }\n.bi-backspace-fill::before { content: \"\\f156\"; }\n.bi-backspace-reverse-fill::before { content: \"\\f157\"; }\n.bi-backspace-reverse::before { content: \"\\f158\"; }\n.bi-backspace::before { content: \"\\f159\"; }\n.bi-badge-3d-fill::before { content: \"\\f15a\"; }\n.bi-badge-3d::before { content: \"\\f15b\"; }\n.bi-badge-4k-fill::before { content: \"\\f15c\"; }\n.bi-badge-4k::before { content: \"\\f15d\"; }\n.bi-badge-8k-fill::before { content: \"\\f15e\"; }\n.bi-badge-8k::before { content: \"\\f15f\"; }\n.bi-badge-ad-fill::before { content: \"\\f160\"; }\n.bi-badge-ad::before { content: \"\\f161\"; }\n.bi-badge-ar-fill::before { content: \"\\f162\"; }\n.bi-badge-ar::before { content: \"\\f163\"; }\n.bi-badge-cc-fill::before { content: \"\\f164\"; }\n.bi-badge-cc::before { content: \"\\f165\"; }\n.bi-badge-hd-fill::before { content: \"\\f166\"; }\n.bi-badge-hd::before { content: \"\\f167\"; }\n.bi-badge-tm-fill::before { content: \"\\f168\"; }\n.bi-badge-tm::before { content: \"\\f169\"; }\n.bi-badge-vo-fill::before { content: \"\\f16a\"; }\n.bi-badge-vo::before { content: \"\\f16b\"; }\n.bi-badge-vr-fill::before { content: \"\\f16c\"; }\n.bi-badge-vr::before { content: \"\\f16d\"; }\n.bi-badge-wc-fill::before { content: \"\\f16e\"; }\n.bi-badge-wc::before { content: \"\\f16f\"; }\n.bi-bag-check-fill::before { content: \"\\f170\"; }\n.bi-bag-check::before { content: \"\\f171\"; }\n.bi-bag-dash-fill::before { content: \"\\f172\"; }\n.bi-bag-dash::before { content: \"\\f173\"; }\n.bi-bag-fill::before { content: \"\\f174\"; }\n.bi-bag-plus-fill::before { content: \"\\f175\"; }\n.bi-bag-plus::before { content: \"\\f176\"; }\n.bi-bag-x-fill::before { content: \"\\f177\"; }\n.bi-bag-x::before { content: \"\\f178\"; }\n.bi-bag::before { content: \"\\f179\"; }\n.bi-bar-chart-fill::before { content: \"\\f17a\"; }\n.bi-bar-chart-line-fill::before { content: \"\\f17b\"; }\n.bi-bar-chart-line::before { content: \"\\f17c\"; }\n.bi-bar-chart-steps::before { content: \"\\f17d\"; }\n.bi-bar-chart::before { content: \"\\f17e\"; }\n.bi-basket-fill::before { content: \"\\f17f\"; }\n.bi-basket::before { content: \"\\f180\"; }\n.bi-basket2-fill::before { content: \"\\f181\"; }\n.bi-basket2::before { content: \"\\f182\"; }\n.bi-basket3-fill::before { content: \"\\f183\"; }\n.bi-basket3::before { content: \"\\f184\"; }\n.bi-battery-charging::before { content: \"\\f185\"; }\n.bi-battery-full::before { content: \"\\f186\"; }\n.bi-battery-half::before { content: \"\\f187\"; }\n.bi-battery::before { content: \"\\f188\"; }\n.bi-bell-fill::before { content: \"\\f189\"; }\n.bi-bell::before { content: \"\\f18a\"; }\n.bi-bezier::before { content: \"\\f18b\"; }\n.bi-bezier2::before { content: \"\\f18c\"; }\n.bi-bicycle::before { content: \"\\f18d\"; }\n.bi-binoculars-fill::before { content: \"\\f18e\"; }\n.bi-binoculars::before { content: \"\\f18f\"; }\n.bi-blockquote-left::before { content: \"\\f190\"; }\n.bi-blockquote-right::before { content: \"\\f191\"; }\n.bi-book-fill::before { content: \"\\f192\"; }\n.bi-book-half::before { content: \"\\f193\"; }\n.bi-book::before { content: \"\\f194\"; }\n.bi-bookmark-check-fill::before { content: \"\\f195\"; }\n.bi-bookmark-check::before { content: \"\\f196\"; }\n.bi-bookmark-dash-fill::before { content: \"\\f197\"; }\n.bi-bookmark-dash::before { content: \"\\f198\"; }\n.bi-bookmark-fill::before { content: \"\\f199\"; }\n.bi-bookmark-heart-fill::before { content: \"\\f19a\"; }\n.bi-bookmark-heart::before { content: \"\\f19b\"; }\n.bi-bookmark-plus-fill::before { content: \"\\f19c\"; }\n.bi-bookmark-plus::before { content: \"\\f19d\"; }\n.bi-bookmark-star-fill::before { content: \"\\f19e\"; }\n.bi-bookmark-star::before { content: \"\\f19f\"; }\n.bi-bookmark-x-fill::before { content: \"\\f1a0\"; }\n.bi-bookmark-x::before { content: \"\\f1a1\"; }\n.bi-bookmark::before { content: \"\\f1a2\"; }\n.bi-bookmarks-fill::before { content: \"\\f1a3\"; }\n.bi-bookmarks::before { content: \"\\f1a4\"; }\n.bi-bookshelf::before { content: \"\\f1a5\"; }\n.bi-bootstrap-fill::before { content: \"\\f1a6\"; }\n.bi-bootstrap-reboot::before { content: \"\\f1a7\"; }\n.bi-bootstrap::before { content: \"\\f1a8\"; }\n.bi-border-all::before { content: \"\\f1a9\"; }\n.bi-border-bottom::before { content: \"\\f1aa\"; }\n.bi-border-center::before { content: \"\\f1ab\"; }\n.bi-border-inner::before { content: \"\\f1ac\"; }\n.bi-border-left::before { content: \"\\f1ad\"; }\n.bi-border-middle::before { content: \"\\f1ae\"; }\n.bi-border-outer::before { content: \"\\f1af\"; }\n.bi-border-right::before { content: \"\\f1b0\"; }\n.bi-border-style::before { content: \"\\f1b1\"; }\n.bi-border-top::before { content: \"\\f1b2\"; }\n.bi-border-width::before { content: \"\\f1b3\"; }\n.bi-border::before { content: \"\\f1b4\"; }\n.bi-bounding-box-circles::before { content: \"\\f1b5\"; }\n.bi-bounding-box::before { content: \"\\f1b6\"; }\n.bi-box-arrow-down-left::before { content: \"\\f1b7\"; }\n.bi-box-arrow-down-right::before { content: \"\\f1b8\"; }\n.bi-box-arrow-down::before { content: \"\\f1b9\"; }\n.bi-box-arrow-in-down-left::before { content: \"\\f1ba\"; }\n.bi-box-arrow-in-down-right::before { content: \"\\f1bb\"; }\n.bi-box-arrow-in-down::before { content: \"\\f1bc\"; }\n.bi-box-arrow-in-left::before { content: \"\\f1bd\"; }\n.bi-box-arrow-in-right::before { content: \"\\f1be\"; }\n.bi-box-arrow-in-up-left::before { content: \"\\f1bf\"; }\n.bi-box-arrow-in-up-right::before { content: \"\\f1c0\"; }\n.bi-box-arrow-in-up::before { content: \"\\f1c1\"; }\n.bi-box-arrow-left::before { content: \"\\f1c2\"; }\n.bi-box-arrow-right::before { content: \"\\f1c3\"; }\n.bi-box-arrow-up-left::before { content: \"\\f1c4\"; }\n.bi-box-arrow-up-right::before { content: \"\\f1c5\"; }\n.bi-box-arrow-up::before { content: \"\\f1c6\"; }\n.bi-box-seam::before { content: \"\\f1c7\"; }\n.bi-box::before { content: \"\\f1c8\"; }\n.bi-braces::before { content: \"\\f1c9\"; }\n.bi-bricks::before { content: \"\\f1ca\"; }\n.bi-briefcase-fill::before { content: \"\\f1cb\"; }\n.bi-briefcase::before { content: \"\\f1cc\"; }\n.bi-brightness-alt-high-fill::before { content: \"\\f1cd\"; }\n.bi-brightness-alt-high::before { content: \"\\f1ce\"; }\n.bi-brightness-alt-low-fill::before { content: \"\\f1cf\"; }\n.bi-brightness-alt-low::before { content: \"\\f1d0\"; }\n.bi-brightness-high-fill::before { content: \"\\f1d1\"; }\n.bi-brightness-high::before { content: \"\\f1d2\"; }\n.bi-brightness-low-fill::before { content: \"\\f1d3\"; }\n.bi-brightness-low::before { content: \"\\f1d4\"; }\n.bi-broadcast-pin::before { content: \"\\f1d5\"; }\n.bi-broadcast::before { content: \"\\f1d6\"; }\n.bi-brush-fill::before { content: \"\\f1d7\"; }\n.bi-brush::before { content: \"\\f1d8\"; }\n.bi-bucket-fill::before { content: \"\\f1d9\"; }\n.bi-bucket::before { content: \"\\f1da\"; }\n.bi-bug-fill::before { content: \"\\f1db\"; }\n.bi-bug::before { content: \"\\f1dc\"; }\n.bi-building::before { content: \"\\f1dd\"; }\n.bi-bullseye::before { content: \"\\f1de\"; }\n.bi-calculator-fill::before { content: \"\\f1df\"; }\n.bi-calculator::before { content: \"\\f1e0\"; }\n.bi-calendar-check-fill::before { content: \"\\f1e1\"; }\n.bi-calendar-check::before { content: \"\\f1e2\"; }\n.bi-calendar-date-fill::before { content: \"\\f1e3\"; }\n.bi-calendar-date::before { content: \"\\f1e4\"; }\n.bi-calendar-day-fill::before { content: \"\\f1e5\"; }\n.bi-calendar-day::before { content: \"\\f1e6\"; }\n.bi-calendar-event-fill::before { content: \"\\f1e7\"; }\n.bi-calendar-event::before { content: \"\\f1e8\"; }\n.bi-calendar-fill::before { content: \"\\f1e9\"; }\n.bi-calendar-minus-fill::before { content: \"\\f1ea\"; }\n.bi-calendar-minus::before { content: \"\\f1eb\"; }\n.bi-calendar-month-fill::before { content: \"\\f1ec\"; }\n.bi-calendar-month::before { content: \"\\f1ed\"; }\n.bi-calendar-plus-fill::before { content: \"\\f1ee\"; }\n.bi-calendar-plus::before { content: \"\\f1ef\"; }\n.bi-calendar-range-fill::before { content: \"\\f1f0\"; }\n.bi-calendar-range::before { content: \"\\f1f1\"; }\n.bi-calendar-week-fill::before { content: \"\\f1f2\"; }\n.bi-calendar-week::before { content: \"\\f1f3\"; }\n.bi-calendar-x-fill::before { content: \"\\f1f4\"; }\n.bi-calendar-x::before { content: \"\\f1f5\"; }\n.bi-calendar::before { content: \"\\f1f6\"; }\n.bi-calendar2-check-fill::before { content: \"\\f1f7\"; }\n.bi-calendar2-check::before { content: \"\\f1f8\"; }\n.bi-calendar2-date-fill::before { content: \"\\f1f9\"; }\n.bi-calendar2-date::before { content: \"\\f1fa\"; }\n.bi-calendar2-day-fill::before { content: \"\\f1fb\"; }\n.bi-calendar2-day::before { content: \"\\f1fc\"; }\n.bi-calendar2-event-fill::before { content: \"\\f1fd\"; }\n.bi-calendar2-event::before { content: \"\\f1fe\"; }\n.bi-calendar2-fill::before { content: \"\\f1ff\"; }\n.bi-calendar2-minus-fill::before { content: \"\\f200\"; }\n.bi-calendar2-minus::before { content: \"\\f201\"; }\n.bi-calendar2-month-fill::before { content: \"\\f202\"; }\n.bi-calendar2-month::before { content: \"\\f203\"; }\n.bi-calendar2-plus-fill::before { content: \"\\f204\"; }\n.bi-calendar2-plus::before { content: \"\\f205\"; }\n.bi-calendar2-range-fill::before { content: \"\\f206\"; }\n.bi-calendar2-range::before { content: \"\\f207\"; }\n.bi-calendar2-week-fill::before { content: \"\\f208\"; }\n.bi-calendar2-week::before { content: \"\\f209\"; }\n.bi-calendar2-x-fill::before { content: \"\\f20a\"; }\n.bi-calendar2-x::before { content: \"\\f20b\"; }\n.bi-calendar2::before { content: \"\\f20c\"; }\n.bi-calendar3-event-fill::before { content: \"\\f20d\"; }\n.bi-calendar3-event::before { content: \"\\f20e\"; }\n.bi-calendar3-fill::before { content: \"\\f20f\"; }\n.bi-calendar3-range-fill::before { content: \"\\f210\"; }\n.bi-calendar3-range::before { content: \"\\f211\"; }\n.bi-calendar3-week-fill::before { content: \"\\f212\"; }\n.bi-calendar3-week::before { content: \"\\f213\"; }\n.bi-calendar3::before { content: \"\\f214\"; }\n.bi-calendar4-event::before { content: \"\\f215\"; }\n.bi-calendar4-range::before { content: \"\\f216\"; }\n.bi-calendar4-week::before { content: \"\\f217\"; }\n.bi-calendar4::before { content: \"\\f218\"; }\n.bi-camera-fill::before { content: \"\\f219\"; }\n.bi-camera-reels-fill::before { content: \"\\f21a\"; }\n.bi-camera-reels::before { content: \"\\f21b\"; }\n.bi-camera-video-fill::before { content: \"\\f21c\"; }\n.bi-camera-video-off-fill::before { content: \"\\f21d\"; }\n.bi-camera-video-off::before { content: \"\\f21e\"; }\n.bi-camera-video::before { content: \"\\f21f\"; }\n.bi-camera::before { content: \"\\f220\"; }\n.bi-camera2::before { content: \"\\f221\"; }\n.bi-capslock-fill::before { content: \"\\f222\"; }\n.bi-capslock::before { content: \"\\f223\"; }\n.bi-card-checklist::before { content: \"\\f224\"; }\n.bi-card-heading::before { content: \"\\f225\"; }\n.bi-card-image::before { content: \"\\f226\"; }\n.bi-card-list::before { content: \"\\f227\"; }\n.bi-card-text::before { content: \"\\f228\"; }\n.bi-caret-down-fill::before { content: \"\\f229\"; }\n.bi-caret-down-square-fill::before { content: \"\\f22a\"; }\n.bi-caret-down-square::before { content: \"\\f22b\"; }\n.bi-caret-down::before { content: \"\\f22c\"; }\n.bi-caret-left-fill::before { content: \"\\f22d\"; }\n.bi-caret-left-square-fill::before { content: \"\\f22e\"; }\n.bi-caret-left-square::before { content: \"\\f22f\"; }\n.bi-caret-left::before { content: \"\\f230\"; }\n.bi-caret-right-fill::before { content: \"\\f231\"; }\n.bi-caret-right-square-fill::before { content: \"\\f232\"; }\n.bi-caret-right-square::before { content: \"\\f233\"; }\n.bi-caret-right::before { content: \"\\f234\"; }\n.bi-caret-up-fill::before { content: \"\\f235\"; }\n.bi-caret-up-square-fill::before { content: \"\\f236\"; }\n.bi-caret-up-square::before { content: \"\\f237\"; }\n.bi-caret-up::before { content: \"\\f238\"; }\n.bi-cart-check-fill::before { content: \"\\f239\"; }\n.bi-cart-check::before { content: \"\\f23a\"; }\n.bi-cart-dash-fill::before { content: \"\\f23b\"; }\n.bi-cart-dash::before { content: \"\\f23c\"; }\n.bi-cart-fill::before { content: \"\\f23d\"; }\n.bi-cart-plus-fill::before { content: \"\\f23e\"; }\n.bi-cart-plus::before { content: \"\\f23f\"; }\n.bi-cart-x-fill::before { content: \"\\f240\"; }\n.bi-cart-x::before { content: \"\\f241\"; }\n.bi-cart::before { content: \"\\f242\"; }\n.bi-cart2::before { content: \"\\f243\"; }\n.bi-cart3::before { content: \"\\f244\"; }\n.bi-cart4::before { content: \"\\f245\"; }\n.bi-cash-stack::before { content: \"\\f246\"; }\n.bi-cash::before { content: \"\\f247\"; }\n.bi-cast::before { content: \"\\f248\"; }\n.bi-chat-dots-fill::before { content: \"\\f249\"; }\n.bi-chat-dots::before { content: \"\\f24a\"; }\n.bi-chat-fill::before { content: \"\\f24b\"; }\n.bi-chat-left-dots-fill::before { content: \"\\f24c\"; }\n.bi-chat-left-dots::before { content: \"\\f24d\"; }\n.bi-chat-left-fill::before { content: \"\\f24e\"; }\n.bi-chat-left-quote-fill::before { content: \"\\f24f\"; }\n.bi-chat-left-quote::before { content: \"\\f250\"; }\n.bi-chat-left-text-fill::before { content: \"\\f251\"; }\n.bi-chat-left-text::before { content: \"\\f252\"; }\n.bi-chat-left::before { content: \"\\f253\"; }\n.bi-chat-quote-fill::before { content: \"\\f254\"; }\n.bi-chat-quote::before { content: \"\\f255\"; }\n.bi-chat-right-dots-fill::before { content: \"\\f256\"; }\n.bi-chat-right-dots::before { content: \"\\f257\"; }\n.bi-chat-right-fill::before { content: \"\\f258\"; }\n.bi-chat-right-quote-fill::before { content: \"\\f259\"; }\n.bi-chat-right-quote::before { content: \"\\f25a\"; }\n.bi-chat-right-text-fill::before { content: \"\\f25b\"; }\n.bi-chat-right-text::before { content: \"\\f25c\"; }\n.bi-chat-right::before { content: \"\\f25d\"; }\n.bi-chat-square-dots-fill::before { content: \"\\f25e\"; }\n.bi-chat-square-dots::before { content: \"\\f25f\"; }\n.bi-chat-square-fill::before { content: \"\\f260\"; }\n.bi-chat-square-quote-fill::before { content: \"\\f261\"; }\n.bi-chat-square-quote::before { content: \"\\f262\"; }\n.bi-chat-square-text-fill::before { content: \"\\f263\"; }\n.bi-chat-square-text::before { content: \"\\f264\"; }\n.bi-chat-square::before { content: \"\\f265\"; }\n.bi-chat-text-fill::before { content: \"\\f266\"; }\n.bi-chat-text::before { content: \"\\f267\"; }\n.bi-chat::before { content: \"\\f268\"; }\n.bi-check-all::before { content: \"\\f269\"; }\n.bi-check-circle-fill::before { content: \"\\f26a\"; }\n.bi-check-circle::before { content: \"\\f26b\"; }\n.bi-check-square-fill::before { content: \"\\f26c\"; }\n.bi-check-square::before { content: \"\\f26d\"; }\n.bi-check::before { content: \"\\f26e\"; }\n.bi-check2-all::before { content: \"\\f26f\"; }\n.bi-check2-circle::before { content: \"\\f270\"; }\n.bi-check2-square::before { content: \"\\f271\"; }\n.bi-check2::before { content: \"\\f272\"; }\n.bi-chevron-bar-contract::before { content: \"\\f273\"; }\n.bi-chevron-bar-down::before { content: \"\\f274\"; }\n.bi-chevron-bar-expand::before { content: \"\\f275\"; }\n.bi-chevron-bar-left::before { content: \"\\f276\"; }\n.bi-chevron-bar-right::before { content: \"\\f277\"; }\n.bi-chevron-bar-up::before { content: \"\\f278\"; }\n.bi-chevron-compact-down::before { content: \"\\f279\"; }\n.bi-chevron-compact-left::before { content: \"\\f27a\"; }\n.bi-chevron-compact-right::before { content: \"\\f27b\"; }\n.bi-chevron-compact-up::before { content: \"\\f27c\"; }\n.bi-chevron-contract::before { content: \"\\f27d\"; }\n.bi-chevron-double-down::before { content: \"\\f27e\"; }\n.bi-chevron-double-left::before { content: \"\\f27f\"; }\n.bi-chevron-double-right::before { content: \"\\f280\"; }\n.bi-chevron-double-up::before { content: \"\\f281\"; }\n.bi-chevron-down::before { content: \"\\f282\"; }\n.bi-chevron-expand::before { content: \"\\f283\"; }\n.bi-chevron-left::before { content: \"\\f284\"; }\n.bi-chevron-right::before { content: \"\\f285\"; }\n.bi-chevron-up::before { content: \"\\f286\"; }\n.bi-circle-fill::before { content: \"\\f287\"; }\n.bi-circle-half::before { content: \"\\f288\"; }\n.bi-circle-square::before { content: \"\\f289\"; }\n.bi-circle::before { content: \"\\f28a\"; }\n.bi-clipboard-check::before { content: \"\\f28b\"; }\n.bi-clipboard-data::before { content: \"\\f28c\"; }\n.bi-clipboard-minus::before { content: \"\\f28d\"; }\n.bi-clipboard-plus::before { content: \"\\f28e\"; }\n.bi-clipboard-x::before { content: \"\\f28f\"; }\n.bi-clipboard::before { content: \"\\f290\"; }\n.bi-clock-fill::before { content: \"\\f291\"; }\n.bi-clock-history::before { content: \"\\f292\"; }\n.bi-clock::before { content: \"\\f293\"; }\n.bi-cloud-arrow-down-fill::before { content: \"\\f294\"; }\n.bi-cloud-arrow-down::before { content: \"\\f295\"; }\n.bi-cloud-arrow-up-fill::before { content: \"\\f296\"; }\n.bi-cloud-arrow-up::before { content: \"\\f297\"; }\n.bi-cloud-check-fill::before { content: \"\\f298\"; }\n.bi-cloud-check::before { content: \"\\f299\"; }\n.bi-cloud-download-fill::before { content: \"\\f29a\"; }\n.bi-cloud-download::before { content: \"\\f29b\"; }\n.bi-cloud-drizzle-fill::before { content: \"\\f29c\"; }\n.bi-cloud-drizzle::before { content: \"\\f29d\"; }\n.bi-cloud-fill::before { content: \"\\f29e\"; }\n.bi-cloud-fog-fill::before { content: \"\\f29f\"; }\n.bi-cloud-fog::before { content: \"\\f2a0\"; }\n.bi-cloud-fog2-fill::before { content: \"\\f2a1\"; }\n.bi-cloud-fog2::before { content: \"\\f2a2\"; }\n.bi-cloud-hail-fill::before { content: \"\\f2a3\"; }\n.bi-cloud-hail::before { content: \"\\f2a4\"; }\n.bi-cloud-haze-1::before { content: \"\\f2a5\"; }\n.bi-cloud-haze-fill::before { content: \"\\f2a6\"; }\n.bi-cloud-haze::before { content: \"\\f2a7\"; }\n.bi-cloud-haze2-fill::before { content: \"\\f2a8\"; }\n.bi-cloud-lightning-fill::before { content: \"\\f2a9\"; }\n.bi-cloud-lightning-rain-fill::before { content: \"\\f2aa\"; }\n.bi-cloud-lightning-rain::before { content: \"\\f2ab\"; }\n.bi-cloud-lightning::before { content: \"\\f2ac\"; }\n.bi-cloud-minus-fill::before { content: \"\\f2ad\"; }\n.bi-cloud-minus::before { content: \"\\f2ae\"; }\n.bi-cloud-moon-fill::before { content: \"\\f2af\"; }\n.bi-cloud-moon::before { content: \"\\f2b0\"; }\n.bi-cloud-plus-fill::before { content: \"\\f2b1\"; }\n.bi-cloud-plus::before { content: \"\\f2b2\"; }\n.bi-cloud-rain-fill::before { content: \"\\f2b3\"; }\n.bi-cloud-rain-heavy-fill::before { content: \"\\f2b4\"; }\n.bi-cloud-rain-heavy::before { content: \"\\f2b5\"; }\n.bi-cloud-rain::before { content: \"\\f2b6\"; }\n.bi-cloud-slash-fill::before { content: \"\\f2b7\"; }\n.bi-cloud-slash::before { content: \"\\f2b8\"; }\n.bi-cloud-sleet-fill::before { content: \"\\f2b9\"; }\n.bi-cloud-sleet::before { content: \"\\f2ba\"; }\n.bi-cloud-snow-fill::before { content: \"\\f2bb\"; }\n.bi-cloud-snow::before { content: \"\\f2bc\"; }\n.bi-cloud-sun-fill::before { content: \"\\f2bd\"; }\n.bi-cloud-sun::before { content: \"\\f2be\"; }\n.bi-cloud-upload-fill::before { content: \"\\f2bf\"; }\n.bi-cloud-upload::before { content: \"\\f2c0\"; }\n.bi-cloud::before { content: \"\\f2c1\"; }\n.bi-clouds-fill::before { content: \"\\f2c2\"; }\n.bi-clouds::before { content: \"\\f2c3\"; }\n.bi-cloudy-fill::before { content: \"\\f2c4\"; }\n.bi-cloudy::before { content: \"\\f2c5\"; }\n.bi-code-slash::before { content: \"\\f2c6\"; }\n.bi-code-square::before { content: \"\\f2c7\"; }\n.bi-code::before { content: \"\\f2c8\"; }\n.bi-collection-fill::before { content: \"\\f2c9\"; }\n.bi-collection-play-fill::before { content: \"\\f2ca\"; }\n.bi-collection-play::before { content: \"\\f2cb\"; }\n.bi-collection::before { content: \"\\f2cc\"; }\n.bi-columns-gap::before { content: \"\\f2cd\"; }\n.bi-columns::before { content: \"\\f2ce\"; }\n.bi-command::before { content: \"\\f2cf\"; }\n.bi-compass-fill::before { content: \"\\f2d0\"; }\n.bi-compass::before { content: \"\\f2d1\"; }\n.bi-cone-striped::before { content: \"\\f2d2\"; }\n.bi-cone::before { content: \"\\f2d3\"; }\n.bi-controller::before { content: \"\\f2d4\"; }\n.bi-cpu-fill::before { content: \"\\f2d5\"; }\n.bi-cpu::before { content: \"\\f2d6\"; }\n.bi-credit-card-2-back-fill::before { content: \"\\f2d7\"; }\n.bi-credit-card-2-back::before { content: \"\\f2d8\"; }\n.bi-credit-card-2-front-fill::before { content: \"\\f2d9\"; }\n.bi-credit-card-2-front::before { content: \"\\f2da\"; }\n.bi-credit-card-fill::before { content: \"\\f2db\"; }\n.bi-credit-card::before { content: \"\\f2dc\"; }\n.bi-crop::before { content: \"\\f2dd\"; }\n.bi-cup-fill::before { content: \"\\f2de\"; }\n.bi-cup-straw::before { content: \"\\f2df\"; }\n.bi-cup::before { content: \"\\f2e0\"; }\n.bi-cursor-fill::before { content: \"\\f2e1\"; }\n.bi-cursor-text::before { content: \"\\f2e2\"; }\n.bi-cursor::before { content: \"\\f2e3\"; }\n.bi-dash-circle-dotted::before { content: \"\\f2e4\"; }\n.bi-dash-circle-fill::before { content: \"\\f2e5\"; }\n.bi-dash-circle::before { content: \"\\f2e6\"; }\n.bi-dash-square-dotted::before { content: \"\\f2e7\"; }\n.bi-dash-square-fill::before { content: \"\\f2e8\"; }\n.bi-dash-square::before { content: \"\\f2e9\"; }\n.bi-dash::before { content: \"\\f2ea\"; }\n.bi-diagram-2-fill::before { content: \"\\f2eb\"; }\n.bi-diagram-2::before { content: \"\\f2ec\"; }\n.bi-diagram-3-fill::before { content: \"\\f2ed\"; }\n.bi-diagram-3::before { content: \"\\f2ee\"; }\n.bi-diamond-fill::before { content: \"\\f2ef\"; }\n.bi-diamond-half::before { content: \"\\f2f0\"; }\n.bi-diamond::before { content: \"\\f2f1\"; }\n.bi-dice-1-fill::before { content: \"\\f2f2\"; }\n.bi-dice-1::before { content: \"\\f2f3\"; }\n.bi-dice-2-fill::before { content: \"\\f2f4\"; }\n.bi-dice-2::before { content: \"\\f2f5\"; }\n.bi-dice-3-fill::before { content: \"\\f2f6\"; }\n.bi-dice-3::before { content: \"\\f2f7\"; }\n.bi-dice-4-fill::before { content: \"\\f2f8\"; }\n.bi-dice-4::before { content: \"\\f2f9\"; }\n.bi-dice-5-fill::before { content: \"\\f2fa\"; }\n.bi-dice-5::before { content: \"\\f2fb\"; }\n.bi-dice-6-fill::before { content: \"\\f2fc\"; }\n.bi-dice-6::before { content: \"\\f2fd\"; }\n.bi-disc-fill::before { content: \"\\f2fe\"; }\n.bi-disc::before { content: \"\\f2ff\"; }\n.bi-discord::before { content: \"\\f300\"; }\n.bi-display-fill::before { content: \"\\f301\"; }\n.bi-display::before { content: \"\\f302\"; }\n.bi-distribute-horizontal::before { content: \"\\f303\"; }\n.bi-distribute-vertical::before { content: \"\\f304\"; }\n.bi-door-closed-fill::before { content: \"\\f305\"; }\n.bi-door-closed::before { content: \"\\f306\"; }\n.bi-door-open-fill::before { content: \"\\f307\"; }\n.bi-door-open::before { content: \"\\f308\"; }\n.bi-dot::before { content: \"\\f309\"; }\n.bi-download::before { content: \"\\f30a\"; }\n.bi-droplet-fill::before { content: \"\\f30b\"; }\n.bi-droplet-half::before { content: \"\\f30c\"; }\n.bi-droplet::before { content: \"\\f30d\"; }\n.bi-earbuds::before { content: \"\\f30e\"; }\n.bi-easel-fill::before { content: \"\\f30f\"; }\n.bi-easel::before { content: \"\\f310\"; }\n.bi-egg-fill::before { content: \"\\f311\"; }\n.bi-egg-fried::before { content: \"\\f312\"; }\n.bi-egg::before { content: \"\\f313\"; }\n.bi-eject-fill::before { content: \"\\f314\"; }\n.bi-eject::before { content: \"\\f315\"; }\n.bi-emoji-angry-fill::before { content: \"\\f316\"; }\n.bi-emoji-angry::before { content: \"\\f317\"; }\n.bi-emoji-dizzy-fill::before { content: \"\\f318\"; }\n.bi-emoji-dizzy::before { content: \"\\f319\"; }\n.bi-emoji-expressionless-fill::before { content: \"\\f31a\"; }\n.bi-emoji-expressionless::before { content: \"\\f31b\"; }\n.bi-emoji-frown-fill::before { content: \"\\f31c\"; }\n.bi-emoji-frown::before { content: \"\\f31d\"; }\n.bi-emoji-heart-eyes-fill::before { content: \"\\f31e\"; }\n.bi-emoji-heart-eyes::before { content: \"\\f31f\"; }\n.bi-emoji-laughing-fill::before { content: \"\\f320\"; }\n.bi-emoji-laughing::before { content: \"\\f321\"; }\n.bi-emoji-neutral-fill::before { content: \"\\f322\"; }\n.bi-emoji-neutral::before { content: \"\\f323\"; }\n.bi-emoji-smile-fill::before { content: \"\\f324\"; }\n.bi-emoji-smile-upside-down-fill::before { content: \"\\f325\"; }\n.bi-emoji-smile-upside-down::before { content: \"\\f326\"; }\n.bi-emoji-smile::before { content: \"\\f327\"; }\n.bi-emoji-sunglasses-fill::before { content: \"\\f328\"; }\n.bi-emoji-sunglasses::before { content: \"\\f329\"; }\n.bi-emoji-wink-fill::before { content: \"\\f32a\"; }\n.bi-emoji-wink::before { content: \"\\f32b\"; }\n.bi-envelope-fill::before { content: \"\\f32c\"; }\n.bi-envelope-open-fill::before { content: \"\\f32d\"; }\n.bi-envelope-open::before { content: \"\\f32e\"; }\n.bi-envelope::before { content: \"\\f32f\"; }\n.bi-eraser-fill::before { content: \"\\f330\"; }\n.bi-eraser::before { content: \"\\f331\"; }\n.bi-exclamation-circle-fill::before { content: \"\\f332\"; }\n.bi-exclamation-circle::before { content: \"\\f333\"; }\n.bi-exclamation-diamond-fill::before { content: \"\\f334\"; }\n.bi-exclamation-diamond::before { content: \"\\f335\"; }\n.bi-exclamation-octagon-fill::before { content: \"\\f336\"; }\n.bi-exclamation-octagon::before { content: \"\\f337\"; }\n.bi-exclamation-square-fill::before { content: \"\\f338\"; }\n.bi-exclamation-square::before { content: \"\\f339\"; }\n.bi-exclamation-triangle-fill::before { content: \"\\f33a\"; }\n.bi-exclamation-triangle::before { content: \"\\f33b\"; }\n.bi-exclamation::before { content: \"\\f33c\"; }\n.bi-exclude::before { content: \"\\f33d\"; }\n.bi-eye-fill::before { content: \"\\f33e\"; }\n.bi-eye-slash-fill::before { content: \"\\f33f\"; }\n.bi-eye-slash::before { content: \"\\f340\"; }\n.bi-eye::before { content: \"\\f341\"; }\n.bi-eyedropper::before { content: \"\\f342\"; }\n.bi-eyeglasses::before { content: \"\\f343\"; }\n.bi-facebook::before { content: \"\\f344\"; }\n.bi-file-arrow-down-fill::before { content: \"\\f345\"; }\n.bi-file-arrow-down::before { content: \"\\f346\"; }\n.bi-file-arrow-up-fill::before { content: \"\\f347\"; }\n.bi-file-arrow-up::before { content: \"\\f348\"; }\n.bi-file-bar-graph-fill::before { content: \"\\f349\"; }\n.bi-file-bar-graph::before { content: \"\\f34a\"; }\n.bi-file-binary-fill::before { content: \"\\f34b\"; }\n.bi-file-binary::before { content: \"\\f34c\"; }\n.bi-file-break-fill::before { content: \"\\f34d\"; }\n.bi-file-break::before { content: \"\\f34e\"; }\n.bi-file-check-fill::before { content: \"\\f34f\"; }\n.bi-file-check::before { content: \"\\f350\"; }\n.bi-file-code-fill::before { content: \"\\f351\"; }\n.bi-file-code::before { content: \"\\f352\"; }\n.bi-file-diff-fill::before { content: \"\\f353\"; }\n.bi-file-diff::before { content: \"\\f354\"; }\n.bi-file-earmark-arrow-down-fill::before { content: \"\\f355\"; }\n.bi-file-earmark-arrow-down::before { content: \"\\f356\"; }\n.bi-file-earmark-arrow-up-fill::before { content: \"\\f357\"; }\n.bi-file-earmark-arrow-up::before { content: \"\\f358\"; }\n.bi-file-earmark-bar-graph-fill::before { content: \"\\f359\"; }\n.bi-file-earmark-bar-graph::before { content: \"\\f35a\"; }\n.bi-file-earmark-binary-fill::before { content: \"\\f35b\"; }\n.bi-file-earmark-binary::before { content: \"\\f35c\"; }\n.bi-file-earmark-break-fill::before { content: \"\\f35d\"; }\n.bi-file-earmark-break::before { content: \"\\f35e\"; }\n.bi-file-earmark-check-fill::before { content: \"\\f35f\"; }\n.bi-file-earmark-check::before { content: \"\\f360\"; }\n.bi-file-earmark-code-fill::before { content: \"\\f361\"; }\n.bi-file-earmark-code::before { content: \"\\f362\"; }\n.bi-file-earmark-diff-fill::before { content: \"\\f363\"; }\n.bi-file-earmark-diff::before { content: \"\\f364\"; }\n.bi-file-earmark-easel-fill::before { content: \"\\f365\"; }\n.bi-file-earmark-easel::before { content: \"\\f366\"; }\n.bi-file-earmark-excel-fill::before { content: \"\\f367\"; }\n.bi-file-earmark-excel::before { content: \"\\f368\"; }\n.bi-file-earmark-fill::before { content: \"\\f369\"; }\n.bi-file-earmark-font-fill::before { content: \"\\f36a\"; }\n.bi-file-earmark-font::before { content: \"\\f36b\"; }\n.bi-file-earmark-image-fill::before { content: \"\\f36c\"; }\n.bi-file-earmark-image::before { content: \"\\f36d\"; }\n.bi-file-earmark-lock-fill::before { content: \"\\f36e\"; }\n.bi-file-earmark-lock::before { content: \"\\f36f\"; }\n.bi-file-earmark-lock2-fill::before { content: \"\\f370\"; }\n.bi-file-earmark-lock2::before { content: \"\\f371\"; }\n.bi-file-earmark-medical-fill::before { content: \"\\f372\"; }\n.bi-file-earmark-medical::before { content: \"\\f373\"; }\n.bi-file-earmark-minus-fill::before { content: \"\\f374\"; }\n.bi-file-earmark-minus::before { content: \"\\f375\"; }\n.bi-file-earmark-music-fill::before { content: \"\\f376\"; }\n.bi-file-earmark-music::before { content: \"\\f377\"; }\n.bi-file-earmark-person-fill::before { content: \"\\f378\"; }\n.bi-file-earmark-person::before { content: \"\\f379\"; }\n.bi-file-earmark-play-fill::before { content: \"\\f37a\"; }\n.bi-file-earmark-play::before { content: \"\\f37b\"; }\n.bi-file-earmark-plus-fill::before { content: \"\\f37c\"; }\n.bi-file-earmark-plus::before { content: \"\\f37d\"; }\n.bi-file-earmark-post-fill::before { content: \"\\f37e\"; }\n.bi-file-earmark-post::before { content: \"\\f37f\"; }\n.bi-file-earmark-ppt-fill::before { content: \"\\f380\"; }\n.bi-file-earmark-ppt::before { content: \"\\f381\"; }\n.bi-file-earmark-richtext-fill::before { content: \"\\f382\"; }\n.bi-file-earmark-richtext::before { content: \"\\f383\"; }\n.bi-file-earmark-ruled-fill::before { content: \"\\f384\"; }\n.bi-file-earmark-ruled::before { content: \"\\f385\"; }\n.bi-file-earmark-slides-fill::before { content: \"\\f386\"; }\n.bi-file-earmark-slides::before { content: \"\\f387\"; }\n.bi-file-earmark-spreadsheet-fill::before { content: \"\\f388\"; }\n.bi-file-earmark-spreadsheet::before { content: \"\\f389\"; }\n.bi-file-earmark-text-fill::before { content: \"\\f38a\"; }\n.bi-file-earmark-text::before { content: \"\\f38b\"; }\n.bi-file-earmark-word-fill::before { content: \"\\f38c\"; }\n.bi-file-earmark-word::before { content: \"\\f38d\"; }\n.bi-file-earmark-x-fill::before { content: \"\\f38e\"; }\n.bi-file-earmark-x::before { content: \"\\f38f\"; }\n.bi-file-earmark-zip-fill::before { content: \"\\f390\"; }\n.bi-file-earmark-zip::before { content: \"\\f391\"; }\n.bi-file-earmark::before { content: \"\\f392\"; }\n.bi-file-easel-fill::before { content: \"\\f393\"; }\n.bi-file-easel::before { content: \"\\f394\"; }\n.bi-file-excel-fill::before { content: \"\\f395\"; }\n.bi-file-excel::before { content: \"\\f396\"; }\n.bi-file-fill::before { content: \"\\f397\"; }\n.bi-file-font-fill::before { content: \"\\f398\"; }\n.bi-file-font::before { content: \"\\f399\"; }\n.bi-file-image-fill::before { content: \"\\f39a\"; }\n.bi-file-image::before { content: \"\\f39b\"; }\n.bi-file-lock-fill::before { content: \"\\f39c\"; }\n.bi-file-lock::before { content: \"\\f39d\"; }\n.bi-file-lock2-fill::before { content: \"\\f39e\"; }\n.bi-file-lock2::before { content: \"\\f39f\"; }\n.bi-file-medical-fill::before { content: \"\\f3a0\"; }\n.bi-file-medical::before { content: \"\\f3a1\"; }\n.bi-file-minus-fill::before { content: \"\\f3a2\"; }\n.bi-file-minus::before { content: \"\\f3a3\"; }\n.bi-file-music-fill::before { content: \"\\f3a4\"; }\n.bi-file-music::before { content: \"\\f3a5\"; }\n.bi-file-person-fill::before { content: \"\\f3a6\"; }\n.bi-file-person::before { content: \"\\f3a7\"; }\n.bi-file-play-fill::before { content: \"\\f3a8\"; }\n.bi-file-play::before { content: \"\\f3a9\"; }\n.bi-file-plus-fill::before { content: \"\\f3aa\"; }\n.bi-file-plus::before { content: \"\\f3ab\"; }\n.bi-file-post-fill::before { content: \"\\f3ac\"; }\n.bi-file-post::before { content: \"\\f3ad\"; }\n.bi-file-ppt-fill::before { content: \"\\f3ae\"; }\n.bi-file-ppt::before { content: \"\\f3af\"; }\n.bi-file-richtext-fill::before { content: \"\\f3b0\"; }\n.bi-file-richtext::before { content: \"\\f3b1\"; }\n.bi-file-ruled-fill::before { content: \"\\f3b2\"; }\n.bi-file-ruled::before { content: \"\\f3b3\"; }\n.bi-file-slides-fill::before { content: \"\\f3b4\"; }\n.bi-file-slides::before { content: \"\\f3b5\"; }\n.bi-file-spreadsheet-fill::before { content: \"\\f3b6\"; }\n.bi-file-spreadsheet::before { content: \"\\f3b7\"; }\n.bi-file-text-fill::before { content: \"\\f3b8\"; }\n.bi-file-text::before { content: \"\\f3b9\"; }\n.bi-file-word-fill::before { content: \"\\f3ba\"; }\n.bi-file-word::before { content: \"\\f3bb\"; }\n.bi-file-x-fill::before { content: \"\\f3bc\"; }\n.bi-file-x::before { content: \"\\f3bd\"; }\n.bi-file-zip-fill::before { content: \"\\f3be\"; }\n.bi-file-zip::before { content: \"\\f3bf\"; }\n.bi-file::before { content: \"\\f3c0\"; }\n.bi-files-alt::before { content: \"\\f3c1\"; }\n.bi-files::before { content: \"\\f3c2\"; }\n.bi-film::before { content: \"\\f3c3\"; }\n.bi-filter-circle-fill::before { content: \"\\f3c4\"; }\n.bi-filter-circle::before { content: \"\\f3c5\"; }\n.bi-filter-left::before { content: \"\\f3c6\"; }\n.bi-filter-right::before { content: \"\\f3c7\"; }\n.bi-filter-square-fill::before { content: \"\\f3c8\"; }\n.bi-filter-square::before { content: \"\\f3c9\"; }\n.bi-filter::before { content: \"\\f3ca\"; }\n.bi-flag-fill::before { content: \"\\f3cb\"; }\n.bi-flag::before { content: \"\\f3cc\"; }\n.bi-flower1::before { content: \"\\f3cd\"; }\n.bi-flower2::before { content: \"\\f3ce\"; }\n.bi-flower3::before { content: \"\\f3cf\"; }\n.bi-folder-check::before { content: \"\\f3d0\"; }\n.bi-folder-fill::before { content: \"\\f3d1\"; }\n.bi-folder-minus::before { content: \"\\f3d2\"; }\n.bi-folder-plus::before { content: \"\\f3d3\"; }\n.bi-folder-symlink-fill::before { content: \"\\f3d4\"; }\n.bi-folder-symlink::before { content: \"\\f3d5\"; }\n.bi-folder-x::before { content: \"\\f3d6\"; }\n.bi-folder::before { content: \"\\f3d7\"; }\n.bi-folder2-open::before { content: \"\\f3d8\"; }\n.bi-folder2::before { content: \"\\f3d9\"; }\n.bi-fonts::before { content: \"\\f3da\"; }\n.bi-forward-fill::before { content: \"\\f3db\"; }\n.bi-forward::before { content: \"\\f3dc\"; }\n.bi-front::before { content: \"\\f3dd\"; }\n.bi-fullscreen-exit::before { content: \"\\f3de\"; }\n.bi-fullscreen::before { content: \"\\f3df\"; }\n.bi-funnel-fill::before { content: \"\\f3e0\"; }\n.bi-funnel::before { content: \"\\f3e1\"; }\n.bi-gear-fill::before { content: \"\\f3e2\"; }\n.bi-gear-wide-connected::before { content: \"\\f3e3\"; }\n.bi-gear-wide::before { content: \"\\f3e4\"; }\n.bi-gear::before { content: \"\\f3e5\"; }\n.bi-gem::before { content: \"\\f3e6\"; }\n.bi-geo-alt-fill::before { content: \"\\f3e7\"; }\n.bi-geo-alt::before { content: \"\\f3e8\"; }\n.bi-geo-fill::before { content: \"\\f3e9\"; }\n.bi-geo::before { content: \"\\f3ea\"; }\n.bi-gift-fill::before { content: \"\\f3eb\"; }\n.bi-gift::before { content: \"\\f3ec\"; }\n.bi-github::before { content: \"\\f3ed\"; }\n.bi-globe::before { content: \"\\f3ee\"; }\n.bi-globe2::before { content: \"\\f3ef\"; }\n.bi-google::before { content: \"\\f3f0\"; }\n.bi-graph-down::before { content: \"\\f3f1\"; }\n.bi-graph-up::before { content: \"\\f3f2\"; }\n.bi-grid-1x2-fill::before { content: \"\\f3f3\"; }\n.bi-grid-1x2::before { content: \"\\f3f4\"; }\n.bi-grid-3x2-gap-fill::before { content: \"\\f3f5\"; }\n.bi-grid-3x2-gap::before { content: \"\\f3f6\"; }\n.bi-grid-3x2::before { content: \"\\f3f7\"; }\n.bi-grid-3x3-gap-fill::before { content: \"\\f3f8\"; }\n.bi-grid-3x3-gap::before { content: \"\\f3f9\"; }\n.bi-grid-3x3::before { content: \"\\f3fa\"; }\n.bi-grid-fill::before { content: \"\\f3fb\"; }\n.bi-grid::before { content: \"\\f3fc\"; }\n.bi-grip-horizontal::before { content: \"\\f3fd\"; }\n.bi-grip-vertical::before { content: \"\\f3fe\"; }\n.bi-hammer::before { content: \"\\f3ff\"; }\n.bi-hand-index-fill::before { content: \"\\f400\"; }\n.bi-hand-index-thumb-fill::before { content: \"\\f401\"; }\n.bi-hand-index-thumb::before { content: \"\\f402\"; }\n.bi-hand-index::before { content: \"\\f403\"; }\n.bi-hand-thumbs-down-fill::before { content: \"\\f404\"; }\n.bi-hand-thumbs-down::before { content: \"\\f405\"; }\n.bi-hand-thumbs-up-fill::before { content: \"\\f406\"; }\n.bi-hand-thumbs-up::before { content: \"\\f407\"; }\n.bi-handbag-fill::before { content: \"\\f408\"; }\n.bi-handbag::before { content: \"\\f409\"; }\n.bi-hash::before { content: \"\\f40a\"; }\n.bi-hdd-fill::before { content: \"\\f40b\"; }\n.bi-hdd-network-fill::before { content: \"\\f40c\"; }\n.bi-hdd-network::before { content: \"\\f40d\"; }\n.bi-hdd-rack-fill::before { content: \"\\f40e\"; }\n.bi-hdd-rack::before { content: \"\\f40f\"; }\n.bi-hdd-stack-fill::before { content: \"\\f410\"; }\n.bi-hdd-stack::before { content: \"\\f411\"; }\n.bi-hdd::before { content: \"\\f412\"; }\n.bi-headphones::before { content: \"\\f413\"; }\n.bi-headset::before { content: \"\\f414\"; }\n.bi-heart-fill::before { content: \"\\f415\"; }\n.bi-heart-half::before { content: \"\\f416\"; }\n.bi-heart::before { content: \"\\f417\"; }\n.bi-heptagon-fill::before { content: \"\\f418\"; }\n.bi-heptagon-half::before { content: \"\\f419\"; }\n.bi-heptagon::before { content: \"\\f41a\"; }\n.bi-hexagon-fill::before { content: \"\\f41b\"; }\n.bi-hexagon-half::before { content: \"\\f41c\"; }\n.bi-hexagon::before { content: \"\\f41d\"; }\n.bi-hourglass-bottom::before { content: \"\\f41e\"; }\n.bi-hourglass-split::before { content: \"\\f41f\"; }\n.bi-hourglass-top::before { content: \"\\f420\"; }\n.bi-hourglass::before { content: \"\\f421\"; }\n.bi-house-door-fill::before { content: \"\\f422\"; }\n.bi-house-door::before { content: \"\\f423\"; }\n.bi-house-fill::before { content: \"\\f424\"; }\n.bi-house::before { content: \"\\f425\"; }\n.bi-hr::before { content: \"\\f426\"; }\n.bi-hurricane::before { content: \"\\f427\"; }\n.bi-image-alt::before { content: \"\\f428\"; }\n.bi-image-fill::before { content: \"\\f429\"; }\n.bi-image::before { content: \"\\f42a\"; }\n.bi-images::before { content: \"\\f42b\"; }\n.bi-inbox-fill::before { content: \"\\f42c\"; }\n.bi-inbox::before { content: \"\\f42d\"; }\n.bi-inboxes-fill::before { content: \"\\f42e\"; }\n.bi-inboxes::before { content: \"\\f42f\"; }\n.bi-info-circle-fill::before { content: \"\\f430\"; }\n.bi-info-circle::before { content: \"\\f431\"; }\n.bi-info-square-fill::before { content: \"\\f432\"; }\n.bi-info-square::before { content: \"\\f433\"; }\n.bi-info::before { content: \"\\f434\"; }\n.bi-input-cursor-text::before { content: \"\\f435\"; }\n.bi-input-cursor::before { content: \"\\f436\"; }\n.bi-instagram::before { content: \"\\f437\"; }\n.bi-intersect::before { content: \"\\f438\"; }\n.bi-journal-album::before { content: \"\\f439\"; }\n.bi-journal-arrow-down::before { content: \"\\f43a\"; }\n.bi-journal-arrow-up::before { content: \"\\f43b\"; }\n.bi-journal-bookmark-fill::before { content: \"\\f43c\"; }\n.bi-journal-bookmark::before { content: \"\\f43d\"; }\n.bi-journal-check::before { content: \"\\f43e\"; }\n.bi-journal-code::before { content: \"\\f43f\"; }\n.bi-journal-medical::before { content: \"\\f440\"; }\n.bi-journal-minus::before { content: \"\\f441\"; }\n.bi-journal-plus::before { content: \"\\f442\"; }\n.bi-journal-richtext::before { content: \"\\f443\"; }\n.bi-journal-text::before { content: \"\\f444\"; }\n.bi-journal-x::before { content: \"\\f445\"; }\n.bi-journal::before { content: \"\\f446\"; }\n.bi-journals::before { content: \"\\f447\"; }\n.bi-joystick::before { content: \"\\f448\"; }\n.bi-justify-left::before { content: \"\\f449\"; }\n.bi-justify-right::before { content: \"\\f44a\"; }\n.bi-justify::before { content: \"\\f44b\"; }\n.bi-kanban-fill::before { content: \"\\f44c\"; }\n.bi-kanban::before { content: \"\\f44d\"; }\n.bi-key-fill::before { content: \"\\f44e\"; }\n.bi-key::before { content: \"\\f44f\"; }\n.bi-keyboard-fill::before { content: \"\\f450\"; }\n.bi-keyboard::before { content: \"\\f451\"; }\n.bi-ladder::before { content: \"\\f452\"; }\n.bi-lamp-fill::before { content: \"\\f453\"; }\n.bi-lamp::before { content: \"\\f454\"; }\n.bi-laptop-fill::before { content: \"\\f455\"; }\n.bi-laptop::before { content: \"\\f456\"; }\n.bi-layer-backward::before { content: \"\\f457\"; }\n.bi-layer-forward::before { content: \"\\f458\"; }\n.bi-layers-fill::before { content: \"\\f459\"; }\n.bi-layers-half::before { content: \"\\f45a\"; }\n.bi-layers::before { content: \"\\f45b\"; }\n.bi-layout-sidebar-inset-reverse::before { content: \"\\f45c\"; }\n.bi-layout-sidebar-inset::before { content: \"\\f45d\"; }\n.bi-layout-sidebar-reverse::before { content: \"\\f45e\"; }\n.bi-layout-sidebar::before { content: \"\\f45f\"; }\n.bi-layout-split::before { content: \"\\f460\"; }\n.bi-layout-text-sidebar-reverse::before { content: \"\\f461\"; }\n.bi-layout-text-sidebar::before { content: \"\\f462\"; }\n.bi-layout-text-window-reverse::before { content: \"\\f463\"; }\n.bi-layout-text-window::before { content: \"\\f464\"; }\n.bi-layout-three-columns::before { content: \"\\f465\"; }\n.bi-layout-wtf::before { content: \"\\f466\"; }\n.bi-life-preserver::before { content: \"\\f467\"; }\n.bi-lightbulb-fill::before { content: \"\\f468\"; }\n.bi-lightbulb-off-fill::before { content: \"\\f469\"; }\n.bi-lightbulb-off::before { content: \"\\f46a\"; }\n.bi-lightbulb::before { content: \"\\f46b\"; }\n.bi-lightning-charge-fill::before { content: \"\\f46c\"; }\n.bi-lightning-charge::before { content: \"\\f46d\"; }\n.bi-lightning-fill::before { content: \"\\f46e\"; }\n.bi-lightning::before { content: \"\\f46f\"; }\n.bi-link-45deg::before { content: \"\\f470\"; }\n.bi-link::before { content: \"\\f471\"; }\n.bi-linkedin::before { content: \"\\f472\"; }\n.bi-list-check::before { content: \"\\f473\"; }\n.bi-list-nested::before { content: \"\\f474\"; }\n.bi-list-ol::before { content: \"\\f475\"; }\n.bi-list-stars::before { content: \"\\f476\"; }\n.bi-list-task::before { content: \"\\f477\"; }\n.bi-list-ul::before { content: \"\\f478\"; }\n.bi-list::before { content: \"\\f479\"; }\n.bi-lock-fill::before { content: \"\\f47a\"; }\n.bi-lock::before { content: \"\\f47b\"; }\n.bi-mailbox::before { content: \"\\f47c\"; }\n.bi-mailbox2::before { content: \"\\f47d\"; }\n.bi-map-fill::before { content: \"\\f47e\"; }\n.bi-map::before { content: \"\\f47f\"; }\n.bi-markdown-fill::before { content: \"\\f480\"; }\n.bi-markdown::before { content: \"\\f481\"; }\n.bi-mask::before { content: \"\\f482\"; }\n.bi-megaphone-fill::before { content: \"\\f483\"; }\n.bi-megaphone::before { content: \"\\f484\"; }\n.bi-menu-app-fill::before { content: \"\\f485\"; }\n.bi-menu-app::before { content: \"\\f486\"; }\n.bi-menu-button-fill::before { content: \"\\f487\"; }\n.bi-menu-button-wide-fill::before { content: \"\\f488\"; }\n.bi-menu-button-wide::before { content: \"\\f489\"; }\n.bi-menu-button::before { content: \"\\f48a\"; }\n.bi-menu-down::before { content: \"\\f48b\"; }\n.bi-menu-up::before { content: \"\\f48c\"; }\n.bi-mic-fill::before { content: \"\\f48d\"; }\n.bi-mic-mute-fill::before { content: \"\\f48e\"; }\n.bi-mic-mute::before { content: \"\\f48f\"; }\n.bi-mic::before { content: \"\\f490\"; }\n.bi-minecart-loaded::before { content: \"\\f491\"; }\n.bi-minecart::before { content: \"\\f492\"; }\n.bi-moisture::before { content: \"\\f493\"; }\n.bi-moon-fill::before { content: \"\\f494\"; }\n.bi-moon-stars-fill::before { content: \"\\f495\"; }\n.bi-moon-stars::before { content: \"\\f496\"; }\n.bi-moon::before { content: \"\\f497\"; }\n.bi-mouse-fill::before { content: \"\\f498\"; }\n.bi-mouse::before { content: \"\\f499\"; }\n.bi-mouse2-fill::before { content: \"\\f49a\"; }\n.bi-mouse2::before { content: \"\\f49b\"; }\n.bi-mouse3-fill::before { content: \"\\f49c\"; }\n.bi-mouse3::before { content: \"\\f49d\"; }\n.bi-music-note-beamed::before { content: \"\\f49e\"; }\n.bi-music-note-list::before { content: \"\\f49f\"; }\n.bi-music-note::before { content: \"\\f4a0\"; }\n.bi-music-player-fill::before { content: \"\\f4a1\"; }\n.bi-music-player::before { content: \"\\f4a2\"; }\n.bi-newspaper::before { content: \"\\f4a3\"; }\n.bi-node-minus-fill::before { content: \"\\f4a4\"; }\n.bi-node-minus::before { content: \"\\f4a5\"; }\n.bi-node-plus-fill::before { content: \"\\f4a6\"; }\n.bi-node-plus::before { content: \"\\f4a7\"; }\n.bi-nut-fill::before { content: \"\\f4a8\"; }\n.bi-nut::before { content: \"\\f4a9\"; }\n.bi-octagon-fill::before { content: \"\\f4aa\"; }\n.bi-octagon-half::before { content: \"\\f4ab\"; }\n.bi-octagon::before { content: \"\\f4ac\"; }\n.bi-option::before { content: \"\\f4ad\"; }\n.bi-outlet::before { content: \"\\f4ae\"; }\n.bi-paint-bucket::before { content: \"\\f4af\"; }\n.bi-palette-fill::before { content: \"\\f4b0\"; }\n.bi-palette::before { content: \"\\f4b1\"; }\n.bi-palette2::before { content: \"\\f4b2\"; }\n.bi-paperclip::before { content: \"\\f4b3\"; }\n.bi-paragraph::before { content: \"\\f4b4\"; }\n.bi-patch-check-fill::before { content: \"\\f4b5\"; }\n.bi-patch-check::before { content: \"\\f4b6\"; }\n.bi-patch-exclamation-fill::before { content: \"\\f4b7\"; }\n.bi-patch-exclamation::before { content: \"\\f4b8\"; }\n.bi-patch-minus-fill::before { content: \"\\f4b9\"; }\n.bi-patch-minus::before { content: \"\\f4ba\"; }\n.bi-patch-plus-fill::before { content: \"\\f4bb\"; }\n.bi-patch-plus::before { content: \"\\f4bc\"; }\n.bi-patch-question-fill::before { content: \"\\f4bd\"; }\n.bi-patch-question::before { content: \"\\f4be\"; }\n.bi-pause-btn-fill::before { content: \"\\f4bf\"; }\n.bi-pause-btn::before { content: \"\\f4c0\"; }\n.bi-pause-circle-fill::before { content: \"\\f4c1\"; }\n.bi-pause-circle::before { content: \"\\f4c2\"; }\n.bi-pause-fill::before { content: \"\\f4c3\"; }\n.bi-pause::before { content: \"\\f4c4\"; }\n.bi-peace-fill::before { content: \"\\f4c5\"; }\n.bi-peace::before { content: \"\\f4c6\"; }\n.bi-pen-fill::before { content: \"\\f4c7\"; }\n.bi-pen::before { content: \"\\f4c8\"; }\n.bi-pencil-fill::before { content: \"\\f4c9\"; }\n.bi-pencil-square::before { content: \"\\f4ca\"; }\n.bi-pencil::before { content: \"\\f4cb\"; }\n.bi-pentagon-fill::before { content: \"\\f4cc\"; }\n.bi-pentagon-half::before { content: \"\\f4cd\"; }\n.bi-pentagon::before { content: \"\\f4ce\"; }\n.bi-people-fill::before { content: \"\\f4cf\"; }\n.bi-people::before { content: \"\\f4d0\"; }\n.bi-percent::before { content: \"\\f4d1\"; }\n.bi-person-badge-fill::before { content: \"\\f4d2\"; }\n.bi-person-badge::before { content: \"\\f4d3\"; }\n.bi-person-bounding-box::before { content: \"\\f4d4\"; }\n.bi-person-check-fill::before { content: \"\\f4d5\"; }\n.bi-person-check::before { content: \"\\f4d6\"; }\n.bi-person-circle::before { content: \"\\f4d7\"; }\n.bi-person-dash-fill::before { content: \"\\f4d8\"; }\n.bi-person-dash::before { content: \"\\f4d9\"; }\n.bi-person-fill::before { content: \"\\f4da\"; }\n.bi-person-lines-fill::before { content: \"\\f4db\"; }\n.bi-person-plus-fill::before { content: \"\\f4dc\"; }\n.bi-person-plus::before { content: \"\\f4dd\"; }\n.bi-person-square::before { content: \"\\f4de\"; }\n.bi-person-x-fill::before { content: \"\\f4df\"; }\n.bi-person-x::before { content: \"\\f4e0\"; }\n.bi-person::before { content: \"\\f4e1\"; }\n.bi-phone-fill::before { content: \"\\f4e2\"; }\n.bi-phone-landscape-fill::before { content: \"\\f4e3\"; }\n.bi-phone-landscape::before { content: \"\\f4e4\"; }\n.bi-phone-vibrate-fill::before { content: \"\\f4e5\"; }\n.bi-phone-vibrate::before { content: \"\\f4e6\"; }\n.bi-phone::before { content: \"\\f4e7\"; }\n.bi-pie-chart-fill::before { content: \"\\f4e8\"; }\n.bi-pie-chart::before { content: \"\\f4e9\"; }\n.bi-pin-angle-fill::before { content: \"\\f4ea\"; }\n.bi-pin-angle::before { content: \"\\f4eb\"; }\n.bi-pin-fill::before { content: \"\\f4ec\"; }\n.bi-pin::before { content: \"\\f4ed\"; }\n.bi-pip-fill::before { content: \"\\f4ee\"; }\n.bi-pip::before { content: \"\\f4ef\"; }\n.bi-play-btn-fill::before { content: \"\\f4f0\"; }\n.bi-play-btn::before { content: \"\\f4f1\"; }\n.bi-play-circle-fill::before { content: \"\\f4f2\"; }\n.bi-play-circle::before { content: \"\\f4f3\"; }\n.bi-play-fill::before { content: \"\\f4f4\"; }\n.bi-play::before { content: \"\\f4f5\"; }\n.bi-plug-fill::before { content: \"\\f4f6\"; }\n.bi-plug::before { content: \"\\f4f7\"; }\n.bi-plus-circle-dotted::before { content: \"\\f4f8\"; }\n.bi-plus-circle-fill::before { content: \"\\f4f9\"; }\n.bi-plus-circle::before { content: \"\\f4fa\"; }\n.bi-plus-square-dotted::before { content: \"\\f4fb\"; }\n.bi-plus-square-fill::before { content: \"\\f4fc\"; }\n.bi-plus-square::before { content: \"\\f4fd\"; }\n.bi-plus::before { content: \"\\f4fe\"; }\n.bi-power::before { content: \"\\f4ff\"; }\n.bi-printer-fill::before { content: \"\\f500\"; }\n.bi-printer::before { content: \"\\f501\"; }\n.bi-puzzle-fill::before { content: \"\\f502\"; }\n.bi-puzzle::before { content: \"\\f503\"; }\n.bi-question-circle-fill::before { content: \"\\f504\"; }\n.bi-question-circle::before { content: \"\\f505\"; }\n.bi-question-diamond-fill::before { content: \"\\f506\"; }\n.bi-question-diamond::before { content: \"\\f507\"; }\n.bi-question-octagon-fill::before { content: \"\\f508\"; }\n.bi-question-octagon::before { content: \"\\f509\"; }\n.bi-question-square-fill::before { content: \"\\f50a\"; }\n.bi-question-square::before { content: \"\\f50b\"; }\n.bi-question::before { content: \"\\f50c\"; }\n.bi-rainbow::before { content: \"\\f50d\"; }\n.bi-receipt-cutoff::before { content: \"\\f50e\"; }\n.bi-receipt::before { content: \"\\f50f\"; }\n.bi-reception-0::before { content: \"\\f510\"; }\n.bi-reception-1::before { content: \"\\f511\"; }\n.bi-reception-2::before { content: \"\\f512\"; }\n.bi-reception-3::before { content: \"\\f513\"; }\n.bi-reception-4::before { content: \"\\f514\"; }\n.bi-record-btn-fill::before { content: \"\\f515\"; }\n.bi-record-btn::before { content: \"\\f516\"; }\n.bi-record-circle-fill::before { content: \"\\f517\"; }\n.bi-record-circle::before { content: \"\\f518\"; }\n.bi-record-fill::before { content: \"\\f519\"; }\n.bi-record::before { content: \"\\f51a\"; }\n.bi-record2-fill::before { content: \"\\f51b\"; }\n.bi-record2::before { content: \"\\f51c\"; }\n.bi-reply-all-fill::before { content: \"\\f51d\"; }\n.bi-reply-all::before { content: \"\\f51e\"; }\n.bi-reply-fill::before { content: \"\\f51f\"; }\n.bi-reply::before { content: \"\\f520\"; }\n.bi-rss-fill::before { content: \"\\f521\"; }\n.bi-rss::before { content: \"\\f522\"; }\n.bi-rulers::before { content: \"\\f523\"; }\n.bi-save-fill::before { content: \"\\f524\"; }\n.bi-save::before { content: \"\\f525\"; }\n.bi-save2-fill::before { content: \"\\f526\"; }\n.bi-save2::before { content: \"\\f527\"; }\n.bi-scissors::before { content: \"\\f528\"; }\n.bi-screwdriver::before { content: \"\\f529\"; }\n.bi-search::before { content: \"\\f52a\"; }\n.bi-segmented-nav::before { content: \"\\f52b\"; }\n.bi-server::before { content: \"\\f52c\"; }\n.bi-share-fill::before { content: \"\\f52d\"; }\n.bi-share::before { content: \"\\f52e\"; }\n.bi-shield-check::before { content: \"\\f52f\"; }\n.bi-shield-exclamation::before { content: \"\\f530\"; }\n.bi-shield-fill-check::before { content: \"\\f531\"; }\n.bi-shield-fill-exclamation::before { content: \"\\f532\"; }\n.bi-shield-fill-minus::before { content: \"\\f533\"; }\n.bi-shield-fill-plus::before { content: \"\\f534\"; }\n.bi-shield-fill-x::before { content: \"\\f535\"; }\n.bi-shield-fill::before { content: \"\\f536\"; }\n.bi-shield-lock-fill::before { content: \"\\f537\"; }\n.bi-shield-lock::before { content: \"\\f538\"; }\n.bi-shield-minus::before { content: \"\\f539\"; }\n.bi-shield-plus::before { content: \"\\f53a\"; }\n.bi-shield-shaded::before { content: \"\\f53b\"; }\n.bi-shield-slash-fill::before { content: \"\\f53c\"; }\n.bi-shield-slash::before { content: \"\\f53d\"; }\n.bi-shield-x::before { content: \"\\f53e\"; }\n.bi-shield::before { content: \"\\f53f\"; }\n.bi-shift-fill::before { content: \"\\f540\"; }\n.bi-shift::before { content: \"\\f541\"; }\n.bi-shop-window::before { content: \"\\f542\"; }\n.bi-shop::before { content: \"\\f543\"; }\n.bi-shuffle::before { content: \"\\f544\"; }\n.bi-signpost-2-fill::before { content: \"\\f545\"; }\n.bi-signpost-2::before { content: \"\\f546\"; }\n.bi-signpost-fill::before { content: \"\\f547\"; }\n.bi-signpost-split-fill::before { content: \"\\f548\"; }\n.bi-signpost-split::before { content: \"\\f549\"; }\n.bi-signpost::before { content: \"\\f54a\"; }\n.bi-sim-fill::before { content: \"\\f54b\"; }\n.bi-sim::before { content: \"\\f54c\"; }\n.bi-skip-backward-btn-fill::before { content: \"\\f54d\"; }\n.bi-skip-backward-btn::before { content: \"\\f54e\"; }\n.bi-skip-backward-circle-fill::before { content: \"\\f54f\"; }\n.bi-skip-backward-circle::before { content: \"\\f550\"; }\n.bi-skip-backward-fill::before { content: \"\\f551\"; }\n.bi-skip-backward::before { content: \"\\f552\"; }\n.bi-skip-end-btn-fill::before { content: \"\\f553\"; }\n.bi-skip-end-btn::before { content: \"\\f554\"; }\n.bi-skip-end-circle-fill::before { content: \"\\f555\"; }\n.bi-skip-end-circle::before { content: \"\\f556\"; }\n.bi-skip-end-fill::before { content: \"\\f557\"; }\n.bi-skip-end::before { content: \"\\f558\"; }\n.bi-skip-forward-btn-fill::before { content: \"\\f559\"; }\n.bi-skip-forward-btn::before { content: \"\\f55a\"; }\n.bi-skip-forward-circle-fill::before { content: \"\\f55b\"; }\n.bi-skip-forward-circle::before { content: \"\\f55c\"; }\n.bi-skip-forward-fill::before { content: \"\\f55d\"; }\n.bi-skip-forward::before { content: \"\\f55e\"; }\n.bi-skip-start-btn-fill::before { content: \"\\f55f\"; }\n.bi-skip-start-btn::before { content: \"\\f560\"; }\n.bi-skip-start-circle-fill::before { content: \"\\f561\"; }\n.bi-skip-start-circle::before { content: \"\\f562\"; }\n.bi-skip-start-fill::before { content: \"\\f563\"; }\n.bi-skip-start::before { content: \"\\f564\"; }\n.bi-slack::before { content: \"\\f565\"; }\n.bi-slash-circle-fill::before { content: \"\\f566\"; }\n.bi-slash-circle::before { content: \"\\f567\"; }\n.bi-slash-square-fill::before { content: \"\\f568\"; }\n.bi-slash-square::before { content: \"\\f569\"; }\n.bi-slash::before { content: \"\\f56a\"; }\n.bi-sliders::before { content: \"\\f56b\"; }\n.bi-smartwatch::before { content: \"\\f56c\"; }\n.bi-snow::before { content: \"\\f56d\"; }\n.bi-snow2::before { content: \"\\f56e\"; }\n.bi-snow3::before { content: \"\\f56f\"; }\n.bi-sort-alpha-down-alt::before { content: \"\\f570\"; }\n.bi-sort-alpha-down::before { content: \"\\f571\"; }\n.bi-sort-alpha-up-alt::before { content: \"\\f572\"; }\n.bi-sort-alpha-up::before { content: \"\\f573\"; }\n.bi-sort-down-alt::before { content: \"\\f574\"; }\n.bi-sort-down::before { content: \"\\f575\"; }\n.bi-sort-numeric-down-alt::before { content: \"\\f576\"; }\n.bi-sort-numeric-down::before { content: \"\\f577\"; }\n.bi-sort-numeric-up-alt::before { content: \"\\f578\"; }\n.bi-sort-numeric-up::before { content: \"\\f579\"; }\n.bi-sort-up-alt::before { content: \"\\f57a\"; }\n.bi-sort-up::before { content: \"\\f57b\"; }\n.bi-soundwave::before { content: \"\\f57c\"; }\n.bi-speaker-fill::before { content: \"\\f57d\"; }\n.bi-speaker::before { content: \"\\f57e\"; }\n.bi-speedometer::before { content: \"\\f57f\"; }\n.bi-speedometer2::before { content: \"\\f580\"; }\n.bi-spellcheck::before { content: \"\\f581\"; }\n.bi-square-fill::before { content: \"\\f582\"; }\n.bi-square-half::before { content: \"\\f583\"; }\n.bi-square::before { content: \"\\f584\"; }\n.bi-stack::before { content: \"\\f585\"; }\n.bi-star-fill::before { content: \"\\f586\"; }\n.bi-star-half::before { content: \"\\f587\"; }\n.bi-star::before { content: \"\\f588\"; }\n.bi-stars::before { content: \"\\f589\"; }\n.bi-stickies-fill::before { content: \"\\f58a\"; }\n.bi-stickies::before { content: \"\\f58b\"; }\n.bi-sticky-fill::before { content: \"\\f58c\"; }\n.bi-sticky::before { content: \"\\f58d\"; }\n.bi-stop-btn-fill::before { content: \"\\f58e\"; }\n.bi-stop-btn::before { content: \"\\f58f\"; }\n.bi-stop-circle-fill::before { content: \"\\f590\"; }\n.bi-stop-circle::before { content: \"\\f591\"; }\n.bi-stop-fill::before { content: \"\\f592\"; }\n.bi-stop::before { content: \"\\f593\"; }\n.bi-stoplights-fill::before { content: \"\\f594\"; }\n.bi-stoplights::before { content: \"\\f595\"; }\n.bi-stopwatch-fill::before { content: \"\\f596\"; }\n.bi-stopwatch::before { content: \"\\f597\"; }\n.bi-subtract::before { content: \"\\f598\"; }\n.bi-suit-club-fill::before { content: \"\\f599\"; }\n.bi-suit-club::before { content: \"\\f59a\"; }\n.bi-suit-diamond-fill::before { content: \"\\f59b\"; }\n.bi-suit-diamond::before { content: \"\\f59c\"; }\n.bi-suit-heart-fill::before { content: \"\\f59d\"; }\n.bi-suit-heart::before { content: \"\\f59e\"; }\n.bi-suit-spade-fill::before { content: \"\\f59f\"; }\n.bi-suit-spade::before { content: \"\\f5a0\"; }\n.bi-sun-fill::before { content: \"\\f5a1\"; }\n.bi-sun::before { content: \"\\f5a2\"; }\n.bi-sunglasses::before { content: \"\\f5a3\"; }\n.bi-sunrise-fill::before { content: \"\\f5a4\"; }\n.bi-sunrise::before { content: \"\\f5a5\"; }\n.bi-sunset-fill::before { content: \"\\f5a6\"; }\n.bi-sunset::before { content: \"\\f5a7\"; }\n.bi-symmetry-horizontal::before { content: \"\\f5a8\"; }\n.bi-symmetry-vertical::before { content: \"\\f5a9\"; }\n.bi-table::before { content: \"\\f5aa\"; }\n.bi-tablet-fill::before { content: \"\\f5ab\"; }\n.bi-tablet-landscape-fill::before { content: \"\\f5ac\"; }\n.bi-tablet-landscape::before { content: \"\\f5ad\"; }\n.bi-tablet::before { content: \"\\f5ae\"; }\n.bi-tag-fill::before { content: \"\\f5af\"; }\n.bi-tag::before { content: \"\\f5b0\"; }\n.bi-tags-fill::before { content: \"\\f5b1\"; }\n.bi-tags::before { content: \"\\f5b2\"; }\n.bi-telegram::before { content: \"\\f5b3\"; }\n.bi-telephone-fill::before { content: \"\\f5b4\"; }\n.bi-telephone-forward-fill::before { content: \"\\f5b5\"; }\n.bi-telephone-forward::before { content: \"\\f5b6\"; }\n.bi-telephone-inbound-fill::before { content: \"\\f5b7\"; }\n.bi-telephone-inbound::before { content: \"\\f5b8\"; }\n.bi-telephone-minus-fill::before { content: \"\\f5b9\"; }\n.bi-telephone-minus::before { content: \"\\f5ba\"; }\n.bi-telephone-outbound-fill::before { content: \"\\f5bb\"; }\n.bi-telephone-outbound::before { content: \"\\f5bc\"; }\n.bi-telephone-plus-fill::before { content: \"\\f5bd\"; }\n.bi-telephone-plus::before { content: \"\\f5be\"; }\n.bi-telephone-x-fill::before { content: \"\\f5bf\"; }\n.bi-telephone-x::before { content: \"\\f5c0\"; }\n.bi-telephone::before { content: \"\\f5c1\"; }\n.bi-terminal-fill::before { content: \"\\f5c2\"; }\n.bi-terminal::before { content: \"\\f5c3\"; }\n.bi-text-center::before { content: \"\\f5c4\"; }\n.bi-text-indent-left::before { content: \"\\f5c5\"; }\n.bi-text-indent-right::before { content: \"\\f5c6\"; }\n.bi-text-left::before { content: \"\\f5c7\"; }\n.bi-text-paragraph::before { content: \"\\f5c8\"; }\n.bi-text-right::before { content: \"\\f5c9\"; }\n.bi-textarea-resize::before { content: \"\\f5ca\"; }\n.bi-textarea-t::before { content: \"\\f5cb\"; }\n.bi-textarea::before { content: \"\\f5cc\"; }\n.bi-thermometer-half::before { content: \"\\f5cd\"; }\n.bi-thermometer-high::before { content: \"\\f5ce\"; }\n.bi-thermometer-low::before { content: \"\\f5cf\"; }\n.bi-thermometer-snow::before { content: \"\\f5d0\"; }\n.bi-thermometer-sun::before { content: \"\\f5d1\"; }\n.bi-thermometer::before { content: \"\\f5d2\"; }\n.bi-three-dots-vertical::before { content: \"\\f5d3\"; }\n.bi-three-dots::before { content: \"\\f5d4\"; }\n.bi-toggle-off::before { content: \"\\f5d5\"; }\n.bi-toggle-on::before { content: \"\\f5d6\"; }\n.bi-toggle2-off::before { content: \"\\f5d7\"; }\n.bi-toggle2-on::before { content: \"\\f5d8\"; }\n.bi-toggles::before { content: \"\\f5d9\"; }\n.bi-toggles2::before { content: \"\\f5da\"; }\n.bi-tools::before { content: \"\\f5db\"; }\n.bi-tornado::before { content: \"\\f5dc\"; }\n.bi-trash-fill::before { content: \"\\f5dd\"; }\n.bi-trash::before { content: \"\\f5de\"; }\n.bi-trash2-fill::before { content: \"\\f5df\"; }\n.bi-trash2::before { content: \"\\f5e0\"; }\n.bi-tree-fill::before { content: \"\\f5e1\"; }\n.bi-tree::before { content: \"\\f5e2\"; }\n.bi-triangle-fill::before { content: \"\\f5e3\"; }\n.bi-triangle-half::before { content: \"\\f5e4\"; }\n.bi-triangle::before { content: \"\\f5e5\"; }\n.bi-trophy-fill::before { content: \"\\f5e6\"; }\n.bi-trophy::before { content: \"\\f5e7\"; }\n.bi-tropical-storm::before { content: \"\\f5e8\"; }\n.bi-truck-flatbed::before { content: \"\\f5e9\"; }\n.bi-truck::before { content: \"\\f5ea\"; }\n.bi-tsunami::before { content: \"\\f5eb\"; }\n.bi-tv-fill::before { content: \"\\f5ec\"; }\n.bi-tv::before { content: \"\\f5ed\"; }\n.bi-twitch::before { content: \"\\f5ee\"; }\n.bi-twitter::before { content: \"\\f5ef\"; }\n.bi-type-bold::before { content: \"\\f5f0\"; }\n.bi-type-h1::before { content: \"\\f5f1\"; }\n.bi-type-h2::before { content: \"\\f5f2\"; }\n.bi-type-h3::before { content: \"\\f5f3\"; }\n.bi-type-italic::before { content: \"\\f5f4\"; }\n.bi-type-strikethrough::before { content: \"\\f5f5\"; }\n.bi-type-underline::before { content: \"\\f5f6\"; }\n.bi-type::before { content: \"\\f5f7\"; }\n.bi-ui-checks-grid::before { content: \"\\f5f8\"; }\n.bi-ui-checks::before { content: \"\\f5f9\"; }\n.bi-ui-radios-grid::before { content: \"\\f5fa\"; }\n.bi-ui-radios::before { content: \"\\f5fb\"; }\n.bi-umbrella-fill::before { content: \"\\f5fc\"; }\n.bi-umbrella::before { content: \"\\f5fd\"; }\n.bi-union::before { content: \"\\f5fe\"; }\n.bi-unlock-fill::before { content: \"\\f5ff\"; }\n.bi-unlock::before { content: \"\\f600\"; }\n.bi-upc-scan::before { content: \"\\f601\"; }\n.bi-upc::before { content: \"\\f602\"; }\n.bi-upload::before { content: \"\\f603\"; }\n.bi-vector-pen::before { content: \"\\f604\"; }\n.bi-view-list::before { content: \"\\f605\"; }\n.bi-view-stacked::before { content: \"\\f606\"; }\n.bi-vinyl-fill::before { content: \"\\f607\"; }\n.bi-vinyl::before { content: \"\\f608\"; }\n.bi-voicemail::before { content: \"\\f609\"; }\n.bi-volume-down-fill::before { content: \"\\f60a\"; }\n.bi-volume-down::before { content: \"\\f60b\"; }\n.bi-volume-mute-fill::before { content: \"\\f60c\"; }\n.bi-volume-mute::before { content: \"\\f60d\"; }\n.bi-volume-off-fill::before { content: \"\\f60e\"; }\n.bi-volume-off::before { content: \"\\f60f\"; }\n.bi-volume-up-fill::before { content: \"\\f610\"; }\n.bi-volume-up::before { content: \"\\f611\"; }\n.bi-vr::before { content: \"\\f612\"; }\n.bi-wallet-fill::before { content: \"\\f613\"; }\n.bi-wallet::before { content: \"\\f614\"; }\n.bi-wallet2::before { content: \"\\f615\"; }\n.bi-watch::before { content: \"\\f616\"; }\n.bi-water::before { content: \"\\f617\"; }\n.bi-whatsapp::before { content: \"\\f618\"; }\n.bi-wifi-1::before { content: \"\\f619\"; }\n.bi-wifi-2::before { content: \"\\f61a\"; }\n.bi-wifi-off::before { content: \"\\f61b\"; }\n.bi-wifi::before { content: \"\\f61c\"; }\n.bi-wind::before { content: \"\\f61d\"; }\n.bi-window-dock::before { content: \"\\f61e\"; }\n.bi-window-sidebar::before { content: \"\\f61f\"; }\n.bi-window::before { content: \"\\f620\"; }\n.bi-wrench::before { content: \"\\f621\"; }\n.bi-x-circle-fill::before { content: \"\\f622\"; }\n.bi-x-circle::before { content: \"\\f623\"; }\n.bi-x-diamond-fill::before { content: \"\\f624\"; }\n.bi-x-diamond::before { content: \"\\f625\"; }\n.bi-x-octagon-fill::before { content: \"\\f626\"; }\n.bi-x-octagon::before { content: \"\\f627\"; }\n.bi-x-square-fill::before { content: \"\\f628\"; }\n.bi-x-square::before { content: \"\\f629\"; }\n.bi-x::before { content: \"\\f62a\"; }\n.bi-youtube::before { content: \"\\f62b\"; }\n.bi-zoom-in::before { content: \"\\f62c\"; }\n.bi-zoom-out::before { content: \"\\f62d\"; }\n"
  },
  {
    "path": "icon-packs/ikonli-boxicons-pack/ikonli-boxicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-boxicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.boxicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.boxicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.boxicons.BoxiconsLogosIkonHandler,\n            org.kordamp.ikonli.boxicons.BoxiconsRegularIkonHandler,\n            org.kordamp.ikonli.boxicons.BoxiconsSolidIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.boxicons.BoxiconsLogosIkonProvider,\n            org.kordamp.ikonli.boxicons.BoxiconsRegularIkonProvider,\n            org.kordamp.ikonli.boxicons.BoxiconsSolidIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-boxicons-pack/src/main/java/org/kordamp/ikonli/boxicons/BoxiconsLogos.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.boxicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum BoxiconsLogos implements Ikon {\n    ADOBE(\"bxl-adobe\", '\\uee5f'),\n    AIRBNB(\"bxl-airbnb\", '\\uee60'),\n    ALGOLIA(\"bxl-algolia\", '\\uee61'),\n    AMAZON(\"bxl-amazon\", '\\uee62'),\n    ANDROID(\"bxl-android\", '\\uee63'),\n    ANGULAR(\"bxl-angular\", '\\uee64'),\n    APPLE(\"bxl-apple\", '\\uee65'),\n    AUDIBLE(\"bxl-audible\", '\\uee66'),\n    BAIDU(\"bxl-baidu\", '\\uee67'),\n    BEHANCE(\"bxl-behance\", '\\uee68'),\n    BING(\"bxl-bing\", '\\uee69'),\n    BITCOIN(\"bxl-bitcoin\", '\\uee6a'),\n    BLENDER(\"bxl-blender\", '\\uee6b'),\n    BLOGGER(\"bxl-blogger\", '\\uee6c'),\n    BOOTSTRAP(\"bxl-bootstrap\", '\\uee6d'),\n    BOX_500PX(\"bxl-500px\", '\\uee5e'),\n    CHROME(\"bxl-chrome\", '\\uee6e'),\n    CODEPEN(\"bxl-codepen\", '\\uee6f'),\n    CREATIVE_COMMONS(\"bxl-creative-commons\", '\\uee71'),\n    CSS3(\"bxl-css3\", '\\uee72'),\n    C_PLUS_PLUS(\"bxl-c-plus-plus\", '\\uee70'),\n    DAILYMOTION(\"bxl-dailymotion\", '\\uee73'),\n    DEVIANTART(\"bxl-deviantart\", '\\uee74'),\n    DEV_TO(\"bxl-dev-to\", '\\uee75'),\n    DIGG(\"bxl-digg\", '\\uee76'),\n    DIGITALOCEAN(\"bxl-digitalocean\", '\\uee77'),\n    DISCORD(\"bxl-discord\", '\\uee78'),\n    DISCOURSE(\"bxl-discourse\", '\\uee79'),\n    DJANGO(\"bxl-django\", '\\uee7a'),\n    DRIBBBLE(\"bxl-dribbble\", '\\uee7b'),\n    DROPBOX(\"bxl-dropbox\", '\\uee7c'),\n    DRUPAL(\"bxl-drupal\", '\\uee7d'),\n    EBAY(\"bxl-ebay\", '\\uee7e'),\n    EDGE(\"bxl-edge\", '\\uee7f'),\n    ETSY(\"bxl-etsy\", '\\uee80'),\n    FACEBOOK(\"bxl-facebook\", '\\uee81'),\n    FACEBOOK_CIRCLE(\"bxl-facebook-circle\", '\\uee82'),\n    FACEBOOK_SQUARE(\"bxl-facebook-square\", '\\uee83'),\n    FIGMA(\"bxl-figma\", '\\uee84'),\n    FIREBASE(\"bxl-firebase\", '\\uee85'),\n    FIREFOX(\"bxl-firefox\", '\\uee86'),\n    FLICKR(\"bxl-flickr\", '\\uee87'),\n    FLICKR_SQUARE(\"bxl-flickr-square\", '\\uee88'),\n    FOURSQUARE(\"bxl-foursquare\", '\\uee89'),\n    GIT(\"bxl-git\", '\\uee8a'),\n    GITHUB(\"bxl-github\", '\\uee8b'),\n    GITLAB(\"bxl-gitlab\", '\\uee8c'),\n    GOOGLE(\"bxl-google\", '\\uee8d'),\n    GOOGLE_CLOUD(\"bxl-google-cloud\", '\\uee8e'),\n    GOOGLE_PLUS(\"bxl-google-plus\", '\\uee8f'),\n    GOOGLE_PLUS_CIRCLE(\"bxl-google-plus-circle\", '\\uee90'),\n    HTML5(\"bxl-html5\", '\\uee91'),\n    IMDB(\"bxl-imdb\", '\\uee92'),\n    INSTAGRAM(\"bxl-instagram\", '\\uee93'),\n    INSTAGRAM_ALT(\"bxl-instagram-alt\", '\\uee94'),\n    INTERNET_EXPLORER(\"bxl-internet-explorer\", '\\uee95'),\n    INVISION(\"bxl-invision\", '\\uee96'),\n    JAVASCRIPT(\"bxl-javascript\", '\\uee97'),\n    JOOMLA(\"bxl-joomla\", '\\uee98'),\n    JQUERY(\"bxl-jquery\", '\\uee99'),\n    JSFIDDLE(\"bxl-jsfiddle\", '\\uee9a'),\n    KICKSTARTER(\"bxl-kickstarter\", '\\uee9b'),\n    KUBERNETES(\"bxl-kubernetes\", '\\uee9c'),\n    LESS(\"bxl-less\", '\\uee9d'),\n    LINKEDIN(\"bxl-linkedin\", '\\uee9e'),\n    LINKEDIN_SQUARE(\"bxl-linkedin-square\", '\\uee9f'),\n    MAGENTO(\"bxl-magento\", '\\ueea0'),\n    MAILCHIMP(\"bxl-mailchimp\", '\\ueea1'),\n    MARKDOWN(\"bxl-markdown\", '\\ueea2'),\n    MASTERCARD(\"bxl-mastercard\", '\\ueea3'),\n    MEDIUM(\"bxl-medium\", '\\ueea4'),\n    MEDIUM_OLD(\"bxl-medium-old\", '\\ueea5'),\n    MEDIUM_SQUARE(\"bxl-medium-square\", '\\ueea6'),\n    MESSENGER(\"bxl-messenger\", '\\ueea7'),\n    MICROSOFT(\"bxl-microsoft\", '\\ueea8'),\n    MICROSOFT_TEAMS(\"bxl-microsoft-teams\", '\\ueea9'),\n    NODEJS(\"bxl-nodejs\", '\\ueeaa'),\n    OK_RU(\"bxl-ok-ru\", '\\ueeab'),\n    OPERA(\"bxl-opera\", '\\ueeac'),\n    PATREON(\"bxl-patreon\", '\\ueead'),\n    PAYPAL(\"bxl-paypal\", '\\ueeae'),\n    PERISCOPE(\"bxl-periscope\", '\\ueeaf'),\n    PINTEREST(\"bxl-pinterest\", '\\ueeb0'),\n    PINTEREST_ALT(\"bxl-pinterest-alt\", '\\ueeb1'),\n    PLAY_STORE(\"bxl-play-store\", '\\ueeb2'),\n    POCKET(\"bxl-pocket\", '\\ueeb3'),\n    PRODUCT_HUNT(\"bxl-product-hunt\", '\\ueeb4'),\n    PYTHON(\"bxl-python\", '\\ueeb5'),\n    QUORA(\"bxl-quora\", '\\ueeb6'),\n    REACT(\"bxl-react\", '\\ueeb7'),\n    REDBUBBLE(\"bxl-redbubble\", '\\ueeb8'),\n    REDDIT(\"bxl-reddit\", '\\ueeb9'),\n    REDUX(\"bxl-redux\", '\\ueeba'),\n    SASS(\"bxl-sass\", '\\ueebb'),\n    SHOPIFY(\"bxl-shopify\", '\\ueebc'),\n    SKYPE(\"bxl-skype\", '\\ueebd'),\n    SLACK(\"bxl-slack\", '\\ueebe'),\n    SLACK_OLD(\"bxl-slack-old\", '\\ueebf'),\n    SNAPCHAT(\"bxl-snapchat\", '\\ueec0'),\n    SOUNDCLOUD(\"bxl-soundcloud\", '\\ueec1'),\n    SPOTIFY(\"bxl-spotify\", '\\ueec2'),\n    SPRING_BOOT(\"bxl-spring-boot\", '\\ueec3'),\n    SQUARESPACE(\"bxl-squarespace\", '\\ueec4'),\n    STACK_OVERFLOW(\"bxl-stack-overflow\", '\\ueec5'),\n    STRIPE(\"bxl-stripe\", '\\ueec6'),\n    TELEGRAM(\"bxl-telegram\", '\\ueec7'),\n    TRELLO(\"bxl-trello\", '\\ueec8'),\n    TUMBLR(\"bxl-tumblr\", '\\ueec9'),\n    TUX(\"bxl-tux\", '\\ueeca'),\n    TWITCH(\"bxl-twitch\", '\\ueecb'),\n    TWITTER(\"bxl-twitter\", '\\ueecc'),\n    UNSPLASH(\"bxl-unsplash\", '\\ueecd'),\n    VIMEO(\"bxl-vimeo\", '\\ueece'),\n    VISA(\"bxl-visa\", '\\ueecf'),\n    VK(\"bxl-vk\", '\\ueed0'),\n    VUEJS(\"bxl-vuejs\", '\\ueed1'),\n    WHATSAPP(\"bxl-whatsapp\", '\\ueed2'),\n    WHATSAPP_SQUARE(\"bxl-whatsapp-square\", '\\ueed3'),\n    WIKIPEDIA(\"bxl-wikipedia\", '\\ueed4'),\n    WINDOWS(\"bxl-windows\", '\\ueed5'),\n    WIX(\"bxl-wix\", '\\ueed6'),\n    WORDPRESS(\"bxl-wordpress\", '\\ueed7'),\n    YAHOO(\"bxl-yahoo\", '\\ueed8'),\n    YELP(\"bxl-yelp\", '\\ueed9'),\n    YOUTUBE(\"bxl-youtube\", '\\ueeda'),\n    ZOOM(\"bxl-zoom\", '\\ueedb');\n\n    public static BoxiconsLogos findByDescription(String description) {\n        for (BoxiconsLogos font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    BoxiconsLogos(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-boxicons-pack/src/main/java/org/kordamp/ikonli/boxicons/BoxiconsLogosIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.boxicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BoxiconsLogosIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/boxicons/2.0.7/fonts/boxicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bxl-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return BoxiconsLogos.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"boxicons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-boxicons-pack/src/main/java/org/kordamp/ikonli/boxicons/BoxiconsLogosIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.boxicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class BoxiconsLogosIkonProvider implements IkonProvider<BoxiconsLogos> {\n    @Override\n    public Class<BoxiconsLogos> getIkon() {\n        return BoxiconsLogos.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-boxicons-pack/src/main/java/org/kordamp/ikonli/boxicons/BoxiconsRegular.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.boxicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum BoxiconsRegular implements Ikon {\n    ABACUS(\"bx-abacus\", '\\ue900'),\n    ACCESSIBILITY(\"bx-accessibility\", '\\ue901'),\n    ADD_TO_QUEUE(\"bx-add-to-queue\", '\\ue902'),\n    ADJUST(\"bx-adjust\", '\\ue903'),\n    ALARM(\"bx-alarm\", '\\ue904'),\n    ALARM_ADD(\"bx-alarm-add\", '\\ue905'),\n    ALARM_EXCLAMATION(\"bx-alarm-exclamation\", '\\ue906'),\n    ALARM_OFF(\"bx-alarm-off\", '\\ue907'),\n    ALARM_SNOOZE(\"bx-alarm-snooze\", '\\ue908'),\n    ALBUM(\"bx-album\", '\\ue909'),\n    ALIGN_JUSTIFY(\"bx-align-justify\", '\\ue90a'),\n    ALIGN_LEFT(\"bx-align-left\", '\\ue90b'),\n    ALIGN_MIDDLE(\"bx-align-middle\", '\\ue90c'),\n    ALIGN_RIGHT(\"bx-align-right\", '\\ue90d'),\n    ANALYSE(\"bx-analyse\", '\\ue90e'),\n    ANCHOR(\"bx-anchor\", '\\ue90f'),\n    ANGRY(\"bx-angry\", '\\ue910'),\n    APERTURE(\"bx-aperture\", '\\ue911'),\n    ARCH(\"bx-arch\", '\\ue912'),\n    ARCHIVE(\"bx-archive\", '\\ue913'),\n    ARCHIVE_IN(\"bx-archive-in\", '\\ue914'),\n    ARCHIVE_OUT(\"bx-archive-out\", '\\ue915'),\n    AREA(\"bx-area\", '\\ue916'),\n    ARROW_BACK(\"bx-arrow-back\", '\\ue917'),\n    ARROW_FROM_BOTTOM(\"bx-arrow-from-bottom\", '\\ue918'),\n    ARROW_FROM_LEFT(\"bx-arrow-from-left\", '\\ue919'),\n    ARROW_FROM_RIGHT(\"bx-arrow-from-right\", '\\ue91a'),\n    ARROW_FROM_TOP(\"bx-arrow-from-top\", '\\ue91b'),\n    ARROW_TO_BOTTOM(\"bx-arrow-to-bottom\", '\\ue91c'),\n    ARROW_TO_LEFT(\"bx-arrow-to-left\", '\\ue91d'),\n    ARROW_TO_RIGHT(\"bx-arrow-to-right\", '\\ue91e'),\n    ARROW_TO_TOP(\"bx-arrow-to-top\", '\\ue91f'),\n    AT(\"bx-at\", '\\ue920'),\n    ATOM(\"bx-atom\", '\\ue921'),\n    AWARD(\"bx-award\", '\\ue922'),\n    BADGE(\"bx-badge\", '\\ue923'),\n    BADGE_CHECK(\"bx-badge-check\", '\\ue924'),\n    BALL(\"bx-ball\", '\\ue925'),\n    BAND_AID(\"bx-band-aid\", '\\ue926'),\n    BARCODE(\"bx-barcode\", '\\ue92b'),\n    BARCODE_READER(\"bx-barcode-reader\", '\\ue92c'),\n    BAR_CHART(\"bx-bar-chart\", '\\ue927'),\n    BAR_CHART_ALT(\"bx-bar-chart-alt\", '\\ue928'),\n    BAR_CHART_ALT_2(\"bx-bar-chart-alt-2\", '\\ue929'),\n    BAR_CHART_SQUARE(\"bx-bar-chart-square\", '\\ue92a'),\n    BASEBALL(\"bx-baseball\", '\\ue92d'),\n    BASKET(\"bx-basket\", '\\ue92e'),\n    BASKETBALL(\"bx-basketball\", '\\ue92f'),\n    BATH(\"bx-bath\", '\\ue930'),\n    BATTERY(\"bx-battery\", '\\ue931'),\n    BED(\"bx-bed\", '\\ue932'),\n    BEEN_HERE(\"bx-been-here\", '\\ue933'),\n    BEER(\"bx-beer\", '\\ue934'),\n    BELL(\"bx-bell\", '\\ue935'),\n    BELL_MINUS(\"bx-bell-minus\", '\\ue936'),\n    BELL_OFF(\"bx-bell-off\", '\\ue937'),\n    BELL_PLUS(\"bx-bell-plus\", '\\ue938'),\n    BIBLE(\"bx-bible\", '\\ue939'),\n    BITCOIN(\"bx-bitcoin\", '\\ue93a'),\n    BLANKET(\"bx-blanket\", '\\ue93b'),\n    BLOCK(\"bx-block\", '\\ue93c'),\n    BLUETOOTH(\"bx-bluetooth\", '\\ue93d'),\n    BODY(\"bx-body\", '\\ue93e'),\n    BOLD(\"bx-bold\", '\\ue93f'),\n    BOLT_CIRCLE(\"bx-bolt-circle\", '\\ue940'),\n    BOMB(\"bx-bomb\", '\\ue941'),\n    BONE(\"bx-bone\", '\\ue942'),\n    BONG(\"bx-bong\", '\\ue943'),\n    BOOK(\"bx-book\", '\\ue944'),\n    BOOKMARK(\"bx-bookmark\", '\\ue94a'),\n    BOOKMARKS(\"bx-bookmarks\", '\\ue951'),\n    BOOKMARK_ALT(\"bx-bookmark-alt\", '\\ue94b'),\n    BOOKMARK_ALT_MINUS(\"bx-bookmark-alt-minus\", '\\ue94c'),\n    BOOKMARK_ALT_PLUS(\"bx-bookmark-alt-plus\", '\\ue94d'),\n    BOOKMARK_HEART(\"bx-bookmark-heart\", '\\ue94e'),\n    BOOKMARK_MINUS(\"bx-bookmark-minus\", '\\ue94f'),\n    BOOKMARK_PLUS(\"bx-bookmark-plus\", '\\ue950'),\n    BOOK_ADD(\"bx-book-add\", '\\ue945'),\n    BOOK_ALT(\"bx-book-alt\", '\\ue946'),\n    BOOK_BOOKMARK(\"bx-book-bookmark\", '\\ue947'),\n    BOOK_CONTENT(\"bx-book-content\", '\\ue948'),\n    BOOK_HEART(\"bx-book-heart\", '\\ue949'),\n    BOOK_OPEN(\"bx-book-open\", '\\ue952'),\n    BOOK_READER(\"bx-book-reader\", '\\ue953'),\n    BORDER_ALL(\"bx-border-all\", '\\ue954'),\n    BORDER_BOTTOM(\"bx-border-bottom\", '\\ue955'),\n    BORDER_INNER(\"bx-border-inner\", '\\ue956'),\n    BORDER_LEFT(\"bx-border-left\", '\\ue957'),\n    BORDER_NONE(\"bx-border-none\", '\\ue958'),\n    BORDER_OUTER(\"bx-border-outer\", '\\ue959'),\n    BORDER_RADIUS(\"bx-border-radius\", '\\ue95a'),\n    BORDER_RIGHT(\"bx-border-right\", '\\ue95b'),\n    BORDER_TOP(\"bx-border-top\", '\\ue95c'),\n    BOT(\"bx-bot\", '\\ue95d'),\n    BOWLING_BALL(\"bx-bowling-ball\", '\\ue95e'),\n    BOX(\"bx-box\", '\\ue95f'),\n    BRACKET(\"bx-bracket\", '\\ue960'),\n    BRAILLE(\"bx-braille\", '\\ue961'),\n    BRAIN(\"bx-brain\", '\\ue962'),\n    BRIEFCASE(\"bx-briefcase\", '\\ue963'),\n    BRIEFCASE_ALT(\"bx-briefcase-alt\", '\\ue964'),\n    BRIEFCASE_ALT_2(\"bx-briefcase-alt-2\", '\\ue965'),\n    BRIGHTNESS(\"bx-brightness\", '\\ue966'),\n    BRIGHTNESS_HALF(\"bx-brightness-half\", '\\ue967'),\n    BROADCAST(\"bx-broadcast\", '\\ue968'),\n    BRUSH(\"bx-brush\", '\\ue969'),\n    BRUSH_ALT(\"bx-brush-alt\", '\\ue96a'),\n    BUG(\"bx-bug\", '\\ue96b'),\n    BUG_ALT(\"bx-bug-alt\", '\\ue96c'),\n    BUILDING(\"bx-building\", '\\ue96d'),\n    BUILDINGS(\"bx-buildings\", '\\ue96f'),\n    BUILDING_HOUSE(\"bx-building-house\", '\\ue96e'),\n    BULB(\"bx-bulb\", '\\ue970'),\n    BULLSEYE(\"bx-bullseye\", '\\ue971'),\n    BUOY(\"bx-buoy\", '\\ue972'),\n    BUS(\"bx-bus\", '\\ue973'),\n    BUS_SCHOOL(\"bx-bus-school\", '\\ue974'),\n    CABINET(\"bx-cabinet\", '\\ue975'),\n    CAKE(\"bx-cake\", '\\ue976'),\n    CALCULATOR(\"bx-calculator\", '\\ue977'),\n    CALENDAR(\"bx-calendar\", '\\ue978'),\n    CALENDAR_ALT(\"bx-calendar-alt\", '\\ue979'),\n    CALENDAR_CHECK(\"bx-calendar-check\", '\\ue97a'),\n    CALENDAR_EDIT(\"bx-calendar-edit\", '\\ue97b'),\n    CALENDAR_EVENT(\"bx-calendar-event\", '\\ue97c'),\n    CALENDAR_EXCLAMATION(\"bx-calendar-exclamation\", '\\ue97d'),\n    CALENDAR_HEART(\"bx-calendar-heart\", '\\ue97e'),\n    CALENDAR_MINUS(\"bx-calendar-minus\", '\\ue97f'),\n    CALENDAR_PLUS(\"bx-calendar-plus\", '\\ue980'),\n    CALENDAR_STAR(\"bx-calendar-star\", '\\ue981'),\n    CALENDAR_WEEK(\"bx-calendar-week\", '\\ue982'),\n    CALENDAR_X(\"bx-calendar-x\", '\\ue983'),\n    CAMERA(\"bx-camera\", '\\ue984'),\n    CAMERA_HOME(\"bx-camera-home\", '\\ue985'),\n    CAMERA_MOVIE(\"bx-camera-movie\", '\\ue986'),\n    CAMERA_OFF(\"bx-camera-off\", '\\ue987'),\n    CAPSULE(\"bx-capsule\", '\\ue988'),\n    CAPTIONS(\"bx-captions\", '\\ue989'),\n    CAR(\"bx-car\", '\\ue98a'),\n    CARD(\"bx-card\", '\\ue98b'),\n    CARET_DOWN(\"bx-caret-down\", '\\ue98c'),\n    CARET_DOWN_CIRCLE(\"bx-caret-down-circle\", '\\ue98d'),\n    CARET_DOWN_SQUARE(\"bx-caret-down-square\", '\\ue98e'),\n    CARET_LEFT(\"bx-caret-left\", '\\ue98f'),\n    CARET_LEFT_CIRCLE(\"bx-caret-left-circle\", '\\ue990'),\n    CARET_LEFT_SQUARE(\"bx-caret-left-square\", '\\ue991'),\n    CARET_RIGHT(\"bx-caret-right\", '\\ue992'),\n    CARET_RIGHT_CIRCLE(\"bx-caret-right-circle\", '\\ue993'),\n    CARET_RIGHT_SQUARE(\"bx-caret-right-square\", '\\ue994'),\n    CARET_UP(\"bx-caret-up\", '\\ue995'),\n    CARET_UP_CIRCLE(\"bx-caret-up-circle\", '\\ue996'),\n    CARET_UP_SQUARE(\"bx-caret-up-square\", '\\ue997'),\n    CAROUSEL(\"bx-carousel\", '\\ue998'),\n    CART(\"bx-cart\", '\\ue999'),\n    CART_ALT(\"bx-cart-alt\", '\\ue99a'),\n    CAST(\"bx-cast\", '\\ue99b'),\n    CATEGORY(\"bx-category\", '\\ue99c'),\n    CATEGORY_ALT(\"bx-category-alt\", '\\ue99d'),\n    CCTV(\"bx-cctv\", '\\ue99e'),\n    CERTIFICATION(\"bx-certification\", '\\ue99f'),\n    CHAIR(\"bx-chair\", '\\ue9a0'),\n    CHALKBOARD(\"bx-chalkboard\", '\\ue9a1'),\n    CHART(\"bx-chart\", '\\ue9a2'),\n    CHAT(\"bx-chat\", '\\ue9a3'),\n    CHECK(\"bx-check\", '\\ue9a4'),\n    CHECKBOX(\"bx-checkbox\", '\\ue9a5'),\n    CHECKBOX_CHECKED(\"bx-checkbox-checked\", '\\ue9a6'),\n    CHECKBOX_SQUARE(\"bx-checkbox-square\", '\\ue9a7'),\n    CHECK_CIRCLE(\"bx-check-circle\", '\\ue9a8'),\n    CHECK_DOUBLE(\"bx-check-double\", '\\ue9a9'),\n    CHECK_SHIELD(\"bx-check-shield\", '\\ue9aa'),\n    CHECK_SQUARE(\"bx-check-square\", '\\ue9ab'),\n    CHEVRONS_DOWN(\"bx-chevrons-down\", '\\ue9b5'),\n    CHEVRONS_LEFT(\"bx-chevrons-left\", '\\ue9b6'),\n    CHEVRONS_RIGHT(\"bx-chevrons-right\", '\\ue9b7'),\n    CHEVRONS_UP(\"bx-chevrons-up\", '\\ue9b8'),\n    CHEVRON_DOWN(\"bx-chevron-down\", '\\ue9ac'),\n    CHEVRON_DOWN_CIRCLE(\"bx-chevron-down-circle\", '\\ue9ad'),\n    CHEVRON_DOWN_SQUARE(\"bx-chevron-down-square\", '\\ue9ae'),\n    CHEVRON_LEFT(\"bx-chevron-left\", '\\ue9af'),\n    CHEVRON_LEFT_CIRCLE(\"bx-chevron-left-circle\", '\\ue9b0'),\n    CHEVRON_LEFT_SQUARE(\"bx-chevron-left-square\", '\\ue9b1'),\n    CHEVRON_RIGHT(\"bx-chevron-right\", '\\ue9b2'),\n    CHEVRON_RIGHT_CIRCLE(\"bx-chevron-right-circle\", '\\ue9b3'),\n    CHEVRON_RIGHT_SQUARE(\"bx-chevron-right-square\", '\\ue9b4'),\n    CHEVRON_UP(\"bx-chevron-up\", '\\ue9b9'),\n    CHEVRON_UP_CIRCLE(\"bx-chevron-up-circle\", '\\ue9ba'),\n    CHEVRON_UP_SQUARE(\"bx-chevron-up-square\", '\\ue9bb'),\n    CHIP(\"bx-chip\", '\\ue9bc'),\n    CHURCH(\"bx-church\", '\\ue9bd'),\n    CIRCLE(\"bx-circle\", '\\ue9be'),\n    CLINIC(\"bx-clinic\", '\\ue9bf'),\n    CLIPBOARD(\"bx-clipboard\", '\\ue9c0'),\n    CLOSET(\"bx-closet\", '\\ue9c1'),\n    CLOUD(\"bx-cloud\", '\\ue9c2'),\n    CLOUD_DOWNLOAD(\"bx-cloud-download\", '\\ue9c3'),\n    CLOUD_DRIZZLE(\"bx-cloud-drizzle\", '\\ue9c4'),\n    CLOUD_LIGHTNING(\"bx-cloud-lightning\", '\\ue9c5'),\n    CLOUD_LIGHT_RAIN(\"bx-cloud-light-rain\", '\\ue9c6'),\n    CLOUD_RAIN(\"bx-cloud-rain\", '\\ue9c7'),\n    CLOUD_SNOW(\"bx-cloud-snow\", '\\ue9c8'),\n    CLOUD_UPLOAD(\"bx-cloud-upload\", '\\ue9c9'),\n    CODE(\"bx-code\", '\\ue9ca'),\n    CODE_ALT(\"bx-code-alt\", '\\ue9cb'),\n    CODE_BLOCK(\"bx-code-block\", '\\ue9cc'),\n    CODE_CURLY(\"bx-code-curly\", '\\ue9cd'),\n    COFFEE(\"bx-coffee\", '\\ue9ce'),\n    COFFEE_TOGO(\"bx-coffee-togo\", '\\ue9cf'),\n    COG(\"bx-cog\", '\\ue9d0'),\n    COIN(\"bx-coin\", '\\ue9d1'),\n    COIN_STACK(\"bx-coin-stack\", '\\ue9d2'),\n    COLLAPSE(\"bx-collapse\", '\\ue9d3'),\n    COLLECTION(\"bx-collection\", '\\ue9d4'),\n    COLOR_FILL(\"bx-color-fill\", '\\ue9d5'),\n    COLUMNS(\"bx-columns\", '\\ue9d6'),\n    COMMAND(\"bx-command\", '\\ue9d7'),\n    COMMENT(\"bx-comment\", '\\ue9d8'),\n    COMMENT_ADD(\"bx-comment-add\", '\\ue9d9'),\n    COMMENT_CHECK(\"bx-comment-check\", '\\ue9da'),\n    COMMENT_DETAIL(\"bx-comment-detail\", '\\ue9db'),\n    COMMENT_DOTS(\"bx-comment-dots\", '\\ue9dc'),\n    COMMENT_EDIT(\"bx-comment-edit\", '\\ue9dd'),\n    COMMENT_ERROR(\"bx-comment-error\", '\\ue9de'),\n    COMMENT_MINUS(\"bx-comment-minus\", '\\ue9df'),\n    COMMENT_X(\"bx-comment-x\", '\\ue9e0'),\n    COMPASS(\"bx-compass\", '\\ue9e1'),\n    CONFUSED(\"bx-confused\", '\\ue9e2'),\n    CONVERSATION(\"bx-conversation\", '\\ue9e3'),\n    COOKIE(\"bx-cookie\", '\\ue9e4'),\n    COOL(\"bx-cool\", '\\ue9e5'),\n    COPY(\"bx-copy\", '\\ue9e6'),\n    COPYRIGHT(\"bx-copyright\", '\\ue9e8'),\n    COPY_ALT(\"bx-copy-alt\", '\\ue9e7'),\n    CREDIT_CARD(\"bx-credit-card\", '\\ue9e9'),\n    CREDIT_CARD_ALT(\"bx-credit-card-alt\", '\\ue9ea'),\n    CREDIT_CARD_FRONT(\"bx-credit-card-front\", '\\ue9eb'),\n    CROP(\"bx-crop\", '\\ue9ec'),\n    CROSSHAIR(\"bx-crosshair\", '\\ue9ed'),\n    CROWN(\"bx-crown\", '\\ue9ee'),\n    CUBE(\"bx-cube\", '\\ue9ef'),\n    CUBE_ALT(\"bx-cube-alt\", '\\ue9f0'),\n    CUBOID(\"bx-cuboid\", '\\ue9f1'),\n    CURRENT_LOCATION(\"bx-current-location\", '\\ue9f2'),\n    CUSTOMIZE(\"bx-customize\", '\\ue9f3'),\n    CUT(\"bx-cut\", '\\ue9f4'),\n    CYCLING(\"bx-cycling\", '\\ue9f5'),\n    CYLINDER(\"bx-cylinder\", '\\ue9f6'),\n    DATA(\"bx-data\", '\\ue9f7'),\n    DESKTOP(\"bx-desktop\", '\\ue9f8'),\n    DETAIL(\"bx-detail\", '\\ue9f9'),\n    DEVICES(\"bx-devices\", '\\ue9fa'),\n    DIALPAD(\"bx-dialpad\", '\\ue9fb'),\n    DIALPAD_ALT(\"bx-dialpad-alt\", '\\ue9fc'),\n    DIAMOND(\"bx-diamond\", '\\ue9fd'),\n    DICE_1(\"bx-dice-1\", '\\ue9fe'),\n    DICE_2(\"bx-dice-2\", '\\ue9ff'),\n    DICE_3(\"bx-dice-3\", '\\uea00'),\n    DICE_4(\"bx-dice-4\", '\\uea01'),\n    DICE_5(\"bx-dice-5\", '\\uea02'),\n    DICE_6(\"bx-dice-6\", '\\uea03'),\n    DIRECTIONS(\"bx-directions\", '\\uea04'),\n    DISC(\"bx-disc\", '\\uea05'),\n    DISH(\"bx-dish\", '\\uea06'),\n    DISLIKE(\"bx-dislike\", '\\uea07'),\n    DIZZY(\"bx-dizzy\", '\\uea08'),\n    DNA(\"bx-dna\", '\\uea09'),\n    DOCK_BOTTOM(\"bx-dock-bottom\", '\\uea0a'),\n    DOCK_LEFT(\"bx-dock-left\", '\\uea0b'),\n    DOCK_RIGHT(\"bx-dock-right\", '\\uea0c'),\n    DOCK_TOP(\"bx-dock-top\", '\\uea0d'),\n    DOLLAR(\"bx-dollar\", '\\uea0e'),\n    DOLLAR_CIRCLE(\"bx-dollar-circle\", '\\uea0f'),\n    DONATE_BLOOD(\"bx-donate-blood\", '\\uea10'),\n    DONATE_HEART(\"bx-donate-heart\", '\\uea11'),\n    DOOR_OPEN(\"bx-door-open\", '\\uea12'),\n    DOTS_HORIZONTAL(\"bx-dots-horizontal\", '\\uea13'),\n    DOTS_HORIZONTAL_ROUNDED(\"bx-dots-horizontal-rounded\", '\\uea14'),\n    DOTS_VERTICAL(\"bx-dots-vertical\", '\\uea15'),\n    DOTS_VERTICAL_ROUNDED(\"bx-dots-vertical-rounded\", '\\uea16'),\n    DOUGHNUT_CHART(\"bx-doughnut-chart\", '\\uea17'),\n    DOWNLOAD(\"bx-download\", '\\uea1b'),\n    DOWNVOTE(\"bx-downvote\", '\\uea1c'),\n    DOWN_ARROW(\"bx-down-arrow\", '\\uea18'),\n    DOWN_ARROW_ALT(\"bx-down-arrow-alt\", '\\uea19'),\n    DOWN_ARROW_CIRCLE(\"bx-down-arrow-circle\", '\\uea1a'),\n    DRINK(\"bx-drink\", '\\uea1d'),\n    DROPLET(\"bx-droplet\", '\\uea1e'),\n    DUMBBELL(\"bx-dumbbell\", '\\uea1f'),\n    DUPLICATE(\"bx-duplicate\", '\\uea20'),\n    EDIT(\"bx-edit\", '\\uea21'),\n    EDIT_ALT(\"bx-edit-alt\", '\\uea22'),\n    ENVELOPE(\"bx-envelope\", '\\uea23'),\n    ENVELOPE_OPEN(\"bx-envelope-open\", '\\uea24'),\n    EQUALIZER(\"bx-equalizer\", '\\uea25'),\n    ERASER(\"bx-eraser\", '\\uea26'),\n    ERROR(\"bx-error\", '\\uea27'),\n    ERROR_ALT(\"bx-error-alt\", '\\uea28'),\n    ERROR_CIRCLE(\"bx-error-circle\", '\\uea29'),\n    EURO(\"bx-euro\", '\\uea2a'),\n    EXCLUDE(\"bx-exclude\", '\\uea2b'),\n    EXIT(\"bx-exit\", '\\uea2c'),\n    EXIT_FULLSCREEN(\"bx-exit-fullscreen\", '\\uea2d'),\n    EXPAND(\"bx-expand\", '\\uea2e'),\n    EXPAND_ALT(\"bx-expand-alt\", '\\uea2f'),\n    EXPORT(\"bx-export\", '\\uea30'),\n    EXTENSION(\"bx-extension\", '\\uea31'),\n    FACE(\"bx-face\", '\\uea32'),\n    FAST_FORWARD(\"bx-fast-forward\", '\\uea33'),\n    FAST_FORWARD_CIRCLE(\"bx-fast-forward-circle\", '\\uea34'),\n    FEMALE(\"bx-female\", '\\uea35'),\n    FEMALE_SIGN(\"bx-female-sign\", '\\uea36'),\n    FILE(\"bx-file\", '\\uea37'),\n    FILE_BLANK(\"bx-file-blank\", '\\uea38'),\n    FILE_FIND(\"bx-file-find\", '\\uea39'),\n    FILM(\"bx-film\", '\\uea3a'),\n    FILTER(\"bx-filter\", '\\uea3b'),\n    FILTER_ALT(\"bx-filter-alt\", '\\uea3c'),\n    FINGERPRINT(\"bx-fingerprint\", '\\uea3d'),\n    FIRST_AID(\"bx-first-aid\", '\\uea3e'),\n    FIRST_PAGE(\"bx-first-page\", '\\uea3f'),\n    FLAG(\"bx-flag\", '\\uea40'),\n    FOLDER(\"bx-folder\", '\\uea41'),\n    FOLDER_MINUS(\"bx-folder-minus\", '\\uea42'),\n    FOLDER_OPEN(\"bx-folder-open\", '\\uea43'),\n    FOLDER_PLUS(\"bx-folder-plus\", '\\uea44'),\n    FONT(\"bx-font\", '\\uea45'),\n    FONT_COLOR(\"bx-font-color\", '\\uea46'),\n    FONT_FAMILY(\"bx-font-family\", '\\uea47'),\n    FONT_SIZE(\"bx-font-size\", '\\uea48'),\n    FOOD_MENU(\"bx-food-menu\", '\\uea49'),\n    FOOD_TAG(\"bx-food-tag\", '\\uea4a'),\n    FOOTBALL(\"bx-football\", '\\uea4b'),\n    FRIDGE(\"bx-fridge\", '\\uea4c'),\n    FULLSCREEN(\"bx-fullscreen\", '\\uea4d'),\n    GAME(\"bx-game\", '\\uea4e'),\n    GAS_PUMP(\"bx-gas-pump\", '\\uea4f'),\n    GHOST(\"bx-ghost\", '\\uea50'),\n    GIFT(\"bx-gift\", '\\uea51'),\n    GIT_BRANCH(\"bx-git-branch\", '\\uea52'),\n    GIT_COMMIT(\"bx-git-commit\", '\\uea53'),\n    GIT_COMPARE(\"bx-git-compare\", '\\uea54'),\n    GIT_MERGE(\"bx-git-merge\", '\\uea55'),\n    GIT_PULL_REQUEST(\"bx-git-pull-request\", '\\uea56'),\n    GIT_REPO_FORKED(\"bx-git-repo-forked\", '\\uea57'),\n    GLASSES(\"bx-glasses\", '\\uea58'),\n    GLASSES_ALT(\"bx-glasses-alt\", '\\uea59'),\n    GLOBE(\"bx-globe\", '\\uea5a'),\n    GLOBE_ALT(\"bx-globe-alt\", '\\uea5b'),\n    GRID(\"bx-grid\", '\\uea5c'),\n    GRID_ALT(\"bx-grid-alt\", '\\uea5d'),\n    GRID_HORIZONTAL(\"bx-grid-horizontal\", '\\uea5e'),\n    GRID_SMALL(\"bx-grid-small\", '\\uea5f'),\n    GRID_VERTICAL(\"bx-grid-vertical\", '\\uea60'),\n    GROUP(\"bx-group\", '\\uea61'),\n    HANDICAP(\"bx-handicap\", '\\uea62'),\n    HAPPY(\"bx-happy\", '\\uea63'),\n    HAPPY_ALT(\"bx-happy-alt\", '\\uea64'),\n    HAPPY_BEAMING(\"bx-happy-beaming\", '\\uea65'),\n    HAPPY_HEART_EYES(\"bx-happy-heart-eyes\", '\\uea66'),\n    HASH(\"bx-hash\", '\\uea67'),\n    HDD(\"bx-hdd\", '\\uea68'),\n    HEADING(\"bx-heading\", '\\uea69'),\n    HEADPHONE(\"bx-headphone\", '\\uea6a'),\n    HEALTH(\"bx-health\", '\\uea6b'),\n    HEART(\"bx-heart\", '\\uea6c'),\n    HEART_CIRCLE(\"bx-heart-circle\", '\\uea6d'),\n    HEART_SQUARE(\"bx-heart-square\", '\\uea6e'),\n    HELP_CIRCLE(\"bx-help-circle\", '\\uea6f'),\n    HIDE(\"bx-hide\", '\\uea70'),\n    HIGHLIGHT(\"bx-highlight\", '\\uea71'),\n    HISTORY(\"bx-history\", '\\uea72'),\n    HIVE(\"bx-hive\", '\\uea73'),\n    HOME(\"bx-home\", '\\uea74'),\n    HOME_ALT(\"bx-home-alt\", '\\uea75'),\n    HOME_CIRCLE(\"bx-home-circle\", '\\uea76'),\n    HOME_HEART(\"bx-home-heart\", '\\uea77'),\n    HOME_SMILE(\"bx-home-smile\", '\\uea78'),\n    HORIZONTAL_CENTER(\"bx-horizontal-center\", '\\uea79'),\n    HOTEL(\"bx-hotel\", '\\uea7a'),\n    HOURGLASS(\"bx-hourglass\", '\\uea7b'),\n    ID_CARD(\"bx-id-card\", '\\uea7c'),\n    IMAGE(\"bx-image\", '\\uea7d'),\n    IMAGES(\"bx-images\", '\\uea80'),\n    IMAGE_ADD(\"bx-image-add\", '\\uea7e'),\n    IMAGE_ALT(\"bx-image-alt\", '\\uea7f'),\n    IMPORT(\"bx-import\", '\\uea81'),\n    INFINITE(\"bx-infinite\", '\\uea82'),\n    INFO_CIRCLE(\"bx-info-circle\", '\\uea83'),\n    INFO_SQUARE(\"bx-info-square\", '\\uea84'),\n    INTERSECT(\"bx-intersect\", '\\uea85'),\n    ITALIC(\"bx-italic\", '\\uea86'),\n    JOYSTICK(\"bx-joystick\", '\\uea87'),\n    JOYSTICK_ALT(\"bx-joystick-alt\", '\\uea88'),\n    JOYSTICK_BUTTON(\"bx-joystick-button\", '\\uea89'),\n    KEY(\"bx-key\", '\\uea8a'),\n    LABEL(\"bx-label\", '\\uea8b'),\n    LANDSCAPE(\"bx-landscape\", '\\uea8c'),\n    LAPTOP(\"bx-laptop\", '\\uea8d'),\n    LAST_PAGE(\"bx-last-page\", '\\uea8e'),\n    LAUGH(\"bx-laugh\", '\\uea8f'),\n    LAYER(\"bx-layer\", '\\uea90'),\n    LAYER_MINUS(\"bx-layer-minus\", '\\uea91'),\n    LAYER_PLUS(\"bx-layer-plus\", '\\uea92'),\n    LAYOUT(\"bx-layout\", '\\uea93'),\n    LEFT_ARROW(\"bx-left-arrow\", '\\uea94'),\n    LEFT_ARROW_ALT(\"bx-left-arrow-alt\", '\\uea95'),\n    LEFT_ARROW_CIRCLE(\"bx-left-arrow-circle\", '\\uea96'),\n    LEFT_DOWN_ARROW_CIRCLE(\"bx-left-down-arrow-circle\", '\\uea97'),\n    LEFT_INDENT(\"bx-left-indent\", '\\uea98'),\n    LEFT_TOP_ARROW_CIRCLE(\"bx-left-top-arrow-circle\", '\\uea99'),\n    LIBRARY(\"bx-library\", '\\uea9a'),\n    LIKE(\"bx-like\", '\\uea9b'),\n    LINE_CHART(\"bx-line-chart\", '\\uea9c'),\n    LINE_CHART_DOWN(\"bx-line-chart-down\", '\\uea9d'),\n    LINK(\"bx-link\", '\\uea9e'),\n    LINK_ALT(\"bx-link-alt\", '\\uea9f'),\n    LINK_EXTERNAL(\"bx-link-external\", '\\ueaa0'),\n    LIRA(\"bx-lira\", '\\ueaa1'),\n    LIST_CHECK(\"bx-list-check\", '\\ueaa2'),\n    LIST_MINUS(\"bx-list-minus\", '\\ueaa3'),\n    LIST_OL(\"bx-list-ol\", '\\ueaa4'),\n    LIST_PLUS(\"bx-list-plus\", '\\ueaa5'),\n    LIST_UL(\"bx-list-ul\", '\\ueaa6'),\n    LOADER(\"bx-loader\", '\\ueaa7'),\n    LOADER_ALT(\"bx-loader-alt\", '\\ueaa8'),\n    LOADER_CIRCLE(\"bx-loader-circle\", '\\ueaa9'),\n    LOCATION_PLUS(\"bx-location-plus\", '\\ueaaa'),\n    LOCK(\"bx-lock\", '\\ueaab'),\n    LOCK_ALT(\"bx-lock-alt\", '\\ueaac'),\n    LOCK_OPEN(\"bx-lock-open\", '\\ueaad'),\n    LOCK_OPEN_ALT(\"bx-lock-open-alt\", '\\ueaae'),\n    LOG_IN(\"bx-log-in\", '\\ueaaf'),\n    LOG_IN_CIRCLE(\"bx-log-in-circle\", '\\ueab0'),\n    LOG_OUT(\"bx-log-out\", '\\ueab1'),\n    LOG_OUT_CIRCLE(\"bx-log-out-circle\", '\\ueab2'),\n    LOW_VISION(\"bx-low-vision\", '\\ueab3'),\n    MAGNET(\"bx-magnet\", '\\ueab4'),\n    MAIL_SEND(\"bx-mail-send\", '\\ueab5'),\n    MALE(\"bx-male\", '\\ueab6'),\n    MALE_SIGN(\"bx-male-sign\", '\\ueab7'),\n    MAP(\"bx-map\", '\\ueab8'),\n    MAP_ALT(\"bx-map-alt\", '\\ueab9'),\n    MAP_PIN(\"bx-map-pin\", '\\ueaba'),\n    MASK(\"bx-mask\", '\\ueabb'),\n    MEDAL(\"bx-medal\", '\\ueabc'),\n    MEH(\"bx-meh\", '\\ueabd'),\n    MEH_ALT(\"bx-meh-alt\", '\\ueabe'),\n    MEH_BLANK(\"bx-meh-blank\", '\\ueabf'),\n    MEMORY_CARD(\"bx-memory-card\", '\\ueac0'),\n    MENU(\"bx-menu\", '\\ueac1'),\n    MENU_ALT_LEFT(\"bx-menu-alt-left\", '\\ueac2'),\n    MENU_ALT_RIGHT(\"bx-menu-alt-right\", '\\ueac3'),\n    MERGE(\"bx-merge\", '\\ueac4'),\n    MESSAGE(\"bx-message\", '\\ueac5'),\n    MESSAGE_ADD(\"bx-message-add\", '\\ueac6'),\n    MESSAGE_ALT(\"bx-message-alt\", '\\ueac7'),\n    MESSAGE_ALT_ADD(\"bx-message-alt-add\", '\\ueac8'),\n    MESSAGE_ALT_CHECK(\"bx-message-alt-check\", '\\ueac9'),\n    MESSAGE_ALT_DETAIL(\"bx-message-alt-detail\", '\\ueaca'),\n    MESSAGE_ALT_DOTS(\"bx-message-alt-dots\", '\\ueacb'),\n    MESSAGE_ALT_EDIT(\"bx-message-alt-edit\", '\\ueacc'),\n    MESSAGE_ALT_ERROR(\"bx-message-alt-error\", '\\ueacd'),\n    MESSAGE_ALT_MINUS(\"bx-message-alt-minus\", '\\ueace'),\n    MESSAGE_ALT_X(\"bx-message-alt-x\", '\\ueacf'),\n    MESSAGE_CHECK(\"bx-message-check\", '\\uead0'),\n    MESSAGE_DETAIL(\"bx-message-detail\", '\\uead1'),\n    MESSAGE_DOTS(\"bx-message-dots\", '\\uead2'),\n    MESSAGE_EDIT(\"bx-message-edit\", '\\uead3'),\n    MESSAGE_ERROR(\"bx-message-error\", '\\uead4'),\n    MESSAGE_MINUS(\"bx-message-minus\", '\\uead5'),\n    MESSAGE_ROUNDED(\"bx-message-rounded\", '\\uead6'),\n    MESSAGE_ROUNDED_ADD(\"bx-message-rounded-add\", '\\uead7'),\n    MESSAGE_ROUNDED_CHECK(\"bx-message-rounded-check\", '\\uead8'),\n    MESSAGE_ROUNDED_DETAIL(\"bx-message-rounded-detail\", '\\uead9'),\n    MESSAGE_ROUNDED_DOTS(\"bx-message-rounded-dots\", '\\ueada'),\n    MESSAGE_ROUNDED_EDIT(\"bx-message-rounded-edit\", '\\ueadb'),\n    MESSAGE_ROUNDED_ERROR(\"bx-message-rounded-error\", '\\ueadc'),\n    MESSAGE_ROUNDED_MINUS(\"bx-message-rounded-minus\", '\\ueadd'),\n    MESSAGE_ROUNDED_X(\"bx-message-rounded-x\", '\\ueade'),\n    MESSAGE_SQUARE(\"bx-message-square\", '\\ueadf'),\n    MESSAGE_SQUARE_ADD(\"bx-message-square-add\", '\\ueae0'),\n    MESSAGE_SQUARE_CHECK(\"bx-message-square-check\", '\\ueae1'),\n    MESSAGE_SQUARE_DETAIL(\"bx-message-square-detail\", '\\ueae2'),\n    MESSAGE_SQUARE_DOTS(\"bx-message-square-dots\", '\\ueae3'),\n    MESSAGE_SQUARE_EDIT(\"bx-message-square-edit\", '\\ueae4'),\n    MESSAGE_SQUARE_ERROR(\"bx-message-square-error\", '\\ueae5'),\n    MESSAGE_SQUARE_MINUS(\"bx-message-square-minus\", '\\ueae6'),\n    MESSAGE_SQUARE_X(\"bx-message-square-x\", '\\ueae7'),\n    MESSAGE_X(\"bx-message-x\", '\\ueae8'),\n    METEOR(\"bx-meteor\", '\\ueae9'),\n    MICROCHIP(\"bx-microchip\", '\\ueaea'),\n    MICROPHONE(\"bx-microphone\", '\\ueaeb'),\n    MICROPHONE_OFF(\"bx-microphone-off\", '\\ueaec'),\n    MINUS(\"bx-minus\", '\\ueaed'),\n    MINUS_BACK(\"bx-minus-back\", '\\ueaee'),\n    MINUS_CIRCLE(\"bx-minus-circle\", '\\ueaef'),\n    MINUS_FRONT(\"bx-minus-front\", '\\ueaf0'),\n    MOBILE(\"bx-mobile\", '\\ueaf1'),\n    MOBILE_ALT(\"bx-mobile-alt\", '\\ueaf2'),\n    MOBILE_LANDSCAPE(\"bx-mobile-landscape\", '\\ueaf3'),\n    MOBILE_VIBRATION(\"bx-mobile-vibration\", '\\ueaf4'),\n    MONEY(\"bx-money\", '\\ueaf5'),\n    MOON(\"bx-moon\", '\\ueaf6'),\n    MOUSE(\"bx-mouse\", '\\ueaf7'),\n    MOUSE_ALT(\"bx-mouse-alt\", '\\ueaf8'),\n    MOVE(\"bx-move\", '\\ueaf9'),\n    MOVE_HORIZONTAL(\"bx-move-horizontal\", '\\ueafa'),\n    MOVE_VERTICAL(\"bx-move-vertical\", '\\ueafb'),\n    MOVIE(\"bx-movie\", '\\ueafc'),\n    MOVIE_PLAY(\"bx-movie-play\", '\\ueafd'),\n    MUSIC(\"bx-music\", '\\ueafe'),\n    NAVIGATION(\"bx-navigation\", '\\ueaff'),\n    NETWORK_CHART(\"bx-network-chart\", '\\ueb00'),\n    NEWS(\"bx-news\", '\\ueb01'),\n    NOTE(\"bx-note\", '\\ueb03'),\n    NOTEPAD(\"bx-notepad\", '\\ueb04'),\n    NOTIFICATION(\"bx-notification\", '\\ueb05'),\n    NOTIFICATION_OFF(\"bx-notification-off\", '\\ueb06'),\n    NO_ENTRY(\"bx-no-entry\", '\\ueb02'),\n    OUTLINE(\"bx-outline\", '\\ueb07'),\n    PACKAGE(\"bx-package\", '\\ueb08'),\n    PAINT(\"bx-paint\", '\\ueb09'),\n    PAINT_ROLL(\"bx-paint-roll\", '\\ueb0a'),\n    PALETTE(\"bx-palette\", '\\ueb0b'),\n    PAPERCLIP(\"bx-paperclip\", '\\ueb0c'),\n    PAPER_PLANE(\"bx-paper-plane\", '\\ueb0d'),\n    PARAGRAPH(\"bx-paragraph\", '\\ueb0e'),\n    PASTE(\"bx-paste\", '\\ueb0f'),\n    PAUSE(\"bx-pause\", '\\ueb10'),\n    PAUSE_CIRCLE(\"bx-pause-circle\", '\\ueb11'),\n    PEN(\"bx-pen\", '\\ueb12'),\n    PENCIL(\"bx-pencil\", '\\ueb13'),\n    PHONE(\"bx-phone\", '\\ueb14'),\n    PHONE_CALL(\"bx-phone-call\", '\\ueb15'),\n    PHONE_INCOMING(\"bx-phone-incoming\", '\\ueb16'),\n    PHONE_OUTGOING(\"bx-phone-outgoing\", '\\ueb17'),\n    PHOTO_ALBUM(\"bx-photo-album\", '\\ueb18'),\n    PIE_CHART(\"bx-pie-chart\", '\\ueb19'),\n    PIE_CHART_ALT(\"bx-pie-chart-alt\", '\\ueb1a'),\n    PIE_CHART_ALT_2(\"bx-pie-chart-alt-2\", '\\ueb1b'),\n    PIN(\"bx-pin\", '\\ueb1c'),\n    PLANET(\"bx-planet\", '\\ueb1d'),\n    PLAY(\"bx-play\", '\\ueb1e'),\n    PLAY_CIRCLE(\"bx-play-circle\", '\\ueb1f'),\n    PLUG(\"bx-plug\", '\\ueb20'),\n    PLUS(\"bx-plus\", '\\ueb21'),\n    PLUS_CIRCLE(\"bx-plus-circle\", '\\ueb22'),\n    PLUS_MEDICAL(\"bx-plus-medical\", '\\ueb23'),\n    POINTER(\"bx-pointer\", '\\ueb24'),\n    POLL(\"bx-poll\", '\\ueb25'),\n    POLYGON(\"bx-polygon\", '\\ueb26'),\n    POUND(\"bx-pound\", '\\ueb27'),\n    POWER_OFF(\"bx-power-off\", '\\ueb28'),\n    PRINTER(\"bx-printer\", '\\ueb29'),\n    PULSE(\"bx-pulse\", '\\ueb2a'),\n    PURCHASE_TAG(\"bx-purchase-tag\", '\\ueb2b'),\n    PURCHASE_TAG_ALT(\"bx-purchase-tag-alt\", '\\ueb2c'),\n    PYRAMID(\"bx-pyramid\", '\\ueb2d'),\n    QUESTION_MARK(\"bx-question-mark\", '\\ueb2e'),\n    RADAR(\"bx-radar\", '\\ueb2f'),\n    RADIO(\"bx-radio\", '\\ueb30'),\n    RADIO_CIRCLE(\"bx-radio-circle\", '\\ueb31'),\n    RADIO_CIRCLE_MARKED(\"bx-radio-circle-marked\", '\\ueb32'),\n    RECEIPT(\"bx-receipt\", '\\ueb33'),\n    RECTANGLE(\"bx-rectangle\", '\\ueb34'),\n    RECYCLE(\"bx-recycle\", '\\ueb35'),\n    REDO(\"bx-redo\", '\\ueb36'),\n    REFRESH(\"bx-refresh\", '\\ueb37'),\n    RENAME(\"bx-rename\", '\\ueb38'),\n    REPEAT(\"bx-repeat\", '\\ueb39'),\n    REPLY(\"bx-reply\", '\\ueb3a'),\n    REPLY_ALL(\"bx-reply-all\", '\\ueb3b'),\n    REPOST(\"bx-repost\", '\\ueb3c'),\n    RESET(\"bx-reset\", '\\ueb3d'),\n    RESTAURANT(\"bx-restaurant\", '\\ueb3e'),\n    REVISION(\"bx-revision\", '\\ueb3f'),\n    REWIND(\"bx-rewind\", '\\ueb40'),\n    REWIND_CIRCLE(\"bx-rewind-circle\", '\\ueb41'),\n    RIGHT_ARROW(\"bx-right-arrow\", '\\ueb42'),\n    RIGHT_ARROW_ALT(\"bx-right-arrow-alt\", '\\ueb43'),\n    RIGHT_ARROW_CIRCLE(\"bx-right-arrow-circle\", '\\ueb44'),\n    RIGHT_DOWN_ARROW_CIRCLE(\"bx-right-down-arrow-circle\", '\\ueb45'),\n    RIGHT_INDENT(\"bx-right-indent\", '\\ueb46'),\n    RIGHT_TOP_ARROW_CIRCLE(\"bx-right-top-arrow-circle\", '\\ueb47'),\n    ROCKET(\"bx-rocket\", '\\ueb48'),\n    ROTATE_LEFT(\"bx-rotate-left\", '\\ueb49'),\n    ROTATE_RIGHT(\"bx-rotate-right\", '\\ueb4a'),\n    RSS(\"bx-rss\", '\\ueb4b'),\n    RUBLE(\"bx-ruble\", '\\ueb4c'),\n    RULER(\"bx-ruler\", '\\ueb4d'),\n    RUN(\"bx-run\", '\\ueb4e'),\n    RUPEE(\"bx-rupee\", '\\ueb4f'),\n    SAD(\"bx-sad\", '\\ueb50'),\n    SAVE(\"bx-save\", '\\ueb51'),\n    SCAN(\"bx-scan\", '\\ueb52'),\n    SCREENSHOT(\"bx-screenshot\", '\\ueb53'),\n    SEARCH(\"bx-search\", '\\ueb54'),\n    SEARCH_ALT(\"bx-search-alt\", '\\ueb55'),\n    SEARCH_ALT_2(\"bx-search-alt-2\", '\\ueb56'),\n    SELECTION(\"bx-selection\", '\\ueb57'),\n    SELECT_MULTIPLE(\"bx-select-multiple\", '\\ueb58'),\n    SEND(\"bx-send\", '\\ueb59'),\n    SERVER(\"bx-server\", '\\ueb5a'),\n    SHAPE_CIRCLE(\"bx-shape-circle\", '\\ueb5b'),\n    SHAPE_POLYGON(\"bx-shape-polygon\", '\\ueb5c'),\n    SHAPE_SQUARE(\"bx-shape-square\", '\\ueb5d'),\n    SHAPE_TRIANGLE(\"bx-shape-triangle\", '\\ueb5e'),\n    SHARE(\"bx-share\", '\\ueb5f'),\n    SHARE_ALT(\"bx-share-alt\", '\\ueb60'),\n    SHEKEL(\"bx-shekel\", '\\ueb61'),\n    SHIELD(\"bx-shield\", '\\ueb62'),\n    SHIELD_ALT(\"bx-shield-alt\", '\\ueb63'),\n    SHIELD_ALT_2(\"bx-shield-alt-2\", '\\ueb64'),\n    SHIELD_QUARTER(\"bx-shield-quarter\", '\\ueb65'),\n    SHIELD_X(\"bx-shield-x\", '\\ueb66'),\n    SHOCKED(\"bx-shocked\", '\\ueb67'),\n    SHOPPING_BAG(\"bx-shopping-bag\", '\\ueb68'),\n    SHOW(\"bx-show\", '\\ueb69'),\n    SHOW_ALT(\"bx-show-alt\", '\\ueb6a'),\n    SHUFFLE(\"bx-shuffle\", '\\ueb6b'),\n    SIDEBAR(\"bx-sidebar\", '\\ueb6c'),\n    SITEMAP(\"bx-sitemap\", '\\ueb6d'),\n    SKIP_NEXT(\"bx-skip-next\", '\\ueb6e'),\n    SKIP_NEXT_CIRCLE(\"bx-skip-next-circle\", '\\ueb6f'),\n    SKIP_PREVIOUS(\"bx-skip-previous\", '\\ueb70'),\n    SKIP_PREVIOUS_CIRCLE(\"bx-skip-previous-circle\", '\\ueb71'),\n    SLEEPY(\"bx-sleepy\", '\\ueb72'),\n    SLIDER(\"bx-slider\", '\\ueb73'),\n    SLIDER_ALT(\"bx-slider-alt\", '\\ueb74'),\n    SLIDESHOW(\"bx-slideshow\", '\\ueb75'),\n    SMILE(\"bx-smile\", '\\ueb76'),\n    SORT(\"bx-sort\", '\\ueb77'),\n    SORT_ALT_2(\"bx-sort-alt-2\", '\\ueb78'),\n    SORT_A_Z(\"bx-sort-a-z\", '\\ueb79'),\n    SORT_DOWN(\"bx-sort-down\", '\\ueb7a'),\n    SORT_UP(\"bx-sort-up\", '\\ueb7b'),\n    SORT_Z_A(\"bx-sort-z-a\", '\\ueb7c'),\n    SPA(\"bx-spa\", '\\ueb7d'),\n    SPACE_BAR(\"bx-space-bar\", '\\ueb7e'),\n    SPRAY_CAN(\"bx-spray-can\", '\\ueb7f'),\n    SPREADSHEET(\"bx-spreadsheet\", '\\ueb80'),\n    SQUARE(\"bx-square\", '\\ueb81'),\n    SQUARE_ROUNDED(\"bx-square-rounded\", '\\ueb82'),\n    STAR(\"bx-star\", '\\ueb83'),\n    STATION(\"bx-station\", '\\ueb84'),\n    STATS(\"bx-stats\", '\\ueb85'),\n    STICKER(\"bx-sticker\", '\\ueb86'),\n    STOP(\"bx-stop\", '\\ueb87'),\n    STOPWATCH(\"bx-stopwatch\", '\\ueb89'),\n    STOP_CIRCLE(\"bx-stop-circle\", '\\ueb88'),\n    STORE(\"bx-store\", '\\ueb8a'),\n    STORE_ALT(\"bx-store-alt\", '\\ueb8b'),\n    STREET_VIEW(\"bx-street-view\", '\\ueb8c'),\n    STRIKETHROUGH(\"bx-strikethrough\", '\\ueb8d'),\n    SUBDIRECTORY_LEFT(\"bx-subdirectory-left\", '\\ueb8e'),\n    SUBDIRECTORY_RIGHT(\"bx-subdirectory-right\", '\\ueb8f'),\n    SUN(\"bx-sun\", '\\ueb90'),\n    SUPPORT(\"bx-support\", '\\ueb91'),\n    SWIM(\"bx-swim\", '\\ueb92'),\n    SYNC(\"bx-sync\", '\\ueb93'),\n    TAB(\"bx-tab\", '\\ueb94'),\n    TABLE(\"bx-table\", '\\ueb95'),\n    TACHOMETER(\"bx-tachometer\", '\\ueb96'),\n    TAG(\"bx-tag\", '\\ueb97'),\n    TAG_ALT(\"bx-tag-alt\", '\\ueb98'),\n    TARGET_LOCK(\"bx-target-lock\", '\\ueb99'),\n    TASK(\"bx-task\", '\\ueb9a'),\n    TASK_X(\"bx-task-x\", '\\ueb9b'),\n    TAXI(\"bx-taxi\", '\\ueb9c'),\n    TENNIS_BALL(\"bx-tennis-ball\", '\\ueb9d'),\n    TERMINAL(\"bx-terminal\", '\\ueb9e'),\n    TEST_TUBE(\"bx-test-tube\", '\\ueb9f'),\n    TEXT(\"bx-text\", '\\ueba0'),\n    TIME(\"bx-time\", '\\ueba1'),\n    TIMER(\"bx-timer\", '\\ueba3'),\n    TIME_FIVE(\"bx-time-five\", '\\ueba2'),\n    TIRED(\"bx-tired\", '\\ueba4'),\n    TOGGLE_LEFT(\"bx-toggle-left\", '\\ueba5'),\n    TOGGLE_RIGHT(\"bx-toggle-right\", '\\ueba6'),\n    TONE(\"bx-tone\", '\\ueba7'),\n    TRAFFIC_CONE(\"bx-traffic-cone\", '\\ueba8'),\n    TRAIN(\"bx-train\", '\\ueba9'),\n    TRANSFER(\"bx-transfer\", '\\uebaa'),\n    TRANSFER_ALT(\"bx-transfer-alt\", '\\uebab'),\n    TRASH(\"bx-trash\", '\\uebac'),\n    TRASH_ALT(\"bx-trash-alt\", '\\uebad'),\n    TRENDING_DOWN(\"bx-trending-down\", '\\uebae'),\n    TRENDING_UP(\"bx-trending-up\", '\\uebaf'),\n    TRIM(\"bx-trim\", '\\uebb0'),\n    TRIP(\"bx-trip\", '\\uebb1'),\n    TROPHY(\"bx-trophy\", '\\uebb2'),\n    TV(\"bx-tv\", '\\uebb3'),\n    UNDERLINE(\"bx-underline\", '\\uebb4'),\n    UNDO(\"bx-undo\", '\\uebb5'),\n    UNITE(\"bx-unite\", '\\uebb6'),\n    UNLINK(\"bx-unlink\", '\\uebb7'),\n    UPLOAD(\"bx-upload\", '\\uebbb'),\n    UPSIDE_DOWN(\"bx-upside-down\", '\\uebbc'),\n    UPVOTE(\"bx-upvote\", '\\uebbd'),\n    UP_ARROW(\"bx-up-arrow\", '\\uebb8'),\n    UP_ARROW_ALT(\"bx-up-arrow-alt\", '\\uebb9'),\n    UP_ARROW_CIRCLE(\"bx-up-arrow-circle\", '\\uebba'),\n    USB(\"bx-usb\", '\\uebbe'),\n    USER(\"bx-user\", '\\uebbf'),\n    USER_CHECK(\"bx-user-check\", '\\uebc0'),\n    USER_CIRCLE(\"bx-user-circle\", '\\uebc1'),\n    USER_MINUS(\"bx-user-minus\", '\\uebc2'),\n    USER_PIN(\"bx-user-pin\", '\\uebc3'),\n    USER_PLUS(\"bx-user-plus\", '\\uebc4'),\n    USER_VOICE(\"bx-user-voice\", '\\uebc5'),\n    USER_X(\"bx-user-x\", '\\uebc6'),\n    VECTOR(\"bx-vector\", '\\uebc7'),\n    VERTICAL_CENTER(\"bx-vertical-center\", '\\uebc8'),\n    VIAL(\"bx-vial\", '\\uebc9'),\n    VIDEO(\"bx-video\", '\\uebca'),\n    VIDEO_OFF(\"bx-video-off\", '\\uebcb'),\n    VIDEO_PLUS(\"bx-video-plus\", '\\uebcc'),\n    VIDEO_RECORDING(\"bx-video-recording\", '\\uebcd'),\n    VOICEMAIL(\"bx-voicemail\", '\\uebce'),\n    VOLUME(\"bx-volume\", '\\uebcf'),\n    VOLUME_FULL(\"bx-volume-full\", '\\uebd0'),\n    VOLUME_LOW(\"bx-volume-low\", '\\uebd1'),\n    VOLUME_MUTE(\"bx-volume-mute\", '\\uebd2'),\n    WALK(\"bx-walk\", '\\uebd3'),\n    WALLET(\"bx-wallet\", '\\uebd4'),\n    WALLET_ALT(\"bx-wallet-alt\", '\\uebd5'),\n    WATER(\"bx-water\", '\\uebd6'),\n    WEBCAM(\"bx-webcam\", '\\uebd7'),\n    WIFI(\"bx-wifi\", '\\uebd8'),\n    WIFI_0(\"bx-wifi-0\", '\\uebd9'),\n    WIFI_1(\"bx-wifi-1\", '\\uebda'),\n    WIFI_2(\"bx-wifi-2\", '\\uebdb'),\n    WIFI_OFF(\"bx-wifi-off\", '\\uebdc'),\n    WIND(\"bx-wind\", '\\uebdd'),\n    WINDOW(\"bx-window\", '\\uebde'),\n    WINDOWS(\"bx-windows\", '\\uebe2'),\n    WINDOW_ALT(\"bx-window-alt\", '\\uebdf'),\n    WINDOW_CLOSE(\"bx-window-close\", '\\uebe0'),\n    WINDOW_OPEN(\"bx-window-open\", '\\uebe1'),\n    WINE(\"bx-wine\", '\\uebe3'),\n    WINK_SMILE(\"bx-wink-smile\", '\\uebe4'),\n    WINK_TONGUE(\"bx-wink-tongue\", '\\uebe5'),\n    WON(\"bx-won\", '\\uebe6'),\n    WORLD(\"bx-world\", '\\uebe7'),\n    WRENCH(\"bx-wrench\", '\\uebe8'),\n    X(\"bx-x\", '\\uebe9'),\n    X_CIRCLE(\"bx-x-circle\", '\\uebea'),\n    YEN(\"bx-yen\", '\\uebeb'),\n    ZOOM_IN(\"bx-zoom-in\", '\\uebec'),\n    ZOOM_OUT(\"bx-zoom-out\", '\\uebed');\n\n    public static BoxiconsRegular findByDescription(String description) {\n        for (BoxiconsRegular font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    BoxiconsRegular(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-boxicons-pack/src/main/java/org/kordamp/ikonli/boxicons/BoxiconsRegularIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.boxicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BoxiconsRegularIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/boxicons/2.0.7/fonts/boxicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bx-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return BoxiconsRegular.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"boxicons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-boxicons-pack/src/main/java/org/kordamp/ikonli/boxicons/BoxiconsRegularIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.boxicons;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(org.kordamp.ikonli.IkonProvider.class)\npublic class BoxiconsRegularIkonProvider implements org.kordamp.ikonli.IkonProvider<BoxiconsRegular> {\n    @Override\n    public Class<BoxiconsRegular> getIkon() {\n        return BoxiconsRegular.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-boxicons-pack/src/main/java/org/kordamp/ikonli/boxicons/BoxiconsSolid.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.boxicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum BoxiconsSolid implements Ikon {\n    ADD_TO_QUEUE(\"bxs-add-to-queue\", '\\uebee'),\n    ADJUST(\"bxs-adjust\", '\\uebef'),\n    ADJUST_ALT(\"bxs-adjust-alt\", '\\uebf0'),\n    ALARM(\"bxs-alarm\", '\\uebf1'),\n    ALARM_ADD(\"bxs-alarm-add\", '\\uebf2'),\n    ALARM_EXCLAMATION(\"bxs-alarm-exclamation\", '\\uebf3'),\n    ALARM_OFF(\"bxs-alarm-off\", '\\uebf4'),\n    ALARM_SNOOZE(\"bxs-alarm-snooze\", '\\uebf5'),\n    ALBUM(\"bxs-album\", '\\uebf6'),\n    AMBULANCE(\"bxs-ambulance\", '\\uebf7'),\n    ANALYSE(\"bxs-analyse\", '\\uebf8'),\n    ANGRY(\"bxs-angry\", '\\uebf9'),\n    ARCH(\"bxs-arch\", '\\uebfa'),\n    ARCHIVE(\"bxs-archive\", '\\uebfb'),\n    ARCHIVE_IN(\"bxs-archive-in\", '\\uebfc'),\n    ARCHIVE_OUT(\"bxs-archive-out\", '\\uebfd'),\n    AREA(\"bxs-area\", '\\uebfe'),\n    ARROW_FROM_BOTTOM(\"bxs-arrow-from-bottom\", '\\uebff'),\n    ARROW_FROM_LEFT(\"bxs-arrow-from-left\", '\\uec00'),\n    ARROW_FROM_RIGHT(\"bxs-arrow-from-right\", '\\uec01'),\n    ARROW_FROM_TOP(\"bxs-arrow-from-top\", '\\uec02'),\n    ARROW_TO_BOTTOM(\"bxs-arrow-to-bottom\", '\\uec03'),\n    ARROW_TO_LEFT(\"bxs-arrow-to-left\", '\\uec04'),\n    ARROW_TO_RIGHT(\"bxs-arrow-to-right\", '\\uec05'),\n    ARROW_TO_TOP(\"bxs-arrow-to-top\", '\\uec06'),\n    AWARD(\"bxs-award\", '\\uec07'),\n    BABY_CARRIAGE(\"bxs-baby-carriage\", '\\uec08'),\n    BACKPACK(\"bxs-backpack\", '\\uec09'),\n    BADGE(\"bxs-badge\", '\\uec0a'),\n    BADGE_CHECK(\"bxs-badge-check\", '\\uec0b'),\n    BADGE_DOLLAR(\"bxs-badge-dollar\", '\\uec0c'),\n    BALL(\"bxs-ball\", '\\uec0d'),\n    BAND_AID(\"bxs-band-aid\", '\\uec0e'),\n    BANK(\"bxs-bank\", '\\uec0f'),\n    BARCODE(\"bxs-barcode\", '\\uec12'),\n    BAR_CHART_ALT_2(\"bxs-bar-chart-alt-2\", '\\uec10'),\n    BAR_CHART_SQUARE(\"bxs-bar-chart-square\", '\\uec11'),\n    BASEBALL(\"bxs-baseball\", '\\uec13'),\n    BASKET(\"bxs-basket\", '\\uec14'),\n    BASKETBALL(\"bxs-basketball\", '\\uec15'),\n    BATH(\"bxs-bath\", '\\uec16'),\n    BATTERY(\"bxs-battery\", '\\uec17'),\n    BATTERY_CHARGING(\"bxs-battery-charging\", '\\uec18'),\n    BATTERY_FULL(\"bxs-battery-full\", '\\uec19'),\n    BATTERY_LOW(\"bxs-battery-low\", '\\uec1a'),\n    BED(\"bxs-bed\", '\\uec1b'),\n    BEEN_HERE(\"bxs-been-here\", '\\uec1c'),\n    BEER(\"bxs-beer\", '\\uec1d'),\n    BELL(\"bxs-bell\", '\\uec1e'),\n    BELL_MINUS(\"bxs-bell-minus\", '\\uec1f'),\n    BELL_OFF(\"bxs-bell-off\", '\\uec20'),\n    BELL_PLUS(\"bxs-bell-plus\", '\\uec21'),\n    BELL_RING(\"bxs-bell-ring\", '\\uec22'),\n    BIBLE(\"bxs-bible\", '\\uec23'),\n    BINOCULARS(\"bxs-binoculars\", '\\uec24'),\n    BLANKET(\"bxs-blanket\", '\\uec25'),\n    BOLT(\"bxs-bolt\", '\\uec26'),\n    BOLT_CIRCLE(\"bxs-bolt-circle\", '\\uec27'),\n    BOMB(\"bxs-bomb\", '\\uec28'),\n    BONE(\"bxs-bone\", '\\uec29'),\n    BONG(\"bxs-bong\", '\\uec2a'),\n    BOOK(\"bxs-book\", '\\uec2b'),\n    BOOKMARK(\"bxs-bookmark\", '\\uec31'),\n    BOOKMARKS(\"bxs-bookmarks\", '\\uec38'),\n    BOOKMARK_ALT(\"bxs-bookmark-alt\", '\\uec32'),\n    BOOKMARK_ALT_MINUS(\"bxs-bookmark-alt-minus\", '\\uec33'),\n    BOOKMARK_ALT_PLUS(\"bxs-bookmark-alt-plus\", '\\uec34'),\n    BOOKMARK_HEART(\"bxs-bookmark-heart\", '\\uec35'),\n    BOOKMARK_MINUS(\"bxs-bookmark-minus\", '\\uec36'),\n    BOOKMARK_PLUS(\"bxs-bookmark-plus\", '\\uec37'),\n    BOOKMARK_STAR(\"bxs-bookmark-star\", '\\uec39'),\n    BOOK_ADD(\"bxs-book-add\", '\\uec2c'),\n    BOOK_ALT(\"bxs-book-alt\", '\\uec2d'),\n    BOOK_BOOKMARK(\"bxs-book-bookmark\", '\\uec2e'),\n    BOOK_CONTENT(\"bxs-book-content\", '\\uec2f'),\n    BOOK_HEART(\"bxs-book-heart\", '\\uec30'),\n    BOOK_OPEN(\"bxs-book-open\", '\\uec3a'),\n    BOOK_READER(\"bxs-book-reader\", '\\uec3b'),\n    BOT(\"bxs-bot\", '\\uec3c'),\n    BOWLING_BALL(\"bxs-bowling-ball\", '\\uec3d'),\n    BOX(\"bxs-box\", '\\uec3e'),\n    BRAIN(\"bxs-brain\", '\\uec3f'),\n    BRIEFCASE(\"bxs-briefcase\", '\\uec40'),\n    BRIEFCASE_ALT(\"bxs-briefcase-alt\", '\\uec41'),\n    BRIEFCASE_ALT_2(\"bxs-briefcase-alt-2\", '\\uec42'),\n    BRIGHTNESS(\"bxs-brightness\", '\\uec43'),\n    BRIGHTNESS_HALF(\"bxs-brightness-half\", '\\uec44'),\n    BRUSH(\"bxs-brush\", '\\uec45'),\n    BRUSH_ALT(\"bxs-brush-alt\", '\\uec46'),\n    BUG(\"bxs-bug\", '\\uec47'),\n    BUG_ALT(\"bxs-bug-alt\", '\\uec48'),\n    BUILDING(\"bxs-building\", '\\uec49'),\n    BUILDINGS(\"bxs-buildings\", '\\uec4b'),\n    BUILDING_HOUSE(\"bxs-building-house\", '\\uec4a'),\n    BULB(\"bxs-bulb\", '\\uec4c'),\n    BULLSEYE(\"bxs-bullseye\", '\\uec4d'),\n    BUOY(\"bxs-buoy\", '\\uec4e'),\n    BUS(\"bxs-bus\", '\\uec4f'),\n    BUSINESS(\"bxs-business\", '\\uec50'),\n    BUS_SCHOOL(\"bxs-bus-school\", '\\uec51'),\n    CABINET(\"bxs-cabinet\", '\\uec52'),\n    CAKE(\"bxs-cake\", '\\uec53'),\n    CALCULATOR(\"bxs-calculator\", '\\uec54'),\n    CALENDAR(\"bxs-calendar\", '\\uec55'),\n    CALENDAR_ALT(\"bxs-calendar-alt\", '\\uec56'),\n    CALENDAR_CHECK(\"bxs-calendar-check\", '\\uec57'),\n    CALENDAR_EDIT(\"bxs-calendar-edit\", '\\uec58'),\n    CALENDAR_EVENT(\"bxs-calendar-event\", '\\uec59'),\n    CALENDAR_EXCLAMATION(\"bxs-calendar-exclamation\", '\\uec5a'),\n    CALENDAR_HEART(\"bxs-calendar-heart\", '\\uec5b'),\n    CALENDAR_MINUS(\"bxs-calendar-minus\", '\\uec5c'),\n    CALENDAR_PLUS(\"bxs-calendar-plus\", '\\uec5d'),\n    CALENDAR_STAR(\"bxs-calendar-star\", '\\uec5e'),\n    CALENDAR_WEEK(\"bxs-calendar-week\", '\\uec5f'),\n    CALENDAR_X(\"bxs-calendar-x\", '\\uec60'),\n    CAMERA(\"bxs-camera\", '\\uec61'),\n    CAMERA_HOME(\"bxs-camera-home\", '\\uec62'),\n    CAMERA_MOVIE(\"bxs-camera-movie\", '\\uec63'),\n    CAMERA_OFF(\"bxs-camera-off\", '\\uec64'),\n    CAMERA_PLUS(\"bxs-camera-plus\", '\\uec65'),\n    CAPSULE(\"bxs-capsule\", '\\uec66'),\n    CAPTIONS(\"bxs-captions\", '\\uec67'),\n    CAR(\"bxs-car\", '\\uec68'),\n    CARD(\"bxs-card\", '\\uec6b'),\n    CARET_DOWN_CIRCLE(\"bxs-caret-down-circle\", '\\uec6c'),\n    CARET_DOWN_SQUARE(\"bxs-caret-down-square\", '\\uec6d'),\n    CARET_LEFT_CIRCLE(\"bxs-caret-left-circle\", '\\uec6e'),\n    CARET_LEFT_SQUARE(\"bxs-caret-left-square\", '\\uec6f'),\n    CARET_RIGHT_CIRCLE(\"bxs-caret-right-circle\", '\\uec70'),\n    CARET_RIGHT_SQUARE(\"bxs-caret-right-square\", '\\uec71'),\n    CARET_UP_CIRCLE(\"bxs-caret-up-circle\", '\\uec72'),\n    CARET_UP_SQUARE(\"bxs-caret-up-square\", '\\uec73'),\n    CAROUSEL(\"bxs-carousel\", '\\uec76'),\n    CART(\"bxs-cart\", '\\uec77'),\n    CART_ADD(\"bxs-cart-add\", '\\uec78'),\n    CART_ALT(\"bxs-cart-alt\", '\\uec79'),\n    CART_DOWNLOAD(\"bxs-cart-download\", '\\uec7a'),\n    CAR_BATTERY(\"bxs-car-battery\", '\\uec69'),\n    CAR_CRASH(\"bxs-car-crash\", '\\uec6a'),\n    CAR_GARAGE(\"bxs-car-garage\", '\\uec74'),\n    CAR_MECHANIC(\"bxs-car-mechanic\", '\\uec75'),\n    CAR_WASH(\"bxs-car-wash\", '\\uec7b'),\n    CATEGORY(\"bxs-category\", '\\uec7c'),\n    CATEGORY_ALT(\"bxs-category-alt\", '\\uec7d'),\n    CCTV(\"bxs-cctv\", '\\uec7e'),\n    CERTIFICATION(\"bxs-certification\", '\\uec7f'),\n    CHALKBOARD(\"bxs-chalkboard\", '\\uec80'),\n    CHART(\"bxs-chart\", '\\uec81'),\n    CHAT(\"bxs-chat\", '\\uec82'),\n    CHECKBOX(\"bxs-checkbox\", '\\uec83'),\n    CHECKBOX_CHECKED(\"bxs-checkbox-checked\", '\\uec84'),\n    CHECK_CIRCLE(\"bxs-check-circle\", '\\uec85'),\n    CHECK_SHIELD(\"bxs-check-shield\", '\\uec86'),\n    CHECK_SQUARE(\"bxs-check-square\", '\\uec87'),\n    CHESS(\"bxs-chess\", '\\uec88'),\n    CHEVRONS_DOWN(\"bxs-chevrons-down\", '\\uec92'),\n    CHEVRONS_LEFT(\"bxs-chevrons-left\", '\\uec93'),\n    CHEVRONS_RIGHT(\"bxs-chevrons-right\", '\\uec94'),\n    CHEVRONS_UP(\"bxs-chevrons-up\", '\\uec95'),\n    CHEVRON_DOWN(\"bxs-chevron-down\", '\\uec89'),\n    CHEVRON_DOWN_CIRCLE(\"bxs-chevron-down-circle\", '\\uec8a'),\n    CHEVRON_DOWN_SQUARE(\"bxs-chevron-down-square\", '\\uec8b'),\n    CHEVRON_LEFT(\"bxs-chevron-left\", '\\uec8c'),\n    CHEVRON_LEFT_CIRCLE(\"bxs-chevron-left-circle\", '\\uec8d'),\n    CHEVRON_LEFT_SQUARE(\"bxs-chevron-left-square\", '\\uec8e'),\n    CHEVRON_RIGHT(\"bxs-chevron-right\", '\\uec8f'),\n    CHEVRON_RIGHT_CIRCLE(\"bxs-chevron-right-circle\", '\\uec90'),\n    CHEVRON_RIGHT_SQUARE(\"bxs-chevron-right-square\", '\\uec91'),\n    CHEVRON_UP(\"bxs-chevron-up\", '\\uec96'),\n    CHEVRON_UP_CIRCLE(\"bxs-chevron-up-circle\", '\\uec97'),\n    CHEVRON_UP_SQUARE(\"bxs-chevron-up-square\", '\\uec98'),\n    CHIP(\"bxs-chip\", '\\uec99'),\n    CHURCH(\"bxs-church\", '\\uec9a'),\n    CIRCLE(\"bxs-circle\", '\\uec9b'),\n    CITY(\"bxs-city\", '\\uec9c'),\n    CLINIC(\"bxs-clinic\", '\\uec9d'),\n    CLOUD(\"bxs-cloud\", '\\uec9e'),\n    CLOUD_DOWNLOAD(\"bxs-cloud-download\", '\\uec9f'),\n    CLOUD_LIGHTNING(\"bxs-cloud-lightning\", '\\ueca0'),\n    CLOUD_RAIN(\"bxs-cloud-rain\", '\\ueca1'),\n    CLOUD_UPLOAD(\"bxs-cloud-upload\", '\\ueca2'),\n    COFFEE(\"bxs-coffee\", '\\ueca3'),\n    COFFEE_ALT(\"bxs-coffee-alt\", '\\ueca4'),\n    COFFEE_TOGO(\"bxs-coffee-togo\", '\\ueca5'),\n    COG(\"bxs-cog\", '\\ueca6'),\n    COIN(\"bxs-coin\", '\\ueca7'),\n    COIN_STACK(\"bxs-coin-stack\", '\\ueca8'),\n    COLLECTION(\"bxs-collection\", '\\ueca9'),\n    COLOR_FILL(\"bxs-color-fill\", '\\uecaa'),\n    COMMENT(\"bxs-comment\", '\\uecab'),\n    COMMENT_ADD(\"bxs-comment-add\", '\\uecac'),\n    COMMENT_CHECK(\"bxs-comment-check\", '\\uecad'),\n    COMMENT_DETAIL(\"bxs-comment-detail\", '\\uecae'),\n    COMMENT_DOTS(\"bxs-comment-dots\", '\\uecaf'),\n    COMMENT_EDIT(\"bxs-comment-edit\", '\\uecb0'),\n    COMMENT_ERROR(\"bxs-comment-error\", '\\uecb1'),\n    COMMENT_MINUS(\"bxs-comment-minus\", '\\uecb2'),\n    COMMENT_X(\"bxs-comment-x\", '\\uecb3'),\n    COMPASS(\"bxs-compass\", '\\uecb4'),\n    COMPONENT(\"bxs-component\", '\\uecb5'),\n    CONFUSED(\"bxs-confused\", '\\uecb6'),\n    CONTACT(\"bxs-contact\", '\\uecb7'),\n    CONVERSATION(\"bxs-conversation\", '\\uecb8'),\n    COOKIE(\"bxs-cookie\", '\\uecb9'),\n    COOL(\"bxs-cool\", '\\uecba'),\n    COPY(\"bxs-copy\", '\\uecbb'),\n    COPYRIGHT(\"bxs-copyright\", '\\uecbd'),\n    COPY_ALT(\"bxs-copy-alt\", '\\uecbc'),\n    COUPON(\"bxs-coupon\", '\\uecbe'),\n    CREDIT_CARD(\"bxs-credit-card\", '\\uecbf'),\n    CREDIT_CARD_ALT(\"bxs-credit-card-alt\", '\\uecc0'),\n    CREDIT_CARD_FRONT(\"bxs-credit-card-front\", '\\uecc1'),\n    CROP(\"bxs-crop\", '\\uecc2'),\n    CROWN(\"bxs-crown\", '\\uecc3'),\n    CUBE(\"bxs-cube\", '\\uecc4'),\n    CUBE_ALT(\"bxs-cube-alt\", '\\uecc5'),\n    CUBOID(\"bxs-cuboid\", '\\uecc6'),\n    CUSTOMIZE(\"bxs-customize\", '\\uecc7'),\n    CYLINDER(\"bxs-cylinder\", '\\uecc8'),\n    DASHBOARD(\"bxs-dashboard\", '\\uecc9'),\n    DATA(\"bxs-data\", '\\uecca'),\n    DETAIL(\"bxs-detail\", '\\ueccb'),\n    DEVICES(\"bxs-devices\", '\\ueccc'),\n    DIAMOND(\"bxs-diamond\", '\\ueccd'),\n    DICE_1(\"bxs-dice-1\", '\\uecce'),\n    DICE_2(\"bxs-dice-2\", '\\ueccf'),\n    DICE_3(\"bxs-dice-3\", '\\uecd0'),\n    DICE_4(\"bxs-dice-4\", '\\uecd1'),\n    DICE_5(\"bxs-dice-5\", '\\uecd2'),\n    DICE_6(\"bxs-dice-6\", '\\uecd3'),\n    DIRECTIONS(\"bxs-directions\", '\\uecd6'),\n    DIRECTION_LEFT(\"bxs-direction-left\", '\\uecd4'),\n    DIRECTION_RIGHT(\"bxs-direction-right\", '\\uecd5'),\n    DISC(\"bxs-disc\", '\\uecd7'),\n    DISCOUNT(\"bxs-discount\", '\\uecd8'),\n    DISH(\"bxs-dish\", '\\uecd9'),\n    DISLIKE(\"bxs-dislike\", '\\uecda'),\n    DIZZY(\"bxs-dizzy\", '\\uecdb'),\n    DOCK_BOTTOM(\"bxs-dock-bottom\", '\\uecdc'),\n    DOCK_LEFT(\"bxs-dock-left\", '\\uecdd'),\n    DOCK_RIGHT(\"bxs-dock-right\", '\\uecde'),\n    DOCK_TOP(\"bxs-dock-top\", '\\uecdf'),\n    DOLLAR_CIRCLE(\"bxs-dollar-circle\", '\\uece0'),\n    DONATE_BLOOD(\"bxs-donate-blood\", '\\uece1'),\n    DONATE_HEART(\"bxs-donate-heart\", '\\uece2'),\n    DOOR_OPEN(\"bxs-door-open\", '\\uece3'),\n    DOUGHNUT_CHART(\"bxs-doughnut-chart\", '\\uece4'),\n    DOWNLOAD(\"bxs-download\", '\\uece9'),\n    DOWNVOTE(\"bxs-downvote\", '\\uecea'),\n    DOWN_ARROW(\"bxs-down-arrow\", '\\uece5'),\n    DOWN_ARROW_ALT(\"bxs-down-arrow-alt\", '\\uece6'),\n    DOWN_ARROW_CIRCLE(\"bxs-down-arrow-circle\", '\\uece7'),\n    DOWN_ARROW_SQUARE(\"bxs-down-arrow-square\", '\\uece8'),\n    DRINK(\"bxs-drink\", '\\ueceb'),\n    DROPLET(\"bxs-droplet\", '\\uecec'),\n    DROPLET_HALF(\"bxs-droplet-half\", '\\ueced'),\n    DRYER(\"bxs-dryer\", '\\uecee'),\n    DUPLICATE(\"bxs-duplicate\", '\\uecef'),\n    EDIT(\"bxs-edit\", '\\uecf0'),\n    EDIT_ALT(\"bxs-edit-alt\", '\\uecf1'),\n    EDIT_LOCATION(\"bxs-edit-location\", '\\uecf2'),\n    EJECT(\"bxs-eject\", '\\uecf3'),\n    ENVELOPE(\"bxs-envelope\", '\\uecf4'),\n    ENVELOPE_OPEN(\"bxs-envelope-open\", '\\uecf5'),\n    ERASER(\"bxs-eraser\", '\\uecf6'),\n    ERROR(\"bxs-error\", '\\uecf7'),\n    ERROR_ALT(\"bxs-error-alt\", '\\uecf8'),\n    ERROR_CIRCLE(\"bxs-error-circle\", '\\uecf9'),\n    EV_STATION(\"bxs-ev-station\", '\\uecfa'),\n    EXIT(\"bxs-exit\", '\\uecfb'),\n    EXTENSION(\"bxs-extension\", '\\uecfc'),\n    EYEDROPPER(\"bxs-eyedropper\", '\\uecfd'),\n    FACE(\"bxs-face\", '\\uecfe'),\n    FACE_MASK(\"bxs-face-mask\", '\\uecff'),\n    FACTORY(\"bxs-factory\", '\\ued00'),\n    FAST_FORWARD_CIRCLE(\"bxs-fast-forward-circle\", '\\ued01'),\n    FILE(\"bxs-file\", '\\ued02'),\n    FILE_ARCHIVE(\"bxs-file-archive\", '\\ued03'),\n    FILE_BLANK(\"bxs-file-blank\", '\\ued04'),\n    FILE_CSS(\"bxs-file-css\", '\\ued05'),\n    FILE_DOC(\"bxs-file-doc\", '\\ued06'),\n    FILE_EXPORT(\"bxs-file-export\", '\\ued07'),\n    FILE_FIND(\"bxs-file-find\", '\\ued08'),\n    FILE_GIF(\"bxs-file-gif\", '\\ued09'),\n    FILE_HTML(\"bxs-file-html\", '\\ued0a'),\n    FILE_IMAGE(\"bxs-file-image\", '\\ued0b'),\n    FILE_IMPORT(\"bxs-file-import\", '\\ued0c'),\n    FILE_JPG(\"bxs-file-jpg\", '\\ued0d'),\n    FILE_JS(\"bxs-file-js\", '\\ued0e'),\n    FILE_JSON(\"bxs-file-json\", '\\ued0f'),\n    FILE_MD(\"bxs-file-md\", '\\ued10'),\n    FILE_PDF(\"bxs-file-pdf\", '\\ued11'),\n    FILE_PLUS(\"bxs-file-plus\", '\\ued12'),\n    FILE_PNG(\"bxs-file-png\", '\\ued13'),\n    FILE_TXT(\"bxs-file-txt\", '\\ued14'),\n    FILM(\"bxs-film\", '\\ued15'),\n    FILTER_ALT(\"bxs-filter-alt\", '\\ued16'),\n    FIRST_AID(\"bxs-first-aid\", '\\ued17'),\n    FLAG(\"bxs-flag\", '\\ued18'),\n    FLAG_ALT(\"bxs-flag-alt\", '\\ued19'),\n    FLAG_CHECKERED(\"bxs-flag-checkered\", '\\ued1a'),\n    FLAME(\"bxs-flame\", '\\ued1b'),\n    FLASK(\"bxs-flask\", '\\ued1c'),\n    FLORIST(\"bxs-florist\", '\\ued1d'),\n    FOLDER(\"bxs-folder\", '\\ued1e'),\n    FOLDER_MINUS(\"bxs-folder-minus\", '\\ued1f'),\n    FOLDER_OPEN(\"bxs-folder-open\", '\\ued20'),\n    FOLDER_PLUS(\"bxs-folder-plus\", '\\ued21'),\n    FOOD_MENU(\"bxs-food-menu\", '\\ued22'),\n    FRIDGE(\"bxs-fridge\", '\\ued23'),\n    GAME(\"bxs-game\", '\\ued24'),\n    GAS_PUMP(\"bxs-gas-pump\", '\\ued25'),\n    GHOST(\"bxs-ghost\", '\\ued26'),\n    GIFT(\"bxs-gift\", '\\ued27'),\n    GRADUATION(\"bxs-graduation\", '\\ued28'),\n    GRID(\"bxs-grid\", '\\ued29'),\n    GRID_ALT(\"bxs-grid-alt\", '\\ued2a'),\n    GROUP(\"bxs-group\", '\\ued2b'),\n    GUITAR_AMP(\"bxs-guitar-amp\", '\\ued2c'),\n    HAND_DOWN(\"bxs-hand-down\", '\\ued2d'),\n    HAND_LEFT(\"bxs-hand-left\", '\\ued2e'),\n    HAND_RIGHT(\"bxs-hand-right\", '\\ued2f'),\n    HAND_UP(\"bxs-hand-up\", '\\ued30'),\n    HAPPY(\"bxs-happy\", '\\ued31'),\n    HAPPY_ALT(\"bxs-happy-alt\", '\\ued32'),\n    HAPPY_BEAMING(\"bxs-happy-beaming\", '\\ued33'),\n    HAPPY_HEART_EYES(\"bxs-happy-heart-eyes\", '\\ued34'),\n    HDD(\"bxs-hdd\", '\\ued35'),\n    HEART(\"bxs-heart\", '\\ued36'),\n    HEART_CIRCLE(\"bxs-heart-circle\", '\\ued37'),\n    HEART_SQUARE(\"bxs-heart-square\", '\\ued38'),\n    HELP_CIRCLE(\"bxs-help-circle\", '\\ued39'),\n    HIDE(\"bxs-hide\", '\\ued3a'),\n    HOME(\"bxs-home\", '\\ued3b'),\n    HOME_CIRCLE(\"bxs-home-circle\", '\\ued3c'),\n    HOME_HEART(\"bxs-home-heart\", '\\ued3d'),\n    HOME_SMILE(\"bxs-home-smile\", '\\ued3e'),\n    HOT(\"bxs-hot\", '\\ued3f'),\n    HOTEL(\"bxs-hotel\", '\\ued40'),\n    HOURGLASS(\"bxs-hourglass\", '\\ued41'),\n    HOURGLASS_BOTTOM(\"bxs-hourglass-bottom\", '\\ued42'),\n    HOURGLASS_TOP(\"bxs-hourglass-top\", '\\ued43'),\n    ID_CARD(\"bxs-id-card\", '\\ued44'),\n    IMAGE(\"bxs-image\", '\\ued45'),\n    IMAGE_ADD(\"bxs-image-add\", '\\ued46'),\n    IMAGE_ALT(\"bxs-image-alt\", '\\ued47'),\n    INBOX(\"bxs-inbox\", '\\ued48'),\n    INFO_CIRCLE(\"bxs-info-circle\", '\\ued49'),\n    INFO_SQUARE(\"bxs-info-square\", '\\ued4a'),\n    INSTITUTION(\"bxs-institution\", '\\ued4b'),\n    JOYSTICK(\"bxs-joystick\", '\\ued4c'),\n    JOYSTICK_ALT(\"bxs-joystick-alt\", '\\ued4d'),\n    JOYSTICK_BUTTON(\"bxs-joystick-button\", '\\ued4e'),\n    KEY(\"bxs-key\", '\\ued4f'),\n    KEYBOARD(\"bxs-keyboard\", '\\ued50'),\n    LABEL(\"bxs-label\", '\\ued51'),\n    LANDMARK(\"bxs-landmark\", '\\ued52'),\n    LANDSCAPE(\"bxs-landscape\", '\\ued53'),\n    LAUGH(\"bxs-laugh\", '\\ued54'),\n    LAYER(\"bxs-layer\", '\\ued55'),\n    LAYER_MINUS(\"bxs-layer-minus\", '\\ued56'),\n    LAYER_PLUS(\"bxs-layer-plus\", '\\ued57'),\n    LAYOUT(\"bxs-layout\", '\\ued58'),\n    LEFT_ARROW(\"bxs-left-arrow\", '\\ued59'),\n    LEFT_ARROW_ALT(\"bxs-left-arrow-alt\", '\\ued5a'),\n    LEFT_ARROW_CIRCLE(\"bxs-left-arrow-circle\", '\\ued5b'),\n    LEFT_ARROW_SQUARE(\"bxs-left-arrow-square\", '\\ued5c'),\n    LEFT_DOWN_ARROW_CIRCLE(\"bxs-left-down-arrow-circle\", '\\ued5d'),\n    LEFT_TOP_ARROW_CIRCLE(\"bxs-left-top-arrow-circle\", '\\ued5e'),\n    LIKE(\"bxs-like\", '\\ued5f'),\n    LOCATION_PLUS(\"bxs-location-plus\", '\\ued60'),\n    LOCK(\"bxs-lock\", '\\ued61'),\n    LOCK_ALT(\"bxs-lock-alt\", '\\ued62'),\n    LOCK_OPEN(\"bxs-lock-open\", '\\ued63'),\n    LOCK_OPEN_ALT(\"bxs-lock-open-alt\", '\\ued64'),\n    LOG_IN(\"bxs-log-in\", '\\ued65'),\n    LOG_IN_CIRCLE(\"bxs-log-in-circle\", '\\ued66'),\n    LOG_OUT(\"bxs-log-out\", '\\ued67'),\n    LOG_OUT_CIRCLE(\"bxs-log-out-circle\", '\\ued68'),\n    LOW_VISION(\"bxs-low-vision\", '\\ued69'),\n    MAGIC_WAND(\"bxs-magic-wand\", '\\ued6a'),\n    MAGNET(\"bxs-magnet\", '\\ued6b'),\n    MAP(\"bxs-map\", '\\ued6c'),\n    MAP_ALT(\"bxs-map-alt\", '\\ued6d'),\n    MAP_PIN(\"bxs-map-pin\", '\\ued6e'),\n    MASK(\"bxs-mask\", '\\ued6f'),\n    MEDAL(\"bxs-medal\", '\\ued70'),\n    MEGAPHONE(\"bxs-megaphone\", '\\ued71'),\n    MEH(\"bxs-meh\", '\\ued72'),\n    MEH_ALT(\"bxs-meh-alt\", '\\ued73'),\n    MEH_BLANK(\"bxs-meh-blank\", '\\ued74'),\n    MEMORY_CARD(\"bxs-memory-card\", '\\ued75'),\n    MESSAGE(\"bxs-message\", '\\ued76'),\n    MESSAGE_ADD(\"bxs-message-add\", '\\ued77'),\n    MESSAGE_ALT(\"bxs-message-alt\", '\\ued78'),\n    MESSAGE_ALT_ADD(\"bxs-message-alt-add\", '\\ued79'),\n    MESSAGE_ALT_CHECK(\"bxs-message-alt-check\", '\\ued7a'),\n    MESSAGE_ALT_DETAIL(\"bxs-message-alt-detail\", '\\ued7b'),\n    MESSAGE_ALT_DOTS(\"bxs-message-alt-dots\", '\\ued7c'),\n    MESSAGE_ALT_EDIT(\"bxs-message-alt-edit\", '\\ued7d'),\n    MESSAGE_ALT_ERROR(\"bxs-message-alt-error\", '\\ued7e'),\n    MESSAGE_ALT_MINUS(\"bxs-message-alt-minus\", '\\ued7f'),\n    MESSAGE_ALT_X(\"bxs-message-alt-x\", '\\ued80'),\n    MESSAGE_CHECK(\"bxs-message-check\", '\\ued81'),\n    MESSAGE_DETAIL(\"bxs-message-detail\", '\\ued82'),\n    MESSAGE_DOTS(\"bxs-message-dots\", '\\ued83'),\n    MESSAGE_EDIT(\"bxs-message-edit\", '\\ued84'),\n    MESSAGE_ERROR(\"bxs-message-error\", '\\ued85'),\n    MESSAGE_MINUS(\"bxs-message-minus\", '\\ued86'),\n    MESSAGE_ROUNDED(\"bxs-message-rounded\", '\\ued87'),\n    MESSAGE_ROUNDED_ADD(\"bxs-message-rounded-add\", '\\ued88'),\n    MESSAGE_ROUNDED_CHECK(\"bxs-message-rounded-check\", '\\ued89'),\n    MESSAGE_ROUNDED_DETAIL(\"bxs-message-rounded-detail\", '\\ued8a'),\n    MESSAGE_ROUNDED_DOTS(\"bxs-message-rounded-dots\", '\\ued8b'),\n    MESSAGE_ROUNDED_EDIT(\"bxs-message-rounded-edit\", '\\ued8c'),\n    MESSAGE_ROUNDED_ERROR(\"bxs-message-rounded-error\", '\\ued8d'),\n    MESSAGE_ROUNDED_MINUS(\"bxs-message-rounded-minus\", '\\ued8e'),\n    MESSAGE_ROUNDED_X(\"bxs-message-rounded-x\", '\\ued8f'),\n    MESSAGE_SQUARE(\"bxs-message-square\", '\\ued90'),\n    MESSAGE_SQUARE_ADD(\"bxs-message-square-add\", '\\ued91'),\n    MESSAGE_SQUARE_CHECK(\"bxs-message-square-check\", '\\ued92'),\n    MESSAGE_SQUARE_DETAIL(\"bxs-message-square-detail\", '\\ued93'),\n    MESSAGE_SQUARE_DOTS(\"bxs-message-square-dots\", '\\ued94'),\n    MESSAGE_SQUARE_EDIT(\"bxs-message-square-edit\", '\\ued95'),\n    MESSAGE_SQUARE_ERROR(\"bxs-message-square-error\", '\\ued96'),\n    MESSAGE_SQUARE_MINUS(\"bxs-message-square-minus\", '\\ued97'),\n    MESSAGE_SQUARE_X(\"bxs-message-square-x\", '\\ued98'),\n    MESSAGE_X(\"bxs-message-x\", '\\ued99'),\n    METEOR(\"bxs-meteor\", '\\ued9a'),\n    MICROCHIP(\"bxs-microchip\", '\\ued9b'),\n    MICROPHONE(\"bxs-microphone\", '\\ued9c'),\n    MICROPHONE_ALT(\"bxs-microphone-alt\", '\\ued9d'),\n    MICROPHONE_OFF(\"bxs-microphone-off\", '\\ued9e'),\n    MINUS_CIRCLE(\"bxs-minus-circle\", '\\ued9f'),\n    MINUS_SQUARE(\"bxs-minus-square\", '\\ueda0'),\n    MOBILE(\"bxs-mobile\", '\\ueda1'),\n    MOBILE_VIBRATION(\"bxs-mobile-vibration\", '\\ueda2'),\n    MOON(\"bxs-moon\", '\\ueda3'),\n    MOUSE(\"bxs-mouse\", '\\ueda4'),\n    MOUSE_ALT(\"bxs-mouse-alt\", '\\ueda5'),\n    MOVIE(\"bxs-movie\", '\\ueda6'),\n    MOVIE_PLAY(\"bxs-movie-play\", '\\ueda7'),\n    MUSIC(\"bxs-music\", '\\ueda8'),\n    NAVIGATION(\"bxs-navigation\", '\\ueda9'),\n    NETWORK_CHART(\"bxs-network-chart\", '\\uedaa'),\n    NEWS(\"bxs-news\", '\\uedab'),\n    NOTE(\"bxs-note\", '\\uedad'),\n    NOTEPAD(\"bxs-notepad\", '\\uedae'),\n    NOTIFICATION(\"bxs-notification\", '\\uedaf'),\n    NOTIFICATION_OFF(\"bxs-notification-off\", '\\uedb0'),\n    NO_ENTRY(\"bxs-no-entry\", '\\uedac'),\n    OFFER(\"bxs-offer\", '\\uedb1'),\n    PACKAGE(\"bxs-package\", '\\uedb2'),\n    PAINT(\"bxs-paint\", '\\uedb3'),\n    PAINT_ROLL(\"bxs-paint-roll\", '\\uedb4'),\n    PALETTE(\"bxs-palette\", '\\uedb5'),\n    PAPER_PLANE(\"bxs-paper-plane\", '\\uedb6'),\n    PARKING(\"bxs-parking\", '\\uedb7'),\n    PASTE(\"bxs-paste\", '\\uedb8'),\n    PEN(\"bxs-pen\", '\\uedb9'),\n    PENCIL(\"bxs-pencil\", '\\uedba'),\n    PHONE(\"bxs-phone\", '\\uedbb'),\n    PHONE_CALL(\"bxs-phone-call\", '\\uedbc'),\n    PHONE_INCOMING(\"bxs-phone-incoming\", '\\uedbd'),\n    PHONE_OUTGOING(\"bxs-phone-outgoing\", '\\uedbe'),\n    PHOTO_ALBUM(\"bxs-photo-album\", '\\uedbf'),\n    PIANO(\"bxs-piano\", '\\uedc0'),\n    PIE_CHART(\"bxs-pie-chart\", '\\uedc1'),\n    PIE_CHART_ALT(\"bxs-pie-chart-alt\", '\\uedc2'),\n    PIE_CHART_ALT_2(\"bxs-pie-chart-alt-2\", '\\uedc3'),\n    PIN(\"bxs-pin\", '\\uedc4'),\n    PIZZA(\"bxs-pizza\", '\\uedc5'),\n    PLANE(\"bxs-plane\", '\\uedc6'),\n    PLANET(\"bxs-planet\", '\\uedc9'),\n    PLANE_ALT(\"bxs-plane-alt\", '\\uedc7'),\n    PLANE_LAND(\"bxs-plane-land\", '\\uedc8'),\n    PLANE_TAKE_OFF(\"bxs-plane-take-off\", '\\uedca'),\n    PLAYLIST(\"bxs-playlist\", '\\uedcb'),\n    PLUG(\"bxs-plug\", '\\uedcc'),\n    PLUS_CIRCLE(\"bxs-plus-circle\", '\\uedcd'),\n    PLUS_SQUARE(\"bxs-plus-square\", '\\uedce'),\n    POINTER(\"bxs-pointer\", '\\uedcf'),\n    POLYGON(\"bxs-polygon\", '\\uedd0'),\n    PRINTER(\"bxs-printer\", '\\uedd1'),\n    PURCHASE_TAG(\"bxs-purchase-tag\", '\\uedd2'),\n    PURCHASE_TAG_ALT(\"bxs-purchase-tag-alt\", '\\uedd3'),\n    PYRAMID(\"bxs-pyramid\", '\\uedd4'),\n    QUOTE_ALT_LEFT(\"bxs-quote-alt-left\", '\\uedd5'),\n    QUOTE_ALT_RIGHT(\"bxs-quote-alt-right\", '\\uedd6'),\n    QUOTE_LEFT(\"bxs-quote-left\", '\\uedd7'),\n    QUOTE_RIGHT(\"bxs-quote-right\", '\\uedd8'),\n    QUOTE_SINGLE_LEFT(\"bxs-quote-single-left\", '\\uedd9'),\n    QUOTE_SINGLE_RIGHT(\"bxs-quote-single-right\", '\\uedda'),\n    RADIATION(\"bxs-radiation\", '\\ueddb'),\n    RADIO(\"bxs-radio\", '\\ueddc'),\n    RECEIPT(\"bxs-receipt\", '\\ueddd'),\n    RECTANGLE(\"bxs-rectangle\", '\\uedde'),\n    RENAME(\"bxs-rename\", '\\ueddf'),\n    REPORT(\"bxs-report\", '\\uede0'),\n    REWIND_CIRCLE(\"bxs-rewind-circle\", '\\uede1'),\n    RIGHT_ARROW(\"bxs-right-arrow\", '\\uede2'),\n    RIGHT_ARROW_ALT(\"bxs-right-arrow-alt\", '\\uede3'),\n    RIGHT_ARROW_CIRCLE(\"bxs-right-arrow-circle\", '\\uede4'),\n    RIGHT_ARROW_SQUARE(\"bxs-right-arrow-square\", '\\uede5'),\n    RIGHT_DOWN_ARROW_CIRCLE(\"bxs-right-down-arrow-circle\", '\\uede6'),\n    RIGHT_TOP_ARROW_CIRCLE(\"bxs-right-top-arrow-circle\", '\\uede7'),\n    ROCKET(\"bxs-rocket\", '\\uede8'),\n    RULER(\"bxs-ruler\", '\\uede9'),\n    SAD(\"bxs-sad\", '\\uedea'),\n    SAVE(\"bxs-save\", '\\uedeb'),\n    SCHOOL(\"bxs-school\", '\\uedec'),\n    SEARCH(\"bxs-search\", '\\ueded'),\n    SEARCH_ALT_2(\"bxs-search-alt-2\", '\\uedee'),\n    SELECT_MULTIPLE(\"bxs-select-multiple\", '\\uedef'),\n    SEND(\"bxs-send\", '\\uedf0'),\n    SERVER(\"bxs-server\", '\\uedf1'),\n    SHAPES(\"bxs-shapes\", '\\uedf2'),\n    SHARE(\"bxs-share\", '\\uedf3'),\n    SHARE_ALT(\"bxs-share-alt\", '\\uedf4'),\n    SHIELD(\"bxs-shield\", '\\uedf5'),\n    SHIELD_ALT_2(\"bxs-shield-alt-2\", '\\uedf6'),\n    SHIELD_X(\"bxs-shield-x\", '\\uedf7'),\n    SHIP(\"bxs-ship\", '\\uedf8'),\n    SHOCKED(\"bxs-shocked\", '\\uedf9'),\n    SHOPPING_BAG(\"bxs-shopping-bag\", '\\uedfa'),\n    SHOPPING_BAGS(\"bxs-shopping-bags\", '\\uedfc'),\n    SHOPPING_BAG_ALT(\"bxs-shopping-bag-alt\", '\\uedfb'),\n    SHOW(\"bxs-show\", '\\uedfd'),\n    SKIP_NEXT_CIRCLE(\"bxs-skip-next-circle\", '\\uedfe'),\n    SKIP_PREVIOUS_CIRCLE(\"bxs-skip-previous-circle\", '\\uedff'),\n    SKULL(\"bxs-skull\", '\\uee00'),\n    SLEEPY(\"bxs-sleepy\", '\\uee01'),\n    SLIDESHOW(\"bxs-slideshow\", '\\uee02'),\n    SMILE(\"bxs-smile\", '\\uee03'),\n    SORT_ALT(\"bxs-sort-alt\", '\\uee04'),\n    SPA(\"bxs-spa\", '\\uee05'),\n    SPRAY_CAN(\"bxs-spray-can\", '\\uee06'),\n    SPREADSHEET(\"bxs-spreadsheet\", '\\uee07'),\n    SQUARE(\"bxs-square\", '\\uee08'),\n    SQUARE_ROUNDED(\"bxs-square-rounded\", '\\uee09'),\n    STAR(\"bxs-star\", '\\uee0a'),\n    STAR_HALF(\"bxs-star-half\", '\\uee0b'),\n    STICKER(\"bxs-sticker\", '\\uee0c'),\n    STOPWATCH(\"bxs-stopwatch\", '\\uee0d'),\n    STORE(\"bxs-store\", '\\uee0e'),\n    STORE_ALT(\"bxs-store-alt\", '\\uee0f'),\n    SUN(\"bxs-sun\", '\\uee10'),\n    TACHOMETER(\"bxs-tachometer\", '\\uee11'),\n    TAG(\"bxs-tag\", '\\uee12'),\n    TAG_ALT(\"bxs-tag-alt\", '\\uee13'),\n    TAG_X(\"bxs-tag-x\", '\\uee14'),\n    TAXI(\"bxs-taxi\", '\\uee15'),\n    TENNIS_BALL(\"bxs-tennis-ball\", '\\uee16'),\n    TERMINAL(\"bxs-terminal\", '\\uee17'),\n    THERMOMETER(\"bxs-thermometer\", '\\uee18'),\n    TIME(\"bxs-time\", '\\uee19'),\n    TIMER(\"bxs-timer\", '\\uee1b'),\n    TIME_FIVE(\"bxs-time-five\", '\\uee1a'),\n    TIRED(\"bxs-tired\", '\\uee1c'),\n    TOGGLE_LEFT(\"bxs-toggle-left\", '\\uee1d'),\n    TOGGLE_RIGHT(\"bxs-toggle-right\", '\\uee1e'),\n    TONE(\"bxs-tone\", '\\uee1f'),\n    TORCH(\"bxs-torch\", '\\uee20'),\n    TO_TOP(\"bxs-to-top\", '\\uee21'),\n    TRAFFIC(\"bxs-traffic\", '\\uee22'),\n    TRAFFIC_BARRIER(\"bxs-traffic-barrier\", '\\uee23'),\n    TRAFFIC_CONE(\"bxs-traffic-cone\", '\\uee24'),\n    TRAIN(\"bxs-train\", '\\uee25'),\n    TRASH(\"bxs-trash\", '\\uee26'),\n    TRASH_ALT(\"bxs-trash-alt\", '\\uee27'),\n    TREE(\"bxs-tree\", '\\uee28'),\n    TROPHY(\"bxs-trophy\", '\\uee29'),\n    TRUCK(\"bxs-truck\", '\\uee2a'),\n    TV(\"bxs-tv\", '\\uee2c'),\n    T_SHIRT(\"bxs-t-shirt\", '\\uee2b'),\n    UPSIDE_DOWN(\"bxs-upside-down\", '\\uee31'),\n    UPVOTE(\"bxs-upvote\", '\\uee32'),\n    UP_ARROW(\"bxs-up-arrow\", '\\uee2d'),\n    UP_ARROW_ALT(\"bxs-up-arrow-alt\", '\\uee2e'),\n    UP_ARROW_CIRCLE(\"bxs-up-arrow-circle\", '\\uee2f'),\n    UP_ARROW_SQUARE(\"bxs-up-arrow-square\", '\\uee30'),\n    USER(\"bxs-user\", '\\uee33'),\n    USER_ACCOUNT(\"bxs-user-account\", '\\uee34'),\n    USER_BADGE(\"bxs-user-badge\", '\\uee35'),\n    USER_CHECK(\"bxs-user-check\", '\\uee36'),\n    USER_CIRCLE(\"bxs-user-circle\", '\\uee37'),\n    USER_DETAIL(\"bxs-user-detail\", '\\uee38'),\n    USER_MINUS(\"bxs-user-minus\", '\\uee39'),\n    USER_PIN(\"bxs-user-pin\", '\\uee3a'),\n    USER_PLUS(\"bxs-user-plus\", '\\uee3b'),\n    USER_RECTANGLE(\"bxs-user-rectangle\", '\\uee3c'),\n    USER_VOICE(\"bxs-user-voice\", '\\uee3d'),\n    USER_X(\"bxs-user-x\", '\\uee3e'),\n    VECTOR(\"bxs-vector\", '\\uee3f'),\n    VIAL(\"bxs-vial\", '\\uee40'),\n    VIDEO(\"bxs-video\", '\\uee41'),\n    VIDEOS(\"bxs-videos\", '\\uee45'),\n    VIDEO_OFF(\"bxs-video-off\", '\\uee42'),\n    VIDEO_PLUS(\"bxs-video-plus\", '\\uee43'),\n    VIDEO_RECORDING(\"bxs-video-recording\", '\\uee44'),\n    VIRUS(\"bxs-virus\", '\\uee46'),\n    VIRUS_BLOCK(\"bxs-virus-block\", '\\uee47'),\n    VOLUME(\"bxs-volume\", '\\uee48'),\n    VOLUME_FULL(\"bxs-volume-full\", '\\uee49'),\n    VOLUME_LOW(\"bxs-volume-low\", '\\uee4a'),\n    VOLUME_MUTE(\"bxs-volume-mute\", '\\uee4b'),\n    WALLET(\"bxs-wallet\", '\\uee4c'),\n    WALLET_ALT(\"bxs-wallet-alt\", '\\uee4d'),\n    WASHER(\"bxs-washer\", '\\uee4e'),\n    WATCH(\"bxs-watch\", '\\uee4f'),\n    WATCH_ALT(\"bxs-watch-alt\", '\\uee50'),\n    WEBCAM(\"bxs-webcam\", '\\uee51'),\n    WIDGET(\"bxs-widget\", '\\uee52'),\n    WINDOW_ALT(\"bxs-window-alt\", '\\uee53'),\n    WINE(\"bxs-wine\", '\\uee54'),\n    WINK_SMILE(\"bxs-wink-smile\", '\\uee55'),\n    WINK_TONGUE(\"bxs-wink-tongue\", '\\uee56'),\n    WRENCH(\"bxs-wrench\", '\\uee57'),\n    X_CIRCLE(\"bxs-x-circle\", '\\uee58'),\n    X_SQUARE(\"bxs-x-square\", '\\uee59'),\n    YIN_YANG(\"bxs-yin-yang\", '\\uee5a'),\n    ZAP(\"bxs-zap\", '\\uee5b'),\n    ZOOM_IN(\"bxs-zoom-in\", '\\uee5c'),\n    ZOOM_OUT(\"bxs-zoom-out\", '\\uee5d');\n\n    public static BoxiconsSolid findByDescription(String description) {\n        for (BoxiconsSolid font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    BoxiconsSolid(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-boxicons-pack/src/main/java/org/kordamp/ikonli/boxicons/BoxiconsSolidIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.boxicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BoxiconsSolidIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/boxicons/2.0.7/fonts/boxicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bxs-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return BoxiconsSolid.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"boxicons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-boxicons-pack/src/main/java/org/kordamp/ikonli/boxicons/BoxiconsSolidIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.boxicons;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(org.kordamp.ikonli.IkonProvider.class)\npublic class BoxiconsSolidIkonProvider implements org.kordamp.ikonli.IkonProvider<BoxiconsSolid> {\n    @Override\n    public Class<BoxiconsSolid> getIkon() {\n        return BoxiconsSolid.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-boxicons-pack/src/main/resources/META-INF/resources/boxicons/2.0.7/css/boxicons.css",
    "content": "@font-face\n{\n    font-family: 'boxicons';\n    font-weight: normal;\n    font-style: normal;\n\n    src: url('../fonts/boxicons.eot');\n    src: url('../fonts/boxicons.eot') format('embedded-opentype'),\n    url('../fonts/boxicons.woff2') format('woff2'),\n    url('../fonts/boxicons.woff') format('woff'),\n    url('../fonts/boxicons.ttf') format('truetype'),\n    url('../fonts/boxicons.svg?#boxicons') format('svg');\n}\n.bx,\n.bxs,\n.bxl\n{\n    font-family: 'boxicons' !important;\n    font-weight: normal;\n    font-style: normal;\n    font-variant: normal;\n    line-height: 1;\n\n    display: inline-block;\n\n    text-transform: none;\n\n    speak: none;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n}\n.bx-ul\n{\n    margin-left: 2em;\n    padding-left: 0;\n\n    list-style: none;\n}\n.bx-ul > li\n{\n    position: relative;\n}\n.bx-ul .bx\n{\n    font-size: inherit;\n    line-height: inherit;\n\n    position: absolute;\n    left: -2em;\n\n    width: 2em;\n\n    text-align: center;\n}\n@-webkit-keyframes spin\n{\n    0%\n    {\n        -webkit-transform: rotate(0);\n                transform: rotate(0);\n    }\n    100%\n    {\n        -webkit-transform: rotate(359deg);\n                transform: rotate(359deg);\n    }\n}\n@keyframes spin\n{\n    0%\n    {\n        -webkit-transform: rotate(0);\n                transform: rotate(0);\n    }\n    100%\n    {\n        -webkit-transform: rotate(359deg);\n                transform: rotate(359deg);\n    }\n}\n@-webkit-keyframes burst\n{\n    0%\n    {\n        -webkit-transform: scale(1);\n                transform: scale(1);\n\n        opacity: 1;\n    }\n    90%\n    {\n        -webkit-transform: scale(1.5);\n                transform: scale(1.5);\n\n        opacity: 0;\n    }\n}\n@keyframes burst\n{\n    0%\n    {\n        -webkit-transform: scale(1);\n                transform: scale(1);\n\n        opacity: 1;\n    }\n    90%\n    {\n        -webkit-transform: scale(1.5);\n                transform: scale(1.5);\n\n        opacity: 0;\n    }\n}\n@-webkit-keyframes flashing\n{\n    0%\n    {\n        opacity: 1;\n    }\n    45%\n    {\n        opacity: 0;\n    }\n    90%\n    {\n        opacity: 1;\n    }\n}\n@keyframes flashing\n{\n    0%\n    {\n        opacity: 1;\n    }\n    45%\n    {\n        opacity: 0;\n    }\n    90%\n    {\n        opacity: 1;\n    }\n}\n@-webkit-keyframes fade-left\n{\n    0%\n    {\n        -webkit-transform: translateX(0);\n                transform: translateX(0);\n\n        opacity: 1;\n    }\n    75%\n    {\n        -webkit-transform: translateX(-20px);\n                transform: translateX(-20px);\n\n        opacity: 0;\n    }\n}\n@keyframes fade-left\n{\n    0%\n    {\n        -webkit-transform: translateX(0);\n                transform: translateX(0);\n\n        opacity: 1;\n    }\n    75%\n    {\n        -webkit-transform: translateX(-20px);\n                transform: translateX(-20px);\n\n        opacity: 0;\n    }\n}\n@-webkit-keyframes fade-right\n{\n    0%\n    {\n        -webkit-transform: translateX(0);\n                transform: translateX(0);\n\n        opacity: 1;\n    }\n    75%\n    {\n        -webkit-transform: translateX(20px);\n                transform: translateX(20px);\n\n        opacity: 0;\n    }\n}\n@keyframes fade-right\n{\n    0%\n    {\n        -webkit-transform: translateX(0);\n                transform: translateX(0);\n\n        opacity: 1;\n    }\n    75%\n    {\n        -webkit-transform: translateX(20px);\n                transform: translateX(20px);\n\n        opacity: 0;\n    }\n}\n@-webkit-keyframes fade-up\n{\n    0%\n    {\n        -webkit-transform: translateY(0);\n                transform: translateY(0);\n\n        opacity: 1;\n    }\n    75%\n    {\n        -webkit-transform: translateY(-20px);\n                transform: translateY(-20px);\n\n        opacity: 0;\n    }\n}\n@keyframes fade-up\n{\n    0%\n    {\n        -webkit-transform: translateY(0);\n                transform: translateY(0);\n\n        opacity: 1;\n    }\n    75%\n    {\n        -webkit-transform: translateY(-20px);\n                transform: translateY(-20px);\n\n        opacity: 0;\n    }\n}\n@-webkit-keyframes fade-down\n{\n    0%\n    {\n        -webkit-transform: translateY(0);\n                transform: translateY(0);\n\n        opacity: 1;\n    }\n    75%\n    {\n        -webkit-transform: translateY(20px);\n                transform: translateY(20px);\n\n        opacity: 0;\n    }\n}\n@keyframes fade-down\n{\n    0%\n    {\n        -webkit-transform: translateY(0);\n                transform: translateY(0);\n\n        opacity: 1;\n    }\n    75%\n    {\n        -webkit-transform: translateY(20px);\n                transform: translateY(20px);\n\n        opacity: 0;\n    }\n}\n@-webkit-keyframes tada\n{\n    from\n    {\n        -webkit-transform: scale3d(1, 1, 1);\n                transform: scale3d(1, 1, 1);\n    }\n\n    10%,\n    20%\n    {\n        -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);\n                transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);\n    }\n\n    30%,\n    50%,\n    70%,\n    90%\n    {\n        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);\n                transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);\n    }\n\n    40%,\n    60%,\n    80%\n    {\n        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);\n                transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, -10deg);\n    }\n\n    to\n    {\n        -webkit-transform: scale3d(1, 1, 1);\n                transform: scale3d(1, 1, 1);\n    }\n}\n\n@keyframes tada\n{\n    from\n    {\n        -webkit-transform: scale3d(1, 1, 1);\n                transform: scale3d(1, 1, 1);\n    }\n\n    10%,\n    20%\n    {\n        -webkit-transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);\n                transform: scale3d(.95, .95, .95) rotate3d(0, 0, 1, -10deg);\n    }\n\n    30%,\n    50%,\n    70%,\n    90%\n    {\n        -webkit-transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);\n                transform: scale3d(1, 1, 1) rotate3d(0, 0, 1, 10deg);\n    }\n\n    40%,\n    60%,\n    80%\n    {\n        -webkit-transform: rotate3d(0, 0, 1, -10deg);\n                transform: rotate3d(0, 0, 1, -10deg);\n    }\n\n    to\n    {\n        -webkit-transform: scale3d(1, 1, 1);\n                transform: scale3d(1, 1, 1);\n    }\n}\n.bx-spin\n{\n    -webkit-animation: spin 2s linear infinite;\n            animation: spin 2s linear infinite;\n}\n.bx-spin-hover:hover\n{\n    -webkit-animation: spin 2s linear infinite;\n            animation: spin 2s linear infinite;\n}\n\n.bx-tada\n{\n    -webkit-animation: tada 1.5s ease infinite;\n            animation: tada 1.5s ease infinite;\n}\n.bx-tada-hover:hover\n{\n    -webkit-animation: tada 1.5s ease infinite;\n            animation: tada 1.5s ease infinite;\n}\n\n.bx-flashing\n{\n    -webkit-animation: flashing 1.5s infinite linear;\n            animation: flashing 1.5s infinite linear;\n}\n.bx-flashing-hover:hover\n{\n    -webkit-animation: flashing 1.5s infinite linear;\n            animation: flashing 1.5s infinite linear;\n}\n\n.bx-burst\n{\n    -webkit-animation: burst 1.5s infinite linear;\n            animation: burst 1.5s infinite linear;\n}\n.bx-burst-hover:hover\n{\n    -webkit-animation: burst 1.5s infinite linear;\n            animation: burst 1.5s infinite linear;\n}\n.bx-fade-up\n{\n    -webkit-animation: fade-up 1.5s infinite linear;\n            animation: fade-up 1.5s infinite linear;\n}\n.bx-fade-up-hover:hover\n{\n    -webkit-animation: fade-up 1.5s infinite linear;\n            animation: fade-up 1.5s infinite linear;\n}\n.bx-fade-down\n{\n    -webkit-animation: fade-down 1.5s infinite linear;\n            animation: fade-down 1.5s infinite linear;\n}\n.bx-fade-down-hover:hover\n{\n    -webkit-animation: fade-down 1.5s infinite linear;\n            animation: fade-down 1.5s infinite linear;\n}\n.bx-fade-left\n{\n    -webkit-animation: fade-left 1.5s infinite linear;\n            animation: fade-left 1.5s infinite linear;\n}\n.bx-fade-left-hover:hover\n{\n    -webkit-animation: fade-left 1.5s infinite linear;\n            animation: fade-left 1.5s infinite linear;\n}\n.bx-fade-right\n{\n    -webkit-animation: fade-right 1.5s infinite linear;\n            animation: fade-right 1.5s infinite linear;\n}\n.bx-fade-right-hover:hover\n{\n    -webkit-animation: fade-right 1.5s infinite linear;\n            animation: fade-right 1.5s infinite linear;\n}\n.bx-xs\n{\n    font-size: 1rem!important;\n}\n.bx-sm\n{\n    font-size: 1.55rem!important;\n}\n.bx-md\n{\n    font-size: 2.25rem!important;\n}\n.bx-fw\n{\n    font-size: 1.2857142857em;\n    line-height: .8em;\n\n    width: 1.2857142857em;\n    height: .8em;\n    margin-top: -.2em!important;\n\n    vertical-align: middle;\n}\n\n.bx-lg\n{\n    font-size: 3.0rem!important;\n}\n.bx-pull-left\n{\n    float: left;\n\n    margin-right: .3em!important;\n}\n\n.bx-pull-right\n{\n    float: right;\n\n    margin-left: .3em!important;\n}\n.bx-rotate-90\n{\n    transform: rotate(90deg);\n\n    -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=1)';\n}\n.bx-rotate-180\n{\n    transform: rotate(180deg);\n\n    -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2)';\n}\n.bx-rotate-270\n{\n    transform: rotate(270deg);\n\n    -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=3)';\n}\n.bx-flip-horizontal\n{\n    transform: scaleX(-1);\n\n    -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)';\n}\n.bx-flip-vertical\n{\n    transform: scaleY(-1);\n\n    -ms-filter: 'progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)';\n}\n.bx-border\n{\n    padding: .25em;\n\n    border: .07em solid rgba(0,0,0,.1);\n    border-radius: .25em;\n}\n.bx-border-circle\n{\n    padding: .25em;\n\n    border: .07em solid rgba(0,0,0,.1);\n    border-radius: 50%;\n}\n\n  .bx-abacus:before {\n    content: \"\\e900\";\n  }\n  .bx-accessibility:before {\n    content: \"\\e901\";\n  }\n  .bx-add-to-queue:before {\n    content: \"\\e902\";\n  }\n  .bx-adjust:before {\n    content: \"\\e903\";\n  }\n  .bx-alarm:before {\n    content: \"\\e904\";\n  }\n  .bx-alarm-add:before {\n    content: \"\\e905\";\n  }\n  .bx-alarm-exclamation:before {\n    content: \"\\e906\";\n  }\n  .bx-alarm-off:before {\n    content: \"\\e907\";\n  }\n  .bx-alarm-snooze:before {\n    content: \"\\e908\";\n  }\n  .bx-album:before {\n    content: \"\\e909\";\n  }\n  .bx-align-justify:before {\n    content: \"\\e90a\";\n  }\n  .bx-align-left:before {\n    content: \"\\e90b\";\n  }\n  .bx-align-middle:before {\n    content: \"\\e90c\";\n  }\n  .bx-align-right:before {\n    content: \"\\e90d\";\n  }\n  .bx-analyse:before {\n    content: \"\\e90e\";\n  }\n  .bx-anchor:before {\n    content: \"\\e90f\";\n  }\n  .bx-angry:before {\n    content: \"\\e910\";\n  }\n  .bx-aperture:before {\n    content: \"\\e911\";\n  }\n  .bx-arch:before {\n    content: \"\\e912\";\n  }\n  .bx-archive:before {\n    content: \"\\e913\";\n  }\n  .bx-archive-in:before {\n    content: \"\\e914\";\n  }\n  .bx-archive-out:before {\n    content: \"\\e915\";\n  }\n  .bx-area:before {\n    content: \"\\e916\";\n  }\n  .bx-arrow-back:before {\n    content: \"\\e917\";\n  }\n  .bx-arrow-from-bottom:before {\n    content: \"\\e918\";\n  }\n  .bx-arrow-from-left:before {\n    content: \"\\e919\";\n  }\n  .bx-arrow-from-right:before {\n    content: \"\\e91a\";\n  }\n  .bx-arrow-from-top:before {\n    content: \"\\e91b\";\n  }\n  .bx-arrow-to-bottom:before {\n    content: \"\\e91c\";\n  }\n  .bx-arrow-to-left:before {\n    content: \"\\e91d\";\n  }\n  .bx-arrow-to-right:before {\n    content: \"\\e91e\";\n  }\n  .bx-arrow-to-top:before {\n    content: \"\\e91f\";\n  }\n  .bx-at:before {\n    content: \"\\e920\";\n  }\n  .bx-atom:before {\n    content: \"\\e921\";\n  }\n  .bx-award:before {\n    content: \"\\e922\";\n  }\n  .bx-badge:before {\n    content: \"\\e923\";\n  }\n  .bx-badge-check:before {\n    content: \"\\e924\";\n  }\n  .bx-ball:before {\n    content: \"\\e925\";\n  }\n  .bx-band-aid:before {\n    content: \"\\e926\";\n  }\n  .bx-bar-chart:before {\n    content: \"\\e927\";\n  }\n  .bx-bar-chart-alt:before {\n    content: \"\\e928\";\n  }\n  .bx-bar-chart-alt-2:before {\n    content: \"\\e929\";\n  }\n  .bx-bar-chart-square:before {\n    content: \"\\e92a\";\n  }\n  .bx-barcode:before {\n    content: \"\\e92b\";\n  }\n  .bx-barcode-reader:before {\n    content: \"\\e92c\";\n  }\n  .bx-baseball:before {\n    content: \"\\e92d\";\n  }\n  .bx-basket:before {\n    content: \"\\e92e\";\n  }\n  .bx-basketball:before {\n    content: \"\\e92f\";\n  }\n  .bx-bath:before {\n    content: \"\\e930\";\n  }\n  .bx-battery:before {\n    content: \"\\e931\";\n  }\n  .bx-bed:before {\n    content: \"\\e932\";\n  }\n  .bx-been-here:before {\n    content: \"\\e933\";\n  }\n  .bx-beer:before {\n    content: \"\\e934\";\n  }\n  .bx-bell:before {\n    content: \"\\e935\";\n  }\n  .bx-bell-minus:before {\n    content: \"\\e936\";\n  }\n  .bx-bell-off:before {\n    content: \"\\e937\";\n  }\n  .bx-bell-plus:before {\n    content: \"\\e938\";\n  }\n  .bx-bible:before {\n    content: \"\\e939\";\n  }\n  .bx-bitcoin:before {\n    content: \"\\e93a\";\n  }\n  .bx-blanket:before {\n    content: \"\\e93b\";\n  }\n  .bx-block:before {\n    content: \"\\e93c\";\n  }\n  .bx-bluetooth:before {\n    content: \"\\e93d\";\n  }\n  .bx-body:before {\n    content: \"\\e93e\";\n  }\n  .bx-bold:before {\n    content: \"\\e93f\";\n  }\n  .bx-bolt-circle:before {\n    content: \"\\e940\";\n  }\n  .bx-bomb:before {\n    content: \"\\e941\";\n  }\n  .bx-bone:before {\n    content: \"\\e942\";\n  }\n  .bx-bong:before {\n    content: \"\\e943\";\n  }\n  .bx-book:before {\n    content: \"\\e944\";\n  }\n  .bx-book-add:before {\n    content: \"\\e945\";\n  }\n  .bx-book-alt:before {\n    content: \"\\e946\";\n  }\n  .bx-book-bookmark:before {\n    content: \"\\e947\";\n  }\n  .bx-book-content:before {\n    content: \"\\e948\";\n  }\n  .bx-book-heart:before {\n    content: \"\\e949\";\n  }\n  .bx-bookmark:before {\n    content: \"\\e94a\";\n  }\n  .bx-bookmark-alt:before {\n    content: \"\\e94b\";\n  }\n  .bx-bookmark-alt-minus:before {\n    content: \"\\e94c\";\n  }\n  .bx-bookmark-alt-plus:before {\n    content: \"\\e94d\";\n  }\n  .bx-bookmark-heart:before {\n    content: \"\\e94e\";\n  }\n  .bx-bookmark-minus:before {\n    content: \"\\e94f\";\n  }\n  .bx-bookmark-plus:before {\n    content: \"\\e950\";\n  }\n  .bx-bookmarks:before {\n    content: \"\\e951\";\n  }\n  .bx-book-open:before {\n    content: \"\\e952\";\n  }\n  .bx-book-reader:before {\n    content: \"\\e953\";\n  }\n  .bx-border-all:before {\n    content: \"\\e954\";\n  }\n  .bx-border-bottom:before {\n    content: \"\\e955\";\n  }\n  .bx-border-inner:before {\n    content: \"\\e956\";\n  }\n  .bx-border-left:before {\n    content: \"\\e957\";\n  }\n  .bx-border-none:before {\n    content: \"\\e958\";\n  }\n  .bx-border-outer:before {\n    content: \"\\e959\";\n  }\n  .bx-border-radius:before {\n    content: \"\\e95a\";\n  }\n  .bx-border-right:before {\n    content: \"\\e95b\";\n  }\n  .bx-border-top:before {\n    content: \"\\e95c\";\n  }\n  .bx-bot:before {\n    content: \"\\e95d\";\n  }\n  .bx-bowling-ball:before {\n    content: \"\\e95e\";\n  }\n  .bx-box:before {\n    content: \"\\e95f\";\n  }\n  .bx-bracket:before {\n    content: \"\\e960\";\n  }\n  .bx-braille:before {\n    content: \"\\e961\";\n  }\n  .bx-brain:before {\n    content: \"\\e962\";\n  }\n  .bx-briefcase:before {\n    content: \"\\e963\";\n  }\n  .bx-briefcase-alt:before {\n    content: \"\\e964\";\n  }\n  .bx-briefcase-alt-2:before {\n    content: \"\\e965\";\n  }\n  .bx-brightness:before {\n    content: \"\\e966\";\n  }\n  .bx-brightness-half:before {\n    content: \"\\e967\";\n  }\n  .bx-broadcast:before {\n    content: \"\\e968\";\n  }\n  .bx-brush:before {\n    content: \"\\e969\";\n  }\n  .bx-brush-alt:before {\n    content: \"\\e96a\";\n  }\n  .bx-bug:before {\n    content: \"\\e96b\";\n  }\n  .bx-bug-alt:before {\n    content: \"\\e96c\";\n  }\n  .bx-building:before {\n    content: \"\\e96d\";\n  }\n  .bx-building-house:before {\n    content: \"\\e96e\";\n  }\n  .bx-buildings:before {\n    content: \"\\e96f\";\n  }\n  .bx-bulb:before {\n    content: \"\\e970\";\n  }\n  .bx-bullseye:before {\n    content: \"\\e971\";\n  }\n  .bx-buoy:before {\n    content: \"\\e972\";\n  }\n  .bx-bus:before {\n    content: \"\\e973\";\n  }\n  .bx-bus-school:before {\n    content: \"\\e974\";\n  }\n  .bx-cabinet:before {\n    content: \"\\e975\";\n  }\n  .bx-cake:before {\n    content: \"\\e976\";\n  }\n  .bx-calculator:before {\n    content: \"\\e977\";\n  }\n  .bx-calendar:before {\n    content: \"\\e978\";\n  }\n  .bx-calendar-alt:before {\n    content: \"\\e979\";\n  }\n  .bx-calendar-check:before {\n    content: \"\\e97a\";\n  }\n  .bx-calendar-edit:before {\n    content: \"\\e97b\";\n  }\n  .bx-calendar-event:before {\n    content: \"\\e97c\";\n  }\n  .bx-calendar-exclamation:before {\n    content: \"\\e97d\";\n  }\n  .bx-calendar-heart:before {\n    content: \"\\e97e\";\n  }\n  .bx-calendar-minus:before {\n    content: \"\\e97f\";\n  }\n  .bx-calendar-plus:before {\n    content: \"\\e980\";\n  }\n  .bx-calendar-star:before {\n    content: \"\\e981\";\n  }\n  .bx-calendar-week:before {\n    content: \"\\e982\";\n  }\n  .bx-calendar-x:before {\n    content: \"\\e983\";\n  }\n  .bx-camera:before {\n    content: \"\\e984\";\n  }\n  .bx-camera-home:before {\n    content: \"\\e985\";\n  }\n  .bx-camera-movie:before {\n    content: \"\\e986\";\n  }\n  .bx-camera-off:before {\n    content: \"\\e987\";\n  }\n  .bx-capsule:before {\n    content: \"\\e988\";\n  }\n  .bx-captions:before {\n    content: \"\\e989\";\n  }\n  .bx-car:before {\n    content: \"\\e98a\";\n  }\n  .bx-card:before {\n    content: \"\\e98b\";\n  }\n  .bx-caret-down:before {\n    content: \"\\e98c\";\n  }\n  .bx-caret-down-circle:before {\n    content: \"\\e98d\";\n  }\n  .bx-caret-down-square:before {\n    content: \"\\e98e\";\n  }\n  .bx-caret-left:before {\n    content: \"\\e98f\";\n  }\n  .bx-caret-left-circle:before {\n    content: \"\\e990\";\n  }\n  .bx-caret-left-square:before {\n    content: \"\\e991\";\n  }\n  .bx-caret-right:before {\n    content: \"\\e992\";\n  }\n  .bx-caret-right-circle:before {\n    content: \"\\e993\";\n  }\n  .bx-caret-right-square:before {\n    content: \"\\e994\";\n  }\n  .bx-caret-up:before {\n    content: \"\\e995\";\n  }\n  .bx-caret-up-circle:before {\n    content: \"\\e996\";\n  }\n  .bx-caret-up-square:before {\n    content: \"\\e997\";\n  }\n  .bx-carousel:before {\n    content: \"\\e998\";\n  }\n  .bx-cart:before {\n    content: \"\\e999\";\n  }\n  .bx-cart-alt:before {\n    content: \"\\e99a\";\n  }\n  .bx-cast:before {\n    content: \"\\e99b\";\n  }\n  .bx-category:before {\n    content: \"\\e99c\";\n  }\n  .bx-category-alt:before {\n    content: \"\\e99d\";\n  }\n  .bx-cctv:before {\n    content: \"\\e99e\";\n  }\n  .bx-certification:before {\n    content: \"\\e99f\";\n  }\n  .bx-chair:before {\n    content: \"\\e9a0\";\n  }\n  .bx-chalkboard:before {\n    content: \"\\e9a1\";\n  }\n  .bx-chart:before {\n    content: \"\\e9a2\";\n  }\n  .bx-chat:before {\n    content: \"\\e9a3\";\n  }\n  .bx-check:before {\n    content: \"\\e9a4\";\n  }\n  .bx-checkbox:before {\n    content: \"\\e9a5\";\n  }\n  .bx-checkbox-checked:before {\n    content: \"\\e9a6\";\n  }\n  .bx-checkbox-square:before {\n    content: \"\\e9a7\";\n  }\n  .bx-check-circle:before {\n    content: \"\\e9a8\";\n  }\n  .bx-check-double:before {\n    content: \"\\e9a9\";\n  }\n  .bx-check-shield:before {\n    content: \"\\e9aa\";\n  }\n  .bx-check-square:before {\n    content: \"\\e9ab\";\n  }\n  .bx-chevron-down:before {\n    content: \"\\e9ac\";\n  }\n  .bx-chevron-down-circle:before {\n    content: \"\\e9ad\";\n  }\n  .bx-chevron-down-square:before {\n    content: \"\\e9ae\";\n  }\n  .bx-chevron-left:before {\n    content: \"\\e9af\";\n  }\n  .bx-chevron-left-circle:before {\n    content: \"\\e9b0\";\n  }\n  .bx-chevron-left-square:before {\n    content: \"\\e9b1\";\n  }\n  .bx-chevron-right:before {\n    content: \"\\e9b2\";\n  }\n  .bx-chevron-right-circle:before {\n    content: \"\\e9b3\";\n  }\n  .bx-chevron-right-square:before {\n    content: \"\\e9b4\";\n  }\n  .bx-chevrons-down:before {\n    content: \"\\e9b5\";\n  }\n  .bx-chevrons-left:before {\n    content: \"\\e9b6\";\n  }\n  .bx-chevrons-right:before {\n    content: \"\\e9b7\";\n  }\n  .bx-chevrons-up:before {\n    content: \"\\e9b8\";\n  }\n  .bx-chevron-up:before {\n    content: \"\\e9b9\";\n  }\n  .bx-chevron-up-circle:before {\n    content: \"\\e9ba\";\n  }\n  .bx-chevron-up-square:before {\n    content: \"\\e9bb\";\n  }\n  .bx-chip:before {\n    content: \"\\e9bc\";\n  }\n  .bx-church:before {\n    content: \"\\e9bd\";\n  }\n  .bx-circle:before {\n    content: \"\\e9be\";\n  }\n  .bx-clinic:before {\n    content: \"\\e9bf\";\n  }\n  .bx-clipboard:before {\n    content: \"\\e9c0\";\n  }\n  .bx-closet:before {\n    content: \"\\e9c1\";\n  }\n  .bx-cloud:before {\n    content: \"\\e9c2\";\n  }\n  .bx-cloud-download:before {\n    content: \"\\e9c3\";\n  }\n  .bx-cloud-drizzle:before {\n    content: \"\\e9c4\";\n  }\n  .bx-cloud-lightning:before {\n    content: \"\\e9c5\";\n  }\n  .bx-cloud-light-rain:before {\n    content: \"\\e9c6\";\n  }\n  .bx-cloud-rain:before {\n    content: \"\\e9c7\";\n  }\n  .bx-cloud-snow:before {\n    content: \"\\e9c8\";\n  }\n  .bx-cloud-upload:before {\n    content: \"\\e9c9\";\n  }\n  .bx-code:before {\n    content: \"\\e9ca\";\n  }\n  .bx-code-alt:before {\n    content: \"\\e9cb\";\n  }\n  .bx-code-block:before {\n    content: \"\\e9cc\";\n  }\n  .bx-code-curly:before {\n    content: \"\\e9cd\";\n  }\n  .bx-coffee:before {\n    content: \"\\e9ce\";\n  }\n  .bx-coffee-togo:before {\n    content: \"\\e9cf\";\n  }\n  .bx-cog:before {\n    content: \"\\e9d0\";\n  }\n  .bx-coin:before {\n    content: \"\\e9d1\";\n  }\n  .bx-coin-stack:before {\n    content: \"\\e9d2\";\n  }\n  .bx-collapse:before {\n    content: \"\\e9d3\";\n  }\n  .bx-collection:before {\n    content: \"\\e9d4\";\n  }\n  .bx-color-fill:before {\n    content: \"\\e9d5\";\n  }\n  .bx-columns:before {\n    content: \"\\e9d6\";\n  }\n  .bx-command:before {\n    content: \"\\e9d7\";\n  }\n  .bx-comment:before {\n    content: \"\\e9d8\";\n  }\n  .bx-comment-add:before {\n    content: \"\\e9d9\";\n  }\n  .bx-comment-check:before {\n    content: \"\\e9da\";\n  }\n  .bx-comment-detail:before {\n    content: \"\\e9db\";\n  }\n  .bx-comment-dots:before {\n    content: \"\\e9dc\";\n  }\n  .bx-comment-edit:before {\n    content: \"\\e9dd\";\n  }\n  .bx-comment-error:before {\n    content: \"\\e9de\";\n  }\n  .bx-comment-minus:before {\n    content: \"\\e9df\";\n  }\n  .bx-comment-x:before {\n    content: \"\\e9e0\";\n  }\n  .bx-compass:before {\n    content: \"\\e9e1\";\n  }\n  .bx-confused:before {\n    content: \"\\e9e2\";\n  }\n  .bx-conversation:before {\n    content: \"\\e9e3\";\n  }\n  .bx-cookie:before {\n    content: \"\\e9e4\";\n  }\n  .bx-cool:before {\n    content: \"\\e9e5\";\n  }\n  .bx-copy:before {\n    content: \"\\e9e6\";\n  }\n  .bx-copy-alt:before {\n    content: \"\\e9e7\";\n  }\n  .bx-copyright:before {\n    content: \"\\e9e8\";\n  }\n  .bx-credit-card:before {\n    content: \"\\e9e9\";\n  }\n  .bx-credit-card-alt:before {\n    content: \"\\e9ea\";\n  }\n  .bx-credit-card-front:before {\n    content: \"\\e9eb\";\n  }\n  .bx-crop:before {\n    content: \"\\e9ec\";\n  }\n  .bx-crosshair:before {\n    content: \"\\e9ed\";\n  }\n  .bx-crown:before {\n    content: \"\\e9ee\";\n  }\n  .bx-cube:before {\n    content: \"\\e9ef\";\n  }\n  .bx-cube-alt:before {\n    content: \"\\e9f0\";\n  }\n  .bx-cuboid:before {\n    content: \"\\e9f1\";\n  }\n  .bx-current-location:before {\n    content: \"\\e9f2\";\n  }\n  .bx-customize:before {\n    content: \"\\e9f3\";\n  }\n  .bx-cut:before {\n    content: \"\\e9f4\";\n  }\n  .bx-cycling:before {\n    content: \"\\e9f5\";\n  }\n  .bx-cylinder:before {\n    content: \"\\e9f6\";\n  }\n  .bx-data:before {\n    content: \"\\e9f7\";\n  }\n  .bx-desktop:before {\n    content: \"\\e9f8\";\n  }\n  .bx-detail:before {\n    content: \"\\e9f9\";\n  }\n  .bx-devices:before {\n    content: \"\\e9fa\";\n  }\n  .bx-dialpad:before {\n    content: \"\\e9fb\";\n  }\n  .bx-dialpad-alt:before {\n    content: \"\\e9fc\";\n  }\n  .bx-diamond:before {\n    content: \"\\e9fd\";\n  }\n  .bx-dice-1:before {\n    content: \"\\e9fe\";\n  }\n  .bx-dice-2:before {\n    content: \"\\e9ff\";\n  }\n  .bx-dice-3:before {\n    content: \"\\ea00\";\n  }\n  .bx-dice-4:before {\n    content: \"\\ea01\";\n  }\n  .bx-dice-5:before {\n    content: \"\\ea02\";\n  }\n  .bx-dice-6:before {\n    content: \"\\ea03\";\n  }\n  .bx-directions:before {\n    content: \"\\ea04\";\n  }\n  .bx-disc:before {\n    content: \"\\ea05\";\n  }\n  .bx-dish:before {\n    content: \"\\ea06\";\n  }\n  .bx-dislike:before {\n    content: \"\\ea07\";\n  }\n  .bx-dizzy:before {\n    content: \"\\ea08\";\n  }\n  .bx-dna:before {\n    content: \"\\ea09\";\n  }\n  .bx-dock-bottom:before {\n    content: \"\\ea0a\";\n  }\n  .bx-dock-left:before {\n    content: \"\\ea0b\";\n  }\n  .bx-dock-right:before {\n    content: \"\\ea0c\";\n  }\n  .bx-dock-top:before {\n    content: \"\\ea0d\";\n  }\n  .bx-dollar:before {\n    content: \"\\ea0e\";\n  }\n  .bx-dollar-circle:before {\n    content: \"\\ea0f\";\n  }\n  .bx-donate-blood:before {\n    content: \"\\ea10\";\n  }\n  .bx-donate-heart:before {\n    content: \"\\ea11\";\n  }\n  .bx-door-open:before {\n    content: \"\\ea12\";\n  }\n  .bx-dots-horizontal:before {\n    content: \"\\ea13\";\n  }\n  .bx-dots-horizontal-rounded:before {\n    content: \"\\ea14\";\n  }\n  .bx-dots-vertical:before {\n    content: \"\\ea15\";\n  }\n  .bx-dots-vertical-rounded:before {\n    content: \"\\ea16\";\n  }\n  .bx-doughnut-chart:before {\n    content: \"\\ea17\";\n  }\n  .bx-down-arrow:before {\n    content: \"\\ea18\";\n  }\n  .bx-down-arrow-alt:before {\n    content: \"\\ea19\";\n  }\n  .bx-down-arrow-circle:before {\n    content: \"\\ea1a\";\n  }\n  .bx-download:before {\n    content: \"\\ea1b\";\n  }\n  .bx-downvote:before {\n    content: \"\\ea1c\";\n  }\n  .bx-drink:before {\n    content: \"\\ea1d\";\n  }\n  .bx-droplet:before {\n    content: \"\\ea1e\";\n  }\n  .bx-dumbbell:before {\n    content: \"\\ea1f\";\n  }\n  .bx-duplicate:before {\n    content: \"\\ea20\";\n  }\n  .bx-edit:before {\n    content: \"\\ea21\";\n  }\n  .bx-edit-alt:before {\n    content: \"\\ea22\";\n  }\n  .bx-envelope:before {\n    content: \"\\ea23\";\n  }\n  .bx-envelope-open:before {\n    content: \"\\ea24\";\n  }\n  .bx-equalizer:before {\n    content: \"\\ea25\";\n  }\n  .bx-eraser:before {\n    content: \"\\ea26\";\n  }\n  .bx-error:before {\n    content: \"\\ea27\";\n  }\n  .bx-error-alt:before {\n    content: \"\\ea28\";\n  }\n  .bx-error-circle:before {\n    content: \"\\ea29\";\n  }\n  .bx-euro:before {\n    content: \"\\ea2a\";\n  }\n  .bx-exclude:before {\n    content: \"\\ea2b\";\n  }\n  .bx-exit:before {\n    content: \"\\ea2c\";\n  }\n  .bx-exit-fullscreen:before {\n    content: \"\\ea2d\";\n  }\n  .bx-expand:before {\n    content: \"\\ea2e\";\n  }\n  .bx-expand-alt:before {\n    content: \"\\ea2f\";\n  }\n  .bx-export:before {\n    content: \"\\ea30\";\n  }\n  .bx-extension:before {\n    content: \"\\ea31\";\n  }\n  .bx-face:before {\n    content: \"\\ea32\";\n  }\n  .bx-fast-forward:before {\n    content: \"\\ea33\";\n  }\n  .bx-fast-forward-circle:before {\n    content: \"\\ea34\";\n  }\n  .bx-female:before {\n    content: \"\\ea35\";\n  }\n  .bx-female-sign:before {\n    content: \"\\ea36\";\n  }\n  .bx-file:before {\n    content: \"\\ea37\";\n  }\n  .bx-file-blank:before {\n    content: \"\\ea38\";\n  }\n  .bx-file-find:before {\n    content: \"\\ea39\";\n  }\n  .bx-film:before {\n    content: \"\\ea3a\";\n  }\n  .bx-filter:before {\n    content: \"\\ea3b\";\n  }\n  .bx-filter-alt:before {\n    content: \"\\ea3c\";\n  }\n  .bx-fingerprint:before {\n    content: \"\\ea3d\";\n  }\n  .bx-first-aid:before {\n    content: \"\\ea3e\";\n  }\n  .bx-first-page:before {\n    content: \"\\ea3f\";\n  }\n  .bx-flag:before {\n    content: \"\\ea40\";\n  }\n  .bx-folder:before {\n    content: \"\\ea41\";\n  }\n  .bx-folder-minus:before {\n    content: \"\\ea42\";\n  }\n  .bx-folder-open:before {\n    content: \"\\ea43\";\n  }\n  .bx-folder-plus:before {\n    content: \"\\ea44\";\n  }\n  .bx-font:before {\n    content: \"\\ea45\";\n  }\n  .bx-font-color:before {\n    content: \"\\ea46\";\n  }\n  .bx-font-family:before {\n    content: \"\\ea47\";\n  }\n  .bx-font-size:before {\n    content: \"\\ea48\";\n  }\n  .bx-food-menu:before {\n    content: \"\\ea49\";\n  }\n  .bx-food-tag:before {\n    content: \"\\ea4a\";\n  }\n  .bx-football:before {\n    content: \"\\ea4b\";\n  }\n  .bx-fridge:before {\n    content: \"\\ea4c\";\n  }\n  .bx-fullscreen:before {\n    content: \"\\ea4d\";\n  }\n  .bx-game:before {\n    content: \"\\ea4e\";\n  }\n  .bx-gas-pump:before {\n    content: \"\\ea4f\";\n  }\n  .bx-ghost:before {\n    content: \"\\ea50\";\n  }\n  .bx-gift:before {\n    content: \"\\ea51\";\n  }\n  .bx-git-branch:before {\n    content: \"\\ea52\";\n  }\n  .bx-git-commit:before {\n    content: \"\\ea53\";\n  }\n  .bx-git-compare:before {\n    content: \"\\ea54\";\n  }\n  .bx-git-merge:before {\n    content: \"\\ea55\";\n  }\n  .bx-git-pull-request:before {\n    content: \"\\ea56\";\n  }\n  .bx-git-repo-forked:before {\n    content: \"\\ea57\";\n  }\n  .bx-glasses:before {\n    content: \"\\ea58\";\n  }\n  .bx-glasses-alt:before {\n    content: \"\\ea59\";\n  }\n  .bx-globe:before {\n    content: \"\\ea5a\";\n  }\n  .bx-globe-alt:before {\n    content: \"\\ea5b\";\n  }\n  .bx-grid:before {\n    content: \"\\ea5c\";\n  }\n  .bx-grid-alt:before {\n    content: \"\\ea5d\";\n  }\n  .bx-grid-horizontal:before {\n    content: \"\\ea5e\";\n  }\n  .bx-grid-small:before {\n    content: \"\\ea5f\";\n  }\n  .bx-grid-vertical:before {\n    content: \"\\ea60\";\n  }\n  .bx-group:before {\n    content: \"\\ea61\";\n  }\n  .bx-handicap:before {\n    content: \"\\ea62\";\n  }\n  .bx-happy:before {\n    content: \"\\ea63\";\n  }\n  .bx-happy-alt:before {\n    content: \"\\ea64\";\n  }\n  .bx-happy-beaming:before {\n    content: \"\\ea65\";\n  }\n  .bx-happy-heart-eyes:before {\n    content: \"\\ea66\";\n  }\n  .bx-hash:before {\n    content: \"\\ea67\";\n  }\n  .bx-hdd:before {\n    content: \"\\ea68\";\n  }\n  .bx-heading:before {\n    content: \"\\ea69\";\n  }\n  .bx-headphone:before {\n    content: \"\\ea6a\";\n  }\n  .bx-health:before {\n    content: \"\\ea6b\";\n  }\n  .bx-heart:before {\n    content: \"\\ea6c\";\n  }\n  .bx-heart-circle:before {\n    content: \"\\ea6d\";\n  }\n  .bx-heart-square:before {\n    content: \"\\ea6e\";\n  }\n  .bx-help-circle:before {\n    content: \"\\ea6f\";\n  }\n  .bx-hide:before {\n    content: \"\\ea70\";\n  }\n  .bx-highlight:before {\n    content: \"\\ea71\";\n  }\n  .bx-history:before {\n    content: \"\\ea72\";\n  }\n  .bx-hive:before {\n    content: \"\\ea73\";\n  }\n  .bx-home:before {\n    content: \"\\ea74\";\n  }\n  .bx-home-alt:before {\n    content: \"\\ea75\";\n  }\n  .bx-home-circle:before {\n    content: \"\\ea76\";\n  }\n  .bx-home-heart:before {\n    content: \"\\ea77\";\n  }\n  .bx-home-smile:before {\n    content: \"\\ea78\";\n  }\n  .bx-horizontal-center:before {\n    content: \"\\ea79\";\n  }\n  .bx-hotel:before {\n    content: \"\\ea7a\";\n  }\n  .bx-hourglass:before {\n    content: \"\\ea7b\";\n  }\n  .bx-id-card:before {\n    content: \"\\ea7c\";\n  }\n  .bx-image:before {\n    content: \"\\ea7d\";\n  }\n  .bx-image-add:before {\n    content: \"\\ea7e\";\n  }\n  .bx-image-alt:before {\n    content: \"\\ea7f\";\n  }\n  .bx-images:before {\n    content: \"\\ea80\";\n  }\n  .bx-import:before {\n    content: \"\\ea81\";\n  }\n  .bx-infinite:before {\n    content: \"\\ea82\";\n  }\n  .bx-info-circle:before {\n    content: \"\\ea83\";\n  }\n  .bx-info-square:before {\n    content: \"\\ea84\";\n  }\n  .bx-intersect:before {\n    content: \"\\ea85\";\n  }\n  .bx-italic:before {\n    content: \"\\ea86\";\n  }\n  .bx-joystick:before {\n    content: \"\\ea87\";\n  }\n  .bx-joystick-alt:before {\n    content: \"\\ea88\";\n  }\n  .bx-joystick-button:before {\n    content: \"\\ea89\";\n  }\n  .bx-key:before {\n    content: \"\\ea8a\";\n  }\n  .bx-label:before {\n    content: \"\\ea8b\";\n  }\n  .bx-landscape:before {\n    content: \"\\ea8c\";\n  }\n  .bx-laptop:before {\n    content: \"\\ea8d\";\n  }\n  .bx-last-page:before {\n    content: \"\\ea8e\";\n  }\n  .bx-laugh:before {\n    content: \"\\ea8f\";\n  }\n  .bx-layer:before {\n    content: \"\\ea90\";\n  }\n  .bx-layer-minus:before {\n    content: \"\\ea91\";\n  }\n  .bx-layer-plus:before {\n    content: \"\\ea92\";\n  }\n  .bx-layout:before {\n    content: \"\\ea93\";\n  }\n  .bx-left-arrow:before {\n    content: \"\\ea94\";\n  }\n  .bx-left-arrow-alt:before {\n    content: \"\\ea95\";\n  }\n  .bx-left-arrow-circle:before {\n    content: \"\\ea96\";\n  }\n  .bx-left-down-arrow-circle:before {\n    content: \"\\ea97\";\n  }\n  .bx-left-indent:before {\n    content: \"\\ea98\";\n  }\n  .bx-left-top-arrow-circle:before {\n    content: \"\\ea99\";\n  }\n  .bx-library:before {\n    content: \"\\ea9a\";\n  }\n  .bx-like:before {\n    content: \"\\ea9b\";\n  }\n  .bx-line-chart:before {\n    content: \"\\ea9c\";\n  }\n  .bx-line-chart-down:before {\n    content: \"\\ea9d\";\n  }\n  .bx-link:before {\n    content: \"\\ea9e\";\n  }\n  .bx-link-alt:before {\n    content: \"\\ea9f\";\n  }\n  .bx-link-external:before {\n    content: \"\\eaa0\";\n  }\n  .bx-lira:before {\n    content: \"\\eaa1\";\n  }\n  .bx-list-check:before {\n    content: \"\\eaa2\";\n  }\n  .bx-list-minus:before {\n    content: \"\\eaa3\";\n  }\n  .bx-list-ol:before {\n    content: \"\\eaa4\";\n  }\n  .bx-list-plus:before {\n    content: \"\\eaa5\";\n  }\n  .bx-list-ul:before {\n    content: \"\\eaa6\";\n  }\n  .bx-loader:before {\n    content: \"\\eaa7\";\n  }\n  .bx-loader-alt:before {\n    content: \"\\eaa8\";\n  }\n  .bx-loader-circle:before {\n    content: \"\\eaa9\";\n  }\n  .bx-location-plus:before {\n    content: \"\\eaaa\";\n  }\n  .bx-lock:before {\n    content: \"\\eaab\";\n  }\n  .bx-lock-alt:before {\n    content: \"\\eaac\";\n  }\n  .bx-lock-open:before {\n    content: \"\\eaad\";\n  }\n  .bx-lock-open-alt:before {\n    content: \"\\eaae\";\n  }\n  .bx-log-in:before {\n    content: \"\\eaaf\";\n  }\n  .bx-log-in-circle:before {\n    content: \"\\eab0\";\n  }\n  .bx-log-out:before {\n    content: \"\\eab1\";\n  }\n  .bx-log-out-circle:before {\n    content: \"\\eab2\";\n  }\n  .bx-low-vision:before {\n    content: \"\\eab3\";\n  }\n  .bx-magnet:before {\n    content: \"\\eab4\";\n  }\n  .bx-mail-send:before {\n    content: \"\\eab5\";\n  }\n  .bx-male:before {\n    content: \"\\eab6\";\n  }\n  .bx-male-sign:before {\n    content: \"\\eab7\";\n  }\n  .bx-map:before {\n    content: \"\\eab8\";\n  }\n  .bx-map-alt:before {\n    content: \"\\eab9\";\n  }\n  .bx-map-pin:before {\n    content: \"\\eaba\";\n  }\n  .bx-mask:before {\n    content: \"\\eabb\";\n  }\n  .bx-medal:before {\n    content: \"\\eabc\";\n  }\n  .bx-meh:before {\n    content: \"\\eabd\";\n  }\n  .bx-meh-alt:before {\n    content: \"\\eabe\";\n  }\n  .bx-meh-blank:before {\n    content: \"\\eabf\";\n  }\n  .bx-memory-card:before {\n    content: \"\\eac0\";\n  }\n  .bx-menu:before {\n    content: \"\\eac1\";\n  }\n  .bx-menu-alt-left:before {\n    content: \"\\eac2\";\n  }\n  .bx-menu-alt-right:before {\n    content: \"\\eac3\";\n  }\n  .bx-merge:before {\n    content: \"\\eac4\";\n  }\n  .bx-message:before {\n    content: \"\\eac5\";\n  }\n  .bx-message-add:before {\n    content: \"\\eac6\";\n  }\n  .bx-message-alt:before {\n    content: \"\\eac7\";\n  }\n  .bx-message-alt-add:before {\n    content: \"\\eac8\";\n  }\n  .bx-message-alt-check:before {\n    content: \"\\eac9\";\n  }\n  .bx-message-alt-detail:before {\n    content: \"\\eaca\";\n  }\n  .bx-message-alt-dots:before {\n    content: \"\\eacb\";\n  }\n  .bx-message-alt-edit:before {\n    content: \"\\eacc\";\n  }\n  .bx-message-alt-error:before {\n    content: \"\\eacd\";\n  }\n  .bx-message-alt-minus:before {\n    content: \"\\eace\";\n  }\n  .bx-message-alt-x:before {\n    content: \"\\eacf\";\n  }\n  .bx-message-check:before {\n    content: \"\\ead0\";\n  }\n  .bx-message-detail:before {\n    content: \"\\ead1\";\n  }\n  .bx-message-dots:before {\n    content: \"\\ead2\";\n  }\n  .bx-message-edit:before {\n    content: \"\\ead3\";\n  }\n  .bx-message-error:before {\n    content: \"\\ead4\";\n  }\n  .bx-message-minus:before {\n    content: \"\\ead5\";\n  }\n  .bx-message-rounded:before {\n    content: \"\\ead6\";\n  }\n  .bx-message-rounded-add:before {\n    content: \"\\ead7\";\n  }\n  .bx-message-rounded-check:before {\n    content: \"\\ead8\";\n  }\n  .bx-message-rounded-detail:before {\n    content: \"\\ead9\";\n  }\n  .bx-message-rounded-dots:before {\n    content: \"\\eada\";\n  }\n  .bx-message-rounded-edit:before {\n    content: \"\\eadb\";\n  }\n  .bx-message-rounded-error:before {\n    content: \"\\eadc\";\n  }\n  .bx-message-rounded-minus:before {\n    content: \"\\eadd\";\n  }\n  .bx-message-rounded-x:before {\n    content: \"\\eade\";\n  }\n  .bx-message-square:before {\n    content: \"\\eadf\";\n  }\n  .bx-message-square-add:before {\n    content: \"\\eae0\";\n  }\n  .bx-message-square-check:before {\n    content: \"\\eae1\";\n  }\n  .bx-message-square-detail:before {\n    content: \"\\eae2\";\n  }\n  .bx-message-square-dots:before {\n    content: \"\\eae3\";\n  }\n  .bx-message-square-edit:before {\n    content: \"\\eae4\";\n  }\n  .bx-message-square-error:before {\n    content: \"\\eae5\";\n  }\n  .bx-message-square-minus:before {\n    content: \"\\eae6\";\n  }\n  .bx-message-square-x:before {\n    content: \"\\eae7\";\n  }\n  .bx-message-x:before {\n    content: \"\\eae8\";\n  }\n  .bx-meteor:before {\n    content: \"\\eae9\";\n  }\n  .bx-microchip:before {\n    content: \"\\eaea\";\n  }\n  .bx-microphone:before {\n    content: \"\\eaeb\";\n  }\n  .bx-microphone-off:before {\n    content: \"\\eaec\";\n  }\n  .bx-minus:before {\n    content: \"\\eaed\";\n  }\n  .bx-minus-back:before {\n    content: \"\\eaee\";\n  }\n  .bx-minus-circle:before {\n    content: \"\\eaef\";\n  }\n  .bx-minus-front:before {\n    content: \"\\eaf0\";\n  }\n  .bx-mobile:before {\n    content: \"\\eaf1\";\n  }\n  .bx-mobile-alt:before {\n    content: \"\\eaf2\";\n  }\n  .bx-mobile-landscape:before {\n    content: \"\\eaf3\";\n  }\n  .bx-mobile-vibration:before {\n    content: \"\\eaf4\";\n  }\n  .bx-money:before {\n    content: \"\\eaf5\";\n  }\n  .bx-moon:before {\n    content: \"\\eaf6\";\n  }\n  .bx-mouse:before {\n    content: \"\\eaf7\";\n  }\n  .bx-mouse-alt:before {\n    content: \"\\eaf8\";\n  }\n  .bx-move:before {\n    content: \"\\eaf9\";\n  }\n  .bx-move-horizontal:before {\n    content: \"\\eafa\";\n  }\n  .bx-move-vertical:before {\n    content: \"\\eafb\";\n  }\n  .bx-movie:before {\n    content: \"\\eafc\";\n  }\n  .bx-movie-play:before {\n    content: \"\\eafd\";\n  }\n  .bx-music:before {\n    content: \"\\eafe\";\n  }\n  .bx-navigation:before {\n    content: \"\\eaff\";\n  }\n  .bx-network-chart:before {\n    content: \"\\eb00\";\n  }\n  .bx-news:before {\n    content: \"\\eb01\";\n  }\n  .bx-no-entry:before {\n    content: \"\\eb02\";\n  }\n  .bx-note:before {\n    content: \"\\eb03\";\n  }\n  .bx-notepad:before {\n    content: \"\\eb04\";\n  }\n  .bx-notification:before {\n    content: \"\\eb05\";\n  }\n  .bx-notification-off:before {\n    content: \"\\eb06\";\n  }\n  .bx-outline:before {\n    content: \"\\eb07\";\n  }\n  .bx-package:before {\n    content: \"\\eb08\";\n  }\n  .bx-paint:before {\n    content: \"\\eb09\";\n  }\n  .bx-paint-roll:before {\n    content: \"\\eb0a\";\n  }\n  .bx-palette:before {\n    content: \"\\eb0b\";\n  }\n  .bx-paperclip:before {\n    content: \"\\eb0c\";\n  }\n  .bx-paper-plane:before {\n    content: \"\\eb0d\";\n  }\n  .bx-paragraph:before {\n    content: \"\\eb0e\";\n  }\n  .bx-paste:before {\n    content: \"\\eb0f\";\n  }\n  .bx-pause:before {\n    content: \"\\eb10\";\n  }\n  .bx-pause-circle:before {\n    content: \"\\eb11\";\n  }\n  .bx-pen:before {\n    content: \"\\eb12\";\n  }\n  .bx-pencil:before {\n    content: \"\\eb13\";\n  }\n  .bx-phone:before {\n    content: \"\\eb14\";\n  }\n  .bx-phone-call:before {\n    content: \"\\eb15\";\n  }\n  .bx-phone-incoming:before {\n    content: \"\\eb16\";\n  }\n  .bx-phone-outgoing:before {\n    content: \"\\eb17\";\n  }\n  .bx-photo-album:before {\n    content: \"\\eb18\";\n  }\n  .bx-pie-chart:before {\n    content: \"\\eb19\";\n  }\n  .bx-pie-chart-alt:before {\n    content: \"\\eb1a\";\n  }\n  .bx-pie-chart-alt-2:before {\n    content: \"\\eb1b\";\n  }\n  .bx-pin:before {\n    content: \"\\eb1c\";\n  }\n  .bx-planet:before {\n    content: \"\\eb1d\";\n  }\n  .bx-play:before {\n    content: \"\\eb1e\";\n  }\n  .bx-play-circle:before {\n    content: \"\\eb1f\";\n  }\n  .bx-plug:before {\n    content: \"\\eb20\";\n  }\n  .bx-plus:before {\n    content: \"\\eb21\";\n  }\n  .bx-plus-circle:before {\n    content: \"\\eb22\";\n  }\n  .bx-plus-medical:before {\n    content: \"\\eb23\";\n  }\n  .bx-pointer:before {\n    content: \"\\eb24\";\n  }\n  .bx-poll:before {\n    content: \"\\eb25\";\n  }\n  .bx-polygon:before {\n    content: \"\\eb26\";\n  }\n  .bx-pound:before {\n    content: \"\\eb27\";\n  }\n  .bx-power-off:before {\n    content: \"\\eb28\";\n  }\n  .bx-printer:before {\n    content: \"\\eb29\";\n  }\n  .bx-pulse:before {\n    content: \"\\eb2a\";\n  }\n  .bx-purchase-tag:before {\n    content: \"\\eb2b\";\n  }\n  .bx-purchase-tag-alt:before {\n    content: \"\\eb2c\";\n  }\n  .bx-pyramid:before {\n    content: \"\\eb2d\";\n  }\n  .bx-question-mark:before {\n    content: \"\\eb2e\";\n  }\n  .bx-radar:before {\n    content: \"\\eb2f\";\n  }\n  .bx-radio:before {\n    content: \"\\eb30\";\n  }\n  .bx-radio-circle:before {\n    content: \"\\eb31\";\n  }\n  .bx-radio-circle-marked:before {\n    content: \"\\eb32\";\n  }\n  .bx-receipt:before {\n    content: \"\\eb33\";\n  }\n  .bx-rectangle:before {\n    content: \"\\eb34\";\n  }\n  .bx-recycle:before {\n    content: \"\\eb35\";\n  }\n  .bx-redo:before {\n    content: \"\\eb36\";\n  }\n  .bx-refresh:before {\n    content: \"\\eb37\";\n  }\n  .bx-rename:before {\n    content: \"\\eb38\";\n  }\n  .bx-repeat:before {\n    content: \"\\eb39\";\n  }\n  .bx-reply:before {\n    content: \"\\eb3a\";\n  }\n  .bx-reply-all:before {\n    content: \"\\eb3b\";\n  }\n  .bx-repost:before {\n    content: \"\\eb3c\";\n  }\n  .bx-reset:before {\n    content: \"\\eb3d\";\n  }\n  .bx-restaurant:before {\n    content: \"\\eb3e\";\n  }\n  .bx-revision:before {\n    content: \"\\eb3f\";\n  }\n  .bx-rewind:before {\n    content: \"\\eb40\";\n  }\n  .bx-rewind-circle:before {\n    content: \"\\eb41\";\n  }\n  .bx-right-arrow:before {\n    content: \"\\eb42\";\n  }\n  .bx-right-arrow-alt:before {\n    content: \"\\eb43\";\n  }\n  .bx-right-arrow-circle:before {\n    content: \"\\eb44\";\n  }\n  .bx-right-down-arrow-circle:before {\n    content: \"\\eb45\";\n  }\n  .bx-right-indent:before {\n    content: \"\\eb46\";\n  }\n  .bx-right-top-arrow-circle:before {\n    content: \"\\eb47\";\n  }\n  .bx-rocket:before {\n    content: \"\\eb48\";\n  }\n  .bx-rotate-left:before {\n    content: \"\\eb49\";\n  }\n  .bx-rotate-right:before {\n    content: \"\\eb4a\";\n  }\n  .bx-rss:before {\n    content: \"\\eb4b\";\n  }\n  .bx-ruble:before {\n    content: \"\\eb4c\";\n  }\n  .bx-ruler:before {\n    content: \"\\eb4d\";\n  }\n  .bx-run:before {\n    content: \"\\eb4e\";\n  }\n  .bx-rupee:before {\n    content: \"\\eb4f\";\n  }\n  .bx-sad:before {\n    content: \"\\eb50\";\n  }\n  .bx-save:before {\n    content: \"\\eb51\";\n  }\n  .bx-scan:before {\n    content: \"\\eb52\";\n  }\n  .bx-screenshot:before {\n    content: \"\\eb53\";\n  }\n  .bx-search:before {\n    content: \"\\eb54\";\n  }\n  .bx-search-alt:before {\n    content: \"\\eb55\";\n  }\n  .bx-search-alt-2:before {\n    content: \"\\eb56\";\n  }\n  .bx-selection:before {\n    content: \"\\eb57\";\n  }\n  .bx-select-multiple:before {\n    content: \"\\eb58\";\n  }\n  .bx-send:before {\n    content: \"\\eb59\";\n  }\n  .bx-server:before {\n    content: \"\\eb5a\";\n  }\n  .bx-shape-circle:before {\n    content: \"\\eb5b\";\n  }\n  .bx-shape-polygon:before {\n    content: \"\\eb5c\";\n  }\n  .bx-shape-square:before {\n    content: \"\\eb5d\";\n  }\n  .bx-shape-triangle:before {\n    content: \"\\eb5e\";\n  }\n  .bx-share:before {\n    content: \"\\eb5f\";\n  }\n  .bx-share-alt:before {\n    content: \"\\eb60\";\n  }\n  .bx-shekel:before {\n    content: \"\\eb61\";\n  }\n  .bx-shield:before {\n    content: \"\\eb62\";\n  }\n  .bx-shield-alt:before {\n    content: \"\\eb63\";\n  }\n  .bx-shield-alt-2:before {\n    content: \"\\eb64\";\n  }\n  .bx-shield-quarter:before {\n    content: \"\\eb65\";\n  }\n  .bx-shield-x:before {\n    content: \"\\eb66\";\n  }\n  .bx-shocked:before {\n    content: \"\\eb67\";\n  }\n  .bx-shopping-bag:before {\n    content: \"\\eb68\";\n  }\n  .bx-show:before {\n    content: \"\\eb69\";\n  }\n  .bx-show-alt:before {\n    content: \"\\eb6a\";\n  }\n  .bx-shuffle:before {\n    content: \"\\eb6b\";\n  }\n  .bx-sidebar:before {\n    content: \"\\eb6c\";\n  }\n  .bx-sitemap:before {\n    content: \"\\eb6d\";\n  }\n  .bx-skip-next:before {\n    content: \"\\eb6e\";\n  }\n  .bx-skip-next-circle:before {\n    content: \"\\eb6f\";\n  }\n  .bx-skip-previous:before {\n    content: \"\\eb70\";\n  }\n  .bx-skip-previous-circle:before {\n    content: \"\\eb71\";\n  }\n  .bx-sleepy:before {\n    content: \"\\eb72\";\n  }\n  .bx-slider:before {\n    content: \"\\eb73\";\n  }\n  .bx-slider-alt:before {\n    content: \"\\eb74\";\n  }\n  .bx-slideshow:before {\n    content: \"\\eb75\";\n  }\n  .bx-smile:before {\n    content: \"\\eb76\";\n  }\n  .bx-sort:before {\n    content: \"\\eb77\";\n  }\n  .bx-sort-alt-2:before {\n    content: \"\\eb78\";\n  }\n  .bx-sort-a-z:before {\n    content: \"\\eb79\";\n  }\n  .bx-sort-down:before {\n    content: \"\\eb7a\";\n  }\n  .bx-sort-up:before {\n    content: \"\\eb7b\";\n  }\n  .bx-sort-z-a:before {\n    content: \"\\eb7c\";\n  }\n  .bx-spa:before {\n    content: \"\\eb7d\";\n  }\n  .bx-space-bar:before {\n    content: \"\\eb7e\";\n  }\n  .bx-spray-can:before {\n    content: \"\\eb7f\";\n  }\n  .bx-spreadsheet:before {\n    content: \"\\eb80\";\n  }\n  .bx-square:before {\n    content: \"\\eb81\";\n  }\n  .bx-square-rounded:before {\n    content: \"\\eb82\";\n  }\n  .bx-star:before {\n    content: \"\\eb83\";\n  }\n  .bx-station:before {\n    content: \"\\eb84\";\n  }\n  .bx-stats:before {\n    content: \"\\eb85\";\n  }\n  .bx-sticker:before {\n    content: \"\\eb86\";\n  }\n  .bx-stop:before {\n    content: \"\\eb87\";\n  }\n  .bx-stop-circle:before {\n    content: \"\\eb88\";\n  }\n  .bx-stopwatch:before {\n    content: \"\\eb89\";\n  }\n  .bx-store:before {\n    content: \"\\eb8a\";\n  }\n  .bx-store-alt:before {\n    content: \"\\eb8b\";\n  }\n  .bx-street-view:before {\n    content: \"\\eb8c\";\n  }\n  .bx-strikethrough:before {\n    content: \"\\eb8d\";\n  }\n  .bx-subdirectory-left:before {\n    content: \"\\eb8e\";\n  }\n  .bx-subdirectory-right:before {\n    content: \"\\eb8f\";\n  }\n  .bx-sun:before {\n    content: \"\\eb90\";\n  }\n  .bx-support:before {\n    content: \"\\eb91\";\n  }\n  .bx-swim:before {\n    content: \"\\eb92\";\n  }\n  .bx-sync:before {\n    content: \"\\eb93\";\n  }\n  .bx-tab:before {\n    content: \"\\eb94\";\n  }\n  .bx-table:before {\n    content: \"\\eb95\";\n  }\n  .bx-tachometer:before {\n    content: \"\\eb96\";\n  }\n  .bx-tag:before {\n    content: \"\\eb97\";\n  }\n  .bx-tag-alt:before {\n    content: \"\\eb98\";\n  }\n  .bx-target-lock:before {\n    content: \"\\eb99\";\n  }\n  .bx-task:before {\n    content: \"\\eb9a\";\n  }\n  .bx-task-x:before {\n    content: \"\\eb9b\";\n  }\n  .bx-taxi:before {\n    content: \"\\eb9c\";\n  }\n  .bx-tennis-ball:before {\n    content: \"\\eb9d\";\n  }\n  .bx-terminal:before {\n    content: \"\\eb9e\";\n  }\n  .bx-test-tube:before {\n    content: \"\\eb9f\";\n  }\n  .bx-text:before {\n    content: \"\\eba0\";\n  }\n  .bx-time:before {\n    content: \"\\eba1\";\n  }\n  .bx-time-five:before {\n    content: \"\\eba2\";\n  }\n  .bx-timer:before {\n    content: \"\\eba3\";\n  }\n  .bx-tired:before {\n    content: \"\\eba4\";\n  }\n  .bx-toggle-left:before {\n    content: \"\\eba5\";\n  }\n  .bx-toggle-right:before {\n    content: \"\\eba6\";\n  }\n  .bx-tone:before {\n    content: \"\\eba7\";\n  }\n  .bx-traffic-cone:before {\n    content: \"\\eba8\";\n  }\n  .bx-train:before {\n    content: \"\\eba9\";\n  }\n  .bx-transfer:before {\n    content: \"\\ebaa\";\n  }\n  .bx-transfer-alt:before {\n    content: \"\\ebab\";\n  }\n  .bx-trash:before {\n    content: \"\\ebac\";\n  }\n  .bx-trash-alt:before {\n    content: \"\\ebad\";\n  }\n  .bx-trending-down:before {\n    content: \"\\ebae\";\n  }\n  .bx-trending-up:before {\n    content: \"\\ebaf\";\n  }\n  .bx-trim:before {\n    content: \"\\ebb0\";\n  }\n  .bx-trip:before {\n    content: \"\\ebb1\";\n  }\n  .bx-trophy:before {\n    content: \"\\ebb2\";\n  }\n  .bx-tv:before {\n    content: \"\\ebb3\";\n  }\n  .bx-underline:before {\n    content: \"\\ebb4\";\n  }\n  .bx-undo:before {\n    content: \"\\ebb5\";\n  }\n  .bx-unite:before {\n    content: \"\\ebb6\";\n  }\n  .bx-unlink:before {\n    content: \"\\ebb7\";\n  }\n  .bx-up-arrow:before {\n    content: \"\\ebb8\";\n  }\n  .bx-up-arrow-alt:before {\n    content: \"\\ebb9\";\n  }\n  .bx-up-arrow-circle:before {\n    content: \"\\ebba\";\n  }\n  .bx-upload:before {\n    content: \"\\ebbb\";\n  }\n  .bx-upside-down:before {\n    content: \"\\ebbc\";\n  }\n  .bx-upvote:before {\n    content: \"\\ebbd\";\n  }\n  .bx-usb:before {\n    content: \"\\ebbe\";\n  }\n  .bx-user:before {\n    content: \"\\ebbf\";\n  }\n  .bx-user-check:before {\n    content: \"\\ebc0\";\n  }\n  .bx-user-circle:before {\n    content: \"\\ebc1\";\n  }\n  .bx-user-minus:before {\n    content: \"\\ebc2\";\n  }\n  .bx-user-pin:before {\n    content: \"\\ebc3\";\n  }\n  .bx-user-plus:before {\n    content: \"\\ebc4\";\n  }\n  .bx-user-voice:before {\n    content: \"\\ebc5\";\n  }\n  .bx-user-x:before {\n    content: \"\\ebc6\";\n  }\n  .bx-vector:before {\n    content: \"\\ebc7\";\n  }\n  .bx-vertical-center:before {\n    content: \"\\ebc8\";\n  }\n  .bx-vial:before {\n    content: \"\\ebc9\";\n  }\n  .bx-video:before {\n    content: \"\\ebca\";\n  }\n  .bx-video-off:before {\n    content: \"\\ebcb\";\n  }\n  .bx-video-plus:before {\n    content: \"\\ebcc\";\n  }\n  .bx-video-recording:before {\n    content: \"\\ebcd\";\n  }\n  .bx-voicemail:before {\n    content: \"\\ebce\";\n  }\n  .bx-volume:before {\n    content: \"\\ebcf\";\n  }\n  .bx-volume-full:before {\n    content: \"\\ebd0\";\n  }\n  .bx-volume-low:before {\n    content: \"\\ebd1\";\n  }\n  .bx-volume-mute:before {\n    content: \"\\ebd2\";\n  }\n  .bx-walk:before {\n    content: \"\\ebd3\";\n  }\n  .bx-wallet:before {\n    content: \"\\ebd4\";\n  }\n  .bx-wallet-alt:before {\n    content: \"\\ebd5\";\n  }\n  .bx-water:before {\n    content: \"\\ebd6\";\n  }\n  .bx-webcam:before {\n    content: \"\\ebd7\";\n  }\n  .bx-wifi:before {\n    content: \"\\ebd8\";\n  }\n  .bx-wifi-0:before {\n    content: \"\\ebd9\";\n  }\n  .bx-wifi-1:before {\n    content: \"\\ebda\";\n  }\n  .bx-wifi-2:before {\n    content: \"\\ebdb\";\n  }\n  .bx-wifi-off:before {\n    content: \"\\ebdc\";\n  }\n  .bx-wind:before {\n    content: \"\\ebdd\";\n  }\n  .bx-window:before {\n    content: \"\\ebde\";\n  }\n  .bx-window-alt:before {\n    content: \"\\ebdf\";\n  }\n  .bx-window-close:before {\n    content: \"\\ebe0\";\n  }\n  .bx-window-open:before {\n    content: \"\\ebe1\";\n  }\n  .bx-windows:before {\n    content: \"\\ebe2\";\n  }\n  .bx-wine:before {\n    content: \"\\ebe3\";\n  }\n  .bx-wink-smile:before {\n    content: \"\\ebe4\";\n  }\n  .bx-wink-tongue:before {\n    content: \"\\ebe5\";\n  }\n  .bx-won:before {\n    content: \"\\ebe6\";\n  }\n  .bx-world:before {\n    content: \"\\ebe7\";\n  }\n  .bx-wrench:before {\n    content: \"\\ebe8\";\n  }\n  .bx-x:before {\n    content: \"\\ebe9\";\n  }\n  .bx-x-circle:before {\n    content: \"\\ebea\";\n  }\n  .bx-yen:before {\n    content: \"\\ebeb\";\n  }\n  .bx-zoom-in:before {\n    content: \"\\ebec\";\n  }\n  .bx-zoom-out:before {\n    content: \"\\ebed\";\n  }\n  .bxs-add-to-queue:before {\n    content: \"\\ebee\";\n  }\n  .bxs-adjust:before {\n    content: \"\\ebef\";\n  }\n  .bxs-adjust-alt:before {\n    content: \"\\ebf0\";\n  }\n  .bxs-alarm:before {\n    content: \"\\ebf1\";\n  }\n  .bxs-alarm-add:before {\n    content: \"\\ebf2\";\n  }\n  .bxs-alarm-exclamation:before {\n    content: \"\\ebf3\";\n  }\n  .bxs-alarm-off:before {\n    content: \"\\ebf4\";\n  }\n  .bxs-alarm-snooze:before {\n    content: \"\\ebf5\";\n  }\n  .bxs-album:before {\n    content: \"\\ebf6\";\n  }\n  .bxs-ambulance:before {\n    content: \"\\ebf7\";\n  }\n  .bxs-analyse:before {\n    content: \"\\ebf8\";\n  }\n  .bxs-angry:before {\n    content: \"\\ebf9\";\n  }\n  .bxs-arch:before {\n    content: \"\\ebfa\";\n  }\n  .bxs-archive:before {\n    content: \"\\ebfb\";\n  }\n  .bxs-archive-in:before {\n    content: \"\\ebfc\";\n  }\n  .bxs-archive-out:before {\n    content: \"\\ebfd\";\n  }\n  .bxs-area:before {\n    content: \"\\ebfe\";\n  }\n  .bxs-arrow-from-bottom:before {\n    content: \"\\ebff\";\n  }\n  .bxs-arrow-from-left:before {\n    content: \"\\ec00\";\n  }\n  .bxs-arrow-from-right:before {\n    content: \"\\ec01\";\n  }\n  .bxs-arrow-from-top:before {\n    content: \"\\ec02\";\n  }\n  .bxs-arrow-to-bottom:before {\n    content: \"\\ec03\";\n  }\n  .bxs-arrow-to-left:before {\n    content: \"\\ec04\";\n  }\n  .bxs-arrow-to-right:before {\n    content: \"\\ec05\";\n  }\n  .bxs-arrow-to-top:before {\n    content: \"\\ec06\";\n  }\n  .bxs-award:before {\n    content: \"\\ec07\";\n  }\n  .bxs-baby-carriage:before {\n    content: \"\\ec08\";\n  }\n  .bxs-backpack:before {\n    content: \"\\ec09\";\n  }\n  .bxs-badge:before {\n    content: \"\\ec0a\";\n  }\n  .bxs-badge-check:before {\n    content: \"\\ec0b\";\n  }\n  .bxs-badge-dollar:before {\n    content: \"\\ec0c\";\n  }\n  .bxs-ball:before {\n    content: \"\\ec0d\";\n  }\n  .bxs-band-aid:before {\n    content: \"\\ec0e\";\n  }\n  .bxs-bank:before {\n    content: \"\\ec0f\";\n  }\n  .bxs-bar-chart-alt-2:before {\n    content: \"\\ec10\";\n  }\n  .bxs-bar-chart-square:before {\n    content: \"\\ec11\";\n  }\n  .bxs-barcode:before {\n    content: \"\\ec12\";\n  }\n  .bxs-baseball:before {\n    content: \"\\ec13\";\n  }\n  .bxs-basket:before {\n    content: \"\\ec14\";\n  }\n  .bxs-basketball:before {\n    content: \"\\ec15\";\n  }\n  .bxs-bath:before {\n    content: \"\\ec16\";\n  }\n  .bxs-battery:before {\n    content: \"\\ec17\";\n  }\n  .bxs-battery-charging:before {\n    content: \"\\ec18\";\n  }\n  .bxs-battery-full:before {\n    content: \"\\ec19\";\n  }\n  .bxs-battery-low:before {\n    content: \"\\ec1a\";\n  }\n  .bxs-bed:before {\n    content: \"\\ec1b\";\n  }\n  .bxs-been-here:before {\n    content: \"\\ec1c\";\n  }\n  .bxs-beer:before {\n    content: \"\\ec1d\";\n  }\n  .bxs-bell:before {\n    content: \"\\ec1e\";\n  }\n  .bxs-bell-minus:before {\n    content: \"\\ec1f\";\n  }\n  .bxs-bell-off:before {\n    content: \"\\ec20\";\n  }\n  .bxs-bell-plus:before {\n    content: \"\\ec21\";\n  }\n  .bxs-bell-ring:before {\n    content: \"\\ec22\";\n  }\n  .bxs-bible:before {\n    content: \"\\ec23\";\n  }\n  .bxs-binoculars:before {\n    content: \"\\ec24\";\n  }\n  .bxs-blanket:before {\n    content: \"\\ec25\";\n  }\n  .bxs-bolt:before {\n    content: \"\\ec26\";\n  }\n  .bxs-bolt-circle:before {\n    content: \"\\ec27\";\n  }\n  .bxs-bomb:before {\n    content: \"\\ec28\";\n  }\n  .bxs-bone:before {\n    content: \"\\ec29\";\n  }\n  .bxs-bong:before {\n    content: \"\\ec2a\";\n  }\n  .bxs-book:before {\n    content: \"\\ec2b\";\n  }\n  .bxs-book-add:before {\n    content: \"\\ec2c\";\n  }\n  .bxs-book-alt:before {\n    content: \"\\ec2d\";\n  }\n  .bxs-book-bookmark:before {\n    content: \"\\ec2e\";\n  }\n  .bxs-book-content:before {\n    content: \"\\ec2f\";\n  }\n  .bxs-book-heart:before {\n    content: \"\\ec30\";\n  }\n  .bxs-bookmark:before {\n    content: \"\\ec31\";\n  }\n  .bxs-bookmark-alt:before {\n    content: \"\\ec32\";\n  }\n  .bxs-bookmark-alt-minus:before {\n    content: \"\\ec33\";\n  }\n  .bxs-bookmark-alt-plus:before {\n    content: \"\\ec34\";\n  }\n  .bxs-bookmark-heart:before {\n    content: \"\\ec35\";\n  }\n  .bxs-bookmark-minus:before {\n    content: \"\\ec36\";\n  }\n  .bxs-bookmark-plus:before {\n    content: \"\\ec37\";\n  }\n  .bxs-bookmarks:before {\n    content: \"\\ec38\";\n  }\n  .bxs-bookmark-star:before {\n    content: \"\\ec39\";\n  }\n  .bxs-book-open:before {\n    content: \"\\ec3a\";\n  }\n  .bxs-book-reader:before {\n    content: \"\\ec3b\";\n  }\n  .bxs-bot:before {\n    content: \"\\ec3c\";\n  }\n  .bxs-bowling-ball:before {\n    content: \"\\ec3d\";\n  }\n  .bxs-box:before {\n    content: \"\\ec3e\";\n  }\n  .bxs-brain:before {\n    content: \"\\ec3f\";\n  }\n  .bxs-briefcase:before {\n    content: \"\\ec40\";\n  }\n  .bxs-briefcase-alt:before {\n    content: \"\\ec41\";\n  }\n  .bxs-briefcase-alt-2:before {\n    content: \"\\ec42\";\n  }\n  .bxs-brightness:before {\n    content: \"\\ec43\";\n  }\n  .bxs-brightness-half:before {\n    content: \"\\ec44\";\n  }\n  .bxs-brush:before {\n    content: \"\\ec45\";\n  }\n  .bxs-brush-alt:before {\n    content: \"\\ec46\";\n  }\n  .bxs-bug:before {\n    content: \"\\ec47\";\n  }\n  .bxs-bug-alt:before {\n    content: \"\\ec48\";\n  }\n  .bxs-building:before {\n    content: \"\\ec49\";\n  }\n  .bxs-building-house:before {\n    content: \"\\ec4a\";\n  }\n  .bxs-buildings:before {\n    content: \"\\ec4b\";\n  }\n  .bxs-bulb:before {\n    content: \"\\ec4c\";\n  }\n  .bxs-bullseye:before {\n    content: \"\\ec4d\";\n  }\n  .bxs-buoy:before {\n    content: \"\\ec4e\";\n  }\n  .bxs-bus:before {\n    content: \"\\ec4f\";\n  }\n  .bxs-business:before {\n    content: \"\\ec50\";\n  }\n  .bxs-bus-school:before {\n    content: \"\\ec51\";\n  }\n  .bxs-cabinet:before {\n    content: \"\\ec52\";\n  }\n  .bxs-cake:before {\n    content: \"\\ec53\";\n  }\n  .bxs-calculator:before {\n    content: \"\\ec54\";\n  }\n  .bxs-calendar:before {\n    content: \"\\ec55\";\n  }\n  .bxs-calendar-alt:before {\n    content: \"\\ec56\";\n  }\n  .bxs-calendar-check:before {\n    content: \"\\ec57\";\n  }\n  .bxs-calendar-edit:before {\n    content: \"\\ec58\";\n  }\n  .bxs-calendar-event:before {\n    content: \"\\ec59\";\n  }\n  .bxs-calendar-exclamation:before {\n    content: \"\\ec5a\";\n  }\n  .bxs-calendar-heart:before {\n    content: \"\\ec5b\";\n  }\n  .bxs-calendar-minus:before {\n    content: \"\\ec5c\";\n  }\n  .bxs-calendar-plus:before {\n    content: \"\\ec5d\";\n  }\n  .bxs-calendar-star:before {\n    content: \"\\ec5e\";\n  }\n  .bxs-calendar-week:before {\n    content: \"\\ec5f\";\n  }\n  .bxs-calendar-x:before {\n    content: \"\\ec60\";\n  }\n  .bxs-camera:before {\n    content: \"\\ec61\";\n  }\n  .bxs-camera-home:before {\n    content: \"\\ec62\";\n  }\n  .bxs-camera-movie:before {\n    content: \"\\ec63\";\n  }\n  .bxs-camera-off:before {\n    content: \"\\ec64\";\n  }\n  .bxs-camera-plus:before {\n    content: \"\\ec65\";\n  }\n  .bxs-capsule:before {\n    content: \"\\ec66\";\n  }\n  .bxs-captions:before {\n    content: \"\\ec67\";\n  }\n  .bxs-car:before {\n    content: \"\\ec68\";\n  }\n  .bxs-car-battery:before {\n    content: \"\\ec69\";\n  }\n  .bxs-car-crash:before {\n    content: \"\\ec6a\";\n  }\n  .bxs-card:before {\n    content: \"\\ec6b\";\n  }\n  .bxs-caret-down-circle:before {\n    content: \"\\ec6c\";\n  }\n  .bxs-caret-down-square:before {\n    content: \"\\ec6d\";\n  }\n  .bxs-caret-left-circle:before {\n    content: \"\\ec6e\";\n  }\n  .bxs-caret-left-square:before {\n    content: \"\\ec6f\";\n  }\n  .bxs-caret-right-circle:before {\n    content: \"\\ec70\";\n  }\n  .bxs-caret-right-square:before {\n    content: \"\\ec71\";\n  }\n  .bxs-caret-up-circle:before {\n    content: \"\\ec72\";\n  }\n  .bxs-caret-up-square:before {\n    content: \"\\ec73\";\n  }\n  .bxs-car-garage:before {\n    content: \"\\ec74\";\n  }\n  .bxs-car-mechanic:before {\n    content: \"\\ec75\";\n  }\n  .bxs-carousel:before {\n    content: \"\\ec76\";\n  }\n  .bxs-cart:before {\n    content: \"\\ec77\";\n  }\n  .bxs-cart-add:before {\n    content: \"\\ec78\";\n  }\n  .bxs-cart-alt:before {\n    content: \"\\ec79\";\n  }\n  .bxs-cart-download:before {\n    content: \"\\ec7a\";\n  }\n  .bxs-car-wash:before {\n    content: \"\\ec7b\";\n  }\n  .bxs-category:before {\n    content: \"\\ec7c\";\n  }\n  .bxs-category-alt:before {\n    content: \"\\ec7d\";\n  }\n  .bxs-cctv:before {\n    content: \"\\ec7e\";\n  }\n  .bxs-certification:before {\n    content: \"\\ec7f\";\n  }\n  .bxs-chalkboard:before {\n    content: \"\\ec80\";\n  }\n  .bxs-chart:before {\n    content: \"\\ec81\";\n  }\n  .bxs-chat:before {\n    content: \"\\ec82\";\n  }\n  .bxs-checkbox:before {\n    content: \"\\ec83\";\n  }\n  .bxs-checkbox-checked:before {\n    content: \"\\ec84\";\n  }\n  .bxs-check-circle:before {\n    content: \"\\ec85\";\n  }\n  .bxs-check-shield:before {\n    content: \"\\ec86\";\n  }\n  .bxs-check-square:before {\n    content: \"\\ec87\";\n  }\n  .bxs-chess:before {\n    content: \"\\ec88\";\n  }\n  .bxs-chevron-down:before {\n    content: \"\\ec89\";\n  }\n  .bxs-chevron-down-circle:before {\n    content: \"\\ec8a\";\n  }\n  .bxs-chevron-down-square:before {\n    content: \"\\ec8b\";\n  }\n  .bxs-chevron-left:before {\n    content: \"\\ec8c\";\n  }\n  .bxs-chevron-left-circle:before {\n    content: \"\\ec8d\";\n  }\n  .bxs-chevron-left-square:before {\n    content: \"\\ec8e\";\n  }\n  .bxs-chevron-right:before {\n    content: \"\\ec8f\";\n  }\n  .bxs-chevron-right-circle:before {\n    content: \"\\ec90\";\n  }\n  .bxs-chevron-right-square:before {\n    content: \"\\ec91\";\n  }\n  .bxs-chevrons-down:before {\n    content: \"\\ec92\";\n  }\n  .bxs-chevrons-left:before {\n    content: \"\\ec93\";\n  }\n  .bxs-chevrons-right:before {\n    content: \"\\ec94\";\n  }\n  .bxs-chevrons-up:before {\n    content: \"\\ec95\";\n  }\n  .bxs-chevron-up:before {\n    content: \"\\ec96\";\n  }\n  .bxs-chevron-up-circle:before {\n    content: \"\\ec97\";\n  }\n  .bxs-chevron-up-square:before {\n    content: \"\\ec98\";\n  }\n  .bxs-chip:before {\n    content: \"\\ec99\";\n  }\n  .bxs-church:before {\n    content: \"\\ec9a\";\n  }\n  .bxs-circle:before {\n    content: \"\\ec9b\";\n  }\n  .bxs-city:before {\n    content: \"\\ec9c\";\n  }\n  .bxs-clinic:before {\n    content: \"\\ec9d\";\n  }\n  .bxs-cloud:before {\n    content: \"\\ec9e\";\n  }\n  .bxs-cloud-download:before {\n    content: \"\\ec9f\";\n  }\n  .bxs-cloud-lightning:before {\n    content: \"\\eca0\";\n  }\n  .bxs-cloud-rain:before {\n    content: \"\\eca1\";\n  }\n  .bxs-cloud-upload:before {\n    content: \"\\eca2\";\n  }\n  .bxs-coffee:before {\n    content: \"\\eca3\";\n  }\n  .bxs-coffee-alt:before {\n    content: \"\\eca4\";\n  }\n  .bxs-coffee-togo:before {\n    content: \"\\eca5\";\n  }\n  .bxs-cog:before {\n    content: \"\\eca6\";\n  }\n  .bxs-coin:before {\n    content: \"\\eca7\";\n  }\n  .bxs-coin-stack:before {\n    content: \"\\eca8\";\n  }\n  .bxs-collection:before {\n    content: \"\\eca9\";\n  }\n  .bxs-color-fill:before {\n    content: \"\\ecaa\";\n  }\n  .bxs-comment:before {\n    content: \"\\ecab\";\n  }\n  .bxs-comment-add:before {\n    content: \"\\ecac\";\n  }\n  .bxs-comment-check:before {\n    content: \"\\ecad\";\n  }\n  .bxs-comment-detail:before {\n    content: \"\\ecae\";\n  }\n  .bxs-comment-dots:before {\n    content: \"\\ecaf\";\n  }\n  .bxs-comment-edit:before {\n    content: \"\\ecb0\";\n  }\n  .bxs-comment-error:before {\n    content: \"\\ecb1\";\n  }\n  .bxs-comment-minus:before {\n    content: \"\\ecb2\";\n  }\n  .bxs-comment-x:before {\n    content: \"\\ecb3\";\n  }\n  .bxs-compass:before {\n    content: \"\\ecb4\";\n  }\n  .bxs-component:before {\n    content: \"\\ecb5\";\n  }\n  .bxs-confused:before {\n    content: \"\\ecb6\";\n  }\n  .bxs-contact:before {\n    content: \"\\ecb7\";\n  }\n  .bxs-conversation:before {\n    content: \"\\ecb8\";\n  }\n  .bxs-cookie:before {\n    content: \"\\ecb9\";\n  }\n  .bxs-cool:before {\n    content: \"\\ecba\";\n  }\n  .bxs-copy:before {\n    content: \"\\ecbb\";\n  }\n  .bxs-copy-alt:before {\n    content: \"\\ecbc\";\n  }\n  .bxs-copyright:before {\n    content: \"\\ecbd\";\n  }\n  .bxs-coupon:before {\n    content: \"\\ecbe\";\n  }\n  .bxs-credit-card:before {\n    content: \"\\ecbf\";\n  }\n  .bxs-credit-card-alt:before {\n    content: \"\\ecc0\";\n  }\n  .bxs-credit-card-front:before {\n    content: \"\\ecc1\";\n  }\n  .bxs-crop:before {\n    content: \"\\ecc2\";\n  }\n  .bxs-crown:before {\n    content: \"\\ecc3\";\n  }\n  .bxs-cube:before {\n    content: \"\\ecc4\";\n  }\n  .bxs-cube-alt:before {\n    content: \"\\ecc5\";\n  }\n  .bxs-cuboid:before {\n    content: \"\\ecc6\";\n  }\n  .bxs-customize:before {\n    content: \"\\ecc7\";\n  }\n  .bxs-cylinder:before {\n    content: \"\\ecc8\";\n  }\n  .bxs-dashboard:before {\n    content: \"\\ecc9\";\n  }\n  .bxs-data:before {\n    content: \"\\ecca\";\n  }\n  .bxs-detail:before {\n    content: \"\\eccb\";\n  }\n  .bxs-devices:before {\n    content: \"\\eccc\";\n  }\n  .bxs-diamond:before {\n    content: \"\\eccd\";\n  }\n  .bxs-dice-1:before {\n    content: \"\\ecce\";\n  }\n  .bxs-dice-2:before {\n    content: \"\\eccf\";\n  }\n  .bxs-dice-3:before {\n    content: \"\\ecd0\";\n  }\n  .bxs-dice-4:before {\n    content: \"\\ecd1\";\n  }\n  .bxs-dice-5:before {\n    content: \"\\ecd2\";\n  }\n  .bxs-dice-6:before {\n    content: \"\\ecd3\";\n  }\n  .bxs-direction-left:before {\n    content: \"\\ecd4\";\n  }\n  .bxs-direction-right:before {\n    content: \"\\ecd5\";\n  }\n  .bxs-directions:before {\n    content: \"\\ecd6\";\n  }\n  .bxs-disc:before {\n    content: \"\\ecd7\";\n  }\n  .bxs-discount:before {\n    content: \"\\ecd8\";\n  }\n  .bxs-dish:before {\n    content: \"\\ecd9\";\n  }\n  .bxs-dislike:before {\n    content: \"\\ecda\";\n  }\n  .bxs-dizzy:before {\n    content: \"\\ecdb\";\n  }\n  .bxs-dock-bottom:before {\n    content: \"\\ecdc\";\n  }\n  .bxs-dock-left:before {\n    content: \"\\ecdd\";\n  }\n  .bxs-dock-right:before {\n    content: \"\\ecde\";\n  }\n  .bxs-dock-top:before {\n    content: \"\\ecdf\";\n  }\n  .bxs-dollar-circle:before {\n    content: \"\\ece0\";\n  }\n  .bxs-donate-blood:before {\n    content: \"\\ece1\";\n  }\n  .bxs-donate-heart:before {\n    content: \"\\ece2\";\n  }\n  .bxs-door-open:before {\n    content: \"\\ece3\";\n  }\n  .bxs-doughnut-chart:before {\n    content: \"\\ece4\";\n  }\n  .bxs-down-arrow:before {\n    content: \"\\ece5\";\n  }\n  .bxs-down-arrow-alt:before {\n    content: \"\\ece6\";\n  }\n  .bxs-down-arrow-circle:before {\n    content: \"\\ece7\";\n  }\n  .bxs-down-arrow-square:before {\n    content: \"\\ece8\";\n  }\n  .bxs-download:before {\n    content: \"\\ece9\";\n  }\n  .bxs-downvote:before {\n    content: \"\\ecea\";\n  }\n  .bxs-drink:before {\n    content: \"\\eceb\";\n  }\n  .bxs-droplet:before {\n    content: \"\\ecec\";\n  }\n  .bxs-droplet-half:before {\n    content: \"\\eced\";\n  }\n  .bxs-dryer:before {\n    content: \"\\ecee\";\n  }\n  .bxs-duplicate:before {\n    content: \"\\ecef\";\n  }\n  .bxs-edit:before {\n    content: \"\\ecf0\";\n  }\n  .bxs-edit-alt:before {\n    content: \"\\ecf1\";\n  }\n  .bxs-edit-location:before {\n    content: \"\\ecf2\";\n  }\n  .bxs-eject:before {\n    content: \"\\ecf3\";\n  }\n  .bxs-envelope:before {\n    content: \"\\ecf4\";\n  }\n  .bxs-envelope-open:before {\n    content: \"\\ecf5\";\n  }\n  .bxs-eraser:before {\n    content: \"\\ecf6\";\n  }\n  .bxs-error:before {\n    content: \"\\ecf7\";\n  }\n  .bxs-error-alt:before {\n    content: \"\\ecf8\";\n  }\n  .bxs-error-circle:before {\n    content: \"\\ecf9\";\n  }\n  .bxs-ev-station:before {\n    content: \"\\ecfa\";\n  }\n  .bxs-exit:before {\n    content: \"\\ecfb\";\n  }\n  .bxs-extension:before {\n    content: \"\\ecfc\";\n  }\n  .bxs-eyedropper:before {\n    content: \"\\ecfd\";\n  }\n  .bxs-face:before {\n    content: \"\\ecfe\";\n  }\n  .bxs-face-mask:before {\n    content: \"\\ecff\";\n  }\n  .bxs-factory:before {\n    content: \"\\ed00\";\n  }\n  .bxs-fast-forward-circle:before {\n    content: \"\\ed01\";\n  }\n  .bxs-file:before {\n    content: \"\\ed02\";\n  }\n  .bxs-file-archive:before {\n    content: \"\\ed03\";\n  }\n  .bxs-file-blank:before {\n    content: \"\\ed04\";\n  }\n  .bxs-file-css:before {\n    content: \"\\ed05\";\n  }\n  .bxs-file-doc:before {\n    content: \"\\ed06\";\n  }\n  .bxs-file-export:before {\n    content: \"\\ed07\";\n  }\n  .bxs-file-find:before {\n    content: \"\\ed08\";\n  }\n  .bxs-file-gif:before {\n    content: \"\\ed09\";\n  }\n  .bxs-file-html:before {\n    content: \"\\ed0a\";\n  }\n  .bxs-file-image:before {\n    content: \"\\ed0b\";\n  }\n  .bxs-file-import:before {\n    content: \"\\ed0c\";\n  }\n  .bxs-file-jpg:before {\n    content: \"\\ed0d\";\n  }\n  .bxs-file-js:before {\n    content: \"\\ed0e\";\n  }\n  .bxs-file-json:before {\n    content: \"\\ed0f\";\n  }\n  .bxs-file-md:before {\n    content: \"\\ed10\";\n  }\n  .bxs-file-pdf:before {\n    content: \"\\ed11\";\n  }\n  .bxs-file-plus:before {\n    content: \"\\ed12\";\n  }\n  .bxs-file-png:before {\n    content: \"\\ed13\";\n  }\n  .bxs-file-txt:before {\n    content: \"\\ed14\";\n  }\n  .bxs-film:before {\n    content: \"\\ed15\";\n  }\n  .bxs-filter-alt:before {\n    content: \"\\ed16\";\n  }\n  .bxs-first-aid:before {\n    content: \"\\ed17\";\n  }\n  .bxs-flag:before {\n    content: \"\\ed18\";\n  }\n  .bxs-flag-alt:before {\n    content: \"\\ed19\";\n  }\n  .bxs-flag-checkered:before {\n    content: \"\\ed1a\";\n  }\n  .bxs-flame:before {\n    content: \"\\ed1b\";\n  }\n  .bxs-flask:before {\n    content: \"\\ed1c\";\n  }\n  .bxs-florist:before {\n    content: \"\\ed1d\";\n  }\n  .bxs-folder:before {\n    content: \"\\ed1e\";\n  }\n  .bxs-folder-minus:before {\n    content: \"\\ed1f\";\n  }\n  .bxs-folder-open:before {\n    content: \"\\ed20\";\n  }\n  .bxs-folder-plus:before {\n    content: \"\\ed21\";\n  }\n  .bxs-food-menu:before {\n    content: \"\\ed22\";\n  }\n  .bxs-fridge:before {\n    content: \"\\ed23\";\n  }\n  .bxs-game:before {\n    content: \"\\ed24\";\n  }\n  .bxs-gas-pump:before {\n    content: \"\\ed25\";\n  }\n  .bxs-ghost:before {\n    content: \"\\ed26\";\n  }\n  .bxs-gift:before {\n    content: \"\\ed27\";\n  }\n  .bxs-graduation:before {\n    content: \"\\ed28\";\n  }\n  .bxs-grid:before {\n    content: \"\\ed29\";\n  }\n  .bxs-grid-alt:before {\n    content: \"\\ed2a\";\n  }\n  .bxs-group:before {\n    content: \"\\ed2b\";\n  }\n  .bxs-guitar-amp:before {\n    content: \"\\ed2c\";\n  }\n  .bxs-hand-down:before {\n    content: \"\\ed2d\";\n  }\n  .bxs-hand-left:before {\n    content: \"\\ed2e\";\n  }\n  .bxs-hand-right:before {\n    content: \"\\ed2f\";\n  }\n  .bxs-hand-up:before {\n    content: \"\\ed30\";\n  }\n  .bxs-happy:before {\n    content: \"\\ed31\";\n  }\n  .bxs-happy-alt:before {\n    content: \"\\ed32\";\n  }\n  .bxs-happy-beaming:before {\n    content: \"\\ed33\";\n  }\n  .bxs-happy-heart-eyes:before {\n    content: \"\\ed34\";\n  }\n  .bxs-hdd:before {\n    content: \"\\ed35\";\n  }\n  .bxs-heart:before {\n    content: \"\\ed36\";\n  }\n  .bxs-heart-circle:before {\n    content: \"\\ed37\";\n  }\n  .bxs-heart-square:before {\n    content: \"\\ed38\";\n  }\n  .bxs-help-circle:before {\n    content: \"\\ed39\";\n  }\n  .bxs-hide:before {\n    content: \"\\ed3a\";\n  }\n  .bxs-home:before {\n    content: \"\\ed3b\";\n  }\n  .bxs-home-circle:before {\n    content: \"\\ed3c\";\n  }\n  .bxs-home-heart:before {\n    content: \"\\ed3d\";\n  }\n  .bxs-home-smile:before {\n    content: \"\\ed3e\";\n  }\n  .bxs-hot:before {\n    content: \"\\ed3f\";\n  }\n  .bxs-hotel:before {\n    content: \"\\ed40\";\n  }\n  .bxs-hourglass:before {\n    content: \"\\ed41\";\n  }\n  .bxs-hourglass-bottom:before {\n    content: \"\\ed42\";\n  }\n  .bxs-hourglass-top:before {\n    content: \"\\ed43\";\n  }\n  .bxs-id-card:before {\n    content: \"\\ed44\";\n  }\n  .bxs-image:before {\n    content: \"\\ed45\";\n  }\n  .bxs-image-add:before {\n    content: \"\\ed46\";\n  }\n  .bxs-image-alt:before {\n    content: \"\\ed47\";\n  }\n  .bxs-inbox:before {\n    content: \"\\ed48\";\n  }\n  .bxs-info-circle:before {\n    content: \"\\ed49\";\n  }\n  .bxs-info-square:before {\n    content: \"\\ed4a\";\n  }\n  .bxs-institution:before {\n    content: \"\\ed4b\";\n  }\n  .bxs-joystick:before {\n    content: \"\\ed4c\";\n  }\n  .bxs-joystick-alt:before {\n    content: \"\\ed4d\";\n  }\n  .bxs-joystick-button:before {\n    content: \"\\ed4e\";\n  }\n  .bxs-key:before {\n    content: \"\\ed4f\";\n  }\n  .bxs-keyboard:before {\n    content: \"\\ed50\";\n  }\n  .bxs-label:before {\n    content: \"\\ed51\";\n  }\n  .bxs-landmark:before {\n    content: \"\\ed52\";\n  }\n  .bxs-landscape:before {\n    content: \"\\ed53\";\n  }\n  .bxs-laugh:before {\n    content: \"\\ed54\";\n  }\n  .bxs-layer:before {\n    content: \"\\ed55\";\n  }\n  .bxs-layer-minus:before {\n    content: \"\\ed56\";\n  }\n  .bxs-layer-plus:before {\n    content: \"\\ed57\";\n  }\n  .bxs-layout:before {\n    content: \"\\ed58\";\n  }\n  .bxs-left-arrow:before {\n    content: \"\\ed59\";\n  }\n  .bxs-left-arrow-alt:before {\n    content: \"\\ed5a\";\n  }\n  .bxs-left-arrow-circle:before {\n    content: \"\\ed5b\";\n  }\n  .bxs-left-arrow-square:before {\n    content: \"\\ed5c\";\n  }\n  .bxs-left-down-arrow-circle:before {\n    content: \"\\ed5d\";\n  }\n  .bxs-left-top-arrow-circle:before {\n    content: \"\\ed5e\";\n  }\n  .bxs-like:before {\n    content: \"\\ed5f\";\n  }\n  .bxs-location-plus:before {\n    content: \"\\ed60\";\n  }\n  .bxs-lock:before {\n    content: \"\\ed61\";\n  }\n  .bxs-lock-alt:before {\n    content: \"\\ed62\";\n  }\n  .bxs-lock-open:before {\n    content: \"\\ed63\";\n  }\n  .bxs-lock-open-alt:before {\n    content: \"\\ed64\";\n  }\n  .bxs-log-in:before {\n    content: \"\\ed65\";\n  }\n  .bxs-log-in-circle:before {\n    content: \"\\ed66\";\n  }\n  .bxs-log-out:before {\n    content: \"\\ed67\";\n  }\n  .bxs-log-out-circle:before {\n    content: \"\\ed68\";\n  }\n  .bxs-low-vision:before {\n    content: \"\\ed69\";\n  }\n  .bxs-magic-wand:before {\n    content: \"\\ed6a\";\n  }\n  .bxs-magnet:before {\n    content: \"\\ed6b\";\n  }\n  .bxs-map:before {\n    content: \"\\ed6c\";\n  }\n  .bxs-map-alt:before {\n    content: \"\\ed6d\";\n  }\n  .bxs-map-pin:before {\n    content: \"\\ed6e\";\n  }\n  .bxs-mask:before {\n    content: \"\\ed6f\";\n  }\n  .bxs-medal:before {\n    content: \"\\ed70\";\n  }\n  .bxs-megaphone:before {\n    content: \"\\ed71\";\n  }\n  .bxs-meh:before {\n    content: \"\\ed72\";\n  }\n  .bxs-meh-alt:before {\n    content: \"\\ed73\";\n  }\n  .bxs-meh-blank:before {\n    content: \"\\ed74\";\n  }\n  .bxs-memory-card:before {\n    content: \"\\ed75\";\n  }\n  .bxs-message:before {\n    content: \"\\ed76\";\n  }\n  .bxs-message-add:before {\n    content: \"\\ed77\";\n  }\n  .bxs-message-alt:before {\n    content: \"\\ed78\";\n  }\n  .bxs-message-alt-add:before {\n    content: \"\\ed79\";\n  }\n  .bxs-message-alt-check:before {\n    content: \"\\ed7a\";\n  }\n  .bxs-message-alt-detail:before {\n    content: \"\\ed7b\";\n  }\n  .bxs-message-alt-dots:before {\n    content: \"\\ed7c\";\n  }\n  .bxs-message-alt-edit:before {\n    content: \"\\ed7d\";\n  }\n  .bxs-message-alt-error:before {\n    content: \"\\ed7e\";\n  }\n  .bxs-message-alt-minus:before {\n    content: \"\\ed7f\";\n  }\n  .bxs-message-alt-x:before {\n    content: \"\\ed80\";\n  }\n  .bxs-message-check:before {\n    content: \"\\ed81\";\n  }\n  .bxs-message-detail:before {\n    content: \"\\ed82\";\n  }\n  .bxs-message-dots:before {\n    content: \"\\ed83\";\n  }\n  .bxs-message-edit:before {\n    content: \"\\ed84\";\n  }\n  .bxs-message-error:before {\n    content: \"\\ed85\";\n  }\n  .bxs-message-minus:before {\n    content: \"\\ed86\";\n  }\n  .bxs-message-rounded:before {\n    content: \"\\ed87\";\n  }\n  .bxs-message-rounded-add:before {\n    content: \"\\ed88\";\n  }\n  .bxs-message-rounded-check:before {\n    content: \"\\ed89\";\n  }\n  .bxs-message-rounded-detail:before {\n    content: \"\\ed8a\";\n  }\n  .bxs-message-rounded-dots:before {\n    content: \"\\ed8b\";\n  }\n  .bxs-message-rounded-edit:before {\n    content: \"\\ed8c\";\n  }\n  .bxs-message-rounded-error:before {\n    content: \"\\ed8d\";\n  }\n  .bxs-message-rounded-minus:before {\n    content: \"\\ed8e\";\n  }\n  .bxs-message-rounded-x:before {\n    content: \"\\ed8f\";\n  }\n  .bxs-message-square:before {\n    content: \"\\ed90\";\n  }\n  .bxs-message-square-add:before {\n    content: \"\\ed91\";\n  }\n  .bxs-message-square-check:before {\n    content: \"\\ed92\";\n  }\n  .bxs-message-square-detail:before {\n    content: \"\\ed93\";\n  }\n  .bxs-message-square-dots:before {\n    content: \"\\ed94\";\n  }\n  .bxs-message-square-edit:before {\n    content: \"\\ed95\";\n  }\n  .bxs-message-square-error:before {\n    content: \"\\ed96\";\n  }\n  .bxs-message-square-minus:before {\n    content: \"\\ed97\";\n  }\n  .bxs-message-square-x:before {\n    content: \"\\ed98\";\n  }\n  .bxs-message-x:before {\n    content: \"\\ed99\";\n  }\n  .bxs-meteor:before {\n    content: \"\\ed9a\";\n  }\n  .bxs-microchip:before {\n    content: \"\\ed9b\";\n  }\n  .bxs-microphone:before {\n    content: \"\\ed9c\";\n  }\n  .bxs-microphone-alt:before {\n    content: \"\\ed9d\";\n  }\n  .bxs-microphone-off:before {\n    content: \"\\ed9e\";\n  }\n  .bxs-minus-circle:before {\n    content: \"\\ed9f\";\n  }\n  .bxs-minus-square:before {\n    content: \"\\eda0\";\n  }\n  .bxs-mobile:before {\n    content: \"\\eda1\";\n  }\n  .bxs-mobile-vibration:before {\n    content: \"\\eda2\";\n  }\n  .bxs-moon:before {\n    content: \"\\eda3\";\n  }\n  .bxs-mouse:before {\n    content: \"\\eda4\";\n  }\n  .bxs-mouse-alt:before {\n    content: \"\\eda5\";\n  }\n  .bxs-movie:before {\n    content: \"\\eda6\";\n  }\n  .bxs-movie-play:before {\n    content: \"\\eda7\";\n  }\n  .bxs-music:before {\n    content: \"\\eda8\";\n  }\n  .bxs-navigation:before {\n    content: \"\\eda9\";\n  }\n  .bxs-network-chart:before {\n    content: \"\\edaa\";\n  }\n  .bxs-news:before {\n    content: \"\\edab\";\n  }\n  .bxs-no-entry:before {\n    content: \"\\edac\";\n  }\n  .bxs-note:before {\n    content: \"\\edad\";\n  }\n  .bxs-notepad:before {\n    content: \"\\edae\";\n  }\n  .bxs-notification:before {\n    content: \"\\edaf\";\n  }\n  .bxs-notification-off:before {\n    content: \"\\edb0\";\n  }\n  .bxs-offer:before {\n    content: \"\\edb1\";\n  }\n  .bxs-package:before {\n    content: \"\\edb2\";\n  }\n  .bxs-paint:before {\n    content: \"\\edb3\";\n  }\n  .bxs-paint-roll:before {\n    content: \"\\edb4\";\n  }\n  .bxs-palette:before {\n    content: \"\\edb5\";\n  }\n  .bxs-paper-plane:before {\n    content: \"\\edb6\";\n  }\n  .bxs-parking:before {\n    content: \"\\edb7\";\n  }\n  .bxs-paste:before {\n    content: \"\\edb8\";\n  }\n  .bxs-pen:before {\n    content: \"\\edb9\";\n  }\n  .bxs-pencil:before {\n    content: \"\\edba\";\n  }\n  .bxs-phone:before {\n    content: \"\\edbb\";\n  }\n  .bxs-phone-call:before {\n    content: \"\\edbc\";\n  }\n  .bxs-phone-incoming:before {\n    content: \"\\edbd\";\n  }\n  .bxs-phone-outgoing:before {\n    content: \"\\edbe\";\n  }\n  .bxs-photo-album:before {\n    content: \"\\edbf\";\n  }\n  .bxs-piano:before {\n    content: \"\\edc0\";\n  }\n  .bxs-pie-chart:before {\n    content: \"\\edc1\";\n  }\n  .bxs-pie-chart-alt:before {\n    content: \"\\edc2\";\n  }\n  .bxs-pie-chart-alt-2:before {\n    content: \"\\edc3\";\n  }\n  .bxs-pin:before {\n    content: \"\\edc4\";\n  }\n  .bxs-pizza:before {\n    content: \"\\edc5\";\n  }\n  .bxs-plane:before {\n    content: \"\\edc6\";\n  }\n  .bxs-plane-alt:before {\n    content: \"\\edc7\";\n  }\n  .bxs-plane-land:before {\n    content: \"\\edc8\";\n  }\n  .bxs-planet:before {\n    content: \"\\edc9\";\n  }\n  .bxs-plane-take-off:before {\n    content: \"\\edca\";\n  }\n  .bxs-playlist:before {\n    content: \"\\edcb\";\n  }\n  .bxs-plug:before {\n    content: \"\\edcc\";\n  }\n  .bxs-plus-circle:before {\n    content: \"\\edcd\";\n  }\n  .bxs-plus-square:before {\n    content: \"\\edce\";\n  }\n  .bxs-pointer:before {\n    content: \"\\edcf\";\n  }\n  .bxs-polygon:before {\n    content: \"\\edd0\";\n  }\n  .bxs-printer:before {\n    content: \"\\edd1\";\n  }\n  .bxs-purchase-tag:before {\n    content: \"\\edd2\";\n  }\n  .bxs-purchase-tag-alt:before {\n    content: \"\\edd3\";\n  }\n  .bxs-pyramid:before {\n    content: \"\\edd4\";\n  }\n  .bxs-quote-alt-left:before {\n    content: \"\\edd5\";\n  }\n  .bxs-quote-alt-right:before {\n    content: \"\\edd6\";\n  }\n  .bxs-quote-left:before {\n    content: \"\\edd7\";\n  }\n  .bxs-quote-right:before {\n    content: \"\\edd8\";\n  }\n  .bxs-quote-single-left:before {\n    content: \"\\edd9\";\n  }\n  .bxs-quote-single-right:before {\n    content: \"\\edda\";\n  }\n  .bxs-radiation:before {\n    content: \"\\eddb\";\n  }\n  .bxs-radio:before {\n    content: \"\\eddc\";\n  }\n  .bxs-receipt:before {\n    content: \"\\eddd\";\n  }\n  .bxs-rectangle:before {\n    content: \"\\edde\";\n  }\n  .bxs-rename:before {\n    content: \"\\eddf\";\n  }\n  .bxs-report:before {\n    content: \"\\ede0\";\n  }\n  .bxs-rewind-circle:before {\n    content: \"\\ede1\";\n  }\n  .bxs-right-arrow:before {\n    content: \"\\ede2\";\n  }\n  .bxs-right-arrow-alt:before {\n    content: \"\\ede3\";\n  }\n  .bxs-right-arrow-circle:before {\n    content: \"\\ede4\";\n  }\n  .bxs-right-arrow-square:before {\n    content: \"\\ede5\";\n  }\n  .bxs-right-down-arrow-circle:before {\n    content: \"\\ede6\";\n  }\n  .bxs-right-top-arrow-circle:before {\n    content: \"\\ede7\";\n  }\n  .bxs-rocket:before {\n    content: \"\\ede8\";\n  }\n  .bxs-ruler:before {\n    content: \"\\ede9\";\n  }\n  .bxs-sad:before {\n    content: \"\\edea\";\n  }\n  .bxs-save:before {\n    content: \"\\edeb\";\n  }\n  .bxs-school:before {\n    content: \"\\edec\";\n  }\n  .bxs-search:before {\n    content: \"\\eded\";\n  }\n  .bxs-search-alt-2:before {\n    content: \"\\edee\";\n  }\n  .bxs-select-multiple:before {\n    content: \"\\edef\";\n  }\n  .bxs-send:before {\n    content: \"\\edf0\";\n  }\n  .bxs-server:before {\n    content: \"\\edf1\";\n  }\n  .bxs-shapes:before {\n    content: \"\\edf2\";\n  }\n  .bxs-share:before {\n    content: \"\\edf3\";\n  }\n  .bxs-share-alt:before {\n    content: \"\\edf4\";\n  }\n  .bxs-shield:before {\n    content: \"\\edf5\";\n  }\n  .bxs-shield-alt-2:before {\n    content: \"\\edf6\";\n  }\n  .bxs-shield-x:before {\n    content: \"\\edf7\";\n  }\n  .bxs-ship:before {\n    content: \"\\edf8\";\n  }\n  .bxs-shocked:before {\n    content: \"\\edf9\";\n  }\n  .bxs-shopping-bag:before {\n    content: \"\\edfa\";\n  }\n  .bxs-shopping-bag-alt:before {\n    content: \"\\edfb\";\n  }\n  .bxs-shopping-bags:before {\n    content: \"\\edfc\";\n  }\n  .bxs-show:before {\n    content: \"\\edfd\";\n  }\n  .bxs-skip-next-circle:before {\n    content: \"\\edfe\";\n  }\n  .bxs-skip-previous-circle:before {\n    content: \"\\edff\";\n  }\n  .bxs-skull:before {\n    content: \"\\ee00\";\n  }\n  .bxs-sleepy:before {\n    content: \"\\ee01\";\n  }\n  .bxs-slideshow:before {\n    content: \"\\ee02\";\n  }\n  .bxs-smile:before {\n    content: \"\\ee03\";\n  }\n  .bxs-sort-alt:before {\n    content: \"\\ee04\";\n  }\n  .bxs-spa:before {\n    content: \"\\ee05\";\n  }\n  .bxs-spray-can:before {\n    content: \"\\ee06\";\n  }\n  .bxs-spreadsheet:before {\n    content: \"\\ee07\";\n  }\n  .bxs-square:before {\n    content: \"\\ee08\";\n  }\n  .bxs-square-rounded:before {\n    content: \"\\ee09\";\n  }\n  .bxs-star:before {\n    content: \"\\ee0a\";\n  }\n  .bxs-star-half:before {\n    content: \"\\ee0b\";\n  }\n  .bxs-sticker:before {\n    content: \"\\ee0c\";\n  }\n  .bxs-stopwatch:before {\n    content: \"\\ee0d\";\n  }\n  .bxs-store:before {\n    content: \"\\ee0e\";\n  }\n  .bxs-store-alt:before {\n    content: \"\\ee0f\";\n  }\n  .bxs-sun:before {\n    content: \"\\ee10\";\n  }\n  .bxs-tachometer:before {\n    content: \"\\ee11\";\n  }\n  .bxs-tag:before {\n    content: \"\\ee12\";\n  }\n  .bxs-tag-alt:before {\n    content: \"\\ee13\";\n  }\n  .bxs-tag-x:before {\n    content: \"\\ee14\";\n  }\n  .bxs-taxi:before {\n    content: \"\\ee15\";\n  }\n  .bxs-tennis-ball:before {\n    content: \"\\ee16\";\n  }\n  .bxs-terminal:before {\n    content: \"\\ee17\";\n  }\n  .bxs-thermometer:before {\n    content: \"\\ee18\";\n  }\n  .bxs-time:before {\n    content: \"\\ee19\";\n  }\n  .bxs-time-five:before {\n    content: \"\\ee1a\";\n  }\n  .bxs-timer:before {\n    content: \"\\ee1b\";\n  }\n  .bxs-tired:before {\n    content: \"\\ee1c\";\n  }\n  .bxs-toggle-left:before {\n    content: \"\\ee1d\";\n  }\n  .bxs-toggle-right:before {\n    content: \"\\ee1e\";\n  }\n  .bxs-tone:before {\n    content: \"\\ee1f\";\n  }\n  .bxs-torch:before {\n    content: \"\\ee20\";\n  }\n  .bxs-to-top:before {\n    content: \"\\ee21\";\n  }\n  .bxs-traffic:before {\n    content: \"\\ee22\";\n  }\n  .bxs-traffic-barrier:before {\n    content: \"\\ee23\";\n  }\n  .bxs-traffic-cone:before {\n    content: \"\\ee24\";\n  }\n  .bxs-train:before {\n    content: \"\\ee25\";\n  }\n  .bxs-trash:before {\n    content: \"\\ee26\";\n  }\n  .bxs-trash-alt:before {\n    content: \"\\ee27\";\n  }\n  .bxs-tree:before {\n    content: \"\\ee28\";\n  }\n  .bxs-trophy:before {\n    content: \"\\ee29\";\n  }\n  .bxs-truck:before {\n    content: \"\\ee2a\";\n  }\n  .bxs-t-shirt:before {\n    content: \"\\ee2b\";\n  }\n  .bxs-tv:before {\n    content: \"\\ee2c\";\n  }\n  .bxs-up-arrow:before {\n    content: \"\\ee2d\";\n  }\n  .bxs-up-arrow-alt:before {\n    content: \"\\ee2e\";\n  }\n  .bxs-up-arrow-circle:before {\n    content: \"\\ee2f\";\n  }\n  .bxs-up-arrow-square:before {\n    content: \"\\ee30\";\n  }\n  .bxs-upside-down:before {\n    content: \"\\ee31\";\n  }\n  .bxs-upvote:before {\n    content: \"\\ee32\";\n  }\n  .bxs-user:before {\n    content: \"\\ee33\";\n  }\n  .bxs-user-account:before {\n    content: \"\\ee34\";\n  }\n  .bxs-user-badge:before {\n    content: \"\\ee35\";\n  }\n  .bxs-user-check:before {\n    content: \"\\ee36\";\n  }\n  .bxs-user-circle:before {\n    content: \"\\ee37\";\n  }\n  .bxs-user-detail:before {\n    content: \"\\ee38\";\n  }\n  .bxs-user-minus:before {\n    content: \"\\ee39\";\n  }\n  .bxs-user-pin:before {\n    content: \"\\ee3a\";\n  }\n  .bxs-user-plus:before {\n    content: \"\\ee3b\";\n  }\n  .bxs-user-rectangle:before {\n    content: \"\\ee3c\";\n  }\n  .bxs-user-voice:before {\n    content: \"\\ee3d\";\n  }\n  .bxs-user-x:before {\n    content: \"\\ee3e\";\n  }\n  .bxs-vector:before {\n    content: \"\\ee3f\";\n  }\n  .bxs-vial:before {\n    content: \"\\ee40\";\n  }\n  .bxs-video:before {\n    content: \"\\ee41\";\n  }\n  .bxs-video-off:before {\n    content: \"\\ee42\";\n  }\n  .bxs-video-plus:before {\n    content: \"\\ee43\";\n  }\n  .bxs-video-recording:before {\n    content: \"\\ee44\";\n  }\n  .bxs-videos:before {\n    content: \"\\ee45\";\n  }\n  .bxs-virus:before {\n    content: \"\\ee46\";\n  }\n  .bxs-virus-block:before {\n    content: \"\\ee47\";\n  }\n  .bxs-volume:before {\n    content: \"\\ee48\";\n  }\n  .bxs-volume-full:before {\n    content: \"\\ee49\";\n  }\n  .bxs-volume-low:before {\n    content: \"\\ee4a\";\n  }\n  .bxs-volume-mute:before {\n    content: \"\\ee4b\";\n  }\n  .bxs-wallet:before {\n    content: \"\\ee4c\";\n  }\n  .bxs-wallet-alt:before {\n    content: \"\\ee4d\";\n  }\n  .bxs-washer:before {\n    content: \"\\ee4e\";\n  }\n  .bxs-watch:before {\n    content: \"\\ee4f\";\n  }\n  .bxs-watch-alt:before {\n    content: \"\\ee50\";\n  }\n  .bxs-webcam:before {\n    content: \"\\ee51\";\n  }\n  .bxs-widget:before {\n    content: \"\\ee52\";\n  }\n  .bxs-window-alt:before {\n    content: \"\\ee53\";\n  }\n  .bxs-wine:before {\n    content: \"\\ee54\";\n  }\n  .bxs-wink-smile:before {\n    content: \"\\ee55\";\n  }\n  .bxs-wink-tongue:before {\n    content: \"\\ee56\";\n  }\n  .bxs-wrench:before {\n    content: \"\\ee57\";\n  }\n  .bxs-x-circle:before {\n    content: \"\\ee58\";\n  }\n  .bxs-x-square:before {\n    content: \"\\ee59\";\n  }\n  .bxs-yin-yang:before {\n    content: \"\\ee5a\";\n  }\n  .bxs-zap:before {\n    content: \"\\ee5b\";\n  }\n  .bxs-zoom-in:before {\n    content: \"\\ee5c\";\n  }\n  .bxs-zoom-out:before {\n    content: \"\\ee5d\";\n  }\n  .bxl-500px:before {\n    content: \"\\ee5e\";\n  }\n  .bxl-adobe:before {\n    content: \"\\ee5f\";\n  }\n  .bxl-airbnb:before {\n    content: \"\\ee60\";\n  }\n  .bxl-algolia:before {\n    content: \"\\ee61\";\n  }\n  .bxl-amazon:before {\n    content: \"\\ee62\";\n  }\n  .bxl-android:before {\n    content: \"\\ee63\";\n  }\n  .bxl-angular:before {\n    content: \"\\ee64\";\n  }\n  .bxl-apple:before {\n    content: \"\\ee65\";\n  }\n  .bxl-audible:before {\n    content: \"\\ee66\";\n  }\n  .bxl-baidu:before {\n    content: \"\\ee67\";\n  }\n  .bxl-behance:before {\n    content: \"\\ee68\";\n  }\n  .bxl-bing:before {\n    content: \"\\ee69\";\n  }\n  .bxl-bitcoin:before {\n    content: \"\\ee6a\";\n  }\n  .bxl-blender:before {\n    content: \"\\ee6b\";\n  }\n  .bxl-blogger:before {\n    content: \"\\ee6c\";\n  }\n  .bxl-bootstrap:before {\n    content: \"\\ee6d\";\n  }\n  .bxl-chrome:before {\n    content: \"\\ee6e\";\n  }\n  .bxl-codepen:before {\n    content: \"\\ee6f\";\n  }\n  .bxl-c-plus-plus:before {\n    content: \"\\ee70\";\n  }\n  .bxl-creative-commons:before {\n    content: \"\\ee71\";\n  }\n  .bxl-css3:before {\n    content: \"\\ee72\";\n  }\n  .bxl-dailymotion:before {\n    content: \"\\ee73\";\n  }\n  .bxl-deviantart:before {\n    content: \"\\ee74\";\n  }\n  .bxl-dev-to:before {\n    content: \"\\ee75\";\n  }\n  .bxl-digg:before {\n    content: \"\\ee76\";\n  }\n  .bxl-digitalocean:before {\n    content: \"\\ee77\";\n  }\n  .bxl-discord:before {\n    content: \"\\ee78\";\n  }\n  .bxl-discourse:before {\n    content: \"\\ee79\";\n  }\n  .bxl-django:before {\n    content: \"\\ee7a\";\n  }\n  .bxl-dribbble:before {\n    content: \"\\ee7b\";\n  }\n  .bxl-dropbox:before {\n    content: \"\\ee7c\";\n  }\n  .bxl-drupal:before {\n    content: \"\\ee7d\";\n  }\n  .bxl-ebay:before {\n    content: \"\\ee7e\";\n  }\n  .bxl-edge:before {\n    content: \"\\ee7f\";\n  }\n  .bxl-etsy:before {\n    content: \"\\ee80\";\n  }\n  .bxl-facebook:before {\n    content: \"\\ee81\";\n  }\n  .bxl-facebook-circle:before {\n    content: \"\\ee82\";\n  }\n  .bxl-facebook-square:before {\n    content: \"\\ee83\";\n  }\n  .bxl-figma:before {\n    content: \"\\ee84\";\n  }\n  .bxl-firebase:before {\n    content: \"\\ee85\";\n  }\n  .bxl-firefox:before {\n    content: \"\\ee86\";\n  }\n  .bxl-flickr:before {\n    content: \"\\ee87\";\n  }\n  .bxl-flickr-square:before {\n    content: \"\\ee88\";\n  }\n  .bxl-foursquare:before {\n    content: \"\\ee89\";\n  }\n  .bxl-git:before {\n    content: \"\\ee8a\";\n  }\n  .bxl-github:before {\n    content: \"\\ee8b\";\n  }\n  .bxl-gitlab:before {\n    content: \"\\ee8c\";\n  }\n  .bxl-google:before {\n    content: \"\\ee8d\";\n  }\n  .bxl-google-cloud:before {\n    content: \"\\ee8e\";\n  }\n  .bxl-google-plus:before {\n    content: \"\\ee8f\";\n  }\n  .bxl-google-plus-circle:before {\n    content: \"\\ee90\";\n  }\n  .bxl-html5:before {\n    content: \"\\ee91\";\n  }\n  .bxl-imdb:before {\n    content: \"\\ee92\";\n  }\n  .bxl-instagram:before {\n    content: \"\\ee93\";\n  }\n  .bxl-instagram-alt:before {\n    content: \"\\ee94\";\n  }\n  .bxl-internet-explorer:before {\n    content: \"\\ee95\";\n  }\n  .bxl-invision:before {\n    content: \"\\ee96\";\n  }\n  .bxl-javascript:before {\n    content: \"\\ee97\";\n  }\n  .bxl-joomla:before {\n    content: \"\\ee98\";\n  }\n  .bxl-jquery:before {\n    content: \"\\ee99\";\n  }\n  .bxl-jsfiddle:before {\n    content: \"\\ee9a\";\n  }\n  .bxl-kickstarter:before {\n    content: \"\\ee9b\";\n  }\n  .bxl-kubernetes:before {\n    content: \"\\ee9c\";\n  }\n  .bxl-less:before {\n    content: \"\\ee9d\";\n  }\n  .bxl-linkedin:before {\n    content: \"\\ee9e\";\n  }\n  .bxl-linkedin-square:before {\n    content: \"\\ee9f\";\n  }\n  .bxl-magento:before {\n    content: \"\\eea0\";\n  }\n  .bxl-mailchimp:before {\n    content: \"\\eea1\";\n  }\n  .bxl-markdown:before {\n    content: \"\\eea2\";\n  }\n  .bxl-mastercard:before {\n    content: \"\\eea3\";\n  }\n  .bxl-medium:before {\n    content: \"\\eea4\";\n  }\n  .bxl-medium-old:before {\n    content: \"\\eea5\";\n  }\n  .bxl-medium-square:before {\n    content: \"\\eea6\";\n  }\n  .bxl-messenger:before {\n    content: \"\\eea7\";\n  }\n  .bxl-microsoft:before {\n    content: \"\\eea8\";\n  }\n  .bxl-microsoft-teams:before {\n    content: \"\\eea9\";\n  }\n  .bxl-nodejs:before {\n    content: \"\\eeaa\";\n  }\n  .bxl-ok-ru:before {\n    content: \"\\eeab\";\n  }\n  .bxl-opera:before {\n    content: \"\\eeac\";\n  }\n  .bxl-patreon:before {\n    content: \"\\eead\";\n  }\n  .bxl-paypal:before {\n    content: \"\\eeae\";\n  }\n  .bxl-periscope:before {\n    content: \"\\eeaf\";\n  }\n  .bxl-pinterest:before {\n    content: \"\\eeb0\";\n  }\n  .bxl-pinterest-alt:before {\n    content: \"\\eeb1\";\n  }\n  .bxl-play-store:before {\n    content: \"\\eeb2\";\n  }\n  .bxl-pocket:before {\n    content: \"\\eeb3\";\n  }\n  .bxl-product-hunt:before {\n    content: \"\\eeb4\";\n  }\n  .bxl-python:before {\n    content: \"\\eeb5\";\n  }\n  .bxl-quora:before {\n    content: \"\\eeb6\";\n  }\n  .bxl-react:before {\n    content: \"\\eeb7\";\n  }\n  .bxl-redbubble:before {\n    content: \"\\eeb8\";\n  }\n  .bxl-reddit:before {\n    content: \"\\eeb9\";\n  }\n  .bxl-redux:before {\n    content: \"\\eeba\";\n  }\n  .bxl-sass:before {\n    content: \"\\eebb\";\n  }\n  .bxl-shopify:before {\n    content: \"\\eebc\";\n  }\n  .bxl-skype:before {\n    content: \"\\eebd\";\n  }\n  .bxl-slack:before {\n    content: \"\\eebe\";\n  }\n  .bxl-slack-old:before {\n    content: \"\\eebf\";\n  }\n  .bxl-snapchat:before {\n    content: \"\\eec0\";\n  }\n  .bxl-soundcloud:before {\n    content: \"\\eec1\";\n  }\n  .bxl-spotify:before {\n    content: \"\\eec2\";\n  }\n  .bxl-spring-boot:before {\n    content: \"\\eec3\";\n  }\n  .bxl-squarespace:before {\n    content: \"\\eec4\";\n  }\n  .bxl-stack-overflow:before {\n    content: \"\\eec5\";\n  }\n  .bxl-stripe:before {\n    content: \"\\eec6\";\n  }\n  .bxl-telegram:before {\n    content: \"\\eec7\";\n  }\n  .bxl-trello:before {\n    content: \"\\eec8\";\n  }\n  .bxl-tumblr:before {\n    content: \"\\eec9\";\n  }\n  .bxl-tux:before {\n    content: \"\\eeca\";\n  }\n  .bxl-twitch:before {\n    content: \"\\eecb\";\n  }\n  .bxl-twitter:before {\n    content: \"\\eecc\";\n  }\n  .bxl-unsplash:before {\n    content: \"\\eecd\";\n  }\n  .bxl-vimeo:before {\n    content: \"\\eece\";\n  }\n  .bxl-visa:before {\n    content: \"\\eecf\";\n  }\n  .bxl-vk:before {\n    content: \"\\eed0\";\n  }\n  .bxl-vuejs:before {\n    content: \"\\eed1\";\n  }\n  .bxl-whatsapp:before {\n    content: \"\\eed2\";\n  }\n  .bxl-whatsapp-square:before {\n    content: \"\\eed3\";\n  }\n  .bxl-wikipedia:before {\n    content: \"\\eed4\";\n  }\n  .bxl-windows:before {\n    content: \"\\eed5\";\n  }\n  .bxl-wix:before {\n    content: \"\\eed6\";\n  }\n  .bxl-wordpress:before {\n    content: \"\\eed7\";\n  }\n  .bxl-yahoo:before {\n    content: \"\\eed8\";\n  }\n  .bxl-yelp:before {\n    content: \"\\eed9\";\n  }\n  .bxl-youtube:before {\n    content: \"\\eeda\";\n  }\n  .bxl-zoom:before {\n    content: \"\\eedb\";\n  }\n  "
  },
  {
    "path": "icon-packs/ikonli-bpmn-pack/ikonli-bpmn-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-bpmn-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.bpmn {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.bpmn;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.bpmn.BpmnIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.bpmn.BpmnIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-bpmn-pack/src/main/java/org/kordamp/ikonli/bpmn/Bpmn.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bpmn;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Bpmn implements Ikon {\n    AD_HOC_MARKER(\"bpmn-ad-hoc-marker\", '\\ue855'),\n    BPMN_IO(\"bpmn-bpmn-io\", '\\ue831'),\n    BUSINESS_RULE(\"bpmn-business-rule\", '\\ue818'),\n    BUSINESS_RULE_TASK(\"bpmn-business-rule-task\", '\\ue827'),\n    CALL_ACTIVITY(\"bpmn-call-activity\", '\\ue82a'),\n    COMPENSATION_MARKER(\"bpmn-compensation-marker\", '\\ue858'),\n    CONDITIONAL_FLOW(\"bpmn-conditional-flow\", '\\ue802'),\n    CONNECTION(\"bpmn-connection\", '\\ue810'),\n    CONNECTION_MULTI(\"bpmn-connection-multi\", '\\ue860'),\n    DATA_INPUT(\"bpmn-data-input\", '\\ue866'),\n    DATA_OBJECT(\"bpmn-data-object\", '\\ue84b'),\n    DATA_OUTPUT(\"bpmn-data-output\", '\\ue867'),\n    DATA_STORE(\"bpmn-data-store\", '\\ue84e'),\n    DEFAULT_FLOW(\"bpmn-default-flow\", '\\ue803'),\n    END_EVENT_CANCEL(\"bpmn-end-event-cancel\", '\\ue811'),\n    END_EVENT_COMPENSATION(\"bpmn-end-event-compensation\", '\\ue81e'),\n    END_EVENT_ERROR(\"bpmn-end-event-error\", '\\ue822'),\n    END_EVENT_ESCALATION(\"bpmn-end-event-escalation\", '\\ue82f'),\n    END_EVENT_LINK(\"bpmn-end-event-link\", '\\ue83b'),\n    END_EVENT_MESSAGE(\"bpmn-end-event-message\", '\\ue83a'),\n    END_EVENT_MULTIPLE(\"bpmn-end-event-multiple\", '\\ue839'),\n    END_EVENT_NONE(\"bpmn-end-event-none\", '\\ue838'),\n    END_EVENT_SIGNAL(\"bpmn-end-event-signal\", '\\ue837'),\n    END_EVENT_TERMINATE(\"bpmn-end-event-terminate\", '\\ue836'),\n    EVENT_SUBPROCESS_EXPANDED(\"bpmn-event-subprocess-expanded\", '\\ue85d'),\n    GATEWAY_COMPLEX(\"bpmn-gateway-complex\", '\\ue832'),\n    GATEWAY_EVENTBASED(\"bpmn-gateway-eventbased\", '\\ue833'),\n    GATEWAY_NONE(\"bpmn-gateway-none\", '\\ue834'),\n    GATEWAY_OR(\"bpmn-gateway-or\", '\\ue835'),\n    GATEWAY_PARALLEL(\"bpmn-gateway-parallel\", '\\ue804'),\n    GATEWAY_XOR(\"bpmn-gateway-xor\", '\\ue80f'),\n    GROUP(\"bpmn-group\", '\\ue869'),\n    HAND_TOOL(\"bpmn-hand-tool\", '\\ue868'),\n    INTERMEDIATE_EVENT_CATCH_CANCEL(\"bpmn-intermediate-event-catch-cancel\", '\\ue805'),\n    INTERMEDIATE_EVENT_CATCH_COMPENSATION(\"bpmn-intermediate-event-catch-compensation\", '\\ue80e'),\n    INTERMEDIATE_EVENT_CATCH_CONDITION(\"bpmn-intermediate-event-catch-condition\", '\\ue812'),\n    INTERMEDIATE_EVENT_CATCH_ERROR(\"bpmn-intermediate-event-catch-error\", '\\ue81d'),\n    INTERMEDIATE_EVENT_CATCH_ESCALATION(\"bpmn-intermediate-event-catch-escalation\", '\\ue823'),\n    INTERMEDIATE_EVENT_CATCH_LINK(\"bpmn-intermediate-event-catch-link\", '\\ue82e'),\n    INTERMEDIATE_EVENT_CATCH_MESSAGE(\"bpmn-intermediate-event-catch-message\", '\\ue83c'),\n    INTERMEDIATE_EVENT_CATCH_MULTIPLE(\"bpmn-intermediate-event-catch-multiple\", '\\ue847'),\n    INTERMEDIATE_EVENT_CATCH_NON_INTERRUPTING_CONDITION(\"bpmn-intermediate-event-catch-non-interrupting-condition\", '\\ue85b'),\n    INTERMEDIATE_EVENT_CATCH_NON_INTERRUPTING_ESCALATION(\"bpmn-intermediate-event-catch-non-interrupting-escalation\", '\\ue848'),\n    INTERMEDIATE_EVENT_CATCH_NON_INTERRUPTING_MESSAGE(\"bpmn-intermediate-event-catch-non-interrupting-message\", '\\ue806'),\n    INTERMEDIATE_EVENT_CATCH_NON_INTERRUPTING_MULTIPLE(\"bpmn-intermediate-event-catch-non-interrupting-multiple\", '\\ue851'),\n    INTERMEDIATE_EVENT_CATCH_NON_INTERRUPTING_PARALLEL_MULTIPLE(\"bpmn-intermediate-event-catch-non-interrupting-parallel-multiple\", '\\ue813'),\n    INTERMEDIATE_EVENT_CATCH_NON_INTERRUPTING_SIGNAL(\"bpmn-intermediate-event-catch-non-interrupting-signal\", '\\ue852'),\n    INTERMEDIATE_EVENT_CATCH_NON_INTERRUPTING_TIMER(\"bpmn-intermediate-event-catch-non-interrupting-timer\", '\\ue80c'),\n    INTERMEDIATE_EVENT_CATCH_PARALLEL_MULTIPLE(\"bpmn-intermediate-event-catch-parallel-multiple\", '\\ue80d'),\n    INTERMEDIATE_EVENT_CATCH_SIGNAL(\"bpmn-intermediate-event-catch-signal\", '\\ue81c'),\n    INTERMEDIATE_EVENT_CATCH_TIMER(\"bpmn-intermediate-event-catch-timer\", '\\ue824'),\n    INTERMEDIATE_EVENT_NONE(\"bpmn-intermediate-event-none\", '\\ue82d'),\n    INTERMEDIATE_EVENT_THROW_COMPENSATION(\"bpmn-intermediate-event-throw-compensation\", '\\ue83d'),\n    INTERMEDIATE_EVENT_THROW_ESCALATION(\"bpmn-intermediate-event-throw-escalation\", '\\ue846'),\n    INTERMEDIATE_EVENT_THROW_LINK(\"bpmn-intermediate-event-throw-link\", '\\ue849'),\n    INTERMEDIATE_EVENT_THROW_MESSAGE(\"bpmn-intermediate-event-throw-message\", '\\ue850'),\n    INTERMEDIATE_EVENT_THROW_MULTIPLE(\"bpmn-intermediate-event-throw-multiple\", '\\ue853'),\n    INTERMEDIATE_EVENT_THROW_SIGNAL(\"bpmn-intermediate-event-throw-signal\", '\\ue85a'),\n    LANE(\"bpmn-lane\", '\\ue861'),\n    LANE_DIVIDE_THREE(\"bpmn-lane-divide-three\", '\\ue864'),\n    LANE_DIVIDE_TWO(\"bpmn-lane-divide-two\", '\\ue865'),\n    LANE_INSERT_ABOVE(\"bpmn-lane-insert-above\", '\\ue863'),\n    LANE_INSERT_BELOW(\"bpmn-lane-insert-below\", '\\ue85e'),\n    LASSO_TOOL(\"bpmn-lasso-tool\", '\\ue862'),\n    LOOP_MARKER(\"bpmn-loop-marker\", '\\ue809'),\n    MANUAL(\"bpmn-manual\", '\\ue828'),\n    MANUAL_TASK(\"bpmn-manual-task\", '\\ue840'),\n    PARALLEL_MI_MARKER(\"bpmn-parallel-mi-marker\", '\\ue80a'),\n    PARTICIPANT(\"bpmn-participant\", '\\ue85c'),\n    RECEIVE(\"bpmn-receive\", '\\ue829'),\n    RECEIVE_TASK(\"bpmn-receive-task\", '\\ue843'),\n    SCREW_WRENCH(\"bpmn-screw-wrench\", '\\ue800'),\n    SCRIPT(\"bpmn-script\", '\\ue83f'),\n    SCRIPT_TASK(\"bpmn-script-task\", '\\ue84c'),\n    SEND(\"bpmn-send\", '\\ue841'),\n    SEND_TASK(\"bpmn-send-task\", '\\ue84d'),\n    SEQUENTIAL_MI_MARKER(\"bpmn-sequential-mi-marker\", '\\ue816'),\n    SERVICE(\"bpmn-service\", '\\ue842'),\n    SERVICE_TASK(\"bpmn-service-task\", '\\ue856'),\n    SPACE_TOOL(\"bpmn-space-tool\", '\\ue85f'),\n    START_EVENT_COMPENSATION(\"bpmn-start-event-compensation\", '\\ue807'),\n    START_EVENT_CONDITION(\"bpmn-start-event-condition\", '\\ue814'),\n    START_EVENT_ERROR(\"bpmn-start-event-error\", '\\ue81b'),\n    START_EVENT_ESCALATION(\"bpmn-start-event-escalation\", '\\ue825'),\n    START_EVENT_MESSAGE(\"bpmn-start-event-message\", '\\ue82c'),\n    START_EVENT_MULTIPLE(\"bpmn-start-event-multiple\", '\\ue83e'),\n    START_EVENT_NONE(\"bpmn-start-event-none\", '\\ue845'),\n    START_EVENT_NON_INTERRUPTING_CONDITION(\"bpmn-start-event-non-interrupting-condition\", '\\ue84a'),\n    START_EVENT_NON_INTERRUPTING_ESCALATION(\"bpmn-start-event-non-interrupting-escalation\", '\\ue84f'),\n    START_EVENT_NON_INTERRUPTING_MESSAGE(\"bpmn-start-event-non-interrupting-message\", '\\ue854'),\n    START_EVENT_NON_INTERRUPTING_MULTIPLE(\"bpmn-start-event-non-interrupting-multiple\", '\\ue859'),\n    START_EVENT_NON_INTERRUPTING_PARALLEL_MULTIPLE(\"bpmn-start-event-non-interrupting-parallel-multiple\", '\\ue808'),\n    START_EVENT_NON_INTERRUPTING_SIGNAL(\"bpmn-start-event-non-interrupting-signal\", '\\ue80b'),\n    START_EVENT_NON_INTERRUPTING_TIMER(\"bpmn-start-event-non-interrupting-timer\", '\\ue815'),\n    START_EVENT_PARALLEL_MULTIPLE(\"bpmn-start-event-parallel-multiple\", '\\ue81a'),\n    START_EVENT_SIGNAL(\"bpmn-start-event-signal\", '\\ue826'),\n    START_EVENT_TIMER(\"bpmn-start-event-timer\", '\\ue82b'),\n    SUBPROCESS_COLLAPSED(\"bpmn-subprocess-collapsed\", '\\ue81f'),\n    SUBPROCESS_EXPANDED(\"bpmn-subprocess-expanded\", '\\ue820'),\n    SUB_PROCESS_MARKER(\"bpmn-sub-process-marker\", '\\ue819'),\n    TASK(\"bpmn-task\", '\\ue821'),\n    TASK_NONE(\"bpmn-task-none\", '\\ue857'),\n    TEXT_ANNOTATION(\"bpmn-text-annotation\", '\\ue830'),\n    TRANSACTION(\"bpmn-transaction\", '\\ue8c4'),\n    TRASH(\"bpmn-trash\", '\\ue801'),\n    USER(\"bpmn-user\", '\\ue844'),\n    USER_TASK(\"bpmn-user-task\", '\\ue817');\n\n    public static Bpmn findByDescription(String description) {\n        for (Bpmn font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Bpmn(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bpmn-pack/src/main/java/org/kordamp/ikonli/bpmn/BpmnIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bpmn;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BpmnIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/bpmn/0.10.0/fonts/bpmn.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bpmn-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Bpmn.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"bpmn\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bpmn-pack/src/main/java/org/kordamp/ikonli/bpmn/BpmnIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bpmn;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class BpmnIkonProvider implements IkonProvider<Bpmn> {\n    @Override\n    public Class<Bpmn> getIkon() {\n        return Bpmn.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bpmn-pack/src/main/resources/META-INF/resources/bpmn/0.10.0/css/bpmn.css",
    "content": "@font-face {\n  font-family: 'bpmn';\n  src: url('../fonts/bpmn.eot?26374340');\n  src: url('../fonts/bpmn.eot?26374340#iefix') format('embedded-opentype'),\n       url('../fonts/bpmn.woff2?26374340') format('woff2'),\n       url('../fonts/bpmn.woff?26374340') format('woff'),\n       url('../fonts/bpmn.ttf?26374340') format('truetype'),\n       url('../fonts/bpmn.svg?26374340#bpmn') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */\n/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */\n/*\n@media screen and (-webkit-min-device-pixel-ratio:0) {\n  @font-face {\n    font-family: 'bpmn';\n    src: url('../font/bpmn.svg?26374340#bpmn') format('svg');\n  }\n}\n*/\n\n[class^=\"bpmn-\"]:before, [class*=\" bpmn-\"]:before {\n  font-family: \"bpmn\";\n  font-style: normal;\n  font-weight: normal;\n  speak: never;\n\n  display: inline-block;\n  text-decoration: inherit;\n  width: 1em;\n  /* margin-right: .2em; */\n  text-align: center;\n  /* opacity: .8; */\n\n  /* For safety - reset parent styles, that can break glyph codes*/\n  font-variant: normal;\n  text-transform: none;\n\n  /* fix buttons height, for twitter bootstrap */\n  line-height: 1em;\n\n  /* Animation center compensation - margins should be symmetric */\n  /* remove if not needed */\n  /* margin-left: .2em; */\n\n  /* you can be more comfortable with increased icons size */\n  /* font-size: 120%; */\n\n  /* Font smoothing. That was taken from TWBS */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n\n  /* Uncomment for 3D effect */\n  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */\n}\n\n.bpmn-screw-wrench:before { content: '\\e800'; } /* '' */\n.bpmn-trash:before { content: '\\e801'; } /* '' */\n.bpmn-conditional-flow:before { content: '\\e802'; } /* '' */\n.bpmn-default-flow:before { content: '\\e803'; } /* '' */\n.bpmn-gateway-parallel:before { content: '\\e804'; } /* '' */\n.bpmn-intermediate-event-catch-cancel:before { content: '\\e805'; } /* '' */\n.bpmn-intermediate-event-catch-non-interrupting-message:before { content: '\\e806'; } /* '' */\n.bpmn-start-event-compensation:before { content: '\\e807'; } /* '' */\n.bpmn-start-event-non-interrupting-parallel-multiple:before { content: '\\e808'; } /* '' */\n.bpmn-loop-marker:before { content: '\\e809'; } /* '' */\n.bpmn-parallel-mi-marker:before { content: '\\e80a'; } /* '' */\n.bpmn-start-event-non-interrupting-signal:before { content: '\\e80b'; } /* '' */\n.bpmn-intermediate-event-catch-non-interrupting-timer:before { content: '\\e80c'; } /* '' */\n.bpmn-intermediate-event-catch-parallel-multiple:before { content: '\\e80d'; } /* '' */\n.bpmn-intermediate-event-catch-compensation:before { content: '\\e80e'; } /* '' */\n.bpmn-gateway-xor:before { content: '\\e80f'; } /* '' */\n.bpmn-connection:before { content: '\\e810'; } /* '' */\n.bpmn-end-event-cancel:before { content: '\\e811'; } /* '' */\n.bpmn-intermediate-event-catch-condition:before { content: '\\e812'; } /* '' */\n.bpmn-intermediate-event-catch-non-interrupting-parallel-multiple:before { content: '\\e813'; } /* '' */\n.bpmn-start-event-condition:before { content: '\\e814'; } /* '' */\n.bpmn-start-event-non-interrupting-timer:before { content: '\\e815'; } /* '' */\n.bpmn-sequential-mi-marker:before { content: '\\e816'; } /* '' */\n.bpmn-user-task:before { content: '\\e817'; } /* '' */\n.bpmn-business-rule:before { content: '\\e818'; } /* '' */\n.bpmn-sub-process-marker:before { content: '\\e819'; } /* '' */\n.bpmn-start-event-parallel-multiple:before { content: '\\e81a'; } /* '' */\n.bpmn-start-event-error:before { content: '\\e81b'; } /* '' */\n.bpmn-intermediate-event-catch-signal:before { content: '\\e81c'; } /* '' */\n.bpmn-intermediate-event-catch-error:before { content: '\\e81d'; } /* '' */\n.bpmn-end-event-compensation:before { content: '\\e81e'; } /* '' */\n.bpmn-subprocess-collapsed:before { content: '\\e81f'; } /* '' */\n.bpmn-subprocess-expanded:before { content: '\\e820'; } /* '' */\n.bpmn-task:before { content: '\\e821'; } /* '' */\n.bpmn-end-event-error:before { content: '\\e822'; } /* '' */\n.bpmn-intermediate-event-catch-escalation:before { content: '\\e823'; } /* '' */\n.bpmn-intermediate-event-catch-timer:before { content: '\\e824'; } /* '' */\n.bpmn-start-event-escalation:before { content: '\\e825'; } /* '' */\n.bpmn-start-event-signal:before { content: '\\e826'; } /* '' */\n.bpmn-business-rule-task:before { content: '\\e827'; } /* '' */\n.bpmn-manual:before { content: '\\e828'; } /* '' */\n.bpmn-receive:before { content: '\\e829'; } /* '' */\n.bpmn-call-activity:before { content: '\\e82a'; } /* '' */\n.bpmn-start-event-timer:before { content: '\\e82b'; } /* '' */\n.bpmn-start-event-message:before { content: '\\e82c'; } /* '' */\n.bpmn-intermediate-event-none:before { content: '\\e82d'; } /* '' */\n.bpmn-intermediate-event-catch-link:before { content: '\\e82e'; } /* '' */\n.bpmn-end-event-escalation:before { content: '\\e82f'; } /* '' */\n.bpmn-text-annotation:before { content: '\\e830'; } /* '' */\n.bpmn-bpmn-io:before { content: '\\e831'; } /* '' */\n.bpmn-gateway-complex:before { content: '\\e832'; } /* '' */\n.bpmn-gateway-eventbased:before { content: '\\e833'; } /* '' */\n.bpmn-gateway-none:before { content: '\\e834'; } /* '' */\n.bpmn-gateway-or:before { content: '\\e835'; } /* '' */\n.bpmn-end-event-terminate:before { content: '\\e836'; } /* '' */\n.bpmn-end-event-signal:before { content: '\\e837'; } /* '' */\n.bpmn-end-event-none:before { content: '\\e838'; } /* '' */\n.bpmn-end-event-multiple:before { content: '\\e839'; } /* '' */\n.bpmn-end-event-message:before { content: '\\e83a'; } /* '' */\n.bpmn-end-event-link:before { content: '\\e83b'; } /* '' */\n.bpmn-intermediate-event-catch-message:before { content: '\\e83c'; } /* '' */\n.bpmn-intermediate-event-throw-compensation:before { content: '\\e83d'; } /* '' */\n.bpmn-start-event-multiple:before { content: '\\e83e'; } /* '' */\n.bpmn-script:before { content: '\\e83f'; } /* '' */\n.bpmn-manual-task:before { content: '\\e840'; } /* '' */\n.bpmn-send:before { content: '\\e841'; } /* '' */\n.bpmn-service:before { content: '\\e842'; } /* '' */\n.bpmn-receive-task:before { content: '\\e843'; } /* '' */\n.bpmn-user:before { content: '\\e844'; } /* '' */\n.bpmn-start-event-none:before { content: '\\e845'; } /* '' */\n.bpmn-intermediate-event-throw-escalation:before { content: '\\e846'; } /* '' */\n.bpmn-intermediate-event-catch-multiple:before { content: '\\e847'; } /* '' */\n.bpmn-intermediate-event-catch-non-interrupting-escalation:before { content: '\\e848'; } /* '' */\n.bpmn-intermediate-event-throw-link:before { content: '\\e849'; } /* '' */\n.bpmn-start-event-non-interrupting-condition:before { content: '\\e84a'; } /* '' */\n.bpmn-data-object:before { content: '\\e84b'; } /* '' */\n.bpmn-script-task:before { content: '\\e84c'; } /* '' */\n.bpmn-send-task:before { content: '\\e84d'; } /* '' */\n.bpmn-data-store:before { content: '\\e84e'; } /* '' */\n.bpmn-start-event-non-interrupting-escalation:before { content: '\\e84f'; } /* '' */\n.bpmn-intermediate-event-throw-message:before { content: '\\e850'; } /* '' */\n.bpmn-intermediate-event-catch-non-interrupting-multiple:before { content: '\\e851'; } /* '' */\n.bpmn-intermediate-event-catch-non-interrupting-signal:before { content: '\\e852'; } /* '' */\n.bpmn-intermediate-event-throw-multiple:before { content: '\\e853'; } /* '' */\n.bpmn-start-event-non-interrupting-message:before { content: '\\e854'; } /* '' */\n.bpmn-ad-hoc-marker:before { content: '\\e855'; } /* '' */\n.bpmn-service-task:before { content: '\\e856'; } /* '' */\n.bpmn-task-none:before { content: '\\e857'; } /* '' */\n.bpmn-compensation-marker:before { content: '\\e858'; } /* '' */\n.bpmn-start-event-non-interrupting-multiple:before { content: '\\e859'; } /* '' */\n.bpmn-intermediate-event-throw-signal:before { content: '\\e85a'; } /* '' */\n.bpmn-intermediate-event-catch-non-interrupting-condition:before { content: '\\e85b'; } /* '' */\n.bpmn-participant:before { content: '\\e85c'; } /* '' */\n.bpmn-event-subprocess-expanded:before { content: '\\e85d'; } /* '' */\n.bpmn-lane-insert-below:before { content: '\\e85e'; } /* '' */\n.bpmn-space-tool:before { content: '\\e85f'; } /* '' */\n.bpmn-connection-multi:before { content: '\\e860'; } /* '' */\n.bpmn-lane:before { content: '\\e861'; } /* '' */\n.bpmn-lasso-tool:before { content: '\\e862'; } /* '' */\n.bpmn-lane-insert-above:before { content: '\\e863'; } /* '' */\n.bpmn-lane-divide-three:before { content: '\\e864'; } /* '' */\n.bpmn-lane-divide-two:before { content: '\\e865'; } /* '' */\n.bpmn-data-input:before { content: '\\e866'; } /* '' */\n.bpmn-data-output:before { content: '\\e867'; } /* '' */\n.bpmn-hand-tool:before { content: '\\e868'; } /* '' */\n.bpmn-group:before { content: '\\e869'; } /* '' */\n.bpmn-transaction:before { content: '\\e8c4'; } /* '' */"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/ikonli-bytedance-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\n/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2023 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.bytedance {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.bytedance;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.bytedance.BytedanceIconsThinALIkonHandler,\n            org.kordamp.ikonli.bytedance.BytedanceIconsThinMZIkonHandler,\n            org.kordamp.ikonli.bytedance.BytedanceIconsRegularALIkonHandler,\n            org.kordamp.ikonli.bytedance.BytedanceIconsRegularMZIkonHandler,\n            org.kordamp.ikonli.bytedance.BytedanceIconsBoldALIkonHandler,\n            org.kordamp.ikonli.bytedance.BytedanceIconsBoldMZIkonHandler,\n            org.kordamp.ikonli.bytedance.BytedanceIconsExtraBoldALIkonHandler,\n            org.kordamp.ikonli.bytedance.BytedanceIconsExtraBoldMZIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.bytedance.BytedanceIconsThinALIkonProvider,\n            org.kordamp.ikonli.bytedance.BytedanceIconsThinMZIkonProvider,\n            org.kordamp.ikonli.bytedance.BytedanceIconsRegularALIkonProvider,\n            org.kordamp.ikonli.bytedance.BytedanceIconsRegularMZIkonProvider,\n            org.kordamp.ikonli.bytedance.BytedanceIconsBoldALIkonProvider,\n            org.kordamp.ikonli.bytedance.BytedanceIconsBoldMZIkonProvider,\n            org.kordamp.ikonli.bytedance.BytedanceIconsExtraBoldALIkonProvider,\n            org.kordamp.ikonli.bytedance.BytedanceIconsExtraBoldMZIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsBoldAL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author LeeWyatt\n */\npublic enum BytedanceIconsBoldAL implements Ikon {\n    ABDOMINAL(\"bd3-abdominal\", '\\ue900'),\n    ABNORMAL(\"bd3-abnormal\", '\\ue901'),\n    A_CANE(\"bd3-a-cane\", '\\ue902'),\n    ACCELERATION(\"bd3-acceleration\", '\\ue903'),\n    ACCEPT_EMAIL(\"bd3-accept-email\", '\\ue904'),\n    ACOUSTIC(\"bd3-acoustic\", '\\ue905'),\n    ACTIVITY_SOURCE(\"bd3-activity-source\", '\\ue906'),\n    AD(\"bd3-ad\", '\\ue907'),\n    ADD(\"bd3-add\", '\\ue908'),\n    ADD_COMPUTER(\"bd3-add-computer\", '\\ue909'),\n    ADD_FOUR(\"bd3-add-four\", '\\ue90a'),\n    ADD_ITEM(\"bd3-add-item\", '\\ue90b'),\n    ADD_MODE(\"bd3-add-mode\", '\\ue90c'),\n    ADD_MUSIC(\"bd3-add-music\", '\\ue90d'),\n    ADD_ONE(\"bd3-add-one\", '\\ue90e'),\n    ADD_PIC(\"bd3-add-pic\", '\\ue90f'),\n    ADD_PICTURE(\"bd3-add-picture\", '\\ue910'),\n    ADD_PRINT(\"bd3-add-print\", '\\ue911'),\n    ADDRESS_BOOK(\"bd3-address-book\", '\\ue912'),\n    ADD_SUBSET(\"bd3-add-subset\", '\\ue913'),\n    ADD_SUBTRACT(\"bd3-add-subtract\", '\\ue914'),\n    ADD_TEXT(\"bd3-add-text\", '\\ue915'),\n    ADD_TEXT_TWO(\"bd3-add-text-two\", '\\ue916'),\n    ADD_THREE(\"bd3-add-three\", '\\ue917'),\n    ADD_TWO(\"bd3-add-two\", '\\ue918'),\n    ADD_USER(\"bd3-add-user\", '\\ue919'),\n    ADD_WEB(\"bd3-add-web\", '\\ue91a'),\n    ADJACENT_ITEM(\"bd3-adjacent-item\", '\\ue91b'),\n    ADJUSTMENT(\"bd3-adjustment\", '\\ue91c'),\n    ADOBE_ILLUSTRATE(\"bd3-adobe-illustrate\", '\\ue91d'),\n    ADOBE_INDESIGN(\"bd3-adobe-indesign\", '\\ue91e'),\n    ADOBE_LIGHTROOM(\"bd3-adobe-lightroom\", '\\ue91f'),\n    ADOBE_PHOTOSHOP(\"bd3-adobe-photoshop\", '\\ue920'),\n    AD_PRODUCT(\"bd3-ad-product\", '\\ue921'),\n    AFFERENT(\"bd3-afferent\", '\\ue922'),\n    AFFERENT_FOUR(\"bd3-afferent-four\", '\\ue923'),\n    AFFERENT_THREE(\"bd3-afferent-three\", '\\ue924'),\n    AFFERENT_TWO(\"bd3-afferent-two\", '\\ue925'),\n    AFRO_PICK(\"bd3-afro-pick\", '\\ue926'),\n    AGREEMENT(\"bd3-agreement\", '\\ue927'),\n    AIMING(\"bd3-aiming\", '\\ue928'),\n    AIR_BIKE(\"bd3-air-bike\", '\\ue929'),\n    AIR_CONDITIONING(\"bd3-air-conditioning\", '\\ue92a'),\n    AIRPLANE(\"bd3-airplane\", '\\ue92b'),\n    AIRPLANE_WINDOW(\"bd3-airplane-window\", '\\ue92c'),\n    AIRPLANE_WINDOW_ONE(\"bd3-airplane-window-one\", '\\ue92d'),\n    AIRPLAY(\"bd3-airplay\", '\\ue92e'),\n    AIRPODS(\"bd3-airpods\", '\\ue92f'),\n    ALARM(\"bd3-alarm\", '\\ue930'),\n    ALARM_CLOCK(\"bd3-alarm-clock\", '\\ue931'),\n    ALIGN_BOTTOM(\"bd3-align-bottom\", '\\ue932'),\n    ALIGN_BOTTOM_TWO(\"bd3-align-bottom-two\", '\\ue933'),\n    ALIGN_HORIZONTAL_CENTER_TWO(\"bd3-align-horizontal-center-two\", '\\ue934'),\n    ALIGN_HORIZONTALLY(\"bd3-align-horizontally\", '\\ue935'),\n    ALIGN_LEFT(\"bd3-align-left\", '\\ue936'),\n    ALIGN_LEFT_ONE(\"bd3-align-left-one\", '\\ue937'),\n    ALIGN_LEFT_TWO(\"bd3-align-left-two\", '\\ue938'),\n    ALIGNMENT_BOTTOM_CENTER(\"bd3-alignment-bottom-center\", '\\ue939'),\n    ALIGNMENT_BOTTOM_LEFT(\"bd3-alignment-bottom-left\", '\\ue93a'),\n    ALIGNMENT_BOTTOM_RIGHT(\"bd3-alignment-bottom-right\", '\\ue93b'),\n    ALIGNMENT_HORIZONTAL_BOTTOM(\"bd3-alignment-horizontal-bottom\", '\\ue93c'),\n    ALIGNMENT_HORIZONTAL_CENTER(\"bd3-alignment-horizontal-center\", '\\ue93d'),\n    ALIGNMENT_HORIZONTAL_TOP(\"bd3-alignment-horizontal-top\", '\\ue93e'),\n    ALIGNMENT_LEFT_BOTTOM(\"bd3-alignment-left-bottom\", '\\ue93f'),\n    ALIGNMENT_LEFT_CENTER(\"bd3-alignment-left-center\", '\\ue940'),\n    ALIGNMENT_LEFT_TOP(\"bd3-alignment-left-top\", '\\ue941'),\n    ALIGNMENT_RIGHT_BOTTOM(\"bd3-alignment-right-bottom\", '\\ue942'),\n    ALIGNMENT_RIGHT_CENTER(\"bd3-alignment-right-center\", '\\ue943'),\n    ALIGNMENT_RIGHT_TOP(\"bd3-alignment-right-top\", '\\ue944'),\n    ALIGNMENT_TOP_CENTER(\"bd3-alignment-top-center\", '\\ue945'),\n    ALIGNMENT_TOP_LEFT(\"bd3-alignment-top-left\", '\\ue946'),\n    ALIGNMENT_TOP_RIGHT(\"bd3-alignment-top-right\", '\\ue947'),\n    ALIGNMENT_VERTICAL_CENTER(\"bd3-alignment-vertical-center\", '\\ue948'),\n    ALIGNMENT_VERTICAL_LEFT(\"bd3-alignment-vertical-left\", '\\ue949'),\n    ALIGNMENT_VERTICAL_RIGHT(\"bd3-alignment-vertical-right\", '\\ue94a'),\n    ALIGN_RIGHT(\"bd3-align-right\", '\\ue94b'),\n    ALIGN_RIGHT_ONE(\"bd3-align-right-one\", '\\ue94c'),\n    ALIGN_RIGHT_TWO(\"bd3-align-right-two\", '\\ue94d'),\n    ALIGN_TEXT_BOTH(\"bd3-align-text-both\", '\\ue94e'),\n    ALIGN_TEXT_BOTH_ONE(\"bd3-align-text-both-one\", '\\ue94f'),\n    ALIGN_TEXT_BOTTOM(\"bd3-align-text-bottom\", '\\ue950'),\n    ALIGN_TEXT_BOTTOM_ONE(\"bd3-align-text-bottom-one\", '\\ue951'),\n    ALIGN_TEXT_CENTER(\"bd3-align-text-center\", '\\ue952'),\n    ALIGN_TEXT_CENTER_ONE(\"bd3-align-text-center-one\", '\\ue953'),\n    ALIGN_TEXT_LEFT(\"bd3-align-text-left\", '\\ue954'),\n    ALIGN_TEXT_LEFT_ONE(\"bd3-align-text-left-one\", '\\ue955'),\n    ALIGN_TEXT_MIDDLE(\"bd3-align-text-middle\", '\\ue956'),\n    ALIGN_TEXT_MIDDLE_ONE(\"bd3-align-text-middle-one\", '\\ue957'),\n    ALIGN_TEXT_RIGHT(\"bd3-align-text-right\", '\\ue958'),\n    ALIGN_TEXT_RIGHT_ONE(\"bd3-align-text-right-one\", '\\ue959'),\n    ALIGN_TEXT_TOP(\"bd3-align-text-top\", '\\ue95a'),\n    ALIGN_TEXT_TOP_ONE(\"bd3-align-text-top-one\", '\\ue95b'),\n    ALIGN_TOP(\"bd3-align-top\", '\\ue95c'),\n    ALIGN_TOP_TWO(\"bd3-align-top-two\", '\\ue95d'),\n    ALIGN_VERTICAL_CENTER_TWO(\"bd3-align-vertical-center-two\", '\\ue95e'),\n    ALIGN_VERTICALLY(\"bd3-align-vertically\", '\\ue95f'),\n    ALIPAY(\"bd3-alipay\", '\\ue960'),\n    ALL_APPLICATION(\"bd3-all-application\", '\\ue961'),\n    ALPHABETICAL_SORTING(\"bd3-alphabetical-sorting\", '\\ue962'),\n    ALPHABETICAL_SORTING_TWO(\"bd3-alphabetical-sorting-two\", '\\ue963'),\n    AMBULANCE(\"bd3-ambulance\", '\\ue964'),\n    ANALYSIS(\"bd3-analysis\", '\\ue965'),\n    ANCHOR(\"bd3-anchor\", '\\ue966'),\n    ANCHOR_ONE(\"bd3-anchor-one\", '\\ue967'),\n    ANCHOR_ROUND(\"bd3-anchor-round\", '\\ue968'),\n    ANCHOR_SQURE(\"bd3-anchor-squre\", '\\ue969'),\n    ANCHOR_TWO(\"bd3-anchor-two\", '\\ue96a'),\n    ANDROID(\"bd3-android\", '\\ue96b'),\n    ANGRY_FACE(\"bd3-angry-face\", '\\ue96c'),\n    ANGUISHED_FACE(\"bd3-anguished-face\", '\\ue96d'),\n    ANNOUNCEMENT(\"bd3-announcement\", '\\ue96e'),\n    ANTI_CORROSION(\"bd3-anti-corrosion\", '\\ue96f'),\n    APERTURE_PRIORITY(\"bd3-aperture-priority\", '\\ue970'),\n    API(\"bd3-api\", '\\ue971'),\n    API_APP(\"bd3-api-app\", '\\ue972'),\n    APPLE(\"bd3-apple\", '\\ue973'),\n    APPLE_ONE(\"bd3-apple-one\", '\\ue974'),\n    APPLET_CLOSED(\"bd3-applet-closed\", '\\ue975'),\n    APPLICATION(\"bd3-application\", '\\ue976'),\n    APPLICATION_EFFECT(\"bd3-application-effect\", '\\ue977'),\n    APPLICATION_MENU(\"bd3-application-menu\", '\\ue978'),\n    APPLICATION_ONE(\"bd3-application-one\", '\\ue979'),\n    APPLICATION_TWO(\"bd3-application-two\", '\\ue97a'),\n    APPOINTMENT(\"bd3-appointment\", '\\ue97b'),\n    APP_STORE(\"bd3-app-store\", '\\ue97c'),\n    APP_SWITCH(\"bd3-app-switch\", '\\ue97d'),\n    AQUARIUS(\"bd3-aquarius\", '\\ue97e'),\n    ARC_DE_TRIOMPHE(\"bd3-arc-de-triomphe\", '\\ue97f'),\n    ARCHERS_BOW(\"bd3-archers-bow\", '\\ue980'),\n    ARCHERY(\"bd3-archery\", '\\ue981'),\n    AREA_MAP(\"bd3-area-map\", '\\ue982'),\n    ARENA(\"bd3-arena\", '\\ue983'),\n    ARIES(\"bd3-aries\", '\\ue984'),\n    ARITHMETIC(\"bd3-arithmetic\", '\\ue985'),\n    ARITHMETIC_BUTTONS(\"bd3-arithmetic-buttons\", '\\ue986'),\n    ARITHMETIC_ONE(\"bd3-arithmetic-one\", '\\ue987'),\n    ARROW_CIRCLE_DOWN(\"bd3-arrow-circle-down\", '\\ue988'),\n    ARROW_CIRCLE_LEFT(\"bd3-arrow-circle-left\", '\\ue989'),\n    ARROW_CIRCLE_RIGHT(\"bd3-arrow-circle-right\", '\\ue98a'),\n    ARROW_CIRCLE_UP(\"bd3-arrow-circle-up\", '\\ue98b'),\n    ARROW_DOWN(\"bd3-arrow-down\", '\\ue98c'),\n    ARROW_KEYS(\"bd3-arrow-keys\", '\\ue98d'),\n    ARROW_LEFT(\"bd3-arrow-left\", '\\ue98e'),\n    ARROW_LEFT_DOWN(\"bd3-arrow-left-down\", '\\ue98f'),\n    ARROW_LEFT_UP(\"bd3-arrow-left-up\", '\\ue990'),\n    ARROW_RIGHT(\"bd3-arrow-right\", '\\ue991'),\n    ARROW_RIGHT_DOWN(\"bd3-arrow-right-down\", '\\ue992'),\n    ARROW_RIGHT_UP(\"bd3-arrow-right-up\", '\\ue993'),\n    ARROW_UP(\"bd3-arrow-up\", '\\ue994'),\n    ASSEMBLY_LINE(\"bd3-assembly-line\", '\\ue995'),\n    ASSOCIATION(\"bd3-association\", '\\ue996'),\n    ASTERISK(\"bd3-asterisk\", '\\ue997'),\n    ASTERISK_KEY(\"bd3-asterisk-key\", '\\ue998'),\n    ASTONISHED_FACE(\"bd3-astonished-face\", '\\ue999'),\n    AT_SIGN(\"bd3-at-sign\", '\\ue99a'),\n    ATTENTION(\"bd3-attention\", '\\ue99b'),\n    AUDIO_FILE(\"bd3-audio-file\", '\\ue99c'),\n    AUDIT(\"bd3-audit\", '\\ue99d'),\n    AUTO_FOCUS(\"bd3-auto-focus\", '\\ue99e'),\n    AUTO_HEIGHT_ONE(\"bd3-auto-height-one\", '\\ue99f'),\n    AUTO_LINE_HEIGHT(\"bd3-auto-line-height\", '\\ue9a0'),\n    AUTO_LINE_WIDTH(\"bd3-auto-line-width\", '\\ue9a1'),\n    AUTO_WIDTH(\"bd3-auto-width\", '\\ue9a2'),\n    AUTO_WIDTH_ONE(\"bd3-auto-width-one\", '\\ue9a3'),\n    AVATAR(\"bd3-avatar\", '\\ue9a4'),\n    AVERAGE(\"bd3-average\", '\\ue9a5'),\n    AVIATION(\"bd3-aviation\", '\\ue9a6'),\n    AVOCADO(\"bd3-avocado\", '\\ue9a7'),\n    AVOCADO_ONE(\"bd3-avocado-one\", '\\ue9a8'),\n    BABY(\"bd3-baby\", '\\ue9a9'),\n    BABY_APP(\"bd3-baby-app\", '\\ue9aa'),\n    BABY_BOTTLE(\"bd3-baby-bottle\", '\\ue9ab'),\n    BABY_CAR_SEAT(\"bd3-baby-car-seat\", '\\ue9ac'),\n    BABY_FEET(\"bd3-baby-feet\", '\\ue9ad'),\n    BABY_MEAL(\"bd3-baby-meal\", '\\ue9ae'),\n    BABY_MOBILE(\"bd3-baby-mobile\", '\\ue9af'),\n    BABY_ONE(\"bd3-baby-one\", '\\ue9b0'),\n    BABY_PANTS(\"bd3-baby-pants\", '\\ue9b1'),\n    BABY_SLING(\"bd3-baby-sling\", '\\ue9b2'),\n    BABY_TASTE(\"bd3-baby-taste\", '\\ue9b3'),\n    BACHELOR_CAP(\"bd3-bachelor-cap\", '\\ue9b4'),\n    BACHELOR_CAP_ONE(\"bd3-bachelor-cap-one\", '\\ue9b5'),\n    BACHELOR_CAP_TWO(\"bd3-bachelor-cap-two\", '\\ue9b6'),\n    BACK(\"bd3-back\", '\\ue9b7'),\n    BACKGROUND_COLOR(\"bd3-background-color\", '\\ue9b8'),\n    BACK_ONE(\"bd3-back-one\", '\\ue9b9'),\n    BACKPACK(\"bd3-backpack\", '\\ue9ba'),\n    BAD(\"bd3-bad\", '\\ue9bb'),\n    BADGE(\"bd3-badge\", '\\ue9bc'),\n    BADGE_TWO(\"bd3-badge-two\", '\\ue9bd'),\n    BADMINTON(\"bd3-badminton\", '\\ue9be'),\n    BAD_ONE(\"bd3-bad-one\", '\\ue9bf'),\n    BAD_TWO(\"bd3-bad-two\", '\\ue9c0'),\n    BAGGAGE_DELAY(\"bd3-baggage-delay\", '\\ue9c1'),\n    BALANCE(\"bd3-balance\", '\\ue9c2'),\n    BALANCE_ONE(\"bd3-balance-one\", '\\ue9c3'),\n    BALANCE_TWO(\"bd3-balance-two\", '\\ue9c4'),\n    BANANA(\"bd3-banana\", '\\ue9c5'),\n    BANK(\"bd3-bank\", '\\ue9c6'),\n    BANK_CARD(\"bd3-bank-card\", '\\ue9c7'),\n    BANK_CARD_ONE(\"bd3-bank-card-one\", '\\ue9c8'),\n    BANK_CARD_TWO(\"bd3-bank-card-two\", '\\ue9c9'),\n    BANK_TRANSFER(\"bd3-bank-transfer\", '\\ue9ca'),\n    BAOKEMENG(\"bd3-baokemeng\", '\\ue9cb'),\n    BARBECUE(\"bd3-barbecue\", '\\ue9cc'),\n    BARBER_BRUSH(\"bd3-barber-brush\", '\\ue9cd'),\n    BARBER_CLIPPERS(\"bd3-barber-clippers\", '\\ue9ce'),\n    BAR_CODE(\"bd3-bar-code\", '\\ue9cf'),\n    BASEBALL(\"bd3-baseball\", '\\ue9d0'),\n    BASEBALL_BAT(\"bd3-baseball-bat\", '\\ue9d1'),\n    BASEBALL_CAP(\"bd3-baseball-cap\", '\\ue9d2'),\n    BASKETBALL(\"bd3-basketball\", '\\ue9d3'),\n    BASKETBALL_CLOTHES(\"bd3-basketball-clothes\", '\\ue9d4'),\n    BASKETBALL_ONE(\"bd3-basketball-one\", '\\ue9d5'),\n    BASKETBALL_STAND(\"bd3-basketball-stand\", '\\ue9d6'),\n    BAT(\"bd3-bat\", '\\ue9d7'),\n    BATTERY_CHARGE(\"bd3-battery-charge\", '\\ue9d8'),\n    BATTERY_EMPTY(\"bd3-battery-empty\", '\\ue9d9'),\n    BATTERY_FAILURE(\"bd3-battery-failure\", '\\ue9da'),\n    BATTERY_FULL(\"bd3-battery-full\", '\\ue9db'),\n    BATTERY_STORAGE(\"bd3-battery-storage\", '\\ue9dc'),\n    BATTERY_TIPS(\"bd3-battery-tips\", '\\ue9dd'),\n    BATTERY_WORKING(\"bd3-battery-working\", '\\ue9de'),\n    BATTERY_WORKING_ONE(\"bd3-battery-working-one\", '\\ue9df'),\n    BEACH_UMBRELLA(\"bd3-beach-umbrella\", '\\ue9e0'),\n    BEAR(\"bd3-bear\", '\\ue9e1'),\n    BEAUTY(\"bd3-beauty\", '\\ue9e2'),\n    BEAUTY_INSTRUMENT(\"bd3-beauty-instrument\", '\\ue9e3'),\n    BEDSIDE(\"bd3-bedside\", '\\ue9e4'),\n    BEDSIDE_TWO(\"bd3-bedside-two\", '\\ue9e5'),\n    BEE(\"bd3-bee\", '\\ue9e6'),\n    BEER(\"bd3-beer\", '\\ue9e7'),\n    BEER_MUG(\"bd3-beer-mug\", '\\ue9e8'),\n    BEHANCE(\"bd3-behance\", '\\ue9e9'),\n    BELL_RING(\"bd3-bell-ring\", '\\ue9ea'),\n    BELT(\"bd3-belt\", '\\ue9eb'),\n    BENZ(\"bd3-benz\", '\\ue9ec'),\n    BEZIER_CURVE(\"bd3-bezier-curve\", '\\ue9ed'),\n    BIB(\"bd3-bib\", '\\ue9ee'),\n    BIG_CLOCK(\"bd3-big-clock\", '\\ue9ef'),\n    BIG_X(\"bd3-big-x\", '\\ue9f0'),\n    BIKE(\"bd3-bike\", '\\ue9f1'),\n    BILL(\"bd3-bill\", '\\ue9f2'),\n    BIRD(\"bd3-bird\", '\\ue9f3'),\n    BIRTHDAY_CAKE(\"bd3-birthday-cake\", '\\ue9f4'),\n    BITCOIN(\"bd3-bitcoin\", '\\ue9f5'),\n    BLACKBOARD(\"bd3-blackboard\", '\\ue9f6'),\n    BLACK_EIGHT(\"bd3-black-eight\", '\\ue9f7'),\n    BLADE(\"bd3-blade\", '\\ue9f8'),\n    BLESS(\"bd3-bless\", '\\ue9f9'),\n    BLOCK(\"bd3-block\", '\\ue9fa'),\n    BLOCKCHAIN(\"bd3-blockchain\", '\\ue9fb'),\n    BLOCK_EIGHT(\"bd3-block-eight\", '\\ue9fc'),\n    BLOCK_FIVE(\"bd3-block-five\", '\\ue9fd'),\n    BLOCK_FOUR(\"bd3-block-four\", '\\ue9fe'),\n    BLOCK_NINE(\"bd3-block-nine\", '\\ue9ff'),\n    BLOCK_ONE(\"bd3-block-one\", '\\uea00'),\n    BLOCKS_AND_ARROWS(\"bd3-blocks-and-arrows\", '\\uea01'),\n    BLOCK_SEVEN(\"bd3-block-seven\", '\\uea02'),\n    BLOCK_SIX(\"bd3-block-six\", '\\uea03'),\n    BLOCK_TEN(\"bd3-block-ten\", '\\uea04'),\n    BLOCK_THREE(\"bd3-block-three\", '\\uea05'),\n    BLOCK_TWO(\"bd3-block-two\", '\\uea06'),\n    BLOOM(\"bd3-bloom\", '\\uea07'),\n    BLOSSOM(\"bd3-blossom\", '\\uea08'),\n    BLUETOOTH(\"bd3-bluetooth\", '\\uea09'),\n    BOILER(\"bd3-boiler\", '\\uea0a'),\n    BOLT_ONE(\"bd3-bolt-one\", '\\uea0b'),\n    BONE(\"bd3-bone\", '\\uea0c'),\n    BOOK(\"bd3-book\", '\\uea0d'),\n    BOOKMARK(\"bd3-bookmark\", '\\uea0e'),\n    BOOKMARK_ONE(\"bd3-bookmark-one\", '\\uea0f'),\n    BOOKMARK_THREE(\"bd3-bookmark-three\", '\\uea10'),\n    BOOK_ONE(\"bd3-book-one\", '\\uea11'),\n    BOOK_OPEN(\"bd3-book-open\", '\\uea12'),\n    BOOKSHELF(\"bd3-bookshelf\", '\\uea13'),\n    BOOSTER_CAR_SEAT(\"bd3-booster-car-seat\", '\\uea14'),\n    BOOTH(\"bd3-booth\", '\\uea15'),\n    BOOTS(\"bd3-boots\", '\\uea16'),\n    BOTTLE(\"bd3-bottle\", '\\uea17'),\n    BOTTLE_ONE(\"bd3-bottle-one\", '\\uea18'),\n    BOTTLE_THREE(\"bd3-bottle-three\", '\\uea19'),\n    BOTTLE_TWO(\"bd3-bottle-two\", '\\uea1a'),\n    BOTTOM_BAR(\"bd3-bottom-bar\", '\\uea1b'),\n    BOTTOM_BAR_ONE(\"bd3-bottom-bar-one\", '\\uea1c'),\n    BOW(\"bd3-bow\", '\\uea1d'),\n    BOWL(\"bd3-bowl\", '\\uea1e'),\n    BOWLING(\"bd3-bowling\", '\\uea1f'),\n    BOWL_ONE(\"bd3-bowl-one\", '\\uea20'),\n    BOX(\"bd3-box\", '\\uea21'),\n    BOXING(\"bd3-boxing\", '\\uea22'),\n    BOXING_ONE(\"bd3-boxing-one\", '\\uea23'),\n    BOY(\"bd3-boy\", '\\uea24'),\n    BOY_ONE(\"bd3-boy-one\", '\\uea25'),\n    BOY_STROLLER(\"bd3-boy-stroller\", '\\uea26'),\n    BOY_TWO(\"bd3-boy-two\", '\\uea27'),\n    BRAIN(\"bd3-brain\", '\\uea28'),\n    BRAKE_PADS(\"bd3-brake-pads\", '\\uea29'),\n    BRANCH(\"bd3-branch\", '\\uea2a'),\n    BRANCH_ONE(\"bd3-branch-one\", '\\uea2b'),\n    BRANCH_TWO(\"bd3-branch-two\", '\\uea2c'),\n    BRDIGE_THREE(\"bd3-brdige-three\", '\\uea2d'),\n    BREAD(\"bd3-bread\", '\\uea2e'),\n    BREAD_MACHINE(\"bd3-bread-machine\", '\\uea2f'),\n    BREAD_ONE(\"bd3-bread-one\", '\\uea30'),\n    BREAST_PUMP(\"bd3-breast-pump\", '\\uea31'),\n    BRIDGE_ONE(\"bd3-bridge-one\", '\\uea32'),\n    BRIDGE_TWO(\"bd3-bridge-two\", '\\uea33'),\n    BRIEFCASE(\"bd3-briefcase\", '\\uea34'),\n    BRIGHTNESS(\"bd3-brightness\", '\\uea35'),\n    BRING_FORWARD(\"bd3-bring-forward\", '\\uea36'),\n    BRING_TO_FRONT(\"bd3-bring-to-front\", '\\uea37'),\n    BRING_TO_FRONT_ONE(\"bd3-bring-to-front-one\", '\\uea38'),\n    BROADCAST(\"bd3-broadcast\", '\\uea39'),\n    BROADCAST_ONE(\"bd3-broadcast-one\", '\\uea3a'),\n    BROADCAST_RADIO(\"bd3-broadcast-radio\", '\\uea3b'),\n    BROWSER(\"bd3-browser\", '\\uea3c'),\n    BROWSER_CHROME(\"bd3-browser-chrome\", '\\uea3d'),\n    BROWSER_SAFARI(\"bd3-browser-safari\", '\\uea3e'),\n    BUBBLE_CHART(\"bd3-bubble-chart\", '\\uea3f'),\n    BUG(\"bd3-bug\", '\\uea40'),\n    BUILDING_FOUR(\"bd3-building-four\", '\\uea41'),\n    BUILDING_ONE(\"bd3-building-one\", '\\uea42'),\n    BUILDING_THREE(\"bd3-building-three\", '\\uea43'),\n    BUILDING_TWO(\"bd3-building-two\", '\\uea44'),\n    BULLET_MAP(\"bd3-bullet-map\", '\\uea45'),\n    BUS(\"bd3-bus\", '\\uea46'),\n    BUS_ONE(\"bd3-bus-one\", '\\uea47'),\n    BUS_TWO(\"bd3-bus-two\", '\\uea48'),\n    BUTTERFLY(\"bd3-butterfly\", '\\uea49'),\n    BUY(\"bd3-buy\", '\\uea4a'),\n    BYDESIGN(\"bd3-bydesign\", '\\uea4b'),\n    BYE(\"bd3-bye\", '\\uea4c'),\n    BYTEDANCE(\"bd3-bytedance\", '\\uea4d'),\n    BYTEDANCE_APPLETS(\"bd3-bytedance-applets\", '\\uea4e'),\n    BYTEDANCE_MINI_APP(\"bd3-bytedance-mini-app\", '\\uea4f'),\n    CABLE_CAR(\"bd3-cable-car\", '\\uea50'),\n    CACTUS(\"bd3-cactus\", '\\uea51'),\n    CAKE(\"bd3-cake\", '\\uea52'),\n    CAKE_FIVE(\"bd3-cake-five\", '\\uea53'),\n    CAKE_FOUR(\"bd3-cake-four\", '\\uea54'),\n    CAKE_ONE(\"bd3-cake-one\", '\\uea55'),\n    CAKE_THREE(\"bd3-cake-three\", '\\uea56'),\n    CAKE_TWO(\"bd3-cake-two\", '\\uea57'),\n    CALCULATOR(\"bd3-calculator\", '\\uea58'),\n    CALCULATOR_ONE(\"bd3-calculator-one\", '\\uea59'),\n    CALENDAR(\"bd3-calendar\", '\\uea5a'),\n    CALENDAR_DOT(\"bd3-calendar-dot\", '\\uea5b'),\n    CALENDAR_THIRTY(\"bd3-calendar-thirty\", '\\uea5c'),\n    CALENDAR_THIRTY_TWO(\"bd3-calendar-thirty-two\", '\\uea5d'),\n    CALENDAR_THREE(\"bd3-calendar-three\", '\\uea5e'),\n    CAMERA(\"bd3-camera\", '\\uea5f'),\n    CAMERA_FIVE(\"bd3-camera-five\", '\\uea60'),\n    CAMERA_FOUR(\"bd3-camera-four\", '\\uea61'),\n    CAMERA_ONE(\"bd3-camera-one\", '\\uea62'),\n    CAMERA_THREE(\"bd3-camera-three\", '\\uea63'),\n    CAMERA_TWO(\"bd3-camera-two\", '\\uea64'),\n    CAMP(\"bd3-camp\", '\\uea65'),\n    CANCER(\"bd3-cancer\", '\\uea66'),\n    CANDY(\"bd3-candy\", '\\uea67'),\n    CANNED_FRUIT(\"bd3-canned-fruit\", '\\uea68'),\n    CAPRICORNUS(\"bd3-capricornus\", '\\uea69'),\n    CAR(\"bd3-car\", '\\uea6a'),\n    CAR_BATTERY(\"bd3-car-battery\", '\\uea6b'),\n    CARDIOELECTRIC(\"bd3-cardioelectric\", '\\uea6c'),\n    CARD_TWO(\"bd3-card-two\", '\\uea6d'),\n    CAROUSEL(\"bd3-carousel\", '\\uea6e'),\n    CAROUSEL_VIDEO(\"bd3-carousel-video\", '\\uea6f'),\n    CARROT(\"bd3-carrot\", '\\uea70'),\n    CASTLE(\"bd3-castle\", '\\uea71'),\n    CAST_SCREEN(\"bd3-cast-screen\", '\\uea72'),\n    CAT(\"bd3-cat\", '\\uea73'),\n    CATEGORY_MANAGEMENT(\"bd3-category-management\", '\\uea74'),\n    CATTLE(\"bd3-cattle\", '\\uea75'),\n    CATTLE_ZODIAC(\"bd3-cattle-zodiac\", '\\uea76'),\n    CAUTION(\"bd3-caution\", '\\uea77'),\n    CC(\"bd3-cc\", '\\uea78'),\n    CD(\"bd3-cd\", '\\uea79'),\n    CELL(\"bd3-cell\", '\\uea7a'),\n    CE_MARKING(\"bd3-ce-marking\", '\\uea7b'),\n    CENTER_ALIGNMENT(\"bd3-center-alignment\", '\\uea7c'),\n    CERTIFICATE(\"bd3-certificate\", '\\uea7d'),\n    CHAFING_DISH(\"bd3-chafing-dish\", '\\uea7e'),\n    CHAFING_DISH_ONE(\"bd3-chafing-dish-one\", '\\uea7f'),\n    CHAIR(\"bd3-chair\", '\\uea80'),\n    CHAIR_ONE(\"bd3-chair-one\", '\\uea81'),\n    CHANGE(\"bd3-change\", '\\uea82'),\n    CHANGE_DATE_SORT(\"bd3-change-date-sort\", '\\uea83'),\n    CHARGING_TREASURE(\"bd3-charging-treasure\", '\\uea84'),\n    CHART_GRAPH(\"bd3-chart-graph\", '\\uea85'),\n    CHART_HISTOGRAM(\"bd3-chart-histogram\", '\\uea86'),\n    CHART_HISTOGRAM_ONE(\"bd3-chart-histogram-one\", '\\uea87'),\n    CHART_HISTOGRAM_TWO(\"bd3-chart-histogram-two\", '\\uea88'),\n    CHART_LINE(\"bd3-chart-line\", '\\uea89'),\n    CHART_LINE_AREA(\"bd3-chart-line-area\", '\\uea8a'),\n    CHART_PIE(\"bd3-chart-pie\", '\\uea8b'),\n    CHART_PIE_ONE(\"bd3-chart-pie-one\", '\\uea8c'),\n    CHART_PROPORTION(\"bd3-chart-proportion\", '\\uea8d'),\n    CHART_RING(\"bd3-chart-ring\", '\\uea8e'),\n    CHART_SCATTER(\"bd3-chart-scatter\", '\\uea8f'),\n    CHART_STOCK(\"bd3-chart-stock\", '\\uea90'),\n    CHECK(\"bd3-check\", '\\uea91'),\n    CHECKBOX(\"bd3-checkbox\", '\\uea92'),\n    CHECK_CORRECT(\"bd3-check-correct\", '\\uea93'),\n    CHECKERBOARD(\"bd3-checkerboard\", '\\uea94'),\n    CHECK_IN(\"bd3-check-in\", '\\uea95'),\n    CHECKLIST(\"bd3-checklist\", '\\uea96'),\n    CHECK_ONE(\"bd3-check-one\", '\\uea97'),\n    CHECK_SMALL(\"bd3-check-small\", '\\uea98'),\n    CHEESE(\"bd3-cheese\", '\\uea99'),\n    CHEF_HAT(\"bd3-chef-hat\", '\\uea9a'),\n    CHEF_HAT_ONE(\"bd3-chef-hat-one\", '\\uea9b'),\n    CHERRY(\"bd3-cherry\", '\\uea9c'),\n    CHESS(\"bd3-chess\", '\\uea9d'),\n    CHESS_ONE(\"bd3-chess-one\", '\\uea9e'),\n    CHEST(\"bd3-chest\", '\\uea9f'),\n    CHICKEN(\"bd3-chicken\", '\\ueaa0'),\n    CHICKEN_LEG(\"bd3-chicken-leg\", '\\ueaa1'),\n    CHICKEN_ZODIAC(\"bd3-chicken-zodiac\", '\\ueaa2'),\n    CHILDREN_CAP(\"bd3-children-cap\", '\\ueaa3'),\n    CHILDREN_PYRAMID(\"bd3-children-pyramid\", '\\ueaa4'),\n    CHILD_WITH_PACIFIER(\"bd3-child-with-pacifier\", '\\ueaa5'),\n    CHILI(\"bd3-chili\", '\\ueaa6'),\n    CHIMNEY(\"bd3-chimney\", '\\ueaa7'),\n    CHINESE(\"bd3-chinese\", '\\ueaa8'),\n    CHINESE_ONE(\"bd3-chinese-one\", '\\ueaa9'),\n    CHINESE_PAVILION(\"bd3-chinese-pavilion\", '\\ueaaa'),\n    CHIP(\"bd3-chip\", '\\ueaab'),\n    CHOPPING_BOARD(\"bd3-chopping-board\", '\\ueaac'),\n    CHOPSTICKS_FORK(\"bd3-chopsticks-fork\", '\\ueaad'),\n    CHRISTMAS_TREE(\"bd3-christmas-tree\", '\\ueaae'),\n    CHRISTMAS_TREE_ONE(\"bd3-christmas-tree-one\", '\\ueaaf'),\n    CHURCH_ONE(\"bd3-church-one\", '\\ueab0'),\n    CHURCH_TWO(\"bd3-church-two\", '\\ueab1'),\n    CIRCLE_DOUBLE_DOWN(\"bd3-circle-double-down\", '\\ueab2'),\n    CIRCLE_DOUBLE_LEFT(\"bd3-circle-double-left\", '\\ueab3'),\n    CIRCLE_DOUBLE_RIGHT(\"bd3-circle-double-right\", '\\ueab4'),\n    CIRCLE_DOUBLE_UP(\"bd3-circle-double-up\", '\\ueab5'),\n    CIRCLE_FIVE_LINE(\"bd3-circle-five-line\", '\\ueab6'),\n    CIRCLE_FOUR(\"bd3-circle-four\", '\\ueab7'),\n    CIRCLE_FOUR_LINE(\"bd3-circle-four-line\", '\\ueab8'),\n    CIRCLE_HOUSE(\"bd3-circle-house\", '\\ueab9'),\n    CIRCLE_LEFT_DOWN(\"bd3-circle-left-down\", '\\ueaba'),\n    CIRCLE_LEFT_UP(\"bd3-circle-left-up\", '\\ueabb'),\n    CIRCLE_RIGHT_DOWN(\"bd3-circle-right-down\", '\\ueabc'),\n    CIRCLE_RIGHT_UP(\"bd3-circle-right-up\", '\\ueabd'),\n    CIRCLES_AND_TRIANGLES(\"bd3-circles-and-triangles\", '\\ueabe'),\n    CIRCLES_SEVEN(\"bd3-circles-seven\", '\\ueabf'),\n    CIRCLE_THREE(\"bd3-circle-three\", '\\ueac0'),\n    CIRCLE_TWO_LINE(\"bd3-circle-two-line\", '\\ueac1'),\n    CIRCULAR_CONNECTION(\"bd3-circular-connection\", '\\ueac2'),\n    CIRCUS(\"bd3-circus\", '\\ueac3'),\n    CITY(\"bd3-city\", '\\ueac4'),\n    CITY_GATE(\"bd3-city-gate\", '\\ueac5'),\n    CITY_ONE(\"bd3-city-one\", '\\ueac6'),\n    CLAP(\"bd3-clap\", '\\ueac7'),\n    CLASSROOM(\"bd3-classroom\", '\\ueac8'),\n    CLEAR(\"bd3-clear\", '\\ueac9'),\n    CLEAR_FORMAT(\"bd3-clear-format\", '\\ueaca'),\n    CLICK(\"bd3-click\", '\\ueacb'),\n    CLICK_TAP(\"bd3-click-tap\", '\\ueacc'),\n    CLICK_TAP_TWO(\"bd3-click-tap-two\", '\\ueacd'),\n    CLICK_TO_FOLD(\"bd3-click-to-fold\", '\\ueace'),\n    CLIPBOARD(\"bd3-clipboard\", '\\ueacf'),\n    CLOCK_TOWER(\"bd3-clock-tower\", '\\uead0'),\n    CLOSE(\"bd3-close\", '\\uead1'),\n    CLOSE_ONE(\"bd3-close-one\", '\\uead2'),\n    CLOSE_REMIND(\"bd3-close-remind\", '\\uead3'),\n    CLOSE_SMALL(\"bd3-close-small\", '\\uead4'),\n    CLOSE_WIFI(\"bd3-close-wifi\", '\\uead5'),\n    CLOTHES_BRIEFS(\"bd3-clothes-briefs\", '\\uead6'),\n    CLOTHES_CARDIGAN(\"bd3-clothes-cardigan\", '\\uead7'),\n    CLOTHES_CREW_NECK(\"bd3-clothes-crew-neck\", '\\uead8'),\n    CLOTHES_DIAPERS(\"bd3-clothes-diapers\", '\\uead9'),\n    CLOTHES_GLOVES(\"bd3-clothes-gloves\", '\\ueada'),\n    CLOTHES_GLOVES_TWO(\"bd3-clothes-gloves-two\", '\\ueadb'),\n    CLOTHES_HOODIE(\"bd3-clothes-hoodie\", '\\ueadc'),\n    CLOTHES_PANTS(\"bd3-clothes-pants\", '\\ueadd'),\n    CLOTHES_PANTS_SHORT(\"bd3-clothes-pants-short\", '\\ueade'),\n    CLOTHES_PANTS_SWEAT(\"bd3-clothes-pants-sweat\", '\\ueadf'),\n    CLOTHES_SHORT_SLEEVE(\"bd3-clothes-short-sleeve\", '\\ueae0'),\n    CLOTHES_SKATES(\"bd3-clothes-skates\", '\\ueae1'),\n    CLOTHES_SUIT(\"bd3-clothes-suit\", '\\ueae2'),\n    CLOTHES_SWEATER(\"bd3-clothes-sweater\", '\\ueae3'),\n    CLOTHES_TURTLENECK(\"bd3-clothes-turtleneck\", '\\ueae4'),\n    CLOTHES_WINDBREAKER(\"bd3-clothes-windbreaker\", '\\ueae5'),\n    CLOUD_STORAGE(\"bd3-cloud-storage\", '\\ueae6'),\n    CLOUDY(\"bd3-cloudy\", '\\ueae7'),\n    CLOUDY_NIGHT(\"bd3-cloudy-night\", '\\ueae8'),\n    CLUE(\"bd3-clue\", '\\ueae9'),\n    COAT_HANGER(\"bd3-coat-hanger\", '\\ueaea'),\n    COCKTAIL(\"bd3-cocktail\", '\\ueaeb'),\n    COCONUT_TREE(\"bd3-coconut-tree\", '\\ueaec'),\n    CODE(\"bd3-code\", '\\ueaed'),\n    CODE_BRACKETS(\"bd3-code-brackets\", '\\ueaee'),\n    CODE_COMPUTER(\"bd3-code-computer\", '\\ueaef'),\n    CODE_DOWNLOAD(\"bd3-code-download\", '\\ueaf0'),\n    CODE_LAPTOP(\"bd3-code-laptop\", '\\ueaf1'),\n    CODE_ONE(\"bd3-code-one\", '\\ueaf2'),\n    COFFEE_MACHINE(\"bd3-coffee-machine\", '\\ueaf3'),\n    COLA(\"bd3-cola\", '\\ueaf4'),\n    COLLAPSE_TEXT_INPUT(\"bd3-collapse-text-input\", '\\ueaf5'),\n    COLLECT_COMPUTER(\"bd3-collect-computer\", '\\ueaf6'),\n    COLLECTION_FILES(\"bd3-collection-files\", '\\ueaf7'),\n    COLLECTION_RECORDS(\"bd3-collection-records\", '\\ueaf8'),\n    COLLECT_LAPTOP(\"bd3-collect-laptop\", '\\ueaf9'),\n    COLLECT_PICTURE(\"bd3-collect-picture\", '\\ueafa'),\n    COLOR_CARD(\"bd3-color-card\", '\\ueafb'),\n    COLOR_FILTER(\"bd3-color-filter\", '\\ueafc'),\n    COLUMN(\"bd3-column\", '\\ueafd'),\n    COMB(\"bd3-comb\", '\\ueafe'),\n    COME(\"bd3-come\", '\\ueaff'),\n    COMMAND(\"bd3-command\", '\\ueb00'),\n    COMMENT(\"bd3-comment\", '\\ueb01'),\n    COMMENT_ONE(\"bd3-comment-one\", '\\ueb02'),\n    COMMENTS(\"bd3-comments\", '\\ueb03'),\n    COMMODITY(\"bd3-commodity\", '\\ueb04'),\n    COMMUNICATION(\"bd3-communication\", '\\ueb05'),\n    COMMUTER_BAG(\"bd3-commuter-bag\", '\\ueb06'),\n    COMPASS(\"bd3-compass\", '\\ueb07'),\n    COMPASS_ONE(\"bd3-compass-one\", '\\ueb08'),\n    COMPONENTS(\"bd3-components\", '\\ueb09'),\n    COMPOSITION(\"bd3-composition\", '\\ueb0a'),\n    COMPRESSION(\"bd3-compression\", '\\ueb0b'),\n    COMPUTER(\"bd3-computer\", '\\ueb0c'),\n    COMPUTER_ONE(\"bd3-computer-one\", '\\ueb0d'),\n    CONCEPT_SHARING(\"bd3-concept-sharing\", '\\ueb0e'),\n    CONCERN(\"bd3-concern\", '\\ueb0f'),\n    CONDITIONER(\"bd3-conditioner\", '\\ueb10'),\n    CONE(\"bd3-cone\", '\\ueb11'),\n    CONES(\"bd3-cones\", '\\ueb12'),\n    CONFIG(\"bd3-config\", '\\ueb13'),\n    CONFOUNDED_FACE(\"bd3-confounded-face\", '\\ueb14'),\n    CONFUSED_FACE(\"bd3-confused-face\", '\\ueb15'),\n    CONNECT(\"bd3-connect\", '\\ueb16'),\n    CONNECT_ADDRESS_ONE(\"bd3-connect-address-one\", '\\ueb17'),\n    CONNECT_ADDRESS_TWO(\"bd3-connect-address-two\", '\\ueb18'),\n    CONNECTION(\"bd3-connection\", '\\ueb19'),\n    CONNECTION_ARROW(\"bd3-connection-arrow\", '\\ueb1a'),\n    CONNECTION_BOX(\"bd3-connection-box\", '\\ueb1b'),\n    CONNECTION_POINT(\"bd3-connection-point\", '\\ueb1c'),\n    CONNECTION_POINT_TWO(\"bd3-connection-point-two\", '\\ueb1d'),\n    CONSIGNMENT(\"bd3-consignment\", '\\ueb1e'),\n    CONSUME(\"bd3-consume\", '\\ueb1f'),\n    CONTRAST(\"bd3-contrast\", '\\ueb20'),\n    CONTRAST_VIEW(\"bd3-contrast-view\", '\\ueb21'),\n    CONTRAST_VIEW_CIRCLE(\"bd3-contrast-view-circle\", '\\ueb22'),\n    CONTROL(\"bd3-control\", '\\ueb23'),\n    CONVERGING_GATEWAY(\"bd3-converging-gateway\", '\\ueb24'),\n    COOK(\"bd3-cook\", '\\ueb25'),\n    COOKING(\"bd3-cooking\", '\\ueb26'),\n    COOKING_POT(\"bd3-cooking-pot\", '\\ueb27'),\n    COOL(\"bd3-cool\", '\\ueb28'),\n    COOPERATIVE_HANDSHAKE(\"bd3-cooperative-handshake\", '\\ueb29'),\n    COORDINATE_SYSTEM(\"bd3-coordinate-system\", '\\ueb2a'),\n    COPY(\"bd3-copy\", '\\ueb2b'),\n    COPY_LINK(\"bd3-copy-link\", '\\ueb2c'),\n    COPY_ONE(\"bd3-copy-one\", '\\ueb2d'),\n    COPYRIGHT(\"bd3-copyright\", '\\ueb2e'),\n    CORNER_DOWN_LEFT(\"bd3-corner-down-left\", '\\ueb2f'),\n    CORNER_DOWN_RIGHT(\"bd3-corner-down-right\", '\\ueb30'),\n    CORNER_LEFT_DOWN(\"bd3-corner-left-down\", '\\ueb31'),\n    CORNER_LEFT_UP(\"bd3-corner-left-up\", '\\ueb32'),\n    CORNER_RIGHT_DOWN(\"bd3-corner-right-down\", '\\ueb33'),\n    CORNER_RIGHT_UP(\"bd3-corner-right-up\", '\\ueb34'),\n    CORNER_UP_LEFT(\"bd3-corner-up-left\", '\\ueb35'),\n    CORNER_UP_RIGHT(\"bd3-corner-up-right\", '\\ueb36'),\n    CORONAVIRUS(\"bd3-coronavirus\", '\\ueb37'),\n    CORRECT(\"bd3-correct\", '\\ueb38'),\n    COSMETIC_BRUSH(\"bd3-cosmetic-brush\", '\\ueb39'),\n    COUPON(\"bd3-coupon\", '\\ueb3a'),\n    COURT(\"bd3-court\", '\\ueb3b'),\n    CPU(\"bd3-cpu\", '\\ueb3c'),\n    CRAB(\"bd3-crab\", '\\ueb3d'),\n    CREATION_DATE_SORT(\"bd3-creation-date-sort\", '\\ueb3e'),\n    CREATIVE(\"bd3-creative\", '\\ueb3f'),\n    CREDIT(\"bd3-credit\", '\\ueb40'),\n    CRIB(\"bd3-crib\", '\\ueb41'),\n    CROISSANT(\"bd3-croissant\", '\\ueb42'),\n    CROSS_RING(\"bd3-cross-ring\", '\\ueb43'),\n    CROSS_RING_TWO(\"bd3-cross-ring-two\", '\\ueb44'),\n    CROSS_SOCIETY(\"bd3-cross-society\", '\\ueb45'),\n    CROWN(\"bd3-crown\", '\\ueb46'),\n    CROWN_THREE(\"bd3-crown-three\", '\\ueb47'),\n    CROWN_TWO(\"bd3-crown-two\", '\\ueb48'),\n    CRUISE(\"bd3-cruise\", '\\ueb49'),\n    CRYING_BABY(\"bd3-crying-baby\", '\\ueb4a'),\n    CUBE(\"bd3-cube\", '\\ueb4b'),\n    CUBE_FIVE(\"bd3-cube-five\", '\\ueb4c'),\n    CUBE_FOUR(\"bd3-cube-four\", '\\ueb4d'),\n    CUBE_THREE(\"bd3-cube-three\", '\\ueb4e'),\n    CUBE_TWO(\"bd3-cube-two\", '\\ueb4f'),\n    CUP(\"bd3-cup\", '\\ueb50'),\n    CUP_FOUR(\"bd3-cup-four\", '\\ueb51'),\n    CUP_ONE(\"bd3-cup-one\", '\\ueb52'),\n    CURLING(\"bd3-curling\", '\\ueb53'),\n    CURRENCY(\"bd3-currency\", '\\ueb54'),\n    CURVE_ADJUSTMENT(\"bd3-curve-adjustment\", '\\ueb55'),\n    CUSTOMER(\"bd3-customer\", '\\ueb56'),\n    CUTTING(\"bd3-cutting\", '\\ueb57'),\n    CUTTING_ONE(\"bd3-cutting-one\", '\\ueb58'),\n    CUVETTE(\"bd3-cuvette\", '\\ueb59'),\n    CYCLE(\"bd3-cycle\", '\\ueb5a'),\n    CYCLE_ARROW(\"bd3-cycle-arrow\", '\\ueb5b'),\n    CYCLE_MOVEMENT(\"bd3-cycle-movement\", '\\ueb5c'),\n    CYCLE_ONE(\"bd3-cycle-one\", '\\ueb5d'),\n    CYLINDER(\"bd3-cylinder\", '\\ueb5e'),\n    DAMAGE_MAP(\"bd3-damage-map\", '\\ueb5f'),\n    DARK_MODE(\"bd3-dark-mode\", '\\ueb60'),\n    DASHBOARD(\"bd3-dashboard\", '\\ueb61'),\n    DASHBOARD_CAR(\"bd3-dashboard-car\", '\\ueb62'),\n    DASHBOARD_ONE(\"bd3-dashboard-one\", '\\ueb63'),\n    DASHBOARD_TWO(\"bd3-dashboard-two\", '\\ueb64'),\n    DATA(\"bd3-data\", '\\ueb65'),\n    DATA_ALL(\"bd3-data-all\", '\\ueb66'),\n    DATA_ARRIVAL(\"bd3-data-arrival\", '\\ueb67'),\n    DATABASE_ALERT(\"bd3-database-alert\", '\\ueb68'),\n    DATABASE_CODE(\"bd3-database-code\", '\\ueb69'),\n    DATABASE_CONFIG(\"bd3-database-config\", '\\ueb6a'),\n    DATABASE_DOWNLOAD(\"bd3-database-download\", '\\ueb6b'),\n    DATABASE_ENTER(\"bd3-database-enter\", '\\ueb6c'),\n    DATABASE_FAIL(\"bd3-database-fail\", '\\ueb6d'),\n    DATABASE_FIRST(\"bd3-database-first\", '\\ueb6e'),\n    DATABASE_FORBID(\"bd3-database-forbid\", '\\ueb6f'),\n    DATABASE_LOCK(\"bd3-database-lock\", '\\ueb70'),\n    DATABASE_NETWORK(\"bd3-database-network\", '\\ueb71'),\n    DATABASE_NETWORK_POINT(\"bd3-database-network-point\", '\\ueb72'),\n    DATABASE_POINT(\"bd3-database-point\", '\\ueb73'),\n    DATABASE_POSITION(\"bd3-database-position\", '\\ueb74'),\n    DATABASE_POWER(\"bd3-database-power\", '\\ueb75'),\n    DATABASE_PROPORTION(\"bd3-database-proportion\", '\\ueb76'),\n    DATABASE_SEARCH(\"bd3-database-search\", '\\ueb77'),\n    DATABASE_SETTING(\"bd3-database-setting\", '\\ueb78'),\n    DATABASE_SUCCESS(\"bd3-database-success\", '\\ueb79'),\n    DATABASE_SYNC(\"bd3-database-sync\", '\\ueb7a'),\n    DATABASE_TIME(\"bd3-database-time\", '\\ueb7b'),\n    DATA_DISPLAY(\"bd3-data-display\", '\\ueb7c'),\n    DATA_FILE(\"bd3-data-file\", '\\ueb7d'),\n    DATA_FOUR(\"bd3-data-four\", '\\ueb7e'),\n    DATA_LOCK(\"bd3-data-lock\", '\\ueb7f'),\n    DATA_NULL(\"bd3-data-null\", '\\ueb80'),\n    DATA_ONE(\"bd3-data-one\", '\\ueb81'),\n    DATA_SCREEN(\"bd3-data-screen\", '\\ueb82'),\n    DATA_SERVER(\"bd3-data-server\", '\\ueb83'),\n    DATA_SHEET(\"bd3-data-sheet\", '\\ueb84'),\n    DATA_SWITCHING(\"bd3-data-switching\", '\\ueb85'),\n    DATA_THREE(\"bd3-data-three\", '\\ueb86'),\n    DATA_TWO(\"bd3-data-two\", '\\ueb87'),\n    DATA_USER(\"bd3-data-user\", '\\ueb88'),\n    DATE_COMES_BACK(\"bd3-date-comes-back\", '\\ueb89'),\n    DEADLINE_SORT(\"bd3-deadline-sort\", '\\ueb8a'),\n    DEATH_STAR(\"bd3-death-star\", '\\ueb8b'),\n    DEEPLINK(\"bd3-deeplink\", '\\ueb8c'),\n    DEER(\"bd3-deer\", '\\ueb8d'),\n    DEGREE_HAT(\"bd3-degree-hat\", '\\ueb8e'),\n    DELETE(\"bd3-delete\", '\\ueb8f'),\n    DELETE_FIVE(\"bd3-delete-five\", '\\ueb90'),\n    DELETE_FOUR(\"bd3-delete-four\", '\\ueb91'),\n    DELETE_KEY(\"bd3-delete-key\", '\\ueb92'),\n    DELETE_MODE(\"bd3-delete-mode\", '\\ueb93'),\n    DELETE_ONE(\"bd3-delete-one\", '\\ueb94'),\n    DELETE_THEMES(\"bd3-delete-themes\", '\\ueb95'),\n    DELETE_THREE(\"bd3-delete-three\", '\\ueb96'),\n    DELETE_TWO(\"bd3-delete-two\", '\\ueb97'),\n    DELIVERY(\"bd3-delivery\", '\\ueb98'),\n    DEPOSIT(\"bd3-deposit\", '\\ueb99'),\n    DESCEND(\"bd3-descend\", '\\ueb9a'),\n    DESK_LAMP(\"bd3-desk-lamp\", '\\ueb9b'),\n    DESK_LAMP_ONE(\"bd3-desk-lamp-one\", '\\ueb9c'),\n    DETECTION(\"bd3-detection\", '\\ueb9d'),\n    DEVICES(\"bd3-devices\", '\\ueb9e'),\n    DIAMOND(\"bd3-diamond\", '\\ueb9f'),\n    DIAMOND_NECKLACE(\"bd3-diamond-necklace\", '\\ueba0'),\n    DIAMOND_ONE(\"bd3-diamond-one\", '\\ueba1'),\n    DIAMOND_RING(\"bd3-diamond-ring\", '\\ueba2'),\n    DIAMONDS(\"bd3-diamonds\", '\\ueba3'),\n    DIAMOND_THREE(\"bd3-diamond-three\", '\\ueba4'),\n    DIAMOND_TWO(\"bd3-diamond-two\", '\\ueba5'),\n    DIANZIQIAN(\"bd3-dianziqian\", '\\ueba6'),\n    DIAPERS_ONE(\"bd3-diapers-one\", '\\ueba7'),\n    DIFFERENCE_SET(\"bd3-difference-set\", '\\ueba8'),\n    DIGITAL_WATCHES(\"bd3-digital-watches\", '\\ueba9'),\n    DIRECTION(\"bd3-direction\", '\\uebaa'),\n    DIRECTION_ADJUSTMENT(\"bd3-direction-adjustment\", '\\uebab'),\n    DIRECTION_ADJUSTMENT_THREE(\"bd3-direction-adjustment-three\", '\\uebac'),\n    DIRECTION_ADJUSTMENT_TWO(\"bd3-direction-adjustment-two\", '\\uebad'),\n    DISABALED_WEB(\"bd3-disabaled-web\", '\\uebae'),\n    DISABLED_COMPUTER(\"bd3-disabled-computer\", '\\uebaf'),\n    DISABLED_LAPTOP(\"bd3-disabled-laptop\", '\\uebb0'),\n    DISABLED_PICTURE(\"bd3-disabled-picture\", '\\uebb1'),\n    DISAPPOINTED_FACE(\"bd3-disappointed-face\", '\\uebb2'),\n    DISCOVERY_INDEX(\"bd3-discovery-index\", '\\uebb3'),\n    DISK(\"bd3-disk\", '\\uebb4'),\n    DISK_ONE(\"bd3-disk-one\", '\\uebb5'),\n    DISK_TWO(\"bd3-disk-two\", '\\uebb6'),\n    DISLIKE(\"bd3-dislike\", '\\uebb7'),\n    DISLIKE_TWO(\"bd3-dislike-two\", '\\uebb8'),\n    DISPLAY(\"bd3-display\", '\\uebb9'),\n    DISTORTION(\"bd3-distortion\", '\\uebba'),\n    DISTRAUGHT_FACE(\"bd3-distraught-face\", '\\uebbb'),\n    DISTRIBUTE_HORIZONTALLY(\"bd3-distribute-horizontally\", '\\uebbc'),\n    DISTRIBUTE_HORIZONTAL_SPACING(\"bd3-distribute-horizontal-spacing\", '\\uebbd'),\n    DISTRIBUTE_VERTICALLY(\"bd3-distribute-vertically\", '\\uebbe'),\n    DISTRIBUTE_VERTICAL_SPACING(\"bd3-distribute-vertical-spacing\", '\\uebbf'),\n    DIVIDING_LINE(\"bd3-dividing-line\", '\\uebc0'),\n    DIVIDING_LINE_ONE(\"bd3-dividing-line-one\", '\\uebc1'),\n    DIVING(\"bd3-diving\", '\\uebc2'),\n    DIVING_BOTTLE(\"bd3-diving-bottle\", '\\uebc3'),\n    DIVING_SUIT(\"bd3-diving-suit\", '\\uebc4'),\n    DIVISION(\"bd3-division\", '\\uebc5'),\n    DIZZY_FACE(\"bd3-dizzy-face\", '\\uebc6'),\n    DOC_ADD(\"bd3-doc-add\", '\\uebc7'),\n    DOC_DETAIL(\"bd3-doc-detail\", '\\uebc8'),\n    DOC_FAIL(\"bd3-doc-fail\", '\\uebc9'),\n    DOC_SEARCH(\"bd3-doc-search\", '\\uebca'),\n    DOC_SEARCH_TWO(\"bd3-doc-search-two\", '\\uebcb'),\n    DOC_SUCCESS(\"bd3-doc-success\", '\\uebcc'),\n    DOCUMENT_FOLDER(\"bd3-document-folder\", '\\uebcd'),\n    DOG(\"bd3-dog\", '\\uebce'),\n    DOG_ZODIAC(\"bd3-dog-zodiac\", '\\uebcf'),\n    DOLLAR(\"bd3-dollar\", '\\uebd0'),\n    DOLPHIN(\"bd3-dolphin\", '\\uebd1'),\n    DOME(\"bd3-dome\", '\\uebd2'),\n    DOME_LIGHT(\"bd3-dome-light\", '\\uebd3'),\n    DONE_ALL(\"bd3-done-all\", '\\uebd4'),\n    DONGCHEDI(\"bd3-dongchedi\", '\\uebd5'),\n    DOOR_HANDLE(\"bd3-door-handle\", '\\uebd6'),\n    DOT(\"bd3-dot\", '\\uebd7'),\n    DOUBLE_BED(\"bd3-double-bed\", '\\uebd8'),\n    DOUBLE_DOWN(\"bd3-double-down\", '\\uebd9'),\n    DOUBLE_LEFT(\"bd3-double-left\", '\\uebda'),\n    DOUBLE_RIGHT(\"bd3-double-right\", '\\uebdb'),\n    DOUBLE_UP(\"bd3-double-up\", '\\uebdc'),\n    DOUGHNUT(\"bd3-doughnut\", '\\uebdd'),\n    DOWN(\"bd3-down\", '\\uebde'),\n    DOWN_C(\"bd3-down-c\", '\\uebdf'),\n    DOWNLOAD(\"bd3-download\", '\\uebe0'),\n    DOWNLOAD_COMPUTER(\"bd3-download-computer\", '\\uebe1'),\n    DOWNLOAD_FOUR(\"bd3-download-four\", '\\uebe2'),\n    DOWNLOAD_LAPTOP(\"bd3-download-laptop\", '\\uebe3'),\n    DOWNLOAD_ONE(\"bd3-download-one\", '\\uebe4'),\n    DOWNLOAD_THREE(\"bd3-download-three\", '\\uebe5'),\n    DOWNLOAD_TWO(\"bd3-download-two\", '\\uebe6'),\n    DOWNLOAD_WEB(\"bd3-download-web\", '\\uebe7'),\n    DOWN_ONE(\"bd3-down-one\", '\\uebe8'),\n    DOWN_PICTURE(\"bd3-down-picture\", '\\uebe9'),\n    DOWN_SMALL(\"bd3-down-small\", '\\uebea'),\n    DOWN_SQUARE(\"bd3-down-square\", '\\uebeb'),\n    DOWN_TWO(\"bd3-down-two\", '\\uebec'),\n    DRAG(\"bd3-drag\", '\\uebed'),\n    DRAGON_ZODIAC(\"bd3-dragon-zodiac\", '\\uebee'),\n    DRIBBLE(\"bd3-dribble\", '\\uebef'),\n    DRINK(\"bd3-drink\", '\\uebf0'),\n    DRONE(\"bd3-drone\", '\\uebf1'),\n    DRONE_ONE(\"bd3-drone-one\", '\\uebf2'),\n    DROPBOX(\"bd3-dropbox\", '\\uebf3'),\n    DROP_DOWN_LIST(\"bd3-drop-down-list\", '\\uebf4'),\n    DROP_SHADOW_DOWN(\"bd3-drop-shadow-down\", '\\uebf5'),\n    DROP_SHADOW_LEFT(\"bd3-drop-shadow-left\", '\\uebf6'),\n    DROP_SHADOW_RIGHT(\"bd3-drop-shadow-right\", '\\uebf7'),\n    DROP_SHADOW_UP(\"bd3-drop-shadow-up\", '\\uebf8'),\n    DRUMSTICK(\"bd3-drumstick\", '\\uebf9'),\n    DUBAI(\"bd3-dubai\", '\\uebfa'),\n    DUCK(\"bd3-duck\", '\\uebfb'),\n    DUMBBELL(\"bd3-dumbbell\", '\\uebfc'),\n    DUMBBEL_LINE(\"bd3-dumbbel-line\", '\\uebfd'),\n    DVI(\"bd3-dvi\", '\\uebfe'),\n    EAGLE(\"bd3-eagle\", '\\uebff'),\n    EARTH(\"bd3-earth\", '\\uec00'),\n    EASY(\"bd3-easy\", '\\uec01'),\n    ECG(\"bd3-ecg\", '\\uec02'),\n    EDIT(\"bd3-edit\", '\\uec03'),\n    EDITING(\"bd3-editing\", '\\uec04'),\n    EDIT_MOVIE(\"bd3-edit-movie\", '\\uec05'),\n    EDIT_NAME(\"bd3-edit-name\", '\\uec06'),\n    EDIT_ONE(\"bd3-edit-one\", '\\uec07'),\n    EDITOR(\"bd3-editor\", '\\uec08'),\n    EDIT_TWO(\"bd3-edit-two\", '\\uec09'),\n    EEG(\"bd3-eeg\", '\\uec0a'),\n    EFFECTS(\"bd3-effects\", '\\uec0b'),\n    EFFERENT_FOUR(\"bd3-efferent-four\", '\\uec0c'),\n    EFFERENT_THREE(\"bd3-efferent-three\", '\\uec0d'),\n    EGG(\"bd3-egg\", '\\uec0e'),\n    EGG_ONE(\"bd3-egg-one\", '\\uec0f'),\n    EGGPLANT(\"bd3-eggplant\", '\\uec10'),\n    EIFFEL_TOWER(\"bd3-eiffel-tower\", '\\uec11'),\n    EIGHT_KEY(\"bd3-eight-key\", '\\uec12'),\n    ELECTRIC_DRILL(\"bd3-electric-drill\", '\\uec13'),\n    ELECTRIC_IRON(\"bd3-electric-iron\", '\\uec14'),\n    ELECTRIC_WAVE(\"bd3-electric-wave\", '\\uec15'),\n    ELECTROCARDIOGRAM(\"bd3-electrocardiogram\", '\\uec16'),\n    ELECTRONIC_DOOR_LOCK(\"bd3-electronic-door-lock\", '\\uec17'),\n    ELECTRONIC_LOCKS_CLOSE(\"bd3-electronic-locks-close\", '\\uec18'),\n    ELECTRONIC_LOCKS_OPEN(\"bd3-electronic-locks-open\", '\\uec19'),\n    ELECTRONIC_PEN(\"bd3-electronic-pen\", '\\uec1a'),\n    ELEPHANT(\"bd3-elephant\", '\\uec1b'),\n    ELEVATOR(\"bd3-elevator\", '\\uec1c'),\n    EMAIL_BLOCK(\"bd3-email-block\", '\\uec1d'),\n    EMAIL_DELECT(\"bd3-email-delect\", '\\uec1e'),\n    EMAIL_DOWN(\"bd3-email-down\", '\\uec1f'),\n    EMAIL_FAIL(\"bd3-email-fail\", '\\uec20'),\n    EMAIL_LOCK(\"bd3-email-lock\", '\\uec21'),\n    EMAIL_PUSH(\"bd3-email-push\", '\\uec22'),\n    EMAIL_SEARCH(\"bd3-email-search\", '\\uec23'),\n    EMAIL_SECURITY(\"bd3-email-security\", '\\uec24'),\n    EMAIL_SUCCESSFULLY(\"bd3-email-successfully\", '\\uec25'),\n    EMOTION_HAPPY(\"bd3-emotion-happy\", '\\uec26'),\n    EMOTION_UNHAPPY(\"bd3-emotion-unhappy\", '\\uec27'),\n    EMPTY(\"bd3-empty\", '\\uec28'),\n    ENDLESS(\"bd3-endless\", '\\uec29'),\n    ENDOCRINE(\"bd3-endocrine\", '\\uec2a'),\n    ENDPOINT_DISPLACEMENT(\"bd3-endpoint-displacement\", '\\uec2b'),\n    ENDPOINT_FLAT(\"bd3-endpoint-flat\", '\\uec2c'),\n    ENDPOINT_ROUND(\"bd3-endpoint-round\", '\\uec2d'),\n    ENDPOINT_SQUARE(\"bd3-endpoint-square\", '\\uec2e'),\n    END_TIME_SORT(\"bd3-end-time-sort\", '\\uec2f'),\n    ENERGY_SOCKET(\"bd3-energy-socket\", '\\uec30'),\n    ENGINEERING_BRAND(\"bd3-engineering-brand\", '\\uec31'),\n    ENGINEERING_VEHICLE(\"bd3-engineering-vehicle\", '\\uec32'),\n    ENGLISH(\"bd3-english\", '\\uec33'),\n    ENGLISH_MUSTACHE(\"bd3-english-mustache\", '\\uec34'),\n    ENQUIRE(\"bd3-enquire\", '\\uec35'),\n    ENTER_KEY(\"bd3-enter-key\", '\\uec36'),\n    ENTER_KEY_ONE(\"bd3-enter-key-one\", '\\uec37'),\n    ENTERTAINMENT(\"bd3-entertainment\", '\\uec38'),\n    ENTER_THE_KEYBOARD(\"bd3-enter-the-keyboard\", '\\uec39'),\n    ENVELOPE(\"bd3-envelope\", '\\uec3a'),\n    ENVELOPE_ONE(\"bd3-envelope-one\", '\\uec3b'),\n    EQUALIZER(\"bd3-equalizer\", '\\uec3c'),\n    EQUAL_RATIO(\"bd3-equal-ratio\", '\\uec3d'),\n    ERASE(\"bd3-erase\", '\\uec3e'),\n    ERROR(\"bd3-error\", '\\uec3f'),\n    ERROR_COMPUTER(\"bd3-error-computer\", '\\uec40'),\n    ERROR_PICTURE(\"bd3-error-picture\", '\\uec41'),\n    ERROR_PROMPT(\"bd3-error-prompt\", '\\uec42'),\n    ESCALATORS(\"bd3-escalators\", '\\uec43'),\n    ETHERNET_OFF(\"bd3-ethernet-off\", '\\uec44'),\n    ETHERNET_ON(\"bd3-ethernet-on\", '\\uec45'),\n    EVERY_USER(\"bd3-every-user\", '\\uec46'),\n    EXCEL(\"bd3-excel\", '\\uec47'),\n    EXCEL_ONE(\"bd3-excel-one\", '\\uec48'),\n    EXCHANGE(\"bd3-exchange\", '\\uec49'),\n    EXCHANGE_FOUR(\"bd3-exchange-four\", '\\uec4a'),\n    EXCHANGE_ONE(\"bd3-exchange-one\", '\\uec4b'),\n    EXCHANGE_THREE(\"bd3-exchange-three\", '\\uec4c'),\n    EXCHANGE_TWO(\"bd3-exchange-two\", '\\uec4d'),\n    EXCLUDE_SELECTION(\"bd3-exclude-selection\", '\\uec4e'),\n    EXCLUSIVE_GATEWAY(\"bd3-exclusive-gateway\", '\\uec4f'),\n    EXPAND_DOWN(\"bd3-expand-down\", '\\uec50'),\n    EXPAND_DOWN_ONE(\"bd3-expand-down-one\", '\\uec51'),\n    EXPAND_LEFT(\"bd3-expand-left\", '\\uec52'),\n    EXPAND_LEFT_AND_RIGHT(\"bd3-expand-left-and-right\", '\\uec53'),\n    EXPAND_RIGHT(\"bd3-expand-right\", '\\uec54'),\n    EXPAND_TEXT_INPUT(\"bd3-expand-text-input\", '\\uec55'),\n    EXPAND_UP(\"bd3-expand-up\", '\\uec56'),\n    EXPENSES(\"bd3-expenses\", '\\uec57'),\n    EXPENSES_ONE(\"bd3-expenses-one\", '\\uec58'),\n    EXPERIMENT(\"bd3-experiment\", '\\uec59'),\n    EXPERIMENT_ONE(\"bd3-experiment-one\", '\\uec5a'),\n    EXPORT(\"bd3-export\", '\\uec5b'),\n    EXPRESS_DELIVERY(\"bd3-express-delivery\", '\\uec5c'),\n    EXPRESSIONLESS_FACE(\"bd3-expressionless-face\", '\\uec5d'),\n    EXTEND(\"bd3-extend\", '\\uec5e'),\n    EXTERNAL_TRANSMISSION(\"bd3-external-transmission\", '\\uec5f'),\n    EYEBROW(\"bd3-eyebrow\", '\\uec60'),\n    EYES(\"bd3-eyes\", '\\uec61'),\n    FACEBOOK(\"bd3-facebook\", '\\uec62'),\n    FACEBOOK_ONE(\"bd3-facebook-one\", '\\uec63'),\n    FACE_POWDER(\"bd3-face-powder\", '\\uec64'),\n    FACE_RECOGNITION(\"bd3-face-recognition\", '\\uec65'),\n    FACETIME(\"bd3-facetime\", '\\uec66'),\n    FACEU(\"bd3-faceu\", '\\uec67'),\n    FACE_WITHOUT_MOUTH(\"bd3-face-without-mouth\", '\\uec68'),\n    FACE_WITH_SMILING_OPEN_EYES(\"bd3-face-with-smiling-open-eyes\", '\\uec69'),\n    FACIAL_CLEANSER(\"bd3-facial-cleanser\", '\\uec6a'),\n    FACIAL_MASK(\"bd3-facial-mask\", '\\uec6b'),\n    FACTORY_BUILDING(\"bd3-factory-building\", '\\uec6c'),\n    FAIL_PICTURE(\"bd3-fail-picture\", '\\uec6d'),\n    FAMILY(\"bd3-family\", '\\uec6e'),\n    FAN(\"bd3-fan\", '\\uec6f'),\n    FANQIEXIAOSHUO(\"bd3-fanqiexiaoshuo\", '\\uec70'),\n    FEELGOOD(\"bd3-feelgood\", '\\uec71'),\n    FEELGOOD_ONE(\"bd3-feelgood-one\", '\\uec72'),\n    F_EIGHT_KEY(\"bd3-f-eight-key\", '\\uec73'),\n    FEIYU(\"bd3-feiyu\", '\\uec74'),\n    FEMALE(\"bd3-female\", '\\uec75'),\n    FENCE_ONE(\"bd3-fence-one\", '\\uec76'),\n    FENCE_TWO(\"bd3-fence-two\", '\\uec77'),\n    FERRIS_WHEEL(\"bd3-ferris-wheel\", '\\uec78'),\n    F_FIVE_KEY(\"bd3-f-five-key\", '\\uec79'),\n    F_FOUR_KEY(\"bd3-f-four-key\", '\\uec7a'),\n    FIGMA(\"bd3-figma\", '\\uec7b'),\n    FIGMA_COMPONENT(\"bd3-figma-component\", '\\uec7c'),\n    FIGMA_FLATTEN_SELECTION(\"bd3-figma-flatten-selection\", '\\uec7d'),\n    FIGMA_MASK(\"bd3-figma-mask\", '\\uec7e'),\n    FIGMA_RESET_INSTANCE(\"bd3-figma-reset-instance\", '\\uec7f'),\n    FILE_ADDITION(\"bd3-file-addition\", '\\uec80'),\n    FILE_ADDITION_ONE(\"bd3-file-addition-one\", '\\uec81'),\n    FILE_CABINET(\"bd3-file-cabinet\", '\\uec82'),\n    FILE_CODE(\"bd3-file-code\", '\\uec83'),\n    FILE_CODE_ONE(\"bd3-file-code-one\", '\\uec84'),\n    FILE_COLLECTION(\"bd3-file-collection\", '\\uec85'),\n    FILE_COLLECTION_ONE(\"bd3-file-collection-one\", '\\uec86'),\n    FILE_CONVERSION(\"bd3-file-conversion\", '\\uec87'),\n    FILE_CONVERSION_ONE(\"bd3-file-conversion-one\", '\\uec88'),\n    FILE_DATE(\"bd3-file-date\", '\\uec89'),\n    FILE_DATE_ONE(\"bd3-file-date-one\", '\\uec8a'),\n    FILE_DISPLAY(\"bd3-file-display\", '\\uec8b'),\n    FILE_DISPLAY_ONE(\"bd3-file-display-one\", '\\uec8c'),\n    FILE_DOC(\"bd3-file-doc\", '\\uec8d'),\n    FILE_EDITING(\"bd3-file-editing\", '\\uec8e'),\n    FILE_EDITING_ONE(\"bd3-file-editing-one\", '\\uec8f'),\n    FILE_EXCEL(\"bd3-file-excel\", '\\uec90'),\n    FILE_FAILED(\"bd3-file-failed\", '\\uec91'),\n    FILE_FAILED_ONE(\"bd3-file-failed-one\", '\\uec92'),\n    FILE_FOCUS(\"bd3-file-focus\", '\\uec93'),\n    FILE_FOCUS_ONE(\"bd3-file-focus-one\", '\\uec94'),\n    FILE_GIF(\"bd3-file-gif\", '\\uec95'),\n    FILE_HASH(\"bd3-file-hash\", '\\uec96'),\n    FILE_HASH_ONE(\"bd3-file-hash-one\", '\\uec97'),\n    FILE_HIDING(\"bd3-file-hiding\", '\\uec98'),\n    FILE_HIDING_ONE(\"bd3-file-hiding-one\", '\\uec99'),\n    FILE_JPG(\"bd3-file-jpg\", '\\uec9a'),\n    FILE_LOCK(\"bd3-file-lock\", '\\uec9b'),\n    FILE_LOCK_ONE(\"bd3-file-lock-one\", '\\uec9c'),\n    FILE_MUSIC(\"bd3-file-music\", '\\uec9d'),\n    FILE_MUSIC_ONE(\"bd3-file-music-one\", '\\uec9e'),\n    FILE_PDF(\"bd3-file-pdf\", '\\uec9f'),\n    FILE_PDF_ONE(\"bd3-file-pdf-one\", '\\ueca0'),\n    FILE_PPT(\"bd3-file-ppt\", '\\ueca1'),\n    FILE_PROTECTION(\"bd3-file-protection\", '\\ueca2'),\n    FILE_PROTECTION_ONE(\"bd3-file-protection-one\", '\\ueca3'),\n    FILE_QUALITY(\"bd3-file-quality\", '\\ueca4'),\n    FILE_QUALITY_ONE(\"bd3-file-quality-one\", '\\ueca5'),\n    FILE_QUESTION(\"bd3-file-question\", '\\ueca6'),\n    FILE_REMOVAL(\"bd3-file-removal\", '\\ueca7'),\n    FILE_REMOVAL_ONE(\"bd3-file-removal-one\", '\\ueca8'),\n    FILE_SEARCH(\"bd3-file-search\", '\\ueca9'),\n    FILE_SEARCH_ONE(\"bd3-file-search-one\", '\\uecaa'),\n    FILE_SEARCH_TWO(\"bd3-file-search-two\", '\\uecab'),\n    FILE_SETTINGS(\"bd3-file-settings\", '\\uecac'),\n    FILE_SETTINGS_ONE(\"bd3-file-settings-one\", '\\uecad'),\n    FILE_STAFF(\"bd3-file-staff\", '\\uecae'),\n    FILE_STAFF_ONE(\"bd3-file-staff-one\", '\\uecaf'),\n    FILE_SUCCESS(\"bd3-file-success\", '\\uecb0'),\n    FILE_SUCCESS_ONE(\"bd3-file-success-one\", '\\uecb1'),\n    FILE_TEXT(\"bd3-file-text\", '\\uecb2'),\n    FILE_TEXT_ONE(\"bd3-file-text-one\", '\\uecb3'),\n    FILE_TIPS(\"bd3-file-tips\", '\\uecb4'),\n    FILE_TIPS_ONE(\"bd3-file-tips-one\", '\\uecb5'),\n    FILE_TXT(\"bd3-file-txt\", '\\uecb6'),\n    FILE_TXT_ONE(\"bd3-file-txt-one\", '\\uecb7'),\n    FILE_WITHDRAWAL(\"bd3-file-withdrawal\", '\\uecb8'),\n    FILE_WITHDRAWAL_ONE(\"bd3-file-withdrawal-one\", '\\uecb9'),\n    FILE_WORD(\"bd3-file-word\", '\\uecba'),\n    FILE_ZIP(\"bd3-file-zip\", '\\uecbb'),\n    FILL(\"bd3-fill\", '\\uecbc'),\n    FILM(\"bd3-film\", '\\uecbd'),\n    FILTER(\"bd3-filter\", '\\uecbe'),\n    FILTER_ONE(\"bd3-filter-one\", '\\uecbf'),\n    FINANCE(\"bd3-finance\", '\\uecc0'),\n    FINANCING(\"bd3-financing\", '\\uecc1'),\n    FINANCING_ONE(\"bd3-financing-one\", '\\uecc2'),\n    FINANCING_TWO(\"bd3-financing-two\", '\\uecc3'),\n    FIND(\"bd3-find\", '\\uecc4'),\n    FIND_ONE(\"bd3-find-one\", '\\uecc5'),\n    FINGERNAIL(\"bd3-fingernail\", '\\uecc6'),\n    FINGERPRINT(\"bd3-fingerprint\", '\\uecc7'),\n    FINGERPRINT_THREE(\"bd3-fingerprint-three\", '\\uecc8'),\n    FINGERPRINT_TWO(\"bd3-fingerprint-two\", '\\uecc9'),\n    FIRE(\"bd3-fire\", '\\uecca'),\n    FIRE_EXTINGUISHER(\"bd3-fire-extinguisher\", '\\ueccb'),\n    FIRE_EXTINGUISHER_ONE(\"bd3-fire-extinguisher-one\", '\\ueccc'),\n    FIRE_TWO(\"bd3-fire-two\", '\\ueccd'),\n    FIREWORKS(\"bd3-fireworks\", '\\uecce'),\n    FIRST(\"bd3-first\", '\\ueccf'),\n    FIRST_AID_KIT(\"bd3-first-aid-kit\", '\\uecd0'),\n    FISH(\"bd3-fish\", '\\uecd1'),\n    FISHING(\"bd3-fishing\", '\\uecd2'),\n    FISH_ONE(\"bd3-fish-one\", '\\uecd3'),\n    FIST(\"bd3-fist\", '\\uecd4'),\n    FITNESS(\"bd3-fitness\", '\\uecd5'),\n    FIVE(\"bd3-five\", '\\uecd6'),\n    FIVE_ELLIPSES(\"bd3-five-ellipses\", '\\uecd7'),\n    FIVE_FIVE(\"bd3-five-five\", '\\uecd8'),\n    FIVE_KEY(\"bd3-five-key\", '\\uecd9'),\n    FIVE_STAR_BADGE(\"bd3-five-star-badge\", '\\uecda'),\n    FLAG(\"bd3-flag\", '\\uecdb'),\n    FLASHLAMP(\"bd3-flashlamp\", '\\uecdc'),\n    FLASHLIGHT(\"bd3-flashlight\", '\\uecdd'),\n    FLASH_PAYMENT(\"bd3-flash-payment\", '\\uecde'),\n    FLASK(\"bd3-flask\", '\\uecdf'),\n    FLIGHT_AIRFLOW(\"bd3-flight-airflow\", '\\uece0'),\n    FLIGHT_SAFETY(\"bd3-flight-safety\", '\\uece1'),\n    FLIP_CAMERA(\"bd3-flip-camera\", '\\uece2'),\n    FLIP_HORIZONTALLY(\"bd3-flip-horizontally\", '\\uece3'),\n    FLIP_VERTICALLY(\"bd3-flip-vertically\", '\\uece4'),\n    FLIRT(\"bd3-flirt\", '\\uece5'),\n    FLOAT(\"bd3-float\", '\\uece6'),\n    FLOOR_TILE(\"bd3-floor-tile\", '\\uece7'),\n    FM(\"bd3-fm\", '\\uece8'),\n    F_NINE_KEY(\"bd3-f-nine-key\", '\\uece9'),\n    F_N_KEY(\"bd3-f-n-key\", '\\uecea'),\n    FOCUS(\"bd3-focus\", '\\ueceb'),\n    FOCUS_ONE(\"bd3-focus-one\", '\\uecec'),\n    FOG(\"bd3-fog\", '\\ueced'),\n    FOLDER(\"bd3-folder\", '\\uecee'),\n    FOLDER_BLOCK(\"bd3-folder-block\", '\\uecef'),\n    FOLDER_BLOCK_ONE(\"bd3-folder-block-one\", '\\uecf0'),\n    FOLDER_CLOSE(\"bd3-folder-close\", '\\uecf1'),\n    FOLDER_CODE(\"bd3-folder-code\", '\\uecf2'),\n    FOLDER_CODE_ONE(\"bd3-folder-code-one\", '\\uecf3'),\n    FOLDER_CONVERSION(\"bd3-folder-conversion\", '\\uecf4'),\n    FOLDER_CONVERSION_ONE(\"bd3-folder-conversion-one\", '\\uecf5'),\n    FOLDER_DOWNLOAD(\"bd3-folder-download\", '\\uecf6'),\n    FOLDER_FAILED(\"bd3-folder-failed\", '\\uecf7'),\n    FOLDER_FAILED_ONE(\"bd3-folder-failed-one\", '\\uecf8'),\n    FOLDER_FOCUS(\"bd3-folder-focus\", '\\uecf9'),\n    FOLDER_FOCUS_ONE(\"bd3-folder-focus-one\", '\\uecfa'),\n    FOLDER_LOCK(\"bd3-folder-lock\", '\\uecfb'),\n    FOLDER_LOCK_ONE(\"bd3-folder-lock-one\", '\\uecfc'),\n    FOLDER_MINUS(\"bd3-folder-minus\", '\\uecfd'),\n    FOLDER_MUSIC(\"bd3-folder-music\", '\\uecfe'),\n    FOLDER_MUSIC_ONE(\"bd3-folder-music-one\", '\\uecff'),\n    FOLDER_ONE(\"bd3-folder-one\", '\\ued00'),\n    FOLDER_OPEN(\"bd3-folder-open\", '\\ued01'),\n    FOLDER_PLUS(\"bd3-folder-plus\", '\\ued02'),\n    FOLDER_PROTECTION(\"bd3-folder-protection\", '\\ued03'),\n    FOLDER_PROTECTION_ONE(\"bd3-folder-protection-one\", '\\ued04'),\n    FOLDER_QUALITY(\"bd3-folder-quality\", '\\ued05'),\n    FOLDER_QUALITY_ONE(\"bd3-folder-quality-one\", '\\ued06'),\n    FOLDER_SEARCH(\"bd3-folder-search\", '\\ued07'),\n    FOLDER_SEARCH_ONE(\"bd3-folder-search-one\", '\\ued08'),\n    FOLDER_SETTINGS(\"bd3-folder-settings\", '\\ued09'),\n    FOLDER_SETTINGS_ONE(\"bd3-folder-settings-one\", '\\ued0a'),\n    FOLDER_SUCCESS(\"bd3-folder-success\", '\\ued0b'),\n    FOLDER_SUCCESS_ONE(\"bd3-folder-success-one\", '\\ued0c'),\n    FOLDER_UPLOAD(\"bd3-folder-upload\", '\\ued0d'),\n    FOLDER_WITHDRAWAL(\"bd3-folder-withdrawal\", '\\ued0e'),\n    FOLDER_WITHDRAWAL_ONE(\"bd3-folder-withdrawal-one\", '\\ued0f'),\n    FOLD_UP_ONE(\"bd3-fold-up-one\", '\\ued10'),\n    FOLLOW_UP_DATE_SORT(\"bd3-follow-up-date-sort\", '\\ued11'),\n    F_ONE_KEY(\"bd3-f-one-key\", '\\ued12'),\n    FONT_SEARCH(\"bd3-font-search\", '\\ued13'),\n    FONT_SIZE(\"bd3-font-size\", '\\ued14'),\n    FONT_SIZE_TWO(\"bd3-font-size-two\", '\\ued15'),\n    FOOT(\"bd3-foot\", '\\ued16'),\n    FOOTBALL(\"bd3-football\", '\\ued17'),\n    FORBID(\"bd3-forbid\", '\\ued18'),\n    FORK(\"bd3-fork\", '\\ued19'),\n    FORK_SPOON(\"bd3-fork-spoon\", '\\ued1a'),\n    FORM(\"bd3-form\", '\\ued1b'),\n    FORMAT(\"bd3-format\", '\\ued1c'),\n    FORMAT_BRUSH(\"bd3-format-brush\", '\\ued1d'),\n    FORM_ONE(\"bd3-form-one\", '\\ued1e'),\n    FORMULA(\"bd3-formula\", '\\ued1f'),\n    FOUNDATION_MAKEUP(\"bd3-foundation-makeup\", '\\ued20'),\n    FOUR(\"bd3-four\", '\\ued21'),\n    FOUR_ARROWS(\"bd3-four-arrows\", '\\ued22'),\n    FOUR_FOUR(\"bd3-four-four\", '\\ued23'),\n    FOUR_KEY(\"bd3-four-key\", '\\ued24'),\n    FOUR_LEAVES(\"bd3-four-leaves\", '\\ued25'),\n    FOUR_POINT_CONNECTION(\"bd3-four-point-connection\", '\\ued26'),\n    FOUR_ROUND_POINT_CONNECTION(\"bd3-four-round-point-connection\", '\\ued27'),\n    FOURSQUARE(\"bd3-foursquare\", '\\ued28'),\n    FREEZE_COLUMN(\"bd3-freeze-column\", '\\ued29'),\n    FREEZE_LINE(\"bd3-freeze-line\", '\\ued2a'),\n    FREEZING_LINE_COLUMN(\"bd3-freezing-line-column\", '\\ued2b'),\n    FRENCH_FRIES(\"bd3-french-fries\", '\\ued2c'),\n    FRIENDS_CIRCLE(\"bd3-friends-circle\", '\\ued2d'),\n    FRIGATE(\"bd3-frigate\", '\\ued2e'),\n    FROG(\"bd3-frog\", '\\ued2f'),\n    FROWNING_FACE_WHIT_OPEN_MOUTH(\"bd3-frowning-face-whit-open-mouth\", '\\ued30'),\n    FRUITER(\"bd3-fruiter\", '\\ued31'),\n    F_SEVEN_KEY(\"bd3-f-seven-key\", '\\ued32'),\n    F_SIX_KEY(\"bd3-f-six-key\", '\\ued33'),\n    F_THREE_KEY(\"bd3-f-three-key\", '\\ued34'),\n    F_TWO_KEY(\"bd3-f-two-key\", '\\ued35'),\n    FULL_DRESS_LONGUETTE(\"bd3-full-dress-longuette\", '\\ued36'),\n    FULL_SCREEN(\"bd3-full-screen\", '\\ued37'),\n    FULL_SCREEN_ONE(\"bd3-full-screen-one\", '\\ued38'),\n    FULL_SCREEN_PLAY(\"bd3-full-screen-play\", '\\ued39'),\n    FULL_SCREEN_TWO(\"bd3-full-screen-two\", '\\ued3a'),\n    FULL_SELECTION(\"bd3-full-selection\", '\\ued3b'),\n    FULLWIDTH(\"bd3-fullwidth\", '\\ued3c'),\n    FUNDS(\"bd3-funds\", '\\ued3d'),\n    FUTURE_BUILD_ONE(\"bd3-future-build-one\", '\\ued3e'),\n    FUTURE_BUILD_THREE(\"bd3-future-build-three\", '\\ued3f'),\n    FUTURE_BUILD_TWO(\"bd3-future-build-two\", '\\ued40'),\n    F_ZERO_KEY(\"bd3-f-zero-key\", '\\ued41'),\n    GAME(\"bd3-game\", '\\ued42'),\n    GAME_CONSOLE(\"bd3-game-console\", '\\ued43'),\n    GAME_CONSOLE_ONE(\"bd3-game-console-one\", '\\ued44'),\n    GAME_EMOJI(\"bd3-game-emoji\", '\\ued45'),\n    GAME_HANDLE(\"bd3-game-handle\", '\\ued46'),\n    GAMEPAD(\"bd3-gamepad\", '\\ued47'),\n    GAME_PS(\"bd3-game-ps\", '\\ued48'),\n    GAME_THREE(\"bd3-game-three\", '\\ued49'),\n    GAME_TWO(\"bd3-game-two\", '\\ued4a'),\n    GARAGE(\"bd3-garage\", '\\ued4b'),\n    GARLIC(\"bd3-garlic\", '\\ued4c'),\n    GAS(\"bd3-gas\", '\\ued4d'),\n    GASTROINTESTINAL(\"bd3-gastrointestinal\", '\\ued4e'),\n    GATE(\"bd3-gate\", '\\ued4f'),\n    GATE_MACHINE(\"bd3-gate-machine\", '\\ued50'),\n    GAUZE(\"bd3-gauze\", '\\ued51'),\n    GAVEL(\"bd3-gavel\", '\\ued52'),\n    GEMINI(\"bd3-gemini\", '\\ued53'),\n    GENERAL_BRANCH(\"bd3-general-branch\", '\\ued54'),\n    GEOMETRIC_FLOWERS(\"bd3-geometric-flowers\", '\\ued55'),\n    GERMS(\"bd3-germs\", '\\ued56'),\n    GHOST(\"bd3-ghost\", '\\ued57'),\n    GIFT(\"bd3-gift\", '\\ued58'),\n    GIFT_BAG(\"bd3-gift-bag\", '\\ued59'),\n    GIFT_BOX(\"bd3-gift-box\", '\\ued5a'),\n    GIRL(\"bd3-girl\", '\\ued5b'),\n    GIRL_ONE(\"bd3-girl-one\", '\\ued5c'),\n    GIRL_TWO(\"bd3-girl-two\", '\\ued5d'),\n    GITHUB(\"bd3-github\", '\\ued5e'),\n    GITHUB_ONE(\"bd3-github-one\", '\\ued5f'),\n    GITLAB(\"bd3-gitlab\", '\\ued60'),\n    GLASSES(\"bd3-glasses\", '\\ued61'),\n    GLASSES_ONE(\"bd3-glasses-one\", '\\ued62'),\n    GLASSES_THREE(\"bd3-glasses-three\", '\\ued63'),\n    GLOBE(\"bd3-globe\", '\\ued64'),\n    GLOVE(\"bd3-glove\", '\\ued65'),\n    GO_AHEAD(\"bd3-go-ahead\", '\\ued66'),\n    GOBLET(\"bd3-goblet\", '\\ued67'),\n    GOBLET_CRACKING(\"bd3-goblet-cracking\", '\\ued68'),\n    GOBLET_FULL(\"bd3-goblet-full\", '\\ued69'),\n    GOBLET_ONE(\"bd3-goblet-one\", '\\ued6a'),\n    GO_END(\"bd3-go-end\", '\\ued6b'),\n    GOLD_MEDAL(\"bd3-gold-medal\", '\\ued6c'),\n    GOLD_MEDAL_TWO(\"bd3-gold-medal-two\", '\\ued6d'),\n    GOLF_COURSE(\"bd3-golf-course\", '\\ued6e'),\n    GONGFU(\"bd3-gongfu\", '\\ued6f'),\n    GOOD(\"bd3-good\", '\\ued70'),\n    GOOD_ONE(\"bd3-good-one\", '\\ued71'),\n    GOOD_TWO(\"bd3-good-two\", '\\ued72'),\n    GOOGLE(\"bd3-google\", '\\ued73'),\n    GOOGLE_ADS(\"bd3-google-ads\", '\\ued74'),\n    GO_ON(\"bd3-go-on\", '\\ued75'),\n    GOPRO(\"bd3-gopro\", '\\ued76'),\n    GO_START(\"bd3-go-start\", '\\ued77'),\n    GPS(\"bd3-gps\", '\\ued78'),\n    GRAPHIC_DESIGN(\"bd3-graphic-design\", '\\ued79'),\n    GRAPHIC_DESIGN_TWO(\"bd3-graphic-design-two\", '\\ued7a'),\n    GRAPHIC_STITCHING(\"bd3-graphic-stitching\", '\\ued7b'),\n    GRAPHIC_STITCHING_FOUR(\"bd3-graphic-stitching-four\", '\\ued7c'),\n    GRAPHIC_STITCHING_THREE(\"bd3-graphic-stitching-three\", '\\ued7d'),\n    GREAT_WALL(\"bd3-great-wall\", '\\ued7e'),\n    GREEN_HOUSE(\"bd3-green-house\", '\\ued7f'),\n    GREEN_NEW_ENERGY(\"bd3-green-new-energy\", '\\ued80'),\n    GRID_FOUR(\"bd3-grid-four\", '\\ued81'),\n    GRID_NINE(\"bd3-grid-nine\", '\\ued82'),\n    GRID_SIXTEEN(\"bd3-grid-sixteen\", '\\ued83'),\n    GRID_THREE(\"bd3-grid-three\", '\\ued84'),\n    GRID_TWO(\"bd3-grid-two\", '\\ued85'),\n    GRIMACING_FACE(\"bd3-grimacing-face\", '\\ued86'),\n    GRINNING_FACE(\"bd3-grinning-face\", '\\ued87'),\n    GRINNING_FACE_WITH_OPEN_MOUTH(\"bd3-grinning-face-with-open-mouth\", '\\ued88'),\n    GRINNING_FACE_WITH_SQUINTING_EYES(\"bd3-grinning-face-with-squinting-eyes\", '\\ued89'),\n    GRINNING_FACE_WITH_TIGHTLY_CLOSED_EYES(\"bd3-grinning-face-with-tightly-closed-eyes\", '\\ued8a'),\n    GRINNING_FACE_WITH_TIGHTLY_CLOSED_EYES_OPEN_MOUTH(\"bd3-grinning-face-with-tightly-closed-eyes-open-mouth\", '\\ued8b'),\n    GROUP(\"bd3-group\", '\\ued8c'),\n    GUIDE_BOARD(\"bd3-guide-board\", '\\ued8d'),\n    GYMNASTICS(\"bd3-gymnastics\", '\\ued8e'),\n    GYMNASTICS_ONE(\"bd3-gymnastics-one\", '\\ued8f'),\n    H(\"bd3-h\", '\\ued90'),\n    H1(\"bd3-h1\", '\\ued91'),\n    H2(\"bd3-h2\", '\\ued92'),\n    H3(\"bd3-h3\", '\\ued93'),\n    HAIR_BRUSH(\"bd3-hair-brush\", '\\ued94'),\n    HAIR_CLIP(\"bd3-hair-clip\", '\\ued95'),\n    HAIR_DRYER(\"bd3-hair-dryer\", '\\ued96'),\n    HAIR_DRYER_ONE(\"bd3-hair-dryer-one\", '\\ued97'),\n    HALO(\"bd3-halo\", '\\ued98'),\n    HAMBURGER(\"bd3-hamburger\", '\\ued99'),\n    HAMBURGER_BUTTON(\"bd3-hamburger-button\", '\\ued9a'),\n    HAMBURGER_ONE(\"bd3-hamburger-one\", '\\ued9b'),\n    HAMMER_AND_ANVIL(\"bd3-hammer-and-anvil\", '\\ued9c'),\n    HANDBAG(\"bd3-handbag\", '\\ued9d'),\n    HAND_CREAM(\"bd3-hand-cream\", '\\ued9e'),\n    HAND_DOWN(\"bd3-hand-down\", '\\ued9f'),\n    HAND_DRAG(\"bd3-hand-drag\", '\\ueda0'),\n    HANDHELD(\"bd3-handheld\", '\\ueda1'),\n    HANDLE_A(\"bd3-handle-a\", '\\ueda2'),\n    HANDLE_B(\"bd3-handle-b\", '\\ueda3'),\n    HANDLE_C(\"bd3-handle-c\", '\\ueda4'),\n    HANDLE_DOWN(\"bd3-handle-down\", '\\ueda5'),\n    HAND_LEFT(\"bd3-hand-left\", '\\ueda6'),\n    HANDLE_LEFT(\"bd3-handle-left\", '\\ueda7'),\n    HANDLE_RIGHT(\"bd3-handle-right\", '\\ueda8'),\n    HANDLE_ROUND(\"bd3-handle-round\", '\\ueda9'),\n    HANDLE_SQUARE(\"bd3-handle-square\", '\\uedaa'),\n    HANDLE_TRIANGLE(\"bd3-handle-triangle\", '\\uedab'),\n    HANDLE_UP(\"bd3-handle-up\", '\\uedac'),\n    HANDLE_X(\"bd3-handle-x\", '\\uedad'),\n    HANDLE_Y(\"bd3-handle-y\", '\\uedae'),\n    HANDLE_Z(\"bd3-handle-z\", '\\uedaf'),\n    HAND_PAINTED_PLATE(\"bd3-hand-painted-plate\", '\\uedb0'),\n    HAND_RIGHT(\"bd3-hand-right\", '\\uedb1'),\n    HANDS(\"bd3-hands\", '\\uedb2'),\n    HAND_UP(\"bd3-hand-up\", '\\uedb3'),\n    HANDWASHING(\"bd3-handwashing\", '\\uedb4'),\n    HANDWASHING_FLUID(\"bd3-handwashing-fluid\", '\\uedb5'),\n    HANFU_CHINESE_STYLE(\"bd3-hanfu-chinese-style\", '\\uedb6'),\n    HANGER(\"bd3-hanger\", '\\uedb7'),\n    HANGER_ONE(\"bd3-hanger-one\", '\\uedb8'),\n    HANGER_TWO(\"bd3-hanger-two\", '\\uedb9'),\n    HARD_DISK(\"bd3-hard-disk\", '\\uedba'),\n    HARD_DISK_ONE(\"bd3-hard-disk-one\", '\\uedbb'),\n    HARM(\"bd3-harm\", '\\uedbc'),\n    HASHTAG_KEY(\"bd3-hashtag-key\", '\\uedbd'),\n    HAT(\"bd3-hat\", '\\uedbe'),\n    HDD(\"bd3-hdd\", '\\uedbf'),\n    HDMI_CABLE(\"bd3-hdmi-cable\", '\\uedc0'),\n    HDMI_CONNECTOR(\"bd3-hdmi-connector\", '\\uedc1'),\n    HEADPHONE_SOUND(\"bd3-headphone-sound\", '\\uedc2'),\n    HEADSET(\"bd3-headset\", '\\uedc3'),\n    HEADSET_ONE(\"bd3-headset-one\", '\\uedc4'),\n    HEADSET_TWO(\"bd3-headset-two\", '\\uedc5'),\n    HEADWEAR(\"bd3-headwear\", '\\uedc6'),\n    HEALTH(\"bd3-health\", '\\uedc7'),\n    HEALTH_PRODUCTS(\"bd3-health-products\", '\\uedc8'),\n    HEALTHY_RECOGNITION(\"bd3-healthy-recognition\", '\\uedc9'),\n    HEART(\"bd3-heart\", '\\uedca'),\n    HEART_BALLON(\"bd3-heart-ballon\", '\\uedcb'),\n    HEARTBEAT(\"bd3-heartbeat\", '\\uedcc'),\n    HEART_RATE(\"bd3-heart-rate\", '\\uedcd'),\n    HEATER_RESISTOR(\"bd3-heater-resistor\", '\\uedce'),\n    HEAVY_METAL(\"bd3-heavy-metal\", '\\uedcf'),\n    HEAVY_RAIN(\"bd3-heavy-rain\", '\\uedd0'),\n    HEAVY_WIND(\"bd3-heavy-wind\", '\\uedd1'),\n    HELMET(\"bd3-helmet\", '\\uedd2'),\n    HELMET_ONE(\"bd3-helmet-one\", '\\uedd3'),\n    HELP(\"bd3-help\", '\\uedd4'),\n    HELPCENTER(\"bd3-helpcenter\", '\\uedd5'),\n    HEXAGONAL(\"bd3-hexagonal\", '\\uedd6'),\n    HEXAGON_ONE(\"bd3-hexagon-one\", '\\uedd7'),\n    HEXAGON_STRIP(\"bd3-hexagon-strip\", '\\uedd8'),\n    HI(\"bd3-hi\", '\\uedd9'),\n    HIGH_HEELED_SHOES(\"bd3-high-heeled-shoes\", '\\uedda'),\n    HIGH_LIGHT(\"bd3-high-light\", '\\ueddb'),\n    HIGH_SPEED_RAIL(\"bd3-high-speed-rail\", '\\ueddc'),\n    HIPPO(\"bd3-hippo\", '\\ueddd'),\n    HISTOGRAM(\"bd3-histogram\", '\\uedde'),\n    HISTORY(\"bd3-history\", '\\ueddf'),\n    HISTORY_QUERY(\"bd3-history-query\", '\\uede0'),\n    HOCKEY(\"bd3-hockey\", '\\uede1'),\n    HOLD(\"bd3-hold\", '\\uede2'),\n    HOLDING_HANDS(\"bd3-holding-hands\", '\\uede3'),\n    HOLD_INTERFACE(\"bd3-hold-interface\", '\\uede4'),\n    HOLD_SEEDS(\"bd3-hold-seeds\", '\\uede5'),\n    HOLY_SWORD(\"bd3-holy-sword\", '\\uede6'),\n    HOME(\"bd3-home\", '\\uede7'),\n    HOMESTAY(\"bd3-homestay\", '\\uede8'),\n    HOME_TWO(\"bd3-home-two\", '\\uede9'),\n    HONEY(\"bd3-honey\", '\\uedea'),\n    HONEY_ONE(\"bd3-honey-one\", '\\uedeb'),\n    HORIZONTALLY_CENTERED(\"bd3-horizontally-centered\", '\\uedec'),\n    HORIZONTAL_SPACING_BETWEEN_ITEMS(\"bd3-horizontal-spacing-between-items\", '\\ueded'),\n    HORIZONTAL_TIDY_UP(\"bd3-horizontal-tidy-up\", '\\uedee'),\n    HORSE_ZODIAC(\"bd3-horse-zodiac\", '\\uedef'),\n    HOSPITAL(\"bd3-hospital\", '\\uedf0'),\n    HOSPITAL_BED(\"bd3-hospital-bed\", '\\uedf1'),\n    HOSPITAL_FOUR(\"bd3-hospital-four\", '\\uedf2'),\n    HOSPITAL_THREE(\"bd3-hospital-three\", '\\uedf3'),\n    HOSPITAL_TWO(\"bd3-hospital-two\", '\\uedf4'),\n    HOT_AIR_BALLOON(\"bd3-hot-air-balloon\", '\\uedf5'),\n    HOTEL(\"bd3-hotel\", '\\uedf6'),\n    HOTEL_DO_NOT_CLEAN(\"bd3-hotel-do-not-clean\", '\\uedf7'),\n    HOTEL_PLEASE_CLEAN(\"bd3-hotel-please-clean\", '\\uedf8'),\n    HOT_POT(\"bd3-hot-pot\", '\\uedf9'),\n    HOT_POT_ONE(\"bd3-hot-pot-one\", '\\uedfa'),\n    HOURGLASS(\"bd3-hourglass\", '\\uedfb'),\n    HOURGLASS_FULL(\"bd3-hourglass-full\", '\\uedfc'),\n    HOURGLASS_NULL(\"bd3-hourglass-null\", '\\uedfd'),\n    HTML_FIVE(\"bd3-html-five\", '\\uedfe'),\n    HUNTING_GEAR(\"bd3-hunting-gear\", '\\uedff'),\n    HUOSHANZHIBO(\"bd3-huoshanzhibo\", '\\uee00'),\n    ICECREAM(\"bd3-icecream\", '\\uee01'),\n    ICECREAM_FIVE(\"bd3-icecream-five\", '\\uee02'),\n    ICECREAM_FOUR(\"bd3-icecream-four\", '\\uee03'),\n    ICECREAM_ONE(\"bd3-icecream-one\", '\\uee04'),\n    ICECREAM_THREE(\"bd3-icecream-three\", '\\uee05'),\n    ICECREAM_TWO(\"bd3-icecream-two\", '\\uee06'),\n    ID_CARD(\"bd3-id-card\", '\\uee07'),\n    ID_CARD_H(\"bd3-id-card-h\", '\\uee08'),\n    ID_CARD_V(\"bd3-id-card-v\", '\\uee09'),\n    I_MAC(\"bd3-i-mac\", '\\uee0a'),\n    IMAGE_FILES(\"bd3-image-files\", '\\uee0b'),\n    IMBALANCE(\"bd3-imbalance\", '\\uee0c'),\n    IMPORT_AND_EXPORT(\"bd3-import-and-export\", '\\uee0d'),\n    INBOX(\"bd3-inbox\", '\\uee0e'),\n    INBOX_DOWNLOAD_R(\"bd3-inbox-download-r\", '\\uee0f'),\n    INBOX_IN(\"bd3-inbox-in\", '\\uee10'),\n    INBOX_OUT(\"bd3-inbox-out\", '\\uee11'),\n    INBOX_R(\"bd3-inbox-r\", '\\uee12'),\n    INBOX_SUCCESS(\"bd3-inbox-success\", '\\uee13'),\n    INBOX_SUCCESS_R(\"bd3-inbox-success-r\", '\\uee14'),\n    INBOX_UPLOAD_R(\"bd3-inbox-upload-r\", '\\uee15'),\n    INCLUSIVE_GATEWAY(\"bd3-inclusive-gateway\", '\\uee16'),\n    INCOME(\"bd3-income\", '\\uee17'),\n    INCOME_ONE(\"bd3-income-one\", '\\uee18'),\n    INCOMING(\"bd3-incoming\", '\\uee19'),\n    INCREASE(\"bd3-increase\", '\\uee1a'),\n    INCREASE_THE_SCALE(\"bd3-increase-the-scale\", '\\uee1b'),\n    INDENT_LEFT(\"bd3-indent-left\", '\\uee1c'),\n    INDENT_RIGHT(\"bd3-indent-right\", '\\uee1d'),\n    INDEX_FINGER(\"bd3-index-finger\", '\\uee1e'),\n    INDUCTION_LOCK(\"bd3-induction-lock\", '\\uee1f'),\n    INDUSTRIAL_SCALES(\"bd3-industrial-scales\", '\\uee20'),\n    IN_FLIGHT(\"bd3-in-flight\", '\\uee21'),\n    INFO(\"bd3-info\", '\\uee22'),\n    INFUSION(\"bd3-infusion\", '\\uee23'),\n    INJECTION(\"bd3-injection\", '\\uee24'),\n    INLINE(\"bd3-inline\", '\\uee25'),\n    INNER_SHADOW_BOTTOM_LEFT(\"bd3-inner-shadow-bottom-left\", '\\uee26'),\n    INNER_SHADOW_BOTTOM_RIGHT(\"bd3-inner-shadow-bottom-right\", '\\uee27'),\n    INNER_SHADOW_DOWN(\"bd3-inner-shadow-down\", '\\uee28'),\n    INNER_SHADOW_LEFT(\"bd3-inner-shadow-left\", '\\uee29'),\n    INNER_SHADOW_RIGHT(\"bd3-inner-shadow-right\", '\\uee2a'),\n    INNER_SHADOW_TOP_LEFT(\"bd3-inner-shadow-top-left\", '\\uee2b'),\n    INNER_SHADOW_TOP_RIGHT(\"bd3-inner-shadow-top-right\", '\\uee2c'),\n    INNER_SHADOW_UP(\"bd3-inner-shadow-up\", '\\uee2d'),\n    INSERT_CARD(\"bd3-insert-card\", '\\uee2e'),\n    INSERT_TABLE(\"bd3-insert-table\", '\\uee2f'),\n    INSPECTION(\"bd3-inspection\", '\\uee30'),\n    INSTAGRAM(\"bd3-instagram\", '\\uee31'),\n    INSTAGRAM_ONE(\"bd3-instagram-one\", '\\uee32'),\n    INSTALL(\"bd3-install\", '\\uee33'),\n    INSTRUCTION(\"bd3-instruction\", '\\uee34'),\n    INTERCOM(\"bd3-intercom\", '\\uee35'),\n    INTERMEDIATE_MODE(\"bd3-intermediate-mode\", '\\uee36'),\n    INTERNAL_DATA(\"bd3-internal-data\", '\\uee37'),\n    INTERNAL_EXPANSION(\"bd3-internal-expansion\", '\\uee38'),\n    INTERNAL_REDUCTION(\"bd3-internal-reduction\", '\\uee39'),\n    INTERNAL_TRANSMISSION(\"bd3-internal-transmission\", '\\uee3a'),\n    INTERNATIONAL(\"bd3-international\", '\\uee3b'),\n    INTERSECTION(\"bd3-intersection\", '\\uee3c'),\n    INTERSECT_SELECTION(\"bd3-intersect-selection\", '\\uee3d'),\n    INVALID_FILES(\"bd3-invalid-files\", '\\uee3e'),\n    INVERT_CAMERA(\"bd3-invert-camera\", '\\uee3f'),\n    INVERT_LEFT(\"bd3-invert-left\", '\\uee40'),\n    INVERT_RIGHT(\"bd3-invert-right\", '\\uee41'),\n    IOS_FACE_RECOGNITION(\"bd3-ios-face-recognition\", '\\uee42'),\n    IPAD(\"bd3-ipad\", '\\uee43'),\n    IPAD_ONE(\"bd3-ipad-one\", '\\uee44'),\n    IPHONE(\"bd3-iphone\", '\\uee45'),\n    IPO(\"bd3-ipo\", '\\uee46'),\n    IRON(\"bd3-iron\", '\\uee47'),\n    IRON_DISABLE(\"bd3-iron-disable\", '\\uee48'),\n    IRON_THREE(\"bd3-iron-three\", '\\uee49'),\n    IRON_TWO(\"bd3-iron-two\", '\\uee4a'),\n    IWATCH(\"bd3-iwatch\", '\\uee4b'),\n    IWATCH_ONE(\"bd3-iwatch-one\", '\\uee4c'),\n    IWATCH_TWO(\"bd3-iwatch-two\", '\\uee4d'),\n    JEWELRY(\"bd3-jewelry\", '\\uee4e'),\n    JINRITOUTIAO(\"bd3-jinritoutiao\", '\\uee4f'),\n    JOURNEY(\"bd3-journey\", '\\uee50'),\n    JOYSTICK(\"bd3-joystick\", '\\uee51'),\n    JUICE(\"bd3-juice\", '\\uee52'),\n    JUMP(\"bd3-jump\", '\\uee53'),\n    KAGI_MAP(\"bd3-kagi-map\", '\\uee54'),\n    KETTLE(\"bd3-kettle\", '\\uee55'),\n    KETTLE_ONE(\"bd3-kettle-one\", '\\uee56'),\n    KEY(\"bd3-key\", '\\uee57'),\n    KEYBOARD(\"bd3-keyboard\", '\\uee58'),\n    KEYBOARD_ONE(\"bd3-keyboard-one\", '\\uee59'),\n    KEYHOLE(\"bd3-keyhole\", '\\uee5a'),\n    KEYLINE(\"bd3-keyline\", '\\uee5b'),\n    KEY_ONE(\"bd3-key-one\", '\\uee5c'),\n    KEY_TWO(\"bd3-key-two\", '\\uee5d'),\n    KITCHEN_KNIFE(\"bd3-kitchen-knife\", '\\uee5e'),\n    KNIFE_FORK(\"bd3-knife-fork\", '\\uee5f'),\n    KOALA_BEAR(\"bd3-koala-bear\", '\\uee60'),\n    KUNGFU(\"bd3-kungfu\", '\\uee61'),\n    LABEL(\"bd3-label\", '\\uee62'),\n    LADDER(\"bd3-ladder\", '\\uee63'),\n    LADDER_ONE(\"bd3-ladder-one\", '\\uee64'),\n    LAMP(\"bd3-lamp\", '\\uee65'),\n    LANDING(\"bd3-landing\", '\\uee66'),\n    LANDSCAPE(\"bd3-landscape\", '\\uee67'),\n    LAND_SURVEYING(\"bd3-land-surveying\", '\\uee68'),\n    LAPTOP(\"bd3-laptop\", '\\uee69'),\n    LAPTOP_COMPUTER(\"bd3-laptop-computer\", '\\uee6a'),\n    LAPTOP_ONE(\"bd3-laptop-one\", '\\uee6b'),\n    LARK(\"bd3-lark\", '\\uee6c'),\n    LARK_ONE(\"bd3-lark-one\", '\\uee6d'),\n    LATTICE_PATTERN(\"bd3-lattice-pattern\", '\\uee6e'),\n    LAYERS(\"bd3-layers\", '\\uee6f'),\n    LAYOUT_FIVE(\"bd3-layout-five\", '\\uee70'),\n    LAYOUT_FOUR(\"bd3-layout-four\", '\\uee71'),\n    LAYOUT_ONE(\"bd3-layout-one\", '\\uee72'),\n    LAYOUT_THREE(\"bd3-layout-three\", '\\uee73'),\n    LAYOUT_TWO(\"bd3-layout-two\", '\\uee74'),\n    LEAF(\"bd3-leaf\", '\\uee75'),\n    LEAVES(\"bd3-leaves\", '\\uee76'),\n    LEAVES_ONE(\"bd3-leaves-one\", '\\uee77'),\n    LEAVES_TWO(\"bd3-leaves-two\", '\\uee78'),\n    LED_DIODE(\"bd3-led-diode\", '\\uee79'),\n    LEFT(\"bd3-left\", '\\uee7a'),\n    LEFT_ALIGNMENT(\"bd3-left-alignment\", '\\uee7b'),\n    LEFT_AND_RIGHT_BRANCH(\"bd3-left-and-right-branch\", '\\uee7c'),\n    LEFT_BAR(\"bd3-left-bar\", '\\uee7d'),\n    LEFT_BRANCH(\"bd3-left-branch\", '\\uee7e'),\n    LEFT_C(\"bd3-left-c\", '\\uee7f'),\n    LEFT_EXPAND(\"bd3-left-expand\", '\\uee80'),\n    LEFT_ONE(\"bd3-left-one\", '\\uee81'),\n    LEFT_SMALL(\"bd3-left-small\", '\\uee82'),\n    LEFT_SMALL_DOWN(\"bd3-left-small-down\", '\\uee83'),\n    LEFT_SMALL_UP(\"bd3-left-small-up\", '\\uee84'),\n    LEFT_SQUARE(\"bd3-left-square\", '\\uee85'),\n    LEFT_TWO(\"bd3-left-two\", '\\uee86'),\n    LEMON(\"bd3-lemon\", '\\uee87'),\n    LENS_ALIGNMENT(\"bd3-lens-alignment\", '\\uee88'),\n    LEO(\"bd3-leo\", '\\uee89'),\n    LEVEL(\"bd3-level\", '\\uee8a'),\n    LEVEL_ADJUSTMENT(\"bd3-level-adjustment\", '\\uee8b'),\n    LEVEL_EIGHT_TITLE(\"bd3-level-eight-title\", '\\uee8c'),\n    LEVEL_FIVE_TITLE(\"bd3-level-five-title\", '\\uee8d'),\n    LEVEL_FOUR_TITLE(\"bd3-level-four-title\", '\\uee8e'),\n    LEVEL_NINE_TITLE(\"bd3-level-nine-title\", '\\uee8f'),\n    LEVEL_SEVEN_TITLE(\"bd3-level-seven-title\", '\\uee90'),\n    LEVEL_SIX_TITLE(\"bd3-level-six-title\", '\\uee91'),\n    LIBRA(\"bd3-libra\", '\\uee92'),\n    LIFEBUOY(\"bd3-lifebuoy\", '\\uee93'),\n    LIGHT(\"bd3-light\", '\\uee94'),\n    LIGHT_HOUSE(\"bd3-light-house\", '\\uee95'),\n    LIGHT_MEMBER(\"bd3-light-member\", '\\uee96'),\n    LIGHTNING(\"bd3-lightning\", '\\uee97'),\n    LIGHT_RAIN(\"bd3-light-rain\", '\\uee98'),\n    LIKE(\"bd3-like\", '\\uee99'),\n    LINCOLN(\"bd3-lincoln\", '\\uee9a'),\n    LINK(\"bd3-link\", '\\uee9b'),\n    LINK_BREAK(\"bd3-link-break\", '\\uee9c'),\n    LINK_CLOUD(\"bd3-link-cloud\", '\\uee9d'),\n    LINK_CLOUD_FAILD(\"bd3-link-cloud-faild\", '\\uee9e'),\n    LINK_CLOUD_SUCESS(\"bd3-link-cloud-sucess\", '\\uee9f'),\n    LINK_FOUR(\"bd3-link-four\", '\\ueea0'),\n    LINK_IN(\"bd3-link-in\", '\\ueea1'),\n    LINK_INTERRUPT(\"bd3-link-interrupt\", '\\ueea2'),\n    LINK_LEFT(\"bd3-link-left\", '\\ueea3'),\n    LINK_ONE(\"bd3-link-one\", '\\ueea4'),\n    LINK_OUT(\"bd3-link-out\", '\\ueea5'),\n    LINK_RIGHT(\"bd3-link-right\", '\\ueea6'),\n    LINK_THREE(\"bd3-link-three\", '\\ueea7'),\n    LINK_TWO(\"bd3-link-two\", '\\ueea8'),\n    LIP_GLOSS(\"bd3-lip-gloss\", '\\ueea9'),\n    LIPSTICK(\"bd3-lipstick\", '\\ueeaa'),\n    LIPSTICK_ONE(\"bd3-lipstick-one\", '\\ueeab'),\n    LIP_TATTOO(\"bd3-lip-tattoo\", '\\ueeac'),\n    LIQUEUR(\"bd3-liqueur\", '\\ueead'),\n    LIST(\"bd3-list\", '\\ueeae'),\n    LIST_ADD(\"bd3-list-add\", '\\ueeaf'),\n    LIST_ALPHABET(\"bd3-list-alphabet\", '\\ueeb0'),\n    LIST_BOTTOM(\"bd3-list-bottom\", '\\ueeb1'),\n    LIST_CHECKBOX(\"bd3-list-checkbox\", '\\ueeb2'),\n    LIST_FAIL(\"bd3-list-fail\", '\\ueeb3'),\n    LIST_MIDDLE(\"bd3-list-middle\", '\\ueeb4'),\n    LIST_NUMBERS(\"bd3-list-numbers\", '\\ueeb5'),\n    LIST_ONE(\"bd3-list-one\", '\\ueeb6'),\n    LIST_SUCCESS(\"bd3-list-success\", '\\ueeb7'),\n    LIST_TOP(\"bd3-list-top\", '\\ueeb8'),\n    LIST_TWO(\"bd3-list-two\", '\\ueeb9'),\n    LIST_VIEW(\"bd3-list-view\", '\\ueeba'),\n    LOADING(\"bd3-loading\", '\\ueebb'),\n    LOADING_FOUR(\"bd3-loading-four\", '\\ueebc'),\n    LOADING_ONE(\"bd3-loading-one\", '\\ueebd'),\n    LOADING_THREE(\"bd3-loading-three\", '\\ueebe'),\n    LOADING_TWO(\"bd3-loading-two\", '\\ueebf'),\n    LOCAL(\"bd3-local\", '\\ueec0'),\n    LOCAL_PIN(\"bd3-local-pin\", '\\ueec1'),\n    LOCAL_TWO(\"bd3-local-two\", '\\ueec2'),\n    LOCK(\"bd3-lock\", '\\ueec3'),\n    LOCKING_COMPUTER(\"bd3-locking-computer\", '\\ueec4'),\n    LOCKING_LAPTOP(\"bd3-locking-laptop\", '\\ueec5'),\n    LOCKING_PICTURE(\"bd3-locking-picture\", '\\ueec6'),\n    LOCKING_WEB(\"bd3-locking-web\", '\\ueec7'),\n    LOCK_ONE(\"bd3-lock-one\", '\\ueec8'),\n    LOG(\"bd3-log\", '\\ueec9'),\n    LOGIN(\"bd3-login\", '\\ueeca'),\n    LOGOUT(\"bd3-logout\", '\\ueecb'),\n    LOLLIPOP(\"bd3-lollipop\", '\\ueecc'),\n    LOOP_ONCE(\"bd3-loop-once\", '\\ueecd'),\n    LOTION(\"bd3-lotion\", '\\ueece'),\n    LOTUS(\"bd3-lotus\", '\\ueecf'),\n    LOUDLY_CRYING_FACE(\"bd3-loudly-crying-face\", '\\ueed0'),\n    LOUDLY_CRYING_FACE_WHIT_OPEN_MOUTH(\"bd3-loudly-crying-face-whit-open-mouth\", '\\ueed1'),\n    LOVE_AND_HELP(\"bd3-love-and-help\", '\\ueed2'),\n    LOWER_BRANCH(\"bd3-lower-branch\", '\\ueed3'),\n    LUGGAGE(\"bd3-luggage\", '\\ueed4'),\n    LUMINOUS(\"bd3-luminous\", '\\ueed5'),\n    LUNG(\"bd3-lung\", '\\ueed6');\n\n    public static BytedanceIconsBoldAL findByDescription(String description) {\n        for (BytedanceIconsBoldAL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    BytedanceIconsBoldAL(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsBoldALIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author LeeWyatt\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BytedanceIconsBoldALIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/bytedance/1.3.0/fonts/Bytedance-IconPack-Bold.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bd3-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return BytedanceIconsBoldAL.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Bytedance-IconPack-Bold\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsBoldALIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author LeeWyatt\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class BytedanceIconsBoldALIkonProvider implements IkonProvider<BytedanceIconsBoldAL> {\n    @Override\n    public Class<BytedanceIconsBoldAL> getIkon() {\n        return BytedanceIconsBoldAL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsBoldMZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author LeeWyatt\n */\npublic enum BytedanceIconsBoldMZ implements Ikon {\n    MACADAMIA_NUT(\"bd3-macadamia-nut\", '\\ueed7'),\n    MAC_FINDER(\"bd3-mac-finder\", '\\ueed8'),\n    MAGIC(\"bd3-magic\", '\\ueed9'),\n    MAGIC_HAT(\"bd3-magic-hat\", '\\ueeda'),\n    MAGIC_WAND(\"bd3-magic-wand\", '\\ueedb'),\n    MAGNET(\"bd3-magnet\", '\\ueedc'),\n    MAIL(\"bd3-mail\", '\\ueedd'),\n    MAIL_DOWNLOAD(\"bd3-mail-download\", '\\ueede'),\n    MAIL_EDIT(\"bd3-mail-edit\", '\\ueedf'),\n    MAILL_ONE(\"bd3-maill-one\", '\\ueee0'),\n    MAIL_OPEN(\"bd3-mail-open\", '\\ueee1'),\n    MAIL_PACKAGE(\"bd3-mail-package\", '\\ueee2'),\n    MAIL_REVIEW(\"bd3-mail-review\", '\\ueee3'),\n    MAIL_UNPACKING(\"bd3-mail-unpacking\", '\\ueee4'),\n    MAKEUPS(\"bd3-makeups\", '\\ueee5'),\n    MALE(\"bd3-male\", '\\ueee6'),\n    MALL_BAG(\"bd3-mall-bag\", '\\ueee7'),\n    MANUAL_GEAR(\"bd3-manual-gear\", '\\ueee8'),\n    MANY_TO_MANY(\"bd3-many-to-many\", '\\ueee9'),\n    MAP_DISTANCE(\"bd3-map-distance\", '\\ueeea'),\n    MAP_DRAW(\"bd3-map-draw\", '\\ueeeb'),\n    MAP_ROAD(\"bd3-map-road\", '\\ueeec'),\n    MAP_ROAD_TWO(\"bd3-map-road-two\", '\\ueeed'),\n    MAP_TWO(\"bd3-map-two\", '\\ueeee'),\n    MARGIN(\"bd3-margin\", '\\ueeef'),\n    MARGIN_ONE(\"bd3-margin-one\", '\\ueef0'),\n    MARK(\"bd3-mark\", '\\ueef1'),\n    MARKET(\"bd3-market\", '\\ueef2'),\n    MARKET_ANALYSIS(\"bd3-market-analysis\", '\\ueef3'),\n    MASCARA(\"bd3-mascara\", '\\ueef4'),\n    MASK(\"bd3-mask\", '\\ueef5'),\n    MASK_ONE(\"bd3-mask-one\", '\\ueef6'),\n    MASK_TWO(\"bd3-mask-two\", '\\ueef7'),\n    MASLOW_PYRAMIDS(\"bd3-maslow-pyramids\", '\\ueef8'),\n    MASSAGE_CHAIR(\"bd3-massage-chair\", '\\ueef9'),\n    MASSAGE_CHAIR_ONE(\"bd3-massage-chair-one\", '\\ueefa'),\n    MASSAGE_TABLE(\"bd3-massage-table\", '\\ueefb'),\n    MASTER(\"bd3-master\", '\\ueefc'),\n    MATERIAL(\"bd3-material\", '\\ueefd'),\n    MATERIAL_THREE(\"bd3-material-three\", '\\ueefe'),\n    MATERIAL_TWO(\"bd3-material-two\", '\\ueeff'),\n    MAXIMUM(\"bd3-maximum\", '\\uef00'),\n    MAYA(\"bd3-maya\", '\\uef01'),\n    MAYURA_GESTURE(\"bd3-mayura-gesture\", '\\uef02'),\n    ME(\"bd3-me\", '\\uef03'),\n    MEASURING_CUP(\"bd3-measuring-cup\", '\\uef04'),\n    MEDAL_ONE(\"bd3-medal-one\", '\\uef05'),\n    MEDIAEDITOR(\"bd3-mediaeditor\", '\\uef06'),\n    MEDICAL_BOX(\"bd3-medical-box\", '\\uef07'),\n    MEDICAL_FILES(\"bd3-medical-files\", '\\uef08'),\n    MEDICAL_MARK(\"bd3-medical-mark\", '\\uef09'),\n    MEDICATION_TIME(\"bd3-medication-time\", '\\uef0a'),\n    MEDICINE_BOTTLE(\"bd3-medicine-bottle\", '\\uef0b'),\n    MEDICINE_BOTTLE_ONE(\"bd3-medicine-bottle-one\", '\\uef0c'),\n    MEDICINE_CHEST(\"bd3-medicine-chest\", '\\uef0d'),\n    MEMORY(\"bd3-memory\", '\\uef0e'),\n    MEMORY_CARD(\"bd3-memory-card\", '\\uef0f'),\n    MEMORY_CARD_ONE(\"bd3-memory-card-one\", '\\uef10'),\n    MEMORY_ONE(\"bd3-memory-one\", '\\uef11'),\n    MEN_JACKET(\"bd3-men-jacket\", '\\uef12'),\n    MENU_FOLD(\"bd3-menu-fold\", '\\uef13'),\n    MENU_FOLD_ONE(\"bd3-menu-fold-one\", '\\uef14'),\n    MENU_UNFOLD(\"bd3-menu-unfold\", '\\uef15'),\n    MENU_UNFOLD_ONE(\"bd3-menu-unfold-one\", '\\uef16'),\n    MERGE(\"bd3-merge\", '\\uef17'),\n    MERGE_CELLS(\"bd3-merge-cells\", '\\uef18'),\n    MESSAGE(\"bd3-message\", '\\uef19'),\n    MESSAGE_EMOJI(\"bd3-message-emoji\", '\\uef1a'),\n    MESSAGE_FAILED(\"bd3-message-failed\", '\\uef1b'),\n    MESSAGE_ONE(\"bd3-message-one\", '\\uef1c'),\n    MESSAGE_PRIVACY(\"bd3-message-privacy\", '\\uef1d'),\n    MESSAGES(\"bd3-messages\", '\\uef1e'),\n    MESSAGE_SEARCH(\"bd3-message-search\", '\\uef1f'),\n    MESSAGE_SECURITY(\"bd3-message-security\", '\\uef20'),\n    MESSAGE_SENT(\"bd3-message-sent\", '\\uef21'),\n    MESSAGES_ONE(\"bd3-messages-one\", '\\uef22'),\n    MESSAGE_SUCCESS(\"bd3-message-success\", '\\uef23'),\n    MESSAGE_UNREAD(\"bd3-message-unread\", '\\uef24'),\n    MICROPHONE(\"bd3-microphone\", '\\uef25'),\n    MICROPHONE_ONE(\"bd3-microphone-one\", '\\uef26'),\n    MICROSCOPE(\"bd3-microscope\", '\\uef27'),\n    MICROSCOPE_ONE(\"bd3-microscope-one\", '\\uef28'),\n    MICRO_SD(\"bd3-micro-sd\", '\\uef29'),\n    MICRO_SLR_CAMERA(\"bd3-micro-slr-camera\", '\\uef2a'),\n    MICROWAVE_OVEN(\"bd3-microwave-oven\", '\\uef2b'),\n    MICROWAVES(\"bd3-microwaves\", '\\uef2c'),\n    MIDDLE_FINGER(\"bd3-middle-finger\", '\\uef2d'),\n    MILK(\"bd3-milk\", '\\uef2e'),\n    MILK_ONE(\"bd3-milk-one\", '\\uef2f'),\n    MIN(\"bd3-min\", '\\uef30'),\n    MINDMAP_LIST(\"bd3-mindmap-list\", '\\uef31'),\n    MINDMAP_MAP(\"bd3-mindmap-map\", '\\uef32'),\n    MIND_MAPPING(\"bd3-mind-mapping\", '\\uef33'),\n    MINI_SD_CARD(\"bd3-mini-sd-card\", '\\uef34'),\n    MINUS(\"bd3-minus\", '\\uef35'),\n    MINUS_THE_BOTTOM(\"bd3-minus-the-bottom\", '\\uef36'),\n    MINUS_THE_TOP(\"bd3-minus-the-top\", '\\uef37'),\n    MIRROR(\"bd3-mirror\", '\\uef38'),\n    MIRROR_ONE(\"bd3-mirror-one\", '\\uef39'),\n    MIRROR_TWO(\"bd3-mirror-two\", '\\uef3a'),\n    MISALIGNED_SEMICIRCLE(\"bd3-misaligned-semicircle\", '\\uef3b'),\n    MITSUBISHI(\"bd3-mitsubishi\", '\\uef3c'),\n    MODIFY(\"bd3-modify\", '\\uef3d'),\n    MODIFY_TWO(\"bd3-modify-two\", '\\uef3e'),\n    MONITOR(\"bd3-monitor\", '\\uef3f'),\n    MONITOR_CAMERA(\"bd3-monitor-camera\", '\\uef40'),\n    MONITOR_OFF(\"bd3-monitor-off\", '\\uef41'),\n    MONITOR_ONE(\"bd3-monitor-one\", '\\uef42'),\n    MONITOR_TWO(\"bd3-monitor-two\", '\\uef43'),\n    MONKEY(\"bd3-monkey\", '\\uef44'),\n    MONKEY_ZODIAC(\"bd3-monkey-zodiac\", '\\uef45'),\n    MONUMENT_ONE(\"bd3-monument-one\", '\\uef46'),\n    MONUMENT_TWO(\"bd3-monument-two\", '\\uef47'),\n    MOON(\"bd3-moon\", '\\uef48'),\n    MORE(\"bd3-more\", '\\uef49'),\n    MORE_APP(\"bd3-more-app\", '\\uef4a'),\n    MORE_FOUR(\"bd3-more-four\", '\\uef4b'),\n    MORE_ONE(\"bd3-more-one\", '\\uef4c'),\n    MORE_THREE(\"bd3-more-three\", '\\uef4d'),\n    MORE_TWO(\"bd3-more-two\", '\\uef4e'),\n    MOSAIC(\"bd3-mosaic\", '\\uef4f'),\n    MOUNTAIN(\"bd3-mountain\", '\\uef50'),\n    MOUNTED(\"bd3-mounted\", '\\uef51'),\n    MOUSE(\"bd3-mouse\", '\\uef52'),\n    MOUSE_ONE(\"bd3-mouse-one\", '\\uef53'),\n    MOUSE_ZODIAC(\"bd3-mouse-zodiac\", '\\uef54'),\n    MOUTH(\"bd3-mouth\", '\\uef55'),\n    MOVE(\"bd3-move\", '\\uef56'),\n    MOVE_IN(\"bd3-move-in\", '\\uef57'),\n    MOVE_IN_ONE(\"bd3-move-in-one\", '\\uef58'),\n    MOVE_ONE(\"bd3-move-one\", '\\uef59'),\n    MOVIE(\"bd3-movie\", '\\uef5a'),\n    MOVIE_BOARD(\"bd3-movie-board\", '\\uef5b'),\n    MOVING_PICTURE(\"bd3-moving-picture\", '\\uef5c'),\n    MULTICAST(\"bd3-multicast\", '\\uef5d'),\n    MULTI_CIRCULAR(\"bd3-multi-circular\", '\\uef5e'),\n    MULTI_FUNCTION_KNIFE(\"bd3-multi-function-knife\", '\\uef5f'),\n    MULTILAYER_SPHERE(\"bd3-multilayer-sphere\", '\\uef60'),\n    MULTI_PICTURE_CAROUSEL(\"bd3-multi-picture-carousel\", '\\uef61'),\n    MULTI_RECTANGLE(\"bd3-multi-rectangle\", '\\uef62'),\n    MULTI_RING(\"bd3-multi-ring\", '\\uef63'),\n    MULTI_TRIANGULAR(\"bd3-multi-triangular\", '\\uef64'),\n    MULTI_TRIANGULAR_FOUR(\"bd3-multi-triangular-four\", '\\uef65'),\n    MULTI_TRIANGULAR_THREE(\"bd3-multi-triangular-three\", '\\uef66'),\n    MULTI_TRIANGULAR_TWO(\"bd3-multi-triangular-two\", '\\uef67'),\n    MUSCLE(\"bd3-muscle\", '\\uef68'),\n    MUSEUM_ONE(\"bd3-museum-one\", '\\uef69'),\n    MUSEUM_TWO(\"bd3-museum-two\", '\\uef6a'),\n    MUSIC(\"bd3-music\", '\\uef6b'),\n    MUSIC_CD(\"bd3-music-cd\", '\\uef6c'),\n    MUSIC_LIST(\"bd3-music-list\", '\\uef6d'),\n    MUSIC_MENU(\"bd3-music-menu\", '\\uef6e'),\n    MUSIC_ONE(\"bd3-music-one\", '\\uef6f'),\n    MUSIC_RHYTHM(\"bd3-music-rhythm\", '\\uef70'),\n    MUTE(\"bd3-mute\", '\\uef71'),\n    NAIL_POLISH(\"bd3-nail-polish\", '\\uef72'),\n    NAIL_POLISH_ONE(\"bd3-nail-polish-one\", '\\uef73'),\n    NASAL(\"bd3-nasal\", '\\uef74'),\n    NATURAL_MODE(\"bd3-natural-mode\", '\\uef75'),\n    NAVIGATION(\"bd3-navigation\", '\\uef76'),\n    NECKTIE(\"bd3-necktie\", '\\uef77'),\n    NEEDLE(\"bd3-needle\", '\\uef78'),\n    NEGATIVE_DYNAMICS(\"bd3-negative-dynamics\", '\\uef79'),\n    NESTED_ARROWS(\"bd3-nested-arrows\", '\\uef7a'),\n    NESTS(\"bd3-nests\", '\\uef7b'),\n    NETWORK_DRIVE(\"bd3-network-drive\", '\\uef7c'),\n    NETWORK_TREE(\"bd3-network-tree\", '\\uef7d'),\n    NEURAL(\"bd3-neural\", '\\uef7e'),\n    NEUTRAL_FACE(\"bd3-neutral-face\", '\\uef7f'),\n    NEW_AFFERENT(\"bd3-new-afferent\", '\\uef80'),\n    NEW_COMPUTER(\"bd3-new-computer\", '\\uef81'),\n    NEW_DIANZIQIAN(\"bd3-new-dianziqian\", '\\uef82'),\n    NEW_EFFERENT(\"bd3-new-efferent\", '\\uef83'),\n    NEW_LARK(\"bd3-new-lark\", '\\uef84'),\n    NEWLYBUILD(\"bd3-newlybuild\", '\\uef85'),\n    NEW_PICTURE(\"bd3-new-picture\", '\\uef86'),\n    NEWSPAPER_FOLDING(\"bd3-newspaper-folding\", '\\uef87'),\n    NEXT(\"bd3-next\", '\\uef88'),\n    NINE_KEY(\"bd3-nine-key\", '\\uef89'),\n    NINE_POINTS_CONNECTED(\"bd3-nine-points-connected\", '\\uef8a'),\n    NINTENDO_SWITCH(\"bd3-nintendo-switch\", '\\uef8b'),\n    NMR(\"bd3-nmr\", '\\uef8c'),\n    NODE_FLAT(\"bd3-node-flat\", '\\uef8d'),\n    NODE_ROUND(\"bd3-node-round\", '\\uef8e'),\n    NODE_SQUARE(\"bd3-node-square\", '\\uef8f'),\n    NOODLES(\"bd3-noodles\", '\\uef90'),\n    NO_SHOOTING(\"bd3-no-shooting\", '\\uef91'),\n    NOTEBOOK(\"bd3-notebook\", '\\uef92'),\n    NOTEBOOK_AND_PEN(\"bd3-notebook-and-pen\", '\\uef93'),\n    NOTEBOOK_ONE(\"bd3-notebook-one\", '\\uef94'),\n    NOTEPAD(\"bd3-notepad\", '\\uef95'),\n    NOTES(\"bd3-notes\", '\\uef96'),\n    NUCLEAR_PLANT(\"bd3-nuclear-plant\", '\\uef97'),\n    NURSE_CAP(\"bd3-nurse-cap\", '\\uef98'),\n    NUT(\"bd3-nut\", '\\uef99'),\n    NUTRITION(\"bd3-nutrition\", '\\uef9a'),\n    OCEANENGINE(\"bd3-oceanengine\", '\\uef9b'),\n    OCTAGON(\"bd3-octagon\", '\\uef9c'),\n    OFF_SCREEN(\"bd3-off-screen\", '\\uef9d'),\n    OFF_SCREEN_ONE(\"bd3-off-screen-one\", '\\uef9e'),\n    OFF_SCREEN_TWO(\"bd3-off-screen-two\", '\\uef9f'),\n    OIL_INDUSTRY(\"bd3-oil-industry\", '\\uefa0'),\n    OKAY(\"bd3-okay\", '\\uefa1'),\n    ONE(\"bd3-one\", '\\uefa2'),\n    ONE_KEY(\"bd3-one-key\", '\\uefa3'),\n    ONE_ONE(\"bd3-one-one\", '\\uefa4'),\n    ONESIES(\"bd3-onesies\", '\\uefa5'),\n    ONE_THIRD_ROTATION(\"bd3-one-third-rotation\", '\\uefa6'),\n    ONE_TO_MANY(\"bd3-one-to-many\", '\\uefa7'),\n    ONE_TO_ONE(\"bd3-one-to-one\", '\\uefa8'),\n    ONLINE_MEETING(\"bd3-online-meeting\", '\\uefa9'),\n    OPEN(\"bd3-open\", '\\uefaa'),\n    OPEN_AN_ACCOUNT(\"bd3-open-an-account\", '\\uefab'),\n    OPEN_DOOR(\"bd3-open-door\", '\\uefac'),\n    OPEN_ONE(\"bd3-open-one\", '\\uefad'),\n    OPTIMIZE(\"bd3-optimize\", '\\uefae'),\n    OPTIONAL(\"bd3-optional\", '\\uefaf'),\n    ORANGE(\"bd3-orange\", '\\uefb0'),\n    ORANGE_ONE(\"bd3-orange-one\", '\\uefb1'),\n    ORANGE_STATION(\"bd3-orange-station\", '\\uefb2'),\n    ORDER(\"bd3-order\", '\\uefb3'),\n    ORDERED_LIST(\"bd3-ordered-list\", '\\uefb4'),\n    ORTHOPEDIC(\"bd3-orthopedic\", '\\uefb5'),\n    OSCILLATOR(\"bd3-oscillator\", '\\uefb6'),\n    OTHER(\"bd3-other\", '\\uefb7'),\n    OUTBOUND(\"bd3-outbound\", '\\uefb8'),\n    OUTDOOR(\"bd3-outdoor\", '\\uefb9'),\n    OUTGOING(\"bd3-outgoing\", '\\uefba'),\n    OVAL_LOVE(\"bd3-oval-love\", '\\uefbb'),\n    OVAL_LOVE_TWO(\"bd3-oval-love-two\", '\\uefbc'),\n    OVAL_ONE(\"bd3-oval-one\", '\\uefbd'),\n    OVEN(\"bd3-oven\", '\\uefbe'),\n    OVEN_TRAY(\"bd3-oven-tray\", '\\uefbf'),\n    OVERALL_REDUCTION(\"bd3-overall-reduction\", '\\uefc0'),\n    OWL(\"bd3-owl\", '\\uefc1'),\n    PACIFIER(\"bd3-pacifier\", '\\uefc2'),\n    PAD(\"bd3-pad\", '\\uefc3'),\n    PAGE(\"bd3-page\", '\\uefc4'),\n    PAGE_TEMPLATE(\"bd3-page-template\", '\\uefc5'),\n    PAGODA(\"bd3-pagoda\", '\\uefc6'),\n    PAINT(\"bd3-paint\", '\\uefc7'),\n    PAINTED_EGGSHELL(\"bd3-painted-eggshell\", '\\uefc8'),\n    PAINTED_SCREEN(\"bd3-painted-screen\", '\\uefc9'),\n    PALACE(\"bd3-palace\", '\\uefca'),\n    PALM(\"bd3-palm\", '\\uefcb'),\n    PANDA(\"bd3-panda\", '\\uefcc'),\n    PANGLE(\"bd3-pangle\", '\\uefcd'),\n    PANORAMA_HORIZONTAL(\"bd3-panorama-horizontal\", '\\uefce'),\n    PANTIES(\"bd3-panties\", '\\uefcf'),\n    PAPERCLIP(\"bd3-paperclip\", '\\uefd0'),\n    PAPER_MONEY(\"bd3-paper-money\", '\\uefd1'),\n    PAPER_MONEY_TWO(\"bd3-paper-money-two\", '\\uefd2'),\n    PAPER_SHIP(\"bd3-paper-ship\", '\\uefd3'),\n    PARABOLA(\"bd3-parabola\", '\\uefd4'),\n    PARACHUTE(\"bd3-parachute\", '\\uefd5'),\n    PARAGRAPH_ALPHABET(\"bd3-paragraph-alphabet\", '\\uefd6'),\n    PARAGRAPH_BREAK(\"bd3-paragraph-break\", '\\uefd7'),\n    PARAGRAPH_BREAK_TWO(\"bd3-paragraph-break-two\", '\\uefd8'),\n    PARAGRAPH_CUT(\"bd3-paragraph-cut\", '\\uefd9'),\n    PARAGRAPH_RECTANGLE(\"bd3-paragraph-rectangle\", '\\uefda'),\n    PARAGRAPH_ROUND(\"bd3-paragraph-round\", '\\uefdb'),\n    PARAGRAPH_TRIANGLE(\"bd3-paragraph-triangle\", '\\uefdc'),\n    PARAGRAPH_UNFOLD(\"bd3-paragraph-unfold\", '\\uefdd'),\n    PARALLEL_GATEWAY(\"bd3-parallel-gateway\", '\\uefde'),\n    PARALLELOGRAM(\"bd3-parallelogram\", '\\uefdf'),\n    PARENTING_BOOK(\"bd3-parenting-book\", '\\uefe0'),\n    PARKING(\"bd3-parking\", '\\uefe1'),\n    PARTY_BALLOON(\"bd3-party-balloon\", '\\uefe2'),\n    PASSPORT(\"bd3-passport\", '\\uefe3'),\n    PASSPORT_ONE(\"bd3-passport-one\", '\\uefe4'),\n    PAUSE(\"bd3-pause\", '\\uefe5'),\n    PAUSE_ONE(\"bd3-pause-one\", '\\uefe6'),\n    PAY_CODE(\"bd3-pay-code\", '\\uefe7'),\n    PAY_CODE_ONE(\"bd3-pay-code-one\", '\\uefe8'),\n    PAY_CODE_TWO(\"bd3-pay-code-two\", '\\uefe9'),\n    PAYMENT_METHOD(\"bd3-payment-method\", '\\uefea'),\n    PAYPAL(\"bd3-paypal\", '\\uefeb'),\n    PEACH(\"bd3-peach\", '\\uefec'),\n    PEAR(\"bd3-pear\", '\\uefed'),\n    PEARL_OF_THE_ORIENT(\"bd3-pearl-of-the-orient\", '\\uefee'),\n    PEAS(\"bd3-peas\", '\\uefef'),\n    PENCIL(\"bd3-pencil\", '\\ueff0'),\n    PENNANT(\"bd3-pennant\", '\\ueff1'),\n    PENTAGON_ONE(\"bd3-pentagon-one\", '\\ueff2'),\n    PEOPLE(\"bd3-people\", '\\ueff3'),\n    PEOPLE_BOTTOM(\"bd3-people-bottom\", '\\ueff4'),\n    PEOPLE_BOTTOM_CARD(\"bd3-people-bottom-card\", '\\ueff5'),\n    PEOPLE_DELETE(\"bd3-people-delete\", '\\ueff6'),\n    PEOPLE_DELETE_ONE(\"bd3-people-delete-one\", '\\ueff7'),\n    PEOPLE_DOWNLOAD(\"bd3-people-download\", '\\ueff8'),\n    PEOPLE_LEFT(\"bd3-people-left\", '\\ueff9'),\n    PEOPLE_MINUS(\"bd3-people-minus\", '\\ueffa'),\n    PEOPLE_MINUS_ONE(\"bd3-people-minus-one\", '\\ueffb'),\n    PEOPLE_PLUS(\"bd3-people-plus\", '\\ueffc'),\n    PEOPLE_PLUS_ONE(\"bd3-people-plus-one\", '\\ueffd'),\n    PEOPLE_RIGHT(\"bd3-people-right\", '\\ueffe'),\n    PEOPLES(\"bd3-peoples\", '\\uefff'),\n    PEOPLE_SAFE(\"bd3-people-safe\", '\\uf000'),\n    PEOPLE_SAFE_ONE(\"bd3-people-safe-one\", '\\uf001'),\n    PEOPLE_SEARCH(\"bd3-people-search\", '\\uf002'),\n    PEOPLE_SEARCH_ONE(\"bd3-people-search-one\", '\\uf003'),\n    PEOPLE_SPEAK(\"bd3-people-speak\", '\\uf004'),\n    PEOPLES_TWO(\"bd3-peoples-two\", '\\uf005'),\n    PEOPLE_TOP(\"bd3-people-top\", '\\uf006'),\n    PEOPLE_TOP_CARD(\"bd3-people-top-card\", '\\uf007'),\n    PEOPLE_UNKNOWN(\"bd3-people-unknown\", '\\uf008'),\n    PEOPLE_UPLOAD(\"bd3-people-upload\", '\\uf009'),\n    PERCENTAGE(\"bd3-percentage\", '\\uf00a'),\n    PERFORMANCE(\"bd3-performance\", '\\uf00b'),\n    PERFUME(\"bd3-perfume\", '\\uf00c'),\n    PERFUMER_BOTTLE(\"bd3-perfumer-bottle\", '\\uf00d'),\n    PERIOD(\"bd3-period\", '\\uf00e'),\n    PERMISSIONS(\"bd3-permissions\", '\\uf00f'),\n    PERSONAL_COLLECTION(\"bd3-personal-collection\", '\\uf010'),\n    PERSONAL_PRIVACY(\"bd3-personal-privacy\", '\\uf011'),\n    PERSPECTIVE(\"bd3-perspective\", '\\uf012'),\n    PESTICIDE(\"bd3-pesticide\", '\\uf013'),\n    PETROL(\"bd3-petrol\", '\\uf014'),\n    PHONE(\"bd3-phone\", '\\uf015'),\n    PHONE_BOOTH(\"bd3-phone-booth\", '\\uf016'),\n    PHONE_CALL(\"bd3-phone-call\", '\\uf017'),\n    PHONE_INCOMING(\"bd3-phone-incoming\", '\\uf018'),\n    PHONE_INCOMING_ONE(\"bd3-phone-incoming-one\", '\\uf019'),\n    PHONE_MISSED(\"bd3-phone-missed\", '\\uf01a'),\n    PHONE_OFF(\"bd3-phone-off\", '\\uf01b'),\n    PHONE_ONE(\"bd3-phone-one\", '\\uf01c'),\n    PHONE_OUTGOING(\"bd3-phone-outgoing\", '\\uf01d'),\n    PHONE_OUTGOING_ONE(\"bd3-phone-outgoing-one\", '\\uf01e'),\n    PHONE_TELEPHONE(\"bd3-phone-telephone\", '\\uf01f'),\n    PHONE_TWO(\"bd3-phone-two\", '\\uf020'),\n    PHONE_VIDEO_CALL(\"bd3-phone-video-call\", '\\uf021'),\n    PHONOGRAPH(\"bd3-phonograph\", '\\uf022'),\n    PHOTOGRAPH(\"bd3-photograph\", '\\uf023'),\n    PIANO(\"bd3-piano\", '\\uf024'),\n    PIC(\"bd3-pic\", '\\uf025'),\n    PIC_ONE(\"bd3-pic-one\", '\\uf026'),\n    PICTURE(\"bd3-picture\", '\\uf027'),\n    PICTURE_ALBUM(\"bd3-picture-album\", '\\uf028'),\n    PICTURE_ONE(\"bd3-picture-one\", '\\uf029'),\n    PIE(\"bd3-pie\", '\\uf02a'),\n    PIE_FIVE(\"bd3-pie-five\", '\\uf02b'),\n    PIE_FOUR(\"bd3-pie-four\", '\\uf02c'),\n    PIE_ONE(\"bd3-pie-one\", '\\uf02d'),\n    PIE_SEVEN(\"bd3-pie-seven\", '\\uf02e'),\n    PIE_SIX(\"bd3-pie-six\", '\\uf02f'),\n    PIE_THREE(\"bd3-pie-three\", '\\uf030'),\n    PIE_TWO(\"bd3-pie-two\", '\\uf031'),\n    PIG(\"bd3-pig\", '\\uf032'),\n    PIGEON(\"bd3-pigeon\", '\\uf033'),\n    PIG_ZODIAC(\"bd3-pig-zodiac\", '\\uf034'),\n    PILL(\"bd3-pill\", '\\uf035'),\n    PILLS(\"bd3-pills\", '\\uf036'),\n    PIN(\"bd3-pin\", '\\uf037'),\n    PINEAPPLE(\"bd3-pineapple\", '\\uf038'),\n    PINWHEEL(\"bd3-pinwheel\", '\\uf039'),\n    PISCES(\"bd3-pisces\", '\\uf03a'),\n    PIVOT_TABLE(\"bd3-pivot-table\", '\\uf03b'),\n    PLAN(\"bd3-plan\", '\\uf03c'),\n    PLANET(\"bd3-planet\", '\\uf03d'),\n    PLASTIC_SURGERY(\"bd3-plastic-surgery\", '\\uf03e'),\n    PLATTE(\"bd3-platte\", '\\uf03f'),\n    PLAY(\"bd3-play\", '\\uf040'),\n    PLAYBACK_PROGRESS(\"bd3-playback-progress\", '\\uf041'),\n    PLAY_BASKETBALL(\"bd3-play-basketball\", '\\uf042'),\n    PLAY_CYCLE(\"bd3-play-cycle\", '\\uf043'),\n    PLAY_ONCE(\"bd3-play-once\", '\\uf044'),\n    PLAY_ONE(\"bd3-play-one\", '\\uf045'),\n    PLAY_TWO(\"bd3-play-two\", '\\uf046'),\n    PLAY_VOLLEYBALL(\"bd3-play-volleyball\", '\\uf047'),\n    PLAY_WRONG(\"bd3-play-wrong\", '\\uf048'),\n    PLUG(\"bd3-plug\", '\\uf049'),\n    PLUG_ONE(\"bd3-plug-one\", '\\uf04a'),\n    PLUS(\"bd3-plus\", '\\uf04b'),\n    PLUS_CROSS(\"bd3-plus-cross\", '\\uf04c'),\n    POINT(\"bd3-point\", '\\uf04d'),\n    POINT_OUT(\"bd3-point-out\", '\\uf04e'),\n    POKEBALL_ONE(\"bd3-pokeball-one\", '\\uf04f'),\n    POKER(\"bd3-poker\", '\\uf050'),\n    POPCORN(\"bd3-popcorn\", '\\uf051'),\n    POPCORN_ONE(\"bd3-popcorn-one\", '\\uf052'),\n    POSITIVE_DYNAMICS(\"bd3-positive-dynamics\", '\\uf053'),\n    POT(\"bd3-pot\", '\\uf054'),\n    POTENTIOMETER(\"bd3-potentiometer\", '\\uf055'),\n    POUND(\"bd3-pound\", '\\uf056'),\n    POUND_SIGN(\"bd3-pound-sign\", '\\uf057'),\n    POUTING_FACE(\"bd3-pouting-face\", '\\uf058'),\n    POWDER(\"bd3-powder\", '\\uf059'),\n    POWER(\"bd3-power\", '\\uf05a'),\n    POWERPOINT(\"bd3-powerpoint\", '\\uf05b'),\n    POWER_SUPPLY(\"bd3-power-supply\", '\\uf05c'),\n    POWER_SUPPLY_ONE(\"bd3-power-supply-one\", '\\uf05d'),\n    PPT(\"bd3-ppt\", '\\uf05e'),\n    PREGNANT_WOMEN(\"bd3-pregnant-women\", '\\uf05f'),\n    PRESCHOOL(\"bd3-preschool\", '\\uf060'),\n    PRESCRIPTION(\"bd3-prescription\", '\\uf061'),\n    PRESS(\"bd3-press\", '\\uf062'),\n    PREVIEW_CLOSE(\"bd3-preview-close\", '\\uf063'),\n    PREVIEW_CLOSE_ONE(\"bd3-preview-close-one\", '\\uf064'),\n    PREVIEW_OPEN(\"bd3-preview-open\", '\\uf065'),\n    PRINTER(\"bd3-printer\", '\\uf066'),\n    PRINTER_ONE(\"bd3-printer-one\", '\\uf067'),\n    PRINTER_TWO(\"bd3-printer-two\", '\\uf068'),\n    PRISON(\"bd3-prison\", '\\uf069'),\n    PROCESS_LINE(\"bd3-process-line\", '\\uf06a'),\n    PROJECTOR(\"bd3-projector\", '\\uf06b'),\n    PROJECTOR_ONE(\"bd3-projector-one\", '\\uf06c'),\n    PROJECTOR_THREE(\"bd3-projector-three\", '\\uf06d'),\n    PROJECTOR_TWO(\"bd3-projector-two\", '\\uf06e'),\n    PROPORTIONAL_SCALING(\"bd3-proportional-scaling\", '\\uf06f'),\n    PROTECT(\"bd3-protect\", '\\uf070'),\n    PROTECTION(\"bd3-protection\", '\\uf071'),\n    PUBLIC_TOILET(\"bd3-public-toilet\", '\\uf072'),\n    PULL_DOOR(\"bd3-pull-door\", '\\uf073'),\n    PULL_REQUESTS(\"bd3-pull-requests\", '\\uf074'),\n    PUMPKIN(\"bd3-pumpkin\", '\\uf075'),\n    PURE_NATURAL(\"bd3-pure-natural\", '\\uf076'),\n    PUSH_DOOR(\"bd3-push-door\", '\\uf077'),\n    PUSHPIN(\"bd3-pushpin\", '\\uf078'),\n    PUZZLE(\"bd3-puzzle\", '\\uf079'),\n    PYRAMID(\"bd3-pyramid\", '\\uf07a'),\n    PYRAMID_ONE(\"bd3-pyramid-one\", '\\uf07b'),\n    QINGNIAO_CLUE(\"bd3-qingniao-clue\", '\\uf07c'),\n    QIYEHAO(\"bd3-qiyehao\", '\\uf07d'),\n    QUADRANGULAR_PYRAMID(\"bd3-quadrangular-pyramid\", '\\uf07e'),\n    QUADRILATERAL(\"bd3-quadrilateral\", '\\uf07f'),\n    QUOTE(\"bd3-quote\", '\\uf080'),\n    RABBIT(\"bd3-rabbit\", '\\uf081'),\n    RABBIT_ZODIAC(\"bd3-rabbit-zodiac\", '\\uf082'),\n    RADAR(\"bd3-radar\", '\\uf083'),\n    RADAR_CHART(\"bd3-radar-chart\", '\\uf084'),\n    RADAR_THREE(\"bd3-radar-three\", '\\uf085'),\n    RADAR_TWO(\"bd3-radar-two\", '\\uf086'),\n    RADIATION(\"bd3-radiation\", '\\uf087'),\n    RADIO(\"bd3-radio\", '\\uf088'),\n    RADIO_NANNY(\"bd3-radio-nanny\", '\\uf089'),\n    RADIO_ONE(\"bd3-radio-one\", '\\uf08a'),\n    RADIO_TWO(\"bd3-radio-two\", '\\uf08b'),\n    RADISH(\"bd3-radish\", '\\uf08c'),\n    RADISH_ONE(\"bd3-radish-one\", '\\uf08d'),\n    RAILWAY(\"bd3-railway\", '\\uf08e'),\n    RANKING(\"bd3-ranking\", '\\uf08f'),\n    RANKING_LIST(\"bd3-ranking-list\", '\\uf090'),\n    RATTLE(\"bd3-rattle\", '\\uf091'),\n    RATTLE_ONE(\"bd3-rattle-one\", '\\uf092'),\n    RAZOR(\"bd3-razor\", '\\uf093'),\n    READ_BOOK(\"bd3-read-book\", '\\uf094'),\n    RECEIVE(\"bd3-receive\", '\\uf095'),\n    RECEIVER(\"bd3-receiver\", '\\uf096'),\n    RECENT_VIEWS_SORT(\"bd3-recent-views-sort\", '\\uf097'),\n    RECORD(\"bd3-record\", '\\uf098'),\n    RECORD_DISC(\"bd3-record-disc\", '\\uf099'),\n    RECORD_PLAYER(\"bd3-record-player\", '\\uf09a'),\n    RECTANGLE(\"bd3-rectangle\", '\\uf09b'),\n    RECTANGLE_ONE(\"bd3-rectangle-one\", '\\uf09c'),\n    RECTANGLE_SMALL(\"bd3-rectangle-small\", '\\uf09d'),\n    RECTANGLE_TEAR(\"bd3-rectangle-tear\", '\\uf09e'),\n    RECTANGLE_X(\"bd3-rectangle-x\", '\\uf09f'),\n    RECTANGULAR_CIRCULAR_CONNECTION(\"bd3-rectangular-circular-connection\", '\\uf0a0'),\n    RECTANGULAR_CIRCULAR_SEPARATION(\"bd3-rectangular-circular-separation\", '\\uf0a1'),\n    RECTANGULAR_VERTEBRA(\"bd3-rectangular-vertebra\", '\\uf0a2'),\n    RECYCLE_BIN(\"bd3-recycle-bin\", '\\uf0a3'),\n    RECYCLING(\"bd3-recycling\", '\\uf0a4'),\n    RECYCLING_POOL(\"bd3-recycling-pool\", '\\uf0a5'),\n    RED_CROSS(\"bd3-red-cross\", '\\uf0a6'),\n    RED_ENVELOPE(\"bd3-red-envelope\", '\\uf0a7'),\n    RED_ENVELOPES(\"bd3-red-envelopes\", '\\uf0a8'),\n    REDO(\"bd3-redo\", '\\uf0a9'),\n    REDUCE(\"bd3-reduce\", '\\uf0aa'),\n    REDUCE_DECIMAL_PLACES(\"bd3-reduce-decimal-places\", '\\uf0ab'),\n    REDUCE_ONE(\"bd3-reduce-one\", '\\uf0ac'),\n    REDUCE_TWO(\"bd3-reduce-two\", '\\uf0ad'),\n    REDUCE_USER(\"bd3-reduce-user\", '\\uf0ae'),\n    REEL(\"bd3-reel\", '\\uf0af'),\n    REFRACTION(\"bd3-refraction\", '\\uf0b0'),\n    REFRESH(\"bd3-refresh\", '\\uf0b1'),\n    REFRESH_ONE(\"bd3-refresh-one\", '\\uf0b2'),\n    REFRIGERATOR(\"bd3-refrigerator\", '\\uf0b3'),\n    REJECT(\"bd3-reject\", '\\uf0b4'),\n    RELATIONAL_GRAPH(\"bd3-relational-graph\", '\\uf0b5'),\n    RELIEVED_FACE(\"bd3-relieved-face\", '\\uf0b6'),\n    RELOAD(\"bd3-reload\", '\\uf0b7'),\n    REMIND(\"bd3-remind\", '\\uf0b8'),\n    REMIND_DISABLE(\"bd3-remind-disable\", '\\uf0b9'),\n    REMOTE_CONTROL(\"bd3-remote-control\", '\\uf0ba'),\n    REMOTE_CONTROL_ONE(\"bd3-remote-control-one\", '\\uf0bb'),\n    RENAL(\"bd3-renal\", '\\uf0bc'),\n    RENAULT(\"bd3-renault\", '\\uf0bd'),\n    REPAIR(\"bd3-repair\", '\\uf0be'),\n    REPLAY_FIVE(\"bd3-replay-five\", '\\uf0bf'),\n    REPLAY_MUSIC(\"bd3-replay-music\", '\\uf0c0'),\n    REPORT(\"bd3-report\", '\\uf0c1'),\n    REPOSITIONING(\"bd3-repositioning\", '\\uf0c2'),\n    RESISTOR(\"bd3-resistor\", '\\uf0c3'),\n    RESPECT(\"bd3-respect\", '\\uf0c4'),\n    RESTING(\"bd3-resting\", '\\uf0c5'),\n    RETRO_BAG(\"bd3-retro-bag\", '\\uf0c6'),\n    RETURN(\"bd3-return\", '\\uf0c7'),\n    REVERSE_LENS(\"bd3-reverse-lens\", '\\uf0c8'),\n    REVERSE_LENS_ONE(\"bd3-reverse-lens-one\", '\\uf0c9'),\n    REVERSE_OPERATION_IN(\"bd3-reverse-operation-in\", '\\uf0ca'),\n    REVERSE_OPERATION_OUT(\"bd3-reverse-operation-out\", '\\uf0cb'),\n    REVERSE_ROTATION(\"bd3-reverse-rotation\", '\\uf0cc'),\n    RICE(\"bd3-rice\", '\\uf0cd'),\n    RIDING(\"bd3-riding\", '\\uf0ce'),\n    RIDING_ONE(\"bd3-riding-one\", '\\uf0cf'),\n    RIGHT(\"bd3-right\", '\\uf0d0'),\n    RIGHT_ANGLE(\"bd3-right-angle\", '\\uf0d1'),\n    RIGHT_BAR(\"bd3-right-bar\", '\\uf0d2'),\n    RIGHT_BRANCH(\"bd3-right-branch\", '\\uf0d3'),\n    RIGHT_BRANCH_ONE(\"bd3-right-branch-one\", '\\uf0d4'),\n    RIGHT_BRANCH_TWO(\"bd3-right-branch-two\", '\\uf0d5'),\n    RIGHT_C(\"bd3-right-c\", '\\uf0d6'),\n    RIGHT_EXPAND(\"bd3-right-expand\", '\\uf0d7'),\n    RIGHT_ONE(\"bd3-right-one\", '\\uf0d8'),\n    RIGHT_RUN(\"bd3-right-run\", '\\uf0d9'),\n    RIGHT_SMALL(\"bd3-right-small\", '\\uf0da'),\n    RIGHT_SMALL_DOWN(\"bd3-right-small-down\", '\\uf0db'),\n    RIGHT_SMALL_UP(\"bd3-right-small-up\", '\\uf0dc'),\n    RIGHT_SQUARE(\"bd3-right-square\", '\\uf0dd'),\n    RIGHT_TWO(\"bd3-right-two\", '\\uf0de'),\n    RIGHT_USER(\"bd3-right-user\", '\\uf0df'),\n    RING(\"bd3-ring\", '\\uf0e0'),\n    RING_ONE(\"bd3-ring-one\", '\\uf0e1'),\n    RINGS(\"bd3-rings\", '\\uf0e2'),\n    RIPPLE(\"bd3-ripple\", '\\uf0e3'),\n    ROAD(\"bd3-road\", '\\uf0e4'),\n    ROAD_CONE(\"bd3-road-cone\", '\\uf0e5'),\n    ROAD_ONE(\"bd3-road-one\", '\\uf0e6'),\n    ROAD_SIGN(\"bd3-road-sign\", '\\uf0e7'),\n    ROAD_SIGN_BOTH(\"bd3-road-sign-both\", '\\uf0e8'),\n    ROBOT(\"bd3-robot\", '\\uf0e9'),\n    ROBOT_ONE(\"bd3-robot-one\", '\\uf0ea'),\n    ROBOT_TWO(\"bd3-robot-two\", '\\uf0eb'),\n    ROCK(\"bd3-rock\", '\\uf0ec'),\n    ROCKET(\"bd3-rocket\", '\\uf0ed'),\n    ROCKET_ONE(\"bd3-rocket-one\", '\\uf0ee'),\n    ROCK_GESTURE(\"bd3-rock-gesture\", '\\uf0ef'),\n    ROCKING_HORSE(\"bd3-rocking-horse\", '\\uf0f0'),\n    ROLLERSKATES(\"bd3-rollerskates\", '\\uf0f1'),\n    ROMPER(\"bd3-romper\", '\\uf0f2'),\n    ROPE_SKIPPING(\"bd3-rope-skipping\", '\\uf0f3'),\n    ROPE_SKIPPING_ONE(\"bd3-rope-skipping-one\", '\\uf0f4'),\n    ROTATE(\"bd3-rotate\", '\\uf0f5'),\n    ROTATE_ONE(\"bd3-rotate-one\", '\\uf0f6'),\n    ROTATING_ADD(\"bd3-rotating-add\", '\\uf0f7'),\n    ROTATING_FORWARD(\"bd3-rotating-forward\", '\\uf0f8'),\n    ROTATION(\"bd3-rotation\", '\\uf0f9'),\n    ROTATION_HORIZONTAL(\"bd3-rotation-horizontal\", '\\uf0fa'),\n    ROTATION_ONE(\"bd3-rotation-one\", '\\uf0fb'),\n    ROTATION_VERTICAL(\"bd3-rotation-vertical\", '\\uf0fc'),\n    ROUND(\"bd3-round\", '\\uf0fd'),\n    ROUND_CALIPER(\"bd3-round-caliper\", '\\uf0fe'),\n    ROUND_DISTORTION(\"bd3-round-distortion\", '\\uf0ff'),\n    ROUND_MASK(\"bd3-round-mask\", '\\uf100'),\n    ROUND_SOCKET(\"bd3-round-socket\", '\\uf101'),\n    ROUND_TRIP(\"bd3-round-trip\", '\\uf102'),\n    ROUTER(\"bd3-router\", '\\uf103'),\n    ROUTER_ONE(\"bd3-router-one\", '\\uf104'),\n    ROW_HEIGHT(\"bd3-row-height\", '\\uf105'),\n    ROWING(\"bd3-rowing\", '\\uf106'),\n    RS_MALE(\"bd3-rs-male\", '\\uf107'),\n    RSS(\"bd3-rss\", '\\uf108'),\n    RUGBY(\"bd3-rugby\", '\\uf109'),\n    RUGBY_ONE(\"bd3-rugby-one\", '\\uf10a'),\n    RULER(\"bd3-ruler\", '\\uf10b'),\n    RULER_ONE(\"bd3-ruler-one\", '\\uf10c'),\n    RULE_TWO(\"bd3-rule-two\", '\\uf10d'),\n    RUN_LEFT(\"bd3-run-left\", '\\uf10e'),\n    SAFE_RETRIEVAL(\"bd3-safe-retrieval\", '\\uf10f'),\n    SAGITTARIUS(\"bd3-sagittarius\", '\\uf110'),\n    SAILBOAT(\"bd3-sailboat\", '\\uf111'),\n    SAILBOAT_ONE(\"bd3-sailboat-one\", '\\uf112'),\n    SAILING(\"bd3-sailing\", '\\uf113'),\n    SALES_REPORT(\"bd3-sales-report\", '\\uf114'),\n    SANDALS(\"bd3-sandals\", '\\uf115'),\n    SANDSTORM(\"bd3-sandstorm\", '\\uf116'),\n    SANDWICH(\"bd3-sandwich\", '\\uf117'),\n    SANDWICH_ONE(\"bd3-sandwich-one\", '\\uf118'),\n    SAPLING(\"bd3-sapling\", '\\uf119'),\n    SAVE(\"bd3-save\", '\\uf11a'),\n    SAVE_ONE(\"bd3-save-one\", '\\uf11b'),\n    SCALE(\"bd3-scale\", '\\uf11c'),\n    SCALE_ONE(\"bd3-scale-one\", '\\uf11d'),\n    SCALLION(\"bd3-scallion\", '\\uf11e'),\n    SCAN(\"bd3-scan\", '\\uf11f'),\n    SCAN_CODE(\"bd3-scan-code\", '\\uf120'),\n    SCANNING(\"bd3-scanning\", '\\uf121'),\n    SCANNING_TWO(\"bd3-scanning-two\", '\\uf122'),\n    SCAN_SETTING(\"bd3-scan-setting\", '\\uf123'),\n    SCATTER_ALIGNMENT(\"bd3-scatter-alignment\", '\\uf124'),\n    SCHEDULE(\"bd3-schedule\", '\\uf125'),\n    SCHOOL(\"bd3-school\", '\\uf126'),\n    SCISSORS(\"bd3-scissors\", '\\uf127'),\n    SCOREBOARD(\"bd3-scoreboard\", '\\uf128'),\n    SCORPIO(\"bd3-scorpio\", '\\uf129'),\n    SCREEN_ROTATION(\"bd3-screen-rotation\", '\\uf12a'),\n    SCREENSHOT(\"bd3-screenshot\", '\\uf12b'),\n    SCREENSHOT_ONE(\"bd3-screenshot-one\", '\\uf12c'),\n    SCREENSHOT_TWO(\"bd3-screenshot-two\", '\\uf12d'),\n    SCREWDRIVER(\"bd3-screwdriver\", '\\uf12e'),\n    SD(\"bd3-sd\", '\\uf12f'),\n    SD_CARD(\"bd3-sd-card\", '\\uf130'),\n    SEAL(\"bd3-seal\", '\\uf131'),\n    SEARCH(\"bd3-search\", '\\uf132'),\n    SEAT(\"bd3-seat\", '\\uf133'),\n    SECURITY(\"bd3-security\", '\\uf134'),\n    SECURITY_STALL(\"bd3-security-stall\", '\\uf135'),\n    SEEDLING(\"bd3-seedling\", '\\uf136'),\n    SELECTED(\"bd3-selected\", '\\uf137'),\n    SELECTED_FOCUS(\"bd3-selected-focus\", '\\uf138'),\n    SELFIE(\"bd3-selfie\", '\\uf139'),\n    SEND(\"bd3-send\", '\\uf13a'),\n    SEND_BACKWARD(\"bd3-send-backward\", '\\uf13b'),\n    SEND_EMAIL(\"bd3-send-email\", '\\uf13c'),\n    SEND_ONE(\"bd3-send-one\", '\\uf13d'),\n    SEND_TO_BACK(\"bd3-send-to-back\", '\\uf13e'),\n    SENT_TO_BACK(\"bd3-sent-to-back\", '\\uf13f'),\n    SEO(\"bd3-seo\", '\\uf140'),\n    SEO_FOLDER(\"bd3-seo-folder\", '\\uf141'),\n    SERVER(\"bd3-server\", '\\uf142'),\n    SET_OFF(\"bd3-set-off\", '\\uf143'),\n    SETTING(\"bd3-setting\", '\\uf144'),\n    SETTING_COMPUTER(\"bd3-setting-computer\", '\\uf145'),\n    SETTING_CONFIG(\"bd3-setting-config\", '\\uf146'),\n    SETTING_LAPTOP(\"bd3-setting-laptop\", '\\uf147'),\n    SETTING_ONE(\"bd3-setting-one\", '\\uf148'),\n    SETTING_THREE(\"bd3-setting-three\", '\\uf149'),\n    SETTING_TWO(\"bd3-setting-two\", '\\uf14a'),\n    SETTING_WEB(\"bd3-setting-web\", '\\uf14b'),\n    SEVEN_KEY(\"bd3-seven-key\", '\\uf14c'),\n    SHADE(\"bd3-shade\", '\\uf14d'),\n    SHAKE(\"bd3-shake\", '\\uf14e'),\n    SHARE(\"bd3-share\", '\\uf14f'),\n    SHARE_ONE(\"bd3-share-one\", '\\uf150'),\n    SHARE_SYS(\"bd3-share-sys\", '\\uf151'),\n    SHARE_THREE(\"bd3-share-three\", '\\uf152'),\n    SHARE_TWO(\"bd3-share-two\", '\\uf153'),\n    SHAVER(\"bd3-shaver\", '\\uf154'),\n    SHAVER_ONE(\"bd3-shaver-one\", '\\uf155'),\n    SHAVING(\"bd3-shaving\", '\\uf156'),\n    SHEEP_ZODIAC(\"bd3-sheep-zodiac\", '\\uf157'),\n    SHIELD(\"bd3-shield\", '\\uf158'),\n    SHIELD_ADD(\"bd3-shield-add\", '\\uf159'),\n    SHIP(\"bd3-ship\", '\\uf15a'),\n    SHOP(\"bd3-shop\", '\\uf15b'),\n    SHOPPING(\"bd3-shopping\", '\\uf15c'),\n    SHOPPING_BAG(\"bd3-shopping-bag\", '\\uf15d'),\n    SHOPPING_BAG_ONE(\"bd3-shopping-bag-one\", '\\uf15e'),\n    SHOPPING_CART(\"bd3-shopping-cart\", '\\uf15f'),\n    SHOPPING_CART_ADD(\"bd3-shopping-cart-add\", '\\uf160'),\n    SHOPPING_CART_DEL(\"bd3-shopping-cart-del\", '\\uf161'),\n    SHOPPING_CART_ONE(\"bd3-shopping-cart-one\", '\\uf162'),\n    SHOPPING_CART_TWO(\"bd3-shopping-cart-two\", '\\uf163'),\n    SHOPPING_MALL(\"bd3-shopping-mall\", '\\uf164'),\n    SHORTS(\"bd3-shorts\", '\\uf165'),\n    SHORT_SKIRT(\"bd3-short-skirt\", '\\uf166'),\n    SHOULDER_BAG(\"bd3-shoulder-bag\", '\\uf167'),\n    SHOVEL(\"bd3-shovel\", '\\uf168'),\n    SHOVEL_ONE(\"bd3-shovel-one\", '\\uf169'),\n    SHOWER_HEAD(\"bd3-shower-head\", '\\uf16a'),\n    SHRIMP(\"bd3-shrimp\", '\\uf16b'),\n    SHUFFLE(\"bd3-shuffle\", '\\uf16c'),\n    SHUFFLE_ONE(\"bd3-shuffle-one\", '\\uf16d'),\n    SHUTTER_PRIORITY(\"bd3-shutter-priority\", '\\uf16e'),\n    SICKBED(\"bd3-sickbed\", '\\uf16f'),\n    SIGNAL(\"bd3-signal\", '\\uf170'),\n    SIGNAL_ONE(\"bd3-signal-one\", '\\uf171'),\n    SIGNAL_STRENGTH(\"bd3-signal-strength\", '\\uf172'),\n    SIGNAL_TOWER(\"bd3-signal-tower\", '\\uf173'),\n    SIGNAL_TOWER_ONE(\"bd3-signal-tower-one\", '\\uf174'),\n    SIM(\"bd3-sim\", '\\uf175'),\n    SIM_CARD(\"bd3-sim-card\", '\\uf176'),\n    SINGLE_BED(\"bd3-single-bed\", '\\uf177'),\n    SINUSOID(\"bd3-sinusoid\", '\\uf178'),\n    SIPPY_CUP(\"bd3-sippy-cup\", '\\uf179'),\n    SIX(\"bd3-six\", '\\uf17a'),\n    SIX_CIRCULAR_CONNECTION(\"bd3-six-circular-connection\", '\\uf17b'),\n    SIX_KEY(\"bd3-six-key\", '\\uf17c'),\n    SIX_POINTS(\"bd3-six-points\", '\\uf17d'),\n    SKATE(\"bd3-skate\", '\\uf17e'),\n    SKATES(\"bd3-skates\", '\\uf17f'),\n    SKATING(\"bd3-skating\", '\\uf180'),\n    SKETCH(\"bd3-sketch\", '\\uf181'),\n    SKIING_NORDIC(\"bd3-skiing-nordic\", '\\uf182'),\n    SKULL(\"bd3-skull\", '\\uf183'),\n    SLAVE(\"bd3-slave\", '\\uf184'),\n    SLEAVES(\"bd3-sleaves\", '\\uf185'),\n    SLEEP(\"bd3-sleep\", '\\uf186'),\n    SLEEP_ONE(\"bd3-sleep-one\", '\\uf187'),\n    SLEEP_TWO(\"bd3-sleep-two\", '\\uf188'),\n    SLIDE(\"bd3-slide\", '\\uf189'),\n    SLIDE_TWO(\"bd3-slide-two\", '\\uf18a'),\n    SLIDING_HORIZONTAL(\"bd3-sliding-horizontal\", '\\uf18b'),\n    SLIDING_VERTICAL(\"bd3-sliding-vertical\", '\\uf18c'),\n    SLIGHTLY_FROWNING_FACE_WHIT_OPEN_MOUTH(\"bd3-slightly-frowning-face-whit-open-mouth\", '\\uf18d'),\n    SLIGHTLY_SMILING_FACE(\"bd3-slightly-smiling-face\", '\\uf18e'),\n    SLIPPERS(\"bd3-slippers\", '\\uf18f'),\n    SLIPPERS_ONE(\"bd3-slippers-one\", '\\uf190'),\n    SLY_FACE_WHIT_SMILE(\"bd3-sly-face-whit-smile\", '\\uf191'),\n    SMART_OPTIMIZATION(\"bd3-smart-optimization\", '\\uf192'),\n    SMILING_FACE(\"bd3-smiling-face\", '\\uf193'),\n    SMILING_FACE_WITH_SQUINTING_EYES(\"bd3-smiling-face-with-squinting-eyes\", '\\uf194'),\n    SNACKS(\"bd3-snacks\", '\\uf195'),\n    SNAKE_ZODIAC(\"bd3-snake-zodiac\", '\\uf196'),\n    SNOW(\"bd3-snow\", '\\uf197'),\n    SNOWFLAKE(\"bd3-snowflake\", '\\uf198'),\n    SNOWMAN(\"bd3-snowman\", '\\uf199'),\n    SOAP_BUBBLE(\"bd3-soap-bubble\", '\\uf19a'),\n    SOCCER(\"bd3-soccer\", '\\uf19b'),\n    SOCCER_ONE(\"bd3-soccer-one\", '\\uf19c'),\n    SOCKS(\"bd3-socks\", '\\uf19d'),\n    SOFA(\"bd3-sofa\", '\\uf19e'),\n    SOFA_TWO(\"bd3-sofa-two\", '\\uf19f'),\n    SOFTBALL(\"bd3-softball\", '\\uf1a0'),\n    SOLAR_ENERGY(\"bd3-solar-energy\", '\\uf1a1'),\n    SOLAR_ENERGY_ONE(\"bd3-solar-energy-one\", '\\uf1a2'),\n    SOLID_STATE_DISK(\"bd3-solid-state-disk\", '\\uf1a3'),\n    SORCERER_HAT(\"bd3-sorcerer-hat\", '\\uf1a4'),\n    SORT(\"bd3-sort\", '\\uf1a5'),\n    SORT_AMOUNT_DOWN(\"bd3-sort-amount-down\", '\\uf1a6'),\n    SORT_AMOUNT_UP(\"bd3-sort-amount-up\", '\\uf1a7'),\n    SORT_FOUR(\"bd3-sort-four\", '\\uf1a8'),\n    SORT_ONE(\"bd3-sort-one\", '\\uf1a9'),\n    SORT_THREE(\"bd3-sort-three\", '\\uf1aa'),\n    SORT_TWO(\"bd3-sort-two\", '\\uf1ab'),\n    SOUND(\"bd3-sound\", '\\uf1ac'),\n    SOUND_ONE(\"bd3-sound-one\", '\\uf1ad'),\n    SOUND_WAVE(\"bd3-sound-wave\", '\\uf1ae'),\n    SOURCE_CODE(\"bd3-source-code\", '\\uf1af'),\n    SOYBEAN_MILK_MAKER(\"bd3-soybean-milk-maker\", '\\uf1b0'),\n    SPA_CANDLE(\"bd3-spa-candle\", '\\uf1b1'),\n    SPACE_COLONY(\"bd3-space-colony\", '\\uf1b2'),\n    SPANNER(\"bd3-spanner\", '\\uf1b3'),\n    SPEAKER(\"bd3-speaker\", '\\uf1b4'),\n    SPEAKER_ONE(\"bd3-speaker-one\", '\\uf1b5'),\n    SPEED(\"bd3-speed\", '\\uf1b6'),\n    SPEED_ONE(\"bd3-speed-one\", '\\uf1b7'),\n    SPERM(\"bd3-sperm\", '\\uf1b8'),\n    SPHERE(\"bd3-sphere\", '\\uf1b9'),\n    SPIDER_MAN(\"bd3-spider-man\", '\\uf1ba'),\n    SPIKEDSHOES(\"bd3-spikedshoes\", '\\uf1bb'),\n    SPINNING_TOP(\"bd3-spinning-top\", '\\uf1bc'),\n    SPLIT(\"bd3-split\", '\\uf1bd'),\n    SPLIT_BRANCH(\"bd3-split-branch\", '\\uf1be'),\n    SPLIT_CELLS(\"bd3-split-cells\", '\\uf1bf'),\n    SPLIT_TURN_DOWN_LEFT(\"bd3-split-turn-down-left\", '\\uf1c0'),\n    SPLIT_TURN_DOWN_RIGHT(\"bd3-split-turn-down-right\", '\\uf1c1'),\n    SPOON(\"bd3-spoon\", '\\uf1c2'),\n    SPORT(\"bd3-sport\", '\\uf1c3'),\n    SPORTING(\"bd3-sporting\", '\\uf1c4'),\n    SQUARE(\"bd3-square\", '\\uf1c5'),\n    SQUARE_SMALL(\"bd3-square-small\", '\\uf1c6'),\n    SSD(\"bd3-ssd\", '\\uf1c7'),\n    STACK_LIGHT(\"bd3-stack-light\", '\\uf1c8'),\n    STAMP(\"bd3-stamp\", '\\uf1c9'),\n    STAND_UP(\"bd3-stand-up\", '\\uf1ca'),\n    STAPLER(\"bd3-stapler\", '\\uf1cb'),\n    STAR(\"bd3-star\", '\\uf1cc'),\n    STAR_ONE(\"bd3-star-one\", '\\uf1cd'),\n    START_TIME_SORT(\"bd3-start-time-sort\", '\\uf1ce'),\n    STEERING_WHEEL(\"bd3-steering-wheel\", '\\uf1cf'),\n    STEOLLER(\"bd3-steoller\", '\\uf1d0'),\n    STEREO_NESTING(\"bd3-stereo-nesting\", '\\uf1d1'),\n    STEREO_ONE(\"bd3-stereo-one\", '\\uf1d2'),\n    STEREO_PERSPECTIVE(\"bd3-stereo-perspective\", '\\uf1d3'),\n    STETHOSCOPE(\"bd3-stethoscope\", '\\uf1d4'),\n    STICKERS(\"bd3-stickers\", '\\uf1d5'),\n    STOCK_MARKET(\"bd3-stock-market\", '\\uf1d6'),\n    STOPWATCH(\"bd3-stopwatch\", '\\uf1d7'),\n    STOPWATCH_START(\"bd3-stopwatch-start\", '\\uf1d8'),\n    STORAGE_CARD_ONE(\"bd3-storage-card-one\", '\\uf1d9'),\n    STORAGE_CARD_TWO(\"bd3-storage-card-two\", '\\uf1da'),\n    STRAIGHT_RAZOR(\"bd3-straight-razor\", '\\uf1db'),\n    STRAW_HAT(\"bd3-straw-hat\", '\\uf1dc'),\n    STRETCHING(\"bd3-stretching\", '\\uf1dd'),\n    STRETCHING_ONE(\"bd3-stretching-one\", '\\uf1de'),\n    STRIKETHROUGH(\"bd3-strikethrough\", '\\uf1df'),\n    STRONGBOX(\"bd3-strongbox\", '\\uf1e0'),\n    S_TURN_DOWN(\"bd3-s-turn-down\", '\\uf1e1'),\n    S_TURN_LEFT(\"bd3-s-turn-left\", '\\uf1e2'),\n    S_TURN_RIGHT(\"bd3-s-turn-right\", '\\uf1e3'),\n    S_TURN_UP(\"bd3-s-turn-up\", '\\uf1e4'),\n    SUBTRACT_SELECTION(\"bd3-subtract-selection\", '\\uf1e5'),\n    SUBTRACT_SELECTION_ONE(\"bd3-subtract-selection-one\", '\\uf1e6'),\n    SUBWAY(\"bd3-subway\", '\\uf1e7'),\n    SUCCESS(\"bd3-success\", '\\uf1e8'),\n    SUCCESS_PICTURE(\"bd3-success-picture\", '\\uf1e9'),\n    SUM(\"bd3-sum\", '\\uf1ea'),\n    SUN(\"bd3-sun\", '\\uf1eb'),\n    SUNBATH(\"bd3-sunbath\", '\\uf1ec'),\n    SUN_HAT(\"bd3-sun-hat\", '\\uf1ed'),\n    SUNNY(\"bd3-sunny\", '\\uf1ee'),\n    SUN_ONE(\"bd3-sun-one\", '\\uf1ef'),\n    SUNRISE(\"bd3-sunrise\", '\\uf1f0'),\n    SUNSET(\"bd3-sunset\", '\\uf1f1'),\n    SUNSHADE(\"bd3-sunshade\", '\\uf1f2'),\n    SURPRISED_FACE_WITH_OPEN_BIG_MOUTH(\"bd3-surprised-face-with-open-big-mouth\", '\\uf1f3'),\n    SURPRISED_FACE_WITH_OPEN_MOUTH(\"bd3-surprised-face-with-open-mouth\", '\\uf1f4'),\n    SURVEILLANCE_CAMERAS(\"bd3-surveillance-cameras\", '\\uf1f5'),\n    SURVEILLANCE_CAMERAS_ONE(\"bd3-surveillance-cameras-one\", '\\uf1f6'),\n    SURVEILLANCE_CAMERAS_TWO(\"bd3-surveillance-cameras-two\", '\\uf1f7'),\n    SWALLOW(\"bd3-swallow\", '\\uf1f8'),\n    SWEATER(\"bd3-sweater\", '\\uf1f9'),\n    SWIMMING_POOL(\"bd3-swimming-pool\", '\\uf1fa'),\n    SWIMMING_RING(\"bd3-swimming-ring\", '\\uf1fb'),\n    SWIMSUIT(\"bd3-swimsuit\", '\\uf1fc'),\n    SWING(\"bd3-swing\", '\\uf1fd'),\n    SWIPE(\"bd3-swipe\", '\\uf1fe'),\n    SWITCH(\"bd3-switch\", '\\uf1ff'),\n    SWITCH_BUTTON(\"bd3-switch-button\", '\\uf200'),\n    SWITCH_CONTRAST(\"bd3-switch-contrast\", '\\uf201'),\n    SWITCHING_DONE(\"bd3-switching-done\", '\\uf202'),\n    SWITCH_NINTENDO(\"bd3-switch-nintendo\", '\\uf203'),\n    SWITCH_ONE(\"bd3-switch-one\", '\\uf204'),\n    SWITCH_THEMES(\"bd3-switch-themes\", '\\uf205'),\n    SWITCH_TRACK(\"bd3-switch-track\", '\\uf206'),\n    SYMBOL(\"bd3-symbol\", '\\uf207'),\n    SYMBOL_DOUBLE_X(\"bd3-symbol-double-x\", '\\uf208'),\n    SYMMETRY(\"bd3-symmetry\", '\\uf209'),\n    SYNC(\"bd3-sync\", '\\uf20a'),\n    SYSTEM(\"bd3-system\", '\\uf20b'),\n    TABLE(\"bd3-table\", '\\uf20c'),\n    TABLE_FILE(\"bd3-table-file\", '\\uf20d'),\n    TABLE_LAMP(\"bd3-table-lamp\", '\\uf20e'),\n    TABLE_REPORT(\"bd3-table-report\", '\\uf20f'),\n    TABLETENNIS(\"bd3-tabletennis\", '\\uf210'),\n    TAG(\"bd3-tag\", '\\uf211'),\n    TAG_ONE(\"bd3-tag-one\", '\\uf212'),\n    TAILORING(\"bd3-tailoring\", '\\uf213'),\n    TAILORING_TWO(\"bd3-tailoring-two\", '\\uf214'),\n    TAJ_MAHAL(\"bd3-taj-mahal\", '\\uf215'),\n    TAKE_OFF(\"bd3-take-off\", '\\uf216'),\n    TAKE_OFF_ONE(\"bd3-take-off-one\", '\\uf217'),\n    TAOBAO(\"bd3-taobao\", '\\uf218'),\n    TAPE(\"bd3-tape\", '\\uf219'),\n    TAPE_MEASURE(\"bd3-tape-measure\", '\\uf21a'),\n    TARGET(\"bd3-target\", '\\uf21b'),\n    TARGET_ONE(\"bd3-target-one\", '\\uf21c'),\n    TARGET_TWO(\"bd3-target-two\", '\\uf21d'),\n    TAURUS(\"bd3-taurus\", '\\uf21e'),\n    TAXI(\"bd3-taxi\", '\\uf21f'),\n    TEA(\"bd3-tea\", '\\uf220'),\n    TEA_DRINK(\"bd3-tea-drink\", '\\uf221'),\n    TEAPOT(\"bd3-teapot\", '\\uf222'),\n    TEETH(\"bd3-teeth\", '\\uf223'),\n    TELEGRAM(\"bd3-telegram\", '\\uf224'),\n    TELESCOPE(\"bd3-telescope\", '\\uf225'),\n    TENCENT_QQ(\"bd3-tencent-qq\", '\\uf226'),\n    TENNIS(\"bd3-tennis\", '\\uf227'),\n    TENT(\"bd3-tent\", '\\uf228'),\n    TENT_BANNER(\"bd3-tent-banner\", '\\uf229'),\n    TERMINAL(\"bd3-terminal\", '\\uf22a'),\n    TERMINATION_FILE(\"bd3-termination-file\", '\\uf22b'),\n    TERRACE(\"bd3-terrace\", '\\uf22c'),\n    TEST_TUBE(\"bd3-test-tube\", '\\uf22d'),\n    TEXT(\"bd3-text\", '\\uf22e'),\n    TEXTAREA(\"bd3-textarea\", '\\uf22f'),\n    TEXT_BOLD(\"bd3-text-bold\", '\\uf230'),\n    TEXT_ITALIC(\"bd3-text-italic\", '\\uf231'),\n    TEXT_MESSAGE(\"bd3-text-message\", '\\uf232'),\n    TEXT_RECOGNITION(\"bd3-text-recognition\", '\\uf233'),\n    TEXT_ROTATION_DOWN(\"bd3-text-rotation-down\", '\\uf234'),\n    TEXT_ROTATION_LEFT(\"bd3-text-rotation-left\", '\\uf235'),\n    TEXT_ROTATION_NONE(\"bd3-text-rotation-none\", '\\uf236'),\n    TEXT_ROTATION_UP(\"bd3-text-rotation-up\", '\\uf237'),\n    TEXT_STYLE(\"bd3-text-style\", '\\uf238'),\n    TEXT_STYLE_ONE(\"bd3-text-style-one\", '\\uf239'),\n    TEXT_UNDERLINE(\"bd3-text-underline\", '\\uf23a'),\n    TEXTURE(\"bd3-texture\", '\\uf23b'),\n    TEXTURE_TWO(\"bd3-texture-two\", '\\uf23c'),\n    TEXT_WRAP_OVERFLOW(\"bd3-text-wrap-overflow\", '\\uf23d'),\n    TEXT_WRAP_TRUNCATION(\"bd3-text-wrap-truncation\", '\\uf23e'),\n    THEATER(\"bd3-theater\", '\\uf23f'),\n    THEME(\"bd3-theme\", '\\uf240'),\n    THERMOMETER(\"bd3-thermometer\", '\\uf241'),\n    THERMOMETER_ONE(\"bd3-thermometer-one\", '\\uf242'),\n    THERMOS_CUP(\"bd3-thermos-cup\", '\\uf243'),\n    THE_SINGLE_SHOULDER_BAG(\"bd3-the-single-shoulder-bag\", '\\uf244'),\n    THIN(\"bd3-thin\", '\\uf245'),\n    THINKING_PROBLEM(\"bd3-thinking-problem\", '\\uf246'),\n    THREE(\"bd3-three\", '\\uf247'),\n    THREE_D_GLASSES(\"bd3-three-d-glasses\", '\\uf248'),\n    THREE_HEXAGONS(\"bd3-three-hexagons\", '\\uf249'),\n    THREE_KEY(\"bd3-three-key\", '\\uf24a'),\n    THREE_SLASHES(\"bd3-three-slashes\", '\\uf24b'),\n    THREE_THREE(\"bd3-three-three\", '\\uf24c'),\n    THREE_TRIANGLES(\"bd3-three-triangles\", '\\uf24d'),\n    THUMBS_DOWN(\"bd3-thumbs-down\", '\\uf24e'),\n    THUMBS_UP(\"bd3-thumbs-up\", '\\uf24f'),\n    THUNDERBOLT(\"bd3-thunderbolt\", '\\uf250'),\n    THUNDERSTORM(\"bd3-thunderstorm\", '\\uf251'),\n    THUNDERSTORM_ONE(\"bd3-thunderstorm-one\", '\\uf252'),\n    TICKET(\"bd3-ticket\", '\\uf253'),\n    TICKET_ONE(\"bd3-ticket-one\", '\\uf254'),\n    TICKETS_CHECKED(\"bd3-tickets-checked\", '\\uf255'),\n    TICKETS_ONE(\"bd3-tickets-one\", '\\uf256'),\n    TICKETS_TWO(\"bd3-tickets-two\", '\\uf257'),\n    TIGER_ZODIAC(\"bd3-tiger-zodiac\", '\\uf258'),\n    TIKTOK(\"bd3-tiktok\", '\\uf259'),\n    TIME(\"bd3-time\", '\\uf25a'),\n    TIMED_MAIL(\"bd3-timed-mail\", '\\uf25b'),\n    TIMELINE(\"bd3-timeline\", '\\uf25c'),\n    TIMER(\"bd3-timer\", '\\uf25d'),\n    TIPS(\"bd3-tips\", '\\uf25e'),\n    TIPS_ONE(\"bd3-tips-one\", '\\uf25f'),\n    TIRE_SWING(\"bd3-tire-swing\", '\\uf260'),\n    TITLE_LEVEL(\"bd3-title-level\", '\\uf261'),\n    TO_BOTTOM(\"bd3-to-bottom\", '\\uf262'),\n    TO_BOTTOM_ONE(\"bd3-to-bottom-one\", '\\uf263'),\n    TOILET(\"bd3-toilet\", '\\uf264'),\n    TO_LEFT(\"bd3-to-left\", '\\uf265'),\n    TOMATO(\"bd3-tomato\", '\\uf266'),\n    TOOL(\"bd3-tool\", '\\uf267'),\n    TOOLKIT(\"bd3-toolkit\", '\\uf268'),\n    TOP_BAR(\"bd3-top-bar\", '\\uf269'),\n    TOPBUZZ(\"bd3-topbuzz\", '\\uf26a'),\n    TOPIC(\"bd3-topic\", '\\uf26b'),\n    TOPIC_DISCUSSION(\"bd3-topic-discussion\", '\\uf26c'),\n    TORCH(\"bd3-torch\", '\\uf26d'),\n    TO_RIGHT(\"bd3-to-right\", '\\uf26e'),\n    TO_TOP(\"bd3-to-top\", '\\uf26f'),\n    TO_TOP_ONE(\"bd3-to-top-one\", '\\uf270'),\n    TOUR_BUS(\"bd3-tour-bus\", '\\uf271'),\n    TOWEL(\"bd3-towel\", '\\uf272'),\n    TOWER(\"bd3-tower\", '\\uf273'),\n    TOWER_OF_BABEL(\"bd3-tower-of-babel\", '\\uf274'),\n    TOWER_OF_PISA(\"bd3-tower-of-pisa\", '\\uf275'),\n    TOXINS(\"bd3-toxins\", '\\uf276'),\n    TRACE(\"bd3-trace\", '\\uf277'),\n    TRADEMARK(\"bd3-trademark\", '\\uf278'),\n    TRADITIONAL_CHINESE_MEDICINE(\"bd3-traditional-chinese-medicine\", '\\uf279'),\n    TRAIN(\"bd3-train\", '\\uf27a'),\n    TRANSACTION(\"bd3-transaction\", '\\uf27b'),\n    TRANSACTION_ORDER(\"bd3-transaction-order\", '\\uf27c'),\n    TRANSFER(\"bd3-transfer\", '\\uf27d'),\n    TRANSFER_DATA(\"bd3-transfer-data\", '\\uf27e'),\n    TRANSFORM(\"bd3-transform\", '\\uf27f'),\n    TRANSLATE(\"bd3-translate\", '\\uf280'),\n    TRANSLATION(\"bd3-translation\", '\\uf281'),\n    TRANSPORT(\"bd3-transport\", '\\uf282'),\n    TRANSPORTER(\"bd3-transporter\", '\\uf283'),\n    TRAPEZOID(\"bd3-trapezoid\", '\\uf284'),\n    TRAY(\"bd3-tray\", '\\uf285'),\n    TREADMILL(\"bd3-treadmill\", '\\uf286'),\n    TREADMILL_ONE(\"bd3-treadmill-one\", '\\uf287'),\n    TREADMILL_TWO(\"bd3-treadmill-two\", '\\uf288'),\n    TREASURE_CHEST(\"bd3-treasure-chest\", '\\uf289'),\n    TREE(\"bd3-tree\", '\\uf28a'),\n    TREE_DIAGRAM(\"bd3-tree-diagram\", '\\uf28b'),\n    TREE_LIST(\"bd3-tree-list\", '\\uf28c'),\n    TREE_ONE(\"bd3-tree-one\", '\\uf28d'),\n    TREE_TWO(\"bd3-tree-two\", '\\uf28e'),\n    TREND(\"bd3-trend\", '\\uf28f'),\n    TRENDING_DOWN(\"bd3-trending-down\", '\\uf290'),\n    TRENDING_UP(\"bd3-trending-up\", '\\uf291'),\n    TREND_TWO(\"bd3-trend-two\", '\\uf292'),\n    TRIANGLE(\"bd3-triangle\", '\\uf293'),\n    TRIANGLE_ROUND_RECTANGLE(\"bd3-triangle-round-rectangle\", '\\uf294'),\n    TRIANGLE_RULER(\"bd3-triangle-ruler\", '\\uf295'),\n    TRIANGULAR_PYRAMID(\"bd3-triangular-pyramid\", '\\uf296'),\n    TROPHY(\"bd3-trophy\", '\\uf297'),\n    TROUSERS_BELL_BOTTOMS(\"bd3-trousers-bell-bottoms\", '\\uf298'),\n    TRUCK(\"bd3-truck\", '\\uf299'),\n    TRUMPET(\"bd3-trumpet\", '\\uf29a'),\n    TRUNK(\"bd3-trunk\", '\\uf29b'),\n    T_SHIRT(\"bd3-t-shirt\", '\\uf29c'),\n    TUB(\"bd3-tub\", '\\uf29d'),\n    TUCHONG(\"bd3-tuchong\", '\\uf29e'),\n    TUMBLR(\"bd3-tumblr\", '\\uf29f'),\n    TURKEY(\"bd3-turkey\", '\\uf2a0'),\n    TURN_AROUND(\"bd3-turn-around\", '\\uf2a1'),\n    TURN_OFF_BLUETOOTH(\"bd3-turn-off-bluetooth\", '\\uf2a2'),\n    TURN_ON(\"bd3-turn-on\", '\\uf2a3'),\n    TV(\"bd3-tv\", '\\uf2a4'),\n    TV_ONE(\"bd3-tv-one\", '\\uf2a5'),\n    TWITTER(\"bd3-twitter\", '\\uf2a6'),\n    TWO(\"bd3-two\", '\\uf2a7'),\n    TWO_DIMENSIONAL_CODE(\"bd3-two-dimensional-code\", '\\uf2a8'),\n    TWO_DIMENSIONAL_CODE_ONE(\"bd3-two-dimensional-code-one\", '\\uf2a9'),\n    TWO_DIMENSIONAL_CODE_TWO(\"bd3-two-dimensional-code-two\", '\\uf2aa'),\n    TWO_ELLIPSES(\"bd3-two-ellipses\", '\\uf2ab'),\n    TWO_FINGERS(\"bd3-two-fingers\", '\\uf2ac'),\n    TWO_HANDS(\"bd3-two-hands\", '\\uf2ad'),\n    TWO_KEY(\"bd3-two-key\", '\\uf2ae'),\n    TWO_SEMICIRCLES(\"bd3-two-semicircles\", '\\uf2af'),\n    TWO_TRIANGLES(\"bd3-two-triangles\", '\\uf2b0'),\n    TWO_TRIANGLES_TWO(\"bd3-two-triangles-two\", '\\uf2b1'),\n    TWO_TWO(\"bd3-two-two\", '\\uf2b2'),\n    TYPE_DRIVE(\"bd3-type-drive\", '\\uf2b3'),\n    U_DISK(\"bd3-u-disk\", '\\uf2b4'),\n    ULIKECAM(\"bd3-ulikecam\", '\\uf2b5'),\n    UMBRELLA(\"bd3-umbrella\", '\\uf2b6'),\n    UMBRELLA_ONE(\"bd3-umbrella-one\", '\\uf2b7'),\n    UMBRELLA_TWO(\"bd3-umbrella-two\", '\\uf2b8'),\n    UNDO(\"bd3-undo\", '\\uf2b9'),\n    UNGROUP(\"bd3-ungroup\", '\\uf2ba'),\n    UNICAST(\"bd3-unicast\", '\\uf2bb'),\n    UNION_SELECTION(\"bd3-union-selection\", '\\uf2bc'),\n    UNIVERSAL(\"bd3-universal\", '\\uf2bd'),\n    UNLIKE(\"bd3-unlike\", '\\uf2be'),\n    UNLINK(\"bd3-unlink\", '\\uf2bf'),\n    UNLOCK(\"bd3-unlock\", '\\uf2c0'),\n    UNLOCK_ONE(\"bd3-unlock-one\", '\\uf2c1'),\n    UNORDERED_LIST(\"bd3-unordered-list\", '\\uf2c2'),\n    UP(\"bd3-up\", '\\uf2c3'),\n    UP_AND_DOWN(\"bd3-up-and-down\", '\\uf2c4'),\n    UP_C(\"bd3-up-c\", '\\uf2c5'),\n    UPDATE_ROTATION(\"bd3-update-rotation\", '\\uf2c6'),\n    UPLOAD(\"bd3-upload\", '\\uf2c7'),\n    UPLOAD_COMPUTER(\"bd3-upload-computer\", '\\uf2c8'),\n    UPLOAD_LAPTOP(\"bd3-upload-laptop\", '\\uf2c9'),\n    UPLOAD_LOGS(\"bd3-upload-logs\", '\\uf2ca'),\n    UPLOAD_ONE(\"bd3-upload-one\", '\\uf2cb'),\n    UPLOAD_PICTURE(\"bd3-upload-picture\", '\\uf2cc'),\n    UPLOAD_THREE(\"bd3-upload-three\", '\\uf2cd'),\n    UPLOAD_TWO(\"bd3-upload-two\", '\\uf2ce'),\n    UPLOAD_WEB(\"bd3-upload-web\", '\\uf2cf'),\n    UP_ONE(\"bd3-up-one\", '\\uf2d0'),\n    UPSIDE_DOWN_FACE(\"bd3-upside-down-face\", '\\uf2d1'),\n    UP_SMALL(\"bd3-up-small\", '\\uf2d2'),\n    UP_SQUARE(\"bd3-up-square\", '\\uf2d3'),\n    UP_TWO(\"bd3-up-two\", '\\uf2d4'),\n    USB(\"bd3-usb\", '\\uf2d5'),\n    USB_MEMORY_STICK(\"bd3-usb-memory-stick\", '\\uf2d6'),\n    USB_MICRO_ONE(\"bd3-usb-micro-one\", '\\uf2d7'),\n    USB_MICRO_TWO(\"bd3-usb-micro-two\", '\\uf2d8'),\n    USB_ONE(\"bd3-usb-one\", '\\uf2d9'),\n    USB_TYPE_C(\"bd3-usb-type-c\", '\\uf2da'),\n    USER(\"bd3-user\", '\\uf2db'),\n    USER_BUSINESS(\"bd3-user-business\", '\\uf2dc'),\n    USER_POSITIONING(\"bd3-user-positioning\", '\\uf2dd'),\n    USER_TO_USER_TRANSMISSION(\"bd3-user-to-user-transmission\", '\\uf2de'),\n    UTERUS(\"bd3-uterus\", '\\uf2df'),\n    U_TURN_DOWN(\"bd3-u-turn-down\", '\\uf2e0'),\n    U_TURN_LEFT(\"bd3-u-turn-left\", '\\uf2e1'),\n    U_TURN_RIGHT(\"bd3-u-turn-right\", '\\uf2e2'),\n    U_TURN_UP(\"bd3-u-turn-up\", '\\uf2e3'),\n    VACATION(\"bd3-vacation\", '\\uf2e4'),\n    VACUUM_CLEANER(\"bd3-vacuum-cleaner\", '\\uf2e5'),\n    VEGETABLE_BASKET(\"bd3-vegetable-basket\", '\\uf2e6'),\n    VEGETABLES(\"bd3-vegetables\", '\\uf2e7'),\n    VERTICALLY_CENTERED(\"bd3-vertically-centered\", '\\uf2e8'),\n    VERTICAL_SPACING_BETWEEN_ITEMS(\"bd3-vertical-spacing-between-items\", '\\uf2e9'),\n    VERTICAL_TIDY_UP(\"bd3-vertical-tidy-up\", '\\uf2ea'),\n    VERTICAL_TIMELINE(\"bd3-vertical-timeline\", '\\uf2eb'),\n    VEST(\"bd3-vest\", '\\uf2ec'),\n    VIAL(\"bd3-vial\", '\\uf2ed'),\n    VICIA_FABA(\"bd3-vicia-faba\", '\\uf2ee'),\n    VIDEO(\"bd3-video\", '\\uf2ef'),\n    VIDEOCAMERA(\"bd3-videocamera\", '\\uf2f0'),\n    VIDEOCAMERA_ONE(\"bd3-videocamera-one\", '\\uf2f1'),\n    VIDEO_CONFERENCE(\"bd3-video-conference\", '\\uf2f2'),\n    VIDEO_FILE(\"bd3-video-file\", '\\uf2f3'),\n    VIDEO_ONE(\"bd3-video-one\", '\\uf2f4'),\n    VIDEO_TWO(\"bd3-video-two\", '\\uf2f5'),\n    VIENCHARTS(\"bd3-viencharts\", '\\uf2f6'),\n    VIEWFINDER(\"bd3-viewfinder\", '\\uf2f7'),\n    VIEW_GRID_CARD(\"bd3-view-grid-card\", '\\uf2f8'),\n    VIEW_GRID_DETAIL(\"bd3-view-grid-detail\", '\\uf2f9'),\n    VIEW_GRID_LIST(\"bd3-view-grid-list\", '\\uf2fa'),\n    VIEW_LIST(\"bd3-view-list\", '\\uf2fb'),\n    VIGO(\"bd3-vigo\", '\\uf2fc'),\n    VIP(\"bd3-vip\", '\\uf2fd'),\n    VIP_ONE(\"bd3-vip-one\", '\\uf2fe'),\n    VIRGO(\"bd3-virgo\", '\\uf2ff'),\n    VIRTUAL_REALITY_GLASSES(\"bd3-virtual-reality-glasses\", '\\uf300'),\n    VOICE(\"bd3-voice\", '\\uf301'),\n    VOICE_INPUT(\"bd3-voice-input\", '\\uf302'),\n    VOICEMAIL(\"bd3-voicemail\", '\\uf303'),\n    VOICE_MESSAGE(\"bd3-voice-message\", '\\uf304'),\n    VOICE_OFF(\"bd3-voice-off\", '\\uf305'),\n    VOICE_ONE(\"bd3-voice-one\", '\\uf306'),\n    VOLKSWAGEN(\"bd3-volkswagen\", '\\uf307'),\n    VOLLEYBALL(\"bd3-volleyball\", '\\uf308'),\n    VOLUME_DOWN(\"bd3-volume-down\", '\\uf309'),\n    VOLUME_MUTE(\"bd3-volume-mute\", '\\uf30a'),\n    VOLUME_NOTICE(\"bd3-volume-notice\", '\\uf30b'),\n    VOLUME_SMALL(\"bd3-volume-small\", '\\uf30c'),\n    VOLUME_UP(\"bd3-volume-up\", '\\uf30d'),\n    VR_GLASSES(\"bd3-vr-glasses\", '\\uf30e'),\n    WAISTLINE(\"bd3-waistline\", '\\uf30f'),\n    WALLET(\"bd3-wallet\", '\\uf310'),\n    WALLET_ONE(\"bd3-wallet-one\", '\\uf311'),\n    WALLET_THREE(\"bd3-wallet-three\", '\\uf312'),\n    WALLET_TWO(\"bd3-wallet-two\", '\\uf313'),\n    WAREHOUSING(\"bd3-warehousing\", '\\uf314'),\n    WASHING_MACHINE(\"bd3-washing-machine\", '\\uf315'),\n    WASHING_MACHINE_ONE(\"bd3-washing-machine-one\", '\\uf316'),\n    WATCH(\"bd3-watch\", '\\uf317'),\n    WATCH_ONE(\"bd3-watch-one\", '\\uf318'),\n    WATER(\"bd3-water\", '\\uf319'),\n    WATERFALLS_H(\"bd3-waterfalls-h\", '\\uf31a'),\n    WATERFALLS_V(\"bd3-waterfalls-v\", '\\uf31b'),\n    WATER_LEVEL(\"bd3-water-level\", '\\uf31c'),\n    WATERMELON(\"bd3-watermelon\", '\\uf31d'),\n    WATERMELON_ONE(\"bd3-watermelon-one\", '\\uf31e'),\n    WATER_NO(\"bd3-water-no\", '\\uf31f'),\n    WATERPOLO(\"bd3-waterpolo\", '\\uf320'),\n    WATERPOLO_ONE(\"bd3-waterpolo-one\", '\\uf321'),\n    WATER_RATE(\"bd3-water-rate\", '\\uf322'),\n    WATER_RATE_TWO(\"bd3-water-rate-two\", '\\uf323'),\n    WAVES(\"bd3-waves\", '\\uf324'),\n    WAVES_LEFT(\"bd3-waves-left\", '\\uf325'),\n    WAVES_RIGHT(\"bd3-waves-right\", '\\uf326'),\n    WEARY_FACE(\"bd3-weary-face\", '\\uf327'),\n    WEBCAM(\"bd3-webcam\", '\\uf328'),\n    WEB_PAGE(\"bd3-web-page\", '\\uf329'),\n    WECHAT(\"bd3-wechat\", '\\uf32a'),\n    WEIBO(\"bd3-weibo\", '\\uf32b'),\n    WEIGHT(\"bd3-weight\", '\\uf32c'),\n    WEIGHTLIFTING(\"bd3-weightlifting\", '\\uf32d'),\n    WEIXIN_CARDS_OFFERS(\"bd3-weixin-cards-offers\", '\\uf32e'),\n    WEIXIN_FAVORITES(\"bd3-weixin-favorites\", '\\uf32f'),\n    WEIXIN_GAMES(\"bd3-weixin-games\", '\\uf330'),\n    WEIXIN_MARKET(\"bd3-weixin-market\", '\\uf331'),\n    WEIXIN_MINI_APP(\"bd3-weixin-mini-app\", '\\uf332'),\n    WEIXIN_PEOPLE_NEARBY(\"bd3-weixin-people-nearby\", '\\uf333'),\n    WEIXIN_SCAN(\"bd3-weixin-scan\", '\\uf334'),\n    WEIXIN_SEARCH(\"bd3-weixin-search\", '\\uf335'),\n    WEIXIN_SHAKE(\"bd3-weixin-shake\", '\\uf336'),\n    WEIXIN_TOP_STORIES(\"bd3-weixin-top-stories\", '\\uf337'),\n    WHALE(\"bd3-whale\", '\\uf338'),\n    WHEELCHAIR(\"bd3-wheelchair\", '\\uf339'),\n    WHIRLWIND(\"bd3-whirlwind\", '\\uf33a'),\n    WHISTLING(\"bd3-whistling\", '\\uf33b'),\n    WHOLE_SITE_ACCELERATOR(\"bd3-whole-site-accelerator\", '\\uf33c'),\n    WIFI(\"bd3-wifi\", '\\uf33d'),\n    WIND(\"bd3-wind\", '\\uf33e'),\n    WINDMILL(\"bd3-windmill\", '\\uf33f'),\n    WINDMILL_ONE(\"bd3-windmill-one\", '\\uf340'),\n    WINDMILL_TWO(\"bd3-windmill-two\", '\\uf341'),\n    WINDOWS(\"bd3-windows\", '\\uf342'),\n    WIND_TURBINE(\"bd3-wind-turbine\", '\\uf343'),\n    WINGSUIT_FLYING(\"bd3-wingsuit-flying\", '\\uf344'),\n    WINKING_FACE(\"bd3-winking-face\", '\\uf345'),\n    WINKING_FACE_WITH_OPEN_EYES(\"bd3-winking-face-with-open-eyes\", '\\uf346'),\n    WOMAN(\"bd3-woman\", '\\uf347'),\n    WOMEN(\"bd3-women\", '\\uf348'),\n    WOMEN_COAT(\"bd3-women-coat\", '\\uf349'),\n    WOOLEN_HAT(\"bd3-woolen-hat\", '\\uf34a'),\n    WORD(\"bd3-word\", '\\uf34b'),\n    WORKBENCH(\"bd3-workbench\", '\\uf34c'),\n    WORKER(\"bd3-worker\", '\\uf34d'),\n    WORLD(\"bd3-world\", '\\uf34e'),\n    WORRIED_FACE(\"bd3-worried-face\", '\\uf34f'),\n    WRITE(\"bd3-write\", '\\uf350'),\n    WRITING_FLUENTLY(\"bd3-writing-fluently\", '\\uf351'),\n    WRONG_USER(\"bd3-wrong-user\", '\\uf352'),\n    XIAODU(\"bd3-xiaodu\", '\\uf353'),\n    XIAODU_HOME(\"bd3-xiaodu-home\", '\\uf354'),\n    XIGUA(\"bd3-xigua\", '\\uf355'),\n    XINGFULI(\"bd3-xingfuli\", '\\uf356'),\n    XINGTU(\"bd3-xingtu\", '\\uf357'),\n    YEP(\"bd3-yep\", '\\uf358'),\n    YOUTOBE(\"bd3-youtobe\", '\\uf359'),\n    YOUTUBE(\"bd3-youtube\", '\\uf35a'),\n    ZERO_KEY(\"bd3-zero-key\", '\\uf35b'),\n    ZIJINYUNYING(\"bd3-zijinyunying\", '\\uf35c'),\n    ZIP(\"bd3-zip\", '\\uf35d'),\n    ZOOM(\"bd3-zoom\", '\\uf35e'),\n    ZOOM_IN(\"bd3-zoom-in\", '\\uf35f'),\n    ZOOM_INTERNAL(\"bd3-zoom-internal\", '\\uf360'),\n    ZOOM_OUT(\"bd3-zoom-out\", '\\uf361');\n\n    public static BytedanceIconsBoldMZ findByDescription(String description) {\n        for (BytedanceIconsBoldMZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    BytedanceIconsBoldMZ(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsBoldMZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author LeeWyatt\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BytedanceIconsBoldMZIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/bytedance/1.3.0/fonts/Bytedance-IconPack-Bold.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bd3-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return BytedanceIconsBoldMZ.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Bytedance-IconPack-Bold\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsBoldMZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author LeeWyatt\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class BytedanceIconsBoldMZIkonProvider implements IkonProvider<BytedanceIconsBoldMZ> {\n    @Override\n    public Class<BytedanceIconsBoldMZ> getIkon() {\n        return BytedanceIconsBoldMZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsExtraBoldAL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author LeeWyatt\n */\npublic enum BytedanceIconsExtraBoldAL implements Ikon {\n    ABDOMINAL(\"bd4-abdominal\", '\\ue900'),\n    ABNORMAL(\"bd4-abnormal\", '\\ue901'),\n    A_CANE(\"bd4-a-cane\", '\\ue902'),\n    ACCELERATION(\"bd4-acceleration\", '\\ue903'),\n    ACCEPT_EMAIL(\"bd4-accept-email\", '\\ue904'),\n    ACOUSTIC(\"bd4-acoustic\", '\\ue905'),\n    ACTIVITY_SOURCE(\"bd4-activity-source\", '\\ue906'),\n    AD(\"bd4-ad\", '\\ue907'),\n    ADD(\"bd4-add\", '\\ue908'),\n    ADD_COMPUTER(\"bd4-add-computer\", '\\ue909'),\n    ADD_FOUR(\"bd4-add-four\", '\\ue90a'),\n    ADD_ITEM(\"bd4-add-item\", '\\ue90b'),\n    ADD_MODE(\"bd4-add-mode\", '\\ue90c'),\n    ADD_MUSIC(\"bd4-add-music\", '\\ue90d'),\n    ADD_ONE(\"bd4-add-one\", '\\ue90e'),\n    ADD_PIC(\"bd4-add-pic\", '\\ue90f'),\n    ADD_PICTURE(\"bd4-add-picture\", '\\ue910'),\n    ADD_PRINT(\"bd4-add-print\", '\\ue911'),\n    ADDRESS_BOOK(\"bd4-address-book\", '\\ue912'),\n    ADD_SUBSET(\"bd4-add-subset\", '\\ue913'),\n    ADD_SUBTRACT(\"bd4-add-subtract\", '\\ue914'),\n    ADD_TEXT(\"bd4-add-text\", '\\ue915'),\n    ADD_TEXT_TWO(\"bd4-add-text-two\", '\\ue916'),\n    ADD_THREE(\"bd4-add-three\", '\\ue917'),\n    ADD_TWO(\"bd4-add-two\", '\\ue918'),\n    ADD_USER(\"bd4-add-user\", '\\ue919'),\n    ADD_WEB(\"bd4-add-web\", '\\ue91a'),\n    ADJACENT_ITEM(\"bd4-adjacent-item\", '\\ue91b'),\n    ADJUSTMENT(\"bd4-adjustment\", '\\ue91c'),\n    ADOBE_ILLUSTRATE(\"bd4-adobe-illustrate\", '\\ue91d'),\n    ADOBE_INDESIGN(\"bd4-adobe-indesign\", '\\ue91e'),\n    ADOBE_LIGHTROOM(\"bd4-adobe-lightroom\", '\\ue91f'),\n    ADOBE_PHOTOSHOP(\"bd4-adobe-photoshop\", '\\ue920'),\n    AD_PRODUCT(\"bd4-ad-product\", '\\ue921'),\n    AFFERENT(\"bd4-afferent\", '\\ue922'),\n    AFFERENT_FOUR(\"bd4-afferent-four\", '\\ue923'),\n    AFFERENT_THREE(\"bd4-afferent-three\", '\\ue924'),\n    AFFERENT_TWO(\"bd4-afferent-two\", '\\ue925'),\n    AFRO_PICK(\"bd4-afro-pick\", '\\ue926'),\n    AGREEMENT(\"bd4-agreement\", '\\ue927'),\n    AIMING(\"bd4-aiming\", '\\ue928'),\n    AIR_BIKE(\"bd4-air-bike\", '\\ue929'),\n    AIR_CONDITIONING(\"bd4-air-conditioning\", '\\ue92a'),\n    AIRPLANE(\"bd4-airplane\", '\\ue92b'),\n    AIRPLANE_WINDOW(\"bd4-airplane-window\", '\\ue92c'),\n    AIRPLANE_WINDOW_ONE(\"bd4-airplane-window-one\", '\\ue92d'),\n    AIRPLAY(\"bd4-airplay\", '\\ue92e'),\n    AIRPODS(\"bd4-airpods\", '\\ue92f'),\n    ALARM(\"bd4-alarm\", '\\ue930'),\n    ALARM_CLOCK(\"bd4-alarm-clock\", '\\ue931'),\n    ALIGN_BOTTOM(\"bd4-align-bottom\", '\\ue932'),\n    ALIGN_BOTTOM_TWO(\"bd4-align-bottom-two\", '\\ue933'),\n    ALIGN_HORIZONTAL_CENTER_TWO(\"bd4-align-horizontal-center-two\", '\\ue934'),\n    ALIGN_HORIZONTALLY(\"bd4-align-horizontally\", '\\ue935'),\n    ALIGN_LEFT(\"bd4-align-left\", '\\ue936'),\n    ALIGN_LEFT_ONE(\"bd4-align-left-one\", '\\ue937'),\n    ALIGN_LEFT_TWO(\"bd4-align-left-two\", '\\ue938'),\n    ALIGNMENT_BOTTOM_CENTER(\"bd4-alignment-bottom-center\", '\\ue939'),\n    ALIGNMENT_BOTTOM_LEFT(\"bd4-alignment-bottom-left\", '\\ue93a'),\n    ALIGNMENT_BOTTOM_RIGHT(\"bd4-alignment-bottom-right\", '\\ue93b'),\n    ALIGNMENT_HORIZONTAL_BOTTOM(\"bd4-alignment-horizontal-bottom\", '\\ue93c'),\n    ALIGNMENT_HORIZONTAL_CENTER(\"bd4-alignment-horizontal-center\", '\\ue93d'),\n    ALIGNMENT_HORIZONTAL_TOP(\"bd4-alignment-horizontal-top\", '\\ue93e'),\n    ALIGNMENT_LEFT_BOTTOM(\"bd4-alignment-left-bottom\", '\\ue93f'),\n    ALIGNMENT_LEFT_CENTER(\"bd4-alignment-left-center\", '\\ue940'),\n    ALIGNMENT_LEFT_TOP(\"bd4-alignment-left-top\", '\\ue941'),\n    ALIGNMENT_RIGHT_BOTTOM(\"bd4-alignment-right-bottom\", '\\ue942'),\n    ALIGNMENT_RIGHT_CENTER(\"bd4-alignment-right-center\", '\\ue943'),\n    ALIGNMENT_RIGHT_TOP(\"bd4-alignment-right-top\", '\\ue944'),\n    ALIGNMENT_TOP_CENTER(\"bd4-alignment-top-center\", '\\ue945'),\n    ALIGNMENT_TOP_LEFT(\"bd4-alignment-top-left\", '\\ue946'),\n    ALIGNMENT_TOP_RIGHT(\"bd4-alignment-top-right\", '\\ue947'),\n    ALIGNMENT_VERTICAL_CENTER(\"bd4-alignment-vertical-center\", '\\ue948'),\n    ALIGNMENT_VERTICAL_LEFT(\"bd4-alignment-vertical-left\", '\\ue949'),\n    ALIGNMENT_VERTICAL_RIGHT(\"bd4-alignment-vertical-right\", '\\ue94a'),\n    ALIGN_RIGHT(\"bd4-align-right\", '\\ue94b'),\n    ALIGN_RIGHT_ONE(\"bd4-align-right-one\", '\\ue94c'),\n    ALIGN_RIGHT_TWO(\"bd4-align-right-two\", '\\ue94d'),\n    ALIGN_TEXT_BOTH(\"bd4-align-text-both\", '\\ue94e'),\n    ALIGN_TEXT_BOTH_ONE(\"bd4-align-text-both-one\", '\\ue94f'),\n    ALIGN_TEXT_BOTTOM(\"bd4-align-text-bottom\", '\\ue950'),\n    ALIGN_TEXT_BOTTOM_ONE(\"bd4-align-text-bottom-one\", '\\ue951'),\n    ALIGN_TEXT_CENTER(\"bd4-align-text-center\", '\\ue952'),\n    ALIGN_TEXT_CENTER_ONE(\"bd4-align-text-center-one\", '\\ue953'),\n    ALIGN_TEXT_LEFT(\"bd4-align-text-left\", '\\ue954'),\n    ALIGN_TEXT_LEFT_ONE(\"bd4-align-text-left-one\", '\\ue955'),\n    ALIGN_TEXT_MIDDLE(\"bd4-align-text-middle\", '\\ue956'),\n    ALIGN_TEXT_MIDDLE_ONE(\"bd4-align-text-middle-one\", '\\ue957'),\n    ALIGN_TEXT_RIGHT(\"bd4-align-text-right\", '\\ue958'),\n    ALIGN_TEXT_RIGHT_ONE(\"bd4-align-text-right-one\", '\\ue959'),\n    ALIGN_TEXT_TOP(\"bd4-align-text-top\", '\\ue95a'),\n    ALIGN_TEXT_TOP_ONE(\"bd4-align-text-top-one\", '\\ue95b'),\n    ALIGN_TOP(\"bd4-align-top\", '\\ue95c'),\n    ALIGN_TOP_TWO(\"bd4-align-top-two\", '\\ue95d'),\n    ALIGN_VERTICAL_CENTER_TWO(\"bd4-align-vertical-center-two\", '\\ue95e'),\n    ALIGN_VERTICALLY(\"bd4-align-vertically\", '\\ue95f'),\n    ALIPAY(\"bd4-alipay\", '\\ue960'),\n    ALL_APPLICATION(\"bd4-all-application\", '\\ue961'),\n    ALPHABETICAL_SORTING(\"bd4-alphabetical-sorting\", '\\ue962'),\n    ALPHABETICAL_SORTING_TWO(\"bd4-alphabetical-sorting-two\", '\\ue963'),\n    AMBULANCE(\"bd4-ambulance\", '\\ue964'),\n    ANALYSIS(\"bd4-analysis\", '\\ue965'),\n    ANCHOR(\"bd4-anchor\", '\\ue966'),\n    ANCHOR_ONE(\"bd4-anchor-one\", '\\ue967'),\n    ANCHOR_ROUND(\"bd4-anchor-round\", '\\ue968'),\n    ANCHOR_SQURE(\"bd4-anchor-squre\", '\\ue969'),\n    ANCHOR_TWO(\"bd4-anchor-two\", '\\ue96a'),\n    ANDROID(\"bd4-android\", '\\ue96b'),\n    ANGRY_FACE(\"bd4-angry-face\", '\\ue96c'),\n    ANGUISHED_FACE(\"bd4-anguished-face\", '\\ue96d'),\n    ANNOUNCEMENT(\"bd4-announcement\", '\\ue96e'),\n    ANTI_CORROSION(\"bd4-anti-corrosion\", '\\ue96f'),\n    APERTURE_PRIORITY(\"bd4-aperture-priority\", '\\ue970'),\n    API(\"bd4-api\", '\\ue971'),\n    API_APP(\"bd4-api-app\", '\\ue972'),\n    APPLE(\"bd4-apple\", '\\ue973'),\n    APPLE_ONE(\"bd4-apple-one\", '\\ue974'),\n    APPLET_CLOSED(\"bd4-applet-closed\", '\\ue975'),\n    APPLICATION(\"bd4-application\", '\\ue976'),\n    APPLICATION_EFFECT(\"bd4-application-effect\", '\\ue977'),\n    APPLICATION_MENU(\"bd4-application-menu\", '\\ue978'),\n    APPLICATION_ONE(\"bd4-application-one\", '\\ue979'),\n    APPLICATION_TWO(\"bd4-application-two\", '\\ue97a'),\n    APPOINTMENT(\"bd4-appointment\", '\\ue97b'),\n    APP_STORE(\"bd4-app-store\", '\\ue97c'),\n    APP_SWITCH(\"bd4-app-switch\", '\\ue97d'),\n    AQUARIUS(\"bd4-aquarius\", '\\ue97e'),\n    ARC_DE_TRIOMPHE(\"bd4-arc-de-triomphe\", '\\ue97f'),\n    ARCHERS_BOW(\"bd4-archers-bow\", '\\ue980'),\n    ARCHERY(\"bd4-archery\", '\\ue981'),\n    AREA_MAP(\"bd4-area-map\", '\\ue982'),\n    ARENA(\"bd4-arena\", '\\ue983'),\n    ARIES(\"bd4-aries\", '\\ue984'),\n    ARITHMETIC(\"bd4-arithmetic\", '\\ue985'),\n    ARITHMETIC_BUTTONS(\"bd4-arithmetic-buttons\", '\\ue986'),\n    ARITHMETIC_ONE(\"bd4-arithmetic-one\", '\\ue987'),\n    ARROW_CIRCLE_DOWN(\"bd4-arrow-circle-down\", '\\ue988'),\n    ARROW_CIRCLE_LEFT(\"bd4-arrow-circle-left\", '\\ue989'),\n    ARROW_CIRCLE_RIGHT(\"bd4-arrow-circle-right\", '\\ue98a'),\n    ARROW_CIRCLE_UP(\"bd4-arrow-circle-up\", '\\ue98b'),\n    ARROW_DOWN(\"bd4-arrow-down\", '\\ue98c'),\n    ARROW_KEYS(\"bd4-arrow-keys\", '\\ue98d'),\n    ARROW_LEFT(\"bd4-arrow-left\", '\\ue98e'),\n    ARROW_LEFT_DOWN(\"bd4-arrow-left-down\", '\\ue98f'),\n    ARROW_LEFT_UP(\"bd4-arrow-left-up\", '\\ue990'),\n    ARROW_RIGHT(\"bd4-arrow-right\", '\\ue991'),\n    ARROW_RIGHT_DOWN(\"bd4-arrow-right-down\", '\\ue992'),\n    ARROW_RIGHT_UP(\"bd4-arrow-right-up\", '\\ue993'),\n    ARROW_UP(\"bd4-arrow-up\", '\\ue994'),\n    ASSEMBLY_LINE(\"bd4-assembly-line\", '\\ue995'),\n    ASSOCIATION(\"bd4-association\", '\\ue996'),\n    ASTERISK(\"bd4-asterisk\", '\\ue997'),\n    ASTERISK_KEY(\"bd4-asterisk-key\", '\\ue998'),\n    ASTONISHED_FACE(\"bd4-astonished-face\", '\\ue999'),\n    AT_SIGN(\"bd4-at-sign\", '\\ue99a'),\n    ATTENTION(\"bd4-attention\", '\\ue99b'),\n    AUDIO_FILE(\"bd4-audio-file\", '\\ue99c'),\n    AUDIT(\"bd4-audit\", '\\ue99d'),\n    AUTO_FOCUS(\"bd4-auto-focus\", '\\ue99e'),\n    AUTO_HEIGHT_ONE(\"bd4-auto-height-one\", '\\ue99f'),\n    AUTO_LINE_HEIGHT(\"bd4-auto-line-height\", '\\ue9a0'),\n    AUTO_LINE_WIDTH(\"bd4-auto-line-width\", '\\ue9a1'),\n    AUTO_WIDTH(\"bd4-auto-width\", '\\ue9a2'),\n    AUTO_WIDTH_ONE(\"bd4-auto-width-one\", '\\ue9a3'),\n    AVATAR(\"bd4-avatar\", '\\ue9a4'),\n    AVERAGE(\"bd4-average\", '\\ue9a5'),\n    AVIATION(\"bd4-aviation\", '\\ue9a6'),\n    AVOCADO(\"bd4-avocado\", '\\ue9a7'),\n    AVOCADO_ONE(\"bd4-avocado-one\", '\\ue9a8'),\n    BABY(\"bd4-baby\", '\\ue9a9'),\n    BABY_APP(\"bd4-baby-app\", '\\ue9aa'),\n    BABY_BOTTLE(\"bd4-baby-bottle\", '\\ue9ab'),\n    BABY_CAR_SEAT(\"bd4-baby-car-seat\", '\\ue9ac'),\n    BABY_FEET(\"bd4-baby-feet\", '\\ue9ad'),\n    BABY_MEAL(\"bd4-baby-meal\", '\\ue9ae'),\n    BABY_MOBILE(\"bd4-baby-mobile\", '\\ue9af'),\n    BABY_ONE(\"bd4-baby-one\", '\\ue9b0'),\n    BABY_PANTS(\"bd4-baby-pants\", '\\ue9b1'),\n    BABY_SLING(\"bd4-baby-sling\", '\\ue9b2'),\n    BABY_TASTE(\"bd4-baby-taste\", '\\ue9b3'),\n    BACHELOR_CAP(\"bd4-bachelor-cap\", '\\ue9b4'),\n    BACHELOR_CAP_ONE(\"bd4-bachelor-cap-one\", '\\ue9b5'),\n    BACHELOR_CAP_TWO(\"bd4-bachelor-cap-two\", '\\ue9b6'),\n    BACK(\"bd4-back\", '\\ue9b7'),\n    BACKGROUND_COLOR(\"bd4-background-color\", '\\ue9b8'),\n    BACK_ONE(\"bd4-back-one\", '\\ue9b9'),\n    BACKPACK(\"bd4-backpack\", '\\ue9ba'),\n    BAD(\"bd4-bad\", '\\ue9bb'),\n    BADGE(\"bd4-badge\", '\\ue9bc'),\n    BADGE_TWO(\"bd4-badge-two\", '\\ue9bd'),\n    BADMINTON(\"bd4-badminton\", '\\ue9be'),\n    BAD_ONE(\"bd4-bad-one\", '\\ue9bf'),\n    BAD_TWO(\"bd4-bad-two\", '\\ue9c0'),\n    BAGGAGE_DELAY(\"bd4-baggage-delay\", '\\ue9c1'),\n    BALANCE(\"bd4-balance\", '\\ue9c2'),\n    BALANCE_ONE(\"bd4-balance-one\", '\\ue9c3'),\n    BALANCE_TWO(\"bd4-balance-two\", '\\ue9c4'),\n    BANANA(\"bd4-banana\", '\\ue9c5'),\n    BANK(\"bd4-bank\", '\\ue9c6'),\n    BANK_CARD(\"bd4-bank-card\", '\\ue9c7'),\n    BANK_CARD_ONE(\"bd4-bank-card-one\", '\\ue9c8'),\n    BANK_CARD_TWO(\"bd4-bank-card-two\", '\\ue9c9'),\n    BANK_TRANSFER(\"bd4-bank-transfer\", '\\ue9ca'),\n    BAOKEMENG(\"bd4-baokemeng\", '\\ue9cb'),\n    BARBECUE(\"bd4-barbecue\", '\\ue9cc'),\n    BARBER_BRUSH(\"bd4-barber-brush\", '\\ue9cd'),\n    BARBER_CLIPPERS(\"bd4-barber-clippers\", '\\ue9ce'),\n    BAR_CODE(\"bd4-bar-code\", '\\ue9cf'),\n    BASEBALL(\"bd4-baseball\", '\\ue9d0'),\n    BASEBALL_BAT(\"bd4-baseball-bat\", '\\ue9d1'),\n    BASEBALL_CAP(\"bd4-baseball-cap\", '\\ue9d2'),\n    BASKETBALL(\"bd4-basketball\", '\\ue9d3'),\n    BASKETBALL_CLOTHES(\"bd4-basketball-clothes\", '\\ue9d4'),\n    BASKETBALL_ONE(\"bd4-basketball-one\", '\\ue9d5'),\n    BASKETBALL_STAND(\"bd4-basketball-stand\", '\\ue9d6'),\n    BAT(\"bd4-bat\", '\\ue9d7'),\n    BATTERY_CHARGE(\"bd4-battery-charge\", '\\ue9d8'),\n    BATTERY_EMPTY(\"bd4-battery-empty\", '\\ue9d9'),\n    BATTERY_FAILURE(\"bd4-battery-failure\", '\\ue9da'),\n    BATTERY_FULL(\"bd4-battery-full\", '\\ue9db'),\n    BATTERY_STORAGE(\"bd4-battery-storage\", '\\ue9dc'),\n    BATTERY_TIPS(\"bd4-battery-tips\", '\\ue9dd'),\n    BATTERY_WORKING(\"bd4-battery-working\", '\\ue9de'),\n    BATTERY_WORKING_ONE(\"bd4-battery-working-one\", '\\ue9df'),\n    BEACH_UMBRELLA(\"bd4-beach-umbrella\", '\\ue9e0'),\n    BEAR(\"bd4-bear\", '\\ue9e1'),\n    BEAUTY(\"bd4-beauty\", '\\ue9e2'),\n    BEAUTY_INSTRUMENT(\"bd4-beauty-instrument\", '\\ue9e3'),\n    BEDSIDE(\"bd4-bedside\", '\\ue9e4'),\n    BEDSIDE_TWO(\"bd4-bedside-two\", '\\ue9e5'),\n    BEE(\"bd4-bee\", '\\ue9e6'),\n    BEER(\"bd4-beer\", '\\ue9e7'),\n    BEER_MUG(\"bd4-beer-mug\", '\\ue9e8'),\n    BEHANCE(\"bd4-behance\", '\\ue9e9'),\n    BELL_RING(\"bd4-bell-ring\", '\\ue9ea'),\n    BELT(\"bd4-belt\", '\\ue9eb'),\n    BENZ(\"bd4-benz\", '\\ue9ec'),\n    BEZIER_CURVE(\"bd4-bezier-curve\", '\\ue9ed'),\n    BIB(\"bd4-bib\", '\\ue9ee'),\n    BIG_CLOCK(\"bd4-big-clock\", '\\ue9ef'),\n    BIG_X(\"bd4-big-x\", '\\ue9f0'),\n    BIKE(\"bd4-bike\", '\\ue9f1'),\n    BILL(\"bd4-bill\", '\\ue9f2'),\n    BIRD(\"bd4-bird\", '\\ue9f3'),\n    BIRTHDAY_CAKE(\"bd4-birthday-cake\", '\\ue9f4'),\n    BITCOIN(\"bd4-bitcoin\", '\\ue9f5'),\n    BLACKBOARD(\"bd4-blackboard\", '\\ue9f6'),\n    BLACK_EIGHT(\"bd4-black-eight\", '\\ue9f7'),\n    BLADE(\"bd4-blade\", '\\ue9f8'),\n    BLESS(\"bd4-bless\", '\\ue9f9'),\n    BLOCK(\"bd4-block\", '\\ue9fa'),\n    BLOCKCHAIN(\"bd4-blockchain\", '\\ue9fb'),\n    BLOCK_EIGHT(\"bd4-block-eight\", '\\ue9fc'),\n    BLOCK_FIVE(\"bd4-block-five\", '\\ue9fd'),\n    BLOCK_FOUR(\"bd4-block-four\", '\\ue9fe'),\n    BLOCK_NINE(\"bd4-block-nine\", '\\ue9ff'),\n    BLOCK_ONE(\"bd4-block-one\", '\\uea00'),\n    BLOCKS_AND_ARROWS(\"bd4-blocks-and-arrows\", '\\uea01'),\n    BLOCK_SEVEN(\"bd4-block-seven\", '\\uea02'),\n    BLOCK_SIX(\"bd4-block-six\", '\\uea03'),\n    BLOCK_TEN(\"bd4-block-ten\", '\\uea04'),\n    BLOCK_THREE(\"bd4-block-three\", '\\uea05'),\n    BLOCK_TWO(\"bd4-block-two\", '\\uea06'),\n    BLOOM(\"bd4-bloom\", '\\uea07'),\n    BLOSSOM(\"bd4-blossom\", '\\uea08'),\n    BLUETOOTH(\"bd4-bluetooth\", '\\uea09'),\n    BOILER(\"bd4-boiler\", '\\uea0a'),\n    BOLT_ONE(\"bd4-bolt-one\", '\\uea0b'),\n    BONE(\"bd4-bone\", '\\uea0c'),\n    BOOK(\"bd4-book\", '\\uea0d'),\n    BOOKMARK(\"bd4-bookmark\", '\\uea0e'),\n    BOOKMARK_ONE(\"bd4-bookmark-one\", '\\uea0f'),\n    BOOKMARK_THREE(\"bd4-bookmark-three\", '\\uea10'),\n    BOOK_ONE(\"bd4-book-one\", '\\uea11'),\n    BOOK_OPEN(\"bd4-book-open\", '\\uea12'),\n    BOOKSHELF(\"bd4-bookshelf\", '\\uea13'),\n    BOOSTER_CAR_SEAT(\"bd4-booster-car-seat\", '\\uea14'),\n    BOOTH(\"bd4-booth\", '\\uea15'),\n    BOOTS(\"bd4-boots\", '\\uea16'),\n    BOTTLE(\"bd4-bottle\", '\\uea17'),\n    BOTTLE_ONE(\"bd4-bottle-one\", '\\uea18'),\n    BOTTLE_THREE(\"bd4-bottle-three\", '\\uea19'),\n    BOTTLE_TWO(\"bd4-bottle-two\", '\\uea1a'),\n    BOTTOM_BAR(\"bd4-bottom-bar\", '\\uea1b'),\n    BOTTOM_BAR_ONE(\"bd4-bottom-bar-one\", '\\uea1c'),\n    BOW(\"bd4-bow\", '\\uea1d'),\n    BOWL(\"bd4-bowl\", '\\uea1e'),\n    BOWLING(\"bd4-bowling\", '\\uea1f'),\n    BOWL_ONE(\"bd4-bowl-one\", '\\uea20'),\n    BOX(\"bd4-box\", '\\uea21'),\n    BOXING(\"bd4-boxing\", '\\uea22'),\n    BOXING_ONE(\"bd4-boxing-one\", '\\uea23'),\n    BOY(\"bd4-boy\", '\\uea24'),\n    BOY_ONE(\"bd4-boy-one\", '\\uea25'),\n    BOY_STROLLER(\"bd4-boy-stroller\", '\\uea26'),\n    BOY_TWO(\"bd4-boy-two\", '\\uea27'),\n    BRAIN(\"bd4-brain\", '\\uea28'),\n    BRAKE_PADS(\"bd4-brake-pads\", '\\uea29'),\n    BRANCH(\"bd4-branch\", '\\uea2a'),\n    BRANCH_ONE(\"bd4-branch-one\", '\\uea2b'),\n    BRANCH_TWO(\"bd4-branch-two\", '\\uea2c'),\n    BRDIGE_THREE(\"bd4-brdige-three\", '\\uea2d'),\n    BREAD(\"bd4-bread\", '\\uea2e'),\n    BREAD_MACHINE(\"bd4-bread-machine\", '\\uea2f'),\n    BREAD_ONE(\"bd4-bread-one\", '\\uea30'),\n    BREAST_PUMP(\"bd4-breast-pump\", '\\uea31'),\n    BRIDGE_ONE(\"bd4-bridge-one\", '\\uea32'),\n    BRIDGE_TWO(\"bd4-bridge-two\", '\\uea33'),\n    BRIEFCASE(\"bd4-briefcase\", '\\uea34'),\n    BRIGHTNESS(\"bd4-brightness\", '\\uea35'),\n    BRING_FORWARD(\"bd4-bring-forward\", '\\uea36'),\n    BRING_TO_FRONT(\"bd4-bring-to-front\", '\\uea37'),\n    BRING_TO_FRONT_ONE(\"bd4-bring-to-front-one\", '\\uea38'),\n    BROADCAST(\"bd4-broadcast\", '\\uea39'),\n    BROADCAST_ONE(\"bd4-broadcast-one\", '\\uea3a'),\n    BROADCAST_RADIO(\"bd4-broadcast-radio\", '\\uea3b'),\n    BROWSER(\"bd4-browser\", '\\uea3c'),\n    BROWSER_CHROME(\"bd4-browser-chrome\", '\\uea3d'),\n    BROWSER_SAFARI(\"bd4-browser-safari\", '\\uea3e'),\n    BUBBLE_CHART(\"bd4-bubble-chart\", '\\uea3f'),\n    BUG(\"bd4-bug\", '\\uea40'),\n    BUILDING_FOUR(\"bd4-building-four\", '\\uea41'),\n    BUILDING_ONE(\"bd4-building-one\", '\\uea42'),\n    BUILDING_THREE(\"bd4-building-three\", '\\uea43'),\n    BUILDING_TWO(\"bd4-building-two\", '\\uea44'),\n    BULLET_MAP(\"bd4-bullet-map\", '\\uea45'),\n    BUS(\"bd4-bus\", '\\uea46'),\n    BUS_ONE(\"bd4-bus-one\", '\\uea47'),\n    BUS_TWO(\"bd4-bus-two\", '\\uea48'),\n    BUTTERFLY(\"bd4-butterfly\", '\\uea49'),\n    BUY(\"bd4-buy\", '\\uea4a'),\n    BYDESIGN(\"bd4-bydesign\", '\\uea4b'),\n    BYE(\"bd4-bye\", '\\uea4c'),\n    BYTEDANCE(\"bd4-bytedance\", '\\uea4d'),\n    BYTEDANCE_APPLETS(\"bd4-bytedance-applets\", '\\uea4e'),\n    BYTEDANCE_MINI_APP(\"bd4-bytedance-mini-app\", '\\uea4f'),\n    CABLE_CAR(\"bd4-cable-car\", '\\uea50'),\n    CACTUS(\"bd4-cactus\", '\\uea51'),\n    CAKE(\"bd4-cake\", '\\uea52'),\n    CAKE_FIVE(\"bd4-cake-five\", '\\uea53'),\n    CAKE_FOUR(\"bd4-cake-four\", '\\uea54'),\n    CAKE_ONE(\"bd4-cake-one\", '\\uea55'),\n    CAKE_THREE(\"bd4-cake-three\", '\\uea56'),\n    CAKE_TWO(\"bd4-cake-two\", '\\uea57'),\n    CALCULATOR(\"bd4-calculator\", '\\uea58'),\n    CALCULATOR_ONE(\"bd4-calculator-one\", '\\uea59'),\n    CALENDAR(\"bd4-calendar\", '\\uea5a'),\n    CALENDAR_DOT(\"bd4-calendar-dot\", '\\uea5b'),\n    CALENDAR_THIRTY(\"bd4-calendar-thirty\", '\\uea5c'),\n    CALENDAR_THIRTY_TWO(\"bd4-calendar-thirty-two\", '\\uea5d'),\n    CALENDAR_THREE(\"bd4-calendar-three\", '\\uea5e'),\n    CAMERA(\"bd4-camera\", '\\uea5f'),\n    CAMERA_FIVE(\"bd4-camera-five\", '\\uea60'),\n    CAMERA_FOUR(\"bd4-camera-four\", '\\uea61'),\n    CAMERA_ONE(\"bd4-camera-one\", '\\uea62'),\n    CAMERA_THREE(\"bd4-camera-three\", '\\uea63'),\n    CAMERA_TWO(\"bd4-camera-two\", '\\uea64'),\n    CAMP(\"bd4-camp\", '\\uea65'),\n    CANCER(\"bd4-cancer\", '\\uea66'),\n    CANDY(\"bd4-candy\", '\\uea67'),\n    CANNED_FRUIT(\"bd4-canned-fruit\", '\\uea68'),\n    CAPRICORNUS(\"bd4-capricornus\", '\\uea69'),\n    CAR(\"bd4-car\", '\\uea6a'),\n    CAR_BATTERY(\"bd4-car-battery\", '\\uea6b'),\n    CARDIOELECTRIC(\"bd4-cardioelectric\", '\\uea6c'),\n    CARD_TWO(\"bd4-card-two\", '\\uea6d'),\n    CAROUSEL(\"bd4-carousel\", '\\uea6e'),\n    CAROUSEL_VIDEO(\"bd4-carousel-video\", '\\uea6f'),\n    CARROT(\"bd4-carrot\", '\\uea70'),\n    CASTLE(\"bd4-castle\", '\\uea71'),\n    CAST_SCREEN(\"bd4-cast-screen\", '\\uea72'),\n    CAT(\"bd4-cat\", '\\uea73'),\n    CATEGORY_MANAGEMENT(\"bd4-category-management\", '\\uea74'),\n    CATTLE(\"bd4-cattle\", '\\uea75'),\n    CATTLE_ZODIAC(\"bd4-cattle-zodiac\", '\\uea76'),\n    CAUTION(\"bd4-caution\", '\\uea77'),\n    CC(\"bd4-cc\", '\\uea78'),\n    CD(\"bd4-cd\", '\\uea79'),\n    CELL(\"bd4-cell\", '\\uea7a'),\n    CE_MARKING(\"bd4-ce-marking\", '\\uea7b'),\n    CENTER_ALIGNMENT(\"bd4-center-alignment\", '\\uea7c'),\n    CERTIFICATE(\"bd4-certificate\", '\\uea7d'),\n    CHAFING_DISH(\"bd4-chafing-dish\", '\\uea7e'),\n    CHAFING_DISH_ONE(\"bd4-chafing-dish-one\", '\\uea7f'),\n    CHAIR(\"bd4-chair\", '\\uea80'),\n    CHAIR_ONE(\"bd4-chair-one\", '\\uea81'),\n    CHANGE(\"bd4-change\", '\\uea82'),\n    CHANGE_DATE_SORT(\"bd4-change-date-sort\", '\\uea83'),\n    CHARGING_TREASURE(\"bd4-charging-treasure\", '\\uea84'),\n    CHART_GRAPH(\"bd4-chart-graph\", '\\uea85'),\n    CHART_HISTOGRAM(\"bd4-chart-histogram\", '\\uea86'),\n    CHART_HISTOGRAM_ONE(\"bd4-chart-histogram-one\", '\\uea87'),\n    CHART_HISTOGRAM_TWO(\"bd4-chart-histogram-two\", '\\uea88'),\n    CHART_LINE(\"bd4-chart-line\", '\\uea89'),\n    CHART_LINE_AREA(\"bd4-chart-line-area\", '\\uea8a'),\n    CHART_PIE(\"bd4-chart-pie\", '\\uea8b'),\n    CHART_PIE_ONE(\"bd4-chart-pie-one\", '\\uea8c'),\n    CHART_PROPORTION(\"bd4-chart-proportion\", '\\uea8d'),\n    CHART_RING(\"bd4-chart-ring\", '\\uea8e'),\n    CHART_SCATTER(\"bd4-chart-scatter\", '\\uea8f'),\n    CHART_STOCK(\"bd4-chart-stock\", '\\uea90'),\n    CHECK(\"bd4-check\", '\\uea91'),\n    CHECKBOX(\"bd4-checkbox\", '\\uea92'),\n    CHECK_CORRECT(\"bd4-check-correct\", '\\uea93'),\n    CHECKERBOARD(\"bd4-checkerboard\", '\\uea94'),\n    CHECK_IN(\"bd4-check-in\", '\\uea95'),\n    CHECKLIST(\"bd4-checklist\", '\\uea96'),\n    CHECK_ONE(\"bd4-check-one\", '\\uea97'),\n    CHECK_SMALL(\"bd4-check-small\", '\\uea98'),\n    CHEESE(\"bd4-cheese\", '\\uea99'),\n    CHEF_HAT(\"bd4-chef-hat\", '\\uea9a'),\n    CHEF_HAT_ONE(\"bd4-chef-hat-one\", '\\uea9b'),\n    CHERRY(\"bd4-cherry\", '\\uea9c'),\n    CHESS(\"bd4-chess\", '\\uea9d'),\n    CHESS_ONE(\"bd4-chess-one\", '\\uea9e'),\n    CHEST(\"bd4-chest\", '\\uea9f'),\n    CHICKEN(\"bd4-chicken\", '\\ueaa0'),\n    CHICKEN_LEG(\"bd4-chicken-leg\", '\\ueaa1'),\n    CHICKEN_ZODIAC(\"bd4-chicken-zodiac\", '\\ueaa2'),\n    CHILDREN_CAP(\"bd4-children-cap\", '\\ueaa3'),\n    CHILDREN_PYRAMID(\"bd4-children-pyramid\", '\\ueaa4'),\n    CHILD_WITH_PACIFIER(\"bd4-child-with-pacifier\", '\\ueaa5'),\n    CHILI(\"bd4-chili\", '\\ueaa6'),\n    CHIMNEY(\"bd4-chimney\", '\\ueaa7'),\n    CHINESE(\"bd4-chinese\", '\\ueaa8'),\n    CHINESE_ONE(\"bd4-chinese-one\", '\\ueaa9'),\n    CHINESE_PAVILION(\"bd4-chinese-pavilion\", '\\ueaaa'),\n    CHIP(\"bd4-chip\", '\\ueaab'),\n    CHOPPING_BOARD(\"bd4-chopping-board\", '\\ueaac'),\n    CHOPSTICKS_FORK(\"bd4-chopsticks-fork\", '\\ueaad'),\n    CHRISTMAS_TREE(\"bd4-christmas-tree\", '\\ueaae'),\n    CHRISTMAS_TREE_ONE(\"bd4-christmas-tree-one\", '\\ueaaf'),\n    CHURCH_ONE(\"bd4-church-one\", '\\ueab0'),\n    CHURCH_TWO(\"bd4-church-two\", '\\ueab1'),\n    CIRCLE_DOUBLE_DOWN(\"bd4-circle-double-down\", '\\ueab2'),\n    CIRCLE_DOUBLE_LEFT(\"bd4-circle-double-left\", '\\ueab3'),\n    CIRCLE_DOUBLE_RIGHT(\"bd4-circle-double-right\", '\\ueab4'),\n    CIRCLE_DOUBLE_UP(\"bd4-circle-double-up\", '\\ueab5'),\n    CIRCLE_FIVE_LINE(\"bd4-circle-five-line\", '\\ueab6'),\n    CIRCLE_FOUR(\"bd4-circle-four\", '\\ueab7'),\n    CIRCLE_FOUR_LINE(\"bd4-circle-four-line\", '\\ueab8'),\n    CIRCLE_HOUSE(\"bd4-circle-house\", '\\ueab9'),\n    CIRCLE_LEFT_DOWN(\"bd4-circle-left-down\", '\\ueaba'),\n    CIRCLE_LEFT_UP(\"bd4-circle-left-up\", '\\ueabb'),\n    CIRCLE_RIGHT_DOWN(\"bd4-circle-right-down\", '\\ueabc'),\n    CIRCLE_RIGHT_UP(\"bd4-circle-right-up\", '\\ueabd'),\n    CIRCLES_AND_TRIANGLES(\"bd4-circles-and-triangles\", '\\ueabe'),\n    CIRCLES_SEVEN(\"bd4-circles-seven\", '\\ueabf'),\n    CIRCLE_THREE(\"bd4-circle-three\", '\\ueac0'),\n    CIRCLE_TWO_LINE(\"bd4-circle-two-line\", '\\ueac1'),\n    CIRCULAR_CONNECTION(\"bd4-circular-connection\", '\\ueac2'),\n    CIRCUS(\"bd4-circus\", '\\ueac3'),\n    CITY(\"bd4-city\", '\\ueac4'),\n    CITY_GATE(\"bd4-city-gate\", '\\ueac5'),\n    CITY_ONE(\"bd4-city-one\", '\\ueac6'),\n    CLAP(\"bd4-clap\", '\\ueac7'),\n    CLASSROOM(\"bd4-classroom\", '\\ueac8'),\n    CLEAR(\"bd4-clear\", '\\ueac9'),\n    CLEAR_FORMAT(\"bd4-clear-format\", '\\ueaca'),\n    CLICK(\"bd4-click\", '\\ueacb'),\n    CLICK_TAP(\"bd4-click-tap\", '\\ueacc'),\n    CLICK_TAP_TWO(\"bd4-click-tap-two\", '\\ueacd'),\n    CLICK_TO_FOLD(\"bd4-click-to-fold\", '\\ueace'),\n    CLIPBOARD(\"bd4-clipboard\", '\\ueacf'),\n    CLOCK_TOWER(\"bd4-clock-tower\", '\\uead0'),\n    CLOSE(\"bd4-close\", '\\uead1'),\n    CLOSE_ONE(\"bd4-close-one\", '\\uead2'),\n    CLOSE_REMIND(\"bd4-close-remind\", '\\uead3'),\n    CLOSE_SMALL(\"bd4-close-small\", '\\uead4'),\n    CLOSE_WIFI(\"bd4-close-wifi\", '\\uead5'),\n    CLOTHES_BRIEFS(\"bd4-clothes-briefs\", '\\uead6'),\n    CLOTHES_CARDIGAN(\"bd4-clothes-cardigan\", '\\uead7'),\n    CLOTHES_CREW_NECK(\"bd4-clothes-crew-neck\", '\\uead8'),\n    CLOTHES_DIAPERS(\"bd4-clothes-diapers\", '\\uead9'),\n    CLOTHES_GLOVES(\"bd4-clothes-gloves\", '\\ueada'),\n    CLOTHES_GLOVES_TWO(\"bd4-clothes-gloves-two\", '\\ueadb'),\n    CLOTHES_HOODIE(\"bd4-clothes-hoodie\", '\\ueadc'),\n    CLOTHES_PANTS(\"bd4-clothes-pants\", '\\ueadd'),\n    CLOTHES_PANTS_SHORT(\"bd4-clothes-pants-short\", '\\ueade'),\n    CLOTHES_PANTS_SWEAT(\"bd4-clothes-pants-sweat\", '\\ueadf'),\n    CLOTHES_SHORT_SLEEVE(\"bd4-clothes-short-sleeve\", '\\ueae0'),\n    CLOTHES_SKATES(\"bd4-clothes-skates\", '\\ueae1'),\n    CLOTHES_SUIT(\"bd4-clothes-suit\", '\\ueae2'),\n    CLOTHES_SWEATER(\"bd4-clothes-sweater\", '\\ueae3'),\n    CLOTHES_TURTLENECK(\"bd4-clothes-turtleneck\", '\\ueae4'),\n    CLOTHES_WINDBREAKER(\"bd4-clothes-windbreaker\", '\\ueae5'),\n    CLOUD_STORAGE(\"bd4-cloud-storage\", '\\ueae6'),\n    CLOUDY(\"bd4-cloudy\", '\\ueae7'),\n    CLOUDY_NIGHT(\"bd4-cloudy-night\", '\\ueae8'),\n    CLUE(\"bd4-clue\", '\\ueae9'),\n    COAT_HANGER(\"bd4-coat-hanger\", '\\ueaea'),\n    COCKTAIL(\"bd4-cocktail\", '\\ueaeb'),\n    COCONUT_TREE(\"bd4-coconut-tree\", '\\ueaec'),\n    CODE(\"bd4-code\", '\\ueaed'),\n    CODE_BRACKETS(\"bd4-code-brackets\", '\\ueaee'),\n    CODE_COMPUTER(\"bd4-code-computer\", '\\ueaef'),\n    CODE_DOWNLOAD(\"bd4-code-download\", '\\ueaf0'),\n    CODE_LAPTOP(\"bd4-code-laptop\", '\\ueaf1'),\n    CODE_ONE(\"bd4-code-one\", '\\ueaf2'),\n    COFFEE_MACHINE(\"bd4-coffee-machine\", '\\ueaf3'),\n    COLA(\"bd4-cola\", '\\ueaf4'),\n    COLLAPSE_TEXT_INPUT(\"bd4-collapse-text-input\", '\\ueaf5'),\n    COLLECT_COMPUTER(\"bd4-collect-computer\", '\\ueaf6'),\n    COLLECTION_FILES(\"bd4-collection-files\", '\\ueaf7'),\n    COLLECTION_RECORDS(\"bd4-collection-records\", '\\ueaf8'),\n    COLLECT_LAPTOP(\"bd4-collect-laptop\", '\\ueaf9'),\n    COLLECT_PICTURE(\"bd4-collect-picture\", '\\ueafa'),\n    COLOR_CARD(\"bd4-color-card\", '\\ueafb'),\n    COLOR_FILTER(\"bd4-color-filter\", '\\ueafc'),\n    COLUMN(\"bd4-column\", '\\ueafd'),\n    COMB(\"bd4-comb\", '\\ueafe'),\n    COME(\"bd4-come\", '\\ueaff'),\n    COMMAND(\"bd4-command\", '\\ueb00'),\n    COMMENT(\"bd4-comment\", '\\ueb01'),\n    COMMENT_ONE(\"bd4-comment-one\", '\\ueb02'),\n    COMMENTS(\"bd4-comments\", '\\ueb03'),\n    COMMODITY(\"bd4-commodity\", '\\ueb04'),\n    COMMUNICATION(\"bd4-communication\", '\\ueb05'),\n    COMMUTER_BAG(\"bd4-commuter-bag\", '\\ueb06'),\n    COMPASS(\"bd4-compass\", '\\ueb07'),\n    COMPASS_ONE(\"bd4-compass-one\", '\\ueb08'),\n    COMPONENTS(\"bd4-components\", '\\ueb09'),\n    COMPOSITION(\"bd4-composition\", '\\ueb0a'),\n    COMPRESSION(\"bd4-compression\", '\\ueb0b'),\n    COMPUTER(\"bd4-computer\", '\\ueb0c'),\n    COMPUTER_ONE(\"bd4-computer-one\", '\\ueb0d'),\n    CONCEPT_SHARING(\"bd4-concept-sharing\", '\\ueb0e'),\n    CONCERN(\"bd4-concern\", '\\ueb0f'),\n    CONDITIONER(\"bd4-conditioner\", '\\ueb10'),\n    CONE(\"bd4-cone\", '\\ueb11'),\n    CONES(\"bd4-cones\", '\\ueb12'),\n    CONFIG(\"bd4-config\", '\\ueb13'),\n    CONFOUNDED_FACE(\"bd4-confounded-face\", '\\ueb14'),\n    CONFUSED_FACE(\"bd4-confused-face\", '\\ueb15'),\n    CONNECT(\"bd4-connect\", '\\ueb16'),\n    CONNECT_ADDRESS_ONE(\"bd4-connect-address-one\", '\\ueb17'),\n    CONNECT_ADDRESS_TWO(\"bd4-connect-address-two\", '\\ueb18'),\n    CONNECTION(\"bd4-connection\", '\\ueb19'),\n    CONNECTION_ARROW(\"bd4-connection-arrow\", '\\ueb1a'),\n    CONNECTION_BOX(\"bd4-connection-box\", '\\ueb1b'),\n    CONNECTION_POINT(\"bd4-connection-point\", '\\ueb1c'),\n    CONNECTION_POINT_TWO(\"bd4-connection-point-two\", '\\ueb1d'),\n    CONSIGNMENT(\"bd4-consignment\", '\\ueb1e'),\n    CONSUME(\"bd4-consume\", '\\ueb1f'),\n    CONTRAST(\"bd4-contrast\", '\\ueb20'),\n    CONTRAST_VIEW(\"bd4-contrast-view\", '\\ueb21'),\n    CONTRAST_VIEW_CIRCLE(\"bd4-contrast-view-circle\", '\\ueb22'),\n    CONTROL(\"bd4-control\", '\\ueb23'),\n    CONVERGING_GATEWAY(\"bd4-converging-gateway\", '\\ueb24'),\n    COOK(\"bd4-cook\", '\\ueb25'),\n    COOKING(\"bd4-cooking\", '\\ueb26'),\n    COOKING_POT(\"bd4-cooking-pot\", '\\ueb27'),\n    COOL(\"bd4-cool\", '\\ueb28'),\n    COOPERATIVE_HANDSHAKE(\"bd4-cooperative-handshake\", '\\ueb29'),\n    COORDINATE_SYSTEM(\"bd4-coordinate-system\", '\\ueb2a'),\n    COPY(\"bd4-copy\", '\\ueb2b'),\n    COPY_LINK(\"bd4-copy-link\", '\\ueb2c'),\n    COPY_ONE(\"bd4-copy-one\", '\\ueb2d'),\n    COPYRIGHT(\"bd4-copyright\", '\\ueb2e'),\n    CORNER_DOWN_LEFT(\"bd4-corner-down-left\", '\\ueb2f'),\n    CORNER_DOWN_RIGHT(\"bd4-corner-down-right\", '\\ueb30'),\n    CORNER_LEFT_DOWN(\"bd4-corner-left-down\", '\\ueb31'),\n    CORNER_LEFT_UP(\"bd4-corner-left-up\", '\\ueb32'),\n    CORNER_RIGHT_DOWN(\"bd4-corner-right-down\", '\\ueb33'),\n    CORNER_RIGHT_UP(\"bd4-corner-right-up\", '\\ueb34'),\n    CORNER_UP_LEFT(\"bd4-corner-up-left\", '\\ueb35'),\n    CORNER_UP_RIGHT(\"bd4-corner-up-right\", '\\ueb36'),\n    CORONAVIRUS(\"bd4-coronavirus\", '\\ueb37'),\n    CORRECT(\"bd4-correct\", '\\ueb38'),\n    COSMETIC_BRUSH(\"bd4-cosmetic-brush\", '\\ueb39'),\n    COUPON(\"bd4-coupon\", '\\ueb3a'),\n    COURT(\"bd4-court\", '\\ueb3b'),\n    CPU(\"bd4-cpu\", '\\ueb3c'),\n    CRAB(\"bd4-crab\", '\\ueb3d'),\n    CREATION_DATE_SORT(\"bd4-creation-date-sort\", '\\ueb3e'),\n    CREATIVE(\"bd4-creative\", '\\ueb3f'),\n    CREDIT(\"bd4-credit\", '\\ueb40'),\n    CRIB(\"bd4-crib\", '\\ueb41'),\n    CROISSANT(\"bd4-croissant\", '\\ueb42'),\n    CROSS_RING(\"bd4-cross-ring\", '\\ueb43'),\n    CROSS_RING_TWO(\"bd4-cross-ring-two\", '\\ueb44'),\n    CROSS_SOCIETY(\"bd4-cross-society\", '\\ueb45'),\n    CROWN(\"bd4-crown\", '\\ueb46'),\n    CROWN_THREE(\"bd4-crown-three\", '\\ueb47'),\n    CROWN_TWO(\"bd4-crown-two\", '\\ueb48'),\n    CRUISE(\"bd4-cruise\", '\\ueb49'),\n    CRYING_BABY(\"bd4-crying-baby\", '\\ueb4a'),\n    CUBE(\"bd4-cube\", '\\ueb4b'),\n    CUBE_FIVE(\"bd4-cube-five\", '\\ueb4c'),\n    CUBE_FOUR(\"bd4-cube-four\", '\\ueb4d'),\n    CUBE_THREE(\"bd4-cube-three\", '\\ueb4e'),\n    CUBE_TWO(\"bd4-cube-two\", '\\ueb4f'),\n    CUP(\"bd4-cup\", '\\ueb50'),\n    CUP_FOUR(\"bd4-cup-four\", '\\ueb51'),\n    CUP_ONE(\"bd4-cup-one\", '\\ueb52'),\n    CURLING(\"bd4-curling\", '\\ueb53'),\n    CURRENCY(\"bd4-currency\", '\\ueb54'),\n    CURVE_ADJUSTMENT(\"bd4-curve-adjustment\", '\\ueb55'),\n    CUSTOMER(\"bd4-customer\", '\\ueb56'),\n    CUTTING(\"bd4-cutting\", '\\ueb57'),\n    CUTTING_ONE(\"bd4-cutting-one\", '\\ueb58'),\n    CUVETTE(\"bd4-cuvette\", '\\ueb59'),\n    CYCLE(\"bd4-cycle\", '\\ueb5a'),\n    CYCLE_ARROW(\"bd4-cycle-arrow\", '\\ueb5b'),\n    CYCLE_MOVEMENT(\"bd4-cycle-movement\", '\\ueb5c'),\n    CYCLE_ONE(\"bd4-cycle-one\", '\\ueb5d'),\n    CYLINDER(\"bd4-cylinder\", '\\ueb5e'),\n    DAMAGE_MAP(\"bd4-damage-map\", '\\ueb5f'),\n    DARK_MODE(\"bd4-dark-mode\", '\\ueb60'),\n    DASHBOARD(\"bd4-dashboard\", '\\ueb61'),\n    DASHBOARD_CAR(\"bd4-dashboard-car\", '\\ueb62'),\n    DASHBOARD_ONE(\"bd4-dashboard-one\", '\\ueb63'),\n    DASHBOARD_TWO(\"bd4-dashboard-two\", '\\ueb64'),\n    DATA(\"bd4-data\", '\\ueb65'),\n    DATA_ALL(\"bd4-data-all\", '\\ueb66'),\n    DATA_ARRIVAL(\"bd4-data-arrival\", '\\ueb67'),\n    DATABASE_ALERT(\"bd4-database-alert\", '\\ueb68'),\n    DATABASE_CODE(\"bd4-database-code\", '\\ueb69'),\n    DATABASE_CONFIG(\"bd4-database-config\", '\\ueb6a'),\n    DATABASE_DOWNLOAD(\"bd4-database-download\", '\\ueb6b'),\n    DATABASE_ENTER(\"bd4-database-enter\", '\\ueb6c'),\n    DATABASE_FAIL(\"bd4-database-fail\", '\\ueb6d'),\n    DATABASE_FIRST(\"bd4-database-first\", '\\ueb6e'),\n    DATABASE_FORBID(\"bd4-database-forbid\", '\\ueb6f'),\n    DATABASE_LOCK(\"bd4-database-lock\", '\\ueb70'),\n    DATABASE_NETWORK(\"bd4-database-network\", '\\ueb71'),\n    DATABASE_NETWORK_POINT(\"bd4-database-network-point\", '\\ueb72'),\n    DATABASE_POINT(\"bd4-database-point\", '\\ueb73'),\n    DATABASE_POSITION(\"bd4-database-position\", '\\ueb74'),\n    DATABASE_POWER(\"bd4-database-power\", '\\ueb75'),\n    DATABASE_PROPORTION(\"bd4-database-proportion\", '\\ueb76'),\n    DATABASE_SEARCH(\"bd4-database-search\", '\\ueb77'),\n    DATABASE_SETTING(\"bd4-database-setting\", '\\ueb78'),\n    DATABASE_SUCCESS(\"bd4-database-success\", '\\ueb79'),\n    DATABASE_SYNC(\"bd4-database-sync\", '\\ueb7a'),\n    DATABASE_TIME(\"bd4-database-time\", '\\ueb7b'),\n    DATA_DISPLAY(\"bd4-data-display\", '\\ueb7c'),\n    DATA_FILE(\"bd4-data-file\", '\\ueb7d'),\n    DATA_FOUR(\"bd4-data-four\", '\\ueb7e'),\n    DATA_LOCK(\"bd4-data-lock\", '\\ueb7f'),\n    DATA_NULL(\"bd4-data-null\", '\\ueb80'),\n    DATA_ONE(\"bd4-data-one\", '\\ueb81'),\n    DATA_SCREEN(\"bd4-data-screen\", '\\ueb82'),\n    DATA_SERVER(\"bd4-data-server\", '\\ueb83'),\n    DATA_SHEET(\"bd4-data-sheet\", '\\ueb84'),\n    DATA_SWITCHING(\"bd4-data-switching\", '\\ueb85'),\n    DATA_THREE(\"bd4-data-three\", '\\ueb86'),\n    DATA_TWO(\"bd4-data-two\", '\\ueb87'),\n    DATA_USER(\"bd4-data-user\", '\\ueb88'),\n    DATE_COMES_BACK(\"bd4-date-comes-back\", '\\ueb89'),\n    DEADLINE_SORT(\"bd4-deadline-sort\", '\\ueb8a'),\n    DEATH_STAR(\"bd4-death-star\", '\\ueb8b'),\n    DEEPLINK(\"bd4-deeplink\", '\\ueb8c'),\n    DEER(\"bd4-deer\", '\\ueb8d'),\n    DEGREE_HAT(\"bd4-degree-hat\", '\\ueb8e'),\n    DELETE(\"bd4-delete\", '\\ueb8f'),\n    DELETE_FIVE(\"bd4-delete-five\", '\\ueb90'),\n    DELETE_FOUR(\"bd4-delete-four\", '\\ueb91'),\n    DELETE_KEY(\"bd4-delete-key\", '\\ueb92'),\n    DELETE_MODE(\"bd4-delete-mode\", '\\ueb93'),\n    DELETE_ONE(\"bd4-delete-one\", '\\ueb94'),\n    DELETE_THEMES(\"bd4-delete-themes\", '\\ueb95'),\n    DELETE_THREE(\"bd4-delete-three\", '\\ueb96'),\n    DELETE_TWO(\"bd4-delete-two\", '\\ueb97'),\n    DELIVERY(\"bd4-delivery\", '\\ueb98'),\n    DEPOSIT(\"bd4-deposit\", '\\ueb99'),\n    DESCEND(\"bd4-descend\", '\\ueb9a'),\n    DESK_LAMP(\"bd4-desk-lamp\", '\\ueb9b'),\n    DESK_LAMP_ONE(\"bd4-desk-lamp-one\", '\\ueb9c'),\n    DETECTION(\"bd4-detection\", '\\ueb9d'),\n    DEVICES(\"bd4-devices\", '\\ueb9e'),\n    DIAMOND(\"bd4-diamond\", '\\ueb9f'),\n    DIAMOND_NECKLACE(\"bd4-diamond-necklace\", '\\ueba0'),\n    DIAMOND_ONE(\"bd4-diamond-one\", '\\ueba1'),\n    DIAMOND_RING(\"bd4-diamond-ring\", '\\ueba2'),\n    DIAMONDS(\"bd4-diamonds\", '\\ueba3'),\n    DIAMOND_THREE(\"bd4-diamond-three\", '\\ueba4'),\n    DIAMOND_TWO(\"bd4-diamond-two\", '\\ueba5'),\n    DIANZIQIAN(\"bd4-dianziqian\", '\\ueba6'),\n    DIAPERS_ONE(\"bd4-diapers-one\", '\\ueba7'),\n    DIFFERENCE_SET(\"bd4-difference-set\", '\\ueba8'),\n    DIGITAL_WATCHES(\"bd4-digital-watches\", '\\ueba9'),\n    DIRECTION(\"bd4-direction\", '\\uebaa'),\n    DIRECTION_ADJUSTMENT(\"bd4-direction-adjustment\", '\\uebab'),\n    DIRECTION_ADJUSTMENT_THREE(\"bd4-direction-adjustment-three\", '\\uebac'),\n    DIRECTION_ADJUSTMENT_TWO(\"bd4-direction-adjustment-two\", '\\uebad'),\n    DISABALED_WEB(\"bd4-disabaled-web\", '\\uebae'),\n    DISABLED_COMPUTER(\"bd4-disabled-computer\", '\\uebaf'),\n    DISABLED_LAPTOP(\"bd4-disabled-laptop\", '\\uebb0'),\n    DISABLED_PICTURE(\"bd4-disabled-picture\", '\\uebb1'),\n    DISAPPOINTED_FACE(\"bd4-disappointed-face\", '\\uebb2'),\n    DISCOVERY_INDEX(\"bd4-discovery-index\", '\\uebb3'),\n    DISK(\"bd4-disk\", '\\uebb4'),\n    DISK_ONE(\"bd4-disk-one\", '\\uebb5'),\n    DISK_TWO(\"bd4-disk-two\", '\\uebb6'),\n    DISLIKE(\"bd4-dislike\", '\\uebb7'),\n    DISLIKE_TWO(\"bd4-dislike-two\", '\\uebb8'),\n    DISPLAY(\"bd4-display\", '\\uebb9'),\n    DISTORTION(\"bd4-distortion\", '\\uebba'),\n    DISTRAUGHT_FACE(\"bd4-distraught-face\", '\\uebbb'),\n    DISTRIBUTE_HORIZONTALLY(\"bd4-distribute-horizontally\", '\\uebbc'),\n    DISTRIBUTE_HORIZONTAL_SPACING(\"bd4-distribute-horizontal-spacing\", '\\uebbd'),\n    DISTRIBUTE_VERTICALLY(\"bd4-distribute-vertically\", '\\uebbe'),\n    DISTRIBUTE_VERTICAL_SPACING(\"bd4-distribute-vertical-spacing\", '\\uebbf'),\n    DIVIDING_LINE(\"bd4-dividing-line\", '\\uebc0'),\n    DIVIDING_LINE_ONE(\"bd4-dividing-line-one\", '\\uebc1'),\n    DIVING(\"bd4-diving\", '\\uebc2'),\n    DIVING_BOTTLE(\"bd4-diving-bottle\", '\\uebc3'),\n    DIVING_SUIT(\"bd4-diving-suit\", '\\uebc4'),\n    DIVISION(\"bd4-division\", '\\uebc5'),\n    DIZZY_FACE(\"bd4-dizzy-face\", '\\uebc6'),\n    DOC_ADD(\"bd4-doc-add\", '\\uebc7'),\n    DOC_DETAIL(\"bd4-doc-detail\", '\\uebc8'),\n    DOC_FAIL(\"bd4-doc-fail\", '\\uebc9'),\n    DOC_SEARCH(\"bd4-doc-search\", '\\uebca'),\n    DOC_SEARCH_TWO(\"bd4-doc-search-two\", '\\uebcb'),\n    DOC_SUCCESS(\"bd4-doc-success\", '\\uebcc'),\n    DOCUMENT_FOLDER(\"bd4-document-folder\", '\\uebcd'),\n    DOG(\"bd4-dog\", '\\uebce'),\n    DOG_ZODIAC(\"bd4-dog-zodiac\", '\\uebcf'),\n    DOLLAR(\"bd4-dollar\", '\\uebd0'),\n    DOLPHIN(\"bd4-dolphin\", '\\uebd1'),\n    DOME(\"bd4-dome\", '\\uebd2'),\n    DOME_LIGHT(\"bd4-dome-light\", '\\uebd3'),\n    DONE_ALL(\"bd4-done-all\", '\\uebd4'),\n    DONGCHEDI(\"bd4-dongchedi\", '\\uebd5'),\n    DOOR_HANDLE(\"bd4-door-handle\", '\\uebd6'),\n    DOT(\"bd4-dot\", '\\uebd7'),\n    DOUBLE_BED(\"bd4-double-bed\", '\\uebd8'),\n    DOUBLE_DOWN(\"bd4-double-down\", '\\uebd9'),\n    DOUBLE_LEFT(\"bd4-double-left\", '\\uebda'),\n    DOUBLE_RIGHT(\"bd4-double-right\", '\\uebdb'),\n    DOUBLE_UP(\"bd4-double-up\", '\\uebdc'),\n    DOUGHNUT(\"bd4-doughnut\", '\\uebdd'),\n    DOWN(\"bd4-down\", '\\uebde'),\n    DOWN_C(\"bd4-down-c\", '\\uebdf'),\n    DOWNLOAD(\"bd4-download\", '\\uebe0'),\n    DOWNLOAD_COMPUTER(\"bd4-download-computer\", '\\uebe1'),\n    DOWNLOAD_FOUR(\"bd4-download-four\", '\\uebe2'),\n    DOWNLOAD_LAPTOP(\"bd4-download-laptop\", '\\uebe3'),\n    DOWNLOAD_ONE(\"bd4-download-one\", '\\uebe4'),\n    DOWNLOAD_THREE(\"bd4-download-three\", '\\uebe5'),\n    DOWNLOAD_TWO(\"bd4-download-two\", '\\uebe6'),\n    DOWNLOAD_WEB(\"bd4-download-web\", '\\uebe7'),\n    DOWN_ONE(\"bd4-down-one\", '\\uebe8'),\n    DOWN_PICTURE(\"bd4-down-picture\", '\\uebe9'),\n    DOWN_SMALL(\"bd4-down-small\", '\\uebea'),\n    DOWN_SQUARE(\"bd4-down-square\", '\\uebeb'),\n    DOWN_TWO(\"bd4-down-two\", '\\uebec'),\n    DRAG(\"bd4-drag\", '\\uebed'),\n    DRAGON_ZODIAC(\"bd4-dragon-zodiac\", '\\uebee'),\n    DRIBBLE(\"bd4-dribble\", '\\uebef'),\n    DRINK(\"bd4-drink\", '\\uebf0'),\n    DRONE(\"bd4-drone\", '\\uebf1'),\n    DRONE_ONE(\"bd4-drone-one\", '\\uebf2'),\n    DROPBOX(\"bd4-dropbox\", '\\uebf3'),\n    DROP_DOWN_LIST(\"bd4-drop-down-list\", '\\uebf4'),\n    DROP_SHADOW_DOWN(\"bd4-drop-shadow-down\", '\\uebf5'),\n    DROP_SHADOW_LEFT(\"bd4-drop-shadow-left\", '\\uebf6'),\n    DROP_SHADOW_RIGHT(\"bd4-drop-shadow-right\", '\\uebf7'),\n    DROP_SHADOW_UP(\"bd4-drop-shadow-up\", '\\uebf8'),\n    DRUMSTICK(\"bd4-drumstick\", '\\uebf9'),\n    DUBAI(\"bd4-dubai\", '\\uebfa'),\n    DUCK(\"bd4-duck\", '\\uebfb'),\n    DUMBBELL(\"bd4-dumbbell\", '\\uebfc'),\n    DUMBBEL_LINE(\"bd4-dumbbel-line\", '\\uebfd'),\n    DVI(\"bd4-dvi\", '\\uebfe'),\n    EAGLE(\"bd4-eagle\", '\\uebff'),\n    EARTH(\"bd4-earth\", '\\uec00'),\n    EASY(\"bd4-easy\", '\\uec01'),\n    ECG(\"bd4-ecg\", '\\uec02'),\n    EDIT(\"bd4-edit\", '\\uec03'),\n    EDITING(\"bd4-editing\", '\\uec04'),\n    EDIT_MOVIE(\"bd4-edit-movie\", '\\uec05'),\n    EDIT_NAME(\"bd4-edit-name\", '\\uec06'),\n    EDIT_ONE(\"bd4-edit-one\", '\\uec07'),\n    EDITOR(\"bd4-editor\", '\\uec08'),\n    EDIT_TWO(\"bd4-edit-two\", '\\uec09'),\n    EEG(\"bd4-eeg\", '\\uec0a'),\n    EFFECTS(\"bd4-effects\", '\\uec0b'),\n    EFFERENT_FOUR(\"bd4-efferent-four\", '\\uec0c'),\n    EFFERENT_THREE(\"bd4-efferent-three\", '\\uec0d'),\n    EGG(\"bd4-egg\", '\\uec0e'),\n    EGG_ONE(\"bd4-egg-one\", '\\uec0f'),\n    EGGPLANT(\"bd4-eggplant\", '\\uec10'),\n    EIFFEL_TOWER(\"bd4-eiffel-tower\", '\\uec11'),\n    EIGHT_KEY(\"bd4-eight-key\", '\\uec12'),\n    ELECTRIC_DRILL(\"bd4-electric-drill\", '\\uec13'),\n    ELECTRIC_IRON(\"bd4-electric-iron\", '\\uec14'),\n    ELECTRIC_WAVE(\"bd4-electric-wave\", '\\uec15'),\n    ELECTROCARDIOGRAM(\"bd4-electrocardiogram\", '\\uec16'),\n    ELECTRONIC_DOOR_LOCK(\"bd4-electronic-door-lock\", '\\uec17'),\n    ELECTRONIC_LOCKS_CLOSE(\"bd4-electronic-locks-close\", '\\uec18'),\n    ELECTRONIC_LOCKS_OPEN(\"bd4-electronic-locks-open\", '\\uec19'),\n    ELECTRONIC_PEN(\"bd4-electronic-pen\", '\\uec1a'),\n    ELEPHANT(\"bd4-elephant\", '\\uec1b'),\n    ELEVATOR(\"bd4-elevator\", '\\uec1c'),\n    EMAIL_BLOCK(\"bd4-email-block\", '\\uec1d'),\n    EMAIL_DELECT(\"bd4-email-delect\", '\\uec1e'),\n    EMAIL_DOWN(\"bd4-email-down\", '\\uec1f'),\n    EMAIL_FAIL(\"bd4-email-fail\", '\\uec20'),\n    EMAIL_LOCK(\"bd4-email-lock\", '\\uec21'),\n    EMAIL_PUSH(\"bd4-email-push\", '\\uec22'),\n    EMAIL_SEARCH(\"bd4-email-search\", '\\uec23'),\n    EMAIL_SECURITY(\"bd4-email-security\", '\\uec24'),\n    EMAIL_SUCCESSFULLY(\"bd4-email-successfully\", '\\uec25'),\n    EMOTION_HAPPY(\"bd4-emotion-happy\", '\\uec26'),\n    EMOTION_UNHAPPY(\"bd4-emotion-unhappy\", '\\uec27'),\n    EMPTY(\"bd4-empty\", '\\uec28'),\n    ENDLESS(\"bd4-endless\", '\\uec29'),\n    ENDOCRINE(\"bd4-endocrine\", '\\uec2a'),\n    ENDPOINT_DISPLACEMENT(\"bd4-endpoint-displacement\", '\\uec2b'),\n    ENDPOINT_FLAT(\"bd4-endpoint-flat\", '\\uec2c'),\n    ENDPOINT_ROUND(\"bd4-endpoint-round\", '\\uec2d'),\n    ENDPOINT_SQUARE(\"bd4-endpoint-square\", '\\uec2e'),\n    END_TIME_SORT(\"bd4-end-time-sort\", '\\uec2f'),\n    ENERGY_SOCKET(\"bd4-energy-socket\", '\\uec30'),\n    ENGINEERING_BRAND(\"bd4-engineering-brand\", '\\uec31'),\n    ENGINEERING_VEHICLE(\"bd4-engineering-vehicle\", '\\uec32'),\n    ENGLISH(\"bd4-english\", '\\uec33'),\n    ENGLISH_MUSTACHE(\"bd4-english-mustache\", '\\uec34'),\n    ENQUIRE(\"bd4-enquire\", '\\uec35'),\n    ENTER_KEY(\"bd4-enter-key\", '\\uec36'),\n    ENTER_KEY_ONE(\"bd4-enter-key-one\", '\\uec37'),\n    ENTERTAINMENT(\"bd4-entertainment\", '\\uec38'),\n    ENTER_THE_KEYBOARD(\"bd4-enter-the-keyboard\", '\\uec39'),\n    ENVELOPE(\"bd4-envelope\", '\\uec3a'),\n    ENVELOPE_ONE(\"bd4-envelope-one\", '\\uec3b'),\n    EQUALIZER(\"bd4-equalizer\", '\\uec3c'),\n    EQUAL_RATIO(\"bd4-equal-ratio\", '\\uec3d'),\n    ERASE(\"bd4-erase\", '\\uec3e'),\n    ERROR(\"bd4-error\", '\\uec3f'),\n    ERROR_COMPUTER(\"bd4-error-computer\", '\\uec40'),\n    ERROR_PICTURE(\"bd4-error-picture\", '\\uec41'),\n    ERROR_PROMPT(\"bd4-error-prompt\", '\\uec42'),\n    ESCALATORS(\"bd4-escalators\", '\\uec43'),\n    ETHERNET_OFF(\"bd4-ethernet-off\", '\\uec44'),\n    ETHERNET_ON(\"bd4-ethernet-on\", '\\uec45'),\n    EVERY_USER(\"bd4-every-user\", '\\uec46'),\n    EXCEL(\"bd4-excel\", '\\uec47'),\n    EXCEL_ONE(\"bd4-excel-one\", '\\uec48'),\n    EXCHANGE(\"bd4-exchange\", '\\uec49'),\n    EXCHANGE_FOUR(\"bd4-exchange-four\", '\\uec4a'),\n    EXCHANGE_ONE(\"bd4-exchange-one\", '\\uec4b'),\n    EXCHANGE_THREE(\"bd4-exchange-three\", '\\uec4c'),\n    EXCHANGE_TWO(\"bd4-exchange-two\", '\\uec4d'),\n    EXCLUDE_SELECTION(\"bd4-exclude-selection\", '\\uec4e'),\n    EXCLUSIVE_GATEWAY(\"bd4-exclusive-gateway\", '\\uec4f'),\n    EXPAND_DOWN(\"bd4-expand-down\", '\\uec50'),\n    EXPAND_DOWN_ONE(\"bd4-expand-down-one\", '\\uec51'),\n    EXPAND_LEFT(\"bd4-expand-left\", '\\uec52'),\n    EXPAND_LEFT_AND_RIGHT(\"bd4-expand-left-and-right\", '\\uec53'),\n    EXPAND_RIGHT(\"bd4-expand-right\", '\\uec54'),\n    EXPAND_TEXT_INPUT(\"bd4-expand-text-input\", '\\uec55'),\n    EXPAND_UP(\"bd4-expand-up\", '\\uec56'),\n    EXPENSES(\"bd4-expenses\", '\\uec57'),\n    EXPENSES_ONE(\"bd4-expenses-one\", '\\uec58'),\n    EXPERIMENT(\"bd4-experiment\", '\\uec59'),\n    EXPERIMENT_ONE(\"bd4-experiment-one\", '\\uec5a'),\n    EXPORT(\"bd4-export\", '\\uec5b'),\n    EXPRESS_DELIVERY(\"bd4-express-delivery\", '\\uec5c'),\n    EXPRESSIONLESS_FACE(\"bd4-expressionless-face\", '\\uec5d'),\n    EXTEND(\"bd4-extend\", '\\uec5e'),\n    EXTERNAL_TRANSMISSION(\"bd4-external-transmission\", '\\uec5f'),\n    EYEBROW(\"bd4-eyebrow\", '\\uec60'),\n    EYES(\"bd4-eyes\", '\\uec61'),\n    FACEBOOK(\"bd4-facebook\", '\\uec62'),\n    FACEBOOK_ONE(\"bd4-facebook-one\", '\\uec63'),\n    FACE_POWDER(\"bd4-face-powder\", '\\uec64'),\n    FACE_RECOGNITION(\"bd4-face-recognition\", '\\uec65'),\n    FACETIME(\"bd4-facetime\", '\\uec66'),\n    FACEU(\"bd4-faceu\", '\\uec67'),\n    FACE_WITHOUT_MOUTH(\"bd4-face-without-mouth\", '\\uec68'),\n    FACE_WITH_SMILING_OPEN_EYES(\"bd4-face-with-smiling-open-eyes\", '\\uec69'),\n    FACIAL_CLEANSER(\"bd4-facial-cleanser\", '\\uec6a'),\n    FACIAL_MASK(\"bd4-facial-mask\", '\\uec6b'),\n    FACTORY_BUILDING(\"bd4-factory-building\", '\\uec6c'),\n    FAIL_PICTURE(\"bd4-fail-picture\", '\\uec6d'),\n    FAMILY(\"bd4-family\", '\\uec6e'),\n    FAN(\"bd4-fan\", '\\uec6f'),\n    FANQIEXIAOSHUO(\"bd4-fanqiexiaoshuo\", '\\uec70'),\n    FEELGOOD(\"bd4-feelgood\", '\\uec71'),\n    FEELGOOD_ONE(\"bd4-feelgood-one\", '\\uec72'),\n    F_EIGHT_KEY(\"bd4-f-eight-key\", '\\uec73'),\n    FEIYU(\"bd4-feiyu\", '\\uec74'),\n    FEMALE(\"bd4-female\", '\\uec75'),\n    FENCE_ONE(\"bd4-fence-one\", '\\uec76'),\n    FENCE_TWO(\"bd4-fence-two\", '\\uec77'),\n    FERRIS_WHEEL(\"bd4-ferris-wheel\", '\\uec78'),\n    F_FIVE_KEY(\"bd4-f-five-key\", '\\uec79'),\n    F_FOUR_KEY(\"bd4-f-four-key\", '\\uec7a'),\n    FIGMA(\"bd4-figma\", '\\uec7b'),\n    FIGMA_COMPONENT(\"bd4-figma-component\", '\\uec7c'),\n    FIGMA_FLATTEN_SELECTION(\"bd4-figma-flatten-selection\", '\\uec7d'),\n    FIGMA_MASK(\"bd4-figma-mask\", '\\uec7e'),\n    FIGMA_RESET_INSTANCE(\"bd4-figma-reset-instance\", '\\uec7f'),\n    FILE_ADDITION(\"bd4-file-addition\", '\\uec80'),\n    FILE_ADDITION_ONE(\"bd4-file-addition-one\", '\\uec81'),\n    FILE_CABINET(\"bd4-file-cabinet\", '\\uec82'),\n    FILE_CODE(\"bd4-file-code\", '\\uec83'),\n    FILE_CODE_ONE(\"bd4-file-code-one\", '\\uec84'),\n    FILE_COLLECTION(\"bd4-file-collection\", '\\uec85'),\n    FILE_COLLECTION_ONE(\"bd4-file-collection-one\", '\\uec86'),\n    FILE_CONVERSION(\"bd4-file-conversion\", '\\uec87'),\n    FILE_CONVERSION_ONE(\"bd4-file-conversion-one\", '\\uec88'),\n    FILE_DATE(\"bd4-file-date\", '\\uec89'),\n    FILE_DATE_ONE(\"bd4-file-date-one\", '\\uec8a'),\n    FILE_DISPLAY(\"bd4-file-display\", '\\uec8b'),\n    FILE_DISPLAY_ONE(\"bd4-file-display-one\", '\\uec8c'),\n    FILE_DOC(\"bd4-file-doc\", '\\uec8d'),\n    FILE_EDITING(\"bd4-file-editing\", '\\uec8e'),\n    FILE_EDITING_ONE(\"bd4-file-editing-one\", '\\uec8f'),\n    FILE_EXCEL(\"bd4-file-excel\", '\\uec90'),\n    FILE_FAILED(\"bd4-file-failed\", '\\uec91'),\n    FILE_FAILED_ONE(\"bd4-file-failed-one\", '\\uec92'),\n    FILE_FOCUS(\"bd4-file-focus\", '\\uec93'),\n    FILE_FOCUS_ONE(\"bd4-file-focus-one\", '\\uec94'),\n    FILE_GIF(\"bd4-file-gif\", '\\uec95'),\n    FILE_HASH(\"bd4-file-hash\", '\\uec96'),\n    FILE_HASH_ONE(\"bd4-file-hash-one\", '\\uec97'),\n    FILE_HIDING(\"bd4-file-hiding\", '\\uec98'),\n    FILE_HIDING_ONE(\"bd4-file-hiding-one\", '\\uec99'),\n    FILE_JPG(\"bd4-file-jpg\", '\\uec9a'),\n    FILE_LOCK(\"bd4-file-lock\", '\\uec9b'),\n    FILE_LOCK_ONE(\"bd4-file-lock-one\", '\\uec9c'),\n    FILE_MUSIC(\"bd4-file-music\", '\\uec9d'),\n    FILE_MUSIC_ONE(\"bd4-file-music-one\", '\\uec9e'),\n    FILE_PDF(\"bd4-file-pdf\", '\\uec9f'),\n    FILE_PDF_ONE(\"bd4-file-pdf-one\", '\\ueca0'),\n    FILE_PPT(\"bd4-file-ppt\", '\\ueca1'),\n    FILE_PROTECTION(\"bd4-file-protection\", '\\ueca2'),\n    FILE_PROTECTION_ONE(\"bd4-file-protection-one\", '\\ueca3'),\n    FILE_QUALITY(\"bd4-file-quality\", '\\ueca4'),\n    FILE_QUALITY_ONE(\"bd4-file-quality-one\", '\\ueca5'),\n    FILE_QUESTION(\"bd4-file-question\", '\\ueca6'),\n    FILE_REMOVAL(\"bd4-file-removal\", '\\ueca7'),\n    FILE_REMOVAL_ONE(\"bd4-file-removal-one\", '\\ueca8'),\n    FILE_SEARCH(\"bd4-file-search\", '\\ueca9'),\n    FILE_SEARCH_ONE(\"bd4-file-search-one\", '\\uecaa'),\n    FILE_SEARCH_TWO(\"bd4-file-search-two\", '\\uecab'),\n    FILE_SETTINGS(\"bd4-file-settings\", '\\uecac'),\n    FILE_SETTINGS_ONE(\"bd4-file-settings-one\", '\\uecad'),\n    FILE_STAFF(\"bd4-file-staff\", '\\uecae'),\n    FILE_STAFF_ONE(\"bd4-file-staff-one\", '\\uecaf'),\n    FILE_SUCCESS(\"bd4-file-success\", '\\uecb0'),\n    FILE_SUCCESS_ONE(\"bd4-file-success-one\", '\\uecb1'),\n    FILE_TEXT(\"bd4-file-text\", '\\uecb2'),\n    FILE_TEXT_ONE(\"bd4-file-text-one\", '\\uecb3'),\n    FILE_TIPS(\"bd4-file-tips\", '\\uecb4'),\n    FILE_TIPS_ONE(\"bd4-file-tips-one\", '\\uecb5'),\n    FILE_TXT(\"bd4-file-txt\", '\\uecb6'),\n    FILE_TXT_ONE(\"bd4-file-txt-one\", '\\uecb7'),\n    FILE_WITHDRAWAL(\"bd4-file-withdrawal\", '\\uecb8'),\n    FILE_WITHDRAWAL_ONE(\"bd4-file-withdrawal-one\", '\\uecb9'),\n    FILE_WORD(\"bd4-file-word\", '\\uecba'),\n    FILE_ZIP(\"bd4-file-zip\", '\\uecbb'),\n    FILL(\"bd4-fill\", '\\uecbc'),\n    FILM(\"bd4-film\", '\\uecbd'),\n    FILTER(\"bd4-filter\", '\\uecbe'),\n    FILTER_ONE(\"bd4-filter-one\", '\\uecbf'),\n    FINANCE(\"bd4-finance\", '\\uecc0'),\n    FINANCING(\"bd4-financing\", '\\uecc1'),\n    FINANCING_ONE(\"bd4-financing-one\", '\\uecc2'),\n    FINANCING_TWO(\"bd4-financing-two\", '\\uecc3'),\n    FIND(\"bd4-find\", '\\uecc4'),\n    FIND_ONE(\"bd4-find-one\", '\\uecc5'),\n    FINGERNAIL(\"bd4-fingernail\", '\\uecc6'),\n    FINGERPRINT(\"bd4-fingerprint\", '\\uecc7'),\n    FINGERPRINT_THREE(\"bd4-fingerprint-three\", '\\uecc8'),\n    FINGERPRINT_TWO(\"bd4-fingerprint-two\", '\\uecc9'),\n    FIRE(\"bd4-fire\", '\\uecca'),\n    FIRE_EXTINGUISHER(\"bd4-fire-extinguisher\", '\\ueccb'),\n    FIRE_EXTINGUISHER_ONE(\"bd4-fire-extinguisher-one\", '\\ueccc'),\n    FIRE_TWO(\"bd4-fire-two\", '\\ueccd'),\n    FIREWORKS(\"bd4-fireworks\", '\\uecce'),\n    FIRST(\"bd4-first\", '\\ueccf'),\n    FIRST_AID_KIT(\"bd4-first-aid-kit\", '\\uecd0'),\n    FISH(\"bd4-fish\", '\\uecd1'),\n    FISHING(\"bd4-fishing\", '\\uecd2'),\n    FISH_ONE(\"bd4-fish-one\", '\\uecd3'),\n    FIST(\"bd4-fist\", '\\uecd4'),\n    FITNESS(\"bd4-fitness\", '\\uecd5'),\n    FIVE(\"bd4-five\", '\\uecd6'),\n    FIVE_ELLIPSES(\"bd4-five-ellipses\", '\\uecd7'),\n    FIVE_FIVE(\"bd4-five-five\", '\\uecd8'),\n    FIVE_KEY(\"bd4-five-key\", '\\uecd9'),\n    FIVE_STAR_BADGE(\"bd4-five-star-badge\", '\\uecda'),\n    FLAG(\"bd4-flag\", '\\uecdb'),\n    FLASHLAMP(\"bd4-flashlamp\", '\\uecdc'),\n    FLASHLIGHT(\"bd4-flashlight\", '\\uecdd'),\n    FLASH_PAYMENT(\"bd4-flash-payment\", '\\uecde'),\n    FLASK(\"bd4-flask\", '\\uecdf'),\n    FLIGHT_AIRFLOW(\"bd4-flight-airflow\", '\\uece0'),\n    FLIGHT_SAFETY(\"bd4-flight-safety\", '\\uece1'),\n    FLIP_CAMERA(\"bd4-flip-camera\", '\\uece2'),\n    FLIP_HORIZONTALLY(\"bd4-flip-horizontally\", '\\uece3'),\n    FLIP_VERTICALLY(\"bd4-flip-vertically\", '\\uece4'),\n    FLIRT(\"bd4-flirt\", '\\uece5'),\n    FLOAT(\"bd4-float\", '\\uece6'),\n    FLOOR_TILE(\"bd4-floor-tile\", '\\uece7'),\n    FM(\"bd4-fm\", '\\uece8'),\n    F_NINE_KEY(\"bd4-f-nine-key\", '\\uece9'),\n    F_N_KEY(\"bd4-f-n-key\", '\\uecea'),\n    FOCUS(\"bd4-focus\", '\\ueceb'),\n    FOCUS_ONE(\"bd4-focus-one\", '\\uecec'),\n    FOG(\"bd4-fog\", '\\ueced'),\n    FOLDER(\"bd4-folder\", '\\uecee'),\n    FOLDER_BLOCK(\"bd4-folder-block\", '\\uecef'),\n    FOLDER_BLOCK_ONE(\"bd4-folder-block-one\", '\\uecf0'),\n    FOLDER_CLOSE(\"bd4-folder-close\", '\\uecf1'),\n    FOLDER_CODE(\"bd4-folder-code\", '\\uecf2'),\n    FOLDER_CODE_ONE(\"bd4-folder-code-one\", '\\uecf3'),\n    FOLDER_CONVERSION(\"bd4-folder-conversion\", '\\uecf4'),\n    FOLDER_CONVERSION_ONE(\"bd4-folder-conversion-one\", '\\uecf5'),\n    FOLDER_DOWNLOAD(\"bd4-folder-download\", '\\uecf6'),\n    FOLDER_FAILED(\"bd4-folder-failed\", '\\uecf7'),\n    FOLDER_FAILED_ONE(\"bd4-folder-failed-one\", '\\uecf8'),\n    FOLDER_FOCUS(\"bd4-folder-focus\", '\\uecf9'),\n    FOLDER_FOCUS_ONE(\"bd4-folder-focus-one\", '\\uecfa'),\n    FOLDER_LOCK(\"bd4-folder-lock\", '\\uecfb'),\n    FOLDER_LOCK_ONE(\"bd4-folder-lock-one\", '\\uecfc'),\n    FOLDER_MINUS(\"bd4-folder-minus\", '\\uecfd'),\n    FOLDER_MUSIC(\"bd4-folder-music\", '\\uecfe'),\n    FOLDER_MUSIC_ONE(\"bd4-folder-music-one\", '\\uecff'),\n    FOLDER_ONE(\"bd4-folder-one\", '\\ued00'),\n    FOLDER_OPEN(\"bd4-folder-open\", '\\ued01'),\n    FOLDER_PLUS(\"bd4-folder-plus\", '\\ued02'),\n    FOLDER_PROTECTION(\"bd4-folder-protection\", '\\ued03'),\n    FOLDER_PROTECTION_ONE(\"bd4-folder-protection-one\", '\\ued04'),\n    FOLDER_QUALITY(\"bd4-folder-quality\", '\\ued05'),\n    FOLDER_QUALITY_ONE(\"bd4-folder-quality-one\", '\\ued06'),\n    FOLDER_SEARCH(\"bd4-folder-search\", '\\ued07'),\n    FOLDER_SEARCH_ONE(\"bd4-folder-search-one\", '\\ued08'),\n    FOLDER_SETTINGS(\"bd4-folder-settings\", '\\ued09'),\n    FOLDER_SETTINGS_ONE(\"bd4-folder-settings-one\", '\\ued0a'),\n    FOLDER_SUCCESS(\"bd4-folder-success\", '\\ued0b'),\n    FOLDER_SUCCESS_ONE(\"bd4-folder-success-one\", '\\ued0c'),\n    FOLDER_UPLOAD(\"bd4-folder-upload\", '\\ued0d'),\n    FOLDER_WITHDRAWAL(\"bd4-folder-withdrawal\", '\\ued0e'),\n    FOLDER_WITHDRAWAL_ONE(\"bd4-folder-withdrawal-one\", '\\ued0f'),\n    FOLD_UP_ONE(\"bd4-fold-up-one\", '\\ued10'),\n    FOLLOW_UP_DATE_SORT(\"bd4-follow-up-date-sort\", '\\ued11'),\n    F_ONE_KEY(\"bd4-f-one-key\", '\\ued12'),\n    FONT_SEARCH(\"bd4-font-search\", '\\ued13'),\n    FONT_SIZE(\"bd4-font-size\", '\\ued14'),\n    FONT_SIZE_TWO(\"bd4-font-size-two\", '\\ued15'),\n    FOOT(\"bd4-foot\", '\\ued16'),\n    FOOTBALL(\"bd4-football\", '\\ued17'),\n    FORBID(\"bd4-forbid\", '\\ued18'),\n    FORK(\"bd4-fork\", '\\ued19'),\n    FORK_SPOON(\"bd4-fork-spoon\", '\\ued1a'),\n    FORM(\"bd4-form\", '\\ued1b'),\n    FORMAT(\"bd4-format\", '\\ued1c'),\n    FORMAT_BRUSH(\"bd4-format-brush\", '\\ued1d'),\n    FORM_ONE(\"bd4-form-one\", '\\ued1e'),\n    FORMULA(\"bd4-formula\", '\\ued1f'),\n    FOUNDATION_MAKEUP(\"bd4-foundation-makeup\", '\\ued20'),\n    FOUR(\"bd4-four\", '\\ued21'),\n    FOUR_ARROWS(\"bd4-four-arrows\", '\\ued22'),\n    FOUR_FOUR(\"bd4-four-four\", '\\ued23'),\n    FOUR_KEY(\"bd4-four-key\", '\\ued24'),\n    FOUR_LEAVES(\"bd4-four-leaves\", '\\ued25'),\n    FOUR_POINT_CONNECTION(\"bd4-four-point-connection\", '\\ued26'),\n    FOUR_ROUND_POINT_CONNECTION(\"bd4-four-round-point-connection\", '\\ued27'),\n    FOURSQUARE(\"bd4-foursquare\", '\\ued28'),\n    FREEZE_COLUMN(\"bd4-freeze-column\", '\\ued29'),\n    FREEZE_LINE(\"bd4-freeze-line\", '\\ued2a'),\n    FREEZING_LINE_COLUMN(\"bd4-freezing-line-column\", '\\ued2b'),\n    FRENCH_FRIES(\"bd4-french-fries\", '\\ued2c'),\n    FRIENDS_CIRCLE(\"bd4-friends-circle\", '\\ued2d'),\n    FRIGATE(\"bd4-frigate\", '\\ued2e'),\n    FROG(\"bd4-frog\", '\\ued2f'),\n    FROWNING_FACE_WHIT_OPEN_MOUTH(\"bd4-frowning-face-whit-open-mouth\", '\\ued30'),\n    FRUITER(\"bd4-fruiter\", '\\ued31'),\n    F_SEVEN_KEY(\"bd4-f-seven-key\", '\\ued32'),\n    F_SIX_KEY(\"bd4-f-six-key\", '\\ued33'),\n    F_THREE_KEY(\"bd4-f-three-key\", '\\ued34'),\n    F_TWO_KEY(\"bd4-f-two-key\", '\\ued35'),\n    FULL_DRESS_LONGUETTE(\"bd4-full-dress-longuette\", '\\ued36'),\n    FULL_SCREEN(\"bd4-full-screen\", '\\ued37'),\n    FULL_SCREEN_ONE(\"bd4-full-screen-one\", '\\ued38'),\n    FULL_SCREEN_PLAY(\"bd4-full-screen-play\", '\\ued39'),\n    FULL_SCREEN_TWO(\"bd4-full-screen-two\", '\\ued3a'),\n    FULL_SELECTION(\"bd4-full-selection\", '\\ued3b'),\n    FULLWIDTH(\"bd4-fullwidth\", '\\ued3c'),\n    FUNDS(\"bd4-funds\", '\\ued3d'),\n    FUTURE_BUILD_ONE(\"bd4-future-build-one\", '\\ued3e'),\n    FUTURE_BUILD_THREE(\"bd4-future-build-three\", '\\ued3f'),\n    FUTURE_BUILD_TWO(\"bd4-future-build-two\", '\\ued40'),\n    F_ZERO_KEY(\"bd4-f-zero-key\", '\\ued41'),\n    GAME(\"bd4-game\", '\\ued42'),\n    GAME_CONSOLE(\"bd4-game-console\", '\\ued43'),\n    GAME_CONSOLE_ONE(\"bd4-game-console-one\", '\\ued44'),\n    GAME_EMOJI(\"bd4-game-emoji\", '\\ued45'),\n    GAME_HANDLE(\"bd4-game-handle\", '\\ued46'),\n    GAMEPAD(\"bd4-gamepad\", '\\ued47'),\n    GAME_PS(\"bd4-game-ps\", '\\ued48'),\n    GAME_THREE(\"bd4-game-three\", '\\ued49'),\n    GAME_TWO(\"bd4-game-two\", '\\ued4a'),\n    GARAGE(\"bd4-garage\", '\\ued4b'),\n    GARLIC(\"bd4-garlic\", '\\ued4c'),\n    GAS(\"bd4-gas\", '\\ued4d'),\n    GASTROINTESTINAL(\"bd4-gastrointestinal\", '\\ued4e'),\n    GATE(\"bd4-gate\", '\\ued4f'),\n    GATE_MACHINE(\"bd4-gate-machine\", '\\ued50'),\n    GAUZE(\"bd4-gauze\", '\\ued51'),\n    GAVEL(\"bd4-gavel\", '\\ued52'),\n    GEMINI(\"bd4-gemini\", '\\ued53'),\n    GENERAL_BRANCH(\"bd4-general-branch\", '\\ued54'),\n    GEOMETRIC_FLOWERS(\"bd4-geometric-flowers\", '\\ued55'),\n    GERMS(\"bd4-germs\", '\\ued56'),\n    GHOST(\"bd4-ghost\", '\\ued57'),\n    GIFT(\"bd4-gift\", '\\ued58'),\n    GIFT_BAG(\"bd4-gift-bag\", '\\ued59'),\n    GIFT_BOX(\"bd4-gift-box\", '\\ued5a'),\n    GIRL(\"bd4-girl\", '\\ued5b'),\n    GIRL_ONE(\"bd4-girl-one\", '\\ued5c'),\n    GIRL_TWO(\"bd4-girl-two\", '\\ued5d'),\n    GITHUB(\"bd4-github\", '\\ued5e'),\n    GITHUB_ONE(\"bd4-github-one\", '\\ued5f'),\n    GITLAB(\"bd4-gitlab\", '\\ued60'),\n    GLASSES(\"bd4-glasses\", '\\ued61'),\n    GLASSES_ONE(\"bd4-glasses-one\", '\\ued62'),\n    GLASSES_THREE(\"bd4-glasses-three\", '\\ued63'),\n    GLOBE(\"bd4-globe\", '\\ued64'),\n    GLOVE(\"bd4-glove\", '\\ued65'),\n    GO_AHEAD(\"bd4-go-ahead\", '\\ued66'),\n    GOBLET(\"bd4-goblet\", '\\ued67'),\n    GOBLET_CRACKING(\"bd4-goblet-cracking\", '\\ued68'),\n    GOBLET_FULL(\"bd4-goblet-full\", '\\ued69'),\n    GOBLET_ONE(\"bd4-goblet-one\", '\\ued6a'),\n    GO_END(\"bd4-go-end\", '\\ued6b'),\n    GOLD_MEDAL(\"bd4-gold-medal\", '\\ued6c'),\n    GOLD_MEDAL_TWO(\"bd4-gold-medal-two\", '\\ued6d'),\n    GOLF_COURSE(\"bd4-golf-course\", '\\ued6e'),\n    GONGFU(\"bd4-gongfu\", '\\ued6f'),\n    GOOD(\"bd4-good\", '\\ued70'),\n    GOOD_ONE(\"bd4-good-one\", '\\ued71'),\n    GOOD_TWO(\"bd4-good-two\", '\\ued72'),\n    GOOGLE(\"bd4-google\", '\\ued73'),\n    GOOGLE_ADS(\"bd4-google-ads\", '\\ued74'),\n    GO_ON(\"bd4-go-on\", '\\ued75'),\n    GOPRO(\"bd4-gopro\", '\\ued76'),\n    GO_START(\"bd4-go-start\", '\\ued77'),\n    GPS(\"bd4-gps\", '\\ued78'),\n    GRAPHIC_DESIGN(\"bd4-graphic-design\", '\\ued79'),\n    GRAPHIC_DESIGN_TWO(\"bd4-graphic-design-two\", '\\ued7a'),\n    GRAPHIC_STITCHING(\"bd4-graphic-stitching\", '\\ued7b'),\n    GRAPHIC_STITCHING_FOUR(\"bd4-graphic-stitching-four\", '\\ued7c'),\n    GRAPHIC_STITCHING_THREE(\"bd4-graphic-stitching-three\", '\\ued7d'),\n    GREAT_WALL(\"bd4-great-wall\", '\\ued7e'),\n    GREEN_HOUSE(\"bd4-green-house\", '\\ued7f'),\n    GREEN_NEW_ENERGY(\"bd4-green-new-energy\", '\\ued80'),\n    GRID_FOUR(\"bd4-grid-four\", '\\ued81'),\n    GRID_NINE(\"bd4-grid-nine\", '\\ued82'),\n    GRID_SIXTEEN(\"bd4-grid-sixteen\", '\\ued83'),\n    GRID_THREE(\"bd4-grid-three\", '\\ued84'),\n    GRID_TWO(\"bd4-grid-two\", '\\ued85'),\n    GRIMACING_FACE(\"bd4-grimacing-face\", '\\ued86'),\n    GRINNING_FACE(\"bd4-grinning-face\", '\\ued87'),\n    GRINNING_FACE_WITH_OPEN_MOUTH(\"bd4-grinning-face-with-open-mouth\", '\\ued88'),\n    GRINNING_FACE_WITH_SQUINTING_EYES(\"bd4-grinning-face-with-squinting-eyes\", '\\ued89'),\n    GRINNING_FACE_WITH_TIGHTLY_CLOSED_EYES(\"bd4-grinning-face-with-tightly-closed-eyes\", '\\ued8a'),\n    GRINNING_FACE_WITH_TIGHTLY_CLOSED_EYES_OPEN_MOUTH(\"bd4-grinning-face-with-tightly-closed-eyes-open-mouth\", '\\ued8b'),\n    GROUP(\"bd4-group\", '\\ued8c'),\n    GUIDE_BOARD(\"bd4-guide-board\", '\\ued8d'),\n    GYMNASTICS(\"bd4-gymnastics\", '\\ued8e'),\n    GYMNASTICS_ONE(\"bd4-gymnastics-one\", '\\ued8f'),\n    H(\"bd4-h\", '\\ued90'),\n    H1(\"bd4-h1\", '\\ued91'),\n    H2(\"bd4-h2\", '\\ued92'),\n    H3(\"bd4-h3\", '\\ued93'),\n    HAIR_BRUSH(\"bd4-hair-brush\", '\\ued94'),\n    HAIR_CLIP(\"bd4-hair-clip\", '\\ued95'),\n    HAIR_DRYER(\"bd4-hair-dryer\", '\\ued96'),\n    HAIR_DRYER_ONE(\"bd4-hair-dryer-one\", '\\ued97'),\n    HALO(\"bd4-halo\", '\\ued98'),\n    HAMBURGER(\"bd4-hamburger\", '\\ued99'),\n    HAMBURGER_BUTTON(\"bd4-hamburger-button\", '\\ued9a'),\n    HAMBURGER_ONE(\"bd4-hamburger-one\", '\\ued9b'),\n    HAMMER_AND_ANVIL(\"bd4-hammer-and-anvil\", '\\ued9c'),\n    HANDBAG(\"bd4-handbag\", '\\ued9d'),\n    HAND_CREAM(\"bd4-hand-cream\", '\\ued9e'),\n    HAND_DOWN(\"bd4-hand-down\", '\\ued9f'),\n    HAND_DRAG(\"bd4-hand-drag\", '\\ueda0'),\n    HANDHELD(\"bd4-handheld\", '\\ueda1'),\n    HANDLE_A(\"bd4-handle-a\", '\\ueda2'),\n    HANDLE_B(\"bd4-handle-b\", '\\ueda3'),\n    HANDLE_C(\"bd4-handle-c\", '\\ueda4'),\n    HANDLE_DOWN(\"bd4-handle-down\", '\\ueda5'),\n    HAND_LEFT(\"bd4-hand-left\", '\\ueda6'),\n    HANDLE_LEFT(\"bd4-handle-left\", '\\ueda7'),\n    HANDLE_RIGHT(\"bd4-handle-right\", '\\ueda8'),\n    HANDLE_ROUND(\"bd4-handle-round\", '\\ueda9'),\n    HANDLE_SQUARE(\"bd4-handle-square\", '\\uedaa'),\n    HANDLE_TRIANGLE(\"bd4-handle-triangle\", '\\uedab'),\n    HANDLE_UP(\"bd4-handle-up\", '\\uedac'),\n    HANDLE_X(\"bd4-handle-x\", '\\uedad'),\n    HANDLE_Y(\"bd4-handle-y\", '\\uedae'),\n    HANDLE_Z(\"bd4-handle-z\", '\\uedaf'),\n    HAND_PAINTED_PLATE(\"bd4-hand-painted-plate\", '\\uedb0'),\n    HAND_RIGHT(\"bd4-hand-right\", '\\uedb1'),\n    HANDS(\"bd4-hands\", '\\uedb2'),\n    HAND_UP(\"bd4-hand-up\", '\\uedb3'),\n    HANDWASHING(\"bd4-handwashing\", '\\uedb4'),\n    HANDWASHING_FLUID(\"bd4-handwashing-fluid\", '\\uedb5'),\n    HANFU_CHINESE_STYLE(\"bd4-hanfu-chinese-style\", '\\uedb6'),\n    HANGER(\"bd4-hanger\", '\\uedb7'),\n    HANGER_ONE(\"bd4-hanger-one\", '\\uedb8'),\n    HANGER_TWO(\"bd4-hanger-two\", '\\uedb9'),\n    HARD_DISK(\"bd4-hard-disk\", '\\uedba'),\n    HARD_DISK_ONE(\"bd4-hard-disk-one\", '\\uedbb'),\n    HARM(\"bd4-harm\", '\\uedbc'),\n    HASHTAG_KEY(\"bd4-hashtag-key\", '\\uedbd'),\n    HAT(\"bd4-hat\", '\\uedbe'),\n    HDD(\"bd4-hdd\", '\\uedbf'),\n    HDMI_CABLE(\"bd4-hdmi-cable\", '\\uedc0'),\n    HDMI_CONNECTOR(\"bd4-hdmi-connector\", '\\uedc1'),\n    HEADPHONE_SOUND(\"bd4-headphone-sound\", '\\uedc2'),\n    HEADSET(\"bd4-headset\", '\\uedc3'),\n    HEADSET_ONE(\"bd4-headset-one\", '\\uedc4'),\n    HEADSET_TWO(\"bd4-headset-two\", '\\uedc5'),\n    HEADWEAR(\"bd4-headwear\", '\\uedc6'),\n    HEALTH(\"bd4-health\", '\\uedc7'),\n    HEALTH_PRODUCTS(\"bd4-health-products\", '\\uedc8'),\n    HEALTHY_RECOGNITION(\"bd4-healthy-recognition\", '\\uedc9'),\n    HEART(\"bd4-heart\", '\\uedca'),\n    HEART_BALLON(\"bd4-heart-ballon\", '\\uedcb'),\n    HEARTBEAT(\"bd4-heartbeat\", '\\uedcc'),\n    HEART_RATE(\"bd4-heart-rate\", '\\uedcd'),\n    HEATER_RESISTOR(\"bd4-heater-resistor\", '\\uedce'),\n    HEAVY_METAL(\"bd4-heavy-metal\", '\\uedcf'),\n    HEAVY_RAIN(\"bd4-heavy-rain\", '\\uedd0'),\n    HEAVY_WIND(\"bd4-heavy-wind\", '\\uedd1'),\n    HELMET(\"bd4-helmet\", '\\uedd2'),\n    HELMET_ONE(\"bd4-helmet-one\", '\\uedd3'),\n    HELP(\"bd4-help\", '\\uedd4'),\n    HELPCENTER(\"bd4-helpcenter\", '\\uedd5'),\n    HEXAGONAL(\"bd4-hexagonal\", '\\uedd6'),\n    HEXAGON_ONE(\"bd4-hexagon-one\", '\\uedd7'),\n    HEXAGON_STRIP(\"bd4-hexagon-strip\", '\\uedd8'),\n    HI(\"bd4-hi\", '\\uedd9'),\n    HIGH_HEELED_SHOES(\"bd4-high-heeled-shoes\", '\\uedda'),\n    HIGH_LIGHT(\"bd4-high-light\", '\\ueddb'),\n    HIGH_SPEED_RAIL(\"bd4-high-speed-rail\", '\\ueddc'),\n    HIPPO(\"bd4-hippo\", '\\ueddd'),\n    HISTOGRAM(\"bd4-histogram\", '\\uedde'),\n    HISTORY(\"bd4-history\", '\\ueddf'),\n    HISTORY_QUERY(\"bd4-history-query\", '\\uede0'),\n    HOCKEY(\"bd4-hockey\", '\\uede1'),\n    HOLD(\"bd4-hold\", '\\uede2'),\n    HOLDING_HANDS(\"bd4-holding-hands\", '\\uede3'),\n    HOLD_INTERFACE(\"bd4-hold-interface\", '\\uede4'),\n    HOLD_SEEDS(\"bd4-hold-seeds\", '\\uede5'),\n    HOLY_SWORD(\"bd4-holy-sword\", '\\uede6'),\n    HOME(\"bd4-home\", '\\uede7'),\n    HOMESTAY(\"bd4-homestay\", '\\uede8'),\n    HOME_TWO(\"bd4-home-two\", '\\uede9'),\n    HONEY(\"bd4-honey\", '\\uedea'),\n    HONEY_ONE(\"bd4-honey-one\", '\\uedeb'),\n    HORIZONTALLY_CENTERED(\"bd4-horizontally-centered\", '\\uedec'),\n    HORIZONTAL_SPACING_BETWEEN_ITEMS(\"bd4-horizontal-spacing-between-items\", '\\ueded'),\n    HORIZONTAL_TIDY_UP(\"bd4-horizontal-tidy-up\", '\\uedee'),\n    HORSE_ZODIAC(\"bd4-horse-zodiac\", '\\uedef'),\n    HOSPITAL(\"bd4-hospital\", '\\uedf0'),\n    HOSPITAL_BED(\"bd4-hospital-bed\", '\\uedf1'),\n    HOSPITAL_FOUR(\"bd4-hospital-four\", '\\uedf2'),\n    HOSPITAL_THREE(\"bd4-hospital-three\", '\\uedf3'),\n    HOSPITAL_TWO(\"bd4-hospital-two\", '\\uedf4'),\n    HOT_AIR_BALLOON(\"bd4-hot-air-balloon\", '\\uedf5'),\n    HOTEL(\"bd4-hotel\", '\\uedf6'),\n    HOTEL_DO_NOT_CLEAN(\"bd4-hotel-do-not-clean\", '\\uedf7'),\n    HOTEL_PLEASE_CLEAN(\"bd4-hotel-please-clean\", '\\uedf8'),\n    HOT_POT(\"bd4-hot-pot\", '\\uedf9'),\n    HOT_POT_ONE(\"bd4-hot-pot-one\", '\\uedfa'),\n    HOURGLASS(\"bd4-hourglass\", '\\uedfb'),\n    HOURGLASS_FULL(\"bd4-hourglass-full\", '\\uedfc'),\n    HOURGLASS_NULL(\"bd4-hourglass-null\", '\\uedfd'),\n    HTML_FIVE(\"bd4-html-five\", '\\uedfe'),\n    HUNTING_GEAR(\"bd4-hunting-gear\", '\\uedff'),\n    HUOSHANZHIBO(\"bd4-huoshanzhibo\", '\\uee00'),\n    ICECREAM(\"bd4-icecream\", '\\uee01'),\n    ICECREAM_FIVE(\"bd4-icecream-five\", '\\uee02'),\n    ICECREAM_FOUR(\"bd4-icecream-four\", '\\uee03'),\n    ICECREAM_ONE(\"bd4-icecream-one\", '\\uee04'),\n    ICECREAM_THREE(\"bd4-icecream-three\", '\\uee05'),\n    ICECREAM_TWO(\"bd4-icecream-two\", '\\uee06'),\n    ID_CARD(\"bd4-id-card\", '\\uee07'),\n    ID_CARD_H(\"bd4-id-card-h\", '\\uee08'),\n    ID_CARD_V(\"bd4-id-card-v\", '\\uee09'),\n    I_MAC(\"bd4-i-mac\", '\\uee0a'),\n    IMAGE_FILES(\"bd4-image-files\", '\\uee0b'),\n    IMBALANCE(\"bd4-imbalance\", '\\uee0c'),\n    IMPORT_AND_EXPORT(\"bd4-import-and-export\", '\\uee0d'),\n    INBOX(\"bd4-inbox\", '\\uee0e'),\n    INBOX_DOWNLOAD_R(\"bd4-inbox-download-r\", '\\uee0f'),\n    INBOX_IN(\"bd4-inbox-in\", '\\uee10'),\n    INBOX_OUT(\"bd4-inbox-out\", '\\uee11'),\n    INBOX_R(\"bd4-inbox-r\", '\\uee12'),\n    INBOX_SUCCESS(\"bd4-inbox-success\", '\\uee13'),\n    INBOX_SUCCESS_R(\"bd4-inbox-success-r\", '\\uee14'),\n    INBOX_UPLOAD_R(\"bd4-inbox-upload-r\", '\\uee15'),\n    INCLUSIVE_GATEWAY(\"bd4-inclusive-gateway\", '\\uee16'),\n    INCOME(\"bd4-income\", '\\uee17'),\n    INCOME_ONE(\"bd4-income-one\", '\\uee18'),\n    INCOMING(\"bd4-incoming\", '\\uee19'),\n    INCREASE(\"bd4-increase\", '\\uee1a'),\n    INCREASE_THE_SCALE(\"bd4-increase-the-scale\", '\\uee1b'),\n    INDENT_LEFT(\"bd4-indent-left\", '\\uee1c'),\n    INDENT_RIGHT(\"bd4-indent-right\", '\\uee1d'),\n    INDEX_FINGER(\"bd4-index-finger\", '\\uee1e'),\n    INDUCTION_LOCK(\"bd4-induction-lock\", '\\uee1f'),\n    INDUSTRIAL_SCALES(\"bd4-industrial-scales\", '\\uee20'),\n    IN_FLIGHT(\"bd4-in-flight\", '\\uee21'),\n    INFO(\"bd4-info\", '\\uee22'),\n    INFUSION(\"bd4-infusion\", '\\uee23'),\n    INJECTION(\"bd4-injection\", '\\uee24'),\n    INLINE(\"bd4-inline\", '\\uee25'),\n    INNER_SHADOW_BOTTOM_LEFT(\"bd4-inner-shadow-bottom-left\", '\\uee26'),\n    INNER_SHADOW_BOTTOM_RIGHT(\"bd4-inner-shadow-bottom-right\", '\\uee27'),\n    INNER_SHADOW_DOWN(\"bd4-inner-shadow-down\", '\\uee28'),\n    INNER_SHADOW_LEFT(\"bd4-inner-shadow-left\", '\\uee29'),\n    INNER_SHADOW_RIGHT(\"bd4-inner-shadow-right\", '\\uee2a'),\n    INNER_SHADOW_TOP_LEFT(\"bd4-inner-shadow-top-left\", '\\uee2b'),\n    INNER_SHADOW_TOP_RIGHT(\"bd4-inner-shadow-top-right\", '\\uee2c'),\n    INNER_SHADOW_UP(\"bd4-inner-shadow-up\", '\\uee2d'),\n    INSERT_CARD(\"bd4-insert-card\", '\\uee2e'),\n    INSERT_TABLE(\"bd4-insert-table\", '\\uee2f'),\n    INSPECTION(\"bd4-inspection\", '\\uee30'),\n    INSTAGRAM(\"bd4-instagram\", '\\uee31'),\n    INSTAGRAM_ONE(\"bd4-instagram-one\", '\\uee32'),\n    INSTALL(\"bd4-install\", '\\uee33'),\n    INSTRUCTION(\"bd4-instruction\", '\\uee34'),\n    INTERCOM(\"bd4-intercom\", '\\uee35'),\n    INTERMEDIATE_MODE(\"bd4-intermediate-mode\", '\\uee36'),\n    INTERNAL_DATA(\"bd4-internal-data\", '\\uee37'),\n    INTERNAL_EXPANSION(\"bd4-internal-expansion\", '\\uee38'),\n    INTERNAL_REDUCTION(\"bd4-internal-reduction\", '\\uee39'),\n    INTERNAL_TRANSMISSION(\"bd4-internal-transmission\", '\\uee3a'),\n    INTERNATIONAL(\"bd4-international\", '\\uee3b'),\n    INTERSECTION(\"bd4-intersection\", '\\uee3c'),\n    INTERSECT_SELECTION(\"bd4-intersect-selection\", '\\uee3d'),\n    INVALID_FILES(\"bd4-invalid-files\", '\\uee3e'),\n    INVERT_CAMERA(\"bd4-invert-camera\", '\\uee3f'),\n    INVERT_LEFT(\"bd4-invert-left\", '\\uee40'),\n    INVERT_RIGHT(\"bd4-invert-right\", '\\uee41'),\n    IOS_FACE_RECOGNITION(\"bd4-ios-face-recognition\", '\\uee42'),\n    IPAD(\"bd4-ipad\", '\\uee43'),\n    IPAD_ONE(\"bd4-ipad-one\", '\\uee44'),\n    IPHONE(\"bd4-iphone\", '\\uee45'),\n    IPO(\"bd4-ipo\", '\\uee46'),\n    IRON(\"bd4-iron\", '\\uee47'),\n    IRON_DISABLE(\"bd4-iron-disable\", '\\uee48'),\n    IRON_THREE(\"bd4-iron-three\", '\\uee49'),\n    IRON_TWO(\"bd4-iron-two\", '\\uee4a'),\n    IWATCH(\"bd4-iwatch\", '\\uee4b'),\n    IWATCH_ONE(\"bd4-iwatch-one\", '\\uee4c'),\n    IWATCH_TWO(\"bd4-iwatch-two\", '\\uee4d'),\n    JEWELRY(\"bd4-jewelry\", '\\uee4e'),\n    JINRITOUTIAO(\"bd4-jinritoutiao\", '\\uee4f'),\n    JOURNEY(\"bd4-journey\", '\\uee50'),\n    JOYSTICK(\"bd4-joystick\", '\\uee51'),\n    JUICE(\"bd4-juice\", '\\uee52'),\n    JUMP(\"bd4-jump\", '\\uee53'),\n    KAGI_MAP(\"bd4-kagi-map\", '\\uee54'),\n    KETTLE(\"bd4-kettle\", '\\uee55'),\n    KETTLE_ONE(\"bd4-kettle-one\", '\\uee56'),\n    KEY(\"bd4-key\", '\\uee57'),\n    KEYBOARD(\"bd4-keyboard\", '\\uee58'),\n    KEYBOARD_ONE(\"bd4-keyboard-one\", '\\uee59'),\n    KEYHOLE(\"bd4-keyhole\", '\\uee5a'),\n    KEYLINE(\"bd4-keyline\", '\\uee5b'),\n    KEY_ONE(\"bd4-key-one\", '\\uee5c'),\n    KEY_TWO(\"bd4-key-two\", '\\uee5d'),\n    KITCHEN_KNIFE(\"bd4-kitchen-knife\", '\\uee5e'),\n    KNIFE_FORK(\"bd4-knife-fork\", '\\uee5f'),\n    KOALA_BEAR(\"bd4-koala-bear\", '\\uee60'),\n    KUNGFU(\"bd4-kungfu\", '\\uee61'),\n    LABEL(\"bd4-label\", '\\uee62'),\n    LADDER(\"bd4-ladder\", '\\uee63'),\n    LADDER_ONE(\"bd4-ladder-one\", '\\uee64'),\n    LAMP(\"bd4-lamp\", '\\uee65'),\n    LANDING(\"bd4-landing\", '\\uee66'),\n    LANDSCAPE(\"bd4-landscape\", '\\uee67'),\n    LAND_SURVEYING(\"bd4-land-surveying\", '\\uee68'),\n    LAPTOP(\"bd4-laptop\", '\\uee69'),\n    LAPTOP_COMPUTER(\"bd4-laptop-computer\", '\\uee6a'),\n    LAPTOP_ONE(\"bd4-laptop-one\", '\\uee6b'),\n    LARK(\"bd4-lark\", '\\uee6c'),\n    LARK_ONE(\"bd4-lark-one\", '\\uee6d'),\n    LATTICE_PATTERN(\"bd4-lattice-pattern\", '\\uee6e'),\n    LAYERS(\"bd4-layers\", '\\uee6f'),\n    LAYOUT_FIVE(\"bd4-layout-five\", '\\uee70'),\n    LAYOUT_FOUR(\"bd4-layout-four\", '\\uee71'),\n    LAYOUT_ONE(\"bd4-layout-one\", '\\uee72'),\n    LAYOUT_THREE(\"bd4-layout-three\", '\\uee73'),\n    LAYOUT_TWO(\"bd4-layout-two\", '\\uee74'),\n    LEAF(\"bd4-leaf\", '\\uee75'),\n    LEAVES(\"bd4-leaves\", '\\uee76'),\n    LEAVES_ONE(\"bd4-leaves-one\", '\\uee77'),\n    LEAVES_TWO(\"bd4-leaves-two\", '\\uee78'),\n    LED_DIODE(\"bd4-led-diode\", '\\uee79'),\n    LEFT(\"bd4-left\", '\\uee7a'),\n    LEFT_ALIGNMENT(\"bd4-left-alignment\", '\\uee7b'),\n    LEFT_AND_RIGHT_BRANCH(\"bd4-left-and-right-branch\", '\\uee7c'),\n    LEFT_BAR(\"bd4-left-bar\", '\\uee7d'),\n    LEFT_BRANCH(\"bd4-left-branch\", '\\uee7e'),\n    LEFT_C(\"bd4-left-c\", '\\uee7f'),\n    LEFT_EXPAND(\"bd4-left-expand\", '\\uee80'),\n    LEFT_ONE(\"bd4-left-one\", '\\uee81'),\n    LEFT_SMALL(\"bd4-left-small\", '\\uee82'),\n    LEFT_SMALL_DOWN(\"bd4-left-small-down\", '\\uee83'),\n    LEFT_SMALL_UP(\"bd4-left-small-up\", '\\uee84'),\n    LEFT_SQUARE(\"bd4-left-square\", '\\uee85'),\n    LEFT_TWO(\"bd4-left-two\", '\\uee86'),\n    LEMON(\"bd4-lemon\", '\\uee87'),\n    LENS_ALIGNMENT(\"bd4-lens-alignment\", '\\uee88'),\n    LEO(\"bd4-leo\", '\\uee89'),\n    LEVEL(\"bd4-level\", '\\uee8a'),\n    LEVEL_ADJUSTMENT(\"bd4-level-adjustment\", '\\uee8b'),\n    LEVEL_EIGHT_TITLE(\"bd4-level-eight-title\", '\\uee8c'),\n    LEVEL_FIVE_TITLE(\"bd4-level-five-title\", '\\uee8d'),\n    LEVEL_FOUR_TITLE(\"bd4-level-four-title\", '\\uee8e'),\n    LEVEL_NINE_TITLE(\"bd4-level-nine-title\", '\\uee8f'),\n    LEVEL_SEVEN_TITLE(\"bd4-level-seven-title\", '\\uee90'),\n    LEVEL_SIX_TITLE(\"bd4-level-six-title\", '\\uee91'),\n    LIBRA(\"bd4-libra\", '\\uee92'),\n    LIFEBUOY(\"bd4-lifebuoy\", '\\uee93'),\n    LIGHT(\"bd4-light\", '\\uee94'),\n    LIGHT_HOUSE(\"bd4-light-house\", '\\uee95'),\n    LIGHT_MEMBER(\"bd4-light-member\", '\\uee96'),\n    LIGHTNING(\"bd4-lightning\", '\\uee97'),\n    LIGHT_RAIN(\"bd4-light-rain\", '\\uee98'),\n    LIKE(\"bd4-like\", '\\uee99'),\n    LINCOLN(\"bd4-lincoln\", '\\uee9a'),\n    LINK(\"bd4-link\", '\\uee9b'),\n    LINK_BREAK(\"bd4-link-break\", '\\uee9c'),\n    LINK_CLOUD(\"bd4-link-cloud\", '\\uee9d'),\n    LINK_CLOUD_FAILD(\"bd4-link-cloud-faild\", '\\uee9e'),\n    LINK_CLOUD_SUCESS(\"bd4-link-cloud-sucess\", '\\uee9f'),\n    LINK_FOUR(\"bd4-link-four\", '\\ueea0'),\n    LINK_IN(\"bd4-link-in\", '\\ueea1'),\n    LINK_INTERRUPT(\"bd4-link-interrupt\", '\\ueea2'),\n    LINK_LEFT(\"bd4-link-left\", '\\ueea3'),\n    LINK_ONE(\"bd4-link-one\", '\\ueea4'),\n    LINK_OUT(\"bd4-link-out\", '\\ueea5'),\n    LINK_RIGHT(\"bd4-link-right\", '\\ueea6'),\n    LINK_THREE(\"bd4-link-three\", '\\ueea7'),\n    LINK_TWO(\"bd4-link-two\", '\\ueea8'),\n    LIP_GLOSS(\"bd4-lip-gloss\", '\\ueea9'),\n    LIPSTICK(\"bd4-lipstick\", '\\ueeaa'),\n    LIPSTICK_ONE(\"bd4-lipstick-one\", '\\ueeab'),\n    LIP_TATTOO(\"bd4-lip-tattoo\", '\\ueeac'),\n    LIQUEUR(\"bd4-liqueur\", '\\ueead'),\n    LIST(\"bd4-list\", '\\ueeae'),\n    LIST_ADD(\"bd4-list-add\", '\\ueeaf'),\n    LIST_ALPHABET(\"bd4-list-alphabet\", '\\ueeb0'),\n    LIST_BOTTOM(\"bd4-list-bottom\", '\\ueeb1'),\n    LIST_CHECKBOX(\"bd4-list-checkbox\", '\\ueeb2'),\n    LIST_FAIL(\"bd4-list-fail\", '\\ueeb3'),\n    LIST_MIDDLE(\"bd4-list-middle\", '\\ueeb4'),\n    LIST_NUMBERS(\"bd4-list-numbers\", '\\ueeb5'),\n    LIST_ONE(\"bd4-list-one\", '\\ueeb6'),\n    LIST_SUCCESS(\"bd4-list-success\", '\\ueeb7'),\n    LIST_TOP(\"bd4-list-top\", '\\ueeb8'),\n    LIST_TWO(\"bd4-list-two\", '\\ueeb9'),\n    LIST_VIEW(\"bd4-list-view\", '\\ueeba'),\n    LOADING(\"bd4-loading\", '\\ueebb'),\n    LOADING_FOUR(\"bd4-loading-four\", '\\ueebc'),\n    LOADING_ONE(\"bd4-loading-one\", '\\ueebd'),\n    LOADING_THREE(\"bd4-loading-three\", '\\ueebe'),\n    LOADING_TWO(\"bd4-loading-two\", '\\ueebf'),\n    LOCAL(\"bd4-local\", '\\ueec0'),\n    LOCAL_PIN(\"bd4-local-pin\", '\\ueec1'),\n    LOCAL_TWO(\"bd4-local-two\", '\\ueec2'),\n    LOCK(\"bd4-lock\", '\\ueec3'),\n    LOCKING_COMPUTER(\"bd4-locking-computer\", '\\ueec4'),\n    LOCKING_LAPTOP(\"bd4-locking-laptop\", '\\ueec5'),\n    LOCKING_PICTURE(\"bd4-locking-picture\", '\\ueec6'),\n    LOCKING_WEB(\"bd4-locking-web\", '\\ueec7'),\n    LOCK_ONE(\"bd4-lock-one\", '\\ueec8'),\n    LOG(\"bd4-log\", '\\ueec9'),\n    LOGIN(\"bd4-login\", '\\ueeca'),\n    LOGOUT(\"bd4-logout\", '\\ueecb'),\n    LOLLIPOP(\"bd4-lollipop\", '\\ueecc'),\n    LOOP_ONCE(\"bd4-loop-once\", '\\ueecd'),\n    LOTION(\"bd4-lotion\", '\\ueece'),\n    LOTUS(\"bd4-lotus\", '\\ueecf'),\n    LOUDLY_CRYING_FACE(\"bd4-loudly-crying-face\", '\\ueed0'),\n    LOUDLY_CRYING_FACE_WHIT_OPEN_MOUTH(\"bd4-loudly-crying-face-whit-open-mouth\", '\\ueed1'),\n    LOVE_AND_HELP(\"bd4-love-and-help\", '\\ueed2'),\n    LOWER_BRANCH(\"bd4-lower-branch\", '\\ueed3'),\n    LUGGAGE(\"bd4-luggage\", '\\ueed4'),\n    LUMINOUS(\"bd4-luminous\", '\\ueed5'),\n    LUNG(\"bd4-lung\", '\\ueed6');\n\n    public static BytedanceIconsExtraBoldAL findByDescription(String description) {\n        for (BytedanceIconsExtraBoldAL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    BytedanceIconsExtraBoldAL(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsExtraBoldALIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author LeeWyatt\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BytedanceIconsExtraBoldALIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/bytedance/1.3.0/fonts/Bytedance-IconPack-ExtraBold.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bd4-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return BytedanceIconsExtraBoldAL.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Bytedance-IconPack-ExtraBold\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsExtraBoldALIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author LeeWyatt\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class BytedanceIconsExtraBoldALIkonProvider implements IkonProvider<BytedanceIconsExtraBoldAL> {\n    @Override\n    public Class<BytedanceIconsExtraBoldAL> getIkon() {\n        return BytedanceIconsExtraBoldAL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsExtraBoldMZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author LeeWyatt\n */\npublic enum BytedanceIconsExtraBoldMZ implements Ikon {\n    MACADAMIA_NUT(\"bd4-macadamia-nut\", '\\ueed7'),\n    MAC_FINDER(\"bd4-mac-finder\", '\\ueed8'),\n    MAGIC(\"bd4-magic\", '\\ueed9'),\n    MAGIC_HAT(\"bd4-magic-hat\", '\\ueeda'),\n    MAGIC_WAND(\"bd4-magic-wand\", '\\ueedb'),\n    MAGNET(\"bd4-magnet\", '\\ueedc'),\n    MAIL(\"bd4-mail\", '\\ueedd'),\n    MAIL_DOWNLOAD(\"bd4-mail-download\", '\\ueede'),\n    MAIL_EDIT(\"bd4-mail-edit\", '\\ueedf'),\n    MAILL_ONE(\"bd4-maill-one\", '\\ueee0'),\n    MAIL_OPEN(\"bd4-mail-open\", '\\ueee1'),\n    MAIL_PACKAGE(\"bd4-mail-package\", '\\ueee2'),\n    MAIL_REVIEW(\"bd4-mail-review\", '\\ueee3'),\n    MAIL_UNPACKING(\"bd4-mail-unpacking\", '\\ueee4'),\n    MAKEUPS(\"bd4-makeups\", '\\ueee5'),\n    MALE(\"bd4-male\", '\\ueee6'),\n    MALL_BAG(\"bd4-mall-bag\", '\\ueee7'),\n    MANUAL_GEAR(\"bd4-manual-gear\", '\\ueee8'),\n    MANY_TO_MANY(\"bd4-many-to-many\", '\\ueee9'),\n    MAP_DISTANCE(\"bd4-map-distance\", '\\ueeea'),\n    MAP_DRAW(\"bd4-map-draw\", '\\ueeeb'),\n    MAP_ROAD(\"bd4-map-road\", '\\ueeec'),\n    MAP_ROAD_TWO(\"bd4-map-road-two\", '\\ueeed'),\n    MAP_TWO(\"bd4-map-two\", '\\ueeee'),\n    MARGIN(\"bd4-margin\", '\\ueeef'),\n    MARGIN_ONE(\"bd4-margin-one\", '\\ueef0'),\n    MARK(\"bd4-mark\", '\\ueef1'),\n    MARKET(\"bd4-market\", '\\ueef2'),\n    MARKET_ANALYSIS(\"bd4-market-analysis\", '\\ueef3'),\n    MASCARA(\"bd4-mascara\", '\\ueef4'),\n    MASK(\"bd4-mask\", '\\ueef5'),\n    MASK_ONE(\"bd4-mask-one\", '\\ueef6'),\n    MASK_TWO(\"bd4-mask-two\", '\\ueef7'),\n    MASLOW_PYRAMIDS(\"bd4-maslow-pyramids\", '\\ueef8'),\n    MASSAGE_CHAIR(\"bd4-massage-chair\", '\\ueef9'),\n    MASSAGE_CHAIR_ONE(\"bd4-massage-chair-one\", '\\ueefa'),\n    MASSAGE_TABLE(\"bd4-massage-table\", '\\ueefb'),\n    MASTER(\"bd4-master\", '\\ueefc'),\n    MATERIAL(\"bd4-material\", '\\ueefd'),\n    MATERIAL_THREE(\"bd4-material-three\", '\\ueefe'),\n    MATERIAL_TWO(\"bd4-material-two\", '\\ueeff'),\n    MAXIMUM(\"bd4-maximum\", '\\uef00'),\n    MAYA(\"bd4-maya\", '\\uef01'),\n    MAYURA_GESTURE(\"bd4-mayura-gesture\", '\\uef02'),\n    ME(\"bd4-me\", '\\uef03'),\n    MEASURING_CUP(\"bd4-measuring-cup\", '\\uef04'),\n    MEDAL_ONE(\"bd4-medal-one\", '\\uef05'),\n    MEDIAEDITOR(\"bd4-mediaeditor\", '\\uef06'),\n    MEDICAL_BOX(\"bd4-medical-box\", '\\uef07'),\n    MEDICAL_FILES(\"bd4-medical-files\", '\\uef08'),\n    MEDICAL_MARK(\"bd4-medical-mark\", '\\uef09'),\n    MEDICATION_TIME(\"bd4-medication-time\", '\\uef0a'),\n    MEDICINE_BOTTLE(\"bd4-medicine-bottle\", '\\uef0b'),\n    MEDICINE_BOTTLE_ONE(\"bd4-medicine-bottle-one\", '\\uef0c'),\n    MEDICINE_CHEST(\"bd4-medicine-chest\", '\\uef0d'),\n    MEMORY(\"bd4-memory\", '\\uef0e'),\n    MEMORY_CARD(\"bd4-memory-card\", '\\uef0f'),\n    MEMORY_CARD_ONE(\"bd4-memory-card-one\", '\\uef10'),\n    MEMORY_ONE(\"bd4-memory-one\", '\\uef11'),\n    MEN_JACKET(\"bd4-men-jacket\", '\\uef12'),\n    MENU_FOLD(\"bd4-menu-fold\", '\\uef13'),\n    MENU_FOLD_ONE(\"bd4-menu-fold-one\", '\\uef14'),\n    MENU_UNFOLD(\"bd4-menu-unfold\", '\\uef15'),\n    MENU_UNFOLD_ONE(\"bd4-menu-unfold-one\", '\\uef16'),\n    MERGE(\"bd4-merge\", '\\uef17'),\n    MERGE_CELLS(\"bd4-merge-cells\", '\\uef18'),\n    MESSAGE(\"bd4-message\", '\\uef19'),\n    MESSAGE_EMOJI(\"bd4-message-emoji\", '\\uef1a'),\n    MESSAGE_FAILED(\"bd4-message-failed\", '\\uef1b'),\n    MESSAGE_ONE(\"bd4-message-one\", '\\uef1c'),\n    MESSAGE_PRIVACY(\"bd4-message-privacy\", '\\uef1d'),\n    MESSAGES(\"bd4-messages\", '\\uef1e'),\n    MESSAGE_SEARCH(\"bd4-message-search\", '\\uef1f'),\n    MESSAGE_SECURITY(\"bd4-message-security\", '\\uef20'),\n    MESSAGE_SENT(\"bd4-message-sent\", '\\uef21'),\n    MESSAGES_ONE(\"bd4-messages-one\", '\\uef22'),\n    MESSAGE_SUCCESS(\"bd4-message-success\", '\\uef23'),\n    MESSAGE_UNREAD(\"bd4-message-unread\", '\\uef24'),\n    MICROPHONE(\"bd4-microphone\", '\\uef25'),\n    MICROPHONE_ONE(\"bd4-microphone-one\", '\\uef26'),\n    MICROSCOPE(\"bd4-microscope\", '\\uef27'),\n    MICROSCOPE_ONE(\"bd4-microscope-one\", '\\uef28'),\n    MICRO_SD(\"bd4-micro-sd\", '\\uef29'),\n    MICRO_SLR_CAMERA(\"bd4-micro-slr-camera\", '\\uef2a'),\n    MICROWAVE_OVEN(\"bd4-microwave-oven\", '\\uef2b'),\n    MICROWAVES(\"bd4-microwaves\", '\\uef2c'),\n    MIDDLE_FINGER(\"bd4-middle-finger\", '\\uef2d'),\n    MILK(\"bd4-milk\", '\\uef2e'),\n    MILK_ONE(\"bd4-milk-one\", '\\uef2f'),\n    MIN(\"bd4-min\", '\\uef30'),\n    MINDMAP_LIST(\"bd4-mindmap-list\", '\\uef31'),\n    MINDMAP_MAP(\"bd4-mindmap-map\", '\\uef32'),\n    MIND_MAPPING(\"bd4-mind-mapping\", '\\uef33'),\n    MINI_SD_CARD(\"bd4-mini-sd-card\", '\\uef34'),\n    MINUS(\"bd4-minus\", '\\uef35'),\n    MINUS_THE_BOTTOM(\"bd4-minus-the-bottom\", '\\uef36'),\n    MINUS_THE_TOP(\"bd4-minus-the-top\", '\\uef37'),\n    MIRROR(\"bd4-mirror\", '\\uef38'),\n    MIRROR_ONE(\"bd4-mirror-one\", '\\uef39'),\n    MIRROR_TWO(\"bd4-mirror-two\", '\\uef3a'),\n    MISALIGNED_SEMICIRCLE(\"bd4-misaligned-semicircle\", '\\uef3b'),\n    MITSUBISHI(\"bd4-mitsubishi\", '\\uef3c'),\n    MODIFY(\"bd4-modify\", '\\uef3d'),\n    MODIFY_TWO(\"bd4-modify-two\", '\\uef3e'),\n    MONITOR(\"bd4-monitor\", '\\uef3f'),\n    MONITOR_CAMERA(\"bd4-monitor-camera\", '\\uef40'),\n    MONITOR_OFF(\"bd4-monitor-off\", '\\uef41'),\n    MONITOR_ONE(\"bd4-monitor-one\", '\\uef42'),\n    MONITOR_TWO(\"bd4-monitor-two\", '\\uef43'),\n    MONKEY(\"bd4-monkey\", '\\uef44'),\n    MONKEY_ZODIAC(\"bd4-monkey-zodiac\", '\\uef45'),\n    MONUMENT_ONE(\"bd4-monument-one\", '\\uef46'),\n    MONUMENT_TWO(\"bd4-monument-two\", '\\uef47'),\n    MOON(\"bd4-moon\", '\\uef48'),\n    MORE(\"bd4-more\", '\\uef49'),\n    MORE_APP(\"bd4-more-app\", '\\uef4a'),\n    MORE_FOUR(\"bd4-more-four\", '\\uef4b'),\n    MORE_ONE(\"bd4-more-one\", '\\uef4c'),\n    MORE_THREE(\"bd4-more-three\", '\\uef4d'),\n    MORE_TWO(\"bd4-more-two\", '\\uef4e'),\n    MOSAIC(\"bd4-mosaic\", '\\uef4f'),\n    MOUNTAIN(\"bd4-mountain\", '\\uef50'),\n    MOUNTED(\"bd4-mounted\", '\\uef51'),\n    MOUSE(\"bd4-mouse\", '\\uef52'),\n    MOUSE_ONE(\"bd4-mouse-one\", '\\uef53'),\n    MOUSE_ZODIAC(\"bd4-mouse-zodiac\", '\\uef54'),\n    MOUTH(\"bd4-mouth\", '\\uef55'),\n    MOVE(\"bd4-move\", '\\uef56'),\n    MOVE_IN(\"bd4-move-in\", '\\uef57'),\n    MOVE_IN_ONE(\"bd4-move-in-one\", '\\uef58'),\n    MOVE_ONE(\"bd4-move-one\", '\\uef59'),\n    MOVIE(\"bd4-movie\", '\\uef5a'),\n    MOVIE_BOARD(\"bd4-movie-board\", '\\uef5b'),\n    MOVING_PICTURE(\"bd4-moving-picture\", '\\uef5c'),\n    MULTICAST(\"bd4-multicast\", '\\uef5d'),\n    MULTI_CIRCULAR(\"bd4-multi-circular\", '\\uef5e'),\n    MULTI_FUNCTION_KNIFE(\"bd4-multi-function-knife\", '\\uef5f'),\n    MULTILAYER_SPHERE(\"bd4-multilayer-sphere\", '\\uef60'),\n    MULTI_PICTURE_CAROUSEL(\"bd4-multi-picture-carousel\", '\\uef61'),\n    MULTI_RECTANGLE(\"bd4-multi-rectangle\", '\\uef62'),\n    MULTI_RING(\"bd4-multi-ring\", '\\uef63'),\n    MULTI_TRIANGULAR(\"bd4-multi-triangular\", '\\uef64'),\n    MULTI_TRIANGULAR_FOUR(\"bd4-multi-triangular-four\", '\\uef65'),\n    MULTI_TRIANGULAR_THREE(\"bd4-multi-triangular-three\", '\\uef66'),\n    MULTI_TRIANGULAR_TWO(\"bd4-multi-triangular-two\", '\\uef67'),\n    MUSCLE(\"bd4-muscle\", '\\uef68'),\n    MUSEUM_ONE(\"bd4-museum-one\", '\\uef69'),\n    MUSEUM_TWO(\"bd4-museum-two\", '\\uef6a'),\n    MUSIC(\"bd4-music\", '\\uef6b'),\n    MUSIC_CD(\"bd4-music-cd\", '\\uef6c'),\n    MUSIC_LIST(\"bd4-music-list\", '\\uef6d'),\n    MUSIC_MENU(\"bd4-music-menu\", '\\uef6e'),\n    MUSIC_ONE(\"bd4-music-one\", '\\uef6f'),\n    MUSIC_RHYTHM(\"bd4-music-rhythm\", '\\uef70'),\n    MUTE(\"bd4-mute\", '\\uef71'),\n    NAIL_POLISH(\"bd4-nail-polish\", '\\uef72'),\n    NAIL_POLISH_ONE(\"bd4-nail-polish-one\", '\\uef73'),\n    NASAL(\"bd4-nasal\", '\\uef74'),\n    NATURAL_MODE(\"bd4-natural-mode\", '\\uef75'),\n    NAVIGATION(\"bd4-navigation\", '\\uef76'),\n    NECKTIE(\"bd4-necktie\", '\\uef77'),\n    NEEDLE(\"bd4-needle\", '\\uef78'),\n    NEGATIVE_DYNAMICS(\"bd4-negative-dynamics\", '\\uef79'),\n    NESTED_ARROWS(\"bd4-nested-arrows\", '\\uef7a'),\n    NESTS(\"bd4-nests\", '\\uef7b'),\n    NETWORK_DRIVE(\"bd4-network-drive\", '\\uef7c'),\n    NETWORK_TREE(\"bd4-network-tree\", '\\uef7d'),\n    NEURAL(\"bd4-neural\", '\\uef7e'),\n    NEUTRAL_FACE(\"bd4-neutral-face\", '\\uef7f'),\n    NEW_AFFERENT(\"bd4-new-afferent\", '\\uef80'),\n    NEW_COMPUTER(\"bd4-new-computer\", '\\uef81'),\n    NEW_DIANZIQIAN(\"bd4-new-dianziqian\", '\\uef82'),\n    NEW_EFFERENT(\"bd4-new-efferent\", '\\uef83'),\n    NEW_LARK(\"bd4-new-lark\", '\\uef84'),\n    NEWLYBUILD(\"bd4-newlybuild\", '\\uef85'),\n    NEW_PICTURE(\"bd4-new-picture\", '\\uef86'),\n    NEWSPAPER_FOLDING(\"bd4-newspaper-folding\", '\\uef87'),\n    NEXT(\"bd4-next\", '\\uef88'),\n    NINE_KEY(\"bd4-nine-key\", '\\uef89'),\n    NINE_POINTS_CONNECTED(\"bd4-nine-points-connected\", '\\uef8a'),\n    NINTENDO_SWITCH(\"bd4-nintendo-switch\", '\\uef8b'),\n    NMR(\"bd4-nmr\", '\\uef8c'),\n    NODE_FLAT(\"bd4-node-flat\", '\\uef8d'),\n    NODE_ROUND(\"bd4-node-round\", '\\uef8e'),\n    NODE_SQUARE(\"bd4-node-square\", '\\uef8f'),\n    NOODLES(\"bd4-noodles\", '\\uef90'),\n    NO_SHOOTING(\"bd4-no-shooting\", '\\uef91'),\n    NOTEBOOK(\"bd4-notebook\", '\\uef92'),\n    NOTEBOOK_AND_PEN(\"bd4-notebook-and-pen\", '\\uef93'),\n    NOTEBOOK_ONE(\"bd4-notebook-one\", '\\uef94'),\n    NOTEPAD(\"bd4-notepad\", '\\uef95'),\n    NOTES(\"bd4-notes\", '\\uef96'),\n    NUCLEAR_PLANT(\"bd4-nuclear-plant\", '\\uef97'),\n    NURSE_CAP(\"bd4-nurse-cap\", '\\uef98'),\n    NUT(\"bd4-nut\", '\\uef99'),\n    NUTRITION(\"bd4-nutrition\", '\\uef9a'),\n    OCEANENGINE(\"bd4-oceanengine\", '\\uef9b'),\n    OCTAGON(\"bd4-octagon\", '\\uef9c'),\n    OFF_SCREEN(\"bd4-off-screen\", '\\uef9d'),\n    OFF_SCREEN_ONE(\"bd4-off-screen-one\", '\\uef9e'),\n    OFF_SCREEN_TWO(\"bd4-off-screen-two\", '\\uef9f'),\n    OIL_INDUSTRY(\"bd4-oil-industry\", '\\uefa0'),\n    OKAY(\"bd4-okay\", '\\uefa1'),\n    ONE(\"bd4-one\", '\\uefa2'),\n    ONE_KEY(\"bd4-one-key\", '\\uefa3'),\n    ONE_ONE(\"bd4-one-one\", '\\uefa4'),\n    ONESIES(\"bd4-onesies\", '\\uefa5'),\n    ONE_THIRD_ROTATION(\"bd4-one-third-rotation\", '\\uefa6'),\n    ONE_TO_MANY(\"bd4-one-to-many\", '\\uefa7'),\n    ONE_TO_ONE(\"bd4-one-to-one\", '\\uefa8'),\n    ONLINE_MEETING(\"bd4-online-meeting\", '\\uefa9'),\n    OPEN(\"bd4-open\", '\\uefaa'),\n    OPEN_AN_ACCOUNT(\"bd4-open-an-account\", '\\uefab'),\n    OPEN_DOOR(\"bd4-open-door\", '\\uefac'),\n    OPEN_ONE(\"bd4-open-one\", '\\uefad'),\n    OPTIMIZE(\"bd4-optimize\", '\\uefae'),\n    OPTIONAL(\"bd4-optional\", '\\uefaf'),\n    ORANGE(\"bd4-orange\", '\\uefb0'),\n    ORANGE_ONE(\"bd4-orange-one\", '\\uefb1'),\n    ORANGE_STATION(\"bd4-orange-station\", '\\uefb2'),\n    ORDER(\"bd4-order\", '\\uefb3'),\n    ORDERED_LIST(\"bd4-ordered-list\", '\\uefb4'),\n    ORTHOPEDIC(\"bd4-orthopedic\", '\\uefb5'),\n    OSCILLATOR(\"bd4-oscillator\", '\\uefb6'),\n    OTHER(\"bd4-other\", '\\uefb7'),\n    OUTBOUND(\"bd4-outbound\", '\\uefb8'),\n    OUTDOOR(\"bd4-outdoor\", '\\uefb9'),\n    OUTGOING(\"bd4-outgoing\", '\\uefba'),\n    OVAL_LOVE(\"bd4-oval-love\", '\\uefbb'),\n    OVAL_LOVE_TWO(\"bd4-oval-love-two\", '\\uefbc'),\n    OVAL_ONE(\"bd4-oval-one\", '\\uefbd'),\n    OVEN(\"bd4-oven\", '\\uefbe'),\n    OVEN_TRAY(\"bd4-oven-tray\", '\\uefbf'),\n    OVERALL_REDUCTION(\"bd4-overall-reduction\", '\\uefc0'),\n    OWL(\"bd4-owl\", '\\uefc1'),\n    PACIFIER(\"bd4-pacifier\", '\\uefc2'),\n    PAD(\"bd4-pad\", '\\uefc3'),\n    PAGE(\"bd4-page\", '\\uefc4'),\n    PAGE_TEMPLATE(\"bd4-page-template\", '\\uefc5'),\n    PAGODA(\"bd4-pagoda\", '\\uefc6'),\n    PAINT(\"bd4-paint\", '\\uefc7'),\n    PAINTED_EGGSHELL(\"bd4-painted-eggshell\", '\\uefc8'),\n    PAINTED_SCREEN(\"bd4-painted-screen\", '\\uefc9'),\n    PALACE(\"bd4-palace\", '\\uefca'),\n    PALM(\"bd4-palm\", '\\uefcb'),\n    PANDA(\"bd4-panda\", '\\uefcc'),\n    PANGLE(\"bd4-pangle\", '\\uefcd'),\n    PANORAMA_HORIZONTAL(\"bd4-panorama-horizontal\", '\\uefce'),\n    PANTIES(\"bd4-panties\", '\\uefcf'),\n    PAPERCLIP(\"bd4-paperclip\", '\\uefd0'),\n    PAPER_MONEY(\"bd4-paper-money\", '\\uefd1'),\n    PAPER_MONEY_TWO(\"bd4-paper-money-two\", '\\uefd2'),\n    PAPER_SHIP(\"bd4-paper-ship\", '\\uefd3'),\n    PARABOLA(\"bd4-parabola\", '\\uefd4'),\n    PARACHUTE(\"bd4-parachute\", '\\uefd5'),\n    PARAGRAPH_ALPHABET(\"bd4-paragraph-alphabet\", '\\uefd6'),\n    PARAGRAPH_BREAK(\"bd4-paragraph-break\", '\\uefd7'),\n    PARAGRAPH_BREAK_TWO(\"bd4-paragraph-break-two\", '\\uefd8'),\n    PARAGRAPH_CUT(\"bd4-paragraph-cut\", '\\uefd9'),\n    PARAGRAPH_RECTANGLE(\"bd4-paragraph-rectangle\", '\\uefda'),\n    PARAGRAPH_ROUND(\"bd4-paragraph-round\", '\\uefdb'),\n    PARAGRAPH_TRIANGLE(\"bd4-paragraph-triangle\", '\\uefdc'),\n    PARAGRAPH_UNFOLD(\"bd4-paragraph-unfold\", '\\uefdd'),\n    PARALLEL_GATEWAY(\"bd4-parallel-gateway\", '\\uefde'),\n    PARALLELOGRAM(\"bd4-parallelogram\", '\\uefdf'),\n    PARENTING_BOOK(\"bd4-parenting-book\", '\\uefe0'),\n    PARKING(\"bd4-parking\", '\\uefe1'),\n    PARTY_BALLOON(\"bd4-party-balloon\", '\\uefe2'),\n    PASSPORT(\"bd4-passport\", '\\uefe3'),\n    PASSPORT_ONE(\"bd4-passport-one\", '\\uefe4'),\n    PAUSE(\"bd4-pause\", '\\uefe5'),\n    PAUSE_ONE(\"bd4-pause-one\", '\\uefe6'),\n    PAY_CODE(\"bd4-pay-code\", '\\uefe7'),\n    PAY_CODE_ONE(\"bd4-pay-code-one\", '\\uefe8'),\n    PAY_CODE_TWO(\"bd4-pay-code-two\", '\\uefe9'),\n    PAYMENT_METHOD(\"bd4-payment-method\", '\\uefea'),\n    PAYPAL(\"bd4-paypal\", '\\uefeb'),\n    PEACH(\"bd4-peach\", '\\uefec'),\n    PEAR(\"bd4-pear\", '\\uefed'),\n    PEARL_OF_THE_ORIENT(\"bd4-pearl-of-the-orient\", '\\uefee'),\n    PEAS(\"bd4-peas\", '\\uefef'),\n    PENCIL(\"bd4-pencil\", '\\ueff0'),\n    PENNANT(\"bd4-pennant\", '\\ueff1'),\n    PENTAGON_ONE(\"bd4-pentagon-one\", '\\ueff2'),\n    PEOPLE(\"bd4-people\", '\\ueff3'),\n    PEOPLE_BOTTOM(\"bd4-people-bottom\", '\\ueff4'),\n    PEOPLE_BOTTOM_CARD(\"bd4-people-bottom-card\", '\\ueff5'),\n    PEOPLE_DELETE(\"bd4-people-delete\", '\\ueff6'),\n    PEOPLE_DELETE_ONE(\"bd4-people-delete-one\", '\\ueff7'),\n    PEOPLE_DOWNLOAD(\"bd4-people-download\", '\\ueff8'),\n    PEOPLE_LEFT(\"bd4-people-left\", '\\ueff9'),\n    PEOPLE_MINUS(\"bd4-people-minus\", '\\ueffa'),\n    PEOPLE_MINUS_ONE(\"bd4-people-minus-one\", '\\ueffb'),\n    PEOPLE_PLUS(\"bd4-people-plus\", '\\ueffc'),\n    PEOPLE_PLUS_ONE(\"bd4-people-plus-one\", '\\ueffd'),\n    PEOPLE_RIGHT(\"bd4-people-right\", '\\ueffe'),\n    PEOPLES(\"bd4-peoples\", '\\uefff'),\n    PEOPLE_SAFE(\"bd4-people-safe\", '\\uf000'),\n    PEOPLE_SAFE_ONE(\"bd4-people-safe-one\", '\\uf001'),\n    PEOPLE_SEARCH(\"bd4-people-search\", '\\uf002'),\n    PEOPLE_SEARCH_ONE(\"bd4-people-search-one\", '\\uf003'),\n    PEOPLE_SPEAK(\"bd4-people-speak\", '\\uf004'),\n    PEOPLES_TWO(\"bd4-peoples-two\", '\\uf005'),\n    PEOPLE_TOP(\"bd4-people-top\", '\\uf006'),\n    PEOPLE_TOP_CARD(\"bd4-people-top-card\", '\\uf007'),\n    PEOPLE_UNKNOWN(\"bd4-people-unknown\", '\\uf008'),\n    PEOPLE_UPLOAD(\"bd4-people-upload\", '\\uf009'),\n    PERCENTAGE(\"bd4-percentage\", '\\uf00a'),\n    PERFORMANCE(\"bd4-performance\", '\\uf00b'),\n    PERFUME(\"bd4-perfume\", '\\uf00c'),\n    PERFUMER_BOTTLE(\"bd4-perfumer-bottle\", '\\uf00d'),\n    PERIOD(\"bd4-period\", '\\uf00e'),\n    PERMISSIONS(\"bd4-permissions\", '\\uf00f'),\n    PERSONAL_COLLECTION(\"bd4-personal-collection\", '\\uf010'),\n    PERSONAL_PRIVACY(\"bd4-personal-privacy\", '\\uf011'),\n    PERSPECTIVE(\"bd4-perspective\", '\\uf012'),\n    PESTICIDE(\"bd4-pesticide\", '\\uf013'),\n    PETROL(\"bd4-petrol\", '\\uf014'),\n    PHONE(\"bd4-phone\", '\\uf015'),\n    PHONE_BOOTH(\"bd4-phone-booth\", '\\uf016'),\n    PHONE_CALL(\"bd4-phone-call\", '\\uf017'),\n    PHONE_INCOMING(\"bd4-phone-incoming\", '\\uf018'),\n    PHONE_INCOMING_ONE(\"bd4-phone-incoming-one\", '\\uf019'),\n    PHONE_MISSED(\"bd4-phone-missed\", '\\uf01a'),\n    PHONE_OFF(\"bd4-phone-off\", '\\uf01b'),\n    PHONE_ONE(\"bd4-phone-one\", '\\uf01c'),\n    PHONE_OUTGOING(\"bd4-phone-outgoing\", '\\uf01d'),\n    PHONE_OUTGOING_ONE(\"bd4-phone-outgoing-one\", '\\uf01e'),\n    PHONE_TELEPHONE(\"bd4-phone-telephone\", '\\uf01f'),\n    PHONE_TWO(\"bd4-phone-two\", '\\uf020'),\n    PHONE_VIDEO_CALL(\"bd4-phone-video-call\", '\\uf021'),\n    PHONOGRAPH(\"bd4-phonograph\", '\\uf022'),\n    PHOTOGRAPH(\"bd4-photograph\", '\\uf023'),\n    PIANO(\"bd4-piano\", '\\uf024'),\n    PIC(\"bd4-pic\", '\\uf025'),\n    PIC_ONE(\"bd4-pic-one\", '\\uf026'),\n    PICTURE(\"bd4-picture\", '\\uf027'),\n    PICTURE_ALBUM(\"bd4-picture-album\", '\\uf028'),\n    PICTURE_ONE(\"bd4-picture-one\", '\\uf029'),\n    PIE(\"bd4-pie\", '\\uf02a'),\n    PIE_FIVE(\"bd4-pie-five\", '\\uf02b'),\n    PIE_FOUR(\"bd4-pie-four\", '\\uf02c'),\n    PIE_ONE(\"bd4-pie-one\", '\\uf02d'),\n    PIE_SEVEN(\"bd4-pie-seven\", '\\uf02e'),\n    PIE_SIX(\"bd4-pie-six\", '\\uf02f'),\n    PIE_THREE(\"bd4-pie-three\", '\\uf030'),\n    PIE_TWO(\"bd4-pie-two\", '\\uf031'),\n    PIG(\"bd4-pig\", '\\uf032'),\n    PIGEON(\"bd4-pigeon\", '\\uf033'),\n    PIG_ZODIAC(\"bd4-pig-zodiac\", '\\uf034'),\n    PILL(\"bd4-pill\", '\\uf035'),\n    PILLS(\"bd4-pills\", '\\uf036'),\n    PIN(\"bd4-pin\", '\\uf037'),\n    PINEAPPLE(\"bd4-pineapple\", '\\uf038'),\n    PINWHEEL(\"bd4-pinwheel\", '\\uf039'),\n    PISCES(\"bd4-pisces\", '\\uf03a'),\n    PIVOT_TABLE(\"bd4-pivot-table\", '\\uf03b'),\n    PLAN(\"bd4-plan\", '\\uf03c'),\n    PLANET(\"bd4-planet\", '\\uf03d'),\n    PLASTIC_SURGERY(\"bd4-plastic-surgery\", '\\uf03e'),\n    PLATTE(\"bd4-platte\", '\\uf03f'),\n    PLAY(\"bd4-play\", '\\uf040'),\n    PLAYBACK_PROGRESS(\"bd4-playback-progress\", '\\uf041'),\n    PLAY_BASKETBALL(\"bd4-play-basketball\", '\\uf042'),\n    PLAY_CYCLE(\"bd4-play-cycle\", '\\uf043'),\n    PLAY_ONCE(\"bd4-play-once\", '\\uf044'),\n    PLAY_ONE(\"bd4-play-one\", '\\uf045'),\n    PLAY_TWO(\"bd4-play-two\", '\\uf046'),\n    PLAY_VOLLEYBALL(\"bd4-play-volleyball\", '\\uf047'),\n    PLAY_WRONG(\"bd4-play-wrong\", '\\uf048'),\n    PLUG(\"bd4-plug\", '\\uf049'),\n    PLUG_ONE(\"bd4-plug-one\", '\\uf04a'),\n    PLUS(\"bd4-plus\", '\\uf04b'),\n    PLUS_CROSS(\"bd4-plus-cross\", '\\uf04c'),\n    POINT(\"bd4-point\", '\\uf04d'),\n    POINT_OUT(\"bd4-point-out\", '\\uf04e'),\n    POKEBALL_ONE(\"bd4-pokeball-one\", '\\uf04f'),\n    POKER(\"bd4-poker\", '\\uf050'),\n    POPCORN(\"bd4-popcorn\", '\\uf051'),\n    POPCORN_ONE(\"bd4-popcorn-one\", '\\uf052'),\n    POSITIVE_DYNAMICS(\"bd4-positive-dynamics\", '\\uf053'),\n    POT(\"bd4-pot\", '\\uf054'),\n    POTENTIOMETER(\"bd4-potentiometer\", '\\uf055'),\n    POUND(\"bd4-pound\", '\\uf056'),\n    POUND_SIGN(\"bd4-pound-sign\", '\\uf057'),\n    POUTING_FACE(\"bd4-pouting-face\", '\\uf058'),\n    POWDER(\"bd4-powder\", '\\uf059'),\n    POWER(\"bd4-power\", '\\uf05a'),\n    POWERPOINT(\"bd4-powerpoint\", '\\uf05b'),\n    POWER_SUPPLY(\"bd4-power-supply\", '\\uf05c'),\n    POWER_SUPPLY_ONE(\"bd4-power-supply-one\", '\\uf05d'),\n    PPT(\"bd4-ppt\", '\\uf05e'),\n    PREGNANT_WOMEN(\"bd4-pregnant-women\", '\\uf05f'),\n    PRESCHOOL(\"bd4-preschool\", '\\uf060'),\n    PRESCRIPTION(\"bd4-prescription\", '\\uf061'),\n    PRESS(\"bd4-press\", '\\uf062'),\n    PREVIEW_CLOSE(\"bd4-preview-close\", '\\uf063'),\n    PREVIEW_CLOSE_ONE(\"bd4-preview-close-one\", '\\uf064'),\n    PREVIEW_OPEN(\"bd4-preview-open\", '\\uf065'),\n    PRINTER(\"bd4-printer\", '\\uf066'),\n    PRINTER_ONE(\"bd4-printer-one\", '\\uf067'),\n    PRINTER_TWO(\"bd4-printer-two\", '\\uf068'),\n    PRISON(\"bd4-prison\", '\\uf069'),\n    PROCESS_LINE(\"bd4-process-line\", '\\uf06a'),\n    PROJECTOR(\"bd4-projector\", '\\uf06b'),\n    PROJECTOR_ONE(\"bd4-projector-one\", '\\uf06c'),\n    PROJECTOR_THREE(\"bd4-projector-three\", '\\uf06d'),\n    PROJECTOR_TWO(\"bd4-projector-two\", '\\uf06e'),\n    PROPORTIONAL_SCALING(\"bd4-proportional-scaling\", '\\uf06f'),\n    PROTECT(\"bd4-protect\", '\\uf070'),\n    PROTECTION(\"bd4-protection\", '\\uf071'),\n    PUBLIC_TOILET(\"bd4-public-toilet\", '\\uf072'),\n    PULL_DOOR(\"bd4-pull-door\", '\\uf073'),\n    PULL_REQUESTS(\"bd4-pull-requests\", '\\uf074'),\n    PUMPKIN(\"bd4-pumpkin\", '\\uf075'),\n    PURE_NATURAL(\"bd4-pure-natural\", '\\uf076'),\n    PUSH_DOOR(\"bd4-push-door\", '\\uf077'),\n    PUSHPIN(\"bd4-pushpin\", '\\uf078'),\n    PUZZLE(\"bd4-puzzle\", '\\uf079'),\n    PYRAMID(\"bd4-pyramid\", '\\uf07a'),\n    PYRAMID_ONE(\"bd4-pyramid-one\", '\\uf07b'),\n    QINGNIAO_CLUE(\"bd4-qingniao-clue\", '\\uf07c'),\n    QIYEHAO(\"bd4-qiyehao\", '\\uf07d'),\n    QUADRANGULAR_PYRAMID(\"bd4-quadrangular-pyramid\", '\\uf07e'),\n    QUADRILATERAL(\"bd4-quadrilateral\", '\\uf07f'),\n    QUOTE(\"bd4-quote\", '\\uf080'),\n    RABBIT(\"bd4-rabbit\", '\\uf081'),\n    RABBIT_ZODIAC(\"bd4-rabbit-zodiac\", '\\uf082'),\n    RADAR(\"bd4-radar\", '\\uf083'),\n    RADAR_CHART(\"bd4-radar-chart\", '\\uf084'),\n    RADAR_THREE(\"bd4-radar-three\", '\\uf085'),\n    RADAR_TWO(\"bd4-radar-two\", '\\uf086'),\n    RADIATION(\"bd4-radiation\", '\\uf087'),\n    RADIO(\"bd4-radio\", '\\uf088'),\n    RADIO_NANNY(\"bd4-radio-nanny\", '\\uf089'),\n    RADIO_ONE(\"bd4-radio-one\", '\\uf08a'),\n    RADIO_TWO(\"bd4-radio-two\", '\\uf08b'),\n    RADISH(\"bd4-radish\", '\\uf08c'),\n    RADISH_ONE(\"bd4-radish-one\", '\\uf08d'),\n    RAILWAY(\"bd4-railway\", '\\uf08e'),\n    RANKING(\"bd4-ranking\", '\\uf08f'),\n    RANKING_LIST(\"bd4-ranking-list\", '\\uf090'),\n    RATTLE(\"bd4-rattle\", '\\uf091'),\n    RATTLE_ONE(\"bd4-rattle-one\", '\\uf092'),\n    RAZOR(\"bd4-razor\", '\\uf093'),\n    READ_BOOK(\"bd4-read-book\", '\\uf094'),\n    RECEIVE(\"bd4-receive\", '\\uf095'),\n    RECEIVER(\"bd4-receiver\", '\\uf096'),\n    RECENT_VIEWS_SORT(\"bd4-recent-views-sort\", '\\uf097'),\n    RECORD(\"bd4-record\", '\\uf098'),\n    RECORD_DISC(\"bd4-record-disc\", '\\uf099'),\n    RECORD_PLAYER(\"bd4-record-player\", '\\uf09a'),\n    RECTANGLE(\"bd4-rectangle\", '\\uf09b'),\n    RECTANGLE_ONE(\"bd4-rectangle-one\", '\\uf09c'),\n    RECTANGLE_SMALL(\"bd4-rectangle-small\", '\\uf09d'),\n    RECTANGLE_TEAR(\"bd4-rectangle-tear\", '\\uf09e'),\n    RECTANGLE_X(\"bd4-rectangle-x\", '\\uf09f'),\n    RECTANGULAR_CIRCULAR_CONNECTION(\"bd4-rectangular-circular-connection\", '\\uf0a0'),\n    RECTANGULAR_CIRCULAR_SEPARATION(\"bd4-rectangular-circular-separation\", '\\uf0a1'),\n    RECTANGULAR_VERTEBRA(\"bd4-rectangular-vertebra\", '\\uf0a2'),\n    RECYCLE_BIN(\"bd4-recycle-bin\", '\\uf0a3'),\n    RECYCLING(\"bd4-recycling\", '\\uf0a4'),\n    RECYCLING_POOL(\"bd4-recycling-pool\", '\\uf0a5'),\n    RED_CROSS(\"bd4-red-cross\", '\\uf0a6'),\n    RED_ENVELOPE(\"bd4-red-envelope\", '\\uf0a7'),\n    RED_ENVELOPES(\"bd4-red-envelopes\", '\\uf0a8'),\n    REDO(\"bd4-redo\", '\\uf0a9'),\n    REDUCE(\"bd4-reduce\", '\\uf0aa'),\n    REDUCE_DECIMAL_PLACES(\"bd4-reduce-decimal-places\", '\\uf0ab'),\n    REDUCE_ONE(\"bd4-reduce-one\", '\\uf0ac'),\n    REDUCE_TWO(\"bd4-reduce-two\", '\\uf0ad'),\n    REDUCE_USER(\"bd4-reduce-user\", '\\uf0ae'),\n    REEL(\"bd4-reel\", '\\uf0af'),\n    REFRACTION(\"bd4-refraction\", '\\uf0b0'),\n    REFRESH(\"bd4-refresh\", '\\uf0b1'),\n    REFRESH_ONE(\"bd4-refresh-one\", '\\uf0b2'),\n    REFRIGERATOR(\"bd4-refrigerator\", '\\uf0b3'),\n    REJECT(\"bd4-reject\", '\\uf0b4'),\n    RELATIONAL_GRAPH(\"bd4-relational-graph\", '\\uf0b5'),\n    RELIEVED_FACE(\"bd4-relieved-face\", '\\uf0b6'),\n    RELOAD(\"bd4-reload\", '\\uf0b7'),\n    REMIND(\"bd4-remind\", '\\uf0b8'),\n    REMIND_DISABLE(\"bd4-remind-disable\", '\\uf0b9'),\n    REMOTE_CONTROL(\"bd4-remote-control\", '\\uf0ba'),\n    REMOTE_CONTROL_ONE(\"bd4-remote-control-one\", '\\uf0bb'),\n    RENAL(\"bd4-renal\", '\\uf0bc'),\n    RENAULT(\"bd4-renault\", '\\uf0bd'),\n    REPAIR(\"bd4-repair\", '\\uf0be'),\n    REPLAY_FIVE(\"bd4-replay-five\", '\\uf0bf'),\n    REPLAY_MUSIC(\"bd4-replay-music\", '\\uf0c0'),\n    REPORT(\"bd4-report\", '\\uf0c1'),\n    REPOSITIONING(\"bd4-repositioning\", '\\uf0c2'),\n    RESISTOR(\"bd4-resistor\", '\\uf0c3'),\n    RESPECT(\"bd4-respect\", '\\uf0c4'),\n    RESTING(\"bd4-resting\", '\\uf0c5'),\n    RETRO_BAG(\"bd4-retro-bag\", '\\uf0c6'),\n    RETURN(\"bd4-return\", '\\uf0c7'),\n    REVERSE_LENS(\"bd4-reverse-lens\", '\\uf0c8'),\n    REVERSE_LENS_ONE(\"bd4-reverse-lens-one\", '\\uf0c9'),\n    REVERSE_OPERATION_IN(\"bd4-reverse-operation-in\", '\\uf0ca'),\n    REVERSE_OPERATION_OUT(\"bd4-reverse-operation-out\", '\\uf0cb'),\n    REVERSE_ROTATION(\"bd4-reverse-rotation\", '\\uf0cc'),\n    RICE(\"bd4-rice\", '\\uf0cd'),\n    RIDING(\"bd4-riding\", '\\uf0ce'),\n    RIDING_ONE(\"bd4-riding-one\", '\\uf0cf'),\n    RIGHT(\"bd4-right\", '\\uf0d0'),\n    RIGHT_ANGLE(\"bd4-right-angle\", '\\uf0d1'),\n    RIGHT_BAR(\"bd4-right-bar\", '\\uf0d2'),\n    RIGHT_BRANCH(\"bd4-right-branch\", '\\uf0d3'),\n    RIGHT_BRANCH_ONE(\"bd4-right-branch-one\", '\\uf0d4'),\n    RIGHT_BRANCH_TWO(\"bd4-right-branch-two\", '\\uf0d5'),\n    RIGHT_C(\"bd4-right-c\", '\\uf0d6'),\n    RIGHT_EXPAND(\"bd4-right-expand\", '\\uf0d7'),\n    RIGHT_ONE(\"bd4-right-one\", '\\uf0d8'),\n    RIGHT_RUN(\"bd4-right-run\", '\\uf0d9'),\n    RIGHT_SMALL(\"bd4-right-small\", '\\uf0da'),\n    RIGHT_SMALL_DOWN(\"bd4-right-small-down\", '\\uf0db'),\n    RIGHT_SMALL_UP(\"bd4-right-small-up\", '\\uf0dc'),\n    RIGHT_SQUARE(\"bd4-right-square\", '\\uf0dd'),\n    RIGHT_TWO(\"bd4-right-two\", '\\uf0de'),\n    RIGHT_USER(\"bd4-right-user\", '\\uf0df'),\n    RING(\"bd4-ring\", '\\uf0e0'),\n    RING_ONE(\"bd4-ring-one\", '\\uf0e1'),\n    RINGS(\"bd4-rings\", '\\uf0e2'),\n    RIPPLE(\"bd4-ripple\", '\\uf0e3'),\n    ROAD(\"bd4-road\", '\\uf0e4'),\n    ROAD_CONE(\"bd4-road-cone\", '\\uf0e5'),\n    ROAD_ONE(\"bd4-road-one\", '\\uf0e6'),\n    ROAD_SIGN(\"bd4-road-sign\", '\\uf0e7'),\n    ROAD_SIGN_BOTH(\"bd4-road-sign-both\", '\\uf0e8'),\n    ROBOT(\"bd4-robot\", '\\uf0e9'),\n    ROBOT_ONE(\"bd4-robot-one\", '\\uf0ea'),\n    ROBOT_TWO(\"bd4-robot-two\", '\\uf0eb'),\n    ROCK(\"bd4-rock\", '\\uf0ec'),\n    ROCKET(\"bd4-rocket\", '\\uf0ed'),\n    ROCKET_ONE(\"bd4-rocket-one\", '\\uf0ee'),\n    ROCK_GESTURE(\"bd4-rock-gesture\", '\\uf0ef'),\n    ROCKING_HORSE(\"bd4-rocking-horse\", '\\uf0f0'),\n    ROLLERSKATES(\"bd4-rollerskates\", '\\uf0f1'),\n    ROMPER(\"bd4-romper\", '\\uf0f2'),\n    ROPE_SKIPPING(\"bd4-rope-skipping\", '\\uf0f3'),\n    ROPE_SKIPPING_ONE(\"bd4-rope-skipping-one\", '\\uf0f4'),\n    ROTATE(\"bd4-rotate\", '\\uf0f5'),\n    ROTATE_ONE(\"bd4-rotate-one\", '\\uf0f6'),\n    ROTATING_ADD(\"bd4-rotating-add\", '\\uf0f7'),\n    ROTATING_FORWARD(\"bd4-rotating-forward\", '\\uf0f8'),\n    ROTATION(\"bd4-rotation\", '\\uf0f9'),\n    ROTATION_HORIZONTAL(\"bd4-rotation-horizontal\", '\\uf0fa'),\n    ROTATION_ONE(\"bd4-rotation-one\", '\\uf0fb'),\n    ROTATION_VERTICAL(\"bd4-rotation-vertical\", '\\uf0fc'),\n    ROUND(\"bd4-round\", '\\uf0fd'),\n    ROUND_CALIPER(\"bd4-round-caliper\", '\\uf0fe'),\n    ROUND_DISTORTION(\"bd4-round-distortion\", '\\uf0ff'),\n    ROUND_MASK(\"bd4-round-mask\", '\\uf100'),\n    ROUND_SOCKET(\"bd4-round-socket\", '\\uf101'),\n    ROUND_TRIP(\"bd4-round-trip\", '\\uf102'),\n    ROUTER(\"bd4-router\", '\\uf103'),\n    ROUTER_ONE(\"bd4-router-one\", '\\uf104'),\n    ROW_HEIGHT(\"bd4-row-height\", '\\uf105'),\n    ROWING(\"bd4-rowing\", '\\uf106'),\n    RS_MALE(\"bd4-rs-male\", '\\uf107'),\n    RSS(\"bd4-rss\", '\\uf108'),\n    RUGBY(\"bd4-rugby\", '\\uf109'),\n    RUGBY_ONE(\"bd4-rugby-one\", '\\uf10a'),\n    RULER(\"bd4-ruler\", '\\uf10b'),\n    RULER_ONE(\"bd4-ruler-one\", '\\uf10c'),\n    RULE_TWO(\"bd4-rule-two\", '\\uf10d'),\n    RUN_LEFT(\"bd4-run-left\", '\\uf10e'),\n    SAFE_RETRIEVAL(\"bd4-safe-retrieval\", '\\uf10f'),\n    SAGITTARIUS(\"bd4-sagittarius\", '\\uf110'),\n    SAILBOAT(\"bd4-sailboat\", '\\uf111'),\n    SAILBOAT_ONE(\"bd4-sailboat-one\", '\\uf112'),\n    SAILING(\"bd4-sailing\", '\\uf113'),\n    SALES_REPORT(\"bd4-sales-report\", '\\uf114'),\n    SANDALS(\"bd4-sandals\", '\\uf115'),\n    SANDSTORM(\"bd4-sandstorm\", '\\uf116'),\n    SANDWICH(\"bd4-sandwich\", '\\uf117'),\n    SANDWICH_ONE(\"bd4-sandwich-one\", '\\uf118'),\n    SAPLING(\"bd4-sapling\", '\\uf119'),\n    SAVE(\"bd4-save\", '\\uf11a'),\n    SAVE_ONE(\"bd4-save-one\", '\\uf11b'),\n    SCALE(\"bd4-scale\", '\\uf11c'),\n    SCALE_ONE(\"bd4-scale-one\", '\\uf11d'),\n    SCALLION(\"bd4-scallion\", '\\uf11e'),\n    SCAN(\"bd4-scan\", '\\uf11f'),\n    SCAN_CODE(\"bd4-scan-code\", '\\uf120'),\n    SCANNING(\"bd4-scanning\", '\\uf121'),\n    SCANNING_TWO(\"bd4-scanning-two\", '\\uf122'),\n    SCAN_SETTING(\"bd4-scan-setting\", '\\uf123'),\n    SCATTER_ALIGNMENT(\"bd4-scatter-alignment\", '\\uf124'),\n    SCHEDULE(\"bd4-schedule\", '\\uf125'),\n    SCHOOL(\"bd4-school\", '\\uf126'),\n    SCISSORS(\"bd4-scissors\", '\\uf127'),\n    SCOREBOARD(\"bd4-scoreboard\", '\\uf128'),\n    SCORPIO(\"bd4-scorpio\", '\\uf129'),\n    SCREEN_ROTATION(\"bd4-screen-rotation\", '\\uf12a'),\n    SCREENSHOT(\"bd4-screenshot\", '\\uf12b'),\n    SCREENSHOT_ONE(\"bd4-screenshot-one\", '\\uf12c'),\n    SCREENSHOT_TWO(\"bd4-screenshot-two\", '\\uf12d'),\n    SCREWDRIVER(\"bd4-screwdriver\", '\\uf12e'),\n    SD(\"bd4-sd\", '\\uf12f'),\n    SD_CARD(\"bd4-sd-card\", '\\uf130'),\n    SEAL(\"bd4-seal\", '\\uf131'),\n    SEARCH(\"bd4-search\", '\\uf132'),\n    SEAT(\"bd4-seat\", '\\uf133'),\n    SECURITY(\"bd4-security\", '\\uf134'),\n    SECURITY_STALL(\"bd4-security-stall\", '\\uf135'),\n    SEEDLING(\"bd4-seedling\", '\\uf136'),\n    SELECTED(\"bd4-selected\", '\\uf137'),\n    SELECTED_FOCUS(\"bd4-selected-focus\", '\\uf138'),\n    SELFIE(\"bd4-selfie\", '\\uf139'),\n    SEND(\"bd4-send\", '\\uf13a'),\n    SEND_BACKWARD(\"bd4-send-backward\", '\\uf13b'),\n    SEND_EMAIL(\"bd4-send-email\", '\\uf13c'),\n    SEND_ONE(\"bd4-send-one\", '\\uf13d'),\n    SEND_TO_BACK(\"bd4-send-to-back\", '\\uf13e'),\n    SENT_TO_BACK(\"bd4-sent-to-back\", '\\uf13f'),\n    SEO(\"bd4-seo\", '\\uf140'),\n    SEO_FOLDER(\"bd4-seo-folder\", '\\uf141'),\n    SERVER(\"bd4-server\", '\\uf142'),\n    SET_OFF(\"bd4-set-off\", '\\uf143'),\n    SETTING(\"bd4-setting\", '\\uf144'),\n    SETTING_COMPUTER(\"bd4-setting-computer\", '\\uf145'),\n    SETTING_CONFIG(\"bd4-setting-config\", '\\uf146'),\n    SETTING_LAPTOP(\"bd4-setting-laptop\", '\\uf147'),\n    SETTING_ONE(\"bd4-setting-one\", '\\uf148'),\n    SETTING_THREE(\"bd4-setting-three\", '\\uf149'),\n    SETTING_TWO(\"bd4-setting-two\", '\\uf14a'),\n    SETTING_WEB(\"bd4-setting-web\", '\\uf14b'),\n    SEVEN_KEY(\"bd4-seven-key\", '\\uf14c'),\n    SHADE(\"bd4-shade\", '\\uf14d'),\n    SHAKE(\"bd4-shake\", '\\uf14e'),\n    SHARE(\"bd4-share\", '\\uf14f'),\n    SHARE_ONE(\"bd4-share-one\", '\\uf150'),\n    SHARE_SYS(\"bd4-share-sys\", '\\uf151'),\n    SHARE_THREE(\"bd4-share-three\", '\\uf152'),\n    SHARE_TWO(\"bd4-share-two\", '\\uf153'),\n    SHAVER(\"bd4-shaver\", '\\uf154'),\n    SHAVER_ONE(\"bd4-shaver-one\", '\\uf155'),\n    SHAVING(\"bd4-shaving\", '\\uf156'),\n    SHEEP_ZODIAC(\"bd4-sheep-zodiac\", '\\uf157'),\n    SHIELD(\"bd4-shield\", '\\uf158'),\n    SHIELD_ADD(\"bd4-shield-add\", '\\uf159'),\n    SHIP(\"bd4-ship\", '\\uf15a'),\n    SHOP(\"bd4-shop\", '\\uf15b'),\n    SHOPPING(\"bd4-shopping\", '\\uf15c'),\n    SHOPPING_BAG(\"bd4-shopping-bag\", '\\uf15d'),\n    SHOPPING_BAG_ONE(\"bd4-shopping-bag-one\", '\\uf15e'),\n    SHOPPING_CART(\"bd4-shopping-cart\", '\\uf15f'),\n    SHOPPING_CART_ADD(\"bd4-shopping-cart-add\", '\\uf160'),\n    SHOPPING_CART_DEL(\"bd4-shopping-cart-del\", '\\uf161'),\n    SHOPPING_CART_ONE(\"bd4-shopping-cart-one\", '\\uf162'),\n    SHOPPING_CART_TWO(\"bd4-shopping-cart-two\", '\\uf163'),\n    SHOPPING_MALL(\"bd4-shopping-mall\", '\\uf164'),\n    SHORTS(\"bd4-shorts\", '\\uf165'),\n    SHORT_SKIRT(\"bd4-short-skirt\", '\\uf166'),\n    SHOULDER_BAG(\"bd4-shoulder-bag\", '\\uf167'),\n    SHOVEL(\"bd4-shovel\", '\\uf168'),\n    SHOVEL_ONE(\"bd4-shovel-one\", '\\uf169'),\n    SHOWER_HEAD(\"bd4-shower-head\", '\\uf16a'),\n    SHRIMP(\"bd4-shrimp\", '\\uf16b'),\n    SHUFFLE(\"bd4-shuffle\", '\\uf16c'),\n    SHUFFLE_ONE(\"bd4-shuffle-one\", '\\uf16d'),\n    SHUTTER_PRIORITY(\"bd4-shutter-priority\", '\\uf16e'),\n    SICKBED(\"bd4-sickbed\", '\\uf16f'),\n    SIGNAL(\"bd4-signal\", '\\uf170'),\n    SIGNAL_ONE(\"bd4-signal-one\", '\\uf171'),\n    SIGNAL_STRENGTH(\"bd4-signal-strength\", '\\uf172'),\n    SIGNAL_TOWER(\"bd4-signal-tower\", '\\uf173'),\n    SIGNAL_TOWER_ONE(\"bd4-signal-tower-one\", '\\uf174'),\n    SIM(\"bd4-sim\", '\\uf175'),\n    SIM_CARD(\"bd4-sim-card\", '\\uf176'),\n    SINGLE_BED(\"bd4-single-bed\", '\\uf177'),\n    SINUSOID(\"bd4-sinusoid\", '\\uf178'),\n    SIPPY_CUP(\"bd4-sippy-cup\", '\\uf179'),\n    SIX(\"bd4-six\", '\\uf17a'),\n    SIX_CIRCULAR_CONNECTION(\"bd4-six-circular-connection\", '\\uf17b'),\n    SIX_KEY(\"bd4-six-key\", '\\uf17c'),\n    SIX_POINTS(\"bd4-six-points\", '\\uf17d'),\n    SKATE(\"bd4-skate\", '\\uf17e'),\n    SKATES(\"bd4-skates\", '\\uf17f'),\n    SKATING(\"bd4-skating\", '\\uf180'),\n    SKETCH(\"bd4-sketch\", '\\uf181'),\n    SKIING_NORDIC(\"bd4-skiing-nordic\", '\\uf182'),\n    SKULL(\"bd4-skull\", '\\uf183'),\n    SLAVE(\"bd4-slave\", '\\uf184'),\n    SLEAVES(\"bd4-sleaves\", '\\uf185'),\n    SLEEP(\"bd4-sleep\", '\\uf186'),\n    SLEEP_ONE(\"bd4-sleep-one\", '\\uf187'),\n    SLEEP_TWO(\"bd4-sleep-two\", '\\uf188'),\n    SLIDE(\"bd4-slide\", '\\uf189'),\n    SLIDE_TWO(\"bd4-slide-two\", '\\uf18a'),\n    SLIDING_HORIZONTAL(\"bd4-sliding-horizontal\", '\\uf18b'),\n    SLIDING_VERTICAL(\"bd4-sliding-vertical\", '\\uf18c'),\n    SLIGHTLY_FROWNING_FACE_WHIT_OPEN_MOUTH(\"bd4-slightly-frowning-face-whit-open-mouth\", '\\uf18d'),\n    SLIGHTLY_SMILING_FACE(\"bd4-slightly-smiling-face\", '\\uf18e'),\n    SLIPPERS(\"bd4-slippers\", '\\uf18f'),\n    SLIPPERS_ONE(\"bd4-slippers-one\", '\\uf190'),\n    SLY_FACE_WHIT_SMILE(\"bd4-sly-face-whit-smile\", '\\uf191'),\n    SMART_OPTIMIZATION(\"bd4-smart-optimization\", '\\uf192'),\n    SMILING_FACE(\"bd4-smiling-face\", '\\uf193'),\n    SMILING_FACE_WITH_SQUINTING_EYES(\"bd4-smiling-face-with-squinting-eyes\", '\\uf194'),\n    SNACKS(\"bd4-snacks\", '\\uf195'),\n    SNAKE_ZODIAC(\"bd4-snake-zodiac\", '\\uf196'),\n    SNOW(\"bd4-snow\", '\\uf197'),\n    SNOWFLAKE(\"bd4-snowflake\", '\\uf198'),\n    SNOWMAN(\"bd4-snowman\", '\\uf199'),\n    SOAP_BUBBLE(\"bd4-soap-bubble\", '\\uf19a'),\n    SOCCER(\"bd4-soccer\", '\\uf19b'),\n    SOCCER_ONE(\"bd4-soccer-one\", '\\uf19c'),\n    SOCKS(\"bd4-socks\", '\\uf19d'),\n    SOFA(\"bd4-sofa\", '\\uf19e'),\n    SOFA_TWO(\"bd4-sofa-two\", '\\uf19f'),\n    SOFTBALL(\"bd4-softball\", '\\uf1a0'),\n    SOLAR_ENERGY(\"bd4-solar-energy\", '\\uf1a1'),\n    SOLAR_ENERGY_ONE(\"bd4-solar-energy-one\", '\\uf1a2'),\n    SOLID_STATE_DISK(\"bd4-solid-state-disk\", '\\uf1a3'),\n    SORCERER_HAT(\"bd4-sorcerer-hat\", '\\uf1a4'),\n    SORT(\"bd4-sort\", '\\uf1a5'),\n    SORT_AMOUNT_DOWN(\"bd4-sort-amount-down\", '\\uf1a6'),\n    SORT_AMOUNT_UP(\"bd4-sort-amount-up\", '\\uf1a7'),\n    SORT_FOUR(\"bd4-sort-four\", '\\uf1a8'),\n    SORT_ONE(\"bd4-sort-one\", '\\uf1a9'),\n    SORT_THREE(\"bd4-sort-three\", '\\uf1aa'),\n    SORT_TWO(\"bd4-sort-two\", '\\uf1ab'),\n    SOUND(\"bd4-sound\", '\\uf1ac'),\n    SOUND_ONE(\"bd4-sound-one\", '\\uf1ad'),\n    SOUND_WAVE(\"bd4-sound-wave\", '\\uf1ae'),\n    SOURCE_CODE(\"bd4-source-code\", '\\uf1af'),\n    SOYBEAN_MILK_MAKER(\"bd4-soybean-milk-maker\", '\\uf1b0'),\n    SPA_CANDLE(\"bd4-spa-candle\", '\\uf1b1'),\n    SPACE_COLONY(\"bd4-space-colony\", '\\uf1b2'),\n    SPANNER(\"bd4-spanner\", '\\uf1b3'),\n    SPEAKER(\"bd4-speaker\", '\\uf1b4'),\n    SPEAKER_ONE(\"bd4-speaker-one\", '\\uf1b5'),\n    SPEED(\"bd4-speed\", '\\uf1b6'),\n    SPEED_ONE(\"bd4-speed-one\", '\\uf1b7'),\n    SPERM(\"bd4-sperm\", '\\uf1b8'),\n    SPHERE(\"bd4-sphere\", '\\uf1b9'),\n    SPIDER_MAN(\"bd4-spider-man\", '\\uf1ba'),\n    SPIKEDSHOES(\"bd4-spikedshoes\", '\\uf1bb'),\n    SPINNING_TOP(\"bd4-spinning-top\", '\\uf1bc'),\n    SPLIT(\"bd4-split\", '\\uf1bd'),\n    SPLIT_BRANCH(\"bd4-split-branch\", '\\uf1be'),\n    SPLIT_CELLS(\"bd4-split-cells\", '\\uf1bf'),\n    SPLIT_TURN_DOWN_LEFT(\"bd4-split-turn-down-left\", '\\uf1c0'),\n    SPLIT_TURN_DOWN_RIGHT(\"bd4-split-turn-down-right\", '\\uf1c1'),\n    SPOON(\"bd4-spoon\", '\\uf1c2'),\n    SPORT(\"bd4-sport\", '\\uf1c3'),\n    SPORTING(\"bd4-sporting\", '\\uf1c4'),\n    SQUARE(\"bd4-square\", '\\uf1c5'),\n    SQUARE_SMALL(\"bd4-square-small\", '\\uf1c6'),\n    SSD(\"bd4-ssd\", '\\uf1c7'),\n    STACK_LIGHT(\"bd4-stack-light\", '\\uf1c8'),\n    STAMP(\"bd4-stamp\", '\\uf1c9'),\n    STAND_UP(\"bd4-stand-up\", '\\uf1ca'),\n    STAPLER(\"bd4-stapler\", '\\uf1cb'),\n    STAR(\"bd4-star\", '\\uf1cc'),\n    STAR_ONE(\"bd4-star-one\", '\\uf1cd'),\n    START_TIME_SORT(\"bd4-start-time-sort\", '\\uf1ce'),\n    STEERING_WHEEL(\"bd4-steering-wheel\", '\\uf1cf'),\n    STEOLLER(\"bd4-steoller\", '\\uf1d0'),\n    STEREO_NESTING(\"bd4-stereo-nesting\", '\\uf1d1'),\n    STEREO_ONE(\"bd4-stereo-one\", '\\uf1d2'),\n    STEREO_PERSPECTIVE(\"bd4-stereo-perspective\", '\\uf1d3'),\n    STETHOSCOPE(\"bd4-stethoscope\", '\\uf1d4'),\n    STICKERS(\"bd4-stickers\", '\\uf1d5'),\n    STOCK_MARKET(\"bd4-stock-market\", '\\uf1d6'),\n    STOPWATCH(\"bd4-stopwatch\", '\\uf1d7'),\n    STOPWATCH_START(\"bd4-stopwatch-start\", '\\uf1d8'),\n    STORAGE_CARD_ONE(\"bd4-storage-card-one\", '\\uf1d9'),\n    STORAGE_CARD_TWO(\"bd4-storage-card-two\", '\\uf1da'),\n    STRAIGHT_RAZOR(\"bd4-straight-razor\", '\\uf1db'),\n    STRAW_HAT(\"bd4-straw-hat\", '\\uf1dc'),\n    STRETCHING(\"bd4-stretching\", '\\uf1dd'),\n    STRETCHING_ONE(\"bd4-stretching-one\", '\\uf1de'),\n    STRIKETHROUGH(\"bd4-strikethrough\", '\\uf1df'),\n    STRONGBOX(\"bd4-strongbox\", '\\uf1e0'),\n    S_TURN_DOWN(\"bd4-s-turn-down\", '\\uf1e1'),\n    S_TURN_LEFT(\"bd4-s-turn-left\", '\\uf1e2'),\n    S_TURN_RIGHT(\"bd4-s-turn-right\", '\\uf1e3'),\n    S_TURN_UP(\"bd4-s-turn-up\", '\\uf1e4'),\n    SUBTRACT_SELECTION(\"bd4-subtract-selection\", '\\uf1e5'),\n    SUBTRACT_SELECTION_ONE(\"bd4-subtract-selection-one\", '\\uf1e6'),\n    SUBWAY(\"bd4-subway\", '\\uf1e7'),\n    SUCCESS(\"bd4-success\", '\\uf1e8'),\n    SUCCESS_PICTURE(\"bd4-success-picture\", '\\uf1e9'),\n    SUM(\"bd4-sum\", '\\uf1ea'),\n    SUN(\"bd4-sun\", '\\uf1eb'),\n    SUNBATH(\"bd4-sunbath\", '\\uf1ec'),\n    SUN_HAT(\"bd4-sun-hat\", '\\uf1ed'),\n    SUNNY(\"bd4-sunny\", '\\uf1ee'),\n    SUN_ONE(\"bd4-sun-one\", '\\uf1ef'),\n    SUNRISE(\"bd4-sunrise\", '\\uf1f0'),\n    SUNSET(\"bd4-sunset\", '\\uf1f1'),\n    SUNSHADE(\"bd4-sunshade\", '\\uf1f2'),\n    SURPRISED_FACE_WITH_OPEN_BIG_MOUTH(\"bd4-surprised-face-with-open-big-mouth\", '\\uf1f3'),\n    SURPRISED_FACE_WITH_OPEN_MOUTH(\"bd4-surprised-face-with-open-mouth\", '\\uf1f4'),\n    SURVEILLANCE_CAMERAS(\"bd4-surveillance-cameras\", '\\uf1f5'),\n    SURVEILLANCE_CAMERAS_ONE(\"bd4-surveillance-cameras-one\", '\\uf1f6'),\n    SURVEILLANCE_CAMERAS_TWO(\"bd4-surveillance-cameras-two\", '\\uf1f7'),\n    SWALLOW(\"bd4-swallow\", '\\uf1f8'),\n    SWEATER(\"bd4-sweater\", '\\uf1f9'),\n    SWIMMING_POOL(\"bd4-swimming-pool\", '\\uf1fa'),\n    SWIMMING_RING(\"bd4-swimming-ring\", '\\uf1fb'),\n    SWIMSUIT(\"bd4-swimsuit\", '\\uf1fc'),\n    SWING(\"bd4-swing\", '\\uf1fd'),\n    SWIPE(\"bd4-swipe\", '\\uf1fe'),\n    SWITCH(\"bd4-switch\", '\\uf1ff'),\n    SWITCH_BUTTON(\"bd4-switch-button\", '\\uf200'),\n    SWITCH_CONTRAST(\"bd4-switch-contrast\", '\\uf201'),\n    SWITCHING_DONE(\"bd4-switching-done\", '\\uf202'),\n    SWITCH_NINTENDO(\"bd4-switch-nintendo\", '\\uf203'),\n    SWITCH_ONE(\"bd4-switch-one\", '\\uf204'),\n    SWITCH_THEMES(\"bd4-switch-themes\", '\\uf205'),\n    SWITCH_TRACK(\"bd4-switch-track\", '\\uf206'),\n    SYMBOL(\"bd4-symbol\", '\\uf207'),\n    SYMBOL_DOUBLE_X(\"bd4-symbol-double-x\", '\\uf208'),\n    SYMMETRY(\"bd4-symmetry\", '\\uf209'),\n    SYNC(\"bd4-sync\", '\\uf20a'),\n    SYSTEM(\"bd4-system\", '\\uf20b'),\n    TABLE(\"bd4-table\", '\\uf20c'),\n    TABLE_FILE(\"bd4-table-file\", '\\uf20d'),\n    TABLE_LAMP(\"bd4-table-lamp\", '\\uf20e'),\n    TABLE_REPORT(\"bd4-table-report\", '\\uf20f'),\n    TABLETENNIS(\"bd4-tabletennis\", '\\uf210'),\n    TAG(\"bd4-tag\", '\\uf211'),\n    TAG_ONE(\"bd4-tag-one\", '\\uf212'),\n    TAILORING(\"bd4-tailoring\", '\\uf213'),\n    TAILORING_TWO(\"bd4-tailoring-two\", '\\uf214'),\n    TAJ_MAHAL(\"bd4-taj-mahal\", '\\uf215'),\n    TAKE_OFF(\"bd4-take-off\", '\\uf216'),\n    TAKE_OFF_ONE(\"bd4-take-off-one\", '\\uf217'),\n    TAOBAO(\"bd4-taobao\", '\\uf218'),\n    TAPE(\"bd4-tape\", '\\uf219'),\n    TAPE_MEASURE(\"bd4-tape-measure\", '\\uf21a'),\n    TARGET(\"bd4-target\", '\\uf21b'),\n    TARGET_ONE(\"bd4-target-one\", '\\uf21c'),\n    TARGET_TWO(\"bd4-target-two\", '\\uf21d'),\n    TAURUS(\"bd4-taurus\", '\\uf21e'),\n    TAXI(\"bd4-taxi\", '\\uf21f'),\n    TEA(\"bd4-tea\", '\\uf220'),\n    TEA_DRINK(\"bd4-tea-drink\", '\\uf221'),\n    TEAPOT(\"bd4-teapot\", '\\uf222'),\n    TEETH(\"bd4-teeth\", '\\uf223'),\n    TELEGRAM(\"bd4-telegram\", '\\uf224'),\n    TELESCOPE(\"bd4-telescope\", '\\uf225'),\n    TENCENT_QQ(\"bd4-tencent-qq\", '\\uf226'),\n    TENNIS(\"bd4-tennis\", '\\uf227'),\n    TENT(\"bd4-tent\", '\\uf228'),\n    TENT_BANNER(\"bd4-tent-banner\", '\\uf229'),\n    TERMINAL(\"bd4-terminal\", '\\uf22a'),\n    TERMINATION_FILE(\"bd4-termination-file\", '\\uf22b'),\n    TERRACE(\"bd4-terrace\", '\\uf22c'),\n    TEST_TUBE(\"bd4-test-tube\", '\\uf22d'),\n    TEXT(\"bd4-text\", '\\uf22e'),\n    TEXTAREA(\"bd4-textarea\", '\\uf22f'),\n    TEXT_BOLD(\"bd4-text-bold\", '\\uf230'),\n    TEXT_ITALIC(\"bd4-text-italic\", '\\uf231'),\n    TEXT_MESSAGE(\"bd4-text-message\", '\\uf232'),\n    TEXT_RECOGNITION(\"bd4-text-recognition\", '\\uf233'),\n    TEXT_ROTATION_DOWN(\"bd4-text-rotation-down\", '\\uf234'),\n    TEXT_ROTATION_LEFT(\"bd4-text-rotation-left\", '\\uf235'),\n    TEXT_ROTATION_NONE(\"bd4-text-rotation-none\", '\\uf236'),\n    TEXT_ROTATION_UP(\"bd4-text-rotation-up\", '\\uf237'),\n    TEXT_STYLE(\"bd4-text-style\", '\\uf238'),\n    TEXT_STYLE_ONE(\"bd4-text-style-one\", '\\uf239'),\n    TEXT_UNDERLINE(\"bd4-text-underline\", '\\uf23a'),\n    TEXTURE(\"bd4-texture\", '\\uf23b'),\n    TEXTURE_TWO(\"bd4-texture-two\", '\\uf23c'),\n    TEXT_WRAP_OVERFLOW(\"bd4-text-wrap-overflow\", '\\uf23d'),\n    TEXT_WRAP_TRUNCATION(\"bd4-text-wrap-truncation\", '\\uf23e'),\n    THEATER(\"bd4-theater\", '\\uf23f'),\n    THEME(\"bd4-theme\", '\\uf240'),\n    THERMOMETER(\"bd4-thermometer\", '\\uf241'),\n    THERMOMETER_ONE(\"bd4-thermometer-one\", '\\uf242'),\n    THERMOS_CUP(\"bd4-thermos-cup\", '\\uf243'),\n    THE_SINGLE_SHOULDER_BAG(\"bd4-the-single-shoulder-bag\", '\\uf244'),\n    THIN(\"bd4-thin\", '\\uf245'),\n    THINKING_PROBLEM(\"bd4-thinking-problem\", '\\uf246'),\n    THREE(\"bd4-three\", '\\uf247'),\n    THREE_D_GLASSES(\"bd4-three-d-glasses\", '\\uf248'),\n    THREE_HEXAGONS(\"bd4-three-hexagons\", '\\uf249'),\n    THREE_KEY(\"bd4-three-key\", '\\uf24a'),\n    THREE_SLASHES(\"bd4-three-slashes\", '\\uf24b'),\n    THREE_THREE(\"bd4-three-three\", '\\uf24c'),\n    THREE_TRIANGLES(\"bd4-three-triangles\", '\\uf24d'),\n    THUMBS_DOWN(\"bd4-thumbs-down\", '\\uf24e'),\n    THUMBS_UP(\"bd4-thumbs-up\", '\\uf24f'),\n    THUNDERBOLT(\"bd4-thunderbolt\", '\\uf250'),\n    THUNDERSTORM(\"bd4-thunderstorm\", '\\uf251'),\n    THUNDERSTORM_ONE(\"bd4-thunderstorm-one\", '\\uf252'),\n    TICKET(\"bd4-ticket\", '\\uf253'),\n    TICKET_ONE(\"bd4-ticket-one\", '\\uf254'),\n    TICKETS_CHECKED(\"bd4-tickets-checked\", '\\uf255'),\n    TICKETS_ONE(\"bd4-tickets-one\", '\\uf256'),\n    TICKETS_TWO(\"bd4-tickets-two\", '\\uf257'),\n    TIGER_ZODIAC(\"bd4-tiger-zodiac\", '\\uf258'),\n    TIKTOK(\"bd4-tiktok\", '\\uf259'),\n    TIME(\"bd4-time\", '\\uf25a'),\n    TIMED_MAIL(\"bd4-timed-mail\", '\\uf25b'),\n    TIMELINE(\"bd4-timeline\", '\\uf25c'),\n    TIMER(\"bd4-timer\", '\\uf25d'),\n    TIPS(\"bd4-tips\", '\\uf25e'),\n    TIPS_ONE(\"bd4-tips-one\", '\\uf25f'),\n    TIRE_SWING(\"bd4-tire-swing\", '\\uf260'),\n    TITLE_LEVEL(\"bd4-title-level\", '\\uf261'),\n    TO_BOTTOM(\"bd4-to-bottom\", '\\uf262'),\n    TO_BOTTOM_ONE(\"bd4-to-bottom-one\", '\\uf263'),\n    TOILET(\"bd4-toilet\", '\\uf264'),\n    TO_LEFT(\"bd4-to-left\", '\\uf265'),\n    TOMATO(\"bd4-tomato\", '\\uf266'),\n    TOOL(\"bd4-tool\", '\\uf267'),\n    TOOLKIT(\"bd4-toolkit\", '\\uf268'),\n    TOP_BAR(\"bd4-top-bar\", '\\uf269'),\n    TOPBUZZ(\"bd4-topbuzz\", '\\uf26a'),\n    TOPIC(\"bd4-topic\", '\\uf26b'),\n    TOPIC_DISCUSSION(\"bd4-topic-discussion\", '\\uf26c'),\n    TORCH(\"bd4-torch\", '\\uf26d'),\n    TO_RIGHT(\"bd4-to-right\", '\\uf26e'),\n    TO_TOP(\"bd4-to-top\", '\\uf26f'),\n    TO_TOP_ONE(\"bd4-to-top-one\", '\\uf270'),\n    TOUR_BUS(\"bd4-tour-bus\", '\\uf271'),\n    TOWEL(\"bd4-towel\", '\\uf272'),\n    TOWER(\"bd4-tower\", '\\uf273'),\n    TOWER_OF_BABEL(\"bd4-tower-of-babel\", '\\uf274'),\n    TOWER_OF_PISA(\"bd4-tower-of-pisa\", '\\uf275'),\n    TOXINS(\"bd4-toxins\", '\\uf276'),\n    TRACE(\"bd4-trace\", '\\uf277'),\n    TRADEMARK(\"bd4-trademark\", '\\uf278'),\n    TRADITIONAL_CHINESE_MEDICINE(\"bd4-traditional-chinese-medicine\", '\\uf279'),\n    TRAIN(\"bd4-train\", '\\uf27a'),\n    TRANSACTION(\"bd4-transaction\", '\\uf27b'),\n    TRANSACTION_ORDER(\"bd4-transaction-order\", '\\uf27c'),\n    TRANSFER(\"bd4-transfer\", '\\uf27d'),\n    TRANSFER_DATA(\"bd4-transfer-data\", '\\uf27e'),\n    TRANSFORM(\"bd4-transform\", '\\uf27f'),\n    TRANSLATE(\"bd4-translate\", '\\uf280'),\n    TRANSLATION(\"bd4-translation\", '\\uf281'),\n    TRANSPORT(\"bd4-transport\", '\\uf282'),\n    TRANSPORTER(\"bd4-transporter\", '\\uf283'),\n    TRAPEZOID(\"bd4-trapezoid\", '\\uf284'),\n    TRAY(\"bd4-tray\", '\\uf285'),\n    TREADMILL(\"bd4-treadmill\", '\\uf286'),\n    TREADMILL_ONE(\"bd4-treadmill-one\", '\\uf287'),\n    TREADMILL_TWO(\"bd4-treadmill-two\", '\\uf288'),\n    TREASURE_CHEST(\"bd4-treasure-chest\", '\\uf289'),\n    TREE(\"bd4-tree\", '\\uf28a'),\n    TREE_DIAGRAM(\"bd4-tree-diagram\", '\\uf28b'),\n    TREE_LIST(\"bd4-tree-list\", '\\uf28c'),\n    TREE_ONE(\"bd4-tree-one\", '\\uf28d'),\n    TREE_TWO(\"bd4-tree-two\", '\\uf28e'),\n    TREND(\"bd4-trend\", '\\uf28f'),\n    TRENDING_DOWN(\"bd4-trending-down\", '\\uf290'),\n    TRENDING_UP(\"bd4-trending-up\", '\\uf291'),\n    TREND_TWO(\"bd4-trend-two\", '\\uf292'),\n    TRIANGLE(\"bd4-triangle\", '\\uf293'),\n    TRIANGLE_ROUND_RECTANGLE(\"bd4-triangle-round-rectangle\", '\\uf294'),\n    TRIANGLE_RULER(\"bd4-triangle-ruler\", '\\uf295'),\n    TRIANGULAR_PYRAMID(\"bd4-triangular-pyramid\", '\\uf296'),\n    TROPHY(\"bd4-trophy\", '\\uf297'),\n    TROUSERS_BELL_BOTTOMS(\"bd4-trousers-bell-bottoms\", '\\uf298'),\n    TRUCK(\"bd4-truck\", '\\uf299'),\n    TRUMPET(\"bd4-trumpet\", '\\uf29a'),\n    TRUNK(\"bd4-trunk\", '\\uf29b'),\n    T_SHIRT(\"bd4-t-shirt\", '\\uf29c'),\n    TUB(\"bd4-tub\", '\\uf29d'),\n    TUCHONG(\"bd4-tuchong\", '\\uf29e'),\n    TUMBLR(\"bd4-tumblr\", '\\uf29f'),\n    TURKEY(\"bd4-turkey\", '\\uf2a0'),\n    TURN_AROUND(\"bd4-turn-around\", '\\uf2a1'),\n    TURN_OFF_BLUETOOTH(\"bd4-turn-off-bluetooth\", '\\uf2a2'),\n    TURN_ON(\"bd4-turn-on\", '\\uf2a3'),\n    TV(\"bd4-tv\", '\\uf2a4'),\n    TV_ONE(\"bd4-tv-one\", '\\uf2a5'),\n    TWITTER(\"bd4-twitter\", '\\uf2a6'),\n    TWO(\"bd4-two\", '\\uf2a7'),\n    TWO_DIMENSIONAL_CODE(\"bd4-two-dimensional-code\", '\\uf2a8'),\n    TWO_DIMENSIONAL_CODE_ONE(\"bd4-two-dimensional-code-one\", '\\uf2a9'),\n    TWO_DIMENSIONAL_CODE_TWO(\"bd4-two-dimensional-code-two\", '\\uf2aa'),\n    TWO_ELLIPSES(\"bd4-two-ellipses\", '\\uf2ab'),\n    TWO_FINGERS(\"bd4-two-fingers\", '\\uf2ac'),\n    TWO_HANDS(\"bd4-two-hands\", '\\uf2ad'),\n    TWO_KEY(\"bd4-two-key\", '\\uf2ae'),\n    TWO_SEMICIRCLES(\"bd4-two-semicircles\", '\\uf2af'),\n    TWO_TRIANGLES(\"bd4-two-triangles\", '\\uf2b0'),\n    TWO_TRIANGLES_TWO(\"bd4-two-triangles-two\", '\\uf2b1'),\n    TWO_TWO(\"bd4-two-two\", '\\uf2b2'),\n    TYPE_DRIVE(\"bd4-type-drive\", '\\uf2b3'),\n    U_DISK(\"bd4-u-disk\", '\\uf2b4'),\n    ULIKECAM(\"bd4-ulikecam\", '\\uf2b5'),\n    UMBRELLA(\"bd4-umbrella\", '\\uf2b6'),\n    UMBRELLA_ONE(\"bd4-umbrella-one\", '\\uf2b7'),\n    UMBRELLA_TWO(\"bd4-umbrella-two\", '\\uf2b8'),\n    UNDO(\"bd4-undo\", '\\uf2b9'),\n    UNGROUP(\"bd4-ungroup\", '\\uf2ba'),\n    UNICAST(\"bd4-unicast\", '\\uf2bb'),\n    UNION_SELECTION(\"bd4-union-selection\", '\\uf2bc'),\n    UNIVERSAL(\"bd4-universal\", '\\uf2bd'),\n    UNLIKE(\"bd4-unlike\", '\\uf2be'),\n    UNLINK(\"bd4-unlink\", '\\uf2bf'),\n    UNLOCK(\"bd4-unlock\", '\\uf2c0'),\n    UNLOCK_ONE(\"bd4-unlock-one\", '\\uf2c1'),\n    UNORDERED_LIST(\"bd4-unordered-list\", '\\uf2c2'),\n    UP(\"bd4-up\", '\\uf2c3'),\n    UP_AND_DOWN(\"bd4-up-and-down\", '\\uf2c4'),\n    UP_C(\"bd4-up-c\", '\\uf2c5'),\n    UPDATE_ROTATION(\"bd4-update-rotation\", '\\uf2c6'),\n    UPLOAD(\"bd4-upload\", '\\uf2c7'),\n    UPLOAD_COMPUTER(\"bd4-upload-computer\", '\\uf2c8'),\n    UPLOAD_LAPTOP(\"bd4-upload-laptop\", '\\uf2c9'),\n    UPLOAD_LOGS(\"bd4-upload-logs\", '\\uf2ca'),\n    UPLOAD_ONE(\"bd4-upload-one\", '\\uf2cb'),\n    UPLOAD_PICTURE(\"bd4-upload-picture\", '\\uf2cc'),\n    UPLOAD_THREE(\"bd4-upload-three\", '\\uf2cd'),\n    UPLOAD_TWO(\"bd4-upload-two\", '\\uf2ce'),\n    UPLOAD_WEB(\"bd4-upload-web\", '\\uf2cf'),\n    UP_ONE(\"bd4-up-one\", '\\uf2d0'),\n    UPSIDE_DOWN_FACE(\"bd4-upside-down-face\", '\\uf2d1'),\n    UP_SMALL(\"bd4-up-small\", '\\uf2d2'),\n    UP_SQUARE(\"bd4-up-square\", '\\uf2d3'),\n    UP_TWO(\"bd4-up-two\", '\\uf2d4'),\n    USB(\"bd4-usb\", '\\uf2d5'),\n    USB_MEMORY_STICK(\"bd4-usb-memory-stick\", '\\uf2d6'),\n    USB_MICRO_ONE(\"bd4-usb-micro-one\", '\\uf2d7'),\n    USB_MICRO_TWO(\"bd4-usb-micro-two\", '\\uf2d8'),\n    USB_ONE(\"bd4-usb-one\", '\\uf2d9'),\n    USB_TYPE_C(\"bd4-usb-type-c\", '\\uf2da'),\n    USER(\"bd4-user\", '\\uf2db'),\n    USER_BUSINESS(\"bd4-user-business\", '\\uf2dc'),\n    USER_POSITIONING(\"bd4-user-positioning\", '\\uf2dd'),\n    USER_TO_USER_TRANSMISSION(\"bd4-user-to-user-transmission\", '\\uf2de'),\n    UTERUS(\"bd4-uterus\", '\\uf2df'),\n    U_TURN_DOWN(\"bd4-u-turn-down\", '\\uf2e0'),\n    U_TURN_LEFT(\"bd4-u-turn-left\", '\\uf2e1'),\n    U_TURN_RIGHT(\"bd4-u-turn-right\", '\\uf2e2'),\n    U_TURN_UP(\"bd4-u-turn-up\", '\\uf2e3'),\n    VACATION(\"bd4-vacation\", '\\uf2e4'),\n    VACUUM_CLEANER(\"bd4-vacuum-cleaner\", '\\uf2e5'),\n    VEGETABLE_BASKET(\"bd4-vegetable-basket\", '\\uf2e6'),\n    VEGETABLES(\"bd4-vegetables\", '\\uf2e7'),\n    VERTICALLY_CENTERED(\"bd4-vertically-centered\", '\\uf2e8'),\n    VERTICAL_SPACING_BETWEEN_ITEMS(\"bd4-vertical-spacing-between-items\", '\\uf2e9'),\n    VERTICAL_TIDY_UP(\"bd4-vertical-tidy-up\", '\\uf2ea'),\n    VERTICAL_TIMELINE(\"bd4-vertical-timeline\", '\\uf2eb'),\n    VEST(\"bd4-vest\", '\\uf2ec'),\n    VIAL(\"bd4-vial\", '\\uf2ed'),\n    VICIA_FABA(\"bd4-vicia-faba\", '\\uf2ee'),\n    VIDEO(\"bd4-video\", '\\uf2ef'),\n    VIDEOCAMERA(\"bd4-videocamera\", '\\uf2f0'),\n    VIDEOCAMERA_ONE(\"bd4-videocamera-one\", '\\uf2f1'),\n    VIDEO_CONFERENCE(\"bd4-video-conference\", '\\uf2f2'),\n    VIDEO_FILE(\"bd4-video-file\", '\\uf2f3'),\n    VIDEO_ONE(\"bd4-video-one\", '\\uf2f4'),\n    VIDEO_TWO(\"bd4-video-two\", '\\uf2f5'),\n    VIENCHARTS(\"bd4-viencharts\", '\\uf2f6'),\n    VIEWFINDER(\"bd4-viewfinder\", '\\uf2f7'),\n    VIEW_GRID_CARD(\"bd4-view-grid-card\", '\\uf2f8'),\n    VIEW_GRID_DETAIL(\"bd4-view-grid-detail\", '\\uf2f9'),\n    VIEW_GRID_LIST(\"bd4-view-grid-list\", '\\uf2fa'),\n    VIEW_LIST(\"bd4-view-list\", '\\uf2fb'),\n    VIGO(\"bd4-vigo\", '\\uf2fc'),\n    VIP(\"bd4-vip\", '\\uf2fd'),\n    VIP_ONE(\"bd4-vip-one\", '\\uf2fe'),\n    VIRGO(\"bd4-virgo\", '\\uf2ff'),\n    VIRTUAL_REALITY_GLASSES(\"bd4-virtual-reality-glasses\", '\\uf300'),\n    VOICE(\"bd4-voice\", '\\uf301'),\n    VOICE_INPUT(\"bd4-voice-input\", '\\uf302'),\n    VOICEMAIL(\"bd4-voicemail\", '\\uf303'),\n    VOICE_MESSAGE(\"bd4-voice-message\", '\\uf304'),\n    VOICE_OFF(\"bd4-voice-off\", '\\uf305'),\n    VOICE_ONE(\"bd4-voice-one\", '\\uf306'),\n    VOLKSWAGEN(\"bd4-volkswagen\", '\\uf307'),\n    VOLLEYBALL(\"bd4-volleyball\", '\\uf308'),\n    VOLUME_DOWN(\"bd4-volume-down\", '\\uf309'),\n    VOLUME_MUTE(\"bd4-volume-mute\", '\\uf30a'),\n    VOLUME_NOTICE(\"bd4-volume-notice\", '\\uf30b'),\n    VOLUME_SMALL(\"bd4-volume-small\", '\\uf30c'),\n    VOLUME_UP(\"bd4-volume-up\", '\\uf30d'),\n    VR_GLASSES(\"bd4-vr-glasses\", '\\uf30e'),\n    WAISTLINE(\"bd4-waistline\", '\\uf30f'),\n    WALLET(\"bd4-wallet\", '\\uf310'),\n    WALLET_ONE(\"bd4-wallet-one\", '\\uf311'),\n    WALLET_THREE(\"bd4-wallet-three\", '\\uf312'),\n    WALLET_TWO(\"bd4-wallet-two\", '\\uf313'),\n    WAREHOUSING(\"bd4-warehousing\", '\\uf314'),\n    WASHING_MACHINE(\"bd4-washing-machine\", '\\uf315'),\n    WASHING_MACHINE_ONE(\"bd4-washing-machine-one\", '\\uf316'),\n    WATCH(\"bd4-watch\", '\\uf317'),\n    WATCH_ONE(\"bd4-watch-one\", '\\uf318'),\n    WATER(\"bd4-water\", '\\uf319'),\n    WATERFALLS_H(\"bd4-waterfalls-h\", '\\uf31a'),\n    WATERFALLS_V(\"bd4-waterfalls-v\", '\\uf31b'),\n    WATER_LEVEL(\"bd4-water-level\", '\\uf31c'),\n    WATERMELON(\"bd4-watermelon\", '\\uf31d'),\n    WATERMELON_ONE(\"bd4-watermelon-one\", '\\uf31e'),\n    WATER_NO(\"bd4-water-no\", '\\uf31f'),\n    WATERPOLO(\"bd4-waterpolo\", '\\uf320'),\n    WATERPOLO_ONE(\"bd4-waterpolo-one\", '\\uf321'),\n    WATER_RATE(\"bd4-water-rate\", '\\uf322'),\n    WATER_RATE_TWO(\"bd4-water-rate-two\", '\\uf323'),\n    WAVES(\"bd4-waves\", '\\uf324'),\n    WAVES_LEFT(\"bd4-waves-left\", '\\uf325'),\n    WAVES_RIGHT(\"bd4-waves-right\", '\\uf326'),\n    WEARY_FACE(\"bd4-weary-face\", '\\uf327'),\n    WEBCAM(\"bd4-webcam\", '\\uf328'),\n    WEB_PAGE(\"bd4-web-page\", '\\uf329'),\n    WECHAT(\"bd4-wechat\", '\\uf32a'),\n    WEIBO(\"bd4-weibo\", '\\uf32b'),\n    WEIGHT(\"bd4-weight\", '\\uf32c'),\n    WEIGHTLIFTING(\"bd4-weightlifting\", '\\uf32d'),\n    WEIXIN_CARDS_OFFERS(\"bd4-weixin-cards-offers\", '\\uf32e'),\n    WEIXIN_FAVORITES(\"bd4-weixin-favorites\", '\\uf32f'),\n    WEIXIN_GAMES(\"bd4-weixin-games\", '\\uf330'),\n    WEIXIN_MARKET(\"bd4-weixin-market\", '\\uf331'),\n    WEIXIN_MINI_APP(\"bd4-weixin-mini-app\", '\\uf332'),\n    WEIXIN_PEOPLE_NEARBY(\"bd4-weixin-people-nearby\", '\\uf333'),\n    WEIXIN_SCAN(\"bd4-weixin-scan\", '\\uf334'),\n    WEIXIN_SEARCH(\"bd4-weixin-search\", '\\uf335'),\n    WEIXIN_SHAKE(\"bd4-weixin-shake\", '\\uf336'),\n    WEIXIN_TOP_STORIES(\"bd4-weixin-top-stories\", '\\uf337'),\n    WHALE(\"bd4-whale\", '\\uf338'),\n    WHEELCHAIR(\"bd4-wheelchair\", '\\uf339'),\n    WHIRLWIND(\"bd4-whirlwind\", '\\uf33a'),\n    WHISTLING(\"bd4-whistling\", '\\uf33b'),\n    WHOLE_SITE_ACCELERATOR(\"bd4-whole-site-accelerator\", '\\uf33c'),\n    WIFI(\"bd4-wifi\", '\\uf33d'),\n    WIND(\"bd4-wind\", '\\uf33e'),\n    WINDMILL(\"bd4-windmill\", '\\uf33f'),\n    WINDMILL_ONE(\"bd4-windmill-one\", '\\uf340'),\n    WINDMILL_TWO(\"bd4-windmill-two\", '\\uf341'),\n    WINDOWS(\"bd4-windows\", '\\uf342'),\n    WIND_TURBINE(\"bd4-wind-turbine\", '\\uf343'),\n    WINGSUIT_FLYING(\"bd4-wingsuit-flying\", '\\uf344'),\n    WINKING_FACE(\"bd4-winking-face\", '\\uf345'),\n    WINKING_FACE_WITH_OPEN_EYES(\"bd4-winking-face-with-open-eyes\", '\\uf346'),\n    WOMAN(\"bd4-woman\", '\\uf347'),\n    WOMEN(\"bd4-women\", '\\uf348'),\n    WOMEN_COAT(\"bd4-women-coat\", '\\uf349'),\n    WOOLEN_HAT(\"bd4-woolen-hat\", '\\uf34a'),\n    WORD(\"bd4-word\", '\\uf34b'),\n    WORKBENCH(\"bd4-workbench\", '\\uf34c'),\n    WORKER(\"bd4-worker\", '\\uf34d'),\n    WORLD(\"bd4-world\", '\\uf34e'),\n    WORRIED_FACE(\"bd4-worried-face\", '\\uf34f'),\n    WRITE(\"bd4-write\", '\\uf350'),\n    WRITING_FLUENTLY(\"bd4-writing-fluently\", '\\uf351'),\n    WRONG_USER(\"bd4-wrong-user\", '\\uf352'),\n    XIAODU(\"bd4-xiaodu\", '\\uf353'),\n    XIAODU_HOME(\"bd4-xiaodu-home\", '\\uf354'),\n    XIGUA(\"bd4-xigua\", '\\uf355'),\n    XINGFULI(\"bd4-xingfuli\", '\\uf356'),\n    XINGTU(\"bd4-xingtu\", '\\uf357'),\n    YEP(\"bd4-yep\", '\\uf358'),\n    YOUTOBE(\"bd4-youtobe\", '\\uf359'),\n    YOUTUBE(\"bd4-youtube\", '\\uf35a'),\n    ZERO_KEY(\"bd4-zero-key\", '\\uf35b'),\n    ZIJINYUNYING(\"bd4-zijinyunying\", '\\uf35c'),\n    ZIP(\"bd4-zip\", '\\uf35d'),\n    ZOOM(\"bd4-zoom\", '\\uf35e'),\n    ZOOM_IN(\"bd4-zoom-in\", '\\uf35f'),\n    ZOOM_INTERNAL(\"bd4-zoom-internal\", '\\uf360'),\n    ZOOM_OUT(\"bd4-zoom-out\", '\\uf361');\n\n    public static BytedanceIconsExtraBoldMZ findByDescription(String description) {\n        for (BytedanceIconsExtraBoldMZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    BytedanceIconsExtraBoldMZ(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsExtraBoldMZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author LeeWyatt\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BytedanceIconsExtraBoldMZIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/bytedance/1.3.0/fonts/Bytedance-IconPack-ExtraBold.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bd4-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return BytedanceIconsExtraBoldMZ.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Bytedance-IconPack-ExtraBold\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsExtraBoldMZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author LeeWyatt\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class BytedanceIconsExtraBoldMZIkonProvider implements IkonProvider<BytedanceIconsExtraBoldMZ> {\n    @Override\n    public Class<BytedanceIconsExtraBoldMZ> getIkon() {\n        return BytedanceIconsExtraBoldMZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsRegularAL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author LeeWyatt\n */\npublic enum BytedanceIconsRegularAL implements Ikon {\n    ABDOMINAL(\"bd2-abdominal\", '\\ue900'),\n    ABNORMAL(\"bd2-abnormal\", '\\ue901'),\n    A_CANE(\"bd2-a-cane\", '\\ue902'),\n    ACCELERATION(\"bd2-acceleration\", '\\ue903'),\n    ACCEPT_EMAIL(\"bd2-accept-email\", '\\ue904'),\n    ACOUSTIC(\"bd2-acoustic\", '\\ue905'),\n    ACTIVITY_SOURCE(\"bd2-activity-source\", '\\ue906'),\n    AD(\"bd2-ad\", '\\ue907'),\n    ADD(\"bd2-add\", '\\ue908'),\n    ADD_COMPUTER(\"bd2-add-computer\", '\\ue909'),\n    ADD_FOUR(\"bd2-add-four\", '\\ue90a'),\n    ADD_ITEM(\"bd2-add-item\", '\\ue90b'),\n    ADD_MODE(\"bd2-add-mode\", '\\ue90c'),\n    ADD_MUSIC(\"bd2-add-music\", '\\ue90d'),\n    ADD_ONE(\"bd2-add-one\", '\\ue90e'),\n    ADD_PIC(\"bd2-add-pic\", '\\ue90f'),\n    ADD_PICTURE(\"bd2-add-picture\", '\\ue910'),\n    ADD_PRINT(\"bd2-add-print\", '\\ue911'),\n    ADDRESS_BOOK(\"bd2-address-book\", '\\ue912'),\n    ADD_SUBSET(\"bd2-add-subset\", '\\ue913'),\n    ADD_SUBTRACT(\"bd2-add-subtract\", '\\ue914'),\n    ADD_TEXT(\"bd2-add-text\", '\\ue915'),\n    ADD_TEXT_TWO(\"bd2-add-text-two\", '\\ue916'),\n    ADD_THREE(\"bd2-add-three\", '\\ue917'),\n    ADD_TWO(\"bd2-add-two\", '\\ue918'),\n    ADD_USER(\"bd2-add-user\", '\\ue919'),\n    ADD_WEB(\"bd2-add-web\", '\\ue91a'),\n    ADJACENT_ITEM(\"bd2-adjacent-item\", '\\ue91b'),\n    ADJUSTMENT(\"bd2-adjustment\", '\\ue91c'),\n    ADOBE_ILLUSTRATE(\"bd2-adobe-illustrate\", '\\ue91d'),\n    ADOBE_INDESIGN(\"bd2-adobe-indesign\", '\\ue91e'),\n    ADOBE_LIGHTROOM(\"bd2-adobe-lightroom\", '\\ue91f'),\n    ADOBE_PHOTOSHOP(\"bd2-adobe-photoshop\", '\\ue920'),\n    AD_PRODUCT(\"bd2-ad-product\", '\\ue921'),\n    AFFERENT(\"bd2-afferent\", '\\ue922'),\n    AFFERENT_FOUR(\"bd2-afferent-four\", '\\ue923'),\n    AFFERENT_THREE(\"bd2-afferent-three\", '\\ue924'),\n    AFFERENT_TWO(\"bd2-afferent-two\", '\\ue925'),\n    AFRO_PICK(\"bd2-afro-pick\", '\\ue926'),\n    AGREEMENT(\"bd2-agreement\", '\\ue927'),\n    AIMING(\"bd2-aiming\", '\\ue928'),\n    AIR_BIKE(\"bd2-air-bike\", '\\ue929'),\n    AIR_CONDITIONING(\"bd2-air-conditioning\", '\\ue92a'),\n    AIRPLANE(\"bd2-airplane\", '\\ue92b'),\n    AIRPLANE_WINDOW(\"bd2-airplane-window\", '\\ue92c'),\n    AIRPLANE_WINDOW_ONE(\"bd2-airplane-window-one\", '\\ue92d'),\n    AIRPLAY(\"bd2-airplay\", '\\ue92e'),\n    AIRPODS(\"bd2-airpods\", '\\ue92f'),\n    ALARM(\"bd2-alarm\", '\\ue930'),\n    ALARM_CLOCK(\"bd2-alarm-clock\", '\\ue931'),\n    ALIGN_BOTTOM(\"bd2-align-bottom\", '\\ue932'),\n    ALIGN_BOTTOM_TWO(\"bd2-align-bottom-two\", '\\ue933'),\n    ALIGN_HORIZONTAL_CENTER_TWO(\"bd2-align-horizontal-center-two\", '\\ue934'),\n    ALIGN_HORIZONTALLY(\"bd2-align-horizontally\", '\\ue935'),\n    ALIGN_LEFT(\"bd2-align-left\", '\\ue936'),\n    ALIGN_LEFT_ONE(\"bd2-align-left-one\", '\\ue937'),\n    ALIGN_LEFT_TWO(\"bd2-align-left-two\", '\\ue938'),\n    ALIGNMENT_BOTTOM_CENTER(\"bd2-alignment-bottom-center\", '\\ue939'),\n    ALIGNMENT_BOTTOM_LEFT(\"bd2-alignment-bottom-left\", '\\ue93a'),\n    ALIGNMENT_BOTTOM_RIGHT(\"bd2-alignment-bottom-right\", '\\ue93b'),\n    ALIGNMENT_HORIZONTAL_BOTTOM(\"bd2-alignment-horizontal-bottom\", '\\ue93c'),\n    ALIGNMENT_HORIZONTAL_CENTER(\"bd2-alignment-horizontal-center\", '\\ue93d'),\n    ALIGNMENT_HORIZONTAL_TOP(\"bd2-alignment-horizontal-top\", '\\ue93e'),\n    ALIGNMENT_LEFT_BOTTOM(\"bd2-alignment-left-bottom\", '\\ue93f'),\n    ALIGNMENT_LEFT_CENTER(\"bd2-alignment-left-center\", '\\ue940'),\n    ALIGNMENT_LEFT_TOP(\"bd2-alignment-left-top\", '\\ue941'),\n    ALIGNMENT_RIGHT_BOTTOM(\"bd2-alignment-right-bottom\", '\\ue942'),\n    ALIGNMENT_RIGHT_CENTER(\"bd2-alignment-right-center\", '\\ue943'),\n    ALIGNMENT_RIGHT_TOP(\"bd2-alignment-right-top\", '\\ue944'),\n    ALIGNMENT_TOP_CENTER(\"bd2-alignment-top-center\", '\\ue945'),\n    ALIGNMENT_TOP_LEFT(\"bd2-alignment-top-left\", '\\ue946'),\n    ALIGNMENT_TOP_RIGHT(\"bd2-alignment-top-right\", '\\ue947'),\n    ALIGNMENT_VERTICAL_CENTER(\"bd2-alignment-vertical-center\", '\\ue948'),\n    ALIGNMENT_VERTICAL_LEFT(\"bd2-alignment-vertical-left\", '\\ue949'),\n    ALIGNMENT_VERTICAL_RIGHT(\"bd2-alignment-vertical-right\", '\\ue94a'),\n    ALIGN_RIGHT(\"bd2-align-right\", '\\ue94b'),\n    ALIGN_RIGHT_ONE(\"bd2-align-right-one\", '\\ue94c'),\n    ALIGN_RIGHT_TWO(\"bd2-align-right-two\", '\\ue94d'),\n    ALIGN_TEXT_BOTH(\"bd2-align-text-both\", '\\ue94e'),\n    ALIGN_TEXT_BOTH_ONE(\"bd2-align-text-both-one\", '\\ue94f'),\n    ALIGN_TEXT_BOTTOM(\"bd2-align-text-bottom\", '\\ue950'),\n    ALIGN_TEXT_BOTTOM_ONE(\"bd2-align-text-bottom-one\", '\\ue951'),\n    ALIGN_TEXT_CENTER(\"bd2-align-text-center\", '\\ue952'),\n    ALIGN_TEXT_CENTER_ONE(\"bd2-align-text-center-one\", '\\ue953'),\n    ALIGN_TEXT_LEFT(\"bd2-align-text-left\", '\\ue954'),\n    ALIGN_TEXT_LEFT_ONE(\"bd2-align-text-left-one\", '\\ue955'),\n    ALIGN_TEXT_MIDDLE(\"bd2-align-text-middle\", '\\ue956'),\n    ALIGN_TEXT_MIDDLE_ONE(\"bd2-align-text-middle-one\", '\\ue957'),\n    ALIGN_TEXT_RIGHT(\"bd2-align-text-right\", '\\ue958'),\n    ALIGN_TEXT_RIGHT_ONE(\"bd2-align-text-right-one\", '\\ue959'),\n    ALIGN_TEXT_TOP(\"bd2-align-text-top\", '\\ue95a'),\n    ALIGN_TEXT_TOP_ONE(\"bd2-align-text-top-one\", '\\ue95b'),\n    ALIGN_TOP(\"bd2-align-top\", '\\ue95c'),\n    ALIGN_TOP_TWO(\"bd2-align-top-two\", '\\ue95d'),\n    ALIGN_VERTICAL_CENTER_TWO(\"bd2-align-vertical-center-two\", '\\ue95e'),\n    ALIGN_VERTICALLY(\"bd2-align-vertically\", '\\ue95f'),\n    ALIPAY(\"bd2-alipay\", '\\ue960'),\n    ALL_APPLICATION(\"bd2-all-application\", '\\ue961'),\n    ALPHABETICAL_SORTING(\"bd2-alphabetical-sorting\", '\\ue962'),\n    ALPHABETICAL_SORTING_TWO(\"bd2-alphabetical-sorting-two\", '\\ue963'),\n    AMBULANCE(\"bd2-ambulance\", '\\ue964'),\n    ANALYSIS(\"bd2-analysis\", '\\ue965'),\n    ANCHOR(\"bd2-anchor\", '\\ue966'),\n    ANCHOR_ONE(\"bd2-anchor-one\", '\\ue967'),\n    ANCHOR_ROUND(\"bd2-anchor-round\", '\\ue968'),\n    ANCHOR_SQURE(\"bd2-anchor-squre\", '\\ue969'),\n    ANCHOR_TWO(\"bd2-anchor-two\", '\\ue96a'),\n    ANDROID(\"bd2-android\", '\\ue96b'),\n    ANGRY_FACE(\"bd2-angry-face\", '\\ue96c'),\n    ANGUISHED_FACE(\"bd2-anguished-face\", '\\ue96d'),\n    ANNOUNCEMENT(\"bd2-announcement\", '\\ue96e'),\n    ANTI_CORROSION(\"bd2-anti-corrosion\", '\\ue96f'),\n    APERTURE_PRIORITY(\"bd2-aperture-priority\", '\\ue970'),\n    API(\"bd2-api\", '\\ue971'),\n    API_APP(\"bd2-api-app\", '\\ue972'),\n    APPLE(\"bd2-apple\", '\\ue973'),\n    APPLE_ONE(\"bd2-apple-one\", '\\ue974'),\n    APPLET_CLOSED(\"bd2-applet-closed\", '\\ue975'),\n    APPLICATION(\"bd2-application\", '\\ue976'),\n    APPLICATION_EFFECT(\"bd2-application-effect\", '\\ue977'),\n    APPLICATION_MENU(\"bd2-application-menu\", '\\ue978'),\n    APPLICATION_ONE(\"bd2-application-one\", '\\ue979'),\n    APPLICATION_TWO(\"bd2-application-two\", '\\ue97a'),\n    APPOINTMENT(\"bd2-appointment\", '\\ue97b'),\n    APP_STORE(\"bd2-app-store\", '\\ue97c'),\n    APP_SWITCH(\"bd2-app-switch\", '\\ue97d'),\n    AQUARIUS(\"bd2-aquarius\", '\\ue97e'),\n    ARC_DE_TRIOMPHE(\"bd2-arc-de-triomphe\", '\\ue97f'),\n    ARCHERS_BOW(\"bd2-archers-bow\", '\\ue980'),\n    ARCHERY(\"bd2-archery\", '\\ue981'),\n    AREA_MAP(\"bd2-area-map\", '\\ue982'),\n    ARENA(\"bd2-arena\", '\\ue983'),\n    ARIES(\"bd2-aries\", '\\ue984'),\n    ARITHMETIC(\"bd2-arithmetic\", '\\ue985'),\n    ARITHMETIC_BUTTONS(\"bd2-arithmetic-buttons\", '\\ue986'),\n    ARITHMETIC_ONE(\"bd2-arithmetic-one\", '\\ue987'),\n    ARROW_CIRCLE_DOWN(\"bd2-arrow-circle-down\", '\\ue988'),\n    ARROW_CIRCLE_LEFT(\"bd2-arrow-circle-left\", '\\ue989'),\n    ARROW_CIRCLE_RIGHT(\"bd2-arrow-circle-right\", '\\ue98a'),\n    ARROW_CIRCLE_UP(\"bd2-arrow-circle-up\", '\\ue98b'),\n    ARROW_DOWN(\"bd2-arrow-down\", '\\ue98c'),\n    ARROW_KEYS(\"bd2-arrow-keys\", '\\ue98d'),\n    ARROW_LEFT(\"bd2-arrow-left\", '\\ue98e'),\n    ARROW_LEFT_DOWN(\"bd2-arrow-left-down\", '\\ue98f'),\n    ARROW_LEFT_UP(\"bd2-arrow-left-up\", '\\ue990'),\n    ARROW_RIGHT(\"bd2-arrow-right\", '\\ue991'),\n    ARROW_RIGHT_DOWN(\"bd2-arrow-right-down\", '\\ue992'),\n    ARROW_RIGHT_UP(\"bd2-arrow-right-up\", '\\ue993'),\n    ARROW_UP(\"bd2-arrow-up\", '\\ue994'),\n    ASSEMBLY_LINE(\"bd2-assembly-line\", '\\ue995'),\n    ASSOCIATION(\"bd2-association\", '\\ue996'),\n    ASTERISK(\"bd2-asterisk\", '\\ue997'),\n    ASTERISK_KEY(\"bd2-asterisk-key\", '\\ue998'),\n    ASTONISHED_FACE(\"bd2-astonished-face\", '\\ue999'),\n    AT_SIGN(\"bd2-at-sign\", '\\ue99a'),\n    ATTENTION(\"bd2-attention\", '\\ue99b'),\n    AUDIO_FILE(\"bd2-audio-file\", '\\ue99c'),\n    AUDIT(\"bd2-audit\", '\\ue99d'),\n    AUTO_FOCUS(\"bd2-auto-focus\", '\\ue99e'),\n    AUTO_HEIGHT_ONE(\"bd2-auto-height-one\", '\\ue99f'),\n    AUTO_LINE_HEIGHT(\"bd2-auto-line-height\", '\\ue9a0'),\n    AUTO_LINE_WIDTH(\"bd2-auto-line-width\", '\\ue9a1'),\n    AUTO_WIDTH(\"bd2-auto-width\", '\\ue9a2'),\n    AUTO_WIDTH_ONE(\"bd2-auto-width-one\", '\\ue9a3'),\n    AVATAR(\"bd2-avatar\", '\\ue9a4'),\n    AVERAGE(\"bd2-average\", '\\ue9a5'),\n    AVIATION(\"bd2-aviation\", '\\ue9a6'),\n    AVOCADO(\"bd2-avocado\", '\\ue9a7'),\n    AVOCADO_ONE(\"bd2-avocado-one\", '\\ue9a8'),\n    BABY(\"bd2-baby\", '\\ue9a9'),\n    BABY_APP(\"bd2-baby-app\", '\\ue9aa'),\n    BABY_BOTTLE(\"bd2-baby-bottle\", '\\ue9ab'),\n    BABY_CAR_SEAT(\"bd2-baby-car-seat\", '\\ue9ac'),\n    BABY_FEET(\"bd2-baby-feet\", '\\ue9ad'),\n    BABY_MEAL(\"bd2-baby-meal\", '\\ue9ae'),\n    BABY_MOBILE(\"bd2-baby-mobile\", '\\ue9af'),\n    BABY_ONE(\"bd2-baby-one\", '\\ue9b0'),\n    BABY_PANTS(\"bd2-baby-pants\", '\\ue9b1'),\n    BABY_SLING(\"bd2-baby-sling\", '\\ue9b2'),\n    BABY_TASTE(\"bd2-baby-taste\", '\\ue9b3'),\n    BACHELOR_CAP(\"bd2-bachelor-cap\", '\\ue9b4'),\n    BACHELOR_CAP_ONE(\"bd2-bachelor-cap-one\", '\\ue9b5'),\n    BACHELOR_CAP_TWO(\"bd2-bachelor-cap-two\", '\\ue9b6'),\n    BACK(\"bd2-back\", '\\ue9b7'),\n    BACKGROUND_COLOR(\"bd2-background-color\", '\\ue9b8'),\n    BACK_ONE(\"bd2-back-one\", '\\ue9b9'),\n    BACKPACK(\"bd2-backpack\", '\\ue9ba'),\n    BAD(\"bd2-bad\", '\\ue9bb'),\n    BADGE(\"bd2-badge\", '\\ue9bc'),\n    BADGE_TWO(\"bd2-badge-two\", '\\ue9bd'),\n    BADMINTON(\"bd2-badminton\", '\\ue9be'),\n    BAD_ONE(\"bd2-bad-one\", '\\ue9bf'),\n    BAD_TWO(\"bd2-bad-two\", '\\ue9c0'),\n    BAGGAGE_DELAY(\"bd2-baggage-delay\", '\\ue9c1'),\n    BALANCE(\"bd2-balance\", '\\ue9c2'),\n    BALANCE_ONE(\"bd2-balance-one\", '\\ue9c3'),\n    BALANCE_TWO(\"bd2-balance-two\", '\\ue9c4'),\n    BANANA(\"bd2-banana\", '\\ue9c5'),\n    BANK(\"bd2-bank\", '\\ue9c6'),\n    BANK_CARD(\"bd2-bank-card\", '\\ue9c7'),\n    BANK_CARD_ONE(\"bd2-bank-card-one\", '\\ue9c8'),\n    BANK_CARD_TWO(\"bd2-bank-card-two\", '\\ue9c9'),\n    BANK_TRANSFER(\"bd2-bank-transfer\", '\\ue9ca'),\n    BAOKEMENG(\"bd2-baokemeng\", '\\ue9cb'),\n    BARBECUE(\"bd2-barbecue\", '\\ue9cc'),\n    BARBER_BRUSH(\"bd2-barber-brush\", '\\ue9cd'),\n    BARBER_CLIPPERS(\"bd2-barber-clippers\", '\\ue9ce'),\n    BAR_CODE(\"bd2-bar-code\", '\\ue9cf'),\n    BASEBALL(\"bd2-baseball\", '\\ue9d0'),\n    BASEBALL_BAT(\"bd2-baseball-bat\", '\\ue9d1'),\n    BASEBALL_CAP(\"bd2-baseball-cap\", '\\ue9d2'),\n    BASKETBALL(\"bd2-basketball\", '\\ue9d3'),\n    BASKETBALL_CLOTHES(\"bd2-basketball-clothes\", '\\ue9d4'),\n    BASKETBALL_ONE(\"bd2-basketball-one\", '\\ue9d5'),\n    BASKETBALL_STAND(\"bd2-basketball-stand\", '\\ue9d6'),\n    BAT(\"bd2-bat\", '\\ue9d7'),\n    BATTERY_CHARGE(\"bd2-battery-charge\", '\\ue9d8'),\n    BATTERY_EMPTY(\"bd2-battery-empty\", '\\ue9d9'),\n    BATTERY_FAILURE(\"bd2-battery-failure\", '\\ue9da'),\n    BATTERY_FULL(\"bd2-battery-full\", '\\ue9db'),\n    BATTERY_STORAGE(\"bd2-battery-storage\", '\\ue9dc'),\n    BATTERY_TIPS(\"bd2-battery-tips\", '\\ue9dd'),\n    BATTERY_WORKING(\"bd2-battery-working\", '\\ue9de'),\n    BATTERY_WORKING_ONE(\"bd2-battery-working-one\", '\\ue9df'),\n    BEACH_UMBRELLA(\"bd2-beach-umbrella\", '\\ue9e0'),\n    BEAR(\"bd2-bear\", '\\ue9e1'),\n    BEAUTY(\"bd2-beauty\", '\\ue9e2'),\n    BEAUTY_INSTRUMENT(\"bd2-beauty-instrument\", '\\ue9e3'),\n    BEDSIDE(\"bd2-bedside\", '\\ue9e4'),\n    BEDSIDE_TWO(\"bd2-bedside-two\", '\\ue9e5'),\n    BEE(\"bd2-bee\", '\\ue9e6'),\n    BEER(\"bd2-beer\", '\\ue9e7'),\n    BEER_MUG(\"bd2-beer-mug\", '\\ue9e8'),\n    BEHANCE(\"bd2-behance\", '\\ue9e9'),\n    BELL_RING(\"bd2-bell-ring\", '\\ue9ea'),\n    BELT(\"bd2-belt\", '\\ue9eb'),\n    BENZ(\"bd2-benz\", '\\ue9ec'),\n    BEZIER_CURVE(\"bd2-bezier-curve\", '\\ue9ed'),\n    BIB(\"bd2-bib\", '\\ue9ee'),\n    BIG_CLOCK(\"bd2-big-clock\", '\\ue9ef'),\n    BIG_X(\"bd2-big-x\", '\\ue9f0'),\n    BIKE(\"bd2-bike\", '\\ue9f1'),\n    BILL(\"bd2-bill\", '\\ue9f2'),\n    BIRD(\"bd2-bird\", '\\ue9f3'),\n    BIRTHDAY_CAKE(\"bd2-birthday-cake\", '\\ue9f4'),\n    BITCOIN(\"bd2-bitcoin\", '\\ue9f5'),\n    BLACKBOARD(\"bd2-blackboard\", '\\ue9f6'),\n    BLACK_EIGHT(\"bd2-black-eight\", '\\ue9f7'),\n    BLADE(\"bd2-blade\", '\\ue9f8'),\n    BLESS(\"bd2-bless\", '\\ue9f9'),\n    BLOCK(\"bd2-block\", '\\ue9fa'),\n    BLOCKCHAIN(\"bd2-blockchain\", '\\ue9fb'),\n    BLOCK_EIGHT(\"bd2-block-eight\", '\\ue9fc'),\n    BLOCK_FIVE(\"bd2-block-five\", '\\ue9fd'),\n    BLOCK_FOUR(\"bd2-block-four\", '\\ue9fe'),\n    BLOCK_NINE(\"bd2-block-nine\", '\\ue9ff'),\n    BLOCK_ONE(\"bd2-block-one\", '\\uea00'),\n    BLOCKS_AND_ARROWS(\"bd2-blocks-and-arrows\", '\\uea01'),\n    BLOCK_SEVEN(\"bd2-block-seven\", '\\uea02'),\n    BLOCK_SIX(\"bd2-block-six\", '\\uea03'),\n    BLOCK_TEN(\"bd2-block-ten\", '\\uea04'),\n    BLOCK_THREE(\"bd2-block-three\", '\\uea05'),\n    BLOCK_TWO(\"bd2-block-two\", '\\uea06'),\n    BLOOM(\"bd2-bloom\", '\\uea07'),\n    BLOSSOM(\"bd2-blossom\", '\\uea08'),\n    BLUETOOTH(\"bd2-bluetooth\", '\\uea09'),\n    BOILER(\"bd2-boiler\", '\\uea0a'),\n    BOLT_ONE(\"bd2-bolt-one\", '\\uea0b'),\n    BONE(\"bd2-bone\", '\\uea0c'),\n    BOOK(\"bd2-book\", '\\uea0d'),\n    BOOKMARK(\"bd2-bookmark\", '\\uea0e'),\n    BOOKMARK_ONE(\"bd2-bookmark-one\", '\\uea0f'),\n    BOOKMARK_THREE(\"bd2-bookmark-three\", '\\uea10'),\n    BOOK_ONE(\"bd2-book-one\", '\\uea11'),\n    BOOK_OPEN(\"bd2-book-open\", '\\uea12'),\n    BOOKSHELF(\"bd2-bookshelf\", '\\uea13'),\n    BOOSTER_CAR_SEAT(\"bd2-booster-car-seat\", '\\uea14'),\n    BOOTH(\"bd2-booth\", '\\uea15'),\n    BOOTS(\"bd2-boots\", '\\uea16'),\n    BOTTLE(\"bd2-bottle\", '\\uea17'),\n    BOTTLE_ONE(\"bd2-bottle-one\", '\\uea18'),\n    BOTTLE_THREE(\"bd2-bottle-three\", '\\uea19'),\n    BOTTLE_TWO(\"bd2-bottle-two\", '\\uea1a'),\n    BOTTOM_BAR(\"bd2-bottom-bar\", '\\uea1b'),\n    BOTTOM_BAR_ONE(\"bd2-bottom-bar-one\", '\\uea1c'),\n    BOW(\"bd2-bow\", '\\uea1d'),\n    BOWL(\"bd2-bowl\", '\\uea1e'),\n    BOWLING(\"bd2-bowling\", '\\uea1f'),\n    BOWL_ONE(\"bd2-bowl-one\", '\\uea20'),\n    BOX(\"bd2-box\", '\\uea21'),\n    BOXING(\"bd2-boxing\", '\\uea22'),\n    BOXING_ONE(\"bd2-boxing-one\", '\\uea23'),\n    BOY(\"bd2-boy\", '\\uea24'),\n    BOY_ONE(\"bd2-boy-one\", '\\uea25'),\n    BOY_STROLLER(\"bd2-boy-stroller\", '\\uea26'),\n    BOY_TWO(\"bd2-boy-two\", '\\uea27'),\n    BRAIN(\"bd2-brain\", '\\uea28'),\n    BRAKE_PADS(\"bd2-brake-pads\", '\\uea29'),\n    BRANCH(\"bd2-branch\", '\\uea2a'),\n    BRANCH_ONE(\"bd2-branch-one\", '\\uea2b'),\n    BRANCH_TWO(\"bd2-branch-two\", '\\uea2c'),\n    BRDIGE_THREE(\"bd2-brdige-three\", '\\uea2d'),\n    BREAD(\"bd2-bread\", '\\uea2e'),\n    BREAD_MACHINE(\"bd2-bread-machine\", '\\uea2f'),\n    BREAD_ONE(\"bd2-bread-one\", '\\uea30'),\n    BREAST_PUMP(\"bd2-breast-pump\", '\\uea31'),\n    BRIDGE_ONE(\"bd2-bridge-one\", '\\uea32'),\n    BRIDGE_TWO(\"bd2-bridge-two\", '\\uea33'),\n    BRIEFCASE(\"bd2-briefcase\", '\\uea34'),\n    BRIGHTNESS(\"bd2-brightness\", '\\uea35'),\n    BRING_FORWARD(\"bd2-bring-forward\", '\\uea36'),\n    BRING_TO_FRONT(\"bd2-bring-to-front\", '\\uea37'),\n    BRING_TO_FRONT_ONE(\"bd2-bring-to-front-one\", '\\uea38'),\n    BROADCAST(\"bd2-broadcast\", '\\uea39'),\n    BROADCAST_ONE(\"bd2-broadcast-one\", '\\uea3a'),\n    BROADCAST_RADIO(\"bd2-broadcast-radio\", '\\uea3b'),\n    BROWSER(\"bd2-browser\", '\\uea3c'),\n    BROWSER_CHROME(\"bd2-browser-chrome\", '\\uea3d'),\n    BROWSER_SAFARI(\"bd2-browser-safari\", '\\uea3e'),\n    BUBBLE_CHART(\"bd2-bubble-chart\", '\\uea3f'),\n    BUG(\"bd2-bug\", '\\uea40'),\n    BUILDING_FOUR(\"bd2-building-four\", '\\uea41'),\n    BUILDING_ONE(\"bd2-building-one\", '\\uea42'),\n    BUILDING_THREE(\"bd2-building-three\", '\\uea43'),\n    BUILDING_TWO(\"bd2-building-two\", '\\uea44'),\n    BULLET_MAP(\"bd2-bullet-map\", '\\uea45'),\n    BUS(\"bd2-bus\", '\\uea46'),\n    BUS_ONE(\"bd2-bus-one\", '\\uea47'),\n    BUS_TWO(\"bd2-bus-two\", '\\uea48'),\n    BUTTERFLY(\"bd2-butterfly\", '\\uea49'),\n    BUY(\"bd2-buy\", '\\uea4a'),\n    BYDESIGN(\"bd2-bydesign\", '\\uea4b'),\n    BYE(\"bd2-bye\", '\\uea4c'),\n    BYTEDANCE(\"bd2-bytedance\", '\\uea4d'),\n    BYTEDANCE_APPLETS(\"bd2-bytedance-applets\", '\\uea4e'),\n    BYTEDANCE_MINI_APP(\"bd2-bytedance-mini-app\", '\\uea4f'),\n    CABLE_CAR(\"bd2-cable-car\", '\\uea50'),\n    CACTUS(\"bd2-cactus\", '\\uea51'),\n    CAKE(\"bd2-cake\", '\\uea52'),\n    CAKE_FIVE(\"bd2-cake-five\", '\\uea53'),\n    CAKE_FOUR(\"bd2-cake-four\", '\\uea54'),\n    CAKE_ONE(\"bd2-cake-one\", '\\uea55'),\n    CAKE_THREE(\"bd2-cake-three\", '\\uea56'),\n    CAKE_TWO(\"bd2-cake-two\", '\\uea57'),\n    CALCULATOR(\"bd2-calculator\", '\\uea58'),\n    CALCULATOR_ONE(\"bd2-calculator-one\", '\\uea59'),\n    CALENDAR(\"bd2-calendar\", '\\uea5a'),\n    CALENDAR_DOT(\"bd2-calendar-dot\", '\\uea5b'),\n    CALENDAR_THIRTY(\"bd2-calendar-thirty\", '\\uea5c'),\n    CALENDAR_THIRTY_TWO(\"bd2-calendar-thirty-two\", '\\uea5d'),\n    CALENDAR_THREE(\"bd2-calendar-three\", '\\uea5e'),\n    CAMERA(\"bd2-camera\", '\\uea5f'),\n    CAMERA_FIVE(\"bd2-camera-five\", '\\uea60'),\n    CAMERA_FOUR(\"bd2-camera-four\", '\\uea61'),\n    CAMERA_ONE(\"bd2-camera-one\", '\\uea62'),\n    CAMERA_THREE(\"bd2-camera-three\", '\\uea63'),\n    CAMERA_TWO(\"bd2-camera-two\", '\\uea64'),\n    CAMP(\"bd2-camp\", '\\uea65'),\n    CANCER(\"bd2-cancer\", '\\uea66'),\n    CANDY(\"bd2-candy\", '\\uea67'),\n    CANNED_FRUIT(\"bd2-canned-fruit\", '\\uea68'),\n    CAPRICORNUS(\"bd2-capricornus\", '\\uea69'),\n    CAR(\"bd2-car\", '\\uea6a'),\n    CAR_BATTERY(\"bd2-car-battery\", '\\uea6b'),\n    CARDIOELECTRIC(\"bd2-cardioelectric\", '\\uea6c'),\n    CARD_TWO(\"bd2-card-two\", '\\uea6d'),\n    CAROUSEL(\"bd2-carousel\", '\\uea6e'),\n    CAROUSEL_VIDEO(\"bd2-carousel-video\", '\\uea6f'),\n    CARROT(\"bd2-carrot\", '\\uea70'),\n    CASTLE(\"bd2-castle\", '\\uea71'),\n    CAST_SCREEN(\"bd2-cast-screen\", '\\uea72'),\n    CAT(\"bd2-cat\", '\\uea73'),\n    CATEGORY_MANAGEMENT(\"bd2-category-management\", '\\uea74'),\n    CATTLE(\"bd2-cattle\", '\\uea75'),\n    CATTLE_ZODIAC(\"bd2-cattle-zodiac\", '\\uea76'),\n    CAUTION(\"bd2-caution\", '\\uea77'),\n    CC(\"bd2-cc\", '\\uea78'),\n    CD(\"bd2-cd\", '\\uea79'),\n    CELL(\"bd2-cell\", '\\uea7a'),\n    CE_MARKING(\"bd2-ce-marking\", '\\uea7b'),\n    CENTER_ALIGNMENT(\"bd2-center-alignment\", '\\uea7c'),\n    CERTIFICATE(\"bd2-certificate\", '\\uea7d'),\n    CHAFING_DISH(\"bd2-chafing-dish\", '\\uea7e'),\n    CHAFING_DISH_ONE(\"bd2-chafing-dish-one\", '\\uea7f'),\n    CHAIR(\"bd2-chair\", '\\uea80'),\n    CHAIR_ONE(\"bd2-chair-one\", '\\uea81'),\n    CHANGE(\"bd2-change\", '\\uea82'),\n    CHANGE_DATE_SORT(\"bd2-change-date-sort\", '\\uea83'),\n    CHARGING_TREASURE(\"bd2-charging-treasure\", '\\uea84'),\n    CHART_GRAPH(\"bd2-chart-graph\", '\\uea85'),\n    CHART_HISTOGRAM(\"bd2-chart-histogram\", '\\uea86'),\n    CHART_HISTOGRAM_ONE(\"bd2-chart-histogram-one\", '\\uea87'),\n    CHART_HISTOGRAM_TWO(\"bd2-chart-histogram-two\", '\\uea88'),\n    CHART_LINE(\"bd2-chart-line\", '\\uea89'),\n    CHART_LINE_AREA(\"bd2-chart-line-area\", '\\uea8a'),\n    CHART_PIE(\"bd2-chart-pie\", '\\uea8b'),\n    CHART_PIE_ONE(\"bd2-chart-pie-one\", '\\uea8c'),\n    CHART_PROPORTION(\"bd2-chart-proportion\", '\\uea8d'),\n    CHART_RING(\"bd2-chart-ring\", '\\uea8e'),\n    CHART_SCATTER(\"bd2-chart-scatter\", '\\uea8f'),\n    CHART_STOCK(\"bd2-chart-stock\", '\\uea90'),\n    CHECK(\"bd2-check\", '\\uea91'),\n    CHECKBOX(\"bd2-checkbox\", '\\uea92'),\n    CHECK_CORRECT(\"bd2-check-correct\", '\\uea93'),\n    CHECKERBOARD(\"bd2-checkerboard\", '\\uea94'),\n    CHECK_IN(\"bd2-check-in\", '\\uea95'),\n    CHECKLIST(\"bd2-checklist\", '\\uea96'),\n    CHECK_ONE(\"bd2-check-one\", '\\uea97'),\n    CHECK_SMALL(\"bd2-check-small\", '\\uea98'),\n    CHEESE(\"bd2-cheese\", '\\uea99'),\n    CHEF_HAT(\"bd2-chef-hat\", '\\uea9a'),\n    CHEF_HAT_ONE(\"bd2-chef-hat-one\", '\\uea9b'),\n    CHERRY(\"bd2-cherry\", '\\uea9c'),\n    CHESS(\"bd2-chess\", '\\uea9d'),\n    CHESS_ONE(\"bd2-chess-one\", '\\uea9e'),\n    CHEST(\"bd2-chest\", '\\uea9f'),\n    CHICKEN(\"bd2-chicken\", '\\ueaa0'),\n    CHICKEN_LEG(\"bd2-chicken-leg\", '\\ueaa1'),\n    CHICKEN_ZODIAC(\"bd2-chicken-zodiac\", '\\ueaa2'),\n    CHILDREN_CAP(\"bd2-children-cap\", '\\ueaa3'),\n    CHILDREN_PYRAMID(\"bd2-children-pyramid\", '\\ueaa4'),\n    CHILD_WITH_PACIFIER(\"bd2-child-with-pacifier\", '\\ueaa5'),\n    CHILI(\"bd2-chili\", '\\ueaa6'),\n    CHIMNEY(\"bd2-chimney\", '\\ueaa7'),\n    CHINESE(\"bd2-chinese\", '\\ueaa8'),\n    CHINESE_ONE(\"bd2-chinese-one\", '\\ueaa9'),\n    CHINESE_PAVILION(\"bd2-chinese-pavilion\", '\\ueaaa'),\n    CHIP(\"bd2-chip\", '\\ueaab'),\n    CHOPPING_BOARD(\"bd2-chopping-board\", '\\ueaac'),\n    CHOPSTICKS_FORK(\"bd2-chopsticks-fork\", '\\ueaad'),\n    CHRISTMAS_TREE(\"bd2-christmas-tree\", '\\ueaae'),\n    CHRISTMAS_TREE_ONE(\"bd2-christmas-tree-one\", '\\ueaaf'),\n    CHURCH_ONE(\"bd2-church-one\", '\\ueab0'),\n    CHURCH_TWO(\"bd2-church-two\", '\\ueab1'),\n    CIRCLE_DOUBLE_DOWN(\"bd2-circle-double-down\", '\\ueab2'),\n    CIRCLE_DOUBLE_LEFT(\"bd2-circle-double-left\", '\\ueab3'),\n    CIRCLE_DOUBLE_RIGHT(\"bd2-circle-double-right\", '\\ueab4'),\n    CIRCLE_DOUBLE_UP(\"bd2-circle-double-up\", '\\ueab5'),\n    CIRCLE_FIVE_LINE(\"bd2-circle-five-line\", '\\ueab6'),\n    CIRCLE_FOUR(\"bd2-circle-four\", '\\ueab7'),\n    CIRCLE_FOUR_LINE(\"bd2-circle-four-line\", '\\ueab8'),\n    CIRCLE_HOUSE(\"bd2-circle-house\", '\\ueab9'),\n    CIRCLE_LEFT_DOWN(\"bd2-circle-left-down\", '\\ueaba'),\n    CIRCLE_LEFT_UP(\"bd2-circle-left-up\", '\\ueabb'),\n    CIRCLE_RIGHT_DOWN(\"bd2-circle-right-down\", '\\ueabc'),\n    CIRCLE_RIGHT_UP(\"bd2-circle-right-up\", '\\ueabd'),\n    CIRCLES_AND_TRIANGLES(\"bd2-circles-and-triangles\", '\\ueabe'),\n    CIRCLES_SEVEN(\"bd2-circles-seven\", '\\ueabf'),\n    CIRCLE_THREE(\"bd2-circle-three\", '\\ueac0'),\n    CIRCLE_TWO_LINE(\"bd2-circle-two-line\", '\\ueac1'),\n    CIRCULAR_CONNECTION(\"bd2-circular-connection\", '\\ueac2'),\n    CIRCUS(\"bd2-circus\", '\\ueac3'),\n    CITY(\"bd2-city\", '\\ueac4'),\n    CITY_GATE(\"bd2-city-gate\", '\\ueac5'),\n    CITY_ONE(\"bd2-city-one\", '\\ueac6'),\n    CLAP(\"bd2-clap\", '\\ueac7'),\n    CLASSROOM(\"bd2-classroom\", '\\ueac8'),\n    CLEAR(\"bd2-clear\", '\\ueac9'),\n    CLEAR_FORMAT(\"bd2-clear-format\", '\\ueaca'),\n    CLICK(\"bd2-click\", '\\ueacb'),\n    CLICK_TAP(\"bd2-click-tap\", '\\ueacc'),\n    CLICK_TAP_TWO(\"bd2-click-tap-two\", '\\ueacd'),\n    CLICK_TO_FOLD(\"bd2-click-to-fold\", '\\ueace'),\n    CLIPBOARD(\"bd2-clipboard\", '\\ueacf'),\n    CLOCK_TOWER(\"bd2-clock-tower\", '\\uead0'),\n    CLOSE(\"bd2-close\", '\\uead1'),\n    CLOSE_ONE(\"bd2-close-one\", '\\uead2'),\n    CLOSE_REMIND(\"bd2-close-remind\", '\\uead3'),\n    CLOSE_SMALL(\"bd2-close-small\", '\\uead4'),\n    CLOSE_WIFI(\"bd2-close-wifi\", '\\uead5'),\n    CLOTHES_BRIEFS(\"bd2-clothes-briefs\", '\\uead6'),\n    CLOTHES_CARDIGAN(\"bd2-clothes-cardigan\", '\\uead7'),\n    CLOTHES_CREW_NECK(\"bd2-clothes-crew-neck\", '\\uead8'),\n    CLOTHES_DIAPERS(\"bd2-clothes-diapers\", '\\uead9'),\n    CLOTHES_GLOVES(\"bd2-clothes-gloves\", '\\ueada'),\n    CLOTHES_GLOVES_TWO(\"bd2-clothes-gloves-two\", '\\ueadb'),\n    CLOTHES_HOODIE(\"bd2-clothes-hoodie\", '\\ueadc'),\n    CLOTHES_PANTS(\"bd2-clothes-pants\", '\\ueadd'),\n    CLOTHES_PANTS_SHORT(\"bd2-clothes-pants-short\", '\\ueade'),\n    CLOTHES_PANTS_SWEAT(\"bd2-clothes-pants-sweat\", '\\ueadf'),\n    CLOTHES_SHORT_SLEEVE(\"bd2-clothes-short-sleeve\", '\\ueae0'),\n    CLOTHES_SKATES(\"bd2-clothes-skates\", '\\ueae1'),\n    CLOTHES_SUIT(\"bd2-clothes-suit\", '\\ueae2'),\n    CLOTHES_SWEATER(\"bd2-clothes-sweater\", '\\ueae3'),\n    CLOTHES_TURTLENECK(\"bd2-clothes-turtleneck\", '\\ueae4'),\n    CLOTHES_WINDBREAKER(\"bd2-clothes-windbreaker\", '\\ueae5'),\n    CLOUD_STORAGE(\"bd2-cloud-storage\", '\\ueae6'),\n    CLOUDY(\"bd2-cloudy\", '\\ueae7'),\n    CLOUDY_NIGHT(\"bd2-cloudy-night\", '\\ueae8'),\n    CLUE(\"bd2-clue\", '\\ueae9'),\n    COAT_HANGER(\"bd2-coat-hanger\", '\\ueaea'),\n    COCKTAIL(\"bd2-cocktail\", '\\ueaeb'),\n    COCONUT_TREE(\"bd2-coconut-tree\", '\\ueaec'),\n    CODE(\"bd2-code\", '\\ueaed'),\n    CODE_BRACKETS(\"bd2-code-brackets\", '\\ueaee'),\n    CODE_COMPUTER(\"bd2-code-computer\", '\\ueaef'),\n    CODE_DOWNLOAD(\"bd2-code-download\", '\\ueaf0'),\n    CODE_LAPTOP(\"bd2-code-laptop\", '\\ueaf1'),\n    CODE_ONE(\"bd2-code-one\", '\\ueaf2'),\n    COFFEE_MACHINE(\"bd2-coffee-machine\", '\\ueaf3'),\n    COLA(\"bd2-cola\", '\\ueaf4'),\n    COLLAPSE_TEXT_INPUT(\"bd2-collapse-text-input\", '\\ueaf5'),\n    COLLECT_COMPUTER(\"bd2-collect-computer\", '\\ueaf6'),\n    COLLECTION_FILES(\"bd2-collection-files\", '\\ueaf7'),\n    COLLECTION_RECORDS(\"bd2-collection-records\", '\\ueaf8'),\n    COLLECT_LAPTOP(\"bd2-collect-laptop\", '\\ueaf9'),\n    COLLECT_PICTURE(\"bd2-collect-picture\", '\\ueafa'),\n    COLOR_CARD(\"bd2-color-card\", '\\ueafb'),\n    COLOR_FILTER(\"bd2-color-filter\", '\\ueafc'),\n    COLUMN(\"bd2-column\", '\\ueafd'),\n    COMB(\"bd2-comb\", '\\ueafe'),\n    COME(\"bd2-come\", '\\ueaff'),\n    COMMAND(\"bd2-command\", '\\ueb00'),\n    COMMENT(\"bd2-comment\", '\\ueb01'),\n    COMMENT_ONE(\"bd2-comment-one\", '\\ueb02'),\n    COMMENTS(\"bd2-comments\", '\\ueb03'),\n    COMMODITY(\"bd2-commodity\", '\\ueb04'),\n    COMMUNICATION(\"bd2-communication\", '\\ueb05'),\n    COMMUTER_BAG(\"bd2-commuter-bag\", '\\ueb06'),\n    COMPASS(\"bd2-compass\", '\\ueb07'),\n    COMPASS_ONE(\"bd2-compass-one\", '\\ueb08'),\n    COMPONENTS(\"bd2-components\", '\\ueb09'),\n    COMPOSITION(\"bd2-composition\", '\\ueb0a'),\n    COMPRESSION(\"bd2-compression\", '\\ueb0b'),\n    COMPUTER(\"bd2-computer\", '\\ueb0c'),\n    COMPUTER_ONE(\"bd2-computer-one\", '\\ueb0d'),\n    CONCEPT_SHARING(\"bd2-concept-sharing\", '\\ueb0e'),\n    CONCERN(\"bd2-concern\", '\\ueb0f'),\n    CONDITIONER(\"bd2-conditioner\", '\\ueb10'),\n    CONE(\"bd2-cone\", '\\ueb11'),\n    CONES(\"bd2-cones\", '\\ueb12'),\n    CONFIG(\"bd2-config\", '\\ueb13'),\n    CONFOUNDED_FACE(\"bd2-confounded-face\", '\\ueb14'),\n    CONFUSED_FACE(\"bd2-confused-face\", '\\ueb15'),\n    CONNECT(\"bd2-connect\", '\\ueb16'),\n    CONNECT_ADDRESS_ONE(\"bd2-connect-address-one\", '\\ueb17'),\n    CONNECT_ADDRESS_TWO(\"bd2-connect-address-two\", '\\ueb18'),\n    CONNECTION(\"bd2-connection\", '\\ueb19'),\n    CONNECTION_ARROW(\"bd2-connection-arrow\", '\\ueb1a'),\n    CONNECTION_BOX(\"bd2-connection-box\", '\\ueb1b'),\n    CONNECTION_POINT(\"bd2-connection-point\", '\\ueb1c'),\n    CONNECTION_POINT_TWO(\"bd2-connection-point-two\", '\\ueb1d'),\n    CONSIGNMENT(\"bd2-consignment\", '\\ueb1e'),\n    CONSUME(\"bd2-consume\", '\\ueb1f'),\n    CONTRAST(\"bd2-contrast\", '\\ueb20'),\n    CONTRAST_VIEW(\"bd2-contrast-view\", '\\ueb21'),\n    CONTRAST_VIEW_CIRCLE(\"bd2-contrast-view-circle\", '\\ueb22'),\n    CONTROL(\"bd2-control\", '\\ueb23'),\n    CONVERGING_GATEWAY(\"bd2-converging-gateway\", '\\ueb24'),\n    COOK(\"bd2-cook\", '\\ueb25'),\n    COOKING(\"bd2-cooking\", '\\ueb26'),\n    COOKING_POT(\"bd2-cooking-pot\", '\\ueb27'),\n    COOL(\"bd2-cool\", '\\ueb28'),\n    COOPERATIVE_HANDSHAKE(\"bd2-cooperative-handshake\", '\\ueb29'),\n    COORDINATE_SYSTEM(\"bd2-coordinate-system\", '\\ueb2a'),\n    COPY(\"bd2-copy\", '\\ueb2b'),\n    COPY_LINK(\"bd2-copy-link\", '\\ueb2c'),\n    COPY_ONE(\"bd2-copy-one\", '\\ueb2d'),\n    COPYRIGHT(\"bd2-copyright\", '\\ueb2e'),\n    CORNER_DOWN_LEFT(\"bd2-corner-down-left\", '\\ueb2f'),\n    CORNER_DOWN_RIGHT(\"bd2-corner-down-right\", '\\ueb30'),\n    CORNER_LEFT_DOWN(\"bd2-corner-left-down\", '\\ueb31'),\n    CORNER_LEFT_UP(\"bd2-corner-left-up\", '\\ueb32'),\n    CORNER_RIGHT_DOWN(\"bd2-corner-right-down\", '\\ueb33'),\n    CORNER_RIGHT_UP(\"bd2-corner-right-up\", '\\ueb34'),\n    CORNER_UP_LEFT(\"bd2-corner-up-left\", '\\ueb35'),\n    CORNER_UP_RIGHT(\"bd2-corner-up-right\", '\\ueb36'),\n    CORONAVIRUS(\"bd2-coronavirus\", '\\ueb37'),\n    CORRECT(\"bd2-correct\", '\\ueb38'),\n    COSMETIC_BRUSH(\"bd2-cosmetic-brush\", '\\ueb39'),\n    COUPON(\"bd2-coupon\", '\\ueb3a'),\n    COURT(\"bd2-court\", '\\ueb3b'),\n    CPU(\"bd2-cpu\", '\\ueb3c'),\n    CRAB(\"bd2-crab\", '\\ueb3d'),\n    CREATION_DATE_SORT(\"bd2-creation-date-sort\", '\\ueb3e'),\n    CREATIVE(\"bd2-creative\", '\\ueb3f'),\n    CREDIT(\"bd2-credit\", '\\ueb40'),\n    CRIB(\"bd2-crib\", '\\ueb41'),\n    CROISSANT(\"bd2-croissant\", '\\ueb42'),\n    CROSS_RING(\"bd2-cross-ring\", '\\ueb43'),\n    CROSS_RING_TWO(\"bd2-cross-ring-two\", '\\ueb44'),\n    CROSS_SOCIETY(\"bd2-cross-society\", '\\ueb45'),\n    CROWN(\"bd2-crown\", '\\ueb46'),\n    CROWN_THREE(\"bd2-crown-three\", '\\ueb47'),\n    CROWN_TWO(\"bd2-crown-two\", '\\ueb48'),\n    CRUISE(\"bd2-cruise\", '\\ueb49'),\n    CRYING_BABY(\"bd2-crying-baby\", '\\ueb4a'),\n    CUBE(\"bd2-cube\", '\\ueb4b'),\n    CUBE_FIVE(\"bd2-cube-five\", '\\ueb4c'),\n    CUBE_FOUR(\"bd2-cube-four\", '\\ueb4d'),\n    CUBE_THREE(\"bd2-cube-three\", '\\ueb4e'),\n    CUBE_TWO(\"bd2-cube-two\", '\\ueb4f'),\n    CUP(\"bd2-cup\", '\\ueb50'),\n    CUP_FOUR(\"bd2-cup-four\", '\\ueb51'),\n    CUP_ONE(\"bd2-cup-one\", '\\ueb52'),\n    CURLING(\"bd2-curling\", '\\ueb53'),\n    CURRENCY(\"bd2-currency\", '\\ueb54'),\n    CURVE_ADJUSTMENT(\"bd2-curve-adjustment\", '\\ueb55'),\n    CUSTOMER(\"bd2-customer\", '\\ueb56'),\n    CUTTING(\"bd2-cutting\", '\\ueb57'),\n    CUTTING_ONE(\"bd2-cutting-one\", '\\ueb58'),\n    CUVETTE(\"bd2-cuvette\", '\\ueb59'),\n    CYCLE(\"bd2-cycle\", '\\ueb5a'),\n    CYCLE_ARROW(\"bd2-cycle-arrow\", '\\ueb5b'),\n    CYCLE_MOVEMENT(\"bd2-cycle-movement\", '\\ueb5c'),\n    CYCLE_ONE(\"bd2-cycle-one\", '\\ueb5d'),\n    CYLINDER(\"bd2-cylinder\", '\\ueb5e'),\n    DAMAGE_MAP(\"bd2-damage-map\", '\\ueb5f'),\n    DARK_MODE(\"bd2-dark-mode\", '\\ueb60'),\n    DASHBOARD(\"bd2-dashboard\", '\\ueb61'),\n    DASHBOARD_CAR(\"bd2-dashboard-car\", '\\ueb62'),\n    DASHBOARD_ONE(\"bd2-dashboard-one\", '\\ueb63'),\n    DASHBOARD_TWO(\"bd2-dashboard-two\", '\\ueb64'),\n    DATA(\"bd2-data\", '\\ueb65'),\n    DATA_ALL(\"bd2-data-all\", '\\ueb66'),\n    DATA_ARRIVAL(\"bd2-data-arrival\", '\\ueb67'),\n    DATABASE_ALERT(\"bd2-database-alert\", '\\ueb68'),\n    DATABASE_CODE(\"bd2-database-code\", '\\ueb69'),\n    DATABASE_CONFIG(\"bd2-database-config\", '\\ueb6a'),\n    DATABASE_DOWNLOAD(\"bd2-database-download\", '\\ueb6b'),\n    DATABASE_ENTER(\"bd2-database-enter\", '\\ueb6c'),\n    DATABASE_FAIL(\"bd2-database-fail\", '\\ueb6d'),\n    DATABASE_FIRST(\"bd2-database-first\", '\\ueb6e'),\n    DATABASE_FORBID(\"bd2-database-forbid\", '\\ueb6f'),\n    DATABASE_LOCK(\"bd2-database-lock\", '\\ueb70'),\n    DATABASE_NETWORK(\"bd2-database-network\", '\\ueb71'),\n    DATABASE_NETWORK_POINT(\"bd2-database-network-point\", '\\ueb72'),\n    DATABASE_POINT(\"bd2-database-point\", '\\ueb73'),\n    DATABASE_POSITION(\"bd2-database-position\", '\\ueb74'),\n    DATABASE_POWER(\"bd2-database-power\", '\\ueb75'),\n    DATABASE_PROPORTION(\"bd2-database-proportion\", '\\ueb76'),\n    DATABASE_SEARCH(\"bd2-database-search\", '\\ueb77'),\n    DATABASE_SETTING(\"bd2-database-setting\", '\\ueb78'),\n    DATABASE_SUCCESS(\"bd2-database-success\", '\\ueb79'),\n    DATABASE_SYNC(\"bd2-database-sync\", '\\ueb7a'),\n    DATABASE_TIME(\"bd2-database-time\", '\\ueb7b'),\n    DATA_DISPLAY(\"bd2-data-display\", '\\ueb7c'),\n    DATA_FILE(\"bd2-data-file\", '\\ueb7d'),\n    DATA_FOUR(\"bd2-data-four\", '\\ueb7e'),\n    DATA_LOCK(\"bd2-data-lock\", '\\ueb7f'),\n    DATA_NULL(\"bd2-data-null\", '\\ueb80'),\n    DATA_ONE(\"bd2-data-one\", '\\ueb81'),\n    DATA_SCREEN(\"bd2-data-screen\", '\\ueb82'),\n    DATA_SERVER(\"bd2-data-server\", '\\ueb83'),\n    DATA_SHEET(\"bd2-data-sheet\", '\\ueb84'),\n    DATA_SWITCHING(\"bd2-data-switching\", '\\ueb85'),\n    DATA_THREE(\"bd2-data-three\", '\\ueb86'),\n    DATA_TWO(\"bd2-data-two\", '\\ueb87'),\n    DATA_USER(\"bd2-data-user\", '\\ueb88'),\n    DATE_COMES_BACK(\"bd2-date-comes-back\", '\\ueb89'),\n    DEADLINE_SORT(\"bd2-deadline-sort\", '\\ueb8a'),\n    DEATH_STAR(\"bd2-death-star\", '\\ueb8b'),\n    DEEPLINK(\"bd2-deeplink\", '\\ueb8c'),\n    DEER(\"bd2-deer\", '\\ueb8d'),\n    DEGREE_HAT(\"bd2-degree-hat\", '\\ueb8e'),\n    DELETE(\"bd2-delete\", '\\ueb8f'),\n    DELETE_FIVE(\"bd2-delete-five\", '\\ueb90'),\n    DELETE_FOUR(\"bd2-delete-four\", '\\ueb91'),\n    DELETE_KEY(\"bd2-delete-key\", '\\ueb92'),\n    DELETE_MODE(\"bd2-delete-mode\", '\\ueb93'),\n    DELETE_ONE(\"bd2-delete-one\", '\\ueb94'),\n    DELETE_THEMES(\"bd2-delete-themes\", '\\ueb95'),\n    DELETE_THREE(\"bd2-delete-three\", '\\ueb96'),\n    DELETE_TWO(\"bd2-delete-two\", '\\ueb97'),\n    DELIVERY(\"bd2-delivery\", '\\ueb98'),\n    DEPOSIT(\"bd2-deposit\", '\\ueb99'),\n    DESCEND(\"bd2-descend\", '\\ueb9a'),\n    DESK_LAMP(\"bd2-desk-lamp\", '\\ueb9b'),\n    DESK_LAMP_ONE(\"bd2-desk-lamp-one\", '\\ueb9c'),\n    DETECTION(\"bd2-detection\", '\\ueb9d'),\n    DEVICES(\"bd2-devices\", '\\ueb9e'),\n    DIAMOND(\"bd2-diamond\", '\\ueb9f'),\n    DIAMOND_NECKLACE(\"bd2-diamond-necklace\", '\\ueba0'),\n    DIAMOND_ONE(\"bd2-diamond-one\", '\\ueba1'),\n    DIAMOND_RING(\"bd2-diamond-ring\", '\\ueba2'),\n    DIAMONDS(\"bd2-diamonds\", '\\ueba3'),\n    DIAMOND_THREE(\"bd2-diamond-three\", '\\ueba4'),\n    DIAMOND_TWO(\"bd2-diamond-two\", '\\ueba5'),\n    DIANZIQIAN(\"bd2-dianziqian\", '\\ueba6'),\n    DIAPERS_ONE(\"bd2-diapers-one\", '\\ueba7'),\n    DIFFERENCE_SET(\"bd2-difference-set\", '\\ueba8'),\n    DIGITAL_WATCHES(\"bd2-digital-watches\", '\\ueba9'),\n    DIRECTION(\"bd2-direction\", '\\uebaa'),\n    DIRECTION_ADJUSTMENT(\"bd2-direction-adjustment\", '\\uebab'),\n    DIRECTION_ADJUSTMENT_THREE(\"bd2-direction-adjustment-three\", '\\uebac'),\n    DIRECTION_ADJUSTMENT_TWO(\"bd2-direction-adjustment-two\", '\\uebad'),\n    DISABALED_WEB(\"bd2-disabaled-web\", '\\uebae'),\n    DISABLED_COMPUTER(\"bd2-disabled-computer\", '\\uebaf'),\n    DISABLED_LAPTOP(\"bd2-disabled-laptop\", '\\uebb0'),\n    DISABLED_PICTURE(\"bd2-disabled-picture\", '\\uebb1'),\n    DISAPPOINTED_FACE(\"bd2-disappointed-face\", '\\uebb2'),\n    DISCOVERY_INDEX(\"bd2-discovery-index\", '\\uebb3'),\n    DISK(\"bd2-disk\", '\\uebb4'),\n    DISK_ONE(\"bd2-disk-one\", '\\uebb5'),\n    DISK_TWO(\"bd2-disk-two\", '\\uebb6'),\n    DISLIKE(\"bd2-dislike\", '\\uebb7'),\n    DISLIKE_TWO(\"bd2-dislike-two\", '\\uebb8'),\n    DISPLAY(\"bd2-display\", '\\uebb9'),\n    DISTORTION(\"bd2-distortion\", '\\uebba'),\n    DISTRAUGHT_FACE(\"bd2-distraught-face\", '\\uebbb'),\n    DISTRIBUTE_HORIZONTALLY(\"bd2-distribute-horizontally\", '\\uebbc'),\n    DISTRIBUTE_HORIZONTAL_SPACING(\"bd2-distribute-horizontal-spacing\", '\\uebbd'),\n    DISTRIBUTE_VERTICALLY(\"bd2-distribute-vertically\", '\\uebbe'),\n    DISTRIBUTE_VERTICAL_SPACING(\"bd2-distribute-vertical-spacing\", '\\uebbf'),\n    DIVIDING_LINE(\"bd2-dividing-line\", '\\uebc0'),\n    DIVIDING_LINE_ONE(\"bd2-dividing-line-one\", '\\uebc1'),\n    DIVING(\"bd2-diving\", '\\uebc2'),\n    DIVING_BOTTLE(\"bd2-diving-bottle\", '\\uebc3'),\n    DIVING_SUIT(\"bd2-diving-suit\", '\\uebc4'),\n    DIVISION(\"bd2-division\", '\\uebc5'),\n    DIZZY_FACE(\"bd2-dizzy-face\", '\\uebc6'),\n    DOC_ADD(\"bd2-doc-add\", '\\uebc7'),\n    DOC_DETAIL(\"bd2-doc-detail\", '\\uebc8'),\n    DOC_FAIL(\"bd2-doc-fail\", '\\uebc9'),\n    DOC_SEARCH(\"bd2-doc-search\", '\\uebca'),\n    DOC_SEARCH_TWO(\"bd2-doc-search-two\", '\\uebcb'),\n    DOC_SUCCESS(\"bd2-doc-success\", '\\uebcc'),\n    DOCUMENT_FOLDER(\"bd2-document-folder\", '\\uebcd'),\n    DOG(\"bd2-dog\", '\\uebce'),\n    DOG_ZODIAC(\"bd2-dog-zodiac\", '\\uebcf'),\n    DOLLAR(\"bd2-dollar\", '\\uebd0'),\n    DOLPHIN(\"bd2-dolphin\", '\\uebd1'),\n    DOME(\"bd2-dome\", '\\uebd2'),\n    DOME_LIGHT(\"bd2-dome-light\", '\\uebd3'),\n    DONE_ALL(\"bd2-done-all\", '\\uebd4'),\n    DONGCHEDI(\"bd2-dongchedi\", '\\uebd5'),\n    DOOR_HANDLE(\"bd2-door-handle\", '\\uebd6'),\n    DOT(\"bd2-dot\", '\\uebd7'),\n    DOUBLE_BED(\"bd2-double-bed\", '\\uebd8'),\n    DOUBLE_DOWN(\"bd2-double-down\", '\\uebd9'),\n    DOUBLE_LEFT(\"bd2-double-left\", '\\uebda'),\n    DOUBLE_RIGHT(\"bd2-double-right\", '\\uebdb'),\n    DOUBLE_UP(\"bd2-double-up\", '\\uebdc'),\n    DOUGHNUT(\"bd2-doughnut\", '\\uebdd'),\n    DOWN(\"bd2-down\", '\\uebde'),\n    DOWN_C(\"bd2-down-c\", '\\uebdf'),\n    DOWNLOAD(\"bd2-download\", '\\uebe0'),\n    DOWNLOAD_COMPUTER(\"bd2-download-computer\", '\\uebe1'),\n    DOWNLOAD_FOUR(\"bd2-download-four\", '\\uebe2'),\n    DOWNLOAD_LAPTOP(\"bd2-download-laptop\", '\\uebe3'),\n    DOWNLOAD_ONE(\"bd2-download-one\", '\\uebe4'),\n    DOWNLOAD_THREE(\"bd2-download-three\", '\\uebe5'),\n    DOWNLOAD_TWO(\"bd2-download-two\", '\\uebe6'),\n    DOWNLOAD_WEB(\"bd2-download-web\", '\\uebe7'),\n    DOWN_ONE(\"bd2-down-one\", '\\uebe8'),\n    DOWN_PICTURE(\"bd2-down-picture\", '\\uebe9'),\n    DOWN_SMALL(\"bd2-down-small\", '\\uebea'),\n    DOWN_SQUARE(\"bd2-down-square\", '\\uebeb'),\n    DOWN_TWO(\"bd2-down-two\", '\\uebec'),\n    DRAG(\"bd2-drag\", '\\uebed'),\n    DRAGON_ZODIAC(\"bd2-dragon-zodiac\", '\\uebee'),\n    DRIBBLE(\"bd2-dribble\", '\\uebef'),\n    DRINK(\"bd2-drink\", '\\uebf0'),\n    DRONE(\"bd2-drone\", '\\uebf1'),\n    DRONE_ONE(\"bd2-drone-one\", '\\uebf2'),\n    DROPBOX(\"bd2-dropbox\", '\\uebf3'),\n    DROP_DOWN_LIST(\"bd2-drop-down-list\", '\\uebf4'),\n    DROP_SHADOW_DOWN(\"bd2-drop-shadow-down\", '\\uebf5'),\n    DROP_SHADOW_LEFT(\"bd2-drop-shadow-left\", '\\uebf6'),\n    DROP_SHADOW_RIGHT(\"bd2-drop-shadow-right\", '\\uebf7'),\n    DROP_SHADOW_UP(\"bd2-drop-shadow-up\", '\\uebf8'),\n    DRUMSTICK(\"bd2-drumstick\", '\\uebf9'),\n    DUBAI(\"bd2-dubai\", '\\uebfa'),\n    DUCK(\"bd2-duck\", '\\uebfb'),\n    DUMBBELL(\"bd2-dumbbell\", '\\uebfc'),\n    DUMBBEL_LINE(\"bd2-dumbbel-line\", '\\uebfd'),\n    DVI(\"bd2-dvi\", '\\uebfe'),\n    EAGLE(\"bd2-eagle\", '\\uebff'),\n    EARTH(\"bd2-earth\", '\\uec00'),\n    EASY(\"bd2-easy\", '\\uec01'),\n    ECG(\"bd2-ecg\", '\\uec02'),\n    EDIT(\"bd2-edit\", '\\uec03'),\n    EDITING(\"bd2-editing\", '\\uec04'),\n    EDIT_MOVIE(\"bd2-edit-movie\", '\\uec05'),\n    EDIT_NAME(\"bd2-edit-name\", '\\uec06'),\n    EDIT_ONE(\"bd2-edit-one\", '\\uec07'),\n    EDITOR(\"bd2-editor\", '\\uec08'),\n    EDIT_TWO(\"bd2-edit-two\", '\\uec09'),\n    EEG(\"bd2-eeg\", '\\uec0a'),\n    EFFECTS(\"bd2-effects\", '\\uec0b'),\n    EFFERENT_FOUR(\"bd2-efferent-four\", '\\uec0c'),\n    EFFERENT_THREE(\"bd2-efferent-three\", '\\uec0d'),\n    EGG(\"bd2-egg\", '\\uec0e'),\n    EGG_ONE(\"bd2-egg-one\", '\\uec0f'),\n    EGGPLANT(\"bd2-eggplant\", '\\uec10'),\n    EIFFEL_TOWER(\"bd2-eiffel-tower\", '\\uec11'),\n    EIGHT_KEY(\"bd2-eight-key\", '\\uec12'),\n    ELECTRIC_DRILL(\"bd2-electric-drill\", '\\uec13'),\n    ELECTRIC_IRON(\"bd2-electric-iron\", '\\uec14'),\n    ELECTRIC_WAVE(\"bd2-electric-wave\", '\\uec15'),\n    ELECTROCARDIOGRAM(\"bd2-electrocardiogram\", '\\uec16'),\n    ELECTRONIC_DOOR_LOCK(\"bd2-electronic-door-lock\", '\\uec17'),\n    ELECTRONIC_LOCKS_CLOSE(\"bd2-electronic-locks-close\", '\\uec18'),\n    ELECTRONIC_LOCKS_OPEN(\"bd2-electronic-locks-open\", '\\uec19'),\n    ELECTRONIC_PEN(\"bd2-electronic-pen\", '\\uec1a'),\n    ELEPHANT(\"bd2-elephant\", '\\uec1b'),\n    ELEVATOR(\"bd2-elevator\", '\\uec1c'),\n    EMAIL_BLOCK(\"bd2-email-block\", '\\uec1d'),\n    EMAIL_DELECT(\"bd2-email-delect\", '\\uec1e'),\n    EMAIL_DOWN(\"bd2-email-down\", '\\uec1f'),\n    EMAIL_FAIL(\"bd2-email-fail\", '\\uec20'),\n    EMAIL_LOCK(\"bd2-email-lock\", '\\uec21'),\n    EMAIL_PUSH(\"bd2-email-push\", '\\uec22'),\n    EMAIL_SEARCH(\"bd2-email-search\", '\\uec23'),\n    EMAIL_SECURITY(\"bd2-email-security\", '\\uec24'),\n    EMAIL_SUCCESSFULLY(\"bd2-email-successfully\", '\\uec25'),\n    EMOTION_HAPPY(\"bd2-emotion-happy\", '\\uec26'),\n    EMOTION_UNHAPPY(\"bd2-emotion-unhappy\", '\\uec27'),\n    EMPTY(\"bd2-empty\", '\\uec28'),\n    ENDLESS(\"bd2-endless\", '\\uec29'),\n    ENDOCRINE(\"bd2-endocrine\", '\\uec2a'),\n    ENDPOINT_DISPLACEMENT(\"bd2-endpoint-displacement\", '\\uec2b'),\n    ENDPOINT_FLAT(\"bd2-endpoint-flat\", '\\uec2c'),\n    ENDPOINT_ROUND(\"bd2-endpoint-round\", '\\uec2d'),\n    ENDPOINT_SQUARE(\"bd2-endpoint-square\", '\\uec2e'),\n    END_TIME_SORT(\"bd2-end-time-sort\", '\\uec2f'),\n    ENERGY_SOCKET(\"bd2-energy-socket\", '\\uec30'),\n    ENGINEERING_BRAND(\"bd2-engineering-brand\", '\\uec31'),\n    ENGINEERING_VEHICLE(\"bd2-engineering-vehicle\", '\\uec32'),\n    ENGLISH(\"bd2-english\", '\\uec33'),\n    ENGLISH_MUSTACHE(\"bd2-english-mustache\", '\\uec34'),\n    ENQUIRE(\"bd2-enquire\", '\\uec35'),\n    ENTER_KEY(\"bd2-enter-key\", '\\uec36'),\n    ENTER_KEY_ONE(\"bd2-enter-key-one\", '\\uec37'),\n    ENTERTAINMENT(\"bd2-entertainment\", '\\uec38'),\n    ENTER_THE_KEYBOARD(\"bd2-enter-the-keyboard\", '\\uec39'),\n    ENVELOPE(\"bd2-envelope\", '\\uec3a'),\n    ENVELOPE_ONE(\"bd2-envelope-one\", '\\uec3b'),\n    EQUALIZER(\"bd2-equalizer\", '\\uec3c'),\n    EQUAL_RATIO(\"bd2-equal-ratio\", '\\uec3d'),\n    ERASE(\"bd2-erase\", '\\uec3e'),\n    ERROR(\"bd2-error\", '\\uec3f'),\n    ERROR_COMPUTER(\"bd2-error-computer\", '\\uec40'),\n    ERROR_PICTURE(\"bd2-error-picture\", '\\uec41'),\n    ERROR_PROMPT(\"bd2-error-prompt\", '\\uec42'),\n    ESCALATORS(\"bd2-escalators\", '\\uec43'),\n    ETHERNET_OFF(\"bd2-ethernet-off\", '\\uec44'),\n    ETHERNET_ON(\"bd2-ethernet-on\", '\\uec45'),\n    EVERY_USER(\"bd2-every-user\", '\\uec46'),\n    EXCEL(\"bd2-excel\", '\\uec47'),\n    EXCEL_ONE(\"bd2-excel-one\", '\\uec48'),\n    EXCHANGE(\"bd2-exchange\", '\\uec49'),\n    EXCHANGE_FOUR(\"bd2-exchange-four\", '\\uec4a'),\n    EXCHANGE_ONE(\"bd2-exchange-one\", '\\uec4b'),\n    EXCHANGE_THREE(\"bd2-exchange-three\", '\\uec4c'),\n    EXCHANGE_TWO(\"bd2-exchange-two\", '\\uec4d'),\n    EXCLUDE_SELECTION(\"bd2-exclude-selection\", '\\uec4e'),\n    EXCLUSIVE_GATEWAY(\"bd2-exclusive-gateway\", '\\uec4f'),\n    EXPAND_DOWN(\"bd2-expand-down\", '\\uec50'),\n    EXPAND_DOWN_ONE(\"bd2-expand-down-one\", '\\uec51'),\n    EXPAND_LEFT(\"bd2-expand-left\", '\\uec52'),\n    EXPAND_LEFT_AND_RIGHT(\"bd2-expand-left-and-right\", '\\uec53'),\n    EXPAND_RIGHT(\"bd2-expand-right\", '\\uec54'),\n    EXPAND_TEXT_INPUT(\"bd2-expand-text-input\", '\\uec55'),\n    EXPAND_UP(\"bd2-expand-up\", '\\uec56'),\n    EXPENSES(\"bd2-expenses\", '\\uec57'),\n    EXPENSES_ONE(\"bd2-expenses-one\", '\\uec58'),\n    EXPERIMENT(\"bd2-experiment\", '\\uec59'),\n    EXPERIMENT_ONE(\"bd2-experiment-one\", '\\uec5a'),\n    EXPORT(\"bd2-export\", '\\uec5b'),\n    EXPRESS_DELIVERY(\"bd2-express-delivery\", '\\uec5c'),\n    EXPRESSIONLESS_FACE(\"bd2-expressionless-face\", '\\uec5d'),\n    EXTEND(\"bd2-extend\", '\\uec5e'),\n    EXTERNAL_TRANSMISSION(\"bd2-external-transmission\", '\\uec5f'),\n    EYEBROW(\"bd2-eyebrow\", '\\uec60'),\n    EYES(\"bd2-eyes\", '\\uec61'),\n    FACEBOOK(\"bd2-facebook\", '\\uec62'),\n    FACEBOOK_ONE(\"bd2-facebook-one\", '\\uec63'),\n    FACE_POWDER(\"bd2-face-powder\", '\\uec64'),\n    FACE_RECOGNITION(\"bd2-face-recognition\", '\\uec65'),\n    FACETIME(\"bd2-facetime\", '\\uec66'),\n    FACEU(\"bd2-faceu\", '\\uec67'),\n    FACE_WITHOUT_MOUTH(\"bd2-face-without-mouth\", '\\uec68'),\n    FACE_WITH_SMILING_OPEN_EYES(\"bd2-face-with-smiling-open-eyes\", '\\uec69'),\n    FACIAL_CLEANSER(\"bd2-facial-cleanser\", '\\uec6a'),\n    FACIAL_MASK(\"bd2-facial-mask\", '\\uec6b'),\n    FACTORY_BUILDING(\"bd2-factory-building\", '\\uec6c'),\n    FAIL_PICTURE(\"bd2-fail-picture\", '\\uec6d'),\n    FAMILY(\"bd2-family\", '\\uec6e'),\n    FAN(\"bd2-fan\", '\\uec6f'),\n    FANQIEXIAOSHUO(\"bd2-fanqiexiaoshuo\", '\\uec70'),\n    FEELGOOD(\"bd2-feelgood\", '\\uec71'),\n    FEELGOOD_ONE(\"bd2-feelgood-one\", '\\uec72'),\n    F_EIGHT_KEY(\"bd2-f-eight-key\", '\\uec73'),\n    FEIYU(\"bd2-feiyu\", '\\uec74'),\n    FEMALE(\"bd2-female\", '\\uec75'),\n    FENCE_ONE(\"bd2-fence-one\", '\\uec76'),\n    FENCE_TWO(\"bd2-fence-two\", '\\uec77'),\n    FERRIS_WHEEL(\"bd2-ferris-wheel\", '\\uec78'),\n    F_FIVE_KEY(\"bd2-f-five-key\", '\\uec79'),\n    F_FOUR_KEY(\"bd2-f-four-key\", '\\uec7a'),\n    FIGMA(\"bd2-figma\", '\\uec7b'),\n    FIGMA_COMPONENT(\"bd2-figma-component\", '\\uec7c'),\n    FIGMA_FLATTEN_SELECTION(\"bd2-figma-flatten-selection\", '\\uec7d'),\n    FIGMA_MASK(\"bd2-figma-mask\", '\\uec7e'),\n    FIGMA_RESET_INSTANCE(\"bd2-figma-reset-instance\", '\\uec7f'),\n    FILE_ADDITION(\"bd2-file-addition\", '\\uec80'),\n    FILE_ADDITION_ONE(\"bd2-file-addition-one\", '\\uec81'),\n    FILE_CABINET(\"bd2-file-cabinet\", '\\uec82'),\n    FILE_CODE(\"bd2-file-code\", '\\uec83'),\n    FILE_CODE_ONE(\"bd2-file-code-one\", '\\uec84'),\n    FILE_COLLECTION(\"bd2-file-collection\", '\\uec85'),\n    FILE_COLLECTION_ONE(\"bd2-file-collection-one\", '\\uec86'),\n    FILE_CONVERSION(\"bd2-file-conversion\", '\\uec87'),\n    FILE_CONVERSION_ONE(\"bd2-file-conversion-one\", '\\uec88'),\n    FILE_DATE(\"bd2-file-date\", '\\uec89'),\n    FILE_DATE_ONE(\"bd2-file-date-one\", '\\uec8a'),\n    FILE_DISPLAY(\"bd2-file-display\", '\\uec8b'),\n    FILE_DISPLAY_ONE(\"bd2-file-display-one\", '\\uec8c'),\n    FILE_DOC(\"bd2-file-doc\", '\\uec8d'),\n    FILE_EDITING(\"bd2-file-editing\", '\\uec8e'),\n    FILE_EDITING_ONE(\"bd2-file-editing-one\", '\\uec8f'),\n    FILE_EXCEL(\"bd2-file-excel\", '\\uec90'),\n    FILE_FAILED(\"bd2-file-failed\", '\\uec91'),\n    FILE_FAILED_ONE(\"bd2-file-failed-one\", '\\uec92'),\n    FILE_FOCUS(\"bd2-file-focus\", '\\uec93'),\n    FILE_FOCUS_ONE(\"bd2-file-focus-one\", '\\uec94'),\n    FILE_GIF(\"bd2-file-gif\", '\\uec95'),\n    FILE_HASH(\"bd2-file-hash\", '\\uec96'),\n    FILE_HASH_ONE(\"bd2-file-hash-one\", '\\uec97'),\n    FILE_HIDING(\"bd2-file-hiding\", '\\uec98'),\n    FILE_HIDING_ONE(\"bd2-file-hiding-one\", '\\uec99'),\n    FILE_JPG(\"bd2-file-jpg\", '\\uec9a'),\n    FILE_LOCK(\"bd2-file-lock\", '\\uec9b'),\n    FILE_LOCK_ONE(\"bd2-file-lock-one\", '\\uec9c'),\n    FILE_MUSIC(\"bd2-file-music\", '\\uec9d'),\n    FILE_MUSIC_ONE(\"bd2-file-music-one\", '\\uec9e'),\n    FILE_PDF(\"bd2-file-pdf\", '\\uec9f'),\n    FILE_PDF_ONE(\"bd2-file-pdf-one\", '\\ueca0'),\n    FILE_PPT(\"bd2-file-ppt\", '\\ueca1'),\n    FILE_PROTECTION(\"bd2-file-protection\", '\\ueca2'),\n    FILE_PROTECTION_ONE(\"bd2-file-protection-one\", '\\ueca3'),\n    FILE_QUALITY(\"bd2-file-quality\", '\\ueca4'),\n    FILE_QUALITY_ONE(\"bd2-file-quality-one\", '\\ueca5'),\n    FILE_QUESTION(\"bd2-file-question\", '\\ueca6'),\n    FILE_REMOVAL(\"bd2-file-removal\", '\\ueca7'),\n    FILE_REMOVAL_ONE(\"bd2-file-removal-one\", '\\ueca8'),\n    FILE_SEARCH(\"bd2-file-search\", '\\ueca9'),\n    FILE_SEARCH_ONE(\"bd2-file-search-one\", '\\uecaa'),\n    FILE_SEARCH_TWO(\"bd2-file-search-two\", '\\uecab'),\n    FILE_SETTINGS(\"bd2-file-settings\", '\\uecac'),\n    FILE_SETTINGS_ONE(\"bd2-file-settings-one\", '\\uecad'),\n    FILE_STAFF(\"bd2-file-staff\", '\\uecae'),\n    FILE_STAFF_ONE(\"bd2-file-staff-one\", '\\uecaf'),\n    FILE_SUCCESS(\"bd2-file-success\", '\\uecb0'),\n    FILE_SUCCESS_ONE(\"bd2-file-success-one\", '\\uecb1'),\n    FILE_TEXT(\"bd2-file-text\", '\\uecb2'),\n    FILE_TEXT_ONE(\"bd2-file-text-one\", '\\uecb3'),\n    FILE_TIPS(\"bd2-file-tips\", '\\uecb4'),\n    FILE_TIPS_ONE(\"bd2-file-tips-one\", '\\uecb5'),\n    FILE_TXT(\"bd2-file-txt\", '\\uecb6'),\n    FILE_TXT_ONE(\"bd2-file-txt-one\", '\\uecb7'),\n    FILE_WITHDRAWAL(\"bd2-file-withdrawal\", '\\uecb8'),\n    FILE_WITHDRAWAL_ONE(\"bd2-file-withdrawal-one\", '\\uecb9'),\n    FILE_WORD(\"bd2-file-word\", '\\uecba'),\n    FILE_ZIP(\"bd2-file-zip\", '\\uecbb'),\n    FILL(\"bd2-fill\", '\\uecbc'),\n    FILM(\"bd2-film\", '\\uecbd'),\n    FILTER(\"bd2-filter\", '\\uecbe'),\n    FILTER_ONE(\"bd2-filter-one\", '\\uecbf'),\n    FINANCE(\"bd2-finance\", '\\uecc0'),\n    FINANCING(\"bd2-financing\", '\\uecc1'),\n    FINANCING_ONE(\"bd2-financing-one\", '\\uecc2'),\n    FINANCING_TWO(\"bd2-financing-two\", '\\uecc3'),\n    FIND(\"bd2-find\", '\\uecc4'),\n    FIND_ONE(\"bd2-find-one\", '\\uecc5'),\n    FINGERNAIL(\"bd2-fingernail\", '\\uecc6'),\n    FINGERPRINT(\"bd2-fingerprint\", '\\uecc7'),\n    FINGERPRINT_THREE(\"bd2-fingerprint-three\", '\\uecc8'),\n    FINGERPRINT_TWO(\"bd2-fingerprint-two\", '\\uecc9'),\n    FIRE(\"bd2-fire\", '\\uecca'),\n    FIRE_EXTINGUISHER(\"bd2-fire-extinguisher\", '\\ueccb'),\n    FIRE_EXTINGUISHER_ONE(\"bd2-fire-extinguisher-one\", '\\ueccc'),\n    FIRE_TWO(\"bd2-fire-two\", '\\ueccd'),\n    FIREWORKS(\"bd2-fireworks\", '\\uecce'),\n    FIRST(\"bd2-first\", '\\ueccf'),\n    FIRST_AID_KIT(\"bd2-first-aid-kit\", '\\uecd0'),\n    FISH(\"bd2-fish\", '\\uecd1'),\n    FISHING(\"bd2-fishing\", '\\uecd2'),\n    FISH_ONE(\"bd2-fish-one\", '\\uecd3'),\n    FIST(\"bd2-fist\", '\\uecd4'),\n    FITNESS(\"bd2-fitness\", '\\uecd5'),\n    FIVE(\"bd2-five\", '\\uecd6'),\n    FIVE_ELLIPSES(\"bd2-five-ellipses\", '\\uecd7'),\n    FIVE_FIVE(\"bd2-five-five\", '\\uecd8'),\n    FIVE_KEY(\"bd2-five-key\", '\\uecd9'),\n    FIVE_STAR_BADGE(\"bd2-five-star-badge\", '\\uecda'),\n    FLAG(\"bd2-flag\", '\\uecdb'),\n    FLASHLAMP(\"bd2-flashlamp\", '\\uecdc'),\n    FLASHLIGHT(\"bd2-flashlight\", '\\uecdd'),\n    FLASH_PAYMENT(\"bd2-flash-payment\", '\\uecde'),\n    FLASK(\"bd2-flask\", '\\uecdf'),\n    FLIGHT_AIRFLOW(\"bd2-flight-airflow\", '\\uece0'),\n    FLIGHT_SAFETY(\"bd2-flight-safety\", '\\uece1'),\n    FLIP_CAMERA(\"bd2-flip-camera\", '\\uece2'),\n    FLIP_HORIZONTALLY(\"bd2-flip-horizontally\", '\\uece3'),\n    FLIP_VERTICALLY(\"bd2-flip-vertically\", '\\uece4'),\n    FLIRT(\"bd2-flirt\", '\\uece5'),\n    FLOAT(\"bd2-float\", '\\uece6'),\n    FLOOR_TILE(\"bd2-floor-tile\", '\\uece7'),\n    FM(\"bd2-fm\", '\\uece8'),\n    F_NINE_KEY(\"bd2-f-nine-key\", '\\uece9'),\n    F_N_KEY(\"bd2-f-n-key\", '\\uecea'),\n    FOCUS(\"bd2-focus\", '\\ueceb'),\n    FOCUS_ONE(\"bd2-focus-one\", '\\uecec'),\n    FOG(\"bd2-fog\", '\\ueced'),\n    FOLDER(\"bd2-folder\", '\\uecee'),\n    FOLDER_BLOCK(\"bd2-folder-block\", '\\uecef'),\n    FOLDER_BLOCK_ONE(\"bd2-folder-block-one\", '\\uecf0'),\n    FOLDER_CLOSE(\"bd2-folder-close\", '\\uecf1'),\n    FOLDER_CODE(\"bd2-folder-code\", '\\uecf2'),\n    FOLDER_CODE_ONE(\"bd2-folder-code-one\", '\\uecf3'),\n    FOLDER_CONVERSION(\"bd2-folder-conversion\", '\\uecf4'),\n    FOLDER_CONVERSION_ONE(\"bd2-folder-conversion-one\", '\\uecf5'),\n    FOLDER_DOWNLOAD(\"bd2-folder-download\", '\\uecf6'),\n    FOLDER_FAILED(\"bd2-folder-failed\", '\\uecf7'),\n    FOLDER_FAILED_ONE(\"bd2-folder-failed-one\", '\\uecf8'),\n    FOLDER_FOCUS(\"bd2-folder-focus\", '\\uecf9'),\n    FOLDER_FOCUS_ONE(\"bd2-folder-focus-one\", '\\uecfa'),\n    FOLDER_LOCK(\"bd2-folder-lock\", '\\uecfb'),\n    FOLDER_LOCK_ONE(\"bd2-folder-lock-one\", '\\uecfc'),\n    FOLDER_MINUS(\"bd2-folder-minus\", '\\uecfd'),\n    FOLDER_MUSIC(\"bd2-folder-music\", '\\uecfe'),\n    FOLDER_MUSIC_ONE(\"bd2-folder-music-one\", '\\uecff'),\n    FOLDER_ONE(\"bd2-folder-one\", '\\ued00'),\n    FOLDER_OPEN(\"bd2-folder-open\", '\\ued01'),\n    FOLDER_PLUS(\"bd2-folder-plus\", '\\ued02'),\n    FOLDER_PROTECTION(\"bd2-folder-protection\", '\\ued03'),\n    FOLDER_PROTECTION_ONE(\"bd2-folder-protection-one\", '\\ued04'),\n    FOLDER_QUALITY(\"bd2-folder-quality\", '\\ued05'),\n    FOLDER_QUALITY_ONE(\"bd2-folder-quality-one\", '\\ued06'),\n    FOLDER_SEARCH(\"bd2-folder-search\", '\\ued07'),\n    FOLDER_SEARCH_ONE(\"bd2-folder-search-one\", '\\ued08'),\n    FOLDER_SETTINGS(\"bd2-folder-settings\", '\\ued09'),\n    FOLDER_SETTINGS_ONE(\"bd2-folder-settings-one\", '\\ued0a'),\n    FOLDER_SUCCESS(\"bd2-folder-success\", '\\ued0b'),\n    FOLDER_SUCCESS_ONE(\"bd2-folder-success-one\", '\\ued0c'),\n    FOLDER_UPLOAD(\"bd2-folder-upload\", '\\ued0d'),\n    FOLDER_WITHDRAWAL(\"bd2-folder-withdrawal\", '\\ued0e'),\n    FOLDER_WITHDRAWAL_ONE(\"bd2-folder-withdrawal-one\", '\\ued0f'),\n    FOLD_UP_ONE(\"bd2-fold-up-one\", '\\ued10'),\n    FOLLOW_UP_DATE_SORT(\"bd2-follow-up-date-sort\", '\\ued11'),\n    F_ONE_KEY(\"bd2-f-one-key\", '\\ued12'),\n    FONT_SEARCH(\"bd2-font-search\", '\\ued13'),\n    FONT_SIZE(\"bd2-font-size\", '\\ued14'),\n    FONT_SIZE_TWO(\"bd2-font-size-two\", '\\ued15'),\n    FOOT(\"bd2-foot\", '\\ued16'),\n    FOOTBALL(\"bd2-football\", '\\ued17'),\n    FORBID(\"bd2-forbid\", '\\ued18'),\n    FORK(\"bd2-fork\", '\\ued19'),\n    FORK_SPOON(\"bd2-fork-spoon\", '\\ued1a'),\n    FORM(\"bd2-form\", '\\ued1b'),\n    FORMAT(\"bd2-format\", '\\ued1c'),\n    FORMAT_BRUSH(\"bd2-format-brush\", '\\ued1d'),\n    FORM_ONE(\"bd2-form-one\", '\\ued1e'),\n    FORMULA(\"bd2-formula\", '\\ued1f'),\n    FOUNDATION_MAKEUP(\"bd2-foundation-makeup\", '\\ued20'),\n    FOUR(\"bd2-four\", '\\ued21'),\n    FOUR_ARROWS(\"bd2-four-arrows\", '\\ued22'),\n    FOUR_FOUR(\"bd2-four-four\", '\\ued23'),\n    FOUR_KEY(\"bd2-four-key\", '\\ued24'),\n    FOUR_LEAVES(\"bd2-four-leaves\", '\\ued25'),\n    FOUR_POINT_CONNECTION(\"bd2-four-point-connection\", '\\ued26'),\n    FOUR_ROUND_POINT_CONNECTION(\"bd2-four-round-point-connection\", '\\ued27'),\n    FOURSQUARE(\"bd2-foursquare\", '\\ued28'),\n    FREEZE_COLUMN(\"bd2-freeze-column\", '\\ued29'),\n    FREEZE_LINE(\"bd2-freeze-line\", '\\ued2a'),\n    FREEZING_LINE_COLUMN(\"bd2-freezing-line-column\", '\\ued2b'),\n    FRENCH_FRIES(\"bd2-french-fries\", '\\ued2c'),\n    FRIENDS_CIRCLE(\"bd2-friends-circle\", '\\ued2d'),\n    FRIGATE(\"bd2-frigate\", '\\ued2e'),\n    FROG(\"bd2-frog\", '\\ued2f'),\n    FROWNING_FACE_WHIT_OPEN_MOUTH(\"bd2-frowning-face-whit-open-mouth\", '\\ued30'),\n    FRUITER(\"bd2-fruiter\", '\\ued31'),\n    F_SEVEN_KEY(\"bd2-f-seven-key\", '\\ued32'),\n    F_SIX_KEY(\"bd2-f-six-key\", '\\ued33'),\n    F_THREE_KEY(\"bd2-f-three-key\", '\\ued34'),\n    F_TWO_KEY(\"bd2-f-two-key\", '\\ued35'),\n    FULL_DRESS_LONGUETTE(\"bd2-full-dress-longuette\", '\\ued36'),\n    FULL_SCREEN(\"bd2-full-screen\", '\\ued37'),\n    FULL_SCREEN_ONE(\"bd2-full-screen-one\", '\\ued38'),\n    FULL_SCREEN_PLAY(\"bd2-full-screen-play\", '\\ued39'),\n    FULL_SCREEN_TWO(\"bd2-full-screen-two\", '\\ued3a'),\n    FULL_SELECTION(\"bd2-full-selection\", '\\ued3b'),\n    FULLWIDTH(\"bd2-fullwidth\", '\\ued3c'),\n    FUNDS(\"bd2-funds\", '\\ued3d'),\n    FUTURE_BUILD_ONE(\"bd2-future-build-one\", '\\ued3e'),\n    FUTURE_BUILD_THREE(\"bd2-future-build-three\", '\\ued3f'),\n    FUTURE_BUILD_TWO(\"bd2-future-build-two\", '\\ued40'),\n    F_ZERO_KEY(\"bd2-f-zero-key\", '\\ued41'),\n    GAME(\"bd2-game\", '\\ued42'),\n    GAME_CONSOLE(\"bd2-game-console\", '\\ued43'),\n    GAME_CONSOLE_ONE(\"bd2-game-console-one\", '\\ued44'),\n    GAME_EMOJI(\"bd2-game-emoji\", '\\ued45'),\n    GAME_HANDLE(\"bd2-game-handle\", '\\ued46'),\n    GAMEPAD(\"bd2-gamepad\", '\\ued47'),\n    GAME_PS(\"bd2-game-ps\", '\\ued48'),\n    GAME_THREE(\"bd2-game-three\", '\\ued49'),\n    GAME_TWO(\"bd2-game-two\", '\\ued4a'),\n    GARAGE(\"bd2-garage\", '\\ued4b'),\n    GARLIC(\"bd2-garlic\", '\\ued4c'),\n    GAS(\"bd2-gas\", '\\ued4d'),\n    GASTROINTESTINAL(\"bd2-gastrointestinal\", '\\ued4e'),\n    GATE(\"bd2-gate\", '\\ued4f'),\n    GATE_MACHINE(\"bd2-gate-machine\", '\\ued50'),\n    GAUZE(\"bd2-gauze\", '\\ued51'),\n    GAVEL(\"bd2-gavel\", '\\ued52'),\n    GEMINI(\"bd2-gemini\", '\\ued53'),\n    GENERAL_BRANCH(\"bd2-general-branch\", '\\ued54'),\n    GEOMETRIC_FLOWERS(\"bd2-geometric-flowers\", '\\ued55'),\n    GERMS(\"bd2-germs\", '\\ued56'),\n    GHOST(\"bd2-ghost\", '\\ued57'),\n    GIFT(\"bd2-gift\", '\\ued58'),\n    GIFT_BAG(\"bd2-gift-bag\", '\\ued59'),\n    GIFT_BOX(\"bd2-gift-box\", '\\ued5a'),\n    GIRL(\"bd2-girl\", '\\ued5b'),\n    GIRL_ONE(\"bd2-girl-one\", '\\ued5c'),\n    GIRL_TWO(\"bd2-girl-two\", '\\ued5d'),\n    GITHUB(\"bd2-github\", '\\ued5e'),\n    GITHUB_ONE(\"bd2-github-one\", '\\ued5f'),\n    GITLAB(\"bd2-gitlab\", '\\ued60'),\n    GLASSES(\"bd2-glasses\", '\\ued61'),\n    GLASSES_ONE(\"bd2-glasses-one\", '\\ued62'),\n    GLASSES_THREE(\"bd2-glasses-three\", '\\ued63'),\n    GLOBE(\"bd2-globe\", '\\ued64'),\n    GLOVE(\"bd2-glove\", '\\ued65'),\n    GO_AHEAD(\"bd2-go-ahead\", '\\ued66'),\n    GOBLET(\"bd2-goblet\", '\\ued67'),\n    GOBLET_CRACKING(\"bd2-goblet-cracking\", '\\ued68'),\n    GOBLET_FULL(\"bd2-goblet-full\", '\\ued69'),\n    GOBLET_ONE(\"bd2-goblet-one\", '\\ued6a'),\n    GO_END(\"bd2-go-end\", '\\ued6b'),\n    GOLD_MEDAL(\"bd2-gold-medal\", '\\ued6c'),\n    GOLD_MEDAL_TWO(\"bd2-gold-medal-two\", '\\ued6d'),\n    GOLF_COURSE(\"bd2-golf-course\", '\\ued6e'),\n    GONGFU(\"bd2-gongfu\", '\\ued6f'),\n    GOOD(\"bd2-good\", '\\ued70'),\n    GOOD_ONE(\"bd2-good-one\", '\\ued71'),\n    GOOD_TWO(\"bd2-good-two\", '\\ued72'),\n    GOOGLE(\"bd2-google\", '\\ued73'),\n    GOOGLE_ADS(\"bd2-google-ads\", '\\ued74'),\n    GO_ON(\"bd2-go-on\", '\\ued75'),\n    GOPRO(\"bd2-gopro\", '\\ued76'),\n    GO_START(\"bd2-go-start\", '\\ued77'),\n    GPS(\"bd2-gps\", '\\ued78'),\n    GRAPHIC_DESIGN(\"bd2-graphic-design\", '\\ued79'),\n    GRAPHIC_DESIGN_TWO(\"bd2-graphic-design-two\", '\\ued7a'),\n    GRAPHIC_STITCHING(\"bd2-graphic-stitching\", '\\ued7b'),\n    GRAPHIC_STITCHING_FOUR(\"bd2-graphic-stitching-four\", '\\ued7c'),\n    GRAPHIC_STITCHING_THREE(\"bd2-graphic-stitching-three\", '\\ued7d'),\n    GREAT_WALL(\"bd2-great-wall\", '\\ued7e'),\n    GREEN_HOUSE(\"bd2-green-house\", '\\ued7f'),\n    GREEN_NEW_ENERGY(\"bd2-green-new-energy\", '\\ued80'),\n    GRID_FOUR(\"bd2-grid-four\", '\\ued81'),\n    GRID_NINE(\"bd2-grid-nine\", '\\ued82'),\n    GRID_SIXTEEN(\"bd2-grid-sixteen\", '\\ued83'),\n    GRID_THREE(\"bd2-grid-three\", '\\ued84'),\n    GRID_TWO(\"bd2-grid-two\", '\\ued85'),\n    GRIMACING_FACE(\"bd2-grimacing-face\", '\\ued86'),\n    GRINNING_FACE(\"bd2-grinning-face\", '\\ued87'),\n    GRINNING_FACE_WITH_OPEN_MOUTH(\"bd2-grinning-face-with-open-mouth\", '\\ued88'),\n    GRINNING_FACE_WITH_SQUINTING_EYES(\"bd2-grinning-face-with-squinting-eyes\", '\\ued89'),\n    GRINNING_FACE_WITH_TIGHTLY_CLOSED_EYES(\"bd2-grinning-face-with-tightly-closed-eyes\", '\\ued8a'),\n    GRINNING_FACE_WITH_TIGHTLY_CLOSED_EYES_OPEN_MOUTH(\"bd2-grinning-face-with-tightly-closed-eyes-open-mouth\", '\\ued8b'),\n    GROUP(\"bd2-group\", '\\ued8c'),\n    GUIDE_BOARD(\"bd2-guide-board\", '\\ued8d'),\n    GYMNASTICS(\"bd2-gymnastics\", '\\ued8e'),\n    GYMNASTICS_ONE(\"bd2-gymnastics-one\", '\\ued8f'),\n    H(\"bd2-h\", '\\ued90'),\n    H1(\"bd2-h1\", '\\ued91'),\n    H2(\"bd2-h2\", '\\ued92'),\n    H3(\"bd2-h3\", '\\ued93'),\n    HAIR_BRUSH(\"bd2-hair-brush\", '\\ued94'),\n    HAIR_CLIP(\"bd2-hair-clip\", '\\ued95'),\n    HAIR_DRYER(\"bd2-hair-dryer\", '\\ued96'),\n    HAIR_DRYER_ONE(\"bd2-hair-dryer-one\", '\\ued97'),\n    HALO(\"bd2-halo\", '\\ued98'),\n    HAMBURGER(\"bd2-hamburger\", '\\ued99'),\n    HAMBURGER_BUTTON(\"bd2-hamburger-button\", '\\ued9a'),\n    HAMBURGER_ONE(\"bd2-hamburger-one\", '\\ued9b'),\n    HAMMER_AND_ANVIL(\"bd2-hammer-and-anvil\", '\\ued9c'),\n    HANDBAG(\"bd2-handbag\", '\\ued9d'),\n    HAND_CREAM(\"bd2-hand-cream\", '\\ued9e'),\n    HAND_DOWN(\"bd2-hand-down\", '\\ued9f'),\n    HAND_DRAG(\"bd2-hand-drag\", '\\ueda0'),\n    HANDHELD(\"bd2-handheld\", '\\ueda1'),\n    HANDLE_A(\"bd2-handle-a\", '\\ueda2'),\n    HANDLE_B(\"bd2-handle-b\", '\\ueda3'),\n    HANDLE_C(\"bd2-handle-c\", '\\ueda4'),\n    HANDLE_DOWN(\"bd2-handle-down\", '\\ueda5'),\n    HAND_LEFT(\"bd2-hand-left\", '\\ueda6'),\n    HANDLE_LEFT(\"bd2-handle-left\", '\\ueda7'),\n    HANDLE_RIGHT(\"bd2-handle-right\", '\\ueda8'),\n    HANDLE_ROUND(\"bd2-handle-round\", '\\ueda9'),\n    HANDLE_SQUARE(\"bd2-handle-square\", '\\uedaa'),\n    HANDLE_TRIANGLE(\"bd2-handle-triangle\", '\\uedab'),\n    HANDLE_UP(\"bd2-handle-up\", '\\uedac'),\n    HANDLE_X(\"bd2-handle-x\", '\\uedad'),\n    HANDLE_Y(\"bd2-handle-y\", '\\uedae'),\n    HANDLE_Z(\"bd2-handle-z\", '\\uedaf'),\n    HAND_PAINTED_PLATE(\"bd2-hand-painted-plate\", '\\uedb0'),\n    HAND_RIGHT(\"bd2-hand-right\", '\\uedb1'),\n    HANDS(\"bd2-hands\", '\\uedb2'),\n    HAND_UP(\"bd2-hand-up\", '\\uedb3'),\n    HANDWASHING(\"bd2-handwashing\", '\\uedb4'),\n    HANDWASHING_FLUID(\"bd2-handwashing-fluid\", '\\uedb5'),\n    HANFU_CHINESE_STYLE(\"bd2-hanfu-chinese-style\", '\\uedb6'),\n    HANGER(\"bd2-hanger\", '\\uedb7'),\n    HANGER_ONE(\"bd2-hanger-one\", '\\uedb8'),\n    HANGER_TWO(\"bd2-hanger-two\", '\\uedb9'),\n    HARD_DISK(\"bd2-hard-disk\", '\\uedba'),\n    HARD_DISK_ONE(\"bd2-hard-disk-one\", '\\uedbb'),\n    HARM(\"bd2-harm\", '\\uedbc'),\n    HASHTAG_KEY(\"bd2-hashtag-key\", '\\uedbd'),\n    HAT(\"bd2-hat\", '\\uedbe'),\n    HDD(\"bd2-hdd\", '\\uedbf'),\n    HDMI_CABLE(\"bd2-hdmi-cable\", '\\uedc0'),\n    HDMI_CONNECTOR(\"bd2-hdmi-connector\", '\\uedc1'),\n    HEADPHONE_SOUND(\"bd2-headphone-sound\", '\\uedc2'),\n    HEADSET(\"bd2-headset\", '\\uedc3'),\n    HEADSET_ONE(\"bd2-headset-one\", '\\uedc4'),\n    HEADSET_TWO(\"bd2-headset-two\", '\\uedc5'),\n    HEADWEAR(\"bd2-headwear\", '\\uedc6'),\n    HEALTH(\"bd2-health\", '\\uedc7'),\n    HEALTH_PRODUCTS(\"bd2-health-products\", '\\uedc8'),\n    HEALTHY_RECOGNITION(\"bd2-healthy-recognition\", '\\uedc9'),\n    HEART(\"bd2-heart\", '\\uedca'),\n    HEART_BALLON(\"bd2-heart-ballon\", '\\uedcb'),\n    HEARTBEAT(\"bd2-heartbeat\", '\\uedcc'),\n    HEART_RATE(\"bd2-heart-rate\", '\\uedcd'),\n    HEATER_RESISTOR(\"bd2-heater-resistor\", '\\uedce'),\n    HEAVY_METAL(\"bd2-heavy-metal\", '\\uedcf'),\n    HEAVY_RAIN(\"bd2-heavy-rain\", '\\uedd0'),\n    HEAVY_WIND(\"bd2-heavy-wind\", '\\uedd1'),\n    HELMET(\"bd2-helmet\", '\\uedd2'),\n    HELMET_ONE(\"bd2-helmet-one\", '\\uedd3'),\n    HELP(\"bd2-help\", '\\uedd4'),\n    HELPCENTER(\"bd2-helpcenter\", '\\uedd5'),\n    HEXAGONAL(\"bd2-hexagonal\", '\\uedd6'),\n    HEXAGON_ONE(\"bd2-hexagon-one\", '\\uedd7'),\n    HEXAGON_STRIP(\"bd2-hexagon-strip\", '\\uedd8'),\n    HI(\"bd2-hi\", '\\uedd9'),\n    HIGH_HEELED_SHOES(\"bd2-high-heeled-shoes\", '\\uedda'),\n    HIGH_LIGHT(\"bd2-high-light\", '\\ueddb'),\n    HIGH_SPEED_RAIL(\"bd2-high-speed-rail\", '\\ueddc'),\n    HIPPO(\"bd2-hippo\", '\\ueddd'),\n    HISTOGRAM(\"bd2-histogram\", '\\uedde'),\n    HISTORY(\"bd2-history\", '\\ueddf'),\n    HISTORY_QUERY(\"bd2-history-query\", '\\uede0'),\n    HOCKEY(\"bd2-hockey\", '\\uede1'),\n    HOLD(\"bd2-hold\", '\\uede2'),\n    HOLDING_HANDS(\"bd2-holding-hands\", '\\uede3'),\n    HOLD_INTERFACE(\"bd2-hold-interface\", '\\uede4'),\n    HOLD_SEEDS(\"bd2-hold-seeds\", '\\uede5'),\n    HOLY_SWORD(\"bd2-holy-sword\", '\\uede6'),\n    HOME(\"bd2-home\", '\\uede7'),\n    HOMESTAY(\"bd2-homestay\", '\\uede8'),\n    HOME_TWO(\"bd2-home-two\", '\\uede9'),\n    HONEY(\"bd2-honey\", '\\uedea'),\n    HONEY_ONE(\"bd2-honey-one\", '\\uedeb'),\n    HORIZONTALLY_CENTERED(\"bd2-horizontally-centered\", '\\uedec'),\n    HORIZONTAL_SPACING_BETWEEN_ITEMS(\"bd2-horizontal-spacing-between-items\", '\\ueded'),\n    HORIZONTAL_TIDY_UP(\"bd2-horizontal-tidy-up\", '\\uedee'),\n    HORSE_ZODIAC(\"bd2-horse-zodiac\", '\\uedef'),\n    HOSPITAL(\"bd2-hospital\", '\\uedf0'),\n    HOSPITAL_BED(\"bd2-hospital-bed\", '\\uedf1'),\n    HOSPITAL_FOUR(\"bd2-hospital-four\", '\\uedf2'),\n    HOSPITAL_THREE(\"bd2-hospital-three\", '\\uedf3'),\n    HOSPITAL_TWO(\"bd2-hospital-two\", '\\uedf4'),\n    HOT_AIR_BALLOON(\"bd2-hot-air-balloon\", '\\uedf5'),\n    HOTEL(\"bd2-hotel\", '\\uedf6'),\n    HOTEL_DO_NOT_CLEAN(\"bd2-hotel-do-not-clean\", '\\uedf7'),\n    HOTEL_PLEASE_CLEAN(\"bd2-hotel-please-clean\", '\\uedf8'),\n    HOT_POT(\"bd2-hot-pot\", '\\uedf9'),\n    HOT_POT_ONE(\"bd2-hot-pot-one\", '\\uedfa'),\n    HOURGLASS(\"bd2-hourglass\", '\\uedfb'),\n    HOURGLASS_FULL(\"bd2-hourglass-full\", '\\uedfc'),\n    HOURGLASS_NULL(\"bd2-hourglass-null\", '\\uedfd'),\n    HTML_FIVE(\"bd2-html-five\", '\\uedfe'),\n    HUNTING_GEAR(\"bd2-hunting-gear\", '\\uedff'),\n    HUOSHANZHIBO(\"bd2-huoshanzhibo\", '\\uee00'),\n    ICECREAM(\"bd2-icecream\", '\\uee01'),\n    ICECREAM_FIVE(\"bd2-icecream-five\", '\\uee02'),\n    ICECREAM_FOUR(\"bd2-icecream-four\", '\\uee03'),\n    ICECREAM_ONE(\"bd2-icecream-one\", '\\uee04'),\n    ICECREAM_THREE(\"bd2-icecream-three\", '\\uee05'),\n    ICECREAM_TWO(\"bd2-icecream-two\", '\\uee06'),\n    ID_CARD(\"bd2-id-card\", '\\uee07'),\n    ID_CARD_H(\"bd2-id-card-h\", '\\uee08'),\n    ID_CARD_V(\"bd2-id-card-v\", '\\uee09'),\n    I_MAC(\"bd2-i-mac\", '\\uee0a'),\n    IMAGE_FILES(\"bd2-image-files\", '\\uee0b'),\n    IMBALANCE(\"bd2-imbalance\", '\\uee0c'),\n    IMPORT_AND_EXPORT(\"bd2-import-and-export\", '\\uee0d'),\n    INBOX(\"bd2-inbox\", '\\uee0e'),\n    INBOX_DOWNLOAD_R(\"bd2-inbox-download-r\", '\\uee0f'),\n    INBOX_IN(\"bd2-inbox-in\", '\\uee10'),\n    INBOX_OUT(\"bd2-inbox-out\", '\\uee11'),\n    INBOX_R(\"bd2-inbox-r\", '\\uee12'),\n    INBOX_SUCCESS(\"bd2-inbox-success\", '\\uee13'),\n    INBOX_SUCCESS_R(\"bd2-inbox-success-r\", '\\uee14'),\n    INBOX_UPLOAD_R(\"bd2-inbox-upload-r\", '\\uee15'),\n    INCLUSIVE_GATEWAY(\"bd2-inclusive-gateway\", '\\uee16'),\n    INCOME(\"bd2-income\", '\\uee17'),\n    INCOME_ONE(\"bd2-income-one\", '\\uee18'),\n    INCOMING(\"bd2-incoming\", '\\uee19'),\n    INCREASE(\"bd2-increase\", '\\uee1a'),\n    INCREASE_THE_SCALE(\"bd2-increase-the-scale\", '\\uee1b'),\n    INDENT_LEFT(\"bd2-indent-left\", '\\uee1c'),\n    INDENT_RIGHT(\"bd2-indent-right\", '\\uee1d'),\n    INDEX_FINGER(\"bd2-index-finger\", '\\uee1e'),\n    INDUCTION_LOCK(\"bd2-induction-lock\", '\\uee1f'),\n    INDUSTRIAL_SCALES(\"bd2-industrial-scales\", '\\uee20'),\n    IN_FLIGHT(\"bd2-in-flight\", '\\uee21'),\n    INFO(\"bd2-info\", '\\uee22'),\n    INFUSION(\"bd2-infusion\", '\\uee23'),\n    INJECTION(\"bd2-injection\", '\\uee24'),\n    INLINE(\"bd2-inline\", '\\uee25'),\n    INNER_SHADOW_BOTTOM_LEFT(\"bd2-inner-shadow-bottom-left\", '\\uee26'),\n    INNER_SHADOW_BOTTOM_RIGHT(\"bd2-inner-shadow-bottom-right\", '\\uee27'),\n    INNER_SHADOW_DOWN(\"bd2-inner-shadow-down\", '\\uee28'),\n    INNER_SHADOW_LEFT(\"bd2-inner-shadow-left\", '\\uee29'),\n    INNER_SHADOW_RIGHT(\"bd2-inner-shadow-right\", '\\uee2a'),\n    INNER_SHADOW_TOP_LEFT(\"bd2-inner-shadow-top-left\", '\\uee2b'),\n    INNER_SHADOW_TOP_RIGHT(\"bd2-inner-shadow-top-right\", '\\uee2c'),\n    INNER_SHADOW_UP(\"bd2-inner-shadow-up\", '\\uee2d'),\n    INSERT_CARD(\"bd2-insert-card\", '\\uee2e'),\n    INSERT_TABLE(\"bd2-insert-table\", '\\uee2f'),\n    INSPECTION(\"bd2-inspection\", '\\uee30'),\n    INSTAGRAM(\"bd2-instagram\", '\\uee31'),\n    INSTAGRAM_ONE(\"bd2-instagram-one\", '\\uee32'),\n    INSTALL(\"bd2-install\", '\\uee33'),\n    INSTRUCTION(\"bd2-instruction\", '\\uee34'),\n    INTERCOM(\"bd2-intercom\", '\\uee35'),\n    INTERMEDIATE_MODE(\"bd2-intermediate-mode\", '\\uee36'),\n    INTERNAL_DATA(\"bd2-internal-data\", '\\uee37'),\n    INTERNAL_EXPANSION(\"bd2-internal-expansion\", '\\uee38'),\n    INTERNAL_REDUCTION(\"bd2-internal-reduction\", '\\uee39'),\n    INTERNAL_TRANSMISSION(\"bd2-internal-transmission\", '\\uee3a'),\n    INTERNATIONAL(\"bd2-international\", '\\uee3b'),\n    INTERSECTION(\"bd2-intersection\", '\\uee3c'),\n    INTERSECT_SELECTION(\"bd2-intersect-selection\", '\\uee3d'),\n    INVALID_FILES(\"bd2-invalid-files\", '\\uee3e'),\n    INVERT_CAMERA(\"bd2-invert-camera\", '\\uee3f'),\n    INVERT_LEFT(\"bd2-invert-left\", '\\uee40'),\n    INVERT_RIGHT(\"bd2-invert-right\", '\\uee41'),\n    IOS_FACE_RECOGNITION(\"bd2-ios-face-recognition\", '\\uee42'),\n    IPAD(\"bd2-ipad\", '\\uee43'),\n    IPAD_ONE(\"bd2-ipad-one\", '\\uee44'),\n    IPHONE(\"bd2-iphone\", '\\uee45'),\n    IPO(\"bd2-ipo\", '\\uee46'),\n    IRON(\"bd2-iron\", '\\uee47'),\n    IRON_DISABLE(\"bd2-iron-disable\", '\\uee48'),\n    IRON_THREE(\"bd2-iron-three\", '\\uee49'),\n    IRON_TWO(\"bd2-iron-two\", '\\uee4a'),\n    IWATCH(\"bd2-iwatch\", '\\uee4b'),\n    IWATCH_ONE(\"bd2-iwatch-one\", '\\uee4c'),\n    IWATCH_TWO(\"bd2-iwatch-two\", '\\uee4d'),\n    JEWELRY(\"bd2-jewelry\", '\\uee4e'),\n    JINRITOUTIAO(\"bd2-jinritoutiao\", '\\uee4f'),\n    JOURNEY(\"bd2-journey\", '\\uee50'),\n    JOYSTICK(\"bd2-joystick\", '\\uee51'),\n    JUICE(\"bd2-juice\", '\\uee52'),\n    JUMP(\"bd2-jump\", '\\uee53'),\n    KAGI_MAP(\"bd2-kagi-map\", '\\uee54'),\n    KETTLE(\"bd2-kettle\", '\\uee55'),\n    KETTLE_ONE(\"bd2-kettle-one\", '\\uee56'),\n    KEY(\"bd2-key\", '\\uee57'),\n    KEYBOARD(\"bd2-keyboard\", '\\uee58'),\n    KEYBOARD_ONE(\"bd2-keyboard-one\", '\\uee59'),\n    KEYHOLE(\"bd2-keyhole\", '\\uee5a'),\n    KEYLINE(\"bd2-keyline\", '\\uee5b'),\n    KEY_ONE(\"bd2-key-one\", '\\uee5c'),\n    KEY_TWO(\"bd2-key-two\", '\\uee5d'),\n    KITCHEN_KNIFE(\"bd2-kitchen-knife\", '\\uee5e'),\n    KNIFE_FORK(\"bd2-knife-fork\", '\\uee5f'),\n    KOALA_BEAR(\"bd2-koala-bear\", '\\uee60'),\n    KUNGFU(\"bd2-kungfu\", '\\uee61'),\n    LABEL(\"bd2-label\", '\\uee62'),\n    LADDER(\"bd2-ladder\", '\\uee63'),\n    LADDER_ONE(\"bd2-ladder-one\", '\\uee64'),\n    LAMP(\"bd2-lamp\", '\\uee65'),\n    LANDING(\"bd2-landing\", '\\uee66'),\n    LANDSCAPE(\"bd2-landscape\", '\\uee67'),\n    LAND_SURVEYING(\"bd2-land-surveying\", '\\uee68'),\n    LAPTOP(\"bd2-laptop\", '\\uee69'),\n    LAPTOP_COMPUTER(\"bd2-laptop-computer\", '\\uee6a'),\n    LAPTOP_ONE(\"bd2-laptop-one\", '\\uee6b'),\n    LARK(\"bd2-lark\", '\\uee6c'),\n    LARK_ONE(\"bd2-lark-one\", '\\uee6d'),\n    LATTICE_PATTERN(\"bd2-lattice-pattern\", '\\uee6e'),\n    LAYERS(\"bd2-layers\", '\\uee6f'),\n    LAYOUT_FIVE(\"bd2-layout-five\", '\\uee70'),\n    LAYOUT_FOUR(\"bd2-layout-four\", '\\uee71'),\n    LAYOUT_ONE(\"bd2-layout-one\", '\\uee72'),\n    LAYOUT_THREE(\"bd2-layout-three\", '\\uee73'),\n    LAYOUT_TWO(\"bd2-layout-two\", '\\uee74'),\n    LEAF(\"bd2-leaf\", '\\uee75'),\n    LEAVES(\"bd2-leaves\", '\\uee76'),\n    LEAVES_ONE(\"bd2-leaves-one\", '\\uee77'),\n    LEAVES_TWO(\"bd2-leaves-two\", '\\uee78'),\n    LED_DIODE(\"bd2-led-diode\", '\\uee79'),\n    LEFT(\"bd2-left\", '\\uee7a'),\n    LEFT_ALIGNMENT(\"bd2-left-alignment\", '\\uee7b'),\n    LEFT_AND_RIGHT_BRANCH(\"bd2-left-and-right-branch\", '\\uee7c'),\n    LEFT_BAR(\"bd2-left-bar\", '\\uee7d'),\n    LEFT_BRANCH(\"bd2-left-branch\", '\\uee7e'),\n    LEFT_C(\"bd2-left-c\", '\\uee7f'),\n    LEFT_EXPAND(\"bd2-left-expand\", '\\uee80'),\n    LEFT_ONE(\"bd2-left-one\", '\\uee81'),\n    LEFT_SMALL(\"bd2-left-small\", '\\uee82'),\n    LEFT_SMALL_DOWN(\"bd2-left-small-down\", '\\uee83'),\n    LEFT_SMALL_UP(\"bd2-left-small-up\", '\\uee84'),\n    LEFT_SQUARE(\"bd2-left-square\", '\\uee85'),\n    LEFT_TWO(\"bd2-left-two\", '\\uee86'),\n    LEMON(\"bd2-lemon\", '\\uee87'),\n    LENS_ALIGNMENT(\"bd2-lens-alignment\", '\\uee88'),\n    LEO(\"bd2-leo\", '\\uee89'),\n    LEVEL(\"bd2-level\", '\\uee8a'),\n    LEVEL_ADJUSTMENT(\"bd2-level-adjustment\", '\\uee8b'),\n    LEVEL_EIGHT_TITLE(\"bd2-level-eight-title\", '\\uee8c'),\n    LEVEL_FIVE_TITLE(\"bd2-level-five-title\", '\\uee8d'),\n    LEVEL_FOUR_TITLE(\"bd2-level-four-title\", '\\uee8e'),\n    LEVEL_NINE_TITLE(\"bd2-level-nine-title\", '\\uee8f'),\n    LEVEL_SEVEN_TITLE(\"bd2-level-seven-title\", '\\uee90'),\n    LEVEL_SIX_TITLE(\"bd2-level-six-title\", '\\uee91'),\n    LIBRA(\"bd2-libra\", '\\uee92'),\n    LIFEBUOY(\"bd2-lifebuoy\", '\\uee93'),\n    LIGHT(\"bd2-light\", '\\uee94'),\n    LIGHT_HOUSE(\"bd2-light-house\", '\\uee95'),\n    LIGHT_MEMBER(\"bd2-light-member\", '\\uee96'),\n    LIGHTNING(\"bd2-lightning\", '\\uee97'),\n    LIGHT_RAIN(\"bd2-light-rain\", '\\uee98'),\n    LIKE(\"bd2-like\", '\\uee99'),\n    LINCOLN(\"bd2-lincoln\", '\\uee9a'),\n    LINK(\"bd2-link\", '\\uee9b'),\n    LINK_BREAK(\"bd2-link-break\", '\\uee9c'),\n    LINK_CLOUD(\"bd2-link-cloud\", '\\uee9d'),\n    LINK_CLOUD_FAILD(\"bd2-link-cloud-faild\", '\\uee9e'),\n    LINK_CLOUD_SUCESS(\"bd2-link-cloud-sucess\", '\\uee9f'),\n    LINK_FOUR(\"bd2-link-four\", '\\ueea0'),\n    LINK_IN(\"bd2-link-in\", '\\ueea1'),\n    LINK_INTERRUPT(\"bd2-link-interrupt\", '\\ueea2'),\n    LINK_LEFT(\"bd2-link-left\", '\\ueea3'),\n    LINK_ONE(\"bd2-link-one\", '\\ueea4'),\n    LINK_OUT(\"bd2-link-out\", '\\ueea5'),\n    LINK_RIGHT(\"bd2-link-right\", '\\ueea6'),\n    LINK_THREE(\"bd2-link-three\", '\\ueea7'),\n    LINK_TWO(\"bd2-link-two\", '\\ueea8'),\n    LIP_GLOSS(\"bd2-lip-gloss\", '\\ueea9'),\n    LIPSTICK(\"bd2-lipstick\", '\\ueeaa'),\n    LIPSTICK_ONE(\"bd2-lipstick-one\", '\\ueeab'),\n    LIP_TATTOO(\"bd2-lip-tattoo\", '\\ueeac'),\n    LIQUEUR(\"bd2-liqueur\", '\\ueead'),\n    LIST(\"bd2-list\", '\\ueeae'),\n    LIST_ADD(\"bd2-list-add\", '\\ueeaf'),\n    LIST_ALPHABET(\"bd2-list-alphabet\", '\\ueeb0'),\n    LIST_BOTTOM(\"bd2-list-bottom\", '\\ueeb1'),\n    LIST_CHECKBOX(\"bd2-list-checkbox\", '\\ueeb2'),\n    LIST_FAIL(\"bd2-list-fail\", '\\ueeb3'),\n    LIST_MIDDLE(\"bd2-list-middle\", '\\ueeb4'),\n    LIST_NUMBERS(\"bd2-list-numbers\", '\\ueeb5'),\n    LIST_ONE(\"bd2-list-one\", '\\ueeb6'),\n    LIST_SUCCESS(\"bd2-list-success\", '\\ueeb7'),\n    LIST_TOP(\"bd2-list-top\", '\\ueeb8'),\n    LIST_TWO(\"bd2-list-two\", '\\ueeb9'),\n    LIST_VIEW(\"bd2-list-view\", '\\ueeba'),\n    LOADING(\"bd2-loading\", '\\ueebb'),\n    LOADING_FOUR(\"bd2-loading-four\", '\\ueebc'),\n    LOADING_ONE(\"bd2-loading-one\", '\\ueebd'),\n    LOADING_THREE(\"bd2-loading-three\", '\\ueebe'),\n    LOADING_TWO(\"bd2-loading-two\", '\\ueebf'),\n    LOCAL(\"bd2-local\", '\\ueec0'),\n    LOCAL_PIN(\"bd2-local-pin\", '\\ueec1'),\n    LOCAL_TWO(\"bd2-local-two\", '\\ueec2'),\n    LOCK(\"bd2-lock\", '\\ueec3'),\n    LOCKING_COMPUTER(\"bd2-locking-computer\", '\\ueec4'),\n    LOCKING_LAPTOP(\"bd2-locking-laptop\", '\\ueec5'),\n    LOCKING_PICTURE(\"bd2-locking-picture\", '\\ueec6'),\n    LOCKING_WEB(\"bd2-locking-web\", '\\ueec7'),\n    LOCK_ONE(\"bd2-lock-one\", '\\ueec8'),\n    LOG(\"bd2-log\", '\\ueec9'),\n    LOGIN(\"bd2-login\", '\\ueeca'),\n    LOGOUT(\"bd2-logout\", '\\ueecb'),\n    LOLLIPOP(\"bd2-lollipop\", '\\ueecc'),\n    LOOP_ONCE(\"bd2-loop-once\", '\\ueecd'),\n    LOTION(\"bd2-lotion\", '\\ueece'),\n    LOTUS(\"bd2-lotus\", '\\ueecf'),\n    LOUDLY_CRYING_FACE(\"bd2-loudly-crying-face\", '\\ueed0'),\n    LOUDLY_CRYING_FACE_WHIT_OPEN_MOUTH(\"bd2-loudly-crying-face-whit-open-mouth\", '\\ueed1'),\n    LOVE_AND_HELP(\"bd2-love-and-help\", '\\ueed2'),\n    LOWER_BRANCH(\"bd2-lower-branch\", '\\ueed3'),\n    LUGGAGE(\"bd2-luggage\", '\\ueed4'),\n    LUMINOUS(\"bd2-luminous\", '\\ueed5'),\n    LUNG(\"bd2-lung\", '\\ueed6');\n\n    public static BytedanceIconsRegularAL findByDescription(String description) {\n        for (BytedanceIconsRegularAL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    BytedanceIconsRegularAL(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsRegularALIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author LeeWyatt\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BytedanceIconsRegularALIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/bytedance/1.3.0/fonts/Bytedance-IconPack-Regular.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bd2-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return BytedanceIconsRegularAL.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Bytedance-IconPack-Regular\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsRegularALIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author LeeWyatt\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class BytedanceIconsRegularALIkonProvider implements IkonProvider<BytedanceIconsRegularAL> {\n    @Override\n    public Class<BytedanceIconsRegularAL> getIkon() {\n        return BytedanceIconsRegularAL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsRegularMZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author LeeWyatt\n */\npublic enum BytedanceIconsRegularMZ implements Ikon {\n\n    MACADAMIA_NUT(\"bd2-macadamia-nut\", '\\ueed7'),\n    MAC_FINDER(\"bd2-mac-finder\", '\\ueed8'),\n    MAGIC(\"bd2-magic\", '\\ueed9'),\n    MAGIC_HAT(\"bd2-magic-hat\", '\\ueeda'),\n    MAGIC_WAND(\"bd2-magic-wand\", '\\ueedb'),\n    MAGNET(\"bd2-magnet\", '\\ueedc'),\n    MAIL(\"bd2-mail\", '\\ueedd'),\n    MAIL_DOWNLOAD(\"bd2-mail-download\", '\\ueede'),\n    MAIL_EDIT(\"bd2-mail-edit\", '\\ueedf'),\n    MAILL_ONE(\"bd2-maill-one\", '\\ueee0'),\n    MAIL_OPEN(\"bd2-mail-open\", '\\ueee1'),\n    MAIL_PACKAGE(\"bd2-mail-package\", '\\ueee2'),\n    MAIL_REVIEW(\"bd2-mail-review\", '\\ueee3'),\n    MAIL_UNPACKING(\"bd2-mail-unpacking\", '\\ueee4'),\n    MAKEUPS(\"bd2-makeups\", '\\ueee5'),\n    MALE(\"bd2-male\", '\\ueee6'),\n    MALL_BAG(\"bd2-mall-bag\", '\\ueee7'),\n    MANUAL_GEAR(\"bd2-manual-gear\", '\\ueee8'),\n    MANY_TO_MANY(\"bd2-many-to-many\", '\\ueee9'),\n    MAP_DISTANCE(\"bd2-map-distance\", '\\ueeea'),\n    MAP_DRAW(\"bd2-map-draw\", '\\ueeeb'),\n    MAP_ROAD(\"bd2-map-road\", '\\ueeec'),\n    MAP_ROAD_TWO(\"bd2-map-road-two\", '\\ueeed'),\n    MAP_TWO(\"bd2-map-two\", '\\ueeee'),\n    MARGIN(\"bd2-margin\", '\\ueeef'),\n    MARGIN_ONE(\"bd2-margin-one\", '\\ueef0'),\n    MARK(\"bd2-mark\", '\\ueef1'),\n    MARKET(\"bd2-market\", '\\ueef2'),\n    MARKET_ANALYSIS(\"bd2-market-analysis\", '\\ueef3'),\n    MASCARA(\"bd2-mascara\", '\\ueef4'),\n    MASK(\"bd2-mask\", '\\ueef5'),\n    MASK_ONE(\"bd2-mask-one\", '\\ueef6'),\n    MASK_TWO(\"bd2-mask-two\", '\\ueef7'),\n    MASLOW_PYRAMIDS(\"bd2-maslow-pyramids\", '\\ueef8'),\n    MASSAGE_CHAIR(\"bd2-massage-chair\", '\\ueef9'),\n    MASSAGE_CHAIR_ONE(\"bd2-massage-chair-one\", '\\ueefa'),\n    MASSAGE_TABLE(\"bd2-massage-table\", '\\ueefb'),\n    MASTER(\"bd2-master\", '\\ueefc'),\n    MATERIAL(\"bd2-material\", '\\ueefd'),\n    MATERIAL_THREE(\"bd2-material-three\", '\\ueefe'),\n    MATERIAL_TWO(\"bd2-material-two\", '\\ueeff'),\n    MAXIMUM(\"bd2-maximum\", '\\uef00'),\n    MAYA(\"bd2-maya\", '\\uef01'),\n    MAYURA_GESTURE(\"bd2-mayura-gesture\", '\\uef02'),\n    ME(\"bd2-me\", '\\uef03'),\n    MEASURING_CUP(\"bd2-measuring-cup\", '\\uef04'),\n    MEDAL_ONE(\"bd2-medal-one\", '\\uef05'),\n    MEDIAEDITOR(\"bd2-mediaeditor\", '\\uef06'),\n    MEDICAL_BOX(\"bd2-medical-box\", '\\uef07'),\n    MEDICAL_FILES(\"bd2-medical-files\", '\\uef08'),\n    MEDICAL_MARK(\"bd2-medical-mark\", '\\uef09'),\n    MEDICATION_TIME(\"bd2-medication-time\", '\\uef0a'),\n    MEDICINE_BOTTLE(\"bd2-medicine-bottle\", '\\uef0b'),\n    MEDICINE_BOTTLE_ONE(\"bd2-medicine-bottle-one\", '\\uef0c'),\n    MEDICINE_CHEST(\"bd2-medicine-chest\", '\\uef0d'),\n    MEMORY(\"bd2-memory\", '\\uef0e'),\n    MEMORY_CARD(\"bd2-memory-card\", '\\uef0f'),\n    MEMORY_CARD_ONE(\"bd2-memory-card-one\", '\\uef10'),\n    MEMORY_ONE(\"bd2-memory-one\", '\\uef11'),\n    MEN_JACKET(\"bd2-men-jacket\", '\\uef12'),\n    MENU_FOLD(\"bd2-menu-fold\", '\\uef13'),\n    MENU_FOLD_ONE(\"bd2-menu-fold-one\", '\\uef14'),\n    MENU_UNFOLD(\"bd2-menu-unfold\", '\\uef15'),\n    MENU_UNFOLD_ONE(\"bd2-menu-unfold-one\", '\\uef16'),\n    MERGE(\"bd2-merge\", '\\uef17'),\n    MERGE_CELLS(\"bd2-merge-cells\", '\\uef18'),\n    MESSAGE(\"bd2-message\", '\\uef19'),\n    MESSAGE_EMOJI(\"bd2-message-emoji\", '\\uef1a'),\n    MESSAGE_FAILED(\"bd2-message-failed\", '\\uef1b'),\n    MESSAGE_ONE(\"bd2-message-one\", '\\uef1c'),\n    MESSAGE_PRIVACY(\"bd2-message-privacy\", '\\uef1d'),\n    MESSAGES(\"bd2-messages\", '\\uef1e'),\n    MESSAGE_SEARCH(\"bd2-message-search\", '\\uef1f'),\n    MESSAGE_SECURITY(\"bd2-message-security\", '\\uef20'),\n    MESSAGE_SENT(\"bd2-message-sent\", '\\uef21'),\n    MESSAGES_ONE(\"bd2-messages-one\", '\\uef22'),\n    MESSAGE_SUCCESS(\"bd2-message-success\", '\\uef23'),\n    MESSAGE_UNREAD(\"bd2-message-unread\", '\\uef24'),\n    MICROPHONE(\"bd2-microphone\", '\\uef25'),\n    MICROPHONE_ONE(\"bd2-microphone-one\", '\\uef26'),\n    MICROSCOPE(\"bd2-microscope\", '\\uef27'),\n    MICROSCOPE_ONE(\"bd2-microscope-one\", '\\uef28'),\n    MICRO_SD(\"bd2-micro-sd\", '\\uef29'),\n    MICRO_SLR_CAMERA(\"bd2-micro-slr-camera\", '\\uef2a'),\n    MICROWAVE_OVEN(\"bd2-microwave-oven\", '\\uef2b'),\n    MICROWAVES(\"bd2-microwaves\", '\\uef2c'),\n    MIDDLE_FINGER(\"bd2-middle-finger\", '\\uef2d'),\n    MILK(\"bd2-milk\", '\\uef2e'),\n    MILK_ONE(\"bd2-milk-one\", '\\uef2f'),\n    MIN(\"bd2-min\", '\\uef30'),\n    MINDMAP_LIST(\"bd2-mindmap-list\", '\\uef31'),\n    MINDMAP_MAP(\"bd2-mindmap-map\", '\\uef32'),\n    MIND_MAPPING(\"bd2-mind-mapping\", '\\uef33'),\n    MINI_SD_CARD(\"bd2-mini-sd-card\", '\\uef34'),\n    MINUS(\"bd2-minus\", '\\uef35'),\n    MINUS_THE_BOTTOM(\"bd2-minus-the-bottom\", '\\uef36'),\n    MINUS_THE_TOP(\"bd2-minus-the-top\", '\\uef37'),\n    MIRROR(\"bd2-mirror\", '\\uef38'),\n    MIRROR_ONE(\"bd2-mirror-one\", '\\uef39'),\n    MIRROR_TWO(\"bd2-mirror-two\", '\\uef3a'),\n    MISALIGNED_SEMICIRCLE(\"bd2-misaligned-semicircle\", '\\uef3b'),\n    MITSUBISHI(\"bd2-mitsubishi\", '\\uef3c'),\n    MODIFY(\"bd2-modify\", '\\uef3d'),\n    MODIFY_TWO(\"bd2-modify-two\", '\\uef3e'),\n    MONITOR(\"bd2-monitor\", '\\uef3f'),\n    MONITOR_CAMERA(\"bd2-monitor-camera\", '\\uef40'),\n    MONITOR_OFF(\"bd2-monitor-off\", '\\uef41'),\n    MONITOR_ONE(\"bd2-monitor-one\", '\\uef42'),\n    MONITOR_TWO(\"bd2-monitor-two\", '\\uef43'),\n    MONKEY(\"bd2-monkey\", '\\uef44'),\n    MONKEY_ZODIAC(\"bd2-monkey-zodiac\", '\\uef45'),\n    MONUMENT_ONE(\"bd2-monument-one\", '\\uef46'),\n    MONUMENT_TWO(\"bd2-monument-two\", '\\uef47'),\n    MOON(\"bd2-moon\", '\\uef48'),\n    MORE(\"bd2-more\", '\\uef49'),\n    MORE_APP(\"bd2-more-app\", '\\uef4a'),\n    MORE_FOUR(\"bd2-more-four\", '\\uef4b'),\n    MORE_ONE(\"bd2-more-one\", '\\uef4c'),\n    MORE_THREE(\"bd2-more-three\", '\\uef4d'),\n    MORE_TWO(\"bd2-more-two\", '\\uef4e'),\n    MOSAIC(\"bd2-mosaic\", '\\uef4f'),\n    MOUNTAIN(\"bd2-mountain\", '\\uef50'),\n    MOUNTED(\"bd2-mounted\", '\\uef51'),\n    MOUSE(\"bd2-mouse\", '\\uef52'),\n    MOUSE_ONE(\"bd2-mouse-one\", '\\uef53'),\n    MOUSE_ZODIAC(\"bd2-mouse-zodiac\", '\\uef54'),\n    MOUTH(\"bd2-mouth\", '\\uef55'),\n    MOVE(\"bd2-move\", '\\uef56'),\n    MOVE_IN(\"bd2-move-in\", '\\uef57'),\n    MOVE_IN_ONE(\"bd2-move-in-one\", '\\uef58'),\n    MOVE_ONE(\"bd2-move-one\", '\\uef59'),\n    MOVIE(\"bd2-movie\", '\\uef5a'),\n    MOVIE_BOARD(\"bd2-movie-board\", '\\uef5b'),\n    MOVING_PICTURE(\"bd2-moving-picture\", '\\uef5c'),\n    MULTICAST(\"bd2-multicast\", '\\uef5d'),\n    MULTI_CIRCULAR(\"bd2-multi-circular\", '\\uef5e'),\n    MULTI_FUNCTION_KNIFE(\"bd2-multi-function-knife\", '\\uef5f'),\n    MULTILAYER_SPHERE(\"bd2-multilayer-sphere\", '\\uef60'),\n    MULTI_PICTURE_CAROUSEL(\"bd2-multi-picture-carousel\", '\\uef61'),\n    MULTI_RECTANGLE(\"bd2-multi-rectangle\", '\\uef62'),\n    MULTI_RING(\"bd2-multi-ring\", '\\uef63'),\n    MULTI_TRIANGULAR(\"bd2-multi-triangular\", '\\uef64'),\n    MULTI_TRIANGULAR_FOUR(\"bd2-multi-triangular-four\", '\\uef65'),\n    MULTI_TRIANGULAR_THREE(\"bd2-multi-triangular-three\", '\\uef66'),\n    MULTI_TRIANGULAR_TWO(\"bd2-multi-triangular-two\", '\\uef67'),\n    MUSCLE(\"bd2-muscle\", '\\uef68'),\n    MUSEUM_ONE(\"bd2-museum-one\", '\\uef69'),\n    MUSEUM_TWO(\"bd2-museum-two\", '\\uef6a'),\n    MUSIC(\"bd2-music\", '\\uef6b'),\n    MUSIC_CD(\"bd2-music-cd\", '\\uef6c'),\n    MUSIC_LIST(\"bd2-music-list\", '\\uef6d'),\n    MUSIC_MENU(\"bd2-music-menu\", '\\uef6e'),\n    MUSIC_ONE(\"bd2-music-one\", '\\uef6f'),\n    MUSIC_RHYTHM(\"bd2-music-rhythm\", '\\uef70'),\n    MUTE(\"bd2-mute\", '\\uef71'),\n    NAIL_POLISH(\"bd2-nail-polish\", '\\uef72'),\n    NAIL_POLISH_ONE(\"bd2-nail-polish-one\", '\\uef73'),\n    NASAL(\"bd2-nasal\", '\\uef74'),\n    NATURAL_MODE(\"bd2-natural-mode\", '\\uef75'),\n    NAVIGATION(\"bd2-navigation\", '\\uef76'),\n    NECKTIE(\"bd2-necktie\", '\\uef77'),\n    NEEDLE(\"bd2-needle\", '\\uef78'),\n    NEGATIVE_DYNAMICS(\"bd2-negative-dynamics\", '\\uef79'),\n    NESTED_ARROWS(\"bd2-nested-arrows\", '\\uef7a'),\n    NESTS(\"bd2-nests\", '\\uef7b'),\n    NETWORK_DRIVE(\"bd2-network-drive\", '\\uef7c'),\n    NETWORK_TREE(\"bd2-network-tree\", '\\uef7d'),\n    NEURAL(\"bd2-neural\", '\\uef7e'),\n    NEUTRAL_FACE(\"bd2-neutral-face\", '\\uef7f'),\n    NEW_AFFERENT(\"bd2-new-afferent\", '\\uef80'),\n    NEW_COMPUTER(\"bd2-new-computer\", '\\uef81'),\n    NEW_DIANZIQIAN(\"bd2-new-dianziqian\", '\\uef82'),\n    NEW_EFFERENT(\"bd2-new-efferent\", '\\uef83'),\n    NEW_LARK(\"bd2-new-lark\", '\\uef84'),\n    NEWLYBUILD(\"bd2-newlybuild\", '\\uef85'),\n    NEW_PICTURE(\"bd2-new-picture\", '\\uef86'),\n    NEWSPAPER_FOLDING(\"bd2-newspaper-folding\", '\\uef87'),\n    NEXT(\"bd2-next\", '\\uef88'),\n    NINE_KEY(\"bd2-nine-key\", '\\uef89'),\n    NINE_POINTS_CONNECTED(\"bd2-nine-points-connected\", '\\uef8a'),\n    NINTENDO_SWITCH(\"bd2-nintendo-switch\", '\\uef8b'),\n    NMR(\"bd2-nmr\", '\\uef8c'),\n    NODE_FLAT(\"bd2-node-flat\", '\\uef8d'),\n    NODE_ROUND(\"bd2-node-round\", '\\uef8e'),\n    NODE_SQUARE(\"bd2-node-square\", '\\uef8f'),\n    NOODLES(\"bd2-noodles\", '\\uef90'),\n    NO_SHOOTING(\"bd2-no-shooting\", '\\uef91'),\n    NOTEBOOK(\"bd2-notebook\", '\\uef92'),\n    NOTEBOOK_AND_PEN(\"bd2-notebook-and-pen\", '\\uef93'),\n    NOTEBOOK_ONE(\"bd2-notebook-one\", '\\uef94'),\n    NOTEPAD(\"bd2-notepad\", '\\uef95'),\n    NOTES(\"bd2-notes\", '\\uef96'),\n    NUCLEAR_PLANT(\"bd2-nuclear-plant\", '\\uef97'),\n    NURSE_CAP(\"bd2-nurse-cap\", '\\uef98'),\n    NUT(\"bd2-nut\", '\\uef99'),\n    NUTRITION(\"bd2-nutrition\", '\\uef9a'),\n    OCEANENGINE(\"bd2-oceanengine\", '\\uef9b'),\n    OCTAGON(\"bd2-octagon\", '\\uef9c'),\n    OFF_SCREEN(\"bd2-off-screen\", '\\uef9d'),\n    OFF_SCREEN_ONE(\"bd2-off-screen-one\", '\\uef9e'),\n    OFF_SCREEN_TWO(\"bd2-off-screen-two\", '\\uef9f'),\n    OIL_INDUSTRY(\"bd2-oil-industry\", '\\uefa0'),\n    OKAY(\"bd2-okay\", '\\uefa1'),\n    ONE(\"bd2-one\", '\\uefa2'),\n    ONE_KEY(\"bd2-one-key\", '\\uefa3'),\n    ONE_ONE(\"bd2-one-one\", '\\uefa4'),\n    ONESIES(\"bd2-onesies\", '\\uefa5'),\n    ONE_THIRD_ROTATION(\"bd2-one-third-rotation\", '\\uefa6'),\n    ONE_TO_MANY(\"bd2-one-to-many\", '\\uefa7'),\n    ONE_TO_ONE(\"bd2-one-to-one\", '\\uefa8'),\n    ONLINE_MEETING(\"bd2-online-meeting\", '\\uefa9'),\n    OPEN(\"bd2-open\", '\\uefaa'),\n    OPEN_AN_ACCOUNT(\"bd2-open-an-account\", '\\uefab'),\n    OPEN_DOOR(\"bd2-open-door\", '\\uefac'),\n    OPEN_ONE(\"bd2-open-one\", '\\uefad'),\n    OPTIMIZE(\"bd2-optimize\", '\\uefae'),\n    OPTIONAL(\"bd2-optional\", '\\uefaf'),\n    ORANGE(\"bd2-orange\", '\\uefb0'),\n    ORANGE_ONE(\"bd2-orange-one\", '\\uefb1'),\n    ORANGE_STATION(\"bd2-orange-station\", '\\uefb2'),\n    ORDER(\"bd2-order\", '\\uefb3'),\n    ORDERED_LIST(\"bd2-ordered-list\", '\\uefb4'),\n    ORTHOPEDIC(\"bd2-orthopedic\", '\\uefb5'),\n    OSCILLATOR(\"bd2-oscillator\", '\\uefb6'),\n    OTHER(\"bd2-other\", '\\uefb7'),\n    OUTBOUND(\"bd2-outbound\", '\\uefb8'),\n    OUTDOOR(\"bd2-outdoor\", '\\uefb9'),\n    OUTGOING(\"bd2-outgoing\", '\\uefba'),\n    OVAL_LOVE(\"bd2-oval-love\", '\\uefbb'),\n    OVAL_LOVE_TWO(\"bd2-oval-love-two\", '\\uefbc'),\n    OVAL_ONE(\"bd2-oval-one\", '\\uefbd'),\n    OVEN(\"bd2-oven\", '\\uefbe'),\n    OVEN_TRAY(\"bd2-oven-tray\", '\\uefbf'),\n    OVERALL_REDUCTION(\"bd2-overall-reduction\", '\\uefc0'),\n    OWL(\"bd2-owl\", '\\uefc1'),\n    PACIFIER(\"bd2-pacifier\", '\\uefc2'),\n    PAD(\"bd2-pad\", '\\uefc3'),\n    PAGE(\"bd2-page\", '\\uefc4'),\n    PAGE_TEMPLATE(\"bd2-page-template\", '\\uefc5'),\n    PAGODA(\"bd2-pagoda\", '\\uefc6'),\n    PAINT(\"bd2-paint\", '\\uefc7'),\n    PAINTED_EGGSHELL(\"bd2-painted-eggshell\", '\\uefc8'),\n    PAINTED_SCREEN(\"bd2-painted-screen\", '\\uefc9'),\n    PALACE(\"bd2-palace\", '\\uefca'),\n    PALM(\"bd2-palm\", '\\uefcb'),\n    PANDA(\"bd2-panda\", '\\uefcc'),\n    PANGLE(\"bd2-pangle\", '\\uefcd'),\n    PANORAMA_HORIZONTAL(\"bd2-panorama-horizontal\", '\\uefce'),\n    PANTIES(\"bd2-panties\", '\\uefcf'),\n    PAPERCLIP(\"bd2-paperclip\", '\\uefd0'),\n    PAPER_MONEY(\"bd2-paper-money\", '\\uefd1'),\n    PAPER_MONEY_TWO(\"bd2-paper-money-two\", '\\uefd2'),\n    PAPER_SHIP(\"bd2-paper-ship\", '\\uefd3'),\n    PARABOLA(\"bd2-parabola\", '\\uefd4'),\n    PARACHUTE(\"bd2-parachute\", '\\uefd5'),\n    PARAGRAPH_ALPHABET(\"bd2-paragraph-alphabet\", '\\uefd6'),\n    PARAGRAPH_BREAK(\"bd2-paragraph-break\", '\\uefd7'),\n    PARAGRAPH_BREAK_TWO(\"bd2-paragraph-break-two\", '\\uefd8'),\n    PARAGRAPH_CUT(\"bd2-paragraph-cut\", '\\uefd9'),\n    PARAGRAPH_RECTANGLE(\"bd2-paragraph-rectangle\", '\\uefda'),\n    PARAGRAPH_ROUND(\"bd2-paragraph-round\", '\\uefdb'),\n    PARAGRAPH_TRIANGLE(\"bd2-paragraph-triangle\", '\\uefdc'),\n    PARAGRAPH_UNFOLD(\"bd2-paragraph-unfold\", '\\uefdd'),\n    PARALLEL_GATEWAY(\"bd2-parallel-gateway\", '\\uefde'),\n    PARALLELOGRAM(\"bd2-parallelogram\", '\\uefdf'),\n    PARENTING_BOOK(\"bd2-parenting-book\", '\\uefe0'),\n    PARKING(\"bd2-parking\", '\\uefe1'),\n    PARTY_BALLOON(\"bd2-party-balloon\", '\\uefe2'),\n    PASSPORT(\"bd2-passport\", '\\uefe3'),\n    PASSPORT_ONE(\"bd2-passport-one\", '\\uefe4'),\n    PAUSE(\"bd2-pause\", '\\uefe5'),\n    PAUSE_ONE(\"bd2-pause-one\", '\\uefe6'),\n    PAY_CODE(\"bd2-pay-code\", '\\uefe7'),\n    PAY_CODE_ONE(\"bd2-pay-code-one\", '\\uefe8'),\n    PAY_CODE_TWO(\"bd2-pay-code-two\", '\\uefe9'),\n    PAYMENT_METHOD(\"bd2-payment-method\", '\\uefea'),\n    PAYPAL(\"bd2-paypal\", '\\uefeb'),\n    PEACH(\"bd2-peach\", '\\uefec'),\n    PEAR(\"bd2-pear\", '\\uefed'),\n    PEARL_OF_THE_ORIENT(\"bd2-pearl-of-the-orient\", '\\uefee'),\n    PEAS(\"bd2-peas\", '\\uefef'),\n    PENCIL(\"bd2-pencil\", '\\ueff0'),\n    PENNANT(\"bd2-pennant\", '\\ueff1'),\n    PENTAGON_ONE(\"bd2-pentagon-one\", '\\ueff2'),\n    PEOPLE(\"bd2-people\", '\\ueff3'),\n    PEOPLE_BOTTOM(\"bd2-people-bottom\", '\\ueff4'),\n    PEOPLE_BOTTOM_CARD(\"bd2-people-bottom-card\", '\\ueff5'),\n    PEOPLE_DELETE(\"bd2-people-delete\", '\\ueff6'),\n    PEOPLE_DELETE_ONE(\"bd2-people-delete-one\", '\\ueff7'),\n    PEOPLE_DOWNLOAD(\"bd2-people-download\", '\\ueff8'),\n    PEOPLE_LEFT(\"bd2-people-left\", '\\ueff9'),\n    PEOPLE_MINUS(\"bd2-people-minus\", '\\ueffa'),\n    PEOPLE_MINUS_ONE(\"bd2-people-minus-one\", '\\ueffb'),\n    PEOPLE_PLUS(\"bd2-people-plus\", '\\ueffc'),\n    PEOPLE_PLUS_ONE(\"bd2-people-plus-one\", '\\ueffd'),\n    PEOPLE_RIGHT(\"bd2-people-right\", '\\ueffe'),\n    PEOPLES(\"bd2-peoples\", '\\uefff'),\n    PEOPLE_SAFE(\"bd2-people-safe\", '\\uf000'),\n    PEOPLE_SAFE_ONE(\"bd2-people-safe-one\", '\\uf001'),\n    PEOPLE_SEARCH(\"bd2-people-search\", '\\uf002'),\n    PEOPLE_SEARCH_ONE(\"bd2-people-search-one\", '\\uf003'),\n    PEOPLE_SPEAK(\"bd2-people-speak\", '\\uf004'),\n    PEOPLES_TWO(\"bd2-peoples-two\", '\\uf005'),\n    PEOPLE_TOP(\"bd2-people-top\", '\\uf006'),\n    PEOPLE_TOP_CARD(\"bd2-people-top-card\", '\\uf007'),\n    PEOPLE_UNKNOWN(\"bd2-people-unknown\", '\\uf008'),\n    PEOPLE_UPLOAD(\"bd2-people-upload\", '\\uf009'),\n    PERCENTAGE(\"bd2-percentage\", '\\uf00a'),\n    PERFORMANCE(\"bd2-performance\", '\\uf00b'),\n    PERFUME(\"bd2-perfume\", '\\uf00c'),\n    PERFUMER_BOTTLE(\"bd2-perfumer-bottle\", '\\uf00d'),\n    PERIOD(\"bd2-period\", '\\uf00e'),\n    PERMISSIONS(\"bd2-permissions\", '\\uf00f'),\n    PERSONAL_COLLECTION(\"bd2-personal-collection\", '\\uf010'),\n    PERSONAL_PRIVACY(\"bd2-personal-privacy\", '\\uf011'),\n    PERSPECTIVE(\"bd2-perspective\", '\\uf012'),\n    PESTICIDE(\"bd2-pesticide\", '\\uf013'),\n    PETROL(\"bd2-petrol\", '\\uf014'),\n    PHONE(\"bd2-phone\", '\\uf015'),\n    PHONE_BOOTH(\"bd2-phone-booth\", '\\uf016'),\n    PHONE_CALL(\"bd2-phone-call\", '\\uf017'),\n    PHONE_INCOMING(\"bd2-phone-incoming\", '\\uf018'),\n    PHONE_INCOMING_ONE(\"bd2-phone-incoming-one\", '\\uf019'),\n    PHONE_MISSED(\"bd2-phone-missed\", '\\uf01a'),\n    PHONE_OFF(\"bd2-phone-off\", '\\uf01b'),\n    PHONE_ONE(\"bd2-phone-one\", '\\uf01c'),\n    PHONE_OUTGOING(\"bd2-phone-outgoing\", '\\uf01d'),\n    PHONE_OUTGOING_ONE(\"bd2-phone-outgoing-one\", '\\uf01e'),\n    PHONE_TELEPHONE(\"bd2-phone-telephone\", '\\uf01f'),\n    PHONE_TWO(\"bd2-phone-two\", '\\uf020'),\n    PHONE_VIDEO_CALL(\"bd2-phone-video-call\", '\\uf021'),\n    PHONOGRAPH(\"bd2-phonograph\", '\\uf022'),\n    PHOTOGRAPH(\"bd2-photograph\", '\\uf023'),\n    PIANO(\"bd2-piano\", '\\uf024'),\n    PIC(\"bd2-pic\", '\\uf025'),\n    PIC_ONE(\"bd2-pic-one\", '\\uf026'),\n    PICTURE(\"bd2-picture\", '\\uf027'),\n    PICTURE_ALBUM(\"bd2-picture-album\", '\\uf028'),\n    PICTURE_ONE(\"bd2-picture-one\", '\\uf029'),\n    PIE(\"bd2-pie\", '\\uf02a'),\n    PIE_FIVE(\"bd2-pie-five\", '\\uf02b'),\n    PIE_FOUR(\"bd2-pie-four\", '\\uf02c'),\n    PIE_ONE(\"bd2-pie-one\", '\\uf02d'),\n    PIE_SEVEN(\"bd2-pie-seven\", '\\uf02e'),\n    PIE_SIX(\"bd2-pie-six\", '\\uf02f'),\n    PIE_THREE(\"bd2-pie-three\", '\\uf030'),\n    PIE_TWO(\"bd2-pie-two\", '\\uf031'),\n    PIG(\"bd2-pig\", '\\uf032'),\n    PIGEON(\"bd2-pigeon\", '\\uf033'),\n    PIG_ZODIAC(\"bd2-pig-zodiac\", '\\uf034'),\n    PILL(\"bd2-pill\", '\\uf035'),\n    PILLS(\"bd2-pills\", '\\uf036'),\n    PIN(\"bd2-pin\", '\\uf037'),\n    PINEAPPLE(\"bd2-pineapple\", '\\uf038'),\n    PINWHEEL(\"bd2-pinwheel\", '\\uf039'),\n    PISCES(\"bd2-pisces\", '\\uf03a'),\n    PIVOT_TABLE(\"bd2-pivot-table\", '\\uf03b'),\n    PLAN(\"bd2-plan\", '\\uf03c'),\n    PLANET(\"bd2-planet\", '\\uf03d'),\n    PLASTIC_SURGERY(\"bd2-plastic-surgery\", '\\uf03e'),\n    PLATTE(\"bd2-platte\", '\\uf03f'),\n    PLAY(\"bd2-play\", '\\uf040'),\n    PLAYBACK_PROGRESS(\"bd2-playback-progress\", '\\uf041'),\n    PLAY_BASKETBALL(\"bd2-play-basketball\", '\\uf042'),\n    PLAY_CYCLE(\"bd2-play-cycle\", '\\uf043'),\n    PLAY_ONCE(\"bd2-play-once\", '\\uf044'),\n    PLAY_ONE(\"bd2-play-one\", '\\uf045'),\n    PLAY_TWO(\"bd2-play-two\", '\\uf046'),\n    PLAY_VOLLEYBALL(\"bd2-play-volleyball\", '\\uf047'),\n    PLAY_WRONG(\"bd2-play-wrong\", '\\uf048'),\n    PLUG(\"bd2-plug\", '\\uf049'),\n    PLUG_ONE(\"bd2-plug-one\", '\\uf04a'),\n    PLUS(\"bd2-plus\", '\\uf04b'),\n    PLUS_CROSS(\"bd2-plus-cross\", '\\uf04c'),\n    POINT(\"bd2-point\", '\\uf04d'),\n    POINT_OUT(\"bd2-point-out\", '\\uf04e'),\n    POKEBALL_ONE(\"bd2-pokeball-one\", '\\uf04f'),\n    POKER(\"bd2-poker\", '\\uf050'),\n    POPCORN(\"bd2-popcorn\", '\\uf051'),\n    POPCORN_ONE(\"bd2-popcorn-one\", '\\uf052'),\n    POSITIVE_DYNAMICS(\"bd2-positive-dynamics\", '\\uf053'),\n    POT(\"bd2-pot\", '\\uf054'),\n    POTENTIOMETER(\"bd2-potentiometer\", '\\uf055'),\n    POUND(\"bd2-pound\", '\\uf056'),\n    POUND_SIGN(\"bd2-pound-sign\", '\\uf057'),\n    POUTING_FACE(\"bd2-pouting-face\", '\\uf058'),\n    POWDER(\"bd2-powder\", '\\uf059'),\n    POWER(\"bd2-power\", '\\uf05a'),\n    POWERPOINT(\"bd2-powerpoint\", '\\uf05b'),\n    POWER_SUPPLY(\"bd2-power-supply\", '\\uf05c'),\n    POWER_SUPPLY_ONE(\"bd2-power-supply-one\", '\\uf05d'),\n    PPT(\"bd2-ppt\", '\\uf05e'),\n    PREGNANT_WOMEN(\"bd2-pregnant-women\", '\\uf05f'),\n    PRESCHOOL(\"bd2-preschool\", '\\uf060'),\n    PRESCRIPTION(\"bd2-prescription\", '\\uf061'),\n    PRESS(\"bd2-press\", '\\uf062'),\n    PREVIEW_CLOSE(\"bd2-preview-close\", '\\uf063'),\n    PREVIEW_CLOSE_ONE(\"bd2-preview-close-one\", '\\uf064'),\n    PREVIEW_OPEN(\"bd2-preview-open\", '\\uf065'),\n    PRINTER(\"bd2-printer\", '\\uf066'),\n    PRINTER_ONE(\"bd2-printer-one\", '\\uf067'),\n    PRINTER_TWO(\"bd2-printer-two\", '\\uf068'),\n    PRISON(\"bd2-prison\", '\\uf069'),\n    PROCESS_LINE(\"bd2-process-line\", '\\uf06a'),\n    PROJECTOR(\"bd2-projector\", '\\uf06b'),\n    PROJECTOR_ONE(\"bd2-projector-one\", '\\uf06c'),\n    PROJECTOR_THREE(\"bd2-projector-three\", '\\uf06d'),\n    PROJECTOR_TWO(\"bd2-projector-two\", '\\uf06e'),\n    PROPORTIONAL_SCALING(\"bd2-proportional-scaling\", '\\uf06f'),\n    PROTECT(\"bd2-protect\", '\\uf070'),\n    PROTECTION(\"bd2-protection\", '\\uf071'),\n    PUBLIC_TOILET(\"bd2-public-toilet\", '\\uf072'),\n    PULL_DOOR(\"bd2-pull-door\", '\\uf073'),\n    PULL_REQUESTS(\"bd2-pull-requests\", '\\uf074'),\n    PUMPKIN(\"bd2-pumpkin\", '\\uf075'),\n    PURE_NATURAL(\"bd2-pure-natural\", '\\uf076'),\n    PUSH_DOOR(\"bd2-push-door\", '\\uf077'),\n    PUSHPIN(\"bd2-pushpin\", '\\uf078'),\n    PUZZLE(\"bd2-puzzle\", '\\uf079'),\n    PYRAMID(\"bd2-pyramid\", '\\uf07a'),\n    PYRAMID_ONE(\"bd2-pyramid-one\", '\\uf07b'),\n    QINGNIAO_CLUE(\"bd2-qingniao-clue\", '\\uf07c'),\n    QIYEHAO(\"bd2-qiyehao\", '\\uf07d'),\n    QUADRANGULAR_PYRAMID(\"bd2-quadrangular-pyramid\", '\\uf07e'),\n    QUADRILATERAL(\"bd2-quadrilateral\", '\\uf07f'),\n    QUOTE(\"bd2-quote\", '\\uf080'),\n    RABBIT(\"bd2-rabbit\", '\\uf081'),\n    RABBIT_ZODIAC(\"bd2-rabbit-zodiac\", '\\uf082'),\n    RADAR(\"bd2-radar\", '\\uf083'),\n    RADAR_CHART(\"bd2-radar-chart\", '\\uf084'),\n    RADAR_THREE(\"bd2-radar-three\", '\\uf085'),\n    RADAR_TWO(\"bd2-radar-two\", '\\uf086'),\n    RADIATION(\"bd2-radiation\", '\\uf087'),\n    RADIO(\"bd2-radio\", '\\uf088'),\n    RADIO_NANNY(\"bd2-radio-nanny\", '\\uf089'),\n    RADIO_ONE(\"bd2-radio-one\", '\\uf08a'),\n    RADIO_TWO(\"bd2-radio-two\", '\\uf08b'),\n    RADISH(\"bd2-radish\", '\\uf08c'),\n    RADISH_ONE(\"bd2-radish-one\", '\\uf08d'),\n    RAILWAY(\"bd2-railway\", '\\uf08e'),\n    RANKING(\"bd2-ranking\", '\\uf08f'),\n    RANKING_LIST(\"bd2-ranking-list\", '\\uf090'),\n    RATTLE(\"bd2-rattle\", '\\uf091'),\n    RATTLE_ONE(\"bd2-rattle-one\", '\\uf092'),\n    RAZOR(\"bd2-razor\", '\\uf093'),\n    READ_BOOK(\"bd2-read-book\", '\\uf094'),\n    RECEIVE(\"bd2-receive\", '\\uf095'),\n    RECEIVER(\"bd2-receiver\", '\\uf096'),\n    RECENT_VIEWS_SORT(\"bd2-recent-views-sort\", '\\uf097'),\n    RECORD(\"bd2-record\", '\\uf098'),\n    RECORD_DISC(\"bd2-record-disc\", '\\uf099'),\n    RECORD_PLAYER(\"bd2-record-player\", '\\uf09a'),\n    RECTANGLE(\"bd2-rectangle\", '\\uf09b'),\n    RECTANGLE_ONE(\"bd2-rectangle-one\", '\\uf09c'),\n    RECTANGLE_SMALL(\"bd2-rectangle-small\", '\\uf09d'),\n    RECTANGLE_TEAR(\"bd2-rectangle-tear\", '\\uf09e'),\n    RECTANGLE_X(\"bd2-rectangle-x\", '\\uf09f'),\n    RECTANGULAR_CIRCULAR_CONNECTION(\"bd2-rectangular-circular-connection\", '\\uf0a0'),\n    RECTANGULAR_CIRCULAR_SEPARATION(\"bd2-rectangular-circular-separation\", '\\uf0a1'),\n    RECTANGULAR_VERTEBRA(\"bd2-rectangular-vertebra\", '\\uf0a2'),\n    RECYCLE_BIN(\"bd2-recycle-bin\", '\\uf0a3'),\n    RECYCLING(\"bd2-recycling\", '\\uf0a4'),\n    RECYCLING_POOL(\"bd2-recycling-pool\", '\\uf0a5'),\n    RED_CROSS(\"bd2-red-cross\", '\\uf0a6'),\n    RED_ENVELOPE(\"bd2-red-envelope\", '\\uf0a7'),\n    RED_ENVELOPES(\"bd2-red-envelopes\", '\\uf0a8'),\n    REDO(\"bd2-redo\", '\\uf0a9'),\n    REDUCE(\"bd2-reduce\", '\\uf0aa'),\n    REDUCE_DECIMAL_PLACES(\"bd2-reduce-decimal-places\", '\\uf0ab'),\n    REDUCE_ONE(\"bd2-reduce-one\", '\\uf0ac'),\n    REDUCE_TWO(\"bd2-reduce-two\", '\\uf0ad'),\n    REDUCE_USER(\"bd2-reduce-user\", '\\uf0ae'),\n    REEL(\"bd2-reel\", '\\uf0af'),\n    REFRACTION(\"bd2-refraction\", '\\uf0b0'),\n    REFRESH(\"bd2-refresh\", '\\uf0b1'),\n    REFRESH_ONE(\"bd2-refresh-one\", '\\uf0b2'),\n    REFRIGERATOR(\"bd2-refrigerator\", '\\uf0b3'),\n    REJECT(\"bd2-reject\", '\\uf0b4'),\n    RELATIONAL_GRAPH(\"bd2-relational-graph\", '\\uf0b5'),\n    RELIEVED_FACE(\"bd2-relieved-face\", '\\uf0b6'),\n    RELOAD(\"bd2-reload\", '\\uf0b7'),\n    REMIND(\"bd2-remind\", '\\uf0b8'),\n    REMIND_DISABLE(\"bd2-remind-disable\", '\\uf0b9'),\n    REMOTE_CONTROL(\"bd2-remote-control\", '\\uf0ba'),\n    REMOTE_CONTROL_ONE(\"bd2-remote-control-one\", '\\uf0bb'),\n    RENAL(\"bd2-renal\", '\\uf0bc'),\n    RENAULT(\"bd2-renault\", '\\uf0bd'),\n    REPAIR(\"bd2-repair\", '\\uf0be'),\n    REPLAY_FIVE(\"bd2-replay-five\", '\\uf0bf'),\n    REPLAY_MUSIC(\"bd2-replay-music\", '\\uf0c0'),\n    REPORT(\"bd2-report\", '\\uf0c1'),\n    REPOSITIONING(\"bd2-repositioning\", '\\uf0c2'),\n    RESISTOR(\"bd2-resistor\", '\\uf0c3'),\n    RESPECT(\"bd2-respect\", '\\uf0c4'),\n    RESTING(\"bd2-resting\", '\\uf0c5'),\n    RETRO_BAG(\"bd2-retro-bag\", '\\uf0c6'),\n    RETURN(\"bd2-return\", '\\uf0c7'),\n    REVERSE_LENS(\"bd2-reverse-lens\", '\\uf0c8'),\n    REVERSE_LENS_ONE(\"bd2-reverse-lens-one\", '\\uf0c9'),\n    REVERSE_OPERATION_IN(\"bd2-reverse-operation-in\", '\\uf0ca'),\n    REVERSE_OPERATION_OUT(\"bd2-reverse-operation-out\", '\\uf0cb'),\n    REVERSE_ROTATION(\"bd2-reverse-rotation\", '\\uf0cc'),\n    RICE(\"bd2-rice\", '\\uf0cd'),\n    RIDING(\"bd2-riding\", '\\uf0ce'),\n    RIDING_ONE(\"bd2-riding-one\", '\\uf0cf'),\n    RIGHT(\"bd2-right\", '\\uf0d0'),\n    RIGHT_ANGLE(\"bd2-right-angle\", '\\uf0d1'),\n    RIGHT_BAR(\"bd2-right-bar\", '\\uf0d2'),\n    RIGHT_BRANCH(\"bd2-right-branch\", '\\uf0d3'),\n    RIGHT_BRANCH_ONE(\"bd2-right-branch-one\", '\\uf0d4'),\n    RIGHT_BRANCH_TWO(\"bd2-right-branch-two\", '\\uf0d5'),\n    RIGHT_C(\"bd2-right-c\", '\\uf0d6'),\n    RIGHT_EXPAND(\"bd2-right-expand\", '\\uf0d7'),\n    RIGHT_ONE(\"bd2-right-one\", '\\uf0d8'),\n    RIGHT_RUN(\"bd2-right-run\", '\\uf0d9'),\n    RIGHT_SMALL(\"bd2-right-small\", '\\uf0da'),\n    RIGHT_SMALL_DOWN(\"bd2-right-small-down\", '\\uf0db'),\n    RIGHT_SMALL_UP(\"bd2-right-small-up\", '\\uf0dc'),\n    RIGHT_SQUARE(\"bd2-right-square\", '\\uf0dd'),\n    RIGHT_TWO(\"bd2-right-two\", '\\uf0de'),\n    RIGHT_USER(\"bd2-right-user\", '\\uf0df'),\n    RING(\"bd2-ring\", '\\uf0e0'),\n    RING_ONE(\"bd2-ring-one\", '\\uf0e1'),\n    RINGS(\"bd2-rings\", '\\uf0e2'),\n    RIPPLE(\"bd2-ripple\", '\\uf0e3'),\n    ROAD(\"bd2-road\", '\\uf0e4'),\n    ROAD_CONE(\"bd2-road-cone\", '\\uf0e5'),\n    ROAD_ONE(\"bd2-road-one\", '\\uf0e6'),\n    ROAD_SIGN(\"bd2-road-sign\", '\\uf0e7'),\n    ROAD_SIGN_BOTH(\"bd2-road-sign-both\", '\\uf0e8'),\n    ROBOT(\"bd2-robot\", '\\uf0e9'),\n    ROBOT_ONE(\"bd2-robot-one\", '\\uf0ea'),\n    ROBOT_TWO(\"bd2-robot-two\", '\\uf0eb'),\n    ROCK(\"bd2-rock\", '\\uf0ec'),\n    ROCKET(\"bd2-rocket\", '\\uf0ed'),\n    ROCKET_ONE(\"bd2-rocket-one\", '\\uf0ee'),\n    ROCK_GESTURE(\"bd2-rock-gesture\", '\\uf0ef'),\n    ROCKING_HORSE(\"bd2-rocking-horse\", '\\uf0f0'),\n    ROLLERSKATES(\"bd2-rollerskates\", '\\uf0f1'),\n    ROMPER(\"bd2-romper\", '\\uf0f2'),\n    ROPE_SKIPPING(\"bd2-rope-skipping\", '\\uf0f3'),\n    ROPE_SKIPPING_ONE(\"bd2-rope-skipping-one\", '\\uf0f4'),\n    ROTATE(\"bd2-rotate\", '\\uf0f5'),\n    ROTATE_ONE(\"bd2-rotate-one\", '\\uf0f6'),\n    ROTATING_ADD(\"bd2-rotating-add\", '\\uf0f7'),\n    ROTATING_FORWARD(\"bd2-rotating-forward\", '\\uf0f8'),\n    ROTATION(\"bd2-rotation\", '\\uf0f9'),\n    ROTATION_HORIZONTAL(\"bd2-rotation-horizontal\", '\\uf0fa'),\n    ROTATION_ONE(\"bd2-rotation-one\", '\\uf0fb'),\n    ROTATION_VERTICAL(\"bd2-rotation-vertical\", '\\uf0fc'),\n    ROUND(\"bd2-round\", '\\uf0fd'),\n    ROUND_CALIPER(\"bd2-round-caliper\", '\\uf0fe'),\n    ROUND_DISTORTION(\"bd2-round-distortion\", '\\uf0ff'),\n    ROUND_MASK(\"bd2-round-mask\", '\\uf100'),\n    ROUND_SOCKET(\"bd2-round-socket\", '\\uf101'),\n    ROUND_TRIP(\"bd2-round-trip\", '\\uf102'),\n    ROUTER(\"bd2-router\", '\\uf103'),\n    ROUTER_ONE(\"bd2-router-one\", '\\uf104'),\n    ROW_HEIGHT(\"bd2-row-height\", '\\uf105'),\n    ROWING(\"bd2-rowing\", '\\uf106'),\n    RS_MALE(\"bd2-rs-male\", '\\uf107'),\n    RSS(\"bd2-rss\", '\\uf108'),\n    RUGBY(\"bd2-rugby\", '\\uf109'),\n    RUGBY_ONE(\"bd2-rugby-one\", '\\uf10a'),\n    RULER(\"bd2-ruler\", '\\uf10b'),\n    RULER_ONE(\"bd2-ruler-one\", '\\uf10c'),\n    RULE_TWO(\"bd2-rule-two\", '\\uf10d'),\n    RUN_LEFT(\"bd2-run-left\", '\\uf10e'),\n    SAFE_RETRIEVAL(\"bd2-safe-retrieval\", '\\uf10f'),\n    SAGITTARIUS(\"bd2-sagittarius\", '\\uf110'),\n    SAILBOAT(\"bd2-sailboat\", '\\uf111'),\n    SAILBOAT_ONE(\"bd2-sailboat-one\", '\\uf112'),\n    SAILING(\"bd2-sailing\", '\\uf113'),\n    SALES_REPORT(\"bd2-sales-report\", '\\uf114'),\n    SANDALS(\"bd2-sandals\", '\\uf115'),\n    SANDSTORM(\"bd2-sandstorm\", '\\uf116'),\n    SANDWICH(\"bd2-sandwich\", '\\uf117'),\n    SANDWICH_ONE(\"bd2-sandwich-one\", '\\uf118'),\n    SAPLING(\"bd2-sapling\", '\\uf119'),\n    SAVE(\"bd2-save\", '\\uf11a'),\n    SAVE_ONE(\"bd2-save-one\", '\\uf11b'),\n    SCALE(\"bd2-scale\", '\\uf11c'),\n    SCALE_ONE(\"bd2-scale-one\", '\\uf11d'),\n    SCALLION(\"bd2-scallion\", '\\uf11e'),\n    SCAN(\"bd2-scan\", '\\uf11f'),\n    SCAN_CODE(\"bd2-scan-code\", '\\uf120'),\n    SCANNING(\"bd2-scanning\", '\\uf121'),\n    SCANNING_TWO(\"bd2-scanning-two\", '\\uf122'),\n    SCAN_SETTING(\"bd2-scan-setting\", '\\uf123'),\n    SCATTER_ALIGNMENT(\"bd2-scatter-alignment\", '\\uf124'),\n    SCHEDULE(\"bd2-schedule\", '\\uf125'),\n    SCHOOL(\"bd2-school\", '\\uf126'),\n    SCISSORS(\"bd2-scissors\", '\\uf127'),\n    SCOREBOARD(\"bd2-scoreboard\", '\\uf128'),\n    SCORPIO(\"bd2-scorpio\", '\\uf129'),\n    SCREEN_ROTATION(\"bd2-screen-rotation\", '\\uf12a'),\n    SCREENSHOT(\"bd2-screenshot\", '\\uf12b'),\n    SCREENSHOT_ONE(\"bd2-screenshot-one\", '\\uf12c'),\n    SCREENSHOT_TWO(\"bd2-screenshot-two\", '\\uf12d'),\n    SCREWDRIVER(\"bd2-screwdriver\", '\\uf12e'),\n    SD(\"bd2-sd\", '\\uf12f'),\n    SD_CARD(\"bd2-sd-card\", '\\uf130'),\n    SEAL(\"bd2-seal\", '\\uf131'),\n    SEARCH(\"bd2-search\", '\\uf132'),\n    SEAT(\"bd2-seat\", '\\uf133'),\n    SECURITY(\"bd2-security\", '\\uf134'),\n    SECURITY_STALL(\"bd2-security-stall\", '\\uf135'),\n    SEEDLING(\"bd2-seedling\", '\\uf136'),\n    SELECTED(\"bd2-selected\", '\\uf137'),\n    SELECTED_FOCUS(\"bd2-selected-focus\", '\\uf138'),\n    SELFIE(\"bd2-selfie\", '\\uf139'),\n    SEND(\"bd2-send\", '\\uf13a'),\n    SEND_BACKWARD(\"bd2-send-backward\", '\\uf13b'),\n    SEND_EMAIL(\"bd2-send-email\", '\\uf13c'),\n    SEND_ONE(\"bd2-send-one\", '\\uf13d'),\n    SEND_TO_BACK(\"bd2-send-to-back\", '\\uf13e'),\n    SENT_TO_BACK(\"bd2-sent-to-back\", '\\uf13f'),\n    SEO(\"bd2-seo\", '\\uf140'),\n    SEO_FOLDER(\"bd2-seo-folder\", '\\uf141'),\n    SERVER(\"bd2-server\", '\\uf142'),\n    SET_OFF(\"bd2-set-off\", '\\uf143'),\n    SETTING(\"bd2-setting\", '\\uf144'),\n    SETTING_COMPUTER(\"bd2-setting-computer\", '\\uf145'),\n    SETTING_CONFIG(\"bd2-setting-config\", '\\uf146'),\n    SETTING_LAPTOP(\"bd2-setting-laptop\", '\\uf147'),\n    SETTING_ONE(\"bd2-setting-one\", '\\uf148'),\n    SETTING_THREE(\"bd2-setting-three\", '\\uf149'),\n    SETTING_TWO(\"bd2-setting-two\", '\\uf14a'),\n    SETTING_WEB(\"bd2-setting-web\", '\\uf14b'),\n    SEVEN_KEY(\"bd2-seven-key\", '\\uf14c'),\n    SHADE(\"bd2-shade\", '\\uf14d'),\n    SHAKE(\"bd2-shake\", '\\uf14e'),\n    SHARE(\"bd2-share\", '\\uf14f'),\n    SHARE_ONE(\"bd2-share-one\", '\\uf150'),\n    SHARE_SYS(\"bd2-share-sys\", '\\uf151'),\n    SHARE_THREE(\"bd2-share-three\", '\\uf152'),\n    SHARE_TWO(\"bd2-share-two\", '\\uf153'),\n    SHAVER(\"bd2-shaver\", '\\uf154'),\n    SHAVER_ONE(\"bd2-shaver-one\", '\\uf155'),\n    SHAVING(\"bd2-shaving\", '\\uf156'),\n    SHEEP_ZODIAC(\"bd2-sheep-zodiac\", '\\uf157'),\n    SHIELD(\"bd2-shield\", '\\uf158'),\n    SHIELD_ADD(\"bd2-shield-add\", '\\uf159'),\n    SHIP(\"bd2-ship\", '\\uf15a'),\n    SHOP(\"bd2-shop\", '\\uf15b'),\n    SHOPPING(\"bd2-shopping\", '\\uf15c'),\n    SHOPPING_BAG(\"bd2-shopping-bag\", '\\uf15d'),\n    SHOPPING_BAG_ONE(\"bd2-shopping-bag-one\", '\\uf15e'),\n    SHOPPING_CART(\"bd2-shopping-cart\", '\\uf15f'),\n    SHOPPING_CART_ADD(\"bd2-shopping-cart-add\", '\\uf160'),\n    SHOPPING_CART_DEL(\"bd2-shopping-cart-del\", '\\uf161'),\n    SHOPPING_CART_ONE(\"bd2-shopping-cart-one\", '\\uf162'),\n    SHOPPING_CART_TWO(\"bd2-shopping-cart-two\", '\\uf163'),\n    SHOPPING_MALL(\"bd2-shopping-mall\", '\\uf164'),\n    SHORTS(\"bd2-shorts\", '\\uf165'),\n    SHORT_SKIRT(\"bd2-short-skirt\", '\\uf166'),\n    SHOULDER_BAG(\"bd2-shoulder-bag\", '\\uf167'),\n    SHOVEL(\"bd2-shovel\", '\\uf168'),\n    SHOVEL_ONE(\"bd2-shovel-one\", '\\uf169'),\n    SHOWER_HEAD(\"bd2-shower-head\", '\\uf16a'),\n    SHRIMP(\"bd2-shrimp\", '\\uf16b'),\n    SHUFFLE(\"bd2-shuffle\", '\\uf16c'),\n    SHUFFLE_ONE(\"bd2-shuffle-one\", '\\uf16d'),\n    SHUTTER_PRIORITY(\"bd2-shutter-priority\", '\\uf16e'),\n    SICKBED(\"bd2-sickbed\", '\\uf16f'),\n    SIGNAL(\"bd2-signal\", '\\uf170'),\n    SIGNAL_ONE(\"bd2-signal-one\", '\\uf171'),\n    SIGNAL_STRENGTH(\"bd2-signal-strength\", '\\uf172'),\n    SIGNAL_TOWER(\"bd2-signal-tower\", '\\uf173'),\n    SIGNAL_TOWER_ONE(\"bd2-signal-tower-one\", '\\uf174'),\n    SIM(\"bd2-sim\", '\\uf175'),\n    SIM_CARD(\"bd2-sim-card\", '\\uf176'),\n    SINGLE_BED(\"bd2-single-bed\", '\\uf177'),\n    SINUSOID(\"bd2-sinusoid\", '\\uf178'),\n    SIPPY_CUP(\"bd2-sippy-cup\", '\\uf179'),\n    SIX(\"bd2-six\", '\\uf17a'),\n    SIX_CIRCULAR_CONNECTION(\"bd2-six-circular-connection\", '\\uf17b'),\n    SIX_KEY(\"bd2-six-key\", '\\uf17c'),\n    SIX_POINTS(\"bd2-six-points\", '\\uf17d'),\n    SKATE(\"bd2-skate\", '\\uf17e'),\n    SKATES(\"bd2-skates\", '\\uf17f'),\n    SKATING(\"bd2-skating\", '\\uf180'),\n    SKETCH(\"bd2-sketch\", '\\uf181'),\n    SKIING_NORDIC(\"bd2-skiing-nordic\", '\\uf182'),\n    SKULL(\"bd2-skull\", '\\uf183'),\n    SLAVE(\"bd2-slave\", '\\uf184'),\n    SLEAVES(\"bd2-sleaves\", '\\uf185'),\n    SLEEP(\"bd2-sleep\", '\\uf186'),\n    SLEEP_ONE(\"bd2-sleep-one\", '\\uf187'),\n    SLEEP_TWO(\"bd2-sleep-two\", '\\uf188'),\n    SLIDE(\"bd2-slide\", '\\uf189'),\n    SLIDE_TWO(\"bd2-slide-two\", '\\uf18a'),\n    SLIDING_HORIZONTAL(\"bd2-sliding-horizontal\", '\\uf18b'),\n    SLIDING_VERTICAL(\"bd2-sliding-vertical\", '\\uf18c'),\n    SLIGHTLY_FROWNING_FACE_WHIT_OPEN_MOUTH(\"bd2-slightly-frowning-face-whit-open-mouth\", '\\uf18d'),\n    SLIGHTLY_SMILING_FACE(\"bd2-slightly-smiling-face\", '\\uf18e'),\n    SLIPPERS(\"bd2-slippers\", '\\uf18f'),\n    SLIPPERS_ONE(\"bd2-slippers-one\", '\\uf190'),\n    SLY_FACE_WHIT_SMILE(\"bd2-sly-face-whit-smile\", '\\uf191'),\n    SMART_OPTIMIZATION(\"bd2-smart-optimization\", '\\uf192'),\n    SMILING_FACE(\"bd2-smiling-face\", '\\uf193'),\n    SMILING_FACE_WITH_SQUINTING_EYES(\"bd2-smiling-face-with-squinting-eyes\", '\\uf194'),\n    SNACKS(\"bd2-snacks\", '\\uf195'),\n    SNAKE_ZODIAC(\"bd2-snake-zodiac\", '\\uf196'),\n    SNOW(\"bd2-snow\", '\\uf197'),\n    SNOWFLAKE(\"bd2-snowflake\", '\\uf198'),\n    SNOWMAN(\"bd2-snowman\", '\\uf199'),\n    SOAP_BUBBLE(\"bd2-soap-bubble\", '\\uf19a'),\n    SOCCER(\"bd2-soccer\", '\\uf19b'),\n    SOCCER_ONE(\"bd2-soccer-one\", '\\uf19c'),\n    SOCKS(\"bd2-socks\", '\\uf19d'),\n    SOFA(\"bd2-sofa\", '\\uf19e'),\n    SOFA_TWO(\"bd2-sofa-two\", '\\uf19f'),\n    SOFTBALL(\"bd2-softball\", '\\uf1a0'),\n    SOLAR_ENERGY(\"bd2-solar-energy\", '\\uf1a1'),\n    SOLAR_ENERGY_ONE(\"bd2-solar-energy-one\", '\\uf1a2'),\n    SOLID_STATE_DISK(\"bd2-solid-state-disk\", '\\uf1a3'),\n    SORCERER_HAT(\"bd2-sorcerer-hat\", '\\uf1a4'),\n    SORT(\"bd2-sort\", '\\uf1a5'),\n    SORT_AMOUNT_DOWN(\"bd2-sort-amount-down\", '\\uf1a6'),\n    SORT_AMOUNT_UP(\"bd2-sort-amount-up\", '\\uf1a7'),\n    SORT_FOUR(\"bd2-sort-four\", '\\uf1a8'),\n    SORT_ONE(\"bd2-sort-one\", '\\uf1a9'),\n    SORT_THREE(\"bd2-sort-three\", '\\uf1aa'),\n    SORT_TWO(\"bd2-sort-two\", '\\uf1ab'),\n    SOUND(\"bd2-sound\", '\\uf1ac'),\n    SOUND_ONE(\"bd2-sound-one\", '\\uf1ad'),\n    SOUND_WAVE(\"bd2-sound-wave\", '\\uf1ae'),\n    SOURCE_CODE(\"bd2-source-code\", '\\uf1af'),\n    SOYBEAN_MILK_MAKER(\"bd2-soybean-milk-maker\", '\\uf1b0'),\n    SPA_CANDLE(\"bd2-spa-candle\", '\\uf1b1'),\n    SPACE_COLONY(\"bd2-space-colony\", '\\uf1b2'),\n    SPANNER(\"bd2-spanner\", '\\uf1b3'),\n    SPEAKER(\"bd2-speaker\", '\\uf1b4'),\n    SPEAKER_ONE(\"bd2-speaker-one\", '\\uf1b5'),\n    SPEED(\"bd2-speed\", '\\uf1b6'),\n    SPEED_ONE(\"bd2-speed-one\", '\\uf1b7'),\n    SPERM(\"bd2-sperm\", '\\uf1b8'),\n    SPHERE(\"bd2-sphere\", '\\uf1b9'),\n    SPIDER_MAN(\"bd2-spider-man\", '\\uf1ba'),\n    SPIKEDSHOES(\"bd2-spikedshoes\", '\\uf1bb'),\n    SPINNING_TOP(\"bd2-spinning-top\", '\\uf1bc'),\n    SPLIT(\"bd2-split\", '\\uf1bd'),\n    SPLIT_BRANCH(\"bd2-split-branch\", '\\uf1be'),\n    SPLIT_CELLS(\"bd2-split-cells\", '\\uf1bf'),\n    SPLIT_TURN_DOWN_LEFT(\"bd2-split-turn-down-left\", '\\uf1c0'),\n    SPLIT_TURN_DOWN_RIGHT(\"bd2-split-turn-down-right\", '\\uf1c1'),\n    SPOON(\"bd2-spoon\", '\\uf1c2'),\n    SPORT(\"bd2-sport\", '\\uf1c3'),\n    SPORTING(\"bd2-sporting\", '\\uf1c4'),\n    SQUARE(\"bd2-square\", '\\uf1c5'),\n    SQUARE_SMALL(\"bd2-square-small\", '\\uf1c6'),\n    SSD(\"bd2-ssd\", '\\uf1c7'),\n    STACK_LIGHT(\"bd2-stack-light\", '\\uf1c8'),\n    STAMP(\"bd2-stamp\", '\\uf1c9'),\n    STAND_UP(\"bd2-stand-up\", '\\uf1ca'),\n    STAPLER(\"bd2-stapler\", '\\uf1cb'),\n    STAR(\"bd2-star\", '\\uf1cc'),\n    STAR_ONE(\"bd2-star-one\", '\\uf1cd'),\n    START_TIME_SORT(\"bd2-start-time-sort\", '\\uf1ce'),\n    STEERING_WHEEL(\"bd2-steering-wheel\", '\\uf1cf'),\n    STEOLLER(\"bd2-steoller\", '\\uf1d0'),\n    STEREO_NESTING(\"bd2-stereo-nesting\", '\\uf1d1'),\n    STEREO_ONE(\"bd2-stereo-one\", '\\uf1d2'),\n    STEREO_PERSPECTIVE(\"bd2-stereo-perspective\", '\\uf1d3'),\n    STETHOSCOPE(\"bd2-stethoscope\", '\\uf1d4'),\n    STICKERS(\"bd2-stickers\", '\\uf1d5'),\n    STOCK_MARKET(\"bd2-stock-market\", '\\uf1d6'),\n    STOPWATCH(\"bd2-stopwatch\", '\\uf1d7'),\n    STOPWATCH_START(\"bd2-stopwatch-start\", '\\uf1d8'),\n    STORAGE_CARD_ONE(\"bd2-storage-card-one\", '\\uf1d9'),\n    STORAGE_CARD_TWO(\"bd2-storage-card-two\", '\\uf1da'),\n    STRAIGHT_RAZOR(\"bd2-straight-razor\", '\\uf1db'),\n    STRAW_HAT(\"bd2-straw-hat\", '\\uf1dc'),\n    STRETCHING(\"bd2-stretching\", '\\uf1dd'),\n    STRETCHING_ONE(\"bd2-stretching-one\", '\\uf1de'),\n    STRIKETHROUGH(\"bd2-strikethrough\", '\\uf1df'),\n    STRONGBOX(\"bd2-strongbox\", '\\uf1e0'),\n    S_TURN_DOWN(\"bd2-s-turn-down\", '\\uf1e1'),\n    S_TURN_LEFT(\"bd2-s-turn-left\", '\\uf1e2'),\n    S_TURN_RIGHT(\"bd2-s-turn-right\", '\\uf1e3'),\n    S_TURN_UP(\"bd2-s-turn-up\", '\\uf1e4'),\n    SUBTRACT_SELECTION(\"bd2-subtract-selection\", '\\uf1e5'),\n    SUBTRACT_SELECTION_ONE(\"bd2-subtract-selection-one\", '\\uf1e6'),\n    SUBWAY(\"bd2-subway\", '\\uf1e7'),\n    SUCCESS(\"bd2-success\", '\\uf1e8'),\n    SUCCESS_PICTURE(\"bd2-success-picture\", '\\uf1e9'),\n    SUM(\"bd2-sum\", '\\uf1ea'),\n    SUN(\"bd2-sun\", '\\uf1eb'),\n    SUNBATH(\"bd2-sunbath\", '\\uf1ec'),\n    SUN_HAT(\"bd2-sun-hat\", '\\uf1ed'),\n    SUNNY(\"bd2-sunny\", '\\uf1ee'),\n    SUN_ONE(\"bd2-sun-one\", '\\uf1ef'),\n    SUNRISE(\"bd2-sunrise\", '\\uf1f0'),\n    SUNSET(\"bd2-sunset\", '\\uf1f1'),\n    SUNSHADE(\"bd2-sunshade\", '\\uf1f2'),\n    SURPRISED_FACE_WITH_OPEN_BIG_MOUTH(\"bd2-surprised-face-with-open-big-mouth\", '\\uf1f3'),\n    SURPRISED_FACE_WITH_OPEN_MOUTH(\"bd2-surprised-face-with-open-mouth\", '\\uf1f4'),\n    SURVEILLANCE_CAMERAS(\"bd2-surveillance-cameras\", '\\uf1f5'),\n    SURVEILLANCE_CAMERAS_ONE(\"bd2-surveillance-cameras-one\", '\\uf1f6'),\n    SURVEILLANCE_CAMERAS_TWO(\"bd2-surveillance-cameras-two\", '\\uf1f7'),\n    SWALLOW(\"bd2-swallow\", '\\uf1f8'),\n    SWEATER(\"bd2-sweater\", '\\uf1f9'),\n    SWIMMING_POOL(\"bd2-swimming-pool\", '\\uf1fa'),\n    SWIMMING_RING(\"bd2-swimming-ring\", '\\uf1fb'),\n    SWIMSUIT(\"bd2-swimsuit\", '\\uf1fc'),\n    SWING(\"bd2-swing\", '\\uf1fd'),\n    SWIPE(\"bd2-swipe\", '\\uf1fe'),\n    SWITCH(\"bd2-switch\", '\\uf1ff'),\n    SWITCH_BUTTON(\"bd2-switch-button\", '\\uf200'),\n    SWITCH_CONTRAST(\"bd2-switch-contrast\", '\\uf201'),\n    SWITCHING_DONE(\"bd2-switching-done\", '\\uf202'),\n    SWITCH_NINTENDO(\"bd2-switch-nintendo\", '\\uf203'),\n    SWITCH_ONE(\"bd2-switch-one\", '\\uf204'),\n    SWITCH_THEMES(\"bd2-switch-themes\", '\\uf205'),\n    SWITCH_TRACK(\"bd2-switch-track\", '\\uf206'),\n    SYMBOL(\"bd2-symbol\", '\\uf207'),\n    SYMBOL_DOUBLE_X(\"bd2-symbol-double-x\", '\\uf208'),\n    SYMMETRY(\"bd2-symmetry\", '\\uf209'),\n    SYNC(\"bd2-sync\", '\\uf20a'),\n    SYSTEM(\"bd2-system\", '\\uf20b'),\n    TABLE(\"bd2-table\", '\\uf20c'),\n    TABLE_FILE(\"bd2-table-file\", '\\uf20d'),\n    TABLE_LAMP(\"bd2-table-lamp\", '\\uf20e'),\n    TABLE_REPORT(\"bd2-table-report\", '\\uf20f'),\n    TABLETENNIS(\"bd2-tabletennis\", '\\uf210'),\n    TAG(\"bd2-tag\", '\\uf211'),\n    TAG_ONE(\"bd2-tag-one\", '\\uf212'),\n    TAILORING(\"bd2-tailoring\", '\\uf213'),\n    TAILORING_TWO(\"bd2-tailoring-two\", '\\uf214'),\n    TAJ_MAHAL(\"bd2-taj-mahal\", '\\uf215'),\n    TAKE_OFF(\"bd2-take-off\", '\\uf216'),\n    TAKE_OFF_ONE(\"bd2-take-off-one\", '\\uf217'),\n    TAOBAO(\"bd2-taobao\", '\\uf218'),\n    TAPE(\"bd2-tape\", '\\uf219'),\n    TAPE_MEASURE(\"bd2-tape-measure\", '\\uf21a'),\n    TARGET(\"bd2-target\", '\\uf21b'),\n    TARGET_ONE(\"bd2-target-one\", '\\uf21c'),\n    TARGET_TWO(\"bd2-target-two\", '\\uf21d'),\n    TAURUS(\"bd2-taurus\", '\\uf21e'),\n    TAXI(\"bd2-taxi\", '\\uf21f'),\n    TEA(\"bd2-tea\", '\\uf220'),\n    TEA_DRINK(\"bd2-tea-drink\", '\\uf221'),\n    TEAPOT(\"bd2-teapot\", '\\uf222'),\n    TEETH(\"bd2-teeth\", '\\uf223'),\n    TELEGRAM(\"bd2-telegram\", '\\uf224'),\n    TELESCOPE(\"bd2-telescope\", '\\uf225'),\n    TENCENT_QQ(\"bd2-tencent-qq\", '\\uf226'),\n    TENNIS(\"bd2-tennis\", '\\uf227'),\n    TENT(\"bd2-tent\", '\\uf228'),\n    TENT_BANNER(\"bd2-tent-banner\", '\\uf229'),\n    TERMINAL(\"bd2-terminal\", '\\uf22a'),\n    TERMINATION_FILE(\"bd2-termination-file\", '\\uf22b'),\n    TERRACE(\"bd2-terrace\", '\\uf22c'),\n    TEST_TUBE(\"bd2-test-tube\", '\\uf22d'),\n    TEXT(\"bd2-text\", '\\uf22e'),\n    TEXTAREA(\"bd2-textarea\", '\\uf22f'),\n    TEXT_BOLD(\"bd2-text-bold\", '\\uf230'),\n    TEXT_ITALIC(\"bd2-text-italic\", '\\uf231'),\n    TEXT_MESSAGE(\"bd2-text-message\", '\\uf232'),\n    TEXT_RECOGNITION(\"bd2-text-recognition\", '\\uf233'),\n    TEXT_ROTATION_DOWN(\"bd2-text-rotation-down\", '\\uf234'),\n    TEXT_ROTATION_LEFT(\"bd2-text-rotation-left\", '\\uf235'),\n    TEXT_ROTATION_NONE(\"bd2-text-rotation-none\", '\\uf236'),\n    TEXT_ROTATION_UP(\"bd2-text-rotation-up\", '\\uf237'),\n    TEXT_STYLE(\"bd2-text-style\", '\\uf238'),\n    TEXT_STYLE_ONE(\"bd2-text-style-one\", '\\uf239'),\n    TEXT_UNDERLINE(\"bd2-text-underline\", '\\uf23a'),\n    TEXTURE(\"bd2-texture\", '\\uf23b'),\n    TEXTURE_TWO(\"bd2-texture-two\", '\\uf23c'),\n    TEXT_WRAP_OVERFLOW(\"bd2-text-wrap-overflow\", '\\uf23d'),\n    TEXT_WRAP_TRUNCATION(\"bd2-text-wrap-truncation\", '\\uf23e'),\n    THEATER(\"bd2-theater\", '\\uf23f'),\n    THEME(\"bd2-theme\", '\\uf240'),\n    THERMOMETER(\"bd2-thermometer\", '\\uf241'),\n    THERMOMETER_ONE(\"bd2-thermometer-one\", '\\uf242'),\n    THERMOS_CUP(\"bd2-thermos-cup\", '\\uf243'),\n    THE_SINGLE_SHOULDER_BAG(\"bd2-the-single-shoulder-bag\", '\\uf244'),\n    THIN(\"bd2-thin\", '\\uf245'),\n    THINKING_PROBLEM(\"bd2-thinking-problem\", '\\uf246'),\n    THREE(\"bd2-three\", '\\uf247'),\n    THREE_D_GLASSES(\"bd2-three-d-glasses\", '\\uf248'),\n    THREE_HEXAGONS(\"bd2-three-hexagons\", '\\uf249'),\n    THREE_KEY(\"bd2-three-key\", '\\uf24a'),\n    THREE_SLASHES(\"bd2-three-slashes\", '\\uf24b'),\n    THREE_THREE(\"bd2-three-three\", '\\uf24c'),\n    THREE_TRIANGLES(\"bd2-three-triangles\", '\\uf24d'),\n    THUMBS_DOWN(\"bd2-thumbs-down\", '\\uf24e'),\n    THUMBS_UP(\"bd2-thumbs-up\", '\\uf24f'),\n    THUNDERBOLT(\"bd2-thunderbolt\", '\\uf250'),\n    THUNDERSTORM(\"bd2-thunderstorm\", '\\uf251'),\n    THUNDERSTORM_ONE(\"bd2-thunderstorm-one\", '\\uf252'),\n    TICKET(\"bd2-ticket\", '\\uf253'),\n    TICKET_ONE(\"bd2-ticket-one\", '\\uf254'),\n    TICKETS_CHECKED(\"bd2-tickets-checked\", '\\uf255'),\n    TICKETS_ONE(\"bd2-tickets-one\", '\\uf256'),\n    TICKETS_TWO(\"bd2-tickets-two\", '\\uf257'),\n    TIGER_ZODIAC(\"bd2-tiger-zodiac\", '\\uf258'),\n    TIKTOK(\"bd2-tiktok\", '\\uf259'),\n    TIME(\"bd2-time\", '\\uf25a'),\n    TIMED_MAIL(\"bd2-timed-mail\", '\\uf25b'),\n    TIMELINE(\"bd2-timeline\", '\\uf25c'),\n    TIMER(\"bd2-timer\", '\\uf25d'),\n    TIPS(\"bd2-tips\", '\\uf25e'),\n    TIPS_ONE(\"bd2-tips-one\", '\\uf25f'),\n    TIRE_SWING(\"bd2-tire-swing\", '\\uf260'),\n    TITLE_LEVEL(\"bd2-title-level\", '\\uf261'),\n    TO_BOTTOM(\"bd2-to-bottom\", '\\uf262'),\n    TO_BOTTOM_ONE(\"bd2-to-bottom-one\", '\\uf263'),\n    TOILET(\"bd2-toilet\", '\\uf264'),\n    TO_LEFT(\"bd2-to-left\", '\\uf265'),\n    TOMATO(\"bd2-tomato\", '\\uf266'),\n    TOOL(\"bd2-tool\", '\\uf267'),\n    TOOLKIT(\"bd2-toolkit\", '\\uf268'),\n    TOP_BAR(\"bd2-top-bar\", '\\uf269'),\n    TOPBUZZ(\"bd2-topbuzz\", '\\uf26a'),\n    TOPIC(\"bd2-topic\", '\\uf26b'),\n    TOPIC_DISCUSSION(\"bd2-topic-discussion\", '\\uf26c'),\n    TORCH(\"bd2-torch\", '\\uf26d'),\n    TO_RIGHT(\"bd2-to-right\", '\\uf26e'),\n    TO_TOP(\"bd2-to-top\", '\\uf26f'),\n    TO_TOP_ONE(\"bd2-to-top-one\", '\\uf270'),\n    TOUR_BUS(\"bd2-tour-bus\", '\\uf271'),\n    TOWEL(\"bd2-towel\", '\\uf272'),\n    TOWER(\"bd2-tower\", '\\uf273'),\n    TOWER_OF_BABEL(\"bd2-tower-of-babel\", '\\uf274'),\n    TOWER_OF_PISA(\"bd2-tower-of-pisa\", '\\uf275'),\n    TOXINS(\"bd2-toxins\", '\\uf276'),\n    TRACE(\"bd2-trace\", '\\uf277'),\n    TRADEMARK(\"bd2-trademark\", '\\uf278'),\n    TRADITIONAL_CHINESE_MEDICINE(\"bd2-traditional-chinese-medicine\", '\\uf279'),\n    TRAIN(\"bd2-train\", '\\uf27a'),\n    TRANSACTION(\"bd2-transaction\", '\\uf27b'),\n    TRANSACTION_ORDER(\"bd2-transaction-order\", '\\uf27c'),\n    TRANSFER(\"bd2-transfer\", '\\uf27d'),\n    TRANSFER_DATA(\"bd2-transfer-data\", '\\uf27e'),\n    TRANSFORM(\"bd2-transform\", '\\uf27f'),\n    TRANSLATE(\"bd2-translate\", '\\uf280'),\n    TRANSLATION(\"bd2-translation\", '\\uf281'),\n    TRANSPORT(\"bd2-transport\", '\\uf282'),\n    TRANSPORTER(\"bd2-transporter\", '\\uf283'),\n    TRAPEZOID(\"bd2-trapezoid\", '\\uf284'),\n    TRAY(\"bd2-tray\", '\\uf285'),\n    TREADMILL(\"bd2-treadmill\", '\\uf286'),\n    TREADMILL_ONE(\"bd2-treadmill-one\", '\\uf287'),\n    TREADMILL_TWO(\"bd2-treadmill-two\", '\\uf288'),\n    TREASURE_CHEST(\"bd2-treasure-chest\", '\\uf289'),\n    TREE(\"bd2-tree\", '\\uf28a'),\n    TREE_DIAGRAM(\"bd2-tree-diagram\", '\\uf28b'),\n    TREE_LIST(\"bd2-tree-list\", '\\uf28c'),\n    TREE_ONE(\"bd2-tree-one\", '\\uf28d'),\n    TREE_TWO(\"bd2-tree-two\", '\\uf28e'),\n    TREND(\"bd2-trend\", '\\uf28f'),\n    TRENDING_DOWN(\"bd2-trending-down\", '\\uf290'),\n    TRENDING_UP(\"bd2-trending-up\", '\\uf291'),\n    TREND_TWO(\"bd2-trend-two\", '\\uf292'),\n    TRIANGLE(\"bd2-triangle\", '\\uf293'),\n    TRIANGLE_ROUND_RECTANGLE(\"bd2-triangle-round-rectangle\", '\\uf294'),\n    TRIANGLE_RULER(\"bd2-triangle-ruler\", '\\uf295'),\n    TRIANGULAR_PYRAMID(\"bd2-triangular-pyramid\", '\\uf296'),\n    TROPHY(\"bd2-trophy\", '\\uf297'),\n    TROUSERS_BELL_BOTTOMS(\"bd2-trousers-bell-bottoms\", '\\uf298'),\n    TRUCK(\"bd2-truck\", '\\uf299'),\n    TRUMPET(\"bd2-trumpet\", '\\uf29a'),\n    TRUNK(\"bd2-trunk\", '\\uf29b'),\n    T_SHIRT(\"bd2-t-shirt\", '\\uf29c'),\n    TUB(\"bd2-tub\", '\\uf29d'),\n    TUCHONG(\"bd2-tuchong\", '\\uf29e'),\n    TUMBLR(\"bd2-tumblr\", '\\uf29f'),\n    TURKEY(\"bd2-turkey\", '\\uf2a0'),\n    TURN_AROUND(\"bd2-turn-around\", '\\uf2a1'),\n    TURN_OFF_BLUETOOTH(\"bd2-turn-off-bluetooth\", '\\uf2a2'),\n    TURN_ON(\"bd2-turn-on\", '\\uf2a3'),\n    TV(\"bd2-tv\", '\\uf2a4'),\n    TV_ONE(\"bd2-tv-one\", '\\uf2a5'),\n    TWITTER(\"bd2-twitter\", '\\uf2a6'),\n    TWO(\"bd2-two\", '\\uf2a7'),\n    TWO_DIMENSIONAL_CODE(\"bd2-two-dimensional-code\", '\\uf2a8'),\n    TWO_DIMENSIONAL_CODE_ONE(\"bd2-two-dimensional-code-one\", '\\uf2a9'),\n    TWO_DIMENSIONAL_CODE_TWO(\"bd2-two-dimensional-code-two\", '\\uf2aa'),\n    TWO_ELLIPSES(\"bd2-two-ellipses\", '\\uf2ab'),\n    TWO_FINGERS(\"bd2-two-fingers\", '\\uf2ac'),\n    TWO_HANDS(\"bd2-two-hands\", '\\uf2ad'),\n    TWO_KEY(\"bd2-two-key\", '\\uf2ae'),\n    TWO_SEMICIRCLES(\"bd2-two-semicircles\", '\\uf2af'),\n    TWO_TRIANGLES(\"bd2-two-triangles\", '\\uf2b0'),\n    TWO_TRIANGLES_TWO(\"bd2-two-triangles-two\", '\\uf2b1'),\n    TWO_TWO(\"bd2-two-two\", '\\uf2b2'),\n    TYPE_DRIVE(\"bd2-type-drive\", '\\uf2b3'),\n    U_DISK(\"bd2-u-disk\", '\\uf2b4'),\n    ULIKECAM(\"bd2-ulikecam\", '\\uf2b5'),\n    UMBRELLA(\"bd2-umbrella\", '\\uf2b6'),\n    UMBRELLA_ONE(\"bd2-umbrella-one\", '\\uf2b7'),\n    UMBRELLA_TWO(\"bd2-umbrella-two\", '\\uf2b8'),\n    UNDO(\"bd2-undo\", '\\uf2b9'),\n    UNGROUP(\"bd2-ungroup\", '\\uf2ba'),\n    UNICAST(\"bd2-unicast\", '\\uf2bb'),\n    UNION_SELECTION(\"bd2-union-selection\", '\\uf2bc'),\n    UNIVERSAL(\"bd2-universal\", '\\uf2bd'),\n    UNLIKE(\"bd2-unlike\", '\\uf2be'),\n    UNLINK(\"bd2-unlink\", '\\uf2bf'),\n    UNLOCK(\"bd2-unlock\", '\\uf2c0'),\n    UNLOCK_ONE(\"bd2-unlock-one\", '\\uf2c1'),\n    UNORDERED_LIST(\"bd2-unordered-list\", '\\uf2c2'),\n    UP(\"bd2-up\", '\\uf2c3'),\n    UP_AND_DOWN(\"bd2-up-and-down\", '\\uf2c4'),\n    UP_C(\"bd2-up-c\", '\\uf2c5'),\n    UPDATE_ROTATION(\"bd2-update-rotation\", '\\uf2c6'),\n    UPLOAD(\"bd2-upload\", '\\uf2c7'),\n    UPLOAD_COMPUTER(\"bd2-upload-computer\", '\\uf2c8'),\n    UPLOAD_LAPTOP(\"bd2-upload-laptop\", '\\uf2c9'),\n    UPLOAD_LOGS(\"bd2-upload-logs\", '\\uf2ca'),\n    UPLOAD_ONE(\"bd2-upload-one\", '\\uf2cb'),\n    UPLOAD_PICTURE(\"bd2-upload-picture\", '\\uf2cc'),\n    UPLOAD_THREE(\"bd2-upload-three\", '\\uf2cd'),\n    UPLOAD_TWO(\"bd2-upload-two\", '\\uf2ce'),\n    UPLOAD_WEB(\"bd2-upload-web\", '\\uf2cf'),\n    UP_ONE(\"bd2-up-one\", '\\uf2d0'),\n    UPSIDE_DOWN_FACE(\"bd2-upside-down-face\", '\\uf2d1'),\n    UP_SMALL(\"bd2-up-small\", '\\uf2d2'),\n    UP_SQUARE(\"bd2-up-square\", '\\uf2d3'),\n    UP_TWO(\"bd2-up-two\", '\\uf2d4'),\n    USB(\"bd2-usb\", '\\uf2d5'),\n    USB_MEMORY_STICK(\"bd2-usb-memory-stick\", '\\uf2d6'),\n    USB_MICRO_ONE(\"bd2-usb-micro-one\", '\\uf2d7'),\n    USB_MICRO_TWO(\"bd2-usb-micro-two\", '\\uf2d8'),\n    USB_ONE(\"bd2-usb-one\", '\\uf2d9'),\n    USB_TYPE_C(\"bd2-usb-type-c\", '\\uf2da'),\n    USER(\"bd2-user\", '\\uf2db'),\n    USER_BUSINESS(\"bd2-user-business\", '\\uf2dc'),\n    USER_POSITIONING(\"bd2-user-positioning\", '\\uf2dd'),\n    USER_TO_USER_TRANSMISSION(\"bd2-user-to-user-transmission\", '\\uf2de'),\n    UTERUS(\"bd2-uterus\", '\\uf2df'),\n    U_TURN_DOWN(\"bd2-u-turn-down\", '\\uf2e0'),\n    U_TURN_LEFT(\"bd2-u-turn-left\", '\\uf2e1'),\n    U_TURN_RIGHT(\"bd2-u-turn-right\", '\\uf2e2'),\n    U_TURN_UP(\"bd2-u-turn-up\", '\\uf2e3'),\n    VACATION(\"bd2-vacation\", '\\uf2e4'),\n    VACUUM_CLEANER(\"bd2-vacuum-cleaner\", '\\uf2e5'),\n    VEGETABLE_BASKET(\"bd2-vegetable-basket\", '\\uf2e6'),\n    VEGETABLES(\"bd2-vegetables\", '\\uf2e7'),\n    VERTICALLY_CENTERED(\"bd2-vertically-centered\", '\\uf2e8'),\n    VERTICAL_SPACING_BETWEEN_ITEMS(\"bd2-vertical-spacing-between-items\", '\\uf2e9'),\n    VERTICAL_TIDY_UP(\"bd2-vertical-tidy-up\", '\\uf2ea'),\n    VERTICAL_TIMELINE(\"bd2-vertical-timeline\", '\\uf2eb'),\n    VEST(\"bd2-vest\", '\\uf2ec'),\n    VIAL(\"bd2-vial\", '\\uf2ed'),\n    VICIA_FABA(\"bd2-vicia-faba\", '\\uf2ee'),\n    VIDEO(\"bd2-video\", '\\uf2ef'),\n    VIDEOCAMERA(\"bd2-videocamera\", '\\uf2f0'),\n    VIDEOCAMERA_ONE(\"bd2-videocamera-one\", '\\uf2f1'),\n    VIDEO_CONFERENCE(\"bd2-video-conference\", '\\uf2f2'),\n    VIDEO_FILE(\"bd2-video-file\", '\\uf2f3'),\n    VIDEO_ONE(\"bd2-video-one\", '\\uf2f4'),\n    VIDEO_TWO(\"bd2-video-two\", '\\uf2f5'),\n    VIENCHARTS(\"bd2-viencharts\", '\\uf2f6'),\n    VIEWFINDER(\"bd2-viewfinder\", '\\uf2f7'),\n    VIEW_GRID_CARD(\"bd2-view-grid-card\", '\\uf2f8'),\n    VIEW_GRID_DETAIL(\"bd2-view-grid-detail\", '\\uf2f9'),\n    VIEW_GRID_LIST(\"bd2-view-grid-list\", '\\uf2fa'),\n    VIEW_LIST(\"bd2-view-list\", '\\uf2fb'),\n    VIGO(\"bd2-vigo\", '\\uf2fc'),\n    VIP(\"bd2-vip\", '\\uf2fd'),\n    VIP_ONE(\"bd2-vip-one\", '\\uf2fe'),\n    VIRGO(\"bd2-virgo\", '\\uf2ff'),\n    VIRTUAL_REALITY_GLASSES(\"bd2-virtual-reality-glasses\", '\\uf300'),\n    VOICE(\"bd2-voice\", '\\uf301'),\n    VOICE_INPUT(\"bd2-voice-input\", '\\uf302'),\n    VOICEMAIL(\"bd2-voicemail\", '\\uf303'),\n    VOICE_MESSAGE(\"bd2-voice-message\", '\\uf304'),\n    VOICE_OFF(\"bd2-voice-off\", '\\uf305'),\n    VOICE_ONE(\"bd2-voice-one\", '\\uf306'),\n    VOLKSWAGEN(\"bd2-volkswagen\", '\\uf307'),\n    VOLLEYBALL(\"bd2-volleyball\", '\\uf308'),\n    VOLUME_DOWN(\"bd2-volume-down\", '\\uf309'),\n    VOLUME_MUTE(\"bd2-volume-mute\", '\\uf30a'),\n    VOLUME_NOTICE(\"bd2-volume-notice\", '\\uf30b'),\n    VOLUME_SMALL(\"bd2-volume-small\", '\\uf30c'),\n    VOLUME_UP(\"bd2-volume-up\", '\\uf30d'),\n    VR_GLASSES(\"bd2-vr-glasses\", '\\uf30e'),\n    WAISTLINE(\"bd2-waistline\", '\\uf30f'),\n    WALLET(\"bd2-wallet\", '\\uf310'),\n    WALLET_ONE(\"bd2-wallet-one\", '\\uf311'),\n    WALLET_THREE(\"bd2-wallet-three\", '\\uf312'),\n    WALLET_TWO(\"bd2-wallet-two\", '\\uf313'),\n    WAREHOUSING(\"bd2-warehousing\", '\\uf314'),\n    WASHING_MACHINE(\"bd2-washing-machine\", '\\uf315'),\n    WASHING_MACHINE_ONE(\"bd2-washing-machine-one\", '\\uf316'),\n    WATCH(\"bd2-watch\", '\\uf317'),\n    WATCH_ONE(\"bd2-watch-one\", '\\uf318'),\n    WATER(\"bd2-water\", '\\uf319'),\n    WATERFALLS_H(\"bd2-waterfalls-h\", '\\uf31a'),\n    WATERFALLS_V(\"bd2-waterfalls-v\", '\\uf31b'),\n    WATER_LEVEL(\"bd2-water-level\", '\\uf31c'),\n    WATERMELON(\"bd2-watermelon\", '\\uf31d'),\n    WATERMELON_ONE(\"bd2-watermelon-one\", '\\uf31e'),\n    WATER_NO(\"bd2-water-no\", '\\uf31f'),\n    WATERPOLO(\"bd2-waterpolo\", '\\uf320'),\n    WATERPOLO_ONE(\"bd2-waterpolo-one\", '\\uf321'),\n    WATER_RATE(\"bd2-water-rate\", '\\uf322'),\n    WATER_RATE_TWO(\"bd2-water-rate-two\", '\\uf323'),\n    WAVES(\"bd2-waves\", '\\uf324'),\n    WAVES_LEFT(\"bd2-waves-left\", '\\uf325'),\n    WAVES_RIGHT(\"bd2-waves-right\", '\\uf326'),\n    WEARY_FACE(\"bd2-weary-face\", '\\uf327'),\n    WEBCAM(\"bd2-webcam\", '\\uf328'),\n    WEB_PAGE(\"bd2-web-page\", '\\uf329'),\n    WECHAT(\"bd2-wechat\", '\\uf32a'),\n    WEIBO(\"bd2-weibo\", '\\uf32b'),\n    WEIGHT(\"bd2-weight\", '\\uf32c'),\n    WEIGHTLIFTING(\"bd2-weightlifting\", '\\uf32d'),\n    WEIXIN_CARDS_OFFERS(\"bd2-weixin-cards-offers\", '\\uf32e'),\n    WEIXIN_FAVORITES(\"bd2-weixin-favorites\", '\\uf32f'),\n    WEIXIN_GAMES(\"bd2-weixin-games\", '\\uf330'),\n    WEIXIN_MARKET(\"bd2-weixin-market\", '\\uf331'),\n    WEIXIN_MINI_APP(\"bd2-weixin-mini-app\", '\\uf332'),\n    WEIXIN_PEOPLE_NEARBY(\"bd2-weixin-people-nearby\", '\\uf333'),\n    WEIXIN_SCAN(\"bd2-weixin-scan\", '\\uf334'),\n    WEIXIN_SEARCH(\"bd2-weixin-search\", '\\uf335'),\n    WEIXIN_SHAKE(\"bd2-weixin-shake\", '\\uf336'),\n    WEIXIN_TOP_STORIES(\"bd2-weixin-top-stories\", '\\uf337'),\n    WHALE(\"bd2-whale\", '\\uf338'),\n    WHEELCHAIR(\"bd2-wheelchair\", '\\uf339'),\n    WHIRLWIND(\"bd2-whirlwind\", '\\uf33a'),\n    WHISTLING(\"bd2-whistling\", '\\uf33b'),\n    WHOLE_SITE_ACCELERATOR(\"bd2-whole-site-accelerator\", '\\uf33c'),\n    WIFI(\"bd2-wifi\", '\\uf33d'),\n    WIND(\"bd2-wind\", '\\uf33e'),\n    WINDMILL(\"bd2-windmill\", '\\uf33f'),\n    WINDMILL_ONE(\"bd2-windmill-one\", '\\uf340'),\n    WINDMILL_TWO(\"bd2-windmill-two\", '\\uf341'),\n    WINDOWS(\"bd2-windows\", '\\uf342'),\n    WIND_TURBINE(\"bd2-wind-turbine\", '\\uf343'),\n    WINGSUIT_FLYING(\"bd2-wingsuit-flying\", '\\uf344'),\n    WINKING_FACE(\"bd2-winking-face\", '\\uf345'),\n    WINKING_FACE_WITH_OPEN_EYES(\"bd2-winking-face-with-open-eyes\", '\\uf346'),\n    WOMAN(\"bd2-woman\", '\\uf347'),\n    WOMEN(\"bd2-women\", '\\uf348'),\n    WOMEN_COAT(\"bd2-women-coat\", '\\uf349'),\n    WOOLEN_HAT(\"bd2-woolen-hat\", '\\uf34a'),\n    WORD(\"bd2-word\", '\\uf34b'),\n    WORKBENCH(\"bd2-workbench\", '\\uf34c'),\n    WORKER(\"bd2-worker\", '\\uf34d'),\n    WORLD(\"bd2-world\", '\\uf34e'),\n    WORRIED_FACE(\"bd2-worried-face\", '\\uf34f'),\n    WRITE(\"bd2-write\", '\\uf350'),\n    WRITING_FLUENTLY(\"bd2-writing-fluently\", '\\uf351'),\n    WRONG_USER(\"bd2-wrong-user\", '\\uf352'),\n    XIAODU(\"bd2-xiaodu\", '\\uf353'),\n    XIAODU_HOME(\"bd2-xiaodu-home\", '\\uf354'),\n    XIGUA(\"bd2-xigua\", '\\uf355'),\n    XINGFULI(\"bd2-xingfuli\", '\\uf356'),\n    XINGTU(\"bd2-xingtu\", '\\uf357'),\n    YEP(\"bd2-yep\", '\\uf358'),\n    YOUTOBE(\"bd2-youtobe\", '\\uf359'),\n    YOUTUBE(\"bd2-youtube\", '\\uf35a'),\n    ZERO_KEY(\"bd2-zero-key\", '\\uf35b'),\n    ZIJINYUNYING(\"bd2-zijinyunying\", '\\uf35c'),\n    ZIP(\"bd2-zip\", '\\uf35d'),\n    ZOOM(\"bd2-zoom\", '\\uf35e'),\n    ZOOM_IN(\"bd2-zoom-in\", '\\uf35f'),\n    ZOOM_INTERNAL(\"bd2-zoom-internal\", '\\uf360'),\n    ZOOM_OUT(\"bd2-zoom-out\", '\\uf361');\n\n    public static BytedanceIconsRegularMZ findByDescription(String description) {\n        for (BytedanceIconsRegularMZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    BytedanceIconsRegularMZ(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsRegularMZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author LeeWyatt\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BytedanceIconsRegularMZIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/bytedance/1.3.0/fonts/Bytedance-IconPack-Regular.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bd2-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return BytedanceIconsRegularMZ.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Bytedance-IconPack-Regular\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsRegularMZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author LeeWyatt\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class BytedanceIconsRegularMZIkonProvider implements IkonProvider<BytedanceIconsRegularMZ> {\n    @Override\n    public Class<BytedanceIconsRegularMZ> getIkon() {\n        return BytedanceIconsRegularMZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsThinAL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author LeeWyatt\n */\npublic enum BytedanceIconsThinAL implements Ikon {\n    ABDOMINAL(\"bd1-abdominal\", '\\ue900'),\n    ABNORMAL(\"bd1-abnormal\", '\\ue901'),\n    A_CANE(\"bd1-a-cane\", '\\ue902'),\n    ACCELERATION(\"bd1-acceleration\", '\\ue903'),\n    ACCEPT_EMAIL(\"bd1-accept-email\", '\\ue904'),\n    ACOUSTIC(\"bd1-acoustic\", '\\ue905'),\n    ACTIVITY_SOURCE(\"bd1-activity-source\", '\\ue906'),\n    AD(\"bd1-ad\", '\\ue907'),\n    ADD(\"bd1-add\", '\\ue908'),\n    ADD_COMPUTER(\"bd1-add-computer\", '\\ue909'),\n    ADD_FOUR(\"bd1-add-four\", '\\ue90a'),\n    ADD_ITEM(\"bd1-add-item\", '\\ue90b'),\n    ADD_MODE(\"bd1-add-mode\", '\\ue90c'),\n    ADD_MUSIC(\"bd1-add-music\", '\\ue90d'),\n    ADD_ONE(\"bd1-add-one\", '\\ue90e'),\n    ADD_PIC(\"bd1-add-pic\", '\\ue90f'),\n    ADD_PICTURE(\"bd1-add-picture\", '\\ue910'),\n    ADD_PRINT(\"bd1-add-print\", '\\ue911'),\n    ADDRESS_BOOK(\"bd1-address-book\", '\\ue912'),\n    ADD_SUBSET(\"bd1-add-subset\", '\\ue913'),\n    ADD_SUBTRACT(\"bd1-add-subtract\", '\\ue914'),\n    ADD_TEXT(\"bd1-add-text\", '\\ue915'),\n    ADD_TEXT_TWO(\"bd1-add-text-two\", '\\ue916'),\n    ADD_THREE(\"bd1-add-three\", '\\ue917'),\n    ADD_TWO(\"bd1-add-two\", '\\ue918'),\n    ADD_USER(\"bd1-add-user\", '\\ue919'),\n    ADD_WEB(\"bd1-add-web\", '\\ue91a'),\n    ADJACENT_ITEM(\"bd1-adjacent-item\", '\\ue91b'),\n    ADJUSTMENT(\"bd1-adjustment\", '\\ue91c'),\n    ADOBE_ILLUSTRATE(\"bd1-adobe-illustrate\", '\\ue91d'),\n    ADOBE_INDESIGN(\"bd1-adobe-indesign\", '\\ue91e'),\n    ADOBE_LIGHTROOM(\"bd1-adobe-lightroom\", '\\ue91f'),\n    ADOBE_PHOTOSHOP(\"bd1-adobe-photoshop\", '\\ue920'),\n    AD_PRODUCT(\"bd1-ad-product\", '\\ue921'),\n    AFFERENT(\"bd1-afferent\", '\\ue922'),\n    AFFERENT_FOUR(\"bd1-afferent-four\", '\\ue923'),\n    AFFERENT_THREE(\"bd1-afferent-three\", '\\ue924'),\n    AFFERENT_TWO(\"bd1-afferent-two\", '\\ue925'),\n    AFRO_PICK(\"bd1-afro-pick\", '\\ue926'),\n    AGREEMENT(\"bd1-agreement\", '\\ue927'),\n    AIMING(\"bd1-aiming\", '\\ue928'),\n    AIR_BIKE(\"bd1-air-bike\", '\\ue929'),\n    AIR_CONDITIONING(\"bd1-air-conditioning\", '\\ue92a'),\n    AIRPLANE(\"bd1-airplane\", '\\ue92b'),\n    AIRPLANE_WINDOW(\"bd1-airplane-window\", '\\ue92c'),\n    AIRPLANE_WINDOW_ONE(\"bd1-airplane-window-one\", '\\ue92d'),\n    AIRPLAY(\"bd1-airplay\", '\\ue92e'),\n    AIRPODS(\"bd1-airpods\", '\\ue92f'),\n    ALARM(\"bd1-alarm\", '\\ue930'),\n    ALARM_CLOCK(\"bd1-alarm-clock\", '\\ue931'),\n    ALIGN_BOTTOM(\"bd1-align-bottom\", '\\ue932'),\n    ALIGN_BOTTOM_TWO(\"bd1-align-bottom-two\", '\\ue933'),\n    ALIGN_HORIZONTAL_CENTER_TWO(\"bd1-align-horizontal-center-two\", '\\ue934'),\n    ALIGN_HORIZONTALLY(\"bd1-align-horizontally\", '\\ue935'),\n    ALIGN_LEFT(\"bd1-align-left\", '\\ue936'),\n    ALIGN_LEFT_ONE(\"bd1-align-left-one\", '\\ue937'),\n    ALIGN_LEFT_TWO(\"bd1-align-left-two\", '\\ue938'),\n    ALIGNMENT_BOTTOM_CENTER(\"bd1-alignment-bottom-center\", '\\ue939'),\n    ALIGNMENT_BOTTOM_LEFT(\"bd1-alignment-bottom-left\", '\\ue93a'),\n    ALIGNMENT_BOTTOM_RIGHT(\"bd1-alignment-bottom-right\", '\\ue93b'),\n    ALIGNMENT_HORIZONTAL_BOTTOM(\"bd1-alignment-horizontal-bottom\", '\\ue93c'),\n    ALIGNMENT_HORIZONTAL_CENTER(\"bd1-alignment-horizontal-center\", '\\ue93d'),\n    ALIGNMENT_HORIZONTAL_TOP(\"bd1-alignment-horizontal-top\", '\\ue93e'),\n    ALIGNMENT_LEFT_BOTTOM(\"bd1-alignment-left-bottom\", '\\ue93f'),\n    ALIGNMENT_LEFT_CENTER(\"bd1-alignment-left-center\", '\\ue940'),\n    ALIGNMENT_LEFT_TOP(\"bd1-alignment-left-top\", '\\ue941'),\n    ALIGNMENT_RIGHT_BOTTOM(\"bd1-alignment-right-bottom\", '\\ue942'),\n    ALIGNMENT_RIGHT_CENTER(\"bd1-alignment-right-center\", '\\ue943'),\n    ALIGNMENT_RIGHT_TOP(\"bd1-alignment-right-top\", '\\ue944'),\n    ALIGNMENT_TOP_CENTER(\"bd1-alignment-top-center\", '\\ue945'),\n    ALIGNMENT_TOP_LEFT(\"bd1-alignment-top-left\", '\\ue946'),\n    ALIGNMENT_TOP_RIGHT(\"bd1-alignment-top-right\", '\\ue947'),\n    ALIGNMENT_VERTICAL_CENTER(\"bd1-alignment-vertical-center\", '\\ue948'),\n    ALIGNMENT_VERTICAL_LEFT(\"bd1-alignment-vertical-left\", '\\ue949'),\n    ALIGNMENT_VERTICAL_RIGHT(\"bd1-alignment-vertical-right\", '\\ue94a'),\n    ALIGN_RIGHT(\"bd1-align-right\", '\\ue94b'),\n    ALIGN_RIGHT_ONE(\"bd1-align-right-one\", '\\ue94c'),\n    ALIGN_RIGHT_TWO(\"bd1-align-right-two\", '\\ue94d'),\n    ALIGN_TEXT_BOTH(\"bd1-align-text-both\", '\\ue94e'),\n    ALIGN_TEXT_BOTH_ONE(\"bd1-align-text-both-one\", '\\ue94f'),\n    ALIGN_TEXT_BOTTOM(\"bd1-align-text-bottom\", '\\ue950'),\n    ALIGN_TEXT_BOTTOM_ONE(\"bd1-align-text-bottom-one\", '\\ue951'),\n    ALIGN_TEXT_CENTER(\"bd1-align-text-center\", '\\ue952'),\n    ALIGN_TEXT_CENTER_ONE(\"bd1-align-text-center-one\", '\\ue953'),\n    ALIGN_TEXT_LEFT(\"bd1-align-text-left\", '\\ue954'),\n    ALIGN_TEXT_LEFT_ONE(\"bd1-align-text-left-one\", '\\ue955'),\n    ALIGN_TEXT_MIDDLE(\"bd1-align-text-middle\", '\\ue956'),\n    ALIGN_TEXT_MIDDLE_ONE(\"bd1-align-text-middle-one\", '\\ue957'),\n    ALIGN_TEXT_RIGHT(\"bd1-align-text-right\", '\\ue958'),\n    ALIGN_TEXT_RIGHT_ONE(\"bd1-align-text-right-one\", '\\ue959'),\n    ALIGN_TEXT_TOP(\"bd1-align-text-top\", '\\ue95a'),\n    ALIGN_TEXT_TOP_ONE(\"bd1-align-text-top-one\", '\\ue95b'),\n    ALIGN_TOP(\"bd1-align-top\", '\\ue95c'),\n    ALIGN_TOP_TWO(\"bd1-align-top-two\", '\\ue95d'),\n    ALIGN_VERTICAL_CENTER_TWO(\"bd1-align-vertical-center-two\", '\\ue95e'),\n    ALIGN_VERTICALLY(\"bd1-align-vertically\", '\\ue95f'),\n    ALIPAY(\"bd1-alipay\", '\\ue960'),\n    ALL_APPLICATION(\"bd1-all-application\", '\\ue961'),\n    ALPHABETICAL_SORTING(\"bd1-alphabetical-sorting\", '\\ue962'),\n    ALPHABETICAL_SORTING_TWO(\"bd1-alphabetical-sorting-two\", '\\ue963'),\n    AMBULANCE(\"bd1-ambulance\", '\\ue964'),\n    ANALYSIS(\"bd1-analysis\", '\\ue965'),\n    ANCHOR(\"bd1-anchor\", '\\ue966'),\n    ANCHOR_ONE(\"bd1-anchor-one\", '\\ue967'),\n    ANCHOR_ROUND(\"bd1-anchor-round\", '\\ue968'),\n    ANCHOR_SQURE(\"bd1-anchor-squre\", '\\ue969'),\n    ANCHOR_TWO(\"bd1-anchor-two\", '\\ue96a'),\n    ANDROID(\"bd1-android\", '\\ue96b'),\n    ANGRY_FACE(\"bd1-angry-face\", '\\ue96c'),\n    ANGUISHED_FACE(\"bd1-anguished-face\", '\\ue96d'),\n    ANNOUNCEMENT(\"bd1-announcement\", '\\ue96e'),\n    ANTI_CORROSION(\"bd1-anti-corrosion\", '\\ue96f'),\n    APERTURE_PRIORITY(\"bd1-aperture-priority\", '\\ue970'),\n    API(\"bd1-api\", '\\ue971'),\n    API_APP(\"bd1-api-app\", '\\ue972'),\n    APPLE(\"bd1-apple\", '\\ue973'),\n    APPLE_ONE(\"bd1-apple-one\", '\\ue974'),\n    APPLET_CLOSED(\"bd1-applet-closed\", '\\ue975'),\n    APPLICATION(\"bd1-application\", '\\ue976'),\n    APPLICATION_EFFECT(\"bd1-application-effect\", '\\ue977'),\n    APPLICATION_MENU(\"bd1-application-menu\", '\\ue978'),\n    APPLICATION_ONE(\"bd1-application-one\", '\\ue979'),\n    APPLICATION_TWO(\"bd1-application-two\", '\\ue97a'),\n    APPOINTMENT(\"bd1-appointment\", '\\ue97b'),\n    APP_STORE(\"bd1-app-store\", '\\ue97c'),\n    APP_SWITCH(\"bd1-app-switch\", '\\ue97d'),\n    AQUARIUS(\"bd1-aquarius\", '\\ue97e'),\n    ARC_DE_TRIOMPHE(\"bd1-arc-de-triomphe\", '\\ue97f'),\n    ARCHERS_BOW(\"bd1-archers-bow\", '\\ue980'),\n    ARCHERY(\"bd1-archery\", '\\ue981'),\n    AREA_MAP(\"bd1-area-map\", '\\ue982'),\n    ARENA(\"bd1-arena\", '\\ue983'),\n    ARIES(\"bd1-aries\", '\\ue984'),\n    ARITHMETIC(\"bd1-arithmetic\", '\\ue985'),\n    ARITHMETIC_BUTTONS(\"bd1-arithmetic-buttons\", '\\ue986'),\n    ARITHMETIC_ONE(\"bd1-arithmetic-one\", '\\ue987'),\n    ARROW_CIRCLE_DOWN(\"bd1-arrow-circle-down\", '\\ue988'),\n    ARROW_CIRCLE_LEFT(\"bd1-arrow-circle-left\", '\\ue989'),\n    ARROW_CIRCLE_RIGHT(\"bd1-arrow-circle-right\", '\\ue98a'),\n    ARROW_CIRCLE_UP(\"bd1-arrow-circle-up\", '\\ue98b'),\n    ARROW_DOWN(\"bd1-arrow-down\", '\\ue98c'),\n    ARROW_KEYS(\"bd1-arrow-keys\", '\\ue98d'),\n    ARROW_LEFT(\"bd1-arrow-left\", '\\ue98e'),\n    ARROW_LEFT_DOWN(\"bd1-arrow-left-down\", '\\ue98f'),\n    ARROW_LEFT_UP(\"bd1-arrow-left-up\", '\\ue990'),\n    ARROW_RIGHT(\"bd1-arrow-right\", '\\ue991'),\n    ARROW_RIGHT_DOWN(\"bd1-arrow-right-down\", '\\ue992'),\n    ARROW_RIGHT_UP(\"bd1-arrow-right-up\", '\\ue993'),\n    ARROW_UP(\"bd1-arrow-up\", '\\ue994'),\n    ASSEMBLY_LINE(\"bd1-assembly-line\", '\\ue995'),\n    ASSOCIATION(\"bd1-association\", '\\ue996'),\n    ASTERISK(\"bd1-asterisk\", '\\ue997'),\n    ASTERISK_KEY(\"bd1-asterisk-key\", '\\ue998'),\n    ASTONISHED_FACE(\"bd1-astonished-face\", '\\ue999'),\n    AT_SIGN(\"bd1-at-sign\", '\\ue99a'),\n    ATTENTION(\"bd1-attention\", '\\ue99b'),\n    AUDIO_FILE(\"bd1-audio-file\", '\\ue99c'),\n    AUDIT(\"bd1-audit\", '\\ue99d'),\n    AUTO_FOCUS(\"bd1-auto-focus\", '\\ue99e'),\n    AUTO_HEIGHT_ONE(\"bd1-auto-height-one\", '\\ue99f'),\n    AUTO_LINE_HEIGHT(\"bd1-auto-line-height\", '\\ue9a0'),\n    AUTO_LINE_WIDTH(\"bd1-auto-line-width\", '\\ue9a1'),\n    AUTO_WIDTH(\"bd1-auto-width\", '\\ue9a2'),\n    AUTO_WIDTH_ONE(\"bd1-auto-width-one\", '\\ue9a3'),\n    AVATAR(\"bd1-avatar\", '\\ue9a4'),\n    AVERAGE(\"bd1-average\", '\\ue9a5'),\n    AVIATION(\"bd1-aviation\", '\\ue9a6'),\n    AVOCADO(\"bd1-avocado\", '\\ue9a7'),\n    AVOCADO_ONE(\"bd1-avocado-one\", '\\ue9a8'),\n    BABY(\"bd1-baby\", '\\ue9a9'),\n    BABY_APP(\"bd1-baby-app\", '\\ue9aa'),\n    BABY_BOTTLE(\"bd1-baby-bottle\", '\\ue9ab'),\n    BABY_CAR_SEAT(\"bd1-baby-car-seat\", '\\ue9ac'),\n    BABY_FEET(\"bd1-baby-feet\", '\\ue9ad'),\n    BABY_MEAL(\"bd1-baby-meal\", '\\ue9ae'),\n    BABY_MOBILE(\"bd1-baby-mobile\", '\\ue9af'),\n    BABY_ONE(\"bd1-baby-one\", '\\ue9b0'),\n    BABY_PANTS(\"bd1-baby-pants\", '\\ue9b1'),\n    BABY_SLING(\"bd1-baby-sling\", '\\ue9b2'),\n    BABY_TASTE(\"bd1-baby-taste\", '\\ue9b3'),\n    BACHELOR_CAP(\"bd1-bachelor-cap\", '\\ue9b4'),\n    BACHELOR_CAP_ONE(\"bd1-bachelor-cap-one\", '\\ue9b5'),\n    BACHELOR_CAP_TWO(\"bd1-bachelor-cap-two\", '\\ue9b6'),\n    BACK(\"bd1-back\", '\\ue9b7'),\n    BACKGROUND_COLOR(\"bd1-background-color\", '\\ue9b8'),\n    BACK_ONE(\"bd1-back-one\", '\\ue9b9'),\n    BACKPACK(\"bd1-backpack\", '\\ue9ba'),\n    BAD(\"bd1-bad\", '\\ue9bb'),\n    BADGE(\"bd1-badge\", '\\ue9bc'),\n    BADGE_TWO(\"bd1-badge-two\", '\\ue9bd'),\n    BADMINTON(\"bd1-badminton\", '\\ue9be'),\n    BAD_ONE(\"bd1-bad-one\", '\\ue9bf'),\n    BAD_TWO(\"bd1-bad-two\", '\\ue9c0'),\n    BAGGAGE_DELAY(\"bd1-baggage-delay\", '\\ue9c1'),\n    BALANCE(\"bd1-balance\", '\\ue9c2'),\n    BALANCE_ONE(\"bd1-balance-one\", '\\ue9c3'),\n    BALANCE_TWO(\"bd1-balance-two\", '\\ue9c4'),\n    BANANA(\"bd1-banana\", '\\ue9c5'),\n    BANK(\"bd1-bank\", '\\ue9c6'),\n    BANK_CARD(\"bd1-bank-card\", '\\ue9c7'),\n    BANK_CARD_ONE(\"bd1-bank-card-one\", '\\ue9c8'),\n    BANK_CARD_TWO(\"bd1-bank-card-two\", '\\ue9c9'),\n    BANK_TRANSFER(\"bd1-bank-transfer\", '\\ue9ca'),\n    BAOKEMENG(\"bd1-baokemeng\", '\\ue9cb'),\n    BARBECUE(\"bd1-barbecue\", '\\ue9cc'),\n    BARBER_BRUSH(\"bd1-barber-brush\", '\\ue9cd'),\n    BARBER_CLIPPERS(\"bd1-barber-clippers\", '\\ue9ce'),\n    BAR_CODE(\"bd1-bar-code\", '\\ue9cf'),\n    BASEBALL(\"bd1-baseball\", '\\ue9d0'),\n    BASEBALL_BAT(\"bd1-baseball-bat\", '\\ue9d1'),\n    BASEBALL_CAP(\"bd1-baseball-cap\", '\\ue9d2'),\n    BASKETBALL(\"bd1-basketball\", '\\ue9d3'),\n    BASKETBALL_CLOTHES(\"bd1-basketball-clothes\", '\\ue9d4'),\n    BASKETBALL_ONE(\"bd1-basketball-one\", '\\ue9d5'),\n    BASKETBALL_STAND(\"bd1-basketball-stand\", '\\ue9d6'),\n    BAT(\"bd1-bat\", '\\ue9d7'),\n    BATTERY_CHARGE(\"bd1-battery-charge\", '\\ue9d8'),\n    BATTERY_EMPTY(\"bd1-battery-empty\", '\\ue9d9'),\n    BATTERY_FAILURE(\"bd1-battery-failure\", '\\ue9da'),\n    BATTERY_FULL(\"bd1-battery-full\", '\\ue9db'),\n    BATTERY_STORAGE(\"bd1-battery-storage\", '\\ue9dc'),\n    BATTERY_TIPS(\"bd1-battery-tips\", '\\ue9dd'),\n    BATTERY_WORKING(\"bd1-battery-working\", '\\ue9de'),\n    BATTERY_WORKING_ONE(\"bd1-battery-working-one\", '\\ue9df'),\n    BEACH_UMBRELLA(\"bd1-beach-umbrella\", '\\ue9e0'),\n    BEAR(\"bd1-bear\", '\\ue9e1'),\n    BEAUTY(\"bd1-beauty\", '\\ue9e2'),\n    BEAUTY_INSTRUMENT(\"bd1-beauty-instrument\", '\\ue9e3'),\n    BEDSIDE(\"bd1-bedside\", '\\ue9e4'),\n    BEDSIDE_TWO(\"bd1-bedside-two\", '\\ue9e5'),\n    BEE(\"bd1-bee\", '\\ue9e6'),\n    BEER(\"bd1-beer\", '\\ue9e7'),\n    BEER_MUG(\"bd1-beer-mug\", '\\ue9e8'),\n    BEHANCE(\"bd1-behance\", '\\ue9e9'),\n    BELL_RING(\"bd1-bell-ring\", '\\ue9ea'),\n    BELT(\"bd1-belt\", '\\ue9eb'),\n    BENZ(\"bd1-benz\", '\\ue9ec'),\n    BEZIER_CURVE(\"bd1-bezier-curve\", '\\ue9ed'),\n    BIB(\"bd1-bib\", '\\ue9ee'),\n    BIG_CLOCK(\"bd1-big-clock\", '\\ue9ef'),\n    BIG_X(\"bd1-big-x\", '\\ue9f0'),\n    BIKE(\"bd1-bike\", '\\ue9f1'),\n    BILL(\"bd1-bill\", '\\ue9f2'),\n    BIRD(\"bd1-bird\", '\\ue9f3'),\n    BIRTHDAY_CAKE(\"bd1-birthday-cake\", '\\ue9f4'),\n    BITCOIN(\"bd1-bitcoin\", '\\ue9f5'),\n    BLACKBOARD(\"bd1-blackboard\", '\\ue9f6'),\n    BLACK_EIGHT(\"bd1-black-eight\", '\\ue9f7'),\n    BLADE(\"bd1-blade\", '\\ue9f8'),\n    BLESS(\"bd1-bless\", '\\ue9f9'),\n    BLOCK(\"bd1-block\", '\\ue9fa'),\n    BLOCKCHAIN(\"bd1-blockchain\", '\\ue9fb'),\n    BLOCK_EIGHT(\"bd1-block-eight\", '\\ue9fc'),\n    BLOCK_FIVE(\"bd1-block-five\", '\\ue9fd'),\n    BLOCK_FOUR(\"bd1-block-four\", '\\ue9fe'),\n    BLOCK_NINE(\"bd1-block-nine\", '\\ue9ff'),\n    BLOCK_ONE(\"bd1-block-one\", '\\uea00'),\n    BLOCKS_AND_ARROWS(\"bd1-blocks-and-arrows\", '\\uea01'),\n    BLOCK_SEVEN(\"bd1-block-seven\", '\\uea02'),\n    BLOCK_SIX(\"bd1-block-six\", '\\uea03'),\n    BLOCK_TEN(\"bd1-block-ten\", '\\uea04'),\n    BLOCK_THREE(\"bd1-block-three\", '\\uea05'),\n    BLOCK_TWO(\"bd1-block-two\", '\\uea06'),\n    BLOOM(\"bd1-bloom\", '\\uea07'),\n    BLOSSOM(\"bd1-blossom\", '\\uea08'),\n    BLUETOOTH(\"bd1-bluetooth\", '\\uea09'),\n    BOILER(\"bd1-boiler\", '\\uea0a'),\n    BOLT_ONE(\"bd1-bolt-one\", '\\uea0b'),\n    BONE(\"bd1-bone\", '\\uea0c'),\n    BOOK(\"bd1-book\", '\\uea0d'),\n    BOOKMARK(\"bd1-bookmark\", '\\uea0e'),\n    BOOKMARK_ONE(\"bd1-bookmark-one\", '\\uea0f'),\n    BOOKMARK_THREE(\"bd1-bookmark-three\", '\\uea10'),\n    BOOK_ONE(\"bd1-book-one\", '\\uea11'),\n    BOOK_OPEN(\"bd1-book-open\", '\\uea12'),\n    BOOKSHELF(\"bd1-bookshelf\", '\\uea13'),\n    BOOSTER_CAR_SEAT(\"bd1-booster-car-seat\", '\\uea14'),\n    BOOTH(\"bd1-booth\", '\\uea15'),\n    BOOTS(\"bd1-boots\", '\\uea16'),\n    BOTTLE(\"bd1-bottle\", '\\uea17'),\n    BOTTLE_ONE(\"bd1-bottle-one\", '\\uea18'),\n    BOTTLE_THREE(\"bd1-bottle-three\", '\\uea19'),\n    BOTTLE_TWO(\"bd1-bottle-two\", '\\uea1a'),\n    BOTTOM_BAR(\"bd1-bottom-bar\", '\\uea1b'),\n    BOTTOM_BAR_ONE(\"bd1-bottom-bar-one\", '\\uea1c'),\n    BOW(\"bd1-bow\", '\\uea1d'),\n    BOWL(\"bd1-bowl\", '\\uea1e'),\n    BOWLING(\"bd1-bowling\", '\\uea1f'),\n    BOWL_ONE(\"bd1-bowl-one\", '\\uea20'),\n    BOX(\"bd1-box\", '\\uea21'),\n    BOXING(\"bd1-boxing\", '\\uea22'),\n    BOXING_ONE(\"bd1-boxing-one\", '\\uea23'),\n    BOY(\"bd1-boy\", '\\uea24'),\n    BOY_ONE(\"bd1-boy-one\", '\\uea25'),\n    BOY_STROLLER(\"bd1-boy-stroller\", '\\uea26'),\n    BOY_TWO(\"bd1-boy-two\", '\\uea27'),\n    BRAIN(\"bd1-brain\", '\\uea28'),\n    BRAKE_PADS(\"bd1-brake-pads\", '\\uea29'),\n    BRANCH(\"bd1-branch\", '\\uea2a'),\n    BRANCH_ONE(\"bd1-branch-one\", '\\uea2b'),\n    BRANCH_TWO(\"bd1-branch-two\", '\\uea2c'),\n    BRDIGE_THREE(\"bd1-brdige-three\", '\\uea2d'),\n    BREAD(\"bd1-bread\", '\\uea2e'),\n    BREAD_MACHINE(\"bd1-bread-machine\", '\\uea2f'),\n    BREAD_ONE(\"bd1-bread-one\", '\\uea30'),\n    BREAST_PUMP(\"bd1-breast-pump\", '\\uea31'),\n    BRIDGE_ONE(\"bd1-bridge-one\", '\\uea32'),\n    BRIDGE_TWO(\"bd1-bridge-two\", '\\uea33'),\n    BRIEFCASE(\"bd1-briefcase\", '\\uea34'),\n    BRIGHTNESS(\"bd1-brightness\", '\\uea35'),\n    BRING_FORWARD(\"bd1-bring-forward\", '\\uea36'),\n    BRING_TO_FRONT(\"bd1-bring-to-front\", '\\uea37'),\n    BRING_TO_FRONT_ONE(\"bd1-bring-to-front-one\", '\\uea38'),\n    BROADCAST(\"bd1-broadcast\", '\\uea39'),\n    BROADCAST_ONE(\"bd1-broadcast-one\", '\\uea3a'),\n    BROADCAST_RADIO(\"bd1-broadcast-radio\", '\\uea3b'),\n    BROWSER(\"bd1-browser\", '\\uea3c'),\n    BROWSER_CHROME(\"bd1-browser-chrome\", '\\uea3d'),\n    BROWSER_SAFARI(\"bd1-browser-safari\", '\\uea3e'),\n    BUBBLE_CHART(\"bd1-bubble-chart\", '\\uea3f'),\n    BUG(\"bd1-bug\", '\\uea40'),\n    BUILDING_FOUR(\"bd1-building-four\", '\\uea41'),\n    BUILDING_ONE(\"bd1-building-one\", '\\uea42'),\n    BUILDING_THREE(\"bd1-building-three\", '\\uea43'),\n    BUILDING_TWO(\"bd1-building-two\", '\\uea44'),\n    BULLET_MAP(\"bd1-bullet-map\", '\\uea45'),\n    BUS(\"bd1-bus\", '\\uea46'),\n    BUS_ONE(\"bd1-bus-one\", '\\uea47'),\n    BUS_TWO(\"bd1-bus-two\", '\\uea48'),\n    BUTTERFLY(\"bd1-butterfly\", '\\uea49'),\n    BUY(\"bd1-buy\", '\\uea4a'),\n    BYDESIGN(\"bd1-bydesign\", '\\uea4b'),\n    BYE(\"bd1-bye\", '\\uea4c'),\n    BYTEDANCE(\"bd1-bytedance\", '\\uea4d'),\n    BYTEDANCE_APPLETS(\"bd1-bytedance-applets\", '\\uea4e'),\n    BYTEDANCE_MINI_APP(\"bd1-bytedance-mini-app\", '\\uea4f'),\n    CABLE_CAR(\"bd1-cable-car\", '\\uea50'),\n    CACTUS(\"bd1-cactus\", '\\uea51'),\n    CAKE(\"bd1-cake\", '\\uea52'),\n    CAKE_FIVE(\"bd1-cake-five\", '\\uea53'),\n    CAKE_FOUR(\"bd1-cake-four\", '\\uea54'),\n    CAKE_ONE(\"bd1-cake-one\", '\\uea55'),\n    CAKE_THREE(\"bd1-cake-three\", '\\uea56'),\n    CAKE_TWO(\"bd1-cake-two\", '\\uea57'),\n    CALCULATOR(\"bd1-calculator\", '\\uea58'),\n    CALCULATOR_ONE(\"bd1-calculator-one\", '\\uea59'),\n    CALENDAR(\"bd1-calendar\", '\\uea5a'),\n    CALENDAR_DOT(\"bd1-calendar-dot\", '\\uea5b'),\n    CALENDAR_THIRTY(\"bd1-calendar-thirty\", '\\uea5c'),\n    CALENDAR_THIRTY_TWO(\"bd1-calendar-thirty-two\", '\\uea5d'),\n    CALENDAR_THREE(\"bd1-calendar-three\", '\\uea5e'),\n    CAMERA(\"bd1-camera\", '\\uea5f'),\n    CAMERA_FIVE(\"bd1-camera-five\", '\\uea60'),\n    CAMERA_FOUR(\"bd1-camera-four\", '\\uea61'),\n    CAMERA_ONE(\"bd1-camera-one\", '\\uea62'),\n    CAMERA_THREE(\"bd1-camera-three\", '\\uea63'),\n    CAMERA_TWO(\"bd1-camera-two\", '\\uea64'),\n    CAMP(\"bd1-camp\", '\\uea65'),\n    CANCER(\"bd1-cancer\", '\\uea66'),\n    CANDY(\"bd1-candy\", '\\uea67'),\n    CANNED_FRUIT(\"bd1-canned-fruit\", '\\uea68'),\n    CAPRICORNUS(\"bd1-capricornus\", '\\uea69'),\n    CAR(\"bd1-car\", '\\uea6a'),\n    CAR_BATTERY(\"bd1-car-battery\", '\\uea6b'),\n    CARDIOELECTRIC(\"bd1-cardioelectric\", '\\uea6c'),\n    CARD_TWO(\"bd1-card-two\", '\\uea6d'),\n    CAROUSEL(\"bd1-carousel\", '\\uea6e'),\n    CAROUSEL_VIDEO(\"bd1-carousel-video\", '\\uea6f'),\n    CARROT(\"bd1-carrot\", '\\uea70'),\n    CASTLE(\"bd1-castle\", '\\uea71'),\n    CAST_SCREEN(\"bd1-cast-screen\", '\\uea72'),\n    CAT(\"bd1-cat\", '\\uea73'),\n    CATEGORY_MANAGEMENT(\"bd1-category-management\", '\\uea74'),\n    CATTLE(\"bd1-cattle\", '\\uea75'),\n    CATTLE_ZODIAC(\"bd1-cattle-zodiac\", '\\uea76'),\n    CAUTION(\"bd1-caution\", '\\uea77'),\n    CC(\"bd1-cc\", '\\uea78'),\n    CD(\"bd1-cd\", '\\uea79'),\n    CELL(\"bd1-cell\", '\\uea7a'),\n    CE_MARKING(\"bd1-ce-marking\", '\\uea7b'),\n    CENTER_ALIGNMENT(\"bd1-center-alignment\", '\\uea7c'),\n    CERTIFICATE(\"bd1-certificate\", '\\uea7d'),\n    CHAFING_DISH(\"bd1-chafing-dish\", '\\uea7e'),\n    CHAFING_DISH_ONE(\"bd1-chafing-dish-one\", '\\uea7f'),\n    CHAIR(\"bd1-chair\", '\\uea80'),\n    CHAIR_ONE(\"bd1-chair-one\", '\\uea81'),\n    CHANGE(\"bd1-change\", '\\uea82'),\n    CHANGE_DATE_SORT(\"bd1-change-date-sort\", '\\uea83'),\n    CHARGING_TREASURE(\"bd1-charging-treasure\", '\\uea84'),\n    CHART_GRAPH(\"bd1-chart-graph\", '\\uea85'),\n    CHART_HISTOGRAM(\"bd1-chart-histogram\", '\\uea86'),\n    CHART_HISTOGRAM_ONE(\"bd1-chart-histogram-one\", '\\uea87'),\n    CHART_HISTOGRAM_TWO(\"bd1-chart-histogram-two\", '\\uea88'),\n    CHART_LINE(\"bd1-chart-line\", '\\uea89'),\n    CHART_LINE_AREA(\"bd1-chart-line-area\", '\\uea8a'),\n    CHART_PIE(\"bd1-chart-pie\", '\\uea8b'),\n    CHART_PIE_ONE(\"bd1-chart-pie-one\", '\\uea8c'),\n    CHART_PROPORTION(\"bd1-chart-proportion\", '\\uea8d'),\n    CHART_RING(\"bd1-chart-ring\", '\\uea8e'),\n    CHART_SCATTER(\"bd1-chart-scatter\", '\\uea8f'),\n    CHART_STOCK(\"bd1-chart-stock\", '\\uea90'),\n    CHECK(\"bd1-check\", '\\uea91'),\n    CHECKBOX(\"bd1-checkbox\", '\\uea92'),\n    CHECK_CORRECT(\"bd1-check-correct\", '\\uea93'),\n    CHECKERBOARD(\"bd1-checkerboard\", '\\uea94'),\n    CHECK_IN(\"bd1-check-in\", '\\uea95'),\n    CHECKLIST(\"bd1-checklist\", '\\uea96'),\n    CHECK_ONE(\"bd1-check-one\", '\\uea97'),\n    CHECK_SMALL(\"bd1-check-small\", '\\uea98'),\n    CHEESE(\"bd1-cheese\", '\\uea99'),\n    CHEF_HAT(\"bd1-chef-hat\", '\\uea9a'),\n    CHEF_HAT_ONE(\"bd1-chef-hat-one\", '\\uea9b'),\n    CHERRY(\"bd1-cherry\", '\\uea9c'),\n    CHESS(\"bd1-chess\", '\\uea9d'),\n    CHESS_ONE(\"bd1-chess-one\", '\\uea9e'),\n    CHEST(\"bd1-chest\", '\\uea9f'),\n    CHICKEN(\"bd1-chicken\", '\\ueaa0'),\n    CHICKEN_LEG(\"bd1-chicken-leg\", '\\ueaa1'),\n    CHICKEN_ZODIAC(\"bd1-chicken-zodiac\", '\\ueaa2'),\n    CHILDREN_CAP(\"bd1-children-cap\", '\\ueaa3'),\n    CHILDREN_PYRAMID(\"bd1-children-pyramid\", '\\ueaa4'),\n    CHILD_WITH_PACIFIER(\"bd1-child-with-pacifier\", '\\ueaa5'),\n    CHILI(\"bd1-chili\", '\\ueaa6'),\n    CHIMNEY(\"bd1-chimney\", '\\ueaa7'),\n    CHINESE(\"bd1-chinese\", '\\ueaa8'),\n    CHINESE_ONE(\"bd1-chinese-one\", '\\ueaa9'),\n    CHINESE_PAVILION(\"bd1-chinese-pavilion\", '\\ueaaa'),\n    CHIP(\"bd1-chip\", '\\ueaab'),\n    CHOPPING_BOARD(\"bd1-chopping-board\", '\\ueaac'),\n    CHOPSTICKS_FORK(\"bd1-chopsticks-fork\", '\\ueaad'),\n    CHRISTMAS_TREE(\"bd1-christmas-tree\", '\\ueaae'),\n    CHRISTMAS_TREE_ONE(\"bd1-christmas-tree-one\", '\\ueaaf'),\n    CHURCH_ONE(\"bd1-church-one\", '\\ueab0'),\n    CHURCH_TWO(\"bd1-church-two\", '\\ueab1'),\n    CIRCLE_DOUBLE_DOWN(\"bd1-circle-double-down\", '\\ueab2'),\n    CIRCLE_DOUBLE_LEFT(\"bd1-circle-double-left\", '\\ueab3'),\n    CIRCLE_DOUBLE_RIGHT(\"bd1-circle-double-right\", '\\ueab4'),\n    CIRCLE_DOUBLE_UP(\"bd1-circle-double-up\", '\\ueab5'),\n    CIRCLE_FIVE_LINE(\"bd1-circle-five-line\", '\\ueab6'),\n    CIRCLE_FOUR(\"bd1-circle-four\", '\\ueab7'),\n    CIRCLE_FOUR_LINE(\"bd1-circle-four-line\", '\\ueab8'),\n    CIRCLE_HOUSE(\"bd1-circle-house\", '\\ueab9'),\n    CIRCLE_LEFT_DOWN(\"bd1-circle-left-down\", '\\ueaba'),\n    CIRCLE_LEFT_UP(\"bd1-circle-left-up\", '\\ueabb'),\n    CIRCLE_RIGHT_DOWN(\"bd1-circle-right-down\", '\\ueabc'),\n    CIRCLE_RIGHT_UP(\"bd1-circle-right-up\", '\\ueabd'),\n    CIRCLES_AND_TRIANGLES(\"bd1-circles-and-triangles\", '\\ueabe'),\n    CIRCLES_SEVEN(\"bd1-circles-seven\", '\\ueabf'),\n    CIRCLE_THREE(\"bd1-circle-three\", '\\ueac0'),\n    CIRCLE_TWO_LINE(\"bd1-circle-two-line\", '\\ueac1'),\n    CIRCULAR_CONNECTION(\"bd1-circular-connection\", '\\ueac2'),\n    CIRCUS(\"bd1-circus\", '\\ueac3'),\n    CITY(\"bd1-city\", '\\ueac4'),\n    CITY_GATE(\"bd1-city-gate\", '\\ueac5'),\n    CITY_ONE(\"bd1-city-one\", '\\ueac6'),\n    CLAP(\"bd1-clap\", '\\ueac7'),\n    CLASSROOM(\"bd1-classroom\", '\\ueac8'),\n    CLEAR(\"bd1-clear\", '\\ueac9'),\n    CLEAR_FORMAT(\"bd1-clear-format\", '\\ueaca'),\n    CLICK(\"bd1-click\", '\\ueacb'),\n    CLICK_TAP(\"bd1-click-tap\", '\\ueacc'),\n    CLICK_TAP_TWO(\"bd1-click-tap-two\", '\\ueacd'),\n    CLICK_TO_FOLD(\"bd1-click-to-fold\", '\\ueace'),\n    CLIPBOARD(\"bd1-clipboard\", '\\ueacf'),\n    CLOCK_TOWER(\"bd1-clock-tower\", '\\uead0'),\n    CLOSE(\"bd1-close\", '\\uead1'),\n    CLOSE_ONE(\"bd1-close-one\", '\\uead2'),\n    CLOSE_REMIND(\"bd1-close-remind\", '\\uead3'),\n    CLOSE_SMALL(\"bd1-close-small\", '\\uead4'),\n    CLOSE_WIFI(\"bd1-close-wifi\", '\\uead5'),\n    CLOTHES_BRIEFS(\"bd1-clothes-briefs\", '\\uead6'),\n    CLOTHES_CARDIGAN(\"bd1-clothes-cardigan\", '\\uead7'),\n    CLOTHES_CREW_NECK(\"bd1-clothes-crew-neck\", '\\uead8'),\n    CLOTHES_DIAPERS(\"bd1-clothes-diapers\", '\\uead9'),\n    CLOTHES_GLOVES(\"bd1-clothes-gloves\", '\\ueada'),\n    CLOTHES_GLOVES_TWO(\"bd1-clothes-gloves-two\", '\\ueadb'),\n    CLOTHES_HOODIE(\"bd1-clothes-hoodie\", '\\ueadc'),\n    CLOTHES_PANTS(\"bd1-clothes-pants\", '\\ueadd'),\n    CLOTHES_PANTS_SHORT(\"bd1-clothes-pants-short\", '\\ueade'),\n    CLOTHES_PANTS_SWEAT(\"bd1-clothes-pants-sweat\", '\\ueadf'),\n    CLOTHES_SHORT_SLEEVE(\"bd1-clothes-short-sleeve\", '\\ueae0'),\n    CLOTHES_SKATES(\"bd1-clothes-skates\", '\\ueae1'),\n    CLOTHES_SUIT(\"bd1-clothes-suit\", '\\ueae2'),\n    CLOTHES_SWEATER(\"bd1-clothes-sweater\", '\\ueae3'),\n    CLOTHES_TURTLENECK(\"bd1-clothes-turtleneck\", '\\ueae4'),\n    CLOTHES_WINDBREAKER(\"bd1-clothes-windbreaker\", '\\ueae5'),\n    CLOUD_STORAGE(\"bd1-cloud-storage\", '\\ueae6'),\n    CLOUDY(\"bd1-cloudy\", '\\ueae7'),\n    CLOUDY_NIGHT(\"bd1-cloudy-night\", '\\ueae8'),\n    CLUE(\"bd1-clue\", '\\ueae9'),\n    COAT_HANGER(\"bd1-coat-hanger\", '\\ueaea'),\n    COCKTAIL(\"bd1-cocktail\", '\\ueaeb'),\n    COCONUT_TREE(\"bd1-coconut-tree\", '\\ueaec'),\n    CODE(\"bd1-code\", '\\ueaed'),\n    CODE_BRACKETS(\"bd1-code-brackets\", '\\ueaee'),\n    CODE_COMPUTER(\"bd1-code-computer\", '\\ueaef'),\n    CODE_DOWNLOAD(\"bd1-code-download\", '\\ueaf0'),\n    CODE_LAPTOP(\"bd1-code-laptop\", '\\ueaf1'),\n    CODE_ONE(\"bd1-code-one\", '\\ueaf2'),\n    COFFEE_MACHINE(\"bd1-coffee-machine\", '\\ueaf3'),\n    COLA(\"bd1-cola\", '\\ueaf4'),\n    COLLAPSE_TEXT_INPUT(\"bd1-collapse-text-input\", '\\ueaf5'),\n    COLLECT_COMPUTER(\"bd1-collect-computer\", '\\ueaf6'),\n    COLLECTION_FILES(\"bd1-collection-files\", '\\ueaf7'),\n    COLLECTION_RECORDS(\"bd1-collection-records\", '\\ueaf8'),\n    COLLECT_LAPTOP(\"bd1-collect-laptop\", '\\ueaf9'),\n    COLLECT_PICTURE(\"bd1-collect-picture\", '\\ueafa'),\n    COLOR_CARD(\"bd1-color-card\", '\\ueafb'),\n    COLOR_FILTER(\"bd1-color-filter\", '\\ueafc'),\n    COLUMN(\"bd1-column\", '\\ueafd'),\n    COMB(\"bd1-comb\", '\\ueafe'),\n    COME(\"bd1-come\", '\\ueaff'),\n    COMMAND(\"bd1-command\", '\\ueb00'),\n    COMMENT(\"bd1-comment\", '\\ueb01'),\n    COMMENT_ONE(\"bd1-comment-one\", '\\ueb02'),\n    COMMENTS(\"bd1-comments\", '\\ueb03'),\n    COMMODITY(\"bd1-commodity\", '\\ueb04'),\n    COMMUNICATION(\"bd1-communication\", '\\ueb05'),\n    COMMUTER_BAG(\"bd1-commuter-bag\", '\\ueb06'),\n    COMPASS(\"bd1-compass\", '\\ueb07'),\n    COMPASS_ONE(\"bd1-compass-one\", '\\ueb08'),\n    COMPONENTS(\"bd1-components\", '\\ueb09'),\n    COMPOSITION(\"bd1-composition\", '\\ueb0a'),\n    COMPRESSION(\"bd1-compression\", '\\ueb0b'),\n    COMPUTER(\"bd1-computer\", '\\ueb0c'),\n    COMPUTER_ONE(\"bd1-computer-one\", '\\ueb0d'),\n    CONCEPT_SHARING(\"bd1-concept-sharing\", '\\ueb0e'),\n    CONCERN(\"bd1-concern\", '\\ueb0f'),\n    CONDITIONER(\"bd1-conditioner\", '\\ueb10'),\n    CONE(\"bd1-cone\", '\\ueb11'),\n    CONES(\"bd1-cones\", '\\ueb12'),\n    CONFIG(\"bd1-config\", '\\ueb13'),\n    CONFOUNDED_FACE(\"bd1-confounded-face\", '\\ueb14'),\n    CONFUSED_FACE(\"bd1-confused-face\", '\\ueb15'),\n    CONNECT(\"bd1-connect\", '\\ueb16'),\n    CONNECT_ADDRESS_ONE(\"bd1-connect-address-one\", '\\ueb17'),\n    CONNECT_ADDRESS_TWO(\"bd1-connect-address-two\", '\\ueb18'),\n    CONNECTION(\"bd1-connection\", '\\ueb19'),\n    CONNECTION_ARROW(\"bd1-connection-arrow\", '\\ueb1a'),\n    CONNECTION_BOX(\"bd1-connection-box\", '\\ueb1b'),\n    CONNECTION_POINT(\"bd1-connection-point\", '\\ueb1c'),\n    CONNECTION_POINT_TWO(\"bd1-connection-point-two\", '\\ueb1d'),\n    CONSIGNMENT(\"bd1-consignment\", '\\ueb1e'),\n    CONSUME(\"bd1-consume\", '\\ueb1f'),\n    CONTRAST(\"bd1-contrast\", '\\ueb20'),\n    CONTRAST_VIEW(\"bd1-contrast-view\", '\\ueb21'),\n    CONTRAST_VIEW_CIRCLE(\"bd1-contrast-view-circle\", '\\ueb22'),\n    CONTROL(\"bd1-control\", '\\ueb23'),\n    CONVERGING_GATEWAY(\"bd1-converging-gateway\", '\\ueb24'),\n    COOK(\"bd1-cook\", '\\ueb25'),\n    COOKING(\"bd1-cooking\", '\\ueb26'),\n    COOKING_POT(\"bd1-cooking-pot\", '\\ueb27'),\n    COOL(\"bd1-cool\", '\\ueb28'),\n    COOPERATIVE_HANDSHAKE(\"bd1-cooperative-handshake\", '\\ueb29'),\n    COORDINATE_SYSTEM(\"bd1-coordinate-system\", '\\ueb2a'),\n    COPY(\"bd1-copy\", '\\ueb2b'),\n    COPY_LINK(\"bd1-copy-link\", '\\ueb2c'),\n    COPY_ONE(\"bd1-copy-one\", '\\ueb2d'),\n    COPYRIGHT(\"bd1-copyright\", '\\ueb2e'),\n    CORNER_DOWN_LEFT(\"bd1-corner-down-left\", '\\ueb2f'),\n    CORNER_DOWN_RIGHT(\"bd1-corner-down-right\", '\\ueb30'),\n    CORNER_LEFT_DOWN(\"bd1-corner-left-down\", '\\ueb31'),\n    CORNER_LEFT_UP(\"bd1-corner-left-up\", '\\ueb32'),\n    CORNER_RIGHT_DOWN(\"bd1-corner-right-down\", '\\ueb33'),\n    CORNER_RIGHT_UP(\"bd1-corner-right-up\", '\\ueb34'),\n    CORNER_UP_LEFT(\"bd1-corner-up-left\", '\\ueb35'),\n    CORNER_UP_RIGHT(\"bd1-corner-up-right\", '\\ueb36'),\n    CORONAVIRUS(\"bd1-coronavirus\", '\\ueb37'),\n    CORRECT(\"bd1-correct\", '\\ueb38'),\n    COSMETIC_BRUSH(\"bd1-cosmetic-brush\", '\\ueb39'),\n    COUPON(\"bd1-coupon\", '\\ueb3a'),\n    COURT(\"bd1-court\", '\\ueb3b'),\n    CPU(\"bd1-cpu\", '\\ueb3c'),\n    CRAB(\"bd1-crab\", '\\ueb3d'),\n    CREATION_DATE_SORT(\"bd1-creation-date-sort\", '\\ueb3e'),\n    CREATIVE(\"bd1-creative\", '\\ueb3f'),\n    CREDIT(\"bd1-credit\", '\\ueb40'),\n    CRIB(\"bd1-crib\", '\\ueb41'),\n    CROISSANT(\"bd1-croissant\", '\\ueb42'),\n    CROSS_RING(\"bd1-cross-ring\", '\\ueb43'),\n    CROSS_RING_TWO(\"bd1-cross-ring-two\", '\\ueb44'),\n    CROSS_SOCIETY(\"bd1-cross-society\", '\\ueb45'),\n    CROWN(\"bd1-crown\", '\\ueb46'),\n    CROWN_THREE(\"bd1-crown-three\", '\\ueb47'),\n    CROWN_TWO(\"bd1-crown-two\", '\\ueb48'),\n    CRUISE(\"bd1-cruise\", '\\ueb49'),\n    CRYING_BABY(\"bd1-crying-baby\", '\\ueb4a'),\n    CUBE(\"bd1-cube\", '\\ueb4b'),\n    CUBE_FIVE(\"bd1-cube-five\", '\\ueb4c'),\n    CUBE_FOUR(\"bd1-cube-four\", '\\ueb4d'),\n    CUBE_THREE(\"bd1-cube-three\", '\\ueb4e'),\n    CUBE_TWO(\"bd1-cube-two\", '\\ueb4f'),\n    CUP(\"bd1-cup\", '\\ueb50'),\n    CUP_FOUR(\"bd1-cup-four\", '\\ueb51'),\n    CUP_ONE(\"bd1-cup-one\", '\\ueb52'),\n    CURLING(\"bd1-curling\", '\\ueb53'),\n    CURRENCY(\"bd1-currency\", '\\ueb54'),\n    CURVE_ADJUSTMENT(\"bd1-curve-adjustment\", '\\ueb55'),\n    CUSTOMER(\"bd1-customer\", '\\ueb56'),\n    CUTTING(\"bd1-cutting\", '\\ueb57'),\n    CUTTING_ONE(\"bd1-cutting-one\", '\\ueb58'),\n    CUVETTE(\"bd1-cuvette\", '\\ueb59'),\n    CYCLE(\"bd1-cycle\", '\\ueb5a'),\n    CYCLE_ARROW(\"bd1-cycle-arrow\", '\\ueb5b'),\n    CYCLE_MOVEMENT(\"bd1-cycle-movement\", '\\ueb5c'),\n    CYCLE_ONE(\"bd1-cycle-one\", '\\ueb5d'),\n    CYLINDER(\"bd1-cylinder\", '\\ueb5e'),\n    DAMAGE_MAP(\"bd1-damage-map\", '\\ueb5f'),\n    DARK_MODE(\"bd1-dark-mode\", '\\ueb60'),\n    DASHBOARD(\"bd1-dashboard\", '\\ueb61'),\n    DASHBOARD_CAR(\"bd1-dashboard-car\", '\\ueb62'),\n    DASHBOARD_ONE(\"bd1-dashboard-one\", '\\ueb63'),\n    DASHBOARD_TWO(\"bd1-dashboard-two\", '\\ueb64'),\n    DATA(\"bd1-data\", '\\ueb65'),\n    DATA_ALL(\"bd1-data-all\", '\\ueb66'),\n    DATA_ARRIVAL(\"bd1-data-arrival\", '\\ueb67'),\n    DATABASE_ALERT(\"bd1-database-alert\", '\\ueb68'),\n    DATABASE_CODE(\"bd1-database-code\", '\\ueb69'),\n    DATABASE_CONFIG(\"bd1-database-config\", '\\ueb6a'),\n    DATABASE_DOWNLOAD(\"bd1-database-download\", '\\ueb6b'),\n    DATABASE_ENTER(\"bd1-database-enter\", '\\ueb6c'),\n    DATABASE_FAIL(\"bd1-database-fail\", '\\ueb6d'),\n    DATABASE_FIRST(\"bd1-database-first\", '\\ueb6e'),\n    DATABASE_FORBID(\"bd1-database-forbid\", '\\ueb6f'),\n    DATABASE_LOCK(\"bd1-database-lock\", '\\ueb70'),\n    DATABASE_NETWORK(\"bd1-database-network\", '\\ueb71'),\n    DATABASE_NETWORK_POINT(\"bd1-database-network-point\", '\\ueb72'),\n    DATABASE_POINT(\"bd1-database-point\", '\\ueb73'),\n    DATABASE_POSITION(\"bd1-database-position\", '\\ueb74'),\n    DATABASE_POWER(\"bd1-database-power\", '\\ueb75'),\n    DATABASE_PROPORTION(\"bd1-database-proportion\", '\\ueb76'),\n    DATABASE_SEARCH(\"bd1-database-search\", '\\ueb77'),\n    DATABASE_SETTING(\"bd1-database-setting\", '\\ueb78'),\n    DATABASE_SUCCESS(\"bd1-database-success\", '\\ueb79'),\n    DATABASE_SYNC(\"bd1-database-sync\", '\\ueb7a'),\n    DATABASE_TIME(\"bd1-database-time\", '\\ueb7b'),\n    DATA_DISPLAY(\"bd1-data-display\", '\\ueb7c'),\n    DATA_FILE(\"bd1-data-file\", '\\ueb7d'),\n    DATA_FOUR(\"bd1-data-four\", '\\ueb7e'),\n    DATA_LOCK(\"bd1-data-lock\", '\\ueb7f'),\n    DATA_NULL(\"bd1-data-null\", '\\ueb80'),\n    DATA_ONE(\"bd1-data-one\", '\\ueb81'),\n    DATA_SCREEN(\"bd1-data-screen\", '\\ueb82'),\n    DATA_SERVER(\"bd1-data-server\", '\\ueb83'),\n    DATA_SHEET(\"bd1-data-sheet\", '\\ueb84'),\n    DATA_SWITCHING(\"bd1-data-switching\", '\\ueb85'),\n    DATA_THREE(\"bd1-data-three\", '\\ueb86'),\n    DATA_TWO(\"bd1-data-two\", '\\ueb87'),\n    DATA_USER(\"bd1-data-user\", '\\ueb88'),\n    DATE_COMES_BACK(\"bd1-date-comes-back\", '\\ueb89'),\n    DEADLINE_SORT(\"bd1-deadline-sort\", '\\ueb8a'),\n    DEATH_STAR(\"bd1-death-star\", '\\ueb8b'),\n    DEEPLINK(\"bd1-deeplink\", '\\ueb8c'),\n    DEER(\"bd1-deer\", '\\ueb8d'),\n    DEGREE_HAT(\"bd1-degree-hat\", '\\ueb8e'),\n    DELETE(\"bd1-delete\", '\\ueb8f'),\n    DELETE_FIVE(\"bd1-delete-five\", '\\ueb90'),\n    DELETE_FOUR(\"bd1-delete-four\", '\\ueb91'),\n    DELETE_KEY(\"bd1-delete-key\", '\\ueb92'),\n    DELETE_MODE(\"bd1-delete-mode\", '\\ueb93'),\n    DELETE_ONE(\"bd1-delete-one\", '\\ueb94'),\n    DELETE_THEMES(\"bd1-delete-themes\", '\\ueb95'),\n    DELETE_THREE(\"bd1-delete-three\", '\\ueb96'),\n    DELETE_TWO(\"bd1-delete-two\", '\\ueb97'),\n    DELIVERY(\"bd1-delivery\", '\\ueb98'),\n    DEPOSIT(\"bd1-deposit\", '\\ueb99'),\n    DESCEND(\"bd1-descend\", '\\ueb9a'),\n    DESK_LAMP(\"bd1-desk-lamp\", '\\ueb9b'),\n    DESK_LAMP_ONE(\"bd1-desk-lamp-one\", '\\ueb9c'),\n    DETECTION(\"bd1-detection\", '\\ueb9d'),\n    DEVICES(\"bd1-devices\", '\\ueb9e'),\n    DIAMOND(\"bd1-diamond\", '\\ueb9f'),\n    DIAMOND_NECKLACE(\"bd1-diamond-necklace\", '\\ueba0'),\n    DIAMOND_ONE(\"bd1-diamond-one\", '\\ueba1'),\n    DIAMOND_RING(\"bd1-diamond-ring\", '\\ueba2'),\n    DIAMONDS(\"bd1-diamonds\", '\\ueba3'),\n    DIAMOND_THREE(\"bd1-diamond-three\", '\\ueba4'),\n    DIAMOND_TWO(\"bd1-diamond-two\", '\\ueba5'),\n    DIANZIQIAN(\"bd1-dianziqian\", '\\ueba6'),\n    DIAPERS_ONE(\"bd1-diapers-one\", '\\ueba7'),\n    DIFFERENCE_SET(\"bd1-difference-set\", '\\ueba8'),\n    DIGITAL_WATCHES(\"bd1-digital-watches\", '\\ueba9'),\n    DIRECTION(\"bd1-direction\", '\\uebaa'),\n    DIRECTION_ADJUSTMENT(\"bd1-direction-adjustment\", '\\uebab'),\n    DIRECTION_ADJUSTMENT_THREE(\"bd1-direction-adjustment-three\", '\\uebac'),\n    DIRECTION_ADJUSTMENT_TWO(\"bd1-direction-adjustment-two\", '\\uebad'),\n    DISABALED_WEB(\"bd1-disabaled-web\", '\\uebae'),\n    DISABLED_COMPUTER(\"bd1-disabled-computer\", '\\uebaf'),\n    DISABLED_LAPTOP(\"bd1-disabled-laptop\", '\\uebb0'),\n    DISABLED_PICTURE(\"bd1-disabled-picture\", '\\uebb1'),\n    DISAPPOINTED_FACE(\"bd1-disappointed-face\", '\\uebb2'),\n    DISCOVERY_INDEX(\"bd1-discovery-index\", '\\uebb3'),\n    DISK(\"bd1-disk\", '\\uebb4'),\n    DISK_ONE(\"bd1-disk-one\", '\\uebb5'),\n    DISK_TWO(\"bd1-disk-two\", '\\uebb6'),\n    DISLIKE(\"bd1-dislike\", '\\uebb7'),\n    DISLIKE_TWO(\"bd1-dislike-two\", '\\uebb8'),\n    DISPLAY(\"bd1-display\", '\\uebb9'),\n    DISTORTION(\"bd1-distortion\", '\\uebba'),\n    DISTRAUGHT_FACE(\"bd1-distraught-face\", '\\uebbb'),\n    DISTRIBUTE_HORIZONTALLY(\"bd1-distribute-horizontally\", '\\uebbc'),\n    DISTRIBUTE_HORIZONTAL_SPACING(\"bd1-distribute-horizontal-spacing\", '\\uebbd'),\n    DISTRIBUTE_VERTICALLY(\"bd1-distribute-vertically\", '\\uebbe'),\n    DISTRIBUTE_VERTICAL_SPACING(\"bd1-distribute-vertical-spacing\", '\\uebbf'),\n    DIVIDING_LINE(\"bd1-dividing-line\", '\\uebc0'),\n    DIVIDING_LINE_ONE(\"bd1-dividing-line-one\", '\\uebc1'),\n    DIVING(\"bd1-diving\", '\\uebc2'),\n    DIVING_BOTTLE(\"bd1-diving-bottle\", '\\uebc3'),\n    DIVING_SUIT(\"bd1-diving-suit\", '\\uebc4'),\n    DIVISION(\"bd1-division\", '\\uebc5'),\n    DIZZY_FACE(\"bd1-dizzy-face\", '\\uebc6'),\n    DOC_ADD(\"bd1-doc-add\", '\\uebc7'),\n    DOC_DETAIL(\"bd1-doc-detail\", '\\uebc8'),\n    DOC_FAIL(\"bd1-doc-fail\", '\\uebc9'),\n    DOC_SEARCH(\"bd1-doc-search\", '\\uebca'),\n    DOC_SEARCH_TWO(\"bd1-doc-search-two\", '\\uebcb'),\n    DOC_SUCCESS(\"bd1-doc-success\", '\\uebcc'),\n    DOCUMENT_FOLDER(\"bd1-document-folder\", '\\uebcd'),\n    DOG(\"bd1-dog\", '\\uebce'),\n    DOG_ZODIAC(\"bd1-dog-zodiac\", '\\uebcf'),\n    DOLLAR(\"bd1-dollar\", '\\uebd0'),\n    DOLPHIN(\"bd1-dolphin\", '\\uebd1'),\n    DOME(\"bd1-dome\", '\\uebd2'),\n    DOME_LIGHT(\"bd1-dome-light\", '\\uebd3'),\n    DONE_ALL(\"bd1-done-all\", '\\uebd4'),\n    DONGCHEDI(\"bd1-dongchedi\", '\\uebd5'),\n    DOOR_HANDLE(\"bd1-door-handle\", '\\uebd6'),\n    DOT(\"bd1-dot\", '\\uebd7'),\n    DOUBLE_BED(\"bd1-double-bed\", '\\uebd8'),\n    DOUBLE_DOWN(\"bd1-double-down\", '\\uebd9'),\n    DOUBLE_LEFT(\"bd1-double-left\", '\\uebda'),\n    DOUBLE_RIGHT(\"bd1-double-right\", '\\uebdb'),\n    DOUBLE_UP(\"bd1-double-up\", '\\uebdc'),\n    DOUGHNUT(\"bd1-doughnut\", '\\uebdd'),\n    DOWN(\"bd1-down\", '\\uebde'),\n    DOWN_C(\"bd1-down-c\", '\\uebdf'),\n    DOWNLOAD(\"bd1-download\", '\\uebe0'),\n    DOWNLOAD_COMPUTER(\"bd1-download-computer\", '\\uebe1'),\n    DOWNLOAD_FOUR(\"bd1-download-four\", '\\uebe2'),\n    DOWNLOAD_LAPTOP(\"bd1-download-laptop\", '\\uebe3'),\n    DOWNLOAD_ONE(\"bd1-download-one\", '\\uebe4'),\n    DOWNLOAD_THREE(\"bd1-download-three\", '\\uebe5'),\n    DOWNLOAD_TWO(\"bd1-download-two\", '\\uebe6'),\n    DOWNLOAD_WEB(\"bd1-download-web\", '\\uebe7'),\n    DOWN_ONE(\"bd1-down-one\", '\\uebe8'),\n    DOWN_PICTURE(\"bd1-down-picture\", '\\uebe9'),\n    DOWN_SMALL(\"bd1-down-small\", '\\uebea'),\n    DOWN_SQUARE(\"bd1-down-square\", '\\uebeb'),\n    DOWN_TWO(\"bd1-down-two\", '\\uebec'),\n    DRAG(\"bd1-drag\", '\\uebed'),\n    DRAGON_ZODIAC(\"bd1-dragon-zodiac\", '\\uebee'),\n    DRIBBLE(\"bd1-dribble\", '\\uebef'),\n    DRINK(\"bd1-drink\", '\\uebf0'),\n    DRONE(\"bd1-drone\", '\\uebf1'),\n    DRONE_ONE(\"bd1-drone-one\", '\\uebf2'),\n    DROPBOX(\"bd1-dropbox\", '\\uebf3'),\n    DROP_DOWN_LIST(\"bd1-drop-down-list\", '\\uebf4'),\n    DROP_SHADOW_DOWN(\"bd1-drop-shadow-down\", '\\uebf5'),\n    DROP_SHADOW_LEFT(\"bd1-drop-shadow-left\", '\\uebf6'),\n    DROP_SHADOW_RIGHT(\"bd1-drop-shadow-right\", '\\uebf7'),\n    DROP_SHADOW_UP(\"bd1-drop-shadow-up\", '\\uebf8'),\n    DRUMSTICK(\"bd1-drumstick\", '\\uebf9'),\n    DUBAI(\"bd1-dubai\", '\\uebfa'),\n    DUCK(\"bd1-duck\", '\\uebfb'),\n    DUMBBELL(\"bd1-dumbbell\", '\\uebfc'),\n    DUMBBEL_LINE(\"bd1-dumbbel-line\", '\\uebfd'),\n    DVI(\"bd1-dvi\", '\\uebfe'),\n    EAGLE(\"bd1-eagle\", '\\uebff'),\n    EARTH(\"bd1-earth\", '\\uec00'),\n    EASY(\"bd1-easy\", '\\uec01'),\n    ECG(\"bd1-ecg\", '\\uec02'),\n    EDIT(\"bd1-edit\", '\\uec03'),\n    EDITING(\"bd1-editing\", '\\uec04'),\n    EDIT_MOVIE(\"bd1-edit-movie\", '\\uec05'),\n    EDIT_NAME(\"bd1-edit-name\", '\\uec06'),\n    EDIT_ONE(\"bd1-edit-one\", '\\uec07'),\n    EDITOR(\"bd1-editor\", '\\uec08'),\n    EDIT_TWO(\"bd1-edit-two\", '\\uec09'),\n    EEG(\"bd1-eeg\", '\\uec0a'),\n    EFFECTS(\"bd1-effects\", '\\uec0b'),\n    EFFERENT_FOUR(\"bd1-efferent-four\", '\\uec0c'),\n    EFFERENT_THREE(\"bd1-efferent-three\", '\\uec0d'),\n    EGG(\"bd1-egg\", '\\uec0e'),\n    EGG_ONE(\"bd1-egg-one\", '\\uec0f'),\n    EGGPLANT(\"bd1-eggplant\", '\\uec10'),\n    EIFFEL_TOWER(\"bd1-eiffel-tower\", '\\uec11'),\n    EIGHT_KEY(\"bd1-eight-key\", '\\uec12'),\n    ELECTRIC_DRILL(\"bd1-electric-drill\", '\\uec13'),\n    ELECTRIC_IRON(\"bd1-electric-iron\", '\\uec14'),\n    ELECTRIC_WAVE(\"bd1-electric-wave\", '\\uec15'),\n    ELECTROCARDIOGRAM(\"bd1-electrocardiogram\", '\\uec16'),\n    ELECTRONIC_DOOR_LOCK(\"bd1-electronic-door-lock\", '\\uec17'),\n    ELECTRONIC_LOCKS_CLOSE(\"bd1-electronic-locks-close\", '\\uec18'),\n    ELECTRONIC_LOCKS_OPEN(\"bd1-electronic-locks-open\", '\\uec19'),\n    ELECTRONIC_PEN(\"bd1-electronic-pen\", '\\uec1a'),\n    ELEPHANT(\"bd1-elephant\", '\\uec1b'),\n    ELEVATOR(\"bd1-elevator\", '\\uec1c'),\n    EMAIL_BLOCK(\"bd1-email-block\", '\\uec1d'),\n    EMAIL_DELECT(\"bd1-email-delect\", '\\uec1e'),\n    EMAIL_DOWN(\"bd1-email-down\", '\\uec1f'),\n    EMAIL_FAIL(\"bd1-email-fail\", '\\uec20'),\n    EMAIL_LOCK(\"bd1-email-lock\", '\\uec21'),\n    EMAIL_PUSH(\"bd1-email-push\", '\\uec22'),\n    EMAIL_SEARCH(\"bd1-email-search\", '\\uec23'),\n    EMAIL_SECURITY(\"bd1-email-security\", '\\uec24'),\n    EMAIL_SUCCESSFULLY(\"bd1-email-successfully\", '\\uec25'),\n    EMOTION_HAPPY(\"bd1-emotion-happy\", '\\uec26'),\n    EMOTION_UNHAPPY(\"bd1-emotion-unhappy\", '\\uec27'),\n    EMPTY(\"bd1-empty\", '\\uec28'),\n    ENDLESS(\"bd1-endless\", '\\uec29'),\n    ENDOCRINE(\"bd1-endocrine\", '\\uec2a'),\n    ENDPOINT_DISPLACEMENT(\"bd1-endpoint-displacement\", '\\uec2b'),\n    ENDPOINT_FLAT(\"bd1-endpoint-flat\", '\\uec2c'),\n    ENDPOINT_ROUND(\"bd1-endpoint-round\", '\\uec2d'),\n    ENDPOINT_SQUARE(\"bd1-endpoint-square\", '\\uec2e'),\n    END_TIME_SORT(\"bd1-end-time-sort\", '\\uec2f'),\n    ENERGY_SOCKET(\"bd1-energy-socket\", '\\uec30'),\n    ENGINEERING_BRAND(\"bd1-engineering-brand\", '\\uec31'),\n    ENGINEERING_VEHICLE(\"bd1-engineering-vehicle\", '\\uec32'),\n    ENGLISH(\"bd1-english\", '\\uec33'),\n    ENGLISH_MUSTACHE(\"bd1-english-mustache\", '\\uec34'),\n    ENQUIRE(\"bd1-enquire\", '\\uec35'),\n    ENTER_KEY(\"bd1-enter-key\", '\\uec36'),\n    ENTER_KEY_ONE(\"bd1-enter-key-one\", '\\uec37'),\n    ENTERTAINMENT(\"bd1-entertainment\", '\\uec38'),\n    ENTER_THE_KEYBOARD(\"bd1-enter-the-keyboard\", '\\uec39'),\n    ENVELOPE(\"bd1-envelope\", '\\uec3a'),\n    ENVELOPE_ONE(\"bd1-envelope-one\", '\\uec3b'),\n    EQUALIZER(\"bd1-equalizer\", '\\uec3c'),\n    EQUAL_RATIO(\"bd1-equal-ratio\", '\\uec3d'),\n    ERASE(\"bd1-erase\", '\\uec3e'),\n    ERROR(\"bd1-error\", '\\uec3f'),\n    ERROR_COMPUTER(\"bd1-error-computer\", '\\uec40'),\n    ERROR_PICTURE(\"bd1-error-picture\", '\\uec41'),\n    ERROR_PROMPT(\"bd1-error-prompt\", '\\uec42'),\n    ESCALATORS(\"bd1-escalators\", '\\uec43'),\n    ETHERNET_OFF(\"bd1-ethernet-off\", '\\uec44'),\n    ETHERNET_ON(\"bd1-ethernet-on\", '\\uec45'),\n    EVERY_USER(\"bd1-every-user\", '\\uec46'),\n    EXCEL(\"bd1-excel\", '\\uec47'),\n    EXCEL_ONE(\"bd1-excel-one\", '\\uec48'),\n    EXCHANGE(\"bd1-exchange\", '\\uec49'),\n    EXCHANGE_FOUR(\"bd1-exchange-four\", '\\uec4a'),\n    EXCHANGE_ONE(\"bd1-exchange-one\", '\\uec4b'),\n    EXCHANGE_THREE(\"bd1-exchange-three\", '\\uec4c'),\n    EXCHANGE_TWO(\"bd1-exchange-two\", '\\uec4d'),\n    EXCLUDE_SELECTION(\"bd1-exclude-selection\", '\\uec4e'),\n    EXCLUSIVE_GATEWAY(\"bd1-exclusive-gateway\", '\\uec4f'),\n    EXPAND_DOWN(\"bd1-expand-down\", '\\uec50'),\n    EXPAND_DOWN_ONE(\"bd1-expand-down-one\", '\\uec51'),\n    EXPAND_LEFT(\"bd1-expand-left\", '\\uec52'),\n    EXPAND_LEFT_AND_RIGHT(\"bd1-expand-left-and-right\", '\\uec53'),\n    EXPAND_RIGHT(\"bd1-expand-right\", '\\uec54'),\n    EXPAND_TEXT_INPUT(\"bd1-expand-text-input\", '\\uec55'),\n    EXPAND_UP(\"bd1-expand-up\", '\\uec56'),\n    EXPENSES(\"bd1-expenses\", '\\uec57'),\n    EXPENSES_ONE(\"bd1-expenses-one\", '\\uec58'),\n    EXPERIMENT(\"bd1-experiment\", '\\uec59'),\n    EXPERIMENT_ONE(\"bd1-experiment-one\", '\\uec5a'),\n    EXPORT(\"bd1-export\", '\\uec5b'),\n    EXPRESS_DELIVERY(\"bd1-express-delivery\", '\\uec5c'),\n    EXPRESSIONLESS_FACE(\"bd1-expressionless-face\", '\\uec5d'),\n    EXTEND(\"bd1-extend\", '\\uec5e'),\n    EXTERNAL_TRANSMISSION(\"bd1-external-transmission\", '\\uec5f'),\n    EYEBROW(\"bd1-eyebrow\", '\\uec60'),\n    EYES(\"bd1-eyes\", '\\uec61'),\n    FACEBOOK(\"bd1-facebook\", '\\uec62'),\n    FACEBOOK_ONE(\"bd1-facebook-one\", '\\uec63'),\n    FACE_POWDER(\"bd1-face-powder\", '\\uec64'),\n    FACE_RECOGNITION(\"bd1-face-recognition\", '\\uec65'),\n    FACETIME(\"bd1-facetime\", '\\uec66'),\n    FACEU(\"bd1-faceu\", '\\uec67'),\n    FACE_WITHOUT_MOUTH(\"bd1-face-without-mouth\", '\\uec68'),\n    FACE_WITH_SMILING_OPEN_EYES(\"bd1-face-with-smiling-open-eyes\", '\\uec69'),\n    FACIAL_CLEANSER(\"bd1-facial-cleanser\", '\\uec6a'),\n    FACIAL_MASK(\"bd1-facial-mask\", '\\uec6b'),\n    FACTORY_BUILDING(\"bd1-factory-building\", '\\uec6c'),\n    FAIL_PICTURE(\"bd1-fail-picture\", '\\uec6d'),\n    FAMILY(\"bd1-family\", '\\uec6e'),\n    FAN(\"bd1-fan\", '\\uec6f'),\n    FANQIEXIAOSHUO(\"bd1-fanqiexiaoshuo\", '\\uec70'),\n    FEELGOOD(\"bd1-feelgood\", '\\uec71'),\n    FEELGOOD_ONE(\"bd1-feelgood-one\", '\\uec72'),\n    F_EIGHT_KEY(\"bd1-f-eight-key\", '\\uec73'),\n    FEIYU(\"bd1-feiyu\", '\\uec74'),\n    FEMALE(\"bd1-female\", '\\uec75'),\n    FENCE_ONE(\"bd1-fence-one\", '\\uec76'),\n    FENCE_TWO(\"bd1-fence-two\", '\\uec77'),\n    FERRIS_WHEEL(\"bd1-ferris-wheel\", '\\uec78'),\n    F_FIVE_KEY(\"bd1-f-five-key\", '\\uec79'),\n    F_FOUR_KEY(\"bd1-f-four-key\", '\\uec7a'),\n    FIGMA(\"bd1-figma\", '\\uec7b'),\n    FIGMA_COMPONENT(\"bd1-figma-component\", '\\uec7c'),\n    FIGMA_FLATTEN_SELECTION(\"bd1-figma-flatten-selection\", '\\uec7d'),\n    FIGMA_MASK(\"bd1-figma-mask\", '\\uec7e'),\n    FIGMA_RESET_INSTANCE(\"bd1-figma-reset-instance\", '\\uec7f'),\n    FILE_ADDITION(\"bd1-file-addition\", '\\uec80'),\n    FILE_ADDITION_ONE(\"bd1-file-addition-one\", '\\uec81'),\n    FILE_CABINET(\"bd1-file-cabinet\", '\\uec82'),\n    FILE_CODE(\"bd1-file-code\", '\\uec83'),\n    FILE_CODE_ONE(\"bd1-file-code-one\", '\\uec84'),\n    FILE_COLLECTION(\"bd1-file-collection\", '\\uec85'),\n    FILE_COLLECTION_ONE(\"bd1-file-collection-one\", '\\uec86'),\n    FILE_CONVERSION(\"bd1-file-conversion\", '\\uec87'),\n    FILE_CONVERSION_ONE(\"bd1-file-conversion-one\", '\\uec88'),\n    FILE_DATE(\"bd1-file-date\", '\\uec89'),\n    FILE_DATE_ONE(\"bd1-file-date-one\", '\\uec8a'),\n    FILE_DISPLAY(\"bd1-file-display\", '\\uec8b'),\n    FILE_DISPLAY_ONE(\"bd1-file-display-one\", '\\uec8c'),\n    FILE_DOC(\"bd1-file-doc\", '\\uec8d'),\n    FILE_EDITING(\"bd1-file-editing\", '\\uec8e'),\n    FILE_EDITING_ONE(\"bd1-file-editing-one\", '\\uec8f'),\n    FILE_EXCEL(\"bd1-file-excel\", '\\uec90'),\n    FILE_FAILED(\"bd1-file-failed\", '\\uec91'),\n    FILE_FAILED_ONE(\"bd1-file-failed-one\", '\\uec92'),\n    FILE_FOCUS(\"bd1-file-focus\", '\\uec93'),\n    FILE_FOCUS_ONE(\"bd1-file-focus-one\", '\\uec94'),\n    FILE_GIF(\"bd1-file-gif\", '\\uec95'),\n    FILE_HASH(\"bd1-file-hash\", '\\uec96'),\n    FILE_HASH_ONE(\"bd1-file-hash-one\", '\\uec97'),\n    FILE_HIDING(\"bd1-file-hiding\", '\\uec98'),\n    FILE_HIDING_ONE(\"bd1-file-hiding-one\", '\\uec99'),\n    FILE_JPG(\"bd1-file-jpg\", '\\uec9a'),\n    FILE_LOCK(\"bd1-file-lock\", '\\uec9b'),\n    FILE_LOCK_ONE(\"bd1-file-lock-one\", '\\uec9c'),\n    FILE_MUSIC(\"bd1-file-music\", '\\uec9d'),\n    FILE_MUSIC_ONE(\"bd1-file-music-one\", '\\uec9e'),\n    FILE_PDF(\"bd1-file-pdf\", '\\uec9f'),\n    FILE_PDF_ONE(\"bd1-file-pdf-one\", '\\ueca0'),\n    FILE_PPT(\"bd1-file-ppt\", '\\ueca1'),\n    FILE_PROTECTION(\"bd1-file-protection\", '\\ueca2'),\n    FILE_PROTECTION_ONE(\"bd1-file-protection-one\", '\\ueca3'),\n    FILE_QUALITY(\"bd1-file-quality\", '\\ueca4'),\n    FILE_QUALITY_ONE(\"bd1-file-quality-one\", '\\ueca5'),\n    FILE_QUESTION(\"bd1-file-question\", '\\ueca6'),\n    FILE_REMOVAL(\"bd1-file-removal\", '\\ueca7'),\n    FILE_REMOVAL_ONE(\"bd1-file-removal-one\", '\\ueca8'),\n    FILE_SEARCH(\"bd1-file-search\", '\\ueca9'),\n    FILE_SEARCH_ONE(\"bd1-file-search-one\", '\\uecaa'),\n    FILE_SEARCH_TWO(\"bd1-file-search-two\", '\\uecab'),\n    FILE_SETTINGS(\"bd1-file-settings\", '\\uecac'),\n    FILE_SETTINGS_ONE(\"bd1-file-settings-one\", '\\uecad'),\n    FILE_STAFF(\"bd1-file-staff\", '\\uecae'),\n    FILE_STAFF_ONE(\"bd1-file-staff-one\", '\\uecaf'),\n    FILE_SUCCESS(\"bd1-file-success\", '\\uecb0'),\n    FILE_SUCCESS_ONE(\"bd1-file-success-one\", '\\uecb1'),\n    FILE_TEXT(\"bd1-file-text\", '\\uecb2'),\n    FILE_TEXT_ONE(\"bd1-file-text-one\", '\\uecb3'),\n    FILE_TIPS(\"bd1-file-tips\", '\\uecb4'),\n    FILE_TIPS_ONE(\"bd1-file-tips-one\", '\\uecb5'),\n    FILE_TXT(\"bd1-file-txt\", '\\uecb6'),\n    FILE_TXT_ONE(\"bd1-file-txt-one\", '\\uecb7'),\n    FILE_WITHDRAWAL(\"bd1-file-withdrawal\", '\\uecb8'),\n    FILE_WITHDRAWAL_ONE(\"bd1-file-withdrawal-one\", '\\uecb9'),\n    FILE_WORD(\"bd1-file-word\", '\\uecba'),\n    FILE_ZIP(\"bd1-file-zip\", '\\uecbb'),\n    FILL(\"bd1-fill\", '\\uecbc'),\n    FILM(\"bd1-film\", '\\uecbd'),\n    FILTER(\"bd1-filter\", '\\uecbe'),\n    FILTER_ONE(\"bd1-filter-one\", '\\uecbf'),\n    FINANCE(\"bd1-finance\", '\\uecc0'),\n    FINANCING(\"bd1-financing\", '\\uecc1'),\n    FINANCING_ONE(\"bd1-financing-one\", '\\uecc2'),\n    FINANCING_TWO(\"bd1-financing-two\", '\\uecc3'),\n    FIND(\"bd1-find\", '\\uecc4'),\n    FIND_ONE(\"bd1-find-one\", '\\uecc5'),\n    FINGERNAIL(\"bd1-fingernail\", '\\uecc6'),\n    FINGERPRINT(\"bd1-fingerprint\", '\\uecc7'),\n    FINGERPRINT_THREE(\"bd1-fingerprint-three\", '\\uecc8'),\n    FINGERPRINT_TWO(\"bd1-fingerprint-two\", '\\uecc9'),\n    FIRE(\"bd1-fire\", '\\uecca'),\n    FIRE_EXTINGUISHER(\"bd1-fire-extinguisher\", '\\ueccb'),\n    FIRE_EXTINGUISHER_ONE(\"bd1-fire-extinguisher-one\", '\\ueccc'),\n    FIRE_TWO(\"bd1-fire-two\", '\\ueccd'),\n    FIREWORKS(\"bd1-fireworks\", '\\uecce'),\n    FIRST(\"bd1-first\", '\\ueccf'),\n    FIRST_AID_KIT(\"bd1-first-aid-kit\", '\\uecd0'),\n    FISH(\"bd1-fish\", '\\uecd1'),\n    FISHING(\"bd1-fishing\", '\\uecd2'),\n    FISH_ONE(\"bd1-fish-one\", '\\uecd3'),\n    FIST(\"bd1-fist\", '\\uecd4'),\n    FITNESS(\"bd1-fitness\", '\\uecd5'),\n    FIVE(\"bd1-five\", '\\uecd6'),\n    FIVE_ELLIPSES(\"bd1-five-ellipses\", '\\uecd7'),\n    FIVE_FIVE(\"bd1-five-five\", '\\uecd8'),\n    FIVE_KEY(\"bd1-five-key\", '\\uecd9'),\n    FIVE_STAR_BADGE(\"bd1-five-star-badge\", '\\uecda'),\n    FLAG(\"bd1-flag\", '\\uecdb'),\n    FLASHLAMP(\"bd1-flashlamp\", '\\uecdc'),\n    FLASHLIGHT(\"bd1-flashlight\", '\\uecdd'),\n    FLASH_PAYMENT(\"bd1-flash-payment\", '\\uecde'),\n    FLASK(\"bd1-flask\", '\\uecdf'),\n    FLIGHT_AIRFLOW(\"bd1-flight-airflow\", '\\uece0'),\n    FLIGHT_SAFETY(\"bd1-flight-safety\", '\\uece1'),\n    FLIP_CAMERA(\"bd1-flip-camera\", '\\uece2'),\n    FLIP_HORIZONTALLY(\"bd1-flip-horizontally\", '\\uece3'),\n    FLIP_VERTICALLY(\"bd1-flip-vertically\", '\\uece4'),\n    FLIRT(\"bd1-flirt\", '\\uece5'),\n    FLOAT(\"bd1-float\", '\\uece6'),\n    FLOOR_TILE(\"bd1-floor-tile\", '\\uece7'),\n    FM(\"bd1-fm\", '\\uece8'),\n    F_NINE_KEY(\"bd1-f-nine-key\", '\\uece9'),\n    F_N_KEY(\"bd1-f-n-key\", '\\uecea'),\n    FOCUS(\"bd1-focus\", '\\ueceb'),\n    FOCUS_ONE(\"bd1-focus-one\", '\\uecec'),\n    FOG(\"bd1-fog\", '\\ueced'),\n    FOLDER(\"bd1-folder\", '\\uecee'),\n    FOLDER_BLOCK(\"bd1-folder-block\", '\\uecef'),\n    FOLDER_BLOCK_ONE(\"bd1-folder-block-one\", '\\uecf0'),\n    FOLDER_CLOSE(\"bd1-folder-close\", '\\uecf1'),\n    FOLDER_CODE(\"bd1-folder-code\", '\\uecf2'),\n    FOLDER_CODE_ONE(\"bd1-folder-code-one\", '\\uecf3'),\n    FOLDER_CONVERSION(\"bd1-folder-conversion\", '\\uecf4'),\n    FOLDER_CONVERSION_ONE(\"bd1-folder-conversion-one\", '\\uecf5'),\n    FOLDER_DOWNLOAD(\"bd1-folder-download\", '\\uecf6'),\n    FOLDER_FAILED(\"bd1-folder-failed\", '\\uecf7'),\n    FOLDER_FAILED_ONE(\"bd1-folder-failed-one\", '\\uecf8'),\n    FOLDER_FOCUS(\"bd1-folder-focus\", '\\uecf9'),\n    FOLDER_FOCUS_ONE(\"bd1-folder-focus-one\", '\\uecfa'),\n    FOLDER_LOCK(\"bd1-folder-lock\", '\\uecfb'),\n    FOLDER_LOCK_ONE(\"bd1-folder-lock-one\", '\\uecfc'),\n    FOLDER_MINUS(\"bd1-folder-minus\", '\\uecfd'),\n    FOLDER_MUSIC(\"bd1-folder-music\", '\\uecfe'),\n    FOLDER_MUSIC_ONE(\"bd1-folder-music-one\", '\\uecff'),\n    FOLDER_ONE(\"bd1-folder-one\", '\\ued00'),\n    FOLDER_OPEN(\"bd1-folder-open\", '\\ued01'),\n    FOLDER_PLUS(\"bd1-folder-plus\", '\\ued02'),\n    FOLDER_PROTECTION(\"bd1-folder-protection\", '\\ued03'),\n    FOLDER_PROTECTION_ONE(\"bd1-folder-protection-one\", '\\ued04'),\n    FOLDER_QUALITY(\"bd1-folder-quality\", '\\ued05'),\n    FOLDER_QUALITY_ONE(\"bd1-folder-quality-one\", '\\ued06'),\n    FOLDER_SEARCH(\"bd1-folder-search\", '\\ued07'),\n    FOLDER_SEARCH_ONE(\"bd1-folder-search-one\", '\\ued08'),\n    FOLDER_SETTINGS(\"bd1-folder-settings\", '\\ued09'),\n    FOLDER_SETTINGS_ONE(\"bd1-folder-settings-one\", '\\ued0a'),\n    FOLDER_SUCCESS(\"bd1-folder-success\", '\\ued0b'),\n    FOLDER_SUCCESS_ONE(\"bd1-folder-success-one\", '\\ued0c'),\n    FOLDER_UPLOAD(\"bd1-folder-upload\", '\\ued0d'),\n    FOLDER_WITHDRAWAL(\"bd1-folder-withdrawal\", '\\ued0e'),\n    FOLDER_WITHDRAWAL_ONE(\"bd1-folder-withdrawal-one\", '\\ued0f'),\n    FOLD_UP_ONE(\"bd1-fold-up-one\", '\\ued10'),\n    FOLLOW_UP_DATE_SORT(\"bd1-follow-up-date-sort\", '\\ued11'),\n    F_ONE_KEY(\"bd1-f-one-key\", '\\ued12'),\n    FONT_SEARCH(\"bd1-font-search\", '\\ued13'),\n    FONT_SIZE(\"bd1-font-size\", '\\ued14'),\n    FONT_SIZE_TWO(\"bd1-font-size-two\", '\\ued15'),\n    FOOT(\"bd1-foot\", '\\ued16'),\n    FOOTBALL(\"bd1-football\", '\\ued17'),\n    FORBID(\"bd1-forbid\", '\\ued18'),\n    FORK(\"bd1-fork\", '\\ued19'),\n    FORK_SPOON(\"bd1-fork-spoon\", '\\ued1a'),\n    FORM(\"bd1-form\", '\\ued1b'),\n    FORMAT(\"bd1-format\", '\\ued1c'),\n    FORMAT_BRUSH(\"bd1-format-brush\", '\\ued1d'),\n    FORM_ONE(\"bd1-form-one\", '\\ued1e'),\n    FORMULA(\"bd1-formula\", '\\ued1f'),\n    FOUNDATION_MAKEUP(\"bd1-foundation-makeup\", '\\ued20'),\n    FOUR(\"bd1-four\", '\\ued21'),\n    FOUR_ARROWS(\"bd1-four-arrows\", '\\ued22'),\n    FOUR_FOUR(\"bd1-four-four\", '\\ued23'),\n    FOUR_KEY(\"bd1-four-key\", '\\ued24'),\n    FOUR_LEAVES(\"bd1-four-leaves\", '\\ued25'),\n    FOUR_POINT_CONNECTION(\"bd1-four-point-connection\", '\\ued26'),\n    FOUR_ROUND_POINT_CONNECTION(\"bd1-four-round-point-connection\", '\\ued27'),\n    FOURSQUARE(\"bd1-foursquare\", '\\ued28'),\n    FREEZE_COLUMN(\"bd1-freeze-column\", '\\ued29'),\n    FREEZE_LINE(\"bd1-freeze-line\", '\\ued2a'),\n    FREEZING_LINE_COLUMN(\"bd1-freezing-line-column\", '\\ued2b'),\n    FRENCH_FRIES(\"bd1-french-fries\", '\\ued2c'),\n    FRIENDS_CIRCLE(\"bd1-friends-circle\", '\\ued2d'),\n    FRIGATE(\"bd1-frigate\", '\\ued2e'),\n    FROG(\"bd1-frog\", '\\ued2f'),\n    FROWNING_FACE_WHIT_OPEN_MOUTH(\"bd1-frowning-face-whit-open-mouth\", '\\ued30'),\n    FRUITER(\"bd1-fruiter\", '\\ued31'),\n    F_SEVEN_KEY(\"bd1-f-seven-key\", '\\ued32'),\n    F_SIX_KEY(\"bd1-f-six-key\", '\\ued33'),\n    F_THREE_KEY(\"bd1-f-three-key\", '\\ued34'),\n    F_TWO_KEY(\"bd1-f-two-key\", '\\ued35'),\n    FULL_DRESS_LONGUETTE(\"bd1-full-dress-longuette\", '\\ued36'),\n    FULL_SCREEN(\"bd1-full-screen\", '\\ued37'),\n    FULL_SCREEN_ONE(\"bd1-full-screen-one\", '\\ued38'),\n    FULL_SCREEN_PLAY(\"bd1-full-screen-play\", '\\ued39'),\n    FULL_SCREEN_TWO(\"bd1-full-screen-two\", '\\ued3a'),\n    FULL_SELECTION(\"bd1-full-selection\", '\\ued3b'),\n    FULLWIDTH(\"bd1-fullwidth\", '\\ued3c'),\n    FUNDS(\"bd1-funds\", '\\ued3d'),\n    FUTURE_BUILD_ONE(\"bd1-future-build-one\", '\\ued3e'),\n    FUTURE_BUILD_THREE(\"bd1-future-build-three\", '\\ued3f'),\n    FUTURE_BUILD_TWO(\"bd1-future-build-two\", '\\ued40'),\n    F_ZERO_KEY(\"bd1-f-zero-key\", '\\ued41'),\n    GAME(\"bd1-game\", '\\ued42'),\n    GAME_CONSOLE(\"bd1-game-console\", '\\ued43'),\n    GAME_CONSOLE_ONE(\"bd1-game-console-one\", '\\ued44'),\n    GAME_EMOJI(\"bd1-game-emoji\", '\\ued45'),\n    GAME_HANDLE(\"bd1-game-handle\", '\\ued46'),\n    GAMEPAD(\"bd1-gamepad\", '\\ued47'),\n    GAME_PS(\"bd1-game-ps\", '\\ued48'),\n    GAME_THREE(\"bd1-game-three\", '\\ued49'),\n    GAME_TWO(\"bd1-game-two\", '\\ued4a'),\n    GARAGE(\"bd1-garage\", '\\ued4b'),\n    GARLIC(\"bd1-garlic\", '\\ued4c'),\n    GAS(\"bd1-gas\", '\\ued4d'),\n    GASTROINTESTINAL(\"bd1-gastrointestinal\", '\\ued4e'),\n    GATE(\"bd1-gate\", '\\ued4f'),\n    GATE_MACHINE(\"bd1-gate-machine\", '\\ued50'),\n    GAUZE(\"bd1-gauze\", '\\ued51'),\n    GAVEL(\"bd1-gavel\", '\\ued52'),\n    GEMINI(\"bd1-gemini\", '\\ued53'),\n    GENERAL_BRANCH(\"bd1-general-branch\", '\\ued54'),\n    GEOMETRIC_FLOWERS(\"bd1-geometric-flowers\", '\\ued55'),\n    GERMS(\"bd1-germs\", '\\ued56'),\n    GHOST(\"bd1-ghost\", '\\ued57'),\n    GIFT(\"bd1-gift\", '\\ued58'),\n    GIFT_BAG(\"bd1-gift-bag\", '\\ued59'),\n    GIFT_BOX(\"bd1-gift-box\", '\\ued5a'),\n    GIRL(\"bd1-girl\", '\\ued5b'),\n    GIRL_ONE(\"bd1-girl-one\", '\\ued5c'),\n    GIRL_TWO(\"bd1-girl-two\", '\\ued5d'),\n    GITHUB(\"bd1-github\", '\\ued5e'),\n    GITHUB_ONE(\"bd1-github-one\", '\\ued5f'),\n    GITLAB(\"bd1-gitlab\", '\\ued60'),\n    GLASSES(\"bd1-glasses\", '\\ued61'),\n    GLASSES_ONE(\"bd1-glasses-one\", '\\ued62'),\n    GLASSES_THREE(\"bd1-glasses-three\", '\\ued63'),\n    GLOBE(\"bd1-globe\", '\\ued64'),\n    GLOVE(\"bd1-glove\", '\\ued65'),\n    GO_AHEAD(\"bd1-go-ahead\", '\\ued66'),\n    GOBLET(\"bd1-goblet\", '\\ued67'),\n    GOBLET_CRACKING(\"bd1-goblet-cracking\", '\\ued68'),\n    GOBLET_FULL(\"bd1-goblet-full\", '\\ued69'),\n    GOBLET_ONE(\"bd1-goblet-one\", '\\ued6a'),\n    GO_END(\"bd1-go-end\", '\\ued6b'),\n    GOLD_MEDAL(\"bd1-gold-medal\", '\\ued6c'),\n    GOLD_MEDAL_TWO(\"bd1-gold-medal-two\", '\\ued6d'),\n    GOLF_COURSE(\"bd1-golf-course\", '\\ued6e'),\n    GONGFU(\"bd1-gongfu\", '\\ued6f'),\n    GOOD(\"bd1-good\", '\\ued70'),\n    GOOD_ONE(\"bd1-good-one\", '\\ued71'),\n    GOOD_TWO(\"bd1-good-two\", '\\ued72'),\n    GOOGLE(\"bd1-google\", '\\ued73'),\n    GOOGLE_ADS(\"bd1-google-ads\", '\\ued74'),\n    GO_ON(\"bd1-go-on\", '\\ued75'),\n    GOPRO(\"bd1-gopro\", '\\ued76'),\n    GO_START(\"bd1-go-start\", '\\ued77'),\n    GPS(\"bd1-gps\", '\\ued78'),\n    GRAPHIC_DESIGN(\"bd1-graphic-design\", '\\ued79'),\n    GRAPHIC_DESIGN_TWO(\"bd1-graphic-design-two\", '\\ued7a'),\n    GRAPHIC_STITCHING(\"bd1-graphic-stitching\", '\\ued7b'),\n    GRAPHIC_STITCHING_FOUR(\"bd1-graphic-stitching-four\", '\\ued7c'),\n    GRAPHIC_STITCHING_THREE(\"bd1-graphic-stitching-three\", '\\ued7d'),\n    GREAT_WALL(\"bd1-great-wall\", '\\ued7e'),\n    GREEN_HOUSE(\"bd1-green-house\", '\\ued7f'),\n    GREEN_NEW_ENERGY(\"bd1-green-new-energy\", '\\ued80'),\n    GRID_FOUR(\"bd1-grid-four\", '\\ued81'),\n    GRID_NINE(\"bd1-grid-nine\", '\\ued82'),\n    GRID_SIXTEEN(\"bd1-grid-sixteen\", '\\ued83'),\n    GRID_THREE(\"bd1-grid-three\", '\\ued84'),\n    GRID_TWO(\"bd1-grid-two\", '\\ued85'),\n    GRIMACING_FACE(\"bd1-grimacing-face\", '\\ued86'),\n    GRINNING_FACE(\"bd1-grinning-face\", '\\ued87'),\n    GRINNING_FACE_WITH_OPEN_MOUTH(\"bd1-grinning-face-with-open-mouth\", '\\ued88'),\n    GRINNING_FACE_WITH_SQUINTING_EYES(\"bd1-grinning-face-with-squinting-eyes\", '\\ued89'),\n    GRINNING_FACE_WITH_TIGHTLY_CLOSED_EYES(\"bd1-grinning-face-with-tightly-closed-eyes\", '\\ued8a'),\n    GRINNING_FACE_WITH_TIGHTLY_CLOSED_EYES_OPEN_MOUTH(\"bd1-grinning-face-with-tightly-closed-eyes-open-mouth\", '\\ued8b'),\n    GROUP(\"bd1-group\", '\\ued8c'),\n    GUIDE_BOARD(\"bd1-guide-board\", '\\ued8d'),\n    GYMNASTICS(\"bd1-gymnastics\", '\\ued8e'),\n    GYMNASTICS_ONE(\"bd1-gymnastics-one\", '\\ued8f'),\n    H(\"bd1-h\", '\\ued90'),\n    H1(\"bd1-h1\", '\\ued91'),\n    H2(\"bd1-h2\", '\\ued92'),\n    H3(\"bd1-h3\", '\\ued93'),\n    HAIR_BRUSH(\"bd1-hair-brush\", '\\ued94'),\n    HAIR_CLIP(\"bd1-hair-clip\", '\\ued95'),\n    HAIR_DRYER(\"bd1-hair-dryer\", '\\ued96'),\n    HAIR_DRYER_ONE(\"bd1-hair-dryer-one\", '\\ued97'),\n    HALO(\"bd1-halo\", '\\ued98'),\n    HAMBURGER(\"bd1-hamburger\", '\\ued99'),\n    HAMBURGER_BUTTON(\"bd1-hamburger-button\", '\\ued9a'),\n    HAMBURGER_ONE(\"bd1-hamburger-one\", '\\ued9b'),\n    HAMMER_AND_ANVIL(\"bd1-hammer-and-anvil\", '\\ued9c'),\n    HANDBAG(\"bd1-handbag\", '\\ued9d'),\n    HAND_CREAM(\"bd1-hand-cream\", '\\ued9e'),\n    HAND_DOWN(\"bd1-hand-down\", '\\ued9f'),\n    HAND_DRAG(\"bd1-hand-drag\", '\\ueda0'),\n    HANDHELD(\"bd1-handheld\", '\\ueda1'),\n    HANDLE_A(\"bd1-handle-a\", '\\ueda2'),\n    HANDLE_B(\"bd1-handle-b\", '\\ueda3'),\n    HANDLE_C(\"bd1-handle-c\", '\\ueda4'),\n    HANDLE_DOWN(\"bd1-handle-down\", '\\ueda5'),\n    HAND_LEFT(\"bd1-hand-left\", '\\ueda6'),\n    HANDLE_LEFT(\"bd1-handle-left\", '\\ueda7'),\n    HANDLE_RIGHT(\"bd1-handle-right\", '\\ueda8'),\n    HANDLE_ROUND(\"bd1-handle-round\", '\\ueda9'),\n    HANDLE_SQUARE(\"bd1-handle-square\", '\\uedaa'),\n    HANDLE_TRIANGLE(\"bd1-handle-triangle\", '\\uedab'),\n    HANDLE_UP(\"bd1-handle-up\", '\\uedac'),\n    HANDLE_X(\"bd1-handle-x\", '\\uedad'),\n    HANDLE_Y(\"bd1-handle-y\", '\\uedae'),\n    HANDLE_Z(\"bd1-handle-z\", '\\uedaf'),\n    HAND_PAINTED_PLATE(\"bd1-hand-painted-plate\", '\\uedb0'),\n    HAND_RIGHT(\"bd1-hand-right\", '\\uedb1'),\n    HANDS(\"bd1-hands\", '\\uedb2'),\n    HAND_UP(\"bd1-hand-up\", '\\uedb3'),\n    HANDWASHING(\"bd1-handwashing\", '\\uedb4'),\n    HANDWASHING_FLUID(\"bd1-handwashing-fluid\", '\\uedb5'),\n    HANFU_CHINESE_STYLE(\"bd1-hanfu-chinese-style\", '\\uedb6'),\n    HANGER(\"bd1-hanger\", '\\uedb7'),\n    HANGER_ONE(\"bd1-hanger-one\", '\\uedb8'),\n    HANGER_TWO(\"bd1-hanger-two\", '\\uedb9'),\n    HARD_DISK(\"bd1-hard-disk\", '\\uedba'),\n    HARD_DISK_ONE(\"bd1-hard-disk-one\", '\\uedbb'),\n    HARM(\"bd1-harm\", '\\uedbc'),\n    HASHTAG_KEY(\"bd1-hashtag-key\", '\\uedbd'),\n    HAT(\"bd1-hat\", '\\uedbe'),\n    HDD(\"bd1-hdd\", '\\uedbf'),\n    HDMI_CABLE(\"bd1-hdmi-cable\", '\\uedc0'),\n    HDMI_CONNECTOR(\"bd1-hdmi-connector\", '\\uedc1'),\n    HEADPHONE_SOUND(\"bd1-headphone-sound\", '\\uedc2'),\n    HEADSET(\"bd1-headset\", '\\uedc3'),\n    HEADSET_ONE(\"bd1-headset-one\", '\\uedc4'),\n    HEADSET_TWO(\"bd1-headset-two\", '\\uedc5'),\n    HEADWEAR(\"bd1-headwear\", '\\uedc6'),\n    HEALTH(\"bd1-health\", '\\uedc7'),\n    HEALTH_PRODUCTS(\"bd1-health-products\", '\\uedc8'),\n    HEALTHY_RECOGNITION(\"bd1-healthy-recognition\", '\\uedc9'),\n    HEART(\"bd1-heart\", '\\uedca'),\n    HEART_BALLON(\"bd1-heart-ballon\", '\\uedcb'),\n    HEARTBEAT(\"bd1-heartbeat\", '\\uedcc'),\n    HEART_RATE(\"bd1-heart-rate\", '\\uedcd'),\n    HEATER_RESISTOR(\"bd1-heater-resistor\", '\\uedce'),\n    HEAVY_METAL(\"bd1-heavy-metal\", '\\uedcf'),\n    HEAVY_RAIN(\"bd1-heavy-rain\", '\\uedd0'),\n    HEAVY_WIND(\"bd1-heavy-wind\", '\\uedd1'),\n    HELMET(\"bd1-helmet\", '\\uedd2'),\n    HELMET_ONE(\"bd1-helmet-one\", '\\uedd3'),\n    HELP(\"bd1-help\", '\\uedd4'),\n    HELPCENTER(\"bd1-helpcenter\", '\\uedd5'),\n    HEXAGONAL(\"bd1-hexagonal\", '\\uedd6'),\n    HEXAGON_ONE(\"bd1-hexagon-one\", '\\uedd7'),\n    HEXAGON_STRIP(\"bd1-hexagon-strip\", '\\uedd8'),\n    HI(\"bd1-hi\", '\\uedd9'),\n    HIGH_HEELED_SHOES(\"bd1-high-heeled-shoes\", '\\uedda'),\n    HIGH_LIGHT(\"bd1-high-light\", '\\ueddb'),\n    HIGH_SPEED_RAIL(\"bd1-high-speed-rail\", '\\ueddc'),\n    HIPPO(\"bd1-hippo\", '\\ueddd'),\n    HISTOGRAM(\"bd1-histogram\", '\\uedde'),\n    HISTORY(\"bd1-history\", '\\ueddf'),\n    HISTORY_QUERY(\"bd1-history-query\", '\\uede0'),\n    HOCKEY(\"bd1-hockey\", '\\uede1'),\n    HOLD(\"bd1-hold\", '\\uede2'),\n    HOLDING_HANDS(\"bd1-holding-hands\", '\\uede3'),\n    HOLD_INTERFACE(\"bd1-hold-interface\", '\\uede4'),\n    HOLD_SEEDS(\"bd1-hold-seeds\", '\\uede5'),\n    HOLY_SWORD(\"bd1-holy-sword\", '\\uede6'),\n    HOME(\"bd1-home\", '\\uede7'),\n    HOMESTAY(\"bd1-homestay\", '\\uede8'),\n    HOME_TWO(\"bd1-home-two\", '\\uede9'),\n    HONEY(\"bd1-honey\", '\\uedea'),\n    HONEY_ONE(\"bd1-honey-one\", '\\uedeb'),\n    HORIZONTALLY_CENTERED(\"bd1-horizontally-centered\", '\\uedec'),\n    HORIZONTAL_SPACING_BETWEEN_ITEMS(\"bd1-horizontal-spacing-between-items\", '\\ueded'),\n    HORIZONTAL_TIDY_UP(\"bd1-horizontal-tidy-up\", '\\uedee'),\n    HORSE_ZODIAC(\"bd1-horse-zodiac\", '\\uedef'),\n    HOSPITAL(\"bd1-hospital\", '\\uedf0'),\n    HOSPITAL_BED(\"bd1-hospital-bed\", '\\uedf1'),\n    HOSPITAL_FOUR(\"bd1-hospital-four\", '\\uedf2'),\n    HOSPITAL_THREE(\"bd1-hospital-three\", '\\uedf3'),\n    HOSPITAL_TWO(\"bd1-hospital-two\", '\\uedf4'),\n    HOT_AIR_BALLOON(\"bd1-hot-air-balloon\", '\\uedf5'),\n    HOTEL(\"bd1-hotel\", '\\uedf6'),\n    HOTEL_DO_NOT_CLEAN(\"bd1-hotel-do-not-clean\", '\\uedf7'),\n    HOTEL_PLEASE_CLEAN(\"bd1-hotel-please-clean\", '\\uedf8'),\n    HOT_POT(\"bd1-hot-pot\", '\\uedf9'),\n    HOT_POT_ONE(\"bd1-hot-pot-one\", '\\uedfa'),\n    HOURGLASS(\"bd1-hourglass\", '\\uedfb'),\n    HOURGLASS_FULL(\"bd1-hourglass-full\", '\\uedfc'),\n    HOURGLASS_NULL(\"bd1-hourglass-null\", '\\uedfd'),\n    HTML_FIVE(\"bd1-html-five\", '\\uedfe'),\n    HUNTING_GEAR(\"bd1-hunting-gear\", '\\uedff'),\n    HUOSHANZHIBO(\"bd1-huoshanzhibo\", '\\uee00'),\n    ICECREAM(\"bd1-icecream\", '\\uee01'),\n    ICECREAM_FIVE(\"bd1-icecream-five\", '\\uee02'),\n    ICECREAM_FOUR(\"bd1-icecream-four\", '\\uee03'),\n    ICECREAM_ONE(\"bd1-icecream-one\", '\\uee04'),\n    ICECREAM_THREE(\"bd1-icecream-three\", '\\uee05'),\n    ICECREAM_TWO(\"bd1-icecream-two\", '\\uee06'),\n    ID_CARD(\"bd1-id-card\", '\\uee07'),\n    ID_CARD_H(\"bd1-id-card-h\", '\\uee08'),\n    ID_CARD_V(\"bd1-id-card-v\", '\\uee09'),\n    I_MAC(\"bd1-i-mac\", '\\uee0a'),\n    IMAGE_FILES(\"bd1-image-files\", '\\uee0b'),\n    IMBALANCE(\"bd1-imbalance\", '\\uee0c'),\n    IMPORT_AND_EXPORT(\"bd1-import-and-export\", '\\uee0d'),\n    INBOX(\"bd1-inbox\", '\\uee0e'),\n    INBOX_DOWNLOAD_R(\"bd1-inbox-download-r\", '\\uee0f'),\n    INBOX_IN(\"bd1-inbox-in\", '\\uee10'),\n    INBOX_OUT(\"bd1-inbox-out\", '\\uee11'),\n    INBOX_R(\"bd1-inbox-r\", '\\uee12'),\n    INBOX_SUCCESS(\"bd1-inbox-success\", '\\uee13'),\n    INBOX_SUCCESS_R(\"bd1-inbox-success-r\", '\\uee14'),\n    INBOX_UPLOAD_R(\"bd1-inbox-upload-r\", '\\uee15'),\n    INCLUSIVE_GATEWAY(\"bd1-inclusive-gateway\", '\\uee16'),\n    INCOME(\"bd1-income\", '\\uee17'),\n    INCOME_ONE(\"bd1-income-one\", '\\uee18'),\n    INCOMING(\"bd1-incoming\", '\\uee19'),\n    INCREASE(\"bd1-increase\", '\\uee1a'),\n    INCREASE_THE_SCALE(\"bd1-increase-the-scale\", '\\uee1b'),\n    INDENT_LEFT(\"bd1-indent-left\", '\\uee1c'),\n    INDENT_RIGHT(\"bd1-indent-right\", '\\uee1d'),\n    INDEX_FINGER(\"bd1-index-finger\", '\\uee1e'),\n    INDUCTION_LOCK(\"bd1-induction-lock\", '\\uee1f'),\n    INDUSTRIAL_SCALES(\"bd1-industrial-scales\", '\\uee20'),\n    IN_FLIGHT(\"bd1-in-flight\", '\\uee21'),\n    INFO(\"bd1-info\", '\\uee22'),\n    INFUSION(\"bd1-infusion\", '\\uee23'),\n    INJECTION(\"bd1-injection\", '\\uee24'),\n    INLINE(\"bd1-inline\", '\\uee25'),\n    INNER_SHADOW_BOTTOM_LEFT(\"bd1-inner-shadow-bottom-left\", '\\uee26'),\n    INNER_SHADOW_BOTTOM_RIGHT(\"bd1-inner-shadow-bottom-right\", '\\uee27'),\n    INNER_SHADOW_DOWN(\"bd1-inner-shadow-down\", '\\uee28'),\n    INNER_SHADOW_LEFT(\"bd1-inner-shadow-left\", '\\uee29'),\n    INNER_SHADOW_RIGHT(\"bd1-inner-shadow-right\", '\\uee2a'),\n    INNER_SHADOW_TOP_LEFT(\"bd1-inner-shadow-top-left\", '\\uee2b'),\n    INNER_SHADOW_TOP_RIGHT(\"bd1-inner-shadow-top-right\", '\\uee2c'),\n    INNER_SHADOW_UP(\"bd1-inner-shadow-up\", '\\uee2d'),\n    INSERT_CARD(\"bd1-insert-card\", '\\uee2e'),\n    INSERT_TABLE(\"bd1-insert-table\", '\\uee2f'),\n    INSPECTION(\"bd1-inspection\", '\\uee30'),\n    INSTAGRAM(\"bd1-instagram\", '\\uee31'),\n    INSTAGRAM_ONE(\"bd1-instagram-one\", '\\uee32'),\n    INSTALL(\"bd1-install\", '\\uee33'),\n    INSTRUCTION(\"bd1-instruction\", '\\uee34'),\n    INTERCOM(\"bd1-intercom\", '\\uee35'),\n    INTERMEDIATE_MODE(\"bd1-intermediate-mode\", '\\uee36'),\n    INTERNAL_DATA(\"bd1-internal-data\", '\\uee37'),\n    INTERNAL_EXPANSION(\"bd1-internal-expansion\", '\\uee38'),\n    INTERNAL_REDUCTION(\"bd1-internal-reduction\", '\\uee39'),\n    INTERNAL_TRANSMISSION(\"bd1-internal-transmission\", '\\uee3a'),\n    INTERNATIONAL(\"bd1-international\", '\\uee3b'),\n    INTERSECTION(\"bd1-intersection\", '\\uee3c'),\n    INTERSECT_SELECTION(\"bd1-intersect-selection\", '\\uee3d'),\n    INVALID_FILES(\"bd1-invalid-files\", '\\uee3e'),\n    INVERT_CAMERA(\"bd1-invert-camera\", '\\uee3f'),\n    INVERT_LEFT(\"bd1-invert-left\", '\\uee40'),\n    INVERT_RIGHT(\"bd1-invert-right\", '\\uee41'),\n    IOS_FACE_RECOGNITION(\"bd1-ios-face-recognition\", '\\uee42'),\n    IPAD(\"bd1-ipad\", '\\uee43'),\n    IPAD_ONE(\"bd1-ipad-one\", '\\uee44'),\n    IPHONE(\"bd1-iphone\", '\\uee45'),\n    IPO(\"bd1-ipo\", '\\uee46'),\n    IRON(\"bd1-iron\", '\\uee47'),\n    IRON_DISABLE(\"bd1-iron-disable\", '\\uee48'),\n    IRON_THREE(\"bd1-iron-three\", '\\uee49'),\n    IRON_TWO(\"bd1-iron-two\", '\\uee4a'),\n    IWATCH(\"bd1-iwatch\", '\\uee4b'),\n    IWATCH_ONE(\"bd1-iwatch-one\", '\\uee4c'),\n    IWATCH_TWO(\"bd1-iwatch-two\", '\\uee4d'),\n    JEWELRY(\"bd1-jewelry\", '\\uee4e'),\n    JINRITOUTIAO(\"bd1-jinritoutiao\", '\\uee4f'),\n    JOURNEY(\"bd1-journey\", '\\uee50'),\n    JOYSTICK(\"bd1-joystick\", '\\uee51'),\n    JUICE(\"bd1-juice\", '\\uee52'),\n    JUMP(\"bd1-jump\", '\\uee53'),\n    KAGI_MAP(\"bd1-kagi-map\", '\\uee54'),\n    KETTLE(\"bd1-kettle\", '\\uee55'),\n    KETTLE_ONE(\"bd1-kettle-one\", '\\uee56'),\n    KEY(\"bd1-key\", '\\uee57'),\n    KEYBOARD(\"bd1-keyboard\", '\\uee58'),\n    KEYBOARD_ONE(\"bd1-keyboard-one\", '\\uee59'),\n    KEYHOLE(\"bd1-keyhole\", '\\uee5a'),\n    KEYLINE(\"bd1-keyline\", '\\uee5b'),\n    KEY_ONE(\"bd1-key-one\", '\\uee5c'),\n    KEY_TWO(\"bd1-key-two\", '\\uee5d'),\n    KITCHEN_KNIFE(\"bd1-kitchen-knife\", '\\uee5e'),\n    KNIFE_FORK(\"bd1-knife-fork\", '\\uee5f'),\n    KOALA_BEAR(\"bd1-koala-bear\", '\\uee60'),\n    KUNGFU(\"bd1-kungfu\", '\\uee61'),\n    LABEL(\"bd1-label\", '\\uee62'),\n    LADDER(\"bd1-ladder\", '\\uee63'),\n    LADDER_ONE(\"bd1-ladder-one\", '\\uee64'),\n    LAMP(\"bd1-lamp\", '\\uee65'),\n    LANDING(\"bd1-landing\", '\\uee66'),\n    LANDSCAPE(\"bd1-landscape\", '\\uee67'),\n    LAND_SURVEYING(\"bd1-land-surveying\", '\\uee68'),\n    LAPTOP(\"bd1-laptop\", '\\uee69'),\n    LAPTOP_COMPUTER(\"bd1-laptop-computer\", '\\uee6a'),\n    LAPTOP_ONE(\"bd1-laptop-one\", '\\uee6b'),\n    LARK(\"bd1-lark\", '\\uee6c'),\n    LARK_ONE(\"bd1-lark-one\", '\\uee6d'),\n    LATTICE_PATTERN(\"bd1-lattice-pattern\", '\\uee6e'),\n    LAYERS(\"bd1-layers\", '\\uee6f'),\n    LAYOUT_FIVE(\"bd1-layout-five\", '\\uee70'),\n    LAYOUT_FOUR(\"bd1-layout-four\", '\\uee71'),\n    LAYOUT_ONE(\"bd1-layout-one\", '\\uee72'),\n    LAYOUT_THREE(\"bd1-layout-three\", '\\uee73'),\n    LAYOUT_TWO(\"bd1-layout-two\", '\\uee74'),\n    LEAF(\"bd1-leaf\", '\\uee75'),\n    LEAVES(\"bd1-leaves\", '\\uee76'),\n    LEAVES_ONE(\"bd1-leaves-one\", '\\uee77'),\n    LEAVES_TWO(\"bd1-leaves-two\", '\\uee78'),\n    LED_DIODE(\"bd1-led-diode\", '\\uee79'),\n    LEFT(\"bd1-left\", '\\uee7a'),\n    LEFT_ALIGNMENT(\"bd1-left-alignment\", '\\uee7b'),\n    LEFT_AND_RIGHT_BRANCH(\"bd1-left-and-right-branch\", '\\uee7c'),\n    LEFT_BAR(\"bd1-left-bar\", '\\uee7d'),\n    LEFT_BRANCH(\"bd1-left-branch\", '\\uee7e'),\n    LEFT_C(\"bd1-left-c\", '\\uee7f'),\n    LEFT_EXPAND(\"bd1-left-expand\", '\\uee80'),\n    LEFT_ONE(\"bd1-left-one\", '\\uee81'),\n    LEFT_SMALL(\"bd1-left-small\", '\\uee82'),\n    LEFT_SMALL_DOWN(\"bd1-left-small-down\", '\\uee83'),\n    LEFT_SMALL_UP(\"bd1-left-small-up\", '\\uee84'),\n    LEFT_SQUARE(\"bd1-left-square\", '\\uee85'),\n    LEFT_TWO(\"bd1-left-two\", '\\uee86'),\n    LEMON(\"bd1-lemon\", '\\uee87'),\n    LENS_ALIGNMENT(\"bd1-lens-alignment\", '\\uee88'),\n    LEO(\"bd1-leo\", '\\uee89'),\n    LEVEL(\"bd1-level\", '\\uee8a'),\n    LEVEL_ADJUSTMENT(\"bd1-level-adjustment\", '\\uee8b'),\n    LEVEL_EIGHT_TITLE(\"bd1-level-eight-title\", '\\uee8c'),\n    LEVEL_FIVE_TITLE(\"bd1-level-five-title\", '\\uee8d'),\n    LEVEL_FOUR_TITLE(\"bd1-level-four-title\", '\\uee8e'),\n    LEVEL_NINE_TITLE(\"bd1-level-nine-title\", '\\uee8f'),\n    LEVEL_SEVEN_TITLE(\"bd1-level-seven-title\", '\\uee90'),\n    LEVEL_SIX_TITLE(\"bd1-level-six-title\", '\\uee91'),\n    LIBRA(\"bd1-libra\", '\\uee92'),\n    LIFEBUOY(\"bd1-lifebuoy\", '\\uee93'),\n    LIGHT(\"bd1-light\", '\\uee94'),\n    LIGHT_HOUSE(\"bd1-light-house\", '\\uee95'),\n    LIGHT_MEMBER(\"bd1-light-member\", '\\uee96'),\n    LIGHTNING(\"bd1-lightning\", '\\uee97'),\n    LIGHT_RAIN(\"bd1-light-rain\", '\\uee98'),\n    LIKE(\"bd1-like\", '\\uee99'),\n    LINCOLN(\"bd1-lincoln\", '\\uee9a'),\n    LINK(\"bd1-link\", '\\uee9b'),\n    LINK_BREAK(\"bd1-link-break\", '\\uee9c'),\n    LINK_CLOUD(\"bd1-link-cloud\", '\\uee9d'),\n    LINK_CLOUD_FAILD(\"bd1-link-cloud-faild\", '\\uee9e'),\n    LINK_CLOUD_SUCESS(\"bd1-link-cloud-sucess\", '\\uee9f'),\n    LINK_FOUR(\"bd1-link-four\", '\\ueea0'),\n    LINK_IN(\"bd1-link-in\", '\\ueea1'),\n    LINK_INTERRUPT(\"bd1-link-interrupt\", '\\ueea2'),\n    LINK_LEFT(\"bd1-link-left\", '\\ueea3'),\n    LINK_ONE(\"bd1-link-one\", '\\ueea4'),\n    LINK_OUT(\"bd1-link-out\", '\\ueea5'),\n    LINK_RIGHT(\"bd1-link-right\", '\\ueea6'),\n    LINK_THREE(\"bd1-link-three\", '\\ueea7'),\n    LINK_TWO(\"bd1-link-two\", '\\ueea8'),\n    LIP_GLOSS(\"bd1-lip-gloss\", '\\ueea9'),\n    LIPSTICK(\"bd1-lipstick\", '\\ueeaa'),\n    LIPSTICK_ONE(\"bd1-lipstick-one\", '\\ueeab'),\n    LIP_TATTOO(\"bd1-lip-tattoo\", '\\ueeac'),\n    LIQUEUR(\"bd1-liqueur\", '\\ueead'),\n    LIST(\"bd1-list\", '\\ueeae'),\n    LIST_ADD(\"bd1-list-add\", '\\ueeaf'),\n    LIST_ALPHABET(\"bd1-list-alphabet\", '\\ueeb0'),\n    LIST_BOTTOM(\"bd1-list-bottom\", '\\ueeb1'),\n    LIST_CHECKBOX(\"bd1-list-checkbox\", '\\ueeb2'),\n    LIST_FAIL(\"bd1-list-fail\", '\\ueeb3'),\n    LIST_MIDDLE(\"bd1-list-middle\", '\\ueeb4'),\n    LIST_NUMBERS(\"bd1-list-numbers\", '\\ueeb5'),\n    LIST_ONE(\"bd1-list-one\", '\\ueeb6'),\n    LIST_SUCCESS(\"bd1-list-success\", '\\ueeb7'),\n    LIST_TOP(\"bd1-list-top\", '\\ueeb8'),\n    LIST_TWO(\"bd1-list-two\", '\\ueeb9'),\n    LIST_VIEW(\"bd1-list-view\", '\\ueeba'),\n    LOADING(\"bd1-loading\", '\\ueebb'),\n    LOADING_FOUR(\"bd1-loading-four\", '\\ueebc'),\n    LOADING_ONE(\"bd1-loading-one\", '\\ueebd'),\n    LOADING_THREE(\"bd1-loading-three\", '\\ueebe'),\n    LOADING_TWO(\"bd1-loading-two\", '\\ueebf'),\n    LOCAL(\"bd1-local\", '\\ueec0'),\n    LOCAL_PIN(\"bd1-local-pin\", '\\ueec1'),\n    LOCAL_TWO(\"bd1-local-two\", '\\ueec2'),\n    LOCK(\"bd1-lock\", '\\ueec3'),\n    LOCKING_COMPUTER(\"bd1-locking-computer\", '\\ueec4'),\n    LOCKING_LAPTOP(\"bd1-locking-laptop\", '\\ueec5'),\n    LOCKING_PICTURE(\"bd1-locking-picture\", '\\ueec6'),\n    LOCKING_WEB(\"bd1-locking-web\", '\\ueec7'),\n    LOCK_ONE(\"bd1-lock-one\", '\\ueec8'),\n    LOG(\"bd1-log\", '\\ueec9'),\n    LOGIN(\"bd1-login\", '\\ueeca'),\n    LOGOUT(\"bd1-logout\", '\\ueecb'),\n    LOLLIPOP(\"bd1-lollipop\", '\\ueecc'),\n    LOOP_ONCE(\"bd1-loop-once\", '\\ueecd'),\n    LOTION(\"bd1-lotion\", '\\ueece'),\n    LOTUS(\"bd1-lotus\", '\\ueecf'),\n    LOUDLY_CRYING_FACE(\"bd1-loudly-crying-face\", '\\ueed0'),\n    LOUDLY_CRYING_FACE_WHIT_OPEN_MOUTH(\"bd1-loudly-crying-face-whit-open-mouth\", '\\ueed1'),\n    LOVE_AND_HELP(\"bd1-love-and-help\", '\\ueed2'),\n    LOWER_BRANCH(\"bd1-lower-branch\", '\\ueed3'),\n    LUGGAGE(\"bd1-luggage\", '\\ueed4'),\n    LUMINOUS(\"bd1-luminous\", '\\ueed5'),\n    LUNG(\"bd1-lung\", '\\ueed6');\n\n    public static BytedanceIconsThinAL findByDescription(String description) {\n        for (BytedanceIconsThinAL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    BytedanceIconsThinAL(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsThinALIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author LeeWyatt\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BytedanceIconsThinALIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/bytedance/1.3.0/fonts/Bytedance-IconPack-Thin.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bd1-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return BytedanceIconsThinAL.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Bytedance-IconPack-Thin\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsThinALIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author LeeWyatt\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class BytedanceIconsThinALIkonProvider implements IkonProvider<BytedanceIconsThinAL> {\n    @Override\n    public Class<BytedanceIconsThinAL> getIkon() {\n        return BytedanceIconsThinAL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsThinMZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author LeeWyatt\n */\npublic enum BytedanceIconsThinMZ implements Ikon {\n    MACADAMIA_NUT(\"bd1-macadamia-nut\", '\\ueed7'),\n    MAC_FINDER(\"bd1-mac-finder\", '\\ueed8'),\n    MAGIC(\"bd1-magic\", '\\ueed9'),\n    MAGIC_HAT(\"bd1-magic-hat\", '\\ueeda'),\n    MAGIC_WAND(\"bd1-magic-wand\", '\\ueedb'),\n    MAGNET(\"bd1-magnet\", '\\ueedc'),\n    MAIL(\"bd1-mail\", '\\ueedd'),\n    MAIL_DOWNLOAD(\"bd1-mail-download\", '\\ueede'),\n    MAIL_EDIT(\"bd1-mail-edit\", '\\ueedf'),\n    MAILL_ONE(\"bd1-maill-one\", '\\ueee0'),\n    MAIL_OPEN(\"bd1-mail-open\", '\\ueee1'),\n    MAIL_PACKAGE(\"bd1-mail-package\", '\\ueee2'),\n    MAIL_REVIEW(\"bd1-mail-review\", '\\ueee3'),\n    MAIL_UNPACKING(\"bd1-mail-unpacking\", '\\ueee4'),\n    MAKEUPS(\"bd1-makeups\", '\\ueee5'),\n    MALE(\"bd1-male\", '\\ueee6'),\n    MALL_BAG(\"bd1-mall-bag\", '\\ueee7'),\n    MANUAL_GEAR(\"bd1-manual-gear\", '\\ueee8'),\n    MANY_TO_MANY(\"bd1-many-to-many\", '\\ueee9'),\n    MAP_DISTANCE(\"bd1-map-distance\", '\\ueeea'),\n    MAP_DRAW(\"bd1-map-draw\", '\\ueeeb'),\n    MAP_ROAD(\"bd1-map-road\", '\\ueeec'),\n    MAP_ROAD_TWO(\"bd1-map-road-two\", '\\ueeed'),\n    MAP_TWO(\"bd1-map-two\", '\\ueeee'),\n    MARGIN(\"bd1-margin\", '\\ueeef'),\n    MARGIN_ONE(\"bd1-margin-one\", '\\ueef0'),\n    MARK(\"bd1-mark\", '\\ueef1'),\n    MARKET(\"bd1-market\", '\\ueef2'),\n    MARKET_ANALYSIS(\"bd1-market-analysis\", '\\ueef3'),\n    MASCARA(\"bd1-mascara\", '\\ueef4'),\n    MASK(\"bd1-mask\", '\\ueef5'),\n    MASK_ONE(\"bd1-mask-one\", '\\ueef6'),\n    MASK_TWO(\"bd1-mask-two\", '\\ueef7'),\n    MASLOW_PYRAMIDS(\"bd1-maslow-pyramids\", '\\ueef8'),\n    MASSAGE_CHAIR(\"bd1-massage-chair\", '\\ueef9'),\n    MASSAGE_CHAIR_ONE(\"bd1-massage-chair-one\", '\\ueefa'),\n    MASSAGE_TABLE(\"bd1-massage-table\", '\\ueefb'),\n    MASTER(\"bd1-master\", '\\ueefc'),\n    MATERIAL(\"bd1-material\", '\\ueefd'),\n    MATERIAL_THREE(\"bd1-material-three\", '\\ueefe'),\n    MATERIAL_TWO(\"bd1-material-two\", '\\ueeff'),\n    MAXIMUM(\"bd1-maximum\", '\\uef00'),\n    MAYA(\"bd1-maya\", '\\uef01'),\n    MAYURA_GESTURE(\"bd1-mayura-gesture\", '\\uef02'),\n    ME(\"bd1-me\", '\\uef03'),\n    MEASURING_CUP(\"bd1-measuring-cup\", '\\uef04'),\n    MEDAL_ONE(\"bd1-medal-one\", '\\uef05'),\n    MEDIAEDITOR(\"bd1-mediaeditor\", '\\uef06'),\n    MEDICAL_BOX(\"bd1-medical-box\", '\\uef07'),\n    MEDICAL_FILES(\"bd1-medical-files\", '\\uef08'),\n    MEDICAL_MARK(\"bd1-medical-mark\", '\\uef09'),\n    MEDICATION_TIME(\"bd1-medication-time\", '\\uef0a'),\n    MEDICINE_BOTTLE(\"bd1-medicine-bottle\", '\\uef0b'),\n    MEDICINE_BOTTLE_ONE(\"bd1-medicine-bottle-one\", '\\uef0c'),\n    MEDICINE_CHEST(\"bd1-medicine-chest\", '\\uef0d'),\n    MEMORY(\"bd1-memory\", '\\uef0e'),\n    MEMORY_CARD(\"bd1-memory-card\", '\\uef0f'),\n    MEMORY_CARD_ONE(\"bd1-memory-card-one\", '\\uef10'),\n    MEMORY_ONE(\"bd1-memory-one\", '\\uef11'),\n    MEN_JACKET(\"bd1-men-jacket\", '\\uef12'),\n    MENU_FOLD(\"bd1-menu-fold\", '\\uef13'),\n    MENU_FOLD_ONE(\"bd1-menu-fold-one\", '\\uef14'),\n    MENU_UNFOLD(\"bd1-menu-unfold\", '\\uef15'),\n    MENU_UNFOLD_ONE(\"bd1-menu-unfold-one\", '\\uef16'),\n    MERGE(\"bd1-merge\", '\\uef17'),\n    MERGE_CELLS(\"bd1-merge-cells\", '\\uef18'),\n    MESSAGE(\"bd1-message\", '\\uef19'),\n    MESSAGE_EMOJI(\"bd1-message-emoji\", '\\uef1a'),\n    MESSAGE_FAILED(\"bd1-message-failed\", '\\uef1b'),\n    MESSAGE_ONE(\"bd1-message-one\", '\\uef1c'),\n    MESSAGE_PRIVACY(\"bd1-message-privacy\", '\\uef1d'),\n    MESSAGES(\"bd1-messages\", '\\uef1e'),\n    MESSAGE_SEARCH(\"bd1-message-search\", '\\uef1f'),\n    MESSAGE_SECURITY(\"bd1-message-security\", '\\uef20'),\n    MESSAGE_SENT(\"bd1-message-sent\", '\\uef21'),\n    MESSAGES_ONE(\"bd1-messages-one\", '\\uef22'),\n    MESSAGE_SUCCESS(\"bd1-message-success\", '\\uef23'),\n    MESSAGE_UNREAD(\"bd1-message-unread\", '\\uef24'),\n    MICROPHONE(\"bd1-microphone\", '\\uef25'),\n    MICROPHONE_ONE(\"bd1-microphone-one\", '\\uef26'),\n    MICROSCOPE(\"bd1-microscope\", '\\uef27'),\n    MICROSCOPE_ONE(\"bd1-microscope-one\", '\\uef28'),\n    MICRO_SD(\"bd1-micro-sd\", '\\uef29'),\n    MICRO_SLR_CAMERA(\"bd1-micro-slr-camera\", '\\uef2a'),\n    MICROWAVE_OVEN(\"bd1-microwave-oven\", '\\uef2b'),\n    MICROWAVES(\"bd1-microwaves\", '\\uef2c'),\n    MIDDLE_FINGER(\"bd1-middle-finger\", '\\uef2d'),\n    MILK(\"bd1-milk\", '\\uef2e'),\n    MILK_ONE(\"bd1-milk-one\", '\\uef2f'),\n    MIN(\"bd1-min\", '\\uef30'),\n    MINDMAP_LIST(\"bd1-mindmap-list\", '\\uef31'),\n    MINDMAP_MAP(\"bd1-mindmap-map\", '\\uef32'),\n    MIND_MAPPING(\"bd1-mind-mapping\", '\\uef33'),\n    MINI_SD_CARD(\"bd1-mini-sd-card\", '\\uef34'),\n    MINUS(\"bd1-minus\", '\\uef35'),\n    MINUS_THE_BOTTOM(\"bd1-minus-the-bottom\", '\\uef36'),\n    MINUS_THE_TOP(\"bd1-minus-the-top\", '\\uef37'),\n    MIRROR(\"bd1-mirror\", '\\uef38'),\n    MIRROR_ONE(\"bd1-mirror-one\", '\\uef39'),\n    MIRROR_TWO(\"bd1-mirror-two\", '\\uef3a'),\n    MISALIGNED_SEMICIRCLE(\"bd1-misaligned-semicircle\", '\\uef3b'),\n    MITSUBISHI(\"bd1-mitsubishi\", '\\uef3c'),\n    MODIFY(\"bd1-modify\", '\\uef3d'),\n    MODIFY_TWO(\"bd1-modify-two\", '\\uef3e'),\n    MONITOR(\"bd1-monitor\", '\\uef3f'),\n    MONITOR_CAMERA(\"bd1-monitor-camera\", '\\uef40'),\n    MONITOR_OFF(\"bd1-monitor-off\", '\\uef41'),\n    MONITOR_ONE(\"bd1-monitor-one\", '\\uef42'),\n    MONITOR_TWO(\"bd1-monitor-two\", '\\uef43'),\n    MONKEY(\"bd1-monkey\", '\\uef44'),\n    MONKEY_ZODIAC(\"bd1-monkey-zodiac\", '\\uef45'),\n    MONUMENT_ONE(\"bd1-monument-one\", '\\uef46'),\n    MONUMENT_TWO(\"bd1-monument-two\", '\\uef47'),\n    MOON(\"bd1-moon\", '\\uef48'),\n    MORE(\"bd1-more\", '\\uef49'),\n    MORE_APP(\"bd1-more-app\", '\\uef4a'),\n    MORE_FOUR(\"bd1-more-four\", '\\uef4b'),\n    MORE_ONE(\"bd1-more-one\", '\\uef4c'),\n    MORE_THREE(\"bd1-more-three\", '\\uef4d'),\n    MORE_TWO(\"bd1-more-two\", '\\uef4e'),\n    MOSAIC(\"bd1-mosaic\", '\\uef4f'),\n    MOUNTAIN(\"bd1-mountain\", '\\uef50'),\n    MOUNTED(\"bd1-mounted\", '\\uef51'),\n    MOUSE(\"bd1-mouse\", '\\uef52'),\n    MOUSE_ONE(\"bd1-mouse-one\", '\\uef53'),\n    MOUSE_ZODIAC(\"bd1-mouse-zodiac\", '\\uef54'),\n    MOUTH(\"bd1-mouth\", '\\uef55'),\n    MOVE(\"bd1-move\", '\\uef56'),\n    MOVE_IN(\"bd1-move-in\", '\\uef57'),\n    MOVE_IN_ONE(\"bd1-move-in-one\", '\\uef58'),\n    MOVE_ONE(\"bd1-move-one\", '\\uef59'),\n    MOVIE(\"bd1-movie\", '\\uef5a'),\n    MOVIE_BOARD(\"bd1-movie-board\", '\\uef5b'),\n    MOVING_PICTURE(\"bd1-moving-picture\", '\\uef5c'),\n    MULTICAST(\"bd1-multicast\", '\\uef5d'),\n    MULTI_CIRCULAR(\"bd1-multi-circular\", '\\uef5e'),\n    MULTI_FUNCTION_KNIFE(\"bd1-multi-function-knife\", '\\uef5f'),\n    MULTILAYER_SPHERE(\"bd1-multilayer-sphere\", '\\uef60'),\n    MULTI_PICTURE_CAROUSEL(\"bd1-multi-picture-carousel\", '\\uef61'),\n    MULTI_RECTANGLE(\"bd1-multi-rectangle\", '\\uef62'),\n    MULTI_RING(\"bd1-multi-ring\", '\\uef63'),\n    MULTI_TRIANGULAR(\"bd1-multi-triangular\", '\\uef64'),\n    MULTI_TRIANGULAR_FOUR(\"bd1-multi-triangular-four\", '\\uef65'),\n    MULTI_TRIANGULAR_THREE(\"bd1-multi-triangular-three\", '\\uef66'),\n    MULTI_TRIANGULAR_TWO(\"bd1-multi-triangular-two\", '\\uef67'),\n    MUSCLE(\"bd1-muscle\", '\\uef68'),\n    MUSEUM_ONE(\"bd1-museum-one\", '\\uef69'),\n    MUSEUM_TWO(\"bd1-museum-two\", '\\uef6a'),\n    MUSIC(\"bd1-music\", '\\uef6b'),\n    MUSIC_CD(\"bd1-music-cd\", '\\uef6c'),\n    MUSIC_LIST(\"bd1-music-list\", '\\uef6d'),\n    MUSIC_MENU(\"bd1-music-menu\", '\\uef6e'),\n    MUSIC_ONE(\"bd1-music-one\", '\\uef6f'),\n    MUSIC_RHYTHM(\"bd1-music-rhythm\", '\\uef70'),\n    MUTE(\"bd1-mute\", '\\uef71'),\n    NAIL_POLISH(\"bd1-nail-polish\", '\\uef72'),\n    NAIL_POLISH_ONE(\"bd1-nail-polish-one\", '\\uef73'),\n    NASAL(\"bd1-nasal\", '\\uef74'),\n    NATURAL_MODE(\"bd1-natural-mode\", '\\uef75'),\n    NAVIGATION(\"bd1-navigation\", '\\uef76'),\n    NECKTIE(\"bd1-necktie\", '\\uef77'),\n    NEEDLE(\"bd1-needle\", '\\uef78'),\n    NEGATIVE_DYNAMICS(\"bd1-negative-dynamics\", '\\uef79'),\n    NESTED_ARROWS(\"bd1-nested-arrows\", '\\uef7a'),\n    NESTS(\"bd1-nests\", '\\uef7b'),\n    NETWORK_DRIVE(\"bd1-network-drive\", '\\uef7c'),\n    NETWORK_TREE(\"bd1-network-tree\", '\\uef7d'),\n    NEURAL(\"bd1-neural\", '\\uef7e'),\n    NEUTRAL_FACE(\"bd1-neutral-face\", '\\uef7f'),\n    NEW_AFFERENT(\"bd1-new-afferent\", '\\uef80'),\n    NEW_COMPUTER(\"bd1-new-computer\", '\\uef81'),\n    NEW_DIANZIQIAN(\"bd1-new-dianziqian\", '\\uef82'),\n    NEW_EFFERENT(\"bd1-new-efferent\", '\\uef83'),\n    NEW_LARK(\"bd1-new-lark\", '\\uef84'),\n    NEWLYBUILD(\"bd1-newlybuild\", '\\uef85'),\n    NEW_PICTURE(\"bd1-new-picture\", '\\uef86'),\n    NEWSPAPER_FOLDING(\"bd1-newspaper-folding\", '\\uef87'),\n    NEXT(\"bd1-next\", '\\uef88'),\n    NINE_KEY(\"bd1-nine-key\", '\\uef89'),\n    NINE_POINTS_CONNECTED(\"bd1-nine-points-connected\", '\\uef8a'),\n    NINTENDO_SWITCH(\"bd1-nintendo-switch\", '\\uef8b'),\n    NMR(\"bd1-nmr\", '\\uef8c'),\n    NODE_FLAT(\"bd1-node-flat\", '\\uef8d'),\n    NODE_ROUND(\"bd1-node-round\", '\\uef8e'),\n    NODE_SQUARE(\"bd1-node-square\", '\\uef8f'),\n    NOODLES(\"bd1-noodles\", '\\uef90'),\n    NO_SHOOTING(\"bd1-no-shooting\", '\\uef91'),\n    NOTEBOOK(\"bd1-notebook\", '\\uef92'),\n    NOTEBOOK_AND_PEN(\"bd1-notebook-and-pen\", '\\uef93'),\n    NOTEBOOK_ONE(\"bd1-notebook-one\", '\\uef94'),\n    NOTEPAD(\"bd1-notepad\", '\\uef95'),\n    NOTES(\"bd1-notes\", '\\uef96'),\n    NUCLEAR_PLANT(\"bd1-nuclear-plant\", '\\uef97'),\n    NURSE_CAP(\"bd1-nurse-cap\", '\\uef98'),\n    NUT(\"bd1-nut\", '\\uef99'),\n    NUTRITION(\"bd1-nutrition\", '\\uef9a'),\n    OCEANENGINE(\"bd1-oceanengine\", '\\uef9b'),\n    OCTAGON(\"bd1-octagon\", '\\uef9c'),\n    OFF_SCREEN(\"bd1-off-screen\", '\\uef9d'),\n    OFF_SCREEN_ONE(\"bd1-off-screen-one\", '\\uef9e'),\n    OFF_SCREEN_TWO(\"bd1-off-screen-two\", '\\uef9f'),\n    OIL_INDUSTRY(\"bd1-oil-industry\", '\\uefa0'),\n    OKAY(\"bd1-okay\", '\\uefa1'),\n    ONE(\"bd1-one\", '\\uefa2'),\n    ONE_KEY(\"bd1-one-key\", '\\uefa3'),\n    ONE_ONE(\"bd1-one-one\", '\\uefa4'),\n    ONESIES(\"bd1-onesies\", '\\uefa5'),\n    ONE_THIRD_ROTATION(\"bd1-one-third-rotation\", '\\uefa6'),\n    ONE_TO_MANY(\"bd1-one-to-many\", '\\uefa7'),\n    ONE_TO_ONE(\"bd1-one-to-one\", '\\uefa8'),\n    ONLINE_MEETING(\"bd1-online-meeting\", '\\uefa9'),\n    OPEN(\"bd1-open\", '\\uefaa'),\n    OPEN_AN_ACCOUNT(\"bd1-open-an-account\", '\\uefab'),\n    OPEN_DOOR(\"bd1-open-door\", '\\uefac'),\n    OPEN_ONE(\"bd1-open-one\", '\\uefad'),\n    OPTIMIZE(\"bd1-optimize\", '\\uefae'),\n    OPTIONAL(\"bd1-optional\", '\\uefaf'),\n    ORANGE(\"bd1-orange\", '\\uefb0'),\n    ORANGE_ONE(\"bd1-orange-one\", '\\uefb1'),\n    ORANGE_STATION(\"bd1-orange-station\", '\\uefb2'),\n    ORDER(\"bd1-order\", '\\uefb3'),\n    ORDERED_LIST(\"bd1-ordered-list\", '\\uefb4'),\n    ORTHOPEDIC(\"bd1-orthopedic\", '\\uefb5'),\n    OSCILLATOR(\"bd1-oscillator\", '\\uefb6'),\n    OTHER(\"bd1-other\", '\\uefb7'),\n    OUTBOUND(\"bd1-outbound\", '\\uefb8'),\n    OUTDOOR(\"bd1-outdoor\", '\\uefb9'),\n    OUTGOING(\"bd1-outgoing\", '\\uefba'),\n    OVAL_LOVE(\"bd1-oval-love\", '\\uefbb'),\n    OVAL_LOVE_TWO(\"bd1-oval-love-two\", '\\uefbc'),\n    OVAL_ONE(\"bd1-oval-one\", '\\uefbd'),\n    OVEN(\"bd1-oven\", '\\uefbe'),\n    OVEN_TRAY(\"bd1-oven-tray\", '\\uefbf'),\n    OVERALL_REDUCTION(\"bd1-overall-reduction\", '\\uefc0'),\n    OWL(\"bd1-owl\", '\\uefc1'),\n    PACIFIER(\"bd1-pacifier\", '\\uefc2'),\n    PAD(\"bd1-pad\", '\\uefc3'),\n    PAGE(\"bd1-page\", '\\uefc4'),\n    PAGE_TEMPLATE(\"bd1-page-template\", '\\uefc5'),\n    PAGODA(\"bd1-pagoda\", '\\uefc6'),\n    PAINT(\"bd1-paint\", '\\uefc7'),\n    PAINTED_EGGSHELL(\"bd1-painted-eggshell\", '\\uefc8'),\n    PAINTED_SCREEN(\"bd1-painted-screen\", '\\uefc9'),\n    PALACE(\"bd1-palace\", '\\uefca'),\n    PALM(\"bd1-palm\", '\\uefcb'),\n    PANDA(\"bd1-panda\", '\\uefcc'),\n    PANGLE(\"bd1-pangle\", '\\uefcd'),\n    PANORAMA_HORIZONTAL(\"bd1-panorama-horizontal\", '\\uefce'),\n    PANTIES(\"bd1-panties\", '\\uefcf'),\n    PAPERCLIP(\"bd1-paperclip\", '\\uefd0'),\n    PAPER_MONEY(\"bd1-paper-money\", '\\uefd1'),\n    PAPER_MONEY_TWO(\"bd1-paper-money-two\", '\\uefd2'),\n    PAPER_SHIP(\"bd1-paper-ship\", '\\uefd3'),\n    PARABOLA(\"bd1-parabola\", '\\uefd4'),\n    PARACHUTE(\"bd1-parachute\", '\\uefd5'),\n    PARAGRAPH_ALPHABET(\"bd1-paragraph-alphabet\", '\\uefd6'),\n    PARAGRAPH_BREAK(\"bd1-paragraph-break\", '\\uefd7'),\n    PARAGRAPH_BREAK_TWO(\"bd1-paragraph-break-two\", '\\uefd8'),\n    PARAGRAPH_CUT(\"bd1-paragraph-cut\", '\\uefd9'),\n    PARAGRAPH_RECTANGLE(\"bd1-paragraph-rectangle\", '\\uefda'),\n    PARAGRAPH_ROUND(\"bd1-paragraph-round\", '\\uefdb'),\n    PARAGRAPH_TRIANGLE(\"bd1-paragraph-triangle\", '\\uefdc'),\n    PARAGRAPH_UNFOLD(\"bd1-paragraph-unfold\", '\\uefdd'),\n    PARALLEL_GATEWAY(\"bd1-parallel-gateway\", '\\uefde'),\n    PARALLELOGRAM(\"bd1-parallelogram\", '\\uefdf'),\n    PARENTING_BOOK(\"bd1-parenting-book\", '\\uefe0'),\n    PARKING(\"bd1-parking\", '\\uefe1'),\n    PARTY_BALLOON(\"bd1-party-balloon\", '\\uefe2'),\n    PASSPORT(\"bd1-passport\", '\\uefe3'),\n    PASSPORT_ONE(\"bd1-passport-one\", '\\uefe4'),\n    PAUSE(\"bd1-pause\", '\\uefe5'),\n    PAUSE_ONE(\"bd1-pause-one\", '\\uefe6'),\n    PAY_CODE(\"bd1-pay-code\", '\\uefe7'),\n    PAY_CODE_ONE(\"bd1-pay-code-one\", '\\uefe8'),\n    PAY_CODE_TWO(\"bd1-pay-code-two\", '\\uefe9'),\n    PAYMENT_METHOD(\"bd1-payment-method\", '\\uefea'),\n    PAYPAL(\"bd1-paypal\", '\\uefeb'),\n    PEACH(\"bd1-peach\", '\\uefec'),\n    PEAR(\"bd1-pear\", '\\uefed'),\n    PEARL_OF_THE_ORIENT(\"bd1-pearl-of-the-orient\", '\\uefee'),\n    PEAS(\"bd1-peas\", '\\uefef'),\n    PENCIL(\"bd1-pencil\", '\\ueff0'),\n    PENNANT(\"bd1-pennant\", '\\ueff1'),\n    PENTAGON_ONE(\"bd1-pentagon-one\", '\\ueff2'),\n    PEOPLE(\"bd1-people\", '\\ueff3'),\n    PEOPLE_BOTTOM(\"bd1-people-bottom\", '\\ueff4'),\n    PEOPLE_BOTTOM_CARD(\"bd1-people-bottom-card\", '\\ueff5'),\n    PEOPLE_DELETE(\"bd1-people-delete\", '\\ueff6'),\n    PEOPLE_DELETE_ONE(\"bd1-people-delete-one\", '\\ueff7'),\n    PEOPLE_DOWNLOAD(\"bd1-people-download\", '\\ueff8'),\n    PEOPLE_LEFT(\"bd1-people-left\", '\\ueff9'),\n    PEOPLE_MINUS(\"bd1-people-minus\", '\\ueffa'),\n    PEOPLE_MINUS_ONE(\"bd1-people-minus-one\", '\\ueffb'),\n    PEOPLE_PLUS(\"bd1-people-plus\", '\\ueffc'),\n    PEOPLE_PLUS_ONE(\"bd1-people-plus-one\", '\\ueffd'),\n    PEOPLE_RIGHT(\"bd1-people-right\", '\\ueffe'),\n    PEOPLES(\"bd1-peoples\", '\\uefff'),\n    PEOPLE_SAFE(\"bd1-people-safe\", '\\uf000'),\n    PEOPLE_SAFE_ONE(\"bd1-people-safe-one\", '\\uf001'),\n    PEOPLE_SEARCH(\"bd1-people-search\", '\\uf002'),\n    PEOPLE_SEARCH_ONE(\"bd1-people-search-one\", '\\uf003'),\n    PEOPLE_SPEAK(\"bd1-people-speak\", '\\uf004'),\n    PEOPLES_TWO(\"bd1-peoples-two\", '\\uf005'),\n    PEOPLE_TOP(\"bd1-people-top\", '\\uf006'),\n    PEOPLE_TOP_CARD(\"bd1-people-top-card\", '\\uf007'),\n    PEOPLE_UNKNOWN(\"bd1-people-unknown\", '\\uf008'),\n    PEOPLE_UPLOAD(\"bd1-people-upload\", '\\uf009'),\n    PERCENTAGE(\"bd1-percentage\", '\\uf00a'),\n    PERFORMANCE(\"bd1-performance\", '\\uf00b'),\n    PERFUME(\"bd1-perfume\", '\\uf00c'),\n    PERFUMER_BOTTLE(\"bd1-perfumer-bottle\", '\\uf00d'),\n    PERIOD(\"bd1-period\", '\\uf00e'),\n    PERMISSIONS(\"bd1-permissions\", '\\uf00f'),\n    PERSONAL_COLLECTION(\"bd1-personal-collection\", '\\uf010'),\n    PERSONAL_PRIVACY(\"bd1-personal-privacy\", '\\uf011'),\n    PERSPECTIVE(\"bd1-perspective\", '\\uf012'),\n    PESTICIDE(\"bd1-pesticide\", '\\uf013'),\n    PETROL(\"bd1-petrol\", '\\uf014'),\n    PHONE(\"bd1-phone\", '\\uf015'),\n    PHONE_BOOTH(\"bd1-phone-booth\", '\\uf016'),\n    PHONE_CALL(\"bd1-phone-call\", '\\uf017'),\n    PHONE_INCOMING(\"bd1-phone-incoming\", '\\uf018'),\n    PHONE_INCOMING_ONE(\"bd1-phone-incoming-one\", '\\uf019'),\n    PHONE_MISSED(\"bd1-phone-missed\", '\\uf01a'),\n    PHONE_OFF(\"bd1-phone-off\", '\\uf01b'),\n    PHONE_ONE(\"bd1-phone-one\", '\\uf01c'),\n    PHONE_OUTGOING(\"bd1-phone-outgoing\", '\\uf01d'),\n    PHONE_OUTGOING_ONE(\"bd1-phone-outgoing-one\", '\\uf01e'),\n    PHONE_TELEPHONE(\"bd1-phone-telephone\", '\\uf01f'),\n    PHONE_TWO(\"bd1-phone-two\", '\\uf020'),\n    PHONE_VIDEO_CALL(\"bd1-phone-video-call\", '\\uf021'),\n    PHONOGRAPH(\"bd1-phonograph\", '\\uf022'),\n    PHOTOGRAPH(\"bd1-photograph\", '\\uf023'),\n    PIANO(\"bd1-piano\", '\\uf024'),\n    PIC(\"bd1-pic\", '\\uf025'),\n    PIC_ONE(\"bd1-pic-one\", '\\uf026'),\n    PICTURE(\"bd1-picture\", '\\uf027'),\n    PICTURE_ALBUM(\"bd1-picture-album\", '\\uf028'),\n    PICTURE_ONE(\"bd1-picture-one\", '\\uf029'),\n    PIE(\"bd1-pie\", '\\uf02a'),\n    PIE_FIVE(\"bd1-pie-five\", '\\uf02b'),\n    PIE_FOUR(\"bd1-pie-four\", '\\uf02c'),\n    PIE_ONE(\"bd1-pie-one\", '\\uf02d'),\n    PIE_SEVEN(\"bd1-pie-seven\", '\\uf02e'),\n    PIE_SIX(\"bd1-pie-six\", '\\uf02f'),\n    PIE_THREE(\"bd1-pie-three\", '\\uf030'),\n    PIE_TWO(\"bd1-pie-two\", '\\uf031'),\n    PIG(\"bd1-pig\", '\\uf032'),\n    PIGEON(\"bd1-pigeon\", '\\uf033'),\n    PIG_ZODIAC(\"bd1-pig-zodiac\", '\\uf034'),\n    PILL(\"bd1-pill\", '\\uf035'),\n    PILLS(\"bd1-pills\", '\\uf036'),\n    PIN(\"bd1-pin\", '\\uf037'),\n    PINEAPPLE(\"bd1-pineapple\", '\\uf038'),\n    PINWHEEL(\"bd1-pinwheel\", '\\uf039'),\n    PISCES(\"bd1-pisces\", '\\uf03a'),\n    PIVOT_TABLE(\"bd1-pivot-table\", '\\uf03b'),\n    PLAN(\"bd1-plan\", '\\uf03c'),\n    PLANET(\"bd1-planet\", '\\uf03d'),\n    PLASTIC_SURGERY(\"bd1-plastic-surgery\", '\\uf03e'),\n    PLATTE(\"bd1-platte\", '\\uf03f'),\n    PLAY(\"bd1-play\", '\\uf040'),\n    PLAYBACK_PROGRESS(\"bd1-playback-progress\", '\\uf041'),\n    PLAY_BASKETBALL(\"bd1-play-basketball\", '\\uf042'),\n    PLAY_CYCLE(\"bd1-play-cycle\", '\\uf043'),\n    PLAY_ONCE(\"bd1-play-once\", '\\uf044'),\n    PLAY_ONE(\"bd1-play-one\", '\\uf045'),\n    PLAY_TWO(\"bd1-play-two\", '\\uf046'),\n    PLAY_VOLLEYBALL(\"bd1-play-volleyball\", '\\uf047'),\n    PLAY_WRONG(\"bd1-play-wrong\", '\\uf048'),\n    PLUG(\"bd1-plug\", '\\uf049'),\n    PLUG_ONE(\"bd1-plug-one\", '\\uf04a'),\n    PLUS(\"bd1-plus\", '\\uf04b'),\n    PLUS_CROSS(\"bd1-plus-cross\", '\\uf04c'),\n    POINT(\"bd1-point\", '\\uf04d'),\n    POINT_OUT(\"bd1-point-out\", '\\uf04e'),\n    POKEBALL_ONE(\"bd1-pokeball-one\", '\\uf04f'),\n    POKER(\"bd1-poker\", '\\uf050'),\n    POPCORN(\"bd1-popcorn\", '\\uf051'),\n    POPCORN_ONE(\"bd1-popcorn-one\", '\\uf052'),\n    POSITIVE_DYNAMICS(\"bd1-positive-dynamics\", '\\uf053'),\n    POT(\"bd1-pot\", '\\uf054'),\n    POTENTIOMETER(\"bd1-potentiometer\", '\\uf055'),\n    POUND(\"bd1-pound\", '\\uf056'),\n    POUND_SIGN(\"bd1-pound-sign\", '\\uf057'),\n    POUTING_FACE(\"bd1-pouting-face\", '\\uf058'),\n    POWDER(\"bd1-powder\", '\\uf059'),\n    POWER(\"bd1-power\", '\\uf05a'),\n    POWERPOINT(\"bd1-powerpoint\", '\\uf05b'),\n    POWER_SUPPLY(\"bd1-power-supply\", '\\uf05c'),\n    POWER_SUPPLY_ONE(\"bd1-power-supply-one\", '\\uf05d'),\n    PPT(\"bd1-ppt\", '\\uf05e'),\n    PREGNANT_WOMEN(\"bd1-pregnant-women\", '\\uf05f'),\n    PRESCHOOL(\"bd1-preschool\", '\\uf060'),\n    PRESCRIPTION(\"bd1-prescription\", '\\uf061'),\n    PRESS(\"bd1-press\", '\\uf062'),\n    PREVIEW_CLOSE(\"bd1-preview-close\", '\\uf063'),\n    PREVIEW_CLOSE_ONE(\"bd1-preview-close-one\", '\\uf064'),\n    PREVIEW_OPEN(\"bd1-preview-open\", '\\uf065'),\n    PRINTER(\"bd1-printer\", '\\uf066'),\n    PRINTER_ONE(\"bd1-printer-one\", '\\uf067'),\n    PRINTER_TWO(\"bd1-printer-two\", '\\uf068'),\n    PRISON(\"bd1-prison\", '\\uf069'),\n    PROCESS_LINE(\"bd1-process-line\", '\\uf06a'),\n    PROJECTOR(\"bd1-projector\", '\\uf06b'),\n    PROJECTOR_ONE(\"bd1-projector-one\", '\\uf06c'),\n    PROJECTOR_THREE(\"bd1-projector-three\", '\\uf06d'),\n    PROJECTOR_TWO(\"bd1-projector-two\", '\\uf06e'),\n    PROPORTIONAL_SCALING(\"bd1-proportional-scaling\", '\\uf06f'),\n    PROTECT(\"bd1-protect\", '\\uf070'),\n    PROTECTION(\"bd1-protection\", '\\uf071'),\n    PUBLIC_TOILET(\"bd1-public-toilet\", '\\uf072'),\n    PULL_DOOR(\"bd1-pull-door\", '\\uf073'),\n    PULL_REQUESTS(\"bd1-pull-requests\", '\\uf074'),\n    PUMPKIN(\"bd1-pumpkin\", '\\uf075'),\n    PURE_NATURAL(\"bd1-pure-natural\", '\\uf076'),\n    PUSH_DOOR(\"bd1-push-door\", '\\uf077'),\n    PUSHPIN(\"bd1-pushpin\", '\\uf078'),\n    PUZZLE(\"bd1-puzzle\", '\\uf079'),\n    PYRAMID(\"bd1-pyramid\", '\\uf07a'),\n    PYRAMID_ONE(\"bd1-pyramid-one\", '\\uf07b'),\n    QINGNIAO_CLUE(\"bd1-qingniao-clue\", '\\uf07c'),\n    QIYEHAO(\"bd1-qiyehao\", '\\uf07d'),\n    QUADRANGULAR_PYRAMID(\"bd1-quadrangular-pyramid\", '\\uf07e'),\n    QUADRILATERAL(\"bd1-quadrilateral\", '\\uf07f'),\n    QUOTE(\"bd1-quote\", '\\uf080'),\n    RABBIT(\"bd1-rabbit\", '\\uf081'),\n    RABBIT_ZODIAC(\"bd1-rabbit-zodiac\", '\\uf082'),\n    RADAR(\"bd1-radar\", '\\uf083'),\n    RADAR_CHART(\"bd1-radar-chart\", '\\uf084'),\n    RADAR_THREE(\"bd1-radar-three\", '\\uf085'),\n    RADAR_TWO(\"bd1-radar-two\", '\\uf086'),\n    RADIATION(\"bd1-radiation\", '\\uf087'),\n    RADIO(\"bd1-radio\", '\\uf088'),\n    RADIO_NANNY(\"bd1-radio-nanny\", '\\uf089'),\n    RADIO_ONE(\"bd1-radio-one\", '\\uf08a'),\n    RADIO_TWO(\"bd1-radio-two\", '\\uf08b'),\n    RADISH(\"bd1-radish\", '\\uf08c'),\n    RADISH_ONE(\"bd1-radish-one\", '\\uf08d'),\n    RAILWAY(\"bd1-railway\", '\\uf08e'),\n    RANKING(\"bd1-ranking\", '\\uf08f'),\n    RANKING_LIST(\"bd1-ranking-list\", '\\uf090'),\n    RATTLE(\"bd1-rattle\", '\\uf091'),\n    RATTLE_ONE(\"bd1-rattle-one\", '\\uf092'),\n    RAZOR(\"bd1-razor\", '\\uf093'),\n    READ_BOOK(\"bd1-read-book\", '\\uf094'),\n    RECEIVE(\"bd1-receive\", '\\uf095'),\n    RECEIVER(\"bd1-receiver\", '\\uf096'),\n    RECENT_VIEWS_SORT(\"bd1-recent-views-sort\", '\\uf097'),\n    RECORD(\"bd1-record\", '\\uf098'),\n    RECORD_DISC(\"bd1-record-disc\", '\\uf099'),\n    RECORD_PLAYER(\"bd1-record-player\", '\\uf09a'),\n    RECTANGLE(\"bd1-rectangle\", '\\uf09b'),\n    RECTANGLE_ONE(\"bd1-rectangle-one\", '\\uf09c'),\n    RECTANGLE_SMALL(\"bd1-rectangle-small\", '\\uf09d'),\n    RECTANGLE_TEAR(\"bd1-rectangle-tear\", '\\uf09e'),\n    RECTANGLE_X(\"bd1-rectangle-x\", '\\uf09f'),\n    RECTANGULAR_CIRCULAR_CONNECTION(\"bd1-rectangular-circular-connection\", '\\uf0a0'),\n    RECTANGULAR_CIRCULAR_SEPARATION(\"bd1-rectangular-circular-separation\", '\\uf0a1'),\n    RECTANGULAR_VERTEBRA(\"bd1-rectangular-vertebra\", '\\uf0a2'),\n    RECYCLE_BIN(\"bd1-recycle-bin\", '\\uf0a3'),\n    RECYCLING(\"bd1-recycling\", '\\uf0a4'),\n    RECYCLING_POOL(\"bd1-recycling-pool\", '\\uf0a5'),\n    RED_CROSS(\"bd1-red-cross\", '\\uf0a6'),\n    RED_ENVELOPE(\"bd1-red-envelope\", '\\uf0a7'),\n    RED_ENVELOPES(\"bd1-red-envelopes\", '\\uf0a8'),\n    REDO(\"bd1-redo\", '\\uf0a9'),\n    REDUCE(\"bd1-reduce\", '\\uf0aa'),\n    REDUCE_DECIMAL_PLACES(\"bd1-reduce-decimal-places\", '\\uf0ab'),\n    REDUCE_ONE(\"bd1-reduce-one\", '\\uf0ac'),\n    REDUCE_TWO(\"bd1-reduce-two\", '\\uf0ad'),\n    REDUCE_USER(\"bd1-reduce-user\", '\\uf0ae'),\n    REEL(\"bd1-reel\", '\\uf0af'),\n    REFRACTION(\"bd1-refraction\", '\\uf0b0'),\n    REFRESH(\"bd1-refresh\", '\\uf0b1'),\n    REFRESH_ONE(\"bd1-refresh-one\", '\\uf0b2'),\n    REFRIGERATOR(\"bd1-refrigerator\", '\\uf0b3'),\n    REJECT(\"bd1-reject\", '\\uf0b4'),\n    RELATIONAL_GRAPH(\"bd1-relational-graph\", '\\uf0b5'),\n    RELIEVED_FACE(\"bd1-relieved-face\", '\\uf0b6'),\n    RELOAD(\"bd1-reload\", '\\uf0b7'),\n    REMIND(\"bd1-remind\", '\\uf0b8'),\n    REMIND_DISABLE(\"bd1-remind-disable\", '\\uf0b9'),\n    REMOTE_CONTROL(\"bd1-remote-control\", '\\uf0ba'),\n    REMOTE_CONTROL_ONE(\"bd1-remote-control-one\", '\\uf0bb'),\n    RENAL(\"bd1-renal\", '\\uf0bc'),\n    RENAULT(\"bd1-renault\", '\\uf0bd'),\n    REPAIR(\"bd1-repair\", '\\uf0be'),\n    REPLAY_FIVE(\"bd1-replay-five\", '\\uf0bf'),\n    REPLAY_MUSIC(\"bd1-replay-music\", '\\uf0c0'),\n    REPORT(\"bd1-report\", '\\uf0c1'),\n    REPOSITIONING(\"bd1-repositioning\", '\\uf0c2'),\n    RESISTOR(\"bd1-resistor\", '\\uf0c3'),\n    RESPECT(\"bd1-respect\", '\\uf0c4'),\n    RESTING(\"bd1-resting\", '\\uf0c5'),\n    RETRO_BAG(\"bd1-retro-bag\", '\\uf0c6'),\n    RETURN(\"bd1-return\", '\\uf0c7'),\n    REVERSE_LENS(\"bd1-reverse-lens\", '\\uf0c8'),\n    REVERSE_LENS_ONE(\"bd1-reverse-lens-one\", '\\uf0c9'),\n    REVERSE_OPERATION_IN(\"bd1-reverse-operation-in\", '\\uf0ca'),\n    REVERSE_OPERATION_OUT(\"bd1-reverse-operation-out\", '\\uf0cb'),\n    REVERSE_ROTATION(\"bd1-reverse-rotation\", '\\uf0cc'),\n    RICE(\"bd1-rice\", '\\uf0cd'),\n    RIDING(\"bd1-riding\", '\\uf0ce'),\n    RIDING_ONE(\"bd1-riding-one\", '\\uf0cf'),\n    RIGHT(\"bd1-right\", '\\uf0d0'),\n    RIGHT_ANGLE(\"bd1-right-angle\", '\\uf0d1'),\n    RIGHT_BAR(\"bd1-right-bar\", '\\uf0d2'),\n    RIGHT_BRANCH(\"bd1-right-branch\", '\\uf0d3'),\n    RIGHT_BRANCH_ONE(\"bd1-right-branch-one\", '\\uf0d4'),\n    RIGHT_BRANCH_TWO(\"bd1-right-branch-two\", '\\uf0d5'),\n    RIGHT_C(\"bd1-right-c\", '\\uf0d6'),\n    RIGHT_EXPAND(\"bd1-right-expand\", '\\uf0d7'),\n    RIGHT_ONE(\"bd1-right-one\", '\\uf0d8'),\n    RIGHT_RUN(\"bd1-right-run\", '\\uf0d9'),\n    RIGHT_SMALL(\"bd1-right-small\", '\\uf0da'),\n    RIGHT_SMALL_DOWN(\"bd1-right-small-down\", '\\uf0db'),\n    RIGHT_SMALL_UP(\"bd1-right-small-up\", '\\uf0dc'),\n    RIGHT_SQUARE(\"bd1-right-square\", '\\uf0dd'),\n    RIGHT_TWO(\"bd1-right-two\", '\\uf0de'),\n    RIGHT_USER(\"bd1-right-user\", '\\uf0df'),\n    RING(\"bd1-ring\", '\\uf0e0'),\n    RING_ONE(\"bd1-ring-one\", '\\uf0e1'),\n    RINGS(\"bd1-rings\", '\\uf0e2'),\n    RIPPLE(\"bd1-ripple\", '\\uf0e3'),\n    ROAD(\"bd1-road\", '\\uf0e4'),\n    ROAD_CONE(\"bd1-road-cone\", '\\uf0e5'),\n    ROAD_ONE(\"bd1-road-one\", '\\uf0e6'),\n    ROAD_SIGN(\"bd1-road-sign\", '\\uf0e7'),\n    ROAD_SIGN_BOTH(\"bd1-road-sign-both\", '\\uf0e8'),\n    ROBOT(\"bd1-robot\", '\\uf0e9'),\n    ROBOT_ONE(\"bd1-robot-one\", '\\uf0ea'),\n    ROBOT_TWO(\"bd1-robot-two\", '\\uf0eb'),\n    ROCK(\"bd1-rock\", '\\uf0ec'),\n    ROCKET(\"bd1-rocket\", '\\uf0ed'),\n    ROCKET_ONE(\"bd1-rocket-one\", '\\uf0ee'),\n    ROCK_GESTURE(\"bd1-rock-gesture\", '\\uf0ef'),\n    ROCKING_HORSE(\"bd1-rocking-horse\", '\\uf0f0'),\n    ROLLERSKATES(\"bd1-rollerskates\", '\\uf0f1'),\n    ROMPER(\"bd1-romper\", '\\uf0f2'),\n    ROPE_SKIPPING(\"bd1-rope-skipping\", '\\uf0f3'),\n    ROPE_SKIPPING_ONE(\"bd1-rope-skipping-one\", '\\uf0f4'),\n    ROTATE(\"bd1-rotate\", '\\uf0f5'),\n    ROTATE_ONE(\"bd1-rotate-one\", '\\uf0f6'),\n    ROTATING_ADD(\"bd1-rotating-add\", '\\uf0f7'),\n    ROTATING_FORWARD(\"bd1-rotating-forward\", '\\uf0f8'),\n    ROTATION(\"bd1-rotation\", '\\uf0f9'),\n    ROTATION_HORIZONTAL(\"bd1-rotation-horizontal\", '\\uf0fa'),\n    ROTATION_ONE(\"bd1-rotation-one\", '\\uf0fb'),\n    ROTATION_VERTICAL(\"bd1-rotation-vertical\", '\\uf0fc'),\n    ROUND(\"bd1-round\", '\\uf0fd'),\n    ROUND_CALIPER(\"bd1-round-caliper\", '\\uf0fe'),\n    ROUND_DISTORTION(\"bd1-round-distortion\", '\\uf0ff'),\n    ROUND_MASK(\"bd1-round-mask\", '\\uf100'),\n    ROUND_SOCKET(\"bd1-round-socket\", '\\uf101'),\n    ROUND_TRIP(\"bd1-round-trip\", '\\uf102'),\n    ROUTER(\"bd1-router\", '\\uf103'),\n    ROUTER_ONE(\"bd1-router-one\", '\\uf104'),\n    ROW_HEIGHT(\"bd1-row-height\", '\\uf105'),\n    ROWING(\"bd1-rowing\", '\\uf106'),\n    RS_MALE(\"bd1-rs-male\", '\\uf107'),\n    RSS(\"bd1-rss\", '\\uf108'),\n    RUGBY(\"bd1-rugby\", '\\uf109'),\n    RUGBY_ONE(\"bd1-rugby-one\", '\\uf10a'),\n    RULER(\"bd1-ruler\", '\\uf10b'),\n    RULER_ONE(\"bd1-ruler-one\", '\\uf10c'),\n    RULE_TWO(\"bd1-rule-two\", '\\uf10d'),\n    RUN_LEFT(\"bd1-run-left\", '\\uf10e'),\n    SAFE_RETRIEVAL(\"bd1-safe-retrieval\", '\\uf10f'),\n    SAGITTARIUS(\"bd1-sagittarius\", '\\uf110'),\n    SAILBOAT(\"bd1-sailboat\", '\\uf111'),\n    SAILBOAT_ONE(\"bd1-sailboat-one\", '\\uf112'),\n    SAILING(\"bd1-sailing\", '\\uf113'),\n    SALES_REPORT(\"bd1-sales-report\", '\\uf114'),\n    SANDALS(\"bd1-sandals\", '\\uf115'),\n    SANDSTORM(\"bd1-sandstorm\", '\\uf116'),\n    SANDWICH(\"bd1-sandwich\", '\\uf117'),\n    SANDWICH_ONE(\"bd1-sandwich-one\", '\\uf118'),\n    SAPLING(\"bd1-sapling\", '\\uf119'),\n    SAVE(\"bd1-save\", '\\uf11a'),\n    SAVE_ONE(\"bd1-save-one\", '\\uf11b'),\n    SCALE(\"bd1-scale\", '\\uf11c'),\n    SCALE_ONE(\"bd1-scale-one\", '\\uf11d'),\n    SCALLION(\"bd1-scallion\", '\\uf11e'),\n    SCAN(\"bd1-scan\", '\\uf11f'),\n    SCAN_CODE(\"bd1-scan-code\", '\\uf120'),\n    SCANNING(\"bd1-scanning\", '\\uf121'),\n    SCANNING_TWO(\"bd1-scanning-two\", '\\uf122'),\n    SCAN_SETTING(\"bd1-scan-setting\", '\\uf123'),\n    SCATTER_ALIGNMENT(\"bd1-scatter-alignment\", '\\uf124'),\n    SCHEDULE(\"bd1-schedule\", '\\uf125'),\n    SCHOOL(\"bd1-school\", '\\uf126'),\n    SCISSORS(\"bd1-scissors\", '\\uf127'),\n    SCOREBOARD(\"bd1-scoreboard\", '\\uf128'),\n    SCORPIO(\"bd1-scorpio\", '\\uf129'),\n    SCREEN_ROTATION(\"bd1-screen-rotation\", '\\uf12a'),\n    SCREENSHOT(\"bd1-screenshot\", '\\uf12b'),\n    SCREENSHOT_ONE(\"bd1-screenshot-one\", '\\uf12c'),\n    SCREENSHOT_TWO(\"bd1-screenshot-two\", '\\uf12d'),\n    SCREWDRIVER(\"bd1-screwdriver\", '\\uf12e'),\n    SD(\"bd1-sd\", '\\uf12f'),\n    SD_CARD(\"bd1-sd-card\", '\\uf130'),\n    SEAL(\"bd1-seal\", '\\uf131'),\n    SEARCH(\"bd1-search\", '\\uf132'),\n    SEAT(\"bd1-seat\", '\\uf133'),\n    SECURITY(\"bd1-security\", '\\uf134'),\n    SECURITY_STALL(\"bd1-security-stall\", '\\uf135'),\n    SEEDLING(\"bd1-seedling\", '\\uf136'),\n    SELECTED(\"bd1-selected\", '\\uf137'),\n    SELECTED_FOCUS(\"bd1-selected-focus\", '\\uf138'),\n    SELFIE(\"bd1-selfie\", '\\uf139'),\n    SEND(\"bd1-send\", '\\uf13a'),\n    SEND_BACKWARD(\"bd1-send-backward\", '\\uf13b'),\n    SEND_EMAIL(\"bd1-send-email\", '\\uf13c'),\n    SEND_ONE(\"bd1-send-one\", '\\uf13d'),\n    SEND_TO_BACK(\"bd1-send-to-back\", '\\uf13e'),\n    SENT_TO_BACK(\"bd1-sent-to-back\", '\\uf13f'),\n    SEO(\"bd1-seo\", '\\uf140'),\n    SEO_FOLDER(\"bd1-seo-folder\", '\\uf141'),\n    SERVER(\"bd1-server\", '\\uf142'),\n    SET_OFF(\"bd1-set-off\", '\\uf143'),\n    SETTING(\"bd1-setting\", '\\uf144'),\n    SETTING_COMPUTER(\"bd1-setting-computer\", '\\uf145'),\n    SETTING_CONFIG(\"bd1-setting-config\", '\\uf146'),\n    SETTING_LAPTOP(\"bd1-setting-laptop\", '\\uf147'),\n    SETTING_ONE(\"bd1-setting-one\", '\\uf148'),\n    SETTING_THREE(\"bd1-setting-three\", '\\uf149'),\n    SETTING_TWO(\"bd1-setting-two\", '\\uf14a'),\n    SETTING_WEB(\"bd1-setting-web\", '\\uf14b'),\n    SEVEN_KEY(\"bd1-seven-key\", '\\uf14c'),\n    SHADE(\"bd1-shade\", '\\uf14d'),\n    SHAKE(\"bd1-shake\", '\\uf14e'),\n    SHARE(\"bd1-share\", '\\uf14f'),\n    SHARE_ONE(\"bd1-share-one\", '\\uf150'),\n    SHARE_SYS(\"bd1-share-sys\", '\\uf151'),\n    SHARE_THREE(\"bd1-share-three\", '\\uf152'),\n    SHARE_TWO(\"bd1-share-two\", '\\uf153'),\n    SHAVER(\"bd1-shaver\", '\\uf154'),\n    SHAVER_ONE(\"bd1-shaver-one\", '\\uf155'),\n    SHAVING(\"bd1-shaving\", '\\uf156'),\n    SHEEP_ZODIAC(\"bd1-sheep-zodiac\", '\\uf157'),\n    SHIELD(\"bd1-shield\", '\\uf158'),\n    SHIELD_ADD(\"bd1-shield-add\", '\\uf159'),\n    SHIP(\"bd1-ship\", '\\uf15a'),\n    SHOP(\"bd1-shop\", '\\uf15b'),\n    SHOPPING(\"bd1-shopping\", '\\uf15c'),\n    SHOPPING_BAG(\"bd1-shopping-bag\", '\\uf15d'),\n    SHOPPING_BAG_ONE(\"bd1-shopping-bag-one\", '\\uf15e'),\n    SHOPPING_CART(\"bd1-shopping-cart\", '\\uf15f'),\n    SHOPPING_CART_ADD(\"bd1-shopping-cart-add\", '\\uf160'),\n    SHOPPING_CART_DEL(\"bd1-shopping-cart-del\", '\\uf161'),\n    SHOPPING_CART_ONE(\"bd1-shopping-cart-one\", '\\uf162'),\n    SHOPPING_CART_TWO(\"bd1-shopping-cart-two\", '\\uf163'),\n    SHOPPING_MALL(\"bd1-shopping-mall\", '\\uf164'),\n    SHORTS(\"bd1-shorts\", '\\uf165'),\n    SHORT_SKIRT(\"bd1-short-skirt\", '\\uf166'),\n    SHOULDER_BAG(\"bd1-shoulder-bag\", '\\uf167'),\n    SHOVEL(\"bd1-shovel\", '\\uf168'),\n    SHOVEL_ONE(\"bd1-shovel-one\", '\\uf169'),\n    SHOWER_HEAD(\"bd1-shower-head\", '\\uf16a'),\n    SHRIMP(\"bd1-shrimp\", '\\uf16b'),\n    SHUFFLE(\"bd1-shuffle\", '\\uf16c'),\n    SHUFFLE_ONE(\"bd1-shuffle-one\", '\\uf16d'),\n    SHUTTER_PRIORITY(\"bd1-shutter-priority\", '\\uf16e'),\n    SICKBED(\"bd1-sickbed\", '\\uf16f'),\n    SIGNAL(\"bd1-signal\", '\\uf170'),\n    SIGNAL_ONE(\"bd1-signal-one\", '\\uf171'),\n    SIGNAL_STRENGTH(\"bd1-signal-strength\", '\\uf172'),\n    SIGNAL_TOWER(\"bd1-signal-tower\", '\\uf173'),\n    SIGNAL_TOWER_ONE(\"bd1-signal-tower-one\", '\\uf174'),\n    SIM(\"bd1-sim\", '\\uf175'),\n    SIM_CARD(\"bd1-sim-card\", '\\uf176'),\n    SINGLE_BED(\"bd1-single-bed\", '\\uf177'),\n    SINUSOID(\"bd1-sinusoid\", '\\uf178'),\n    SIPPY_CUP(\"bd1-sippy-cup\", '\\uf179'),\n    SIX(\"bd1-six\", '\\uf17a'),\n    SIX_CIRCULAR_CONNECTION(\"bd1-six-circular-connection\", '\\uf17b'),\n    SIX_KEY(\"bd1-six-key\", '\\uf17c'),\n    SIX_POINTS(\"bd1-six-points\", '\\uf17d'),\n    SKATE(\"bd1-skate\", '\\uf17e'),\n    SKATES(\"bd1-skates\", '\\uf17f'),\n    SKATING(\"bd1-skating\", '\\uf180'),\n    SKETCH(\"bd1-sketch\", '\\uf181'),\n    SKIING_NORDIC(\"bd1-skiing-nordic\", '\\uf182'),\n    SKULL(\"bd1-skull\", '\\uf183'),\n    SLAVE(\"bd1-slave\", '\\uf184'),\n    SLEAVES(\"bd1-sleaves\", '\\uf185'),\n    SLEEP(\"bd1-sleep\", '\\uf186'),\n    SLEEP_ONE(\"bd1-sleep-one\", '\\uf187'),\n    SLEEP_TWO(\"bd1-sleep-two\", '\\uf188'),\n    SLIDE(\"bd1-slide\", '\\uf189'),\n    SLIDE_TWO(\"bd1-slide-two\", '\\uf18a'),\n    SLIDING_HORIZONTAL(\"bd1-sliding-horizontal\", '\\uf18b'),\n    SLIDING_VERTICAL(\"bd1-sliding-vertical\", '\\uf18c'),\n    SLIGHTLY_FROWNING_FACE_WHIT_OPEN_MOUTH(\"bd1-slightly-frowning-face-whit-open-mouth\", '\\uf18d'),\n    SLIGHTLY_SMILING_FACE(\"bd1-slightly-smiling-face\", '\\uf18e'),\n    SLIPPERS(\"bd1-slippers\", '\\uf18f'),\n    SLIPPERS_ONE(\"bd1-slippers-one\", '\\uf190'),\n    SLY_FACE_WHIT_SMILE(\"bd1-sly-face-whit-smile\", '\\uf191'),\n    SMART_OPTIMIZATION(\"bd1-smart-optimization\", '\\uf192'),\n    SMILING_FACE(\"bd1-smiling-face\", '\\uf193'),\n    SMILING_FACE_WITH_SQUINTING_EYES(\"bd1-smiling-face-with-squinting-eyes\", '\\uf194'),\n    SNACKS(\"bd1-snacks\", '\\uf195'),\n    SNAKE_ZODIAC(\"bd1-snake-zodiac\", '\\uf196'),\n    SNOW(\"bd1-snow\", '\\uf197'),\n    SNOWFLAKE(\"bd1-snowflake\", '\\uf198'),\n    SNOWMAN(\"bd1-snowman\", '\\uf199'),\n    SOAP_BUBBLE(\"bd1-soap-bubble\", '\\uf19a'),\n    SOCCER(\"bd1-soccer\", '\\uf19b'),\n    SOCCER_ONE(\"bd1-soccer-one\", '\\uf19c'),\n    SOCKS(\"bd1-socks\", '\\uf19d'),\n    SOFA(\"bd1-sofa\", '\\uf19e'),\n    SOFA_TWO(\"bd1-sofa-two\", '\\uf19f'),\n    SOFTBALL(\"bd1-softball\", '\\uf1a0'),\n    SOLAR_ENERGY(\"bd1-solar-energy\", '\\uf1a1'),\n    SOLAR_ENERGY_ONE(\"bd1-solar-energy-one\", '\\uf1a2'),\n    SOLID_STATE_DISK(\"bd1-solid-state-disk\", '\\uf1a3'),\n    SORCERER_HAT(\"bd1-sorcerer-hat\", '\\uf1a4'),\n    SORT(\"bd1-sort\", '\\uf1a5'),\n    SORT_AMOUNT_DOWN(\"bd1-sort-amount-down\", '\\uf1a6'),\n    SORT_AMOUNT_UP(\"bd1-sort-amount-up\", '\\uf1a7'),\n    SORT_FOUR(\"bd1-sort-four\", '\\uf1a8'),\n    SORT_ONE(\"bd1-sort-one\", '\\uf1a9'),\n    SORT_THREE(\"bd1-sort-three\", '\\uf1aa'),\n    SORT_TWO(\"bd1-sort-two\", '\\uf1ab'),\n    SOUND(\"bd1-sound\", '\\uf1ac'),\n    SOUND_ONE(\"bd1-sound-one\", '\\uf1ad'),\n    SOUND_WAVE(\"bd1-sound-wave\", '\\uf1ae'),\n    SOURCE_CODE(\"bd1-source-code\", '\\uf1af'),\n    SOYBEAN_MILK_MAKER(\"bd1-soybean-milk-maker\", '\\uf1b0'),\n    SPA_CANDLE(\"bd1-spa-candle\", '\\uf1b1'),\n    SPACE_COLONY(\"bd1-space-colony\", '\\uf1b2'),\n    SPANNER(\"bd1-spanner\", '\\uf1b3'),\n    SPEAKER(\"bd1-speaker\", '\\uf1b4'),\n    SPEAKER_ONE(\"bd1-speaker-one\", '\\uf1b5'),\n    SPEED(\"bd1-speed\", '\\uf1b6'),\n    SPEED_ONE(\"bd1-speed-one\", '\\uf1b7'),\n    SPERM(\"bd1-sperm\", '\\uf1b8'),\n    SPHERE(\"bd1-sphere\", '\\uf1b9'),\n    SPIDER_MAN(\"bd1-spider-man\", '\\uf1ba'),\n    SPIKEDSHOES(\"bd1-spikedshoes\", '\\uf1bb'),\n    SPINNING_TOP(\"bd1-spinning-top\", '\\uf1bc'),\n    SPLIT(\"bd1-split\", '\\uf1bd'),\n    SPLIT_BRANCH(\"bd1-split-branch\", '\\uf1be'),\n    SPLIT_CELLS(\"bd1-split-cells\", '\\uf1bf'),\n    SPLIT_TURN_DOWN_LEFT(\"bd1-split-turn-down-left\", '\\uf1c0'),\n    SPLIT_TURN_DOWN_RIGHT(\"bd1-split-turn-down-right\", '\\uf1c1'),\n    SPOON(\"bd1-spoon\", '\\uf1c2'),\n    SPORT(\"bd1-sport\", '\\uf1c3'),\n    SPORTING(\"bd1-sporting\", '\\uf1c4'),\n    SQUARE(\"bd1-square\", '\\uf1c5'),\n    SQUARE_SMALL(\"bd1-square-small\", '\\uf1c6'),\n    SSD(\"bd1-ssd\", '\\uf1c7'),\n    STACK_LIGHT(\"bd1-stack-light\", '\\uf1c8'),\n    STAMP(\"bd1-stamp\", '\\uf1c9'),\n    STAND_UP(\"bd1-stand-up\", '\\uf1ca'),\n    STAPLER(\"bd1-stapler\", '\\uf1cb'),\n    STAR(\"bd1-star\", '\\uf1cc'),\n    STAR_ONE(\"bd1-star-one\", '\\uf1cd'),\n    START_TIME_SORT(\"bd1-start-time-sort\", '\\uf1ce'),\n    STEERING_WHEEL(\"bd1-steering-wheel\", '\\uf1cf'),\n    STEOLLER(\"bd1-steoller\", '\\uf1d0'),\n    STEREO_NESTING(\"bd1-stereo-nesting\", '\\uf1d1'),\n    STEREO_ONE(\"bd1-stereo-one\", '\\uf1d2'),\n    STEREO_PERSPECTIVE(\"bd1-stereo-perspective\", '\\uf1d3'),\n    STETHOSCOPE(\"bd1-stethoscope\", '\\uf1d4'),\n    STICKERS(\"bd1-stickers\", '\\uf1d5'),\n    STOCK_MARKET(\"bd1-stock-market\", '\\uf1d6'),\n    STOPWATCH(\"bd1-stopwatch\", '\\uf1d7'),\n    STOPWATCH_START(\"bd1-stopwatch-start\", '\\uf1d8'),\n    STORAGE_CARD_ONE(\"bd1-storage-card-one\", '\\uf1d9'),\n    STORAGE_CARD_TWO(\"bd1-storage-card-two\", '\\uf1da'),\n    STRAIGHT_RAZOR(\"bd1-straight-razor\", '\\uf1db'),\n    STRAW_HAT(\"bd1-straw-hat\", '\\uf1dc'),\n    STRETCHING(\"bd1-stretching\", '\\uf1dd'),\n    STRETCHING_ONE(\"bd1-stretching-one\", '\\uf1de'),\n    STRIKETHROUGH(\"bd1-strikethrough\", '\\uf1df'),\n    STRONGBOX(\"bd1-strongbox\", '\\uf1e0'),\n    S_TURN_DOWN(\"bd1-s-turn-down\", '\\uf1e1'),\n    S_TURN_LEFT(\"bd1-s-turn-left\", '\\uf1e2'),\n    S_TURN_RIGHT(\"bd1-s-turn-right\", '\\uf1e3'),\n    S_TURN_UP(\"bd1-s-turn-up\", '\\uf1e4'),\n    SUBTRACT_SELECTION(\"bd1-subtract-selection\", '\\uf1e5'),\n    SUBTRACT_SELECTION_ONE(\"bd1-subtract-selection-one\", '\\uf1e6'),\n    SUBWAY(\"bd1-subway\", '\\uf1e7'),\n    SUCCESS(\"bd1-success\", '\\uf1e8'),\n    SUCCESS_PICTURE(\"bd1-success-picture\", '\\uf1e9'),\n    SUM(\"bd1-sum\", '\\uf1ea'),\n    SUN(\"bd1-sun\", '\\uf1eb'),\n    SUNBATH(\"bd1-sunbath\", '\\uf1ec'),\n    SUN_HAT(\"bd1-sun-hat\", '\\uf1ed'),\n    SUNNY(\"bd1-sunny\", '\\uf1ee'),\n    SUN_ONE(\"bd1-sun-one\", '\\uf1ef'),\n    SUNRISE(\"bd1-sunrise\", '\\uf1f0'),\n    SUNSET(\"bd1-sunset\", '\\uf1f1'),\n    SUNSHADE(\"bd1-sunshade\", '\\uf1f2'),\n    SURPRISED_FACE_WITH_OPEN_BIG_MOUTH(\"bd1-surprised-face-with-open-big-mouth\", '\\uf1f3'),\n    SURPRISED_FACE_WITH_OPEN_MOUTH(\"bd1-surprised-face-with-open-mouth\", '\\uf1f4'),\n    SURVEILLANCE_CAMERAS(\"bd1-surveillance-cameras\", '\\uf1f5'),\n    SURVEILLANCE_CAMERAS_ONE(\"bd1-surveillance-cameras-one\", '\\uf1f6'),\n    SURVEILLANCE_CAMERAS_TWO(\"bd1-surveillance-cameras-two\", '\\uf1f7'),\n    SWALLOW(\"bd1-swallow\", '\\uf1f8'),\n    SWEATER(\"bd1-sweater\", '\\uf1f9'),\n    SWIMMING_POOL(\"bd1-swimming-pool\", '\\uf1fa'),\n    SWIMMING_RING(\"bd1-swimming-ring\", '\\uf1fb'),\n    SWIMSUIT(\"bd1-swimsuit\", '\\uf1fc'),\n    SWING(\"bd1-swing\", '\\uf1fd'),\n    SWIPE(\"bd1-swipe\", '\\uf1fe'),\n    SWITCH(\"bd1-switch\", '\\uf1ff'),\n    SWITCH_BUTTON(\"bd1-switch-button\", '\\uf200'),\n    SWITCH_CONTRAST(\"bd1-switch-contrast\", '\\uf201'),\n    SWITCHING_DONE(\"bd1-switching-done\", '\\uf202'),\n    SWITCH_NINTENDO(\"bd1-switch-nintendo\", '\\uf203'),\n    SWITCH_ONE(\"bd1-switch-one\", '\\uf204'),\n    SWITCH_THEMES(\"bd1-switch-themes\", '\\uf205'),\n    SWITCH_TRACK(\"bd1-switch-track\", '\\uf206'),\n    SYMBOL(\"bd1-symbol\", '\\uf207'),\n    SYMBOL_DOUBLE_X(\"bd1-symbol-double-x\", '\\uf208'),\n    SYMMETRY(\"bd1-symmetry\", '\\uf209'),\n    SYNC(\"bd1-sync\", '\\uf20a'),\n    SYSTEM(\"bd1-system\", '\\uf20b'),\n    TABLE(\"bd1-table\", '\\uf20c'),\n    TABLE_FILE(\"bd1-table-file\", '\\uf20d'),\n    TABLE_LAMP(\"bd1-table-lamp\", '\\uf20e'),\n    TABLE_REPORT(\"bd1-table-report\", '\\uf20f'),\n    TABLETENNIS(\"bd1-tabletennis\", '\\uf210'),\n    TAG(\"bd1-tag\", '\\uf211'),\n    TAG_ONE(\"bd1-tag-one\", '\\uf212'),\n    TAILORING(\"bd1-tailoring\", '\\uf213'),\n    TAILORING_TWO(\"bd1-tailoring-two\", '\\uf214'),\n    TAJ_MAHAL(\"bd1-taj-mahal\", '\\uf215'),\n    TAKE_OFF(\"bd1-take-off\", '\\uf216'),\n    TAKE_OFF_ONE(\"bd1-take-off-one\", '\\uf217'),\n    TAOBAO(\"bd1-taobao\", '\\uf218'),\n    TAPE(\"bd1-tape\", '\\uf219'),\n    TAPE_MEASURE(\"bd1-tape-measure\", '\\uf21a'),\n    TARGET(\"bd1-target\", '\\uf21b'),\n    TARGET_ONE(\"bd1-target-one\", '\\uf21c'),\n    TARGET_TWO(\"bd1-target-two\", '\\uf21d'),\n    TAURUS(\"bd1-taurus\", '\\uf21e'),\n    TAXI(\"bd1-taxi\", '\\uf21f'),\n    TEA(\"bd1-tea\", '\\uf220'),\n    TEA_DRINK(\"bd1-tea-drink\", '\\uf221'),\n    TEAPOT(\"bd1-teapot\", '\\uf222'),\n    TEETH(\"bd1-teeth\", '\\uf223'),\n    TELEGRAM(\"bd1-telegram\", '\\uf224'),\n    TELESCOPE(\"bd1-telescope\", '\\uf225'),\n    TENCENT_QQ(\"bd1-tencent-qq\", '\\uf226'),\n    TENNIS(\"bd1-tennis\", '\\uf227'),\n    TENT(\"bd1-tent\", '\\uf228'),\n    TENT_BANNER(\"bd1-tent-banner\", '\\uf229'),\n    TERMINAL(\"bd1-terminal\", '\\uf22a'),\n    TERMINATION_FILE(\"bd1-termination-file\", '\\uf22b'),\n    TERRACE(\"bd1-terrace\", '\\uf22c'),\n    TEST_TUBE(\"bd1-test-tube\", '\\uf22d'),\n    TEXT(\"bd1-text\", '\\uf22e'),\n    TEXTAREA(\"bd1-textarea\", '\\uf22f'),\n    TEXT_BOLD(\"bd1-text-bold\", '\\uf230'),\n    TEXT_ITALIC(\"bd1-text-italic\", '\\uf231'),\n    TEXT_MESSAGE(\"bd1-text-message\", '\\uf232'),\n    TEXT_RECOGNITION(\"bd1-text-recognition\", '\\uf233'),\n    TEXT_ROTATION_DOWN(\"bd1-text-rotation-down\", '\\uf234'),\n    TEXT_ROTATION_LEFT(\"bd1-text-rotation-left\", '\\uf235'),\n    TEXT_ROTATION_NONE(\"bd1-text-rotation-none\", '\\uf236'),\n    TEXT_ROTATION_UP(\"bd1-text-rotation-up\", '\\uf237'),\n    TEXT_STYLE(\"bd1-text-style\", '\\uf238'),\n    TEXT_STYLE_ONE(\"bd1-text-style-one\", '\\uf239'),\n    TEXT_UNDERLINE(\"bd1-text-underline\", '\\uf23a'),\n    TEXTURE(\"bd1-texture\", '\\uf23b'),\n    TEXTURE_TWO(\"bd1-texture-two\", '\\uf23c'),\n    TEXT_WRAP_OVERFLOW(\"bd1-text-wrap-overflow\", '\\uf23d'),\n    TEXT_WRAP_TRUNCATION(\"bd1-text-wrap-truncation\", '\\uf23e'),\n    THEATER(\"bd1-theater\", '\\uf23f'),\n    THEME(\"bd1-theme\", '\\uf240'),\n    THERMOMETER(\"bd1-thermometer\", '\\uf241'),\n    THERMOMETER_ONE(\"bd1-thermometer-one\", '\\uf242'),\n    THERMOS_CUP(\"bd1-thermos-cup\", '\\uf243'),\n    THE_SINGLE_SHOULDER_BAG(\"bd1-the-single-shoulder-bag\", '\\uf244'),\n    THIN(\"bd1-thin\", '\\uf245'),\n    THINKING_PROBLEM(\"bd1-thinking-problem\", '\\uf246'),\n    THREE(\"bd1-three\", '\\uf247'),\n    THREE_D_GLASSES(\"bd1-three-d-glasses\", '\\uf248'),\n    THREE_HEXAGONS(\"bd1-three-hexagons\", '\\uf249'),\n    THREE_KEY(\"bd1-three-key\", '\\uf24a'),\n    THREE_SLASHES(\"bd1-three-slashes\", '\\uf24b'),\n    THREE_THREE(\"bd1-three-three\", '\\uf24c'),\n    THREE_TRIANGLES(\"bd1-three-triangles\", '\\uf24d'),\n    THUMBS_DOWN(\"bd1-thumbs-down\", '\\uf24e'),\n    THUMBS_UP(\"bd1-thumbs-up\", '\\uf24f'),\n    THUNDERBOLT(\"bd1-thunderbolt\", '\\uf250'),\n    THUNDERSTORM(\"bd1-thunderstorm\", '\\uf251'),\n    THUNDERSTORM_ONE(\"bd1-thunderstorm-one\", '\\uf252'),\n    TICKET(\"bd1-ticket\", '\\uf253'),\n    TICKET_ONE(\"bd1-ticket-one\", '\\uf254'),\n    TICKETS_CHECKED(\"bd1-tickets-checked\", '\\uf255'),\n    TICKETS_ONE(\"bd1-tickets-one\", '\\uf256'),\n    TICKETS_TWO(\"bd1-tickets-two\", '\\uf257'),\n    TIGER_ZODIAC(\"bd1-tiger-zodiac\", '\\uf258'),\n    TIKTOK(\"bd1-tiktok\", '\\uf259'),\n    TIME(\"bd1-time\", '\\uf25a'),\n    TIMED_MAIL(\"bd1-timed-mail\", '\\uf25b'),\n    TIMELINE(\"bd1-timeline\", '\\uf25c'),\n    TIMER(\"bd1-timer\", '\\uf25d'),\n    TIPS(\"bd1-tips\", '\\uf25e'),\n    TIPS_ONE(\"bd1-tips-one\", '\\uf25f'),\n    TIRE_SWING(\"bd1-tire-swing\", '\\uf260'),\n    TITLE_LEVEL(\"bd1-title-level\", '\\uf261'),\n    TO_BOTTOM(\"bd1-to-bottom\", '\\uf262'),\n    TO_BOTTOM_ONE(\"bd1-to-bottom-one\", '\\uf263'),\n    TOILET(\"bd1-toilet\", '\\uf264'),\n    TO_LEFT(\"bd1-to-left\", '\\uf265'),\n    TOMATO(\"bd1-tomato\", '\\uf266'),\n    TOOL(\"bd1-tool\", '\\uf267'),\n    TOOLKIT(\"bd1-toolkit\", '\\uf268'),\n    TOP_BAR(\"bd1-top-bar\", '\\uf269'),\n    TOPBUZZ(\"bd1-topbuzz\", '\\uf26a'),\n    TOPIC(\"bd1-topic\", '\\uf26b'),\n    TOPIC_DISCUSSION(\"bd1-topic-discussion\", '\\uf26c'),\n    TORCH(\"bd1-torch\", '\\uf26d'),\n    TO_RIGHT(\"bd1-to-right\", '\\uf26e'),\n    TO_TOP(\"bd1-to-top\", '\\uf26f'),\n    TO_TOP_ONE(\"bd1-to-top-one\", '\\uf270'),\n    TOUR_BUS(\"bd1-tour-bus\", '\\uf271'),\n    TOWEL(\"bd1-towel\", '\\uf272'),\n    TOWER(\"bd1-tower\", '\\uf273'),\n    TOWER_OF_BABEL(\"bd1-tower-of-babel\", '\\uf274'),\n    TOWER_OF_PISA(\"bd1-tower-of-pisa\", '\\uf275'),\n    TOXINS(\"bd1-toxins\", '\\uf276'),\n    TRACE(\"bd1-trace\", '\\uf277'),\n    TRADEMARK(\"bd1-trademark\", '\\uf278'),\n    TRADITIONAL_CHINESE_MEDICINE(\"bd1-traditional-chinese-medicine\", '\\uf279'),\n    TRAIN(\"bd1-train\", '\\uf27a'),\n    TRANSACTION(\"bd1-transaction\", '\\uf27b'),\n    TRANSACTION_ORDER(\"bd1-transaction-order\", '\\uf27c'),\n    TRANSFER(\"bd1-transfer\", '\\uf27d'),\n    TRANSFER_DATA(\"bd1-transfer-data\", '\\uf27e'),\n    TRANSFORM(\"bd1-transform\", '\\uf27f'),\n    TRANSLATE(\"bd1-translate\", '\\uf280'),\n    TRANSLATION(\"bd1-translation\", '\\uf281'),\n    TRANSPORT(\"bd1-transport\", '\\uf282'),\n    TRANSPORTER(\"bd1-transporter\", '\\uf283'),\n    TRAPEZOID(\"bd1-trapezoid\", '\\uf284'),\n    TRAY(\"bd1-tray\", '\\uf285'),\n    TREADMILL(\"bd1-treadmill\", '\\uf286'),\n    TREADMILL_ONE(\"bd1-treadmill-one\", '\\uf287'),\n    TREADMILL_TWO(\"bd1-treadmill-two\", '\\uf288'),\n    TREASURE_CHEST(\"bd1-treasure-chest\", '\\uf289'),\n    TREE(\"bd1-tree\", '\\uf28a'),\n    TREE_DIAGRAM(\"bd1-tree-diagram\", '\\uf28b'),\n    TREE_LIST(\"bd1-tree-list\", '\\uf28c'),\n    TREE_ONE(\"bd1-tree-one\", '\\uf28d'),\n    TREE_TWO(\"bd1-tree-two\", '\\uf28e'),\n    TREND(\"bd1-trend\", '\\uf28f'),\n    TRENDING_DOWN(\"bd1-trending-down\", '\\uf290'),\n    TRENDING_UP(\"bd1-trending-up\", '\\uf291'),\n    TREND_TWO(\"bd1-trend-two\", '\\uf292'),\n    TRIANGLE(\"bd1-triangle\", '\\uf293'),\n    TRIANGLE_ROUND_RECTANGLE(\"bd1-triangle-round-rectangle\", '\\uf294'),\n    TRIANGLE_RULER(\"bd1-triangle-ruler\", '\\uf295'),\n    TRIANGULAR_PYRAMID(\"bd1-triangular-pyramid\", '\\uf296'),\n    TROPHY(\"bd1-trophy\", '\\uf297'),\n    TROUSERS_BELL_BOTTOMS(\"bd1-trousers-bell-bottoms\", '\\uf298'),\n    TRUCK(\"bd1-truck\", '\\uf299'),\n    TRUMPET(\"bd1-trumpet\", '\\uf29a'),\n    TRUNK(\"bd1-trunk\", '\\uf29b'),\n    T_SHIRT(\"bd1-t-shirt\", '\\uf29c'),\n    TUB(\"bd1-tub\", '\\uf29d'),\n    TUCHONG(\"bd1-tuchong\", '\\uf29e'),\n    TUMBLR(\"bd1-tumblr\", '\\uf29f'),\n    TURKEY(\"bd1-turkey\", '\\uf2a0'),\n    TURN_AROUND(\"bd1-turn-around\", '\\uf2a1'),\n    TURN_OFF_BLUETOOTH(\"bd1-turn-off-bluetooth\", '\\uf2a2'),\n    TURN_ON(\"bd1-turn-on\", '\\uf2a3'),\n    TV(\"bd1-tv\", '\\uf2a4'),\n    TV_ONE(\"bd1-tv-one\", '\\uf2a5'),\n    TWITTER(\"bd1-twitter\", '\\uf2a6'),\n    TWO(\"bd1-two\", '\\uf2a7'),\n    TWO_DIMENSIONAL_CODE(\"bd1-two-dimensional-code\", '\\uf2a8'),\n    TWO_DIMENSIONAL_CODE_ONE(\"bd1-two-dimensional-code-one\", '\\uf2a9'),\n    TWO_DIMENSIONAL_CODE_TWO(\"bd1-two-dimensional-code-two\", '\\uf2aa'),\n    TWO_ELLIPSES(\"bd1-two-ellipses\", '\\uf2ab'),\n    TWO_FINGERS(\"bd1-two-fingers\", '\\uf2ac'),\n    TWO_HANDS(\"bd1-two-hands\", '\\uf2ad'),\n    TWO_KEY(\"bd1-two-key\", '\\uf2ae'),\n    TWO_SEMICIRCLES(\"bd1-two-semicircles\", '\\uf2af'),\n    TWO_TRIANGLES(\"bd1-two-triangles\", '\\uf2b0'),\n    TWO_TRIANGLES_TWO(\"bd1-two-triangles-two\", '\\uf2b1'),\n    TWO_TWO(\"bd1-two-two\", '\\uf2b2'),\n    TYPE_DRIVE(\"bd1-type-drive\", '\\uf2b3'),\n    U_DISK(\"bd1-u-disk\", '\\uf2b4'),\n    ULIKECAM(\"bd1-ulikecam\", '\\uf2b5'),\n    UMBRELLA(\"bd1-umbrella\", '\\uf2b6'),\n    UMBRELLA_ONE(\"bd1-umbrella-one\", '\\uf2b7'),\n    UMBRELLA_TWO(\"bd1-umbrella-two\", '\\uf2b8'),\n    UNDO(\"bd1-undo\", '\\uf2b9'),\n    UNGROUP(\"bd1-ungroup\", '\\uf2ba'),\n    UNICAST(\"bd1-unicast\", '\\uf2bb'),\n    UNION_SELECTION(\"bd1-union-selection\", '\\uf2bc'),\n    UNIVERSAL(\"bd1-universal\", '\\uf2bd'),\n    UNLIKE(\"bd1-unlike\", '\\uf2be'),\n    UNLINK(\"bd1-unlink\", '\\uf2bf'),\n    UNLOCK(\"bd1-unlock\", '\\uf2c0'),\n    UNLOCK_ONE(\"bd1-unlock-one\", '\\uf2c1'),\n    UNORDERED_LIST(\"bd1-unordered-list\", '\\uf2c2'),\n    UP(\"bd1-up\", '\\uf2c3'),\n    UP_AND_DOWN(\"bd1-up-and-down\", '\\uf2c4'),\n    UP_C(\"bd1-up-c\", '\\uf2c5'),\n    UPDATE_ROTATION(\"bd1-update-rotation\", '\\uf2c6'),\n    UPLOAD(\"bd1-upload\", '\\uf2c7'),\n    UPLOAD_COMPUTER(\"bd1-upload-computer\", '\\uf2c8'),\n    UPLOAD_LAPTOP(\"bd1-upload-laptop\", '\\uf2c9'),\n    UPLOAD_LOGS(\"bd1-upload-logs\", '\\uf2ca'),\n    UPLOAD_ONE(\"bd1-upload-one\", '\\uf2cb'),\n    UPLOAD_PICTURE(\"bd1-upload-picture\", '\\uf2cc'),\n    UPLOAD_THREE(\"bd1-upload-three\", '\\uf2cd'),\n    UPLOAD_TWO(\"bd1-upload-two\", '\\uf2ce'),\n    UPLOAD_WEB(\"bd1-upload-web\", '\\uf2cf'),\n    UP_ONE(\"bd1-up-one\", '\\uf2d0'),\n    UPSIDE_DOWN_FACE(\"bd1-upside-down-face\", '\\uf2d1'),\n    UP_SMALL(\"bd1-up-small\", '\\uf2d2'),\n    UP_SQUARE(\"bd1-up-square\", '\\uf2d3'),\n    UP_TWO(\"bd1-up-two\", '\\uf2d4'),\n    USB(\"bd1-usb\", '\\uf2d5'),\n    USB_MEMORY_STICK(\"bd1-usb-memory-stick\", '\\uf2d6'),\n    USB_MICRO_ONE(\"bd1-usb-micro-one\", '\\uf2d7'),\n    USB_MICRO_TWO(\"bd1-usb-micro-two\", '\\uf2d8'),\n    USB_ONE(\"bd1-usb-one\", '\\uf2d9'),\n    USB_TYPE_C(\"bd1-usb-type-c\", '\\uf2da'),\n    USER(\"bd1-user\", '\\uf2db'),\n    USER_BUSINESS(\"bd1-user-business\", '\\uf2dc'),\n    USER_POSITIONING(\"bd1-user-positioning\", '\\uf2dd'),\n    USER_TO_USER_TRANSMISSION(\"bd1-user-to-user-transmission\", '\\uf2de'),\n    UTERUS(\"bd1-uterus\", '\\uf2df'),\n    U_TURN_DOWN(\"bd1-u-turn-down\", '\\uf2e0'),\n    U_TURN_LEFT(\"bd1-u-turn-left\", '\\uf2e1'),\n    U_TURN_RIGHT(\"bd1-u-turn-right\", '\\uf2e2'),\n    U_TURN_UP(\"bd1-u-turn-up\", '\\uf2e3'),\n    VACATION(\"bd1-vacation\", '\\uf2e4'),\n    VACUUM_CLEANER(\"bd1-vacuum-cleaner\", '\\uf2e5'),\n    VEGETABLE_BASKET(\"bd1-vegetable-basket\", '\\uf2e6'),\n    VEGETABLES(\"bd1-vegetables\", '\\uf2e7'),\n    VERTICALLY_CENTERED(\"bd1-vertically-centered\", '\\uf2e8'),\n    VERTICAL_SPACING_BETWEEN_ITEMS(\"bd1-vertical-spacing-between-items\", '\\uf2e9'),\n    VERTICAL_TIDY_UP(\"bd1-vertical-tidy-up\", '\\uf2ea'),\n    VERTICAL_TIMELINE(\"bd1-vertical-timeline\", '\\uf2eb'),\n    VEST(\"bd1-vest\", '\\uf2ec'),\n    VIAL(\"bd1-vial\", '\\uf2ed'),\n    VICIA_FABA(\"bd1-vicia-faba\", '\\uf2ee'),\n    VIDEO(\"bd1-video\", '\\uf2ef'),\n    VIDEOCAMERA(\"bd1-videocamera\", '\\uf2f0'),\n    VIDEOCAMERA_ONE(\"bd1-videocamera-one\", '\\uf2f1'),\n    VIDEO_CONFERENCE(\"bd1-video-conference\", '\\uf2f2'),\n    VIDEO_FILE(\"bd1-video-file\", '\\uf2f3'),\n    VIDEO_ONE(\"bd1-video-one\", '\\uf2f4'),\n    VIDEO_TWO(\"bd1-video-two\", '\\uf2f5'),\n    VIENCHARTS(\"bd1-viencharts\", '\\uf2f6'),\n    VIEWFINDER(\"bd1-viewfinder\", '\\uf2f7'),\n    VIEW_GRID_CARD(\"bd1-view-grid-card\", '\\uf2f8'),\n    VIEW_GRID_DETAIL(\"bd1-view-grid-detail\", '\\uf2f9'),\n    VIEW_GRID_LIST(\"bd1-view-grid-list\", '\\uf2fa'),\n    VIEW_LIST(\"bd1-view-list\", '\\uf2fb'),\n    VIGO(\"bd1-vigo\", '\\uf2fc'),\n    VIP(\"bd1-vip\", '\\uf2fd'),\n    VIP_ONE(\"bd1-vip-one\", '\\uf2fe'),\n    VIRGO(\"bd1-virgo\", '\\uf2ff'),\n    VIRTUAL_REALITY_GLASSES(\"bd1-virtual-reality-glasses\", '\\uf300'),\n    VOICE(\"bd1-voice\", '\\uf301'),\n    VOICE_INPUT(\"bd1-voice-input\", '\\uf302'),\n    VOICEMAIL(\"bd1-voicemail\", '\\uf303'),\n    VOICE_MESSAGE(\"bd1-voice-message\", '\\uf304'),\n    VOICE_OFF(\"bd1-voice-off\", '\\uf305'),\n    VOICE_ONE(\"bd1-voice-one\", '\\uf306'),\n    VOLKSWAGEN(\"bd1-volkswagen\", '\\uf307'),\n    VOLLEYBALL(\"bd1-volleyball\", '\\uf308'),\n    VOLUME_DOWN(\"bd1-volume-down\", '\\uf309'),\n    VOLUME_MUTE(\"bd1-volume-mute\", '\\uf30a'),\n    VOLUME_NOTICE(\"bd1-volume-notice\", '\\uf30b'),\n    VOLUME_SMALL(\"bd1-volume-small\", '\\uf30c'),\n    VOLUME_UP(\"bd1-volume-up\", '\\uf30d'),\n    VR_GLASSES(\"bd1-vr-glasses\", '\\uf30e'),\n    WAISTLINE(\"bd1-waistline\", '\\uf30f'),\n    WALLET(\"bd1-wallet\", '\\uf310'),\n    WALLET_ONE(\"bd1-wallet-one\", '\\uf311'),\n    WALLET_THREE(\"bd1-wallet-three\", '\\uf312'),\n    WALLET_TWO(\"bd1-wallet-two\", '\\uf313'),\n    WAREHOUSING(\"bd1-warehousing\", '\\uf314'),\n    WASHING_MACHINE(\"bd1-washing-machine\", '\\uf315'),\n    WASHING_MACHINE_ONE(\"bd1-washing-machine-one\", '\\uf316'),\n    WATCH(\"bd1-watch\", '\\uf317'),\n    WATCH_ONE(\"bd1-watch-one\", '\\uf318'),\n    WATER(\"bd1-water\", '\\uf319'),\n    WATERFALLS_H(\"bd1-waterfalls-h\", '\\uf31a'),\n    WATERFALLS_V(\"bd1-waterfalls-v\", '\\uf31b'),\n    WATER_LEVEL(\"bd1-water-level\", '\\uf31c'),\n    WATERMELON(\"bd1-watermelon\", '\\uf31d'),\n    WATERMELON_ONE(\"bd1-watermelon-one\", '\\uf31e'),\n    WATER_NO(\"bd1-water-no\", '\\uf31f'),\n    WATERPOLO(\"bd1-waterpolo\", '\\uf320'),\n    WATERPOLO_ONE(\"bd1-waterpolo-one\", '\\uf321'),\n    WATER_RATE(\"bd1-water-rate\", '\\uf322'),\n    WATER_RATE_TWO(\"bd1-water-rate-two\", '\\uf323'),\n    WAVES(\"bd1-waves\", '\\uf324'),\n    WAVES_LEFT(\"bd1-waves-left\", '\\uf325'),\n    WAVES_RIGHT(\"bd1-waves-right\", '\\uf326'),\n    WEARY_FACE(\"bd1-weary-face\", '\\uf327'),\n    WEBCAM(\"bd1-webcam\", '\\uf328'),\n    WEB_PAGE(\"bd1-web-page\", '\\uf329'),\n    WECHAT(\"bd1-wechat\", '\\uf32a'),\n    WEIBO(\"bd1-weibo\", '\\uf32b'),\n    WEIGHT(\"bd1-weight\", '\\uf32c'),\n    WEIGHTLIFTING(\"bd1-weightlifting\", '\\uf32d'),\n    WEIXIN_CARDS_OFFERS(\"bd1-weixin-cards-offers\", '\\uf32e'),\n    WEIXIN_FAVORITES(\"bd1-weixin-favorites\", '\\uf32f'),\n    WEIXIN_GAMES(\"bd1-weixin-games\", '\\uf330'),\n    WEIXIN_MARKET(\"bd1-weixin-market\", '\\uf331'),\n    WEIXIN_MINI_APP(\"bd1-weixin-mini-app\", '\\uf332'),\n    WEIXIN_PEOPLE_NEARBY(\"bd1-weixin-people-nearby\", '\\uf333'),\n    WEIXIN_SCAN(\"bd1-weixin-scan\", '\\uf334'),\n    WEIXIN_SEARCH(\"bd1-weixin-search\", '\\uf335'),\n    WEIXIN_SHAKE(\"bd1-weixin-shake\", '\\uf336'),\n    WEIXIN_TOP_STORIES(\"bd1-weixin-top-stories\", '\\uf337'),\n    WHALE(\"bd1-whale\", '\\uf338'),\n    WHEELCHAIR(\"bd1-wheelchair\", '\\uf339'),\n    WHIRLWIND(\"bd1-whirlwind\", '\\uf33a'),\n    WHISTLING(\"bd1-whistling\", '\\uf33b'),\n    WHOLE_SITE_ACCELERATOR(\"bd1-whole-site-accelerator\", '\\uf33c'),\n    WIFI(\"bd1-wifi\", '\\uf33d'),\n    WIND(\"bd1-wind\", '\\uf33e'),\n    WINDMILL(\"bd1-windmill\", '\\uf33f'),\n    WINDMILL_ONE(\"bd1-windmill-one\", '\\uf340'),\n    WINDMILL_TWO(\"bd1-windmill-two\", '\\uf341'),\n    WINDOWS(\"bd1-windows\", '\\uf342'),\n    WIND_TURBINE(\"bd1-wind-turbine\", '\\uf343'),\n    WINGSUIT_FLYING(\"bd1-wingsuit-flying\", '\\uf344'),\n    WINKING_FACE(\"bd1-winking-face\", '\\uf345'),\n    WINKING_FACE_WITH_OPEN_EYES(\"bd1-winking-face-with-open-eyes\", '\\uf346'),\n    WOMAN(\"bd1-woman\", '\\uf347'),\n    WOMEN(\"bd1-women\", '\\uf348'),\n    WOMEN_COAT(\"bd1-women-coat\", '\\uf349'),\n    WOOLEN_HAT(\"bd1-woolen-hat\", '\\uf34a'),\n    WORD(\"bd1-word\", '\\uf34b'),\n    WORKBENCH(\"bd1-workbench\", '\\uf34c'),\n    WORKER(\"bd1-worker\", '\\uf34d'),\n    WORLD(\"bd1-world\", '\\uf34e'),\n    WORRIED_FACE(\"bd1-worried-face\", '\\uf34f'),\n    WRITE(\"bd1-write\", '\\uf350'),\n    WRITING_FLUENTLY(\"bd1-writing-fluently\", '\\uf351'),\n    WRONG_USER(\"bd1-wrong-user\", '\\uf352'),\n    XIAODU(\"bd1-xiaodu\", '\\uf353'),\n    XIAODU_HOME(\"bd1-xiaodu-home\", '\\uf354'),\n    XIGUA(\"bd1-xigua\", '\\uf355'),\n    XINGFULI(\"bd1-xingfuli\", '\\uf356'),\n    XINGTU(\"bd1-xingtu\", '\\uf357'),\n    YEP(\"bd1-yep\", '\\uf358'),\n    YOUTOBE(\"bd1-youtobe\", '\\uf359'),\n    YOUTUBE(\"bd1-youtube\", '\\uf35a'),\n    ZERO_KEY(\"bd1-zero-key\", '\\uf35b'),\n    ZIJINYUNYING(\"bd1-zijinyunying\", '\\uf35c'),\n    ZIP(\"bd1-zip\", '\\uf35d'),\n    ZOOM(\"bd1-zoom\", '\\uf35e'),\n    ZOOM_IN(\"bd1-zoom-in\", '\\uf35f'),\n    ZOOM_INTERNAL(\"bd1-zoom-internal\", '\\uf360'),\n    ZOOM_OUT(\"bd1-zoom-out\", '\\uf361');\n\n    public static BytedanceIconsThinMZ findByDescription(String description) {\n        for (BytedanceIconsThinMZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    BytedanceIconsThinMZ(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsThinMZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author LeeWyatt\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class BytedanceIconsThinMZIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/bytedance/1.3.0/fonts/Bytedance-IconPack-Thin.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"bd1-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return BytedanceIconsThinMZ.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Bytedance-IconPack-Thin\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/java/org/kordamp/ikonli/bytedance/BytedanceIconsThinMZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.bytedance;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author LeeWyatt\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class BytedanceIconsThinMZIkonProvider implements IkonProvider<BytedanceIconsThinMZ> {\n    @Override\n    public Class<BytedanceIconsThinMZ> getIkon() {\n        return BytedanceIconsThinMZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/resources/META-INF/resources/bytedance/1.3.0/css/bytedance-iconpack-bold.css",
    "content": "/*!\n * Bytedance IconPark v1.3.0\n * @link https://iconpark.oceanengine.com/official\n * License - https://github.com/bytedance/IconPark/blob/master/LICENSE (Apache License 2.0)\n */\n@font-face {\n  font-family: 'Bytedance-IconPack-Bold';\n  src:  url('../fonts/Bytedance-IconPack-Bold.eot?8brx9a');\n  src:  url('../fonts/Bytedance-IconPack-Bold.eot?8brx9a#iefix') format('embedded-opentype'),\n    url('../fonts/Bytedance-IconPack-Bold.ttf?8brx9a') format('truetype'),\n    url('../fonts/Bytedance-IconPack-Bold.woff?8brx9a') format('woff'),\n    url('../fonts/Bytedance-IconPack-Bold.svg?8brx9a#Bytedance-IconPack-Bold') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"bd3\"], [class*=\" bd3\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Bytedance-IconPack-Bold' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.bd3-abdominal:before {\n  content: \"\\e900\";\n}\n.bd3-abnormal:before {\n  content: \"\\e901\";\n}\n.bd3-a-cane:before {\n  content: \"\\e902\";\n}\n.bd3-acceleration:before {\n  content: \"\\e903\";\n}\n.bd3-accept-email:before {\n  content: \"\\e904\";\n}\n.bd3-acoustic:before {\n  content: \"\\e905\";\n}\n.bd3-activity-source:before {\n  content: \"\\e906\";\n}\n.bd3-ad:before {\n  content: \"\\e907\";\n}\n.bd3-add:before {\n  content: \"\\e908\";\n}\n.bd3-add-computer:before {\n  content: \"\\e909\";\n}\n.bd3-add-four:before {\n  content: \"\\e90a\";\n}\n.bd3-add-item:before {\n  content: \"\\e90b\";\n}\n.bd3-add-mode:before {\n  content: \"\\e90c\";\n}\n.bd3-add-music:before {\n  content: \"\\e90d\";\n}\n.bd3-add-one:before {\n  content: \"\\e90e\";\n}\n.bd3-add-pic:before {\n  content: \"\\e90f\";\n}\n.bd3-add-picture:before {\n  content: \"\\e910\";\n}\n.bd3-add-print:before {\n  content: \"\\e911\";\n}\n.bd3-address-book:before {\n  content: \"\\e912\";\n}\n.bd3-add-subset:before {\n  content: \"\\e913\";\n}\n.bd3-add-subtract:before {\n  content: \"\\e914\";\n}\n.bd3-add-text:before {\n  content: \"\\e915\";\n}\n.bd3-add-text-two:before {\n  content: \"\\e916\";\n}\n.bd3-add-three:before {\n  content: \"\\e917\";\n}\n.bd3-add-two:before {\n  content: \"\\e918\";\n}\n.bd3-add-user:before {\n  content: \"\\e919\";\n}\n.bd3-add-web:before {\n  content: \"\\e91a\";\n}\n.bd3-adjacent-item:before {\n  content: \"\\e91b\";\n}\n.bd3-adjustment:before {\n  content: \"\\e91c\";\n}\n.bd3-adobe-illustrate:before {\n  content: \"\\e91d\";\n}\n.bd3-adobe-indesign:before {\n  content: \"\\e91e\";\n}\n.bd3-adobe-lightroom:before {\n  content: \"\\e91f\";\n}\n.bd3-adobe-photoshop:before {\n  content: \"\\e920\";\n}\n.bd3-ad-product:before {\n  content: \"\\e921\";\n}\n.bd3-afferent:before {\n  content: \"\\e922\";\n}\n.bd3-afferent-four:before {\n  content: \"\\e923\";\n}\n.bd3-afferent-three:before {\n  content: \"\\e924\";\n}\n.bd3-afferent-two:before {\n  content: \"\\e925\";\n}\n.bd3-afro-pick:before {\n  content: \"\\e926\";\n}\n.bd3-agreement:before {\n  content: \"\\e927\";\n}\n.bd3-aiming:before {\n  content: \"\\e928\";\n}\n.bd3-air-bike:before {\n  content: \"\\e929\";\n}\n.bd3-air-conditioning:before {\n  content: \"\\e92a\";\n}\n.bd3-airplane:before {\n  content: \"\\e92b\";\n}\n.bd3-airplane-window:before {\n  content: \"\\e92c\";\n}\n.bd3-airplane-window-one:before {\n  content: \"\\e92d\";\n}\n.bd3-airplay:before {\n  content: \"\\e92e\";\n}\n.bd3-airpods:before {\n  content: \"\\e92f\";\n}\n.bd3-alarm:before {\n  content: \"\\e930\";\n}\n.bd3-alarm-clock:before {\n  content: \"\\e931\";\n}\n.bd3-align-bottom:before {\n  content: \"\\e932\";\n}\n.bd3-align-bottom-two:before {\n  content: \"\\e933\";\n}\n.bd3-align-horizontal-center-two:before {\n  content: \"\\e934\";\n}\n.bd3-align-horizontally:before {\n  content: \"\\e935\";\n}\n.bd3-align-left:before {\n  content: \"\\e936\";\n}\n.bd3-align-left-one:before {\n  content: \"\\e937\";\n}\n.bd3-align-left-two:before {\n  content: \"\\e938\";\n}\n.bd3-alignment-bottom-center:before {\n  content: \"\\e939\";\n}\n.bd3-alignment-bottom-left:before {\n  content: \"\\e93a\";\n}\n.bd3-alignment-bottom-right:before {\n  content: \"\\e93b\";\n}\n.bd3-alignment-horizontal-bottom:before {\n  content: \"\\e93c\";\n}\n.bd3-alignment-horizontal-center:before {\n  content: \"\\e93d\";\n}\n.bd3-alignment-horizontal-top:before {\n  content: \"\\e93e\";\n}\n.bd3-alignment-left-bottom:before {\n  content: \"\\e93f\";\n}\n.bd3-alignment-left-center:before {\n  content: \"\\e940\";\n}\n.bd3-alignment-left-top:before {\n  content: \"\\e941\";\n}\n.bd3-alignment-right-bottom:before {\n  content: \"\\e942\";\n}\n.bd3-alignment-right-center:before {\n  content: \"\\e943\";\n}\n.bd3-alignment-right-top:before {\n  content: \"\\e944\";\n}\n.bd3-alignment-top-center:before {\n  content: \"\\e945\";\n}\n.bd3-alignment-top-left:before {\n  content: \"\\e946\";\n}\n.bd3-alignment-top-right:before {\n  content: \"\\e947\";\n}\n.bd3-alignment-vertical-center:before {\n  content: \"\\e948\";\n}\n.bd3-alignment-vertical-left:before {\n  content: \"\\e949\";\n}\n.bd3-alignment-vertical-right:before {\n  content: \"\\e94a\";\n}\n.bd3-align-right:before {\n  content: \"\\e94b\";\n}\n.bd3-align-right-one:before {\n  content: \"\\e94c\";\n}\n.bd3-align-right-two:before {\n  content: \"\\e94d\";\n}\n.bd3-align-text-both:before {\n  content: \"\\e94e\";\n}\n.bd3-align-text-both-one:before {\n  content: \"\\e94f\";\n}\n.bd3-align-text-bottom:before {\n  content: \"\\e950\";\n}\n.bd3-align-text-bottom-one:before {\n  content: \"\\e951\";\n}\n.bd3-align-text-center:before {\n  content: \"\\e952\";\n}\n.bd3-align-text-center-one:before {\n  content: \"\\e953\";\n}\n.bd3-align-text-left:before {\n  content: \"\\e954\";\n}\n.bd3-align-text-left-one:before {\n  content: \"\\e955\";\n}\n.bd3-align-text-middle:before {\n  content: \"\\e956\";\n}\n.bd3-align-text-middle-one:before {\n  content: \"\\e957\";\n}\n.bd3-align-text-right:before {\n  content: \"\\e958\";\n}\n.bd3-align-text-right-one:before {\n  content: \"\\e959\";\n}\n.bd3-align-text-top:before {\n  content: \"\\e95a\";\n}\n.bd3-align-text-top-one:before {\n  content: \"\\e95b\";\n}\n.bd3-align-top:before {\n  content: \"\\e95c\";\n}\n.bd3-align-top-two:before {\n  content: \"\\e95d\";\n}\n.bd3-align-vertical-center-two:before {\n  content: \"\\e95e\";\n}\n.bd3-align-vertically:before {\n  content: \"\\e95f\";\n}\n.bd3-alipay:before {\n  content: \"\\e960\";\n}\n.bd3-all-application:before {\n  content: \"\\e961\";\n}\n.bd3-alphabetical-sorting:before {\n  content: \"\\e962\";\n}\n.bd3-alphabetical-sorting-two:before {\n  content: \"\\e963\";\n}\n.bd3-ambulance:before {\n  content: \"\\e964\";\n}\n.bd3-analysis:before {\n  content: \"\\e965\";\n}\n.bd3-anchor:before {\n  content: \"\\e966\";\n}\n.bd3-anchor-one:before {\n  content: \"\\e967\";\n}\n.bd3-anchor-round:before {\n  content: \"\\e968\";\n}\n.bd3-anchor-squre:before {\n  content: \"\\e969\";\n}\n.bd3-anchor-two:before {\n  content: \"\\e96a\";\n}\n.bd3-android:before {\n  content: \"\\e96b\";\n}\n.bd3-angry-face:before {\n  content: \"\\e96c\";\n}\n.bd3-anguished-face:before {\n  content: \"\\e96d\";\n}\n.bd3-announcement:before {\n  content: \"\\e96e\";\n}\n.bd3-anti-corrosion:before {\n  content: \"\\e96f\";\n}\n.bd3-aperture-priority:before {\n  content: \"\\e970\";\n}\n.bd3-api:before {\n  content: \"\\e971\";\n}\n.bd3-api-app:before {\n  content: \"\\e972\";\n}\n.bd3-apple:before {\n  content: \"\\e973\";\n}\n.bd3-apple-one:before {\n  content: \"\\e974\";\n}\n.bd3-applet-closed:before {\n  content: \"\\e975\";\n}\n.bd3-application:before {\n  content: \"\\e976\";\n}\n.bd3-application-effect:before {\n  content: \"\\e977\";\n}\n.bd3-application-menu:before {\n  content: \"\\e978\";\n}\n.bd3-application-one:before {\n  content: \"\\e979\";\n}\n.bd3-application-two:before {\n  content: \"\\e97a\";\n}\n.bd3-appointment:before {\n  content: \"\\e97b\";\n}\n.bd3-app-store:before {\n  content: \"\\e97c\";\n}\n.bd3-app-switch:before {\n  content: \"\\e97d\";\n}\n.bd3-aquarius:before {\n  content: \"\\e97e\";\n}\n.bd3-arc-de-triomphe:before {\n  content: \"\\e97f\";\n}\n.bd3-archers-bow:before {\n  content: \"\\e980\";\n}\n.bd3-archery:before {\n  content: \"\\e981\";\n}\n.bd3-area-map:before {\n  content: \"\\e982\";\n}\n.bd3-arena:before {\n  content: \"\\e983\";\n}\n.bd3-aries:before {\n  content: \"\\e984\";\n}\n.bd3-arithmetic:before {\n  content: \"\\e985\";\n}\n.bd3-arithmetic-buttons:before {\n  content: \"\\e986\";\n}\n.bd3-arithmetic-one:before {\n  content: \"\\e987\";\n}\n.bd3-arrow-circle-down:before {\n  content: \"\\e988\";\n}\n.bd3-arrow-circle-left:before {\n  content: \"\\e989\";\n}\n.bd3-arrow-circle-right:before {\n  content: \"\\e98a\";\n}\n.bd3-arrow-circle-up:before {\n  content: \"\\e98b\";\n}\n.bd3-arrow-down:before {\n  content: \"\\e98c\";\n}\n.bd3-arrow-keys:before {\n  content: \"\\e98d\";\n}\n.bd3-arrow-left:before {\n  content: \"\\e98e\";\n}\n.bd3-arrow-left-down:before {\n  content: \"\\e98f\";\n}\n.bd3-arrow-left-up:before {\n  content: \"\\e990\";\n}\n.bd3-arrow-right:before {\n  content: \"\\e991\";\n}\n.bd3-arrow-right-down:before {\n  content: \"\\e992\";\n}\n.bd3-arrow-right-up:before {\n  content: \"\\e993\";\n}\n.bd3-arrow-up:before {\n  content: \"\\e994\";\n}\n.bd3-assembly-line:before {\n  content: \"\\e995\";\n}\n.bd3-association:before {\n  content: \"\\e996\";\n}\n.bd3-asterisk:before {\n  content: \"\\e997\";\n}\n.bd3-asterisk-key:before {\n  content: \"\\e998\";\n}\n.bd3-astonished-face:before {\n  content: \"\\e999\";\n}\n.bd3-at-sign:before {\n  content: \"\\e99a\";\n}\n.bd3-attention:before {\n  content: \"\\e99b\";\n}\n.bd3-audio-file:before {\n  content: \"\\e99c\";\n}\n.bd3-audit:before {\n  content: \"\\e99d\";\n}\n.bd3-auto-focus:before {\n  content: \"\\e99e\";\n}\n.bd3-auto-height-one:before {\n  content: \"\\e99f\";\n}\n.bd3-auto-line-height:before {\n  content: \"\\e9a0\";\n}\n.bd3-auto-line-width:before {\n  content: \"\\e9a1\";\n}\n.bd3-auto-width:before {\n  content: \"\\e9a2\";\n}\n.bd3-auto-width-one:before {\n  content: \"\\e9a3\";\n}\n.bd3-avatar:before {\n  content: \"\\e9a4\";\n}\n.bd3-average:before {\n  content: \"\\e9a5\";\n}\n.bd3-aviation:before {\n  content: \"\\e9a6\";\n}\n.bd3-avocado:before {\n  content: \"\\e9a7\";\n}\n.bd3-avocado-one:before {\n  content: \"\\e9a8\";\n}\n.bd3-baby:before {\n  content: \"\\e9a9\";\n}\n.bd3-baby-app:before {\n  content: \"\\e9aa\";\n}\n.bd3-baby-bottle:before {\n  content: \"\\e9ab\";\n}\n.bd3-baby-car-seat:before {\n  content: \"\\e9ac\";\n}\n.bd3-baby-feet:before {\n  content: \"\\e9ad\";\n}\n.bd3-baby-meal:before {\n  content: \"\\e9ae\";\n}\n.bd3-baby-mobile:before {\n  content: \"\\e9af\";\n}\n.bd3-baby-one:before {\n  content: \"\\e9b0\";\n}\n.bd3-baby-pants:before {\n  content: \"\\e9b1\";\n}\n.bd3-baby-sling:before {\n  content: \"\\e9b2\";\n}\n.bd3-baby-taste:before {\n  content: \"\\e9b3\";\n}\n.bd3-bachelor-cap:before {\n  content: \"\\e9b4\";\n}\n.bd3-bachelor-cap-one:before {\n  content: \"\\e9b5\";\n}\n.bd3-bachelor-cap-two:before {\n  content: \"\\e9b6\";\n}\n.bd3-back:before {\n  content: \"\\e9b7\";\n}\n.bd3-background-color:before {\n  content: \"\\e9b8\";\n}\n.bd3-back-one:before {\n  content: \"\\e9b9\";\n}\n.bd3-backpack:before {\n  content: \"\\e9ba\";\n}\n.bd3-bad:before {\n  content: \"\\e9bb\";\n}\n.bd3-badge:before {\n  content: \"\\e9bc\";\n}\n.bd3-badge-two:before {\n  content: \"\\e9bd\";\n}\n.bd3-badminton:before {\n  content: \"\\e9be\";\n}\n.bd3-bad-one:before {\n  content: \"\\e9bf\";\n}\n.bd3-bad-two:before {\n  content: \"\\e9c0\";\n}\n.bd3-baggage-delay:before {\n  content: \"\\e9c1\";\n}\n.bd3-balance:before {\n  content: \"\\e9c2\";\n}\n.bd3-balance-one:before {\n  content: \"\\e9c3\";\n}\n.bd3-balance-two:before {\n  content: \"\\e9c4\";\n}\n.bd3-banana:before {\n  content: \"\\e9c5\";\n}\n.bd3-bank:before {\n  content: \"\\e9c6\";\n}\n.bd3-bank-card:before {\n  content: \"\\e9c7\";\n}\n.bd3-bank-card-one:before {\n  content: \"\\e9c8\";\n}\n.bd3-bank-card-two:before {\n  content: \"\\e9c9\";\n}\n.bd3-bank-transfer:before {\n  content: \"\\e9ca\";\n}\n.bd3-baokemeng:before {\n  content: \"\\e9cb\";\n}\n.bd3-barbecue:before {\n  content: \"\\e9cc\";\n}\n.bd3-barber-brush:before {\n  content: \"\\e9cd\";\n}\n.bd3-barber-clippers:before {\n  content: \"\\e9ce\";\n}\n.bd3-bar-code:before {\n  content: \"\\e9cf\";\n}\n.bd3-baseball:before {\n  content: \"\\e9d0\";\n}\n.bd3-baseball-bat:before {\n  content: \"\\e9d1\";\n}\n.bd3-baseball-cap:before {\n  content: \"\\e9d2\";\n}\n.bd3-basketball:before {\n  content: \"\\e9d3\";\n}\n.bd3-basketball-clothes:before {\n  content: \"\\e9d4\";\n}\n.bd3-basketball-one:before {\n  content: \"\\e9d5\";\n}\n.bd3-basketball-stand:before {\n  content: \"\\e9d6\";\n}\n.bd3-bat:before {\n  content: \"\\e9d7\";\n}\n.bd3-battery-charge:before {\n  content: \"\\e9d8\";\n}\n.bd3-battery-empty:before {\n  content: \"\\e9d9\";\n}\n.bd3-battery-failure:before {\n  content: \"\\e9da\";\n}\n.bd3-battery-full:before {\n  content: \"\\e9db\";\n}\n.bd3-battery-storage:before {\n  content: \"\\e9dc\";\n}\n.bd3-battery-tips:before {\n  content: \"\\e9dd\";\n}\n.bd3-battery-working:before {\n  content: \"\\e9de\";\n}\n.bd3-battery-working-one:before {\n  content: \"\\e9df\";\n}\n.bd3-beach-umbrella:before {\n  content: \"\\e9e0\";\n}\n.bd3-bear:before {\n  content: \"\\e9e1\";\n}\n.bd3-beauty:before {\n  content: \"\\e9e2\";\n}\n.bd3-beauty-instrument:before {\n  content: \"\\e9e3\";\n}\n.bd3-bedside:before {\n  content: \"\\e9e4\";\n}\n.bd3-bedside-two:before {\n  content: \"\\e9e5\";\n}\n.bd3-bee:before {\n  content: \"\\e9e6\";\n}\n.bd3-beer:before {\n  content: \"\\e9e7\";\n}\n.bd3-beer-mug:before {\n  content: \"\\e9e8\";\n}\n.bd3-behance:before {\n  content: \"\\e9e9\";\n}\n.bd3-bell-ring:before {\n  content: \"\\e9ea\";\n}\n.bd3-belt:before {\n  content: \"\\e9eb\";\n}\n.bd3-benz:before {\n  content: \"\\e9ec\";\n}\n.bd3-bezier-curve:before {\n  content: \"\\e9ed\";\n}\n.bd3-bib:before {\n  content: \"\\e9ee\";\n}\n.bd3-big-clock:before {\n  content: \"\\e9ef\";\n}\n.bd3-big-x:before {\n  content: \"\\e9f0\";\n}\n.bd3-bike:before {\n  content: \"\\e9f1\";\n}\n.bd3-bill:before {\n  content: \"\\e9f2\";\n}\n.bd3-bird:before {\n  content: \"\\e9f3\";\n}\n.bd3-birthday-cake:before {\n  content: \"\\e9f4\";\n}\n.bd3-bitcoin:before {\n  content: \"\\e9f5\";\n}\n.bd3-blackboard:before {\n  content: \"\\e9f6\";\n}\n.bd3-black-eight:before {\n  content: \"\\e9f7\";\n}\n.bd3-blade:before {\n  content: \"\\e9f8\";\n}\n.bd3-bless:before {\n  content: \"\\e9f9\";\n}\n.bd3-block:before {\n  content: \"\\e9fa\";\n}\n.bd3-blockchain:before {\n  content: \"\\e9fb\";\n}\n.bd3-block-eight:before {\n  content: \"\\e9fc\";\n}\n.bd3-block-five:before {\n  content: \"\\e9fd\";\n}\n.bd3-block-four:before {\n  content: \"\\e9fe\";\n}\n.bd3-block-nine:before {\n  content: \"\\e9ff\";\n}\n.bd3-block-one:before {\n  content: \"\\ea00\";\n}\n.bd3-blocks-and-arrows:before {\n  content: \"\\ea01\";\n}\n.bd3-block-seven:before {\n  content: \"\\ea02\";\n}\n.bd3-block-six:before {\n  content: \"\\ea03\";\n}\n.bd3-block-ten:before {\n  content: \"\\ea04\";\n}\n.bd3-block-three:before {\n  content: \"\\ea05\";\n}\n.bd3-block-two:before {\n  content: \"\\ea06\";\n}\n.bd3-bloom:before {\n  content: \"\\ea07\";\n}\n.bd3-blossom:before {\n  content: \"\\ea08\";\n}\n.bd3-bluetooth:before {\n  content: \"\\ea09\";\n}\n.bd3-boiler:before {\n  content: \"\\ea0a\";\n}\n.bd3-bolt-one:before {\n  content: \"\\ea0b\";\n}\n.bd3-bone:before {\n  content: \"\\ea0c\";\n}\n.bd3-book:before {\n  content: \"\\ea0d\";\n}\n.bd3-bookmark:before {\n  content: \"\\ea0e\";\n}\n.bd3-bookmark-one:before {\n  content: \"\\ea0f\";\n}\n.bd3-bookmark-three:before {\n  content: \"\\ea10\";\n}\n.bd3-book-one:before {\n  content: \"\\ea11\";\n}\n.bd3-book-open:before {\n  content: \"\\ea12\";\n}\n.bd3-bookshelf:before {\n  content: \"\\ea13\";\n}\n.bd3-booster-car-seat:before {\n  content: \"\\ea14\";\n}\n.bd3-booth:before {\n  content: \"\\ea15\";\n}\n.bd3-boots:before {\n  content: \"\\ea16\";\n}\n.bd3-bottle:before {\n  content: \"\\ea17\";\n}\n.bd3-bottle-one:before {\n  content: \"\\ea18\";\n}\n.bd3-bottle-three:before {\n  content: \"\\ea19\";\n}\n.bd3-bottle-two:before {\n  content: \"\\ea1a\";\n}\n.bd3-bottom-bar:before {\n  content: \"\\ea1b\";\n}\n.bd3-bottom-bar-one:before {\n  content: \"\\ea1c\";\n}\n.bd3-bow:before {\n  content: \"\\ea1d\";\n}\n.bd3-bowl:before {\n  content: \"\\ea1e\";\n}\n.bd3-bowling:before {\n  content: \"\\ea1f\";\n}\n.bd3-bowl-one:before {\n  content: \"\\ea20\";\n}\n.bd3-box:before {\n  content: \"\\ea21\";\n}\n.bd3-boxing:before {\n  content: \"\\ea22\";\n}\n.bd3-boxing-one:before {\n  content: \"\\ea23\";\n}\n.bd3-boy:before {\n  content: \"\\ea24\";\n}\n.bd3-boy-one:before {\n  content: \"\\ea25\";\n}\n.bd3-boy-stroller:before {\n  content: \"\\ea26\";\n}\n.bd3-boy-two:before {\n  content: \"\\ea27\";\n}\n.bd3-brain:before {\n  content: \"\\ea28\";\n}\n.bd3-brake-pads:before {\n  content: \"\\ea29\";\n}\n.bd3-branch:before {\n  content: \"\\ea2a\";\n}\n.bd3-branch-one:before {\n  content: \"\\ea2b\";\n}\n.bd3-branch-two:before {\n  content: \"\\ea2c\";\n}\n.bd3-brdige-three:before {\n  content: \"\\ea2d\";\n}\n.bd3-bread:before {\n  content: \"\\ea2e\";\n}\n.bd3-bread-machine:before {\n  content: \"\\ea2f\";\n}\n.bd3-bread-one:before {\n  content: \"\\ea30\";\n}\n.bd3-breast-pump:before {\n  content: \"\\ea31\";\n}\n.bd3-bridge-one:before {\n  content: \"\\ea32\";\n}\n.bd3-bridge-two:before {\n  content: \"\\ea33\";\n}\n.bd3-briefcase:before {\n  content: \"\\ea34\";\n}\n.bd3-brightness:before {\n  content: \"\\ea35\";\n}\n.bd3-bring-forward:before {\n  content: \"\\ea36\";\n}\n.bd3-bring-to-front:before {\n  content: \"\\ea37\";\n}\n.bd3-bring-to-front-one:before {\n  content: \"\\ea38\";\n}\n.bd3-broadcast:before {\n  content: \"\\ea39\";\n}\n.bd3-broadcast-one:before {\n  content: \"\\ea3a\";\n}\n.bd3-broadcast-radio:before {\n  content: \"\\ea3b\";\n}\n.bd3-browser:before {\n  content: \"\\ea3c\";\n}\n.bd3-browser-chrome:before {\n  content: \"\\ea3d\";\n}\n.bd3-browser-safari:before {\n  content: \"\\ea3e\";\n}\n.bd3-bubble-chart:before {\n  content: \"\\ea3f\";\n}\n.bd3-bug:before {\n  content: \"\\ea40\";\n}\n.bd3-building-four:before {\n  content: \"\\ea41\";\n}\n.bd3-building-one:before {\n  content: \"\\ea42\";\n}\n.bd3-building-three:before {\n  content: \"\\ea43\";\n}\n.bd3-building-two:before {\n  content: \"\\ea44\";\n}\n.bd3-bullet-map:before {\n  content: \"\\ea45\";\n}\n.bd3-bus:before {\n  content: \"\\ea46\";\n}\n.bd3-bus-one:before {\n  content: \"\\ea47\";\n}\n.bd3-bus-two:before {\n  content: \"\\ea48\";\n}\n.bd3-butterfly:before {\n  content: \"\\ea49\";\n}\n.bd3-buy:before {\n  content: \"\\ea4a\";\n}\n.bd3-bydesign:before {\n  content: \"\\ea4b\";\n}\n.bd3-bye:before {\n  content: \"\\ea4c\";\n}\n.bd3-bytedance:before {\n  content: \"\\ea4d\";\n}\n.bd3-bytedance-applets:before {\n  content: \"\\ea4e\";\n}\n.bd3-bytedance-mini-app:before {\n  content: \"\\ea4f\";\n}\n.bd3-cable-car:before {\n  content: \"\\ea50\";\n}\n.bd3-cactus:before {\n  content: \"\\ea51\";\n}\n.bd3-cake:before {\n  content: \"\\ea52\";\n}\n.bd3-cake-five:before {\n  content: \"\\ea53\";\n}\n.bd3-cake-four:before {\n  content: \"\\ea54\";\n}\n.bd3-cake-one:before {\n  content: \"\\ea55\";\n}\n.bd3-cake-three:before {\n  content: \"\\ea56\";\n}\n.bd3-cake-two:before {\n  content: \"\\ea57\";\n}\n.bd3-calculator:before {\n  content: \"\\ea58\";\n}\n.bd3-calculator-one:before {\n  content: \"\\ea59\";\n}\n.bd3-calendar:before {\n  content: \"\\ea5a\";\n}\n.bd3-calendar-dot:before {\n  content: \"\\ea5b\";\n}\n.bd3-calendar-thirty:before {\n  content: \"\\ea5c\";\n}\n.bd3-calendar-thirty-two:before {\n  content: \"\\ea5d\";\n}\n.bd3-calendar-three:before {\n  content: \"\\ea5e\";\n}\n.bd3-camera:before {\n  content: \"\\ea5f\";\n}\n.bd3-camera-five:before {\n  content: \"\\ea60\";\n}\n.bd3-camera-four:before {\n  content: \"\\ea61\";\n}\n.bd3-camera-one:before {\n  content: \"\\ea62\";\n}\n.bd3-camera-three:before {\n  content: \"\\ea63\";\n}\n.bd3-camera-two:before {\n  content: \"\\ea64\";\n}\n.bd3-camp:before {\n  content: \"\\ea65\";\n}\n.bd3-cancer:before {\n  content: \"\\ea66\";\n}\n.bd3-candy:before {\n  content: \"\\ea67\";\n}\n.bd3-canned-fruit:before {\n  content: \"\\ea68\";\n}\n.bd3-capricornus:before {\n  content: \"\\ea69\";\n}\n.bd3-car:before {\n  content: \"\\ea6a\";\n}\n.bd3-car-battery:before {\n  content: \"\\ea6b\";\n}\n.bd3-cardioelectric:before {\n  content: \"\\ea6c\";\n}\n.bd3-card-two:before {\n  content: \"\\ea6d\";\n}\n.bd3-carousel:before {\n  content: \"\\ea6e\";\n}\n.bd3-carousel-video:before {\n  content: \"\\ea6f\";\n}\n.bd3-carrot:before {\n  content: \"\\ea70\";\n}\n.bd3-castle:before {\n  content: \"\\ea71\";\n}\n.bd3-cast-screen:before {\n  content: \"\\ea72\";\n}\n.bd3-cat:before {\n  content: \"\\ea73\";\n}\n.bd3-category-management:before {\n  content: \"\\ea74\";\n}\n.bd3-cattle:before {\n  content: \"\\ea75\";\n}\n.bd3-cattle-zodiac:before {\n  content: \"\\ea76\";\n}\n.bd3-caution:before {\n  content: \"\\ea77\";\n}\n.bd3-cc:before {\n  content: \"\\ea78\";\n}\n.bd3-cd:before {\n  content: \"\\ea79\";\n}\n.bd3-cell:before {\n  content: \"\\ea7a\";\n}\n.bd3-ce-marking:before {\n  content: \"\\ea7b\";\n}\n.bd3-center-alignment:before {\n  content: \"\\ea7c\";\n}\n.bd3-certificate:before {\n  content: \"\\ea7d\";\n}\n.bd3-chafing-dish:before {\n  content: \"\\ea7e\";\n}\n.bd3-chafing-dish-one:before {\n  content: \"\\ea7f\";\n}\n.bd3-chair:before {\n  content: \"\\ea80\";\n}\n.bd3-chair-one:before {\n  content: \"\\ea81\";\n}\n.bd3-change:before {\n  content: \"\\ea82\";\n}\n.bd3-change-date-sort:before {\n  content: \"\\ea83\";\n}\n.bd3-charging-treasure:before {\n  content: \"\\ea84\";\n}\n.bd3-chart-graph:before {\n  content: \"\\ea85\";\n}\n.bd3-chart-histogram:before {\n  content: \"\\ea86\";\n}\n.bd3-chart-histogram-one:before {\n  content: \"\\ea87\";\n}\n.bd3-chart-histogram-two:before {\n  content: \"\\ea88\";\n}\n.bd3-chart-line:before {\n  content: \"\\ea89\";\n}\n.bd3-chart-line-area:before {\n  content: \"\\ea8a\";\n}\n.bd3-chart-pie:before {\n  content: \"\\ea8b\";\n}\n.bd3-chart-pie-one:before {\n  content: \"\\ea8c\";\n}\n.bd3-chart-proportion:before {\n  content: \"\\ea8d\";\n}\n.bd3-chart-ring:before {\n  content: \"\\ea8e\";\n}\n.bd3-chart-scatter:before {\n  content: \"\\ea8f\";\n}\n.bd3-chart-stock:before {\n  content: \"\\ea90\";\n}\n.bd3-check:before {\n  content: \"\\ea91\";\n}\n.bd3-checkbox:before {\n  content: \"\\ea92\";\n}\n.bd3-check-correct:before {\n  content: \"\\ea93\";\n}\n.bd3-checkerboard:before {\n  content: \"\\ea94\";\n}\n.bd3-check-in:before {\n  content: \"\\ea95\";\n}\n.bd3-checklist:before {\n  content: \"\\ea96\";\n}\n.bd3-check-one:before {\n  content: \"\\ea97\";\n}\n.bd3-check-small:before {\n  content: \"\\ea98\";\n}\n.bd3-cheese:before {\n  content: \"\\ea99\";\n}\n.bd3-chef-hat:before {\n  content: \"\\ea9a\";\n}\n.bd3-chef-hat-one:before {\n  content: \"\\ea9b\";\n}\n.bd3-cherry:before {\n  content: \"\\ea9c\";\n}\n.bd3-chess:before {\n  content: \"\\ea9d\";\n}\n.bd3-chess-one:before {\n  content: \"\\ea9e\";\n}\n.bd3-chest:before {\n  content: \"\\ea9f\";\n}\n.bd3-chicken:before {\n  content: \"\\eaa0\";\n}\n.bd3-chicken-leg:before {\n  content: \"\\eaa1\";\n}\n.bd3-chicken-zodiac:before {\n  content: \"\\eaa2\";\n}\n.bd3-children-cap:before {\n  content: \"\\eaa3\";\n}\n.bd3-children-pyramid:before {\n  content: \"\\eaa4\";\n}\n.bd3-child-with-pacifier:before {\n  content: \"\\eaa5\";\n}\n.bd3-chili:before {\n  content: \"\\eaa6\";\n}\n.bd3-chimney:before {\n  content: \"\\eaa7\";\n}\n.bd3-chinese:before {\n  content: \"\\eaa8\";\n}\n.bd3-chinese-one:before {\n  content: \"\\eaa9\";\n}\n.bd3-chinese-pavilion:before {\n  content: \"\\eaaa\";\n}\n.bd3-chip:before {\n  content: \"\\eaab\";\n}\n.bd3-chopping-board:before {\n  content: \"\\eaac\";\n}\n.bd3-chopsticks-fork:before {\n  content: \"\\eaad\";\n}\n.bd3-christmas-tree:before {\n  content: \"\\eaae\";\n}\n.bd3-christmas-tree-one:before {\n  content: \"\\eaaf\";\n}\n.bd3-church-one:before {\n  content: \"\\eab0\";\n}\n.bd3-church-two:before {\n  content: \"\\eab1\";\n}\n.bd3-circle-double-down:before {\n  content: \"\\eab2\";\n}\n.bd3-circle-double-left:before {\n  content: \"\\eab3\";\n}\n.bd3-circle-double-right:before {\n  content: \"\\eab4\";\n}\n.bd3-circle-double-up:before {\n  content: \"\\eab5\";\n}\n.bd3-circle-five-line:before {\n  content: \"\\eab6\";\n}\n.bd3-circle-four:before {\n  content: \"\\eab7\";\n}\n.bd3-circle-four-line:before {\n  content: \"\\eab8\";\n}\n.bd3-circle-house:before {\n  content: \"\\eab9\";\n}\n.bd3-circle-left-down:before {\n  content: \"\\eaba\";\n}\n.bd3-circle-left-up:before {\n  content: \"\\eabb\";\n}\n.bd3-circle-right-down:before {\n  content: \"\\eabc\";\n}\n.bd3-circle-right-up:before {\n  content: \"\\eabd\";\n}\n.bd3-circles-and-triangles:before {\n  content: \"\\eabe\";\n}\n.bd3-circles-seven:before {\n  content: \"\\eabf\";\n}\n.bd3-circle-three:before {\n  content: \"\\eac0\";\n}\n.bd3-circle-two-line:before {\n  content: \"\\eac1\";\n}\n.bd3-circular-connection:before {\n  content: \"\\eac2\";\n}\n.bd3-circus:before {\n  content: \"\\eac3\";\n}\n.bd3-city:before {\n  content: \"\\eac4\";\n}\n.bd3-city-gate:before {\n  content: \"\\eac5\";\n}\n.bd3-city-one:before {\n  content: \"\\eac6\";\n}\n.bd3-clap:before {\n  content: \"\\eac7\";\n}\n.bd3-classroom:before {\n  content: \"\\eac8\";\n}\n.bd3-clear:before {\n  content: \"\\eac9\";\n}\n.bd3-clear-format:before {\n  content: \"\\eaca\";\n}\n.bd3-click:before {\n  content: \"\\eacb\";\n}\n.bd3-click-tap:before {\n  content: \"\\eacc\";\n}\n.bd3-click-tap-two:before {\n  content: \"\\eacd\";\n}\n.bd3-click-to-fold:before {\n  content: \"\\eace\";\n}\n.bd3-clipboard:before {\n  content: \"\\eacf\";\n}\n.bd3-clock-tower:before {\n  content: \"\\ead0\";\n}\n.bd3-close:before {\n  content: \"\\ead1\";\n}\n.bd3-close-one:before {\n  content: \"\\ead2\";\n}\n.bd3-close-remind:before {\n  content: \"\\ead3\";\n}\n.bd3-close-small:before {\n  content: \"\\ead4\";\n}\n.bd3-close-wifi:before {\n  content: \"\\ead5\";\n}\n.bd3-clothes-briefs:before {\n  content: \"\\ead6\";\n}\n.bd3-clothes-cardigan:before {\n  content: \"\\ead7\";\n}\n.bd3-clothes-crew-neck:before {\n  content: \"\\ead8\";\n}\n.bd3-clothes-diapers:before {\n  content: \"\\ead9\";\n}\n.bd3-clothes-gloves:before {\n  content: \"\\eada\";\n}\n.bd3-clothes-gloves-two:before {\n  content: \"\\eadb\";\n}\n.bd3-clothes-hoodie:before {\n  content: \"\\eadc\";\n}\n.bd3-clothes-pants:before {\n  content: \"\\eadd\";\n}\n.bd3-clothes-pants-short:before {\n  content: \"\\eade\";\n}\n.bd3-clothes-pants-sweat:before {\n  content: \"\\eadf\";\n}\n.bd3-clothes-short-sleeve:before {\n  content: \"\\eae0\";\n}\n.bd3-clothes-skates:before {\n  content: \"\\eae1\";\n}\n.bd3-clothes-suit:before {\n  content: \"\\eae2\";\n}\n.bd3-clothes-sweater:before {\n  content: \"\\eae3\";\n}\n.bd3-clothes-turtleneck:before {\n  content: \"\\eae4\";\n}\n.bd3-clothes-windbreaker:before {\n  content: \"\\eae5\";\n}\n.bd3-cloud-storage:before {\n  content: \"\\eae6\";\n}\n.bd3-cloudy:before {\n  content: \"\\eae7\";\n}\n.bd3-cloudy-night:before {\n  content: \"\\eae8\";\n}\n.bd3-clue:before {\n  content: \"\\eae9\";\n}\n.bd3-coat-hanger:before {\n  content: \"\\eaea\";\n}\n.bd3-cocktail:before {\n  content: \"\\eaeb\";\n}\n.bd3-coconut-tree:before {\n  content: \"\\eaec\";\n}\n.bd3-code:before {\n  content: \"\\eaed\";\n}\n.bd3-code-brackets:before {\n  content: \"\\eaee\";\n}\n.bd3-code-computer:before {\n  content: \"\\eaef\";\n}\n.bd3-code-download:before {\n  content: \"\\eaf0\";\n}\n.bd3-code-laptop:before {\n  content: \"\\eaf1\";\n}\n.bd3-code-one:before {\n  content: \"\\eaf2\";\n}\n.bd3-coffee-machine:before {\n  content: \"\\eaf3\";\n}\n.bd3-cola:before {\n  content: \"\\eaf4\";\n}\n.bd3-collapse-text-input:before {\n  content: \"\\eaf5\";\n}\n.bd3-collect-computer:before {\n  content: \"\\eaf6\";\n}\n.bd3-collection-files:before {\n  content: \"\\eaf7\";\n}\n.bd3-collection-records:before {\n  content: \"\\eaf8\";\n}\n.bd3-collect-laptop:before {\n  content: \"\\eaf9\";\n}\n.bd3-collect-picture:before {\n  content: \"\\eafa\";\n}\n.bd3-color-card:before {\n  content: \"\\eafb\";\n}\n.bd3-color-filter:before {\n  content: \"\\eafc\";\n}\n.bd3-column:before {\n  content: \"\\eafd\";\n}\n.bd3-comb:before {\n  content: \"\\eafe\";\n}\n.bd3-come:before {\n  content: \"\\eaff\";\n}\n.bd3-command:before {\n  content: \"\\eb00\";\n}\n.bd3-comment:before {\n  content: \"\\eb01\";\n}\n.bd3-comment-one:before {\n  content: \"\\eb02\";\n}\n.bd3-comments:before {\n  content: \"\\eb03\";\n}\n.bd3-commodity:before {\n  content: \"\\eb04\";\n}\n.bd3-communication:before {\n  content: \"\\eb05\";\n}\n.bd3-commuter-bag:before {\n  content: \"\\eb06\";\n}\n.bd3-compass:before {\n  content: \"\\eb07\";\n}\n.bd3-compass-one:before {\n  content: \"\\eb08\";\n}\n.bd3-components:before {\n  content: \"\\eb09\";\n}\n.bd3-composition:before {\n  content: \"\\eb0a\";\n}\n.bd3-compression:before {\n  content: \"\\eb0b\";\n}\n.bd3-computer:before {\n  content: \"\\eb0c\";\n}\n.bd3-computer-one:before {\n  content: \"\\eb0d\";\n}\n.bd3-concept-sharing:before {\n  content: \"\\eb0e\";\n}\n.bd3-concern:before {\n  content: \"\\eb0f\";\n}\n.bd3-conditioner:before {\n  content: \"\\eb10\";\n}\n.bd3-cone:before {\n  content: \"\\eb11\";\n}\n.bd3-cones:before {\n  content: \"\\eb12\";\n}\n.bd3-config:before {\n  content: \"\\eb13\";\n}\n.bd3-confounded-face:before {\n  content: \"\\eb14\";\n}\n.bd3-confused-face:before {\n  content: \"\\eb15\";\n}\n.bd3-connect:before {\n  content: \"\\eb16\";\n}\n.bd3-connect-address-one:before {\n  content: \"\\eb17\";\n}\n.bd3-connect-address-two:before {\n  content: \"\\eb18\";\n}\n.bd3-connection:before {\n  content: \"\\eb19\";\n}\n.bd3-connection-arrow:before {\n  content: \"\\eb1a\";\n}\n.bd3-connection-box:before {\n  content: \"\\eb1b\";\n}\n.bd3-connection-point:before {\n  content: \"\\eb1c\";\n}\n.bd3-connection-point-two:before {\n  content: \"\\eb1d\";\n}\n.bd3-consignment:before {\n  content: \"\\eb1e\";\n}\n.bd3-consume:before {\n  content: \"\\eb1f\";\n}\n.bd3-contrast:before {\n  content: \"\\eb20\";\n}\n.bd3-contrast-view:before {\n  content: \"\\eb21\";\n}\n.bd3-contrast-view-circle:before {\n  content: \"\\eb22\";\n}\n.bd3-control:before {\n  content: \"\\eb23\";\n}\n.bd3-converging-gateway:before {\n  content: \"\\eb24\";\n}\n.bd3-cook:before {\n  content: \"\\eb25\";\n}\n.bd3-cooking:before {\n  content: \"\\eb26\";\n}\n.bd3-cooking-pot:before {\n  content: \"\\eb27\";\n}\n.bd3-cool:before {\n  content: \"\\eb28\";\n}\n.bd3-cooperative-handshake:before {\n  content: \"\\eb29\";\n}\n.bd3-coordinate-system:before {\n  content: \"\\eb2a\";\n}\n.bd3-copy:before {\n  content: \"\\eb2b\";\n}\n.bd3-copy-link:before {\n  content: \"\\eb2c\";\n}\n.bd3-copy-one:before {\n  content: \"\\eb2d\";\n}\n.bd3-copyright:before {\n  content: \"\\eb2e\";\n}\n.bd3-corner-down-left:before {\n  content: \"\\eb2f\";\n}\n.bd3-corner-down-right:before {\n  content: \"\\eb30\";\n}\n.bd3-corner-left-down:before {\n  content: \"\\eb31\";\n}\n.bd3-corner-left-up:before {\n  content: \"\\eb32\";\n}\n.bd3-corner-right-down:before {\n  content: \"\\eb33\";\n}\n.bd3-corner-right-up:before {\n  content: \"\\eb34\";\n}\n.bd3-corner-up-left:before {\n  content: \"\\eb35\";\n}\n.bd3-corner-up-right:before {\n  content: \"\\eb36\";\n}\n.bd3-coronavirus:before {\n  content: \"\\eb37\";\n}\n.bd3-correct:before {\n  content: \"\\eb38\";\n}\n.bd3-cosmetic-brush:before {\n  content: \"\\eb39\";\n}\n.bd3-coupon:before {\n  content: \"\\eb3a\";\n}\n.bd3-court:before {\n  content: \"\\eb3b\";\n}\n.bd3-cpu:before {\n  content: \"\\eb3c\";\n}\n.bd3-crab:before {\n  content: \"\\eb3d\";\n}\n.bd3-creation-date-sort:before {\n  content: \"\\eb3e\";\n}\n.bd3-creative:before {\n  content: \"\\eb3f\";\n}\n.bd3-credit:before {\n  content: \"\\eb40\";\n}\n.bd3-crib:before {\n  content: \"\\eb41\";\n}\n.bd3-croissant:before {\n  content: \"\\eb42\";\n}\n.bd3-cross-ring:before {\n  content: \"\\eb43\";\n}\n.bd3-cross-ring-two:before {\n  content: \"\\eb44\";\n}\n.bd3-cross-society:before {\n  content: \"\\eb45\";\n}\n.bd3-crown:before {\n  content: \"\\eb46\";\n}\n.bd3-crown-three:before {\n  content: \"\\eb47\";\n}\n.bd3-crown-two:before {\n  content: \"\\eb48\";\n}\n.bd3-cruise:before {\n  content: \"\\eb49\";\n}\n.bd3-crying-baby:before {\n  content: \"\\eb4a\";\n}\n.bd3-cube:before {\n  content: \"\\eb4b\";\n}\n.bd3-cube-five:before {\n  content: \"\\eb4c\";\n}\n.bd3-cube-four:before {\n  content: \"\\eb4d\";\n}\n.bd3-cube-three:before {\n  content: \"\\eb4e\";\n}\n.bd3-cube-two:before {\n  content: \"\\eb4f\";\n}\n.bd3-cup:before {\n  content: \"\\eb50\";\n}\n.bd3-cup-four:before {\n  content: \"\\eb51\";\n}\n.bd3-cup-one:before {\n  content: \"\\eb52\";\n}\n.bd3-curling:before {\n  content: \"\\eb53\";\n}\n.bd3-currency:before {\n  content: \"\\eb54\";\n}\n.bd3-curve-adjustment:before {\n  content: \"\\eb55\";\n}\n.bd3-customer:before {\n  content: \"\\eb56\";\n}\n.bd3-cutting:before {\n  content: \"\\eb57\";\n}\n.bd3-cutting-one:before {\n  content: \"\\eb58\";\n}\n.bd3-cuvette:before {\n  content: \"\\eb59\";\n}\n.bd3-cycle:before {\n  content: \"\\eb5a\";\n}\n.bd3-cycle-arrow:before {\n  content: \"\\eb5b\";\n}\n.bd3-cycle-movement:before {\n  content: \"\\eb5c\";\n}\n.bd3-cycle-one:before {\n  content: \"\\eb5d\";\n}\n.bd3-cylinder:before {\n  content: \"\\eb5e\";\n}\n.bd3-damage-map:before {\n  content: \"\\eb5f\";\n}\n.bd3-dark-mode:before {\n  content: \"\\eb60\";\n}\n.bd3-dashboard:before {\n  content: \"\\eb61\";\n}\n.bd3-dashboard-car:before {\n  content: \"\\eb62\";\n}\n.bd3-dashboard-one:before {\n  content: \"\\eb63\";\n}\n.bd3-dashboard-two:before {\n  content: \"\\eb64\";\n}\n.bd3-data:before {\n  content: \"\\eb65\";\n}\n.bd3-data-all:before {\n  content: \"\\eb66\";\n}\n.bd3-data-arrival:before {\n  content: \"\\eb67\";\n}\n.bd3-database-alert:before {\n  content: \"\\eb68\";\n}\n.bd3-database-code:before {\n  content: \"\\eb69\";\n}\n.bd3-database-config:before {\n  content: \"\\eb6a\";\n}\n.bd3-database-download:before {\n  content: \"\\eb6b\";\n}\n.bd3-database-enter:before {\n  content: \"\\eb6c\";\n}\n.bd3-database-fail:before {\n  content: \"\\eb6d\";\n}\n.bd3-database-first:before {\n  content: \"\\eb6e\";\n}\n.bd3-database-forbid:before {\n  content: \"\\eb6f\";\n}\n.bd3-database-lock:before {\n  content: \"\\eb70\";\n}\n.bd3-database-network:before {\n  content: \"\\eb71\";\n}\n.bd3-database-network-point:before {\n  content: \"\\eb72\";\n}\n.bd3-database-point:before {\n  content: \"\\eb73\";\n}\n.bd3-database-position:before {\n  content: \"\\eb74\";\n}\n.bd3-database-power:before {\n  content: \"\\eb75\";\n}\n.bd3-database-proportion:before {\n  content: \"\\eb76\";\n}\n.bd3-database-search:before {\n  content: \"\\eb77\";\n}\n.bd3-database-setting:before {\n  content: \"\\eb78\";\n}\n.bd3-database-success:before {\n  content: \"\\eb79\";\n}\n.bd3-database-sync:before {\n  content: \"\\eb7a\";\n}\n.bd3-database-time:before {\n  content: \"\\eb7b\";\n}\n.bd3-data-display:before {\n  content: \"\\eb7c\";\n}\n.bd3-data-file:before {\n  content: \"\\eb7d\";\n}\n.bd3-data-four:before {\n  content: \"\\eb7e\";\n}\n.bd3-data-lock:before {\n  content: \"\\eb7f\";\n}\n.bd3-data-null:before {\n  content: \"\\eb80\";\n}\n.bd3-data-one:before {\n  content: \"\\eb81\";\n}\n.bd3-data-screen:before {\n  content: \"\\eb82\";\n}\n.bd3-data-server:before {\n  content: \"\\eb83\";\n}\n.bd3-data-sheet:before {\n  content: \"\\eb84\";\n}\n.bd3-data-switching:before {\n  content: \"\\eb85\";\n}\n.bd3-data-three:before {\n  content: \"\\eb86\";\n}\n.bd3-data-two:before {\n  content: \"\\eb87\";\n}\n.bd3-data-user:before {\n  content: \"\\eb88\";\n}\n.bd3-date-comes-back:before {\n  content: \"\\eb89\";\n}\n.bd3-deadline-sort:before {\n  content: \"\\eb8a\";\n}\n.bd3-death-star:before {\n  content: \"\\eb8b\";\n}\n.bd3-deeplink:before {\n  content: \"\\eb8c\";\n}\n.bd3-deer:before {\n  content: \"\\eb8d\";\n}\n.bd3-degree-hat:before {\n  content: \"\\eb8e\";\n}\n.bd3-delete:before {\n  content: \"\\eb8f\";\n}\n.bd3-delete-five:before {\n  content: \"\\eb90\";\n}\n.bd3-delete-four:before {\n  content: \"\\eb91\";\n}\n.bd3-delete-key:before {\n  content: \"\\eb92\";\n}\n.bd3-delete-mode:before {\n  content: \"\\eb93\";\n}\n.bd3-delete-one:before {\n  content: \"\\eb94\";\n}\n.bd3-delete-themes:before {\n  content: \"\\eb95\";\n}\n.bd3-delete-three:before {\n  content: \"\\eb96\";\n}\n.bd3-delete-two:before {\n  content: \"\\eb97\";\n}\n.bd3-delivery:before {\n  content: \"\\eb98\";\n}\n.bd3-deposit:before {\n  content: \"\\eb99\";\n}\n.bd3-descend:before {\n  content: \"\\eb9a\";\n}\n.bd3-desk-lamp:before {\n  content: \"\\eb9b\";\n}\n.bd3-desk-lamp-one:before {\n  content: \"\\eb9c\";\n}\n.bd3-detection:before {\n  content: \"\\eb9d\";\n}\n.bd3-devices:before {\n  content: \"\\eb9e\";\n}\n.bd3-diamond:before {\n  content: \"\\eb9f\";\n}\n.bd3-diamond-necklace:before {\n  content: \"\\eba0\";\n}\n.bd3-diamond-one:before {\n  content: \"\\eba1\";\n}\n.bd3-diamond-ring:before {\n  content: \"\\eba2\";\n}\n.bd3-diamonds:before {\n  content: \"\\eba3\";\n}\n.bd3-diamond-three:before {\n  content: \"\\eba4\";\n}\n.bd3-diamond-two:before {\n  content: \"\\eba5\";\n}\n.bd3-dianziqian:before {\n  content: \"\\eba6\";\n}\n.bd3-diapers-one:before {\n  content: \"\\eba7\";\n}\n.bd3-difference-set:before {\n  content: \"\\eba8\";\n}\n.bd3-digital-watches:before {\n  content: \"\\eba9\";\n}\n.bd3-direction:before {\n  content: \"\\ebaa\";\n}\n.bd3-direction-adjustment:before {\n  content: \"\\ebab\";\n}\n.bd3-direction-adjustment-three:before {\n  content: \"\\ebac\";\n}\n.bd3-direction-adjustment-two:before {\n  content: \"\\ebad\";\n}\n.bd3-disabaled-web:before {\n  content: \"\\ebae\";\n}\n.bd3-disabled-computer:before {\n  content: \"\\ebaf\";\n}\n.bd3-disabled-laptop:before {\n  content: \"\\ebb0\";\n}\n.bd3-disabled-picture:before {\n  content: \"\\ebb1\";\n}\n.bd3-disappointed-face:before {\n  content: \"\\ebb2\";\n}\n.bd3-discovery-index:before {\n  content: \"\\ebb3\";\n}\n.bd3-disk:before {\n  content: \"\\ebb4\";\n}\n.bd3-disk-one:before {\n  content: \"\\ebb5\";\n}\n.bd3-disk-two:before {\n  content: \"\\ebb6\";\n}\n.bd3-dislike:before {\n  content: \"\\ebb7\";\n}\n.bd3-dislike-two:before {\n  content: \"\\ebb8\";\n}\n.bd3-display:before {\n  content: \"\\ebb9\";\n}\n.bd3-distortion:before {\n  content: \"\\ebba\";\n}\n.bd3-distraught-face:before {\n  content: \"\\ebbb\";\n}\n.bd3-distribute-horizontally:before {\n  content: \"\\ebbc\";\n}\n.bd3-distribute-horizontal-spacing:before {\n  content: \"\\ebbd\";\n}\n.bd3-distribute-vertically:before {\n  content: \"\\ebbe\";\n}\n.bd3-distribute-vertical-spacing:before {\n  content: \"\\ebbf\";\n}\n.bd3-dividing-line:before {\n  content: \"\\ebc0\";\n}\n.bd3-dividing-line-one:before {\n  content: \"\\ebc1\";\n}\n.bd3-diving:before {\n  content: \"\\ebc2\";\n}\n.bd3-diving-bottle:before {\n  content: \"\\ebc3\";\n}\n.bd3-diving-suit:before {\n  content: \"\\ebc4\";\n}\n.bd3-division:before {\n  content: \"\\ebc5\";\n}\n.bd3-dizzy-face:before {\n  content: \"\\ebc6\";\n}\n.bd3-doc-add:before {\n  content: \"\\ebc7\";\n}\n.bd3-doc-detail:before {\n  content: \"\\ebc8\";\n}\n.bd3-doc-fail:before {\n  content: \"\\ebc9\";\n}\n.bd3-doc-search:before {\n  content: \"\\ebca\";\n}\n.bd3-doc-search-two:before {\n  content: \"\\ebcb\";\n}\n.bd3-doc-success:before {\n  content: \"\\ebcc\";\n}\n.bd3-document-folder:before {\n  content: \"\\ebcd\";\n}\n.bd3-dog:before {\n  content: \"\\ebce\";\n}\n.bd3-dog-zodiac:before {\n  content: \"\\ebcf\";\n}\n.bd3-dollar:before {\n  content: \"\\ebd0\";\n}\n.bd3-dolphin:before {\n  content: \"\\ebd1\";\n}\n.bd3-dome:before {\n  content: \"\\ebd2\";\n}\n.bd3-dome-light:before {\n  content: \"\\ebd3\";\n}\n.bd3-done-all:before {\n  content: \"\\ebd4\";\n}\n.bd3-dongchedi:before {\n  content: \"\\ebd5\";\n}\n.bd3-door-handle:before {\n  content: \"\\ebd6\";\n}\n.bd3-dot:before {\n  content: \"\\ebd7\";\n}\n.bd3-double-bed:before {\n  content: \"\\ebd8\";\n}\n.bd3-double-down:before {\n  content: \"\\ebd9\";\n}\n.bd3-double-left:before {\n  content: \"\\ebda\";\n}\n.bd3-double-right:before {\n  content: \"\\ebdb\";\n}\n.bd3-double-up:before {\n  content: \"\\ebdc\";\n}\n.bd3-doughnut:before {\n  content: \"\\ebdd\";\n}\n.bd3-down:before {\n  content: \"\\ebde\";\n}\n.bd3-down-c:before {\n  content: \"\\ebdf\";\n}\n.bd3-download:before {\n  content: \"\\ebe0\";\n}\n.bd3-download-computer:before {\n  content: \"\\ebe1\";\n}\n.bd3-download-four:before {\n  content: \"\\ebe2\";\n}\n.bd3-download-laptop:before {\n  content: \"\\ebe3\";\n}\n.bd3-download-one:before {\n  content: \"\\ebe4\";\n}\n.bd3-download-three:before {\n  content: \"\\ebe5\";\n}\n.bd3-download-two:before {\n  content: \"\\ebe6\";\n}\n.bd3-download-web:before {\n  content: \"\\ebe7\";\n}\n.bd3-down-one:before {\n  content: \"\\ebe8\";\n}\n.bd3-down-picture:before {\n  content: \"\\ebe9\";\n}\n.bd3-down-small:before {\n  content: \"\\ebea\";\n}\n.bd3-down-square:before {\n  content: \"\\ebeb\";\n}\n.bd3-down-two:before {\n  content: \"\\ebec\";\n}\n.bd3-drag:before {\n  content: \"\\ebed\";\n}\n.bd3-dragon-zodiac:before {\n  content: \"\\ebee\";\n}\n.bd3-dribble:before {\n  content: \"\\ebef\";\n}\n.bd3-drink:before {\n  content: \"\\ebf0\";\n}\n.bd3-drone:before {\n  content: \"\\ebf1\";\n}\n.bd3-drone-one:before {\n  content: \"\\ebf2\";\n}\n.bd3-dropbox:before {\n  content: \"\\ebf3\";\n}\n.bd3-drop-down-list:before {\n  content: \"\\ebf4\";\n}\n.bd3-drop-shadow-down:before {\n  content: \"\\ebf5\";\n}\n.bd3-drop-shadow-left:before {\n  content: \"\\ebf6\";\n}\n.bd3-drop-shadow-right:before {\n  content: \"\\ebf7\";\n}\n.bd3-drop-shadow-up:before {\n  content: \"\\ebf8\";\n}\n.bd3-drumstick:before {\n  content: \"\\ebf9\";\n}\n.bd3-dubai:before {\n  content: \"\\ebfa\";\n}\n.bd3-duck:before {\n  content: \"\\ebfb\";\n}\n.bd3-dumbbell:before {\n  content: \"\\ebfc\";\n}\n.bd3-dumbbel-line:before {\n  content: \"\\ebfd\";\n}\n.bd3-dvi:before {\n  content: \"\\ebfe\";\n}\n.bd3-eagle:before {\n  content: \"\\ebff\";\n}\n.bd3-earth:before {\n  content: \"\\ec00\";\n}\n.bd3-easy:before {\n  content: \"\\ec01\";\n}\n.bd3-ecg:before {\n  content: \"\\ec02\";\n}\n.bd3-edit:before {\n  content: \"\\ec03\";\n}\n.bd3-editing:before {\n  content: \"\\ec04\";\n}\n.bd3-edit-movie:before {\n  content: \"\\ec05\";\n}\n.bd3-edit-name:before {\n  content: \"\\ec06\";\n}\n.bd3-edit-one:before {\n  content: \"\\ec07\";\n}\n.bd3-editor:before {\n  content: \"\\ec08\";\n}\n.bd3-edit-two:before {\n  content: \"\\ec09\";\n}\n.bd3-eeg:before {\n  content: \"\\ec0a\";\n}\n.bd3-effects:before {\n  content: \"\\ec0b\";\n}\n.bd3-efferent-four:before {\n  content: \"\\ec0c\";\n}\n.bd3-efferent-three:before {\n  content: \"\\ec0d\";\n}\n.bd3-egg:before {\n  content: \"\\ec0e\";\n}\n.bd3-egg-one:before {\n  content: \"\\ec0f\";\n}\n.bd3-eggplant:before {\n  content: \"\\ec10\";\n}\n.bd3-eiffel-tower:before {\n  content: \"\\ec11\";\n}\n.bd3-eight-key:before {\n  content: \"\\ec12\";\n}\n.bd3-electric-drill:before {\n  content: \"\\ec13\";\n}\n.bd3-electric-iron:before {\n  content: \"\\ec14\";\n}\n.bd3-electric-wave:before {\n  content: \"\\ec15\";\n}\n.bd3-electrocardiogram:before {\n  content: \"\\ec16\";\n}\n.bd3-electronic-door-lock:before {\n  content: \"\\ec17\";\n}\n.bd3-electronic-locks-close:before {\n  content: \"\\ec18\";\n}\n.bd3-electronic-locks-open:before {\n  content: \"\\ec19\";\n}\n.bd3-electronic-pen:before {\n  content: \"\\ec1a\";\n}\n.bd3-elephant:before {\n  content: \"\\ec1b\";\n}\n.bd3-elevator:before {\n  content: \"\\ec1c\";\n}\n.bd3-email-block:before {\n  content: \"\\ec1d\";\n}\n.bd3-email-delect:before {\n  content: \"\\ec1e\";\n}\n.bd3-email-down:before {\n  content: \"\\ec1f\";\n}\n.bd3-email-fail:before {\n  content: \"\\ec20\";\n}\n.bd3-email-lock:before {\n  content: \"\\ec21\";\n}\n.bd3-email-push:before {\n  content: \"\\ec22\";\n}\n.bd3-email-search:before {\n  content: \"\\ec23\";\n}\n.bd3-email-security:before {\n  content: \"\\ec24\";\n}\n.bd3-email-successfully:before {\n  content: \"\\ec25\";\n}\n.bd3-emotion-happy:before {\n  content: \"\\ec26\";\n}\n.bd3-emotion-unhappy:before {\n  content: \"\\ec27\";\n}\n.bd3-empty:before {\n  content: \"\\ec28\";\n}\n.bd3-endless:before {\n  content: \"\\ec29\";\n}\n.bd3-endocrine:before {\n  content: \"\\ec2a\";\n}\n.bd3-endpoint-displacement:before {\n  content: \"\\ec2b\";\n}\n.bd3-endpoint-flat:before {\n  content: \"\\ec2c\";\n}\n.bd3-endpoint-round:before {\n  content: \"\\ec2d\";\n}\n.bd3-endpoint-square:before {\n  content: \"\\ec2e\";\n}\n.bd3-end-time-sort:before {\n  content: \"\\ec2f\";\n}\n.bd3-energy-socket:before {\n  content: \"\\ec30\";\n}\n.bd3-engineering-brand:before {\n  content: \"\\ec31\";\n}\n.bd3-engineering-vehicle:before {\n  content: \"\\ec32\";\n}\n.bd3-english:before {\n  content: \"\\ec33\";\n}\n.bd3-english-mustache:before {\n  content: \"\\ec34\";\n}\n.bd3-enquire:before {\n  content: \"\\ec35\";\n}\n.bd3-enter-key:before {\n  content: \"\\ec36\";\n}\n.bd3-enter-key-one:before {\n  content: \"\\ec37\";\n}\n.bd3-entertainment:before {\n  content: \"\\ec38\";\n}\n.bd3-enter-the-keyboard:before {\n  content: \"\\ec39\";\n}\n.bd3-envelope:before {\n  content: \"\\ec3a\";\n}\n.bd3-envelope-one:before {\n  content: \"\\ec3b\";\n}\n.bd3-equalizer:before {\n  content: \"\\ec3c\";\n}\n.bd3-equal-ratio:before {\n  content: \"\\ec3d\";\n}\n.bd3-erase:before {\n  content: \"\\ec3e\";\n}\n.bd3-error:before {\n  content: \"\\ec3f\";\n}\n.bd3-error-computer:before {\n  content: \"\\ec40\";\n}\n.bd3-error-picture:before {\n  content: \"\\ec41\";\n}\n.bd3-error-prompt:before {\n  content: \"\\ec42\";\n}\n.bd3-escalators:before {\n  content: \"\\ec43\";\n}\n.bd3-ethernet-off:before {\n  content: \"\\ec44\";\n}\n.bd3-ethernet-on:before {\n  content: \"\\ec45\";\n}\n.bd3-every-user:before {\n  content: \"\\ec46\";\n}\n.bd3-excel:before {\n  content: \"\\ec47\";\n}\n.bd3-excel-one:before {\n  content: \"\\ec48\";\n}\n.bd3-exchange:before {\n  content: \"\\ec49\";\n}\n.bd3-exchange-four:before {\n  content: \"\\ec4a\";\n}\n.bd3-exchange-one:before {\n  content: \"\\ec4b\";\n}\n.bd3-exchange-three:before {\n  content: \"\\ec4c\";\n}\n.bd3-exchange-two:before {\n  content: \"\\ec4d\";\n}\n.bd3-exclude-selection:before {\n  content: \"\\ec4e\";\n}\n.bd3-exclusive-gateway:before {\n  content: \"\\ec4f\";\n}\n.bd3-expand-down:before {\n  content: \"\\ec50\";\n}\n.bd3-expand-down-one:before {\n  content: \"\\ec51\";\n}\n.bd3-expand-left:before {\n  content: \"\\ec52\";\n}\n.bd3-expand-left-and-right:before {\n  content: \"\\ec53\";\n}\n.bd3-expand-right:before {\n  content: \"\\ec54\";\n}\n.bd3-expand-text-input:before {\n  content: \"\\ec55\";\n}\n.bd3-expand-up:before {\n  content: \"\\ec56\";\n}\n.bd3-expenses:before {\n  content: \"\\ec57\";\n}\n.bd3-expenses-one:before {\n  content: \"\\ec58\";\n}\n.bd3-experiment:before {\n  content: \"\\ec59\";\n}\n.bd3-experiment-one:before {\n  content: \"\\ec5a\";\n}\n.bd3-export:before {\n  content: \"\\ec5b\";\n}\n.bd3-express-delivery:before {\n  content: \"\\ec5c\";\n}\n.bd3-expressionless-face:before {\n  content: \"\\ec5d\";\n}\n.bd3-extend:before {\n  content: \"\\ec5e\";\n}\n.bd3-external-transmission:before {\n  content: \"\\ec5f\";\n}\n.bd3-eyebrow:before {\n  content: \"\\ec60\";\n}\n.bd3-eyes:before {\n  content: \"\\ec61\";\n}\n.bd3-facebook:before {\n  content: \"\\ec62\";\n}\n.bd3-facebook-one:before {\n  content: \"\\ec63\";\n}\n.bd3-face-powder:before {\n  content: \"\\ec64\";\n}\n.bd3-face-recognition:before {\n  content: \"\\ec65\";\n}\n.bd3-facetime:before {\n  content: \"\\ec66\";\n}\n.bd3-faceu:before {\n  content: \"\\ec67\";\n}\n.bd3-face-without-mouth:before {\n  content: \"\\ec68\";\n}\n.bd3-face-with-smiling-open-eyes:before {\n  content: \"\\ec69\";\n}\n.bd3-facial-cleanser:before {\n  content: \"\\ec6a\";\n}\n.bd3-facial-mask:before {\n  content: \"\\ec6b\";\n}\n.bd3-factory-building:before {\n  content: \"\\ec6c\";\n}\n.bd3-fail-picture:before {\n  content: \"\\ec6d\";\n}\n.bd3-family:before {\n  content: \"\\ec6e\";\n}\n.bd3-fan:before {\n  content: \"\\ec6f\";\n}\n.bd3-fanqiexiaoshuo:before {\n  content: \"\\ec70\";\n}\n.bd3-feelgood:before {\n  content: \"\\ec71\";\n}\n.bd3-feelgood-one:before {\n  content: \"\\ec72\";\n}\n.bd3-f-eight-key:before {\n  content: \"\\ec73\";\n}\n.bd3-feiyu:before {\n  content: \"\\ec74\";\n}\n.bd3-female:before {\n  content: \"\\ec75\";\n}\n.bd3-fence-one:before {\n  content: \"\\ec76\";\n}\n.bd3-fence-two:before {\n  content: \"\\ec77\";\n}\n.bd3-ferris-wheel:before {\n  content: \"\\ec78\";\n}\n.bd3-f-five-key:before {\n  content: \"\\ec79\";\n}\n.bd3-f-four-key:before {\n  content: \"\\ec7a\";\n}\n.bd3-figma:before {\n  content: \"\\ec7b\";\n}\n.bd3-figma-component:before {\n  content: \"\\ec7c\";\n}\n.bd3-figma-flatten-selection:before {\n  content: \"\\ec7d\";\n}\n.bd3-figma-mask:before {\n  content: \"\\ec7e\";\n}\n.bd3-figma-reset-instance:before {\n  content: \"\\ec7f\";\n}\n.bd3-file-addition:before {\n  content: \"\\ec80\";\n}\n.bd3-file-addition-one:before {\n  content: \"\\ec81\";\n}\n.bd3-file-cabinet:before {\n  content: \"\\ec82\";\n}\n.bd3-file-code:before {\n  content: \"\\ec83\";\n}\n.bd3-file-code-one:before {\n  content: \"\\ec84\";\n}\n.bd3-file-collection:before {\n  content: \"\\ec85\";\n}\n.bd3-file-collection-one:before {\n  content: \"\\ec86\";\n}\n.bd3-file-conversion:before {\n  content: \"\\ec87\";\n}\n.bd3-file-conversion-one:before {\n  content: \"\\ec88\";\n}\n.bd3-file-date:before {\n  content: \"\\ec89\";\n}\n.bd3-file-date-one:before {\n  content: \"\\ec8a\";\n}\n.bd3-file-display:before {\n  content: \"\\ec8b\";\n}\n.bd3-file-display-one:before {\n  content: \"\\ec8c\";\n}\n.bd3-file-doc:before {\n  content: \"\\ec8d\";\n}\n.bd3-file-editing:before {\n  content: \"\\ec8e\";\n}\n.bd3-file-editing-one:before {\n  content: \"\\ec8f\";\n}\n.bd3-file-excel:before {\n  content: \"\\ec90\";\n}\n.bd3-file-failed:before {\n  content: \"\\ec91\";\n}\n.bd3-file-failed-one:before {\n  content: \"\\ec92\";\n}\n.bd3-file-focus:before {\n  content: \"\\ec93\";\n}\n.bd3-file-focus-one:before {\n  content: \"\\ec94\";\n}\n.bd3-file-gif:before {\n  content: \"\\ec95\";\n}\n.bd3-file-hash:before {\n  content: \"\\ec96\";\n}\n.bd3-file-hash-one:before {\n  content: \"\\ec97\";\n}\n.bd3-file-hiding:before {\n  content: \"\\ec98\";\n}\n.bd3-file-hiding-one:before {\n  content: \"\\ec99\";\n}\n.bd3-file-jpg:before {\n  content: \"\\ec9a\";\n}\n.bd3-file-lock:before {\n  content: \"\\ec9b\";\n}\n.bd3-file-lock-one:before {\n  content: \"\\ec9c\";\n}\n.bd3-file-music:before {\n  content: \"\\ec9d\";\n}\n.bd3-file-music-one:before {\n  content: \"\\ec9e\";\n}\n.bd3-file-pdf:before {\n  content: \"\\ec9f\";\n}\n.bd3-file-pdf-one:before {\n  content: \"\\eca0\";\n}\n.bd3-file-ppt:before {\n  content: \"\\eca1\";\n}\n.bd3-file-protection:before {\n  content: \"\\eca2\";\n}\n.bd3-file-protection-one:before {\n  content: \"\\eca3\";\n}\n.bd3-file-quality:before {\n  content: \"\\eca4\";\n}\n.bd3-file-quality-one:before {\n  content: \"\\eca5\";\n}\n.bd3-file-question:before {\n  content: \"\\eca6\";\n}\n.bd3-file-removal:before {\n  content: \"\\eca7\";\n}\n.bd3-file-removal-one:before {\n  content: \"\\eca8\";\n}\n.bd3-file-search:before {\n  content: \"\\eca9\";\n}\n.bd3-file-search-one:before {\n  content: \"\\ecaa\";\n}\n.bd3-file-search-two:before {\n  content: \"\\ecab\";\n}\n.bd3-file-settings:before {\n  content: \"\\ecac\";\n}\n.bd3-file-settings-one:before {\n  content: \"\\ecad\";\n}\n.bd3-file-staff:before {\n  content: \"\\ecae\";\n}\n.bd3-file-staff-one:before {\n  content: \"\\ecaf\";\n}\n.bd3-file-success:before {\n  content: \"\\ecb0\";\n}\n.bd3-file-success-one:before {\n  content: \"\\ecb1\";\n}\n.bd3-file-text:before {\n  content: \"\\ecb2\";\n}\n.bd3-file-text-one:before {\n  content: \"\\ecb3\";\n}\n.bd3-file-tips:before {\n  content: \"\\ecb4\";\n}\n.bd3-file-tips-one:before {\n  content: \"\\ecb5\";\n}\n.bd3-file-txt:before {\n  content: \"\\ecb6\";\n}\n.bd3-file-txt-one:before {\n  content: \"\\ecb7\";\n}\n.bd3-file-withdrawal:before {\n  content: \"\\ecb8\";\n}\n.bd3-file-withdrawal-one:before {\n  content: \"\\ecb9\";\n}\n.bd3-file-word:before {\n  content: \"\\ecba\";\n}\n.bd3-file-zip:before {\n  content: \"\\ecbb\";\n}\n.bd3-fill:before {\n  content: \"\\ecbc\";\n}\n.bd3-film:before {\n  content: \"\\ecbd\";\n}\n.bd3-filter:before {\n  content: \"\\ecbe\";\n}\n.bd3-filter-one:before {\n  content: \"\\ecbf\";\n}\n.bd3-finance:before {\n  content: \"\\ecc0\";\n}\n.bd3-financing:before {\n  content: \"\\ecc1\";\n}\n.bd3-financing-one:before {\n  content: \"\\ecc2\";\n}\n.bd3-financing-two:before {\n  content: \"\\ecc3\";\n}\n.bd3-find:before {\n  content: \"\\ecc4\";\n}\n.bd3-find-one:before {\n  content: \"\\ecc5\";\n}\n.bd3-fingernail:before {\n  content: \"\\ecc6\";\n}\n.bd3-fingerprint:before {\n  content: \"\\ecc7\";\n}\n.bd3-fingerprint-three:before {\n  content: \"\\ecc8\";\n}\n.bd3-fingerprint-two:before {\n  content: \"\\ecc9\";\n}\n.bd3-fire:before {\n  content: \"\\ecca\";\n}\n.bd3-fire-extinguisher:before {\n  content: \"\\eccb\";\n}\n.bd3-fire-extinguisher-one:before {\n  content: \"\\eccc\";\n}\n.bd3-fire-two:before {\n  content: \"\\eccd\";\n}\n.bd3-fireworks:before {\n  content: \"\\ecce\";\n}\n.bd3-first:before {\n  content: \"\\eccf\";\n}\n.bd3-first-aid-kit:before {\n  content: \"\\ecd0\";\n}\n.bd3-fish:before {\n  content: \"\\ecd1\";\n}\n.bd3-fishing:before {\n  content: \"\\ecd2\";\n}\n.bd3-fish-one:before {\n  content: \"\\ecd3\";\n}\n.bd3-fist:before {\n  content: \"\\ecd4\";\n}\n.bd3-fitness:before {\n  content: \"\\ecd5\";\n}\n.bd3-five:before {\n  content: \"\\ecd6\";\n}\n.bd3-five-ellipses:before {\n  content: \"\\ecd7\";\n}\n.bd3-five-five:before {\n  content: \"\\ecd8\";\n}\n.bd3-five-key:before {\n  content: \"\\ecd9\";\n}\n.bd3-five-star-badge:before {\n  content: \"\\ecda\";\n}\n.bd3-flag:before {\n  content: \"\\ecdb\";\n}\n.bd3-flashlamp:before {\n  content: \"\\ecdc\";\n}\n.bd3-flashlight:before {\n  content: \"\\ecdd\";\n}\n.bd3-flash-payment:before {\n  content: \"\\ecde\";\n}\n.bd3-flask:before {\n  content: \"\\ecdf\";\n}\n.bd3-flight-airflow:before {\n  content: \"\\ece0\";\n}\n.bd3-flight-safety:before {\n  content: \"\\ece1\";\n}\n.bd3-flip-camera:before {\n  content: \"\\ece2\";\n}\n.bd3-flip-horizontally:before {\n  content: \"\\ece3\";\n}\n.bd3-flip-vertically:before {\n  content: \"\\ece4\";\n}\n.bd3-flirt:before {\n  content: \"\\ece5\";\n}\n.bd3-float:before {\n  content: \"\\ece6\";\n}\n.bd3-floor-tile:before {\n  content: \"\\ece7\";\n}\n.bd3-fm:before {\n  content: \"\\ece8\";\n}\n.bd3-f-nine-key:before {\n  content: \"\\ece9\";\n}\n.bd3-f-n-key:before {\n  content: \"\\ecea\";\n}\n.bd3-focus:before {\n  content: \"\\eceb\";\n}\n.bd3-focus-one:before {\n  content: \"\\ecec\";\n}\n.bd3-fog:before {\n  content: \"\\eced\";\n}\n.bd3-folder:before {\n  content: \"\\ecee\";\n}\n.bd3-folder-block:before {\n  content: \"\\ecef\";\n}\n.bd3-folder-block-one:before {\n  content: \"\\ecf0\";\n}\n.bd3-folder-close:before {\n  content: \"\\ecf1\";\n}\n.bd3-folder-code:before {\n  content: \"\\ecf2\";\n}\n.bd3-folder-code-one:before {\n  content: \"\\ecf3\";\n}\n.bd3-folder-conversion:before {\n  content: \"\\ecf4\";\n}\n.bd3-folder-conversion-one:before {\n  content: \"\\ecf5\";\n}\n.bd3-folder-download:before {\n  content: \"\\ecf6\";\n}\n.bd3-folder-failed:before {\n  content: \"\\ecf7\";\n}\n.bd3-folder-failed-one:before {\n  content: \"\\ecf8\";\n}\n.bd3-folder-focus:before {\n  content: \"\\ecf9\";\n}\n.bd3-folder-focus-one:before {\n  content: \"\\ecfa\";\n}\n.bd3-folder-lock:before {\n  content: \"\\ecfb\";\n}\n.bd3-folder-lock-one:before {\n  content: \"\\ecfc\";\n}\n.bd3-folder-minus:before {\n  content: \"\\ecfd\";\n}\n.bd3-folder-music:before {\n  content: \"\\ecfe\";\n}\n.bd3-folder-music-one:before {\n  content: \"\\ecff\";\n}\n.bd3-folder-one:before {\n  content: \"\\ed00\";\n}\n.bd3-folder-open:before {\n  content: \"\\ed01\";\n}\n.bd3-folder-plus:before {\n  content: \"\\ed02\";\n}\n.bd3-folder-protection:before {\n  content: \"\\ed03\";\n}\n.bd3-folder-protection-one:before {\n  content: \"\\ed04\";\n}\n.bd3-folder-quality:before {\n  content: \"\\ed05\";\n}\n.bd3-folder-quality-one:before {\n  content: \"\\ed06\";\n}\n.bd3-folder-search:before {\n  content: \"\\ed07\";\n}\n.bd3-folder-search-one:before {\n  content: \"\\ed08\";\n}\n.bd3-folder-settings:before {\n  content: \"\\ed09\";\n}\n.bd3-folder-settings-one:before {\n  content: \"\\ed0a\";\n}\n.bd3-folder-success:before {\n  content: \"\\ed0b\";\n}\n.bd3-folder-success-one:before {\n  content: \"\\ed0c\";\n}\n.bd3-folder-upload:before {\n  content: \"\\ed0d\";\n}\n.bd3-folder-withdrawal:before {\n  content: \"\\ed0e\";\n}\n.bd3-folder-withdrawal-one:before {\n  content: \"\\ed0f\";\n}\n.bd3-fold-up-one:before {\n  content: \"\\ed10\";\n}\n.bd3-follow-up-date-sort:before {\n  content: \"\\ed11\";\n}\n.bd3-f-one-key:before {\n  content: \"\\ed12\";\n}\n.bd3-font-search:before {\n  content: \"\\ed13\";\n}\n.bd3-font-size:before {\n  content: \"\\ed14\";\n}\n.bd3-font-size-two:before {\n  content: \"\\ed15\";\n}\n.bd3-foot:before {\n  content: \"\\ed16\";\n}\n.bd3-football:before {\n  content: \"\\ed17\";\n}\n.bd3-forbid:before {\n  content: \"\\ed18\";\n}\n.bd3-fork:before {\n  content: \"\\ed19\";\n}\n.bd3-fork-spoon:before {\n  content: \"\\ed1a\";\n}\n.bd3-form:before {\n  content: \"\\ed1b\";\n}\n.bd3-format:before {\n  content: \"\\ed1c\";\n}\n.bd3-format-brush:before {\n  content: \"\\ed1d\";\n}\n.bd3-form-one:before {\n  content: \"\\ed1e\";\n}\n.bd3-formula:before {\n  content: \"\\ed1f\";\n}\n.bd3-foundation-makeup:before {\n  content: \"\\ed20\";\n}\n.bd3-four:before {\n  content: \"\\ed21\";\n}\n.bd3-four-arrows:before {\n  content: \"\\ed22\";\n}\n.bd3-four-four:before {\n  content: \"\\ed23\";\n}\n.bd3-four-key:before {\n  content: \"\\ed24\";\n}\n.bd3-four-leaves:before {\n  content: \"\\ed25\";\n}\n.bd3-four-point-connection:before {\n  content: \"\\ed26\";\n}\n.bd3-four-round-point-connection:before {\n  content: \"\\ed27\";\n}\n.bd3-foursquare:before {\n  content: \"\\ed28\";\n}\n.bd3-freeze-column:before {\n  content: \"\\ed29\";\n}\n.bd3-freeze-line:before {\n  content: \"\\ed2a\";\n}\n.bd3-freezing-line-column:before {\n  content: \"\\ed2b\";\n}\n.bd3-french-fries:before {\n  content: \"\\ed2c\";\n}\n.bd3-friends-circle:before {\n  content: \"\\ed2d\";\n}\n.bd3-frigate:before {\n  content: \"\\ed2e\";\n}\n.bd3-frog:before {\n  content: \"\\ed2f\";\n}\n.bd3-frowning-face-whit-open-mouth:before {\n  content: \"\\ed30\";\n}\n.bd3-fruiter:before {\n  content: \"\\ed31\";\n}\n.bd3-f-seven-key:before {\n  content: \"\\ed32\";\n}\n.bd3-f-six-key:before {\n  content: \"\\ed33\";\n}\n.bd3-f-three-key:before {\n  content: \"\\ed34\";\n}\n.bd3-f-two-key:before {\n  content: \"\\ed35\";\n}\n.bd3-full-dress-longuette:before {\n  content: \"\\ed36\";\n}\n.bd3-full-screen:before {\n  content: \"\\ed37\";\n}\n.bd3-full-screen-one:before {\n  content: \"\\ed38\";\n}\n.bd3-full-screen-play:before {\n  content: \"\\ed39\";\n}\n.bd3-full-screen-two:before {\n  content: \"\\ed3a\";\n}\n.bd3-full-selection:before {\n  content: \"\\ed3b\";\n}\n.bd3-fullwidth:before {\n  content: \"\\ed3c\";\n}\n.bd3-funds:before {\n  content: \"\\ed3d\";\n}\n.bd3-future-build-one:before {\n  content: \"\\ed3e\";\n}\n.bd3-future-build-three:before {\n  content: \"\\ed3f\";\n}\n.bd3-future-build-two:before {\n  content: \"\\ed40\";\n}\n.bd3-f-zero-key:before {\n  content: \"\\ed41\";\n}\n.bd3-game:before {\n  content: \"\\ed42\";\n}\n.bd3-game-console:before {\n  content: \"\\ed43\";\n}\n.bd3-game-console-one:before {\n  content: \"\\ed44\";\n}\n.bd3-game-emoji:before {\n  content: \"\\ed45\";\n}\n.bd3-game-handle:before {\n  content: \"\\ed46\";\n}\n.bd3-gamepad:before {\n  content: \"\\ed47\";\n}\n.bd3-game-ps:before {\n  content: \"\\ed48\";\n}\n.bd3-game-three:before {\n  content: \"\\ed49\";\n}\n.bd3-game-two:before {\n  content: \"\\ed4a\";\n}\n.bd3-garage:before {\n  content: \"\\ed4b\";\n}\n.bd3-garlic:before {\n  content: \"\\ed4c\";\n}\n.bd3-gas:before {\n  content: \"\\ed4d\";\n}\n.bd3-gastrointestinal:before {\n  content: \"\\ed4e\";\n}\n.bd3-gate:before {\n  content: \"\\ed4f\";\n}\n.bd3-gate-machine:before {\n  content: \"\\ed50\";\n}\n.bd3-gauze:before {\n  content: \"\\ed51\";\n}\n.bd3-gavel:before {\n  content: \"\\ed52\";\n}\n.bd3-gemini:before {\n  content: \"\\ed53\";\n}\n.bd3-general-branch:before {\n  content: \"\\ed54\";\n}\n.bd3-geometric-flowers:before {\n  content: \"\\ed55\";\n}\n.bd3-germs:before {\n  content: \"\\ed56\";\n}\n.bd3-ghost:before {\n  content: \"\\ed57\";\n}\n.bd3-gift:before {\n  content: \"\\ed58\";\n}\n.bd3-gift-bag:before {\n  content: \"\\ed59\";\n}\n.bd3-gift-box:before {\n  content: \"\\ed5a\";\n}\n.bd3-girl:before {\n  content: \"\\ed5b\";\n}\n.bd3-girl-one:before {\n  content: \"\\ed5c\";\n}\n.bd3-girl-two:before {\n  content: \"\\ed5d\";\n}\n.bd3-github:before {\n  content: \"\\ed5e\";\n}\n.bd3-github-one:before {\n  content: \"\\ed5f\";\n}\n.bd3-gitlab:before {\n  content: \"\\ed60\";\n}\n.bd3-glasses:before {\n  content: \"\\ed61\";\n}\n.bd3-glasses-one:before {\n  content: \"\\ed62\";\n}\n.bd3-glasses-three:before {\n  content: \"\\ed63\";\n}\n.bd3-globe:before {\n  content: \"\\ed64\";\n}\n.bd3-glove:before {\n  content: \"\\ed65\";\n}\n.bd3-go-ahead:before {\n  content: \"\\ed66\";\n}\n.bd3-goblet:before {\n  content: \"\\ed67\";\n}\n.bd3-goblet-cracking:before {\n  content: \"\\ed68\";\n}\n.bd3-goblet-full:before {\n  content: \"\\ed69\";\n}\n.bd3-goblet-one:before {\n  content: \"\\ed6a\";\n}\n.bd3-go-end:before {\n  content: \"\\ed6b\";\n}\n.bd3-gold-medal:before {\n  content: \"\\ed6c\";\n}\n.bd3-gold-medal-two:before {\n  content: \"\\ed6d\";\n}\n.bd3-golf-course:before {\n  content: \"\\ed6e\";\n}\n.bd3-gongfu:before {\n  content: \"\\ed6f\";\n}\n.bd3-good:before {\n  content: \"\\ed70\";\n}\n.bd3-good-one:before {\n  content: \"\\ed71\";\n}\n.bd3-good-two:before {\n  content: \"\\ed72\";\n}\n.bd3-google:before {\n  content: \"\\ed73\";\n}\n.bd3-google-ads:before {\n  content: \"\\ed74\";\n}\n.bd3-go-on:before {\n  content: \"\\ed75\";\n}\n.bd3-gopro:before {\n  content: \"\\ed76\";\n}\n.bd3-go-start:before {\n  content: \"\\ed77\";\n}\n.bd3-gps:before {\n  content: \"\\ed78\";\n}\n.bd3-graphic-design:before {\n  content: \"\\ed79\";\n}\n.bd3-graphic-design-two:before {\n  content: \"\\ed7a\";\n}\n.bd3-graphic-stitching:before {\n  content: \"\\ed7b\";\n}\n.bd3-graphic-stitching-four:before {\n  content: \"\\ed7c\";\n}\n.bd3-graphic-stitching-three:before {\n  content: \"\\ed7d\";\n}\n.bd3-great-wall:before {\n  content: \"\\ed7e\";\n}\n.bd3-green-house:before {\n  content: \"\\ed7f\";\n}\n.bd3-green-new-energy:before {\n  content: \"\\ed80\";\n}\n.bd3-grid-four:before {\n  content: \"\\ed81\";\n}\n.bd3-grid-nine:before {\n  content: \"\\ed82\";\n}\n.bd3-grid-sixteen:before {\n  content: \"\\ed83\";\n}\n.bd3-grid-three:before {\n  content: \"\\ed84\";\n}\n.bd3-grid-two:before {\n  content: \"\\ed85\";\n}\n.bd3-grimacing-face:before {\n  content: \"\\ed86\";\n}\n.bd3-grinning-face:before {\n  content: \"\\ed87\";\n}\n.bd3-grinning-face-with-open-mouth:before {\n  content: \"\\ed88\";\n}\n.bd3-grinning-face-with-squinting-eyes:before {\n  content: \"\\ed89\";\n}\n.bd3-grinning-face-with-tightly-closed-eyes:before {\n  content: \"\\ed8a\";\n}\n.bd3-grinning-face-with-tightly-closed-eyes-open-mouth:before {\n  content: \"\\ed8b\";\n}\n.bd3-group:before {\n  content: \"\\ed8c\";\n}\n.bd3-guide-board:before {\n  content: \"\\ed8d\";\n}\n.bd3-gymnastics:before {\n  content: \"\\ed8e\";\n}\n.bd3-gymnastics-one:before {\n  content: \"\\ed8f\";\n}\n.bd3-h:before {\n  content: \"\\ed90\";\n}\n.bd3-h1:before {\n  content: \"\\ed91\";\n}\n.bd3-h2:before {\n  content: \"\\ed92\";\n}\n.bd3-h3:before {\n  content: \"\\ed93\";\n}\n.bd3-hair-brush:before {\n  content: \"\\ed94\";\n}\n.bd3-hair-clip:before {\n  content: \"\\ed95\";\n}\n.bd3-hair-dryer:before {\n  content: \"\\ed96\";\n}\n.bd3-hair-dryer-one:before {\n  content: \"\\ed97\";\n}\n.bd3-halo:before {\n  content: \"\\ed98\";\n}\n.bd3-hamburger:before {\n  content: \"\\ed99\";\n}\n.bd3-hamburger-button:before {\n  content: \"\\ed9a\";\n}\n.bd3-hamburger-one:before {\n  content: \"\\ed9b\";\n}\n.bd3-hammer-and-anvil:before {\n  content: \"\\ed9c\";\n}\n.bd3-handbag:before {\n  content: \"\\ed9d\";\n}\n.bd3-hand-cream:before {\n  content: \"\\ed9e\";\n}\n.bd3-hand-down:before {\n  content: \"\\ed9f\";\n}\n.bd3-hand-drag:before {\n  content: \"\\eda0\";\n}\n.bd3-handheld:before {\n  content: \"\\eda1\";\n}\n.bd3-handle-a:before {\n  content: \"\\eda2\";\n}\n.bd3-handle-b:before {\n  content: \"\\eda3\";\n}\n.bd3-handle-c:before {\n  content: \"\\eda4\";\n}\n.bd3-handle-down:before {\n  content: \"\\eda5\";\n}\n.bd3-hand-left:before {\n  content: \"\\eda6\";\n}\n.bd3-handle-left:before {\n  content: \"\\eda7\";\n}\n.bd3-handle-right:before {\n  content: \"\\eda8\";\n}\n.bd3-handle-round:before {\n  content: \"\\eda9\";\n}\n.bd3-handle-square:before {\n  content: \"\\edaa\";\n}\n.bd3-handle-triangle:before {\n  content: \"\\edab\";\n}\n.bd3-handle-up:before {\n  content: \"\\edac\";\n}\n.bd3-handle-x:before {\n  content: \"\\edad\";\n}\n.bd3-handle-y:before {\n  content: \"\\edae\";\n}\n.bd3-handle-z:before {\n  content: \"\\edaf\";\n}\n.bd3-hand-painted-plate:before {\n  content: \"\\edb0\";\n}\n.bd3-hand-right:before {\n  content: \"\\edb1\";\n}\n.bd3-hands:before {\n  content: \"\\edb2\";\n}\n.bd3-hand-up:before {\n  content: \"\\edb3\";\n}\n.bd3-handwashing:before {\n  content: \"\\edb4\";\n}\n.bd3-handwashing-fluid:before {\n  content: \"\\edb5\";\n}\n.bd3-hanfu-chinese-style:before {\n  content: \"\\edb6\";\n}\n.bd3-hanger:before {\n  content: \"\\edb7\";\n}\n.bd3-hanger-one:before {\n  content: \"\\edb8\";\n}\n.bd3-hanger-two:before {\n  content: \"\\edb9\";\n}\n.bd3-hard-disk:before {\n  content: \"\\edba\";\n}\n.bd3-hard-disk-one:before {\n  content: \"\\edbb\";\n}\n.bd3-harm:before {\n  content: \"\\edbc\";\n}\n.bd3-hashtag-key:before {\n  content: \"\\edbd\";\n}\n.bd3-hat:before {\n  content: \"\\edbe\";\n}\n.bd3-hdd:before {\n  content: \"\\edbf\";\n}\n.bd3-hdmi-cable:before {\n  content: \"\\edc0\";\n}\n.bd3-hdmi-connector:before {\n  content: \"\\edc1\";\n}\n.bd3-headphone-sound:before {\n  content: \"\\edc2\";\n}\n.bd3-headset:before {\n  content: \"\\edc3\";\n}\n.bd3-headset-one:before {\n  content: \"\\edc4\";\n}\n.bd3-headset-two:before {\n  content: \"\\edc5\";\n}\n.bd3-headwear:before {\n  content: \"\\edc6\";\n}\n.bd3-health:before {\n  content: \"\\edc7\";\n}\n.bd3-health-products:before {\n  content: \"\\edc8\";\n}\n.bd3-healthy-recognition:before {\n  content: \"\\edc9\";\n}\n.bd3-heart:before {\n  content: \"\\edca\";\n}\n.bd3-heart-ballon:before {\n  content: \"\\edcb\";\n}\n.bd3-heartbeat:before {\n  content: \"\\edcc\";\n}\n.bd3-heart-rate:before {\n  content: \"\\edcd\";\n}\n.bd3-heater-resistor:before {\n  content: \"\\edce\";\n}\n.bd3-heavy-metal:before {\n  content: \"\\edcf\";\n}\n.bd3-heavy-rain:before {\n  content: \"\\edd0\";\n}\n.bd3-heavy-wind:before {\n  content: \"\\edd1\";\n}\n.bd3-helmet:before {\n  content: \"\\edd2\";\n}\n.bd3-helmet-one:before {\n  content: \"\\edd3\";\n}\n.bd3-help:before {\n  content: \"\\edd4\";\n}\n.bd3-helpcenter:before {\n  content: \"\\edd5\";\n}\n.bd3-hexagonal:before {\n  content: \"\\edd6\";\n}\n.bd3-hexagon-one:before {\n  content: \"\\edd7\";\n}\n.bd3-hexagon-strip:before {\n  content: \"\\edd8\";\n}\n.bd3-hi:before {\n  content: \"\\edd9\";\n}\n.bd3-high-heeled-shoes:before {\n  content: \"\\edda\";\n}\n.bd3-high-light:before {\n  content: \"\\eddb\";\n}\n.bd3-high-speed-rail:before {\n  content: \"\\eddc\";\n}\n.bd3-hippo:before {\n  content: \"\\eddd\";\n}\n.bd3-histogram:before {\n  content: \"\\edde\";\n}\n.bd3-history:before {\n  content: \"\\eddf\";\n}\n.bd3-history-query:before {\n  content: \"\\ede0\";\n}\n.bd3-hockey:before {\n  content: \"\\ede1\";\n}\n.bd3-hold:before {\n  content: \"\\ede2\";\n}\n.bd3-holding-hands:before {\n  content: \"\\ede3\";\n}\n.bd3-hold-interface:before {\n  content: \"\\ede4\";\n}\n.bd3-hold-seeds:before {\n  content: \"\\ede5\";\n}\n.bd3-holy-sword:before {\n  content: \"\\ede6\";\n}\n.bd3-home:before {\n  content: \"\\ede7\";\n}\n.bd3-homestay:before {\n  content: \"\\ede8\";\n}\n.bd3-home-two:before {\n  content: \"\\ede9\";\n}\n.bd3-honey:before {\n  content: \"\\edea\";\n}\n.bd3-honey-one:before {\n  content: \"\\edeb\";\n}\n.bd3-horizontally-centered:before {\n  content: \"\\edec\";\n}\n.bd3-horizontal-spacing-between-items:before {\n  content: \"\\eded\";\n}\n.bd3-horizontal-tidy-up:before {\n  content: \"\\edee\";\n}\n.bd3-horse-zodiac:before {\n  content: \"\\edef\";\n}\n.bd3-hospital:before {\n  content: \"\\edf0\";\n}\n.bd3-hospital-bed:before {\n  content: \"\\edf1\";\n}\n.bd3-hospital-four:before {\n  content: \"\\edf2\";\n}\n.bd3-hospital-three:before {\n  content: \"\\edf3\";\n}\n.bd3-hospital-two:before {\n  content: \"\\edf4\";\n}\n.bd3-hot-air-balloon:before {\n  content: \"\\edf5\";\n}\n.bd3-hotel:before {\n  content: \"\\edf6\";\n}\n.bd3-hotel-do-not-clean:before {\n  content: \"\\edf7\";\n}\n.bd3-hotel-please-clean:before {\n  content: \"\\edf8\";\n}\n.bd3-hot-pot:before {\n  content: \"\\edf9\";\n}\n.bd3-hot-pot-one:before {\n  content: \"\\edfa\";\n}\n.bd3-hourglass:before {\n  content: \"\\edfb\";\n}\n.bd3-hourglass-full:before {\n  content: \"\\edfc\";\n}\n.bd3-hourglass-null:before {\n  content: \"\\edfd\";\n}\n.bd3-html-five:before {\n  content: \"\\edfe\";\n}\n.bd3-hunting-gear:before {\n  content: \"\\edff\";\n}\n.bd3-huoshanzhibo:before {\n  content: \"\\ee00\";\n}\n.bd3-icecream:before {\n  content: \"\\ee01\";\n}\n.bd3-icecream-five:before {\n  content: \"\\ee02\";\n}\n.bd3-icecream-four:before {\n  content: \"\\ee03\";\n}\n.bd3-icecream-one:before {\n  content: \"\\ee04\";\n}\n.bd3-icecream-three:before {\n  content: \"\\ee05\";\n}\n.bd3-icecream-two:before {\n  content: \"\\ee06\";\n}\n.bd3-id-card:before {\n  content: \"\\ee07\";\n}\n.bd3-id-card-h:before {\n  content: \"\\ee08\";\n}\n.bd3-id-card-v:before {\n  content: \"\\ee09\";\n}\n.bd3-i-mac:before {\n  content: \"\\ee0a\";\n}\n.bd3-image-files:before {\n  content: \"\\ee0b\";\n}\n.bd3-imbalance:before {\n  content: \"\\ee0c\";\n}\n.bd3-import-and-export:before {\n  content: \"\\ee0d\";\n}\n.bd3-inbox:before {\n  content: \"\\ee0e\";\n}\n.bd3-inbox-download-r:before {\n  content: \"\\ee0f\";\n}\n.bd3-inbox-in:before {\n  content: \"\\ee10\";\n}\n.bd3-inbox-out:before {\n  content: \"\\ee11\";\n}\n.bd3-inbox-r:before {\n  content: \"\\ee12\";\n}\n.bd3-inbox-success:before {\n  content: \"\\ee13\";\n}\n.bd3-inbox-success-r:before {\n  content: \"\\ee14\";\n}\n.bd3-inbox-upload-r:before {\n  content: \"\\ee15\";\n}\n.bd3-inclusive-gateway:before {\n  content: \"\\ee16\";\n}\n.bd3-income:before {\n  content: \"\\ee17\";\n}\n.bd3-income-one:before {\n  content: \"\\ee18\";\n}\n.bd3-incoming:before {\n  content: \"\\ee19\";\n}\n.bd3-increase:before {\n  content: \"\\ee1a\";\n}\n.bd3-increase-the-scale:before {\n  content: \"\\ee1b\";\n}\n.bd3-indent-left:before {\n  content: \"\\ee1c\";\n}\n.bd3-indent-right:before {\n  content: \"\\ee1d\";\n}\n.bd3-index-finger:before {\n  content: \"\\ee1e\";\n}\n.bd3-induction-lock:before {\n  content: \"\\ee1f\";\n}\n.bd3-industrial-scales:before {\n  content: \"\\ee20\";\n}\n.bd3-in-flight:before {\n  content: \"\\ee21\";\n}\n.bd3-info:before {\n  content: \"\\ee22\";\n}\n.bd3-infusion:before {\n  content: \"\\ee23\";\n}\n.bd3-injection:before {\n  content: \"\\ee24\";\n}\n.bd3-inline:before {\n  content: \"\\ee25\";\n}\n.bd3-inner-shadow-bottom-left:before {\n  content: \"\\ee26\";\n}\n.bd3-inner-shadow-bottom-right:before {\n  content: \"\\ee27\";\n}\n.bd3-inner-shadow-down:before {\n  content: \"\\ee28\";\n}\n.bd3-inner-shadow-left:before {\n  content: \"\\ee29\";\n}\n.bd3-inner-shadow-right:before {\n  content: \"\\ee2a\";\n}\n.bd3-inner-shadow-top-left:before {\n  content: \"\\ee2b\";\n}\n.bd3-inner-shadow-top-right:before {\n  content: \"\\ee2c\";\n}\n.bd3-inner-shadow-up:before {\n  content: \"\\ee2d\";\n}\n.bd3-insert-card:before {\n  content: \"\\ee2e\";\n}\n.bd3-insert-table:before {\n  content: \"\\ee2f\";\n}\n.bd3-inspection:before {\n  content: \"\\ee30\";\n}\n.bd3-instagram:before {\n  content: \"\\ee31\";\n}\n.bd3-instagram-one:before {\n  content: \"\\ee32\";\n}\n.bd3-install:before {\n  content: \"\\ee33\";\n}\n.bd3-instruction:before {\n  content: \"\\ee34\";\n}\n.bd3-intercom:before {\n  content: \"\\ee35\";\n}\n.bd3-intermediate-mode:before {\n  content: \"\\ee36\";\n}\n.bd3-internal-data:before {\n  content: \"\\ee37\";\n}\n.bd3-internal-expansion:before {\n  content: \"\\ee38\";\n}\n.bd3-internal-reduction:before {\n  content: \"\\ee39\";\n}\n.bd3-internal-transmission:before {\n  content: \"\\ee3a\";\n}\n.bd3-international:before {\n  content: \"\\ee3b\";\n}\n.bd3-intersection:before {\n  content: \"\\ee3c\";\n}\n.bd3-intersect-selection:before {\n  content: \"\\ee3d\";\n}\n.bd3-invalid-files:before {\n  content: \"\\ee3e\";\n}\n.bd3-invert-camera:before {\n  content: \"\\ee3f\";\n}\n.bd3-invert-left:before {\n  content: \"\\ee40\";\n}\n.bd3-invert-right:before {\n  content: \"\\ee41\";\n}\n.bd3-ios-face-recognition:before {\n  content: \"\\ee42\";\n}\n.bd3-ipad:before {\n  content: \"\\ee43\";\n}\n.bd3-ipad-one:before {\n  content: \"\\ee44\";\n}\n.bd3-iphone:before {\n  content: \"\\ee45\";\n}\n.bd3-ipo:before {\n  content: \"\\ee46\";\n}\n.bd3-iron:before {\n  content: \"\\ee47\";\n}\n.bd3-iron-disable:before {\n  content: \"\\ee48\";\n}\n.bd3-iron-three:before {\n  content: \"\\ee49\";\n}\n.bd3-iron-two:before {\n  content: \"\\ee4a\";\n}\n.bd3-iwatch:before {\n  content: \"\\ee4b\";\n}\n.bd3-iwatch-one:before {\n  content: \"\\ee4c\";\n}\n.bd3-iwatch-two:before {\n  content: \"\\ee4d\";\n}\n.bd3-jewelry:before {\n  content: \"\\ee4e\";\n}\n.bd3-jinritoutiao:before {\n  content: \"\\ee4f\";\n}\n.bd3-journey:before {\n  content: \"\\ee50\";\n}\n.bd3-joystick:before {\n  content: \"\\ee51\";\n}\n.bd3-juice:before {\n  content: \"\\ee52\";\n}\n.bd3-jump:before {\n  content: \"\\ee53\";\n}\n.bd3-kagi-map:before {\n  content: \"\\ee54\";\n}\n.bd3-kettle:before {\n  content: \"\\ee55\";\n}\n.bd3-kettle-one:before {\n  content: \"\\ee56\";\n}\n.bd3-key:before {\n  content: \"\\ee57\";\n}\n.bd3-keyboard:before {\n  content: \"\\ee58\";\n}\n.bd3-keyboard-one:before {\n  content: \"\\ee59\";\n}\n.bd3-keyhole:before {\n  content: \"\\ee5a\";\n}\n.bd3-keyline:before {\n  content: \"\\ee5b\";\n}\n.bd3-key-one:before {\n  content: \"\\ee5c\";\n}\n.bd3-key-two:before {\n  content: \"\\ee5d\";\n}\n.bd3-kitchen-knife:before {\n  content: \"\\ee5e\";\n}\n.bd3-knife-fork:before {\n  content: \"\\ee5f\";\n}\n.bd3-koala-bear:before {\n  content: \"\\ee60\";\n}\n.bd3-kungfu:before {\n  content: \"\\ee61\";\n}\n.bd3-label:before {\n  content: \"\\ee62\";\n}\n.bd3-ladder:before {\n  content: \"\\ee63\";\n}\n.bd3-ladder-one:before {\n  content: \"\\ee64\";\n}\n.bd3-lamp:before {\n  content: \"\\ee65\";\n}\n.bd3-landing:before {\n  content: \"\\ee66\";\n}\n.bd3-landscape:before {\n  content: \"\\ee67\";\n}\n.bd3-land-surveying:before {\n  content: \"\\ee68\";\n}\n.bd3-laptop:before {\n  content: \"\\ee69\";\n}\n.bd3-laptop-computer:before {\n  content: \"\\ee6a\";\n}\n.bd3-laptop-one:before {\n  content: \"\\ee6b\";\n}\n.bd3-lark:before {\n  content: \"\\ee6c\";\n}\n.bd3-lark-one:before {\n  content: \"\\ee6d\";\n}\n.bd3-lattice-pattern:before {\n  content: \"\\ee6e\";\n}\n.bd3-layers:before {\n  content: \"\\ee6f\";\n}\n.bd3-layout-five:before {\n  content: \"\\ee70\";\n}\n.bd3-layout-four:before {\n  content: \"\\ee71\";\n}\n.bd3-layout-one:before {\n  content: \"\\ee72\";\n}\n.bd3-layout-three:before {\n  content: \"\\ee73\";\n}\n.bd3-layout-two:before {\n  content: \"\\ee74\";\n}\n.bd3-leaf:before {\n  content: \"\\ee75\";\n}\n.bd3-leaves:before {\n  content: \"\\ee76\";\n}\n.bd3-leaves-one:before {\n  content: \"\\ee77\";\n}\n.bd3-leaves-two:before {\n  content: \"\\ee78\";\n}\n.bd3-led-diode:before {\n  content: \"\\ee79\";\n}\n.bd3-left:before {\n  content: \"\\ee7a\";\n}\n.bd3-left-alignment:before {\n  content: \"\\ee7b\";\n}\n.bd3-left-and-right-branch:before {\n  content: \"\\ee7c\";\n}\n.bd3-left-bar:before {\n  content: \"\\ee7d\";\n}\n.bd3-left-branch:before {\n  content: \"\\ee7e\";\n}\n.bd3-left-c:before {\n  content: \"\\ee7f\";\n}\n.bd3-left-expand:before {\n  content: \"\\ee80\";\n}\n.bd3-left-one:before {\n  content: \"\\ee81\";\n}\n.bd3-left-small:before {\n  content: \"\\ee82\";\n}\n.bd3-left-small-down:before {\n  content: \"\\ee83\";\n}\n.bd3-left-small-up:before {\n  content: \"\\ee84\";\n}\n.bd3-left-square:before {\n  content: \"\\ee85\";\n}\n.bd3-left-two:before {\n  content: \"\\ee86\";\n}\n.bd3-lemon:before {\n  content: \"\\ee87\";\n}\n.bd3-lens-alignment:before {\n  content: \"\\ee88\";\n}\n.bd3-leo:before {\n  content: \"\\ee89\";\n}\n.bd3-level:before {\n  content: \"\\ee8a\";\n}\n.bd3-level-adjustment:before {\n  content: \"\\ee8b\";\n}\n.bd3-level-eight-title:before {\n  content: \"\\ee8c\";\n}\n.bd3-level-five-title:before {\n  content: \"\\ee8d\";\n}\n.bd3-level-four-title:before {\n  content: \"\\ee8e\";\n}\n.bd3-level-nine-title:before {\n  content: \"\\ee8f\";\n}\n.bd3-level-seven-title:before {\n  content: \"\\ee90\";\n}\n.bd3-level-six-title:before {\n  content: \"\\ee91\";\n}\n.bd3-libra:before {\n  content: \"\\ee92\";\n}\n.bd3-lifebuoy:before {\n  content: \"\\ee93\";\n}\n.bd3-light:before {\n  content: \"\\ee94\";\n}\n.bd3-light-house:before {\n  content: \"\\ee95\";\n}\n.bd3-light-member:before {\n  content: \"\\ee96\";\n}\n.bd3-lightning:before {\n  content: \"\\ee97\";\n}\n.bd3-light-rain:before {\n  content: \"\\ee98\";\n}\n.bd3-like:before {\n  content: \"\\ee99\";\n}\n.bd3-lincoln:before {\n  content: \"\\ee9a\";\n}\n.bd3-link:before {\n  content: \"\\ee9b\";\n}\n.bd3-link-break:before {\n  content: \"\\ee9c\";\n}\n.bd3-link-cloud:before {\n  content: \"\\ee9d\";\n}\n.bd3-link-cloud-faild:before {\n  content: \"\\ee9e\";\n}\n.bd3-link-cloud-sucess:before {\n  content: \"\\ee9f\";\n}\n.bd3-link-four:before {\n  content: \"\\eea0\";\n}\n.bd3-link-in:before {\n  content: \"\\eea1\";\n}\n.bd3-link-interrupt:before {\n  content: \"\\eea2\";\n}\n.bd3-link-left:before {\n  content: \"\\eea3\";\n}\n.bd3-link-one:before {\n  content: \"\\eea4\";\n}\n.bd3-link-out:before {\n  content: \"\\eea5\";\n}\n.bd3-link-right:before {\n  content: \"\\eea6\";\n}\n.bd3-link-three:before {\n  content: \"\\eea7\";\n}\n.bd3-link-two:before {\n  content: \"\\eea8\";\n}\n.bd3-lip-gloss:before {\n  content: \"\\eea9\";\n}\n.bd3-lipstick:before {\n  content: \"\\eeaa\";\n}\n.bd3-lipstick-one:before {\n  content: \"\\eeab\";\n}\n.bd3-lip-tattoo:before {\n  content: \"\\eeac\";\n}\n.bd3-liqueur:before {\n  content: \"\\eead\";\n}\n.bd3-list:before {\n  content: \"\\eeae\";\n}\n.bd3-list-add:before {\n  content: \"\\eeaf\";\n}\n.bd3-list-alphabet:before {\n  content: \"\\eeb0\";\n}\n.bd3-list-bottom:before {\n  content: \"\\eeb1\";\n}\n.bd3-list-checkbox:before {\n  content: \"\\eeb2\";\n}\n.bd3-list-fail:before {\n  content: \"\\eeb3\";\n}\n.bd3-list-middle:before {\n  content: \"\\eeb4\";\n}\n.bd3-list-numbers:before {\n  content: \"\\eeb5\";\n}\n.bd3-list-one:before {\n  content: \"\\eeb6\";\n}\n.bd3-list-success:before {\n  content: \"\\eeb7\";\n}\n.bd3-list-top:before {\n  content: \"\\eeb8\";\n}\n.bd3-list-two:before {\n  content: \"\\eeb9\";\n}\n.bd3-list-view:before {\n  content: \"\\eeba\";\n}\n.bd3-loading:before {\n  content: \"\\eebb\";\n}\n.bd3-loading-four:before {\n  content: \"\\eebc\";\n}\n.bd3-loading-one:before {\n  content: \"\\eebd\";\n}\n.bd3-loading-three:before {\n  content: \"\\eebe\";\n}\n.bd3-loading-two:before {\n  content: \"\\eebf\";\n}\n.bd3-local:before {\n  content: \"\\eec0\";\n}\n.bd3-local-pin:before {\n  content: \"\\eec1\";\n}\n.bd3-local-two:before {\n  content: \"\\eec2\";\n}\n.bd3-lock:before {\n  content: \"\\eec3\";\n}\n.bd3-locking-computer:before {\n  content: \"\\eec4\";\n}\n.bd3-locking-laptop:before {\n  content: \"\\eec5\";\n}\n.bd3-locking-picture:before {\n  content: \"\\eec6\";\n}\n.bd3-locking-web:before {\n  content: \"\\eec7\";\n}\n.bd3-lock-one:before {\n  content: \"\\eec8\";\n}\n.bd3-log:before {\n  content: \"\\eec9\";\n}\n.bd3-login:before {\n  content: \"\\eeca\";\n}\n.bd3-logout:before {\n  content: \"\\eecb\";\n}\n.bd3-lollipop:before {\n  content: \"\\eecc\";\n}\n.bd3-loop-once:before {\n  content: \"\\eecd\";\n}\n.bd3-lotion:before {\n  content: \"\\eece\";\n}\n.bd3-lotus:before {\n  content: \"\\eecf\";\n}\n.bd3-loudly-crying-face:before {\n  content: \"\\eed0\";\n}\n.bd3-loudly-crying-face-whit-open-mouth:before {\n  content: \"\\eed1\";\n}\n.bd3-love-and-help:before {\n  content: \"\\eed2\";\n}\n.bd3-lower-branch:before {\n  content: \"\\eed3\";\n}\n.bd3-luggage:before {\n  content: \"\\eed4\";\n}\n.bd3-luminous:before {\n  content: \"\\eed5\";\n}\n.bd3-lung:before {\n  content: \"\\eed6\";\n}\n.bd3-macadamia-nut:before {\n  content: \"\\eed7\";\n}\n.bd3-mac-finder:before {\n  content: \"\\eed8\";\n}\n.bd3-magic:before {\n  content: \"\\eed9\";\n}\n.bd3-magic-hat:before {\n  content: \"\\eeda\";\n}\n.bd3-magic-wand:before {\n  content: \"\\eedb\";\n}\n.bd3-magnet:before {\n  content: \"\\eedc\";\n}\n.bd3-mail:before {\n  content: \"\\eedd\";\n}\n.bd3-mail-download:before {\n  content: \"\\eede\";\n}\n.bd3-mail-edit:before {\n  content: \"\\eedf\";\n}\n.bd3-maill-one:before {\n  content: \"\\eee0\";\n}\n.bd3-mail-open:before {\n  content: \"\\eee1\";\n}\n.bd3-mail-package:before {\n  content: \"\\eee2\";\n}\n.bd3-mail-review:before {\n  content: \"\\eee3\";\n}\n.bd3-mail-unpacking:before {\n  content: \"\\eee4\";\n}\n.bd3-makeups:before {\n  content: \"\\eee5\";\n}\n.bd3-male:before {\n  content: \"\\eee6\";\n}\n.bd3-mall-bag:before {\n  content: \"\\eee7\";\n}\n.bd3-manual-gear:before {\n  content: \"\\eee8\";\n}\n.bd3-many-to-many:before {\n  content: \"\\eee9\";\n}\n.bd3-map-distance:before {\n  content: \"\\eeea\";\n}\n.bd3-map-draw:before {\n  content: \"\\eeeb\";\n}\n.bd3-map-road:before {\n  content: \"\\eeec\";\n}\n.bd3-map-road-two:before {\n  content: \"\\eeed\";\n}\n.bd3-map-two:before {\n  content: \"\\eeee\";\n}\n.bd3-margin:before {\n  content: \"\\eeef\";\n}\n.bd3-margin-one:before {\n  content: \"\\eef0\";\n}\n.bd3-mark:before {\n  content: \"\\eef1\";\n}\n.bd3-market:before {\n  content: \"\\eef2\";\n}\n.bd3-market-analysis:before {\n  content: \"\\eef3\";\n}\n.bd3-mascara:before {\n  content: \"\\eef4\";\n}\n.bd3-mask:before {\n  content: \"\\eef5\";\n}\n.bd3-mask-one:before {\n  content: \"\\eef6\";\n}\n.bd3-mask-two:before {\n  content: \"\\eef7\";\n}\n.bd3-maslow-pyramids:before {\n  content: \"\\eef8\";\n}\n.bd3-massage-chair:before {\n  content: \"\\eef9\";\n}\n.bd3-massage-chair-one:before {\n  content: \"\\eefa\";\n}\n.bd3-massage-table:before {\n  content: \"\\eefb\";\n}\n.bd3-master:before {\n  content: \"\\eefc\";\n}\n.bd3-material:before {\n  content: \"\\eefd\";\n}\n.bd3-material-three:before {\n  content: \"\\eefe\";\n}\n.bd3-material-two:before {\n  content: \"\\eeff\";\n}\n.bd3-maximum:before {\n  content: \"\\ef00\";\n}\n.bd3-maya:before {\n  content: \"\\ef01\";\n}\n.bd3-mayura-gesture:before {\n  content: \"\\ef02\";\n}\n.bd3-me:before {\n  content: \"\\ef03\";\n}\n.bd3-measuring-cup:before {\n  content: \"\\ef04\";\n}\n.bd3-medal-one:before {\n  content: \"\\ef05\";\n}\n.bd3-mediaeditor:before {\n  content: \"\\ef06\";\n}\n.bd3-medical-box:before {\n  content: \"\\ef07\";\n}\n.bd3-medical-files:before {\n  content: \"\\ef08\";\n}\n.bd3-medical-mark:before {\n  content: \"\\ef09\";\n}\n.bd3-medication-time:before {\n  content: \"\\ef0a\";\n}\n.bd3-medicine-bottle:before {\n  content: \"\\ef0b\";\n}\n.bd3-medicine-bottle-one:before {\n  content: \"\\ef0c\";\n}\n.bd3-medicine-chest:before {\n  content: \"\\ef0d\";\n}\n.bd3-memory:before {\n  content: \"\\ef0e\";\n}\n.bd3-memory-card:before {\n  content: \"\\ef0f\";\n}\n.bd3-memory-card-one:before {\n  content: \"\\ef10\";\n}\n.bd3-memory-one:before {\n  content: \"\\ef11\";\n}\n.bd3-men-jacket:before {\n  content: \"\\ef12\";\n}\n.bd3-menu-fold:before {\n  content: \"\\ef13\";\n}\n.bd3-menu-fold-one:before {\n  content: \"\\ef14\";\n}\n.bd3-menu-unfold:before {\n  content: \"\\ef15\";\n}\n.bd3-menu-unfold-one:before {\n  content: \"\\ef16\";\n}\n.bd3-merge:before {\n  content: \"\\ef17\";\n}\n.bd3-merge-cells:before {\n  content: \"\\ef18\";\n}\n.bd3-message:before {\n  content: \"\\ef19\";\n}\n.bd3-message-emoji:before {\n  content: \"\\ef1a\";\n}\n.bd3-message-failed:before {\n  content: \"\\ef1b\";\n}\n.bd3-message-one:before {\n  content: \"\\ef1c\";\n}\n.bd3-message-privacy:before {\n  content: \"\\ef1d\";\n}\n.bd3-messages:before {\n  content: \"\\ef1e\";\n}\n.bd3-message-search:before {\n  content: \"\\ef1f\";\n}\n.bd3-message-security:before {\n  content: \"\\ef20\";\n}\n.bd3-message-sent:before {\n  content: \"\\ef21\";\n}\n.bd3-messages-one:before {\n  content: \"\\ef22\";\n}\n.bd3-message-success:before {\n  content: \"\\ef23\";\n}\n.bd3-message-unread:before {\n  content: \"\\ef24\";\n}\n.bd3-microphone:before {\n  content: \"\\ef25\";\n}\n.bd3-microphone-one:before {\n  content: \"\\ef26\";\n}\n.bd3-microscope:before {\n  content: \"\\ef27\";\n}\n.bd3-microscope-one:before {\n  content: \"\\ef28\";\n}\n.bd3-micro-sd:before {\n  content: \"\\ef29\";\n}\n.bd3-micro-slr-camera:before {\n  content: \"\\ef2a\";\n}\n.bd3-microwave-oven:before {\n  content: \"\\ef2b\";\n}\n.bd3-microwaves:before {\n  content: \"\\ef2c\";\n}\n.bd3-middle-finger:before {\n  content: \"\\ef2d\";\n}\n.bd3-milk:before {\n  content: \"\\ef2e\";\n}\n.bd3-milk-one:before {\n  content: \"\\ef2f\";\n}\n.bd3-min:before {\n  content: \"\\ef30\";\n}\n.bd3-mindmap-list:before {\n  content: \"\\ef31\";\n}\n.bd3-mindmap-map:before {\n  content: \"\\ef32\";\n}\n.bd3-mind-mapping:before {\n  content: \"\\ef33\";\n}\n.bd3-mini-sd-card:before {\n  content: \"\\ef34\";\n}\n.bd3-minus:before {\n  content: \"\\ef35\";\n}\n.bd3-minus-the-bottom:before {\n  content: \"\\ef36\";\n}\n.bd3-minus-the-top:before {\n  content: \"\\ef37\";\n}\n.bd3-mirror:before {\n  content: \"\\ef38\";\n}\n.bd3-mirror-one:before {\n  content: \"\\ef39\";\n}\n.bd3-mirror-two:before {\n  content: \"\\ef3a\";\n}\n.bd3-misaligned-semicircle:before {\n  content: \"\\ef3b\";\n}\n.bd3-mitsubishi:before {\n  content: \"\\ef3c\";\n}\n.bd3-modify:before {\n  content: \"\\ef3d\";\n}\n.bd3-modify-two:before {\n  content: \"\\ef3e\";\n}\n.bd3-monitor:before {\n  content: \"\\ef3f\";\n}\n.bd3-monitor-camera:before {\n  content: \"\\ef40\";\n}\n.bd3-monitor-off:before {\n  content: \"\\ef41\";\n}\n.bd3-monitor-one:before {\n  content: \"\\ef42\";\n}\n.bd3-monitor-two:before {\n  content: \"\\ef43\";\n}\n.bd3-monkey:before {\n  content: \"\\ef44\";\n}\n.bd3-monkey-zodiac:before {\n  content: \"\\ef45\";\n}\n.bd3-monument-one:before {\n  content: \"\\ef46\";\n}\n.bd3-monument-two:before {\n  content: \"\\ef47\";\n}\n.bd3-moon:before {\n  content: \"\\ef48\";\n}\n.bd3-more:before {\n  content: \"\\ef49\";\n}\n.bd3-more-app:before {\n  content: \"\\ef4a\";\n}\n.bd3-more-four:before {\n  content: \"\\ef4b\";\n}\n.bd3-more-one:before {\n  content: \"\\ef4c\";\n}\n.bd3-more-three:before {\n  content: \"\\ef4d\";\n}\n.bd3-more-two:before {\n  content: \"\\ef4e\";\n}\n.bd3-mosaic:before {\n  content: \"\\ef4f\";\n}\n.bd3-mountain:before {\n  content: \"\\ef50\";\n}\n.bd3-mounted:before {\n  content: \"\\ef51\";\n}\n.bd3-mouse:before {\n  content: \"\\ef52\";\n}\n.bd3-mouse-one:before {\n  content: \"\\ef53\";\n}\n.bd3-mouse-zodiac:before {\n  content: \"\\ef54\";\n}\n.bd3-mouth:before {\n  content: \"\\ef55\";\n}\n.bd3-move:before {\n  content: \"\\ef56\";\n}\n.bd3-move-in:before {\n  content: \"\\ef57\";\n}\n.bd3-move-in-one:before {\n  content: \"\\ef58\";\n}\n.bd3-move-one:before {\n  content: \"\\ef59\";\n}\n.bd3-movie:before {\n  content: \"\\ef5a\";\n}\n.bd3-movie-board:before {\n  content: \"\\ef5b\";\n}\n.bd3-moving-picture:before {\n  content: \"\\ef5c\";\n}\n.bd3-multicast:before {\n  content: \"\\ef5d\";\n}\n.bd3-multi-circular:before {\n  content: \"\\ef5e\";\n}\n.bd3-multi-function-knife:before {\n  content: \"\\ef5f\";\n}\n.bd3-multilayer-sphere:before {\n  content: \"\\ef60\";\n}\n.bd3-multi-picture-carousel:before {\n  content: \"\\ef61\";\n}\n.bd3-multi-rectangle:before {\n  content: \"\\ef62\";\n}\n.bd3-multi-ring:before {\n  content: \"\\ef63\";\n}\n.bd3-multi-triangular:before {\n  content: \"\\ef64\";\n}\n.bd3-multi-triangular-four:before {\n  content: \"\\ef65\";\n}\n.bd3-multi-triangular-three:before {\n  content: \"\\ef66\";\n}\n.bd3-multi-triangular-two:before {\n  content: \"\\ef67\";\n}\n.bd3-muscle:before {\n  content: \"\\ef68\";\n}\n.bd3-museum-one:before {\n  content: \"\\ef69\";\n}\n.bd3-museum-two:before {\n  content: \"\\ef6a\";\n}\n.bd3-music:before {\n  content: \"\\ef6b\";\n}\n.bd3-music-cd:before {\n  content: \"\\ef6c\";\n}\n.bd3-music-list:before {\n  content: \"\\ef6d\";\n}\n.bd3-music-menu:before {\n  content: \"\\ef6e\";\n}\n.bd3-music-one:before {\n  content: \"\\ef6f\";\n}\n.bd3-music-rhythm:before {\n  content: \"\\ef70\";\n}\n.bd3-mute:before {\n  content: \"\\ef71\";\n}\n.bd3-nail-polish:before {\n  content: \"\\ef72\";\n}\n.bd3-nail-polish-one:before {\n  content: \"\\ef73\";\n}\n.bd3-nasal:before {\n  content: \"\\ef74\";\n}\n.bd3-natural-mode:before {\n  content: \"\\ef75\";\n}\n.bd3-navigation:before {\n  content: \"\\ef76\";\n}\n.bd3-necktie:before {\n  content: \"\\ef77\";\n}\n.bd3-needle:before {\n  content: \"\\ef78\";\n}\n.bd3-negative-dynamics:before {\n  content: \"\\ef79\";\n}\n.bd3-nested-arrows:before {\n  content: \"\\ef7a\";\n}\n.bd3-nests:before {\n  content: \"\\ef7b\";\n}\n.bd3-network-drive:before {\n  content: \"\\ef7c\";\n}\n.bd3-network-tree:before {\n  content: \"\\ef7d\";\n}\n.bd3-neural:before {\n  content: \"\\ef7e\";\n}\n.bd3-neutral-face:before {\n  content: \"\\ef7f\";\n}\n.bd3-new-afferent:before {\n  content: \"\\ef80\";\n}\n.bd3-new-computer:before {\n  content: \"\\ef81\";\n}\n.bd3-new-dianziqian:before {\n  content: \"\\ef82\";\n}\n.bd3-new-efferent:before {\n  content: \"\\ef83\";\n}\n.bd3-new-lark:before {\n  content: \"\\ef84\";\n}\n.bd3-newlybuild:before {\n  content: \"\\ef85\";\n}\n.bd3-new-picture:before {\n  content: \"\\ef86\";\n}\n.bd3-newspaper-folding:before {\n  content: \"\\ef87\";\n}\n.bd3-next:before {\n  content: \"\\ef88\";\n}\n.bd3-nine-key:before {\n  content: \"\\ef89\";\n}\n.bd3-nine-points-connected:before {\n  content: \"\\ef8a\";\n}\n.bd3-nintendo-switch:before {\n  content: \"\\ef8b\";\n}\n.bd3-nmr:before {\n  content: \"\\ef8c\";\n}\n.bd3-node-flat:before {\n  content: \"\\ef8d\";\n}\n.bd3-node-round:before {\n  content: \"\\ef8e\";\n}\n.bd3-node-square:before {\n  content: \"\\ef8f\";\n}\n.bd3-noodles:before {\n  content: \"\\ef90\";\n}\n.bd3-no-shooting:before {\n  content: \"\\ef91\";\n}\n.bd3-notebook:before {\n  content: \"\\ef92\";\n}\n.bd3-notebook-and-pen:before {\n  content: \"\\ef93\";\n}\n.bd3-notebook-one:before {\n  content: \"\\ef94\";\n}\n.bd3-notepad:before {\n  content: \"\\ef95\";\n}\n.bd3-notes:before {\n  content: \"\\ef96\";\n}\n.bd3-nuclear-plant:before {\n  content: \"\\ef97\";\n}\n.bd3-nurse-cap:before {\n  content: \"\\ef98\";\n}\n.bd3-nut:before {\n  content: \"\\ef99\";\n}\n.bd3-nutrition:before {\n  content: \"\\ef9a\";\n}\n.bd3-oceanengine:before {\n  content: \"\\ef9b\";\n}\n.bd3-octagon:before {\n  content: \"\\ef9c\";\n}\n.bd3-off-screen:before {\n  content: \"\\ef9d\";\n}\n.bd3-off-screen-one:before {\n  content: \"\\ef9e\";\n}\n.bd3-off-screen-two:before {\n  content: \"\\ef9f\";\n}\n.bd3-oil-industry:before {\n  content: \"\\efa0\";\n}\n.bd3-okay:before {\n  content: \"\\efa1\";\n}\n.bd3-one:before {\n  content: \"\\efa2\";\n}\n.bd3-one-key:before {\n  content: \"\\efa3\";\n}\n.bd3-one-one:before {\n  content: \"\\efa4\";\n}\n.bd3-onesies:before {\n  content: \"\\efa5\";\n}\n.bd3-one-third-rotation:before {\n  content: \"\\efa6\";\n}\n.bd3-one-to-many:before {\n  content: \"\\efa7\";\n}\n.bd3-one-to-one:before {\n  content: \"\\efa8\";\n}\n.bd3-online-meeting:before {\n  content: \"\\efa9\";\n}\n.bd3-open:before {\n  content: \"\\efaa\";\n}\n.bd3-open-an-account:before {\n  content: \"\\efab\";\n}\n.bd3-open-door:before {\n  content: \"\\efac\";\n}\n.bd3-open-one:before {\n  content: \"\\efad\";\n}\n.bd3-optimize:before {\n  content: \"\\efae\";\n}\n.bd3-optional:before {\n  content: \"\\efaf\";\n}\n.bd3-orange:before {\n  content: \"\\efb0\";\n}\n.bd3-orange-one:before {\n  content: \"\\efb1\";\n}\n.bd3-orange-station:before {\n  content: \"\\efb2\";\n}\n.bd3-order:before {\n  content: \"\\efb3\";\n}\n.bd3-ordered-list:before {\n  content: \"\\efb4\";\n}\n.bd3-orthopedic:before {\n  content: \"\\efb5\";\n}\n.bd3-oscillator:before {\n  content: \"\\efb6\";\n}\n.bd3-other:before {\n  content: \"\\efb7\";\n}\n.bd3-outbound:before {\n  content: \"\\efb8\";\n}\n.bd3-outdoor:before {\n  content: \"\\efb9\";\n}\n.bd3-outgoing:before {\n  content: \"\\efba\";\n}\n.bd3-oval-love:before {\n  content: \"\\efbb\";\n}\n.bd3-oval-love-two:before {\n  content: \"\\efbc\";\n}\n.bd3-oval-one:before {\n  content: \"\\efbd\";\n}\n.bd3-oven:before {\n  content: \"\\efbe\";\n}\n.bd3-oven-tray:before {\n  content: \"\\efbf\";\n}\n.bd3-overall-reduction:before {\n  content: \"\\efc0\";\n}\n.bd3-owl:before {\n  content: \"\\efc1\";\n}\n.bd3-pacifier:before {\n  content: \"\\efc2\";\n}\n.bd3-pad:before {\n  content: \"\\efc3\";\n}\n.bd3-page:before {\n  content: \"\\efc4\";\n}\n.bd3-page-template:before {\n  content: \"\\efc5\";\n}\n.bd3-pagoda:before {\n  content: \"\\efc6\";\n}\n.bd3-paint:before {\n  content: \"\\efc7\";\n}\n.bd3-painted-eggshell:before {\n  content: \"\\efc8\";\n}\n.bd3-painted-screen:before {\n  content: \"\\efc9\";\n}\n.bd3-palace:before {\n  content: \"\\efca\";\n}\n.bd3-palm:before {\n  content: \"\\efcb\";\n}\n.bd3-panda:before {\n  content: \"\\efcc\";\n}\n.bd3-pangle:before {\n  content: \"\\efcd\";\n}\n.bd3-panorama-horizontal:before {\n  content: \"\\efce\";\n}\n.bd3-panties:before {\n  content: \"\\efcf\";\n}\n.bd3-paperclip:before {\n  content: \"\\efd0\";\n}\n.bd3-paper-money:before {\n  content: \"\\efd1\";\n}\n.bd3-paper-money-two:before {\n  content: \"\\efd2\";\n}\n.bd3-paper-ship:before {\n  content: \"\\efd3\";\n}\n.bd3-parabola:before {\n  content: \"\\efd4\";\n}\n.bd3-parachute:before {\n  content: \"\\efd5\";\n}\n.bd3-paragraph-alphabet:before {\n  content: \"\\efd6\";\n}\n.bd3-paragraph-break:before {\n  content: \"\\efd7\";\n}\n.bd3-paragraph-break-two:before {\n  content: \"\\efd8\";\n}\n.bd3-paragraph-cut:before {\n  content: \"\\efd9\";\n}\n.bd3-paragraph-rectangle:before {\n  content: \"\\efda\";\n}\n.bd3-paragraph-round:before {\n  content: \"\\efdb\";\n}\n.bd3-paragraph-triangle:before {\n  content: \"\\efdc\";\n}\n.bd3-paragraph-unfold:before {\n  content: \"\\efdd\";\n}\n.bd3-parallel-gateway:before {\n  content: \"\\efde\";\n}\n.bd3-parallelogram:before {\n  content: \"\\efdf\";\n}\n.bd3-parenting-book:before {\n  content: \"\\efe0\";\n}\n.bd3-parking:before {\n  content: \"\\efe1\";\n}\n.bd3-party-balloon:before {\n  content: \"\\efe2\";\n}\n.bd3-passport:before {\n  content: \"\\efe3\";\n}\n.bd3-passport-one:before {\n  content: \"\\efe4\";\n}\n.bd3-pause:before {\n  content: \"\\efe5\";\n}\n.bd3-pause-one:before {\n  content: \"\\efe6\";\n}\n.bd3-pay-code:before {\n  content: \"\\efe7\";\n}\n.bd3-pay-code-one:before {\n  content: \"\\efe8\";\n}\n.bd3-pay-code-two:before {\n  content: \"\\efe9\";\n}\n.bd3-payment-method:before {\n  content: \"\\efea\";\n}\n.bd3-paypal:before {\n  content: \"\\efeb\";\n}\n.bd3-peach:before {\n  content: \"\\efec\";\n}\n.bd3-pear:before {\n  content: \"\\efed\";\n}\n.bd3-pearl-of-the-orient:before {\n  content: \"\\efee\";\n}\n.bd3-peas:before {\n  content: \"\\efef\";\n}\n.bd3-pencil:before {\n  content: \"\\eff0\";\n}\n.bd3-pennant:before {\n  content: \"\\eff1\";\n}\n.bd3-pentagon-one:before {\n  content: \"\\eff2\";\n}\n.bd3-people:before {\n  content: \"\\eff3\";\n}\n.bd3-people-bottom:before {\n  content: \"\\eff4\";\n}\n.bd3-people-bottom-card:before {\n  content: \"\\eff5\";\n}\n.bd3-people-delete:before {\n  content: \"\\eff6\";\n}\n.bd3-people-delete-one:before {\n  content: \"\\eff7\";\n}\n.bd3-people-download:before {\n  content: \"\\eff8\";\n}\n.bd3-people-left:before {\n  content: \"\\eff9\";\n}\n.bd3-people-minus:before {\n  content: \"\\effa\";\n}\n.bd3-people-minus-one:before {\n  content: \"\\effb\";\n}\n.bd3-people-plus:before {\n  content: \"\\effc\";\n}\n.bd3-people-plus-one:before {\n  content: \"\\effd\";\n}\n.bd3-people-right:before {\n  content: \"\\effe\";\n}\n.bd3-peoples:before {\n  content: \"\\efff\";\n}\n.bd3-people-safe:before {\n  content: \"\\f000\";\n}\n.bd3-people-safe-one:before {\n  content: \"\\f001\";\n}\n.bd3-people-search:before {\n  content: \"\\f002\";\n}\n.bd3-people-search-one:before {\n  content: \"\\f003\";\n}\n.bd3-people-speak:before {\n  content: \"\\f004\";\n}\n.bd3-peoples-two:before {\n  content: \"\\f005\";\n}\n.bd3-people-top:before {\n  content: \"\\f006\";\n}\n.bd3-people-top-card:before {\n  content: \"\\f007\";\n}\n.bd3-people-unknown:before {\n  content: \"\\f008\";\n}\n.bd3-people-upload:before {\n  content: \"\\f009\";\n}\n.bd3-percentage:before {\n  content: \"\\f00a\";\n}\n.bd3-performance:before {\n  content: \"\\f00b\";\n}\n.bd3-perfume:before {\n  content: \"\\f00c\";\n}\n.bd3-perfumer-bottle:before {\n  content: \"\\f00d\";\n}\n.bd3-period:before {\n  content: \"\\f00e\";\n}\n.bd3-permissions:before {\n  content: \"\\f00f\";\n}\n.bd3-personal-collection:before {\n  content: \"\\f010\";\n}\n.bd3-personal-privacy:before {\n  content: \"\\f011\";\n}\n.bd3-perspective:before {\n  content: \"\\f012\";\n}\n.bd3-pesticide:before {\n  content: \"\\f013\";\n}\n.bd3-petrol:before {\n  content: \"\\f014\";\n}\n.bd3-phone:before {\n  content: \"\\f015\";\n}\n.bd3-phone-booth:before {\n  content: \"\\f016\";\n}\n.bd3-phone-call:before {\n  content: \"\\f017\";\n}\n.bd3-phone-incoming:before {\n  content: \"\\f018\";\n}\n.bd3-phone-incoming-one:before {\n  content: \"\\f019\";\n}\n.bd3-phone-missed:before {\n  content: \"\\f01a\";\n}\n.bd3-phone-off:before {\n  content: \"\\f01b\";\n}\n.bd3-phone-one:before {\n  content: \"\\f01c\";\n}\n.bd3-phone-outgoing:before {\n  content: \"\\f01d\";\n}\n.bd3-phone-outgoing-one:before {\n  content: \"\\f01e\";\n}\n.bd3-phone-telephone:before {\n  content: \"\\f01f\";\n}\n.bd3-phone-two:before {\n  content: \"\\f020\";\n}\n.bd3-phone-video-call:before {\n  content: \"\\f021\";\n}\n.bd3-phonograph:before {\n  content: \"\\f022\";\n}\n.bd3-photograph:before {\n  content: \"\\f023\";\n}\n.bd3-piano:before {\n  content: \"\\f024\";\n}\n.bd3-pic:before {\n  content: \"\\f025\";\n}\n.bd3-pic-one:before {\n  content: \"\\f026\";\n}\n.bd3-picture:before {\n  content: \"\\f027\";\n}\n.bd3-picture-album:before {\n  content: \"\\f028\";\n}\n.bd3-picture-one:before {\n  content: \"\\f029\";\n}\n.bd3-pie:before {\n  content: \"\\f02a\";\n}\n.bd3-pie-five:before {\n  content: \"\\f02b\";\n}\n.bd3-pie-four:before {\n  content: \"\\f02c\";\n}\n.bd3-pie-one:before {\n  content: \"\\f02d\";\n}\n.bd3-pie-seven:before {\n  content: \"\\f02e\";\n}\n.bd3-pie-six:before {\n  content: \"\\f02f\";\n}\n.bd3-pie-three:before {\n  content: \"\\f030\";\n}\n.bd3-pie-two:before {\n  content: \"\\f031\";\n}\n.bd3-pig:before {\n  content: \"\\f032\";\n}\n.bd3-pigeon:before {\n  content: \"\\f033\";\n}\n.bd3-pig-zodiac:before {\n  content: \"\\f034\";\n}\n.bd3-pill:before {\n  content: \"\\f035\";\n}\n.bd3-pills:before {\n  content: \"\\f036\";\n}\n.bd3-pin:before {\n  content: \"\\f037\";\n}\n.bd3-pineapple:before {\n  content: \"\\f038\";\n}\n.bd3-pinwheel:before {\n  content: \"\\f039\";\n}\n.bd3-pisces:before {\n  content: \"\\f03a\";\n}\n.bd3-pivot-table:before {\n  content: \"\\f03b\";\n}\n.bd3-plan:before {\n  content: \"\\f03c\";\n}\n.bd3-planet:before {\n  content: \"\\f03d\";\n}\n.bd3-plastic-surgery:before {\n  content: \"\\f03e\";\n}\n.bd3-platte:before {\n  content: \"\\f03f\";\n}\n.bd3-play:before {\n  content: \"\\f040\";\n}\n.bd3-playback-progress:before {\n  content: \"\\f041\";\n}\n.bd3-play-basketball:before {\n  content: \"\\f042\";\n}\n.bd3-play-cycle:before {\n  content: \"\\f043\";\n}\n.bd3-play-once:before {\n  content: \"\\f044\";\n}\n.bd3-play-one:before {\n  content: \"\\f045\";\n}\n.bd3-play-two:before {\n  content: \"\\f046\";\n}\n.bd3-play-volleyball:before {\n  content: \"\\f047\";\n}\n.bd3-play-wrong:before {\n  content: \"\\f048\";\n}\n.bd3-plug:before {\n  content: \"\\f049\";\n}\n.bd3-plug-one:before {\n  content: \"\\f04a\";\n}\n.bd3-plus:before {\n  content: \"\\f04b\";\n}\n.bd3-plus-cross:before {\n  content: \"\\f04c\";\n}\n.bd3-point:before {\n  content: \"\\f04d\";\n}\n.bd3-point-out:before {\n  content: \"\\f04e\";\n}\n.bd3-pokeball-one:before {\n  content: \"\\f04f\";\n}\n.bd3-poker:before {\n  content: \"\\f050\";\n}\n.bd3-popcorn:before {\n  content: \"\\f051\";\n}\n.bd3-popcorn-one:before {\n  content: \"\\f052\";\n}\n.bd3-positive-dynamics:before {\n  content: \"\\f053\";\n}\n.bd3-pot:before {\n  content: \"\\f054\";\n}\n.bd3-potentiometer:before {\n  content: \"\\f055\";\n}\n.bd3-pound:before {\n  content: \"\\f056\";\n}\n.bd3-pound-sign:before {\n  content: \"\\f057\";\n}\n.bd3-pouting-face:before {\n  content: \"\\f058\";\n}\n.bd3-powder:before {\n  content: \"\\f059\";\n}\n.bd3-power:before {\n  content: \"\\f05a\";\n}\n.bd3-powerpoint:before {\n  content: \"\\f05b\";\n}\n.bd3-power-supply:before {\n  content: \"\\f05c\";\n}\n.bd3-power-supply-one:before {\n  content: \"\\f05d\";\n}\n.bd3-ppt:before {\n  content: \"\\f05e\";\n}\n.bd3-pregnant-women:before {\n  content: \"\\f05f\";\n}\n.bd3-preschool:before {\n  content: \"\\f060\";\n}\n.bd3-prescription:before {\n  content: \"\\f061\";\n}\n.bd3-press:before {\n  content: \"\\f062\";\n}\n.bd3-preview-close:before {\n  content: \"\\f063\";\n}\n.bd3-preview-close-one:before {\n  content: \"\\f064\";\n}\n.bd3-preview-open:before {\n  content: \"\\f065\";\n}\n.bd3-printer:before {\n  content: \"\\f066\";\n}\n.bd3-printer-one:before {\n  content: \"\\f067\";\n}\n.bd3-printer-two:before {\n  content: \"\\f068\";\n}\n.bd3-prison:before {\n  content: \"\\f069\";\n}\n.bd3-process-line:before {\n  content: \"\\f06a\";\n}\n.bd3-projector:before {\n  content: \"\\f06b\";\n}\n.bd3-projector-one:before {\n  content: \"\\f06c\";\n}\n.bd3-projector-three:before {\n  content: \"\\f06d\";\n}\n.bd3-projector-two:before {\n  content: \"\\f06e\";\n}\n.bd3-proportional-scaling:before {\n  content: \"\\f06f\";\n}\n.bd3-protect:before {\n  content: \"\\f070\";\n}\n.bd3-protection:before {\n  content: \"\\f071\";\n}\n.bd3-public-toilet:before {\n  content: \"\\f072\";\n}\n.bd3-pull-door:before {\n  content: \"\\f073\";\n}\n.bd3-pull-requests:before {\n  content: \"\\f074\";\n}\n.bd3-pumpkin:before {\n  content: \"\\f075\";\n}\n.bd3-pure-natural:before {\n  content: \"\\f076\";\n}\n.bd3-push-door:before {\n  content: \"\\f077\";\n}\n.bd3-pushpin:before {\n  content: \"\\f078\";\n}\n.bd3-puzzle:before {\n  content: \"\\f079\";\n}\n.bd3-pyramid:before {\n  content: \"\\f07a\";\n}\n.bd3-pyramid-one:before {\n  content: \"\\f07b\";\n}\n.bd3-qingniao-clue:before {\n  content: \"\\f07c\";\n}\n.bd3-qiyehao:before {\n  content: \"\\f07d\";\n}\n.bd3-quadrangular-pyramid:before {\n  content: \"\\f07e\";\n}\n.bd3-quadrilateral:before {\n  content: \"\\f07f\";\n}\n.bd3-quote:before {\n  content: \"\\f080\";\n}\n.bd3-rabbit:before {\n  content: \"\\f081\";\n}\n.bd3-rabbit-zodiac:before {\n  content: \"\\f082\";\n}\n.bd3-radar:before {\n  content: \"\\f083\";\n}\n.bd3-radar-chart:before {\n  content: \"\\f084\";\n}\n.bd3-radar-three:before {\n  content: \"\\f085\";\n}\n.bd3-radar-two:before {\n  content: \"\\f086\";\n}\n.bd3-radiation:before {\n  content: \"\\f087\";\n}\n.bd3-radio:before {\n  content: \"\\f088\";\n}\n.bd3-radio-nanny:before {\n  content: \"\\f089\";\n}\n.bd3-radio-one:before {\n  content: \"\\f08a\";\n}\n.bd3-radio-two:before {\n  content: \"\\f08b\";\n}\n.bd3-radish:before {\n  content: \"\\f08c\";\n}\n.bd3-radish-one:before {\n  content: \"\\f08d\";\n}\n.bd3-railway:before {\n  content: \"\\f08e\";\n}\n.bd3-ranking:before {\n  content: \"\\f08f\";\n}\n.bd3-ranking-list:before {\n  content: \"\\f090\";\n}\n.bd3-rattle:before {\n  content: \"\\f091\";\n}\n.bd3-rattle-one:before {\n  content: \"\\f092\";\n}\n.bd3-razor:before {\n  content: \"\\f093\";\n}\n.bd3-read-book:before {\n  content: \"\\f094\";\n}\n.bd3-receive:before {\n  content: \"\\f095\";\n}\n.bd3-receiver:before {\n  content: \"\\f096\";\n}\n.bd3-recent-views-sort:before {\n  content: \"\\f097\";\n}\n.bd3-record:before {\n  content: \"\\f098\";\n}\n.bd3-record-disc:before {\n  content: \"\\f099\";\n}\n.bd3-record-player:before {\n  content: \"\\f09a\";\n}\n.bd3-rectangle:before {\n  content: \"\\f09b\";\n}\n.bd3-rectangle-one:before {\n  content: \"\\f09c\";\n}\n.bd3-rectangle-small:before {\n  content: \"\\f09d\";\n}\n.bd3-rectangle-tear:before {\n  content: \"\\f09e\";\n}\n.bd3-rectangle-x:before {\n  content: \"\\f09f\";\n}\n.bd3-rectangular-circular-connection:before {\n  content: \"\\f0a0\";\n}\n.bd3-rectangular-circular-separation:before {\n  content: \"\\f0a1\";\n}\n.bd3-rectangular-vertebra:before {\n  content: \"\\f0a2\";\n}\n.bd3-recycle-bin:before {\n  content: \"\\f0a3\";\n}\n.bd3-recycling:before {\n  content: \"\\f0a4\";\n}\n.bd3-recycling-pool:before {\n  content: \"\\f0a5\";\n}\n.bd3-red-cross:before {\n  content: \"\\f0a6\";\n}\n.bd3-red-envelope:before {\n  content: \"\\f0a7\";\n}\n.bd3-red-envelopes:before {\n  content: \"\\f0a8\";\n}\n.bd3-redo:before {\n  content: \"\\f0a9\";\n}\n.bd3-reduce:before {\n  content: \"\\f0aa\";\n}\n.bd3-reduce-decimal-places:before {\n  content: \"\\f0ab\";\n}\n.bd3-reduce-one:before {\n  content: \"\\f0ac\";\n}\n.bd3-reduce-two:before {\n  content: \"\\f0ad\";\n}\n.bd3-reduce-user:before {\n  content: \"\\f0ae\";\n}\n.bd3-reel:before {\n  content: \"\\f0af\";\n}\n.bd3-refraction:before {\n  content: \"\\f0b0\";\n}\n.bd3-refresh:before {\n  content: \"\\f0b1\";\n}\n.bd3-refresh-one:before {\n  content: \"\\f0b2\";\n}\n.bd3-refrigerator:before {\n  content: \"\\f0b3\";\n}\n.bd3-reject:before {\n  content: \"\\f0b4\";\n}\n.bd3-relational-graph:before {\n  content: \"\\f0b5\";\n}\n.bd3-relieved-face:before {\n  content: \"\\f0b6\";\n}\n.bd3-reload:before {\n  content: \"\\f0b7\";\n}\n.bd3-remind:before {\n  content: \"\\f0b8\";\n}\n.bd3-remind-disable:before {\n  content: \"\\f0b9\";\n}\n.bd3-remote-control:before {\n  content: \"\\f0ba\";\n}\n.bd3-remote-control-one:before {\n  content: \"\\f0bb\";\n}\n.bd3-renal:before {\n  content: \"\\f0bc\";\n}\n.bd3-renault:before {\n  content: \"\\f0bd\";\n}\n.bd3-repair:before {\n  content: \"\\f0be\";\n}\n.bd3-replay-five:before {\n  content: \"\\f0bf\";\n}\n.bd3-replay-music:before {\n  content: \"\\f0c0\";\n}\n.bd3-report:before {\n  content: \"\\f0c1\";\n}\n.bd3-repositioning:before {\n  content: \"\\f0c2\";\n}\n.bd3-resistor:before {\n  content: \"\\f0c3\";\n}\n.bd3-respect:before {\n  content: \"\\f0c4\";\n}\n.bd3-resting:before {\n  content: \"\\f0c5\";\n}\n.bd3-retro-bag:before {\n  content: \"\\f0c6\";\n}\n.bd3-return:before {\n  content: \"\\f0c7\";\n}\n.bd3-reverse-lens:before {\n  content: \"\\f0c8\";\n}\n.bd3-reverse-lens-one:before {\n  content: \"\\f0c9\";\n}\n.bd3-reverse-operation-in:before {\n  content: \"\\f0ca\";\n}\n.bd3-reverse-operation-out:before {\n  content: \"\\f0cb\";\n}\n.bd3-reverse-rotation:before {\n  content: \"\\f0cc\";\n}\n.bd3-rice:before {\n  content: \"\\f0cd\";\n}\n.bd3-riding:before {\n  content: \"\\f0ce\";\n}\n.bd3-riding-one:before {\n  content: \"\\f0cf\";\n}\n.bd3-right:before {\n  content: \"\\f0d0\";\n}\n.bd3-right-angle:before {\n  content: \"\\f0d1\";\n}\n.bd3-right-bar:before {\n  content: \"\\f0d2\";\n}\n.bd3-right-branch:before {\n  content: \"\\f0d3\";\n}\n.bd3-right-branch-one:before {\n  content: \"\\f0d4\";\n}\n.bd3-right-branch-two:before {\n  content: \"\\f0d5\";\n}\n.bd3-right-c:before {\n  content: \"\\f0d6\";\n}\n.bd3-right-expand:before {\n  content: \"\\f0d7\";\n}\n.bd3-right-one:before {\n  content: \"\\f0d8\";\n}\n.bd3-right-run:before {\n  content: \"\\f0d9\";\n}\n.bd3-right-small:before {\n  content: \"\\f0da\";\n}\n.bd3-right-small-down:before {\n  content: \"\\f0db\";\n}\n.bd3-right-small-up:before {\n  content: \"\\f0dc\";\n}\n.bd3-right-square:before {\n  content: \"\\f0dd\";\n}\n.bd3-right-two:before {\n  content: \"\\f0de\";\n}\n.bd3-right-user:before {\n  content: \"\\f0df\";\n}\n.bd3-ring:before {\n  content: \"\\f0e0\";\n}\n.bd3-ring-one:before {\n  content: \"\\f0e1\";\n}\n.bd3-rings:before {\n  content: \"\\f0e2\";\n}\n.bd3-ripple:before {\n  content: \"\\f0e3\";\n}\n.bd3-road:before {\n  content: \"\\f0e4\";\n}\n.bd3-road-cone:before {\n  content: \"\\f0e5\";\n}\n.bd3-road-one:before {\n  content: \"\\f0e6\";\n}\n.bd3-road-sign:before {\n  content: \"\\f0e7\";\n}\n.bd3-road-sign-both:before {\n  content: \"\\f0e8\";\n}\n.bd3-robot:before {\n  content: \"\\f0e9\";\n}\n.bd3-robot-one:before {\n  content: \"\\f0ea\";\n}\n.bd3-robot-two:before {\n  content: \"\\f0eb\";\n}\n.bd3-rock:before {\n  content: \"\\f0ec\";\n}\n.bd3-rocket:before {\n  content: \"\\f0ed\";\n}\n.bd3-rocket-one:before {\n  content: \"\\f0ee\";\n}\n.bd3-rock-gesture:before {\n  content: \"\\f0ef\";\n}\n.bd3-rocking-horse:before {\n  content: \"\\f0f0\";\n}\n.bd3-rollerskates:before {\n  content: \"\\f0f1\";\n}\n.bd3-romper:before {\n  content: \"\\f0f2\";\n}\n.bd3-rope-skipping:before {\n  content: \"\\f0f3\";\n}\n.bd3-rope-skipping-one:before {\n  content: \"\\f0f4\";\n}\n.bd3-rotate:before {\n  content: \"\\f0f5\";\n}\n.bd3-rotate-one:before {\n  content: \"\\f0f6\";\n}\n.bd3-rotating-add:before {\n  content: \"\\f0f7\";\n}\n.bd3-rotating-forward:before {\n  content: \"\\f0f8\";\n}\n.bd3-rotation:before {\n  content: \"\\f0f9\";\n}\n.bd3-rotation-horizontal:before {\n  content: \"\\f0fa\";\n}\n.bd3-rotation-one:before {\n  content: \"\\f0fb\";\n}\n.bd3-rotation-vertical:before {\n  content: \"\\f0fc\";\n}\n.bd3-round:before {\n  content: \"\\f0fd\";\n}\n.bd3-round-caliper:before {\n  content: \"\\f0fe\";\n}\n.bd3-round-distortion:before {\n  content: \"\\f0ff\";\n}\n.bd3-round-mask:before {\n  content: \"\\f100\";\n}\n.bd3-round-socket:before {\n  content: \"\\f101\";\n}\n.bd3-round-trip:before {\n  content: \"\\f102\";\n}\n.bd3-router:before {\n  content: \"\\f103\";\n}\n.bd3-router-one:before {\n  content: \"\\f104\";\n}\n.bd3-row-height:before {\n  content: \"\\f105\";\n}\n.bd3-rowing:before {\n  content: \"\\f106\";\n}\n.bd3-rs-male:before {\n  content: \"\\f107\";\n}\n.bd3-rss:before {\n  content: \"\\f108\";\n}\n.bd3-rugby:before {\n  content: \"\\f109\";\n}\n.bd3-rugby-one:before {\n  content: \"\\f10a\";\n}\n.bd3-ruler:before {\n  content: \"\\f10b\";\n}\n.bd3-ruler-one:before {\n  content: \"\\f10c\";\n}\n.bd3-rule-two:before {\n  content: \"\\f10d\";\n}\n.bd3-run-left:before {\n  content: \"\\f10e\";\n}\n.bd3-safe-retrieval:before {\n  content: \"\\f10f\";\n}\n.bd3-sagittarius:before {\n  content: \"\\f110\";\n}\n.bd3-sailboat:before {\n  content: \"\\f111\";\n}\n.bd3-sailboat-one:before {\n  content: \"\\f112\";\n}\n.bd3-sailing:before {\n  content: \"\\f113\";\n}\n.bd3-sales-report:before {\n  content: \"\\f114\";\n}\n.bd3-sandals:before {\n  content: \"\\f115\";\n}\n.bd3-sandstorm:before {\n  content: \"\\f116\";\n}\n.bd3-sandwich:before {\n  content: \"\\f117\";\n}\n.bd3-sandwich-one:before {\n  content: \"\\f118\";\n}\n.bd3-sapling:before {\n  content: \"\\f119\";\n}\n.bd3-save:before {\n  content: \"\\f11a\";\n}\n.bd3-save-one:before {\n  content: \"\\f11b\";\n}\n.bd3-scale:before {\n  content: \"\\f11c\";\n}\n.bd3-scale-one:before {\n  content: \"\\f11d\";\n}\n.bd3-scallion:before {\n  content: \"\\f11e\";\n}\n.bd3-scan:before {\n  content: \"\\f11f\";\n}\n.bd3-scan-code:before {\n  content: \"\\f120\";\n}\n.bd3-scanning:before {\n  content: \"\\f121\";\n}\n.bd3-scanning-two:before {\n  content: \"\\f122\";\n}\n.bd3-scan-setting:before {\n  content: \"\\f123\";\n}\n.bd3-scatter-alignment:before {\n  content: \"\\f124\";\n}\n.bd3-schedule:before {\n  content: \"\\f125\";\n}\n.bd3-school:before {\n  content: \"\\f126\";\n}\n.bd3-scissors:before {\n  content: \"\\f127\";\n}\n.bd3-scoreboard:before {\n  content: \"\\f128\";\n}\n.bd3-scorpio:before {\n  content: \"\\f129\";\n}\n.bd3-screen-rotation:before {\n  content: \"\\f12a\";\n}\n.bd3-screenshot:before {\n  content: \"\\f12b\";\n}\n.bd3-screenshot-one:before {\n  content: \"\\f12c\";\n}\n.bd3-screenshot-two:before {\n  content: \"\\f12d\";\n}\n.bd3-screwdriver:before {\n  content: \"\\f12e\";\n}\n.bd3-sd:before {\n  content: \"\\f12f\";\n}\n.bd3-sd-card:before {\n  content: \"\\f130\";\n}\n.bd3-seal:before {\n  content: \"\\f131\";\n}\n.bd3-search:before {\n  content: \"\\f132\";\n}\n.bd3-seat:before {\n  content: \"\\f133\";\n}\n.bd3-security:before {\n  content: \"\\f134\";\n}\n.bd3-security-stall:before {\n  content: \"\\f135\";\n}\n.bd3-seedling:before {\n  content: \"\\f136\";\n}\n.bd3-selected:before {\n  content: \"\\f137\";\n}\n.bd3-selected-focus:before {\n  content: \"\\f138\";\n}\n.bd3-selfie:before {\n  content: \"\\f139\";\n}\n.bd3-send:before {\n  content: \"\\f13a\";\n}\n.bd3-send-backward:before {\n  content: \"\\f13b\";\n}\n.bd3-send-email:before {\n  content: \"\\f13c\";\n}\n.bd3-send-one:before {\n  content: \"\\f13d\";\n}\n.bd3-send-to-back:before {\n  content: \"\\f13e\";\n}\n.bd3-sent-to-back:before {\n  content: \"\\f13f\";\n}\n.bd3-seo:before {\n  content: \"\\f140\";\n}\n.bd3-seo-folder:before {\n  content: \"\\f141\";\n}\n.bd3-server:before {\n  content: \"\\f142\";\n}\n.bd3-set-off:before {\n  content: \"\\f143\";\n}\n.bd3-setting:before {\n  content: \"\\f144\";\n}\n.bd3-setting-computer:before {\n  content: \"\\f145\";\n}\n.bd3-setting-config:before {\n  content: \"\\f146\";\n}\n.bd3-setting-laptop:before {\n  content: \"\\f147\";\n}\n.bd3-setting-one:before {\n  content: \"\\f148\";\n}\n.bd3-setting-three:before {\n  content: \"\\f149\";\n}\n.bd3-setting-two:before {\n  content: \"\\f14a\";\n}\n.bd3-setting-web:before {\n  content: \"\\f14b\";\n}\n.bd3-seven-key:before {\n  content: \"\\f14c\";\n}\n.bd3-shade:before {\n  content: \"\\f14d\";\n}\n.bd3-shake:before {\n  content: \"\\f14e\";\n}\n.bd3-share:before {\n  content: \"\\f14f\";\n}\n.bd3-share-one:before {\n  content: \"\\f150\";\n}\n.bd3-share-sys:before {\n  content: \"\\f151\";\n}\n.bd3-share-three:before {\n  content: \"\\f152\";\n}\n.bd3-share-two:before {\n  content: \"\\f153\";\n}\n.bd3-shaver:before {\n  content: \"\\f154\";\n}\n.bd3-shaver-one:before {\n  content: \"\\f155\";\n}\n.bd3-shaving:before {\n  content: \"\\f156\";\n}\n.bd3-sheep-zodiac:before {\n  content: \"\\f157\";\n}\n.bd3-shield:before {\n  content: \"\\f158\";\n}\n.bd3-shield-add:before {\n  content: \"\\f159\";\n}\n.bd3-ship:before {\n  content: \"\\f15a\";\n}\n.bd3-shop:before {\n  content: \"\\f15b\";\n}\n.bd3-shopping:before {\n  content: \"\\f15c\";\n}\n.bd3-shopping-bag:before {\n  content: \"\\f15d\";\n}\n.bd3-shopping-bag-one:before {\n  content: \"\\f15e\";\n}\n.bd3-shopping-cart:before {\n  content: \"\\f15f\";\n}\n.bd3-shopping-cart-add:before {\n  content: \"\\f160\";\n}\n.bd3-shopping-cart-del:before {\n  content: \"\\f161\";\n}\n.bd3-shopping-cart-one:before {\n  content: \"\\f162\";\n}\n.bd3-shopping-cart-two:before {\n  content: \"\\f163\";\n}\n.bd3-shopping-mall:before {\n  content: \"\\f164\";\n}\n.bd3-shorts:before {\n  content: \"\\f165\";\n}\n.bd3-short-skirt:before {\n  content: \"\\f166\";\n}\n.bd3-shoulder-bag:before {\n  content: \"\\f167\";\n}\n.bd3-shovel:before {\n  content: \"\\f168\";\n}\n.bd3-shovel-one:before {\n  content: \"\\f169\";\n}\n.bd3-shower-head:before {\n  content: \"\\f16a\";\n}\n.bd3-shrimp:before {\n  content: \"\\f16b\";\n}\n.bd3-shuffle:before {\n  content: \"\\f16c\";\n}\n.bd3-shuffle-one:before {\n  content: \"\\f16d\";\n}\n.bd3-shutter-priority:before {\n  content: \"\\f16e\";\n}\n.bd3-sickbed:before {\n  content: \"\\f16f\";\n}\n.bd3-signal:before {\n  content: \"\\f170\";\n}\n.bd3-signal-one:before {\n  content: \"\\f171\";\n}\n.bd3-signal-strength:before {\n  content: \"\\f172\";\n}\n.bd3-signal-tower:before {\n  content: \"\\f173\";\n}\n.bd3-signal-tower-one:before {\n  content: \"\\f174\";\n}\n.bd3-sim:before {\n  content: \"\\f175\";\n}\n.bd3-sim-card:before {\n  content: \"\\f176\";\n}\n.bd3-single-bed:before {\n  content: \"\\f177\";\n}\n.bd3-sinusoid:before {\n  content: \"\\f178\";\n}\n.bd3-sippy-cup:before {\n  content: \"\\f179\";\n}\n.bd3-six:before {\n  content: \"\\f17a\";\n}\n.bd3-six-circular-connection:before {\n  content: \"\\f17b\";\n}\n.bd3-six-key:before {\n  content: \"\\f17c\";\n}\n.bd3-six-points:before {\n  content: \"\\f17d\";\n}\n.bd3-skate:before {\n  content: \"\\f17e\";\n}\n.bd3-skates:before {\n  content: \"\\f17f\";\n}\n.bd3-skating:before {\n  content: \"\\f180\";\n}\n.bd3-sketch:before {\n  content: \"\\f181\";\n}\n.bd3-skiing-nordic:before {\n  content: \"\\f182\";\n}\n.bd3-skull:before {\n  content: \"\\f183\";\n}\n.bd3-slave:before {\n  content: \"\\f184\";\n}\n.bd3-sleaves:before {\n  content: \"\\f185\";\n}\n.bd3-sleep:before {\n  content: \"\\f186\";\n}\n.bd3-sleep-one:before {\n  content: \"\\f187\";\n}\n.bd3-sleep-two:before {\n  content: \"\\f188\";\n}\n.bd3-slide:before {\n  content: \"\\f189\";\n}\n.bd3-slide-two:before {\n  content: \"\\f18a\";\n}\n.bd3-sliding-horizontal:before {\n  content: \"\\f18b\";\n}\n.bd3-sliding-vertical:before {\n  content: \"\\f18c\";\n}\n.bd3-slightly-frowning-face-whit-open-mouth:before {\n  content: \"\\f18d\";\n}\n.bd3-slightly-smiling-face:before {\n  content: \"\\f18e\";\n}\n.bd3-slippers:before {\n  content: \"\\f18f\";\n}\n.bd3-slippers-one:before {\n  content: \"\\f190\";\n}\n.bd3-sly-face-whit-smile:before {\n  content: \"\\f191\";\n}\n.bd3-smart-optimization:before {\n  content: \"\\f192\";\n}\n.bd3-smiling-face:before {\n  content: \"\\f193\";\n}\n.bd3-smiling-face-with-squinting-eyes:before {\n  content: \"\\f194\";\n}\n.bd3-snacks:before {\n  content: \"\\f195\";\n}\n.bd3-snake-zodiac:before {\n  content: \"\\f196\";\n}\n.bd3-snow:before {\n  content: \"\\f197\";\n}\n.bd3-snowflake:before {\n  content: \"\\f198\";\n}\n.bd3-snowman:before {\n  content: \"\\f199\";\n}\n.bd3-soap-bubble:before {\n  content: \"\\f19a\";\n}\n.bd3-soccer:before {\n  content: \"\\f19b\";\n}\n.bd3-soccer-one:before {\n  content: \"\\f19c\";\n}\n.bd3-socks:before {\n  content: \"\\f19d\";\n}\n.bd3-sofa:before {\n  content: \"\\f19e\";\n}\n.bd3-sofa-two:before {\n  content: \"\\f19f\";\n}\n.bd3-softball:before {\n  content: \"\\f1a0\";\n}\n.bd3-solar-energy:before {\n  content: \"\\f1a1\";\n}\n.bd3-solar-energy-one:before {\n  content: \"\\f1a2\";\n}\n.bd3-solid-state-disk:before {\n  content: \"\\f1a3\";\n}\n.bd3-sorcerer-hat:before {\n  content: \"\\f1a4\";\n}\n.bd3-sort:before {\n  content: \"\\f1a5\";\n}\n.bd3-sort-amount-down:before {\n  content: \"\\f1a6\";\n}\n.bd3-sort-amount-up:before {\n  content: \"\\f1a7\";\n}\n.bd3-sort-four:before {\n  content: \"\\f1a8\";\n}\n.bd3-sort-one:before {\n  content: \"\\f1a9\";\n}\n.bd3-sort-three:before {\n  content: \"\\f1aa\";\n}\n.bd3-sort-two:before {\n  content: \"\\f1ab\";\n}\n.bd3-sound:before {\n  content: \"\\f1ac\";\n}\n.bd3-sound-one:before {\n  content: \"\\f1ad\";\n}\n.bd3-sound-wave:before {\n  content: \"\\f1ae\";\n}\n.bd3-source-code:before {\n  content: \"\\f1af\";\n}\n.bd3-soybean-milk-maker:before {\n  content: \"\\f1b0\";\n}\n.bd3-spa-candle:before {\n  content: \"\\f1b1\";\n}\n.bd3-space-colony:before {\n  content: \"\\f1b2\";\n}\n.bd3-spanner:before {\n  content: \"\\f1b3\";\n}\n.bd3-speaker:before {\n  content: \"\\f1b4\";\n}\n.bd3-speaker-one:before {\n  content: \"\\f1b5\";\n}\n.bd3-speed:before {\n  content: \"\\f1b6\";\n}\n.bd3-speed-one:before {\n  content: \"\\f1b7\";\n}\n.bd3-sperm:before {\n  content: \"\\f1b8\";\n}\n.bd3-sphere:before {\n  content: \"\\f1b9\";\n}\n.bd3-spider-man:before {\n  content: \"\\f1ba\";\n}\n.bd3-spikedshoes:before {\n  content: \"\\f1bb\";\n}\n.bd3-spinning-top:before {\n  content: \"\\f1bc\";\n}\n.bd3-split:before {\n  content: \"\\f1bd\";\n}\n.bd3-split-branch:before {\n  content: \"\\f1be\";\n}\n.bd3-split-cells:before {\n  content: \"\\f1bf\";\n}\n.bd3-split-turn-down-left:before {\n  content: \"\\f1c0\";\n}\n.bd3-split-turn-down-right:before {\n  content: \"\\f1c1\";\n}\n.bd3-spoon:before {\n  content: \"\\f1c2\";\n}\n.bd3-sport:before {\n  content: \"\\f1c3\";\n}\n.bd3-sporting:before {\n  content: \"\\f1c4\";\n}\n.bd3-square:before {\n  content: \"\\f1c5\";\n}\n.bd3-square-small:before {\n  content: \"\\f1c6\";\n}\n.bd3-ssd:before {\n  content: \"\\f1c7\";\n}\n.bd3-stack-light:before {\n  content: \"\\f1c8\";\n}\n.bd3-stamp:before {\n  content: \"\\f1c9\";\n}\n.bd3-stand-up:before {\n  content: \"\\f1ca\";\n}\n.bd3-stapler:before {\n  content: \"\\f1cb\";\n}\n.bd3-star:before {\n  content: \"\\f1cc\";\n}\n.bd3-star-one:before {\n  content: \"\\f1cd\";\n}\n.bd3-start-time-sort:before {\n  content: \"\\f1ce\";\n}\n.bd3-steering-wheel:before {\n  content: \"\\f1cf\";\n}\n.bd3-steoller:before {\n  content: \"\\f1d0\";\n}\n.bd3-stereo-nesting:before {\n  content: \"\\f1d1\";\n}\n.bd3-stereo-one:before {\n  content: \"\\f1d2\";\n}\n.bd3-stereo-perspective:before {\n  content: \"\\f1d3\";\n}\n.bd3-stethoscope:before {\n  content: \"\\f1d4\";\n}\n.bd3-stickers:before {\n  content: \"\\f1d5\";\n}\n.bd3-stock-market:before {\n  content: \"\\f1d6\";\n}\n.bd3-stopwatch:before {\n  content: \"\\f1d7\";\n}\n.bd3-stopwatch-start:before {\n  content: \"\\f1d8\";\n}\n.bd3-storage-card-one:before {\n  content: \"\\f1d9\";\n}\n.bd3-storage-card-two:before {\n  content: \"\\f1da\";\n}\n.bd3-straight-razor:before {\n  content: \"\\f1db\";\n}\n.bd3-straw-hat:before {\n  content: \"\\f1dc\";\n}\n.bd3-stretching:before {\n  content: \"\\f1dd\";\n}\n.bd3-stretching-one:before {\n  content: \"\\f1de\";\n}\n.bd3-strikethrough:before {\n  content: \"\\f1df\";\n}\n.bd3-strongbox:before {\n  content: \"\\f1e0\";\n}\n.bd3-s-turn-down:before {\n  content: \"\\f1e1\";\n}\n.bd3-s-turn-left:before {\n  content: \"\\f1e2\";\n}\n.bd3-s-turn-right:before {\n  content: \"\\f1e3\";\n}\n.bd3-s-turn-up:before {\n  content: \"\\f1e4\";\n}\n.bd3-subtract-selection:before {\n  content: \"\\f1e5\";\n}\n.bd3-subtract-selection-one:before {\n  content: \"\\f1e6\";\n}\n.bd3-subway:before {\n  content: \"\\f1e7\";\n}\n.bd3-success:before {\n  content: \"\\f1e8\";\n}\n.bd3-success-picture:before {\n  content: \"\\f1e9\";\n}\n.bd3-sum:before {\n  content: \"\\f1ea\";\n}\n.bd3-sun:before {\n  content: \"\\f1eb\";\n}\n.bd3-sunbath:before {\n  content: \"\\f1ec\";\n}\n.bd3-sun-hat:before {\n  content: \"\\f1ed\";\n}\n.bd3-sunny:before {\n  content: \"\\f1ee\";\n}\n.bd3-sun-one:before {\n  content: \"\\f1ef\";\n}\n.bd3-sunrise:before {\n  content: \"\\f1f0\";\n}\n.bd3-sunset:before {\n  content: \"\\f1f1\";\n}\n.bd3-sunshade:before {\n  content: \"\\f1f2\";\n}\n.bd3-surprised-face-with-open-big-mouth:before {\n  content: \"\\f1f3\";\n}\n.bd3-surprised-face-with-open-mouth:before {\n  content: \"\\f1f4\";\n}\n.bd3-surveillance-cameras:before {\n  content: \"\\f1f5\";\n}\n.bd3-surveillance-cameras-one:before {\n  content: \"\\f1f6\";\n}\n.bd3-surveillance-cameras-two:before {\n  content: \"\\f1f7\";\n}\n.bd3-swallow:before {\n  content: \"\\f1f8\";\n}\n.bd3-sweater:before {\n  content: \"\\f1f9\";\n}\n.bd3-swimming-pool:before {\n  content: \"\\f1fa\";\n}\n.bd3-swimming-ring:before {\n  content: \"\\f1fb\";\n}\n.bd3-swimsuit:before {\n  content: \"\\f1fc\";\n}\n.bd3-swing:before {\n  content: \"\\f1fd\";\n}\n.bd3-swipe:before {\n  content: \"\\f1fe\";\n}\n.bd3-switch:before {\n  content: \"\\f1ff\";\n}\n.bd3-switch-button:before {\n  content: \"\\f200\";\n}\n.bd3-switch-contrast:before {\n  content: \"\\f201\";\n}\n.bd3-switching-done:before {\n  content: \"\\f202\";\n}\n.bd3-switch-nintendo:before {\n  content: \"\\f203\";\n}\n.bd3-switch-one:before {\n  content: \"\\f204\";\n}\n.bd3-switch-themes:before {\n  content: \"\\f205\";\n}\n.bd3-switch-track:before {\n  content: \"\\f206\";\n}\n.bd3-symbol:before {\n  content: \"\\f207\";\n}\n.bd3-symbol-double-x:before {\n  content: \"\\f208\";\n}\n.bd3-symmetry:before {\n  content: \"\\f209\";\n}\n.bd3-sync:before {\n  content: \"\\f20a\";\n}\n.bd3-system:before {\n  content: \"\\f20b\";\n}\n.bd3-table:before {\n  content: \"\\f20c\";\n}\n.bd3-table-file:before {\n  content: \"\\f20d\";\n}\n.bd3-table-lamp:before {\n  content: \"\\f20e\";\n}\n.bd3-table-report:before {\n  content: \"\\f20f\";\n}\n.bd3-tabletennis:before {\n  content: \"\\f210\";\n}\n.bd3-tag:before {\n  content: \"\\f211\";\n}\n.bd3-tag-one:before {\n  content: \"\\f212\";\n}\n.bd3-tailoring:before {\n  content: \"\\f213\";\n}\n.bd3-tailoring-two:before {\n  content: \"\\f214\";\n}\n.bd3-taj-mahal:before {\n  content: \"\\f215\";\n}\n.bd3-take-off:before {\n  content: \"\\f216\";\n}\n.bd3-take-off-one:before {\n  content: \"\\f217\";\n}\n.bd3-taobao:before {\n  content: \"\\f218\";\n}\n.bd3-tape:before {\n  content: \"\\f219\";\n}\n.bd3-tape-measure:before {\n  content: \"\\f21a\";\n}\n.bd3-target:before {\n  content: \"\\f21b\";\n}\n.bd3-target-one:before {\n  content: \"\\f21c\";\n}\n.bd3-target-two:before {\n  content: \"\\f21d\";\n}\n.bd3-taurus:before {\n  content: \"\\f21e\";\n}\n.bd3-taxi:before {\n  content: \"\\f21f\";\n}\n.bd3-tea:before {\n  content: \"\\f220\";\n}\n.bd3-tea-drink:before {\n  content: \"\\f221\";\n}\n.bd3-teapot:before {\n  content: \"\\f222\";\n}\n.bd3-teeth:before {\n  content: \"\\f223\";\n}\n.bd3-telegram:before {\n  content: \"\\f224\";\n}\n.bd3-telescope:before {\n  content: \"\\f225\";\n}\n.bd3-tencent-qq:before {\n  content: \"\\f226\";\n}\n.bd3-tennis:before {\n  content: \"\\f227\";\n}\n.bd3-tent:before {\n  content: \"\\f228\";\n}\n.bd3-tent-banner:before {\n  content: \"\\f229\";\n}\n.bd3-terminal:before {\n  content: \"\\f22a\";\n}\n.bd3-termination-file:before {\n  content: \"\\f22b\";\n}\n.bd3-terrace:before {\n  content: \"\\f22c\";\n}\n.bd3-test-tube:before {\n  content: \"\\f22d\";\n}\n.bd3-text:before {\n  content: \"\\f22e\";\n}\n.bd3-textarea:before {\n  content: \"\\f22f\";\n}\n.bd3-text-bold:before {\n  content: \"\\f230\";\n}\n.bd3-text-italic:before {\n  content: \"\\f231\";\n}\n.bd3-text-message:before {\n  content: \"\\f232\";\n}\n.bd3-text-recognition:before {\n  content: \"\\f233\";\n}\n.bd3-text-rotation-down:before {\n  content: \"\\f234\";\n}\n.bd3-text-rotation-left:before {\n  content: \"\\f235\";\n}\n.bd3-text-rotation-none:before {\n  content: \"\\f236\";\n}\n.bd3-text-rotation-up:before {\n  content: \"\\f237\";\n}\n.bd3-text-style:before {\n  content: \"\\f238\";\n}\n.bd3-text-style-one:before {\n  content: \"\\f239\";\n}\n.bd3-text-underline:before {\n  content: \"\\f23a\";\n}\n.bd3-texture:before {\n  content: \"\\f23b\";\n}\n.bd3-texture-two:before {\n  content: \"\\f23c\";\n}\n.bd3-text-wrap-overflow:before {\n  content: \"\\f23d\";\n}\n.bd3-text-wrap-truncation:before {\n  content: \"\\f23e\";\n}\n.bd3-theater:before {\n  content: \"\\f23f\";\n}\n.bd3-theme:before {\n  content: \"\\f240\";\n}\n.bd3-thermometer:before {\n  content: \"\\f241\";\n}\n.bd3-thermometer-one:before {\n  content: \"\\f242\";\n}\n.bd3-thermos-cup:before {\n  content: \"\\f243\";\n}\n.bd3-the-single-shoulder-bag:before {\n  content: \"\\f244\";\n}\n.bd3-thin:before {\n  content: \"\\f245\";\n}\n.bd3-thinking-problem:before {\n  content: \"\\f246\";\n}\n.bd3-three:before {\n  content: \"\\f247\";\n}\n.bd3-three-d-glasses:before {\n  content: \"\\f248\";\n}\n.bd3-three-hexagons:before {\n  content: \"\\f249\";\n}\n.bd3-three-key:before {\n  content: \"\\f24a\";\n}\n.bd3-three-slashes:before {\n  content: \"\\f24b\";\n}\n.bd3-three-three:before {\n  content: \"\\f24c\";\n}\n.bd3-three-triangles:before {\n  content: \"\\f24d\";\n}\n.bd3-thumbs-down:before {\n  content: \"\\f24e\";\n}\n.bd3-thumbs-up:before {\n  content: \"\\f24f\";\n}\n.bd3-thunderbolt:before {\n  content: \"\\f250\";\n}\n.bd3-thunderstorm:before {\n  content: \"\\f251\";\n}\n.bd3-thunderstorm-one:before {\n  content: \"\\f252\";\n}\n.bd3-ticket:before {\n  content: \"\\f253\";\n}\n.bd3-ticket-one:before {\n  content: \"\\f254\";\n}\n.bd3-tickets-checked:before {\n  content: \"\\f255\";\n}\n.bd3-tickets-one:before {\n  content: \"\\f256\";\n}\n.bd3-tickets-two:before {\n  content: \"\\f257\";\n}\n.bd3-tiger-zodiac:before {\n  content: \"\\f258\";\n}\n.bd3-tiktok:before {\n  content: \"\\f259\";\n}\n.bd3-time:before {\n  content: \"\\f25a\";\n}\n.bd3-timed-mail:before {\n  content: \"\\f25b\";\n}\n.bd3-timeline:before {\n  content: \"\\f25c\";\n}\n.bd3-timer:before {\n  content: \"\\f25d\";\n}\n.bd3-tips:before {\n  content: \"\\f25e\";\n}\n.bd3-tips-one:before {\n  content: \"\\f25f\";\n}\n.bd3-tire-swing:before {\n  content: \"\\f260\";\n}\n.bd3-title-level:before {\n  content: \"\\f261\";\n}\n.bd3-to-bottom:before {\n  content: \"\\f262\";\n}\n.bd3-to-bottom-one:before {\n  content: \"\\f263\";\n}\n.bd3-toilet:before {\n  content: \"\\f264\";\n}\n.bd3-to-left:before {\n  content: \"\\f265\";\n}\n.bd3-tomato:before {\n  content: \"\\f266\";\n}\n.bd3-tool:before {\n  content: \"\\f267\";\n}\n.bd3-toolkit:before {\n  content: \"\\f268\";\n}\n.bd3-top-bar:before {\n  content: \"\\f269\";\n}\n.bd3-topbuzz:before {\n  content: \"\\f26a\";\n}\n.bd3-topic:before {\n  content: \"\\f26b\";\n}\n.bd3-topic-discussion:before {\n  content: \"\\f26c\";\n}\n.bd3-torch:before {\n  content: \"\\f26d\";\n}\n.bd3-to-right:before {\n  content: \"\\f26e\";\n}\n.bd3-to-top:before {\n  content: \"\\f26f\";\n}\n.bd3-to-top-one:before {\n  content: \"\\f270\";\n}\n.bd3-tour-bus:before {\n  content: \"\\f271\";\n}\n.bd3-towel:before {\n  content: \"\\f272\";\n}\n.bd3-tower:before {\n  content: \"\\f273\";\n}\n.bd3-tower-of-babel:before {\n  content: \"\\f274\";\n}\n.bd3-tower-of-pisa:before {\n  content: \"\\f275\";\n}\n.bd3-toxins:before {\n  content: \"\\f276\";\n}\n.bd3-trace:before {\n  content: \"\\f277\";\n}\n.bd3-trademark:before {\n  content: \"\\f278\";\n}\n.bd3-traditional-chinese-medicine:before {\n  content: \"\\f279\";\n}\n.bd3-train:before {\n  content: \"\\f27a\";\n}\n.bd3-transaction:before {\n  content: \"\\f27b\";\n}\n.bd3-transaction-order:before {\n  content: \"\\f27c\";\n}\n.bd3-transfer:before {\n  content: \"\\f27d\";\n}\n.bd3-transfer-data:before {\n  content: \"\\f27e\";\n}\n.bd3-transform:before {\n  content: \"\\f27f\";\n}\n.bd3-translate:before {\n  content: \"\\f280\";\n}\n.bd3-translation:before {\n  content: \"\\f281\";\n}\n.bd3-transport:before {\n  content: \"\\f282\";\n}\n.bd3-transporter:before {\n  content: \"\\f283\";\n}\n.bd3-trapezoid:before {\n  content: \"\\f284\";\n}\n.bd3-tray:before {\n  content: \"\\f285\";\n}\n.bd3-treadmill:before {\n  content: \"\\f286\";\n}\n.bd3-treadmill-one:before {\n  content: \"\\f287\";\n}\n.bd3-treadmill-two:before {\n  content: \"\\f288\";\n}\n.bd3-treasure-chest:before {\n  content: \"\\f289\";\n}\n.bd3-tree:before {\n  content: \"\\f28a\";\n}\n.bd3-tree-diagram:before {\n  content: \"\\f28b\";\n}\n.bd3-tree-list:before {\n  content: \"\\f28c\";\n}\n.bd3-tree-one:before {\n  content: \"\\f28d\";\n}\n.bd3-tree-two:before {\n  content: \"\\f28e\";\n}\n.bd3-trend:before {\n  content: \"\\f28f\";\n}\n.bd3-trending-down:before {\n  content: \"\\f290\";\n}\n.bd3-trending-up:before {\n  content: \"\\f291\";\n}\n.bd3-trend-two:before {\n  content: \"\\f292\";\n}\n.bd3-triangle:before {\n  content: \"\\f293\";\n}\n.bd3-triangle-round-rectangle:before {\n  content: \"\\f294\";\n}\n.bd3-triangle-ruler:before {\n  content: \"\\f295\";\n}\n.bd3-triangular-pyramid:before {\n  content: \"\\f296\";\n}\n.bd3-trophy:before {\n  content: \"\\f297\";\n}\n.bd3-trousers-bell-bottoms:before {\n  content: \"\\f298\";\n}\n.bd3-truck:before {\n  content: \"\\f299\";\n}\n.bd3-trumpet:before {\n  content: \"\\f29a\";\n}\n.bd3-trunk:before {\n  content: \"\\f29b\";\n}\n.bd3-t-shirt:before {\n  content: \"\\f29c\";\n}\n.bd3-tub:before {\n  content: \"\\f29d\";\n}\n.bd3-tuchong:before {\n  content: \"\\f29e\";\n}\n.bd3-tumblr:before {\n  content: \"\\f29f\";\n}\n.bd3-turkey:before {\n  content: \"\\f2a0\";\n}\n.bd3-turn-around:before {\n  content: \"\\f2a1\";\n}\n.bd3-turn-off-bluetooth:before {\n  content: \"\\f2a2\";\n}\n.bd3-turn-on:before {\n  content: \"\\f2a3\";\n}\n.bd3-tv:before {\n  content: \"\\f2a4\";\n}\n.bd3-tv-one:before {\n  content: \"\\f2a5\";\n}\n.bd3-twitter:before {\n  content: \"\\f2a6\";\n}\n.bd3-two:before {\n  content: \"\\f2a7\";\n}\n.bd3-two-dimensional-code:before {\n  content: \"\\f2a8\";\n}\n.bd3-two-dimensional-code-one:before {\n  content: \"\\f2a9\";\n}\n.bd3-two-dimensional-code-two:before {\n  content: \"\\f2aa\";\n}\n.bd3-two-ellipses:before {\n  content: \"\\f2ab\";\n}\n.bd3-two-fingers:before {\n  content: \"\\f2ac\";\n}\n.bd3-two-hands:before {\n  content: \"\\f2ad\";\n}\n.bd3-two-key:before {\n  content: \"\\f2ae\";\n}\n.bd3-two-semicircles:before {\n  content: \"\\f2af\";\n}\n.bd3-two-triangles:before {\n  content: \"\\f2b0\";\n}\n.bd3-two-triangles-two:before {\n  content: \"\\f2b1\";\n}\n.bd3-two-two:before {\n  content: \"\\f2b2\";\n}\n.bd3-type-drive:before {\n  content: \"\\f2b3\";\n}\n.bd3-u-disk:before {\n  content: \"\\f2b4\";\n}\n.bd3-ulikecam:before {\n  content: \"\\f2b5\";\n}\n.bd3-umbrella:before {\n  content: \"\\f2b6\";\n}\n.bd3-umbrella-one:before {\n  content: \"\\f2b7\";\n}\n.bd3-umbrella-two:before {\n  content: \"\\f2b8\";\n}\n.bd3-undo:before {\n  content: \"\\f2b9\";\n}\n.bd3-ungroup:before {\n  content: \"\\f2ba\";\n}\n.bd3-unicast:before {\n  content: \"\\f2bb\";\n}\n.bd3-union-selection:before {\n  content: \"\\f2bc\";\n}\n.bd3-universal:before {\n  content: \"\\f2bd\";\n}\n.bd3-unlike:before {\n  content: \"\\f2be\";\n}\n.bd3-unlink:before {\n  content: \"\\f2bf\";\n}\n.bd3-unlock:before {\n  content: \"\\f2c0\";\n}\n.bd3-unlock-one:before {\n  content: \"\\f2c1\";\n}\n.bd3-unordered-list:before {\n  content: \"\\f2c2\";\n}\n.bd3-up:before {\n  content: \"\\f2c3\";\n}\n.bd3-up-and-down:before {\n  content: \"\\f2c4\";\n}\n.bd3-up-c:before {\n  content: \"\\f2c5\";\n}\n.bd3-update-rotation:before {\n  content: \"\\f2c6\";\n}\n.bd3-upload:before {\n  content: \"\\f2c7\";\n}\n.bd3-upload-computer:before {\n  content: \"\\f2c8\";\n}\n.bd3-upload-laptop:before {\n  content: \"\\f2c9\";\n}\n.bd3-upload-logs:before {\n  content: \"\\f2ca\";\n}\n.bd3-upload-one:before {\n  content: \"\\f2cb\";\n}\n.bd3-upload-picture:before {\n  content: \"\\f2cc\";\n}\n.bd3-upload-three:before {\n  content: \"\\f2cd\";\n}\n.bd3-upload-two:before {\n  content: \"\\f2ce\";\n}\n.bd3-upload-web:before {\n  content: \"\\f2cf\";\n}\n.bd3-up-one:before {\n  content: \"\\f2d0\";\n}\n.bd3-upside-down-face:before {\n  content: \"\\f2d1\";\n}\n.bd3-up-small:before {\n  content: \"\\f2d2\";\n}\n.bd3-up-square:before {\n  content: \"\\f2d3\";\n}\n.bd3-up-two:before {\n  content: \"\\f2d4\";\n}\n.bd3-usb:before {\n  content: \"\\f2d5\";\n}\n.bd3-usb-memory-stick:before {\n  content: \"\\f2d6\";\n}\n.bd3-usb-micro-one:before {\n  content: \"\\f2d7\";\n}\n.bd3-usb-micro-two:before {\n  content: \"\\f2d8\";\n}\n.bd3-usb-one:before {\n  content: \"\\f2d9\";\n}\n.bd3-usb-type-c:before {\n  content: \"\\f2da\";\n}\n.bd3-user:before {\n  content: \"\\f2db\";\n}\n.bd3-user-business:before {\n  content: \"\\f2dc\";\n}\n.bd3-user-positioning:before {\n  content: \"\\f2dd\";\n}\n.bd3-user-to-user-transmission:before {\n  content: \"\\f2de\";\n}\n.bd3-uterus:before {\n  content: \"\\f2df\";\n}\n.bd3-u-turn-down:before {\n  content: \"\\f2e0\";\n}\n.bd3-u-turn-left:before {\n  content: \"\\f2e1\";\n}\n.bd3-u-turn-right:before {\n  content: \"\\f2e2\";\n}\n.bd3-u-turn-up:before {\n  content: \"\\f2e3\";\n}\n.bd3-vacation:before {\n  content: \"\\f2e4\";\n}\n.bd3-vacuum-cleaner:before {\n  content: \"\\f2e5\";\n}\n.bd3-vegetable-basket:before {\n  content: \"\\f2e6\";\n}\n.bd3-vegetables:before {\n  content: \"\\f2e7\";\n}\n.bd3-vertically-centered:before {\n  content: \"\\f2e8\";\n}\n.bd3-vertical-spacing-between-items:before {\n  content: \"\\f2e9\";\n}\n.bd3-vertical-tidy-up:before {\n  content: \"\\f2ea\";\n}\n.bd3-vertical-timeline:before {\n  content: \"\\f2eb\";\n}\n.bd3-vest:before {\n  content: \"\\f2ec\";\n}\n.bd3-vial:before {\n  content: \"\\f2ed\";\n}\n.bd3-vicia-faba:before {\n  content: \"\\f2ee\";\n}\n.bd3-video:before {\n  content: \"\\f2ef\";\n}\n.bd3-videocamera:before {\n  content: \"\\f2f0\";\n}\n.bd3-videocamera-one:before {\n  content: \"\\f2f1\";\n}\n.bd3-video-conference:before {\n  content: \"\\f2f2\";\n}\n.bd3-video-file:before {\n  content: \"\\f2f3\";\n}\n.bd3-video-one:before {\n  content: \"\\f2f4\";\n}\n.bd3-video-two:before {\n  content: \"\\f2f5\";\n}\n.bd3-viencharts:before {\n  content: \"\\f2f6\";\n}\n.bd3-viewfinder:before {\n  content: \"\\f2f7\";\n}\n.bd3-view-grid-card:before {\n  content: \"\\f2f8\";\n}\n.bd3-view-grid-detail:before {\n  content: \"\\f2f9\";\n}\n.bd3-view-grid-list:before {\n  content: \"\\f2fa\";\n}\n.bd3-view-list:before {\n  content: \"\\f2fb\";\n}\n.bd3-vigo:before {\n  content: \"\\f2fc\";\n}\n.bd3-vip:before {\n  content: \"\\f2fd\";\n}\n.bd3-vip-one:before {\n  content: \"\\f2fe\";\n}\n.bd3-virgo:before {\n  content: \"\\f2ff\";\n}\n.bd3-virtual-reality-glasses:before {\n  content: \"\\f300\";\n}\n.bd3-voice:before {\n  content: \"\\f301\";\n}\n.bd3-voice-input:before {\n  content: \"\\f302\";\n}\n.bd3-voicemail:before {\n  content: \"\\f303\";\n}\n.bd3-voice-message:before {\n  content: \"\\f304\";\n}\n.bd3-voice-off:before {\n  content: \"\\f305\";\n}\n.bd3-voice-one:before {\n  content: \"\\f306\";\n}\n.bd3-volkswagen:before {\n  content: \"\\f307\";\n}\n.bd3-volleyball:before {\n  content: \"\\f308\";\n}\n.bd3-volume-down:before {\n  content: \"\\f309\";\n}\n.bd3-volume-mute:before {\n  content: \"\\f30a\";\n}\n.bd3-volume-notice:before {\n  content: \"\\f30b\";\n}\n.bd3-volume-small:before {\n  content: \"\\f30c\";\n}\n.bd3-volume-up:before {\n  content: \"\\f30d\";\n}\n.bd3-vr-glasses:before {\n  content: \"\\f30e\";\n}\n.bd3-waistline:before {\n  content: \"\\f30f\";\n}\n.bd3-wallet:before {\n  content: \"\\f310\";\n}\n.bd3-wallet-one:before {\n  content: \"\\f311\";\n}\n.bd3-wallet-three:before {\n  content: \"\\f312\";\n}\n.bd3-wallet-two:before {\n  content: \"\\f313\";\n}\n.bd3-warehousing:before {\n  content: \"\\f314\";\n}\n.bd3-washing-machine:before {\n  content: \"\\f315\";\n}\n.bd3-washing-machine-one:before {\n  content: \"\\f316\";\n}\n.bd3-watch:before {\n  content: \"\\f317\";\n}\n.bd3-watch-one:before {\n  content: \"\\f318\";\n}\n.bd3-water:before {\n  content: \"\\f319\";\n}\n.bd3-waterfalls-h:before {\n  content: \"\\f31a\";\n}\n.bd3-waterfalls-v:before {\n  content: \"\\f31b\";\n}\n.bd3-water-level:before {\n  content: \"\\f31c\";\n}\n.bd3-watermelon:before {\n  content: \"\\f31d\";\n}\n.bd3-watermelon-one:before {\n  content: \"\\f31e\";\n}\n.bd3-water-no:before {\n  content: \"\\f31f\";\n}\n.bd3-waterpolo:before {\n  content: \"\\f320\";\n}\n.bd3-waterpolo-one:before {\n  content: \"\\f321\";\n}\n.bd3-water-rate:before {\n  content: \"\\f322\";\n}\n.bd3-water-rate-two:before {\n  content: \"\\f323\";\n}\n.bd3-waves:before {\n  content: \"\\f324\";\n}\n.bd3-waves-left:before {\n  content: \"\\f325\";\n}\n.bd3-waves-right:before {\n  content: \"\\f326\";\n}\n.bd3-weary-face:before {\n  content: \"\\f327\";\n}\n.bd3-webcam:before {\n  content: \"\\f328\";\n}\n.bd3-web-page:before {\n  content: \"\\f329\";\n}\n.bd3-wechat:before {\n  content: \"\\f32a\";\n}\n.bd3-weibo:before {\n  content: \"\\f32b\";\n}\n.bd3-weight:before {\n  content: \"\\f32c\";\n}\n.bd3-weightlifting:before {\n  content: \"\\f32d\";\n}\n.bd3-weixin-cards-offers:before {\n  content: \"\\f32e\";\n}\n.bd3-weixin-favorites:before {\n  content: \"\\f32f\";\n}\n.bd3-weixin-games:before {\n  content: \"\\f330\";\n}\n.bd3-weixin-market:before {\n  content: \"\\f331\";\n}\n.bd3-weixin-mini-app:before {\n  content: \"\\f332\";\n}\n.bd3-weixin-people-nearby:before {\n  content: \"\\f333\";\n}\n.bd3-weixin-scan:before {\n  content: \"\\f334\";\n}\n.bd3-weixin-search:before {\n  content: \"\\f335\";\n}\n.bd3-weixin-shake:before {\n  content: \"\\f336\";\n}\n.bd3-weixin-top-stories:before {\n  content: \"\\f337\";\n}\n.bd3-whale:before {\n  content: \"\\f338\";\n}\n.bd3-wheelchair:before {\n  content: \"\\f339\";\n}\n.bd3-whirlwind:before {\n  content: \"\\f33a\";\n}\n.bd3-whistling:before {\n  content: \"\\f33b\";\n}\n.bd3-whole-site-accelerator:before {\n  content: \"\\f33c\";\n}\n.bd3-wifi:before {\n  content: \"\\f33d\";\n}\n.bd3-wind:before {\n  content: \"\\f33e\";\n}\n.bd3-windmill:before {\n  content: \"\\f33f\";\n}\n.bd3-windmill-one:before {\n  content: \"\\f340\";\n}\n.bd3-windmill-two:before {\n  content: \"\\f341\";\n}\n.bd3-windows:before {\n  content: \"\\f342\";\n}\n.bd3-wind-turbine:before {\n  content: \"\\f343\";\n}\n.bd3-wingsuit-flying:before {\n  content: \"\\f344\";\n}\n.bd3-winking-face:before {\n  content: \"\\f345\";\n}\n.bd3-winking-face-with-open-eyes:before {\n  content: \"\\f346\";\n}\n.bd3-woman:before {\n  content: \"\\f347\";\n}\n.bd3-women:before {\n  content: \"\\f348\";\n}\n.bd3-women-coat:before {\n  content: \"\\f349\";\n}\n.bd3-woolen-hat:before {\n  content: \"\\f34a\";\n}\n.bd3-word:before {\n  content: \"\\f34b\";\n}\n.bd3-workbench:before {\n  content: \"\\f34c\";\n}\n.bd3-worker:before {\n  content: \"\\f34d\";\n}\n.bd3-world:before {\n  content: \"\\f34e\";\n}\n.bd3-worried-face:before {\n  content: \"\\f34f\";\n}\n.bd3-write:before {\n  content: \"\\f350\";\n}\n.bd3-writing-fluently:before {\n  content: \"\\f351\";\n}\n.bd3-wrong-user:before {\n  content: \"\\f352\";\n}\n.bd3-xiaodu:before {\n  content: \"\\f353\";\n}\n.bd3-xiaodu-home:before {\n  content: \"\\f354\";\n}\n.bd3-xigua:before {\n  content: \"\\f355\";\n}\n.bd3-xingfuli:before {\n  content: \"\\f356\";\n}\n.bd3-xingtu:before {\n  content: \"\\f357\";\n}\n.bd3-yep:before {\n  content: \"\\f358\";\n}\n.bd3-youtobe:before {\n  content: \"\\f359\";\n}\n.bd3-youtube:before {\n  content: \"\\f35a\";\n}\n.bd3-zero-key:before {\n  content: \"\\f35b\";\n}\n.bd3-zijinyunying:before {\n  content: \"\\f35c\";\n}\n.bd3-zip:before {\n  content: \"\\f35d\";\n}\n.bd3-zoom:before {\n  content: \"\\f35e\";\n}\n.bd3-zoom-in:before {\n  content: \"\\f35f\";\n}\n.bd3-zoom-internal:before {\n  content: \"\\f360\";\n}\n.bd3-zoom-out:before {\n  content: \"\\f361\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/resources/META-INF/resources/bytedance/1.3.0/css/bytedance-iconpack-extrabold.css",
    "content": "/*!\n * Bytedance IconPark v1.3.0\n * @link https://iconpark.oceanengine.com/official\n * License - https://github.com/bytedance/IconPark/blob/master/LICENSE (Apache License 2.0)\n */\n@font-face {\n  font-family: 'Bytedance-IconPack-ExtraBold';\n  src:  url('../fonts/Bytedance-IconPack-ExtraBold.eot?pcl4bd');\n  src:  url('../fonts/Bytedance-IconPack-ExtraBold.eot?pcl4bd#iefix') format('embedded-opentype'),\n    url('../fonts/Bytedance-IconPack-ExtraBold.ttf?pcl4bd') format('truetype'),\n    url('../fonts/Bytedance-IconPack-ExtraBold.woff?pcl4bd') format('woff'),\n    url('../fonts/Bytedance-IconPack-ExtraBold.svg?pcl4bd#Bytedance-IconPack-ExtraBold') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"bd4\"], [class*=\" bd4\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Bytedance-IconPack-ExtraBold' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.bd4-abdominal:before {\n  content: \"\\e900\";\n}\n.bd4-abnormal:before {\n  content: \"\\e901\";\n}\n.bd4-a-cane:before {\n  content: \"\\e902\";\n}\n.bd4-acceleration:before {\n  content: \"\\e903\";\n}\n.bd4-accept-email:before {\n  content: \"\\e904\";\n}\n.bd4-acoustic:before {\n  content: \"\\e905\";\n}\n.bd4-activity-source:before {\n  content: \"\\e906\";\n}\n.bd4-ad:before {\n  content: \"\\e907\";\n}\n.bd4-add:before {\n  content: \"\\e908\";\n}\n.bd4-add-computer:before {\n  content: \"\\e909\";\n}\n.bd4-add-four:before {\n  content: \"\\e90a\";\n}\n.bd4-add-item:before {\n  content: \"\\e90b\";\n}\n.bd4-add-mode:before {\n  content: \"\\e90c\";\n}\n.bd4-add-music:before {\n  content: \"\\e90d\";\n}\n.bd4-add-one:before {\n  content: \"\\e90e\";\n}\n.bd4-add-pic:before {\n  content: \"\\e90f\";\n}\n.bd4-add-picture:before {\n  content: \"\\e910\";\n}\n.bd4-add-print:before {\n  content: \"\\e911\";\n}\n.bd4-address-book:before {\n  content: \"\\e912\";\n}\n.bd4-add-subset:before {\n  content: \"\\e913\";\n}\n.bd4-add-subtract:before {\n  content: \"\\e914\";\n}\n.bd4-add-text:before {\n  content: \"\\e915\";\n}\n.bd4-add-text-two:before {\n  content: \"\\e916\";\n}\n.bd4-add-three:before {\n  content: \"\\e917\";\n}\n.bd4-add-two:before {\n  content: \"\\e918\";\n}\n.bd4-add-user:before {\n  content: \"\\e919\";\n}\n.bd4-add-web:before {\n  content: \"\\e91a\";\n}\n.bd4-adjacent-item:before {\n  content: \"\\e91b\";\n}\n.bd4-adjustment:before {\n  content: \"\\e91c\";\n}\n.bd4-adobe-illustrate:before {\n  content: \"\\e91d\";\n}\n.bd4-adobe-indesign:before {\n  content: \"\\e91e\";\n}\n.bd4-adobe-lightroom:before {\n  content: \"\\e91f\";\n}\n.bd4-adobe-photoshop:before {\n  content: \"\\e920\";\n}\n.bd4-ad-product:before {\n  content: \"\\e921\";\n}\n.bd4-afferent:before {\n  content: \"\\e922\";\n}\n.bd4-afferent-four:before {\n  content: \"\\e923\";\n}\n.bd4-afferent-three:before {\n  content: \"\\e924\";\n}\n.bd4-afferent-two:before {\n  content: \"\\e925\";\n}\n.bd4-afro-pick:before {\n  content: \"\\e926\";\n}\n.bd4-agreement:before {\n  content: \"\\e927\";\n}\n.bd4-aiming:before {\n  content: \"\\e928\";\n}\n.bd4-air-bike:before {\n  content: \"\\e929\";\n}\n.bd4-air-conditioning:before {\n  content: \"\\e92a\";\n}\n.bd4-airplane:before {\n  content: \"\\e92b\";\n}\n.bd4-airplane-window:before {\n  content: \"\\e92c\";\n}\n.bd4-airplane-window-one:before {\n  content: \"\\e92d\";\n}\n.bd4-airplay:before {\n  content: \"\\e92e\";\n}\n.bd4-airpods:before {\n  content: \"\\e92f\";\n}\n.bd4-alarm:before {\n  content: \"\\e930\";\n}\n.bd4-alarm-clock:before {\n  content: \"\\e931\";\n}\n.bd4-align-bottom:before {\n  content: \"\\e932\";\n}\n.bd4-align-bottom-two:before {\n  content: \"\\e933\";\n}\n.bd4-align-horizontal-center-two:before {\n  content: \"\\e934\";\n}\n.bd4-align-horizontally:before {\n  content: \"\\e935\";\n}\n.bd4-align-left:before {\n  content: \"\\e936\";\n}\n.bd4-align-left-one:before {\n  content: \"\\e937\";\n}\n.bd4-align-left-two:before {\n  content: \"\\e938\";\n}\n.bd4-alignment-bottom-center:before {\n  content: \"\\e939\";\n}\n.bd4-alignment-bottom-left:before {\n  content: \"\\e93a\";\n}\n.bd4-alignment-bottom-right:before {\n  content: \"\\e93b\";\n}\n.bd4-alignment-horizontal-bottom:before {\n  content: \"\\e93c\";\n}\n.bd4-alignment-horizontal-center:before {\n  content: \"\\e93d\";\n}\n.bd4-alignment-horizontal-top:before {\n  content: \"\\e93e\";\n}\n.bd4-alignment-left-bottom:before {\n  content: \"\\e93f\";\n}\n.bd4-alignment-left-center:before {\n  content: \"\\e940\";\n}\n.bd4-alignment-left-top:before {\n  content: \"\\e941\";\n}\n.bd4-alignment-right-bottom:before {\n  content: \"\\e942\";\n}\n.bd4-alignment-right-center:before {\n  content: \"\\e943\";\n}\n.bd4-alignment-right-top:before {\n  content: \"\\e944\";\n}\n.bd4-alignment-top-center:before {\n  content: \"\\e945\";\n}\n.bd4-alignment-top-left:before {\n  content: \"\\e946\";\n}\n.bd4-alignment-top-right:before {\n  content: \"\\e947\";\n}\n.bd4-alignment-vertical-center:before {\n  content: \"\\e948\";\n}\n.bd4-alignment-vertical-left:before {\n  content: \"\\e949\";\n}\n.bd4-alignment-vertical-right:before {\n  content: \"\\e94a\";\n}\n.bd4-align-right:before {\n  content: \"\\e94b\";\n}\n.bd4-align-right-one:before {\n  content: \"\\e94c\";\n}\n.bd4-align-right-two:before {\n  content: \"\\e94d\";\n}\n.bd4-align-text-both:before {\n  content: \"\\e94e\";\n}\n.bd4-align-text-both-one:before {\n  content: \"\\e94f\";\n}\n.bd4-align-text-bottom:before {\n  content: \"\\e950\";\n}\n.bd4-align-text-bottom-one:before {\n  content: \"\\e951\";\n}\n.bd4-align-text-center:before {\n  content: \"\\e952\";\n}\n.bd4-align-text-center-one:before {\n  content: \"\\e953\";\n}\n.bd4-align-text-left:before {\n  content: \"\\e954\";\n}\n.bd4-align-text-left-one:before {\n  content: \"\\e955\";\n}\n.bd4-align-text-middle:before {\n  content: \"\\e956\";\n}\n.bd4-align-text-middle-one:before {\n  content: \"\\e957\";\n}\n.bd4-align-text-right:before {\n  content: \"\\e958\";\n}\n.bd4-align-text-right-one:before {\n  content: \"\\e959\";\n}\n.bd4-align-text-top:before {\n  content: \"\\e95a\";\n}\n.bd4-align-text-top-one:before {\n  content: \"\\e95b\";\n}\n.bd4-align-top:before {\n  content: \"\\e95c\";\n}\n.bd4-align-top-two:before {\n  content: \"\\e95d\";\n}\n.bd4-align-vertical-center-two:before {\n  content: \"\\e95e\";\n}\n.bd4-align-vertically:before {\n  content: \"\\e95f\";\n}\n.bd4-alipay:before {\n  content: \"\\e960\";\n}\n.bd4-all-application:before {\n  content: \"\\e961\";\n}\n.bd4-alphabetical-sorting:before {\n  content: \"\\e962\";\n}\n.bd4-alphabetical-sorting-two:before {\n  content: \"\\e963\";\n}\n.bd4-ambulance:before {\n  content: \"\\e964\";\n}\n.bd4-analysis:before {\n  content: \"\\e965\";\n}\n.bd4-anchor:before {\n  content: \"\\e966\";\n}\n.bd4-anchor-one:before {\n  content: \"\\e967\";\n}\n.bd4-anchor-round:before {\n  content: \"\\e968\";\n}\n.bd4-anchor-squre:before {\n  content: \"\\e969\";\n}\n.bd4-anchor-two:before {\n  content: \"\\e96a\";\n}\n.bd4-android:before {\n  content: \"\\e96b\";\n}\n.bd4-angry-face:before {\n  content: \"\\e96c\";\n}\n.bd4-anguished-face:before {\n  content: \"\\e96d\";\n}\n.bd4-announcement:before {\n  content: \"\\e96e\";\n}\n.bd4-anti-corrosion:before {\n  content: \"\\e96f\";\n}\n.bd4-aperture-priority:before {\n  content: \"\\e970\";\n}\n.bd4-api:before {\n  content: \"\\e971\";\n}\n.bd4-api-app:before {\n  content: \"\\e972\";\n}\n.bd4-apple:before {\n  content: \"\\e973\";\n}\n.bd4-apple-one:before {\n  content: \"\\e974\";\n}\n.bd4-applet-closed:before {\n  content: \"\\e975\";\n}\n.bd4-application:before {\n  content: \"\\e976\";\n}\n.bd4-application-effect:before {\n  content: \"\\e977\";\n}\n.bd4-application-menu:before {\n  content: \"\\e978\";\n}\n.bd4-application-one:before {\n  content: \"\\e979\";\n}\n.bd4-application-two:before {\n  content: \"\\e97a\";\n}\n.bd4-appointment:before {\n  content: \"\\e97b\";\n}\n.bd4-app-store:before {\n  content: \"\\e97c\";\n}\n.bd4-app-switch:before {\n  content: \"\\e97d\";\n}\n.bd4-aquarius:before {\n  content: \"\\e97e\";\n}\n.bd4-arc-de-triomphe:before {\n  content: \"\\e97f\";\n}\n.bd4-archers-bow:before {\n  content: \"\\e980\";\n}\n.bd4-archery:before {\n  content: \"\\e981\";\n}\n.bd4-area-map:before {\n  content: \"\\e982\";\n}\n.bd4-arena:before {\n  content: \"\\e983\";\n}\n.bd4-aries:before {\n  content: \"\\e984\";\n}\n.bd4-arithmetic:before {\n  content: \"\\e985\";\n}\n.bd4-arithmetic-buttons:before {\n  content: \"\\e986\";\n}\n.bd4-arithmetic-one:before {\n  content: \"\\e987\";\n}\n.bd4-arrow-circle-down:before {\n  content: \"\\e988\";\n}\n.bd4-arrow-circle-left:before {\n  content: \"\\e989\";\n}\n.bd4-arrow-circle-right:before {\n  content: \"\\e98a\";\n}\n.bd4-arrow-circle-up:before {\n  content: \"\\e98b\";\n}\n.bd4-arrow-down:before {\n  content: \"\\e98c\";\n}\n.bd4-arrow-keys:before {\n  content: \"\\e98d\";\n}\n.bd4-arrow-left:before {\n  content: \"\\e98e\";\n}\n.bd4-arrow-left-down:before {\n  content: \"\\e98f\";\n}\n.bd4-arrow-left-up:before {\n  content: \"\\e990\";\n}\n.bd4-arrow-right:before {\n  content: \"\\e991\";\n}\n.bd4-arrow-right-down:before {\n  content: \"\\e992\";\n}\n.bd4-arrow-right-up:before {\n  content: \"\\e993\";\n}\n.bd4-arrow-up:before {\n  content: \"\\e994\";\n}\n.bd4-assembly-line:before {\n  content: \"\\e995\";\n}\n.bd4-association:before {\n  content: \"\\e996\";\n}\n.bd4-asterisk:before {\n  content: \"\\e997\";\n}\n.bd4-asterisk-key:before {\n  content: \"\\e998\";\n}\n.bd4-astonished-face:before {\n  content: \"\\e999\";\n}\n.bd4-at-sign:before {\n  content: \"\\e99a\";\n}\n.bd4-attention:before {\n  content: \"\\e99b\";\n}\n.bd4-audio-file:before {\n  content: \"\\e99c\";\n}\n.bd4-audit:before {\n  content: \"\\e99d\";\n}\n.bd4-auto-focus:before {\n  content: \"\\e99e\";\n}\n.bd4-auto-height-one:before {\n  content: \"\\e99f\";\n}\n.bd4-auto-line-height:before {\n  content: \"\\e9a0\";\n}\n.bd4-auto-line-width:before {\n  content: \"\\e9a1\";\n}\n.bd4-auto-width:before {\n  content: \"\\e9a2\";\n}\n.bd4-auto-width-one:before {\n  content: \"\\e9a3\";\n}\n.bd4-avatar:before {\n  content: \"\\e9a4\";\n}\n.bd4-average:before {\n  content: \"\\e9a5\";\n}\n.bd4-aviation:before {\n  content: \"\\e9a6\";\n}\n.bd4-avocado:before {\n  content: \"\\e9a7\";\n}\n.bd4-avocado-one:before {\n  content: \"\\e9a8\";\n}\n.bd4-baby:before {\n  content: \"\\e9a9\";\n}\n.bd4-baby-app:before {\n  content: \"\\e9aa\";\n}\n.bd4-baby-bottle:before {\n  content: \"\\e9ab\";\n}\n.bd4-baby-car-seat:before {\n  content: \"\\e9ac\";\n}\n.bd4-baby-feet:before {\n  content: \"\\e9ad\";\n}\n.bd4-baby-meal:before {\n  content: \"\\e9ae\";\n}\n.bd4-baby-mobile:before {\n  content: \"\\e9af\";\n}\n.bd4-baby-one:before {\n  content: \"\\e9b0\";\n}\n.bd4-baby-pants:before {\n  content: \"\\e9b1\";\n}\n.bd4-baby-sling:before {\n  content: \"\\e9b2\";\n}\n.bd4-baby-taste:before {\n  content: \"\\e9b3\";\n}\n.bd4-bachelor-cap:before {\n  content: \"\\e9b4\";\n}\n.bd4-bachelor-cap-one:before {\n  content: \"\\e9b5\";\n}\n.bd4-bachelor-cap-two:before {\n  content: \"\\e9b6\";\n}\n.bd4-back:before {\n  content: \"\\e9b7\";\n}\n.bd4-background-color:before {\n  content: \"\\e9b8\";\n}\n.bd4-back-one:before {\n  content: \"\\e9b9\";\n}\n.bd4-backpack:before {\n  content: \"\\e9ba\";\n}\n.bd4-bad:before {\n  content: \"\\e9bb\";\n}\n.bd4-badge:before {\n  content: \"\\e9bc\";\n}\n.bd4-badge-two:before {\n  content: \"\\e9bd\";\n}\n.bd4-badminton:before {\n  content: \"\\e9be\";\n}\n.bd4-bad-one:before {\n  content: \"\\e9bf\";\n}\n.bd4-bad-two:before {\n  content: \"\\e9c0\";\n}\n.bd4-baggage-delay:before {\n  content: \"\\e9c1\";\n}\n.bd4-balance:before {\n  content: \"\\e9c2\";\n}\n.bd4-balance-one:before {\n  content: \"\\e9c3\";\n}\n.bd4-balance-two:before {\n  content: \"\\e9c4\";\n}\n.bd4-banana:before {\n  content: \"\\e9c5\";\n}\n.bd4-bank:before {\n  content: \"\\e9c6\";\n}\n.bd4-bank-card:before {\n  content: \"\\e9c7\";\n}\n.bd4-bank-card-one:before {\n  content: \"\\e9c8\";\n}\n.bd4-bank-card-two:before {\n  content: \"\\e9c9\";\n}\n.bd4-bank-transfer:before {\n  content: \"\\e9ca\";\n}\n.bd4-baokemeng:before {\n  content: \"\\e9cb\";\n}\n.bd4-barbecue:before {\n  content: \"\\e9cc\";\n}\n.bd4-barber-brush:before {\n  content: \"\\e9cd\";\n}\n.bd4-barber-clippers:before {\n  content: \"\\e9ce\";\n}\n.bd4-bar-code:before {\n  content: \"\\e9cf\";\n}\n.bd4-baseball:before {\n  content: \"\\e9d0\";\n}\n.bd4-baseball-bat:before {\n  content: \"\\e9d1\";\n}\n.bd4-baseball-cap:before {\n  content: \"\\e9d2\";\n}\n.bd4-basketball:before {\n  content: \"\\e9d3\";\n}\n.bd4-basketball-clothes:before {\n  content: \"\\e9d4\";\n}\n.bd4-basketball-one:before {\n  content: \"\\e9d5\";\n}\n.bd4-basketball-stand:before {\n  content: \"\\e9d6\";\n}\n.bd4-bat:before {\n  content: \"\\e9d7\";\n}\n.bd4-battery-charge:before {\n  content: \"\\e9d8\";\n}\n.bd4-battery-empty:before {\n  content: \"\\e9d9\";\n}\n.bd4-battery-failure:before {\n  content: \"\\e9da\";\n}\n.bd4-battery-full:before {\n  content: \"\\e9db\";\n}\n.bd4-battery-storage:before {\n  content: \"\\e9dc\";\n}\n.bd4-battery-tips:before {\n  content: \"\\e9dd\";\n}\n.bd4-battery-working:before {\n  content: \"\\e9de\";\n}\n.bd4-battery-working-one:before {\n  content: \"\\e9df\";\n}\n.bd4-beach-umbrella:before {\n  content: \"\\e9e0\";\n}\n.bd4-bear:before {\n  content: \"\\e9e1\";\n}\n.bd4-beauty:before {\n  content: \"\\e9e2\";\n}\n.bd4-beauty-instrument:before {\n  content: \"\\e9e3\";\n}\n.bd4-bedside:before {\n  content: \"\\e9e4\";\n}\n.bd4-bedside-two:before {\n  content: \"\\e9e5\";\n}\n.bd4-bee:before {\n  content: \"\\e9e6\";\n}\n.bd4-beer:before {\n  content: \"\\e9e7\";\n}\n.bd4-beer-mug:before {\n  content: \"\\e9e8\";\n}\n.bd4-behance:before {\n  content: \"\\e9e9\";\n}\n.bd4-bell-ring:before {\n  content: \"\\e9ea\";\n}\n.bd4-belt:before {\n  content: \"\\e9eb\";\n}\n.bd4-benz:before {\n  content: \"\\e9ec\";\n}\n.bd4-bezier-curve:before {\n  content: \"\\e9ed\";\n}\n.bd4-bib:before {\n  content: \"\\e9ee\";\n}\n.bd4-big-clock:before {\n  content: \"\\e9ef\";\n}\n.bd4-big-x:before {\n  content: \"\\e9f0\";\n}\n.bd4-bike:before {\n  content: \"\\e9f1\";\n}\n.bd4-bill:before {\n  content: \"\\e9f2\";\n}\n.bd4-bird:before {\n  content: \"\\e9f3\";\n}\n.bd4-birthday-cake:before {\n  content: \"\\e9f4\";\n}\n.bd4-bitcoin:before {\n  content: \"\\e9f5\";\n}\n.bd4-blackboard:before {\n  content: \"\\e9f6\";\n}\n.bd4-black-eight:before {\n  content: \"\\e9f7\";\n}\n.bd4-blade:before {\n  content: \"\\e9f8\";\n}\n.bd4-bless:before {\n  content: \"\\e9f9\";\n}\n.bd4-block:before {\n  content: \"\\e9fa\";\n}\n.bd4-blockchain:before {\n  content: \"\\e9fb\";\n}\n.bd4-block-eight:before {\n  content: \"\\e9fc\";\n}\n.bd4-block-five:before {\n  content: \"\\e9fd\";\n}\n.bd4-block-four:before {\n  content: \"\\e9fe\";\n}\n.bd4-block-nine:before {\n  content: \"\\e9ff\";\n}\n.bd4-block-one:before {\n  content: \"\\ea00\";\n}\n.bd4-blocks-and-arrows:before {\n  content: \"\\ea01\";\n}\n.bd4-block-seven:before {\n  content: \"\\ea02\";\n}\n.bd4-block-six:before {\n  content: \"\\ea03\";\n}\n.bd4-block-ten:before {\n  content: \"\\ea04\";\n}\n.bd4-block-three:before {\n  content: \"\\ea05\";\n}\n.bd4-block-two:before {\n  content: \"\\ea06\";\n}\n.bd4-bloom:before {\n  content: \"\\ea07\";\n}\n.bd4-blossom:before {\n  content: \"\\ea08\";\n}\n.bd4-bluetooth:before {\n  content: \"\\ea09\";\n}\n.bd4-boiler:before {\n  content: \"\\ea0a\";\n}\n.bd4-bolt-one:before {\n  content: \"\\ea0b\";\n}\n.bd4-bone:before {\n  content: \"\\ea0c\";\n}\n.bd4-book:before {\n  content: \"\\ea0d\";\n}\n.bd4-bookmark:before {\n  content: \"\\ea0e\";\n}\n.bd4-bookmark-one:before {\n  content: \"\\ea0f\";\n}\n.bd4-bookmark-three:before {\n  content: \"\\ea10\";\n}\n.bd4-book-one:before {\n  content: \"\\ea11\";\n}\n.bd4-book-open:before {\n  content: \"\\ea12\";\n}\n.bd4-bookshelf:before {\n  content: \"\\ea13\";\n}\n.bd4-booster-car-seat:before {\n  content: \"\\ea14\";\n}\n.bd4-booth:before {\n  content: \"\\ea15\";\n}\n.bd4-boots:before {\n  content: \"\\ea16\";\n}\n.bd4-bottle:before {\n  content: \"\\ea17\";\n}\n.bd4-bottle-one:before {\n  content: \"\\ea18\";\n}\n.bd4-bottle-three:before {\n  content: \"\\ea19\";\n}\n.bd4-bottle-two:before {\n  content: \"\\ea1a\";\n}\n.bd4-bottom-bar:before {\n  content: \"\\ea1b\";\n}\n.bd4-bottom-bar-one:before {\n  content: \"\\ea1c\";\n}\n.bd4-bow:before {\n  content: \"\\ea1d\";\n}\n.bd4-bowl:before {\n  content: \"\\ea1e\";\n}\n.bd4-bowling:before {\n  content: \"\\ea1f\";\n}\n.bd4-bowl-one:before {\n  content: \"\\ea20\";\n}\n.bd4-box:before {\n  content: \"\\ea21\";\n}\n.bd4-boxing:before {\n  content: \"\\ea22\";\n}\n.bd4-boxing-one:before {\n  content: \"\\ea23\";\n}\n.bd4-boy:before {\n  content: \"\\ea24\";\n}\n.bd4-boy-one:before {\n  content: \"\\ea25\";\n}\n.bd4-boy-stroller:before {\n  content: \"\\ea26\";\n}\n.bd4-boy-two:before {\n  content: \"\\ea27\";\n}\n.bd4-brain:before {\n  content: \"\\ea28\";\n}\n.bd4-brake-pads:before {\n  content: \"\\ea29\";\n}\n.bd4-branch:before {\n  content: \"\\ea2a\";\n}\n.bd4-branch-one:before {\n  content: \"\\ea2b\";\n}\n.bd4-branch-two:before {\n  content: \"\\ea2c\";\n}\n.bd4-brdige-three:before {\n  content: \"\\ea2d\";\n}\n.bd4-bread:before {\n  content: \"\\ea2e\";\n}\n.bd4-bread-machine:before {\n  content: \"\\ea2f\";\n}\n.bd4-bread-one:before {\n  content: \"\\ea30\";\n}\n.bd4-breast-pump:before {\n  content: \"\\ea31\";\n}\n.bd4-bridge-one:before {\n  content: \"\\ea32\";\n}\n.bd4-bridge-two:before {\n  content: \"\\ea33\";\n}\n.bd4-briefcase:before {\n  content: \"\\ea34\";\n}\n.bd4-brightness:before {\n  content: \"\\ea35\";\n}\n.bd4-bring-forward:before {\n  content: \"\\ea36\";\n}\n.bd4-bring-to-front:before {\n  content: \"\\ea37\";\n}\n.bd4-bring-to-front-one:before {\n  content: \"\\ea38\";\n}\n.bd4-broadcast:before {\n  content: \"\\ea39\";\n}\n.bd4-broadcast-one:before {\n  content: \"\\ea3a\";\n}\n.bd4-broadcast-radio:before {\n  content: \"\\ea3b\";\n}\n.bd4-browser:before {\n  content: \"\\ea3c\";\n}\n.bd4-browser-chrome:before {\n  content: \"\\ea3d\";\n}\n.bd4-browser-safari:before {\n  content: \"\\ea3e\";\n}\n.bd4-bubble-chart:before {\n  content: \"\\ea3f\";\n}\n.bd4-bug:before {\n  content: \"\\ea40\";\n}\n.bd4-building-four:before {\n  content: \"\\ea41\";\n}\n.bd4-building-one:before {\n  content: \"\\ea42\";\n}\n.bd4-building-three:before {\n  content: \"\\ea43\";\n}\n.bd4-building-two:before {\n  content: \"\\ea44\";\n}\n.bd4-bullet-map:before {\n  content: \"\\ea45\";\n}\n.bd4-bus:before {\n  content: \"\\ea46\";\n}\n.bd4-bus-one:before {\n  content: \"\\ea47\";\n}\n.bd4-bus-two:before {\n  content: \"\\ea48\";\n}\n.bd4-butterfly:before {\n  content: \"\\ea49\";\n}\n.bd4-buy:before {\n  content: \"\\ea4a\";\n}\n.bd4-bydesign:before {\n  content: \"\\ea4b\";\n}\n.bd4-bye:before {\n  content: \"\\ea4c\";\n}\n.bd4-bytedance:before {\n  content: \"\\ea4d\";\n}\n.bd4-bytedance-applets:before {\n  content: \"\\ea4e\";\n}\n.bd4-bytedance-mini-app:before {\n  content: \"\\ea4f\";\n}\n.bd4-cable-car:before {\n  content: \"\\ea50\";\n}\n.bd4-cactus:before {\n  content: \"\\ea51\";\n}\n.bd4-cake:before {\n  content: \"\\ea52\";\n}\n.bd4-cake-five:before {\n  content: \"\\ea53\";\n}\n.bd4-cake-four:before {\n  content: \"\\ea54\";\n}\n.bd4-cake-one:before {\n  content: \"\\ea55\";\n}\n.bd4-cake-three:before {\n  content: \"\\ea56\";\n}\n.bd4-cake-two:before {\n  content: \"\\ea57\";\n}\n.bd4-calculator:before {\n  content: \"\\ea58\";\n}\n.bd4-calculator-one:before {\n  content: \"\\ea59\";\n}\n.bd4-calendar:before {\n  content: \"\\ea5a\";\n}\n.bd4-calendar-dot:before {\n  content: \"\\ea5b\";\n}\n.bd4-calendar-thirty:before {\n  content: \"\\ea5c\";\n}\n.bd4-calendar-thirty-two:before {\n  content: \"\\ea5d\";\n}\n.bd4-calendar-three:before {\n  content: \"\\ea5e\";\n}\n.bd4-camera:before {\n  content: \"\\ea5f\";\n}\n.bd4-camera-five:before {\n  content: \"\\ea60\";\n}\n.bd4-camera-four:before {\n  content: \"\\ea61\";\n}\n.bd4-camera-one:before {\n  content: \"\\ea62\";\n}\n.bd4-camera-three:before {\n  content: \"\\ea63\";\n}\n.bd4-camera-two:before {\n  content: \"\\ea64\";\n}\n.bd4-camp:before {\n  content: \"\\ea65\";\n}\n.bd4-cancer:before {\n  content: \"\\ea66\";\n}\n.bd4-candy:before {\n  content: \"\\ea67\";\n}\n.bd4-canned-fruit:before {\n  content: \"\\ea68\";\n}\n.bd4-capricornus:before {\n  content: \"\\ea69\";\n}\n.bd4-car:before {\n  content: \"\\ea6a\";\n}\n.bd4-car-battery:before {\n  content: \"\\ea6b\";\n}\n.bd4-cardioelectric:before {\n  content: \"\\ea6c\";\n}\n.bd4-card-two:before {\n  content: \"\\ea6d\";\n}\n.bd4-carousel:before {\n  content: \"\\ea6e\";\n}\n.bd4-carousel-video:before {\n  content: \"\\ea6f\";\n}\n.bd4-carrot:before {\n  content: \"\\ea70\";\n}\n.bd4-castle:before {\n  content: \"\\ea71\";\n}\n.bd4-cast-screen:before {\n  content: \"\\ea72\";\n}\n.bd4-cat:before {\n  content: \"\\ea73\";\n}\n.bd4-category-management:before {\n  content: \"\\ea74\";\n}\n.bd4-cattle:before {\n  content: \"\\ea75\";\n}\n.bd4-cattle-zodiac:before {\n  content: \"\\ea76\";\n}\n.bd4-caution:before {\n  content: \"\\ea77\";\n}\n.bd4-cc:before {\n  content: \"\\ea78\";\n}\n.bd4-cd:before {\n  content: \"\\ea79\";\n}\n.bd4-cell:before {\n  content: \"\\ea7a\";\n}\n.bd4-ce-marking:before {\n  content: \"\\ea7b\";\n}\n.bd4-center-alignment:before {\n  content: \"\\ea7c\";\n}\n.bd4-certificate:before {\n  content: \"\\ea7d\";\n}\n.bd4-chafing-dish:before {\n  content: \"\\ea7e\";\n}\n.bd4-chafing-dish-one:before {\n  content: \"\\ea7f\";\n}\n.bd4-chair:before {\n  content: \"\\ea80\";\n}\n.bd4-chair-one:before {\n  content: \"\\ea81\";\n}\n.bd4-change:before {\n  content: \"\\ea82\";\n}\n.bd4-change-date-sort:before {\n  content: \"\\ea83\";\n}\n.bd4-charging-treasure:before {\n  content: \"\\ea84\";\n}\n.bd4-chart-graph:before {\n  content: \"\\ea85\";\n}\n.bd4-chart-histogram:before {\n  content: \"\\ea86\";\n}\n.bd4-chart-histogram-one:before {\n  content: \"\\ea87\";\n}\n.bd4-chart-histogram-two:before {\n  content: \"\\ea88\";\n}\n.bd4-chart-line:before {\n  content: \"\\ea89\";\n}\n.bd4-chart-line-area:before {\n  content: \"\\ea8a\";\n}\n.bd4-chart-pie:before {\n  content: \"\\ea8b\";\n}\n.bd4-chart-pie-one:before {\n  content: \"\\ea8c\";\n}\n.bd4-chart-proportion:before {\n  content: \"\\ea8d\";\n}\n.bd4-chart-ring:before {\n  content: \"\\ea8e\";\n}\n.bd4-chart-scatter:before {\n  content: \"\\ea8f\";\n}\n.bd4-chart-stock:before {\n  content: \"\\ea90\";\n}\n.bd4-check:before {\n  content: \"\\ea91\";\n}\n.bd4-checkbox:before {\n  content: \"\\ea92\";\n}\n.bd4-check-correct:before {\n  content: \"\\ea93\";\n}\n.bd4-checkerboard:before {\n  content: \"\\ea94\";\n}\n.bd4-check-in:before {\n  content: \"\\ea95\";\n}\n.bd4-checklist:before {\n  content: \"\\ea96\";\n}\n.bd4-check-one:before {\n  content: \"\\ea97\";\n}\n.bd4-check-small:before {\n  content: \"\\ea98\";\n}\n.bd4-cheese:before {\n  content: \"\\ea99\";\n}\n.bd4-chef-hat:before {\n  content: \"\\ea9a\";\n}\n.bd4-chef-hat-one:before {\n  content: \"\\ea9b\";\n}\n.bd4-cherry:before {\n  content: \"\\ea9c\";\n}\n.bd4-chess:before {\n  content: \"\\ea9d\";\n}\n.bd4-chess-one:before {\n  content: \"\\ea9e\";\n}\n.bd4-chest:before {\n  content: \"\\ea9f\";\n}\n.bd4-chicken:before {\n  content: \"\\eaa0\";\n}\n.bd4-chicken-leg:before {\n  content: \"\\eaa1\";\n}\n.bd4-chicken-zodiac:before {\n  content: \"\\eaa2\";\n}\n.bd4-children-cap:before {\n  content: \"\\eaa3\";\n}\n.bd4-children-pyramid:before {\n  content: \"\\eaa4\";\n}\n.bd4-child-with-pacifier:before {\n  content: \"\\eaa5\";\n}\n.bd4-chili:before {\n  content: \"\\eaa6\";\n}\n.bd4-chimney:before {\n  content: \"\\eaa7\";\n}\n.bd4-chinese:before {\n  content: \"\\eaa8\";\n}\n.bd4-chinese-one:before {\n  content: \"\\eaa9\";\n}\n.bd4-chinese-pavilion:before {\n  content: \"\\eaaa\";\n}\n.bd4-chip:before {\n  content: \"\\eaab\";\n}\n.bd4-chopping-board:before {\n  content: \"\\eaac\";\n}\n.bd4-chopsticks-fork:before {\n  content: \"\\eaad\";\n}\n.bd4-christmas-tree:before {\n  content: \"\\eaae\";\n}\n.bd4-christmas-tree-one:before {\n  content: \"\\eaaf\";\n}\n.bd4-church-one:before {\n  content: \"\\eab0\";\n}\n.bd4-church-two:before {\n  content: \"\\eab1\";\n}\n.bd4-circle-double-down:before {\n  content: \"\\eab2\";\n}\n.bd4-circle-double-left:before {\n  content: \"\\eab3\";\n}\n.bd4-circle-double-right:before {\n  content: \"\\eab4\";\n}\n.bd4-circle-double-up:before {\n  content: \"\\eab5\";\n}\n.bd4-circle-five-line:before {\n  content: \"\\eab6\";\n}\n.bd4-circle-four:before {\n  content: \"\\eab7\";\n}\n.bd4-circle-four-line:before {\n  content: \"\\eab8\";\n}\n.bd4-circle-house:before {\n  content: \"\\eab9\";\n}\n.bd4-circle-left-down:before {\n  content: \"\\eaba\";\n}\n.bd4-circle-left-up:before {\n  content: \"\\eabb\";\n}\n.bd4-circle-right-down:before {\n  content: \"\\eabc\";\n}\n.bd4-circle-right-up:before {\n  content: \"\\eabd\";\n}\n.bd4-circles-and-triangles:before {\n  content: \"\\eabe\";\n}\n.bd4-circles-seven:before {\n  content: \"\\eabf\";\n}\n.bd4-circle-three:before {\n  content: \"\\eac0\";\n}\n.bd4-circle-two-line:before {\n  content: \"\\eac1\";\n}\n.bd4-circular-connection:before {\n  content: \"\\eac2\";\n}\n.bd4-circus:before {\n  content: \"\\eac3\";\n}\n.bd4-city:before {\n  content: \"\\eac4\";\n}\n.bd4-city-gate:before {\n  content: \"\\eac5\";\n}\n.bd4-city-one:before {\n  content: \"\\eac6\";\n}\n.bd4-clap:before {\n  content: \"\\eac7\";\n}\n.bd4-classroom:before {\n  content: \"\\eac8\";\n}\n.bd4-clear:before {\n  content: \"\\eac9\";\n}\n.bd4-clear-format:before {\n  content: \"\\eaca\";\n}\n.bd4-click:before {\n  content: \"\\eacb\";\n}\n.bd4-click-tap:before {\n  content: \"\\eacc\";\n}\n.bd4-click-tap-two:before {\n  content: \"\\eacd\";\n}\n.bd4-click-to-fold:before {\n  content: \"\\eace\";\n}\n.bd4-clipboard:before {\n  content: \"\\eacf\";\n}\n.bd4-clock-tower:before {\n  content: \"\\ead0\";\n}\n.bd4-close:before {\n  content: \"\\ead1\";\n}\n.bd4-close-one:before {\n  content: \"\\ead2\";\n}\n.bd4-close-remind:before {\n  content: \"\\ead3\";\n}\n.bd4-close-small:before {\n  content: \"\\ead4\";\n}\n.bd4-close-wifi:before {\n  content: \"\\ead5\";\n}\n.bd4-clothes-briefs:before {\n  content: \"\\ead6\";\n}\n.bd4-clothes-cardigan:before {\n  content: \"\\ead7\";\n}\n.bd4-clothes-crew-neck:before {\n  content: \"\\ead8\";\n}\n.bd4-clothes-diapers:before {\n  content: \"\\ead9\";\n}\n.bd4-clothes-gloves:before {\n  content: \"\\eada\";\n}\n.bd4-clothes-gloves-two:before {\n  content: \"\\eadb\";\n}\n.bd4-clothes-hoodie:before {\n  content: \"\\eadc\";\n}\n.bd4-clothes-pants:before {\n  content: \"\\eadd\";\n}\n.bd4-clothes-pants-short:before {\n  content: \"\\eade\";\n}\n.bd4-clothes-pants-sweat:before {\n  content: \"\\eadf\";\n}\n.bd4-clothes-short-sleeve:before {\n  content: \"\\eae0\";\n}\n.bd4-clothes-skates:before {\n  content: \"\\eae1\";\n}\n.bd4-clothes-suit:before {\n  content: \"\\eae2\";\n}\n.bd4-clothes-sweater:before {\n  content: \"\\eae3\";\n}\n.bd4-clothes-turtleneck:before {\n  content: \"\\eae4\";\n}\n.bd4-clothes-windbreaker:before {\n  content: \"\\eae5\";\n}\n.bd4-cloud-storage:before {\n  content: \"\\eae6\";\n}\n.bd4-cloudy:before {\n  content: \"\\eae7\";\n}\n.bd4-cloudy-night:before {\n  content: \"\\eae8\";\n}\n.bd4-clue:before {\n  content: \"\\eae9\";\n}\n.bd4-coat-hanger:before {\n  content: \"\\eaea\";\n}\n.bd4-cocktail:before {\n  content: \"\\eaeb\";\n}\n.bd4-coconut-tree:before {\n  content: \"\\eaec\";\n}\n.bd4-code:before {\n  content: \"\\eaed\";\n}\n.bd4-code-brackets:before {\n  content: \"\\eaee\";\n}\n.bd4-code-computer:before {\n  content: \"\\eaef\";\n}\n.bd4-code-download:before {\n  content: \"\\eaf0\";\n}\n.bd4-code-laptop:before {\n  content: \"\\eaf1\";\n}\n.bd4-code-one:before {\n  content: \"\\eaf2\";\n}\n.bd4-coffee-machine:before {\n  content: \"\\eaf3\";\n}\n.bd4-cola:before {\n  content: \"\\eaf4\";\n}\n.bd4-collapse-text-input:before {\n  content: \"\\eaf5\";\n}\n.bd4-collect-computer:before {\n  content: \"\\eaf6\";\n}\n.bd4-collection-files:before {\n  content: \"\\eaf7\";\n}\n.bd4-collection-records:before {\n  content: \"\\eaf8\";\n}\n.bd4-collect-laptop:before {\n  content: \"\\eaf9\";\n}\n.bd4-collect-picture:before {\n  content: \"\\eafa\";\n}\n.bd4-color-card:before {\n  content: \"\\eafb\";\n}\n.bd4-color-filter:before {\n  content: \"\\eafc\";\n}\n.bd4-column:before {\n  content: \"\\eafd\";\n}\n.bd4-comb:before {\n  content: \"\\eafe\";\n}\n.bd4-come:before {\n  content: \"\\eaff\";\n}\n.bd4-command:before {\n  content: \"\\eb00\";\n}\n.bd4-comment:before {\n  content: \"\\eb01\";\n}\n.bd4-comment-one:before {\n  content: \"\\eb02\";\n}\n.bd4-comments:before {\n  content: \"\\eb03\";\n}\n.bd4-commodity:before {\n  content: \"\\eb04\";\n}\n.bd4-communication:before {\n  content: \"\\eb05\";\n}\n.bd4-commuter-bag:before {\n  content: \"\\eb06\";\n}\n.bd4-compass:before {\n  content: \"\\eb07\";\n}\n.bd4-compass-one:before {\n  content: \"\\eb08\";\n}\n.bd4-components:before {\n  content: \"\\eb09\";\n}\n.bd4-composition:before {\n  content: \"\\eb0a\";\n}\n.bd4-compression:before {\n  content: \"\\eb0b\";\n}\n.bd4-computer:before {\n  content: \"\\eb0c\";\n}\n.bd4-computer-one:before {\n  content: \"\\eb0d\";\n}\n.bd4-concept-sharing:before {\n  content: \"\\eb0e\";\n}\n.bd4-concern:before {\n  content: \"\\eb0f\";\n}\n.bd4-conditioner:before {\n  content: \"\\eb10\";\n}\n.bd4-cone:before {\n  content: \"\\eb11\";\n}\n.bd4-cones:before {\n  content: \"\\eb12\";\n}\n.bd4-config:before {\n  content: \"\\eb13\";\n}\n.bd4-confounded-face:before {\n  content: \"\\eb14\";\n}\n.bd4-confused-face:before {\n  content: \"\\eb15\";\n}\n.bd4-connect:before {\n  content: \"\\eb16\";\n}\n.bd4-connect-address-one:before {\n  content: \"\\eb17\";\n}\n.bd4-connect-address-two:before {\n  content: \"\\eb18\";\n}\n.bd4-connection:before {\n  content: \"\\eb19\";\n}\n.bd4-connection-arrow:before {\n  content: \"\\eb1a\";\n}\n.bd4-connection-box:before {\n  content: \"\\eb1b\";\n}\n.bd4-connection-point:before {\n  content: \"\\eb1c\";\n}\n.bd4-connection-point-two:before {\n  content: \"\\eb1d\";\n}\n.bd4-consignment:before {\n  content: \"\\eb1e\";\n}\n.bd4-consume:before {\n  content: \"\\eb1f\";\n}\n.bd4-contrast:before {\n  content: \"\\eb20\";\n}\n.bd4-contrast-view:before {\n  content: \"\\eb21\";\n}\n.bd4-contrast-view-circle:before {\n  content: \"\\eb22\";\n}\n.bd4-control:before {\n  content: \"\\eb23\";\n}\n.bd4-converging-gateway:before {\n  content: \"\\eb24\";\n}\n.bd4-cook:before {\n  content: \"\\eb25\";\n}\n.bd4-cooking:before {\n  content: \"\\eb26\";\n}\n.bd4-cooking-pot:before {\n  content: \"\\eb27\";\n}\n.bd4-cool:before {\n  content: \"\\eb28\";\n}\n.bd4-cooperative-handshake:before {\n  content: \"\\eb29\";\n}\n.bd4-coordinate-system:before {\n  content: \"\\eb2a\";\n}\n.bd4-copy:before {\n  content: \"\\eb2b\";\n}\n.bd4-copy-link:before {\n  content: \"\\eb2c\";\n}\n.bd4-copy-one:before {\n  content: \"\\eb2d\";\n}\n.bd4-copyright:before {\n  content: \"\\eb2e\";\n}\n.bd4-corner-down-left:before {\n  content: \"\\eb2f\";\n}\n.bd4-corner-down-right:before {\n  content: \"\\eb30\";\n}\n.bd4-corner-left-down:before {\n  content: \"\\eb31\";\n}\n.bd4-corner-left-up:before {\n  content: \"\\eb32\";\n}\n.bd4-corner-right-down:before {\n  content: \"\\eb33\";\n}\n.bd4-corner-right-up:before {\n  content: \"\\eb34\";\n}\n.bd4-corner-up-left:before {\n  content: \"\\eb35\";\n}\n.bd4-corner-up-right:before {\n  content: \"\\eb36\";\n}\n.bd4-coronavirus:before {\n  content: \"\\eb37\";\n}\n.bd4-correct:before {\n  content: \"\\eb38\";\n}\n.bd4-cosmetic-brush:before {\n  content: \"\\eb39\";\n}\n.bd4-coupon:before {\n  content: \"\\eb3a\";\n}\n.bd4-court:before {\n  content: \"\\eb3b\";\n}\n.bd4-cpu:before {\n  content: \"\\eb3c\";\n}\n.bd4-crab:before {\n  content: \"\\eb3d\";\n}\n.bd4-creation-date-sort:before {\n  content: \"\\eb3e\";\n}\n.bd4-creative:before {\n  content: \"\\eb3f\";\n}\n.bd4-credit:before {\n  content: \"\\eb40\";\n}\n.bd4-crib:before {\n  content: \"\\eb41\";\n}\n.bd4-croissant:before {\n  content: \"\\eb42\";\n}\n.bd4-cross-ring:before {\n  content: \"\\eb43\";\n}\n.bd4-cross-ring-two:before {\n  content: \"\\eb44\";\n}\n.bd4-cross-society:before {\n  content: \"\\eb45\";\n}\n.bd4-crown:before {\n  content: \"\\eb46\";\n}\n.bd4-crown-three:before {\n  content: \"\\eb47\";\n}\n.bd4-crown-two:before {\n  content: \"\\eb48\";\n}\n.bd4-cruise:before {\n  content: \"\\eb49\";\n}\n.bd4-crying-baby:before {\n  content: \"\\eb4a\";\n}\n.bd4-cube:before {\n  content: \"\\eb4b\";\n}\n.bd4-cube-five:before {\n  content: \"\\eb4c\";\n}\n.bd4-cube-four:before {\n  content: \"\\eb4d\";\n}\n.bd4-cube-three:before {\n  content: \"\\eb4e\";\n}\n.bd4-cube-two:before {\n  content: \"\\eb4f\";\n}\n.bd4-cup:before {\n  content: \"\\eb50\";\n}\n.bd4-cup-four:before {\n  content: \"\\eb51\";\n}\n.bd4-cup-one:before {\n  content: \"\\eb52\";\n}\n.bd4-curling:before {\n  content: \"\\eb53\";\n}\n.bd4-currency:before {\n  content: \"\\eb54\";\n}\n.bd4-curve-adjustment:before {\n  content: \"\\eb55\";\n}\n.bd4-customer:before {\n  content: \"\\eb56\";\n}\n.bd4-cutting:before {\n  content: \"\\eb57\";\n}\n.bd4-cutting-one:before {\n  content: \"\\eb58\";\n}\n.bd4-cuvette:before {\n  content: \"\\eb59\";\n}\n.bd4-cycle:before {\n  content: \"\\eb5a\";\n}\n.bd4-cycle-arrow:before {\n  content: \"\\eb5b\";\n}\n.bd4-cycle-movement:before {\n  content: \"\\eb5c\";\n}\n.bd4-cycle-one:before {\n  content: \"\\eb5d\";\n}\n.bd4-cylinder:before {\n  content: \"\\eb5e\";\n}\n.bd4-damage-map:before {\n  content: \"\\eb5f\";\n}\n.bd4-dark-mode:before {\n  content: \"\\eb60\";\n}\n.bd4-dashboard:before {\n  content: \"\\eb61\";\n}\n.bd4-dashboard-car:before {\n  content: \"\\eb62\";\n}\n.bd4-dashboard-one:before {\n  content: \"\\eb63\";\n}\n.bd4-dashboard-two:before {\n  content: \"\\eb64\";\n}\n.bd4-data:before {\n  content: \"\\eb65\";\n}\n.bd4-data-all:before {\n  content: \"\\eb66\";\n}\n.bd4-data-arrival:before {\n  content: \"\\eb67\";\n}\n.bd4-database-alert:before {\n  content: \"\\eb68\";\n}\n.bd4-database-code:before {\n  content: \"\\eb69\";\n}\n.bd4-database-config:before {\n  content: \"\\eb6a\";\n}\n.bd4-database-download:before {\n  content: \"\\eb6b\";\n}\n.bd4-database-enter:before {\n  content: \"\\eb6c\";\n}\n.bd4-database-fail:before {\n  content: \"\\eb6d\";\n}\n.bd4-database-first:before {\n  content: \"\\eb6e\";\n}\n.bd4-database-forbid:before {\n  content: \"\\eb6f\";\n}\n.bd4-database-lock:before {\n  content: \"\\eb70\";\n}\n.bd4-database-network:before {\n  content: \"\\eb71\";\n}\n.bd4-database-network-point:before {\n  content: \"\\eb72\";\n}\n.bd4-database-point:before {\n  content: \"\\eb73\";\n}\n.bd4-database-position:before {\n  content: \"\\eb74\";\n}\n.bd4-database-power:before {\n  content: \"\\eb75\";\n}\n.bd4-database-proportion:before {\n  content: \"\\eb76\";\n}\n.bd4-database-search:before {\n  content: \"\\eb77\";\n}\n.bd4-database-setting:before {\n  content: \"\\eb78\";\n}\n.bd4-database-success:before {\n  content: \"\\eb79\";\n}\n.bd4-database-sync:before {\n  content: \"\\eb7a\";\n}\n.bd4-database-time:before {\n  content: \"\\eb7b\";\n}\n.bd4-data-display:before {\n  content: \"\\eb7c\";\n}\n.bd4-data-file:before {\n  content: \"\\eb7d\";\n}\n.bd4-data-four:before {\n  content: \"\\eb7e\";\n}\n.bd4-data-lock:before {\n  content: \"\\eb7f\";\n}\n.bd4-data-null:before {\n  content: \"\\eb80\";\n}\n.bd4-data-one:before {\n  content: \"\\eb81\";\n}\n.bd4-data-screen:before {\n  content: \"\\eb82\";\n}\n.bd4-data-server:before {\n  content: \"\\eb83\";\n}\n.bd4-data-sheet:before {\n  content: \"\\eb84\";\n}\n.bd4-data-switching:before {\n  content: \"\\eb85\";\n}\n.bd4-data-three:before {\n  content: \"\\eb86\";\n}\n.bd4-data-two:before {\n  content: \"\\eb87\";\n}\n.bd4-data-user:before {\n  content: \"\\eb88\";\n}\n.bd4-date-comes-back:before {\n  content: \"\\eb89\";\n}\n.bd4-deadline-sort:before {\n  content: \"\\eb8a\";\n}\n.bd4-death-star:before {\n  content: \"\\eb8b\";\n}\n.bd4-deeplink:before {\n  content: \"\\eb8c\";\n}\n.bd4-deer:before {\n  content: \"\\eb8d\";\n}\n.bd4-degree-hat:before {\n  content: \"\\eb8e\";\n}\n.bd4-delete:before {\n  content: \"\\eb8f\";\n}\n.bd4-delete-five:before {\n  content: \"\\eb90\";\n}\n.bd4-delete-four:before {\n  content: \"\\eb91\";\n}\n.bd4-delete-key:before {\n  content: \"\\eb92\";\n}\n.bd4-delete-mode:before {\n  content: \"\\eb93\";\n}\n.bd4-delete-one:before {\n  content: \"\\eb94\";\n}\n.bd4-delete-themes:before {\n  content: \"\\eb95\";\n}\n.bd4-delete-three:before {\n  content: \"\\eb96\";\n}\n.bd4-delete-two:before {\n  content: \"\\eb97\";\n}\n.bd4-delivery:before {\n  content: \"\\eb98\";\n}\n.bd4-deposit:before {\n  content: \"\\eb99\";\n}\n.bd4-descend:before {\n  content: \"\\eb9a\";\n}\n.bd4-desk-lamp:before {\n  content: \"\\eb9b\";\n}\n.bd4-desk-lamp-one:before {\n  content: \"\\eb9c\";\n}\n.bd4-detection:before {\n  content: \"\\eb9d\";\n}\n.bd4-devices:before {\n  content: \"\\eb9e\";\n}\n.bd4-diamond:before {\n  content: \"\\eb9f\";\n}\n.bd4-diamond-necklace:before {\n  content: \"\\eba0\";\n}\n.bd4-diamond-one:before {\n  content: \"\\eba1\";\n}\n.bd4-diamond-ring:before {\n  content: \"\\eba2\";\n}\n.bd4-diamonds:before {\n  content: \"\\eba3\";\n}\n.bd4-diamond-three:before {\n  content: \"\\eba4\";\n}\n.bd4-diamond-two:before {\n  content: \"\\eba5\";\n}\n.bd4-dianziqian:before {\n  content: \"\\eba6\";\n}\n.bd4-diapers-one:before {\n  content: \"\\eba7\";\n}\n.bd4-difference-set:before {\n  content: \"\\eba8\";\n}\n.bd4-digital-watches:before {\n  content: \"\\eba9\";\n}\n.bd4-direction:before {\n  content: \"\\ebaa\";\n}\n.bd4-direction-adjustment:before {\n  content: \"\\ebab\";\n}\n.bd4-direction-adjustment-three:before {\n  content: \"\\ebac\";\n}\n.bd4-direction-adjustment-two:before {\n  content: \"\\ebad\";\n}\n.bd4-disabaled-web:before {\n  content: \"\\ebae\";\n}\n.bd4-disabled-computer:before {\n  content: \"\\ebaf\";\n}\n.bd4-disabled-laptop:before {\n  content: \"\\ebb0\";\n}\n.bd4-disabled-picture:before {\n  content: \"\\ebb1\";\n}\n.bd4-disappointed-face:before {\n  content: \"\\ebb2\";\n}\n.bd4-discovery-index:before {\n  content: \"\\ebb3\";\n}\n.bd4-disk:before {\n  content: \"\\ebb4\";\n}\n.bd4-disk-one:before {\n  content: \"\\ebb5\";\n}\n.bd4-disk-two:before {\n  content: \"\\ebb6\";\n}\n.bd4-dislike:before {\n  content: \"\\ebb7\";\n}\n.bd4-dislike-two:before {\n  content: \"\\ebb8\";\n}\n.bd4-display:before {\n  content: \"\\ebb9\";\n}\n.bd4-distortion:before {\n  content: \"\\ebba\";\n}\n.bd4-distraught-face:before {\n  content: \"\\ebbb\";\n}\n.bd4-distribute-horizontally:before {\n  content: \"\\ebbc\";\n}\n.bd4-distribute-horizontal-spacing:before {\n  content: \"\\ebbd\";\n}\n.bd4-distribute-vertically:before {\n  content: \"\\ebbe\";\n}\n.bd4-distribute-vertical-spacing:before {\n  content: \"\\ebbf\";\n}\n.bd4-dividing-line:before {\n  content: \"\\ebc0\";\n}\n.bd4-dividing-line-one:before {\n  content: \"\\ebc1\";\n}\n.bd4-diving:before {\n  content: \"\\ebc2\";\n}\n.bd4-diving-bottle:before {\n  content: \"\\ebc3\";\n}\n.bd4-diving-suit:before {\n  content: \"\\ebc4\";\n}\n.bd4-division:before {\n  content: \"\\ebc5\";\n}\n.bd4-dizzy-face:before {\n  content: \"\\ebc6\";\n}\n.bd4-doc-add:before {\n  content: \"\\ebc7\";\n}\n.bd4-doc-detail:before {\n  content: \"\\ebc8\";\n}\n.bd4-doc-fail:before {\n  content: \"\\ebc9\";\n}\n.bd4-doc-search:before {\n  content: \"\\ebca\";\n}\n.bd4-doc-search-two:before {\n  content: \"\\ebcb\";\n}\n.bd4-doc-success:before {\n  content: \"\\ebcc\";\n}\n.bd4-document-folder:before {\n  content: \"\\ebcd\";\n}\n.bd4-dog:before {\n  content: \"\\ebce\";\n}\n.bd4-dog-zodiac:before {\n  content: \"\\ebcf\";\n}\n.bd4-dollar:before {\n  content: \"\\ebd0\";\n}\n.bd4-dolphin:before {\n  content: \"\\ebd1\";\n}\n.bd4-dome:before {\n  content: \"\\ebd2\";\n}\n.bd4-dome-light:before {\n  content: \"\\ebd3\";\n}\n.bd4-done-all:before {\n  content: \"\\ebd4\";\n}\n.bd4-dongchedi:before {\n  content: \"\\ebd5\";\n}\n.bd4-door-handle:before {\n  content: \"\\ebd6\";\n}\n.bd4-dot:before {\n  content: \"\\ebd7\";\n}\n.bd4-double-bed:before {\n  content: \"\\ebd8\";\n}\n.bd4-double-down:before {\n  content: \"\\ebd9\";\n}\n.bd4-double-left:before {\n  content: \"\\ebda\";\n}\n.bd4-double-right:before {\n  content: \"\\ebdb\";\n}\n.bd4-double-up:before {\n  content: \"\\ebdc\";\n}\n.bd4-doughnut:before {\n  content: \"\\ebdd\";\n}\n.bd4-down:before {\n  content: \"\\ebde\";\n}\n.bd4-down-c:before {\n  content: \"\\ebdf\";\n}\n.bd4-download:before {\n  content: \"\\ebe0\";\n}\n.bd4-download-computer:before {\n  content: \"\\ebe1\";\n}\n.bd4-download-four:before {\n  content: \"\\ebe2\";\n}\n.bd4-download-laptop:before {\n  content: \"\\ebe3\";\n}\n.bd4-download-one:before {\n  content: \"\\ebe4\";\n}\n.bd4-download-three:before {\n  content: \"\\ebe5\";\n}\n.bd4-download-two:before {\n  content: \"\\ebe6\";\n}\n.bd4-download-web:before {\n  content: \"\\ebe7\";\n}\n.bd4-down-one:before {\n  content: \"\\ebe8\";\n}\n.bd4-down-picture:before {\n  content: \"\\ebe9\";\n}\n.bd4-down-small:before {\n  content: \"\\ebea\";\n}\n.bd4-down-square:before {\n  content: \"\\ebeb\";\n}\n.bd4-down-two:before {\n  content: \"\\ebec\";\n}\n.bd4-drag:before {\n  content: \"\\ebed\";\n}\n.bd4-dragon-zodiac:before {\n  content: \"\\ebee\";\n}\n.bd4-dribble:before {\n  content: \"\\ebef\";\n}\n.bd4-drink:before {\n  content: \"\\ebf0\";\n}\n.bd4-drone:before {\n  content: \"\\ebf1\";\n}\n.bd4-drone-one:before {\n  content: \"\\ebf2\";\n}\n.bd4-dropbox:before {\n  content: \"\\ebf3\";\n}\n.bd4-drop-down-list:before {\n  content: \"\\ebf4\";\n}\n.bd4-drop-shadow-down:before {\n  content: \"\\ebf5\";\n}\n.bd4-drop-shadow-left:before {\n  content: \"\\ebf6\";\n}\n.bd4-drop-shadow-right:before {\n  content: \"\\ebf7\";\n}\n.bd4-drop-shadow-up:before {\n  content: \"\\ebf8\";\n}\n.bd4-drumstick:before {\n  content: \"\\ebf9\";\n}\n.bd4-dubai:before {\n  content: \"\\ebfa\";\n}\n.bd4-duck:before {\n  content: \"\\ebfb\";\n}\n.bd4-dumbbell:before {\n  content: \"\\ebfc\";\n}\n.bd4-dumbbel-line:before {\n  content: \"\\ebfd\";\n}\n.bd4-dvi:before {\n  content: \"\\ebfe\";\n}\n.bd4-eagle:before {\n  content: \"\\ebff\";\n}\n.bd4-earth:before {\n  content: \"\\ec00\";\n}\n.bd4-easy:before {\n  content: \"\\ec01\";\n}\n.bd4-ecg:before {\n  content: \"\\ec02\";\n}\n.bd4-edit:before {\n  content: \"\\ec03\";\n}\n.bd4-editing:before {\n  content: \"\\ec04\";\n}\n.bd4-edit-movie:before {\n  content: \"\\ec05\";\n}\n.bd4-edit-name:before {\n  content: \"\\ec06\";\n}\n.bd4-edit-one:before {\n  content: \"\\ec07\";\n}\n.bd4-editor:before {\n  content: \"\\ec08\";\n}\n.bd4-edit-two:before {\n  content: \"\\ec09\";\n}\n.bd4-eeg:before {\n  content: \"\\ec0a\";\n}\n.bd4-effects:before {\n  content: \"\\ec0b\";\n}\n.bd4-efferent-four:before {\n  content: \"\\ec0c\";\n}\n.bd4-efferent-three:before {\n  content: \"\\ec0d\";\n}\n.bd4-egg:before {\n  content: \"\\ec0e\";\n}\n.bd4-egg-one:before {\n  content: \"\\ec0f\";\n}\n.bd4-eggplant:before {\n  content: \"\\ec10\";\n}\n.bd4-eiffel-tower:before {\n  content: \"\\ec11\";\n}\n.bd4-eight-key:before {\n  content: \"\\ec12\";\n}\n.bd4-electric-drill:before {\n  content: \"\\ec13\";\n}\n.bd4-electric-iron:before {\n  content: \"\\ec14\";\n}\n.bd4-electric-wave:before {\n  content: \"\\ec15\";\n}\n.bd4-electrocardiogram:before {\n  content: \"\\ec16\";\n}\n.bd4-electronic-door-lock:before {\n  content: \"\\ec17\";\n}\n.bd4-electronic-locks-close:before {\n  content: \"\\ec18\";\n}\n.bd4-electronic-locks-open:before {\n  content: \"\\ec19\";\n}\n.bd4-electronic-pen:before {\n  content: \"\\ec1a\";\n}\n.bd4-elephant:before {\n  content: \"\\ec1b\";\n}\n.bd4-elevator:before {\n  content: \"\\ec1c\";\n}\n.bd4-email-block:before {\n  content: \"\\ec1d\";\n}\n.bd4-email-delect:before {\n  content: \"\\ec1e\";\n}\n.bd4-email-down:before {\n  content: \"\\ec1f\";\n}\n.bd4-email-fail:before {\n  content: \"\\ec20\";\n}\n.bd4-email-lock:before {\n  content: \"\\ec21\";\n}\n.bd4-email-push:before {\n  content: \"\\ec22\";\n}\n.bd4-email-search:before {\n  content: \"\\ec23\";\n}\n.bd4-email-security:before {\n  content: \"\\ec24\";\n}\n.bd4-email-successfully:before {\n  content: \"\\ec25\";\n}\n.bd4-emotion-happy:before {\n  content: \"\\ec26\";\n}\n.bd4-emotion-unhappy:before {\n  content: \"\\ec27\";\n}\n.bd4-empty:before {\n  content: \"\\ec28\";\n}\n.bd4-endless:before {\n  content: \"\\ec29\";\n}\n.bd4-endocrine:before {\n  content: \"\\ec2a\";\n}\n.bd4-endpoint-displacement:before {\n  content: \"\\ec2b\";\n}\n.bd4-endpoint-flat:before {\n  content: \"\\ec2c\";\n}\n.bd4-endpoint-round:before {\n  content: \"\\ec2d\";\n}\n.bd4-endpoint-square:before {\n  content: \"\\ec2e\";\n}\n.bd4-end-time-sort:before {\n  content: \"\\ec2f\";\n}\n.bd4-energy-socket:before {\n  content: \"\\ec30\";\n}\n.bd4-engineering-brand:before {\n  content: \"\\ec31\";\n}\n.bd4-engineering-vehicle:before {\n  content: \"\\ec32\";\n}\n.bd4-english:before {\n  content: \"\\ec33\";\n}\n.bd4-english-mustache:before {\n  content: \"\\ec34\";\n}\n.bd4-enquire:before {\n  content: \"\\ec35\";\n}\n.bd4-enter-key:before {\n  content: \"\\ec36\";\n}\n.bd4-enter-key-one:before {\n  content: \"\\ec37\";\n}\n.bd4-entertainment:before {\n  content: \"\\ec38\";\n}\n.bd4-enter-the-keyboard:before {\n  content: \"\\ec39\";\n}\n.bd4-envelope:before {\n  content: \"\\ec3a\";\n}\n.bd4-envelope-one:before {\n  content: \"\\ec3b\";\n}\n.bd4-equalizer:before {\n  content: \"\\ec3c\";\n}\n.bd4-equal-ratio:before {\n  content: \"\\ec3d\";\n}\n.bd4-erase:before {\n  content: \"\\ec3e\";\n}\n.bd4-error:before {\n  content: \"\\ec3f\";\n}\n.bd4-error-computer:before {\n  content: \"\\ec40\";\n}\n.bd4-error-picture:before {\n  content: \"\\ec41\";\n}\n.bd4-error-prompt:before {\n  content: \"\\ec42\";\n}\n.bd4-escalators:before {\n  content: \"\\ec43\";\n}\n.bd4-ethernet-off:before {\n  content: \"\\ec44\";\n}\n.bd4-ethernet-on:before {\n  content: \"\\ec45\";\n}\n.bd4-every-user:before {\n  content: \"\\ec46\";\n}\n.bd4-excel:before {\n  content: \"\\ec47\";\n}\n.bd4-excel-one:before {\n  content: \"\\ec48\";\n}\n.bd4-exchange:before {\n  content: \"\\ec49\";\n}\n.bd4-exchange-four:before {\n  content: \"\\ec4a\";\n}\n.bd4-exchange-one:before {\n  content: \"\\ec4b\";\n}\n.bd4-exchange-three:before {\n  content: \"\\ec4c\";\n}\n.bd4-exchange-two:before {\n  content: \"\\ec4d\";\n}\n.bd4-exclude-selection:before {\n  content: \"\\ec4e\";\n}\n.bd4-exclusive-gateway:before {\n  content: \"\\ec4f\";\n}\n.bd4-expand-down:before {\n  content: \"\\ec50\";\n}\n.bd4-expand-down-one:before {\n  content: \"\\ec51\";\n}\n.bd4-expand-left:before {\n  content: \"\\ec52\";\n}\n.bd4-expand-left-and-right:before {\n  content: \"\\ec53\";\n}\n.bd4-expand-right:before {\n  content: \"\\ec54\";\n}\n.bd4-expand-text-input:before {\n  content: \"\\ec55\";\n}\n.bd4-expand-up:before {\n  content: \"\\ec56\";\n}\n.bd4-expenses:before {\n  content: \"\\ec57\";\n}\n.bd4-expenses-one:before {\n  content: \"\\ec58\";\n}\n.bd4-experiment:before {\n  content: \"\\ec59\";\n}\n.bd4-experiment-one:before {\n  content: \"\\ec5a\";\n}\n.bd4-export:before {\n  content: \"\\ec5b\";\n}\n.bd4-express-delivery:before {\n  content: \"\\ec5c\";\n}\n.bd4-expressionless-face:before {\n  content: \"\\ec5d\";\n}\n.bd4-extend:before {\n  content: \"\\ec5e\";\n}\n.bd4-external-transmission:before {\n  content: \"\\ec5f\";\n}\n.bd4-eyebrow:before {\n  content: \"\\ec60\";\n}\n.bd4-eyes:before {\n  content: \"\\ec61\";\n}\n.bd4-facebook:before {\n  content: \"\\ec62\";\n}\n.bd4-facebook-one:before {\n  content: \"\\ec63\";\n}\n.bd4-face-powder:before {\n  content: \"\\ec64\";\n}\n.bd4-face-recognition:before {\n  content: \"\\ec65\";\n}\n.bd4-facetime:before {\n  content: \"\\ec66\";\n}\n.bd4-faceu:before {\n  content: \"\\ec67\";\n}\n.bd4-face-without-mouth:before {\n  content: \"\\ec68\";\n}\n.bd4-face-with-smiling-open-eyes:before {\n  content: \"\\ec69\";\n}\n.bd4-facial-cleanser:before {\n  content: \"\\ec6a\";\n}\n.bd4-facial-mask:before {\n  content: \"\\ec6b\";\n}\n.bd4-factory-building:before {\n  content: \"\\ec6c\";\n}\n.bd4-fail-picture:before {\n  content: \"\\ec6d\";\n}\n.bd4-family:before {\n  content: \"\\ec6e\";\n}\n.bd4-fan:before {\n  content: \"\\ec6f\";\n}\n.bd4-fanqiexiaoshuo:before {\n  content: \"\\ec70\";\n}\n.bd4-feelgood:before {\n  content: \"\\ec71\";\n}\n.bd4-feelgood-one:before {\n  content: \"\\ec72\";\n}\n.bd4-f-eight-key:before {\n  content: \"\\ec73\";\n}\n.bd4-feiyu:before {\n  content: \"\\ec74\";\n}\n.bd4-female:before {\n  content: \"\\ec75\";\n}\n.bd4-fence-one:before {\n  content: \"\\ec76\";\n}\n.bd4-fence-two:before {\n  content: \"\\ec77\";\n}\n.bd4-ferris-wheel:before {\n  content: \"\\ec78\";\n}\n.bd4-f-five-key:before {\n  content: \"\\ec79\";\n}\n.bd4-f-four-key:before {\n  content: \"\\ec7a\";\n}\n.bd4-figma:before {\n  content: \"\\ec7b\";\n}\n.bd4-figma-component:before {\n  content: \"\\ec7c\";\n}\n.bd4-figma-flatten-selection:before {\n  content: \"\\ec7d\";\n}\n.bd4-figma-mask:before {\n  content: \"\\ec7e\";\n}\n.bd4-figma-reset-instance:before {\n  content: \"\\ec7f\";\n}\n.bd4-file-addition:before {\n  content: \"\\ec80\";\n}\n.bd4-file-addition-one:before {\n  content: \"\\ec81\";\n}\n.bd4-file-cabinet:before {\n  content: \"\\ec82\";\n}\n.bd4-file-code:before {\n  content: \"\\ec83\";\n}\n.bd4-file-code-one:before {\n  content: \"\\ec84\";\n}\n.bd4-file-collection:before {\n  content: \"\\ec85\";\n}\n.bd4-file-collection-one:before {\n  content: \"\\ec86\";\n}\n.bd4-file-conversion:before {\n  content: \"\\ec87\";\n}\n.bd4-file-conversion-one:before {\n  content: \"\\ec88\";\n}\n.bd4-file-date:before {\n  content: \"\\ec89\";\n}\n.bd4-file-date-one:before {\n  content: \"\\ec8a\";\n}\n.bd4-file-display:before {\n  content: \"\\ec8b\";\n}\n.bd4-file-display-one:before {\n  content: \"\\ec8c\";\n}\n.bd4-file-doc:before {\n  content: \"\\ec8d\";\n}\n.bd4-file-editing:before {\n  content: \"\\ec8e\";\n}\n.bd4-file-editing-one:before {\n  content: \"\\ec8f\";\n}\n.bd4-file-excel:before {\n  content: \"\\ec90\";\n}\n.bd4-file-failed:before {\n  content: \"\\ec91\";\n}\n.bd4-file-failed-one:before {\n  content: \"\\ec92\";\n}\n.bd4-file-focus:before {\n  content: \"\\ec93\";\n}\n.bd4-file-focus-one:before {\n  content: \"\\ec94\";\n}\n.bd4-file-gif:before {\n  content: \"\\ec95\";\n}\n.bd4-file-hash:before {\n  content: \"\\ec96\";\n}\n.bd4-file-hash-one:before {\n  content: \"\\ec97\";\n}\n.bd4-file-hiding:before {\n  content: \"\\ec98\";\n}\n.bd4-file-hiding-one:before {\n  content: \"\\ec99\";\n}\n.bd4-file-jpg:before {\n  content: \"\\ec9a\";\n}\n.bd4-file-lock:before {\n  content: \"\\ec9b\";\n}\n.bd4-file-lock-one:before {\n  content: \"\\ec9c\";\n}\n.bd4-file-music:before {\n  content: \"\\ec9d\";\n}\n.bd4-file-music-one:before {\n  content: \"\\ec9e\";\n}\n.bd4-file-pdf:before {\n  content: \"\\ec9f\";\n}\n.bd4-file-pdf-one:before {\n  content: \"\\eca0\";\n}\n.bd4-file-ppt:before {\n  content: \"\\eca1\";\n}\n.bd4-file-protection:before {\n  content: \"\\eca2\";\n}\n.bd4-file-protection-one:before {\n  content: \"\\eca3\";\n}\n.bd4-file-quality:before {\n  content: \"\\eca4\";\n}\n.bd4-file-quality-one:before {\n  content: \"\\eca5\";\n}\n.bd4-file-question:before {\n  content: \"\\eca6\";\n}\n.bd4-file-removal:before {\n  content: \"\\eca7\";\n}\n.bd4-file-removal-one:before {\n  content: \"\\eca8\";\n}\n.bd4-file-search:before {\n  content: \"\\eca9\";\n}\n.bd4-file-search-one:before {\n  content: \"\\ecaa\";\n}\n.bd4-file-search-two:before {\n  content: \"\\ecab\";\n}\n.bd4-file-settings:before {\n  content: \"\\ecac\";\n}\n.bd4-file-settings-one:before {\n  content: \"\\ecad\";\n}\n.bd4-file-staff:before {\n  content: \"\\ecae\";\n}\n.bd4-file-staff-one:before {\n  content: \"\\ecaf\";\n}\n.bd4-file-success:before {\n  content: \"\\ecb0\";\n}\n.bd4-file-success-one:before {\n  content: \"\\ecb1\";\n}\n.bd4-file-text:before {\n  content: \"\\ecb2\";\n}\n.bd4-file-text-one:before {\n  content: \"\\ecb3\";\n}\n.bd4-file-tips:before {\n  content: \"\\ecb4\";\n}\n.bd4-file-tips-one:before {\n  content: \"\\ecb5\";\n}\n.bd4-file-txt:before {\n  content: \"\\ecb6\";\n}\n.bd4-file-txt-one:before {\n  content: \"\\ecb7\";\n}\n.bd4-file-withdrawal:before {\n  content: \"\\ecb8\";\n}\n.bd4-file-withdrawal-one:before {\n  content: \"\\ecb9\";\n}\n.bd4-file-word:before {\n  content: \"\\ecba\";\n}\n.bd4-file-zip:before {\n  content: \"\\ecbb\";\n}\n.bd4-fill:before {\n  content: \"\\ecbc\";\n}\n.bd4-film:before {\n  content: \"\\ecbd\";\n}\n.bd4-filter:before {\n  content: \"\\ecbe\";\n}\n.bd4-filter-one:before {\n  content: \"\\ecbf\";\n}\n.bd4-finance:before {\n  content: \"\\ecc0\";\n}\n.bd4-financing:before {\n  content: \"\\ecc1\";\n}\n.bd4-financing-one:before {\n  content: \"\\ecc2\";\n}\n.bd4-financing-two:before {\n  content: \"\\ecc3\";\n}\n.bd4-find:before {\n  content: \"\\ecc4\";\n}\n.bd4-find-one:before {\n  content: \"\\ecc5\";\n}\n.bd4-fingernail:before {\n  content: \"\\ecc6\";\n}\n.bd4-fingerprint:before {\n  content: \"\\ecc7\";\n}\n.bd4-fingerprint-three:before {\n  content: \"\\ecc8\";\n}\n.bd4-fingerprint-two:before {\n  content: \"\\ecc9\";\n}\n.bd4-fire:before {\n  content: \"\\ecca\";\n}\n.bd4-fire-extinguisher:before {\n  content: \"\\eccb\";\n}\n.bd4-fire-extinguisher-one:before {\n  content: \"\\eccc\";\n}\n.bd4-fire-two:before {\n  content: \"\\eccd\";\n}\n.bd4-fireworks:before {\n  content: \"\\ecce\";\n}\n.bd4-first:before {\n  content: \"\\eccf\";\n}\n.bd4-first-aid-kit:before {\n  content: \"\\ecd0\";\n}\n.bd4-fish:before {\n  content: \"\\ecd1\";\n}\n.bd4-fishing:before {\n  content: \"\\ecd2\";\n}\n.bd4-fish-one:before {\n  content: \"\\ecd3\";\n}\n.bd4-fist:before {\n  content: \"\\ecd4\";\n}\n.bd4-fitness:before {\n  content: \"\\ecd5\";\n}\n.bd4-five:before {\n  content: \"\\ecd6\";\n}\n.bd4-five-ellipses:before {\n  content: \"\\ecd7\";\n}\n.bd4-five-five:before {\n  content: \"\\ecd8\";\n}\n.bd4-five-key:before {\n  content: \"\\ecd9\";\n}\n.bd4-five-star-badge:before {\n  content: \"\\ecda\";\n}\n.bd4-flag:before {\n  content: \"\\ecdb\";\n}\n.bd4-flashlamp:before {\n  content: \"\\ecdc\";\n}\n.bd4-flashlight:before {\n  content: \"\\ecdd\";\n}\n.bd4-flash-payment:before {\n  content: \"\\ecde\";\n}\n.bd4-flask:before {\n  content: \"\\ecdf\";\n}\n.bd4-flight-airflow:before {\n  content: \"\\ece0\";\n}\n.bd4-flight-safety:before {\n  content: \"\\ece1\";\n}\n.bd4-flip-camera:before {\n  content: \"\\ece2\";\n}\n.bd4-flip-horizontally:before {\n  content: \"\\ece3\";\n}\n.bd4-flip-vertically:before {\n  content: \"\\ece4\";\n}\n.bd4-flirt:before {\n  content: \"\\ece5\";\n}\n.bd4-float:before {\n  content: \"\\ece6\";\n}\n.bd4-floor-tile:before {\n  content: \"\\ece7\";\n}\n.bd4-fm:before {\n  content: \"\\ece8\";\n}\n.bd4-f-nine-key:before {\n  content: \"\\ece9\";\n}\n.bd4-f-n-key:before {\n  content: \"\\ecea\";\n}\n.bd4-focus:before {\n  content: \"\\eceb\";\n}\n.bd4-focus-one:before {\n  content: \"\\ecec\";\n}\n.bd4-fog:before {\n  content: \"\\eced\";\n}\n.bd4-folder:before {\n  content: \"\\ecee\";\n}\n.bd4-folder-block:before {\n  content: \"\\ecef\";\n}\n.bd4-folder-block-one:before {\n  content: \"\\ecf0\";\n}\n.bd4-folder-close:before {\n  content: \"\\ecf1\";\n}\n.bd4-folder-code:before {\n  content: \"\\ecf2\";\n}\n.bd4-folder-code-one:before {\n  content: \"\\ecf3\";\n}\n.bd4-folder-conversion:before {\n  content: \"\\ecf4\";\n}\n.bd4-folder-conversion-one:before {\n  content: \"\\ecf5\";\n}\n.bd4-folder-download:before {\n  content: \"\\ecf6\";\n}\n.bd4-folder-failed:before {\n  content: \"\\ecf7\";\n}\n.bd4-folder-failed-one:before {\n  content: \"\\ecf8\";\n}\n.bd4-folder-focus:before {\n  content: \"\\ecf9\";\n}\n.bd4-folder-focus-one:before {\n  content: \"\\ecfa\";\n}\n.bd4-folder-lock:before {\n  content: \"\\ecfb\";\n}\n.bd4-folder-lock-one:before {\n  content: \"\\ecfc\";\n}\n.bd4-folder-minus:before {\n  content: \"\\ecfd\";\n}\n.bd4-folder-music:before {\n  content: \"\\ecfe\";\n}\n.bd4-folder-music-one:before {\n  content: \"\\ecff\";\n}\n.bd4-folder-one:before {\n  content: \"\\ed00\";\n}\n.bd4-folder-open:before {\n  content: \"\\ed01\";\n}\n.bd4-folder-plus:before {\n  content: \"\\ed02\";\n}\n.bd4-folder-protection:before {\n  content: \"\\ed03\";\n}\n.bd4-folder-protection-one:before {\n  content: \"\\ed04\";\n}\n.bd4-folder-quality:before {\n  content: \"\\ed05\";\n}\n.bd4-folder-quality-one:before {\n  content: \"\\ed06\";\n}\n.bd4-folder-search:before {\n  content: \"\\ed07\";\n}\n.bd4-folder-search-one:before {\n  content: \"\\ed08\";\n}\n.bd4-folder-settings:before {\n  content: \"\\ed09\";\n}\n.bd4-folder-settings-one:before {\n  content: \"\\ed0a\";\n}\n.bd4-folder-success:before {\n  content: \"\\ed0b\";\n}\n.bd4-folder-success-one:before {\n  content: \"\\ed0c\";\n}\n.bd4-folder-upload:before {\n  content: \"\\ed0d\";\n}\n.bd4-folder-withdrawal:before {\n  content: \"\\ed0e\";\n}\n.bd4-folder-withdrawal-one:before {\n  content: \"\\ed0f\";\n}\n.bd4-fold-up-one:before {\n  content: \"\\ed10\";\n}\n.bd4-follow-up-date-sort:before {\n  content: \"\\ed11\";\n}\n.bd4-f-one-key:before {\n  content: \"\\ed12\";\n}\n.bd4-font-search:before {\n  content: \"\\ed13\";\n}\n.bd4-font-size:before {\n  content: \"\\ed14\";\n}\n.bd4-font-size-two:before {\n  content: \"\\ed15\";\n}\n.bd4-foot:before {\n  content: \"\\ed16\";\n}\n.bd4-football:before {\n  content: \"\\ed17\";\n}\n.bd4-forbid:before {\n  content: \"\\ed18\";\n}\n.bd4-fork:before {\n  content: \"\\ed19\";\n}\n.bd4-fork-spoon:before {\n  content: \"\\ed1a\";\n}\n.bd4-form:before {\n  content: \"\\ed1b\";\n}\n.bd4-format:before {\n  content: \"\\ed1c\";\n}\n.bd4-format-brush:before {\n  content: \"\\ed1d\";\n}\n.bd4-form-one:before {\n  content: \"\\ed1e\";\n}\n.bd4-formula:before {\n  content: \"\\ed1f\";\n}\n.bd4-foundation-makeup:before {\n  content: \"\\ed20\";\n}\n.bd4-four:before {\n  content: \"\\ed21\";\n}\n.bd4-four-arrows:before {\n  content: \"\\ed22\";\n}\n.bd4-four-four:before {\n  content: \"\\ed23\";\n}\n.bd4-four-key:before {\n  content: \"\\ed24\";\n}\n.bd4-four-leaves:before {\n  content: \"\\ed25\";\n}\n.bd4-four-point-connection:before {\n  content: \"\\ed26\";\n}\n.bd4-four-round-point-connection:before {\n  content: \"\\ed27\";\n}\n.bd4-foursquare:before {\n  content: \"\\ed28\";\n}\n.bd4-freeze-column:before {\n  content: \"\\ed29\";\n}\n.bd4-freeze-line:before {\n  content: \"\\ed2a\";\n}\n.bd4-freezing-line-column:before {\n  content: \"\\ed2b\";\n}\n.bd4-french-fries:before {\n  content: \"\\ed2c\";\n}\n.bd4-friends-circle:before {\n  content: \"\\ed2d\";\n}\n.bd4-frigate:before {\n  content: \"\\ed2e\";\n}\n.bd4-frog:before {\n  content: \"\\ed2f\";\n}\n.bd4-frowning-face-whit-open-mouth:before {\n  content: \"\\ed30\";\n}\n.bd4-fruiter:before {\n  content: \"\\ed31\";\n}\n.bd4-f-seven-key:before {\n  content: \"\\ed32\";\n}\n.bd4-f-six-key:before {\n  content: \"\\ed33\";\n}\n.bd4-f-three-key:before {\n  content: \"\\ed34\";\n}\n.bd4-f-two-key:before {\n  content: \"\\ed35\";\n}\n.bd4-full-dress-longuette:before {\n  content: \"\\ed36\";\n}\n.bd4-full-screen:before {\n  content: \"\\ed37\";\n}\n.bd4-full-screen-one:before {\n  content: \"\\ed38\";\n}\n.bd4-full-screen-play:before {\n  content: \"\\ed39\";\n}\n.bd4-full-screen-two:before {\n  content: \"\\ed3a\";\n}\n.bd4-full-selection:before {\n  content: \"\\ed3b\";\n}\n.bd4-fullwidth:before {\n  content: \"\\ed3c\";\n}\n.bd4-funds:before {\n  content: \"\\ed3d\";\n}\n.bd4-future-build-one:before {\n  content: \"\\ed3e\";\n}\n.bd4-future-build-three:before {\n  content: \"\\ed3f\";\n}\n.bd4-future-build-two:before {\n  content: \"\\ed40\";\n}\n.bd4-f-zero-key:before {\n  content: \"\\ed41\";\n}\n.bd4-game:before {\n  content: \"\\ed42\";\n}\n.bd4-game-console:before {\n  content: \"\\ed43\";\n}\n.bd4-game-console-one:before {\n  content: \"\\ed44\";\n}\n.bd4-game-emoji:before {\n  content: \"\\ed45\";\n}\n.bd4-game-handle:before {\n  content: \"\\ed46\";\n}\n.bd4-gamepad:before {\n  content: \"\\ed47\";\n}\n.bd4-game-ps:before {\n  content: \"\\ed48\";\n}\n.bd4-game-three:before {\n  content: \"\\ed49\";\n}\n.bd4-game-two:before {\n  content: \"\\ed4a\";\n}\n.bd4-garage:before {\n  content: \"\\ed4b\";\n}\n.bd4-garlic:before {\n  content: \"\\ed4c\";\n}\n.bd4-gas:before {\n  content: \"\\ed4d\";\n}\n.bd4-gastrointestinal:before {\n  content: \"\\ed4e\";\n}\n.bd4-gate:before {\n  content: \"\\ed4f\";\n}\n.bd4-gate-machine:before {\n  content: \"\\ed50\";\n}\n.bd4-gauze:before {\n  content: \"\\ed51\";\n}\n.bd4-gavel:before {\n  content: \"\\ed52\";\n}\n.bd4-gemini:before {\n  content: \"\\ed53\";\n}\n.bd4-general-branch:before {\n  content: \"\\ed54\";\n}\n.bd4-geometric-flowers:before {\n  content: \"\\ed55\";\n}\n.bd4-germs:before {\n  content: \"\\ed56\";\n}\n.bd4-ghost:before {\n  content: \"\\ed57\";\n}\n.bd4-gift:before {\n  content: \"\\ed58\";\n}\n.bd4-gift-bag:before {\n  content: \"\\ed59\";\n}\n.bd4-gift-box:before {\n  content: \"\\ed5a\";\n}\n.bd4-girl:before {\n  content: \"\\ed5b\";\n}\n.bd4-girl-one:before {\n  content: \"\\ed5c\";\n}\n.bd4-girl-two:before {\n  content: \"\\ed5d\";\n}\n.bd4-github:before {\n  content: \"\\ed5e\";\n}\n.bd4-github-one:before {\n  content: \"\\ed5f\";\n}\n.bd4-gitlab:before {\n  content: \"\\ed60\";\n}\n.bd4-glasses:before {\n  content: \"\\ed61\";\n}\n.bd4-glasses-one:before {\n  content: \"\\ed62\";\n}\n.bd4-glasses-three:before {\n  content: \"\\ed63\";\n}\n.bd4-globe:before {\n  content: \"\\ed64\";\n}\n.bd4-glove:before {\n  content: \"\\ed65\";\n}\n.bd4-go-ahead:before {\n  content: \"\\ed66\";\n}\n.bd4-goblet:before {\n  content: \"\\ed67\";\n}\n.bd4-goblet-cracking:before {\n  content: \"\\ed68\";\n}\n.bd4-goblet-full:before {\n  content: \"\\ed69\";\n}\n.bd4-goblet-one:before {\n  content: \"\\ed6a\";\n}\n.bd4-go-end:before {\n  content: \"\\ed6b\";\n}\n.bd4-gold-medal:before {\n  content: \"\\ed6c\";\n}\n.bd4-gold-medal-two:before {\n  content: \"\\ed6d\";\n}\n.bd4-golf-course:before {\n  content: \"\\ed6e\";\n}\n.bd4-gongfu:before {\n  content: \"\\ed6f\";\n}\n.bd4-good:before {\n  content: \"\\ed70\";\n}\n.bd4-good-one:before {\n  content: \"\\ed71\";\n}\n.bd4-good-two:before {\n  content: \"\\ed72\";\n}\n.bd4-google:before {\n  content: \"\\ed73\";\n}\n.bd4-google-ads:before {\n  content: \"\\ed74\";\n}\n.bd4-go-on:before {\n  content: \"\\ed75\";\n}\n.bd4-gopro:before {\n  content: \"\\ed76\";\n}\n.bd4-go-start:before {\n  content: \"\\ed77\";\n}\n.bd4-gps:before {\n  content: \"\\ed78\";\n}\n.bd4-graphic-design:before {\n  content: \"\\ed79\";\n}\n.bd4-graphic-design-two:before {\n  content: \"\\ed7a\";\n}\n.bd4-graphic-stitching:before {\n  content: \"\\ed7b\";\n}\n.bd4-graphic-stitching-four:before {\n  content: \"\\ed7c\";\n}\n.bd4-graphic-stitching-three:before {\n  content: \"\\ed7d\";\n}\n.bd4-great-wall:before {\n  content: \"\\ed7e\";\n}\n.bd4-green-house:before {\n  content: \"\\ed7f\";\n}\n.bd4-green-new-energy:before {\n  content: \"\\ed80\";\n}\n.bd4-grid-four:before {\n  content: \"\\ed81\";\n}\n.bd4-grid-nine:before {\n  content: \"\\ed82\";\n}\n.bd4-grid-sixteen:before {\n  content: \"\\ed83\";\n}\n.bd4-grid-three:before {\n  content: \"\\ed84\";\n}\n.bd4-grid-two:before {\n  content: \"\\ed85\";\n}\n.bd4-grimacing-face:before {\n  content: \"\\ed86\";\n}\n.bd4-grinning-face:before {\n  content: \"\\ed87\";\n}\n.bd4-grinning-face-with-open-mouth:before {\n  content: \"\\ed88\";\n}\n.bd4-grinning-face-with-squinting-eyes:before {\n  content: \"\\ed89\";\n}\n.bd4-grinning-face-with-tightly-closed-eyes:before {\n  content: \"\\ed8a\";\n}\n.bd4-grinning-face-with-tightly-closed-eyes-open-mouth:before {\n  content: \"\\ed8b\";\n}\n.bd4-group:before {\n  content: \"\\ed8c\";\n}\n.bd4-guide-board:before {\n  content: \"\\ed8d\";\n}\n.bd4-gymnastics:before {\n  content: \"\\ed8e\";\n}\n.bd4-gymnastics-one:before {\n  content: \"\\ed8f\";\n}\n.bd4-h:before {\n  content: \"\\ed90\";\n}\n.bd4-h1:before {\n  content: \"\\ed91\";\n}\n.bd4-h2:before {\n  content: \"\\ed92\";\n}\n.bd4-h3:before {\n  content: \"\\ed93\";\n}\n.bd4-hair-brush:before {\n  content: \"\\ed94\";\n}\n.bd4-hair-clip:before {\n  content: \"\\ed95\";\n}\n.bd4-hair-dryer:before {\n  content: \"\\ed96\";\n}\n.bd4-hair-dryer-one:before {\n  content: \"\\ed97\";\n}\n.bd4-halo:before {\n  content: \"\\ed98\";\n}\n.bd4-hamburger:before {\n  content: \"\\ed99\";\n}\n.bd4-hamburger-button:before {\n  content: \"\\ed9a\";\n}\n.bd4-hamburger-one:before {\n  content: \"\\ed9b\";\n}\n.bd4-hammer-and-anvil:before {\n  content: \"\\ed9c\";\n}\n.bd4-handbag:before {\n  content: \"\\ed9d\";\n}\n.bd4-hand-cream:before {\n  content: \"\\ed9e\";\n}\n.bd4-hand-down:before {\n  content: \"\\ed9f\";\n}\n.bd4-hand-drag:before {\n  content: \"\\eda0\";\n}\n.bd4-handheld:before {\n  content: \"\\eda1\";\n}\n.bd4-handle-a:before {\n  content: \"\\eda2\";\n}\n.bd4-handle-b:before {\n  content: \"\\eda3\";\n}\n.bd4-handle-c:before {\n  content: \"\\eda4\";\n}\n.bd4-handle-down:before {\n  content: \"\\eda5\";\n}\n.bd4-hand-left:before {\n  content: \"\\eda6\";\n}\n.bd4-handle-left:before {\n  content: \"\\eda7\";\n}\n.bd4-handle-right:before {\n  content: \"\\eda8\";\n}\n.bd4-handle-round:before {\n  content: \"\\eda9\";\n}\n.bd4-handle-square:before {\n  content: \"\\edaa\";\n}\n.bd4-handle-triangle:before {\n  content: \"\\edab\";\n}\n.bd4-handle-up:before {\n  content: \"\\edac\";\n}\n.bd4-handle-x:before {\n  content: \"\\edad\";\n}\n.bd4-handle-y:before {\n  content: \"\\edae\";\n}\n.bd4-handle-z:before {\n  content: \"\\edaf\";\n}\n.bd4-hand-painted-plate:before {\n  content: \"\\edb0\";\n}\n.bd4-hand-right:before {\n  content: \"\\edb1\";\n}\n.bd4-hands:before {\n  content: \"\\edb2\";\n}\n.bd4-hand-up:before {\n  content: \"\\edb3\";\n}\n.bd4-handwashing:before {\n  content: \"\\edb4\";\n}\n.bd4-handwashing-fluid:before {\n  content: \"\\edb5\";\n}\n.bd4-hanfu-chinese-style:before {\n  content: \"\\edb6\";\n}\n.bd4-hanger:before {\n  content: \"\\edb7\";\n}\n.bd4-hanger-one:before {\n  content: \"\\edb8\";\n}\n.bd4-hanger-two:before {\n  content: \"\\edb9\";\n}\n.bd4-hard-disk:before {\n  content: \"\\edba\";\n}\n.bd4-hard-disk-one:before {\n  content: \"\\edbb\";\n}\n.bd4-harm:before {\n  content: \"\\edbc\";\n}\n.bd4-hashtag-key:before {\n  content: \"\\edbd\";\n}\n.bd4-hat:before {\n  content: \"\\edbe\";\n}\n.bd4-hdd:before {\n  content: \"\\edbf\";\n}\n.bd4-hdmi-cable:before {\n  content: \"\\edc0\";\n}\n.bd4-hdmi-connector:before {\n  content: \"\\edc1\";\n}\n.bd4-headphone-sound:before {\n  content: \"\\edc2\";\n}\n.bd4-headset:before {\n  content: \"\\edc3\";\n}\n.bd4-headset-one:before {\n  content: \"\\edc4\";\n}\n.bd4-headset-two:before {\n  content: \"\\edc5\";\n}\n.bd4-headwear:before {\n  content: \"\\edc6\";\n}\n.bd4-health:before {\n  content: \"\\edc7\";\n}\n.bd4-health-products:before {\n  content: \"\\edc8\";\n}\n.bd4-healthy-recognition:before {\n  content: \"\\edc9\";\n}\n.bd4-heart:before {\n  content: \"\\edca\";\n}\n.bd4-heart-ballon:before {\n  content: \"\\edcb\";\n}\n.bd4-heartbeat:before {\n  content: \"\\edcc\";\n}\n.bd4-heart-rate:before {\n  content: \"\\edcd\";\n}\n.bd4-heater-resistor:before {\n  content: \"\\edce\";\n}\n.bd4-heavy-metal:before {\n  content: \"\\edcf\";\n}\n.bd4-heavy-rain:before {\n  content: \"\\edd0\";\n}\n.bd4-heavy-wind:before {\n  content: \"\\edd1\";\n}\n.bd4-helmet:before {\n  content: \"\\edd2\";\n}\n.bd4-helmet-one:before {\n  content: \"\\edd3\";\n}\n.bd4-help:before {\n  content: \"\\edd4\";\n}\n.bd4-helpcenter:before {\n  content: \"\\edd5\";\n}\n.bd4-hexagonal:before {\n  content: \"\\edd6\";\n}\n.bd4-hexagon-one:before {\n  content: \"\\edd7\";\n}\n.bd4-hexagon-strip:before {\n  content: \"\\edd8\";\n}\n.bd4-hi:before {\n  content: \"\\edd9\";\n}\n.bd4-high-heeled-shoes:before {\n  content: \"\\edda\";\n}\n.bd4-high-light:before {\n  content: \"\\eddb\";\n}\n.bd4-high-speed-rail:before {\n  content: \"\\eddc\";\n}\n.bd4-hippo:before {\n  content: \"\\eddd\";\n}\n.bd4-histogram:before {\n  content: \"\\edde\";\n}\n.bd4-history:before {\n  content: \"\\eddf\";\n}\n.bd4-history-query:before {\n  content: \"\\ede0\";\n}\n.bd4-hockey:before {\n  content: \"\\ede1\";\n}\n.bd4-hold:before {\n  content: \"\\ede2\";\n}\n.bd4-holding-hands:before {\n  content: \"\\ede3\";\n}\n.bd4-hold-interface:before {\n  content: \"\\ede4\";\n}\n.bd4-hold-seeds:before {\n  content: \"\\ede5\";\n}\n.bd4-holy-sword:before {\n  content: \"\\ede6\";\n}\n.bd4-home:before {\n  content: \"\\ede7\";\n}\n.bd4-homestay:before {\n  content: \"\\ede8\";\n}\n.bd4-home-two:before {\n  content: \"\\ede9\";\n}\n.bd4-honey:before {\n  content: \"\\edea\";\n}\n.bd4-honey-one:before {\n  content: \"\\edeb\";\n}\n.bd4-horizontally-centered:before {\n  content: \"\\edec\";\n}\n.bd4-horizontal-spacing-between-items:before {\n  content: \"\\eded\";\n}\n.bd4-horizontal-tidy-up:before {\n  content: \"\\edee\";\n}\n.bd4-horse-zodiac:before {\n  content: \"\\edef\";\n}\n.bd4-hospital:before {\n  content: \"\\edf0\";\n}\n.bd4-hospital-bed:before {\n  content: \"\\edf1\";\n}\n.bd4-hospital-four:before {\n  content: \"\\edf2\";\n}\n.bd4-hospital-three:before {\n  content: \"\\edf3\";\n}\n.bd4-hospital-two:before {\n  content: \"\\edf4\";\n}\n.bd4-hot-air-balloon:before {\n  content: \"\\edf5\";\n}\n.bd4-hotel:before {\n  content: \"\\edf6\";\n}\n.bd4-hotel-do-not-clean:before {\n  content: \"\\edf7\";\n}\n.bd4-hotel-please-clean:before {\n  content: \"\\edf8\";\n}\n.bd4-hot-pot:before {\n  content: \"\\edf9\";\n}\n.bd4-hot-pot-one:before {\n  content: \"\\edfa\";\n}\n.bd4-hourglass:before {\n  content: \"\\edfb\";\n}\n.bd4-hourglass-full:before {\n  content: \"\\edfc\";\n}\n.bd4-hourglass-null:before {\n  content: \"\\edfd\";\n}\n.bd4-html-five:before {\n  content: \"\\edfe\";\n}\n.bd4-hunting-gear:before {\n  content: \"\\edff\";\n}\n.bd4-huoshanzhibo:before {\n  content: \"\\ee00\";\n}\n.bd4-icecream:before {\n  content: \"\\ee01\";\n}\n.bd4-icecream-five:before {\n  content: \"\\ee02\";\n}\n.bd4-icecream-four:before {\n  content: \"\\ee03\";\n}\n.bd4-icecream-one:before {\n  content: \"\\ee04\";\n}\n.bd4-icecream-three:before {\n  content: \"\\ee05\";\n}\n.bd4-icecream-two:before {\n  content: \"\\ee06\";\n}\n.bd4-id-card:before {\n  content: \"\\ee07\";\n}\n.bd4-id-card-h:before {\n  content: \"\\ee08\";\n}\n.bd4-id-card-v:before {\n  content: \"\\ee09\";\n}\n.bd4-i-mac:before {\n  content: \"\\ee0a\";\n}\n.bd4-image-files:before {\n  content: \"\\ee0b\";\n}\n.bd4-imbalance:before {\n  content: \"\\ee0c\";\n}\n.bd4-import-and-export:before {\n  content: \"\\ee0d\";\n}\n.bd4-inbox:before {\n  content: \"\\ee0e\";\n}\n.bd4-inbox-download-r:before {\n  content: \"\\ee0f\";\n}\n.bd4-inbox-in:before {\n  content: \"\\ee10\";\n}\n.bd4-inbox-out:before {\n  content: \"\\ee11\";\n}\n.bd4-inbox-r:before {\n  content: \"\\ee12\";\n}\n.bd4-inbox-success:before {\n  content: \"\\ee13\";\n}\n.bd4-inbox-success-r:before {\n  content: \"\\ee14\";\n}\n.bd4-inbox-upload-r:before {\n  content: \"\\ee15\";\n}\n.bd4-inclusive-gateway:before {\n  content: \"\\ee16\";\n}\n.bd4-income:before {\n  content: \"\\ee17\";\n}\n.bd4-income-one:before {\n  content: \"\\ee18\";\n}\n.bd4-incoming:before {\n  content: \"\\ee19\";\n}\n.bd4-increase:before {\n  content: \"\\ee1a\";\n}\n.bd4-increase-the-scale:before {\n  content: \"\\ee1b\";\n}\n.bd4-indent-left:before {\n  content: \"\\ee1c\";\n}\n.bd4-indent-right:before {\n  content: \"\\ee1d\";\n}\n.bd4-index-finger:before {\n  content: \"\\ee1e\";\n}\n.bd4-induction-lock:before {\n  content: \"\\ee1f\";\n}\n.bd4-industrial-scales:before {\n  content: \"\\ee20\";\n}\n.bd4-in-flight:before {\n  content: \"\\ee21\";\n}\n.bd4-info:before {\n  content: \"\\ee22\";\n}\n.bd4-infusion:before {\n  content: \"\\ee23\";\n}\n.bd4-injection:before {\n  content: \"\\ee24\";\n}\n.bd4-inline:before {\n  content: \"\\ee25\";\n}\n.bd4-inner-shadow-bottom-left:before {\n  content: \"\\ee26\";\n}\n.bd4-inner-shadow-bottom-right:before {\n  content: \"\\ee27\";\n}\n.bd4-inner-shadow-down:before {\n  content: \"\\ee28\";\n}\n.bd4-inner-shadow-left:before {\n  content: \"\\ee29\";\n}\n.bd4-inner-shadow-right:before {\n  content: \"\\ee2a\";\n}\n.bd4-inner-shadow-top-left:before {\n  content: \"\\ee2b\";\n}\n.bd4-inner-shadow-top-right:before {\n  content: \"\\ee2c\";\n}\n.bd4-inner-shadow-up:before {\n  content: \"\\ee2d\";\n}\n.bd4-insert-card:before {\n  content: \"\\ee2e\";\n}\n.bd4-insert-table:before {\n  content: \"\\ee2f\";\n}\n.bd4-inspection:before {\n  content: \"\\ee30\";\n}\n.bd4-instagram:before {\n  content: \"\\ee31\";\n}\n.bd4-instagram-one:before {\n  content: \"\\ee32\";\n}\n.bd4-install:before {\n  content: \"\\ee33\";\n}\n.bd4-instruction:before {\n  content: \"\\ee34\";\n}\n.bd4-intercom:before {\n  content: \"\\ee35\";\n}\n.bd4-intermediate-mode:before {\n  content: \"\\ee36\";\n}\n.bd4-internal-data:before {\n  content: \"\\ee37\";\n}\n.bd4-internal-expansion:before {\n  content: \"\\ee38\";\n}\n.bd4-internal-reduction:before {\n  content: \"\\ee39\";\n}\n.bd4-internal-transmission:before {\n  content: \"\\ee3a\";\n}\n.bd4-international:before {\n  content: \"\\ee3b\";\n}\n.bd4-intersection:before {\n  content: \"\\ee3c\";\n}\n.bd4-intersect-selection:before {\n  content: \"\\ee3d\";\n}\n.bd4-invalid-files:before {\n  content: \"\\ee3e\";\n}\n.bd4-invert-camera:before {\n  content: \"\\ee3f\";\n}\n.bd4-invert-left:before {\n  content: \"\\ee40\";\n}\n.bd4-invert-right:before {\n  content: \"\\ee41\";\n}\n.bd4-ios-face-recognition:before {\n  content: \"\\ee42\";\n}\n.bd4-ipad:before {\n  content: \"\\ee43\";\n}\n.bd4-ipad-one:before {\n  content: \"\\ee44\";\n}\n.bd4-iphone:before {\n  content: \"\\ee45\";\n}\n.bd4-ipo:before {\n  content: \"\\ee46\";\n}\n.bd4-iron:before {\n  content: \"\\ee47\";\n}\n.bd4-iron-disable:before {\n  content: \"\\ee48\";\n}\n.bd4-iron-three:before {\n  content: \"\\ee49\";\n}\n.bd4-iron-two:before {\n  content: \"\\ee4a\";\n}\n.bd4-iwatch:before {\n  content: \"\\ee4b\";\n}\n.bd4-iwatch-one:before {\n  content: \"\\ee4c\";\n}\n.bd4-iwatch-two:before {\n  content: \"\\ee4d\";\n}\n.bd4-jewelry:before {\n  content: \"\\ee4e\";\n}\n.bd4-jinritoutiao:before {\n  content: \"\\ee4f\";\n}\n.bd4-journey:before {\n  content: \"\\ee50\";\n}\n.bd4-joystick:before {\n  content: \"\\ee51\";\n}\n.bd4-juice:before {\n  content: \"\\ee52\";\n}\n.bd4-jump:before {\n  content: \"\\ee53\";\n}\n.bd4-kagi-map:before {\n  content: \"\\ee54\";\n}\n.bd4-kettle:before {\n  content: \"\\ee55\";\n}\n.bd4-kettle-one:before {\n  content: \"\\ee56\";\n}\n.bd4-key:before {\n  content: \"\\ee57\";\n}\n.bd4-keyboard:before {\n  content: \"\\ee58\";\n}\n.bd4-keyboard-one:before {\n  content: \"\\ee59\";\n}\n.bd4-keyhole:before {\n  content: \"\\ee5a\";\n}\n.bd4-keyline:before {\n  content: \"\\ee5b\";\n}\n.bd4-key-one:before {\n  content: \"\\ee5c\";\n}\n.bd4-key-two:before {\n  content: \"\\ee5d\";\n}\n.bd4-kitchen-knife:before {\n  content: \"\\ee5e\";\n}\n.bd4-knife-fork:before {\n  content: \"\\ee5f\";\n}\n.bd4-koala-bear:before {\n  content: \"\\ee60\";\n}\n.bd4-kungfu:before {\n  content: \"\\ee61\";\n}\n.bd4-label:before {\n  content: \"\\ee62\";\n}\n.bd4-ladder:before {\n  content: \"\\ee63\";\n}\n.bd4-ladder-one:before {\n  content: \"\\ee64\";\n}\n.bd4-lamp:before {\n  content: \"\\ee65\";\n}\n.bd4-landing:before {\n  content: \"\\ee66\";\n}\n.bd4-landscape:before {\n  content: \"\\ee67\";\n}\n.bd4-land-surveying:before {\n  content: \"\\ee68\";\n}\n.bd4-laptop:before {\n  content: \"\\ee69\";\n}\n.bd4-laptop-computer:before {\n  content: \"\\ee6a\";\n}\n.bd4-laptop-one:before {\n  content: \"\\ee6b\";\n}\n.bd4-lark:before {\n  content: \"\\ee6c\";\n}\n.bd4-lark-one:before {\n  content: \"\\ee6d\";\n}\n.bd4-lattice-pattern:before {\n  content: \"\\ee6e\";\n}\n.bd4-layers:before {\n  content: \"\\ee6f\";\n}\n.bd4-layout-five:before {\n  content: \"\\ee70\";\n}\n.bd4-layout-four:before {\n  content: \"\\ee71\";\n}\n.bd4-layout-one:before {\n  content: \"\\ee72\";\n}\n.bd4-layout-three:before {\n  content: \"\\ee73\";\n}\n.bd4-layout-two:before {\n  content: \"\\ee74\";\n}\n.bd4-leaf:before {\n  content: \"\\ee75\";\n}\n.bd4-leaves:before {\n  content: \"\\ee76\";\n}\n.bd4-leaves-one:before {\n  content: \"\\ee77\";\n}\n.bd4-leaves-two:before {\n  content: \"\\ee78\";\n}\n.bd4-led-diode:before {\n  content: \"\\ee79\";\n}\n.bd4-left:before {\n  content: \"\\ee7a\";\n}\n.bd4-left-alignment:before {\n  content: \"\\ee7b\";\n}\n.bd4-left-and-right-branch:before {\n  content: \"\\ee7c\";\n}\n.bd4-left-bar:before {\n  content: \"\\ee7d\";\n}\n.bd4-left-branch:before {\n  content: \"\\ee7e\";\n}\n.bd4-left-c:before {\n  content: \"\\ee7f\";\n}\n.bd4-left-expand:before {\n  content: \"\\ee80\";\n}\n.bd4-left-one:before {\n  content: \"\\ee81\";\n}\n.bd4-left-small:before {\n  content: \"\\ee82\";\n}\n.bd4-left-small-down:before {\n  content: \"\\ee83\";\n}\n.bd4-left-small-up:before {\n  content: \"\\ee84\";\n}\n.bd4-left-square:before {\n  content: \"\\ee85\";\n}\n.bd4-left-two:before {\n  content: \"\\ee86\";\n}\n.bd4-lemon:before {\n  content: \"\\ee87\";\n}\n.bd4-lens-alignment:before {\n  content: \"\\ee88\";\n}\n.bd4-leo:before {\n  content: \"\\ee89\";\n}\n.bd4-level:before {\n  content: \"\\ee8a\";\n}\n.bd4-level-adjustment:before {\n  content: \"\\ee8b\";\n}\n.bd4-level-eight-title:before {\n  content: \"\\ee8c\";\n}\n.bd4-level-five-title:before {\n  content: \"\\ee8d\";\n}\n.bd4-level-four-title:before {\n  content: \"\\ee8e\";\n}\n.bd4-level-nine-title:before {\n  content: \"\\ee8f\";\n}\n.bd4-level-seven-title:before {\n  content: \"\\ee90\";\n}\n.bd4-level-six-title:before {\n  content: \"\\ee91\";\n}\n.bd4-libra:before {\n  content: \"\\ee92\";\n}\n.bd4-lifebuoy:before {\n  content: \"\\ee93\";\n}\n.bd4-light:before {\n  content: \"\\ee94\";\n}\n.bd4-light-house:before {\n  content: \"\\ee95\";\n}\n.bd4-light-member:before {\n  content: \"\\ee96\";\n}\n.bd4-lightning:before {\n  content: \"\\ee97\";\n}\n.bd4-light-rain:before {\n  content: \"\\ee98\";\n}\n.bd4-like:before {\n  content: \"\\ee99\";\n}\n.bd4-lincoln:before {\n  content: \"\\ee9a\";\n}\n.bd4-link:before {\n  content: \"\\ee9b\";\n}\n.bd4-link-break:before {\n  content: \"\\ee9c\";\n}\n.bd4-link-cloud:before {\n  content: \"\\ee9d\";\n}\n.bd4-link-cloud-faild:before {\n  content: \"\\ee9e\";\n}\n.bd4-link-cloud-sucess:before {\n  content: \"\\ee9f\";\n}\n.bd4-link-four:before {\n  content: \"\\eea0\";\n}\n.bd4-link-in:before {\n  content: \"\\eea1\";\n}\n.bd4-link-interrupt:before {\n  content: \"\\eea2\";\n}\n.bd4-link-left:before {\n  content: \"\\eea3\";\n}\n.bd4-link-one:before {\n  content: \"\\eea4\";\n}\n.bd4-link-out:before {\n  content: \"\\eea5\";\n}\n.bd4-link-right:before {\n  content: \"\\eea6\";\n}\n.bd4-link-three:before {\n  content: \"\\eea7\";\n}\n.bd4-link-two:before {\n  content: \"\\eea8\";\n}\n.bd4-lip-gloss:before {\n  content: \"\\eea9\";\n}\n.bd4-lipstick:before {\n  content: \"\\eeaa\";\n}\n.bd4-lipstick-one:before {\n  content: \"\\eeab\";\n}\n.bd4-lip-tattoo:before {\n  content: \"\\eeac\";\n}\n.bd4-liqueur:before {\n  content: \"\\eead\";\n}\n.bd4-list:before {\n  content: \"\\eeae\";\n}\n.bd4-list-add:before {\n  content: \"\\eeaf\";\n}\n.bd4-list-alphabet:before {\n  content: \"\\eeb0\";\n}\n.bd4-list-bottom:before {\n  content: \"\\eeb1\";\n}\n.bd4-list-checkbox:before {\n  content: \"\\eeb2\";\n}\n.bd4-list-fail:before {\n  content: \"\\eeb3\";\n}\n.bd4-list-middle:before {\n  content: \"\\eeb4\";\n}\n.bd4-list-numbers:before {\n  content: \"\\eeb5\";\n}\n.bd4-list-one:before {\n  content: \"\\eeb6\";\n}\n.bd4-list-success:before {\n  content: \"\\eeb7\";\n}\n.bd4-list-top:before {\n  content: \"\\eeb8\";\n}\n.bd4-list-two:before {\n  content: \"\\eeb9\";\n}\n.bd4-list-view:before {\n  content: \"\\eeba\";\n}\n.bd4-loading:before {\n  content: \"\\eebb\";\n}\n.bd4-loading-four:before {\n  content: \"\\eebc\";\n}\n.bd4-loading-one:before {\n  content: \"\\eebd\";\n}\n.bd4-loading-three:before {\n  content: \"\\eebe\";\n}\n.bd4-loading-two:before {\n  content: \"\\eebf\";\n}\n.bd4-local:before {\n  content: \"\\eec0\";\n}\n.bd4-local-pin:before {\n  content: \"\\eec1\";\n}\n.bd4-local-two:before {\n  content: \"\\eec2\";\n}\n.bd4-lock:before {\n  content: \"\\eec3\";\n}\n.bd4-locking-computer:before {\n  content: \"\\eec4\";\n}\n.bd4-locking-laptop:before {\n  content: \"\\eec5\";\n}\n.bd4-locking-picture:before {\n  content: \"\\eec6\";\n}\n.bd4-locking-web:before {\n  content: \"\\eec7\";\n}\n.bd4-lock-one:before {\n  content: \"\\eec8\";\n}\n.bd4-log:before {\n  content: \"\\eec9\";\n}\n.bd4-login:before {\n  content: \"\\eeca\";\n}\n.bd4-logout:before {\n  content: \"\\eecb\";\n}\n.bd4-lollipop:before {\n  content: \"\\eecc\";\n}\n.bd4-loop-once:before {\n  content: \"\\eecd\";\n}\n.bd4-lotion:before {\n  content: \"\\eece\";\n}\n.bd4-lotus:before {\n  content: \"\\eecf\";\n}\n.bd4-loudly-crying-face:before {\n  content: \"\\eed0\";\n}\n.bd4-loudly-crying-face-whit-open-mouth:before {\n  content: \"\\eed1\";\n}\n.bd4-love-and-help:before {\n  content: \"\\eed2\";\n}\n.bd4-lower-branch:before {\n  content: \"\\eed3\";\n}\n.bd4-luggage:before {\n  content: \"\\eed4\";\n}\n.bd4-luminous:before {\n  content: \"\\eed5\";\n}\n.bd4-lung:before {\n  content: \"\\eed6\";\n}\n.bd4-macadamia-nut:before {\n  content: \"\\eed7\";\n}\n.bd4-mac-finder:before {\n  content: \"\\eed8\";\n}\n.bd4-magic:before {\n  content: \"\\eed9\";\n}\n.bd4-magic-hat:before {\n  content: \"\\eeda\";\n}\n.bd4-magic-wand:before {\n  content: \"\\eedb\";\n}\n.bd4-magnet:before {\n  content: \"\\eedc\";\n}\n.bd4-mail:before {\n  content: \"\\eedd\";\n}\n.bd4-mail-download:before {\n  content: \"\\eede\";\n}\n.bd4-mail-edit:before {\n  content: \"\\eedf\";\n}\n.bd4-maill-one:before {\n  content: \"\\eee0\";\n}\n.bd4-mail-open:before {\n  content: \"\\eee1\";\n}\n.bd4-mail-package:before {\n  content: \"\\eee2\";\n}\n.bd4-mail-review:before {\n  content: \"\\eee3\";\n}\n.bd4-mail-unpacking:before {\n  content: \"\\eee4\";\n}\n.bd4-makeups:before {\n  content: \"\\eee5\";\n}\n.bd4-male:before {\n  content: \"\\eee6\";\n}\n.bd4-mall-bag:before {\n  content: \"\\eee7\";\n}\n.bd4-manual-gear:before {\n  content: \"\\eee8\";\n}\n.bd4-many-to-many:before {\n  content: \"\\eee9\";\n}\n.bd4-map-distance:before {\n  content: \"\\eeea\";\n}\n.bd4-map-draw:before {\n  content: \"\\eeeb\";\n}\n.bd4-map-road:before {\n  content: \"\\eeec\";\n}\n.bd4-map-road-two:before {\n  content: \"\\eeed\";\n}\n.bd4-map-two:before {\n  content: \"\\eeee\";\n}\n.bd4-margin:before {\n  content: \"\\eeef\";\n}\n.bd4-margin-one:before {\n  content: \"\\eef0\";\n}\n.bd4-mark:before {\n  content: \"\\eef1\";\n}\n.bd4-market:before {\n  content: \"\\eef2\";\n}\n.bd4-market-analysis:before {\n  content: \"\\eef3\";\n}\n.bd4-mascara:before {\n  content: \"\\eef4\";\n}\n.bd4-mask:before {\n  content: \"\\eef5\";\n}\n.bd4-mask-one:before {\n  content: \"\\eef6\";\n}\n.bd4-mask-two:before {\n  content: \"\\eef7\";\n}\n.bd4-maslow-pyramids:before {\n  content: \"\\eef8\";\n}\n.bd4-massage-chair:before {\n  content: \"\\eef9\";\n}\n.bd4-massage-chair-one:before {\n  content: \"\\eefa\";\n}\n.bd4-massage-table:before {\n  content: \"\\eefb\";\n}\n.bd4-master:before {\n  content: \"\\eefc\";\n}\n.bd4-material:before {\n  content: \"\\eefd\";\n}\n.bd4-material-three:before {\n  content: \"\\eefe\";\n}\n.bd4-material-two:before {\n  content: \"\\eeff\";\n}\n.bd4-maximum:before {\n  content: \"\\ef00\";\n}\n.bd4-maya:before {\n  content: \"\\ef01\";\n}\n.bd4-mayura-gesture:before {\n  content: \"\\ef02\";\n}\n.bd4-me:before {\n  content: \"\\ef03\";\n}\n.bd4-measuring-cup:before {\n  content: \"\\ef04\";\n}\n.bd4-medal-one:before {\n  content: \"\\ef05\";\n}\n.bd4-mediaeditor:before {\n  content: \"\\ef06\";\n}\n.bd4-medical-box:before {\n  content: \"\\ef07\";\n}\n.bd4-medical-files:before {\n  content: \"\\ef08\";\n}\n.bd4-medical-mark:before {\n  content: \"\\ef09\";\n}\n.bd4-medication-time:before {\n  content: \"\\ef0a\";\n}\n.bd4-medicine-bottle:before {\n  content: \"\\ef0b\";\n}\n.bd4-medicine-bottle-one:before {\n  content: \"\\ef0c\";\n}\n.bd4-medicine-chest:before {\n  content: \"\\ef0d\";\n}\n.bd4-memory:before {\n  content: \"\\ef0e\";\n}\n.bd4-memory-card:before {\n  content: \"\\ef0f\";\n}\n.bd4-memory-card-one:before {\n  content: \"\\ef10\";\n}\n.bd4-memory-one:before {\n  content: \"\\ef11\";\n}\n.bd4-men-jacket:before {\n  content: \"\\ef12\";\n}\n.bd4-menu-fold:before {\n  content: \"\\ef13\";\n}\n.bd4-menu-fold-one:before {\n  content: \"\\ef14\";\n}\n.bd4-menu-unfold:before {\n  content: \"\\ef15\";\n}\n.bd4-menu-unfold-one:before {\n  content: \"\\ef16\";\n}\n.bd4-merge:before {\n  content: \"\\ef17\";\n}\n.bd4-merge-cells:before {\n  content: \"\\ef18\";\n}\n.bd4-message:before {\n  content: \"\\ef19\";\n}\n.bd4-message-emoji:before {\n  content: \"\\ef1a\";\n}\n.bd4-message-failed:before {\n  content: \"\\ef1b\";\n}\n.bd4-message-one:before {\n  content: \"\\ef1c\";\n}\n.bd4-message-privacy:before {\n  content: \"\\ef1d\";\n}\n.bd4-messages:before {\n  content: \"\\ef1e\";\n}\n.bd4-message-search:before {\n  content: \"\\ef1f\";\n}\n.bd4-message-security:before {\n  content: \"\\ef20\";\n}\n.bd4-message-sent:before {\n  content: \"\\ef21\";\n}\n.bd4-messages-one:before {\n  content: \"\\ef22\";\n}\n.bd4-message-success:before {\n  content: \"\\ef23\";\n}\n.bd4-message-unread:before {\n  content: \"\\ef24\";\n}\n.bd4-microphone:before {\n  content: \"\\ef25\";\n}\n.bd4-microphone-one:before {\n  content: \"\\ef26\";\n}\n.bd4-microscope:before {\n  content: \"\\ef27\";\n}\n.bd4-microscope-one:before {\n  content: \"\\ef28\";\n}\n.bd4-micro-sd:before {\n  content: \"\\ef29\";\n}\n.bd4-micro-slr-camera:before {\n  content: \"\\ef2a\";\n}\n.bd4-microwave-oven:before {\n  content: \"\\ef2b\";\n}\n.bd4-microwaves:before {\n  content: \"\\ef2c\";\n}\n.bd4-middle-finger:before {\n  content: \"\\ef2d\";\n}\n.bd4-milk:before {\n  content: \"\\ef2e\";\n}\n.bd4-milk-one:before {\n  content: \"\\ef2f\";\n}\n.bd4-min:before {\n  content: \"\\ef30\";\n}\n.bd4-mindmap-list:before {\n  content: \"\\ef31\";\n}\n.bd4-mindmap-map:before {\n  content: \"\\ef32\";\n}\n.bd4-mind-mapping:before {\n  content: \"\\ef33\";\n}\n.bd4-mini-sd-card:before {\n  content: \"\\ef34\";\n}\n.bd4-minus:before {\n  content: \"\\ef35\";\n}\n.bd4-minus-the-bottom:before {\n  content: \"\\ef36\";\n}\n.bd4-minus-the-top:before {\n  content: \"\\ef37\";\n}\n.bd4-mirror:before {\n  content: \"\\ef38\";\n}\n.bd4-mirror-one:before {\n  content: \"\\ef39\";\n}\n.bd4-mirror-two:before {\n  content: \"\\ef3a\";\n}\n.bd4-misaligned-semicircle:before {\n  content: \"\\ef3b\";\n}\n.bd4-mitsubishi:before {\n  content: \"\\ef3c\";\n}\n.bd4-modify:before {\n  content: \"\\ef3d\";\n}\n.bd4-modify-two:before {\n  content: \"\\ef3e\";\n}\n.bd4-monitor:before {\n  content: \"\\ef3f\";\n}\n.bd4-monitor-camera:before {\n  content: \"\\ef40\";\n}\n.bd4-monitor-off:before {\n  content: \"\\ef41\";\n}\n.bd4-monitor-one:before {\n  content: \"\\ef42\";\n}\n.bd4-monitor-two:before {\n  content: \"\\ef43\";\n}\n.bd4-monkey:before {\n  content: \"\\ef44\";\n}\n.bd4-monkey-zodiac:before {\n  content: \"\\ef45\";\n}\n.bd4-monument-one:before {\n  content: \"\\ef46\";\n}\n.bd4-monument-two:before {\n  content: \"\\ef47\";\n}\n.bd4-moon:before {\n  content: \"\\ef48\";\n}\n.bd4-more:before {\n  content: \"\\ef49\";\n}\n.bd4-more-app:before {\n  content: \"\\ef4a\";\n}\n.bd4-more-four:before {\n  content: \"\\ef4b\";\n}\n.bd4-more-one:before {\n  content: \"\\ef4c\";\n}\n.bd4-more-three:before {\n  content: \"\\ef4d\";\n}\n.bd4-more-two:before {\n  content: \"\\ef4e\";\n}\n.bd4-mosaic:before {\n  content: \"\\ef4f\";\n}\n.bd4-mountain:before {\n  content: \"\\ef50\";\n}\n.bd4-mounted:before {\n  content: \"\\ef51\";\n}\n.bd4-mouse:before {\n  content: \"\\ef52\";\n}\n.bd4-mouse-one:before {\n  content: \"\\ef53\";\n}\n.bd4-mouse-zodiac:before {\n  content: \"\\ef54\";\n}\n.bd4-mouth:before {\n  content: \"\\ef55\";\n}\n.bd4-move:before {\n  content: \"\\ef56\";\n}\n.bd4-move-in:before {\n  content: \"\\ef57\";\n}\n.bd4-move-in-one:before {\n  content: \"\\ef58\";\n}\n.bd4-move-one:before {\n  content: \"\\ef59\";\n}\n.bd4-movie:before {\n  content: \"\\ef5a\";\n}\n.bd4-movie-board:before {\n  content: \"\\ef5b\";\n}\n.bd4-moving-picture:before {\n  content: \"\\ef5c\";\n}\n.bd4-multicast:before {\n  content: \"\\ef5d\";\n}\n.bd4-multi-circular:before {\n  content: \"\\ef5e\";\n}\n.bd4-multi-function-knife:before {\n  content: \"\\ef5f\";\n}\n.bd4-multilayer-sphere:before {\n  content: \"\\ef60\";\n}\n.bd4-multi-picture-carousel:before {\n  content: \"\\ef61\";\n}\n.bd4-multi-rectangle:before {\n  content: \"\\ef62\";\n}\n.bd4-multi-ring:before {\n  content: \"\\ef63\";\n}\n.bd4-multi-triangular:before {\n  content: \"\\ef64\";\n}\n.bd4-multi-triangular-four:before {\n  content: \"\\ef65\";\n}\n.bd4-multi-triangular-three:before {\n  content: \"\\ef66\";\n}\n.bd4-multi-triangular-two:before {\n  content: \"\\ef67\";\n}\n.bd4-muscle:before {\n  content: \"\\ef68\";\n}\n.bd4-museum-one:before {\n  content: \"\\ef69\";\n}\n.bd4-museum-two:before {\n  content: \"\\ef6a\";\n}\n.bd4-music:before {\n  content: \"\\ef6b\";\n}\n.bd4-music-cd:before {\n  content: \"\\ef6c\";\n}\n.bd4-music-list:before {\n  content: \"\\ef6d\";\n}\n.bd4-music-menu:before {\n  content: \"\\ef6e\";\n}\n.bd4-music-one:before {\n  content: \"\\ef6f\";\n}\n.bd4-music-rhythm:before {\n  content: \"\\ef70\";\n}\n.bd4-mute:before {\n  content: \"\\ef71\";\n}\n.bd4-nail-polish:before {\n  content: \"\\ef72\";\n}\n.bd4-nail-polish-one:before {\n  content: \"\\ef73\";\n}\n.bd4-nasal:before {\n  content: \"\\ef74\";\n}\n.bd4-natural-mode:before {\n  content: \"\\ef75\";\n}\n.bd4-navigation:before {\n  content: \"\\ef76\";\n}\n.bd4-necktie:before {\n  content: \"\\ef77\";\n}\n.bd4-needle:before {\n  content: \"\\ef78\";\n}\n.bd4-negative-dynamics:before {\n  content: \"\\ef79\";\n}\n.bd4-nested-arrows:before {\n  content: \"\\ef7a\";\n}\n.bd4-nests:before {\n  content: \"\\ef7b\";\n}\n.bd4-network-drive:before {\n  content: \"\\ef7c\";\n}\n.bd4-network-tree:before {\n  content: \"\\ef7d\";\n}\n.bd4-neural:before {\n  content: \"\\ef7e\";\n}\n.bd4-neutral-face:before {\n  content: \"\\ef7f\";\n}\n.bd4-new-afferent:before {\n  content: \"\\ef80\";\n}\n.bd4-new-computer:before {\n  content: \"\\ef81\";\n}\n.bd4-new-dianziqian:before {\n  content: \"\\ef82\";\n}\n.bd4-new-efferent:before {\n  content: \"\\ef83\";\n}\n.bd4-new-lark:before {\n  content: \"\\ef84\";\n}\n.bd4-newlybuild:before {\n  content: \"\\ef85\";\n}\n.bd4-new-picture:before {\n  content: \"\\ef86\";\n}\n.bd4-newspaper-folding:before {\n  content: \"\\ef87\";\n}\n.bd4-next:before {\n  content: \"\\ef88\";\n}\n.bd4-nine-key:before {\n  content: \"\\ef89\";\n}\n.bd4-nine-points-connected:before {\n  content: \"\\ef8a\";\n}\n.bd4-nintendo-switch:before {\n  content: \"\\ef8b\";\n}\n.bd4-nmr:before {\n  content: \"\\ef8c\";\n}\n.bd4-node-flat:before {\n  content: \"\\ef8d\";\n}\n.bd4-node-round:before {\n  content: \"\\ef8e\";\n}\n.bd4-node-square:before {\n  content: \"\\ef8f\";\n}\n.bd4-noodles:before {\n  content: \"\\ef90\";\n}\n.bd4-no-shooting:before {\n  content: \"\\ef91\";\n}\n.bd4-notebook:before {\n  content: \"\\ef92\";\n}\n.bd4-notebook-and-pen:before {\n  content: \"\\ef93\";\n}\n.bd4-notebook-one:before {\n  content: \"\\ef94\";\n}\n.bd4-notepad:before {\n  content: \"\\ef95\";\n}\n.bd4-notes:before {\n  content: \"\\ef96\";\n}\n.bd4-nuclear-plant:before {\n  content: \"\\ef97\";\n}\n.bd4-nurse-cap:before {\n  content: \"\\ef98\";\n}\n.bd4-nut:before {\n  content: \"\\ef99\";\n}\n.bd4-nutrition:before {\n  content: \"\\ef9a\";\n}\n.bd4-oceanengine:before {\n  content: \"\\ef9b\";\n}\n.bd4-octagon:before {\n  content: \"\\ef9c\";\n}\n.bd4-off-screen:before {\n  content: \"\\ef9d\";\n}\n.bd4-off-screen-one:before {\n  content: \"\\ef9e\";\n}\n.bd4-off-screen-two:before {\n  content: \"\\ef9f\";\n}\n.bd4-oil-industry:before {\n  content: \"\\efa0\";\n}\n.bd4-okay:before {\n  content: \"\\efa1\";\n}\n.bd4-one:before {\n  content: \"\\efa2\";\n}\n.bd4-one-key:before {\n  content: \"\\efa3\";\n}\n.bd4-one-one:before {\n  content: \"\\efa4\";\n}\n.bd4-onesies:before {\n  content: \"\\efa5\";\n}\n.bd4-one-third-rotation:before {\n  content: \"\\efa6\";\n}\n.bd4-one-to-many:before {\n  content: \"\\efa7\";\n}\n.bd4-one-to-one:before {\n  content: \"\\efa8\";\n}\n.bd4-online-meeting:before {\n  content: \"\\efa9\";\n}\n.bd4-open:before {\n  content: \"\\efaa\";\n}\n.bd4-open-an-account:before {\n  content: \"\\efab\";\n}\n.bd4-open-door:before {\n  content: \"\\efac\";\n}\n.bd4-open-one:before {\n  content: \"\\efad\";\n}\n.bd4-optimize:before {\n  content: \"\\efae\";\n}\n.bd4-optional:before {\n  content: \"\\efaf\";\n}\n.bd4-orange:before {\n  content: \"\\efb0\";\n}\n.bd4-orange-one:before {\n  content: \"\\efb1\";\n}\n.bd4-orange-station:before {\n  content: \"\\efb2\";\n}\n.bd4-order:before {\n  content: \"\\efb3\";\n}\n.bd4-ordered-list:before {\n  content: \"\\efb4\";\n}\n.bd4-orthopedic:before {\n  content: \"\\efb5\";\n}\n.bd4-oscillator:before {\n  content: \"\\efb6\";\n}\n.bd4-other:before {\n  content: \"\\efb7\";\n}\n.bd4-outbound:before {\n  content: \"\\efb8\";\n}\n.bd4-outdoor:before {\n  content: \"\\efb9\";\n}\n.bd4-outgoing:before {\n  content: \"\\efba\";\n}\n.bd4-oval-love:before {\n  content: \"\\efbb\";\n}\n.bd4-oval-love-two:before {\n  content: \"\\efbc\";\n}\n.bd4-oval-one:before {\n  content: \"\\efbd\";\n}\n.bd4-oven:before {\n  content: \"\\efbe\";\n}\n.bd4-oven-tray:before {\n  content: \"\\efbf\";\n}\n.bd4-overall-reduction:before {\n  content: \"\\efc0\";\n}\n.bd4-owl:before {\n  content: \"\\efc1\";\n}\n.bd4-pacifier:before {\n  content: \"\\efc2\";\n}\n.bd4-pad:before {\n  content: \"\\efc3\";\n}\n.bd4-page:before {\n  content: \"\\efc4\";\n}\n.bd4-page-template:before {\n  content: \"\\efc5\";\n}\n.bd4-pagoda:before {\n  content: \"\\efc6\";\n}\n.bd4-paint:before {\n  content: \"\\efc7\";\n}\n.bd4-painted-eggshell:before {\n  content: \"\\efc8\";\n}\n.bd4-painted-screen:before {\n  content: \"\\efc9\";\n}\n.bd4-palace:before {\n  content: \"\\efca\";\n}\n.bd4-palm:before {\n  content: \"\\efcb\";\n}\n.bd4-panda:before {\n  content: \"\\efcc\";\n}\n.bd4-pangle:before {\n  content: \"\\efcd\";\n}\n.bd4-panorama-horizontal:before {\n  content: \"\\efce\";\n}\n.bd4-panties:before {\n  content: \"\\efcf\";\n}\n.bd4-paperclip:before {\n  content: \"\\efd0\";\n}\n.bd4-paper-money:before {\n  content: \"\\efd1\";\n}\n.bd4-paper-money-two:before {\n  content: \"\\efd2\";\n}\n.bd4-paper-ship:before {\n  content: \"\\efd3\";\n}\n.bd4-parabola:before {\n  content: \"\\efd4\";\n}\n.bd4-parachute:before {\n  content: \"\\efd5\";\n}\n.bd4-paragraph-alphabet:before {\n  content: \"\\efd6\";\n}\n.bd4-paragraph-break:before {\n  content: \"\\efd7\";\n}\n.bd4-paragraph-break-two:before {\n  content: \"\\efd8\";\n}\n.bd4-paragraph-cut:before {\n  content: \"\\efd9\";\n}\n.bd4-paragraph-rectangle:before {\n  content: \"\\efda\";\n}\n.bd4-paragraph-round:before {\n  content: \"\\efdb\";\n}\n.bd4-paragraph-triangle:before {\n  content: \"\\efdc\";\n}\n.bd4-paragraph-unfold:before {\n  content: \"\\efdd\";\n}\n.bd4-parallel-gateway:before {\n  content: \"\\efde\";\n}\n.bd4-parallelogram:before {\n  content: \"\\efdf\";\n}\n.bd4-parenting-book:before {\n  content: \"\\efe0\";\n}\n.bd4-parking:before {\n  content: \"\\efe1\";\n}\n.bd4-party-balloon:before {\n  content: \"\\efe2\";\n}\n.bd4-passport:before {\n  content: \"\\efe3\";\n}\n.bd4-passport-one:before {\n  content: \"\\efe4\";\n}\n.bd4-pause:before {\n  content: \"\\efe5\";\n}\n.bd4-pause-one:before {\n  content: \"\\efe6\";\n}\n.bd4-pay-code:before {\n  content: \"\\efe7\";\n}\n.bd4-pay-code-one:before {\n  content: \"\\efe8\";\n}\n.bd4-pay-code-two:before {\n  content: \"\\efe9\";\n}\n.bd4-payment-method:before {\n  content: \"\\efea\";\n}\n.bd4-paypal:before {\n  content: \"\\efeb\";\n}\n.bd4-peach:before {\n  content: \"\\efec\";\n}\n.bd4-pear:before {\n  content: \"\\efed\";\n}\n.bd4-pearl-of-the-orient:before {\n  content: \"\\efee\";\n}\n.bd4-peas:before {\n  content: \"\\efef\";\n}\n.bd4-pencil:before {\n  content: \"\\eff0\";\n}\n.bd4-pennant:before {\n  content: \"\\eff1\";\n}\n.bd4-pentagon-one:before {\n  content: \"\\eff2\";\n}\n.bd4-people:before {\n  content: \"\\eff3\";\n}\n.bd4-people-bottom:before {\n  content: \"\\eff4\";\n}\n.bd4-people-bottom-card:before {\n  content: \"\\eff5\";\n}\n.bd4-people-delete:before {\n  content: \"\\eff6\";\n}\n.bd4-people-delete-one:before {\n  content: \"\\eff7\";\n}\n.bd4-people-download:before {\n  content: \"\\eff8\";\n}\n.bd4-people-left:before {\n  content: \"\\eff9\";\n}\n.bd4-people-minus:before {\n  content: \"\\effa\";\n}\n.bd4-people-minus-one:before {\n  content: \"\\effb\";\n}\n.bd4-people-plus:before {\n  content: \"\\effc\";\n}\n.bd4-people-plus-one:before {\n  content: \"\\effd\";\n}\n.bd4-people-right:before {\n  content: \"\\effe\";\n}\n.bd4-peoples:before {\n  content: \"\\efff\";\n}\n.bd4-people-safe:before {\n  content: \"\\f000\";\n}\n.bd4-people-safe-one:before {\n  content: \"\\f001\";\n}\n.bd4-people-search:before {\n  content: \"\\f002\";\n}\n.bd4-people-search-one:before {\n  content: \"\\f003\";\n}\n.bd4-people-speak:before {\n  content: \"\\f004\";\n}\n.bd4-peoples-two:before {\n  content: \"\\f005\";\n}\n.bd4-people-top:before {\n  content: \"\\f006\";\n}\n.bd4-people-top-card:before {\n  content: \"\\f007\";\n}\n.bd4-people-unknown:before {\n  content: \"\\f008\";\n}\n.bd4-people-upload:before {\n  content: \"\\f009\";\n}\n.bd4-percentage:before {\n  content: \"\\f00a\";\n}\n.bd4-performance:before {\n  content: \"\\f00b\";\n}\n.bd4-perfume:before {\n  content: \"\\f00c\";\n}\n.bd4-perfumer-bottle:before {\n  content: \"\\f00d\";\n}\n.bd4-period:before {\n  content: \"\\f00e\";\n}\n.bd4-permissions:before {\n  content: \"\\f00f\";\n}\n.bd4-personal-collection:before {\n  content: \"\\f010\";\n}\n.bd4-personal-privacy:before {\n  content: \"\\f011\";\n}\n.bd4-perspective:before {\n  content: \"\\f012\";\n}\n.bd4-pesticide:before {\n  content: \"\\f013\";\n}\n.bd4-petrol:before {\n  content: \"\\f014\";\n}\n.bd4-phone:before {\n  content: \"\\f015\";\n}\n.bd4-phone-booth:before {\n  content: \"\\f016\";\n}\n.bd4-phone-call:before {\n  content: \"\\f017\";\n}\n.bd4-phone-incoming:before {\n  content: \"\\f018\";\n}\n.bd4-phone-incoming-one:before {\n  content: \"\\f019\";\n}\n.bd4-phone-missed:before {\n  content: \"\\f01a\";\n}\n.bd4-phone-off:before {\n  content: \"\\f01b\";\n}\n.bd4-phone-one:before {\n  content: \"\\f01c\";\n}\n.bd4-phone-outgoing:before {\n  content: \"\\f01d\";\n}\n.bd4-phone-outgoing-one:before {\n  content: \"\\f01e\";\n}\n.bd4-phone-telephone:before {\n  content: \"\\f01f\";\n}\n.bd4-phone-two:before {\n  content: \"\\f020\";\n}\n.bd4-phone-video-call:before {\n  content: \"\\f021\";\n}\n.bd4-phonograph:before {\n  content: \"\\f022\";\n}\n.bd4-photograph:before {\n  content: \"\\f023\";\n}\n.bd4-piano:before {\n  content: \"\\f024\";\n}\n.bd4-pic:before {\n  content: \"\\f025\";\n}\n.bd4-pic-one:before {\n  content: \"\\f026\";\n}\n.bd4-picture:before {\n  content: \"\\f027\";\n}\n.bd4-picture-album:before {\n  content: \"\\f028\";\n}\n.bd4-picture-one:before {\n  content: \"\\f029\";\n}\n.bd4-pie:before {\n  content: \"\\f02a\";\n}\n.bd4-pie-five:before {\n  content: \"\\f02b\";\n}\n.bd4-pie-four:before {\n  content: \"\\f02c\";\n}\n.bd4-pie-one:before {\n  content: \"\\f02d\";\n}\n.bd4-pie-seven:before {\n  content: \"\\f02e\";\n}\n.bd4-pie-six:before {\n  content: \"\\f02f\";\n}\n.bd4-pie-three:before {\n  content: \"\\f030\";\n}\n.bd4-pie-two:before {\n  content: \"\\f031\";\n}\n.bd4-pig:before {\n  content: \"\\f032\";\n}\n.bd4-pigeon:before {\n  content: \"\\f033\";\n}\n.bd4-pig-zodiac:before {\n  content: \"\\f034\";\n}\n.bd4-pill:before {\n  content: \"\\f035\";\n}\n.bd4-pills:before {\n  content: \"\\f036\";\n}\n.bd4-pin:before {\n  content: \"\\f037\";\n}\n.bd4-pineapple:before {\n  content: \"\\f038\";\n}\n.bd4-pinwheel:before {\n  content: \"\\f039\";\n}\n.bd4-pisces:before {\n  content: \"\\f03a\";\n}\n.bd4-pivot-table:before {\n  content: \"\\f03b\";\n}\n.bd4-plan:before {\n  content: \"\\f03c\";\n}\n.bd4-planet:before {\n  content: \"\\f03d\";\n}\n.bd4-plastic-surgery:before {\n  content: \"\\f03e\";\n}\n.bd4-platte:before {\n  content: \"\\f03f\";\n}\n.bd4-play:before {\n  content: \"\\f040\";\n}\n.bd4-playback-progress:before {\n  content: \"\\f041\";\n}\n.bd4-play-basketball:before {\n  content: \"\\f042\";\n}\n.bd4-play-cycle:before {\n  content: \"\\f043\";\n}\n.bd4-play-once:before {\n  content: \"\\f044\";\n}\n.bd4-play-one:before {\n  content: \"\\f045\";\n}\n.bd4-play-two:before {\n  content: \"\\f046\";\n}\n.bd4-play-volleyball:before {\n  content: \"\\f047\";\n}\n.bd4-play-wrong:before {\n  content: \"\\f048\";\n}\n.bd4-plug:before {\n  content: \"\\f049\";\n}\n.bd4-plug-one:before {\n  content: \"\\f04a\";\n}\n.bd4-plus:before {\n  content: \"\\f04b\";\n}\n.bd4-plus-cross:before {\n  content: \"\\f04c\";\n}\n.bd4-point:before {\n  content: \"\\f04d\";\n}\n.bd4-point-out:before {\n  content: \"\\f04e\";\n}\n.bd4-pokeball-one:before {\n  content: \"\\f04f\";\n}\n.bd4-poker:before {\n  content: \"\\f050\";\n}\n.bd4-popcorn:before {\n  content: \"\\f051\";\n}\n.bd4-popcorn-one:before {\n  content: \"\\f052\";\n}\n.bd4-positive-dynamics:before {\n  content: \"\\f053\";\n}\n.bd4-pot:before {\n  content: \"\\f054\";\n}\n.bd4-potentiometer:before {\n  content: \"\\f055\";\n}\n.bd4-pound:before {\n  content: \"\\f056\";\n}\n.bd4-pound-sign:before {\n  content: \"\\f057\";\n}\n.bd4-pouting-face:before {\n  content: \"\\f058\";\n}\n.bd4-powder:before {\n  content: \"\\f059\";\n}\n.bd4-power:before {\n  content: \"\\f05a\";\n}\n.bd4-powerpoint:before {\n  content: \"\\f05b\";\n}\n.bd4-power-supply:before {\n  content: \"\\f05c\";\n}\n.bd4-power-supply-one:before {\n  content: \"\\f05d\";\n}\n.bd4-ppt:before {\n  content: \"\\f05e\";\n}\n.bd4-pregnant-women:before {\n  content: \"\\f05f\";\n}\n.bd4-preschool:before {\n  content: \"\\f060\";\n}\n.bd4-prescription:before {\n  content: \"\\f061\";\n}\n.bd4-press:before {\n  content: \"\\f062\";\n}\n.bd4-preview-close:before {\n  content: \"\\f063\";\n}\n.bd4-preview-close-one:before {\n  content: \"\\f064\";\n}\n.bd4-preview-open:before {\n  content: \"\\f065\";\n}\n.bd4-printer:before {\n  content: \"\\f066\";\n}\n.bd4-printer-one:before {\n  content: \"\\f067\";\n}\n.bd4-printer-two:before {\n  content: \"\\f068\";\n}\n.bd4-prison:before {\n  content: \"\\f069\";\n}\n.bd4-process-line:before {\n  content: \"\\f06a\";\n}\n.bd4-projector:before {\n  content: \"\\f06b\";\n}\n.bd4-projector-one:before {\n  content: \"\\f06c\";\n}\n.bd4-projector-three:before {\n  content: \"\\f06d\";\n}\n.bd4-projector-two:before {\n  content: \"\\f06e\";\n}\n.bd4-proportional-scaling:before {\n  content: \"\\f06f\";\n}\n.bd4-protect:before {\n  content: \"\\f070\";\n}\n.bd4-protection:before {\n  content: \"\\f071\";\n}\n.bd4-public-toilet:before {\n  content: \"\\f072\";\n}\n.bd4-pull-door:before {\n  content: \"\\f073\";\n}\n.bd4-pull-requests:before {\n  content: \"\\f074\";\n}\n.bd4-pumpkin:before {\n  content: \"\\f075\";\n}\n.bd4-pure-natural:before {\n  content: \"\\f076\";\n}\n.bd4-push-door:before {\n  content: \"\\f077\";\n}\n.bd4-pushpin:before {\n  content: \"\\f078\";\n}\n.bd4-puzzle:before {\n  content: \"\\f079\";\n}\n.bd4-pyramid:before {\n  content: \"\\f07a\";\n}\n.bd4-pyramid-one:before {\n  content: \"\\f07b\";\n}\n.bd4-qingniao-clue:before {\n  content: \"\\f07c\";\n}\n.bd4-qiyehao:before {\n  content: \"\\f07d\";\n}\n.bd4-quadrangular-pyramid:before {\n  content: \"\\f07e\";\n}\n.bd4-quadrilateral:before {\n  content: \"\\f07f\";\n}\n.bd4-quote:before {\n  content: \"\\f080\";\n}\n.bd4-rabbit:before {\n  content: \"\\f081\";\n}\n.bd4-rabbit-zodiac:before {\n  content: \"\\f082\";\n}\n.bd4-radar:before {\n  content: \"\\f083\";\n}\n.bd4-radar-chart:before {\n  content: \"\\f084\";\n}\n.bd4-radar-three:before {\n  content: \"\\f085\";\n}\n.bd4-radar-two:before {\n  content: \"\\f086\";\n}\n.bd4-radiation:before {\n  content: \"\\f087\";\n}\n.bd4-radio:before {\n  content: \"\\f088\";\n}\n.bd4-radio-nanny:before {\n  content: \"\\f089\";\n}\n.bd4-radio-one:before {\n  content: \"\\f08a\";\n}\n.bd4-radio-two:before {\n  content: \"\\f08b\";\n}\n.bd4-radish:before {\n  content: \"\\f08c\";\n}\n.bd4-radish-one:before {\n  content: \"\\f08d\";\n}\n.bd4-railway:before {\n  content: \"\\f08e\";\n}\n.bd4-ranking:before {\n  content: \"\\f08f\";\n}\n.bd4-ranking-list:before {\n  content: \"\\f090\";\n}\n.bd4-rattle:before {\n  content: \"\\f091\";\n}\n.bd4-rattle-one:before {\n  content: \"\\f092\";\n}\n.bd4-razor:before {\n  content: \"\\f093\";\n}\n.bd4-read-book:before {\n  content: \"\\f094\";\n}\n.bd4-receive:before {\n  content: \"\\f095\";\n}\n.bd4-receiver:before {\n  content: \"\\f096\";\n}\n.bd4-recent-views-sort:before {\n  content: \"\\f097\";\n}\n.bd4-record:before {\n  content: \"\\f098\";\n}\n.bd4-record-disc:before {\n  content: \"\\f099\";\n}\n.bd4-record-player:before {\n  content: \"\\f09a\";\n}\n.bd4-rectangle:before {\n  content: \"\\f09b\";\n}\n.bd4-rectangle-one:before {\n  content: \"\\f09c\";\n}\n.bd4-rectangle-small:before {\n  content: \"\\f09d\";\n}\n.bd4-rectangle-tear:before {\n  content: \"\\f09e\";\n}\n.bd4-rectangle-x:before {\n  content: \"\\f09f\";\n}\n.bd4-rectangular-circular-connection:before {\n  content: \"\\f0a0\";\n}\n.bd4-rectangular-circular-separation:before {\n  content: \"\\f0a1\";\n}\n.bd4-rectangular-vertebra:before {\n  content: \"\\f0a2\";\n}\n.bd4-recycle-bin:before {\n  content: \"\\f0a3\";\n}\n.bd4-recycling:before {\n  content: \"\\f0a4\";\n}\n.bd4-recycling-pool:before {\n  content: \"\\f0a5\";\n}\n.bd4-red-cross:before {\n  content: \"\\f0a6\";\n}\n.bd4-red-envelope:before {\n  content: \"\\f0a7\";\n}\n.bd4-red-envelopes:before {\n  content: \"\\f0a8\";\n}\n.bd4-redo:before {\n  content: \"\\f0a9\";\n}\n.bd4-reduce:before {\n  content: \"\\f0aa\";\n}\n.bd4-reduce-decimal-places:before {\n  content: \"\\f0ab\";\n}\n.bd4-reduce-one:before {\n  content: \"\\f0ac\";\n}\n.bd4-reduce-two:before {\n  content: \"\\f0ad\";\n}\n.bd4-reduce-user:before {\n  content: \"\\f0ae\";\n}\n.bd4-reel:before {\n  content: \"\\f0af\";\n}\n.bd4-refraction:before {\n  content: \"\\f0b0\";\n}\n.bd4-refresh:before {\n  content: \"\\f0b1\";\n}\n.bd4-refresh-one:before {\n  content: \"\\f0b2\";\n}\n.bd4-refrigerator:before {\n  content: \"\\f0b3\";\n}\n.bd4-reject:before {\n  content: \"\\f0b4\";\n}\n.bd4-relational-graph:before {\n  content: \"\\f0b5\";\n}\n.bd4-relieved-face:before {\n  content: \"\\f0b6\";\n}\n.bd4-reload:before {\n  content: \"\\f0b7\";\n}\n.bd4-remind:before {\n  content: \"\\f0b8\";\n}\n.bd4-remind-disable:before {\n  content: \"\\f0b9\";\n}\n.bd4-remote-control:before {\n  content: \"\\f0ba\";\n}\n.bd4-remote-control-one:before {\n  content: \"\\f0bb\";\n}\n.bd4-renal:before {\n  content: \"\\f0bc\";\n}\n.bd4-renault:before {\n  content: \"\\f0bd\";\n}\n.bd4-repair:before {\n  content: \"\\f0be\";\n}\n.bd4-replay-five:before {\n  content: \"\\f0bf\";\n}\n.bd4-replay-music:before {\n  content: \"\\f0c0\";\n}\n.bd4-report:before {\n  content: \"\\f0c1\";\n}\n.bd4-repositioning:before {\n  content: \"\\f0c2\";\n}\n.bd4-resistor:before {\n  content: \"\\f0c3\";\n}\n.bd4-respect:before {\n  content: \"\\f0c4\";\n}\n.bd4-resting:before {\n  content: \"\\f0c5\";\n}\n.bd4-retro-bag:before {\n  content: \"\\f0c6\";\n}\n.bd4-return:before {\n  content: \"\\f0c7\";\n}\n.bd4-reverse-lens:before {\n  content: \"\\f0c8\";\n}\n.bd4-reverse-lens-one:before {\n  content: \"\\f0c9\";\n}\n.bd4-reverse-operation-in:before {\n  content: \"\\f0ca\";\n}\n.bd4-reverse-operation-out:before {\n  content: \"\\f0cb\";\n}\n.bd4-reverse-rotation:before {\n  content: \"\\f0cc\";\n}\n.bd4-rice:before {\n  content: \"\\f0cd\";\n}\n.bd4-riding:before {\n  content: \"\\f0ce\";\n}\n.bd4-riding-one:before {\n  content: \"\\f0cf\";\n}\n.bd4-right:before {\n  content: \"\\f0d0\";\n}\n.bd4-right-angle:before {\n  content: \"\\f0d1\";\n}\n.bd4-right-bar:before {\n  content: \"\\f0d2\";\n}\n.bd4-right-branch:before {\n  content: \"\\f0d3\";\n}\n.bd4-right-branch-one:before {\n  content: \"\\f0d4\";\n}\n.bd4-right-branch-two:before {\n  content: \"\\f0d5\";\n}\n.bd4-right-c:before {\n  content: \"\\f0d6\";\n}\n.bd4-right-expand:before {\n  content: \"\\f0d7\";\n}\n.bd4-right-one:before {\n  content: \"\\f0d8\";\n}\n.bd4-right-run:before {\n  content: \"\\f0d9\";\n}\n.bd4-right-small:before {\n  content: \"\\f0da\";\n}\n.bd4-right-small-down:before {\n  content: \"\\f0db\";\n}\n.bd4-right-small-up:before {\n  content: \"\\f0dc\";\n}\n.bd4-right-square:before {\n  content: \"\\f0dd\";\n}\n.bd4-right-two:before {\n  content: \"\\f0de\";\n}\n.bd4-right-user:before {\n  content: \"\\f0df\";\n}\n.bd4-ring:before {\n  content: \"\\f0e0\";\n}\n.bd4-ring-one:before {\n  content: \"\\f0e1\";\n}\n.bd4-rings:before {\n  content: \"\\f0e2\";\n}\n.bd4-ripple:before {\n  content: \"\\f0e3\";\n}\n.bd4-road:before {\n  content: \"\\f0e4\";\n}\n.bd4-road-cone:before {\n  content: \"\\f0e5\";\n}\n.bd4-road-one:before {\n  content: \"\\f0e6\";\n}\n.bd4-road-sign:before {\n  content: \"\\f0e7\";\n}\n.bd4-road-sign-both:before {\n  content: \"\\f0e8\";\n}\n.bd4-robot:before {\n  content: \"\\f0e9\";\n}\n.bd4-robot-one:before {\n  content: \"\\f0ea\";\n}\n.bd4-robot-two:before {\n  content: \"\\f0eb\";\n}\n.bd4-rock:before {\n  content: \"\\f0ec\";\n}\n.bd4-rocket:before {\n  content: \"\\f0ed\";\n}\n.bd4-rocket-one:before {\n  content: \"\\f0ee\";\n}\n.bd4-rock-gesture:before {\n  content: \"\\f0ef\";\n}\n.bd4-rocking-horse:before {\n  content: \"\\f0f0\";\n}\n.bd4-rollerskates:before {\n  content: \"\\f0f1\";\n}\n.bd4-romper:before {\n  content: \"\\f0f2\";\n}\n.bd4-rope-skipping:before {\n  content: \"\\f0f3\";\n}\n.bd4-rope-skipping-one:before {\n  content: \"\\f0f4\";\n}\n.bd4-rotate:before {\n  content: \"\\f0f5\";\n}\n.bd4-rotate-one:before {\n  content: \"\\f0f6\";\n}\n.bd4-rotating-add:before {\n  content: \"\\f0f7\";\n}\n.bd4-rotating-forward:before {\n  content: \"\\f0f8\";\n}\n.bd4-rotation:before {\n  content: \"\\f0f9\";\n}\n.bd4-rotation-horizontal:before {\n  content: \"\\f0fa\";\n}\n.bd4-rotation-one:before {\n  content: \"\\f0fb\";\n}\n.bd4-rotation-vertical:before {\n  content: \"\\f0fc\";\n}\n.bd4-round:before {\n  content: \"\\f0fd\";\n}\n.bd4-round-caliper:before {\n  content: \"\\f0fe\";\n}\n.bd4-round-distortion:before {\n  content: \"\\f0ff\";\n}\n.bd4-round-mask:before {\n  content: \"\\f100\";\n}\n.bd4-round-socket:before {\n  content: \"\\f101\";\n}\n.bd4-round-trip:before {\n  content: \"\\f102\";\n}\n.bd4-router:before {\n  content: \"\\f103\";\n}\n.bd4-router-one:before {\n  content: \"\\f104\";\n}\n.bd4-row-height:before {\n  content: \"\\f105\";\n}\n.bd4-rowing:before {\n  content: \"\\f106\";\n}\n.bd4-rs-male:before {\n  content: \"\\f107\";\n}\n.bd4-rss:before {\n  content: \"\\f108\";\n}\n.bd4-rugby:before {\n  content: \"\\f109\";\n}\n.bd4-rugby-one:before {\n  content: \"\\f10a\";\n}\n.bd4-ruler:before {\n  content: \"\\f10b\";\n}\n.bd4-ruler-one:before {\n  content: \"\\f10c\";\n}\n.bd4-rule-two:before {\n  content: \"\\f10d\";\n}\n.bd4-run-left:before {\n  content: \"\\f10e\";\n}\n.bd4-safe-retrieval:before {\n  content: \"\\f10f\";\n}\n.bd4-sagittarius:before {\n  content: \"\\f110\";\n}\n.bd4-sailboat:before {\n  content: \"\\f111\";\n}\n.bd4-sailboat-one:before {\n  content: \"\\f112\";\n}\n.bd4-sailing:before {\n  content: \"\\f113\";\n}\n.bd4-sales-report:before {\n  content: \"\\f114\";\n}\n.bd4-sandals:before {\n  content: \"\\f115\";\n}\n.bd4-sandstorm:before {\n  content: \"\\f116\";\n}\n.bd4-sandwich:before {\n  content: \"\\f117\";\n}\n.bd4-sandwich-one:before {\n  content: \"\\f118\";\n}\n.bd4-sapling:before {\n  content: \"\\f119\";\n}\n.bd4-save:before {\n  content: \"\\f11a\";\n}\n.bd4-save-one:before {\n  content: \"\\f11b\";\n}\n.bd4-scale:before {\n  content: \"\\f11c\";\n}\n.bd4-scale-one:before {\n  content: \"\\f11d\";\n}\n.bd4-scallion:before {\n  content: \"\\f11e\";\n}\n.bd4-scan:before {\n  content: \"\\f11f\";\n}\n.bd4-scan-code:before {\n  content: \"\\f120\";\n}\n.bd4-scanning:before {\n  content: \"\\f121\";\n}\n.bd4-scanning-two:before {\n  content: \"\\f122\";\n}\n.bd4-scan-setting:before {\n  content: \"\\f123\";\n}\n.bd4-scatter-alignment:before {\n  content: \"\\f124\";\n}\n.bd4-schedule:before {\n  content: \"\\f125\";\n}\n.bd4-school:before {\n  content: \"\\f126\";\n}\n.bd4-scissors:before {\n  content: \"\\f127\";\n}\n.bd4-scoreboard:before {\n  content: \"\\f128\";\n}\n.bd4-scorpio:before {\n  content: \"\\f129\";\n}\n.bd4-screen-rotation:before {\n  content: \"\\f12a\";\n}\n.bd4-screenshot:before {\n  content: \"\\f12b\";\n}\n.bd4-screenshot-one:before {\n  content: \"\\f12c\";\n}\n.bd4-screenshot-two:before {\n  content: \"\\f12d\";\n}\n.bd4-screwdriver:before {\n  content: \"\\f12e\";\n}\n.bd4-sd:before {\n  content: \"\\f12f\";\n}\n.bd4-sd-card:before {\n  content: \"\\f130\";\n}\n.bd4-seal:before {\n  content: \"\\f131\";\n}\n.bd4-search:before {\n  content: \"\\f132\";\n}\n.bd4-seat:before {\n  content: \"\\f133\";\n}\n.bd4-security:before {\n  content: \"\\f134\";\n}\n.bd4-security-stall:before {\n  content: \"\\f135\";\n}\n.bd4-seedling:before {\n  content: \"\\f136\";\n}\n.bd4-selected:before {\n  content: \"\\f137\";\n}\n.bd4-selected-focus:before {\n  content: \"\\f138\";\n}\n.bd4-selfie:before {\n  content: \"\\f139\";\n}\n.bd4-send:before {\n  content: \"\\f13a\";\n}\n.bd4-send-backward:before {\n  content: \"\\f13b\";\n}\n.bd4-send-email:before {\n  content: \"\\f13c\";\n}\n.bd4-send-one:before {\n  content: \"\\f13d\";\n}\n.bd4-send-to-back:before {\n  content: \"\\f13e\";\n}\n.bd4-sent-to-back:before {\n  content: \"\\f13f\";\n}\n.bd4-seo:before {\n  content: \"\\f140\";\n}\n.bd4-seo-folder:before {\n  content: \"\\f141\";\n}\n.bd4-server:before {\n  content: \"\\f142\";\n}\n.bd4-set-off:before {\n  content: \"\\f143\";\n}\n.bd4-setting:before {\n  content: \"\\f144\";\n}\n.bd4-setting-computer:before {\n  content: \"\\f145\";\n}\n.bd4-setting-config:before {\n  content: \"\\f146\";\n}\n.bd4-setting-laptop:before {\n  content: \"\\f147\";\n}\n.bd4-setting-one:before {\n  content: \"\\f148\";\n}\n.bd4-setting-three:before {\n  content: \"\\f149\";\n}\n.bd4-setting-two:before {\n  content: \"\\f14a\";\n}\n.bd4-setting-web:before {\n  content: \"\\f14b\";\n}\n.bd4-seven-key:before {\n  content: \"\\f14c\";\n}\n.bd4-shade:before {\n  content: \"\\f14d\";\n}\n.bd4-shake:before {\n  content: \"\\f14e\";\n}\n.bd4-share:before {\n  content: \"\\f14f\";\n}\n.bd4-share-one:before {\n  content: \"\\f150\";\n}\n.bd4-share-sys:before {\n  content: \"\\f151\";\n}\n.bd4-share-three:before {\n  content: \"\\f152\";\n}\n.bd4-share-two:before {\n  content: \"\\f153\";\n}\n.bd4-shaver:before {\n  content: \"\\f154\";\n}\n.bd4-shaver-one:before {\n  content: \"\\f155\";\n}\n.bd4-shaving:before {\n  content: \"\\f156\";\n}\n.bd4-sheep-zodiac:before {\n  content: \"\\f157\";\n}\n.bd4-shield:before {\n  content: \"\\f158\";\n}\n.bd4-shield-add:before {\n  content: \"\\f159\";\n}\n.bd4-ship:before {\n  content: \"\\f15a\";\n}\n.bd4-shop:before {\n  content: \"\\f15b\";\n}\n.bd4-shopping:before {\n  content: \"\\f15c\";\n}\n.bd4-shopping-bag:before {\n  content: \"\\f15d\";\n}\n.bd4-shopping-bag-one:before {\n  content: \"\\f15e\";\n}\n.bd4-shopping-cart:before {\n  content: \"\\f15f\";\n}\n.bd4-shopping-cart-add:before {\n  content: \"\\f160\";\n}\n.bd4-shopping-cart-del:before {\n  content: \"\\f161\";\n}\n.bd4-shopping-cart-one:before {\n  content: \"\\f162\";\n}\n.bd4-shopping-cart-two:before {\n  content: \"\\f163\";\n}\n.bd4-shopping-mall:before {\n  content: \"\\f164\";\n}\n.bd4-shorts:before {\n  content: \"\\f165\";\n}\n.bd4-short-skirt:before {\n  content: \"\\f166\";\n}\n.bd4-shoulder-bag:before {\n  content: \"\\f167\";\n}\n.bd4-shovel:before {\n  content: \"\\f168\";\n}\n.bd4-shovel-one:before {\n  content: \"\\f169\";\n}\n.bd4-shower-head:before {\n  content: \"\\f16a\";\n}\n.bd4-shrimp:before {\n  content: \"\\f16b\";\n}\n.bd4-shuffle:before {\n  content: \"\\f16c\";\n}\n.bd4-shuffle-one:before {\n  content: \"\\f16d\";\n}\n.bd4-shutter-priority:before {\n  content: \"\\f16e\";\n}\n.bd4-sickbed:before {\n  content: \"\\f16f\";\n}\n.bd4-signal:before {\n  content: \"\\f170\";\n}\n.bd4-signal-one:before {\n  content: \"\\f171\";\n}\n.bd4-signal-strength:before {\n  content: \"\\f172\";\n}\n.bd4-signal-tower:before {\n  content: \"\\f173\";\n}\n.bd4-signal-tower-one:before {\n  content: \"\\f174\";\n}\n.bd4-sim:before {\n  content: \"\\f175\";\n}\n.bd4-sim-card:before {\n  content: \"\\f176\";\n}\n.bd4-single-bed:before {\n  content: \"\\f177\";\n}\n.bd4-sinusoid:before {\n  content: \"\\f178\";\n}\n.bd4-sippy-cup:before {\n  content: \"\\f179\";\n}\n.bd4-six:before {\n  content: \"\\f17a\";\n}\n.bd4-six-circular-connection:before {\n  content: \"\\f17b\";\n}\n.bd4-six-key:before {\n  content: \"\\f17c\";\n}\n.bd4-six-points:before {\n  content: \"\\f17d\";\n}\n.bd4-skate:before {\n  content: \"\\f17e\";\n}\n.bd4-skates:before {\n  content: \"\\f17f\";\n}\n.bd4-skating:before {\n  content: \"\\f180\";\n}\n.bd4-sketch:before {\n  content: \"\\f181\";\n}\n.bd4-skiing-nordic:before {\n  content: \"\\f182\";\n}\n.bd4-skull:before {\n  content: \"\\f183\";\n}\n.bd4-slave:before {\n  content: \"\\f184\";\n}\n.bd4-sleaves:before {\n  content: \"\\f185\";\n}\n.bd4-sleep:before {\n  content: \"\\f186\";\n}\n.bd4-sleep-one:before {\n  content: \"\\f187\";\n}\n.bd4-sleep-two:before {\n  content: \"\\f188\";\n}\n.bd4-slide:before {\n  content: \"\\f189\";\n}\n.bd4-slide-two:before {\n  content: \"\\f18a\";\n}\n.bd4-sliding-horizontal:before {\n  content: \"\\f18b\";\n}\n.bd4-sliding-vertical:before {\n  content: \"\\f18c\";\n}\n.bd4-slightly-frowning-face-whit-open-mouth:before {\n  content: \"\\f18d\";\n}\n.bd4-slightly-smiling-face:before {\n  content: \"\\f18e\";\n}\n.bd4-slippers:before {\n  content: \"\\f18f\";\n}\n.bd4-slippers-one:before {\n  content: \"\\f190\";\n}\n.bd4-sly-face-whit-smile:before {\n  content: \"\\f191\";\n}\n.bd4-smart-optimization:before {\n  content: \"\\f192\";\n}\n.bd4-smiling-face:before {\n  content: \"\\f193\";\n}\n.bd4-smiling-face-with-squinting-eyes:before {\n  content: \"\\f194\";\n}\n.bd4-snacks:before {\n  content: \"\\f195\";\n}\n.bd4-snake-zodiac:before {\n  content: \"\\f196\";\n}\n.bd4-snow:before {\n  content: \"\\f197\";\n}\n.bd4-snowflake:before {\n  content: \"\\f198\";\n}\n.bd4-snowman:before {\n  content: \"\\f199\";\n}\n.bd4-soap-bubble:before {\n  content: \"\\f19a\";\n}\n.bd4-soccer:before {\n  content: \"\\f19b\";\n}\n.bd4-soccer-one:before {\n  content: \"\\f19c\";\n}\n.bd4-socks:before {\n  content: \"\\f19d\";\n}\n.bd4-sofa:before {\n  content: \"\\f19e\";\n}\n.bd4-sofa-two:before {\n  content: \"\\f19f\";\n}\n.bd4-softball:before {\n  content: \"\\f1a0\";\n}\n.bd4-solar-energy:before {\n  content: \"\\f1a1\";\n}\n.bd4-solar-energy-one:before {\n  content: \"\\f1a2\";\n}\n.bd4-solid-state-disk:before {\n  content: \"\\f1a3\";\n}\n.bd4-sorcerer-hat:before {\n  content: \"\\f1a4\";\n}\n.bd4-sort:before {\n  content: \"\\f1a5\";\n}\n.bd4-sort-amount-down:before {\n  content: \"\\f1a6\";\n}\n.bd4-sort-amount-up:before {\n  content: \"\\f1a7\";\n}\n.bd4-sort-four:before {\n  content: \"\\f1a8\";\n}\n.bd4-sort-one:before {\n  content: \"\\f1a9\";\n}\n.bd4-sort-three:before {\n  content: \"\\f1aa\";\n}\n.bd4-sort-two:before {\n  content: \"\\f1ab\";\n}\n.bd4-sound:before {\n  content: \"\\f1ac\";\n}\n.bd4-sound-one:before {\n  content: \"\\f1ad\";\n}\n.bd4-sound-wave:before {\n  content: \"\\f1ae\";\n}\n.bd4-source-code:before {\n  content: \"\\f1af\";\n}\n.bd4-soybean-milk-maker:before {\n  content: \"\\f1b0\";\n}\n.bd4-spa-candle:before {\n  content: \"\\f1b1\";\n}\n.bd4-space-colony:before {\n  content: \"\\f1b2\";\n}\n.bd4-spanner:before {\n  content: \"\\f1b3\";\n}\n.bd4-speaker:before {\n  content: \"\\f1b4\";\n}\n.bd4-speaker-one:before {\n  content: \"\\f1b5\";\n}\n.bd4-speed:before {\n  content: \"\\f1b6\";\n}\n.bd4-speed-one:before {\n  content: \"\\f1b7\";\n}\n.bd4-sperm:before {\n  content: \"\\f1b8\";\n}\n.bd4-sphere:before {\n  content: \"\\f1b9\";\n}\n.bd4-spider-man:before {\n  content: \"\\f1ba\";\n}\n.bd4-spikedshoes:before {\n  content: \"\\f1bb\";\n}\n.bd4-spinning-top:before {\n  content: \"\\f1bc\";\n}\n.bd4-split:before {\n  content: \"\\f1bd\";\n}\n.bd4-split-branch:before {\n  content: \"\\f1be\";\n}\n.bd4-split-cells:before {\n  content: \"\\f1bf\";\n}\n.bd4-split-turn-down-left:before {\n  content: \"\\f1c0\";\n}\n.bd4-split-turn-down-right:before {\n  content: \"\\f1c1\";\n}\n.bd4-spoon:before {\n  content: \"\\f1c2\";\n}\n.bd4-sport:before {\n  content: \"\\f1c3\";\n}\n.bd4-sporting:before {\n  content: \"\\f1c4\";\n}\n.bd4-square:before {\n  content: \"\\f1c5\";\n}\n.bd4-square-small:before {\n  content: \"\\f1c6\";\n}\n.bd4-ssd:before {\n  content: \"\\f1c7\";\n}\n.bd4-stack-light:before {\n  content: \"\\f1c8\";\n}\n.bd4-stamp:before {\n  content: \"\\f1c9\";\n}\n.bd4-stand-up:before {\n  content: \"\\f1ca\";\n}\n.bd4-stapler:before {\n  content: \"\\f1cb\";\n}\n.bd4-star:before {\n  content: \"\\f1cc\";\n}\n.bd4-star-one:before {\n  content: \"\\f1cd\";\n}\n.bd4-start-time-sort:before {\n  content: \"\\f1ce\";\n}\n.bd4-steering-wheel:before {\n  content: \"\\f1cf\";\n}\n.bd4-steoller:before {\n  content: \"\\f1d0\";\n}\n.bd4-stereo-nesting:before {\n  content: \"\\f1d1\";\n}\n.bd4-stereo-one:before {\n  content: \"\\f1d2\";\n}\n.bd4-stereo-perspective:before {\n  content: \"\\f1d3\";\n}\n.bd4-stethoscope:before {\n  content: \"\\f1d4\";\n}\n.bd4-stickers:before {\n  content: \"\\f1d5\";\n}\n.bd4-stock-market:before {\n  content: \"\\f1d6\";\n}\n.bd4-stopwatch:before {\n  content: \"\\f1d7\";\n}\n.bd4-stopwatch-start:before {\n  content: \"\\f1d8\";\n}\n.bd4-storage-card-one:before {\n  content: \"\\f1d9\";\n}\n.bd4-storage-card-two:before {\n  content: \"\\f1da\";\n}\n.bd4-straight-razor:before {\n  content: \"\\f1db\";\n}\n.bd4-straw-hat:before {\n  content: \"\\f1dc\";\n}\n.bd4-stretching:before {\n  content: \"\\f1dd\";\n}\n.bd4-stretching-one:before {\n  content: \"\\f1de\";\n}\n.bd4-strikethrough:before {\n  content: \"\\f1df\";\n}\n.bd4-strongbox:before {\n  content: \"\\f1e0\";\n}\n.bd4-s-turn-down:before {\n  content: \"\\f1e1\";\n}\n.bd4-s-turn-left:before {\n  content: \"\\f1e2\";\n}\n.bd4-s-turn-right:before {\n  content: \"\\f1e3\";\n}\n.bd4-s-turn-up:before {\n  content: \"\\f1e4\";\n}\n.bd4-subtract-selection:before {\n  content: \"\\f1e5\";\n}\n.bd4-subtract-selection-one:before {\n  content: \"\\f1e6\";\n}\n.bd4-subway:before {\n  content: \"\\f1e7\";\n}\n.bd4-success:before {\n  content: \"\\f1e8\";\n}\n.bd4-success-picture:before {\n  content: \"\\f1e9\";\n}\n.bd4-sum:before {\n  content: \"\\f1ea\";\n}\n.bd4-sun:before {\n  content: \"\\f1eb\";\n}\n.bd4-sunbath:before {\n  content: \"\\f1ec\";\n}\n.bd4-sun-hat:before {\n  content: \"\\f1ed\";\n}\n.bd4-sunny:before {\n  content: \"\\f1ee\";\n}\n.bd4-sun-one:before {\n  content: \"\\f1ef\";\n}\n.bd4-sunrise:before {\n  content: \"\\f1f0\";\n}\n.bd4-sunset:before {\n  content: \"\\f1f1\";\n}\n.bd4-sunshade:before {\n  content: \"\\f1f2\";\n}\n.bd4-surprised-face-with-open-big-mouth:before {\n  content: \"\\f1f3\";\n}\n.bd4-surprised-face-with-open-mouth:before {\n  content: \"\\f1f4\";\n}\n.bd4-surveillance-cameras:before {\n  content: \"\\f1f5\";\n}\n.bd4-surveillance-cameras-one:before {\n  content: \"\\f1f6\";\n}\n.bd4-surveillance-cameras-two:before {\n  content: \"\\f1f7\";\n}\n.bd4-swallow:before {\n  content: \"\\f1f8\";\n}\n.bd4-sweater:before {\n  content: \"\\f1f9\";\n}\n.bd4-swimming-pool:before {\n  content: \"\\f1fa\";\n}\n.bd4-swimming-ring:before {\n  content: \"\\f1fb\";\n}\n.bd4-swimsuit:before {\n  content: \"\\f1fc\";\n}\n.bd4-swing:before {\n  content: \"\\f1fd\";\n}\n.bd4-swipe:before {\n  content: \"\\f1fe\";\n}\n.bd4-switch:before {\n  content: \"\\f1ff\";\n}\n.bd4-switch-button:before {\n  content: \"\\f200\";\n}\n.bd4-switch-contrast:before {\n  content: \"\\f201\";\n}\n.bd4-switching-done:before {\n  content: \"\\f202\";\n}\n.bd4-switch-nintendo:before {\n  content: \"\\f203\";\n}\n.bd4-switch-one:before {\n  content: \"\\f204\";\n}\n.bd4-switch-themes:before {\n  content: \"\\f205\";\n}\n.bd4-switch-track:before {\n  content: \"\\f206\";\n}\n.bd4-symbol:before {\n  content: \"\\f207\";\n}\n.bd4-symbol-double-x:before {\n  content: \"\\f208\";\n}\n.bd4-symmetry:before {\n  content: \"\\f209\";\n}\n.bd4-sync:before {\n  content: \"\\f20a\";\n}\n.bd4-system:before {\n  content: \"\\f20b\";\n}\n.bd4-table:before {\n  content: \"\\f20c\";\n}\n.bd4-table-file:before {\n  content: \"\\f20d\";\n}\n.bd4-table-lamp:before {\n  content: \"\\f20e\";\n}\n.bd4-table-report:before {\n  content: \"\\f20f\";\n}\n.bd4-tabletennis:before {\n  content: \"\\f210\";\n}\n.bd4-tag:before {\n  content: \"\\f211\";\n}\n.bd4-tag-one:before {\n  content: \"\\f212\";\n}\n.bd4-tailoring:before {\n  content: \"\\f213\";\n}\n.bd4-tailoring-two:before {\n  content: \"\\f214\";\n}\n.bd4-taj-mahal:before {\n  content: \"\\f215\";\n}\n.bd4-take-off:before {\n  content: \"\\f216\";\n}\n.bd4-take-off-one:before {\n  content: \"\\f217\";\n}\n.bd4-taobao:before {\n  content: \"\\f218\";\n}\n.bd4-tape:before {\n  content: \"\\f219\";\n}\n.bd4-tape-measure:before {\n  content: \"\\f21a\";\n}\n.bd4-target:before {\n  content: \"\\f21b\";\n}\n.bd4-target-one:before {\n  content: \"\\f21c\";\n}\n.bd4-target-two:before {\n  content: \"\\f21d\";\n}\n.bd4-taurus:before {\n  content: \"\\f21e\";\n}\n.bd4-taxi:before {\n  content: \"\\f21f\";\n}\n.bd4-tea:before {\n  content: \"\\f220\";\n}\n.bd4-tea-drink:before {\n  content: \"\\f221\";\n}\n.bd4-teapot:before {\n  content: \"\\f222\";\n}\n.bd4-teeth:before {\n  content: \"\\f223\";\n}\n.bd4-telegram:before {\n  content: \"\\f224\";\n}\n.bd4-telescope:before {\n  content: \"\\f225\";\n}\n.bd4-tencent-qq:before {\n  content: \"\\f226\";\n}\n.bd4-tennis:before {\n  content: \"\\f227\";\n}\n.bd4-tent:before {\n  content: \"\\f228\";\n}\n.bd4-tent-banner:before {\n  content: \"\\f229\";\n}\n.bd4-terminal:before {\n  content: \"\\f22a\";\n}\n.bd4-termination-file:before {\n  content: \"\\f22b\";\n}\n.bd4-terrace:before {\n  content: \"\\f22c\";\n}\n.bd4-test-tube:before {\n  content: \"\\f22d\";\n}\n.bd4-text:before {\n  content: \"\\f22e\";\n}\n.bd4-textarea:before {\n  content: \"\\f22f\";\n}\n.bd4-text-bold:before {\n  content: \"\\f230\";\n}\n.bd4-text-italic:before {\n  content: \"\\f231\";\n}\n.bd4-text-message:before {\n  content: \"\\f232\";\n}\n.bd4-text-recognition:before {\n  content: \"\\f233\";\n}\n.bd4-text-rotation-down:before {\n  content: \"\\f234\";\n}\n.bd4-text-rotation-left:before {\n  content: \"\\f235\";\n}\n.bd4-text-rotation-none:before {\n  content: \"\\f236\";\n}\n.bd4-text-rotation-up:before {\n  content: \"\\f237\";\n}\n.bd4-text-style:before {\n  content: \"\\f238\";\n}\n.bd4-text-style-one:before {\n  content: \"\\f239\";\n}\n.bd4-text-underline:before {\n  content: \"\\f23a\";\n}\n.bd4-texture:before {\n  content: \"\\f23b\";\n}\n.bd4-texture-two:before {\n  content: \"\\f23c\";\n}\n.bd4-text-wrap-overflow:before {\n  content: \"\\f23d\";\n}\n.bd4-text-wrap-truncation:before {\n  content: \"\\f23e\";\n}\n.bd4-theater:before {\n  content: \"\\f23f\";\n}\n.bd4-theme:before {\n  content: \"\\f240\";\n}\n.bd4-thermometer:before {\n  content: \"\\f241\";\n}\n.bd4-thermometer-one:before {\n  content: \"\\f242\";\n}\n.bd4-thermos-cup:before {\n  content: \"\\f243\";\n}\n.bd4-the-single-shoulder-bag:before {\n  content: \"\\f244\";\n}\n.bd4-thin:before {\n  content: \"\\f245\";\n}\n.bd4-thinking-problem:before {\n  content: \"\\f246\";\n}\n.bd4-three:before {\n  content: \"\\f247\";\n}\n.bd4-three-d-glasses:before {\n  content: \"\\f248\";\n}\n.bd4-three-hexagons:before {\n  content: \"\\f249\";\n}\n.bd4-three-key:before {\n  content: \"\\f24a\";\n}\n.bd4-three-slashes:before {\n  content: \"\\f24b\";\n}\n.bd4-three-three:before {\n  content: \"\\f24c\";\n}\n.bd4-three-triangles:before {\n  content: \"\\f24d\";\n}\n.bd4-thumbs-down:before {\n  content: \"\\f24e\";\n}\n.bd4-thumbs-up:before {\n  content: \"\\f24f\";\n}\n.bd4-thunderbolt:before {\n  content: \"\\f250\";\n}\n.bd4-thunderstorm:before {\n  content: \"\\f251\";\n}\n.bd4-thunderstorm-one:before {\n  content: \"\\f252\";\n}\n.bd4-ticket:before {\n  content: \"\\f253\";\n}\n.bd4-ticket-one:before {\n  content: \"\\f254\";\n}\n.bd4-tickets-checked:before {\n  content: \"\\f255\";\n}\n.bd4-tickets-one:before {\n  content: \"\\f256\";\n}\n.bd4-tickets-two:before {\n  content: \"\\f257\";\n}\n.bd4-tiger-zodiac:before {\n  content: \"\\f258\";\n}\n.bd4-tiktok:before {\n  content: \"\\f259\";\n}\n.bd4-time:before {\n  content: \"\\f25a\";\n}\n.bd4-timed-mail:before {\n  content: \"\\f25b\";\n}\n.bd4-timeline:before {\n  content: \"\\f25c\";\n}\n.bd4-timer:before {\n  content: \"\\f25d\";\n}\n.bd4-tips:before {\n  content: \"\\f25e\";\n}\n.bd4-tips-one:before {\n  content: \"\\f25f\";\n}\n.bd4-tire-swing:before {\n  content: \"\\f260\";\n}\n.bd4-title-level:before {\n  content: \"\\f261\";\n}\n.bd4-to-bottom:before {\n  content: \"\\f262\";\n}\n.bd4-to-bottom-one:before {\n  content: \"\\f263\";\n}\n.bd4-toilet:before {\n  content: \"\\f264\";\n}\n.bd4-to-left:before {\n  content: \"\\f265\";\n}\n.bd4-tomato:before {\n  content: \"\\f266\";\n}\n.bd4-tool:before {\n  content: \"\\f267\";\n}\n.bd4-toolkit:before {\n  content: \"\\f268\";\n}\n.bd4-top-bar:before {\n  content: \"\\f269\";\n}\n.bd4-topbuzz:before {\n  content: \"\\f26a\";\n}\n.bd4-topic:before {\n  content: \"\\f26b\";\n}\n.bd4-topic-discussion:before {\n  content: \"\\f26c\";\n}\n.bd4-torch:before {\n  content: \"\\f26d\";\n}\n.bd4-to-right:before {\n  content: \"\\f26e\";\n}\n.bd4-to-top:before {\n  content: \"\\f26f\";\n}\n.bd4-to-top-one:before {\n  content: \"\\f270\";\n}\n.bd4-tour-bus:before {\n  content: \"\\f271\";\n}\n.bd4-towel:before {\n  content: \"\\f272\";\n}\n.bd4-tower:before {\n  content: \"\\f273\";\n}\n.bd4-tower-of-babel:before {\n  content: \"\\f274\";\n}\n.bd4-tower-of-pisa:before {\n  content: \"\\f275\";\n}\n.bd4-toxins:before {\n  content: \"\\f276\";\n}\n.bd4-trace:before {\n  content: \"\\f277\";\n}\n.bd4-trademark:before {\n  content: \"\\f278\";\n}\n.bd4-traditional-chinese-medicine:before {\n  content: \"\\f279\";\n}\n.bd4-train:before {\n  content: \"\\f27a\";\n}\n.bd4-transaction:before {\n  content: \"\\f27b\";\n}\n.bd4-transaction-order:before {\n  content: \"\\f27c\";\n}\n.bd4-transfer:before {\n  content: \"\\f27d\";\n}\n.bd4-transfer-data:before {\n  content: \"\\f27e\";\n}\n.bd4-transform:before {\n  content: \"\\f27f\";\n}\n.bd4-translate:before {\n  content: \"\\f280\";\n}\n.bd4-translation:before {\n  content: \"\\f281\";\n}\n.bd4-transport:before {\n  content: \"\\f282\";\n}\n.bd4-transporter:before {\n  content: \"\\f283\";\n}\n.bd4-trapezoid:before {\n  content: \"\\f284\";\n}\n.bd4-tray:before {\n  content: \"\\f285\";\n}\n.bd4-treadmill:before {\n  content: \"\\f286\";\n}\n.bd4-treadmill-one:before {\n  content: \"\\f287\";\n}\n.bd4-treadmill-two:before {\n  content: \"\\f288\";\n}\n.bd4-treasure-chest:before {\n  content: \"\\f289\";\n}\n.bd4-tree:before {\n  content: \"\\f28a\";\n}\n.bd4-tree-diagram:before {\n  content: \"\\f28b\";\n}\n.bd4-tree-list:before {\n  content: \"\\f28c\";\n}\n.bd4-tree-one:before {\n  content: \"\\f28d\";\n}\n.bd4-tree-two:before {\n  content: \"\\f28e\";\n}\n.bd4-trend:before {\n  content: \"\\f28f\";\n}\n.bd4-trending-down:before {\n  content: \"\\f290\";\n}\n.bd4-trending-up:before {\n  content: \"\\f291\";\n}\n.bd4-trend-two:before {\n  content: \"\\f292\";\n}\n.bd4-triangle:before {\n  content: \"\\f293\";\n}\n.bd4-triangle-round-rectangle:before {\n  content: \"\\f294\";\n}\n.bd4-triangle-ruler:before {\n  content: \"\\f295\";\n}\n.bd4-triangular-pyramid:before {\n  content: \"\\f296\";\n}\n.bd4-trophy:before {\n  content: \"\\f297\";\n}\n.bd4-trousers-bell-bottoms:before {\n  content: \"\\f298\";\n}\n.bd4-truck:before {\n  content: \"\\f299\";\n}\n.bd4-trumpet:before {\n  content: \"\\f29a\";\n}\n.bd4-trunk:before {\n  content: \"\\f29b\";\n}\n.bd4-t-shirt:before {\n  content: \"\\f29c\";\n}\n.bd4-tub:before {\n  content: \"\\f29d\";\n}\n.bd4-tuchong:before {\n  content: \"\\f29e\";\n}\n.bd4-tumblr:before {\n  content: \"\\f29f\";\n}\n.bd4-turkey:before {\n  content: \"\\f2a0\";\n}\n.bd4-turn-around:before {\n  content: \"\\f2a1\";\n}\n.bd4-turn-off-bluetooth:before {\n  content: \"\\f2a2\";\n}\n.bd4-turn-on:before {\n  content: \"\\f2a3\";\n}\n.bd4-tv:before {\n  content: \"\\f2a4\";\n}\n.bd4-tv-one:before {\n  content: \"\\f2a5\";\n}\n.bd4-twitter:before {\n  content: \"\\f2a6\";\n}\n.bd4-two:before {\n  content: \"\\f2a7\";\n}\n.bd4-two-dimensional-code:before {\n  content: \"\\f2a8\";\n}\n.bd4-two-dimensional-code-one:before {\n  content: \"\\f2a9\";\n}\n.bd4-two-dimensional-code-two:before {\n  content: \"\\f2aa\";\n}\n.bd4-two-ellipses:before {\n  content: \"\\f2ab\";\n}\n.bd4-two-fingers:before {\n  content: \"\\f2ac\";\n}\n.bd4-two-hands:before {\n  content: \"\\f2ad\";\n}\n.bd4-two-key:before {\n  content: \"\\f2ae\";\n}\n.bd4-two-semicircles:before {\n  content: \"\\f2af\";\n}\n.bd4-two-triangles:before {\n  content: \"\\f2b0\";\n}\n.bd4-two-triangles-two:before {\n  content: \"\\f2b1\";\n}\n.bd4-two-two:before {\n  content: \"\\f2b2\";\n}\n.bd4-type-drive:before {\n  content: \"\\f2b3\";\n}\n.bd4-u-disk:before {\n  content: \"\\f2b4\";\n}\n.bd4-ulikecam:before {\n  content: \"\\f2b5\";\n}\n.bd4-umbrella:before {\n  content: \"\\f2b6\";\n}\n.bd4-umbrella-one:before {\n  content: \"\\f2b7\";\n}\n.bd4-umbrella-two:before {\n  content: \"\\f2b8\";\n}\n.bd4-undo:before {\n  content: \"\\f2b9\";\n}\n.bd4-ungroup:before {\n  content: \"\\f2ba\";\n}\n.bd4-unicast:before {\n  content: \"\\f2bb\";\n}\n.bd4-union-selection:before {\n  content: \"\\f2bc\";\n}\n.bd4-universal:before {\n  content: \"\\f2bd\";\n}\n.bd4-unlike:before {\n  content: \"\\f2be\";\n}\n.bd4-unlink:before {\n  content: \"\\f2bf\";\n}\n.bd4-unlock:before {\n  content: \"\\f2c0\";\n}\n.bd4-unlock-one:before {\n  content: \"\\f2c1\";\n}\n.bd4-unordered-list:before {\n  content: \"\\f2c2\";\n}\n.bd4-up:before {\n  content: \"\\f2c3\";\n}\n.bd4-up-and-down:before {\n  content: \"\\f2c4\";\n}\n.bd4-up-c:before {\n  content: \"\\f2c5\";\n}\n.bd4-update-rotation:before {\n  content: \"\\f2c6\";\n}\n.bd4-upload:before {\n  content: \"\\f2c7\";\n}\n.bd4-upload-computer:before {\n  content: \"\\f2c8\";\n}\n.bd4-upload-laptop:before {\n  content: \"\\f2c9\";\n}\n.bd4-upload-logs:before {\n  content: \"\\f2ca\";\n}\n.bd4-upload-one:before {\n  content: \"\\f2cb\";\n}\n.bd4-upload-picture:before {\n  content: \"\\f2cc\";\n}\n.bd4-upload-three:before {\n  content: \"\\f2cd\";\n}\n.bd4-upload-two:before {\n  content: \"\\f2ce\";\n}\n.bd4-upload-web:before {\n  content: \"\\f2cf\";\n}\n.bd4-up-one:before {\n  content: \"\\f2d0\";\n}\n.bd4-upside-down-face:before {\n  content: \"\\f2d1\";\n}\n.bd4-up-small:before {\n  content: \"\\f2d2\";\n}\n.bd4-up-square:before {\n  content: \"\\f2d3\";\n}\n.bd4-up-two:before {\n  content: \"\\f2d4\";\n}\n.bd4-usb:before {\n  content: \"\\f2d5\";\n}\n.bd4-usb-memory-stick:before {\n  content: \"\\f2d6\";\n}\n.bd4-usb-micro-one:before {\n  content: \"\\f2d7\";\n}\n.bd4-usb-micro-two:before {\n  content: \"\\f2d8\";\n}\n.bd4-usb-one:before {\n  content: \"\\f2d9\";\n}\n.bd4-usb-type-c:before {\n  content: \"\\f2da\";\n}\n.bd4-user:before {\n  content: \"\\f2db\";\n}\n.bd4-user-business:before {\n  content: \"\\f2dc\";\n}\n.bd4-user-positioning:before {\n  content: \"\\f2dd\";\n}\n.bd4-user-to-user-transmission:before {\n  content: \"\\f2de\";\n}\n.bd4-uterus:before {\n  content: \"\\f2df\";\n}\n.bd4-u-turn-down:before {\n  content: \"\\f2e0\";\n}\n.bd4-u-turn-left:before {\n  content: \"\\f2e1\";\n}\n.bd4-u-turn-right:before {\n  content: \"\\f2e2\";\n}\n.bd4-u-turn-up:before {\n  content: \"\\f2e3\";\n}\n.bd4-vacation:before {\n  content: \"\\f2e4\";\n}\n.bd4-vacuum-cleaner:before {\n  content: \"\\f2e5\";\n}\n.bd4-vegetable-basket:before {\n  content: \"\\f2e6\";\n}\n.bd4-vegetables:before {\n  content: \"\\f2e7\";\n}\n.bd4-vertically-centered:before {\n  content: \"\\f2e8\";\n}\n.bd4-vertical-spacing-between-items:before {\n  content: \"\\f2e9\";\n}\n.bd4-vertical-tidy-up:before {\n  content: \"\\f2ea\";\n}\n.bd4-vertical-timeline:before {\n  content: \"\\f2eb\";\n}\n.bd4-vest:before {\n  content: \"\\f2ec\";\n}\n.bd4-vial:before {\n  content: \"\\f2ed\";\n}\n.bd4-vicia-faba:before {\n  content: \"\\f2ee\";\n}\n.bd4-video:before {\n  content: \"\\f2ef\";\n}\n.bd4-videocamera:before {\n  content: \"\\f2f0\";\n}\n.bd4-videocamera-one:before {\n  content: \"\\f2f1\";\n}\n.bd4-video-conference:before {\n  content: \"\\f2f2\";\n}\n.bd4-video-file:before {\n  content: \"\\f2f3\";\n}\n.bd4-video-one:before {\n  content: \"\\f2f4\";\n}\n.bd4-video-two:before {\n  content: \"\\f2f5\";\n}\n.bd4-viencharts:before {\n  content: \"\\f2f6\";\n}\n.bd4-viewfinder:before {\n  content: \"\\f2f7\";\n}\n.bd4-view-grid-card:before {\n  content: \"\\f2f8\";\n}\n.bd4-view-grid-detail:before {\n  content: \"\\f2f9\";\n}\n.bd4-view-grid-list:before {\n  content: \"\\f2fa\";\n}\n.bd4-view-list:before {\n  content: \"\\f2fb\";\n}\n.bd4-vigo:before {\n  content: \"\\f2fc\";\n}\n.bd4-vip:before {\n  content: \"\\f2fd\";\n}\n.bd4-vip-one:before {\n  content: \"\\f2fe\";\n}\n.bd4-virgo:before {\n  content: \"\\f2ff\";\n}\n.bd4-virtual-reality-glasses:before {\n  content: \"\\f300\";\n}\n.bd4-voice:before {\n  content: \"\\f301\";\n}\n.bd4-voice-input:before {\n  content: \"\\f302\";\n}\n.bd4-voicemail:before {\n  content: \"\\f303\";\n}\n.bd4-voice-message:before {\n  content: \"\\f304\";\n}\n.bd4-voice-off:before {\n  content: \"\\f305\";\n}\n.bd4-voice-one:before {\n  content: \"\\f306\";\n}\n.bd4-volkswagen:before {\n  content: \"\\f307\";\n}\n.bd4-volleyball:before {\n  content: \"\\f308\";\n}\n.bd4-volume-down:before {\n  content: \"\\f309\";\n}\n.bd4-volume-mute:before {\n  content: \"\\f30a\";\n}\n.bd4-volume-notice:before {\n  content: \"\\f30b\";\n}\n.bd4-volume-small:before {\n  content: \"\\f30c\";\n}\n.bd4-volume-up:before {\n  content: \"\\f30d\";\n}\n.bd4-vr-glasses:before {\n  content: \"\\f30e\";\n}\n.bd4-waistline:before {\n  content: \"\\f30f\";\n}\n.bd4-wallet:before {\n  content: \"\\f310\";\n}\n.bd4-wallet-one:before {\n  content: \"\\f311\";\n}\n.bd4-wallet-three:before {\n  content: \"\\f312\";\n}\n.bd4-wallet-two:before {\n  content: \"\\f313\";\n}\n.bd4-warehousing:before {\n  content: \"\\f314\";\n}\n.bd4-washing-machine:before {\n  content: \"\\f315\";\n}\n.bd4-washing-machine-one:before {\n  content: \"\\f316\";\n}\n.bd4-watch:before {\n  content: \"\\f317\";\n}\n.bd4-watch-one:before {\n  content: \"\\f318\";\n}\n.bd4-water:before {\n  content: \"\\f319\";\n}\n.bd4-waterfalls-h:before {\n  content: \"\\f31a\";\n}\n.bd4-waterfalls-v:before {\n  content: \"\\f31b\";\n}\n.bd4-water-level:before {\n  content: \"\\f31c\";\n}\n.bd4-watermelon:before {\n  content: \"\\f31d\";\n}\n.bd4-watermelon-one:before {\n  content: \"\\f31e\";\n}\n.bd4-water-no:before {\n  content: \"\\f31f\";\n}\n.bd4-waterpolo:before {\n  content: \"\\f320\";\n}\n.bd4-waterpolo-one:before {\n  content: \"\\f321\";\n}\n.bd4-water-rate:before {\n  content: \"\\f322\";\n}\n.bd4-water-rate-two:before {\n  content: \"\\f323\";\n}\n.bd4-waves:before {\n  content: \"\\f324\";\n}\n.bd4-waves-left:before {\n  content: \"\\f325\";\n}\n.bd4-waves-right:before {\n  content: \"\\f326\";\n}\n.bd4-weary-face:before {\n  content: \"\\f327\";\n}\n.bd4-webcam:before {\n  content: \"\\f328\";\n}\n.bd4-web-page:before {\n  content: \"\\f329\";\n}\n.bd4-wechat:before {\n  content: \"\\f32a\";\n}\n.bd4-weibo:before {\n  content: \"\\f32b\";\n}\n.bd4-weight:before {\n  content: \"\\f32c\";\n}\n.bd4-weightlifting:before {\n  content: \"\\f32d\";\n}\n.bd4-weixin-cards-offers:before {\n  content: \"\\f32e\";\n}\n.bd4-weixin-favorites:before {\n  content: \"\\f32f\";\n}\n.bd4-weixin-games:before {\n  content: \"\\f330\";\n}\n.bd4-weixin-market:before {\n  content: \"\\f331\";\n}\n.bd4-weixin-mini-app:before {\n  content: \"\\f332\";\n}\n.bd4-weixin-people-nearby:before {\n  content: \"\\f333\";\n}\n.bd4-weixin-scan:before {\n  content: \"\\f334\";\n}\n.bd4-weixin-search:before {\n  content: \"\\f335\";\n}\n.bd4-weixin-shake:before {\n  content: \"\\f336\";\n}\n.bd4-weixin-top-stories:before {\n  content: \"\\f337\";\n}\n.bd4-whale:before {\n  content: \"\\f338\";\n}\n.bd4-wheelchair:before {\n  content: \"\\f339\";\n}\n.bd4-whirlwind:before {\n  content: \"\\f33a\";\n}\n.bd4-whistling:before {\n  content: \"\\f33b\";\n}\n.bd4-whole-site-accelerator:before {\n  content: \"\\f33c\";\n}\n.bd4-wifi:before {\n  content: \"\\f33d\";\n}\n.bd4-wind:before {\n  content: \"\\f33e\";\n}\n.bd4-windmill:before {\n  content: \"\\f33f\";\n}\n.bd4-windmill-one:before {\n  content: \"\\f340\";\n}\n.bd4-windmill-two:before {\n  content: \"\\f341\";\n}\n.bd4-windows:before {\n  content: \"\\f342\";\n}\n.bd4-wind-turbine:before {\n  content: \"\\f343\";\n}\n.bd4-wingsuit-flying:before {\n  content: \"\\f344\";\n}\n.bd4-winking-face:before {\n  content: \"\\f345\";\n}\n.bd4-winking-face-with-open-eyes:before {\n  content: \"\\f346\";\n}\n.bd4-woman:before {\n  content: \"\\f347\";\n}\n.bd4-women:before {\n  content: \"\\f348\";\n}\n.bd4-women-coat:before {\n  content: \"\\f349\";\n}\n.bd4-woolen-hat:before {\n  content: \"\\f34a\";\n}\n.bd4-word:before {\n  content: \"\\f34b\";\n}\n.bd4-workbench:before {\n  content: \"\\f34c\";\n}\n.bd4-worker:before {\n  content: \"\\f34d\";\n}\n.bd4-world:before {\n  content: \"\\f34e\";\n}\n.bd4-worried-face:before {\n  content: \"\\f34f\";\n}\n.bd4-write:before {\n  content: \"\\f350\";\n}\n.bd4-writing-fluently:before {\n  content: \"\\f351\";\n}\n.bd4-wrong-user:before {\n  content: \"\\f352\";\n}\n.bd4-xiaodu:before {\n  content: \"\\f353\";\n}\n.bd4-xiaodu-home:before {\n  content: \"\\f354\";\n}\n.bd4-xigua:before {\n  content: \"\\f355\";\n}\n.bd4-xingfuli:before {\n  content: \"\\f356\";\n}\n.bd4-xingtu:before {\n  content: \"\\f357\";\n}\n.bd4-yep:before {\n  content: \"\\f358\";\n}\n.bd4-youtobe:before {\n  content: \"\\f359\";\n}\n.bd4-youtube:before {\n  content: \"\\f35a\";\n}\n.bd4-zero-key:before {\n  content: \"\\f35b\";\n}\n.bd4-zijinyunying:before {\n  content: \"\\f35c\";\n}\n.bd4-zip:before {\n  content: \"\\f35d\";\n}\n.bd4-zoom:before {\n  content: \"\\f35e\";\n}\n.bd4-zoom-in:before {\n  content: \"\\f35f\";\n}\n.bd4-zoom-internal:before {\n  content: \"\\f360\";\n}\n.bd4-zoom-out:before {\n  content: \"\\f361\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/resources/META-INF/resources/bytedance/1.3.0/css/bytedance-iconpack-regular.css",
    "content": "/*!\n * Bytedance IconPark v1.3.0\n * @link https://iconpark.oceanengine.com/official\n * License - https://github.com/bytedance/IconPark/blob/master/LICENSE (Apache License 2.0)\n */\n@font-face {\n  font-family: 'Bytedance-IconPack-Regular';\n  src:  url('../fonts/Bytedance-IconPack-Regular.eot?if88cy');\n  src:  url('../fonts/Bytedance-IconPack-Regular.eot?if88cy#iefix') format('embedded-opentype'),\n    url('../fonts/Bytedance-IconPack-Regular.ttf?if88cy') format('truetype'),\n    url('../fonts/Bytedance-IconPack-Regular.woff?if88cy') format('woff'),\n    url('../fonts/Bytedance-IconPack-Regular.svg?if88cy#Bytedance-IconPack-Regular') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"bd2\"], [class*=\" bd2\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Bytedance-IconPack-Regular' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.bd2-abdominal:before {\n  content: \"\\e900\";\n}\n.bd2-abnormal:before {\n  content: \"\\e901\";\n}\n.bd2-a-cane:before {\n  content: \"\\e902\";\n}\n.bd2-acceleration:before {\n  content: \"\\e903\";\n}\n.bd2-accept-email:before {\n  content: \"\\e904\";\n}\n.bd2-acoustic:before {\n  content: \"\\e905\";\n}\n.bd2-activity-source:before {\n  content: \"\\e906\";\n}\n.bd2-ad:before {\n  content: \"\\e907\";\n}\n.bd2-add:before {\n  content: \"\\e908\";\n}\n.bd2-add-computer:before {\n  content: \"\\e909\";\n}\n.bd2-add-four:before {\n  content: \"\\e90a\";\n}\n.bd2-add-item:before {\n  content: \"\\e90b\";\n}\n.bd2-add-mode:before {\n  content: \"\\e90c\";\n}\n.bd2-add-music:before {\n  content: \"\\e90d\";\n}\n.bd2-add-one:before {\n  content: \"\\e90e\";\n}\n.bd2-add-pic:before {\n  content: \"\\e90f\";\n}\n.bd2-add-picture:before {\n  content: \"\\e910\";\n}\n.bd2-add-print:before {\n  content: \"\\e911\";\n}\n.bd2-address-book:before {\n  content: \"\\e912\";\n}\n.bd2-add-subset:before {\n  content: \"\\e913\";\n}\n.bd2-add-subtract:before {\n  content: \"\\e914\";\n}\n.bd2-add-text:before {\n  content: \"\\e915\";\n}\n.bd2-add-text-two:before {\n  content: \"\\e916\";\n}\n.bd2-add-three:before {\n  content: \"\\e917\";\n}\n.bd2-add-two:before {\n  content: \"\\e918\";\n}\n.bd2-add-user:before {\n  content: \"\\e919\";\n}\n.bd2-add-web:before {\n  content: \"\\e91a\";\n}\n.bd2-adjacent-item:before {\n  content: \"\\e91b\";\n}\n.bd2-adjustment:before {\n  content: \"\\e91c\";\n}\n.bd2-adobe-illustrate:before {\n  content: \"\\e91d\";\n}\n.bd2-adobe-indesign:before {\n  content: \"\\e91e\";\n}\n.bd2-adobe-lightroom:before {\n  content: \"\\e91f\";\n}\n.bd2-adobe-photoshop:before {\n  content: \"\\e920\";\n}\n.bd2-ad-product:before {\n  content: \"\\e921\";\n}\n.bd2-afferent:before {\n  content: \"\\e922\";\n}\n.bd2-afferent-four:before {\n  content: \"\\e923\";\n}\n.bd2-afferent-three:before {\n  content: \"\\e924\";\n}\n.bd2-afferent-two:before {\n  content: \"\\e925\";\n}\n.bd2-afro-pick:before {\n  content: \"\\e926\";\n}\n.bd2-agreement:before {\n  content: \"\\e927\";\n}\n.bd2-aiming:before {\n  content: \"\\e928\";\n}\n.bd2-air-bike:before {\n  content: \"\\e929\";\n}\n.bd2-air-conditioning:before {\n  content: \"\\e92a\";\n}\n.bd2-airplane:before {\n  content: \"\\e92b\";\n}\n.bd2-airplane-window:before {\n  content: \"\\e92c\";\n}\n.bd2-airplane-window-one:before {\n  content: \"\\e92d\";\n}\n.bd2-airplay:before {\n  content: \"\\e92e\";\n}\n.bd2-airpods:before {\n  content: \"\\e92f\";\n}\n.bd2-alarm:before {\n  content: \"\\e930\";\n}\n.bd2-alarm-clock:before {\n  content: \"\\e931\";\n}\n.bd2-align-bottom:before {\n  content: \"\\e932\";\n}\n.bd2-align-bottom-two:before {\n  content: \"\\e933\";\n}\n.bd2-align-horizontal-center-two:before {\n  content: \"\\e934\";\n}\n.bd2-align-horizontally:before {\n  content: \"\\e935\";\n}\n.bd2-align-left:before {\n  content: \"\\e936\";\n}\n.bd2-align-left-one:before {\n  content: \"\\e937\";\n}\n.bd2-align-left-two:before {\n  content: \"\\e938\";\n}\n.bd2-alignment-bottom-center:before {\n  content: \"\\e939\";\n}\n.bd2-alignment-bottom-left:before {\n  content: \"\\e93a\";\n}\n.bd2-alignment-bottom-right:before {\n  content: \"\\e93b\";\n}\n.bd2-alignment-horizontal-bottom:before {\n  content: \"\\e93c\";\n}\n.bd2-alignment-horizontal-center:before {\n  content: \"\\e93d\";\n}\n.bd2-alignment-horizontal-top:before {\n  content: \"\\e93e\";\n}\n.bd2-alignment-left-bottom:before {\n  content: \"\\e93f\";\n}\n.bd2-alignment-left-center:before {\n  content: \"\\e940\";\n}\n.bd2-alignment-left-top:before {\n  content: \"\\e941\";\n}\n.bd2-alignment-right-bottom:before {\n  content: \"\\e942\";\n}\n.bd2-alignment-right-center:before {\n  content: \"\\e943\";\n}\n.bd2-alignment-right-top:before {\n  content: \"\\e944\";\n}\n.bd2-alignment-top-center:before {\n  content: \"\\e945\";\n}\n.bd2-alignment-top-left:before {\n  content: \"\\e946\";\n}\n.bd2-alignment-top-right:before {\n  content: \"\\e947\";\n}\n.bd2-alignment-vertical-center:before {\n  content: \"\\e948\";\n}\n.bd2-alignment-vertical-left:before {\n  content: \"\\e949\";\n}\n.bd2-alignment-vertical-right:before {\n  content: \"\\e94a\";\n}\n.bd2-align-right:before {\n  content: \"\\e94b\";\n}\n.bd2-align-right-one:before {\n  content: \"\\e94c\";\n}\n.bd2-align-right-two:before {\n  content: \"\\e94d\";\n}\n.bd2-align-text-both:before {\n  content: \"\\e94e\";\n}\n.bd2-align-text-both-one:before {\n  content: \"\\e94f\";\n}\n.bd2-align-text-bottom:before {\n  content: \"\\e950\";\n}\n.bd2-align-text-bottom-one:before {\n  content: \"\\e951\";\n}\n.bd2-align-text-center:before {\n  content: \"\\e952\";\n}\n.bd2-align-text-center-one:before {\n  content: \"\\e953\";\n}\n.bd2-align-text-left:before {\n  content: \"\\e954\";\n}\n.bd2-align-text-left-one:before {\n  content: \"\\e955\";\n}\n.bd2-align-text-middle:before {\n  content: \"\\e956\";\n}\n.bd2-align-text-middle-one:before {\n  content: \"\\e957\";\n}\n.bd2-align-text-right:before {\n  content: \"\\e958\";\n}\n.bd2-align-text-right-one:before {\n  content: \"\\e959\";\n}\n.bd2-align-text-top:before {\n  content: \"\\e95a\";\n}\n.bd2-align-text-top-one:before {\n  content: \"\\e95b\";\n}\n.bd2-align-top:before {\n  content: \"\\e95c\";\n}\n.bd2-align-top-two:before {\n  content: \"\\e95d\";\n}\n.bd2-align-vertical-center-two:before {\n  content: \"\\e95e\";\n}\n.bd2-align-vertically:before {\n  content: \"\\e95f\";\n}\n.bd2-alipay:before {\n  content: \"\\e960\";\n}\n.bd2-all-application:before {\n  content: \"\\e961\";\n}\n.bd2-alphabetical-sorting:before {\n  content: \"\\e962\";\n}\n.bd2-alphabetical-sorting-two:before {\n  content: \"\\e963\";\n}\n.bd2-ambulance:before {\n  content: \"\\e964\";\n}\n.bd2-analysis:before {\n  content: \"\\e965\";\n}\n.bd2-anchor:before {\n  content: \"\\e966\";\n}\n.bd2-anchor-one:before {\n  content: \"\\e967\";\n}\n.bd2-anchor-round:before {\n  content: \"\\e968\";\n}\n.bd2-anchor-squre:before {\n  content: \"\\e969\";\n}\n.bd2-anchor-two:before {\n  content: \"\\e96a\";\n}\n.bd2-android:before {\n  content: \"\\e96b\";\n}\n.bd2-angry-face:before {\n  content: \"\\e96c\";\n}\n.bd2-anguished-face:before {\n  content: \"\\e96d\";\n}\n.bd2-announcement:before {\n  content: \"\\e96e\";\n}\n.bd2-anti-corrosion:before {\n  content: \"\\e96f\";\n}\n.bd2-aperture-priority:before {\n  content: \"\\e970\";\n}\n.bd2-api:before {\n  content: \"\\e971\";\n}\n.bd2-api-app:before {\n  content: \"\\e972\";\n}\n.bd2-apple:before {\n  content: \"\\e973\";\n}\n.bd2-apple-one:before {\n  content: \"\\e974\";\n}\n.bd2-applet-closed:before {\n  content: \"\\e975\";\n}\n.bd2-application:before {\n  content: \"\\e976\";\n}\n.bd2-application-effect:before {\n  content: \"\\e977\";\n}\n.bd2-application-menu:before {\n  content: \"\\e978\";\n}\n.bd2-application-one:before {\n  content: \"\\e979\";\n}\n.bd2-application-two:before {\n  content: \"\\e97a\";\n}\n.bd2-appointment:before {\n  content: \"\\e97b\";\n}\n.bd2-app-store:before {\n  content: \"\\e97c\";\n}\n.bd2-app-switch:before {\n  content: \"\\e97d\";\n}\n.bd2-aquarius:before {\n  content: \"\\e97e\";\n}\n.bd2-arc-de-triomphe:before {\n  content: \"\\e97f\";\n}\n.bd2-archers-bow:before {\n  content: \"\\e980\";\n}\n.bd2-archery:before {\n  content: \"\\e981\";\n}\n.bd2-area-map:before {\n  content: \"\\e982\";\n}\n.bd2-arena:before {\n  content: \"\\e983\";\n}\n.bd2-aries:before {\n  content: \"\\e984\";\n}\n.bd2-arithmetic:before {\n  content: \"\\e985\";\n}\n.bd2-arithmetic-buttons:before {\n  content: \"\\e986\";\n}\n.bd2-arithmetic-one:before {\n  content: \"\\e987\";\n}\n.bd2-arrow-circle-down:before {\n  content: \"\\e988\";\n}\n.bd2-arrow-circle-left:before {\n  content: \"\\e989\";\n}\n.bd2-arrow-circle-right:before {\n  content: \"\\e98a\";\n}\n.bd2-arrow-circle-up:before {\n  content: \"\\e98b\";\n}\n.bd2-arrow-down:before {\n  content: \"\\e98c\";\n}\n.bd2-arrow-keys:before {\n  content: \"\\e98d\";\n}\n.bd2-arrow-left:before {\n  content: \"\\e98e\";\n}\n.bd2-arrow-left-down:before {\n  content: \"\\e98f\";\n}\n.bd2-arrow-left-up:before {\n  content: \"\\e990\";\n}\n.bd2-arrow-right:before {\n  content: \"\\e991\";\n}\n.bd2-arrow-right-down:before {\n  content: \"\\e992\";\n}\n.bd2-arrow-right-up:before {\n  content: \"\\e993\";\n}\n.bd2-arrow-up:before {\n  content: \"\\e994\";\n}\n.bd2-assembly-line:before {\n  content: \"\\e995\";\n}\n.bd2-association:before {\n  content: \"\\e996\";\n}\n.bd2-asterisk:before {\n  content: \"\\e997\";\n}\n.bd2-asterisk-key:before {\n  content: \"\\e998\";\n}\n.bd2-astonished-face:before {\n  content: \"\\e999\";\n}\n.bd2-at-sign:before {\n  content: \"\\e99a\";\n}\n.bd2-attention:before {\n  content: \"\\e99b\";\n}\n.bd2-audio-file:before {\n  content: \"\\e99c\";\n}\n.bd2-audit:before {\n  content: \"\\e99d\";\n}\n.bd2-auto-focus:before {\n  content: \"\\e99e\";\n}\n.bd2-auto-height-one:before {\n  content: \"\\e99f\";\n}\n.bd2-auto-line-height:before {\n  content: \"\\e9a0\";\n}\n.bd2-auto-line-width:before {\n  content: \"\\e9a1\";\n}\n.bd2-auto-width:before {\n  content: \"\\e9a2\";\n}\n.bd2-auto-width-one:before {\n  content: \"\\e9a3\";\n}\n.bd2-avatar:before {\n  content: \"\\e9a4\";\n}\n.bd2-average:before {\n  content: \"\\e9a5\";\n}\n.bd2-aviation:before {\n  content: \"\\e9a6\";\n}\n.bd2-avocado:before {\n  content: \"\\e9a7\";\n}\n.bd2-avocado-one:before {\n  content: \"\\e9a8\";\n}\n.bd2-baby:before {\n  content: \"\\e9a9\";\n}\n.bd2-baby-app:before {\n  content: \"\\e9aa\";\n}\n.bd2-baby-bottle:before {\n  content: \"\\e9ab\";\n}\n.bd2-baby-car-seat:before {\n  content: \"\\e9ac\";\n}\n.bd2-baby-feet:before {\n  content: \"\\e9ad\";\n}\n.bd2-baby-meal:before {\n  content: \"\\e9ae\";\n}\n.bd2-baby-mobile:before {\n  content: \"\\e9af\";\n}\n.bd2-baby-one:before {\n  content: \"\\e9b0\";\n}\n.bd2-baby-pants:before {\n  content: \"\\e9b1\";\n}\n.bd2-baby-sling:before {\n  content: \"\\e9b2\";\n}\n.bd2-baby-taste:before {\n  content: \"\\e9b3\";\n}\n.bd2-bachelor-cap:before {\n  content: \"\\e9b4\";\n}\n.bd2-bachelor-cap-one:before {\n  content: \"\\e9b5\";\n}\n.bd2-bachelor-cap-two:before {\n  content: \"\\e9b6\";\n}\n.bd2-back:before {\n  content: \"\\e9b7\";\n}\n.bd2-background-color:before {\n  content: \"\\e9b8\";\n}\n.bd2-back-one:before {\n  content: \"\\e9b9\";\n}\n.bd2-backpack:before {\n  content: \"\\e9ba\";\n}\n.bd2-bad:before {\n  content: \"\\e9bb\";\n}\n.bd2-badge:before {\n  content: \"\\e9bc\";\n}\n.bd2-badge-two:before {\n  content: \"\\e9bd\";\n}\n.bd2-badminton:before {\n  content: \"\\e9be\";\n}\n.bd2-bad-one:before {\n  content: \"\\e9bf\";\n}\n.bd2-bad-two:before {\n  content: \"\\e9c0\";\n}\n.bd2-baggage-delay:before {\n  content: \"\\e9c1\";\n}\n.bd2-balance:before {\n  content: \"\\e9c2\";\n}\n.bd2-balance-one:before {\n  content: \"\\e9c3\";\n}\n.bd2-balance-two:before {\n  content: \"\\e9c4\";\n}\n.bd2-banana:before {\n  content: \"\\e9c5\";\n}\n.bd2-bank:before {\n  content: \"\\e9c6\";\n}\n.bd2-bank-card:before {\n  content: \"\\e9c7\";\n}\n.bd2-bank-card-one:before {\n  content: \"\\e9c8\";\n}\n.bd2-bank-card-two:before {\n  content: \"\\e9c9\";\n}\n.bd2-bank-transfer:before {\n  content: \"\\e9ca\";\n}\n.bd2-baokemeng:before {\n  content: \"\\e9cb\";\n}\n.bd2-barbecue:before {\n  content: \"\\e9cc\";\n}\n.bd2-barber-brush:before {\n  content: \"\\e9cd\";\n}\n.bd2-barber-clippers:before {\n  content: \"\\e9ce\";\n}\n.bd2-bar-code:before {\n  content: \"\\e9cf\";\n}\n.bd2-baseball:before {\n  content: \"\\e9d0\";\n}\n.bd2-baseball-bat:before {\n  content: \"\\e9d1\";\n}\n.bd2-baseball-cap:before {\n  content: \"\\e9d2\";\n}\n.bd2-basketball:before {\n  content: \"\\e9d3\";\n}\n.bd2-basketball-clothes:before {\n  content: \"\\e9d4\";\n}\n.bd2-basketball-one:before {\n  content: \"\\e9d5\";\n}\n.bd2-basketball-stand:before {\n  content: \"\\e9d6\";\n}\n.bd2-bat:before {\n  content: \"\\e9d7\";\n}\n.bd2-battery-charge:before {\n  content: \"\\e9d8\";\n}\n.bd2-battery-empty:before {\n  content: \"\\e9d9\";\n}\n.bd2-battery-failure:before {\n  content: \"\\e9da\";\n}\n.bd2-battery-full:before {\n  content: \"\\e9db\";\n}\n.bd2-battery-storage:before {\n  content: \"\\e9dc\";\n}\n.bd2-battery-tips:before {\n  content: \"\\e9dd\";\n}\n.bd2-battery-working:before {\n  content: \"\\e9de\";\n}\n.bd2-battery-working-one:before {\n  content: \"\\e9df\";\n}\n.bd2-beach-umbrella:before {\n  content: \"\\e9e0\";\n}\n.bd2-bear:before {\n  content: \"\\e9e1\";\n}\n.bd2-beauty:before {\n  content: \"\\e9e2\";\n}\n.bd2-beauty-instrument:before {\n  content: \"\\e9e3\";\n}\n.bd2-bedside:before {\n  content: \"\\e9e4\";\n}\n.bd2-bedside-two:before {\n  content: \"\\e9e5\";\n}\n.bd2-bee:before {\n  content: \"\\e9e6\";\n}\n.bd2-beer:before {\n  content: \"\\e9e7\";\n}\n.bd2-beer-mug:before {\n  content: \"\\e9e8\";\n}\n.bd2-behance:before {\n  content: \"\\e9e9\";\n}\n.bd2-bell-ring:before {\n  content: \"\\e9ea\";\n}\n.bd2-belt:before {\n  content: \"\\e9eb\";\n}\n.bd2-benz:before {\n  content: \"\\e9ec\";\n}\n.bd2-bezier-curve:before {\n  content: \"\\e9ed\";\n}\n.bd2-bib:before {\n  content: \"\\e9ee\";\n}\n.bd2-big-clock:before {\n  content: \"\\e9ef\";\n}\n.bd2-big-x:before {\n  content: \"\\e9f0\";\n}\n.bd2-bike:before {\n  content: \"\\e9f1\";\n}\n.bd2-bill:before {\n  content: \"\\e9f2\";\n}\n.bd2-bird:before {\n  content: \"\\e9f3\";\n}\n.bd2-birthday-cake:before {\n  content: \"\\e9f4\";\n}\n.bd2-bitcoin:before {\n  content: \"\\e9f5\";\n}\n.bd2-blackboard:before {\n  content: \"\\e9f6\";\n}\n.bd2-black-eight:before {\n  content: \"\\e9f7\";\n}\n.bd2-blade:before {\n  content: \"\\e9f8\";\n}\n.bd2-bless:before {\n  content: \"\\e9f9\";\n}\n.bd2-block:before {\n  content: \"\\e9fa\";\n}\n.bd2-blockchain:before {\n  content: \"\\e9fb\";\n}\n.bd2-block-eight:before {\n  content: \"\\e9fc\";\n}\n.bd2-block-five:before {\n  content: \"\\e9fd\";\n}\n.bd2-block-four:before {\n  content: \"\\e9fe\";\n}\n.bd2-block-nine:before {\n  content: \"\\e9ff\";\n}\n.bd2-block-one:before {\n  content: \"\\ea00\";\n}\n.bd2-blocks-and-arrows:before {\n  content: \"\\ea01\";\n}\n.bd2-block-seven:before {\n  content: \"\\ea02\";\n}\n.bd2-block-six:before {\n  content: \"\\ea03\";\n}\n.bd2-block-ten:before {\n  content: \"\\ea04\";\n}\n.bd2-block-three:before {\n  content: \"\\ea05\";\n}\n.bd2-block-two:before {\n  content: \"\\ea06\";\n}\n.bd2-bloom:before {\n  content: \"\\ea07\";\n}\n.bd2-blossom:before {\n  content: \"\\ea08\";\n}\n.bd2-bluetooth:before {\n  content: \"\\ea09\";\n}\n.bd2-boiler:before {\n  content: \"\\ea0a\";\n}\n.bd2-bolt-one:before {\n  content: \"\\ea0b\";\n}\n.bd2-bone:before {\n  content: \"\\ea0c\";\n}\n.bd2-book:before {\n  content: \"\\ea0d\";\n}\n.bd2-bookmark:before {\n  content: \"\\ea0e\";\n}\n.bd2-bookmark-one:before {\n  content: \"\\ea0f\";\n}\n.bd2-bookmark-three:before {\n  content: \"\\ea10\";\n}\n.bd2-book-one:before {\n  content: \"\\ea11\";\n}\n.bd2-book-open:before {\n  content: \"\\ea12\";\n}\n.bd2-bookshelf:before {\n  content: \"\\ea13\";\n}\n.bd2-booster-car-seat:before {\n  content: \"\\ea14\";\n}\n.bd2-booth:before {\n  content: \"\\ea15\";\n}\n.bd2-boots:before {\n  content: \"\\ea16\";\n}\n.bd2-bottle:before {\n  content: \"\\ea17\";\n}\n.bd2-bottle-one:before {\n  content: \"\\ea18\";\n}\n.bd2-bottle-three:before {\n  content: \"\\ea19\";\n}\n.bd2-bottle-two:before {\n  content: \"\\ea1a\";\n}\n.bd2-bottom-bar:before {\n  content: \"\\ea1b\";\n}\n.bd2-bottom-bar-one:before {\n  content: \"\\ea1c\";\n}\n.bd2-bow:before {\n  content: \"\\ea1d\";\n}\n.bd2-bowl:before {\n  content: \"\\ea1e\";\n}\n.bd2-bowling:before {\n  content: \"\\ea1f\";\n}\n.bd2-bowl-one:before {\n  content: \"\\ea20\";\n}\n.bd2-box:before {\n  content: \"\\ea21\";\n}\n.bd2-boxing:before {\n  content: \"\\ea22\";\n}\n.bd2-boxing-one:before {\n  content: \"\\ea23\";\n}\n.bd2-boy:before {\n  content: \"\\ea24\";\n}\n.bd2-boy-one:before {\n  content: \"\\ea25\";\n}\n.bd2-boy-stroller:before {\n  content: \"\\ea26\";\n}\n.bd2-boy-two:before {\n  content: \"\\ea27\";\n}\n.bd2-brain:before {\n  content: \"\\ea28\";\n}\n.bd2-brake-pads:before {\n  content: \"\\ea29\";\n}\n.bd2-branch:before {\n  content: \"\\ea2a\";\n}\n.bd2-branch-one:before {\n  content: \"\\ea2b\";\n}\n.bd2-branch-two:before {\n  content: \"\\ea2c\";\n}\n.bd2-brdige-three:before {\n  content: \"\\ea2d\";\n}\n.bd2-bread:before {\n  content: \"\\ea2e\";\n}\n.bd2-bread-machine:before {\n  content: \"\\ea2f\";\n}\n.bd2-bread-one:before {\n  content: \"\\ea30\";\n}\n.bd2-breast-pump:before {\n  content: \"\\ea31\";\n}\n.bd2-bridge-one:before {\n  content: \"\\ea32\";\n}\n.bd2-bridge-two:before {\n  content: \"\\ea33\";\n}\n.bd2-briefcase:before {\n  content: \"\\ea34\";\n}\n.bd2-brightness:before {\n  content: \"\\ea35\";\n}\n.bd2-bring-forward:before {\n  content: \"\\ea36\";\n}\n.bd2-bring-to-front:before {\n  content: \"\\ea37\";\n}\n.bd2-bring-to-front-one:before {\n  content: \"\\ea38\";\n}\n.bd2-broadcast:before {\n  content: \"\\ea39\";\n}\n.bd2-broadcast-one:before {\n  content: \"\\ea3a\";\n}\n.bd2-broadcast-radio:before {\n  content: \"\\ea3b\";\n}\n.bd2-browser:before {\n  content: \"\\ea3c\";\n}\n.bd2-browser-chrome:before {\n  content: \"\\ea3d\";\n}\n.bd2-browser-safari:before {\n  content: \"\\ea3e\";\n}\n.bd2-bubble-chart:before {\n  content: \"\\ea3f\";\n}\n.bd2-bug:before {\n  content: \"\\ea40\";\n}\n.bd2-building-four:before {\n  content: \"\\ea41\";\n}\n.bd2-building-one:before {\n  content: \"\\ea42\";\n}\n.bd2-building-three:before {\n  content: \"\\ea43\";\n}\n.bd2-building-two:before {\n  content: \"\\ea44\";\n}\n.bd2-bullet-map:before {\n  content: \"\\ea45\";\n}\n.bd2-bus:before {\n  content: \"\\ea46\";\n}\n.bd2-bus-one:before {\n  content: \"\\ea47\";\n}\n.bd2-bus-two:before {\n  content: \"\\ea48\";\n}\n.bd2-butterfly:before {\n  content: \"\\ea49\";\n}\n.bd2-buy:before {\n  content: \"\\ea4a\";\n}\n.bd2-bydesign:before {\n  content: \"\\ea4b\";\n}\n.bd2-bye:before {\n  content: \"\\ea4c\";\n}\n.bd2-bytedance:before {\n  content: \"\\ea4d\";\n}\n.bd2-bytedance-applets:before {\n  content: \"\\ea4e\";\n}\n.bd2-bytedance-mini-app:before {\n  content: \"\\ea4f\";\n}\n.bd2-cable-car:before {\n  content: \"\\ea50\";\n}\n.bd2-cactus:before {\n  content: \"\\ea51\";\n}\n.bd2-cake:before {\n  content: \"\\ea52\";\n}\n.bd2-cake-five:before {\n  content: \"\\ea53\";\n}\n.bd2-cake-four:before {\n  content: \"\\ea54\";\n}\n.bd2-cake-one:before {\n  content: \"\\ea55\";\n}\n.bd2-cake-three:before {\n  content: \"\\ea56\";\n}\n.bd2-cake-two:before {\n  content: \"\\ea57\";\n}\n.bd2-calculator:before {\n  content: \"\\ea58\";\n}\n.bd2-calculator-one:before {\n  content: \"\\ea59\";\n}\n.bd2-calendar:before {\n  content: \"\\ea5a\";\n}\n.bd2-calendar-dot:before {\n  content: \"\\ea5b\";\n}\n.bd2-calendar-thirty:before {\n  content: \"\\ea5c\";\n}\n.bd2-calendar-thirty-two:before {\n  content: \"\\ea5d\";\n}\n.bd2-calendar-three:before {\n  content: \"\\ea5e\";\n}\n.bd2-camera:before {\n  content: \"\\ea5f\";\n}\n.bd2-camera-five:before {\n  content: \"\\ea60\";\n}\n.bd2-camera-four:before {\n  content: \"\\ea61\";\n}\n.bd2-camera-one:before {\n  content: \"\\ea62\";\n}\n.bd2-camera-three:before {\n  content: \"\\ea63\";\n}\n.bd2-camera-two:before {\n  content: \"\\ea64\";\n}\n.bd2-camp:before {\n  content: \"\\ea65\";\n}\n.bd2-cancer:before {\n  content: \"\\ea66\";\n}\n.bd2-candy:before {\n  content: \"\\ea67\";\n}\n.bd2-canned-fruit:before {\n  content: \"\\ea68\";\n}\n.bd2-capricornus:before {\n  content: \"\\ea69\";\n}\n.bd2-car:before {\n  content: \"\\ea6a\";\n}\n.bd2-car-battery:before {\n  content: \"\\ea6b\";\n}\n.bd2-cardioelectric:before {\n  content: \"\\ea6c\";\n}\n.bd2-card-two:before {\n  content: \"\\ea6d\";\n}\n.bd2-carousel:before {\n  content: \"\\ea6e\";\n}\n.bd2-carousel-video:before {\n  content: \"\\ea6f\";\n}\n.bd2-carrot:before {\n  content: \"\\ea70\";\n}\n.bd2-castle:before {\n  content: \"\\ea71\";\n}\n.bd2-cast-screen:before {\n  content: \"\\ea72\";\n}\n.bd2-cat:before {\n  content: \"\\ea73\";\n}\n.bd2-category-management:before {\n  content: \"\\ea74\";\n}\n.bd2-cattle:before {\n  content: \"\\ea75\";\n}\n.bd2-cattle-zodiac:before {\n  content: \"\\ea76\";\n}\n.bd2-caution:before {\n  content: \"\\ea77\";\n}\n.bd2-cc:before {\n  content: \"\\ea78\";\n}\n.bd2-cd:before {\n  content: \"\\ea79\";\n}\n.bd2-cell:before {\n  content: \"\\ea7a\";\n}\n.bd2-ce-marking:before {\n  content: \"\\ea7b\";\n}\n.bd2-center-alignment:before {\n  content: \"\\ea7c\";\n}\n.bd2-certificate:before {\n  content: \"\\ea7d\";\n}\n.bd2-chafing-dish:before {\n  content: \"\\ea7e\";\n}\n.bd2-chafing-dish-one:before {\n  content: \"\\ea7f\";\n}\n.bd2-chair:before {\n  content: \"\\ea80\";\n}\n.bd2-chair-one:before {\n  content: \"\\ea81\";\n}\n.bd2-change:before {\n  content: \"\\ea82\";\n}\n.bd2-change-date-sort:before {\n  content: \"\\ea83\";\n}\n.bd2-charging-treasure:before {\n  content: \"\\ea84\";\n}\n.bd2-chart-graph:before {\n  content: \"\\ea85\";\n}\n.bd2-chart-histogram:before {\n  content: \"\\ea86\";\n}\n.bd2-chart-histogram-one:before {\n  content: \"\\ea87\";\n}\n.bd2-chart-histogram-two:before {\n  content: \"\\ea88\";\n}\n.bd2-chart-line:before {\n  content: \"\\ea89\";\n}\n.bd2-chart-line-area:before {\n  content: \"\\ea8a\";\n}\n.bd2-chart-pie:before {\n  content: \"\\ea8b\";\n}\n.bd2-chart-pie-one:before {\n  content: \"\\ea8c\";\n}\n.bd2-chart-proportion:before {\n  content: \"\\ea8d\";\n}\n.bd2-chart-ring:before {\n  content: \"\\ea8e\";\n}\n.bd2-chart-scatter:before {\n  content: \"\\ea8f\";\n}\n.bd2-chart-stock:before {\n  content: \"\\ea90\";\n}\n.bd2-check:before {\n  content: \"\\ea91\";\n}\n.bd2-checkbox:before {\n  content: \"\\ea92\";\n}\n.bd2-check-correct:before {\n  content: \"\\ea93\";\n}\n.bd2-checkerboard:before {\n  content: \"\\ea94\";\n}\n.bd2-check-in:before {\n  content: \"\\ea95\";\n}\n.bd2-checklist:before {\n  content: \"\\ea96\";\n}\n.bd2-check-one:before {\n  content: \"\\ea97\";\n}\n.bd2-check-small:before {\n  content: \"\\ea98\";\n}\n.bd2-cheese:before {\n  content: \"\\ea99\";\n}\n.bd2-chef-hat:before {\n  content: \"\\ea9a\";\n}\n.bd2-chef-hat-one:before {\n  content: \"\\ea9b\";\n}\n.bd2-cherry:before {\n  content: \"\\ea9c\";\n}\n.bd2-chess:before {\n  content: \"\\ea9d\";\n}\n.bd2-chess-one:before {\n  content: \"\\ea9e\";\n}\n.bd2-chest:before {\n  content: \"\\ea9f\";\n}\n.bd2-chicken:before {\n  content: \"\\eaa0\";\n}\n.bd2-chicken-leg:before {\n  content: \"\\eaa1\";\n}\n.bd2-chicken-zodiac:before {\n  content: \"\\eaa2\";\n}\n.bd2-children-cap:before {\n  content: \"\\eaa3\";\n}\n.bd2-children-pyramid:before {\n  content: \"\\eaa4\";\n}\n.bd2-child-with-pacifier:before {\n  content: \"\\eaa5\";\n}\n.bd2-chili:before {\n  content: \"\\eaa6\";\n}\n.bd2-chimney:before {\n  content: \"\\eaa7\";\n}\n.bd2-chinese:before {\n  content: \"\\eaa8\";\n}\n.bd2-chinese-one:before {\n  content: \"\\eaa9\";\n}\n.bd2-chinese-pavilion:before {\n  content: \"\\eaaa\";\n}\n.bd2-chip:before {\n  content: \"\\eaab\";\n}\n.bd2-chopping-board:before {\n  content: \"\\eaac\";\n}\n.bd2-chopsticks-fork:before {\n  content: \"\\eaad\";\n}\n.bd2-christmas-tree:before {\n  content: \"\\eaae\";\n}\n.bd2-christmas-tree-one:before {\n  content: \"\\eaaf\";\n}\n.bd2-church-one:before {\n  content: \"\\eab0\";\n}\n.bd2-church-two:before {\n  content: \"\\eab1\";\n}\n.bd2-circle-double-down:before {\n  content: \"\\eab2\";\n}\n.bd2-circle-double-left:before {\n  content: \"\\eab3\";\n}\n.bd2-circle-double-right:before {\n  content: \"\\eab4\";\n}\n.bd2-circle-double-up:before {\n  content: \"\\eab5\";\n}\n.bd2-circle-five-line:before {\n  content: \"\\eab6\";\n}\n.bd2-circle-four:before {\n  content: \"\\eab7\";\n}\n.bd2-circle-four-line:before {\n  content: \"\\eab8\";\n}\n.bd2-circle-house:before {\n  content: \"\\eab9\";\n}\n.bd2-circle-left-down:before {\n  content: \"\\eaba\";\n}\n.bd2-circle-left-up:before {\n  content: \"\\eabb\";\n}\n.bd2-circle-right-down:before {\n  content: \"\\eabc\";\n}\n.bd2-circle-right-up:before {\n  content: \"\\eabd\";\n}\n.bd2-circles-and-triangles:before {\n  content: \"\\eabe\";\n}\n.bd2-circles-seven:before {\n  content: \"\\eabf\";\n}\n.bd2-circle-three:before {\n  content: \"\\eac0\";\n}\n.bd2-circle-two-line:before {\n  content: \"\\eac1\";\n}\n.bd2-circular-connection:before {\n  content: \"\\eac2\";\n}\n.bd2-circus:before {\n  content: \"\\eac3\";\n}\n.bd2-city:before {\n  content: \"\\eac4\";\n}\n.bd2-city-gate:before {\n  content: \"\\eac5\";\n}\n.bd2-city-one:before {\n  content: \"\\eac6\";\n}\n.bd2-clap:before {\n  content: \"\\eac7\";\n}\n.bd2-classroom:before {\n  content: \"\\eac8\";\n}\n.bd2-clear:before {\n  content: \"\\eac9\";\n}\n.bd2-clear-format:before {\n  content: \"\\eaca\";\n}\n.bd2-click:before {\n  content: \"\\eacb\";\n}\n.bd2-click-tap:before {\n  content: \"\\eacc\";\n}\n.bd2-click-tap-two:before {\n  content: \"\\eacd\";\n}\n.bd2-click-to-fold:before {\n  content: \"\\eace\";\n}\n.bd2-clipboard:before {\n  content: \"\\eacf\";\n}\n.bd2-clock-tower:before {\n  content: \"\\ead0\";\n}\n.bd2-close:before {\n  content: \"\\ead1\";\n}\n.bd2-close-one:before {\n  content: \"\\ead2\";\n}\n.bd2-close-remind:before {\n  content: \"\\ead3\";\n}\n.bd2-close-small:before {\n  content: \"\\ead4\";\n}\n.bd2-close-wifi:before {\n  content: \"\\ead5\";\n}\n.bd2-clothes-briefs:before {\n  content: \"\\ead6\";\n}\n.bd2-clothes-cardigan:before {\n  content: \"\\ead7\";\n}\n.bd2-clothes-crew-neck:before {\n  content: \"\\ead8\";\n}\n.bd2-clothes-diapers:before {\n  content: \"\\ead9\";\n}\n.bd2-clothes-gloves:before {\n  content: \"\\eada\";\n}\n.bd2-clothes-gloves-two:before {\n  content: \"\\eadb\";\n}\n.bd2-clothes-hoodie:before {\n  content: \"\\eadc\";\n}\n.bd2-clothes-pants:before {\n  content: \"\\eadd\";\n}\n.bd2-clothes-pants-short:before {\n  content: \"\\eade\";\n}\n.bd2-clothes-pants-sweat:before {\n  content: \"\\eadf\";\n}\n.bd2-clothes-short-sleeve:before {\n  content: \"\\eae0\";\n}\n.bd2-clothes-skates:before {\n  content: \"\\eae1\";\n}\n.bd2-clothes-suit:before {\n  content: \"\\eae2\";\n}\n.bd2-clothes-sweater:before {\n  content: \"\\eae3\";\n}\n.bd2-clothes-turtleneck:before {\n  content: \"\\eae4\";\n}\n.bd2-clothes-windbreaker:before {\n  content: \"\\eae5\";\n}\n.bd2-cloud-storage:before {\n  content: \"\\eae6\";\n}\n.bd2-cloudy:before {\n  content: \"\\eae7\";\n}\n.bd2-cloudy-night:before {\n  content: \"\\eae8\";\n}\n.bd2-clue:before {\n  content: \"\\eae9\";\n}\n.bd2-coat-hanger:before {\n  content: \"\\eaea\";\n}\n.bd2-cocktail:before {\n  content: \"\\eaeb\";\n}\n.bd2-coconut-tree:before {\n  content: \"\\eaec\";\n}\n.bd2-code:before {\n  content: \"\\eaed\";\n}\n.bd2-code-brackets:before {\n  content: \"\\eaee\";\n}\n.bd2-code-computer:before {\n  content: \"\\eaef\";\n}\n.bd2-code-download:before {\n  content: \"\\eaf0\";\n}\n.bd2-code-laptop:before {\n  content: \"\\eaf1\";\n}\n.bd2-code-one:before {\n  content: \"\\eaf2\";\n}\n.bd2-coffee-machine:before {\n  content: \"\\eaf3\";\n}\n.bd2-cola:before {\n  content: \"\\eaf4\";\n}\n.bd2-collapse-text-input:before {\n  content: \"\\eaf5\";\n}\n.bd2-collect-computer:before {\n  content: \"\\eaf6\";\n}\n.bd2-collection-files:before {\n  content: \"\\eaf7\";\n}\n.bd2-collection-records:before {\n  content: \"\\eaf8\";\n}\n.bd2-collect-laptop:before {\n  content: \"\\eaf9\";\n}\n.bd2-collect-picture:before {\n  content: \"\\eafa\";\n}\n.bd2-color-card:before {\n  content: \"\\eafb\";\n}\n.bd2-color-filter:before {\n  content: \"\\eafc\";\n}\n.bd2-column:before {\n  content: \"\\eafd\";\n}\n.bd2-comb:before {\n  content: \"\\eafe\";\n}\n.bd2-come:before {\n  content: \"\\eaff\";\n}\n.bd2-command:before {\n  content: \"\\eb00\";\n}\n.bd2-comment:before {\n  content: \"\\eb01\";\n}\n.bd2-comment-one:before {\n  content: \"\\eb02\";\n}\n.bd2-comments:before {\n  content: \"\\eb03\";\n}\n.bd2-commodity:before {\n  content: \"\\eb04\";\n}\n.bd2-communication:before {\n  content: \"\\eb05\";\n}\n.bd2-commuter-bag:before {\n  content: \"\\eb06\";\n}\n.bd2-compass:before {\n  content: \"\\eb07\";\n}\n.bd2-compass-one:before {\n  content: \"\\eb08\";\n}\n.bd2-components:before {\n  content: \"\\eb09\";\n}\n.bd2-composition:before {\n  content: \"\\eb0a\";\n}\n.bd2-compression:before {\n  content: \"\\eb0b\";\n}\n.bd2-computer:before {\n  content: \"\\eb0c\";\n}\n.bd2-computer-one:before {\n  content: \"\\eb0d\";\n}\n.bd2-concept-sharing:before {\n  content: \"\\eb0e\";\n}\n.bd2-concern:before {\n  content: \"\\eb0f\";\n}\n.bd2-conditioner:before {\n  content: \"\\eb10\";\n}\n.bd2-cone:before {\n  content: \"\\eb11\";\n}\n.bd2-cones:before {\n  content: \"\\eb12\";\n}\n.bd2-config:before {\n  content: \"\\eb13\";\n}\n.bd2-confounded-face:before {\n  content: \"\\eb14\";\n}\n.bd2-confused-face:before {\n  content: \"\\eb15\";\n}\n.bd2-connect:before {\n  content: \"\\eb16\";\n}\n.bd2-connect-address-one:before {\n  content: \"\\eb17\";\n}\n.bd2-connect-address-two:before {\n  content: \"\\eb18\";\n}\n.bd2-connection:before {\n  content: \"\\eb19\";\n}\n.bd2-connection-arrow:before {\n  content: \"\\eb1a\";\n}\n.bd2-connection-box:before {\n  content: \"\\eb1b\";\n}\n.bd2-connection-point:before {\n  content: \"\\eb1c\";\n}\n.bd2-connection-point-two:before {\n  content: \"\\eb1d\";\n}\n.bd2-consignment:before {\n  content: \"\\eb1e\";\n}\n.bd2-consume:before {\n  content: \"\\eb1f\";\n}\n.bd2-contrast:before {\n  content: \"\\eb20\";\n}\n.bd2-contrast-view:before {\n  content: \"\\eb21\";\n}\n.bd2-contrast-view-circle:before {\n  content: \"\\eb22\";\n}\n.bd2-control:before {\n  content: \"\\eb23\";\n}\n.bd2-converging-gateway:before {\n  content: \"\\eb24\";\n}\n.bd2-cook:before {\n  content: \"\\eb25\";\n}\n.bd2-cooking:before {\n  content: \"\\eb26\";\n}\n.bd2-cooking-pot:before {\n  content: \"\\eb27\";\n}\n.bd2-cool:before {\n  content: \"\\eb28\";\n}\n.bd2-cooperative-handshake:before {\n  content: \"\\eb29\";\n}\n.bd2-coordinate-system:before {\n  content: \"\\eb2a\";\n}\n.bd2-copy:before {\n  content: \"\\eb2b\";\n}\n.bd2-copy-link:before {\n  content: \"\\eb2c\";\n}\n.bd2-copy-one:before {\n  content: \"\\eb2d\";\n}\n.bd2-copyright:before {\n  content: \"\\eb2e\";\n}\n.bd2-corner-down-left:before {\n  content: \"\\eb2f\";\n}\n.bd2-corner-down-right:before {\n  content: \"\\eb30\";\n}\n.bd2-corner-left-down:before {\n  content: \"\\eb31\";\n}\n.bd2-corner-left-up:before {\n  content: \"\\eb32\";\n}\n.bd2-corner-right-down:before {\n  content: \"\\eb33\";\n}\n.bd2-corner-right-up:before {\n  content: \"\\eb34\";\n}\n.bd2-corner-up-left:before {\n  content: \"\\eb35\";\n}\n.bd2-corner-up-right:before {\n  content: \"\\eb36\";\n}\n.bd2-coronavirus:before {\n  content: \"\\eb37\";\n}\n.bd2-correct:before {\n  content: \"\\eb38\";\n}\n.bd2-cosmetic-brush:before {\n  content: \"\\eb39\";\n}\n.bd2-coupon:before {\n  content: \"\\eb3a\";\n}\n.bd2-court:before {\n  content: \"\\eb3b\";\n}\n.bd2-cpu:before {\n  content: \"\\eb3c\";\n}\n.bd2-crab:before {\n  content: \"\\eb3d\";\n}\n.bd2-creation-date-sort:before {\n  content: \"\\eb3e\";\n}\n.bd2-creative:before {\n  content: \"\\eb3f\";\n}\n.bd2-credit:before {\n  content: \"\\eb40\";\n}\n.bd2-crib:before {\n  content: \"\\eb41\";\n}\n.bd2-croissant:before {\n  content: \"\\eb42\";\n}\n.bd2-cross-ring:before {\n  content: \"\\eb43\";\n}\n.bd2-cross-ring-two:before {\n  content: \"\\eb44\";\n}\n.bd2-cross-society:before {\n  content: \"\\eb45\";\n}\n.bd2-crown:before {\n  content: \"\\eb46\";\n}\n.bd2-crown-three:before {\n  content: \"\\eb47\";\n}\n.bd2-crown-two:before {\n  content: \"\\eb48\";\n}\n.bd2-cruise:before {\n  content: \"\\eb49\";\n}\n.bd2-crying-baby:before {\n  content: \"\\eb4a\";\n}\n.bd2-cube:before {\n  content: \"\\eb4b\";\n}\n.bd2-cube-five:before {\n  content: \"\\eb4c\";\n}\n.bd2-cube-four:before {\n  content: \"\\eb4d\";\n}\n.bd2-cube-three:before {\n  content: \"\\eb4e\";\n}\n.bd2-cube-two:before {\n  content: \"\\eb4f\";\n}\n.bd2-cup:before {\n  content: \"\\eb50\";\n}\n.bd2-cup-four:before {\n  content: \"\\eb51\";\n}\n.bd2-cup-one:before {\n  content: \"\\eb52\";\n}\n.bd2-curling:before {\n  content: \"\\eb53\";\n}\n.bd2-currency:before {\n  content: \"\\eb54\";\n}\n.bd2-curve-adjustment:before {\n  content: \"\\eb55\";\n}\n.bd2-customer:before {\n  content: \"\\eb56\";\n}\n.bd2-cutting:before {\n  content: \"\\eb57\";\n}\n.bd2-cutting-one:before {\n  content: \"\\eb58\";\n}\n.bd2-cuvette:before {\n  content: \"\\eb59\";\n}\n.bd2-cycle:before {\n  content: \"\\eb5a\";\n}\n.bd2-cycle-arrow:before {\n  content: \"\\eb5b\";\n}\n.bd2-cycle-movement:before {\n  content: \"\\eb5c\";\n}\n.bd2-cycle-one:before {\n  content: \"\\eb5d\";\n}\n.bd2-cylinder:before {\n  content: \"\\eb5e\";\n}\n.bd2-damage-map:before {\n  content: \"\\eb5f\";\n}\n.bd2-dark-mode:before {\n  content: \"\\eb60\";\n}\n.bd2-dashboard:before {\n  content: \"\\eb61\";\n}\n.bd2-dashboard-car:before {\n  content: \"\\eb62\";\n}\n.bd2-dashboard-one:before {\n  content: \"\\eb63\";\n}\n.bd2-dashboard-two:before {\n  content: \"\\eb64\";\n}\n.bd2-data:before {\n  content: \"\\eb65\";\n}\n.bd2-data-all:before {\n  content: \"\\eb66\";\n}\n.bd2-data-arrival:before {\n  content: \"\\eb67\";\n}\n.bd2-database-alert:before {\n  content: \"\\eb68\";\n}\n.bd2-database-code:before {\n  content: \"\\eb69\";\n}\n.bd2-database-config:before {\n  content: \"\\eb6a\";\n}\n.bd2-database-download:before {\n  content: \"\\eb6b\";\n}\n.bd2-database-enter:before {\n  content: \"\\eb6c\";\n}\n.bd2-database-fail:before {\n  content: \"\\eb6d\";\n}\n.bd2-database-first:before {\n  content: \"\\eb6e\";\n}\n.bd2-database-forbid:before {\n  content: \"\\eb6f\";\n}\n.bd2-database-lock:before {\n  content: \"\\eb70\";\n}\n.bd2-database-network:before {\n  content: \"\\eb71\";\n}\n.bd2-database-network-point:before {\n  content: \"\\eb72\";\n}\n.bd2-database-point:before {\n  content: \"\\eb73\";\n}\n.bd2-database-position:before {\n  content: \"\\eb74\";\n}\n.bd2-database-power:before {\n  content: \"\\eb75\";\n}\n.bd2-database-proportion:before {\n  content: \"\\eb76\";\n}\n.bd2-database-search:before {\n  content: \"\\eb77\";\n}\n.bd2-database-setting:before {\n  content: \"\\eb78\";\n}\n.bd2-database-success:before {\n  content: \"\\eb79\";\n}\n.bd2-database-sync:before {\n  content: \"\\eb7a\";\n}\n.bd2-database-time:before {\n  content: \"\\eb7b\";\n}\n.bd2-data-display:before {\n  content: \"\\eb7c\";\n}\n.bd2-data-file:before {\n  content: \"\\eb7d\";\n}\n.bd2-data-four:before {\n  content: \"\\eb7e\";\n}\n.bd2-data-lock:before {\n  content: \"\\eb7f\";\n}\n.bd2-data-null:before {\n  content: \"\\eb80\";\n}\n.bd2-data-one:before {\n  content: \"\\eb81\";\n}\n.bd2-data-screen:before {\n  content: \"\\eb82\";\n}\n.bd2-data-server:before {\n  content: \"\\eb83\";\n}\n.bd2-data-sheet:before {\n  content: \"\\eb84\";\n}\n.bd2-data-switching:before {\n  content: \"\\eb85\";\n}\n.bd2-data-three:before {\n  content: \"\\eb86\";\n}\n.bd2-data-two:before {\n  content: \"\\eb87\";\n}\n.bd2-data-user:before {\n  content: \"\\eb88\";\n}\n.bd2-date-comes-back:before {\n  content: \"\\eb89\";\n}\n.bd2-deadline-sort:before {\n  content: \"\\eb8a\";\n}\n.bd2-death-star:before {\n  content: \"\\eb8b\";\n}\n.bd2-deeplink:before {\n  content: \"\\eb8c\";\n}\n.bd2-deer:before {\n  content: \"\\eb8d\";\n}\n.bd2-degree-hat:before {\n  content: \"\\eb8e\";\n}\n.bd2-delete:before {\n  content: \"\\eb8f\";\n}\n.bd2-delete-five:before {\n  content: \"\\eb90\";\n}\n.bd2-delete-four:before {\n  content: \"\\eb91\";\n}\n.bd2-delete-key:before {\n  content: \"\\eb92\";\n}\n.bd2-delete-mode:before {\n  content: \"\\eb93\";\n}\n.bd2-delete-one:before {\n  content: \"\\eb94\";\n}\n.bd2-delete-themes:before {\n  content: \"\\eb95\";\n}\n.bd2-delete-three:before {\n  content: \"\\eb96\";\n}\n.bd2-delete-two:before {\n  content: \"\\eb97\";\n}\n.bd2-delivery:before {\n  content: \"\\eb98\";\n}\n.bd2-deposit:before {\n  content: \"\\eb99\";\n}\n.bd2-descend:before {\n  content: \"\\eb9a\";\n}\n.bd2-desk-lamp:before {\n  content: \"\\eb9b\";\n}\n.bd2-desk-lamp-one:before {\n  content: \"\\eb9c\";\n}\n.bd2-detection:before {\n  content: \"\\eb9d\";\n}\n.bd2-devices:before {\n  content: \"\\eb9e\";\n}\n.bd2-diamond:before {\n  content: \"\\eb9f\";\n}\n.bd2-diamond-necklace:before {\n  content: \"\\eba0\";\n}\n.bd2-diamond-one:before {\n  content: \"\\eba1\";\n}\n.bd2-diamond-ring:before {\n  content: \"\\eba2\";\n}\n.bd2-diamonds:before {\n  content: \"\\eba3\";\n}\n.bd2-diamond-three:before {\n  content: \"\\eba4\";\n}\n.bd2-diamond-two:before {\n  content: \"\\eba5\";\n}\n.bd2-dianziqian:before {\n  content: \"\\eba6\";\n}\n.bd2-diapers-one:before {\n  content: \"\\eba7\";\n}\n.bd2-difference-set:before {\n  content: \"\\eba8\";\n}\n.bd2-digital-watches:before {\n  content: \"\\eba9\";\n}\n.bd2-direction:before {\n  content: \"\\ebaa\";\n}\n.bd2-direction-adjustment:before {\n  content: \"\\ebab\";\n}\n.bd2-direction-adjustment-three:before {\n  content: \"\\ebac\";\n}\n.bd2-direction-adjustment-two:before {\n  content: \"\\ebad\";\n}\n.bd2-disabaled-web:before {\n  content: \"\\ebae\";\n}\n.bd2-disabled-computer:before {\n  content: \"\\ebaf\";\n}\n.bd2-disabled-laptop:before {\n  content: \"\\ebb0\";\n}\n.bd2-disabled-picture:before {\n  content: \"\\ebb1\";\n}\n.bd2-disappointed-face:before {\n  content: \"\\ebb2\";\n}\n.bd2-discovery-index:before {\n  content: \"\\ebb3\";\n}\n.bd2-disk:before {\n  content: \"\\ebb4\";\n}\n.bd2-disk-one:before {\n  content: \"\\ebb5\";\n}\n.bd2-disk-two:before {\n  content: \"\\ebb6\";\n}\n.bd2-dislike:before {\n  content: \"\\ebb7\";\n}\n.bd2-dislike-two:before {\n  content: \"\\ebb8\";\n}\n.bd2-display:before {\n  content: \"\\ebb9\";\n}\n.bd2-distortion:before {\n  content: \"\\ebba\";\n}\n.bd2-distraught-face:before {\n  content: \"\\ebbb\";\n}\n.bd2-distribute-horizontally:before {\n  content: \"\\ebbc\";\n}\n.bd2-distribute-horizontal-spacing:before {\n  content: \"\\ebbd\";\n}\n.bd2-distribute-vertically:before {\n  content: \"\\ebbe\";\n}\n.bd2-distribute-vertical-spacing:before {\n  content: \"\\ebbf\";\n}\n.bd2-dividing-line:before {\n  content: \"\\ebc0\";\n}\n.bd2-dividing-line-one:before {\n  content: \"\\ebc1\";\n}\n.bd2-diving:before {\n  content: \"\\ebc2\";\n}\n.bd2-diving-bottle:before {\n  content: \"\\ebc3\";\n}\n.bd2-diving-suit:before {\n  content: \"\\ebc4\";\n}\n.bd2-division:before {\n  content: \"\\ebc5\";\n}\n.bd2-dizzy-face:before {\n  content: \"\\ebc6\";\n}\n.bd2-doc-add:before {\n  content: \"\\ebc7\";\n}\n.bd2-doc-detail:before {\n  content: \"\\ebc8\";\n}\n.bd2-doc-fail:before {\n  content: \"\\ebc9\";\n}\n.bd2-doc-search:before {\n  content: \"\\ebca\";\n}\n.bd2-doc-search-two:before {\n  content: \"\\ebcb\";\n}\n.bd2-doc-success:before {\n  content: \"\\ebcc\";\n}\n.bd2-document-folder:before {\n  content: \"\\ebcd\";\n}\n.bd2-dog:before {\n  content: \"\\ebce\";\n}\n.bd2-dog-zodiac:before {\n  content: \"\\ebcf\";\n}\n.bd2-dollar:before {\n  content: \"\\ebd0\";\n}\n.bd2-dolphin:before {\n  content: \"\\ebd1\";\n}\n.bd2-dome:before {\n  content: \"\\ebd2\";\n}\n.bd2-dome-light:before {\n  content: \"\\ebd3\";\n}\n.bd2-done-all:before {\n  content: \"\\ebd4\";\n}\n.bd2-dongchedi:before {\n  content: \"\\ebd5\";\n}\n.bd2-door-handle:before {\n  content: \"\\ebd6\";\n}\n.bd2-dot:before {\n  content: \"\\ebd7\";\n}\n.bd2-double-bed:before {\n  content: \"\\ebd8\";\n}\n.bd2-double-down:before {\n  content: \"\\ebd9\";\n}\n.bd2-double-left:before {\n  content: \"\\ebda\";\n}\n.bd2-double-right:before {\n  content: \"\\ebdb\";\n}\n.bd2-double-up:before {\n  content: \"\\ebdc\";\n}\n.bd2-doughnut:before {\n  content: \"\\ebdd\";\n}\n.bd2-down:before {\n  content: \"\\ebde\";\n}\n.bd2-down-c:before {\n  content: \"\\ebdf\";\n}\n.bd2-download:before {\n  content: \"\\ebe0\";\n}\n.bd2-download-computer:before {\n  content: \"\\ebe1\";\n}\n.bd2-download-four:before {\n  content: \"\\ebe2\";\n}\n.bd2-download-laptop:before {\n  content: \"\\ebe3\";\n}\n.bd2-download-one:before {\n  content: \"\\ebe4\";\n}\n.bd2-download-three:before {\n  content: \"\\ebe5\";\n}\n.bd2-download-two:before {\n  content: \"\\ebe6\";\n}\n.bd2-download-web:before {\n  content: \"\\ebe7\";\n}\n.bd2-down-one:before {\n  content: \"\\ebe8\";\n}\n.bd2-down-picture:before {\n  content: \"\\ebe9\";\n}\n.bd2-down-small:before {\n  content: \"\\ebea\";\n}\n.bd2-down-square:before {\n  content: \"\\ebeb\";\n}\n.bd2-down-two:before {\n  content: \"\\ebec\";\n}\n.bd2-drag:before {\n  content: \"\\ebed\";\n}\n.bd2-dragon-zodiac:before {\n  content: \"\\ebee\";\n}\n.bd2-dribble:before {\n  content: \"\\ebef\";\n}\n.bd2-drink:before {\n  content: \"\\ebf0\";\n}\n.bd2-drone:before {\n  content: \"\\ebf1\";\n}\n.bd2-drone-one:before {\n  content: \"\\ebf2\";\n}\n.bd2-dropbox:before {\n  content: \"\\ebf3\";\n}\n.bd2-drop-down-list:before {\n  content: \"\\ebf4\";\n}\n.bd2-drop-shadow-down:before {\n  content: \"\\ebf5\";\n}\n.bd2-drop-shadow-left:before {\n  content: \"\\ebf6\";\n}\n.bd2-drop-shadow-right:before {\n  content: \"\\ebf7\";\n}\n.bd2-drop-shadow-up:before {\n  content: \"\\ebf8\";\n}\n.bd2-drumstick:before {\n  content: \"\\ebf9\";\n}\n.bd2-dubai:before {\n  content: \"\\ebfa\";\n}\n.bd2-duck:before {\n  content: \"\\ebfb\";\n}\n.bd2-dumbbell:before {\n  content: \"\\ebfc\";\n}\n.bd2-dumbbel-line:before {\n  content: \"\\ebfd\";\n}\n.bd2-dvi:before {\n  content: \"\\ebfe\";\n}\n.bd2-eagle:before {\n  content: \"\\ebff\";\n}\n.bd2-earth:before {\n  content: \"\\ec00\";\n}\n.bd2-easy:before {\n  content: \"\\ec01\";\n}\n.bd2-ecg:before {\n  content: \"\\ec02\";\n}\n.bd2-edit:before {\n  content: \"\\ec03\";\n}\n.bd2-editing:before {\n  content: \"\\ec04\";\n}\n.bd2-edit-movie:before {\n  content: \"\\ec05\";\n}\n.bd2-edit-name:before {\n  content: \"\\ec06\";\n}\n.bd2-edit-one:before {\n  content: \"\\ec07\";\n}\n.bd2-editor:before {\n  content: \"\\ec08\";\n}\n.bd2-edit-two:before {\n  content: \"\\ec09\";\n}\n.bd2-eeg:before {\n  content: \"\\ec0a\";\n}\n.bd2-effects:before {\n  content: \"\\ec0b\";\n}\n.bd2-efferent-four:before {\n  content: \"\\ec0c\";\n}\n.bd2-efferent-three:before {\n  content: \"\\ec0d\";\n}\n.bd2-egg:before {\n  content: \"\\ec0e\";\n}\n.bd2-egg-one:before {\n  content: \"\\ec0f\";\n}\n.bd2-eggplant:before {\n  content: \"\\ec10\";\n}\n.bd2-eiffel-tower:before {\n  content: \"\\ec11\";\n}\n.bd2-eight-key:before {\n  content: \"\\ec12\";\n}\n.bd2-electric-drill:before {\n  content: \"\\ec13\";\n}\n.bd2-electric-iron:before {\n  content: \"\\ec14\";\n}\n.bd2-electric-wave:before {\n  content: \"\\ec15\";\n}\n.bd2-electrocardiogram:before {\n  content: \"\\ec16\";\n}\n.bd2-electronic-door-lock:before {\n  content: \"\\ec17\";\n}\n.bd2-electronic-locks-close:before {\n  content: \"\\ec18\";\n}\n.bd2-electronic-locks-open:before {\n  content: \"\\ec19\";\n}\n.bd2-electronic-pen:before {\n  content: \"\\ec1a\";\n}\n.bd2-elephant:before {\n  content: \"\\ec1b\";\n}\n.bd2-elevator:before {\n  content: \"\\ec1c\";\n}\n.bd2-email-block:before {\n  content: \"\\ec1d\";\n}\n.bd2-email-delect:before {\n  content: \"\\ec1e\";\n}\n.bd2-email-down:before {\n  content: \"\\ec1f\";\n}\n.bd2-email-fail:before {\n  content: \"\\ec20\";\n}\n.bd2-email-lock:before {\n  content: \"\\ec21\";\n}\n.bd2-email-push:before {\n  content: \"\\ec22\";\n}\n.bd2-email-search:before {\n  content: \"\\ec23\";\n}\n.bd2-email-security:before {\n  content: \"\\ec24\";\n}\n.bd2-email-successfully:before {\n  content: \"\\ec25\";\n}\n.bd2-emotion-happy:before {\n  content: \"\\ec26\";\n}\n.bd2-emotion-unhappy:before {\n  content: \"\\ec27\";\n}\n.bd2-empty:before {\n  content: \"\\ec28\";\n}\n.bd2-endless:before {\n  content: \"\\ec29\";\n}\n.bd2-endocrine:before {\n  content: \"\\ec2a\";\n}\n.bd2-endpoint-displacement:before {\n  content: \"\\ec2b\";\n}\n.bd2-endpoint-flat:before {\n  content: \"\\ec2c\";\n}\n.bd2-endpoint-round:before {\n  content: \"\\ec2d\";\n}\n.bd2-endpoint-square:before {\n  content: \"\\ec2e\";\n}\n.bd2-end-time-sort:before {\n  content: \"\\ec2f\";\n}\n.bd2-energy-socket:before {\n  content: \"\\ec30\";\n}\n.bd2-engineering-brand:before {\n  content: \"\\ec31\";\n}\n.bd2-engineering-vehicle:before {\n  content: \"\\ec32\";\n}\n.bd2-english:before {\n  content: \"\\ec33\";\n}\n.bd2-english-mustache:before {\n  content: \"\\ec34\";\n}\n.bd2-enquire:before {\n  content: \"\\ec35\";\n}\n.bd2-enter-key:before {\n  content: \"\\ec36\";\n}\n.bd2-enter-key-one:before {\n  content: \"\\ec37\";\n}\n.bd2-entertainment:before {\n  content: \"\\ec38\";\n}\n.bd2-enter-the-keyboard:before {\n  content: \"\\ec39\";\n}\n.bd2-envelope:before {\n  content: \"\\ec3a\";\n}\n.bd2-envelope-one:before {\n  content: \"\\ec3b\";\n}\n.bd2-equalizer:before {\n  content: \"\\ec3c\";\n}\n.bd2-equal-ratio:before {\n  content: \"\\ec3d\";\n}\n.bd2-erase:before {\n  content: \"\\ec3e\";\n}\n.bd2-error:before {\n  content: \"\\ec3f\";\n}\n.bd2-error-computer:before {\n  content: \"\\ec40\";\n}\n.bd2-error-picture:before {\n  content: \"\\ec41\";\n}\n.bd2-error-prompt:before {\n  content: \"\\ec42\";\n}\n.bd2-escalators:before {\n  content: \"\\ec43\";\n}\n.bd2-ethernet-off:before {\n  content: \"\\ec44\";\n}\n.bd2-ethernet-on:before {\n  content: \"\\ec45\";\n}\n.bd2-every-user:before {\n  content: \"\\ec46\";\n}\n.bd2-excel:before {\n  content: \"\\ec47\";\n}\n.bd2-excel-one:before {\n  content: \"\\ec48\";\n}\n.bd2-exchange:before {\n  content: \"\\ec49\";\n}\n.bd2-exchange-four:before {\n  content: \"\\ec4a\";\n}\n.bd2-exchange-one:before {\n  content: \"\\ec4b\";\n}\n.bd2-exchange-three:before {\n  content: \"\\ec4c\";\n}\n.bd2-exchange-two:before {\n  content: \"\\ec4d\";\n}\n.bd2-exclude-selection:before {\n  content: \"\\ec4e\";\n}\n.bd2-exclusive-gateway:before {\n  content: \"\\ec4f\";\n}\n.bd2-expand-down:before {\n  content: \"\\ec50\";\n}\n.bd2-expand-down-one:before {\n  content: \"\\ec51\";\n}\n.bd2-expand-left:before {\n  content: \"\\ec52\";\n}\n.bd2-expand-left-and-right:before {\n  content: \"\\ec53\";\n}\n.bd2-expand-right:before {\n  content: \"\\ec54\";\n}\n.bd2-expand-text-input:before {\n  content: \"\\ec55\";\n}\n.bd2-expand-up:before {\n  content: \"\\ec56\";\n}\n.bd2-expenses:before {\n  content: \"\\ec57\";\n}\n.bd2-expenses-one:before {\n  content: \"\\ec58\";\n}\n.bd2-experiment:before {\n  content: \"\\ec59\";\n}\n.bd2-experiment-one:before {\n  content: \"\\ec5a\";\n}\n.bd2-export:before {\n  content: \"\\ec5b\";\n}\n.bd2-express-delivery:before {\n  content: \"\\ec5c\";\n}\n.bd2-expressionless-face:before {\n  content: \"\\ec5d\";\n}\n.bd2-extend:before {\n  content: \"\\ec5e\";\n}\n.bd2-external-transmission:before {\n  content: \"\\ec5f\";\n}\n.bd2-eyebrow:before {\n  content: \"\\ec60\";\n}\n.bd2-eyes:before {\n  content: \"\\ec61\";\n}\n.bd2-facebook:before {\n  content: \"\\ec62\";\n}\n.bd2-facebook-one:before {\n  content: \"\\ec63\";\n}\n.bd2-face-powder:before {\n  content: \"\\ec64\";\n}\n.bd2-face-recognition:before {\n  content: \"\\ec65\";\n}\n.bd2-facetime:before {\n  content: \"\\ec66\";\n}\n.bd2-faceu:before {\n  content: \"\\ec67\";\n}\n.bd2-face-without-mouth:before {\n  content: \"\\ec68\";\n}\n.bd2-face-with-smiling-open-eyes:before {\n  content: \"\\ec69\";\n}\n.bd2-facial-cleanser:before {\n  content: \"\\ec6a\";\n}\n.bd2-facial-mask:before {\n  content: \"\\ec6b\";\n}\n.bd2-factory-building:before {\n  content: \"\\ec6c\";\n}\n.bd2-fail-picture:before {\n  content: \"\\ec6d\";\n}\n.bd2-family:before {\n  content: \"\\ec6e\";\n}\n.bd2-fan:before {\n  content: \"\\ec6f\";\n}\n.bd2-fanqiexiaoshuo:before {\n  content: \"\\ec70\";\n}\n.bd2-feelgood:before {\n  content: \"\\ec71\";\n}\n.bd2-feelgood-one:before {\n  content: \"\\ec72\";\n}\n.bd2-f-eight-key:before {\n  content: \"\\ec73\";\n}\n.bd2-feiyu:before {\n  content: \"\\ec74\";\n}\n.bd2-female:before {\n  content: \"\\ec75\";\n}\n.bd2-fence-one:before {\n  content: \"\\ec76\";\n}\n.bd2-fence-two:before {\n  content: \"\\ec77\";\n}\n.bd2-ferris-wheel:before {\n  content: \"\\ec78\";\n}\n.bd2-f-five-key:before {\n  content: \"\\ec79\";\n}\n.bd2-f-four-key:before {\n  content: \"\\ec7a\";\n}\n.bd2-figma:before {\n  content: \"\\ec7b\";\n}\n.bd2-figma-component:before {\n  content: \"\\ec7c\";\n}\n.bd2-figma-flatten-selection:before {\n  content: \"\\ec7d\";\n}\n.bd2-figma-mask:before {\n  content: \"\\ec7e\";\n}\n.bd2-figma-reset-instance:before {\n  content: \"\\ec7f\";\n}\n.bd2-file-addition:before {\n  content: \"\\ec80\";\n}\n.bd2-file-addition-one:before {\n  content: \"\\ec81\";\n}\n.bd2-file-cabinet:before {\n  content: \"\\ec82\";\n}\n.bd2-file-code:before {\n  content: \"\\ec83\";\n}\n.bd2-file-code-one:before {\n  content: \"\\ec84\";\n}\n.bd2-file-collection:before {\n  content: \"\\ec85\";\n}\n.bd2-file-collection-one:before {\n  content: \"\\ec86\";\n}\n.bd2-file-conversion:before {\n  content: \"\\ec87\";\n}\n.bd2-file-conversion-one:before {\n  content: \"\\ec88\";\n}\n.bd2-file-date:before {\n  content: \"\\ec89\";\n}\n.bd2-file-date-one:before {\n  content: \"\\ec8a\";\n}\n.bd2-file-display:before {\n  content: \"\\ec8b\";\n}\n.bd2-file-display-one:before {\n  content: \"\\ec8c\";\n}\n.bd2-file-doc:before {\n  content: \"\\ec8d\";\n}\n.bd2-file-editing:before {\n  content: \"\\ec8e\";\n}\n.bd2-file-editing-one:before {\n  content: \"\\ec8f\";\n}\n.bd2-file-excel:before {\n  content: \"\\ec90\";\n}\n.bd2-file-failed:before {\n  content: \"\\ec91\";\n}\n.bd2-file-failed-one:before {\n  content: \"\\ec92\";\n}\n.bd2-file-focus:before {\n  content: \"\\ec93\";\n}\n.bd2-file-focus-one:before {\n  content: \"\\ec94\";\n}\n.bd2-file-gif:before {\n  content: \"\\ec95\";\n}\n.bd2-file-hash:before {\n  content: \"\\ec96\";\n}\n.bd2-file-hash-one:before {\n  content: \"\\ec97\";\n}\n.bd2-file-hiding:before {\n  content: \"\\ec98\";\n}\n.bd2-file-hiding-one:before {\n  content: \"\\ec99\";\n}\n.bd2-file-jpg:before {\n  content: \"\\ec9a\";\n}\n.bd2-file-lock:before {\n  content: \"\\ec9b\";\n}\n.bd2-file-lock-one:before {\n  content: \"\\ec9c\";\n}\n.bd2-file-music:before {\n  content: \"\\ec9d\";\n}\n.bd2-file-music-one:before {\n  content: \"\\ec9e\";\n}\n.bd2-file-pdf:before {\n  content: \"\\ec9f\";\n}\n.bd2-file-pdf-one:before {\n  content: \"\\eca0\";\n}\n.bd2-file-ppt:before {\n  content: \"\\eca1\";\n}\n.bd2-file-protection:before {\n  content: \"\\eca2\";\n}\n.bd2-file-protection-one:before {\n  content: \"\\eca3\";\n}\n.bd2-file-quality:before {\n  content: \"\\eca4\";\n}\n.bd2-file-quality-one:before {\n  content: \"\\eca5\";\n}\n.bd2-file-question:before {\n  content: \"\\eca6\";\n}\n.bd2-file-removal:before {\n  content: \"\\eca7\";\n}\n.bd2-file-removal-one:before {\n  content: \"\\eca8\";\n}\n.bd2-file-search:before {\n  content: \"\\eca9\";\n}\n.bd2-file-search-one:before {\n  content: \"\\ecaa\";\n}\n.bd2-file-search-two:before {\n  content: \"\\ecab\";\n}\n.bd2-file-settings:before {\n  content: \"\\ecac\";\n}\n.bd2-file-settings-one:before {\n  content: \"\\ecad\";\n}\n.bd2-file-staff:before {\n  content: \"\\ecae\";\n}\n.bd2-file-staff-one:before {\n  content: \"\\ecaf\";\n}\n.bd2-file-success:before {\n  content: \"\\ecb0\";\n}\n.bd2-file-success-one:before {\n  content: \"\\ecb1\";\n}\n.bd2-file-text:before {\n  content: \"\\ecb2\";\n}\n.bd2-file-text-one:before {\n  content: \"\\ecb3\";\n}\n.bd2-file-tips:before {\n  content: \"\\ecb4\";\n}\n.bd2-file-tips-one:before {\n  content: \"\\ecb5\";\n}\n.bd2-file-txt:before {\n  content: \"\\ecb6\";\n}\n.bd2-file-txt-one:before {\n  content: \"\\ecb7\";\n}\n.bd2-file-withdrawal:before {\n  content: \"\\ecb8\";\n}\n.bd2-file-withdrawal-one:before {\n  content: \"\\ecb9\";\n}\n.bd2-file-word:before {\n  content: \"\\ecba\";\n}\n.bd2-file-zip:before {\n  content: \"\\ecbb\";\n}\n.bd2-fill:before {\n  content: \"\\ecbc\";\n}\n.bd2-film:before {\n  content: \"\\ecbd\";\n}\n.bd2-filter:before {\n  content: \"\\ecbe\";\n}\n.bd2-filter-one:before {\n  content: \"\\ecbf\";\n}\n.bd2-finance:before {\n  content: \"\\ecc0\";\n}\n.bd2-financing:before {\n  content: \"\\ecc1\";\n}\n.bd2-financing-one:before {\n  content: \"\\ecc2\";\n}\n.bd2-financing-two:before {\n  content: \"\\ecc3\";\n}\n.bd2-find:before {\n  content: \"\\ecc4\";\n}\n.bd2-find-one:before {\n  content: \"\\ecc5\";\n}\n.bd2-fingernail:before {\n  content: \"\\ecc6\";\n}\n.bd2-fingerprint:before {\n  content: \"\\ecc7\";\n}\n.bd2-fingerprint-three:before {\n  content: \"\\ecc8\";\n}\n.bd2-fingerprint-two:before {\n  content: \"\\ecc9\";\n}\n.bd2-fire:before {\n  content: \"\\ecca\";\n}\n.bd2-fire-extinguisher:before {\n  content: \"\\eccb\";\n}\n.bd2-fire-extinguisher-one:before {\n  content: \"\\eccc\";\n}\n.bd2-fire-two:before {\n  content: \"\\eccd\";\n}\n.bd2-fireworks:before {\n  content: \"\\ecce\";\n}\n.bd2-first:before {\n  content: \"\\eccf\";\n}\n.bd2-first-aid-kit:before {\n  content: \"\\ecd0\";\n}\n.bd2-fish:before {\n  content: \"\\ecd1\";\n}\n.bd2-fishing:before {\n  content: \"\\ecd2\";\n}\n.bd2-fish-one:before {\n  content: \"\\ecd3\";\n}\n.bd2-fist:before {\n  content: \"\\ecd4\";\n}\n.bd2-fitness:before {\n  content: \"\\ecd5\";\n}\n.bd2-five:before {\n  content: \"\\ecd6\";\n}\n.bd2-five-ellipses:before {\n  content: \"\\ecd7\";\n}\n.bd2-five-five:before {\n  content: \"\\ecd8\";\n}\n.bd2-five-key:before {\n  content: \"\\ecd9\";\n}\n.bd2-five-star-badge:before {\n  content: \"\\ecda\";\n}\n.bd2-flag:before {\n  content: \"\\ecdb\";\n}\n.bd2-flashlamp:before {\n  content: \"\\ecdc\";\n}\n.bd2-flashlight:before {\n  content: \"\\ecdd\";\n}\n.bd2-flash-payment:before {\n  content: \"\\ecde\";\n}\n.bd2-flask:before {\n  content: \"\\ecdf\";\n}\n.bd2-flight-airflow:before {\n  content: \"\\ece0\";\n}\n.bd2-flight-safety:before {\n  content: \"\\ece1\";\n}\n.bd2-flip-camera:before {\n  content: \"\\ece2\";\n}\n.bd2-flip-horizontally:before {\n  content: \"\\ece3\";\n}\n.bd2-flip-vertically:before {\n  content: \"\\ece4\";\n}\n.bd2-flirt:before {\n  content: \"\\ece5\";\n}\n.bd2-float:before {\n  content: \"\\ece6\";\n}\n.bd2-floor-tile:before {\n  content: \"\\ece7\";\n}\n.bd2-fm:before {\n  content: \"\\ece8\";\n}\n.bd2-f-nine-key:before {\n  content: \"\\ece9\";\n}\n.bd2-f-n-key:before {\n  content: \"\\ecea\";\n}\n.bd2-focus:before {\n  content: \"\\eceb\";\n}\n.bd2-focus-one:before {\n  content: \"\\ecec\";\n}\n.bd2-fog:before {\n  content: \"\\eced\";\n}\n.bd2-folder:before {\n  content: \"\\ecee\";\n}\n.bd2-folder-block:before {\n  content: \"\\ecef\";\n}\n.bd2-folder-block-one:before {\n  content: \"\\ecf0\";\n}\n.bd2-folder-close:before {\n  content: \"\\ecf1\";\n}\n.bd2-folder-code:before {\n  content: \"\\ecf2\";\n}\n.bd2-folder-code-one:before {\n  content: \"\\ecf3\";\n}\n.bd2-folder-conversion:before {\n  content: \"\\ecf4\";\n}\n.bd2-folder-conversion-one:before {\n  content: \"\\ecf5\";\n}\n.bd2-folder-download:before {\n  content: \"\\ecf6\";\n}\n.bd2-folder-failed:before {\n  content: \"\\ecf7\";\n}\n.bd2-folder-failed-one:before {\n  content: \"\\ecf8\";\n}\n.bd2-folder-focus:before {\n  content: \"\\ecf9\";\n}\n.bd2-folder-focus-one:before {\n  content: \"\\ecfa\";\n}\n.bd2-folder-lock:before {\n  content: \"\\ecfb\";\n}\n.bd2-folder-lock-one:before {\n  content: \"\\ecfc\";\n}\n.bd2-folder-minus:before {\n  content: \"\\ecfd\";\n}\n.bd2-folder-music:before {\n  content: \"\\ecfe\";\n}\n.bd2-folder-music-one:before {\n  content: \"\\ecff\";\n}\n.bd2-folder-one:before {\n  content: \"\\ed00\";\n}\n.bd2-folder-open:before {\n  content: \"\\ed01\";\n}\n.bd2-folder-plus:before {\n  content: \"\\ed02\";\n}\n.bd2-folder-protection:before {\n  content: \"\\ed03\";\n}\n.bd2-folder-protection-one:before {\n  content: \"\\ed04\";\n}\n.bd2-folder-quality:before {\n  content: \"\\ed05\";\n}\n.bd2-folder-quality-one:before {\n  content: \"\\ed06\";\n}\n.bd2-folder-search:before {\n  content: \"\\ed07\";\n}\n.bd2-folder-search-one:before {\n  content: \"\\ed08\";\n}\n.bd2-folder-settings:before {\n  content: \"\\ed09\";\n}\n.bd2-folder-settings-one:before {\n  content: \"\\ed0a\";\n}\n.bd2-folder-success:before {\n  content: \"\\ed0b\";\n}\n.bd2-folder-success-one:before {\n  content: \"\\ed0c\";\n}\n.bd2-folder-upload:before {\n  content: \"\\ed0d\";\n}\n.bd2-folder-withdrawal:before {\n  content: \"\\ed0e\";\n}\n.bd2-folder-withdrawal-one:before {\n  content: \"\\ed0f\";\n}\n.bd2-fold-up-one:before {\n  content: \"\\ed10\";\n}\n.bd2-follow-up-date-sort:before {\n  content: \"\\ed11\";\n}\n.bd2-f-one-key:before {\n  content: \"\\ed12\";\n}\n.bd2-font-search:before {\n  content: \"\\ed13\";\n}\n.bd2-font-size:before {\n  content: \"\\ed14\";\n}\n.bd2-font-size-two:before {\n  content: \"\\ed15\";\n}\n.bd2-foot:before {\n  content: \"\\ed16\";\n}\n.bd2-football:before {\n  content: \"\\ed17\";\n}\n.bd2-forbid:before {\n  content: \"\\ed18\";\n}\n.bd2-fork:before {\n  content: \"\\ed19\";\n}\n.bd2-fork-spoon:before {\n  content: \"\\ed1a\";\n}\n.bd2-form:before {\n  content: \"\\ed1b\";\n}\n.bd2-format:before {\n  content: \"\\ed1c\";\n}\n.bd2-format-brush:before {\n  content: \"\\ed1d\";\n}\n.bd2-form-one:before {\n  content: \"\\ed1e\";\n}\n.bd2-formula:before {\n  content: \"\\ed1f\";\n}\n.bd2-foundation-makeup:before {\n  content: \"\\ed20\";\n}\n.bd2-four:before {\n  content: \"\\ed21\";\n}\n.bd2-four-arrows:before {\n  content: \"\\ed22\";\n}\n.bd2-four-four:before {\n  content: \"\\ed23\";\n}\n.bd2-four-key:before {\n  content: \"\\ed24\";\n}\n.bd2-four-leaves:before {\n  content: \"\\ed25\";\n}\n.bd2-four-point-connection:before {\n  content: \"\\ed26\";\n}\n.bd2-four-round-point-connection:before {\n  content: \"\\ed27\";\n}\n.bd2-foursquare:before {\n  content: \"\\ed28\";\n}\n.bd2-freeze-column:before {\n  content: \"\\ed29\";\n}\n.bd2-freeze-line:before {\n  content: \"\\ed2a\";\n}\n.bd2-freezing-line-column:before {\n  content: \"\\ed2b\";\n}\n.bd2-french-fries:before {\n  content: \"\\ed2c\";\n}\n.bd2-friends-circle:before {\n  content: \"\\ed2d\";\n}\n.bd2-frigate:before {\n  content: \"\\ed2e\";\n}\n.bd2-frog:before {\n  content: \"\\ed2f\";\n}\n.bd2-frowning-face-whit-open-mouth:before {\n  content: \"\\ed30\";\n}\n.bd2-fruiter:before {\n  content: \"\\ed31\";\n}\n.bd2-f-seven-key:before {\n  content: \"\\ed32\";\n}\n.bd2-f-six-key:before {\n  content: \"\\ed33\";\n}\n.bd2-f-three-key:before {\n  content: \"\\ed34\";\n}\n.bd2-f-two-key:before {\n  content: \"\\ed35\";\n}\n.bd2-full-dress-longuette:before {\n  content: \"\\ed36\";\n}\n.bd2-full-screen:before {\n  content: \"\\ed37\";\n}\n.bd2-full-screen-one:before {\n  content: \"\\ed38\";\n}\n.bd2-full-screen-play:before {\n  content: \"\\ed39\";\n}\n.bd2-full-screen-two:before {\n  content: \"\\ed3a\";\n}\n.bd2-full-selection:before {\n  content: \"\\ed3b\";\n}\n.bd2-fullwidth:before {\n  content: \"\\ed3c\";\n}\n.bd2-funds:before {\n  content: \"\\ed3d\";\n}\n.bd2-future-build-one:before {\n  content: \"\\ed3e\";\n}\n.bd2-future-build-three:before {\n  content: \"\\ed3f\";\n}\n.bd2-future-build-two:before {\n  content: \"\\ed40\";\n}\n.bd2-f-zero-key:before {\n  content: \"\\ed41\";\n}\n.bd2-game:before {\n  content: \"\\ed42\";\n}\n.bd2-game-console:before {\n  content: \"\\ed43\";\n}\n.bd2-game-console-one:before {\n  content: \"\\ed44\";\n}\n.bd2-game-emoji:before {\n  content: \"\\ed45\";\n}\n.bd2-game-handle:before {\n  content: \"\\ed46\";\n}\n.bd2-gamepad:before {\n  content: \"\\ed47\";\n}\n.bd2-game-ps:before {\n  content: \"\\ed48\";\n}\n.bd2-game-three:before {\n  content: \"\\ed49\";\n}\n.bd2-game-two:before {\n  content: \"\\ed4a\";\n}\n.bd2-garage:before {\n  content: \"\\ed4b\";\n}\n.bd2-garlic:before {\n  content: \"\\ed4c\";\n}\n.bd2-gas:before {\n  content: \"\\ed4d\";\n}\n.bd2-gastrointestinal:before {\n  content: \"\\ed4e\";\n}\n.bd2-gate:before {\n  content: \"\\ed4f\";\n}\n.bd2-gate-machine:before {\n  content: \"\\ed50\";\n}\n.bd2-gauze:before {\n  content: \"\\ed51\";\n}\n.bd2-gavel:before {\n  content: \"\\ed52\";\n}\n.bd2-gemini:before {\n  content: \"\\ed53\";\n}\n.bd2-general-branch:before {\n  content: \"\\ed54\";\n}\n.bd2-geometric-flowers:before {\n  content: \"\\ed55\";\n}\n.bd2-germs:before {\n  content: \"\\ed56\";\n}\n.bd2-ghost:before {\n  content: \"\\ed57\";\n}\n.bd2-gift:before {\n  content: \"\\ed58\";\n}\n.bd2-gift-bag:before {\n  content: \"\\ed59\";\n}\n.bd2-gift-box:before {\n  content: \"\\ed5a\";\n}\n.bd2-girl:before {\n  content: \"\\ed5b\";\n}\n.bd2-girl-one:before {\n  content: \"\\ed5c\";\n}\n.bd2-girl-two:before {\n  content: \"\\ed5d\";\n}\n.bd2-github:before {\n  content: \"\\ed5e\";\n}\n.bd2-github-one:before {\n  content: \"\\ed5f\";\n}\n.bd2-gitlab:before {\n  content: \"\\ed60\";\n}\n.bd2-glasses:before {\n  content: \"\\ed61\";\n}\n.bd2-glasses-one:before {\n  content: \"\\ed62\";\n}\n.bd2-glasses-three:before {\n  content: \"\\ed63\";\n}\n.bd2-globe:before {\n  content: \"\\ed64\";\n}\n.bd2-glove:before {\n  content: \"\\ed65\";\n}\n.bd2-go-ahead:before {\n  content: \"\\ed66\";\n}\n.bd2-goblet:before {\n  content: \"\\ed67\";\n}\n.bd2-goblet-cracking:before {\n  content: \"\\ed68\";\n}\n.bd2-goblet-full:before {\n  content: \"\\ed69\";\n}\n.bd2-goblet-one:before {\n  content: \"\\ed6a\";\n}\n.bd2-go-end:before {\n  content: \"\\ed6b\";\n}\n.bd2-gold-medal:before {\n  content: \"\\ed6c\";\n}\n.bd2-gold-medal-two:before {\n  content: \"\\ed6d\";\n}\n.bd2-golf-course:before {\n  content: \"\\ed6e\";\n}\n.bd2-gongfu:before {\n  content: \"\\ed6f\";\n}\n.bd2-good:before {\n  content: \"\\ed70\";\n}\n.bd2-good-one:before {\n  content: \"\\ed71\";\n}\n.bd2-good-two:before {\n  content: \"\\ed72\";\n}\n.bd2-google:before {\n  content: \"\\ed73\";\n}\n.bd2-google-ads:before {\n  content: \"\\ed74\";\n}\n.bd2-go-on:before {\n  content: \"\\ed75\";\n}\n.bd2-gopro:before {\n  content: \"\\ed76\";\n}\n.bd2-go-start:before {\n  content: \"\\ed77\";\n}\n.bd2-gps:before {\n  content: \"\\ed78\";\n}\n.bd2-graphic-design:before {\n  content: \"\\ed79\";\n}\n.bd2-graphic-design-two:before {\n  content: \"\\ed7a\";\n}\n.bd2-graphic-stitching:before {\n  content: \"\\ed7b\";\n}\n.bd2-graphic-stitching-four:before {\n  content: \"\\ed7c\";\n}\n.bd2-graphic-stitching-three:before {\n  content: \"\\ed7d\";\n}\n.bd2-great-wall:before {\n  content: \"\\ed7e\";\n}\n.bd2-green-house:before {\n  content: \"\\ed7f\";\n}\n.bd2-green-new-energy:before {\n  content: \"\\ed80\";\n}\n.bd2-grid-four:before {\n  content: \"\\ed81\";\n}\n.bd2-grid-nine:before {\n  content: \"\\ed82\";\n}\n.bd2-grid-sixteen:before {\n  content: \"\\ed83\";\n}\n.bd2-grid-three:before {\n  content: \"\\ed84\";\n}\n.bd2-grid-two:before {\n  content: \"\\ed85\";\n}\n.bd2-grimacing-face:before {\n  content: \"\\ed86\";\n}\n.bd2-grinning-face:before {\n  content: \"\\ed87\";\n}\n.bd2-grinning-face-with-open-mouth:before {\n  content: \"\\ed88\";\n}\n.bd2-grinning-face-with-squinting-eyes:before {\n  content: \"\\ed89\";\n}\n.bd2-grinning-face-with-tightly-closed-eyes:before {\n  content: \"\\ed8a\";\n}\n.bd2-grinning-face-with-tightly-closed-eyes-open-mouth:before {\n  content: \"\\ed8b\";\n}\n.bd2-group:before {\n  content: \"\\ed8c\";\n}\n.bd2-guide-board:before {\n  content: \"\\ed8d\";\n}\n.bd2-gymnastics:before {\n  content: \"\\ed8e\";\n}\n.bd2-gymnastics-one:before {\n  content: \"\\ed8f\";\n}\n.bd2-h:before {\n  content: \"\\ed90\";\n}\n.bd2-h1:before {\n  content: \"\\ed91\";\n}\n.bd2-h2:before {\n  content: \"\\ed92\";\n}\n.bd2-h3:before {\n  content: \"\\ed93\";\n}\n.bd2-hair-brush:before {\n  content: \"\\ed94\";\n}\n.bd2-hair-clip:before {\n  content: \"\\ed95\";\n}\n.bd2-hair-dryer:before {\n  content: \"\\ed96\";\n}\n.bd2-hair-dryer-one:before {\n  content: \"\\ed97\";\n}\n.bd2-halo:before {\n  content: \"\\ed98\";\n}\n.bd2-hamburger:before {\n  content: \"\\ed99\";\n}\n.bd2-hamburger-button:before {\n  content: \"\\ed9a\";\n}\n.bd2-hamburger-one:before {\n  content: \"\\ed9b\";\n}\n.bd2-hammer-and-anvil:before {\n  content: \"\\ed9c\";\n}\n.bd2-handbag:before {\n  content: \"\\ed9d\";\n}\n.bd2-hand-cream:before {\n  content: \"\\ed9e\";\n}\n.bd2-hand-down:before {\n  content: \"\\ed9f\";\n}\n.bd2-hand-drag:before {\n  content: \"\\eda0\";\n}\n.bd2-handheld:before {\n  content: \"\\eda1\";\n}\n.bd2-handle-a:before {\n  content: \"\\eda2\";\n}\n.bd2-handle-b:before {\n  content: \"\\eda3\";\n}\n.bd2-handle-c:before {\n  content: \"\\eda4\";\n}\n.bd2-handle-down:before {\n  content: \"\\eda5\";\n}\n.bd2-hand-left:before {\n  content: \"\\eda6\";\n}\n.bd2-handle-left:before {\n  content: \"\\eda7\";\n}\n.bd2-handle-right:before {\n  content: \"\\eda8\";\n}\n.bd2-handle-round:before {\n  content: \"\\eda9\";\n}\n.bd2-handle-square:before {\n  content: \"\\edaa\";\n}\n.bd2-handle-triangle:before {\n  content: \"\\edab\";\n}\n.bd2-handle-up:before {\n  content: \"\\edac\";\n}\n.bd2-handle-x:before {\n  content: \"\\edad\";\n}\n.bd2-handle-y:before {\n  content: \"\\edae\";\n}\n.bd2-handle-z:before {\n  content: \"\\edaf\";\n}\n.bd2-hand-painted-plate:before {\n  content: \"\\edb0\";\n}\n.bd2-hand-right:before {\n  content: \"\\edb1\";\n}\n.bd2-hands:before {\n  content: \"\\edb2\";\n}\n.bd2-hand-up:before {\n  content: \"\\edb3\";\n}\n.bd2-handwashing:before {\n  content: \"\\edb4\";\n}\n.bd2-handwashing-fluid:before {\n  content: \"\\edb5\";\n}\n.bd2-hanfu-chinese-style:before {\n  content: \"\\edb6\";\n}\n.bd2-hanger:before {\n  content: \"\\edb7\";\n}\n.bd2-hanger-one:before {\n  content: \"\\edb8\";\n}\n.bd2-hanger-two:before {\n  content: \"\\edb9\";\n}\n.bd2-hard-disk:before {\n  content: \"\\edba\";\n}\n.bd2-hard-disk-one:before {\n  content: \"\\edbb\";\n}\n.bd2-harm:before {\n  content: \"\\edbc\";\n}\n.bd2-hashtag-key:before {\n  content: \"\\edbd\";\n}\n.bd2-hat:before {\n  content: \"\\edbe\";\n}\n.bd2-hdd:before {\n  content: \"\\edbf\";\n}\n.bd2-hdmi-cable:before {\n  content: \"\\edc0\";\n}\n.bd2-hdmi-connector:before {\n  content: \"\\edc1\";\n}\n.bd2-headphone-sound:before {\n  content: \"\\edc2\";\n}\n.bd2-headset:before {\n  content: \"\\edc3\";\n}\n.bd2-headset-one:before {\n  content: \"\\edc4\";\n}\n.bd2-headset-two:before {\n  content: \"\\edc5\";\n}\n.bd2-headwear:before {\n  content: \"\\edc6\";\n}\n.bd2-health:before {\n  content: \"\\edc7\";\n}\n.bd2-health-products:before {\n  content: \"\\edc8\";\n}\n.bd2-healthy-recognition:before {\n  content: \"\\edc9\";\n}\n.bd2-heart:before {\n  content: \"\\edca\";\n}\n.bd2-heart-ballon:before {\n  content: \"\\edcb\";\n}\n.bd2-heartbeat:before {\n  content: \"\\edcc\";\n}\n.bd2-heart-rate:before {\n  content: \"\\edcd\";\n}\n.bd2-heater-resistor:before {\n  content: \"\\edce\";\n}\n.bd2-heavy-metal:before {\n  content: \"\\edcf\";\n}\n.bd2-heavy-rain:before {\n  content: \"\\edd0\";\n}\n.bd2-heavy-wind:before {\n  content: \"\\edd1\";\n}\n.bd2-helmet:before {\n  content: \"\\edd2\";\n}\n.bd2-helmet-one:before {\n  content: \"\\edd3\";\n}\n.bd2-help:before {\n  content: \"\\edd4\";\n}\n.bd2-helpcenter:before {\n  content: \"\\edd5\";\n}\n.bd2-hexagonal:before {\n  content: \"\\edd6\";\n}\n.bd2-hexagon-one:before {\n  content: \"\\edd7\";\n}\n.bd2-hexagon-strip:before {\n  content: \"\\edd8\";\n}\n.bd2-hi:before {\n  content: \"\\edd9\";\n}\n.bd2-high-heeled-shoes:before {\n  content: \"\\edda\";\n}\n.bd2-high-light:before {\n  content: \"\\eddb\";\n}\n.bd2-high-speed-rail:before {\n  content: \"\\eddc\";\n}\n.bd2-hippo:before {\n  content: \"\\eddd\";\n}\n.bd2-histogram:before {\n  content: \"\\edde\";\n}\n.bd2-history:before {\n  content: \"\\eddf\";\n}\n.bd2-history-query:before {\n  content: \"\\ede0\";\n}\n.bd2-hockey:before {\n  content: \"\\ede1\";\n}\n.bd2-hold:before {\n  content: \"\\ede2\";\n}\n.bd2-holding-hands:before {\n  content: \"\\ede3\";\n}\n.bd2-hold-interface:before {\n  content: \"\\ede4\";\n}\n.bd2-hold-seeds:before {\n  content: \"\\ede5\";\n}\n.bd2-holy-sword:before {\n  content: \"\\ede6\";\n}\n.bd2-home:before {\n  content: \"\\ede7\";\n}\n.bd2-homestay:before {\n  content: \"\\ede8\";\n}\n.bd2-home-two:before {\n  content: \"\\ede9\";\n}\n.bd2-honey:before {\n  content: \"\\edea\";\n}\n.bd2-honey-one:before {\n  content: \"\\edeb\";\n}\n.bd2-horizontally-centered:before {\n  content: \"\\edec\";\n}\n.bd2-horizontal-spacing-between-items:before {\n  content: \"\\eded\";\n}\n.bd2-horizontal-tidy-up:before {\n  content: \"\\edee\";\n}\n.bd2-horse-zodiac:before {\n  content: \"\\edef\";\n}\n.bd2-hospital:before {\n  content: \"\\edf0\";\n}\n.bd2-hospital-bed:before {\n  content: \"\\edf1\";\n}\n.bd2-hospital-four:before {\n  content: \"\\edf2\";\n}\n.bd2-hospital-three:before {\n  content: \"\\edf3\";\n}\n.bd2-hospital-two:before {\n  content: \"\\edf4\";\n}\n.bd2-hot-air-balloon:before {\n  content: \"\\edf5\";\n}\n.bd2-hotel:before {\n  content: \"\\edf6\";\n}\n.bd2-hotel-do-not-clean:before {\n  content: \"\\edf7\";\n}\n.bd2-hotel-please-clean:before {\n  content: \"\\edf8\";\n}\n.bd2-hot-pot:before {\n  content: \"\\edf9\";\n}\n.bd2-hot-pot-one:before {\n  content: \"\\edfa\";\n}\n.bd2-hourglass:before {\n  content: \"\\edfb\";\n}\n.bd2-hourglass-full:before {\n  content: \"\\edfc\";\n}\n.bd2-hourglass-null:before {\n  content: \"\\edfd\";\n}\n.bd2-html-five:before {\n  content: \"\\edfe\";\n}\n.bd2-hunting-gear:before {\n  content: \"\\edff\";\n}\n.bd2-huoshanzhibo:before {\n  content: \"\\ee00\";\n}\n.bd2-icecream:before {\n  content: \"\\ee01\";\n}\n.bd2-icecream-five:before {\n  content: \"\\ee02\";\n}\n.bd2-icecream-four:before {\n  content: \"\\ee03\";\n}\n.bd2-icecream-one:before {\n  content: \"\\ee04\";\n}\n.bd2-icecream-three:before {\n  content: \"\\ee05\";\n}\n.bd2-icecream-two:before {\n  content: \"\\ee06\";\n}\n.bd2-id-card:before {\n  content: \"\\ee07\";\n}\n.bd2-id-card-h:before {\n  content: \"\\ee08\";\n}\n.bd2-id-card-v:before {\n  content: \"\\ee09\";\n}\n.bd2-i-mac:before {\n  content: \"\\ee0a\";\n}\n.bd2-image-files:before {\n  content: \"\\ee0b\";\n}\n.bd2-imbalance:before {\n  content: \"\\ee0c\";\n}\n.bd2-import-and-export:before {\n  content: \"\\ee0d\";\n}\n.bd2-inbox:before {\n  content: \"\\ee0e\";\n}\n.bd2-inbox-download-r:before {\n  content: \"\\ee0f\";\n}\n.bd2-inbox-in:before {\n  content: \"\\ee10\";\n}\n.bd2-inbox-out:before {\n  content: \"\\ee11\";\n}\n.bd2-inbox-r:before {\n  content: \"\\ee12\";\n}\n.bd2-inbox-success:before {\n  content: \"\\ee13\";\n}\n.bd2-inbox-success-r:before {\n  content: \"\\ee14\";\n}\n.bd2-inbox-upload-r:before {\n  content: \"\\ee15\";\n}\n.bd2-inclusive-gateway:before {\n  content: \"\\ee16\";\n}\n.bd2-income:before {\n  content: \"\\ee17\";\n}\n.bd2-income-one:before {\n  content: \"\\ee18\";\n}\n.bd2-incoming:before {\n  content: \"\\ee19\";\n}\n.bd2-increase:before {\n  content: \"\\ee1a\";\n}\n.bd2-increase-the-scale:before {\n  content: \"\\ee1b\";\n}\n.bd2-indent-left:before {\n  content: \"\\ee1c\";\n}\n.bd2-indent-right:before {\n  content: \"\\ee1d\";\n}\n.bd2-index-finger:before {\n  content: \"\\ee1e\";\n}\n.bd2-induction-lock:before {\n  content: \"\\ee1f\";\n}\n.bd2-industrial-scales:before {\n  content: \"\\ee20\";\n}\n.bd2-in-flight:before {\n  content: \"\\ee21\";\n}\n.bd2-info:before {\n  content: \"\\ee22\";\n}\n.bd2-infusion:before {\n  content: \"\\ee23\";\n}\n.bd2-injection:before {\n  content: \"\\ee24\";\n}\n.bd2-inline:before {\n  content: \"\\ee25\";\n}\n.bd2-inner-shadow-bottom-left:before {\n  content: \"\\ee26\";\n}\n.bd2-inner-shadow-bottom-right:before {\n  content: \"\\ee27\";\n}\n.bd2-inner-shadow-down:before {\n  content: \"\\ee28\";\n}\n.bd2-inner-shadow-left:before {\n  content: \"\\ee29\";\n}\n.bd2-inner-shadow-right:before {\n  content: \"\\ee2a\";\n}\n.bd2-inner-shadow-top-left:before {\n  content: \"\\ee2b\";\n}\n.bd2-inner-shadow-top-right:before {\n  content: \"\\ee2c\";\n}\n.bd2-inner-shadow-up:before {\n  content: \"\\ee2d\";\n}\n.bd2-insert-card:before {\n  content: \"\\ee2e\";\n}\n.bd2-insert-table:before {\n  content: \"\\ee2f\";\n}\n.bd2-inspection:before {\n  content: \"\\ee30\";\n}\n.bd2-instagram:before {\n  content: \"\\ee31\";\n}\n.bd2-instagram-one:before {\n  content: \"\\ee32\";\n}\n.bd2-install:before {\n  content: \"\\ee33\";\n}\n.bd2-instruction:before {\n  content: \"\\ee34\";\n}\n.bd2-intercom:before {\n  content: \"\\ee35\";\n}\n.bd2-intermediate-mode:before {\n  content: \"\\ee36\";\n}\n.bd2-internal-data:before {\n  content: \"\\ee37\";\n}\n.bd2-internal-expansion:before {\n  content: \"\\ee38\";\n}\n.bd2-internal-reduction:before {\n  content: \"\\ee39\";\n}\n.bd2-internal-transmission:before {\n  content: \"\\ee3a\";\n}\n.bd2-international:before {\n  content: \"\\ee3b\";\n}\n.bd2-intersection:before {\n  content: \"\\ee3c\";\n}\n.bd2-intersect-selection:before {\n  content: \"\\ee3d\";\n}\n.bd2-invalid-files:before {\n  content: \"\\ee3e\";\n}\n.bd2-invert-camera:before {\n  content: \"\\ee3f\";\n}\n.bd2-invert-left:before {\n  content: \"\\ee40\";\n}\n.bd2-invert-right:before {\n  content: \"\\ee41\";\n}\n.bd2-ios-face-recognition:before {\n  content: \"\\ee42\";\n}\n.bd2-ipad:before {\n  content: \"\\ee43\";\n}\n.bd2-ipad-one:before {\n  content: \"\\ee44\";\n}\n.bd2-iphone:before {\n  content: \"\\ee45\";\n}\n.bd2-ipo:before {\n  content: \"\\ee46\";\n}\n.bd2-iron:before {\n  content: \"\\ee47\";\n}\n.bd2-iron-disable:before {\n  content: \"\\ee48\";\n}\n.bd2-iron-three:before {\n  content: \"\\ee49\";\n}\n.bd2-iron-two:before {\n  content: \"\\ee4a\";\n}\n.bd2-iwatch:before {\n  content: \"\\ee4b\";\n}\n.bd2-iwatch-one:before {\n  content: \"\\ee4c\";\n}\n.bd2-iwatch-two:before {\n  content: \"\\ee4d\";\n}\n.bd2-jewelry:before {\n  content: \"\\ee4e\";\n}\n.bd2-jinritoutiao:before {\n  content: \"\\ee4f\";\n}\n.bd2-journey:before {\n  content: \"\\ee50\";\n}\n.bd2-joystick:before {\n  content: \"\\ee51\";\n}\n.bd2-juice:before {\n  content: \"\\ee52\";\n}\n.bd2-jump:before {\n  content: \"\\ee53\";\n}\n.bd2-kagi-map:before {\n  content: \"\\ee54\";\n}\n.bd2-kettle:before {\n  content: \"\\ee55\";\n}\n.bd2-kettle-one:before {\n  content: \"\\ee56\";\n}\n.bd2-key:before {\n  content: \"\\ee57\";\n}\n.bd2-keyboard:before {\n  content: \"\\ee58\";\n}\n.bd2-keyboard-one:before {\n  content: \"\\ee59\";\n}\n.bd2-keyhole:before {\n  content: \"\\ee5a\";\n}\n.bd2-keyline:before {\n  content: \"\\ee5b\";\n}\n.bd2-key-one:before {\n  content: \"\\ee5c\";\n}\n.bd2-key-two:before {\n  content: \"\\ee5d\";\n}\n.bd2-kitchen-knife:before {\n  content: \"\\ee5e\";\n}\n.bd2-knife-fork:before {\n  content: \"\\ee5f\";\n}\n.bd2-koala-bear:before {\n  content: \"\\ee60\";\n}\n.bd2-kungfu:before {\n  content: \"\\ee61\";\n}\n.bd2-label:before {\n  content: \"\\ee62\";\n}\n.bd2-ladder:before {\n  content: \"\\ee63\";\n}\n.bd2-ladder-one:before {\n  content: \"\\ee64\";\n}\n.bd2-lamp:before {\n  content: \"\\ee65\";\n}\n.bd2-landing:before {\n  content: \"\\ee66\";\n}\n.bd2-landscape:before {\n  content: \"\\ee67\";\n}\n.bd2-land-surveying:before {\n  content: \"\\ee68\";\n}\n.bd2-laptop:before {\n  content: \"\\ee69\";\n}\n.bd2-laptop-computer:before {\n  content: \"\\ee6a\";\n}\n.bd2-laptop-one:before {\n  content: \"\\ee6b\";\n}\n.bd2-lark:before {\n  content: \"\\ee6c\";\n}\n.bd2-lark-one:before {\n  content: \"\\ee6d\";\n}\n.bd2-lattice-pattern:before {\n  content: \"\\ee6e\";\n}\n.bd2-layers:before {\n  content: \"\\ee6f\";\n}\n.bd2-layout-five:before {\n  content: \"\\ee70\";\n}\n.bd2-layout-four:before {\n  content: \"\\ee71\";\n}\n.bd2-layout-one:before {\n  content: \"\\ee72\";\n}\n.bd2-layout-three:before {\n  content: \"\\ee73\";\n}\n.bd2-layout-two:before {\n  content: \"\\ee74\";\n}\n.bd2-leaf:before {\n  content: \"\\ee75\";\n}\n.bd2-leaves:before {\n  content: \"\\ee76\";\n}\n.bd2-leaves-one:before {\n  content: \"\\ee77\";\n}\n.bd2-leaves-two:before {\n  content: \"\\ee78\";\n}\n.bd2-led-diode:before {\n  content: \"\\ee79\";\n}\n.bd2-left:before {\n  content: \"\\ee7a\";\n}\n.bd2-left-alignment:before {\n  content: \"\\ee7b\";\n}\n.bd2-left-and-right-branch:before {\n  content: \"\\ee7c\";\n}\n.bd2-left-bar:before {\n  content: \"\\ee7d\";\n}\n.bd2-left-branch:before {\n  content: \"\\ee7e\";\n}\n.bd2-left-c:before {\n  content: \"\\ee7f\";\n}\n.bd2-left-expand:before {\n  content: \"\\ee80\";\n}\n.bd2-left-one:before {\n  content: \"\\ee81\";\n}\n.bd2-left-small:before {\n  content: \"\\ee82\";\n}\n.bd2-left-small-down:before {\n  content: \"\\ee83\";\n}\n.bd2-left-small-up:before {\n  content: \"\\ee84\";\n}\n.bd2-left-square:before {\n  content: \"\\ee85\";\n}\n.bd2-left-two:before {\n  content: \"\\ee86\";\n}\n.bd2-lemon:before {\n  content: \"\\ee87\";\n}\n.bd2-lens-alignment:before {\n  content: \"\\ee88\";\n}\n.bd2-leo:before {\n  content: \"\\ee89\";\n}\n.bd2-level:before {\n  content: \"\\ee8a\";\n}\n.bd2-level-adjustment:before {\n  content: \"\\ee8b\";\n}\n.bd2-level-eight-title:before {\n  content: \"\\ee8c\";\n}\n.bd2-level-five-title:before {\n  content: \"\\ee8d\";\n}\n.bd2-level-four-title:before {\n  content: \"\\ee8e\";\n}\n.bd2-level-nine-title:before {\n  content: \"\\ee8f\";\n}\n.bd2-level-seven-title:before {\n  content: \"\\ee90\";\n}\n.bd2-level-six-title:before {\n  content: \"\\ee91\";\n}\n.bd2-libra:before {\n  content: \"\\ee92\";\n}\n.bd2-lifebuoy:before {\n  content: \"\\ee93\";\n}\n.bd2-light:before {\n  content: \"\\ee94\";\n}\n.bd2-light-house:before {\n  content: \"\\ee95\";\n}\n.bd2-light-member:before {\n  content: \"\\ee96\";\n}\n.bd2-lightning:before {\n  content: \"\\ee97\";\n}\n.bd2-light-rain:before {\n  content: \"\\ee98\";\n}\n.bd2-like:before {\n  content: \"\\ee99\";\n}\n.bd2-lincoln:before {\n  content: \"\\ee9a\";\n}\n.bd2-link:before {\n  content: \"\\ee9b\";\n}\n.bd2-link-break:before {\n  content: \"\\ee9c\";\n}\n.bd2-link-cloud:before {\n  content: \"\\ee9d\";\n}\n.bd2-link-cloud-faild:before {\n  content: \"\\ee9e\";\n}\n.bd2-link-cloud-sucess:before {\n  content: \"\\ee9f\";\n}\n.bd2-link-four:before {\n  content: \"\\eea0\";\n}\n.bd2-link-in:before {\n  content: \"\\eea1\";\n}\n.bd2-link-interrupt:before {\n  content: \"\\eea2\";\n}\n.bd2-link-left:before {\n  content: \"\\eea3\";\n}\n.bd2-link-one:before {\n  content: \"\\eea4\";\n}\n.bd2-link-out:before {\n  content: \"\\eea5\";\n}\n.bd2-link-right:before {\n  content: \"\\eea6\";\n}\n.bd2-link-three:before {\n  content: \"\\eea7\";\n}\n.bd2-link-two:before {\n  content: \"\\eea8\";\n}\n.bd2-lip-gloss:before {\n  content: \"\\eea9\";\n}\n.bd2-lipstick:before {\n  content: \"\\eeaa\";\n}\n.bd2-lipstick-one:before {\n  content: \"\\eeab\";\n}\n.bd2-lip-tattoo:before {\n  content: \"\\eeac\";\n}\n.bd2-liqueur:before {\n  content: \"\\eead\";\n}\n.bd2-list:before {\n  content: \"\\eeae\";\n}\n.bd2-list-add:before {\n  content: \"\\eeaf\";\n}\n.bd2-list-alphabet:before {\n  content: \"\\eeb0\";\n}\n.bd2-list-bottom:before {\n  content: \"\\eeb1\";\n}\n.bd2-list-checkbox:before {\n  content: \"\\eeb2\";\n}\n.bd2-list-fail:before {\n  content: \"\\eeb3\";\n}\n.bd2-list-middle:before {\n  content: \"\\eeb4\";\n}\n.bd2-list-numbers:before {\n  content: \"\\eeb5\";\n}\n.bd2-list-one:before {\n  content: \"\\eeb6\";\n}\n.bd2-list-success:before {\n  content: \"\\eeb7\";\n}\n.bd2-list-top:before {\n  content: \"\\eeb8\";\n}\n.bd2-list-two:before {\n  content: \"\\eeb9\";\n}\n.bd2-list-view:before {\n  content: \"\\eeba\";\n}\n.bd2-loading:before {\n  content: \"\\eebb\";\n}\n.bd2-loading-four:before {\n  content: \"\\eebc\";\n}\n.bd2-loading-one:before {\n  content: \"\\eebd\";\n}\n.bd2-loading-three:before {\n  content: \"\\eebe\";\n}\n.bd2-loading-two:before {\n  content: \"\\eebf\";\n}\n.bd2-local:before {\n  content: \"\\eec0\";\n}\n.bd2-local-pin:before {\n  content: \"\\eec1\";\n}\n.bd2-local-two:before {\n  content: \"\\eec2\";\n}\n.bd2-lock:before {\n  content: \"\\eec3\";\n}\n.bd2-locking-computer:before {\n  content: \"\\eec4\";\n}\n.bd2-locking-laptop:before {\n  content: \"\\eec5\";\n}\n.bd2-locking-picture:before {\n  content: \"\\eec6\";\n}\n.bd2-locking-web:before {\n  content: \"\\eec7\";\n}\n.bd2-lock-one:before {\n  content: \"\\eec8\";\n}\n.bd2-log:before {\n  content: \"\\eec9\";\n}\n.bd2-login:before {\n  content: \"\\eeca\";\n}\n.bd2-logout:before {\n  content: \"\\eecb\";\n}\n.bd2-lollipop:before {\n  content: \"\\eecc\";\n}\n.bd2-loop-once:before {\n  content: \"\\eecd\";\n}\n.bd2-lotion:before {\n  content: \"\\eece\";\n}\n.bd2-lotus:before {\n  content: \"\\eecf\";\n}\n.bd2-loudly-crying-face:before {\n  content: \"\\eed0\";\n}\n.bd2-loudly-crying-face-whit-open-mouth:before {\n  content: \"\\eed1\";\n}\n.bd2-love-and-help:before {\n  content: \"\\eed2\";\n}\n.bd2-lower-branch:before {\n  content: \"\\eed3\";\n}\n.bd2-luggage:before {\n  content: \"\\eed4\";\n}\n.bd2-luminous:before {\n  content: \"\\eed5\";\n}\n.bd2-lung:before {\n  content: \"\\eed6\";\n}\n.bd2-macadamia-nut:before {\n  content: \"\\eed7\";\n}\n.bd2-mac-finder:before {\n  content: \"\\eed8\";\n}\n.bd2-magic:before {\n  content: \"\\eed9\";\n}\n.bd2-magic-hat:before {\n  content: \"\\eeda\";\n}\n.bd2-magic-wand:before {\n  content: \"\\eedb\";\n}\n.bd2-magnet:before {\n  content: \"\\eedc\";\n}\n.bd2-mail:before {\n  content: \"\\eedd\";\n}\n.bd2-mail-download:before {\n  content: \"\\eede\";\n}\n.bd2-mail-edit:before {\n  content: \"\\eedf\";\n}\n.bd2-maill-one:before {\n  content: \"\\eee0\";\n}\n.bd2-mail-open:before {\n  content: \"\\eee1\";\n}\n.bd2-mail-package:before {\n  content: \"\\eee2\";\n}\n.bd2-mail-review:before {\n  content: \"\\eee3\";\n}\n.bd2-mail-unpacking:before {\n  content: \"\\eee4\";\n}\n.bd2-makeups:before {\n  content: \"\\eee5\";\n}\n.bd2-male:before {\n  content: \"\\eee6\";\n}\n.bd2-mall-bag:before {\n  content: \"\\eee7\";\n}\n.bd2-manual-gear:before {\n  content: \"\\eee8\";\n}\n.bd2-many-to-many:before {\n  content: \"\\eee9\";\n}\n.bd2-map-distance:before {\n  content: \"\\eeea\";\n}\n.bd2-map-draw:before {\n  content: \"\\eeeb\";\n}\n.bd2-map-road:before {\n  content: \"\\eeec\";\n}\n.bd2-map-road-two:before {\n  content: \"\\eeed\";\n}\n.bd2-map-two:before {\n  content: \"\\eeee\";\n}\n.bd2-margin:before {\n  content: \"\\eeef\";\n}\n.bd2-margin-one:before {\n  content: \"\\eef0\";\n}\n.bd2-mark:before {\n  content: \"\\eef1\";\n}\n.bd2-market:before {\n  content: \"\\eef2\";\n}\n.bd2-market-analysis:before {\n  content: \"\\eef3\";\n}\n.bd2-mascara:before {\n  content: \"\\eef4\";\n}\n.bd2-mask:before {\n  content: \"\\eef5\";\n}\n.bd2-mask-one:before {\n  content: \"\\eef6\";\n}\n.bd2-mask-two:before {\n  content: \"\\eef7\";\n}\n.bd2-maslow-pyramids:before {\n  content: \"\\eef8\";\n}\n.bd2-massage-chair:before {\n  content: \"\\eef9\";\n}\n.bd2-massage-chair-one:before {\n  content: \"\\eefa\";\n}\n.bd2-massage-table:before {\n  content: \"\\eefb\";\n}\n.bd2-master:before {\n  content: \"\\eefc\";\n}\n.bd2-material:before {\n  content: \"\\eefd\";\n}\n.bd2-material-three:before {\n  content: \"\\eefe\";\n}\n.bd2-material-two:before {\n  content: \"\\eeff\";\n}\n.bd2-maximum:before {\n  content: \"\\ef00\";\n}\n.bd2-maya:before {\n  content: \"\\ef01\";\n}\n.bd2-mayura-gesture:before {\n  content: \"\\ef02\";\n}\n.bd2-me:before {\n  content: \"\\ef03\";\n}\n.bd2-measuring-cup:before {\n  content: \"\\ef04\";\n}\n.bd2-medal-one:before {\n  content: \"\\ef05\";\n}\n.bd2-mediaeditor:before {\n  content: \"\\ef06\";\n}\n.bd2-medical-box:before {\n  content: \"\\ef07\";\n}\n.bd2-medical-files:before {\n  content: \"\\ef08\";\n}\n.bd2-medical-mark:before {\n  content: \"\\ef09\";\n}\n.bd2-medication-time:before {\n  content: \"\\ef0a\";\n}\n.bd2-medicine-bottle:before {\n  content: \"\\ef0b\";\n}\n.bd2-medicine-bottle-one:before {\n  content: \"\\ef0c\";\n}\n.bd2-medicine-chest:before {\n  content: \"\\ef0d\";\n}\n.bd2-memory:before {\n  content: \"\\ef0e\";\n}\n.bd2-memory-card:before {\n  content: \"\\ef0f\";\n}\n.bd2-memory-card-one:before {\n  content: \"\\ef10\";\n}\n.bd2-memory-one:before {\n  content: \"\\ef11\";\n}\n.bd2-men-jacket:before {\n  content: \"\\ef12\";\n}\n.bd2-menu-fold:before {\n  content: \"\\ef13\";\n}\n.bd2-menu-fold-one:before {\n  content: \"\\ef14\";\n}\n.bd2-menu-unfold:before {\n  content: \"\\ef15\";\n}\n.bd2-menu-unfold-one:before {\n  content: \"\\ef16\";\n}\n.bd2-merge:before {\n  content: \"\\ef17\";\n}\n.bd2-merge-cells:before {\n  content: \"\\ef18\";\n}\n.bd2-message:before {\n  content: \"\\ef19\";\n}\n.bd2-message-emoji:before {\n  content: \"\\ef1a\";\n}\n.bd2-message-failed:before {\n  content: \"\\ef1b\";\n}\n.bd2-message-one:before {\n  content: \"\\ef1c\";\n}\n.bd2-message-privacy:before {\n  content: \"\\ef1d\";\n}\n.bd2-messages:before {\n  content: \"\\ef1e\";\n}\n.bd2-message-search:before {\n  content: \"\\ef1f\";\n}\n.bd2-message-security:before {\n  content: \"\\ef20\";\n}\n.bd2-message-sent:before {\n  content: \"\\ef21\";\n}\n.bd2-messages-one:before {\n  content: \"\\ef22\";\n}\n.bd2-message-success:before {\n  content: \"\\ef23\";\n}\n.bd2-message-unread:before {\n  content: \"\\ef24\";\n}\n.bd2-microphone:before {\n  content: \"\\ef25\";\n}\n.bd2-microphone-one:before {\n  content: \"\\ef26\";\n}\n.bd2-microscope:before {\n  content: \"\\ef27\";\n}\n.bd2-microscope-one:before {\n  content: \"\\ef28\";\n}\n.bd2-micro-sd:before {\n  content: \"\\ef29\";\n}\n.bd2-micro-slr-camera:before {\n  content: \"\\ef2a\";\n}\n.bd2-microwave-oven:before {\n  content: \"\\ef2b\";\n}\n.bd2-microwaves:before {\n  content: \"\\ef2c\";\n}\n.bd2-middle-finger:before {\n  content: \"\\ef2d\";\n}\n.bd2-milk:before {\n  content: \"\\ef2e\";\n}\n.bd2-milk-one:before {\n  content: \"\\ef2f\";\n}\n.bd2-min:before {\n  content: \"\\ef30\";\n}\n.bd2-mindmap-list:before {\n  content: \"\\ef31\";\n}\n.bd2-mindmap-map:before {\n  content: \"\\ef32\";\n}\n.bd2-mind-mapping:before {\n  content: \"\\ef33\";\n}\n.bd2-mini-sd-card:before {\n  content: \"\\ef34\";\n}\n.bd2-minus:before {\n  content: \"\\ef35\";\n}\n.bd2-minus-the-bottom:before {\n  content: \"\\ef36\";\n}\n.bd2-minus-the-top:before {\n  content: \"\\ef37\";\n}\n.bd2-mirror:before {\n  content: \"\\ef38\";\n}\n.bd2-mirror-one:before {\n  content: \"\\ef39\";\n}\n.bd2-mirror-two:before {\n  content: \"\\ef3a\";\n}\n.bd2-misaligned-semicircle:before {\n  content: \"\\ef3b\";\n}\n.bd2-mitsubishi:before {\n  content: \"\\ef3c\";\n}\n.bd2-modify:before {\n  content: \"\\ef3d\";\n}\n.bd2-modify-two:before {\n  content: \"\\ef3e\";\n}\n.bd2-monitor:before {\n  content: \"\\ef3f\";\n}\n.bd2-monitor-camera:before {\n  content: \"\\ef40\";\n}\n.bd2-monitor-off:before {\n  content: \"\\ef41\";\n}\n.bd2-monitor-one:before {\n  content: \"\\ef42\";\n}\n.bd2-monitor-two:before {\n  content: \"\\ef43\";\n}\n.bd2-monkey:before {\n  content: \"\\ef44\";\n}\n.bd2-monkey-zodiac:before {\n  content: \"\\ef45\";\n}\n.bd2-monument-one:before {\n  content: \"\\ef46\";\n}\n.bd2-monument-two:before {\n  content: \"\\ef47\";\n}\n.bd2-moon:before {\n  content: \"\\ef48\";\n}\n.bd2-more:before {\n  content: \"\\ef49\";\n}\n.bd2-more-app:before {\n  content: \"\\ef4a\";\n}\n.bd2-more-four:before {\n  content: \"\\ef4b\";\n}\n.bd2-more-one:before {\n  content: \"\\ef4c\";\n}\n.bd2-more-three:before {\n  content: \"\\ef4d\";\n}\n.bd2-more-two:before {\n  content: \"\\ef4e\";\n}\n.bd2-mosaic:before {\n  content: \"\\ef4f\";\n}\n.bd2-mountain:before {\n  content: \"\\ef50\";\n}\n.bd2-mounted:before {\n  content: \"\\ef51\";\n}\n.bd2-mouse:before {\n  content: \"\\ef52\";\n}\n.bd2-mouse-one:before {\n  content: \"\\ef53\";\n}\n.bd2-mouse-zodiac:before {\n  content: \"\\ef54\";\n}\n.bd2-mouth:before {\n  content: \"\\ef55\";\n}\n.bd2-move:before {\n  content: \"\\ef56\";\n}\n.bd2-move-in:before {\n  content: \"\\ef57\";\n}\n.bd2-move-in-one:before {\n  content: \"\\ef58\";\n}\n.bd2-move-one:before {\n  content: \"\\ef59\";\n}\n.bd2-movie:before {\n  content: \"\\ef5a\";\n}\n.bd2-movie-board:before {\n  content: \"\\ef5b\";\n}\n.bd2-moving-picture:before {\n  content: \"\\ef5c\";\n}\n.bd2-multicast:before {\n  content: \"\\ef5d\";\n}\n.bd2-multi-circular:before {\n  content: \"\\ef5e\";\n}\n.bd2-multi-function-knife:before {\n  content: \"\\ef5f\";\n}\n.bd2-multilayer-sphere:before {\n  content: \"\\ef60\";\n}\n.bd2-multi-picture-carousel:before {\n  content: \"\\ef61\";\n}\n.bd2-multi-rectangle:before {\n  content: \"\\ef62\";\n}\n.bd2-multi-ring:before {\n  content: \"\\ef63\";\n}\n.bd2-multi-triangular:before {\n  content: \"\\ef64\";\n}\n.bd2-multi-triangular-four:before {\n  content: \"\\ef65\";\n}\n.bd2-multi-triangular-three:before {\n  content: \"\\ef66\";\n}\n.bd2-multi-triangular-two:before {\n  content: \"\\ef67\";\n}\n.bd2-muscle:before {\n  content: \"\\ef68\";\n}\n.bd2-museum-one:before {\n  content: \"\\ef69\";\n}\n.bd2-museum-two:before {\n  content: \"\\ef6a\";\n}\n.bd2-music:before {\n  content: \"\\ef6b\";\n}\n.bd2-music-cd:before {\n  content: \"\\ef6c\";\n}\n.bd2-music-list:before {\n  content: \"\\ef6d\";\n}\n.bd2-music-menu:before {\n  content: \"\\ef6e\";\n}\n.bd2-music-one:before {\n  content: \"\\ef6f\";\n}\n.bd2-music-rhythm:before {\n  content: \"\\ef70\";\n}\n.bd2-mute:before {\n  content: \"\\ef71\";\n}\n.bd2-nail-polish:before {\n  content: \"\\ef72\";\n}\n.bd2-nail-polish-one:before {\n  content: \"\\ef73\";\n}\n.bd2-nasal:before {\n  content: \"\\ef74\";\n}\n.bd2-natural-mode:before {\n  content: \"\\ef75\";\n}\n.bd2-navigation:before {\n  content: \"\\ef76\";\n}\n.bd2-necktie:before {\n  content: \"\\ef77\";\n}\n.bd2-needle:before {\n  content: \"\\ef78\";\n}\n.bd2-negative-dynamics:before {\n  content: \"\\ef79\";\n}\n.bd2-nested-arrows:before {\n  content: \"\\ef7a\";\n}\n.bd2-nests:before {\n  content: \"\\ef7b\";\n}\n.bd2-network-drive:before {\n  content: \"\\ef7c\";\n}\n.bd2-network-tree:before {\n  content: \"\\ef7d\";\n}\n.bd2-neural:before {\n  content: \"\\ef7e\";\n}\n.bd2-neutral-face:before {\n  content: \"\\ef7f\";\n}\n.bd2-new-afferent:before {\n  content: \"\\ef80\";\n}\n.bd2-new-computer:before {\n  content: \"\\ef81\";\n}\n.bd2-new-dianziqian:before {\n  content: \"\\ef82\";\n}\n.bd2-new-efferent:before {\n  content: \"\\ef83\";\n}\n.bd2-new-lark:before {\n  content: \"\\ef84\";\n}\n.bd2-newlybuild:before {\n  content: \"\\ef85\";\n}\n.bd2-new-picture:before {\n  content: \"\\ef86\";\n}\n.bd2-newspaper-folding:before {\n  content: \"\\ef87\";\n}\n.bd2-next:before {\n  content: \"\\ef88\";\n}\n.bd2-nine-key:before {\n  content: \"\\ef89\";\n}\n.bd2-nine-points-connected:before {\n  content: \"\\ef8a\";\n}\n.bd2-nintendo-switch:before {\n  content: \"\\ef8b\";\n}\n.bd2-nmr:before {\n  content: \"\\ef8c\";\n}\n.bd2-node-flat:before {\n  content: \"\\ef8d\";\n}\n.bd2-node-round:before {\n  content: \"\\ef8e\";\n}\n.bd2-node-square:before {\n  content: \"\\ef8f\";\n}\n.bd2-noodles:before {\n  content: \"\\ef90\";\n}\n.bd2-no-shooting:before {\n  content: \"\\ef91\";\n}\n.bd2-notebook:before {\n  content: \"\\ef92\";\n}\n.bd2-notebook-and-pen:before {\n  content: \"\\ef93\";\n}\n.bd2-notebook-one:before {\n  content: \"\\ef94\";\n}\n.bd2-notepad:before {\n  content: \"\\ef95\";\n}\n.bd2-notes:before {\n  content: \"\\ef96\";\n}\n.bd2-nuclear-plant:before {\n  content: \"\\ef97\";\n}\n.bd2-nurse-cap:before {\n  content: \"\\ef98\";\n}\n.bd2-nut:before {\n  content: \"\\ef99\";\n}\n.bd2-nutrition:before {\n  content: \"\\ef9a\";\n}\n.bd2-oceanengine:before {\n  content: \"\\ef9b\";\n}\n.bd2-octagon:before {\n  content: \"\\ef9c\";\n}\n.bd2-off-screen:before {\n  content: \"\\ef9d\";\n}\n.bd2-off-screen-one:before {\n  content: \"\\ef9e\";\n}\n.bd2-off-screen-two:before {\n  content: \"\\ef9f\";\n}\n.bd2-oil-industry:before {\n  content: \"\\efa0\";\n}\n.bd2-okay:before {\n  content: \"\\efa1\";\n}\n.bd2-one:before {\n  content: \"\\efa2\";\n}\n.bd2-one-key:before {\n  content: \"\\efa3\";\n}\n.bd2-one-one:before {\n  content: \"\\efa4\";\n}\n.bd2-onesies:before {\n  content: \"\\efa5\";\n}\n.bd2-one-third-rotation:before {\n  content: \"\\efa6\";\n}\n.bd2-one-to-many:before {\n  content: \"\\efa7\";\n}\n.bd2-one-to-one:before {\n  content: \"\\efa8\";\n}\n.bd2-online-meeting:before {\n  content: \"\\efa9\";\n}\n.bd2-open:before {\n  content: \"\\efaa\";\n}\n.bd2-open-an-account:before {\n  content: \"\\efab\";\n}\n.bd2-open-door:before {\n  content: \"\\efac\";\n}\n.bd2-open-one:before {\n  content: \"\\efad\";\n}\n.bd2-optimize:before {\n  content: \"\\efae\";\n}\n.bd2-optional:before {\n  content: \"\\efaf\";\n}\n.bd2-orange:before {\n  content: \"\\efb0\";\n}\n.bd2-orange-one:before {\n  content: \"\\efb1\";\n}\n.bd2-orange-station:before {\n  content: \"\\efb2\";\n}\n.bd2-order:before {\n  content: \"\\efb3\";\n}\n.bd2-ordered-list:before {\n  content: \"\\efb4\";\n}\n.bd2-orthopedic:before {\n  content: \"\\efb5\";\n}\n.bd2-oscillator:before {\n  content: \"\\efb6\";\n}\n.bd2-other:before {\n  content: \"\\efb7\";\n}\n.bd2-outbound:before {\n  content: \"\\efb8\";\n}\n.bd2-outdoor:before {\n  content: \"\\efb9\";\n}\n.bd2-outgoing:before {\n  content: \"\\efba\";\n}\n.bd2-oval-love:before {\n  content: \"\\efbb\";\n}\n.bd2-oval-love-two:before {\n  content: \"\\efbc\";\n}\n.bd2-oval-one:before {\n  content: \"\\efbd\";\n}\n.bd2-oven:before {\n  content: \"\\efbe\";\n}\n.bd2-oven-tray:before {\n  content: \"\\efbf\";\n}\n.bd2-overall-reduction:before {\n  content: \"\\efc0\";\n}\n.bd2-owl:before {\n  content: \"\\efc1\";\n}\n.bd2-pacifier:before {\n  content: \"\\efc2\";\n}\n.bd2-pad:before {\n  content: \"\\efc3\";\n}\n.bd2-page:before {\n  content: \"\\efc4\";\n}\n.bd2-page-template:before {\n  content: \"\\efc5\";\n}\n.bd2-pagoda:before {\n  content: \"\\efc6\";\n}\n.bd2-paint:before {\n  content: \"\\efc7\";\n}\n.bd2-painted-eggshell:before {\n  content: \"\\efc8\";\n}\n.bd2-painted-screen:before {\n  content: \"\\efc9\";\n}\n.bd2-palace:before {\n  content: \"\\efca\";\n}\n.bd2-palm:before {\n  content: \"\\efcb\";\n}\n.bd2-panda:before {\n  content: \"\\efcc\";\n}\n.bd2-pangle:before {\n  content: \"\\efcd\";\n}\n.bd2-panorama-horizontal:before {\n  content: \"\\efce\";\n}\n.bd2-panties:before {\n  content: \"\\efcf\";\n}\n.bd2-paperclip:before {\n  content: \"\\efd0\";\n}\n.bd2-paper-money:before {\n  content: \"\\efd1\";\n}\n.bd2-paper-money-two:before {\n  content: \"\\efd2\";\n}\n.bd2-paper-ship:before {\n  content: \"\\efd3\";\n}\n.bd2-parabola:before {\n  content: \"\\efd4\";\n}\n.bd2-parachute:before {\n  content: \"\\efd5\";\n}\n.bd2-paragraph-alphabet:before {\n  content: \"\\efd6\";\n}\n.bd2-paragraph-break:before {\n  content: \"\\efd7\";\n}\n.bd2-paragraph-break-two:before {\n  content: \"\\efd8\";\n}\n.bd2-paragraph-cut:before {\n  content: \"\\efd9\";\n}\n.bd2-paragraph-rectangle:before {\n  content: \"\\efda\";\n}\n.bd2-paragraph-round:before {\n  content: \"\\efdb\";\n}\n.bd2-paragraph-triangle:before {\n  content: \"\\efdc\";\n}\n.bd2-paragraph-unfold:before {\n  content: \"\\efdd\";\n}\n.bd2-parallel-gateway:before {\n  content: \"\\efde\";\n}\n.bd2-parallelogram:before {\n  content: \"\\efdf\";\n}\n.bd2-parenting-book:before {\n  content: \"\\efe0\";\n}\n.bd2-parking:before {\n  content: \"\\efe1\";\n}\n.bd2-party-balloon:before {\n  content: \"\\efe2\";\n}\n.bd2-passport:before {\n  content: \"\\efe3\";\n}\n.bd2-passport-one:before {\n  content: \"\\efe4\";\n}\n.bd2-pause:before {\n  content: \"\\efe5\";\n}\n.bd2-pause-one:before {\n  content: \"\\efe6\";\n}\n.bd2-pay-code:before {\n  content: \"\\efe7\";\n}\n.bd2-pay-code-one:before {\n  content: \"\\efe8\";\n}\n.bd2-pay-code-two:before {\n  content: \"\\efe9\";\n}\n.bd2-payment-method:before {\n  content: \"\\efea\";\n}\n.bd2-paypal:before {\n  content: \"\\efeb\";\n}\n.bd2-peach:before {\n  content: \"\\efec\";\n}\n.bd2-pear:before {\n  content: \"\\efed\";\n}\n.bd2-pearl-of-the-orient:before {\n  content: \"\\efee\";\n}\n.bd2-peas:before {\n  content: \"\\efef\";\n}\n.bd2-pencil:before {\n  content: \"\\eff0\";\n}\n.bd2-pennant:before {\n  content: \"\\eff1\";\n}\n.bd2-pentagon-one:before {\n  content: \"\\eff2\";\n}\n.bd2-people:before {\n  content: \"\\eff3\";\n}\n.bd2-people-bottom:before {\n  content: \"\\eff4\";\n}\n.bd2-people-bottom-card:before {\n  content: \"\\eff5\";\n}\n.bd2-people-delete:before {\n  content: \"\\eff6\";\n}\n.bd2-people-delete-one:before {\n  content: \"\\eff7\";\n}\n.bd2-people-download:before {\n  content: \"\\eff8\";\n}\n.bd2-people-left:before {\n  content: \"\\eff9\";\n}\n.bd2-people-minus:before {\n  content: \"\\effa\";\n}\n.bd2-people-minus-one:before {\n  content: \"\\effb\";\n}\n.bd2-people-plus:before {\n  content: \"\\effc\";\n}\n.bd2-people-plus-one:before {\n  content: \"\\effd\";\n}\n.bd2-people-right:before {\n  content: \"\\effe\";\n}\n.bd2-peoples:before {\n  content: \"\\efff\";\n}\n.bd2-people-safe:before {\n  content: \"\\f000\";\n}\n.bd2-people-safe-one:before {\n  content: \"\\f001\";\n}\n.bd2-people-search:before {\n  content: \"\\f002\";\n}\n.bd2-people-search-one:before {\n  content: \"\\f003\";\n}\n.bd2-people-speak:before {\n  content: \"\\f004\";\n}\n.bd2-peoples-two:before {\n  content: \"\\f005\";\n}\n.bd2-people-top:before {\n  content: \"\\f006\";\n}\n.bd2-people-top-card:before {\n  content: \"\\f007\";\n}\n.bd2-people-unknown:before {\n  content: \"\\f008\";\n}\n.bd2-people-upload:before {\n  content: \"\\f009\";\n}\n.bd2-percentage:before {\n  content: \"\\f00a\";\n}\n.bd2-performance:before {\n  content: \"\\f00b\";\n}\n.bd2-perfume:before {\n  content: \"\\f00c\";\n}\n.bd2-perfumer-bottle:before {\n  content: \"\\f00d\";\n}\n.bd2-period:before {\n  content: \"\\f00e\";\n}\n.bd2-permissions:before {\n  content: \"\\f00f\";\n}\n.bd2-personal-collection:before {\n  content: \"\\f010\";\n}\n.bd2-personal-privacy:before {\n  content: \"\\f011\";\n}\n.bd2-perspective:before {\n  content: \"\\f012\";\n}\n.bd2-pesticide:before {\n  content: \"\\f013\";\n}\n.bd2-petrol:before {\n  content: \"\\f014\";\n}\n.bd2-phone:before {\n  content: \"\\f015\";\n}\n.bd2-phone-booth:before {\n  content: \"\\f016\";\n}\n.bd2-phone-call:before {\n  content: \"\\f017\";\n}\n.bd2-phone-incoming:before {\n  content: \"\\f018\";\n}\n.bd2-phone-incoming-one:before {\n  content: \"\\f019\";\n}\n.bd2-phone-missed:before {\n  content: \"\\f01a\";\n}\n.bd2-phone-off:before {\n  content: \"\\f01b\";\n}\n.bd2-phone-one:before {\n  content: \"\\f01c\";\n}\n.bd2-phone-outgoing:before {\n  content: \"\\f01d\";\n}\n.bd2-phone-outgoing-one:before {\n  content: \"\\f01e\";\n}\n.bd2-phone-telephone:before {\n  content: \"\\f01f\";\n}\n.bd2-phone-two:before {\n  content: \"\\f020\";\n}\n.bd2-phone-video-call:before {\n  content: \"\\f021\";\n}\n.bd2-phonograph:before {\n  content: \"\\f022\";\n}\n.bd2-photograph:before {\n  content: \"\\f023\";\n}\n.bd2-piano:before {\n  content: \"\\f024\";\n}\n.bd2-pic:before {\n  content: \"\\f025\";\n}\n.bd2-pic-one:before {\n  content: \"\\f026\";\n}\n.bd2-picture:before {\n  content: \"\\f027\";\n}\n.bd2-picture-album:before {\n  content: \"\\f028\";\n}\n.bd2-picture-one:before {\n  content: \"\\f029\";\n}\n.bd2-pie:before {\n  content: \"\\f02a\";\n}\n.bd2-pie-five:before {\n  content: \"\\f02b\";\n}\n.bd2-pie-four:before {\n  content: \"\\f02c\";\n}\n.bd2-pie-one:before {\n  content: \"\\f02d\";\n}\n.bd2-pie-seven:before {\n  content: \"\\f02e\";\n}\n.bd2-pie-six:before {\n  content: \"\\f02f\";\n}\n.bd2-pie-three:before {\n  content: \"\\f030\";\n}\n.bd2-pie-two:before {\n  content: \"\\f031\";\n}\n.bd2-pig:before {\n  content: \"\\f032\";\n}\n.bd2-pigeon:before {\n  content: \"\\f033\";\n}\n.bd2-pig-zodiac:before {\n  content: \"\\f034\";\n}\n.bd2-pill:before {\n  content: \"\\f035\";\n}\n.bd2-pills:before {\n  content: \"\\f036\";\n}\n.bd2-pin:before {\n  content: \"\\f037\";\n}\n.bd2-pineapple:before {\n  content: \"\\f038\";\n}\n.bd2-pinwheel:before {\n  content: \"\\f039\";\n}\n.bd2-pisces:before {\n  content: \"\\f03a\";\n}\n.bd2-pivot-table:before {\n  content: \"\\f03b\";\n}\n.bd2-plan:before {\n  content: \"\\f03c\";\n}\n.bd2-planet:before {\n  content: \"\\f03d\";\n}\n.bd2-plastic-surgery:before {\n  content: \"\\f03e\";\n}\n.bd2-platte:before {\n  content: \"\\f03f\";\n}\n.bd2-play:before {\n  content: \"\\f040\";\n}\n.bd2-playback-progress:before {\n  content: \"\\f041\";\n}\n.bd2-play-basketball:before {\n  content: \"\\f042\";\n}\n.bd2-play-cycle:before {\n  content: \"\\f043\";\n}\n.bd2-play-once:before {\n  content: \"\\f044\";\n}\n.bd2-play-one:before {\n  content: \"\\f045\";\n}\n.bd2-play-two:before {\n  content: \"\\f046\";\n}\n.bd2-play-volleyball:before {\n  content: \"\\f047\";\n}\n.bd2-play-wrong:before {\n  content: \"\\f048\";\n}\n.bd2-plug:before {\n  content: \"\\f049\";\n}\n.bd2-plug-one:before {\n  content: \"\\f04a\";\n}\n.bd2-plus:before {\n  content: \"\\f04b\";\n}\n.bd2-plus-cross:before {\n  content: \"\\f04c\";\n}\n.bd2-point:before {\n  content: \"\\f04d\";\n}\n.bd2-point-out:before {\n  content: \"\\f04e\";\n}\n.bd2-pokeball-one:before {\n  content: \"\\f04f\";\n}\n.bd2-poker:before {\n  content: \"\\f050\";\n}\n.bd2-popcorn:before {\n  content: \"\\f051\";\n}\n.bd2-popcorn-one:before {\n  content: \"\\f052\";\n}\n.bd2-positive-dynamics:before {\n  content: \"\\f053\";\n}\n.bd2-pot:before {\n  content: \"\\f054\";\n}\n.bd2-potentiometer:before {\n  content: \"\\f055\";\n}\n.bd2-pound:before {\n  content: \"\\f056\";\n}\n.bd2-pound-sign:before {\n  content: \"\\f057\";\n}\n.bd2-pouting-face:before {\n  content: \"\\f058\";\n}\n.bd2-powder:before {\n  content: \"\\f059\";\n}\n.bd2-power:before {\n  content: \"\\f05a\";\n}\n.bd2-powerpoint:before {\n  content: \"\\f05b\";\n}\n.bd2-power-supply:before {\n  content: \"\\f05c\";\n}\n.bd2-power-supply-one:before {\n  content: \"\\f05d\";\n}\n.bd2-ppt:before {\n  content: \"\\f05e\";\n}\n.bd2-pregnant-women:before {\n  content: \"\\f05f\";\n}\n.bd2-preschool:before {\n  content: \"\\f060\";\n}\n.bd2-prescription:before {\n  content: \"\\f061\";\n}\n.bd2-press:before {\n  content: \"\\f062\";\n}\n.bd2-preview-close:before {\n  content: \"\\f063\";\n}\n.bd2-preview-close-one:before {\n  content: \"\\f064\";\n}\n.bd2-preview-open:before {\n  content: \"\\f065\";\n}\n.bd2-printer:before {\n  content: \"\\f066\";\n}\n.bd2-printer-one:before {\n  content: \"\\f067\";\n}\n.bd2-printer-two:before {\n  content: \"\\f068\";\n}\n.bd2-prison:before {\n  content: \"\\f069\";\n}\n.bd2-process-line:before {\n  content: \"\\f06a\";\n}\n.bd2-projector:before {\n  content: \"\\f06b\";\n}\n.bd2-projector-one:before {\n  content: \"\\f06c\";\n}\n.bd2-projector-three:before {\n  content: \"\\f06d\";\n}\n.bd2-projector-two:before {\n  content: \"\\f06e\";\n}\n.bd2-proportional-scaling:before {\n  content: \"\\f06f\";\n}\n.bd2-protect:before {\n  content: \"\\f070\";\n}\n.bd2-protection:before {\n  content: \"\\f071\";\n}\n.bd2-public-toilet:before {\n  content: \"\\f072\";\n}\n.bd2-pull-door:before {\n  content: \"\\f073\";\n}\n.bd2-pull-requests:before {\n  content: \"\\f074\";\n}\n.bd2-pumpkin:before {\n  content: \"\\f075\";\n}\n.bd2-pure-natural:before {\n  content: \"\\f076\";\n}\n.bd2-push-door:before {\n  content: \"\\f077\";\n}\n.bd2-pushpin:before {\n  content: \"\\f078\";\n}\n.bd2-puzzle:before {\n  content: \"\\f079\";\n}\n.bd2-pyramid:before {\n  content: \"\\f07a\";\n}\n.bd2-pyramid-one:before {\n  content: \"\\f07b\";\n}\n.bd2-qingniao-clue:before {\n  content: \"\\f07c\";\n}\n.bd2-qiyehao:before {\n  content: \"\\f07d\";\n}\n.bd2-quadrangular-pyramid:before {\n  content: \"\\f07e\";\n}\n.bd2-quadrilateral:before {\n  content: \"\\f07f\";\n}\n.bd2-quote:before {\n  content: \"\\f080\";\n}\n.bd2-rabbit:before {\n  content: \"\\f081\";\n}\n.bd2-rabbit-zodiac:before {\n  content: \"\\f082\";\n}\n.bd2-radar:before {\n  content: \"\\f083\";\n}\n.bd2-radar-chart:before {\n  content: \"\\f084\";\n}\n.bd2-radar-three:before {\n  content: \"\\f085\";\n}\n.bd2-radar-two:before {\n  content: \"\\f086\";\n}\n.bd2-radiation:before {\n  content: \"\\f087\";\n}\n.bd2-radio:before {\n  content: \"\\f088\";\n}\n.bd2-radio-nanny:before {\n  content: \"\\f089\";\n}\n.bd2-radio-one:before {\n  content: \"\\f08a\";\n}\n.bd2-radio-two:before {\n  content: \"\\f08b\";\n}\n.bd2-radish:before {\n  content: \"\\f08c\";\n}\n.bd2-radish-one:before {\n  content: \"\\f08d\";\n}\n.bd2-railway:before {\n  content: \"\\f08e\";\n}\n.bd2-ranking:before {\n  content: \"\\f08f\";\n}\n.bd2-ranking-list:before {\n  content: \"\\f090\";\n}\n.bd2-rattle:before {\n  content: \"\\f091\";\n}\n.bd2-rattle-one:before {\n  content: \"\\f092\";\n}\n.bd2-razor:before {\n  content: \"\\f093\";\n}\n.bd2-read-book:before {\n  content: \"\\f094\";\n}\n.bd2-receive:before {\n  content: \"\\f095\";\n}\n.bd2-receiver:before {\n  content: \"\\f096\";\n}\n.bd2-recent-views-sort:before {\n  content: \"\\f097\";\n}\n.bd2-record:before {\n  content: \"\\f098\";\n}\n.bd2-record-disc:before {\n  content: \"\\f099\";\n}\n.bd2-record-player:before {\n  content: \"\\f09a\";\n}\n.bd2-rectangle:before {\n  content: \"\\f09b\";\n}\n.bd2-rectangle-one:before {\n  content: \"\\f09c\";\n}\n.bd2-rectangle-small:before {\n  content: \"\\f09d\";\n}\n.bd2-rectangle-tear:before {\n  content: \"\\f09e\";\n}\n.bd2-rectangle-x:before {\n  content: \"\\f09f\";\n}\n.bd2-rectangular-circular-connection:before {\n  content: \"\\f0a0\";\n}\n.bd2-rectangular-circular-separation:before {\n  content: \"\\f0a1\";\n}\n.bd2-rectangular-vertebra:before {\n  content: \"\\f0a2\";\n}\n.bd2-recycle-bin:before {\n  content: \"\\f0a3\";\n}\n.bd2-recycling:before {\n  content: \"\\f0a4\";\n}\n.bd2-recycling-pool:before {\n  content: \"\\f0a5\";\n}\n.bd2-red-cross:before {\n  content: \"\\f0a6\";\n}\n.bd2-red-envelope:before {\n  content: \"\\f0a7\";\n}\n.bd2-red-envelopes:before {\n  content: \"\\f0a8\";\n}\n.bd2-redo:before {\n  content: \"\\f0a9\";\n}\n.bd2-reduce:before {\n  content: \"\\f0aa\";\n}\n.bd2-reduce-decimal-places:before {\n  content: \"\\f0ab\";\n}\n.bd2-reduce-one:before {\n  content: \"\\f0ac\";\n}\n.bd2-reduce-two:before {\n  content: \"\\f0ad\";\n}\n.bd2-reduce-user:before {\n  content: \"\\f0ae\";\n}\n.bd2-reel:before {\n  content: \"\\f0af\";\n}\n.bd2-refraction:before {\n  content: \"\\f0b0\";\n}\n.bd2-refresh:before {\n  content: \"\\f0b1\";\n}\n.bd2-refresh-one:before {\n  content: \"\\f0b2\";\n}\n.bd2-refrigerator:before {\n  content: \"\\f0b3\";\n}\n.bd2-reject:before {\n  content: \"\\f0b4\";\n}\n.bd2-relational-graph:before {\n  content: \"\\f0b5\";\n}\n.bd2-relieved-face:before {\n  content: \"\\f0b6\";\n}\n.bd2-reload:before {\n  content: \"\\f0b7\";\n}\n.bd2-remind:before {\n  content: \"\\f0b8\";\n}\n.bd2-remind-disable:before {\n  content: \"\\f0b9\";\n}\n.bd2-remote-control:before {\n  content: \"\\f0ba\";\n}\n.bd2-remote-control-one:before {\n  content: \"\\f0bb\";\n}\n.bd2-renal:before {\n  content: \"\\f0bc\";\n}\n.bd2-renault:before {\n  content: \"\\f0bd\";\n}\n.bd2-repair:before {\n  content: \"\\f0be\";\n}\n.bd2-replay-five:before {\n  content: \"\\f0bf\";\n}\n.bd2-replay-music:before {\n  content: \"\\f0c0\";\n}\n.bd2-report:before {\n  content: \"\\f0c1\";\n}\n.bd2-repositioning:before {\n  content: \"\\f0c2\";\n}\n.bd2-resistor:before {\n  content: \"\\f0c3\";\n}\n.bd2-respect:before {\n  content: \"\\f0c4\";\n}\n.bd2-resting:before {\n  content: \"\\f0c5\";\n}\n.bd2-retro-bag:before {\n  content: \"\\f0c6\";\n}\n.bd2-return:before {\n  content: \"\\f0c7\";\n}\n.bd2-reverse-lens:before {\n  content: \"\\f0c8\";\n}\n.bd2-reverse-lens-one:before {\n  content: \"\\f0c9\";\n}\n.bd2-reverse-operation-in:before {\n  content: \"\\f0ca\";\n}\n.bd2-reverse-operation-out:before {\n  content: \"\\f0cb\";\n}\n.bd2-reverse-rotation:before {\n  content: \"\\f0cc\";\n}\n.bd2-rice:before {\n  content: \"\\f0cd\";\n}\n.bd2-riding:before {\n  content: \"\\f0ce\";\n}\n.bd2-riding-one:before {\n  content: \"\\f0cf\";\n}\n.bd2-right:before {\n  content: \"\\f0d0\";\n}\n.bd2-right-angle:before {\n  content: \"\\f0d1\";\n}\n.bd2-right-bar:before {\n  content: \"\\f0d2\";\n}\n.bd2-right-branch:before {\n  content: \"\\f0d3\";\n}\n.bd2-right-branch-one:before {\n  content: \"\\f0d4\";\n}\n.bd2-right-branch-two:before {\n  content: \"\\f0d5\";\n}\n.bd2-right-c:before {\n  content: \"\\f0d6\";\n}\n.bd2-right-expand:before {\n  content: \"\\f0d7\";\n}\n.bd2-right-one:before {\n  content: \"\\f0d8\";\n}\n.bd2-right-run:before {\n  content: \"\\f0d9\";\n}\n.bd2-right-small:before {\n  content: \"\\f0da\";\n}\n.bd2-right-small-down:before {\n  content: \"\\f0db\";\n}\n.bd2-right-small-up:before {\n  content: \"\\f0dc\";\n}\n.bd2-right-square:before {\n  content: \"\\f0dd\";\n}\n.bd2-right-two:before {\n  content: \"\\f0de\";\n}\n.bd2-right-user:before {\n  content: \"\\f0df\";\n}\n.bd2-ring:before {\n  content: \"\\f0e0\";\n}\n.bd2-ring-one:before {\n  content: \"\\f0e1\";\n}\n.bd2-rings:before {\n  content: \"\\f0e2\";\n}\n.bd2-ripple:before {\n  content: \"\\f0e3\";\n}\n.bd2-road:before {\n  content: \"\\f0e4\";\n}\n.bd2-road-cone:before {\n  content: \"\\f0e5\";\n}\n.bd2-road-one:before {\n  content: \"\\f0e6\";\n}\n.bd2-road-sign:before {\n  content: \"\\f0e7\";\n}\n.bd2-road-sign-both:before {\n  content: \"\\f0e8\";\n}\n.bd2-robot:before {\n  content: \"\\f0e9\";\n}\n.bd2-robot-one:before {\n  content: \"\\f0ea\";\n}\n.bd2-robot-two:before {\n  content: \"\\f0eb\";\n}\n.bd2-rock:before {\n  content: \"\\f0ec\";\n}\n.bd2-rocket:before {\n  content: \"\\f0ed\";\n}\n.bd2-rocket-one:before {\n  content: \"\\f0ee\";\n}\n.bd2-rock-gesture:before {\n  content: \"\\f0ef\";\n}\n.bd2-rocking-horse:before {\n  content: \"\\f0f0\";\n}\n.bd2-rollerskates:before {\n  content: \"\\f0f1\";\n}\n.bd2-romper:before {\n  content: \"\\f0f2\";\n}\n.bd2-rope-skipping:before {\n  content: \"\\f0f3\";\n}\n.bd2-rope-skipping-one:before {\n  content: \"\\f0f4\";\n}\n.bd2-rotate:before {\n  content: \"\\f0f5\";\n}\n.bd2-rotate-one:before {\n  content: \"\\f0f6\";\n}\n.bd2-rotating-add:before {\n  content: \"\\f0f7\";\n}\n.bd2-rotating-forward:before {\n  content: \"\\f0f8\";\n}\n.bd2-rotation:before {\n  content: \"\\f0f9\";\n}\n.bd2-rotation-horizontal:before {\n  content: \"\\f0fa\";\n}\n.bd2-rotation-one:before {\n  content: \"\\f0fb\";\n}\n.bd2-rotation-vertical:before {\n  content: \"\\f0fc\";\n}\n.bd2-round:before {\n  content: \"\\f0fd\";\n}\n.bd2-round-caliper:before {\n  content: \"\\f0fe\";\n}\n.bd2-round-distortion:before {\n  content: \"\\f0ff\";\n}\n.bd2-round-mask:before {\n  content: \"\\f100\";\n}\n.bd2-round-socket:before {\n  content: \"\\f101\";\n}\n.bd2-round-trip:before {\n  content: \"\\f102\";\n}\n.bd2-router:before {\n  content: \"\\f103\";\n}\n.bd2-router-one:before {\n  content: \"\\f104\";\n}\n.bd2-row-height:before {\n  content: \"\\f105\";\n}\n.bd2-rowing:before {\n  content: \"\\f106\";\n}\n.bd2-rs-male:before {\n  content: \"\\f107\";\n}\n.bd2-rss:before {\n  content: \"\\f108\";\n}\n.bd2-rugby:before {\n  content: \"\\f109\";\n}\n.bd2-rugby-one:before {\n  content: \"\\f10a\";\n}\n.bd2-ruler:before {\n  content: \"\\f10b\";\n}\n.bd2-ruler-one:before {\n  content: \"\\f10c\";\n}\n.bd2-rule-two:before {\n  content: \"\\f10d\";\n}\n.bd2-run-left:before {\n  content: \"\\f10e\";\n}\n.bd2-safe-retrieval:before {\n  content: \"\\f10f\";\n}\n.bd2-sagittarius:before {\n  content: \"\\f110\";\n}\n.bd2-sailboat:before {\n  content: \"\\f111\";\n}\n.bd2-sailboat-one:before {\n  content: \"\\f112\";\n}\n.bd2-sailing:before {\n  content: \"\\f113\";\n}\n.bd2-sales-report:before {\n  content: \"\\f114\";\n}\n.bd2-sandals:before {\n  content: \"\\f115\";\n}\n.bd2-sandstorm:before {\n  content: \"\\f116\";\n}\n.bd2-sandwich:before {\n  content: \"\\f117\";\n}\n.bd2-sandwich-one:before {\n  content: \"\\f118\";\n}\n.bd2-sapling:before {\n  content: \"\\f119\";\n}\n.bd2-save:before {\n  content: \"\\f11a\";\n}\n.bd2-save-one:before {\n  content: \"\\f11b\";\n}\n.bd2-scale:before {\n  content: \"\\f11c\";\n}\n.bd2-scale-one:before {\n  content: \"\\f11d\";\n}\n.bd2-scallion:before {\n  content: \"\\f11e\";\n}\n.bd2-scan:before {\n  content: \"\\f11f\";\n}\n.bd2-scan-code:before {\n  content: \"\\f120\";\n}\n.bd2-scanning:before {\n  content: \"\\f121\";\n}\n.bd2-scanning-two:before {\n  content: \"\\f122\";\n}\n.bd2-scan-setting:before {\n  content: \"\\f123\";\n}\n.bd2-scatter-alignment:before {\n  content: \"\\f124\";\n}\n.bd2-schedule:before {\n  content: \"\\f125\";\n}\n.bd2-school:before {\n  content: \"\\f126\";\n}\n.bd2-scissors:before {\n  content: \"\\f127\";\n}\n.bd2-scoreboard:before {\n  content: \"\\f128\";\n}\n.bd2-scorpio:before {\n  content: \"\\f129\";\n}\n.bd2-screen-rotation:before {\n  content: \"\\f12a\";\n}\n.bd2-screenshot:before {\n  content: \"\\f12b\";\n}\n.bd2-screenshot-one:before {\n  content: \"\\f12c\";\n}\n.bd2-screenshot-two:before {\n  content: \"\\f12d\";\n}\n.bd2-screwdriver:before {\n  content: \"\\f12e\";\n}\n.bd2-sd:before {\n  content: \"\\f12f\";\n}\n.bd2-sd-card:before {\n  content: \"\\f130\";\n}\n.bd2-seal:before {\n  content: \"\\f131\";\n}\n.bd2-search:before {\n  content: \"\\f132\";\n}\n.bd2-seat:before {\n  content: \"\\f133\";\n}\n.bd2-security:before {\n  content: \"\\f134\";\n}\n.bd2-security-stall:before {\n  content: \"\\f135\";\n}\n.bd2-seedling:before {\n  content: \"\\f136\";\n}\n.bd2-selected:before {\n  content: \"\\f137\";\n}\n.bd2-selected-focus:before {\n  content: \"\\f138\";\n}\n.bd2-selfie:before {\n  content: \"\\f139\";\n}\n.bd2-send:before {\n  content: \"\\f13a\";\n}\n.bd2-send-backward:before {\n  content: \"\\f13b\";\n}\n.bd2-send-email:before {\n  content: \"\\f13c\";\n}\n.bd2-send-one:before {\n  content: \"\\f13d\";\n}\n.bd2-send-to-back:before {\n  content: \"\\f13e\";\n}\n.bd2-sent-to-back:before {\n  content: \"\\f13f\";\n}\n.bd2-seo:before {\n  content: \"\\f140\";\n}\n.bd2-seo-folder:before {\n  content: \"\\f141\";\n}\n.bd2-server:before {\n  content: \"\\f142\";\n}\n.bd2-set-off:before {\n  content: \"\\f143\";\n}\n.bd2-setting:before {\n  content: \"\\f144\";\n}\n.bd2-setting-computer:before {\n  content: \"\\f145\";\n}\n.bd2-setting-config:before {\n  content: \"\\f146\";\n}\n.bd2-setting-laptop:before {\n  content: \"\\f147\";\n}\n.bd2-setting-one:before {\n  content: \"\\f148\";\n}\n.bd2-setting-three:before {\n  content: \"\\f149\";\n}\n.bd2-setting-two:before {\n  content: \"\\f14a\";\n}\n.bd2-setting-web:before {\n  content: \"\\f14b\";\n}\n.bd2-seven-key:before {\n  content: \"\\f14c\";\n}\n.bd2-shade:before {\n  content: \"\\f14d\";\n}\n.bd2-shake:before {\n  content: \"\\f14e\";\n}\n.bd2-share:before {\n  content: \"\\f14f\";\n}\n.bd2-share-one:before {\n  content: \"\\f150\";\n}\n.bd2-share-sys:before {\n  content: \"\\f151\";\n}\n.bd2-share-three:before {\n  content: \"\\f152\";\n}\n.bd2-share-two:before {\n  content: \"\\f153\";\n}\n.bd2-shaver:before {\n  content: \"\\f154\";\n}\n.bd2-shaver-one:before {\n  content: \"\\f155\";\n}\n.bd2-shaving:before {\n  content: \"\\f156\";\n}\n.bd2-sheep-zodiac:before {\n  content: \"\\f157\";\n}\n.bd2-shield:before {\n  content: \"\\f158\";\n}\n.bd2-shield-add:before {\n  content: \"\\f159\";\n}\n.bd2-ship:before {\n  content: \"\\f15a\";\n}\n.bd2-shop:before {\n  content: \"\\f15b\";\n}\n.bd2-shopping:before {\n  content: \"\\f15c\";\n}\n.bd2-shopping-bag:before {\n  content: \"\\f15d\";\n}\n.bd2-shopping-bag-one:before {\n  content: \"\\f15e\";\n}\n.bd2-shopping-cart:before {\n  content: \"\\f15f\";\n}\n.bd2-shopping-cart-add:before {\n  content: \"\\f160\";\n}\n.bd2-shopping-cart-del:before {\n  content: \"\\f161\";\n}\n.bd2-shopping-cart-one:before {\n  content: \"\\f162\";\n}\n.bd2-shopping-cart-two:before {\n  content: \"\\f163\";\n}\n.bd2-shopping-mall:before {\n  content: \"\\f164\";\n}\n.bd2-shorts:before {\n  content: \"\\f165\";\n}\n.bd2-short-skirt:before {\n  content: \"\\f166\";\n}\n.bd2-shoulder-bag:before {\n  content: \"\\f167\";\n}\n.bd2-shovel:before {\n  content: \"\\f168\";\n}\n.bd2-shovel-one:before {\n  content: \"\\f169\";\n}\n.bd2-shower-head:before {\n  content: \"\\f16a\";\n}\n.bd2-shrimp:before {\n  content: \"\\f16b\";\n}\n.bd2-shuffle:before {\n  content: \"\\f16c\";\n}\n.bd2-shuffle-one:before {\n  content: \"\\f16d\";\n}\n.bd2-shutter-priority:before {\n  content: \"\\f16e\";\n}\n.bd2-sickbed:before {\n  content: \"\\f16f\";\n}\n.bd2-signal:before {\n  content: \"\\f170\";\n}\n.bd2-signal-one:before {\n  content: \"\\f171\";\n}\n.bd2-signal-strength:before {\n  content: \"\\f172\";\n}\n.bd2-signal-tower:before {\n  content: \"\\f173\";\n}\n.bd2-signal-tower-one:before {\n  content: \"\\f174\";\n}\n.bd2-sim:before {\n  content: \"\\f175\";\n}\n.bd2-sim-card:before {\n  content: \"\\f176\";\n}\n.bd2-single-bed:before {\n  content: \"\\f177\";\n}\n.bd2-sinusoid:before {\n  content: \"\\f178\";\n}\n.bd2-sippy-cup:before {\n  content: \"\\f179\";\n}\n.bd2-six:before {\n  content: \"\\f17a\";\n}\n.bd2-six-circular-connection:before {\n  content: \"\\f17b\";\n}\n.bd2-six-key:before {\n  content: \"\\f17c\";\n}\n.bd2-six-points:before {\n  content: \"\\f17d\";\n}\n.bd2-skate:before {\n  content: \"\\f17e\";\n}\n.bd2-skates:before {\n  content: \"\\f17f\";\n}\n.bd2-skating:before {\n  content: \"\\f180\";\n}\n.bd2-sketch:before {\n  content: \"\\f181\";\n}\n.bd2-skiing-nordic:before {\n  content: \"\\f182\";\n}\n.bd2-skull:before {\n  content: \"\\f183\";\n}\n.bd2-slave:before {\n  content: \"\\f184\";\n}\n.bd2-sleaves:before {\n  content: \"\\f185\";\n}\n.bd2-sleep:before {\n  content: \"\\f186\";\n}\n.bd2-sleep-one:before {\n  content: \"\\f187\";\n}\n.bd2-sleep-two:before {\n  content: \"\\f188\";\n}\n.bd2-slide:before {\n  content: \"\\f189\";\n}\n.bd2-slide-two:before {\n  content: \"\\f18a\";\n}\n.bd2-sliding-horizontal:before {\n  content: \"\\f18b\";\n}\n.bd2-sliding-vertical:before {\n  content: \"\\f18c\";\n}\n.bd2-slightly-frowning-face-whit-open-mouth:before {\n  content: \"\\f18d\";\n}\n.bd2-slightly-smiling-face:before {\n  content: \"\\f18e\";\n}\n.bd2-slippers:before {\n  content: \"\\f18f\";\n}\n.bd2-slippers-one:before {\n  content: \"\\f190\";\n}\n.bd2-sly-face-whit-smile:before {\n  content: \"\\f191\";\n}\n.bd2-smart-optimization:before {\n  content: \"\\f192\";\n}\n.bd2-smiling-face:before {\n  content: \"\\f193\";\n}\n.bd2-smiling-face-with-squinting-eyes:before {\n  content: \"\\f194\";\n}\n.bd2-snacks:before {\n  content: \"\\f195\";\n}\n.bd2-snake-zodiac:before {\n  content: \"\\f196\";\n}\n.bd2-snow:before {\n  content: \"\\f197\";\n}\n.bd2-snowflake:before {\n  content: \"\\f198\";\n}\n.bd2-snowman:before {\n  content: \"\\f199\";\n}\n.bd2-soap-bubble:before {\n  content: \"\\f19a\";\n}\n.bd2-soccer:before {\n  content: \"\\f19b\";\n}\n.bd2-soccer-one:before {\n  content: \"\\f19c\";\n}\n.bd2-socks:before {\n  content: \"\\f19d\";\n}\n.bd2-sofa:before {\n  content: \"\\f19e\";\n}\n.bd2-sofa-two:before {\n  content: \"\\f19f\";\n}\n.bd2-softball:before {\n  content: \"\\f1a0\";\n}\n.bd2-solar-energy:before {\n  content: \"\\f1a1\";\n}\n.bd2-solar-energy-one:before {\n  content: \"\\f1a2\";\n}\n.bd2-solid-state-disk:before {\n  content: \"\\f1a3\";\n}\n.bd2-sorcerer-hat:before {\n  content: \"\\f1a4\";\n}\n.bd2-sort:before {\n  content: \"\\f1a5\";\n}\n.bd2-sort-amount-down:before {\n  content: \"\\f1a6\";\n}\n.bd2-sort-amount-up:before {\n  content: \"\\f1a7\";\n}\n.bd2-sort-four:before {\n  content: \"\\f1a8\";\n}\n.bd2-sort-one:before {\n  content: \"\\f1a9\";\n}\n.bd2-sort-three:before {\n  content: \"\\f1aa\";\n}\n.bd2-sort-two:before {\n  content: \"\\f1ab\";\n}\n.bd2-sound:before {\n  content: \"\\f1ac\";\n}\n.bd2-sound-one:before {\n  content: \"\\f1ad\";\n}\n.bd2-sound-wave:before {\n  content: \"\\f1ae\";\n}\n.bd2-source-code:before {\n  content: \"\\f1af\";\n}\n.bd2-soybean-milk-maker:before {\n  content: \"\\f1b0\";\n}\n.bd2-spa-candle:before {\n  content: \"\\f1b1\";\n}\n.bd2-space-colony:before {\n  content: \"\\f1b2\";\n}\n.bd2-spanner:before {\n  content: \"\\f1b3\";\n}\n.bd2-speaker:before {\n  content: \"\\f1b4\";\n}\n.bd2-speaker-one:before {\n  content: \"\\f1b5\";\n}\n.bd2-speed:before {\n  content: \"\\f1b6\";\n}\n.bd2-speed-one:before {\n  content: \"\\f1b7\";\n}\n.bd2-sperm:before {\n  content: \"\\f1b8\";\n}\n.bd2-sphere:before {\n  content: \"\\f1b9\";\n}\n.bd2-spider-man:before {\n  content: \"\\f1ba\";\n}\n.bd2-spikedshoes:before {\n  content: \"\\f1bb\";\n}\n.bd2-spinning-top:before {\n  content: \"\\f1bc\";\n}\n.bd2-split:before {\n  content: \"\\f1bd\";\n}\n.bd2-split-branch:before {\n  content: \"\\f1be\";\n}\n.bd2-split-cells:before {\n  content: \"\\f1bf\";\n}\n.bd2-split-turn-down-left:before {\n  content: \"\\f1c0\";\n}\n.bd2-split-turn-down-right:before {\n  content: \"\\f1c1\";\n}\n.bd2-spoon:before {\n  content: \"\\f1c2\";\n}\n.bd2-sport:before {\n  content: \"\\f1c3\";\n}\n.bd2-sporting:before {\n  content: \"\\f1c4\";\n}\n.bd2-square:before {\n  content: \"\\f1c5\";\n}\n.bd2-square-small:before {\n  content: \"\\f1c6\";\n}\n.bd2-ssd:before {\n  content: \"\\f1c7\";\n}\n.bd2-stack-light:before {\n  content: \"\\f1c8\";\n}\n.bd2-stamp:before {\n  content: \"\\f1c9\";\n}\n.bd2-stand-up:before {\n  content: \"\\f1ca\";\n}\n.bd2-stapler:before {\n  content: \"\\f1cb\";\n}\n.bd2-star:before {\n  content: \"\\f1cc\";\n}\n.bd2-star-one:before {\n  content: \"\\f1cd\";\n}\n.bd2-start-time-sort:before {\n  content: \"\\f1ce\";\n}\n.bd2-steering-wheel:before {\n  content: \"\\f1cf\";\n}\n.bd2-steoller:before {\n  content: \"\\f1d0\";\n}\n.bd2-stereo-nesting:before {\n  content: \"\\f1d1\";\n}\n.bd2-stereo-one:before {\n  content: \"\\f1d2\";\n}\n.bd2-stereo-perspective:before {\n  content: \"\\f1d3\";\n}\n.bd2-stethoscope:before {\n  content: \"\\f1d4\";\n}\n.bd2-stickers:before {\n  content: \"\\f1d5\";\n}\n.bd2-stock-market:before {\n  content: \"\\f1d6\";\n}\n.bd2-stopwatch:before {\n  content: \"\\f1d7\";\n}\n.bd2-stopwatch-start:before {\n  content: \"\\f1d8\";\n}\n.bd2-storage-card-one:before {\n  content: \"\\f1d9\";\n}\n.bd2-storage-card-two:before {\n  content: \"\\f1da\";\n}\n.bd2-straight-razor:before {\n  content: \"\\f1db\";\n}\n.bd2-straw-hat:before {\n  content: \"\\f1dc\";\n}\n.bd2-stretching:before {\n  content: \"\\f1dd\";\n}\n.bd2-stretching-one:before {\n  content: \"\\f1de\";\n}\n.bd2-strikethrough:before {\n  content: \"\\f1df\";\n}\n.bd2-strongbox:before {\n  content: \"\\f1e0\";\n}\n.bd2-s-turn-down:before {\n  content: \"\\f1e1\";\n}\n.bd2-s-turn-left:before {\n  content: \"\\f1e2\";\n}\n.bd2-s-turn-right:before {\n  content: \"\\f1e3\";\n}\n.bd2-s-turn-up:before {\n  content: \"\\f1e4\";\n}\n.bd2-subtract-selection:before {\n  content: \"\\f1e5\";\n}\n.bd2-subtract-selection-one:before {\n  content: \"\\f1e6\";\n}\n.bd2-subway:before {\n  content: \"\\f1e7\";\n}\n.bd2-success:before {\n  content: \"\\f1e8\";\n}\n.bd2-success-picture:before {\n  content: \"\\f1e9\";\n}\n.bd2-sum:before {\n  content: \"\\f1ea\";\n}\n.bd2-sun:before {\n  content: \"\\f1eb\";\n}\n.bd2-sunbath:before {\n  content: \"\\f1ec\";\n}\n.bd2-sun-hat:before {\n  content: \"\\f1ed\";\n}\n.bd2-sunny:before {\n  content: \"\\f1ee\";\n}\n.bd2-sun-one:before {\n  content: \"\\f1ef\";\n}\n.bd2-sunrise:before {\n  content: \"\\f1f0\";\n}\n.bd2-sunset:before {\n  content: \"\\f1f1\";\n}\n.bd2-sunshade:before {\n  content: \"\\f1f2\";\n}\n.bd2-surprised-face-with-open-big-mouth:before {\n  content: \"\\f1f3\";\n}\n.bd2-surprised-face-with-open-mouth:before {\n  content: \"\\f1f4\";\n}\n.bd2-surveillance-cameras:before {\n  content: \"\\f1f5\";\n}\n.bd2-surveillance-cameras-one:before {\n  content: \"\\f1f6\";\n}\n.bd2-surveillance-cameras-two:before {\n  content: \"\\f1f7\";\n}\n.bd2-swallow:before {\n  content: \"\\f1f8\";\n}\n.bd2-sweater:before {\n  content: \"\\f1f9\";\n}\n.bd2-swimming-pool:before {\n  content: \"\\f1fa\";\n}\n.bd2-swimming-ring:before {\n  content: \"\\f1fb\";\n}\n.bd2-swimsuit:before {\n  content: \"\\f1fc\";\n}\n.bd2-swing:before {\n  content: \"\\f1fd\";\n}\n.bd2-swipe:before {\n  content: \"\\f1fe\";\n}\n.bd2-switch:before {\n  content: \"\\f1ff\";\n}\n.bd2-switch-button:before {\n  content: \"\\f200\";\n}\n.bd2-switch-contrast:before {\n  content: \"\\f201\";\n}\n.bd2-switching-done:before {\n  content: \"\\f202\";\n}\n.bd2-switch-nintendo:before {\n  content: \"\\f203\";\n}\n.bd2-switch-one:before {\n  content: \"\\f204\";\n}\n.bd2-switch-themes:before {\n  content: \"\\f205\";\n}\n.bd2-switch-track:before {\n  content: \"\\f206\";\n}\n.bd2-symbol:before {\n  content: \"\\f207\";\n}\n.bd2-symbol-double-x:before {\n  content: \"\\f208\";\n}\n.bd2-symmetry:before {\n  content: \"\\f209\";\n}\n.bd2-sync:before {\n  content: \"\\f20a\";\n}\n.bd2-system:before {\n  content: \"\\f20b\";\n}\n.bd2-table:before {\n  content: \"\\f20c\";\n}\n.bd2-table-file:before {\n  content: \"\\f20d\";\n}\n.bd2-table-lamp:before {\n  content: \"\\f20e\";\n}\n.bd2-table-report:before {\n  content: \"\\f20f\";\n}\n.bd2-tabletennis:before {\n  content: \"\\f210\";\n}\n.bd2-tag:before {\n  content: \"\\f211\";\n}\n.bd2-tag-one:before {\n  content: \"\\f212\";\n}\n.bd2-tailoring:before {\n  content: \"\\f213\";\n}\n.bd2-tailoring-two:before {\n  content: \"\\f214\";\n}\n.bd2-taj-mahal:before {\n  content: \"\\f215\";\n}\n.bd2-take-off:before {\n  content: \"\\f216\";\n}\n.bd2-take-off-one:before {\n  content: \"\\f217\";\n}\n.bd2-taobao:before {\n  content: \"\\f218\";\n}\n.bd2-tape:before {\n  content: \"\\f219\";\n}\n.bd2-tape-measure:before {\n  content: \"\\f21a\";\n}\n.bd2-target:before {\n  content: \"\\f21b\";\n}\n.bd2-target-one:before {\n  content: \"\\f21c\";\n}\n.bd2-target-two:before {\n  content: \"\\f21d\";\n}\n.bd2-taurus:before {\n  content: \"\\f21e\";\n}\n.bd2-taxi:before {\n  content: \"\\f21f\";\n}\n.bd2-tea:before {\n  content: \"\\f220\";\n}\n.bd2-tea-drink:before {\n  content: \"\\f221\";\n}\n.bd2-teapot:before {\n  content: \"\\f222\";\n}\n.bd2-teeth:before {\n  content: \"\\f223\";\n}\n.bd2-telegram:before {\n  content: \"\\f224\";\n}\n.bd2-telescope:before {\n  content: \"\\f225\";\n}\n.bd2-tencent-qq:before {\n  content: \"\\f226\";\n}\n.bd2-tennis:before {\n  content: \"\\f227\";\n}\n.bd2-tent:before {\n  content: \"\\f228\";\n}\n.bd2-tent-banner:before {\n  content: \"\\f229\";\n}\n.bd2-terminal:before {\n  content: \"\\f22a\";\n}\n.bd2-termination-file:before {\n  content: \"\\f22b\";\n}\n.bd2-terrace:before {\n  content: \"\\f22c\";\n}\n.bd2-test-tube:before {\n  content: \"\\f22d\";\n}\n.bd2-text:before {\n  content: \"\\f22e\";\n}\n.bd2-textarea:before {\n  content: \"\\f22f\";\n}\n.bd2-text-bold:before {\n  content: \"\\f230\";\n}\n.bd2-text-italic:before {\n  content: \"\\f231\";\n}\n.bd2-text-message:before {\n  content: \"\\f232\";\n}\n.bd2-text-recognition:before {\n  content: \"\\f233\";\n}\n.bd2-text-rotation-down:before {\n  content: \"\\f234\";\n}\n.bd2-text-rotation-left:before {\n  content: \"\\f235\";\n}\n.bd2-text-rotation-none:before {\n  content: \"\\f236\";\n}\n.bd2-text-rotation-up:before {\n  content: \"\\f237\";\n}\n.bd2-text-style:before {\n  content: \"\\f238\";\n}\n.bd2-text-style-one:before {\n  content: \"\\f239\";\n}\n.bd2-text-underline:before {\n  content: \"\\f23a\";\n}\n.bd2-texture:before {\n  content: \"\\f23b\";\n}\n.bd2-texture-two:before {\n  content: \"\\f23c\";\n}\n.bd2-text-wrap-overflow:before {\n  content: \"\\f23d\";\n}\n.bd2-text-wrap-truncation:before {\n  content: \"\\f23e\";\n}\n.bd2-theater:before {\n  content: \"\\f23f\";\n}\n.bd2-theme:before {\n  content: \"\\f240\";\n}\n.bd2-thermometer:before {\n  content: \"\\f241\";\n}\n.bd2-thermometer-one:before {\n  content: \"\\f242\";\n}\n.bd2-thermos-cup:before {\n  content: \"\\f243\";\n}\n.bd2-the-single-shoulder-bag:before {\n  content: \"\\f244\";\n}\n.bd2-thin:before {\n  content: \"\\f245\";\n}\n.bd2-thinking-problem:before {\n  content: \"\\f246\";\n}\n.bd2-three:before {\n  content: \"\\f247\";\n}\n.bd2-three-d-glasses:before {\n  content: \"\\f248\";\n}\n.bd2-three-hexagons:before {\n  content: \"\\f249\";\n}\n.bd2-three-key:before {\n  content: \"\\f24a\";\n}\n.bd2-three-slashes:before {\n  content: \"\\f24b\";\n}\n.bd2-three-three:before {\n  content: \"\\f24c\";\n}\n.bd2-three-triangles:before {\n  content: \"\\f24d\";\n}\n.bd2-thumbs-down:before {\n  content: \"\\f24e\";\n}\n.bd2-thumbs-up:before {\n  content: \"\\f24f\";\n}\n.bd2-thunderbolt:before {\n  content: \"\\f250\";\n}\n.bd2-thunderstorm:before {\n  content: \"\\f251\";\n}\n.bd2-thunderstorm-one:before {\n  content: \"\\f252\";\n}\n.bd2-ticket:before {\n  content: \"\\f253\";\n}\n.bd2-ticket-one:before {\n  content: \"\\f254\";\n}\n.bd2-tickets-checked:before {\n  content: \"\\f255\";\n}\n.bd2-tickets-one:before {\n  content: \"\\f256\";\n}\n.bd2-tickets-two:before {\n  content: \"\\f257\";\n}\n.bd2-tiger-zodiac:before {\n  content: \"\\f258\";\n}\n.bd2-tiktok:before {\n  content: \"\\f259\";\n}\n.bd2-time:before {\n  content: \"\\f25a\";\n}\n.bd2-timed-mail:before {\n  content: \"\\f25b\";\n}\n.bd2-timeline:before {\n  content: \"\\f25c\";\n}\n.bd2-timer:before {\n  content: \"\\f25d\";\n}\n.bd2-tips:before {\n  content: \"\\f25e\";\n}\n.bd2-tips-one:before {\n  content: \"\\f25f\";\n}\n.bd2-tire-swing:before {\n  content: \"\\f260\";\n}\n.bd2-title-level:before {\n  content: \"\\f261\";\n}\n.bd2-to-bottom:before {\n  content: \"\\f262\";\n}\n.bd2-to-bottom-one:before {\n  content: \"\\f263\";\n}\n.bd2-toilet:before {\n  content: \"\\f264\";\n}\n.bd2-to-left:before {\n  content: \"\\f265\";\n}\n.bd2-tomato:before {\n  content: \"\\f266\";\n}\n.bd2-tool:before {\n  content: \"\\f267\";\n}\n.bd2-toolkit:before {\n  content: \"\\f268\";\n}\n.bd2-top-bar:before {\n  content: \"\\f269\";\n}\n.bd2-topbuzz:before {\n  content: \"\\f26a\";\n}\n.bd2-topic:before {\n  content: \"\\f26b\";\n}\n.bd2-topic-discussion:before {\n  content: \"\\f26c\";\n}\n.bd2-torch:before {\n  content: \"\\f26d\";\n}\n.bd2-to-right:before {\n  content: \"\\f26e\";\n}\n.bd2-to-top:before {\n  content: \"\\f26f\";\n}\n.bd2-to-top-one:before {\n  content: \"\\f270\";\n}\n.bd2-tour-bus:before {\n  content: \"\\f271\";\n}\n.bd2-towel:before {\n  content: \"\\f272\";\n}\n.bd2-tower:before {\n  content: \"\\f273\";\n}\n.bd2-tower-of-babel:before {\n  content: \"\\f274\";\n}\n.bd2-tower-of-pisa:before {\n  content: \"\\f275\";\n}\n.bd2-toxins:before {\n  content: \"\\f276\";\n}\n.bd2-trace:before {\n  content: \"\\f277\";\n}\n.bd2-trademark:before {\n  content: \"\\f278\";\n}\n.bd2-traditional-chinese-medicine:before {\n  content: \"\\f279\";\n}\n.bd2-train:before {\n  content: \"\\f27a\";\n}\n.bd2-transaction:before {\n  content: \"\\f27b\";\n}\n.bd2-transaction-order:before {\n  content: \"\\f27c\";\n}\n.bd2-transfer:before {\n  content: \"\\f27d\";\n}\n.bd2-transfer-data:before {\n  content: \"\\f27e\";\n}\n.bd2-transform:before {\n  content: \"\\f27f\";\n}\n.bd2-translate:before {\n  content: \"\\f280\";\n}\n.bd2-translation:before {\n  content: \"\\f281\";\n}\n.bd2-transport:before {\n  content: \"\\f282\";\n}\n.bd2-transporter:before {\n  content: \"\\f283\";\n}\n.bd2-trapezoid:before {\n  content: \"\\f284\";\n}\n.bd2-tray:before {\n  content: \"\\f285\";\n}\n.bd2-treadmill:before {\n  content: \"\\f286\";\n}\n.bd2-treadmill-one:before {\n  content: \"\\f287\";\n}\n.bd2-treadmill-two:before {\n  content: \"\\f288\";\n}\n.bd2-treasure-chest:before {\n  content: \"\\f289\";\n}\n.bd2-tree:before {\n  content: \"\\f28a\";\n}\n.bd2-tree-diagram:before {\n  content: \"\\f28b\";\n}\n.bd2-tree-list:before {\n  content: \"\\f28c\";\n}\n.bd2-tree-one:before {\n  content: \"\\f28d\";\n}\n.bd2-tree-two:before {\n  content: \"\\f28e\";\n}\n.bd2-trend:before {\n  content: \"\\f28f\";\n}\n.bd2-trending-down:before {\n  content: \"\\f290\";\n}\n.bd2-trending-up:before {\n  content: \"\\f291\";\n}\n.bd2-trend-two:before {\n  content: \"\\f292\";\n}\n.bd2-triangle:before {\n  content: \"\\f293\";\n}\n.bd2-triangle-round-rectangle:before {\n  content: \"\\f294\";\n}\n.bd2-triangle-ruler:before {\n  content: \"\\f295\";\n}\n.bd2-triangular-pyramid:before {\n  content: \"\\f296\";\n}\n.bd2-trophy:before {\n  content: \"\\f297\";\n}\n.bd2-trousers-bell-bottoms:before {\n  content: \"\\f298\";\n}\n.bd2-truck:before {\n  content: \"\\f299\";\n}\n.bd2-trumpet:before {\n  content: \"\\f29a\";\n}\n.bd2-trunk:before {\n  content: \"\\f29b\";\n}\n.bd2-t-shirt:before {\n  content: \"\\f29c\";\n}\n.bd2-tub:before {\n  content: \"\\f29d\";\n}\n.bd2-tuchong:before {\n  content: \"\\f29e\";\n}\n.bd2-tumblr:before {\n  content: \"\\f29f\";\n}\n.bd2-turkey:before {\n  content: \"\\f2a0\";\n}\n.bd2-turn-around:before {\n  content: \"\\f2a1\";\n}\n.bd2-turn-off-bluetooth:before {\n  content: \"\\f2a2\";\n}\n.bd2-turn-on:before {\n  content: \"\\f2a3\";\n}\n.bd2-tv:before {\n  content: \"\\f2a4\";\n}\n.bd2-tv-one:before {\n  content: \"\\f2a5\";\n}\n.bd2-twitter:before {\n  content: \"\\f2a6\";\n}\n.bd2-two:before {\n  content: \"\\f2a7\";\n}\n.bd2-two-dimensional-code:before {\n  content: \"\\f2a8\";\n}\n.bd2-two-dimensional-code-one:before {\n  content: \"\\f2a9\";\n}\n.bd2-two-dimensional-code-two:before {\n  content: \"\\f2aa\";\n}\n.bd2-two-ellipses:before {\n  content: \"\\f2ab\";\n}\n.bd2-two-fingers:before {\n  content: \"\\f2ac\";\n}\n.bd2-two-hands:before {\n  content: \"\\f2ad\";\n}\n.bd2-two-key:before {\n  content: \"\\f2ae\";\n}\n.bd2-two-semicircles:before {\n  content: \"\\f2af\";\n}\n.bd2-two-triangles:before {\n  content: \"\\f2b0\";\n}\n.bd2-two-triangles-two:before {\n  content: \"\\f2b1\";\n}\n.bd2-two-two:before {\n  content: \"\\f2b2\";\n}\n.bd2-type-drive:before {\n  content: \"\\f2b3\";\n}\n.bd2-u-disk:before {\n  content: \"\\f2b4\";\n}\n.bd2-ulikecam:before {\n  content: \"\\f2b5\";\n}\n.bd2-umbrella:before {\n  content: \"\\f2b6\";\n}\n.bd2-umbrella-one:before {\n  content: \"\\f2b7\";\n}\n.bd2-umbrella-two:before {\n  content: \"\\f2b8\";\n}\n.bd2-undo:before {\n  content: \"\\f2b9\";\n}\n.bd2-ungroup:before {\n  content: \"\\f2ba\";\n}\n.bd2-unicast:before {\n  content: \"\\f2bb\";\n}\n.bd2-union-selection:before {\n  content: \"\\f2bc\";\n}\n.bd2-universal:before {\n  content: \"\\f2bd\";\n}\n.bd2-unlike:before {\n  content: \"\\f2be\";\n}\n.bd2-unlink:before {\n  content: \"\\f2bf\";\n}\n.bd2-unlock:before {\n  content: \"\\f2c0\";\n}\n.bd2-unlock-one:before {\n  content: \"\\f2c1\";\n}\n.bd2-unordered-list:before {\n  content: \"\\f2c2\";\n}\n.bd2-up:before {\n  content: \"\\f2c3\";\n}\n.bd2-up-and-down:before {\n  content: \"\\f2c4\";\n}\n.bd2-up-c:before {\n  content: \"\\f2c5\";\n}\n.bd2-update-rotation:before {\n  content: \"\\f2c6\";\n}\n.bd2-upload:before {\n  content: \"\\f2c7\";\n}\n.bd2-upload-computer:before {\n  content: \"\\f2c8\";\n}\n.bd2-upload-laptop:before {\n  content: \"\\f2c9\";\n}\n.bd2-upload-logs:before {\n  content: \"\\f2ca\";\n}\n.bd2-upload-one:before {\n  content: \"\\f2cb\";\n}\n.bd2-upload-picture:before {\n  content: \"\\f2cc\";\n}\n.bd2-upload-three:before {\n  content: \"\\f2cd\";\n}\n.bd2-upload-two:before {\n  content: \"\\f2ce\";\n}\n.bd2-upload-web:before {\n  content: \"\\f2cf\";\n}\n.bd2-up-one:before {\n  content: \"\\f2d0\";\n}\n.bd2-upside-down-face:before {\n  content: \"\\f2d1\";\n}\n.bd2-up-small:before {\n  content: \"\\f2d2\";\n}\n.bd2-up-square:before {\n  content: \"\\f2d3\";\n}\n.bd2-up-two:before {\n  content: \"\\f2d4\";\n}\n.bd2-usb:before {\n  content: \"\\f2d5\";\n}\n.bd2-usb-memory-stick:before {\n  content: \"\\f2d6\";\n}\n.bd2-usb-micro-one:before {\n  content: \"\\f2d7\";\n}\n.bd2-usb-micro-two:before {\n  content: \"\\f2d8\";\n}\n.bd2-usb-one:before {\n  content: \"\\f2d9\";\n}\n.bd2-usb-type-c:before {\n  content: \"\\f2da\";\n}\n.bd2-user:before {\n  content: \"\\f2db\";\n}\n.bd2-user-business:before {\n  content: \"\\f2dc\";\n}\n.bd2-user-positioning:before {\n  content: \"\\f2dd\";\n}\n.bd2-user-to-user-transmission:before {\n  content: \"\\f2de\";\n}\n.bd2-uterus:before {\n  content: \"\\f2df\";\n}\n.bd2-u-turn-down:before {\n  content: \"\\f2e0\";\n}\n.bd2-u-turn-left:before {\n  content: \"\\f2e1\";\n}\n.bd2-u-turn-right:before {\n  content: \"\\f2e2\";\n}\n.bd2-u-turn-up:before {\n  content: \"\\f2e3\";\n}\n.bd2-vacation:before {\n  content: \"\\f2e4\";\n}\n.bd2-vacuum-cleaner:before {\n  content: \"\\f2e5\";\n}\n.bd2-vegetable-basket:before {\n  content: \"\\f2e6\";\n}\n.bd2-vegetables:before {\n  content: \"\\f2e7\";\n}\n.bd2-vertically-centered:before {\n  content: \"\\f2e8\";\n}\n.bd2-vertical-spacing-between-items:before {\n  content: \"\\f2e9\";\n}\n.bd2-vertical-tidy-up:before {\n  content: \"\\f2ea\";\n}\n.bd2-vertical-timeline:before {\n  content: \"\\f2eb\";\n}\n.bd2-vest:before {\n  content: \"\\f2ec\";\n}\n.bd2-vial:before {\n  content: \"\\f2ed\";\n}\n.bd2-vicia-faba:before {\n  content: \"\\f2ee\";\n}\n.bd2-video:before {\n  content: \"\\f2ef\";\n}\n.bd2-videocamera:before {\n  content: \"\\f2f0\";\n}\n.bd2-videocamera-one:before {\n  content: \"\\f2f1\";\n}\n.bd2-video-conference:before {\n  content: \"\\f2f2\";\n}\n.bd2-video-file:before {\n  content: \"\\f2f3\";\n}\n.bd2-video-one:before {\n  content: \"\\f2f4\";\n}\n.bd2-video-two:before {\n  content: \"\\f2f5\";\n}\n.bd2-viencharts:before {\n  content: \"\\f2f6\";\n}\n.bd2-viewfinder:before {\n  content: \"\\f2f7\";\n}\n.bd2-view-grid-card:before {\n  content: \"\\f2f8\";\n}\n.bd2-view-grid-detail:before {\n  content: \"\\f2f9\";\n}\n.bd2-view-grid-list:before {\n  content: \"\\f2fa\";\n}\n.bd2-view-list:before {\n  content: \"\\f2fb\";\n}\n.bd2-vigo:before {\n  content: \"\\f2fc\";\n}\n.bd2-vip:before {\n  content: \"\\f2fd\";\n}\n.bd2-vip-one:before {\n  content: \"\\f2fe\";\n}\n.bd2-virgo:before {\n  content: \"\\f2ff\";\n}\n.bd2-virtual-reality-glasses:before {\n  content: \"\\f300\";\n}\n.bd2-voice:before {\n  content: \"\\f301\";\n}\n.bd2-voice-input:before {\n  content: \"\\f302\";\n}\n.bd2-voicemail:before {\n  content: \"\\f303\";\n}\n.bd2-voice-message:before {\n  content: \"\\f304\";\n}\n.bd2-voice-off:before {\n  content: \"\\f305\";\n}\n.bd2-voice-one:before {\n  content: \"\\f306\";\n}\n.bd2-volkswagen:before {\n  content: \"\\f307\";\n}\n.bd2-volleyball:before {\n  content: \"\\f308\";\n}\n.bd2-volume-down:before {\n  content: \"\\f309\";\n}\n.bd2-volume-mute:before {\n  content: \"\\f30a\";\n}\n.bd2-volume-notice:before {\n  content: \"\\f30b\";\n}\n.bd2-volume-small:before {\n  content: \"\\f30c\";\n}\n.bd2-volume-up:before {\n  content: \"\\f30d\";\n}\n.bd2-vr-glasses:before {\n  content: \"\\f30e\";\n}\n.bd2-waistline:before {\n  content: \"\\f30f\";\n}\n.bd2-wallet:before {\n  content: \"\\f310\";\n}\n.bd2-wallet-one:before {\n  content: \"\\f311\";\n}\n.bd2-wallet-three:before {\n  content: \"\\f312\";\n}\n.bd2-wallet-two:before {\n  content: \"\\f313\";\n}\n.bd2-warehousing:before {\n  content: \"\\f314\";\n}\n.bd2-washing-machine:before {\n  content: \"\\f315\";\n}\n.bd2-washing-machine-one:before {\n  content: \"\\f316\";\n}\n.bd2-watch:before {\n  content: \"\\f317\";\n}\n.bd2-watch-one:before {\n  content: \"\\f318\";\n}\n.bd2-water:before {\n  content: \"\\f319\";\n}\n.bd2-waterfalls-h:before {\n  content: \"\\f31a\";\n}\n.bd2-waterfalls-v:before {\n  content: \"\\f31b\";\n}\n.bd2-water-level:before {\n  content: \"\\f31c\";\n}\n.bd2-watermelon:before {\n  content: \"\\f31d\";\n}\n.bd2-watermelon-one:before {\n  content: \"\\f31e\";\n}\n.bd2-water-no:before {\n  content: \"\\f31f\";\n}\n.bd2-waterpolo:before {\n  content: \"\\f320\";\n}\n.bd2-waterpolo-one:before {\n  content: \"\\f321\";\n}\n.bd2-water-rate:before {\n  content: \"\\f322\";\n}\n.bd2-water-rate-two:before {\n  content: \"\\f323\";\n}\n.bd2-waves:before {\n  content: \"\\f324\";\n}\n.bd2-waves-left:before {\n  content: \"\\f325\";\n}\n.bd2-waves-right:before {\n  content: \"\\f326\";\n}\n.bd2-weary-face:before {\n  content: \"\\f327\";\n}\n.bd2-webcam:before {\n  content: \"\\f328\";\n}\n.bd2-web-page:before {\n  content: \"\\f329\";\n}\n.bd2-wechat:before {\n  content: \"\\f32a\";\n}\n.bd2-weibo:before {\n  content: \"\\f32b\";\n}\n.bd2-weight:before {\n  content: \"\\f32c\";\n}\n.bd2-weightlifting:before {\n  content: \"\\f32d\";\n}\n.bd2-weixin-cards-offers:before {\n  content: \"\\f32e\";\n}\n.bd2-weixin-favorites:before {\n  content: \"\\f32f\";\n}\n.bd2-weixin-games:before {\n  content: \"\\f330\";\n}\n.bd2-weixin-market:before {\n  content: \"\\f331\";\n}\n.bd2-weixin-mini-app:before {\n  content: \"\\f332\";\n}\n.bd2-weixin-people-nearby:before {\n  content: \"\\f333\";\n}\n.bd2-weixin-scan:before {\n  content: \"\\f334\";\n}\n.bd2-weixin-search:before {\n  content: \"\\f335\";\n}\n.bd2-weixin-shake:before {\n  content: \"\\f336\";\n}\n.bd2-weixin-top-stories:before {\n  content: \"\\f337\";\n}\n.bd2-whale:before {\n  content: \"\\f338\";\n}\n.bd2-wheelchair:before {\n  content: \"\\f339\";\n}\n.bd2-whirlwind:before {\n  content: \"\\f33a\";\n}\n.bd2-whistling:before {\n  content: \"\\f33b\";\n}\n.bd2-whole-site-accelerator:before {\n  content: \"\\f33c\";\n}\n.bd2-wifi:before {\n  content: \"\\f33d\";\n}\n.bd2-wind:before {\n  content: \"\\f33e\";\n}\n.bd2-windmill:before {\n  content: \"\\f33f\";\n}\n.bd2-windmill-one:before {\n  content: \"\\f340\";\n}\n.bd2-windmill-two:before {\n  content: \"\\f341\";\n}\n.bd2-windows:before {\n  content: \"\\f342\";\n}\n.bd2-wind-turbine:before {\n  content: \"\\f343\";\n}\n.bd2-wingsuit-flying:before {\n  content: \"\\f344\";\n}\n.bd2-winking-face:before {\n  content: \"\\f345\";\n}\n.bd2-winking-face-with-open-eyes:before {\n  content: \"\\f346\";\n}\n.bd2-woman:before {\n  content: \"\\f347\";\n}\n.bd2-women:before {\n  content: \"\\f348\";\n}\n.bd2-women-coat:before {\n  content: \"\\f349\";\n}\n.bd2-woolen-hat:before {\n  content: \"\\f34a\";\n}\n.bd2-word:before {\n  content: \"\\f34b\";\n}\n.bd2-workbench:before {\n  content: \"\\f34c\";\n}\n.bd2-worker:before {\n  content: \"\\f34d\";\n}\n.bd2-world:before {\n  content: \"\\f34e\";\n}\n.bd2-worried-face:before {\n  content: \"\\f34f\";\n}\n.bd2-write:before {\n  content: \"\\f350\";\n}\n.bd2-writing-fluently:before {\n  content: \"\\f351\";\n}\n.bd2-wrong-user:before {\n  content: \"\\f352\";\n}\n.bd2-xiaodu:before {\n  content: \"\\f353\";\n}\n.bd2-xiaodu-home:before {\n  content: \"\\f354\";\n}\n.bd2-xigua:before {\n  content: \"\\f355\";\n}\n.bd2-xingfuli:before {\n  content: \"\\f356\";\n}\n.bd2-xingtu:before {\n  content: \"\\f357\";\n}\n.bd2-yep:before {\n  content: \"\\f358\";\n}\n.bd2-youtobe:before {\n  content: \"\\f359\";\n}\n.bd2-youtube:before {\n  content: \"\\f35a\";\n}\n.bd2-zero-key:before {\n  content: \"\\f35b\";\n}\n.bd2-zijinyunying:before {\n  content: \"\\f35c\";\n}\n.bd2-zip:before {\n  content: \"\\f35d\";\n}\n.bd2-zoom:before {\n  content: \"\\f35e\";\n}\n.bd2-zoom-in:before {\n  content: \"\\f35f\";\n}\n.bd2-zoom-internal:before {\n  content: \"\\f360\";\n}\n.bd2-zoom-out:before {\n  content: \"\\f361\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-bytedance-pack/src/main/resources/META-INF/resources/bytedance/1.3.0/css/bytedance-iconpack-thin.css",
    "content": "/*!\n * Bytedance IconPark v1.3.0\n * @link https://iconpark.oceanengine.com/official\n * License - https://github.com/bytedance/IconPark/blob/master/LICENSE (Apache License 2.0)\n */\n@font-face {\n  font-family: 'Bytedance-IconPack-Thin';\n  src:  url('../fonts/Bytedance-IconPack-Thin.eot?cryhon');\n  src:  url('../fonts/Bytedance-IconPack-Thin.eot?cryhon#iefix') format('embedded-opentype'),\n    url('../fonts/Bytedance-IconPack-Thin.ttf?cryhon') format('truetype'),\n    url('../fonts/Bytedance-IconPack-Thin.woff?cryhon') format('woff'),\n    url('../fonts/Bytedance-IconPack-Thin.svg?cryhon#Bytedance-IconPack-Thin') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"bd1\"], [class*=\" bd1\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Bytedance-IconPack-Thin' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.bd1-abdominal:before {\n  content: \"\\e900\";\n}\n.bd1-abnormal:before {\n  content: \"\\e901\";\n}\n.bd1-a-cane:before {\n  content: \"\\e902\";\n}\n.bd1-acceleration:before {\n  content: \"\\e903\";\n}\n.bd1-accept-email:before {\n  content: \"\\e904\";\n}\n.bd1-acoustic:before {\n  content: \"\\e905\";\n}\n.bd1-activity-source:before {\n  content: \"\\e906\";\n}\n.bd1-ad:before {\n  content: \"\\e907\";\n}\n.bd1-add:before {\n  content: \"\\e908\";\n}\n.bd1-add-computer:before {\n  content: \"\\e909\";\n}\n.bd1-add-four:before {\n  content: \"\\e90a\";\n}\n.bd1-add-item:before {\n  content: \"\\e90b\";\n}\n.bd1-add-mode:before {\n  content: \"\\e90c\";\n}\n.bd1-add-music:before {\n  content: \"\\e90d\";\n}\n.bd1-add-one:before {\n  content: \"\\e90e\";\n}\n.bd1-add-pic:before {\n  content: \"\\e90f\";\n}\n.bd1-add-picture:before {\n  content: \"\\e910\";\n}\n.bd1-add-print:before {\n  content: \"\\e911\";\n}\n.bd1-address-book:before {\n  content: \"\\e912\";\n}\n.bd1-add-subset:before {\n  content: \"\\e913\";\n}\n.bd1-add-subtract:before {\n  content: \"\\e914\";\n}\n.bd1-add-text:before {\n  content: \"\\e915\";\n}\n.bd1-add-text-two:before {\n  content: \"\\e916\";\n}\n.bd1-add-three:before {\n  content: \"\\e917\";\n}\n.bd1-add-two:before {\n  content: \"\\e918\";\n}\n.bd1-add-user:before {\n  content: \"\\e919\";\n}\n.bd1-add-web:before {\n  content: \"\\e91a\";\n}\n.bd1-adjacent-item:before {\n  content: \"\\e91b\";\n}\n.bd1-adjustment:before {\n  content: \"\\e91c\";\n}\n.bd1-adobe-illustrate:before {\n  content: \"\\e91d\";\n}\n.bd1-adobe-indesign:before {\n  content: \"\\e91e\";\n}\n.bd1-adobe-lightroom:before {\n  content: \"\\e91f\";\n}\n.bd1-adobe-photoshop:before {\n  content: \"\\e920\";\n}\n.bd1-ad-product:before {\n  content: \"\\e921\";\n}\n.bd1-afferent:before {\n  content: \"\\e922\";\n}\n.bd1-afferent-four:before {\n  content: \"\\e923\";\n}\n.bd1-afferent-three:before {\n  content: \"\\e924\";\n}\n.bd1-afferent-two:before {\n  content: \"\\e925\";\n}\n.bd1-afro-pick:before {\n  content: \"\\e926\";\n}\n.bd1-agreement:before {\n  content: \"\\e927\";\n}\n.bd1-aiming:before {\n  content: \"\\e928\";\n}\n.bd1-air-bike:before {\n  content: \"\\e929\";\n}\n.bd1-air-conditioning:before {\n  content: \"\\e92a\";\n}\n.bd1-airplane:before {\n  content: \"\\e92b\";\n}\n.bd1-airplane-window:before {\n  content: \"\\e92c\";\n}\n.bd1-airplane-window-one:before {\n  content: \"\\e92d\";\n}\n.bd1-airplay:before {\n  content: \"\\e92e\";\n}\n.bd1-airpods:before {\n  content: \"\\e92f\";\n}\n.bd1-alarm:before {\n  content: \"\\e930\";\n}\n.bd1-alarm-clock:before {\n  content: \"\\e931\";\n}\n.bd1-align-bottom:before {\n  content: \"\\e932\";\n}\n.bd1-align-bottom-two:before {\n  content: \"\\e933\";\n}\n.bd1-align-horizontal-center-two:before {\n  content: \"\\e934\";\n}\n.bd1-align-horizontally:before {\n  content: \"\\e935\";\n}\n.bd1-align-left:before {\n  content: \"\\e936\";\n}\n.bd1-align-left-one:before {\n  content: \"\\e937\";\n}\n.bd1-align-left-two:before {\n  content: \"\\e938\";\n}\n.bd1-alignment-bottom-center:before {\n  content: \"\\e939\";\n}\n.bd1-alignment-bottom-left:before {\n  content: \"\\e93a\";\n}\n.bd1-alignment-bottom-right:before {\n  content: \"\\e93b\";\n}\n.bd1-alignment-horizontal-bottom:before {\n  content: \"\\e93c\";\n}\n.bd1-alignment-horizontal-center:before {\n  content: \"\\e93d\";\n}\n.bd1-alignment-horizontal-top:before {\n  content: \"\\e93e\";\n}\n.bd1-alignment-left-bottom:before {\n  content: \"\\e93f\";\n}\n.bd1-alignment-left-center:before {\n  content: \"\\e940\";\n}\n.bd1-alignment-left-top:before {\n  content: \"\\e941\";\n}\n.bd1-alignment-right-bottom:before {\n  content: \"\\e942\";\n}\n.bd1-alignment-right-center:before {\n  content: \"\\e943\";\n}\n.bd1-alignment-right-top:before {\n  content: \"\\e944\";\n}\n.bd1-alignment-top-center:before {\n  content: \"\\e945\";\n}\n.bd1-alignment-top-left:before {\n  content: \"\\e946\";\n}\n.bd1-alignment-top-right:before {\n  content: \"\\e947\";\n}\n.bd1-alignment-vertical-center:before {\n  content: \"\\e948\";\n}\n.bd1-alignment-vertical-left:before {\n  content: \"\\e949\";\n}\n.bd1-alignment-vertical-right:before {\n  content: \"\\e94a\";\n}\n.bd1-align-right:before {\n  content: \"\\e94b\";\n}\n.bd1-align-right-one:before {\n  content: \"\\e94c\";\n}\n.bd1-align-right-two:before {\n  content: \"\\e94d\";\n}\n.bd1-align-text-both:before {\n  content: \"\\e94e\";\n}\n.bd1-align-text-both-one:before {\n  content: \"\\e94f\";\n}\n.bd1-align-text-bottom:before {\n  content: \"\\e950\";\n}\n.bd1-align-text-bottom-one:before {\n  content: \"\\e951\";\n}\n.bd1-align-text-center:before {\n  content: \"\\e952\";\n}\n.bd1-align-text-center-one:before {\n  content: \"\\e953\";\n}\n.bd1-align-text-left:before {\n  content: \"\\e954\";\n}\n.bd1-align-text-left-one:before {\n  content: \"\\e955\";\n}\n.bd1-align-text-middle:before {\n  content: \"\\e956\";\n}\n.bd1-align-text-middle-one:before {\n  content: \"\\e957\";\n}\n.bd1-align-text-right:before {\n  content: \"\\e958\";\n}\n.bd1-align-text-right-one:before {\n  content: \"\\e959\";\n}\n.bd1-align-text-top:before {\n  content: \"\\e95a\";\n}\n.bd1-align-text-top-one:before {\n  content: \"\\e95b\";\n}\n.bd1-align-top:before {\n  content: \"\\e95c\";\n}\n.bd1-align-top-two:before {\n  content: \"\\e95d\";\n}\n.bd1-align-vertical-center-two:before {\n  content: \"\\e95e\";\n}\n.bd1-align-vertically:before {\n  content: \"\\e95f\";\n}\n.bd1-alipay:before {\n  content: \"\\e960\";\n}\n.bd1-all-application:before {\n  content: \"\\e961\";\n}\n.bd1-alphabetical-sorting:before {\n  content: \"\\e962\";\n}\n.bd1-alphabetical-sorting-two:before {\n  content: \"\\e963\";\n}\n.bd1-ambulance:before {\n  content: \"\\e964\";\n}\n.bd1-analysis:before {\n  content: \"\\e965\";\n}\n.bd1-anchor:before {\n  content: \"\\e966\";\n}\n.bd1-anchor-one:before {\n  content: \"\\e967\";\n}\n.bd1-anchor-round:before {\n  content: \"\\e968\";\n}\n.bd1-anchor-squre:before {\n  content: \"\\e969\";\n}\n.bd1-anchor-two:before {\n  content: \"\\e96a\";\n}\n.bd1-android:before {\n  content: \"\\e96b\";\n}\n.bd1-angry-face:before {\n  content: \"\\e96c\";\n}\n.bd1-anguished-face:before {\n  content: \"\\e96d\";\n}\n.bd1-announcement:before {\n  content: \"\\e96e\";\n}\n.bd1-anti-corrosion:before {\n  content: \"\\e96f\";\n}\n.bd1-aperture-priority:before {\n  content: \"\\e970\";\n}\n.bd1-api:before {\n  content: \"\\e971\";\n}\n.bd1-api-app:before {\n  content: \"\\e972\";\n}\n.bd1-apple:before {\n  content: \"\\e973\";\n}\n.bd1-apple-one:before {\n  content: \"\\e974\";\n}\n.bd1-applet-closed:before {\n  content: \"\\e975\";\n}\n.bd1-application:before {\n  content: \"\\e976\";\n}\n.bd1-application-effect:before {\n  content: \"\\e977\";\n}\n.bd1-application-menu:before {\n  content: \"\\e978\";\n}\n.bd1-application-one:before {\n  content: \"\\e979\";\n}\n.bd1-application-two:before {\n  content: \"\\e97a\";\n}\n.bd1-appointment:before {\n  content: \"\\e97b\";\n}\n.bd1-app-store:before {\n  content: \"\\e97c\";\n}\n.bd1-app-switch:before {\n  content: \"\\e97d\";\n}\n.bd1-aquarius:before {\n  content: \"\\e97e\";\n}\n.bd1-arc-de-triomphe:before {\n  content: \"\\e97f\";\n}\n.bd1-archers-bow:before {\n  content: \"\\e980\";\n}\n.bd1-archery:before {\n  content: \"\\e981\";\n}\n.bd1-area-map:before {\n  content: \"\\e982\";\n}\n.bd1-arena:before {\n  content: \"\\e983\";\n}\n.bd1-aries:before {\n  content: \"\\e984\";\n}\n.bd1-arithmetic:before {\n  content: \"\\e985\";\n}\n.bd1-arithmetic-buttons:before {\n  content: \"\\e986\";\n}\n.bd1-arithmetic-one:before {\n  content: \"\\e987\";\n}\n.bd1-arrow-circle-down:before {\n  content: \"\\e988\";\n}\n.bd1-arrow-circle-left:before {\n  content: \"\\e989\";\n}\n.bd1-arrow-circle-right:before {\n  content: \"\\e98a\";\n}\n.bd1-arrow-circle-up:before {\n  content: \"\\e98b\";\n}\n.bd1-arrow-down:before {\n  content: \"\\e98c\";\n}\n.bd1-arrow-keys:before {\n  content: \"\\e98d\";\n}\n.bd1-arrow-left:before {\n  content: \"\\e98e\";\n}\n.bd1-arrow-left-down:before {\n  content: \"\\e98f\";\n}\n.bd1-arrow-left-up:before {\n  content: \"\\e990\";\n}\n.bd1-arrow-right:before {\n  content: \"\\e991\";\n}\n.bd1-arrow-right-down:before {\n  content: \"\\e992\";\n}\n.bd1-arrow-right-up:before {\n  content: \"\\e993\";\n}\n.bd1-arrow-up:before {\n  content: \"\\e994\";\n}\n.bd1-assembly-line:before {\n  content: \"\\e995\";\n}\n.bd1-association:before {\n  content: \"\\e996\";\n}\n.bd1-asterisk:before {\n  content: \"\\e997\";\n}\n.bd1-asterisk-key:before {\n  content: \"\\e998\";\n}\n.bd1-astonished-face:before {\n  content: \"\\e999\";\n}\n.bd1-at-sign:before {\n  content: \"\\e99a\";\n}\n.bd1-attention:before {\n  content: \"\\e99b\";\n}\n.bd1-audio-file:before {\n  content: \"\\e99c\";\n}\n.bd1-audit:before {\n  content: \"\\e99d\";\n}\n.bd1-auto-focus:before {\n  content: \"\\e99e\";\n}\n.bd1-auto-height-one:before {\n  content: \"\\e99f\";\n}\n.bd1-auto-line-height:before {\n  content: \"\\e9a0\";\n}\n.bd1-auto-line-width:before {\n  content: \"\\e9a1\";\n}\n.bd1-auto-width:before {\n  content: \"\\e9a2\";\n}\n.bd1-auto-width-one:before {\n  content: \"\\e9a3\";\n}\n.bd1-avatar:before {\n  content: \"\\e9a4\";\n}\n.bd1-average:before {\n  content: \"\\e9a5\";\n}\n.bd1-aviation:before {\n  content: \"\\e9a6\";\n}\n.bd1-avocado:before {\n  content: \"\\e9a7\";\n}\n.bd1-avocado-one:before {\n  content: \"\\e9a8\";\n}\n.bd1-baby:before {\n  content: \"\\e9a9\";\n}\n.bd1-baby-app:before {\n  content: \"\\e9aa\";\n}\n.bd1-baby-bottle:before {\n  content: \"\\e9ab\";\n}\n.bd1-baby-car-seat:before {\n  content: \"\\e9ac\";\n}\n.bd1-baby-feet:before {\n  content: \"\\e9ad\";\n}\n.bd1-baby-meal:before {\n  content: \"\\e9ae\";\n}\n.bd1-baby-mobile:before {\n  content: \"\\e9af\";\n}\n.bd1-baby-one:before {\n  content: \"\\e9b0\";\n}\n.bd1-baby-pants:before {\n  content: \"\\e9b1\";\n}\n.bd1-baby-sling:before {\n  content: \"\\e9b2\";\n}\n.bd1-baby-taste:before {\n  content: \"\\e9b3\";\n}\n.bd1-bachelor-cap:before {\n  content: \"\\e9b4\";\n}\n.bd1-bachelor-cap-one:before {\n  content: \"\\e9b5\";\n}\n.bd1-bachelor-cap-two:before {\n  content: \"\\e9b6\";\n}\n.bd1-back:before {\n  content: \"\\e9b7\";\n}\n.bd1-background-color:before {\n  content: \"\\e9b8\";\n}\n.bd1-back-one:before {\n  content: \"\\e9b9\";\n}\n.bd1-backpack:before {\n  content: \"\\e9ba\";\n}\n.bd1-bad:before {\n  content: \"\\e9bb\";\n}\n.bd1-badge:before {\n  content: \"\\e9bc\";\n}\n.bd1-badge-two:before {\n  content: \"\\e9bd\";\n}\n.bd1-badminton:before {\n  content: \"\\e9be\";\n}\n.bd1-bad-one:before {\n  content: \"\\e9bf\";\n}\n.bd1-bad-two:before {\n  content: \"\\e9c0\";\n}\n.bd1-baggage-delay:before {\n  content: \"\\e9c1\";\n}\n.bd1-balance:before {\n  content: \"\\e9c2\";\n}\n.bd1-balance-one:before {\n  content: \"\\e9c3\";\n}\n.bd1-balance-two:before {\n  content: \"\\e9c4\";\n}\n.bd1-banana:before {\n  content: \"\\e9c5\";\n}\n.bd1-bank:before {\n  content: \"\\e9c6\";\n}\n.bd1-bank-card:before {\n  content: \"\\e9c7\";\n}\n.bd1-bank-card-one:before {\n  content: \"\\e9c8\";\n}\n.bd1-bank-card-two:before {\n  content: \"\\e9c9\";\n}\n.bd1-bank-transfer:before {\n  content: \"\\e9ca\";\n}\n.bd1-baokemeng:before {\n  content: \"\\e9cb\";\n}\n.bd1-barbecue:before {\n  content: \"\\e9cc\";\n}\n.bd1-barber-brush:before {\n  content: \"\\e9cd\";\n}\n.bd1-barber-clippers:before {\n  content: \"\\e9ce\";\n}\n.bd1-bar-code:before {\n  content: \"\\e9cf\";\n}\n.bd1-baseball:before {\n  content: \"\\e9d0\";\n}\n.bd1-baseball-bat:before {\n  content: \"\\e9d1\";\n}\n.bd1-baseball-cap:before {\n  content: \"\\e9d2\";\n}\n.bd1-basketball:before {\n  content: \"\\e9d3\";\n}\n.bd1-basketball-clothes:before {\n  content: \"\\e9d4\";\n}\n.bd1-basketball-one:before {\n  content: \"\\e9d5\";\n}\n.bd1-basketball-stand:before {\n  content: \"\\e9d6\";\n}\n.bd1-bat:before {\n  content: \"\\e9d7\";\n}\n.bd1-battery-charge:before {\n  content: \"\\e9d8\";\n}\n.bd1-battery-empty:before {\n  content: \"\\e9d9\";\n}\n.bd1-battery-failure:before {\n  content: \"\\e9da\";\n}\n.bd1-battery-full:before {\n  content: \"\\e9db\";\n}\n.bd1-battery-storage:before {\n  content: \"\\e9dc\";\n}\n.bd1-battery-tips:before {\n  content: \"\\e9dd\";\n}\n.bd1-battery-working:before {\n  content: \"\\e9de\";\n}\n.bd1-battery-working-one:before {\n  content: \"\\e9df\";\n}\n.bd1-beach-umbrella:before {\n  content: \"\\e9e0\";\n}\n.bd1-bear:before {\n  content: \"\\e9e1\";\n}\n.bd1-beauty:before {\n  content: \"\\e9e2\";\n}\n.bd1-beauty-instrument:before {\n  content: \"\\e9e3\";\n}\n.bd1-bedside:before {\n  content: \"\\e9e4\";\n}\n.bd1-bedside-two:before {\n  content: \"\\e9e5\";\n}\n.bd1-bee:before {\n  content: \"\\e9e6\";\n}\n.bd1-beer:before {\n  content: \"\\e9e7\";\n}\n.bd1-beer-mug:before {\n  content: \"\\e9e8\";\n}\n.bd1-behance:before {\n  content: \"\\e9e9\";\n}\n.bd1-bell-ring:before {\n  content: \"\\e9ea\";\n}\n.bd1-belt:before {\n  content: \"\\e9eb\";\n}\n.bd1-benz:before {\n  content: \"\\e9ec\";\n}\n.bd1-bezier-curve:before {\n  content: \"\\e9ed\";\n}\n.bd1-bib:before {\n  content: \"\\e9ee\";\n}\n.bd1-big-clock:before {\n  content: \"\\e9ef\";\n}\n.bd1-big-x:before {\n  content: \"\\e9f0\";\n}\n.bd1-bike:before {\n  content: \"\\e9f1\";\n}\n.bd1-bill:before {\n  content: \"\\e9f2\";\n}\n.bd1-bird:before {\n  content: \"\\e9f3\";\n}\n.bd1-birthday-cake:before {\n  content: \"\\e9f4\";\n}\n.bd1-bitcoin:before {\n  content: \"\\e9f5\";\n}\n.bd1-blackboard:before {\n  content: \"\\e9f6\";\n}\n.bd1-black-eight:before {\n  content: \"\\e9f7\";\n}\n.bd1-blade:before {\n  content: \"\\e9f8\";\n}\n.bd1-bless:before {\n  content: \"\\e9f9\";\n}\n.bd1-block:before {\n  content: \"\\e9fa\";\n}\n.bd1-blockchain:before {\n  content: \"\\e9fb\";\n}\n.bd1-block-eight:before {\n  content: \"\\e9fc\";\n}\n.bd1-block-five:before {\n  content: \"\\e9fd\";\n}\n.bd1-block-four:before {\n  content: \"\\e9fe\";\n}\n.bd1-block-nine:before {\n  content: \"\\e9ff\";\n}\n.bd1-block-one:before {\n  content: \"\\ea00\";\n}\n.bd1-blocks-and-arrows:before {\n  content: \"\\ea01\";\n}\n.bd1-block-seven:before {\n  content: \"\\ea02\";\n}\n.bd1-block-six:before {\n  content: \"\\ea03\";\n}\n.bd1-block-ten:before {\n  content: \"\\ea04\";\n}\n.bd1-block-three:before {\n  content: \"\\ea05\";\n}\n.bd1-block-two:before {\n  content: \"\\ea06\";\n}\n.bd1-bloom:before {\n  content: \"\\ea07\";\n}\n.bd1-blossom:before {\n  content: \"\\ea08\";\n}\n.bd1-bluetooth:before {\n  content: \"\\ea09\";\n}\n.bd1-boiler:before {\n  content: \"\\ea0a\";\n}\n.bd1-bolt-one:before {\n  content: \"\\ea0b\";\n}\n.bd1-bone:before {\n  content: \"\\ea0c\";\n}\n.bd1-book:before {\n  content: \"\\ea0d\";\n}\n.bd1-bookmark:before {\n  content: \"\\ea0e\";\n}\n.bd1-bookmark-one:before {\n  content: \"\\ea0f\";\n}\n.bd1-bookmark-three:before {\n  content: \"\\ea10\";\n}\n.bd1-book-one:before {\n  content: \"\\ea11\";\n}\n.bd1-book-open:before {\n  content: \"\\ea12\";\n}\n.bd1-bookshelf:before {\n  content: \"\\ea13\";\n}\n.bd1-booster-car-seat:before {\n  content: \"\\ea14\";\n}\n.bd1-booth:before {\n  content: \"\\ea15\";\n}\n.bd1-boots:before {\n  content: \"\\ea16\";\n}\n.bd1-bottle:before {\n  content: \"\\ea17\";\n}\n.bd1-bottle-one:before {\n  content: \"\\ea18\";\n}\n.bd1-bottle-three:before {\n  content: \"\\ea19\";\n}\n.bd1-bottle-two:before {\n  content: \"\\ea1a\";\n}\n.bd1-bottom-bar:before {\n  content: \"\\ea1b\";\n}\n.bd1-bottom-bar-one:before {\n  content: \"\\ea1c\";\n}\n.bd1-bow:before {\n  content: \"\\ea1d\";\n}\n.bd1-bowl:before {\n  content: \"\\ea1e\";\n}\n.bd1-bowling:before {\n  content: \"\\ea1f\";\n}\n.bd1-bowl-one:before {\n  content: \"\\ea20\";\n}\n.bd1-box:before {\n  content: \"\\ea21\";\n}\n.bd1-boxing:before {\n  content: \"\\ea22\";\n}\n.bd1-boxing-one:before {\n  content: \"\\ea23\";\n}\n.bd1-boy:before {\n  content: \"\\ea24\";\n}\n.bd1-boy-one:before {\n  content: \"\\ea25\";\n}\n.bd1-boy-stroller:before {\n  content: \"\\ea26\";\n}\n.bd1-boy-two:before {\n  content: \"\\ea27\";\n}\n.bd1-brain:before {\n  content: \"\\ea28\";\n}\n.bd1-brake-pads:before {\n  content: \"\\ea29\";\n}\n.bd1-branch:before {\n  content: \"\\ea2a\";\n}\n.bd1-branch-one:before {\n  content: \"\\ea2b\";\n}\n.bd1-branch-two:before {\n  content: \"\\ea2c\";\n}\n.bd1-brdige-three:before {\n  content: \"\\ea2d\";\n}\n.bd1-bread:before {\n  content: \"\\ea2e\";\n}\n.bd1-bread-machine:before {\n  content: \"\\ea2f\";\n}\n.bd1-bread-one:before {\n  content: \"\\ea30\";\n}\n.bd1-breast-pump:before {\n  content: \"\\ea31\";\n}\n.bd1-bridge-one:before {\n  content: \"\\ea32\";\n}\n.bd1-bridge-two:before {\n  content: \"\\ea33\";\n}\n.bd1-briefcase:before {\n  content: \"\\ea34\";\n}\n.bd1-brightness:before {\n  content: \"\\ea35\";\n}\n.bd1-bring-forward:before {\n  content: \"\\ea36\";\n}\n.bd1-bring-to-front:before {\n  content: \"\\ea37\";\n}\n.bd1-bring-to-front-one:before {\n  content: \"\\ea38\";\n}\n.bd1-broadcast:before {\n  content: \"\\ea39\";\n}\n.bd1-broadcast-one:before {\n  content: \"\\ea3a\";\n}\n.bd1-broadcast-radio:before {\n  content: \"\\ea3b\";\n}\n.bd1-browser:before {\n  content: \"\\ea3c\";\n}\n.bd1-browser-chrome:before {\n  content: \"\\ea3d\";\n}\n.bd1-browser-safari:before {\n  content: \"\\ea3e\";\n}\n.bd1-bubble-chart:before {\n  content: \"\\ea3f\";\n}\n.bd1-bug:before {\n  content: \"\\ea40\";\n}\n.bd1-building-four:before {\n  content: \"\\ea41\";\n}\n.bd1-building-one:before {\n  content: \"\\ea42\";\n}\n.bd1-building-three:before {\n  content: \"\\ea43\";\n}\n.bd1-building-two:before {\n  content: \"\\ea44\";\n}\n.bd1-bullet-map:before {\n  content: \"\\ea45\";\n}\n.bd1-bus:before {\n  content: \"\\ea46\";\n}\n.bd1-bus-one:before {\n  content: \"\\ea47\";\n}\n.bd1-bus-two:before {\n  content: \"\\ea48\";\n}\n.bd1-butterfly:before {\n  content: \"\\ea49\";\n}\n.bd1-buy:before {\n  content: \"\\ea4a\";\n}\n.bd1-bydesign:before {\n  content: \"\\ea4b\";\n}\n.bd1-bye:before {\n  content: \"\\ea4c\";\n}\n.bd1-bytedance:before {\n  content: \"\\ea4d\";\n}\n.bd1-bytedance-applets:before {\n  content: \"\\ea4e\";\n}\n.bd1-bytedance-mini-app:before {\n  content: \"\\ea4f\";\n}\n.bd1-cable-car:before {\n  content: \"\\ea50\";\n}\n.bd1-cactus:before {\n  content: \"\\ea51\";\n}\n.bd1-cake:before {\n  content: \"\\ea52\";\n}\n.bd1-cake-five:before {\n  content: \"\\ea53\";\n}\n.bd1-cake-four:before {\n  content: \"\\ea54\";\n}\n.bd1-cake-one:before {\n  content: \"\\ea55\";\n}\n.bd1-cake-three:before {\n  content: \"\\ea56\";\n}\n.bd1-cake-two:before {\n  content: \"\\ea57\";\n}\n.bd1-calculator:before {\n  content: \"\\ea58\";\n}\n.bd1-calculator-one:before {\n  content: \"\\ea59\";\n}\n.bd1-calendar:before {\n  content: \"\\ea5a\";\n}\n.bd1-calendar-dot:before {\n  content: \"\\ea5b\";\n}\n.bd1-calendar-thirty:before {\n  content: \"\\ea5c\";\n}\n.bd1-calendar-thirty-two:before {\n  content: \"\\ea5d\";\n}\n.bd1-calendar-three:before {\n  content: \"\\ea5e\";\n}\n.bd1-camera:before {\n  content: \"\\ea5f\";\n}\n.bd1-camera-five:before {\n  content: \"\\ea60\";\n}\n.bd1-camera-four:before {\n  content: \"\\ea61\";\n}\n.bd1-camera-one:before {\n  content: \"\\ea62\";\n}\n.bd1-camera-three:before {\n  content: \"\\ea63\";\n}\n.bd1-camera-two:before {\n  content: \"\\ea64\";\n}\n.bd1-camp:before {\n  content: \"\\ea65\";\n}\n.bd1-cancer:before {\n  content: \"\\ea66\";\n}\n.bd1-candy:before {\n  content: \"\\ea67\";\n}\n.bd1-canned-fruit:before {\n  content: \"\\ea68\";\n}\n.bd1-capricornus:before {\n  content: \"\\ea69\";\n}\n.bd1-car:before {\n  content: \"\\ea6a\";\n}\n.bd1-car-battery:before {\n  content: \"\\ea6b\";\n}\n.bd1-cardioelectric:before {\n  content: \"\\ea6c\";\n}\n.bd1-card-two:before {\n  content: \"\\ea6d\";\n}\n.bd1-carousel:before {\n  content: \"\\ea6e\";\n}\n.bd1-carousel-video:before {\n  content: \"\\ea6f\";\n}\n.bd1-carrot:before {\n  content: \"\\ea70\";\n}\n.bd1-castle:before {\n  content: \"\\ea71\";\n}\n.bd1-cast-screen:before {\n  content: \"\\ea72\";\n}\n.bd1-cat:before {\n  content: \"\\ea73\";\n}\n.bd1-category-management:before {\n  content: \"\\ea74\";\n}\n.bd1-cattle:before {\n  content: \"\\ea75\";\n}\n.bd1-cattle-zodiac:before {\n  content: \"\\ea76\";\n}\n.bd1-caution:before {\n  content: \"\\ea77\";\n}\n.bd1-cc:before {\n  content: \"\\ea78\";\n}\n.bd1-cd:before {\n  content: \"\\ea79\";\n}\n.bd1-cell:before {\n  content: \"\\ea7a\";\n}\n.bd1-ce-marking:before {\n  content: \"\\ea7b\";\n}\n.bd1-center-alignment:before {\n  content: \"\\ea7c\";\n}\n.bd1-certificate:before {\n  content: \"\\ea7d\";\n}\n.bd1-chafing-dish:before {\n  content: \"\\ea7e\";\n}\n.bd1-chafing-dish-one:before {\n  content: \"\\ea7f\";\n}\n.bd1-chair:before {\n  content: \"\\ea80\";\n}\n.bd1-chair-one:before {\n  content: \"\\ea81\";\n}\n.bd1-change:before {\n  content: \"\\ea82\";\n}\n.bd1-change-date-sort:before {\n  content: \"\\ea83\";\n}\n.bd1-charging-treasure:before {\n  content: \"\\ea84\";\n}\n.bd1-chart-graph:before {\n  content: \"\\ea85\";\n}\n.bd1-chart-histogram:before {\n  content: \"\\ea86\";\n}\n.bd1-chart-histogram-one:before {\n  content: \"\\ea87\";\n}\n.bd1-chart-histogram-two:before {\n  content: \"\\ea88\";\n}\n.bd1-chart-line:before {\n  content: \"\\ea89\";\n}\n.bd1-chart-line-area:before {\n  content: \"\\ea8a\";\n}\n.bd1-chart-pie:before {\n  content: \"\\ea8b\";\n}\n.bd1-chart-pie-one:before {\n  content: \"\\ea8c\";\n}\n.bd1-chart-proportion:before {\n  content: \"\\ea8d\";\n}\n.bd1-chart-ring:before {\n  content: \"\\ea8e\";\n}\n.bd1-chart-scatter:before {\n  content: \"\\ea8f\";\n}\n.bd1-chart-stock:before {\n  content: \"\\ea90\";\n}\n.bd1-check:before {\n  content: \"\\ea91\";\n}\n.bd1-checkbox:before {\n  content: \"\\ea92\";\n}\n.bd1-check-correct:before {\n  content: \"\\ea93\";\n}\n.bd1-checkerboard:before {\n  content: \"\\ea94\";\n}\n.bd1-check-in:before {\n  content: \"\\ea95\";\n}\n.bd1-checklist:before {\n  content: \"\\ea96\";\n}\n.bd1-check-one:before {\n  content: \"\\ea97\";\n}\n.bd1-check-small:before {\n  content: \"\\ea98\";\n}\n.bd1-cheese:before {\n  content: \"\\ea99\";\n}\n.bd1-chef-hat:before {\n  content: \"\\ea9a\";\n}\n.bd1-chef-hat-one:before {\n  content: \"\\ea9b\";\n}\n.bd1-cherry:before {\n  content: \"\\ea9c\";\n}\n.bd1-chess:before {\n  content: \"\\ea9d\";\n}\n.bd1-chess-one:before {\n  content: \"\\ea9e\";\n}\n.bd1-chest:before {\n  content: \"\\ea9f\";\n}\n.bd1-chicken:before {\n  content: \"\\eaa0\";\n}\n.bd1-chicken-leg:before {\n  content: \"\\eaa1\";\n}\n.bd1-chicken-zodiac:before {\n  content: \"\\eaa2\";\n}\n.bd1-children-cap:before {\n  content: \"\\eaa3\";\n}\n.bd1-children-pyramid:before {\n  content: \"\\eaa4\";\n}\n.bd1-child-with-pacifier:before {\n  content: \"\\eaa5\";\n}\n.bd1-chili:before {\n  content: \"\\eaa6\";\n}\n.bd1-chimney:before {\n  content: \"\\eaa7\";\n}\n.bd1-chinese:before {\n  content: \"\\eaa8\";\n}\n.bd1-chinese-one:before {\n  content: \"\\eaa9\";\n}\n.bd1-chinese-pavilion:before {\n  content: \"\\eaaa\";\n}\n.bd1-chip:before {\n  content: \"\\eaab\";\n}\n.bd1-chopping-board:before {\n  content: \"\\eaac\";\n}\n.bd1-chopsticks-fork:before {\n  content: \"\\eaad\";\n}\n.bd1-christmas-tree:before {\n  content: \"\\eaae\";\n}\n.bd1-christmas-tree-one:before {\n  content: \"\\eaaf\";\n}\n.bd1-church-one:before {\n  content: \"\\eab0\";\n}\n.bd1-church-two:before {\n  content: \"\\eab1\";\n}\n.bd1-circle-double-down:before {\n  content: \"\\eab2\";\n}\n.bd1-circle-double-left:before {\n  content: \"\\eab3\";\n}\n.bd1-circle-double-right:before {\n  content: \"\\eab4\";\n}\n.bd1-circle-double-up:before {\n  content: \"\\eab5\";\n}\n.bd1-circle-five-line:before {\n  content: \"\\eab6\";\n}\n.bd1-circle-four:before {\n  content: \"\\eab7\";\n}\n.bd1-circle-four-line:before {\n  content: \"\\eab8\";\n}\n.bd1-circle-house:before {\n  content: \"\\eab9\";\n}\n.bd1-circle-left-down:before {\n  content: \"\\eaba\";\n}\n.bd1-circle-left-up:before {\n  content: \"\\eabb\";\n}\n.bd1-circle-right-down:before {\n  content: \"\\eabc\";\n}\n.bd1-circle-right-up:before {\n  content: \"\\eabd\";\n}\n.bd1-circles-and-triangles:before {\n  content: \"\\eabe\";\n}\n.bd1-circles-seven:before {\n  content: \"\\eabf\";\n}\n.bd1-circle-three:before {\n  content: \"\\eac0\";\n}\n.bd1-circle-two-line:before {\n  content: \"\\eac1\";\n}\n.bd1-circular-connection:before {\n  content: \"\\eac2\";\n}\n.bd1-circus:before {\n  content: \"\\eac3\";\n}\n.bd1-city:before {\n  content: \"\\eac4\";\n}\n.bd1-city-gate:before {\n  content: \"\\eac5\";\n}\n.bd1-city-one:before {\n  content: \"\\eac6\";\n}\n.bd1-clap:before {\n  content: \"\\eac7\";\n}\n.bd1-classroom:before {\n  content: \"\\eac8\";\n}\n.bd1-clear:before {\n  content: \"\\eac9\";\n}\n.bd1-clear-format:before {\n  content: \"\\eaca\";\n}\n.bd1-click:before {\n  content: \"\\eacb\";\n}\n.bd1-click-tap:before {\n  content: \"\\eacc\";\n}\n.bd1-click-tap-two:before {\n  content: \"\\eacd\";\n}\n.bd1-click-to-fold:before {\n  content: \"\\eace\";\n}\n.bd1-clipboard:before {\n  content: \"\\eacf\";\n}\n.bd1-clock-tower:before {\n  content: \"\\ead0\";\n}\n.bd1-close:before {\n  content: \"\\ead1\";\n}\n.bd1-close-one:before {\n  content: \"\\ead2\";\n}\n.bd1-close-remind:before {\n  content: \"\\ead3\";\n}\n.bd1-close-small:before {\n  content: \"\\ead4\";\n}\n.bd1-close-wifi:before {\n  content: \"\\ead5\";\n}\n.bd1-clothes-briefs:before {\n  content: \"\\ead6\";\n}\n.bd1-clothes-cardigan:before {\n  content: \"\\ead7\";\n}\n.bd1-clothes-crew-neck:before {\n  content: \"\\ead8\";\n}\n.bd1-clothes-diapers:before {\n  content: \"\\ead9\";\n}\n.bd1-clothes-gloves:before {\n  content: \"\\eada\";\n}\n.bd1-clothes-gloves-two:before {\n  content: \"\\eadb\";\n}\n.bd1-clothes-hoodie:before {\n  content: \"\\eadc\";\n}\n.bd1-clothes-pants:before {\n  content: \"\\eadd\";\n}\n.bd1-clothes-pants-short:before {\n  content: \"\\eade\";\n}\n.bd1-clothes-pants-sweat:before {\n  content: \"\\eadf\";\n}\n.bd1-clothes-short-sleeve:before {\n  content: \"\\eae0\";\n}\n.bd1-clothes-skates:before {\n  content: \"\\eae1\";\n}\n.bd1-clothes-suit:before {\n  content: \"\\eae2\";\n}\n.bd1-clothes-sweater:before {\n  content: \"\\eae3\";\n}\n.bd1-clothes-turtleneck:before {\n  content: \"\\eae4\";\n}\n.bd1-clothes-windbreaker:before {\n  content: \"\\eae5\";\n}\n.bd1-cloud-storage:before {\n  content: \"\\eae6\";\n}\n.bd1-cloudy:before {\n  content: \"\\eae7\";\n}\n.bd1-cloudy-night:before {\n  content: \"\\eae8\";\n}\n.bd1-clue:before {\n  content: \"\\eae9\";\n}\n.bd1-coat-hanger:before {\n  content: \"\\eaea\";\n}\n.bd1-cocktail:before {\n  content: \"\\eaeb\";\n}\n.bd1-coconut-tree:before {\n  content: \"\\eaec\";\n}\n.bd1-code:before {\n  content: \"\\eaed\";\n}\n.bd1-code-brackets:before {\n  content: \"\\eaee\";\n}\n.bd1-code-computer:before {\n  content: \"\\eaef\";\n}\n.bd1-code-download:before {\n  content: \"\\eaf0\";\n}\n.bd1-code-laptop:before {\n  content: \"\\eaf1\";\n}\n.bd1-code-one:before {\n  content: \"\\eaf2\";\n}\n.bd1-coffee-machine:before {\n  content: \"\\eaf3\";\n}\n.bd1-cola:before {\n  content: \"\\eaf4\";\n}\n.bd1-collapse-text-input:before {\n  content: \"\\eaf5\";\n}\n.bd1-collect-computer:before {\n  content: \"\\eaf6\";\n}\n.bd1-collection-files:before {\n  content: \"\\eaf7\";\n}\n.bd1-collection-records:before {\n  content: \"\\eaf8\";\n}\n.bd1-collect-laptop:before {\n  content: \"\\eaf9\";\n}\n.bd1-collect-picture:before {\n  content: \"\\eafa\";\n}\n.bd1-color-card:before {\n  content: \"\\eafb\";\n}\n.bd1-color-filter:before {\n  content: \"\\eafc\";\n}\n.bd1-column:before {\n  content: \"\\eafd\";\n}\n.bd1-comb:before {\n  content: \"\\eafe\";\n}\n.bd1-come:before {\n  content: \"\\eaff\";\n}\n.bd1-command:before {\n  content: \"\\eb00\";\n}\n.bd1-comment:before {\n  content: \"\\eb01\";\n}\n.bd1-comment-one:before {\n  content: \"\\eb02\";\n}\n.bd1-comments:before {\n  content: \"\\eb03\";\n}\n.bd1-commodity:before {\n  content: \"\\eb04\";\n}\n.bd1-communication:before {\n  content: \"\\eb05\";\n}\n.bd1-commuter-bag:before {\n  content: \"\\eb06\";\n}\n.bd1-compass:before {\n  content: \"\\eb07\";\n}\n.bd1-compass-one:before {\n  content: \"\\eb08\";\n}\n.bd1-components:before {\n  content: \"\\eb09\";\n}\n.bd1-composition:before {\n  content: \"\\eb0a\";\n}\n.bd1-compression:before {\n  content: \"\\eb0b\";\n}\n.bd1-computer:before {\n  content: \"\\eb0c\";\n}\n.bd1-computer-one:before {\n  content: \"\\eb0d\";\n}\n.bd1-concept-sharing:before {\n  content: \"\\eb0e\";\n}\n.bd1-concern:before {\n  content: \"\\eb0f\";\n}\n.bd1-conditioner:before {\n  content: \"\\eb10\";\n}\n.bd1-cone:before {\n  content: \"\\eb11\";\n}\n.bd1-cones:before {\n  content: \"\\eb12\";\n}\n.bd1-config:before {\n  content: \"\\eb13\";\n}\n.bd1-confounded-face:before {\n  content: \"\\eb14\";\n}\n.bd1-confused-face:before {\n  content: \"\\eb15\";\n}\n.bd1-connect:before {\n  content: \"\\eb16\";\n}\n.bd1-connect-address-one:before {\n  content: \"\\eb17\";\n}\n.bd1-connect-address-two:before {\n  content: \"\\eb18\";\n}\n.bd1-connection:before {\n  content: \"\\eb19\";\n}\n.bd1-connection-arrow:before {\n  content: \"\\eb1a\";\n}\n.bd1-connection-box:before {\n  content: \"\\eb1b\";\n}\n.bd1-connection-point:before {\n  content: \"\\eb1c\";\n}\n.bd1-connection-point-two:before {\n  content: \"\\eb1d\";\n}\n.bd1-consignment:before {\n  content: \"\\eb1e\";\n}\n.bd1-consume:before {\n  content: \"\\eb1f\";\n}\n.bd1-contrast:before {\n  content: \"\\eb20\";\n}\n.bd1-contrast-view:before {\n  content: \"\\eb21\";\n}\n.bd1-contrast-view-circle:before {\n  content: \"\\eb22\";\n}\n.bd1-control:before {\n  content: \"\\eb23\";\n}\n.bd1-converging-gateway:before {\n  content: \"\\eb24\";\n}\n.bd1-cook:before {\n  content: \"\\eb25\";\n}\n.bd1-cooking:before {\n  content: \"\\eb26\";\n}\n.bd1-cooking-pot:before {\n  content: \"\\eb27\";\n}\n.bd1-cool:before {\n  content: \"\\eb28\";\n}\n.bd1-cooperative-handshake:before {\n  content: \"\\eb29\";\n}\n.bd1-coordinate-system:before {\n  content: \"\\eb2a\";\n}\n.bd1-copy:before {\n  content: \"\\eb2b\";\n}\n.bd1-copy-link:before {\n  content: \"\\eb2c\";\n}\n.bd1-copy-one:before {\n  content: \"\\eb2d\";\n}\n.bd1-copyright:before {\n  content: \"\\eb2e\";\n}\n.bd1-corner-down-left:before {\n  content: \"\\eb2f\";\n}\n.bd1-corner-down-right:before {\n  content: \"\\eb30\";\n}\n.bd1-corner-left-down:before {\n  content: \"\\eb31\";\n}\n.bd1-corner-left-up:before {\n  content: \"\\eb32\";\n}\n.bd1-corner-right-down:before {\n  content: \"\\eb33\";\n}\n.bd1-corner-right-up:before {\n  content: \"\\eb34\";\n}\n.bd1-corner-up-left:before {\n  content: \"\\eb35\";\n}\n.bd1-corner-up-right:before {\n  content: \"\\eb36\";\n}\n.bd1-coronavirus:before {\n  content: \"\\eb37\";\n}\n.bd1-correct:before {\n  content: \"\\eb38\";\n}\n.bd1-cosmetic-brush:before {\n  content: \"\\eb39\";\n}\n.bd1-coupon:before {\n  content: \"\\eb3a\";\n}\n.bd1-court:before {\n  content: \"\\eb3b\";\n}\n.bd1-cpu:before {\n  content: \"\\eb3c\";\n}\n.bd1-crab:before {\n  content: \"\\eb3d\";\n}\n.bd1-creation-date-sort:before {\n  content: \"\\eb3e\";\n}\n.bd1-creative:before {\n  content: \"\\eb3f\";\n}\n.bd1-credit:before {\n  content: \"\\eb40\";\n}\n.bd1-crib:before {\n  content: \"\\eb41\";\n}\n.bd1-croissant:before {\n  content: \"\\eb42\";\n}\n.bd1-cross-ring:before {\n  content: \"\\eb43\";\n}\n.bd1-cross-ring-two:before {\n  content: \"\\eb44\";\n}\n.bd1-cross-society:before {\n  content: \"\\eb45\";\n}\n.bd1-crown:before {\n  content: \"\\eb46\";\n}\n.bd1-crown-three:before {\n  content: \"\\eb47\";\n}\n.bd1-crown-two:before {\n  content: \"\\eb48\";\n}\n.bd1-cruise:before {\n  content: \"\\eb49\";\n}\n.bd1-crying-baby:before {\n  content: \"\\eb4a\";\n}\n.bd1-cube:before {\n  content: \"\\eb4b\";\n}\n.bd1-cube-five:before {\n  content: \"\\eb4c\";\n}\n.bd1-cube-four:before {\n  content: \"\\eb4d\";\n}\n.bd1-cube-three:before {\n  content: \"\\eb4e\";\n}\n.bd1-cube-two:before {\n  content: \"\\eb4f\";\n}\n.bd1-cup:before {\n  content: \"\\eb50\";\n}\n.bd1-cup-four:before {\n  content: \"\\eb51\";\n}\n.bd1-cup-one:before {\n  content: \"\\eb52\";\n}\n.bd1-curling:before {\n  content: \"\\eb53\";\n}\n.bd1-currency:before {\n  content: \"\\eb54\";\n}\n.bd1-curve-adjustment:before {\n  content: \"\\eb55\";\n}\n.bd1-customer:before {\n  content: \"\\eb56\";\n}\n.bd1-cutting:before {\n  content: \"\\eb57\";\n}\n.bd1-cutting-one:before {\n  content: \"\\eb58\";\n}\n.bd1-cuvette:before {\n  content: \"\\eb59\";\n}\n.bd1-cycle:before {\n  content: \"\\eb5a\";\n}\n.bd1-cycle-arrow:before {\n  content: \"\\eb5b\";\n}\n.bd1-cycle-movement:before {\n  content: \"\\eb5c\";\n}\n.bd1-cycle-one:before {\n  content: \"\\eb5d\";\n}\n.bd1-cylinder:before {\n  content: \"\\eb5e\";\n}\n.bd1-damage-map:before {\n  content: \"\\eb5f\";\n}\n.bd1-dark-mode:before {\n  content: \"\\eb60\";\n}\n.bd1-dashboard:before {\n  content: \"\\eb61\";\n}\n.bd1-dashboard-car:before {\n  content: \"\\eb62\";\n}\n.bd1-dashboard-one:before {\n  content: \"\\eb63\";\n}\n.bd1-dashboard-two:before {\n  content: \"\\eb64\";\n}\n.bd1-data:before {\n  content: \"\\eb65\";\n}\n.bd1-data-all:before {\n  content: \"\\eb66\";\n}\n.bd1-data-arrival:before {\n  content: \"\\eb67\";\n}\n.bd1-database-alert:before {\n  content: \"\\eb68\";\n}\n.bd1-database-code:before {\n  content: \"\\eb69\";\n}\n.bd1-database-config:before {\n  content: \"\\eb6a\";\n}\n.bd1-database-download:before {\n  content: \"\\eb6b\";\n}\n.bd1-database-enter:before {\n  content: \"\\eb6c\";\n}\n.bd1-database-fail:before {\n  content: \"\\eb6d\";\n}\n.bd1-database-first:before {\n  content: \"\\eb6e\";\n}\n.bd1-database-forbid:before {\n  content: \"\\eb6f\";\n}\n.bd1-database-lock:before {\n  content: \"\\eb70\";\n}\n.bd1-database-network:before {\n  content: \"\\eb71\";\n}\n.bd1-database-network-point:before {\n  content: \"\\eb72\";\n}\n.bd1-database-point:before {\n  content: \"\\eb73\";\n}\n.bd1-database-position:before {\n  content: \"\\eb74\";\n}\n.bd1-database-power:before {\n  content: \"\\eb75\";\n}\n.bd1-database-proportion:before {\n  content: \"\\eb76\";\n}\n.bd1-database-search:before {\n  content: \"\\eb77\";\n}\n.bd1-database-setting:before {\n  content: \"\\eb78\";\n}\n.bd1-database-success:before {\n  content: \"\\eb79\";\n}\n.bd1-database-sync:before {\n  content: \"\\eb7a\";\n}\n.bd1-database-time:before {\n  content: \"\\eb7b\";\n}\n.bd1-data-display:before {\n  content: \"\\eb7c\";\n}\n.bd1-data-file:before {\n  content: \"\\eb7d\";\n}\n.bd1-data-four:before {\n  content: \"\\eb7e\";\n}\n.bd1-data-lock:before {\n  content: \"\\eb7f\";\n}\n.bd1-data-null:before {\n  content: \"\\eb80\";\n}\n.bd1-data-one:before {\n  content: \"\\eb81\";\n}\n.bd1-data-screen:before {\n  content: \"\\eb82\";\n}\n.bd1-data-server:before {\n  content: \"\\eb83\";\n}\n.bd1-data-sheet:before {\n  content: \"\\eb84\";\n}\n.bd1-data-switching:before {\n  content: \"\\eb85\";\n}\n.bd1-data-three:before {\n  content: \"\\eb86\";\n}\n.bd1-data-two:before {\n  content: \"\\eb87\";\n}\n.bd1-data-user:before {\n  content: \"\\eb88\";\n}\n.bd1-date-comes-back:before {\n  content: \"\\eb89\";\n}\n.bd1-deadline-sort:before {\n  content: \"\\eb8a\";\n}\n.bd1-death-star:before {\n  content: \"\\eb8b\";\n}\n.bd1-deeplink:before {\n  content: \"\\eb8c\";\n}\n.bd1-deer:before {\n  content: \"\\eb8d\";\n}\n.bd1-degree-hat:before {\n  content: \"\\eb8e\";\n}\n.bd1-delete:before {\n  content: \"\\eb8f\";\n}\n.bd1-delete-five:before {\n  content: \"\\eb90\";\n}\n.bd1-delete-four:before {\n  content: \"\\eb91\";\n}\n.bd1-delete-key:before {\n  content: \"\\eb92\";\n}\n.bd1-delete-mode:before {\n  content: \"\\eb93\";\n}\n.bd1-delete-one:before {\n  content: \"\\eb94\";\n}\n.bd1-delete-themes:before {\n  content: \"\\eb95\";\n}\n.bd1-delete-three:before {\n  content: \"\\eb96\";\n}\n.bd1-delete-two:before {\n  content: \"\\eb97\";\n}\n.bd1-delivery:before {\n  content: \"\\eb98\";\n}\n.bd1-deposit:before {\n  content: \"\\eb99\";\n}\n.bd1-descend:before {\n  content: \"\\eb9a\";\n}\n.bd1-desk-lamp:before {\n  content: \"\\eb9b\";\n}\n.bd1-desk-lamp-one:before {\n  content: \"\\eb9c\";\n}\n.bd1-detection:before {\n  content: \"\\eb9d\";\n}\n.bd1-devices:before {\n  content: \"\\eb9e\";\n}\n.bd1-diamond:before {\n  content: \"\\eb9f\";\n}\n.bd1-diamond-necklace:before {\n  content: \"\\eba0\";\n}\n.bd1-diamond-one:before {\n  content: \"\\eba1\";\n}\n.bd1-diamond-ring:before {\n  content: \"\\eba2\";\n}\n.bd1-diamonds:before {\n  content: \"\\eba3\";\n}\n.bd1-diamond-three:before {\n  content: \"\\eba4\";\n}\n.bd1-diamond-two:before {\n  content: \"\\eba5\";\n}\n.bd1-dianziqian:before {\n  content: \"\\eba6\";\n}\n.bd1-diapers-one:before {\n  content: \"\\eba7\";\n}\n.bd1-difference-set:before {\n  content: \"\\eba8\";\n}\n.bd1-digital-watches:before {\n  content: \"\\eba9\";\n}\n.bd1-direction:before {\n  content: \"\\ebaa\";\n}\n.bd1-direction-adjustment:before {\n  content: \"\\ebab\";\n}\n.bd1-direction-adjustment-three:before {\n  content: \"\\ebac\";\n}\n.bd1-direction-adjustment-two:before {\n  content: \"\\ebad\";\n}\n.bd1-disabaled-web:before {\n  content: \"\\ebae\";\n}\n.bd1-disabled-computer:before {\n  content: \"\\ebaf\";\n}\n.bd1-disabled-laptop:before {\n  content: \"\\ebb0\";\n}\n.bd1-disabled-picture:before {\n  content: \"\\ebb1\";\n}\n.bd1-disappointed-face:before {\n  content: \"\\ebb2\";\n}\n.bd1-discovery-index:before {\n  content: \"\\ebb3\";\n}\n.bd1-disk:before {\n  content: \"\\ebb4\";\n}\n.bd1-disk-one:before {\n  content: \"\\ebb5\";\n}\n.bd1-disk-two:before {\n  content: \"\\ebb6\";\n}\n.bd1-dislike:before {\n  content: \"\\ebb7\";\n}\n.bd1-dislike-two:before {\n  content: \"\\ebb8\";\n}\n.bd1-display:before {\n  content: \"\\ebb9\";\n}\n.bd1-distortion:before {\n  content: \"\\ebba\";\n}\n.bd1-distraught-face:before {\n  content: \"\\ebbb\";\n}\n.bd1-distribute-horizontally:before {\n  content: \"\\ebbc\";\n}\n.bd1-distribute-horizontal-spacing:before {\n  content: \"\\ebbd\";\n}\n.bd1-distribute-vertically:before {\n  content: \"\\ebbe\";\n}\n.bd1-distribute-vertical-spacing:before {\n  content: \"\\ebbf\";\n}\n.bd1-dividing-line:before {\n  content: \"\\ebc0\";\n}\n.bd1-dividing-line-one:before {\n  content: \"\\ebc1\";\n}\n.bd1-diving:before {\n  content: \"\\ebc2\";\n}\n.bd1-diving-bottle:before {\n  content: \"\\ebc3\";\n}\n.bd1-diving-suit:before {\n  content: \"\\ebc4\";\n}\n.bd1-division:before {\n  content: \"\\ebc5\";\n}\n.bd1-dizzy-face:before {\n  content: \"\\ebc6\";\n}\n.bd1-doc-add:before {\n  content: \"\\ebc7\";\n}\n.bd1-doc-detail:before {\n  content: \"\\ebc8\";\n}\n.bd1-doc-fail:before {\n  content: \"\\ebc9\";\n}\n.bd1-doc-search:before {\n  content: \"\\ebca\";\n}\n.bd1-doc-search-two:before {\n  content: \"\\ebcb\";\n}\n.bd1-doc-success:before {\n  content: \"\\ebcc\";\n}\n.bd1-document-folder:before {\n  content: \"\\ebcd\";\n}\n.bd1-dog:before {\n  content: \"\\ebce\";\n}\n.bd1-dog-zodiac:before {\n  content: \"\\ebcf\";\n}\n.bd1-dollar:before {\n  content: \"\\ebd0\";\n}\n.bd1-dolphin:before {\n  content: \"\\ebd1\";\n}\n.bd1-dome:before {\n  content: \"\\ebd2\";\n}\n.bd1-dome-light:before {\n  content: \"\\ebd3\";\n}\n.bd1-done-all:before {\n  content: \"\\ebd4\";\n}\n.bd1-dongchedi:before {\n  content: \"\\ebd5\";\n}\n.bd1-door-handle:before {\n  content: \"\\ebd6\";\n}\n.bd1-dot:before {\n  content: \"\\ebd7\";\n}\n.bd1-double-bed:before {\n  content: \"\\ebd8\";\n}\n.bd1-double-down:before {\n  content: \"\\ebd9\";\n}\n.bd1-double-left:before {\n  content: \"\\ebda\";\n}\n.bd1-double-right:before {\n  content: \"\\ebdb\";\n}\n.bd1-double-up:before {\n  content: \"\\ebdc\";\n}\n.bd1-doughnut:before {\n  content: \"\\ebdd\";\n}\n.bd1-down:before {\n  content: \"\\ebde\";\n}\n.bd1-down-c:before {\n  content: \"\\ebdf\";\n}\n.bd1-download:before {\n  content: \"\\ebe0\";\n}\n.bd1-download-computer:before {\n  content: \"\\ebe1\";\n}\n.bd1-download-four:before {\n  content: \"\\ebe2\";\n}\n.bd1-download-laptop:before {\n  content: \"\\ebe3\";\n}\n.bd1-download-one:before {\n  content: \"\\ebe4\";\n}\n.bd1-download-three:before {\n  content: \"\\ebe5\";\n}\n.bd1-download-two:before {\n  content: \"\\ebe6\";\n}\n.bd1-download-web:before {\n  content: \"\\ebe7\";\n}\n.bd1-down-one:before {\n  content: \"\\ebe8\";\n}\n.bd1-down-picture:before {\n  content: \"\\ebe9\";\n}\n.bd1-down-small:before {\n  content: \"\\ebea\";\n}\n.bd1-down-square:before {\n  content: \"\\ebeb\";\n}\n.bd1-down-two:before {\n  content: \"\\ebec\";\n}\n.bd1-drag:before {\n  content: \"\\ebed\";\n}\n.bd1-dragon-zodiac:before {\n  content: \"\\ebee\";\n}\n.bd1-dribble:before {\n  content: \"\\ebef\";\n}\n.bd1-drink:before {\n  content: \"\\ebf0\";\n}\n.bd1-drone:before {\n  content: \"\\ebf1\";\n}\n.bd1-drone-one:before {\n  content: \"\\ebf2\";\n}\n.bd1-dropbox:before {\n  content: \"\\ebf3\";\n}\n.bd1-drop-down-list:before {\n  content: \"\\ebf4\";\n}\n.bd1-drop-shadow-down:before {\n  content: \"\\ebf5\";\n}\n.bd1-drop-shadow-left:before {\n  content: \"\\ebf6\";\n}\n.bd1-drop-shadow-right:before {\n  content: \"\\ebf7\";\n}\n.bd1-drop-shadow-up:before {\n  content: \"\\ebf8\";\n}\n.bd1-drumstick:before {\n  content: \"\\ebf9\";\n}\n.bd1-dubai:before {\n  content: \"\\ebfa\";\n}\n.bd1-duck:before {\n  content: \"\\ebfb\";\n}\n.bd1-dumbbell:before {\n  content: \"\\ebfc\";\n}\n.bd1-dumbbel-line:before {\n  content: \"\\ebfd\";\n}\n.bd1-dvi:before {\n  content: \"\\ebfe\";\n}\n.bd1-eagle:before {\n  content: \"\\ebff\";\n}\n.bd1-earth:before {\n  content: \"\\ec00\";\n}\n.bd1-easy:before {\n  content: \"\\ec01\";\n}\n.bd1-ecg:before {\n  content: \"\\ec02\";\n}\n.bd1-edit:before {\n  content: \"\\ec03\";\n}\n.bd1-editing:before {\n  content: \"\\ec04\";\n}\n.bd1-edit-movie:before {\n  content: \"\\ec05\";\n}\n.bd1-edit-name:before {\n  content: \"\\ec06\";\n}\n.bd1-edit-one:before {\n  content: \"\\ec07\";\n}\n.bd1-editor:before {\n  content: \"\\ec08\";\n}\n.bd1-edit-two:before {\n  content: \"\\ec09\";\n}\n.bd1-eeg:before {\n  content: \"\\ec0a\";\n}\n.bd1-effects:before {\n  content: \"\\ec0b\";\n}\n.bd1-efferent-four:before {\n  content: \"\\ec0c\";\n}\n.bd1-efferent-three:before {\n  content: \"\\ec0d\";\n}\n.bd1-egg:before {\n  content: \"\\ec0e\";\n}\n.bd1-egg-one:before {\n  content: \"\\ec0f\";\n}\n.bd1-eggplant:before {\n  content: \"\\ec10\";\n}\n.bd1-eiffel-tower:before {\n  content: \"\\ec11\";\n}\n.bd1-eight-key:before {\n  content: \"\\ec12\";\n}\n.bd1-electric-drill:before {\n  content: \"\\ec13\";\n}\n.bd1-electric-iron:before {\n  content: \"\\ec14\";\n}\n.bd1-electric-wave:before {\n  content: \"\\ec15\";\n}\n.bd1-electrocardiogram:before {\n  content: \"\\ec16\";\n}\n.bd1-electronic-door-lock:before {\n  content: \"\\ec17\";\n}\n.bd1-electronic-locks-close:before {\n  content: \"\\ec18\";\n}\n.bd1-electronic-locks-open:before {\n  content: \"\\ec19\";\n}\n.bd1-electronic-pen:before {\n  content: \"\\ec1a\";\n}\n.bd1-elephant:before {\n  content: \"\\ec1b\";\n}\n.bd1-elevator:before {\n  content: \"\\ec1c\";\n}\n.bd1-email-block:before {\n  content: \"\\ec1d\";\n}\n.bd1-email-delect:before {\n  content: \"\\ec1e\";\n}\n.bd1-email-down:before {\n  content: \"\\ec1f\";\n}\n.bd1-email-fail:before {\n  content: \"\\ec20\";\n}\n.bd1-email-lock:before {\n  content: \"\\ec21\";\n}\n.bd1-email-push:before {\n  content: \"\\ec22\";\n}\n.bd1-email-search:before {\n  content: \"\\ec23\";\n}\n.bd1-email-security:before {\n  content: \"\\ec24\";\n}\n.bd1-email-successfully:before {\n  content: \"\\ec25\";\n}\n.bd1-emotion-happy:before {\n  content: \"\\ec26\";\n}\n.bd1-emotion-unhappy:before {\n  content: \"\\ec27\";\n}\n.bd1-empty:before {\n  content: \"\\ec28\";\n}\n.bd1-endless:before {\n  content: \"\\ec29\";\n}\n.bd1-endocrine:before {\n  content: \"\\ec2a\";\n}\n.bd1-endpoint-displacement:before {\n  content: \"\\ec2b\";\n}\n.bd1-endpoint-flat:before {\n  content: \"\\ec2c\";\n}\n.bd1-endpoint-round:before {\n  content: \"\\ec2d\";\n}\n.bd1-endpoint-square:before {\n  content: \"\\ec2e\";\n}\n.bd1-end-time-sort:before {\n  content: \"\\ec2f\";\n}\n.bd1-energy-socket:before {\n  content: \"\\ec30\";\n}\n.bd1-engineering-brand:before {\n  content: \"\\ec31\";\n}\n.bd1-engineering-vehicle:before {\n  content: \"\\ec32\";\n}\n.bd1-english:before {\n  content: \"\\ec33\";\n}\n.bd1-english-mustache:before {\n  content: \"\\ec34\";\n}\n.bd1-enquire:before {\n  content: \"\\ec35\";\n}\n.bd1-enter-key:before {\n  content: \"\\ec36\";\n}\n.bd1-enter-key-one:before {\n  content: \"\\ec37\";\n}\n.bd1-entertainment:before {\n  content: \"\\ec38\";\n}\n.bd1-enter-the-keyboard:before {\n  content: \"\\ec39\";\n}\n.bd1-envelope:before {\n  content: \"\\ec3a\";\n}\n.bd1-envelope-one:before {\n  content: \"\\ec3b\";\n}\n.bd1-equalizer:before {\n  content: \"\\ec3c\";\n}\n.bd1-equal-ratio:before {\n  content: \"\\ec3d\";\n}\n.bd1-erase:before {\n  content: \"\\ec3e\";\n}\n.bd1-error:before {\n  content: \"\\ec3f\";\n}\n.bd1-error-computer:before {\n  content: \"\\ec40\";\n}\n.bd1-error-picture:before {\n  content: \"\\ec41\";\n}\n.bd1-error-prompt:before {\n  content: \"\\ec42\";\n}\n.bd1-escalators:before {\n  content: \"\\ec43\";\n}\n.bd1-ethernet-off:before {\n  content: \"\\ec44\";\n}\n.bd1-ethernet-on:before {\n  content: \"\\ec45\";\n}\n.bd1-every-user:before {\n  content: \"\\ec46\";\n}\n.bd1-excel:before {\n  content: \"\\ec47\";\n}\n.bd1-excel-one:before {\n  content: \"\\ec48\";\n}\n.bd1-exchange:before {\n  content: \"\\ec49\";\n}\n.bd1-exchange-four:before {\n  content: \"\\ec4a\";\n}\n.bd1-exchange-one:before {\n  content: \"\\ec4b\";\n}\n.bd1-exchange-three:before {\n  content: \"\\ec4c\";\n}\n.bd1-exchange-two:before {\n  content: \"\\ec4d\";\n}\n.bd1-exclude-selection:before {\n  content: \"\\ec4e\";\n}\n.bd1-exclusive-gateway:before {\n  content: \"\\ec4f\";\n}\n.bd1-expand-down:before {\n  content: \"\\ec50\";\n}\n.bd1-expand-down-one:before {\n  content: \"\\ec51\";\n}\n.bd1-expand-left:before {\n  content: \"\\ec52\";\n}\n.bd1-expand-left-and-right:before {\n  content: \"\\ec53\";\n}\n.bd1-expand-right:before {\n  content: \"\\ec54\";\n}\n.bd1-expand-text-input:before {\n  content: \"\\ec55\";\n}\n.bd1-expand-up:before {\n  content: \"\\ec56\";\n}\n.bd1-expenses:before {\n  content: \"\\ec57\";\n}\n.bd1-expenses-one:before {\n  content: \"\\ec58\";\n}\n.bd1-experiment:before {\n  content: \"\\ec59\";\n}\n.bd1-experiment-one:before {\n  content: \"\\ec5a\";\n}\n.bd1-export:before {\n  content: \"\\ec5b\";\n}\n.bd1-express-delivery:before {\n  content: \"\\ec5c\";\n}\n.bd1-expressionless-face:before {\n  content: \"\\ec5d\";\n}\n.bd1-extend:before {\n  content: \"\\ec5e\";\n}\n.bd1-external-transmission:before {\n  content: \"\\ec5f\";\n}\n.bd1-eyebrow:before {\n  content: \"\\ec60\";\n}\n.bd1-eyes:before {\n  content: \"\\ec61\";\n}\n.bd1-facebook:before {\n  content: \"\\ec62\";\n}\n.bd1-facebook-one:before {\n  content: \"\\ec63\";\n}\n.bd1-face-powder:before {\n  content: \"\\ec64\";\n}\n.bd1-face-recognition:before {\n  content: \"\\ec65\";\n}\n.bd1-facetime:before {\n  content: \"\\ec66\";\n}\n.bd1-faceu:before {\n  content: \"\\ec67\";\n}\n.bd1-face-without-mouth:before {\n  content: \"\\ec68\";\n}\n.bd1-face-with-smiling-open-eyes:before {\n  content: \"\\ec69\";\n}\n.bd1-facial-cleanser:before {\n  content: \"\\ec6a\";\n}\n.bd1-facial-mask:before {\n  content: \"\\ec6b\";\n}\n.bd1-factory-building:before {\n  content: \"\\ec6c\";\n}\n.bd1-fail-picture:before {\n  content: \"\\ec6d\";\n}\n.bd1-family:before {\n  content: \"\\ec6e\";\n}\n.bd1-fan:before {\n  content: \"\\ec6f\";\n}\n.bd1-fanqiexiaoshuo:before {\n  content: \"\\ec70\";\n}\n.bd1-feelgood:before {\n  content: \"\\ec71\";\n}\n.bd1-feelgood-one:before {\n  content: \"\\ec72\";\n}\n.bd1-f-eight-key:before {\n  content: \"\\ec73\";\n}\n.bd1-feiyu:before {\n  content: \"\\ec74\";\n}\n.bd1-female:before {\n  content: \"\\ec75\";\n}\n.bd1-fence-one:before {\n  content: \"\\ec76\";\n}\n.bd1-fence-two:before {\n  content: \"\\ec77\";\n}\n.bd1-ferris-wheel:before {\n  content: \"\\ec78\";\n}\n.bd1-f-five-key:before {\n  content: \"\\ec79\";\n}\n.bd1-f-four-key:before {\n  content: \"\\ec7a\";\n}\n.bd1-figma:before {\n  content: \"\\ec7b\";\n}\n.bd1-figma-component:before {\n  content: \"\\ec7c\";\n}\n.bd1-figma-flatten-selection:before {\n  content: \"\\ec7d\";\n}\n.bd1-figma-mask:before {\n  content: \"\\ec7e\";\n}\n.bd1-figma-reset-instance:before {\n  content: \"\\ec7f\";\n}\n.bd1-file-addition:before {\n  content: \"\\ec80\";\n}\n.bd1-file-addition-one:before {\n  content: \"\\ec81\";\n}\n.bd1-file-cabinet:before {\n  content: \"\\ec82\";\n}\n.bd1-file-code:before {\n  content: \"\\ec83\";\n}\n.bd1-file-code-one:before {\n  content: \"\\ec84\";\n}\n.bd1-file-collection:before {\n  content: \"\\ec85\";\n}\n.bd1-file-collection-one:before {\n  content: \"\\ec86\";\n}\n.bd1-file-conversion:before {\n  content: \"\\ec87\";\n}\n.bd1-file-conversion-one:before {\n  content: \"\\ec88\";\n}\n.bd1-file-date:before {\n  content: \"\\ec89\";\n}\n.bd1-file-date-one:before {\n  content: \"\\ec8a\";\n}\n.bd1-file-display:before {\n  content: \"\\ec8b\";\n}\n.bd1-file-display-one:before {\n  content: \"\\ec8c\";\n}\n.bd1-file-doc:before {\n  content: \"\\ec8d\";\n}\n.bd1-file-editing:before {\n  content: \"\\ec8e\";\n}\n.bd1-file-editing-one:before {\n  content: \"\\ec8f\";\n}\n.bd1-file-excel:before {\n  content: \"\\ec90\";\n}\n.bd1-file-failed:before {\n  content: \"\\ec91\";\n}\n.bd1-file-failed-one:before {\n  content: \"\\ec92\";\n}\n.bd1-file-focus:before {\n  content: \"\\ec93\";\n}\n.bd1-file-focus-one:before {\n  content: \"\\ec94\";\n}\n.bd1-file-gif:before {\n  content: \"\\ec95\";\n}\n.bd1-file-hash:before {\n  content: \"\\ec96\";\n}\n.bd1-file-hash-one:before {\n  content: \"\\ec97\";\n}\n.bd1-file-hiding:before {\n  content: \"\\ec98\";\n}\n.bd1-file-hiding-one:before {\n  content: \"\\ec99\";\n}\n.bd1-file-jpg:before {\n  content: \"\\ec9a\";\n}\n.bd1-file-lock:before {\n  content: \"\\ec9b\";\n}\n.bd1-file-lock-one:before {\n  content: \"\\ec9c\";\n}\n.bd1-file-music:before {\n  content: \"\\ec9d\";\n}\n.bd1-file-music-one:before {\n  content: \"\\ec9e\";\n}\n.bd1-file-pdf:before {\n  content: \"\\ec9f\";\n}\n.bd1-file-pdf-one:before {\n  content: \"\\eca0\";\n}\n.bd1-file-ppt:before {\n  content: \"\\eca1\";\n}\n.bd1-file-protection:before {\n  content: \"\\eca2\";\n}\n.bd1-file-protection-one:before {\n  content: \"\\eca3\";\n}\n.bd1-file-quality:before {\n  content: \"\\eca4\";\n}\n.bd1-file-quality-one:before {\n  content: \"\\eca5\";\n}\n.bd1-file-question:before {\n  content: \"\\eca6\";\n}\n.bd1-file-removal:before {\n  content: \"\\eca7\";\n}\n.bd1-file-removal-one:before {\n  content: \"\\eca8\";\n}\n.bd1-file-search:before {\n  content: \"\\eca9\";\n}\n.bd1-file-search-one:before {\n  content: \"\\ecaa\";\n}\n.bd1-file-search-two:before {\n  content: \"\\ecab\";\n}\n.bd1-file-settings:before {\n  content: \"\\ecac\";\n}\n.bd1-file-settings-one:before {\n  content: \"\\ecad\";\n}\n.bd1-file-staff:before {\n  content: \"\\ecae\";\n}\n.bd1-file-staff-one:before {\n  content: \"\\ecaf\";\n}\n.bd1-file-success:before {\n  content: \"\\ecb0\";\n}\n.bd1-file-success-one:before {\n  content: \"\\ecb1\";\n}\n.bd1-file-text:before {\n  content: \"\\ecb2\";\n}\n.bd1-file-text-one:before {\n  content: \"\\ecb3\";\n}\n.bd1-file-tips:before {\n  content: \"\\ecb4\";\n}\n.bd1-file-tips-one:before {\n  content: \"\\ecb5\";\n}\n.bd1-file-txt:before {\n  content: \"\\ecb6\";\n}\n.bd1-file-txt-one:before {\n  content: \"\\ecb7\";\n}\n.bd1-file-withdrawal:before {\n  content: \"\\ecb8\";\n}\n.bd1-file-withdrawal-one:before {\n  content: \"\\ecb9\";\n}\n.bd1-file-word:before {\n  content: \"\\ecba\";\n}\n.bd1-file-zip:before {\n  content: \"\\ecbb\";\n}\n.bd1-fill:before {\n  content: \"\\ecbc\";\n}\n.bd1-film:before {\n  content: \"\\ecbd\";\n}\n.bd1-filter:before {\n  content: \"\\ecbe\";\n}\n.bd1-filter-one:before {\n  content: \"\\ecbf\";\n}\n.bd1-finance:before {\n  content: \"\\ecc0\";\n}\n.bd1-financing:before {\n  content: \"\\ecc1\";\n}\n.bd1-financing-one:before {\n  content: \"\\ecc2\";\n}\n.bd1-financing-two:before {\n  content: \"\\ecc3\";\n}\n.bd1-find:before {\n  content: \"\\ecc4\";\n}\n.bd1-find-one:before {\n  content: \"\\ecc5\";\n}\n.bd1-fingernail:before {\n  content: \"\\ecc6\";\n}\n.bd1-fingerprint:before {\n  content: \"\\ecc7\";\n}\n.bd1-fingerprint-three:before {\n  content: \"\\ecc8\";\n}\n.bd1-fingerprint-two:before {\n  content: \"\\ecc9\";\n}\n.bd1-fire:before {\n  content: \"\\ecca\";\n}\n.bd1-fire-extinguisher:before {\n  content: \"\\eccb\";\n}\n.bd1-fire-extinguisher-one:before {\n  content: \"\\eccc\";\n}\n.bd1-fire-two:before {\n  content: \"\\eccd\";\n}\n.bd1-fireworks:before {\n  content: \"\\ecce\";\n}\n.bd1-first:before {\n  content: \"\\eccf\";\n}\n.bd1-first-aid-kit:before {\n  content: \"\\ecd0\";\n}\n.bd1-fish:before {\n  content: \"\\ecd1\";\n}\n.bd1-fishing:before {\n  content: \"\\ecd2\";\n}\n.bd1-fish-one:before {\n  content: \"\\ecd3\";\n}\n.bd1-fist:before {\n  content: \"\\ecd4\";\n}\n.bd1-fitness:before {\n  content: \"\\ecd5\";\n}\n.bd1-five:before {\n  content: \"\\ecd6\";\n}\n.bd1-five-ellipses:before {\n  content: \"\\ecd7\";\n}\n.bd1-five-five:before {\n  content: \"\\ecd8\";\n}\n.bd1-five-key:before {\n  content: \"\\ecd9\";\n}\n.bd1-five-star-badge:before {\n  content: \"\\ecda\";\n}\n.bd1-flag:before {\n  content: \"\\ecdb\";\n}\n.bd1-flashlamp:before {\n  content: \"\\ecdc\";\n}\n.bd1-flashlight:before {\n  content: \"\\ecdd\";\n}\n.bd1-flash-payment:before {\n  content: \"\\ecde\";\n}\n.bd1-flask:before {\n  content: \"\\ecdf\";\n}\n.bd1-flight-airflow:before {\n  content: \"\\ece0\";\n}\n.bd1-flight-safety:before {\n  content: \"\\ece1\";\n}\n.bd1-flip-camera:before {\n  content: \"\\ece2\";\n}\n.bd1-flip-horizontally:before {\n  content: \"\\ece3\";\n}\n.bd1-flip-vertically:before {\n  content: \"\\ece4\";\n}\n.bd1-flirt:before {\n  content: \"\\ece5\";\n}\n.bd1-float:before {\n  content: \"\\ece6\";\n}\n.bd1-floor-tile:before {\n  content: \"\\ece7\";\n}\n.bd1-fm:before {\n  content: \"\\ece8\";\n}\n.bd1-f-nine-key:before {\n  content: \"\\ece9\";\n}\n.bd1-f-n-key:before {\n  content: \"\\ecea\";\n}\n.bd1-focus:before {\n  content: \"\\eceb\";\n}\n.bd1-focus-one:before {\n  content: \"\\ecec\";\n}\n.bd1-fog:before {\n  content: \"\\eced\";\n}\n.bd1-folder:before {\n  content: \"\\ecee\";\n}\n.bd1-folder-block:before {\n  content: \"\\ecef\";\n}\n.bd1-folder-block-one:before {\n  content: \"\\ecf0\";\n}\n.bd1-folder-close:before {\n  content: \"\\ecf1\";\n}\n.bd1-folder-code:before {\n  content: \"\\ecf2\";\n}\n.bd1-folder-code-one:before {\n  content: \"\\ecf3\";\n}\n.bd1-folder-conversion:before {\n  content: \"\\ecf4\";\n}\n.bd1-folder-conversion-one:before {\n  content: \"\\ecf5\";\n}\n.bd1-folder-download:before {\n  content: \"\\ecf6\";\n}\n.bd1-folder-failed:before {\n  content: \"\\ecf7\";\n}\n.bd1-folder-failed-one:before {\n  content: \"\\ecf8\";\n}\n.bd1-folder-focus:before {\n  content: \"\\ecf9\";\n}\n.bd1-folder-focus-one:before {\n  content: \"\\ecfa\";\n}\n.bd1-folder-lock:before {\n  content: \"\\ecfb\";\n}\n.bd1-folder-lock-one:before {\n  content: \"\\ecfc\";\n}\n.bd1-folder-minus:before {\n  content: \"\\ecfd\";\n}\n.bd1-folder-music:before {\n  content: \"\\ecfe\";\n}\n.bd1-folder-music-one:before {\n  content: \"\\ecff\";\n}\n.bd1-folder-one:before {\n  content: \"\\ed00\";\n}\n.bd1-folder-open:before {\n  content: \"\\ed01\";\n}\n.bd1-folder-plus:before {\n  content: \"\\ed02\";\n}\n.bd1-folder-protection:before {\n  content: \"\\ed03\";\n}\n.bd1-folder-protection-one:before {\n  content: \"\\ed04\";\n}\n.bd1-folder-quality:before {\n  content: \"\\ed05\";\n}\n.bd1-folder-quality-one:before {\n  content: \"\\ed06\";\n}\n.bd1-folder-search:before {\n  content: \"\\ed07\";\n}\n.bd1-folder-search-one:before {\n  content: \"\\ed08\";\n}\n.bd1-folder-settings:before {\n  content: \"\\ed09\";\n}\n.bd1-folder-settings-one:before {\n  content: \"\\ed0a\";\n}\n.bd1-folder-success:before {\n  content: \"\\ed0b\";\n}\n.bd1-folder-success-one:before {\n  content: \"\\ed0c\";\n}\n.bd1-folder-upload:before {\n  content: \"\\ed0d\";\n}\n.bd1-folder-withdrawal:before {\n  content: \"\\ed0e\";\n}\n.bd1-folder-withdrawal-one:before {\n  content: \"\\ed0f\";\n}\n.bd1-fold-up-one:before {\n  content: \"\\ed10\";\n}\n.bd1-follow-up-date-sort:before {\n  content: \"\\ed11\";\n}\n.bd1-f-one-key:before {\n  content: \"\\ed12\";\n}\n.bd1-font-search:before {\n  content: \"\\ed13\";\n}\n.bd1-font-size:before {\n  content: \"\\ed14\";\n}\n.bd1-font-size-two:before {\n  content: \"\\ed15\";\n}\n.bd1-foot:before {\n  content: \"\\ed16\";\n}\n.bd1-football:before {\n  content: \"\\ed17\";\n}\n.bd1-forbid:before {\n  content: \"\\ed18\";\n}\n.bd1-fork:before {\n  content: \"\\ed19\";\n}\n.bd1-fork-spoon:before {\n  content: \"\\ed1a\";\n}\n.bd1-form:before {\n  content: \"\\ed1b\";\n}\n.bd1-format:before {\n  content: \"\\ed1c\";\n}\n.bd1-format-brush:before {\n  content: \"\\ed1d\";\n}\n.bd1-form-one:before {\n  content: \"\\ed1e\";\n}\n.bd1-formula:before {\n  content: \"\\ed1f\";\n}\n.bd1-foundation-makeup:before {\n  content: \"\\ed20\";\n}\n.bd1-four:before {\n  content: \"\\ed21\";\n}\n.bd1-four-arrows:before {\n  content: \"\\ed22\";\n}\n.bd1-four-four:before {\n  content: \"\\ed23\";\n}\n.bd1-four-key:before {\n  content: \"\\ed24\";\n}\n.bd1-four-leaves:before {\n  content: \"\\ed25\";\n}\n.bd1-four-point-connection:before {\n  content: \"\\ed26\";\n}\n.bd1-four-round-point-connection:before {\n  content: \"\\ed27\";\n}\n.bd1-foursquare:before {\n  content: \"\\ed28\";\n}\n.bd1-freeze-column:before {\n  content: \"\\ed29\";\n}\n.bd1-freeze-line:before {\n  content: \"\\ed2a\";\n}\n.bd1-freezing-line-column:before {\n  content: \"\\ed2b\";\n}\n.bd1-french-fries:before {\n  content: \"\\ed2c\";\n}\n.bd1-friends-circle:before {\n  content: \"\\ed2d\";\n}\n.bd1-frigate:before {\n  content: \"\\ed2e\";\n}\n.bd1-frog:before {\n  content: \"\\ed2f\";\n}\n.bd1-frowning-face-whit-open-mouth:before {\n  content: \"\\ed30\";\n}\n.bd1-fruiter:before {\n  content: \"\\ed31\";\n}\n.bd1-f-seven-key:before {\n  content: \"\\ed32\";\n}\n.bd1-f-six-key:before {\n  content: \"\\ed33\";\n}\n.bd1-f-three-key:before {\n  content: \"\\ed34\";\n}\n.bd1-f-two-key:before {\n  content: \"\\ed35\";\n}\n.bd1-full-dress-longuette:before {\n  content: \"\\ed36\";\n}\n.bd1-full-screen:before {\n  content: \"\\ed37\";\n}\n.bd1-full-screen-one:before {\n  content: \"\\ed38\";\n}\n.bd1-full-screen-play:before {\n  content: \"\\ed39\";\n}\n.bd1-full-screen-two:before {\n  content: \"\\ed3a\";\n}\n.bd1-full-selection:before {\n  content: \"\\ed3b\";\n}\n.bd1-fullwidth:before {\n  content: \"\\ed3c\";\n}\n.bd1-funds:before {\n  content: \"\\ed3d\";\n}\n.bd1-future-build-one:before {\n  content: \"\\ed3e\";\n}\n.bd1-future-build-three:before {\n  content: \"\\ed3f\";\n}\n.bd1-future-build-two:before {\n  content: \"\\ed40\";\n}\n.bd1-f-zero-key:before {\n  content: \"\\ed41\";\n}\n.bd1-game:before {\n  content: \"\\ed42\";\n}\n.bd1-game-console:before {\n  content: \"\\ed43\";\n}\n.bd1-game-console-one:before {\n  content: \"\\ed44\";\n}\n.bd1-game-emoji:before {\n  content: \"\\ed45\";\n}\n.bd1-game-handle:before {\n  content: \"\\ed46\";\n}\n.bd1-gamepad:before {\n  content: \"\\ed47\";\n}\n.bd1-game-ps:before {\n  content: \"\\ed48\";\n}\n.bd1-game-three:before {\n  content: \"\\ed49\";\n}\n.bd1-game-two:before {\n  content: \"\\ed4a\";\n}\n.bd1-garage:before {\n  content: \"\\ed4b\";\n}\n.bd1-garlic:before {\n  content: \"\\ed4c\";\n}\n.bd1-gas:before {\n  content: \"\\ed4d\";\n}\n.bd1-gastrointestinal:before {\n  content: \"\\ed4e\";\n}\n.bd1-gate:before {\n  content: \"\\ed4f\";\n}\n.bd1-gate-machine:before {\n  content: \"\\ed50\";\n}\n.bd1-gauze:before {\n  content: \"\\ed51\";\n}\n.bd1-gavel:before {\n  content: \"\\ed52\";\n}\n.bd1-gemini:before {\n  content: \"\\ed53\";\n}\n.bd1-general-branch:before {\n  content: \"\\ed54\";\n}\n.bd1-geometric-flowers:before {\n  content: \"\\ed55\";\n}\n.bd1-germs:before {\n  content: \"\\ed56\";\n}\n.bd1-ghost:before {\n  content: \"\\ed57\";\n}\n.bd1-gift:before {\n  content: \"\\ed58\";\n}\n.bd1-gift-bag:before {\n  content: \"\\ed59\";\n}\n.bd1-gift-box:before {\n  content: \"\\ed5a\";\n}\n.bd1-girl:before {\n  content: \"\\ed5b\";\n}\n.bd1-girl-one:before {\n  content: \"\\ed5c\";\n}\n.bd1-girl-two:before {\n  content: \"\\ed5d\";\n}\n.bd1-github:before {\n  content: \"\\ed5e\";\n}\n.bd1-github-one:before {\n  content: \"\\ed5f\";\n}\n.bd1-gitlab:before {\n  content: \"\\ed60\";\n}\n.bd1-glasses:before {\n  content: \"\\ed61\";\n}\n.bd1-glasses-one:before {\n  content: \"\\ed62\";\n}\n.bd1-glasses-three:before {\n  content: \"\\ed63\";\n}\n.bd1-globe:before {\n  content: \"\\ed64\";\n}\n.bd1-glove:before {\n  content: \"\\ed65\";\n}\n.bd1-go-ahead:before {\n  content: \"\\ed66\";\n}\n.bd1-goblet:before {\n  content: \"\\ed67\";\n}\n.bd1-goblet-cracking:before {\n  content: \"\\ed68\";\n}\n.bd1-goblet-full:before {\n  content: \"\\ed69\";\n}\n.bd1-goblet-one:before {\n  content: \"\\ed6a\";\n}\n.bd1-go-end:before {\n  content: \"\\ed6b\";\n}\n.bd1-gold-medal:before {\n  content: \"\\ed6c\";\n}\n.bd1-gold-medal-two:before {\n  content: \"\\ed6d\";\n}\n.bd1-golf-course:before {\n  content: \"\\ed6e\";\n}\n.bd1-gongfu:before {\n  content: \"\\ed6f\";\n}\n.bd1-good:before {\n  content: \"\\ed70\";\n}\n.bd1-good-one:before {\n  content: \"\\ed71\";\n}\n.bd1-good-two:before {\n  content: \"\\ed72\";\n}\n.bd1-google:before {\n  content: \"\\ed73\";\n}\n.bd1-google-ads:before {\n  content: \"\\ed74\";\n}\n.bd1-go-on:before {\n  content: \"\\ed75\";\n}\n.bd1-gopro:before {\n  content: \"\\ed76\";\n}\n.bd1-go-start:before {\n  content: \"\\ed77\";\n}\n.bd1-gps:before {\n  content: \"\\ed78\";\n}\n.bd1-graphic-design:before {\n  content: \"\\ed79\";\n}\n.bd1-graphic-design-two:before {\n  content: \"\\ed7a\";\n}\n.bd1-graphic-stitching:before {\n  content: \"\\ed7b\";\n}\n.bd1-graphic-stitching-four:before {\n  content: \"\\ed7c\";\n}\n.bd1-graphic-stitching-three:before {\n  content: \"\\ed7d\";\n}\n.bd1-great-wall:before {\n  content: \"\\ed7e\";\n}\n.bd1-green-house:before {\n  content: \"\\ed7f\";\n}\n.bd1-green-new-energy:before {\n  content: \"\\ed80\";\n}\n.bd1-grid-four:before {\n  content: \"\\ed81\";\n}\n.bd1-grid-nine:before {\n  content: \"\\ed82\";\n}\n.bd1-grid-sixteen:before {\n  content: \"\\ed83\";\n}\n.bd1-grid-three:before {\n  content: \"\\ed84\";\n}\n.bd1-grid-two:before {\n  content: \"\\ed85\";\n}\n.bd1-grimacing-face:before {\n  content: \"\\ed86\";\n}\n.bd1-grinning-face:before {\n  content: \"\\ed87\";\n}\n.bd1-grinning-face-with-open-mouth:before {\n  content: \"\\ed88\";\n}\n.bd1-grinning-face-with-squinting-eyes:before {\n  content: \"\\ed89\";\n}\n.bd1-grinning-face-with-tightly-closed-eyes:before {\n  content: \"\\ed8a\";\n}\n.bd1-grinning-face-with-tightly-closed-eyes-open-mouth:before {\n  content: \"\\ed8b\";\n}\n.bd1-group:before {\n  content: \"\\ed8c\";\n}\n.bd1-guide-board:before {\n  content: \"\\ed8d\";\n}\n.bd1-gymnastics:before {\n  content: \"\\ed8e\";\n}\n.bd1-gymnastics-one:before {\n  content: \"\\ed8f\";\n}\n.bd1-h:before {\n  content: \"\\ed90\";\n}\n.bd1-h1:before {\n  content: \"\\ed91\";\n}\n.bd1-h2:before {\n  content: \"\\ed92\";\n}\n.bd1-h3:before {\n  content: \"\\ed93\";\n}\n.bd1-hair-brush:before {\n  content: \"\\ed94\";\n}\n.bd1-hair-clip:before {\n  content: \"\\ed95\";\n}\n.bd1-hair-dryer:before {\n  content: \"\\ed96\";\n}\n.bd1-hair-dryer-one:before {\n  content: \"\\ed97\";\n}\n.bd1-halo:before {\n  content: \"\\ed98\";\n}\n.bd1-hamburger:before {\n  content: \"\\ed99\";\n}\n.bd1-hamburger-button:before {\n  content: \"\\ed9a\";\n}\n.bd1-hamburger-one:before {\n  content: \"\\ed9b\";\n}\n.bd1-hammer-and-anvil:before {\n  content: \"\\ed9c\";\n}\n.bd1-handbag:before {\n  content: \"\\ed9d\";\n}\n.bd1-hand-cream:before {\n  content: \"\\ed9e\";\n}\n.bd1-hand-down:before {\n  content: \"\\ed9f\";\n}\n.bd1-hand-drag:before {\n  content: \"\\eda0\";\n}\n.bd1-handheld:before {\n  content: \"\\eda1\";\n}\n.bd1-handle-a:before {\n  content: \"\\eda2\";\n}\n.bd1-handle-b:before {\n  content: \"\\eda3\";\n}\n.bd1-handle-c:before {\n  content: \"\\eda4\";\n}\n.bd1-handle-down:before {\n  content: \"\\eda5\";\n}\n.bd1-hand-left:before {\n  content: \"\\eda6\";\n}\n.bd1-handle-left:before {\n  content: \"\\eda7\";\n}\n.bd1-handle-right:before {\n  content: \"\\eda8\";\n}\n.bd1-handle-round:before {\n  content: \"\\eda9\";\n}\n.bd1-handle-square:before {\n  content: \"\\edaa\";\n}\n.bd1-handle-triangle:before {\n  content: \"\\edab\";\n}\n.bd1-handle-up:before {\n  content: \"\\edac\";\n}\n.bd1-handle-x:before {\n  content: \"\\edad\";\n}\n.bd1-handle-y:before {\n  content: \"\\edae\";\n}\n.bd1-handle-z:before {\n  content: \"\\edaf\";\n}\n.bd1-hand-painted-plate:before {\n  content: \"\\edb0\";\n}\n.bd1-hand-right:before {\n  content: \"\\edb1\";\n}\n.bd1-hands:before {\n  content: \"\\edb2\";\n}\n.bd1-hand-up:before {\n  content: \"\\edb3\";\n}\n.bd1-handwashing:before {\n  content: \"\\edb4\";\n}\n.bd1-handwashing-fluid:before {\n  content: \"\\edb5\";\n}\n.bd1-hanfu-chinese-style:before {\n  content: \"\\edb6\";\n}\n.bd1-hanger:before {\n  content: \"\\edb7\";\n}\n.bd1-hanger-one:before {\n  content: \"\\edb8\";\n}\n.bd1-hanger-two:before {\n  content: \"\\edb9\";\n}\n.bd1-hard-disk:before {\n  content: \"\\edba\";\n}\n.bd1-hard-disk-one:before {\n  content: \"\\edbb\";\n}\n.bd1-harm:before {\n  content: \"\\edbc\";\n}\n.bd1-hashtag-key:before {\n  content: \"\\edbd\";\n}\n.bd1-hat:before {\n  content: \"\\edbe\";\n}\n.bd1-hdd:before {\n  content: \"\\edbf\";\n}\n.bd1-hdmi-cable:before {\n  content: \"\\edc0\";\n}\n.bd1-hdmi-connector:before {\n  content: \"\\edc1\";\n}\n.bd1-headphone-sound:before {\n  content: \"\\edc2\";\n}\n.bd1-headset:before {\n  content: \"\\edc3\";\n}\n.bd1-headset-one:before {\n  content: \"\\edc4\";\n}\n.bd1-headset-two:before {\n  content: \"\\edc5\";\n}\n.bd1-headwear:before {\n  content: \"\\edc6\";\n}\n.bd1-health:before {\n  content: \"\\edc7\";\n}\n.bd1-health-products:before {\n  content: \"\\edc8\";\n}\n.bd1-healthy-recognition:before {\n  content: \"\\edc9\";\n}\n.bd1-heart:before {\n  content: \"\\edca\";\n}\n.bd1-heart-ballon:before {\n  content: \"\\edcb\";\n}\n.bd1-heartbeat:before {\n  content: \"\\edcc\";\n}\n.bd1-heart-rate:before {\n  content: \"\\edcd\";\n}\n.bd1-heater-resistor:before {\n  content: \"\\edce\";\n}\n.bd1-heavy-metal:before {\n  content: \"\\edcf\";\n}\n.bd1-heavy-rain:before {\n  content: \"\\edd0\";\n}\n.bd1-heavy-wind:before {\n  content: \"\\edd1\";\n}\n.bd1-helmet:before {\n  content: \"\\edd2\";\n}\n.bd1-helmet-one:before {\n  content: \"\\edd3\";\n}\n.bd1-help:before {\n  content: \"\\edd4\";\n}\n.bd1-helpcenter:before {\n  content: \"\\edd5\";\n}\n.bd1-hexagonal:before {\n  content: \"\\edd6\";\n}\n.bd1-hexagon-one:before {\n  content: \"\\edd7\";\n}\n.bd1-hexagon-strip:before {\n  content: \"\\edd8\";\n}\n.bd1-hi:before {\n  content: \"\\edd9\";\n}\n.bd1-high-heeled-shoes:before {\n  content: \"\\edda\";\n}\n.bd1-high-light:before {\n  content: \"\\eddb\";\n}\n.bd1-high-speed-rail:before {\n  content: \"\\eddc\";\n}\n.bd1-hippo:before {\n  content: \"\\eddd\";\n}\n.bd1-histogram:before {\n  content: \"\\edde\";\n}\n.bd1-history:before {\n  content: \"\\eddf\";\n}\n.bd1-history-query:before {\n  content: \"\\ede0\";\n}\n.bd1-hockey:before {\n  content: \"\\ede1\";\n}\n.bd1-hold:before {\n  content: \"\\ede2\";\n}\n.bd1-holding-hands:before {\n  content: \"\\ede3\";\n}\n.bd1-hold-interface:before {\n  content: \"\\ede4\";\n}\n.bd1-hold-seeds:before {\n  content: \"\\ede5\";\n}\n.bd1-holy-sword:before {\n  content: \"\\ede6\";\n}\n.bd1-home:before {\n  content: \"\\ede7\";\n}\n.bd1-homestay:before {\n  content: \"\\ede8\";\n}\n.bd1-home-two:before {\n  content: \"\\ede9\";\n}\n.bd1-honey:before {\n  content: \"\\edea\";\n}\n.bd1-honey-one:before {\n  content: \"\\edeb\";\n}\n.bd1-horizontally-centered:before {\n  content: \"\\edec\";\n}\n.bd1-horizontal-spacing-between-items:before {\n  content: \"\\eded\";\n}\n.bd1-horizontal-tidy-up:before {\n  content: \"\\edee\";\n}\n.bd1-horse-zodiac:before {\n  content: \"\\edef\";\n}\n.bd1-hospital:before {\n  content: \"\\edf0\";\n}\n.bd1-hospital-bed:before {\n  content: \"\\edf1\";\n}\n.bd1-hospital-four:before {\n  content: \"\\edf2\";\n}\n.bd1-hospital-three:before {\n  content: \"\\edf3\";\n}\n.bd1-hospital-two:before {\n  content: \"\\edf4\";\n}\n.bd1-hot-air-balloon:before {\n  content: \"\\edf5\";\n}\n.bd1-hotel:before {\n  content: \"\\edf6\";\n}\n.bd1-hotel-do-not-clean:before {\n  content: \"\\edf7\";\n}\n.bd1-hotel-please-clean:before {\n  content: \"\\edf8\";\n}\n.bd1-hot-pot:before {\n  content: \"\\edf9\";\n}\n.bd1-hot-pot-one:before {\n  content: \"\\edfa\";\n}\n.bd1-hourglass:before {\n  content: \"\\edfb\";\n}\n.bd1-hourglass-full:before {\n  content: \"\\edfc\";\n}\n.bd1-hourglass-null:before {\n  content: \"\\edfd\";\n}\n.bd1-html-five:before {\n  content: \"\\edfe\";\n}\n.bd1-hunting-gear:before {\n  content: \"\\edff\";\n}\n.bd1-huoshanzhibo:before {\n  content: \"\\ee00\";\n}\n.bd1-icecream:before {\n  content: \"\\ee01\";\n}\n.bd1-icecream-five:before {\n  content: \"\\ee02\";\n}\n.bd1-icecream-four:before {\n  content: \"\\ee03\";\n}\n.bd1-icecream-one:before {\n  content: \"\\ee04\";\n}\n.bd1-icecream-three:before {\n  content: \"\\ee05\";\n}\n.bd1-icecream-two:before {\n  content: \"\\ee06\";\n}\n.bd1-id-card:before {\n  content: \"\\ee07\";\n}\n.bd1-id-card-h:before {\n  content: \"\\ee08\";\n}\n.bd1-id-card-v:before {\n  content: \"\\ee09\";\n}\n.bd1-i-mac:before {\n  content: \"\\ee0a\";\n}\n.bd1-image-files:before {\n  content: \"\\ee0b\";\n}\n.bd1-imbalance:before {\n  content: \"\\ee0c\";\n}\n.bd1-import-and-export:before {\n  content: \"\\ee0d\";\n}\n.bd1-inbox:before {\n  content: \"\\ee0e\";\n}\n.bd1-inbox-download-r:before {\n  content: \"\\ee0f\";\n}\n.bd1-inbox-in:before {\n  content: \"\\ee10\";\n}\n.bd1-inbox-out:before {\n  content: \"\\ee11\";\n}\n.bd1-inbox-r:before {\n  content: \"\\ee12\";\n}\n.bd1-inbox-success:before {\n  content: \"\\ee13\";\n}\n.bd1-inbox-success-r:before {\n  content: \"\\ee14\";\n}\n.bd1-inbox-upload-r:before {\n  content: \"\\ee15\";\n}\n.bd1-inclusive-gateway:before {\n  content: \"\\ee16\";\n}\n.bd1-income:before {\n  content: \"\\ee17\";\n}\n.bd1-income-one:before {\n  content: \"\\ee18\";\n}\n.bd1-incoming:before {\n  content: \"\\ee19\";\n}\n.bd1-increase:before {\n  content: \"\\ee1a\";\n}\n.bd1-increase-the-scale:before {\n  content: \"\\ee1b\";\n}\n.bd1-indent-left:before {\n  content: \"\\ee1c\";\n}\n.bd1-indent-right:before {\n  content: \"\\ee1d\";\n}\n.bd1-index-finger:before {\n  content: \"\\ee1e\";\n}\n.bd1-induction-lock:before {\n  content: \"\\ee1f\";\n}\n.bd1-industrial-scales:before {\n  content: \"\\ee20\";\n}\n.bd1-in-flight:before {\n  content: \"\\ee21\";\n}\n.bd1-info:before {\n  content: \"\\ee22\";\n}\n.bd1-infusion:before {\n  content: \"\\ee23\";\n}\n.bd1-injection:before {\n  content: \"\\ee24\";\n}\n.bd1-inline:before {\n  content: \"\\ee25\";\n}\n.bd1-inner-shadow-bottom-left:before {\n  content: \"\\ee26\";\n}\n.bd1-inner-shadow-bottom-right:before {\n  content: \"\\ee27\";\n}\n.bd1-inner-shadow-down:before {\n  content: \"\\ee28\";\n}\n.bd1-inner-shadow-left:before {\n  content: \"\\ee29\";\n}\n.bd1-inner-shadow-right:before {\n  content: \"\\ee2a\";\n}\n.bd1-inner-shadow-top-left:before {\n  content: \"\\ee2b\";\n}\n.bd1-inner-shadow-top-right:before {\n  content: \"\\ee2c\";\n}\n.bd1-inner-shadow-up:before {\n  content: \"\\ee2d\";\n}\n.bd1-insert-card:before {\n  content: \"\\ee2e\";\n}\n.bd1-insert-table:before {\n  content: \"\\ee2f\";\n}\n.bd1-inspection:before {\n  content: \"\\ee30\";\n}\n.bd1-instagram:before {\n  content: \"\\ee31\";\n}\n.bd1-instagram-one:before {\n  content: \"\\ee32\";\n}\n.bd1-install:before {\n  content: \"\\ee33\";\n}\n.bd1-instruction:before {\n  content: \"\\ee34\";\n}\n.bd1-intercom:before {\n  content: \"\\ee35\";\n}\n.bd1-intermediate-mode:before {\n  content: \"\\ee36\";\n}\n.bd1-internal-data:before {\n  content: \"\\ee37\";\n}\n.bd1-internal-expansion:before {\n  content: \"\\ee38\";\n}\n.bd1-internal-reduction:before {\n  content: \"\\ee39\";\n}\n.bd1-internal-transmission:before {\n  content: \"\\ee3a\";\n}\n.bd1-international:before {\n  content: \"\\ee3b\";\n}\n.bd1-intersection:before {\n  content: \"\\ee3c\";\n}\n.bd1-intersect-selection:before {\n  content: \"\\ee3d\";\n}\n.bd1-invalid-files:before {\n  content: \"\\ee3e\";\n}\n.bd1-invert-camera:before {\n  content: \"\\ee3f\";\n}\n.bd1-invert-left:before {\n  content: \"\\ee40\";\n}\n.bd1-invert-right:before {\n  content: \"\\ee41\";\n}\n.bd1-ios-face-recognition:before {\n  content: \"\\ee42\";\n}\n.bd1-ipad:before {\n  content: \"\\ee43\";\n}\n.bd1-ipad-one:before {\n  content: \"\\ee44\";\n}\n.bd1-iphone:before {\n  content: \"\\ee45\";\n}\n.bd1-ipo:before {\n  content: \"\\ee46\";\n}\n.bd1-iron:before {\n  content: \"\\ee47\";\n}\n.bd1-iron-disable:before {\n  content: \"\\ee48\";\n}\n.bd1-iron-three:before {\n  content: \"\\ee49\";\n}\n.bd1-iron-two:before {\n  content: \"\\ee4a\";\n}\n.bd1-iwatch:before {\n  content: \"\\ee4b\";\n}\n.bd1-iwatch-one:before {\n  content: \"\\ee4c\";\n}\n.bd1-iwatch-two:before {\n  content: \"\\ee4d\";\n}\n.bd1-jewelry:before {\n  content: \"\\ee4e\";\n}\n.bd1-jinritoutiao:before {\n  content: \"\\ee4f\";\n}\n.bd1-journey:before {\n  content: \"\\ee50\";\n}\n.bd1-joystick:before {\n  content: \"\\ee51\";\n}\n.bd1-juice:before {\n  content: \"\\ee52\";\n}\n.bd1-jump:before {\n  content: \"\\ee53\";\n}\n.bd1-kagi-map:before {\n  content: \"\\ee54\";\n}\n.bd1-kettle:before {\n  content: \"\\ee55\";\n}\n.bd1-kettle-one:before {\n  content: \"\\ee56\";\n}\n.bd1-key:before {\n  content: \"\\ee57\";\n}\n.bd1-keyboard:before {\n  content: \"\\ee58\";\n}\n.bd1-keyboard-one:before {\n  content: \"\\ee59\";\n}\n.bd1-keyhole:before {\n  content: \"\\ee5a\";\n}\n.bd1-keyline:before {\n  content: \"\\ee5b\";\n}\n.bd1-key-one:before {\n  content: \"\\ee5c\";\n}\n.bd1-key-two:before {\n  content: \"\\ee5d\";\n}\n.bd1-kitchen-knife:before {\n  content: \"\\ee5e\";\n}\n.bd1-knife-fork:before {\n  content: \"\\ee5f\";\n}\n.bd1-koala-bear:before {\n  content: \"\\ee60\";\n}\n.bd1-kungfu:before {\n  content: \"\\ee61\";\n}\n.bd1-label:before {\n  content: \"\\ee62\";\n}\n.bd1-ladder:before {\n  content: \"\\ee63\";\n}\n.bd1-ladder-one:before {\n  content: \"\\ee64\";\n}\n.bd1-lamp:before {\n  content: \"\\ee65\";\n}\n.bd1-landing:before {\n  content: \"\\ee66\";\n}\n.bd1-landscape:before {\n  content: \"\\ee67\";\n}\n.bd1-land-surveying:before {\n  content: \"\\ee68\";\n}\n.bd1-laptop:before {\n  content: \"\\ee69\";\n}\n.bd1-laptop-computer:before {\n  content: \"\\ee6a\";\n}\n.bd1-laptop-one:before {\n  content: \"\\ee6b\";\n}\n.bd1-lark:before {\n  content: \"\\ee6c\";\n}\n.bd1-lark-one:before {\n  content: \"\\ee6d\";\n}\n.bd1-lattice-pattern:before {\n  content: \"\\ee6e\";\n}\n.bd1-layers:before {\n  content: \"\\ee6f\";\n}\n.bd1-layout-five:before {\n  content: \"\\ee70\";\n}\n.bd1-layout-four:before {\n  content: \"\\ee71\";\n}\n.bd1-layout-one:before {\n  content: \"\\ee72\";\n}\n.bd1-layout-three:before {\n  content: \"\\ee73\";\n}\n.bd1-layout-two:before {\n  content: \"\\ee74\";\n}\n.bd1-leaf:before {\n  content: \"\\ee75\";\n}\n.bd1-leaves:before {\n  content: \"\\ee76\";\n}\n.bd1-leaves-one:before {\n  content: \"\\ee77\";\n}\n.bd1-leaves-two:before {\n  content: \"\\ee78\";\n}\n.bd1-led-diode:before {\n  content: \"\\ee79\";\n}\n.bd1-left:before {\n  content: \"\\ee7a\";\n}\n.bd1-left-alignment:before {\n  content: \"\\ee7b\";\n}\n.bd1-left-and-right-branch:before {\n  content: \"\\ee7c\";\n}\n.bd1-left-bar:before {\n  content: \"\\ee7d\";\n}\n.bd1-left-branch:before {\n  content: \"\\ee7e\";\n}\n.bd1-left-c:before {\n  content: \"\\ee7f\";\n}\n.bd1-left-expand:before {\n  content: \"\\ee80\";\n}\n.bd1-left-one:before {\n  content: \"\\ee81\";\n}\n.bd1-left-small:before {\n  content: \"\\ee82\";\n}\n.bd1-left-small-down:before {\n  content: \"\\ee83\";\n}\n.bd1-left-small-up:before {\n  content: \"\\ee84\";\n}\n.bd1-left-square:before {\n  content: \"\\ee85\";\n}\n.bd1-left-two:before {\n  content: \"\\ee86\";\n}\n.bd1-lemon:before {\n  content: \"\\ee87\";\n}\n.bd1-lens-alignment:before {\n  content: \"\\ee88\";\n}\n.bd1-leo:before {\n  content: \"\\ee89\";\n}\n.bd1-level:before {\n  content: \"\\ee8a\";\n}\n.bd1-level-adjustment:before {\n  content: \"\\ee8b\";\n}\n.bd1-level-eight-title:before {\n  content: \"\\ee8c\";\n}\n.bd1-level-five-title:before {\n  content: \"\\ee8d\";\n}\n.bd1-level-four-title:before {\n  content: \"\\ee8e\";\n}\n.bd1-level-nine-title:before {\n  content: \"\\ee8f\";\n}\n.bd1-level-seven-title:before {\n  content: \"\\ee90\";\n}\n.bd1-level-six-title:before {\n  content: \"\\ee91\";\n}\n.bd1-libra:before {\n  content: \"\\ee92\";\n}\n.bd1-lifebuoy:before {\n  content: \"\\ee93\";\n}\n.bd1-light:before {\n  content: \"\\ee94\";\n}\n.bd1-light-house:before {\n  content: \"\\ee95\";\n}\n.bd1-light-member:before {\n  content: \"\\ee96\";\n}\n.bd1-lightning:before {\n  content: \"\\ee97\";\n}\n.bd1-light-rain:before {\n  content: \"\\ee98\";\n}\n.bd1-like:before {\n  content: \"\\ee99\";\n}\n.bd1-lincoln:before {\n  content: \"\\ee9a\";\n}\n.bd1-link:before {\n  content: \"\\ee9b\";\n}\n.bd1-link-break:before {\n  content: \"\\ee9c\";\n}\n.bd1-link-cloud:before {\n  content: \"\\ee9d\";\n}\n.bd1-link-cloud-faild:before {\n  content: \"\\ee9e\";\n}\n.bd1-link-cloud-sucess:before {\n  content: \"\\ee9f\";\n}\n.bd1-link-four:before {\n  content: \"\\eea0\";\n}\n.bd1-link-in:before {\n  content: \"\\eea1\";\n}\n.bd1-link-interrupt:before {\n  content: \"\\eea2\";\n}\n.bd1-link-left:before {\n  content: \"\\eea3\";\n}\n.bd1-link-one:before {\n  content: \"\\eea4\";\n}\n.bd1-link-out:before {\n  content: \"\\eea5\";\n}\n.bd1-link-right:before {\n  content: \"\\eea6\";\n}\n.bd1-link-three:before {\n  content: \"\\eea7\";\n}\n.bd1-link-two:before {\n  content: \"\\eea8\";\n}\n.bd1-lip-gloss:before {\n  content: \"\\eea9\";\n}\n.bd1-lipstick:before {\n  content: \"\\eeaa\";\n}\n.bd1-lipstick-one:before {\n  content: \"\\eeab\";\n}\n.bd1-lip-tattoo:before {\n  content: \"\\eeac\";\n}\n.bd1-liqueur:before {\n  content: \"\\eead\";\n}\n.bd1-list:before {\n  content: \"\\eeae\";\n}\n.bd1-list-add:before {\n  content: \"\\eeaf\";\n}\n.bd1-list-alphabet:before {\n  content: \"\\eeb0\";\n}\n.bd1-list-bottom:before {\n  content: \"\\eeb1\";\n}\n.bd1-list-checkbox:before {\n  content: \"\\eeb2\";\n}\n.bd1-list-fail:before {\n  content: \"\\eeb3\";\n}\n.bd1-list-middle:before {\n  content: \"\\eeb4\";\n}\n.bd1-list-numbers:before {\n  content: \"\\eeb5\";\n}\n.bd1-list-one:before {\n  content: \"\\eeb6\";\n}\n.bd1-list-success:before {\n  content: \"\\eeb7\";\n}\n.bd1-list-top:before {\n  content: \"\\eeb8\";\n}\n.bd1-list-two:before {\n  content: \"\\eeb9\";\n}\n.bd1-list-view:before {\n  content: \"\\eeba\";\n}\n.bd1-loading:before {\n  content: \"\\eebb\";\n}\n.bd1-loading-four:before {\n  content: \"\\eebc\";\n}\n.bd1-loading-one:before {\n  content: \"\\eebd\";\n}\n.bd1-loading-three:before {\n  content: \"\\eebe\";\n}\n.bd1-loading-two:before {\n  content: \"\\eebf\";\n}\n.bd1-local:before {\n  content: \"\\eec0\";\n}\n.bd1-local-pin:before {\n  content: \"\\eec1\";\n}\n.bd1-local-two:before {\n  content: \"\\eec2\";\n}\n.bd1-lock:before {\n  content: \"\\eec3\";\n}\n.bd1-locking-computer:before {\n  content: \"\\eec4\";\n}\n.bd1-locking-laptop:before {\n  content: \"\\eec5\";\n}\n.bd1-locking-picture:before {\n  content: \"\\eec6\";\n}\n.bd1-locking-web:before {\n  content: \"\\eec7\";\n}\n.bd1-lock-one:before {\n  content: \"\\eec8\";\n}\n.bd1-log:before {\n  content: \"\\eec9\";\n}\n.bd1-login:before {\n  content: \"\\eeca\";\n}\n.bd1-logout:before {\n  content: \"\\eecb\";\n}\n.bd1-lollipop:before {\n  content: \"\\eecc\";\n}\n.bd1-loop-once:before {\n  content: \"\\eecd\";\n}\n.bd1-lotion:before {\n  content: \"\\eece\";\n}\n.bd1-lotus:before {\n  content: \"\\eecf\";\n}\n.bd1-loudly-crying-face:before {\n  content: \"\\eed0\";\n}\n.bd1-loudly-crying-face-whit-open-mouth:before {\n  content: \"\\eed1\";\n}\n.bd1-love-and-help:before {\n  content: \"\\eed2\";\n}\n.bd1-lower-branch:before {\n  content: \"\\eed3\";\n}\n.bd1-luggage:before {\n  content: \"\\eed4\";\n}\n.bd1-luminous:before {\n  content: \"\\eed5\";\n}\n.bd1-lung:before {\n  content: \"\\eed6\";\n}\n.bd1-macadamia-nut:before {\n  content: \"\\eed7\";\n}\n.bd1-mac-finder:before {\n  content: \"\\eed8\";\n}\n.bd1-magic:before {\n  content: \"\\eed9\";\n}\n.bd1-magic-hat:before {\n  content: \"\\eeda\";\n}\n.bd1-magic-wand:before {\n  content: \"\\eedb\";\n}\n.bd1-magnet:before {\n  content: \"\\eedc\";\n}\n.bd1-mail:before {\n  content: \"\\eedd\";\n}\n.bd1-mail-download:before {\n  content: \"\\eede\";\n}\n.bd1-mail-edit:before {\n  content: \"\\eedf\";\n}\n.bd1-maill-one:before {\n  content: \"\\eee0\";\n}\n.bd1-mail-open:before {\n  content: \"\\eee1\";\n}\n.bd1-mail-package:before {\n  content: \"\\eee2\";\n}\n.bd1-mail-review:before {\n  content: \"\\eee3\";\n}\n.bd1-mail-unpacking:before {\n  content: \"\\eee4\";\n}\n.bd1-makeups:before {\n  content: \"\\eee5\";\n}\n.bd1-male:before {\n  content: \"\\eee6\";\n}\n.bd1-mall-bag:before {\n  content: \"\\eee7\";\n}\n.bd1-manual-gear:before {\n  content: \"\\eee8\";\n}\n.bd1-many-to-many:before {\n  content: \"\\eee9\";\n}\n.bd1-map-distance:before {\n  content: \"\\eeea\";\n}\n.bd1-map-draw:before {\n  content: \"\\eeeb\";\n}\n.bd1-map-road:before {\n  content: \"\\eeec\";\n}\n.bd1-map-road-two:before {\n  content: \"\\eeed\";\n}\n.bd1-map-two:before {\n  content: \"\\eeee\";\n}\n.bd1-margin:before {\n  content: \"\\eeef\";\n}\n.bd1-margin-one:before {\n  content: \"\\eef0\";\n}\n.bd1-mark:before {\n  content: \"\\eef1\";\n}\n.bd1-market:before {\n  content: \"\\eef2\";\n}\n.bd1-market-analysis:before {\n  content: \"\\eef3\";\n}\n.bd1-mascara:before {\n  content: \"\\eef4\";\n}\n.bd1-mask:before {\n  content: \"\\eef5\";\n}\n.bd1-mask-one:before {\n  content: \"\\eef6\";\n}\n.bd1-mask-two:before {\n  content: \"\\eef7\";\n}\n.bd1-maslow-pyramids:before {\n  content: \"\\eef8\";\n}\n.bd1-massage-chair:before {\n  content: \"\\eef9\";\n}\n.bd1-massage-chair-one:before {\n  content: \"\\eefa\";\n}\n.bd1-massage-table:before {\n  content: \"\\eefb\";\n}\n.bd1-master:before {\n  content: \"\\eefc\";\n}\n.bd1-material:before {\n  content: \"\\eefd\";\n}\n.bd1-material-three:before {\n  content: \"\\eefe\";\n}\n.bd1-material-two:before {\n  content: \"\\eeff\";\n}\n.bd1-maximum:before {\n  content: \"\\ef00\";\n}\n.bd1-maya:before {\n  content: \"\\ef01\";\n}\n.bd1-mayura-gesture:before {\n  content: \"\\ef02\";\n}\n.bd1-me:before {\n  content: \"\\ef03\";\n}\n.bd1-measuring-cup:before {\n  content: \"\\ef04\";\n}\n.bd1-medal-one:before {\n  content: \"\\ef05\";\n}\n.bd1-mediaeditor:before {\n  content: \"\\ef06\";\n}\n.bd1-medical-box:before {\n  content: \"\\ef07\";\n}\n.bd1-medical-files:before {\n  content: \"\\ef08\";\n}\n.bd1-medical-mark:before {\n  content: \"\\ef09\";\n}\n.bd1-medication-time:before {\n  content: \"\\ef0a\";\n}\n.bd1-medicine-bottle:before {\n  content: \"\\ef0b\";\n}\n.bd1-medicine-bottle-one:before {\n  content: \"\\ef0c\";\n}\n.bd1-medicine-chest:before {\n  content: \"\\ef0d\";\n}\n.bd1-memory:before {\n  content: \"\\ef0e\";\n}\n.bd1-memory-card:before {\n  content: \"\\ef0f\";\n}\n.bd1-memory-card-one:before {\n  content: \"\\ef10\";\n}\n.bd1-memory-one:before {\n  content: \"\\ef11\";\n}\n.bd1-men-jacket:before {\n  content: \"\\ef12\";\n}\n.bd1-menu-fold:before {\n  content: \"\\ef13\";\n}\n.bd1-menu-fold-one:before {\n  content: \"\\ef14\";\n}\n.bd1-menu-unfold:before {\n  content: \"\\ef15\";\n}\n.bd1-menu-unfold-one:before {\n  content: \"\\ef16\";\n}\n.bd1-merge:before {\n  content: \"\\ef17\";\n}\n.bd1-merge-cells:before {\n  content: \"\\ef18\";\n}\n.bd1-message:before {\n  content: \"\\ef19\";\n}\n.bd1-message-emoji:before {\n  content: \"\\ef1a\";\n}\n.bd1-message-failed:before {\n  content: \"\\ef1b\";\n}\n.bd1-message-one:before {\n  content: \"\\ef1c\";\n}\n.bd1-message-privacy:before {\n  content: \"\\ef1d\";\n}\n.bd1-messages:before {\n  content: \"\\ef1e\";\n}\n.bd1-message-search:before {\n  content: \"\\ef1f\";\n}\n.bd1-message-security:before {\n  content: \"\\ef20\";\n}\n.bd1-message-sent:before {\n  content: \"\\ef21\";\n}\n.bd1-messages-one:before {\n  content: \"\\ef22\";\n}\n.bd1-message-success:before {\n  content: \"\\ef23\";\n}\n.bd1-message-unread:before {\n  content: \"\\ef24\";\n}\n.bd1-microphone:before {\n  content: \"\\ef25\";\n}\n.bd1-microphone-one:before {\n  content: \"\\ef26\";\n}\n.bd1-microscope:before {\n  content: \"\\ef27\";\n}\n.bd1-microscope-one:before {\n  content: \"\\ef28\";\n}\n.bd1-micro-sd:before {\n  content: \"\\ef29\";\n}\n.bd1-micro-slr-camera:before {\n  content: \"\\ef2a\";\n}\n.bd1-microwave-oven:before {\n  content: \"\\ef2b\";\n}\n.bd1-microwaves:before {\n  content: \"\\ef2c\";\n}\n.bd1-middle-finger:before {\n  content: \"\\ef2d\";\n}\n.bd1-milk:before {\n  content: \"\\ef2e\";\n}\n.bd1-milk-one:before {\n  content: \"\\ef2f\";\n}\n.bd1-min:before {\n  content: \"\\ef30\";\n}\n.bd1-mindmap-list:before {\n  content: \"\\ef31\";\n}\n.bd1-mindmap-map:before {\n  content: \"\\ef32\";\n}\n.bd1-mind-mapping:before {\n  content: \"\\ef33\";\n}\n.bd1-mini-sd-card:before {\n  content: \"\\ef34\";\n}\n.bd1-minus:before {\n  content: \"\\ef35\";\n}\n.bd1-minus-the-bottom:before {\n  content: \"\\ef36\";\n}\n.bd1-minus-the-top:before {\n  content: \"\\ef37\";\n}\n.bd1-mirror:before {\n  content: \"\\ef38\";\n}\n.bd1-mirror-one:before {\n  content: \"\\ef39\";\n}\n.bd1-mirror-two:before {\n  content: \"\\ef3a\";\n}\n.bd1-misaligned-semicircle:before {\n  content: \"\\ef3b\";\n}\n.bd1-mitsubishi:before {\n  content: \"\\ef3c\";\n}\n.bd1-modify:before {\n  content: \"\\ef3d\";\n}\n.bd1-modify-two:before {\n  content: \"\\ef3e\";\n}\n.bd1-monitor:before {\n  content: \"\\ef3f\";\n}\n.bd1-monitor-camera:before {\n  content: \"\\ef40\";\n}\n.bd1-monitor-off:before {\n  content: \"\\ef41\";\n}\n.bd1-monitor-one:before {\n  content: \"\\ef42\";\n}\n.bd1-monitor-two:before {\n  content: \"\\ef43\";\n}\n.bd1-monkey:before {\n  content: \"\\ef44\";\n}\n.bd1-monkey-zodiac:before {\n  content: \"\\ef45\";\n}\n.bd1-monument-one:before {\n  content: \"\\ef46\";\n}\n.bd1-monument-two:before {\n  content: \"\\ef47\";\n}\n.bd1-moon:before {\n  content: \"\\ef48\";\n}\n.bd1-more:before {\n  content: \"\\ef49\";\n}\n.bd1-more-app:before {\n  content: \"\\ef4a\";\n}\n.bd1-more-four:before {\n  content: \"\\ef4b\";\n}\n.bd1-more-one:before {\n  content: \"\\ef4c\";\n}\n.bd1-more-three:before {\n  content: \"\\ef4d\";\n}\n.bd1-more-two:before {\n  content: \"\\ef4e\";\n}\n.bd1-mosaic:before {\n  content: \"\\ef4f\";\n}\n.bd1-mountain:before {\n  content: \"\\ef50\";\n}\n.bd1-mounted:before {\n  content: \"\\ef51\";\n}\n.bd1-mouse:before {\n  content: \"\\ef52\";\n}\n.bd1-mouse-one:before {\n  content: \"\\ef53\";\n}\n.bd1-mouse-zodiac:before {\n  content: \"\\ef54\";\n}\n.bd1-mouth:before {\n  content: \"\\ef55\";\n}\n.bd1-move:before {\n  content: \"\\ef56\";\n}\n.bd1-move-in:before {\n  content: \"\\ef57\";\n}\n.bd1-move-in-one:before {\n  content: \"\\ef58\";\n}\n.bd1-move-one:before {\n  content: \"\\ef59\";\n}\n.bd1-movie:before {\n  content: \"\\ef5a\";\n}\n.bd1-movie-board:before {\n  content: \"\\ef5b\";\n}\n.bd1-moving-picture:before {\n  content: \"\\ef5c\";\n}\n.bd1-multicast:before {\n  content: \"\\ef5d\";\n}\n.bd1-multi-circular:before {\n  content: \"\\ef5e\";\n}\n.bd1-multi-function-knife:before {\n  content: \"\\ef5f\";\n}\n.bd1-multilayer-sphere:before {\n  content: \"\\ef60\";\n}\n.bd1-multi-picture-carousel:before {\n  content: \"\\ef61\";\n}\n.bd1-multi-rectangle:before {\n  content: \"\\ef62\";\n}\n.bd1-multi-ring:before {\n  content: \"\\ef63\";\n}\n.bd1-multi-triangular:before {\n  content: \"\\ef64\";\n}\n.bd1-multi-triangular-four:before {\n  content: \"\\ef65\";\n}\n.bd1-multi-triangular-three:before {\n  content: \"\\ef66\";\n}\n.bd1-multi-triangular-two:before {\n  content: \"\\ef67\";\n}\n.bd1-muscle:before {\n  content: \"\\ef68\";\n}\n.bd1-museum-one:before {\n  content: \"\\ef69\";\n}\n.bd1-museum-two:before {\n  content: \"\\ef6a\";\n}\n.bd1-music:before {\n  content: \"\\ef6b\";\n}\n.bd1-music-cd:before {\n  content: \"\\ef6c\";\n}\n.bd1-music-list:before {\n  content: \"\\ef6d\";\n}\n.bd1-music-menu:before {\n  content: \"\\ef6e\";\n}\n.bd1-music-one:before {\n  content: \"\\ef6f\";\n}\n.bd1-music-rhythm:before {\n  content: \"\\ef70\";\n}\n.bd1-mute:before {\n  content: \"\\ef71\";\n}\n.bd1-nail-polish:before {\n  content: \"\\ef72\";\n}\n.bd1-nail-polish-one:before {\n  content: \"\\ef73\";\n}\n.bd1-nasal:before {\n  content: \"\\ef74\";\n}\n.bd1-natural-mode:before {\n  content: \"\\ef75\";\n}\n.bd1-navigation:before {\n  content: \"\\ef76\";\n}\n.bd1-necktie:before {\n  content: \"\\ef77\";\n}\n.bd1-needle:before {\n  content: \"\\ef78\";\n}\n.bd1-negative-dynamics:before {\n  content: \"\\ef79\";\n}\n.bd1-nested-arrows:before {\n  content: \"\\ef7a\";\n}\n.bd1-nests:before {\n  content: \"\\ef7b\";\n}\n.bd1-network-drive:before {\n  content: \"\\ef7c\";\n}\n.bd1-network-tree:before {\n  content: \"\\ef7d\";\n}\n.bd1-neural:before {\n  content: \"\\ef7e\";\n}\n.bd1-neutral-face:before {\n  content: \"\\ef7f\";\n}\n.bd1-new-afferent:before {\n  content: \"\\ef80\";\n}\n.bd1-new-computer:before {\n  content: \"\\ef81\";\n}\n.bd1-new-dianziqian:before {\n  content: \"\\ef82\";\n}\n.bd1-new-efferent:before {\n  content: \"\\ef83\";\n}\n.bd1-new-lark:before {\n  content: \"\\ef84\";\n}\n.bd1-newlybuild:before {\n  content: \"\\ef85\";\n}\n.bd1-new-picture:before {\n  content: \"\\ef86\";\n}\n.bd1-newspaper-folding:before {\n  content: \"\\ef87\";\n}\n.bd1-next:before {\n  content: \"\\ef88\";\n}\n.bd1-nine-key:before {\n  content: \"\\ef89\";\n}\n.bd1-nine-points-connected:before {\n  content: \"\\ef8a\";\n}\n.bd1-nintendo-switch:before {\n  content: \"\\ef8b\";\n}\n.bd1-nmr:before {\n  content: \"\\ef8c\";\n}\n.bd1-node-flat:before {\n  content: \"\\ef8d\";\n}\n.bd1-node-round:before {\n  content: \"\\ef8e\";\n}\n.bd1-node-square:before {\n  content: \"\\ef8f\";\n}\n.bd1-noodles:before {\n  content: \"\\ef90\";\n}\n.bd1-no-shooting:before {\n  content: \"\\ef91\";\n}\n.bd1-notebook:before {\n  content: \"\\ef92\";\n}\n.bd1-notebook-and-pen:before {\n  content: \"\\ef93\";\n}\n.bd1-notebook-one:before {\n  content: \"\\ef94\";\n}\n.bd1-notepad:before {\n  content: \"\\ef95\";\n}\n.bd1-notes:before {\n  content: \"\\ef96\";\n}\n.bd1-nuclear-plant:before {\n  content: \"\\ef97\";\n}\n.bd1-nurse-cap:before {\n  content: \"\\ef98\";\n}\n.bd1-nut:before {\n  content: \"\\ef99\";\n}\n.bd1-nutrition:before {\n  content: \"\\ef9a\";\n}\n.bd1-oceanengine:before {\n  content: \"\\ef9b\";\n}\n.bd1-octagon:before {\n  content: \"\\ef9c\";\n}\n.bd1-off-screen:before {\n  content: \"\\ef9d\";\n}\n.bd1-off-screen-one:before {\n  content: \"\\ef9e\";\n}\n.bd1-off-screen-two:before {\n  content: \"\\ef9f\";\n}\n.bd1-oil-industry:before {\n  content: \"\\efa0\";\n}\n.bd1-okay:before {\n  content: \"\\efa1\";\n}\n.bd1-one:before {\n  content: \"\\efa2\";\n}\n.bd1-one-key:before {\n  content: \"\\efa3\";\n}\n.bd1-one-one:before {\n  content: \"\\efa4\";\n}\n.bd1-onesies:before {\n  content: \"\\efa5\";\n}\n.bd1-one-third-rotation:before {\n  content: \"\\efa6\";\n}\n.bd1-one-to-many:before {\n  content: \"\\efa7\";\n}\n.bd1-one-to-one:before {\n  content: \"\\efa8\";\n}\n.bd1-online-meeting:before {\n  content: \"\\efa9\";\n}\n.bd1-open:before {\n  content: \"\\efaa\";\n}\n.bd1-open-an-account:before {\n  content: \"\\efab\";\n}\n.bd1-open-door:before {\n  content: \"\\efac\";\n}\n.bd1-open-one:before {\n  content: \"\\efad\";\n}\n.bd1-optimize:before {\n  content: \"\\efae\";\n}\n.bd1-optional:before {\n  content: \"\\efaf\";\n}\n.bd1-orange:before {\n  content: \"\\efb0\";\n}\n.bd1-orange-one:before {\n  content: \"\\efb1\";\n}\n.bd1-orange-station:before {\n  content: \"\\efb2\";\n}\n.bd1-order:before {\n  content: \"\\efb3\";\n}\n.bd1-ordered-list:before {\n  content: \"\\efb4\";\n}\n.bd1-orthopedic:before {\n  content: \"\\efb5\";\n}\n.bd1-oscillator:before {\n  content: \"\\efb6\";\n}\n.bd1-other:before {\n  content: \"\\efb7\";\n}\n.bd1-outbound:before {\n  content: \"\\efb8\";\n}\n.bd1-outdoor:before {\n  content: \"\\efb9\";\n}\n.bd1-outgoing:before {\n  content: \"\\efba\";\n}\n.bd1-oval-love:before {\n  content: \"\\efbb\";\n}\n.bd1-oval-love-two:before {\n  content: \"\\efbc\";\n}\n.bd1-oval-one:before {\n  content: \"\\efbd\";\n}\n.bd1-oven:before {\n  content: \"\\efbe\";\n}\n.bd1-oven-tray:before {\n  content: \"\\efbf\";\n}\n.bd1-overall-reduction:before {\n  content: \"\\efc0\";\n}\n.bd1-owl:before {\n  content: \"\\efc1\";\n}\n.bd1-pacifier:before {\n  content: \"\\efc2\";\n}\n.bd1-pad:before {\n  content: \"\\efc3\";\n}\n.bd1-page:before {\n  content: \"\\efc4\";\n}\n.bd1-page-template:before {\n  content: \"\\efc5\";\n}\n.bd1-pagoda:before {\n  content: \"\\efc6\";\n}\n.bd1-paint:before {\n  content: \"\\efc7\";\n}\n.bd1-painted-eggshell:before {\n  content: \"\\efc8\";\n}\n.bd1-painted-screen:before {\n  content: \"\\efc9\";\n}\n.bd1-palace:before {\n  content: \"\\efca\";\n}\n.bd1-palm:before {\n  content: \"\\efcb\";\n}\n.bd1-panda:before {\n  content: \"\\efcc\";\n}\n.bd1-pangle:before {\n  content: \"\\efcd\";\n}\n.bd1-panorama-horizontal:before {\n  content: \"\\efce\";\n}\n.bd1-panties:before {\n  content: \"\\efcf\";\n}\n.bd1-paperclip:before {\n  content: \"\\efd0\";\n}\n.bd1-paper-money:before {\n  content: \"\\efd1\";\n}\n.bd1-paper-money-two:before {\n  content: \"\\efd2\";\n}\n.bd1-paper-ship:before {\n  content: \"\\efd3\";\n}\n.bd1-parabola:before {\n  content: \"\\efd4\";\n}\n.bd1-parachute:before {\n  content: \"\\efd5\";\n}\n.bd1-paragraph-alphabet:before {\n  content: \"\\efd6\";\n}\n.bd1-paragraph-break:before {\n  content: \"\\efd7\";\n}\n.bd1-paragraph-break-two:before {\n  content: \"\\efd8\";\n}\n.bd1-paragraph-cut:before {\n  content: \"\\efd9\";\n}\n.bd1-paragraph-rectangle:before {\n  content: \"\\efda\";\n}\n.bd1-paragraph-round:before {\n  content: \"\\efdb\";\n}\n.bd1-paragraph-triangle:before {\n  content: \"\\efdc\";\n}\n.bd1-paragraph-unfold:before {\n  content: \"\\efdd\";\n}\n.bd1-parallel-gateway:before {\n  content: \"\\efde\";\n}\n.bd1-parallelogram:before {\n  content: \"\\efdf\";\n}\n.bd1-parenting-book:before {\n  content: \"\\efe0\";\n}\n.bd1-parking:before {\n  content: \"\\efe1\";\n}\n.bd1-party-balloon:before {\n  content: \"\\efe2\";\n}\n.bd1-passport:before {\n  content: \"\\efe3\";\n}\n.bd1-passport-one:before {\n  content: \"\\efe4\";\n}\n.bd1-pause:before {\n  content: \"\\efe5\";\n}\n.bd1-pause-one:before {\n  content: \"\\efe6\";\n}\n.bd1-pay-code:before {\n  content: \"\\efe7\";\n}\n.bd1-pay-code-one:before {\n  content: \"\\efe8\";\n}\n.bd1-pay-code-two:before {\n  content: \"\\efe9\";\n}\n.bd1-payment-method:before {\n  content: \"\\efea\";\n}\n.bd1-paypal:before {\n  content: \"\\efeb\";\n}\n.bd1-peach:before {\n  content: \"\\efec\";\n}\n.bd1-pear:before {\n  content: \"\\efed\";\n}\n.bd1-pearl-of-the-orient:before {\n  content: \"\\efee\";\n}\n.bd1-peas:before {\n  content: \"\\efef\";\n}\n.bd1-pencil:before {\n  content: \"\\eff0\";\n}\n.bd1-pennant:before {\n  content: \"\\eff1\";\n}\n.bd1-pentagon-one:before {\n  content: \"\\eff2\";\n}\n.bd1-people:before {\n  content: \"\\eff3\";\n}\n.bd1-people-bottom:before {\n  content: \"\\eff4\";\n}\n.bd1-people-bottom-card:before {\n  content: \"\\eff5\";\n}\n.bd1-people-delete:before {\n  content: \"\\eff6\";\n}\n.bd1-people-delete-one:before {\n  content: \"\\eff7\";\n}\n.bd1-people-download:before {\n  content: \"\\eff8\";\n}\n.bd1-people-left:before {\n  content: \"\\eff9\";\n}\n.bd1-people-minus:before {\n  content: \"\\effa\";\n}\n.bd1-people-minus-one:before {\n  content: \"\\effb\";\n}\n.bd1-people-plus:before {\n  content: \"\\effc\";\n}\n.bd1-people-plus-one:before {\n  content: \"\\effd\";\n}\n.bd1-people-right:before {\n  content: \"\\effe\";\n}\n.bd1-peoples:before {\n  content: \"\\efff\";\n}\n.bd1-people-safe:before {\n  content: \"\\f000\";\n}\n.bd1-people-safe-one:before {\n  content: \"\\f001\";\n}\n.bd1-people-search:before {\n  content: \"\\f002\";\n}\n.bd1-people-search-one:before {\n  content: \"\\f003\";\n}\n.bd1-people-speak:before {\n  content: \"\\f004\";\n}\n.bd1-peoples-two:before {\n  content: \"\\f005\";\n}\n.bd1-people-top:before {\n  content: \"\\f006\";\n}\n.bd1-people-top-card:before {\n  content: \"\\f007\";\n}\n.bd1-people-unknown:before {\n  content: \"\\f008\";\n}\n.bd1-people-upload:before {\n  content: \"\\f009\";\n}\n.bd1-percentage:before {\n  content: \"\\f00a\";\n}\n.bd1-performance:before {\n  content: \"\\f00b\";\n}\n.bd1-perfume:before {\n  content: \"\\f00c\";\n}\n.bd1-perfumer-bottle:before {\n  content: \"\\f00d\";\n}\n.bd1-period:before {\n  content: \"\\f00e\";\n}\n.bd1-permissions:before {\n  content: \"\\f00f\";\n}\n.bd1-personal-collection:before {\n  content: \"\\f010\";\n}\n.bd1-personal-privacy:before {\n  content: \"\\f011\";\n}\n.bd1-perspective:before {\n  content: \"\\f012\";\n}\n.bd1-pesticide:before {\n  content: \"\\f013\";\n}\n.bd1-petrol:before {\n  content: \"\\f014\";\n}\n.bd1-phone:before {\n  content: \"\\f015\";\n}\n.bd1-phone-booth:before {\n  content: \"\\f016\";\n}\n.bd1-phone-call:before {\n  content: \"\\f017\";\n}\n.bd1-phone-incoming:before {\n  content: \"\\f018\";\n}\n.bd1-phone-incoming-one:before {\n  content: \"\\f019\";\n}\n.bd1-phone-missed:before {\n  content: \"\\f01a\";\n}\n.bd1-phone-off:before {\n  content: \"\\f01b\";\n}\n.bd1-phone-one:before {\n  content: \"\\f01c\";\n}\n.bd1-phone-outgoing:before {\n  content: \"\\f01d\";\n}\n.bd1-phone-outgoing-one:before {\n  content: \"\\f01e\";\n}\n.bd1-phone-telephone:before {\n  content: \"\\f01f\";\n}\n.bd1-phone-two:before {\n  content: \"\\f020\";\n}\n.bd1-phone-video-call:before {\n  content: \"\\f021\";\n}\n.bd1-phonograph:before {\n  content: \"\\f022\";\n}\n.bd1-photograph:before {\n  content: \"\\f023\";\n}\n.bd1-piano:before {\n  content: \"\\f024\";\n}\n.bd1-pic:before {\n  content: \"\\f025\";\n}\n.bd1-pic-one:before {\n  content: \"\\f026\";\n}\n.bd1-picture:before {\n  content: \"\\f027\";\n}\n.bd1-picture-album:before {\n  content: \"\\f028\";\n}\n.bd1-picture-one:before {\n  content: \"\\f029\";\n}\n.bd1-pie:before {\n  content: \"\\f02a\";\n}\n.bd1-pie-five:before {\n  content: \"\\f02b\";\n}\n.bd1-pie-four:before {\n  content: \"\\f02c\";\n}\n.bd1-pie-one:before {\n  content: \"\\f02d\";\n}\n.bd1-pie-seven:before {\n  content: \"\\f02e\";\n}\n.bd1-pie-six:before {\n  content: \"\\f02f\";\n}\n.bd1-pie-three:before {\n  content: \"\\f030\";\n}\n.bd1-pie-two:before {\n  content: \"\\f031\";\n}\n.bd1-pig:before {\n  content: \"\\f032\";\n}\n.bd1-pigeon:before {\n  content: \"\\f033\";\n}\n.bd1-pig-zodiac:before {\n  content: \"\\f034\";\n}\n.bd1-pill:before {\n  content: \"\\f035\";\n}\n.bd1-pills:before {\n  content: \"\\f036\";\n}\n.bd1-pin:before {\n  content: \"\\f037\";\n}\n.bd1-pineapple:before {\n  content: \"\\f038\";\n}\n.bd1-pinwheel:before {\n  content: \"\\f039\";\n}\n.bd1-pisces:before {\n  content: \"\\f03a\";\n}\n.bd1-pivot-table:before {\n  content: \"\\f03b\";\n}\n.bd1-plan:before {\n  content: \"\\f03c\";\n}\n.bd1-planet:before {\n  content: \"\\f03d\";\n}\n.bd1-plastic-surgery:before {\n  content: \"\\f03e\";\n}\n.bd1-platte:before {\n  content: \"\\f03f\";\n}\n.bd1-play:before {\n  content: \"\\f040\";\n}\n.bd1-playback-progress:before {\n  content: \"\\f041\";\n}\n.bd1-play-basketball:before {\n  content: \"\\f042\";\n}\n.bd1-play-cycle:before {\n  content: \"\\f043\";\n}\n.bd1-play-once:before {\n  content: \"\\f044\";\n}\n.bd1-play-one:before {\n  content: \"\\f045\";\n}\n.bd1-play-two:before {\n  content: \"\\f046\";\n}\n.bd1-play-volleyball:before {\n  content: \"\\f047\";\n}\n.bd1-play-wrong:before {\n  content: \"\\f048\";\n}\n.bd1-plug:before {\n  content: \"\\f049\";\n}\n.bd1-plug-one:before {\n  content: \"\\f04a\";\n}\n.bd1-plus:before {\n  content: \"\\f04b\";\n}\n.bd1-plus-cross:before {\n  content: \"\\f04c\";\n}\n.bd1-point:before {\n  content: \"\\f04d\";\n}\n.bd1-point-out:before {\n  content: \"\\f04e\";\n}\n.bd1-pokeball-one:before {\n  content: \"\\f04f\";\n}\n.bd1-poker:before {\n  content: \"\\f050\";\n}\n.bd1-popcorn:before {\n  content: \"\\f051\";\n}\n.bd1-popcorn-one:before {\n  content: \"\\f052\";\n}\n.bd1-positive-dynamics:before {\n  content: \"\\f053\";\n}\n.bd1-pot:before {\n  content: \"\\f054\";\n}\n.bd1-potentiometer:before {\n  content: \"\\f055\";\n}\n.bd1-pound:before {\n  content: \"\\f056\";\n}\n.bd1-pound-sign:before {\n  content: \"\\f057\";\n}\n.bd1-pouting-face:before {\n  content: \"\\f058\";\n}\n.bd1-powder:before {\n  content: \"\\f059\";\n}\n.bd1-power:before {\n  content: \"\\f05a\";\n}\n.bd1-powerpoint:before {\n  content: \"\\f05b\";\n}\n.bd1-power-supply:before {\n  content: \"\\f05c\";\n}\n.bd1-power-supply-one:before {\n  content: \"\\f05d\";\n}\n.bd1-ppt:before {\n  content: \"\\f05e\";\n}\n.bd1-pregnant-women:before {\n  content: \"\\f05f\";\n}\n.bd1-preschool:before {\n  content: \"\\f060\";\n}\n.bd1-prescription:before {\n  content: \"\\f061\";\n}\n.bd1-press:before {\n  content: \"\\f062\";\n}\n.bd1-preview-close:before {\n  content: \"\\f063\";\n}\n.bd1-preview-close-one:before {\n  content: \"\\f064\";\n}\n.bd1-preview-open:before {\n  content: \"\\f065\";\n}\n.bd1-printer:before {\n  content: \"\\f066\";\n}\n.bd1-printer-one:before {\n  content: \"\\f067\";\n}\n.bd1-printer-two:before {\n  content: \"\\f068\";\n}\n.bd1-prison:before {\n  content: \"\\f069\";\n}\n.bd1-process-line:before {\n  content: \"\\f06a\";\n}\n.bd1-projector:before {\n  content: \"\\f06b\";\n}\n.bd1-projector-one:before {\n  content: \"\\f06c\";\n}\n.bd1-projector-three:before {\n  content: \"\\f06d\";\n}\n.bd1-projector-two:before {\n  content: \"\\f06e\";\n}\n.bd1-proportional-scaling:before {\n  content: \"\\f06f\";\n}\n.bd1-protect:before {\n  content: \"\\f070\";\n}\n.bd1-protection:before {\n  content: \"\\f071\";\n}\n.bd1-public-toilet:before {\n  content: \"\\f072\";\n}\n.bd1-pull-door:before {\n  content: \"\\f073\";\n}\n.bd1-pull-requests:before {\n  content: \"\\f074\";\n}\n.bd1-pumpkin:before {\n  content: \"\\f075\";\n}\n.bd1-pure-natural:before {\n  content: \"\\f076\";\n}\n.bd1-push-door:before {\n  content: \"\\f077\";\n}\n.bd1-pushpin:before {\n  content: \"\\f078\";\n}\n.bd1-puzzle:before {\n  content: \"\\f079\";\n}\n.bd1-pyramid:before {\n  content: \"\\f07a\";\n}\n.bd1-pyramid-one:before {\n  content: \"\\f07b\";\n}\n.bd1-qingniao-clue:before {\n  content: \"\\f07c\";\n}\n.bd1-qiyehao:before {\n  content: \"\\f07d\";\n}\n.bd1-quadrangular-pyramid:before {\n  content: \"\\f07e\";\n}\n.bd1-quadrilateral:before {\n  content: \"\\f07f\";\n}\n.bd1-quote:before {\n  content: \"\\f080\";\n}\n.bd1-rabbit:before {\n  content: \"\\f081\";\n}\n.bd1-rabbit-zodiac:before {\n  content: \"\\f082\";\n}\n.bd1-radar:before {\n  content: \"\\f083\";\n}\n.bd1-radar-chart:before {\n  content: \"\\f084\";\n}\n.bd1-radar-three:before {\n  content: \"\\f085\";\n}\n.bd1-radar-two:before {\n  content: \"\\f086\";\n}\n.bd1-radiation:before {\n  content: \"\\f087\";\n}\n.bd1-radio:before {\n  content: \"\\f088\";\n}\n.bd1-radio-nanny:before {\n  content: \"\\f089\";\n}\n.bd1-radio-one:before {\n  content: \"\\f08a\";\n}\n.bd1-radio-two:before {\n  content: \"\\f08b\";\n}\n.bd1-radish:before {\n  content: \"\\f08c\";\n}\n.bd1-radish-one:before {\n  content: \"\\f08d\";\n}\n.bd1-railway:before {\n  content: \"\\f08e\";\n}\n.bd1-ranking:before {\n  content: \"\\f08f\";\n}\n.bd1-ranking-list:before {\n  content: \"\\f090\";\n}\n.bd1-rattle:before {\n  content: \"\\f091\";\n}\n.bd1-rattle-one:before {\n  content: \"\\f092\";\n}\n.bd1-razor:before {\n  content: \"\\f093\";\n}\n.bd1-read-book:before {\n  content: \"\\f094\";\n}\n.bd1-receive:before {\n  content: \"\\f095\";\n}\n.bd1-receiver:before {\n  content: \"\\f096\";\n}\n.bd1-recent-views-sort:before {\n  content: \"\\f097\";\n}\n.bd1-record:before {\n  content: \"\\f098\";\n}\n.bd1-record-disc:before {\n  content: \"\\f099\";\n}\n.bd1-record-player:before {\n  content: \"\\f09a\";\n}\n.bd1-rectangle:before {\n  content: \"\\f09b\";\n}\n.bd1-rectangle-one:before {\n  content: \"\\f09c\";\n}\n.bd1-rectangle-small:before {\n  content: \"\\f09d\";\n}\n.bd1-rectangle-tear:before {\n  content: \"\\f09e\";\n}\n.bd1-rectangle-x:before {\n  content: \"\\f09f\";\n}\n.bd1-rectangular-circular-connection:before {\n  content: \"\\f0a0\";\n}\n.bd1-rectangular-circular-separation:before {\n  content: \"\\f0a1\";\n}\n.bd1-rectangular-vertebra:before {\n  content: \"\\f0a2\";\n}\n.bd1-recycle-bin:before {\n  content: \"\\f0a3\";\n}\n.bd1-recycling:before {\n  content: \"\\f0a4\";\n}\n.bd1-recycling-pool:before {\n  content: \"\\f0a5\";\n}\n.bd1-red-cross:before {\n  content: \"\\f0a6\";\n}\n.bd1-red-envelope:before {\n  content: \"\\f0a7\";\n}\n.bd1-red-envelopes:before {\n  content: \"\\f0a8\";\n}\n.bd1-redo:before {\n  content: \"\\f0a9\";\n}\n.bd1-reduce:before {\n  content: \"\\f0aa\";\n}\n.bd1-reduce-decimal-places:before {\n  content: \"\\f0ab\";\n}\n.bd1-reduce-one:before {\n  content: \"\\f0ac\";\n}\n.bd1-reduce-two:before {\n  content: \"\\f0ad\";\n}\n.bd1-reduce-user:before {\n  content: \"\\f0ae\";\n}\n.bd1-reel:before {\n  content: \"\\f0af\";\n}\n.bd1-refraction:before {\n  content: \"\\f0b0\";\n}\n.bd1-refresh:before {\n  content: \"\\f0b1\";\n}\n.bd1-refresh-one:before {\n  content: \"\\f0b2\";\n}\n.bd1-refrigerator:before {\n  content: \"\\f0b3\";\n}\n.bd1-reject:before {\n  content: \"\\f0b4\";\n}\n.bd1-relational-graph:before {\n  content: \"\\f0b5\";\n}\n.bd1-relieved-face:before {\n  content: \"\\f0b6\";\n}\n.bd1-reload:before {\n  content: \"\\f0b7\";\n}\n.bd1-remind:before {\n  content: \"\\f0b8\";\n}\n.bd1-remind-disable:before {\n  content: \"\\f0b9\";\n}\n.bd1-remote-control:before {\n  content: \"\\f0ba\";\n}\n.bd1-remote-control-one:before {\n  content: \"\\f0bb\";\n}\n.bd1-renal:before {\n  content: \"\\f0bc\";\n}\n.bd1-renault:before {\n  content: \"\\f0bd\";\n}\n.bd1-repair:before {\n  content: \"\\f0be\";\n}\n.bd1-replay-five:before {\n  content: \"\\f0bf\";\n}\n.bd1-replay-music:before {\n  content: \"\\f0c0\";\n}\n.bd1-report:before {\n  content: \"\\f0c1\";\n}\n.bd1-repositioning:before {\n  content: \"\\f0c2\";\n}\n.bd1-resistor:before {\n  content: \"\\f0c3\";\n}\n.bd1-respect:before {\n  content: \"\\f0c4\";\n}\n.bd1-resting:before {\n  content: \"\\f0c5\";\n}\n.bd1-retro-bag:before {\n  content: \"\\f0c6\";\n}\n.bd1-return:before {\n  content: \"\\f0c7\";\n}\n.bd1-reverse-lens:before {\n  content: \"\\f0c8\";\n}\n.bd1-reverse-lens-one:before {\n  content: \"\\f0c9\";\n}\n.bd1-reverse-operation-in:before {\n  content: \"\\f0ca\";\n}\n.bd1-reverse-operation-out:before {\n  content: \"\\f0cb\";\n}\n.bd1-reverse-rotation:before {\n  content: \"\\f0cc\";\n}\n.bd1-rice:before {\n  content: \"\\f0cd\";\n}\n.bd1-riding:before {\n  content: \"\\f0ce\";\n}\n.bd1-riding-one:before {\n  content: \"\\f0cf\";\n}\n.bd1-right:before {\n  content: \"\\f0d0\";\n}\n.bd1-right-angle:before {\n  content: \"\\f0d1\";\n}\n.bd1-right-bar:before {\n  content: \"\\f0d2\";\n}\n.bd1-right-branch:before {\n  content: \"\\f0d3\";\n}\n.bd1-right-branch-one:before {\n  content: \"\\f0d4\";\n}\n.bd1-right-branch-two:before {\n  content: \"\\f0d5\";\n}\n.bd1-right-c:before {\n  content: \"\\f0d6\";\n}\n.bd1-right-expand:before {\n  content: \"\\f0d7\";\n}\n.bd1-right-one:before {\n  content: \"\\f0d8\";\n}\n.bd1-right-run:before {\n  content: \"\\f0d9\";\n}\n.bd1-right-small:before {\n  content: \"\\f0da\";\n}\n.bd1-right-small-down:before {\n  content: \"\\f0db\";\n}\n.bd1-right-small-up:before {\n  content: \"\\f0dc\";\n}\n.bd1-right-square:before {\n  content: \"\\f0dd\";\n}\n.bd1-right-two:before {\n  content: \"\\f0de\";\n}\n.bd1-right-user:before {\n  content: \"\\f0df\";\n}\n.bd1-ring:before {\n  content: \"\\f0e0\";\n}\n.bd1-ring-one:before {\n  content: \"\\f0e1\";\n}\n.bd1-rings:before {\n  content: \"\\f0e2\";\n}\n.bd1-ripple:before {\n  content: \"\\f0e3\";\n}\n.bd1-road:before {\n  content: \"\\f0e4\";\n}\n.bd1-road-cone:before {\n  content: \"\\f0e5\";\n}\n.bd1-road-one:before {\n  content: \"\\f0e6\";\n}\n.bd1-road-sign:before {\n  content: \"\\f0e7\";\n}\n.bd1-road-sign-both:before {\n  content: \"\\f0e8\";\n}\n.bd1-robot:before {\n  content: \"\\f0e9\";\n}\n.bd1-robot-one:before {\n  content: \"\\f0ea\";\n}\n.bd1-robot-two:before {\n  content: \"\\f0eb\";\n}\n.bd1-rock:before {\n  content: \"\\f0ec\";\n}\n.bd1-rocket:before {\n  content: \"\\f0ed\";\n}\n.bd1-rocket-one:before {\n  content: \"\\f0ee\";\n}\n.bd1-rock-gesture:before {\n  content: \"\\f0ef\";\n}\n.bd1-rocking-horse:before {\n  content: \"\\f0f0\";\n}\n.bd1-rollerskates:before {\n  content: \"\\f0f1\";\n}\n.bd1-romper:before {\n  content: \"\\f0f2\";\n}\n.bd1-rope-skipping:before {\n  content: \"\\f0f3\";\n}\n.bd1-rope-skipping-one:before {\n  content: \"\\f0f4\";\n}\n.bd1-rotate:before {\n  content: \"\\f0f5\";\n}\n.bd1-rotate-one:before {\n  content: \"\\f0f6\";\n}\n.bd1-rotating-add:before {\n  content: \"\\f0f7\";\n}\n.bd1-rotating-forward:before {\n  content: \"\\f0f8\";\n}\n.bd1-rotation:before {\n  content: \"\\f0f9\";\n}\n.bd1-rotation-horizontal:before {\n  content: \"\\f0fa\";\n}\n.bd1-rotation-one:before {\n  content: \"\\f0fb\";\n}\n.bd1-rotation-vertical:before {\n  content: \"\\f0fc\";\n}\n.bd1-round:before {\n  content: \"\\f0fd\";\n}\n.bd1-round-caliper:before {\n  content: \"\\f0fe\";\n}\n.bd1-round-distortion:before {\n  content: \"\\f0ff\";\n}\n.bd1-round-mask:before {\n  content: \"\\f100\";\n}\n.bd1-round-socket:before {\n  content: \"\\f101\";\n}\n.bd1-round-trip:before {\n  content: \"\\f102\";\n}\n.bd1-router:before {\n  content: \"\\f103\";\n}\n.bd1-router-one:before {\n  content: \"\\f104\";\n}\n.bd1-row-height:before {\n  content: \"\\f105\";\n}\n.bd1-rowing:before {\n  content: \"\\f106\";\n}\n.bd1-rs-male:before {\n  content: \"\\f107\";\n}\n.bd1-rss:before {\n  content: \"\\f108\";\n}\n.bd1-rugby:before {\n  content: \"\\f109\";\n}\n.bd1-rugby-one:before {\n  content: \"\\f10a\";\n}\n.bd1-ruler:before {\n  content: \"\\f10b\";\n}\n.bd1-ruler-one:before {\n  content: \"\\f10c\";\n}\n.bd1-rule-two:before {\n  content: \"\\f10d\";\n}\n.bd1-run-left:before {\n  content: \"\\f10e\";\n}\n.bd1-safe-retrieval:before {\n  content: \"\\f10f\";\n}\n.bd1-sagittarius:before {\n  content: \"\\f110\";\n}\n.bd1-sailboat:before {\n  content: \"\\f111\";\n}\n.bd1-sailboat-one:before {\n  content: \"\\f112\";\n}\n.bd1-sailing:before {\n  content: \"\\f113\";\n}\n.bd1-sales-report:before {\n  content: \"\\f114\";\n}\n.bd1-sandals:before {\n  content: \"\\f115\";\n}\n.bd1-sandstorm:before {\n  content: \"\\f116\";\n}\n.bd1-sandwich:before {\n  content: \"\\f117\";\n}\n.bd1-sandwich-one:before {\n  content: \"\\f118\";\n}\n.bd1-sapling:before {\n  content: \"\\f119\";\n}\n.bd1-save:before {\n  content: \"\\f11a\";\n}\n.bd1-save-one:before {\n  content: \"\\f11b\";\n}\n.bd1-scale:before {\n  content: \"\\f11c\";\n}\n.bd1-scale-one:before {\n  content: \"\\f11d\";\n}\n.bd1-scallion:before {\n  content: \"\\f11e\";\n}\n.bd1-scan:before {\n  content: \"\\f11f\";\n}\n.bd1-scan-code:before {\n  content: \"\\f120\";\n}\n.bd1-scanning:before {\n  content: \"\\f121\";\n}\n.bd1-scanning-two:before {\n  content: \"\\f122\";\n}\n.bd1-scan-setting:before {\n  content: \"\\f123\";\n}\n.bd1-scatter-alignment:before {\n  content: \"\\f124\";\n}\n.bd1-schedule:before {\n  content: \"\\f125\";\n}\n.bd1-school:before {\n  content: \"\\f126\";\n}\n.bd1-scissors:before {\n  content: \"\\f127\";\n}\n.bd1-scoreboard:before {\n  content: \"\\f128\";\n}\n.bd1-scorpio:before {\n  content: \"\\f129\";\n}\n.bd1-screen-rotation:before {\n  content: \"\\f12a\";\n}\n.bd1-screenshot:before {\n  content: \"\\f12b\";\n}\n.bd1-screenshot-one:before {\n  content: \"\\f12c\";\n}\n.bd1-screenshot-two:before {\n  content: \"\\f12d\";\n}\n.bd1-screwdriver:before {\n  content: \"\\f12e\";\n}\n.bd1-sd:before {\n  content: \"\\f12f\";\n}\n.bd1-sd-card:before {\n  content: \"\\f130\";\n}\n.bd1-seal:before {\n  content: \"\\f131\";\n}\n.bd1-search:before {\n  content: \"\\f132\";\n}\n.bd1-seat:before {\n  content: \"\\f133\";\n}\n.bd1-security:before {\n  content: \"\\f134\";\n}\n.bd1-security-stall:before {\n  content: \"\\f135\";\n}\n.bd1-seedling:before {\n  content: \"\\f136\";\n}\n.bd1-selected:before {\n  content: \"\\f137\";\n}\n.bd1-selected-focus:before {\n  content: \"\\f138\";\n}\n.bd1-selfie:before {\n  content: \"\\f139\";\n}\n.bd1-send:before {\n  content: \"\\f13a\";\n}\n.bd1-send-backward:before {\n  content: \"\\f13b\";\n}\n.bd1-send-email:before {\n  content: \"\\f13c\";\n}\n.bd1-send-one:before {\n  content: \"\\f13d\";\n}\n.bd1-send-to-back:before {\n  content: \"\\f13e\";\n}\n.bd1-sent-to-back:before {\n  content: \"\\f13f\";\n}\n.bd1-seo:before {\n  content: \"\\f140\";\n}\n.bd1-seo-folder:before {\n  content: \"\\f141\";\n}\n.bd1-server:before {\n  content: \"\\f142\";\n}\n.bd1-set-off:before {\n  content: \"\\f143\";\n}\n.bd1-setting:before {\n  content: \"\\f144\";\n}\n.bd1-setting-computer:before {\n  content: \"\\f145\";\n}\n.bd1-setting-config:before {\n  content: \"\\f146\";\n}\n.bd1-setting-laptop:before {\n  content: \"\\f147\";\n}\n.bd1-setting-one:before {\n  content: \"\\f148\";\n}\n.bd1-setting-three:before {\n  content: \"\\f149\";\n}\n.bd1-setting-two:before {\n  content: \"\\f14a\";\n}\n.bd1-setting-web:before {\n  content: \"\\f14b\";\n}\n.bd1-seven-key:before {\n  content: \"\\f14c\";\n}\n.bd1-shade:before {\n  content: \"\\f14d\";\n}\n.bd1-shake:before {\n  content: \"\\f14e\";\n}\n.bd1-share:before {\n  content: \"\\f14f\";\n}\n.bd1-share-one:before {\n  content: \"\\f150\";\n}\n.bd1-share-sys:before {\n  content: \"\\f151\";\n}\n.bd1-share-three:before {\n  content: \"\\f152\";\n}\n.bd1-share-two:before {\n  content: \"\\f153\";\n}\n.bd1-shaver:before {\n  content: \"\\f154\";\n}\n.bd1-shaver-one:before {\n  content: \"\\f155\";\n}\n.bd1-shaving:before {\n  content: \"\\f156\";\n}\n.bd1-sheep-zodiac:before {\n  content: \"\\f157\";\n}\n.bd1-shield:before {\n  content: \"\\f158\";\n}\n.bd1-shield-add:before {\n  content: \"\\f159\";\n}\n.bd1-ship:before {\n  content: \"\\f15a\";\n}\n.bd1-shop:before {\n  content: \"\\f15b\";\n}\n.bd1-shopping:before {\n  content: \"\\f15c\";\n}\n.bd1-shopping-bag:before {\n  content: \"\\f15d\";\n}\n.bd1-shopping-bag-one:before {\n  content: \"\\f15e\";\n}\n.bd1-shopping-cart:before {\n  content: \"\\f15f\";\n}\n.bd1-shopping-cart-add:before {\n  content: \"\\f160\";\n}\n.bd1-shopping-cart-del:before {\n  content: \"\\f161\";\n}\n.bd1-shopping-cart-one:before {\n  content: \"\\f162\";\n}\n.bd1-shopping-cart-two:before {\n  content: \"\\f163\";\n}\n.bd1-shopping-mall:before {\n  content: \"\\f164\";\n}\n.bd1-shorts:before {\n  content: \"\\f165\";\n}\n.bd1-short-skirt:before {\n  content: \"\\f166\";\n}\n.bd1-shoulder-bag:before {\n  content: \"\\f167\";\n}\n.bd1-shovel:before {\n  content: \"\\f168\";\n}\n.bd1-shovel-one:before {\n  content: \"\\f169\";\n}\n.bd1-shower-head:before {\n  content: \"\\f16a\";\n}\n.bd1-shrimp:before {\n  content: \"\\f16b\";\n}\n.bd1-shuffle:before {\n  content: \"\\f16c\";\n}\n.bd1-shuffle-one:before {\n  content: \"\\f16d\";\n}\n.bd1-shutter-priority:before {\n  content: \"\\f16e\";\n}\n.bd1-sickbed:before {\n  content: \"\\f16f\";\n}\n.bd1-signal:before {\n  content: \"\\f170\";\n}\n.bd1-signal-one:before {\n  content: \"\\f171\";\n}\n.bd1-signal-strength:before {\n  content: \"\\f172\";\n}\n.bd1-signal-tower:before {\n  content: \"\\f173\";\n}\n.bd1-signal-tower-one:before {\n  content: \"\\f174\";\n}\n.bd1-sim:before {\n  content: \"\\f175\";\n}\n.bd1-sim-card:before {\n  content: \"\\f176\";\n}\n.bd1-single-bed:before {\n  content: \"\\f177\";\n}\n.bd1-sinusoid:before {\n  content: \"\\f178\";\n}\n.bd1-sippy-cup:before {\n  content: \"\\f179\";\n}\n.bd1-six:before {\n  content: \"\\f17a\";\n}\n.bd1-six-circular-connection:before {\n  content: \"\\f17b\";\n}\n.bd1-six-key:before {\n  content: \"\\f17c\";\n}\n.bd1-six-points:before {\n  content: \"\\f17d\";\n}\n.bd1-skate:before {\n  content: \"\\f17e\";\n}\n.bd1-skates:before {\n  content: \"\\f17f\";\n}\n.bd1-skating:before {\n  content: \"\\f180\";\n}\n.bd1-sketch:before {\n  content: \"\\f181\";\n}\n.bd1-skiing-nordic:before {\n  content: \"\\f182\";\n}\n.bd1-skull:before {\n  content: \"\\f183\";\n}\n.bd1-slave:before {\n  content: \"\\f184\";\n}\n.bd1-sleaves:before {\n  content: \"\\f185\";\n}\n.bd1-sleep:before {\n  content: \"\\f186\";\n}\n.bd1-sleep-one:before {\n  content: \"\\f187\";\n}\n.bd1-sleep-two:before {\n  content: \"\\f188\";\n}\n.bd1-slide:before {\n  content: \"\\f189\";\n}\n.bd1-slide-two:before {\n  content: \"\\f18a\";\n}\n.bd1-sliding-horizontal:before {\n  content: \"\\f18b\";\n}\n.bd1-sliding-vertical:before {\n  content: \"\\f18c\";\n}\n.bd1-slightly-frowning-face-whit-open-mouth:before {\n  content: \"\\f18d\";\n}\n.bd1-slightly-smiling-face:before {\n  content: \"\\f18e\";\n}\n.bd1-slippers:before {\n  content: \"\\f18f\";\n}\n.bd1-slippers-one:before {\n  content: \"\\f190\";\n}\n.bd1-sly-face-whit-smile:before {\n  content: \"\\f191\";\n}\n.bd1-smart-optimization:before {\n  content: \"\\f192\";\n}\n.bd1-smiling-face:before {\n  content: \"\\f193\";\n}\n.bd1-smiling-face-with-squinting-eyes:before {\n  content: \"\\f194\";\n}\n.bd1-snacks:before {\n  content: \"\\f195\";\n}\n.bd1-snake-zodiac:before {\n  content: \"\\f196\";\n}\n.bd1-snow:before {\n  content: \"\\f197\";\n}\n.bd1-snowflake:before {\n  content: \"\\f198\";\n}\n.bd1-snowman:before {\n  content: \"\\f199\";\n}\n.bd1-soap-bubble:before {\n  content: \"\\f19a\";\n}\n.bd1-soccer:before {\n  content: \"\\f19b\";\n}\n.bd1-soccer-one:before {\n  content: \"\\f19c\";\n}\n.bd1-socks:before {\n  content: \"\\f19d\";\n}\n.bd1-sofa:before {\n  content: \"\\f19e\";\n}\n.bd1-sofa-two:before {\n  content: \"\\f19f\";\n}\n.bd1-softball:before {\n  content: \"\\f1a0\";\n}\n.bd1-solar-energy:before {\n  content: \"\\f1a1\";\n}\n.bd1-solar-energy-one:before {\n  content: \"\\f1a2\";\n}\n.bd1-solid-state-disk:before {\n  content: \"\\f1a3\";\n}\n.bd1-sorcerer-hat:before {\n  content: \"\\f1a4\";\n}\n.bd1-sort:before {\n  content: \"\\f1a5\";\n}\n.bd1-sort-amount-down:before {\n  content: \"\\f1a6\";\n}\n.bd1-sort-amount-up:before {\n  content: \"\\f1a7\";\n}\n.bd1-sort-four:before {\n  content: \"\\f1a8\";\n}\n.bd1-sort-one:before {\n  content: \"\\f1a9\";\n}\n.bd1-sort-three:before {\n  content: \"\\f1aa\";\n}\n.bd1-sort-two:before {\n  content: \"\\f1ab\";\n}\n.bd1-sound:before {\n  content: \"\\f1ac\";\n}\n.bd1-sound-one:before {\n  content: \"\\f1ad\";\n}\n.bd1-sound-wave:before {\n  content: \"\\f1ae\";\n}\n.bd1-source-code:before {\n  content: \"\\f1af\";\n}\n.bd1-soybean-milk-maker:before {\n  content: \"\\f1b0\";\n}\n.bd1-spa-candle:before {\n  content: \"\\f1b1\";\n}\n.bd1-space-colony:before {\n  content: \"\\f1b2\";\n}\n.bd1-spanner:before {\n  content: \"\\f1b3\";\n}\n.bd1-speaker:before {\n  content: \"\\f1b4\";\n}\n.bd1-speaker-one:before {\n  content: \"\\f1b5\";\n}\n.bd1-speed:before {\n  content: \"\\f1b6\";\n}\n.bd1-speed-one:before {\n  content: \"\\f1b7\";\n}\n.bd1-sperm:before {\n  content: \"\\f1b8\";\n}\n.bd1-sphere:before {\n  content: \"\\f1b9\";\n}\n.bd1-spider-man:before {\n  content: \"\\f1ba\";\n}\n.bd1-spikedshoes:before {\n  content: \"\\f1bb\";\n}\n.bd1-spinning-top:before {\n  content: \"\\f1bc\";\n}\n.bd1-split:before {\n  content: \"\\f1bd\";\n}\n.bd1-split-branch:before {\n  content: \"\\f1be\";\n}\n.bd1-split-cells:before {\n  content: \"\\f1bf\";\n}\n.bd1-split-turn-down-left:before {\n  content: \"\\f1c0\";\n}\n.bd1-split-turn-down-right:before {\n  content: \"\\f1c1\";\n}\n.bd1-spoon:before {\n  content: \"\\f1c2\";\n}\n.bd1-sport:before {\n  content: \"\\f1c3\";\n}\n.bd1-sporting:before {\n  content: \"\\f1c4\";\n}\n.bd1-square:before {\n  content: \"\\f1c5\";\n}\n.bd1-square-small:before {\n  content: \"\\f1c6\";\n}\n.bd1-ssd:before {\n  content: \"\\f1c7\";\n}\n.bd1-stack-light:before {\n  content: \"\\f1c8\";\n}\n.bd1-stamp:before {\n  content: \"\\f1c9\";\n}\n.bd1-stand-up:before {\n  content: \"\\f1ca\";\n}\n.bd1-stapler:before {\n  content: \"\\f1cb\";\n}\n.bd1-star:before {\n  content: \"\\f1cc\";\n}\n.bd1-star-one:before {\n  content: \"\\f1cd\";\n}\n.bd1-start-time-sort:before {\n  content: \"\\f1ce\";\n}\n.bd1-steering-wheel:before {\n  content: \"\\f1cf\";\n}\n.bd1-steoller:before {\n  content: \"\\f1d0\";\n}\n.bd1-stereo-nesting:before {\n  content: \"\\f1d1\";\n}\n.bd1-stereo-one:before {\n  content: \"\\f1d2\";\n}\n.bd1-stereo-perspective:before {\n  content: \"\\f1d3\";\n}\n.bd1-stethoscope:before {\n  content: \"\\f1d4\";\n}\n.bd1-stickers:before {\n  content: \"\\f1d5\";\n}\n.bd1-stock-market:before {\n  content: \"\\f1d6\";\n}\n.bd1-stopwatch:before {\n  content: \"\\f1d7\";\n}\n.bd1-stopwatch-start:before {\n  content: \"\\f1d8\";\n}\n.bd1-storage-card-one:before {\n  content: \"\\f1d9\";\n}\n.bd1-storage-card-two:before {\n  content: \"\\f1da\";\n}\n.bd1-straight-razor:before {\n  content: \"\\f1db\";\n}\n.bd1-straw-hat:before {\n  content: \"\\f1dc\";\n}\n.bd1-stretching:before {\n  content: \"\\f1dd\";\n}\n.bd1-stretching-one:before {\n  content: \"\\f1de\";\n}\n.bd1-strikethrough:before {\n  content: \"\\f1df\";\n}\n.bd1-strongbox:before {\n  content: \"\\f1e0\";\n}\n.bd1-s-turn-down:before {\n  content: \"\\f1e1\";\n}\n.bd1-s-turn-left:before {\n  content: \"\\f1e2\";\n}\n.bd1-s-turn-right:before {\n  content: \"\\f1e3\";\n}\n.bd1-s-turn-up:before {\n  content: \"\\f1e4\";\n}\n.bd1-subtract-selection:before {\n  content: \"\\f1e5\";\n}\n.bd1-subtract-selection-one:before {\n  content: \"\\f1e6\";\n}\n.bd1-subway:before {\n  content: \"\\f1e7\";\n}\n.bd1-success:before {\n  content: \"\\f1e8\";\n}\n.bd1-success-picture:before {\n  content: \"\\f1e9\";\n}\n.bd1-sum:before {\n  content: \"\\f1ea\";\n}\n.bd1-sun:before {\n  content: \"\\f1eb\";\n}\n.bd1-sunbath:before {\n  content: \"\\f1ec\";\n}\n.bd1-sun-hat:before {\n  content: \"\\f1ed\";\n}\n.bd1-sunny:before {\n  content: \"\\f1ee\";\n}\n.bd1-sun-one:before {\n  content: \"\\f1ef\";\n}\n.bd1-sunrise:before {\n  content: \"\\f1f0\";\n}\n.bd1-sunset:before {\n  content: \"\\f1f1\";\n}\n.bd1-sunshade:before {\n  content: \"\\f1f2\";\n}\n.bd1-surprised-face-with-open-big-mouth:before {\n  content: \"\\f1f3\";\n}\n.bd1-surprised-face-with-open-mouth:before {\n  content: \"\\f1f4\";\n}\n.bd1-surveillance-cameras:before {\n  content: \"\\f1f5\";\n}\n.bd1-surveillance-cameras-one:before {\n  content: \"\\f1f6\";\n}\n.bd1-surveillance-cameras-two:before {\n  content: \"\\f1f7\";\n}\n.bd1-swallow:before {\n  content: \"\\f1f8\";\n}\n.bd1-sweater:before {\n  content: \"\\f1f9\";\n}\n.bd1-swimming-pool:before {\n  content: \"\\f1fa\";\n}\n.bd1-swimming-ring:before {\n  content: \"\\f1fb\";\n}\n.bd1-swimsuit:before {\n  content: \"\\f1fc\";\n}\n.bd1-swing:before {\n  content: \"\\f1fd\";\n}\n.bd1-swipe:before {\n  content: \"\\f1fe\";\n}\n.bd1-switch:before {\n  content: \"\\f1ff\";\n}\n.bd1-switch-button:before {\n  content: \"\\f200\";\n}\n.bd1-switch-contrast:before {\n  content: \"\\f201\";\n}\n.bd1-switching-done:before {\n  content: \"\\f202\";\n}\n.bd1-switch-nintendo:before {\n  content: \"\\f203\";\n}\n.bd1-switch-one:before {\n  content: \"\\f204\";\n}\n.bd1-switch-themes:before {\n  content: \"\\f205\";\n}\n.bd1-switch-track:before {\n  content: \"\\f206\";\n}\n.bd1-symbol:before {\n  content: \"\\f207\";\n}\n.bd1-symbol-double-x:before {\n  content: \"\\f208\";\n}\n.bd1-symmetry:before {\n  content: \"\\f209\";\n}\n.bd1-sync:before {\n  content: \"\\f20a\";\n}\n.bd1-system:before {\n  content: \"\\f20b\";\n}\n.bd1-table:before {\n  content: \"\\f20c\";\n}\n.bd1-table-file:before {\n  content: \"\\f20d\";\n}\n.bd1-table-lamp:before {\n  content: \"\\f20e\";\n}\n.bd1-table-report:before {\n  content: \"\\f20f\";\n}\n.bd1-tabletennis:before {\n  content: \"\\f210\";\n}\n.bd1-tag:before {\n  content: \"\\f211\";\n}\n.bd1-tag-one:before {\n  content: \"\\f212\";\n}\n.bd1-tailoring:before {\n  content: \"\\f213\";\n}\n.bd1-tailoring-two:before {\n  content: \"\\f214\";\n}\n.bd1-taj-mahal:before {\n  content: \"\\f215\";\n}\n.bd1-take-off:before {\n  content: \"\\f216\";\n}\n.bd1-take-off-one:before {\n  content: \"\\f217\";\n}\n.bd1-taobao:before {\n  content: \"\\f218\";\n}\n.bd1-tape:before {\n  content: \"\\f219\";\n}\n.bd1-tape-measure:before {\n  content: \"\\f21a\";\n}\n.bd1-target:before {\n  content: \"\\f21b\";\n}\n.bd1-target-one:before {\n  content: \"\\f21c\";\n}\n.bd1-target-two:before {\n  content: \"\\f21d\";\n}\n.bd1-taurus:before {\n  content: \"\\f21e\";\n}\n.bd1-taxi:before {\n  content: \"\\f21f\";\n}\n.bd1-tea:before {\n  content: \"\\f220\";\n}\n.bd1-tea-drink:before {\n  content: \"\\f221\";\n}\n.bd1-teapot:before {\n  content: \"\\f222\";\n}\n.bd1-teeth:before {\n  content: \"\\f223\";\n}\n.bd1-telegram:before {\n  content: \"\\f224\";\n}\n.bd1-telescope:before {\n  content: \"\\f225\";\n}\n.bd1-tencent-qq:before {\n  content: \"\\f226\";\n}\n.bd1-tennis:before {\n  content: \"\\f227\";\n}\n.bd1-tent:before {\n  content: \"\\f228\";\n}\n.bd1-tent-banner:before {\n  content: \"\\f229\";\n}\n.bd1-terminal:before {\n  content: \"\\f22a\";\n}\n.bd1-termination-file:before {\n  content: \"\\f22b\";\n}\n.bd1-terrace:before {\n  content: \"\\f22c\";\n}\n.bd1-test-tube:before {\n  content: \"\\f22d\";\n}\n.bd1-text:before {\n  content: \"\\f22e\";\n}\n.bd1-textarea:before {\n  content: \"\\f22f\";\n}\n.bd1-text-bold:before {\n  content: \"\\f230\";\n}\n.bd1-text-italic:before {\n  content: \"\\f231\";\n}\n.bd1-text-message:before {\n  content: \"\\f232\";\n}\n.bd1-text-recognition:before {\n  content: \"\\f233\";\n}\n.bd1-text-rotation-down:before {\n  content: \"\\f234\";\n}\n.bd1-text-rotation-left:before {\n  content: \"\\f235\";\n}\n.bd1-text-rotation-none:before {\n  content: \"\\f236\";\n}\n.bd1-text-rotation-up:before {\n  content: \"\\f237\";\n}\n.bd1-text-style:before {\n  content: \"\\f238\";\n}\n.bd1-text-style-one:before {\n  content: \"\\f239\";\n}\n.bd1-text-underline:before {\n  content: \"\\f23a\";\n}\n.bd1-texture:before {\n  content: \"\\f23b\";\n}\n.bd1-texture-two:before {\n  content: \"\\f23c\";\n}\n.bd1-text-wrap-overflow:before {\n  content: \"\\f23d\";\n}\n.bd1-text-wrap-truncation:before {\n  content: \"\\f23e\";\n}\n.bd1-theater:before {\n  content: \"\\f23f\";\n}\n.bd1-theme:before {\n  content: \"\\f240\";\n}\n.bd1-thermometer:before {\n  content: \"\\f241\";\n}\n.bd1-thermometer-one:before {\n  content: \"\\f242\";\n}\n.bd1-thermos-cup:before {\n  content: \"\\f243\";\n}\n.bd1-the-single-shoulder-bag:before {\n  content: \"\\f244\";\n}\n.bd1-thin:before {\n  content: \"\\f245\";\n}\n.bd1-thinking-problem:before {\n  content: \"\\f246\";\n}\n.bd1-three:before {\n  content: \"\\f247\";\n}\n.bd1-three-d-glasses:before {\n  content: \"\\f248\";\n}\n.bd1-three-hexagons:before {\n  content: \"\\f249\";\n}\n.bd1-three-key:before {\n  content: \"\\f24a\";\n}\n.bd1-three-slashes:before {\n  content: \"\\f24b\";\n}\n.bd1-three-three:before {\n  content: \"\\f24c\";\n}\n.bd1-three-triangles:before {\n  content: \"\\f24d\";\n}\n.bd1-thumbs-down:before {\n  content: \"\\f24e\";\n}\n.bd1-thumbs-up:before {\n  content: \"\\f24f\";\n}\n.bd1-thunderbolt:before {\n  content: \"\\f250\";\n}\n.bd1-thunderstorm:before {\n  content: \"\\f251\";\n}\n.bd1-thunderstorm-one:before {\n  content: \"\\f252\";\n}\n.bd1-ticket:before {\n  content: \"\\f253\";\n}\n.bd1-ticket-one:before {\n  content: \"\\f254\";\n}\n.bd1-tickets-checked:before {\n  content: \"\\f255\";\n}\n.bd1-tickets-one:before {\n  content: \"\\f256\";\n}\n.bd1-tickets-two:before {\n  content: \"\\f257\";\n}\n.bd1-tiger-zodiac:before {\n  content: \"\\f258\";\n}\n.bd1-tiktok:before {\n  content: \"\\f259\";\n}\n.bd1-time:before {\n  content: \"\\f25a\";\n}\n.bd1-timed-mail:before {\n  content: \"\\f25b\";\n}\n.bd1-timeline:before {\n  content: \"\\f25c\";\n}\n.bd1-timer:before {\n  content: \"\\f25d\";\n}\n.bd1-tips:before {\n  content: \"\\f25e\";\n}\n.bd1-tips-one:before {\n  content: \"\\f25f\";\n}\n.bd1-tire-swing:before {\n  content: \"\\f260\";\n}\n.bd1-title-level:before {\n  content: \"\\f261\";\n}\n.bd1-to-bottom:before {\n  content: \"\\f262\";\n}\n.bd1-to-bottom-one:before {\n  content: \"\\f263\";\n}\n.bd1-toilet:before {\n  content: \"\\f264\";\n}\n.bd1-to-left:before {\n  content: \"\\f265\";\n}\n.bd1-tomato:before {\n  content: \"\\f266\";\n}\n.bd1-tool:before {\n  content: \"\\f267\";\n}\n.bd1-toolkit:before {\n  content: \"\\f268\";\n}\n.bd1-top-bar:before {\n  content: \"\\f269\";\n}\n.bd1-topbuzz:before {\n  content: \"\\f26a\";\n}\n.bd1-topic:before {\n  content: \"\\f26b\";\n}\n.bd1-topic-discussion:before {\n  content: \"\\f26c\";\n}\n.bd1-torch:before {\n  content: \"\\f26d\";\n}\n.bd1-to-right:before {\n  content: \"\\f26e\";\n}\n.bd1-to-top:before {\n  content: \"\\f26f\";\n}\n.bd1-to-top-one:before {\n  content: \"\\f270\";\n}\n.bd1-tour-bus:before {\n  content: \"\\f271\";\n}\n.bd1-towel:before {\n  content: \"\\f272\";\n}\n.bd1-tower:before {\n  content: \"\\f273\";\n}\n.bd1-tower-of-babel:before {\n  content: \"\\f274\";\n}\n.bd1-tower-of-pisa:before {\n  content: \"\\f275\";\n}\n.bd1-toxins:before {\n  content: \"\\f276\";\n}\n.bd1-trace:before {\n  content: \"\\f277\";\n}\n.bd1-trademark:before {\n  content: \"\\f278\";\n}\n.bd1-traditional-chinese-medicine:before {\n  content: \"\\f279\";\n}\n.bd1-train:before {\n  content: \"\\f27a\";\n}\n.bd1-transaction:before {\n  content: \"\\f27b\";\n}\n.bd1-transaction-order:before {\n  content: \"\\f27c\";\n}\n.bd1-transfer:before {\n  content: \"\\f27d\";\n}\n.bd1-transfer-data:before {\n  content: \"\\f27e\";\n}\n.bd1-transform:before {\n  content: \"\\f27f\";\n}\n.bd1-translate:before {\n  content: \"\\f280\";\n}\n.bd1-translation:before {\n  content: \"\\f281\";\n}\n.bd1-transport:before {\n  content: \"\\f282\";\n}\n.bd1-transporter:before {\n  content: \"\\f283\";\n}\n.bd1-trapezoid:before {\n  content: \"\\f284\";\n}\n.bd1-tray:before {\n  content: \"\\f285\";\n}\n.bd1-treadmill:before {\n  content: \"\\f286\";\n}\n.bd1-treadmill-one:before {\n  content: \"\\f287\";\n}\n.bd1-treadmill-two:before {\n  content: \"\\f288\";\n}\n.bd1-treasure-chest:before {\n  content: \"\\f289\";\n}\n.bd1-tree:before {\n  content: \"\\f28a\";\n}\n.bd1-tree-diagram:before {\n  content: \"\\f28b\";\n}\n.bd1-tree-list:before {\n  content: \"\\f28c\";\n}\n.bd1-tree-one:before {\n  content: \"\\f28d\";\n}\n.bd1-tree-two:before {\n  content: \"\\f28e\";\n}\n.bd1-trend:before {\n  content: \"\\f28f\";\n}\n.bd1-trending-down:before {\n  content: \"\\f290\";\n}\n.bd1-trending-up:before {\n  content: \"\\f291\";\n}\n.bd1-trend-two:before {\n  content: \"\\f292\";\n}\n.bd1-triangle:before {\n  content: \"\\f293\";\n}\n.bd1-triangle-round-rectangle:before {\n  content: \"\\f294\";\n}\n.bd1-triangle-ruler:before {\n  content: \"\\f295\";\n}\n.bd1-triangular-pyramid:before {\n  content: \"\\f296\";\n}\n.bd1-trophy:before {\n  content: \"\\f297\";\n}\n.bd1-trousers-bell-bottoms:before {\n  content: \"\\f298\";\n}\n.bd1-truck:before {\n  content: \"\\f299\";\n}\n.bd1-trumpet:before {\n  content: \"\\f29a\";\n}\n.bd1-trunk:before {\n  content: \"\\f29b\";\n}\n.bd1-t-shirt:before {\n  content: \"\\f29c\";\n}\n.bd1-tub:before {\n  content: \"\\f29d\";\n}\n.bd1-tuchong:before {\n  content: \"\\f29e\";\n}\n.bd1-tumblr:before {\n  content: \"\\f29f\";\n}\n.bd1-turkey:before {\n  content: \"\\f2a0\";\n}\n.bd1-turn-around:before {\n  content: \"\\f2a1\";\n}\n.bd1-turn-off-bluetooth:before {\n  content: \"\\f2a2\";\n}\n.bd1-turn-on:before {\n  content: \"\\f2a3\";\n}\n.bd1-tv:before {\n  content: \"\\f2a4\";\n}\n.bd1-tv-one:before {\n  content: \"\\f2a5\";\n}\n.bd1-twitter:before {\n  content: \"\\f2a6\";\n}\n.bd1-two:before {\n  content: \"\\f2a7\";\n}\n.bd1-two-dimensional-code:before {\n  content: \"\\f2a8\";\n}\n.bd1-two-dimensional-code-one:before {\n  content: \"\\f2a9\";\n}\n.bd1-two-dimensional-code-two:before {\n  content: \"\\f2aa\";\n}\n.bd1-two-ellipses:before {\n  content: \"\\f2ab\";\n}\n.bd1-two-fingers:before {\n  content: \"\\f2ac\";\n}\n.bd1-two-hands:before {\n  content: \"\\f2ad\";\n}\n.bd1-two-key:before {\n  content: \"\\f2ae\";\n}\n.bd1-two-semicircles:before {\n  content: \"\\f2af\";\n}\n.bd1-two-triangles:before {\n  content: \"\\f2b0\";\n}\n.bd1-two-triangles-two:before {\n  content: \"\\f2b1\";\n}\n.bd1-two-two:before {\n  content: \"\\f2b2\";\n}\n.bd1-type-drive:before {\n  content: \"\\f2b3\";\n}\n.bd1-u-disk:before {\n  content: \"\\f2b4\";\n}\n.bd1-ulikecam:before {\n  content: \"\\f2b5\";\n}\n.bd1-umbrella:before {\n  content: \"\\f2b6\";\n}\n.bd1-umbrella-one:before {\n  content: \"\\f2b7\";\n}\n.bd1-umbrella-two:before {\n  content: \"\\f2b8\";\n}\n.bd1-undo:before {\n  content: \"\\f2b9\";\n}\n.bd1-ungroup:before {\n  content: \"\\f2ba\";\n}\n.bd1-unicast:before {\n  content: \"\\f2bb\";\n}\n.bd1-union-selection:before {\n  content: \"\\f2bc\";\n}\n.bd1-universal:before {\n  content: \"\\f2bd\";\n}\n.bd1-unlike:before {\n  content: \"\\f2be\";\n}\n.bd1-unlink:before {\n  content: \"\\f2bf\";\n}\n.bd1-unlock:before {\n  content: \"\\f2c0\";\n}\n.bd1-unlock-one:before {\n  content: \"\\f2c1\";\n}\n.bd1-unordered-list:before {\n  content: \"\\f2c2\";\n}\n.bd1-up:before {\n  content: \"\\f2c3\";\n}\n.bd1-up-and-down:before {\n  content: \"\\f2c4\";\n}\n.bd1-up-c:before {\n  content: \"\\f2c5\";\n}\n.bd1-update-rotation:before {\n  content: \"\\f2c6\";\n}\n.bd1-upload:before {\n  content: \"\\f2c7\";\n}\n.bd1-upload-computer:before {\n  content: \"\\f2c8\";\n}\n.bd1-upload-laptop:before {\n  content: \"\\f2c9\";\n}\n.bd1-upload-logs:before {\n  content: \"\\f2ca\";\n}\n.bd1-upload-one:before {\n  content: \"\\f2cb\";\n}\n.bd1-upload-picture:before {\n  content: \"\\f2cc\";\n}\n.bd1-upload-three:before {\n  content: \"\\f2cd\";\n}\n.bd1-upload-two:before {\n  content: \"\\f2ce\";\n}\n.bd1-upload-web:before {\n  content: \"\\f2cf\";\n}\n.bd1-up-one:before {\n  content: \"\\f2d0\";\n}\n.bd1-upside-down-face:before {\n  content: \"\\f2d1\";\n}\n.bd1-up-small:before {\n  content: \"\\f2d2\";\n}\n.bd1-up-square:before {\n  content: \"\\f2d3\";\n}\n.bd1-up-two:before {\n  content: \"\\f2d4\";\n}\n.bd1-usb:before {\n  content: \"\\f2d5\";\n}\n.bd1-usb-memory-stick:before {\n  content: \"\\f2d6\";\n}\n.bd1-usb-micro-one:before {\n  content: \"\\f2d7\";\n}\n.bd1-usb-micro-two:before {\n  content: \"\\f2d8\";\n}\n.bd1-usb-one:before {\n  content: \"\\f2d9\";\n}\n.bd1-usb-type-c:before {\n  content: \"\\f2da\";\n}\n.bd1-user:before {\n  content: \"\\f2db\";\n}\n.bd1-user-business:before {\n  content: \"\\f2dc\";\n}\n.bd1-user-positioning:before {\n  content: \"\\f2dd\";\n}\n.bd1-user-to-user-transmission:before {\n  content: \"\\f2de\";\n}\n.bd1-uterus:before {\n  content: \"\\f2df\";\n}\n.bd1-u-turn-down:before {\n  content: \"\\f2e0\";\n}\n.bd1-u-turn-left:before {\n  content: \"\\f2e1\";\n}\n.bd1-u-turn-right:before {\n  content: \"\\f2e2\";\n}\n.bd1-u-turn-up:before {\n  content: \"\\f2e3\";\n}\n.bd1-vacation:before {\n  content: \"\\f2e4\";\n}\n.bd1-vacuum-cleaner:before {\n  content: \"\\f2e5\";\n}\n.bd1-vegetable-basket:before {\n  content: \"\\f2e6\";\n}\n.bd1-vegetables:before {\n  content: \"\\f2e7\";\n}\n.bd1-vertically-centered:before {\n  content: \"\\f2e8\";\n}\n.bd1-vertical-spacing-between-items:before {\n  content: \"\\f2e9\";\n}\n.bd1-vertical-tidy-up:before {\n  content: \"\\f2ea\";\n}\n.bd1-vertical-timeline:before {\n  content: \"\\f2eb\";\n}\n.bd1-vest:before {\n  content: \"\\f2ec\";\n}\n.bd1-vial:before {\n  content: \"\\f2ed\";\n}\n.bd1-vicia-faba:before {\n  content: \"\\f2ee\";\n}\n.bd1-video:before {\n  content: \"\\f2ef\";\n}\n.bd1-videocamera:before {\n  content: \"\\f2f0\";\n}\n.bd1-videocamera-one:before {\n  content: \"\\f2f1\";\n}\n.bd1-video-conference:before {\n  content: \"\\f2f2\";\n}\n.bd1-video-file:before {\n  content: \"\\f2f3\";\n}\n.bd1-video-one:before {\n  content: \"\\f2f4\";\n}\n.bd1-video-two:before {\n  content: \"\\f2f5\";\n}\n.bd1-viencharts:before {\n  content: \"\\f2f6\";\n}\n.bd1-viewfinder:before {\n  content: \"\\f2f7\";\n}\n.bd1-view-grid-card:before {\n  content: \"\\f2f8\";\n}\n.bd1-view-grid-detail:before {\n  content: \"\\f2f9\";\n}\n.bd1-view-grid-list:before {\n  content: \"\\f2fa\";\n}\n.bd1-view-list:before {\n  content: \"\\f2fb\";\n}\n.bd1-vigo:before {\n  content: \"\\f2fc\";\n}\n.bd1-vip:before {\n  content: \"\\f2fd\";\n}\n.bd1-vip-one:before {\n  content: \"\\f2fe\";\n}\n.bd1-virgo:before {\n  content: \"\\f2ff\";\n}\n.bd1-virtual-reality-glasses:before {\n  content: \"\\f300\";\n}\n.bd1-voice:before {\n  content: \"\\f301\";\n}\n.bd1-voice-input:before {\n  content: \"\\f302\";\n}\n.bd1-voicemail:before {\n  content: \"\\f303\";\n}\n.bd1-voice-message:before {\n  content: \"\\f304\";\n}\n.bd1-voice-off:before {\n  content: \"\\f305\";\n}\n.bd1-voice-one:before {\n  content: \"\\f306\";\n}\n.bd1-volkswagen:before {\n  content: \"\\f307\";\n}\n.bd1-volleyball:before {\n  content: \"\\f308\";\n}\n.bd1-volume-down:before {\n  content: \"\\f309\";\n}\n.bd1-volume-mute:before {\n  content: \"\\f30a\";\n}\n.bd1-volume-notice:before {\n  content: \"\\f30b\";\n}\n.bd1-volume-small:before {\n  content: \"\\f30c\";\n}\n.bd1-volume-up:before {\n  content: \"\\f30d\";\n}\n.bd1-vr-glasses:before {\n  content: \"\\f30e\";\n}\n.bd1-waistline:before {\n  content: \"\\f30f\";\n}\n.bd1-wallet:before {\n  content: \"\\f310\";\n}\n.bd1-wallet-one:before {\n  content: \"\\f311\";\n}\n.bd1-wallet-three:before {\n  content: \"\\f312\";\n}\n.bd1-wallet-two:before {\n  content: \"\\f313\";\n}\n.bd1-warehousing:before {\n  content: \"\\f314\";\n}\n.bd1-washing-machine:before {\n  content: \"\\f315\";\n}\n.bd1-washing-machine-one:before {\n  content: \"\\f316\";\n}\n.bd1-watch:before {\n  content: \"\\f317\";\n}\n.bd1-watch-one:before {\n  content: \"\\f318\";\n}\n.bd1-water:before {\n  content: \"\\f319\";\n}\n.bd1-waterfalls-h:before {\n  content: \"\\f31a\";\n}\n.bd1-waterfalls-v:before {\n  content: \"\\f31b\";\n}\n.bd1-water-level:before {\n  content: \"\\f31c\";\n}\n.bd1-watermelon:before {\n  content: \"\\f31d\";\n}\n.bd1-watermelon-one:before {\n  content: \"\\f31e\";\n}\n.bd1-water-no:before {\n  content: \"\\f31f\";\n}\n.bd1-waterpolo:before {\n  content: \"\\f320\";\n}\n.bd1-waterpolo-one:before {\n  content: \"\\f321\";\n}\n.bd1-water-rate:before {\n  content: \"\\f322\";\n}\n.bd1-water-rate-two:before {\n  content: \"\\f323\";\n}\n.bd1-waves:before {\n  content: \"\\f324\";\n}\n.bd1-waves-left:before {\n  content: \"\\f325\";\n}\n.bd1-waves-right:before {\n  content: \"\\f326\";\n}\n.bd1-weary-face:before {\n  content: \"\\f327\";\n}\n.bd1-webcam:before {\n  content: \"\\f328\";\n}\n.bd1-web-page:before {\n  content: \"\\f329\";\n}\n.bd1-wechat:before {\n  content: \"\\f32a\";\n}\n.bd1-weibo:before {\n  content: \"\\f32b\";\n}\n.bd1-weight:before {\n  content: \"\\f32c\";\n}\n.bd1-weightlifting:before {\n  content: \"\\f32d\";\n}\n.bd1-weixin-cards-offers:before {\n  content: \"\\f32e\";\n}\n.bd1-weixin-favorites:before {\n  content: \"\\f32f\";\n}\n.bd1-weixin-games:before {\n  content: \"\\f330\";\n}\n.bd1-weixin-market:before {\n  content: \"\\f331\";\n}\n.bd1-weixin-mini-app:before {\n  content: \"\\f332\";\n}\n.bd1-weixin-people-nearby:before {\n  content: \"\\f333\";\n}\n.bd1-weixin-scan:before {\n  content: \"\\f334\";\n}\n.bd1-weixin-search:before {\n  content: \"\\f335\";\n}\n.bd1-weixin-shake:before {\n  content: \"\\f336\";\n}\n.bd1-weixin-top-stories:before {\n  content: \"\\f337\";\n}\n.bd1-whale:before {\n  content: \"\\f338\";\n}\n.bd1-wheelchair:before {\n  content: \"\\f339\";\n}\n.bd1-whirlwind:before {\n  content: \"\\f33a\";\n}\n.bd1-whistling:before {\n  content: \"\\f33b\";\n}\n.bd1-whole-site-accelerator:before {\n  content: \"\\f33c\";\n}\n.bd1-wifi:before {\n  content: \"\\f33d\";\n}\n.bd1-wind:before {\n  content: \"\\f33e\";\n}\n.bd1-windmill:before {\n  content: \"\\f33f\";\n}\n.bd1-windmill-one:before {\n  content: \"\\f340\";\n}\n.bd1-windmill-two:before {\n  content: \"\\f341\";\n}\n.bd1-windows:before {\n  content: \"\\f342\";\n}\n.bd1-wind-turbine:before {\n  content: \"\\f343\";\n}\n.bd1-wingsuit-flying:before {\n  content: \"\\f344\";\n}\n.bd1-winking-face:before {\n  content: \"\\f345\";\n}\n.bd1-winking-face-with-open-eyes:before {\n  content: \"\\f346\";\n}\n.bd1-woman:before {\n  content: \"\\f347\";\n}\n.bd1-women:before {\n  content: \"\\f348\";\n}\n.bd1-women-coat:before {\n  content: \"\\f349\";\n}\n.bd1-woolen-hat:before {\n  content: \"\\f34a\";\n}\n.bd1-word:before {\n  content: \"\\f34b\";\n}\n.bd1-workbench:before {\n  content: \"\\f34c\";\n}\n.bd1-worker:before {\n  content: \"\\f34d\";\n}\n.bd1-world:before {\n  content: \"\\f34e\";\n}\n.bd1-worried-face:before {\n  content: \"\\f34f\";\n}\n.bd1-write:before {\n  content: \"\\f350\";\n}\n.bd1-writing-fluently:before {\n  content: \"\\f351\";\n}\n.bd1-wrong-user:before {\n  content: \"\\f352\";\n}\n.bd1-xiaodu:before {\n  content: \"\\f353\";\n}\n.bd1-xiaodu-home:before {\n  content: \"\\f354\";\n}\n.bd1-xigua:before {\n  content: \"\\f355\";\n}\n.bd1-xingfuli:before {\n  content: \"\\f356\";\n}\n.bd1-xingtu:before {\n  content: \"\\f357\";\n}\n.bd1-yep:before {\n  content: \"\\f358\";\n}\n.bd1-youtobe:before {\n  content: \"\\f359\";\n}\n.bd1-youtube:before {\n  content: \"\\f35a\";\n}\n.bd1-zero-key:before {\n  content: \"\\f35b\";\n}\n.bd1-zijinyunying:before {\n  content: \"\\f35c\";\n}\n.bd1-zip:before {\n  content: \"\\f35d\";\n}\n.bd1-zoom:before {\n  content: \"\\f35e\";\n}\n.bd1-zoom-in:before {\n  content: \"\\f35f\";\n}\n.bd1-zoom-internal:before {\n  content: \"\\f360\";\n}\n.bd1-zoom-out:before {\n  content: \"\\f361\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-captainicon-pack/ikonli-captainicon-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-captainicon-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.captainicon {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.captainicon;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.captainicon.CaptainiconIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.captainicon.CaptainiconIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-captainicon-pack/src/main/java/org/kordamp/ikonli/captainicon/Captainicon.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.captainicon;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Captainicon implements Ikon {\n    ICON_001(\"captainicon-001\", '\\ue600'),\n    ICON_002(\"captainicon-002\", '\\ue601'),\n    ICON_003(\"captainicon-003\", '\\ue602'),\n    ICON_004(\"captainicon-004\", '\\ue603'),\n    ICON_005(\"captainicon-005\", '\\ue604'),\n    ICON_006(\"captainicon-006\", '\\ue605'),\n    ICON_007(\"captainicon-007\", '\\ue606'),\n    ICON_008(\"captainicon-008\", '\\ue607'),\n    ICON_009(\"captainicon-009\", '\\ue608'),\n    ICON_010(\"captainicon-010\", '\\ue609'),\n    ICON_011(\"captainicon-011\", '\\ue60a'),\n    ICON_012(\"captainicon-012\", '\\ue60b'),\n    ICON_013(\"captainicon-013\", '\\ue60c'),\n    ICON_014(\"captainicon-014\", '\\ue60d'),\n    ICON_015(\"captainicon-015\", '\\ue60e'),\n    ICON_016(\"captainicon-016\", '\\ue60f'),\n    ICON_017(\"captainicon-017\", '\\ue610'),\n    ICON_018(\"captainicon-018\", '\\ue611'),\n    ICON_019(\"captainicon-019\", '\\ue612'),\n    ICON_020(\"captainicon-020\", '\\ue613'),\n    ICON_021(\"captainicon-021\", '\\ue614'),\n    ICON_022(\"captainicon-022\", '\\ue615'),\n    ICON_023(\"captainicon-023\", '\\ue616'),\n    ICON_024(\"captainicon-024\", '\\ue617'),\n    ICON_025(\"captainicon-025\", '\\ue618'),\n    ICON_026(\"captainicon-026\", '\\ue619'),\n    ICON_027(\"captainicon-027\", '\\ue61a'),\n    ICON_028(\"captainicon-028\", '\\ue61b'),\n    ICON_029(\"captainicon-029\", '\\ue61c'),\n    ICON_030(\"captainicon-030\", '\\ue61d'),\n    ICON_031(\"captainicon-031\", '\\ue61e'),\n    ICON_032(\"captainicon-032\", '\\ue61f'),\n    ICON_033(\"captainicon-033\", '\\ue620'),\n    ICON_034(\"captainicon-034\", '\\ue621'),\n    ICON_035(\"captainicon-035\", '\\ue622'),\n    ICON_036(\"captainicon-036\", '\\ue623'),\n    ICON_037(\"captainicon-037\", '\\ue624'),\n    ICON_038(\"captainicon-038\", '\\ue625'),\n    ICON_039(\"captainicon-039\", '\\ue626'),\n    ICON_040(\"captainicon-040\", '\\ue627'),\n    ICON_041(\"captainicon-041\", '\\ue628'),\n    ICON_042(\"captainicon-042\", '\\ue629'),\n    ICON_043(\"captainicon-043\", '\\ue62a'),\n    ICON_044(\"captainicon-044\", '\\ue62b'),\n    ICON_045(\"captainicon-045\", '\\ue62c'),\n    ICON_046(\"captainicon-046\", '\\ue62d'),\n    ICON_047(\"captainicon-047\", '\\ue62e'),\n    ICON_048(\"captainicon-048\", '\\ue62f'),\n    ICON_049(\"captainicon-049\", '\\ue630'),\n    ICON_050(\"captainicon-050\", '\\ue631'),\n    ICON_051(\"captainicon-051\", '\\ue632'),\n    ICON_052(\"captainicon-052\", '\\ue633'),\n    ICON_053(\"captainicon-053\", '\\ue634'),\n    ICON_054(\"captainicon-054\", '\\ue635'),\n    ICON_055(\"captainicon-055\", '\\ue636'),\n    ICON_056(\"captainicon-056\", '\\ue637'),\n    ICON_057(\"captainicon-057\", '\\ue638'),\n    ICON_058(\"captainicon-058\", '\\ue639'),\n    ICON_059(\"captainicon-059\", '\\ue63a'),\n    ICON_060(\"captainicon-060\", '\\ue63b'),\n    ICON_061(\"captainicon-061\", '\\ue63c'),\n    ICON_062(\"captainicon-062\", '\\ue63d'),\n    ICON_063(\"captainicon-063\", '\\ue63e'),\n    ICON_064(\"captainicon-064\", '\\ue63f'),\n    ICON_065(\"captainicon-065\", '\\ue640'),\n    ICON_066(\"captainicon-066\", '\\ue641'),\n    ICON_067(\"captainicon-067\", '\\ue642'),\n    ICON_068(\"captainicon-068\", '\\ue643'),\n    ICON_069(\"captainicon-069\", '\\ue644'),\n    ICON_070(\"captainicon-070\", '\\ue645'),\n    ICON_071(\"captainicon-071\", '\\ue646'),\n    ICON_072(\"captainicon-072\", '\\ue647'),\n    ICON_073(\"captainicon-073\", '\\ue648'),\n    ICON_074(\"captainicon-074\", '\\ue649'),\n    ICON_075(\"captainicon-075\", '\\ue64a'),\n    ICON_076(\"captainicon-076\", '\\ue64b'),\n    ICON_077(\"captainicon-077\", '\\ue64c'),\n    ICON_078(\"captainicon-078\", '\\ue64d'),\n    ICON_079(\"captainicon-079\", '\\ue64e'),\n    ICON_080(\"captainicon-080\", '\\ue64f'),\n    ICON_081(\"captainicon-081\", '\\ue650'),\n    ICON_082(\"captainicon-082\", '\\ue651'),\n    ICON_083(\"captainicon-083\", '\\ue652'),\n    ICON_084(\"captainicon-084\", '\\ue653'),\n    ICON_085(\"captainicon-085\", '\\ue654'),\n    ICON_086(\"captainicon-086\", '\\ue655'),\n    ICON_087(\"captainicon-087\", '\\ue656'),\n    ICON_088(\"captainicon-088\", '\\ue657'),\n    ICON_089(\"captainicon-089\", '\\ue658'),\n    ICON_090(\"captainicon-090\", '\\ue659'),\n    ICON_091(\"captainicon-091\", '\\ue65a'),\n    ICON_092(\"captainicon-092\", '\\ue65b'),\n    ICON_093(\"captainicon-093\", '\\ue65c'),\n    ICON_094(\"captainicon-094\", '\\ue65d'),\n    ICON_095(\"captainicon-095\", '\\ue65e'),\n    ICON_096(\"captainicon-096\", '\\ue65f'),\n    ICON_097(\"captainicon-097\", '\\ue660'),\n    ICON_098(\"captainicon-098\", '\\ue661'),\n    ICON_099(\"captainicon-099\", '\\ue662'),\n    ICON_100(\"captainicon-100\", '\\ue663'),\n    ICON_101(\"captainicon-101\", '\\ue664'),\n    ICON_102(\"captainicon-102\", '\\ue665'),\n    ICON_103(\"captainicon-103\", '\\ue666'),\n    ICON_104(\"captainicon-104\", '\\ue667'),\n    ICON_105(\"captainicon-105\", '\\ue668'),\n    ICON_106(\"captainicon-106\", '\\ue669'),\n    ICON_107(\"captainicon-107\", '\\ue66a'),\n    ICON_108(\"captainicon-108\", '\\ue66b'),\n    ICON_109(\"captainicon-109\", '\\ue66c'),\n    ICON_110(\"captainicon-110\", '\\ue66d'),\n    ICON_111(\"captainicon-111\", '\\ue66e'),\n    ICON_112(\"captainicon-112\", '\\ue66f'),\n    ICON_113(\"captainicon-113\", '\\ue670'),\n    ICON_114(\"captainicon-114\", '\\ue671'),\n    ICON_115(\"captainicon-115\", '\\ue672'),\n    ICON_116(\"captainicon-116\", '\\ue673'),\n    ICON_117(\"captainicon-117\", '\\ue674'),\n    ICON_118(\"captainicon-118\", '\\ue675'),\n    ICON_119(\"captainicon-119\", '\\ue676'),\n    ICON_120(\"captainicon-120\", '\\ue677'),\n    ICON_121(\"captainicon-121\", '\\ue678'),\n    ICON_122(\"captainicon-122\", '\\ue679'),\n    ICON_123(\"captainicon-123\", '\\ue67a'),\n    ICON_124(\"captainicon-124\", '\\ue67b'),\n    ICON_125(\"captainicon-125\", '\\ue67c'),\n    ICON_126(\"captainicon-126\", '\\ue67d'),\n    ICON_127(\"captainicon-127\", '\\ue67e'),\n    ICON_128(\"captainicon-128\", '\\ue67f'),\n    ICON_129(\"captainicon-129\", '\\ue680'),\n    ICON_130(\"captainicon-130\", '\\ue681'),\n    ICON_131(\"captainicon-131\", '\\ue682'),\n    ICON_132(\"captainicon-132\", '\\ue683'),\n    ICON_133(\"captainicon-133\", '\\ue684'),\n    ICON_134(\"captainicon-134\", '\\ue685'),\n    ICON_135(\"captainicon-135\", '\\ue686'),\n    ICON_136(\"captainicon-136\", '\\ue687'),\n    ICON_137(\"captainicon-137\", '\\ue688'),\n    ICON_138(\"captainicon-138\", '\\ue689'),\n    ICON_139(\"captainicon-139\", '\\ue68a'),\n    ICON_140(\"captainicon-140\", '\\ue68b'),\n    ICON_141(\"captainicon-141\", '\\ue68c'),\n    ICON_142(\"captainicon-142\", '\\ue68d'),\n    ICON_143(\"captainicon-143\", '\\ue68e'),\n    ICON_144(\"captainicon-144\", '\\ue68f'),\n    ICON_145(\"captainicon-145\", '\\ue690'),\n    ICON_146(\"captainicon-146\", '\\ue691'),\n    ICON_147(\"captainicon-147\", '\\ue692'),\n    ICON_148(\"captainicon-148\", '\\ue693'),\n    ICON_149(\"captainicon-149\", '\\ue694'),\n    ICON_150(\"captainicon-150\", '\\ue695'),\n    ICON_151(\"captainicon-151\", '\\ue696'),\n    ICON_152(\"captainicon-152\", '\\ue697'),\n    ICON_153(\"captainicon-153\", '\\ue698'),\n    ICON_154(\"captainicon-154\", '\\ue699'),\n    ICON_155(\"captainicon-155\", '\\ue69a'),\n    ICON_156(\"captainicon-156\", '\\ue69b'),\n    ICON_157(\"captainicon-157\", '\\ue69c'),\n    ICON_158(\"captainicon-158\", '\\ue69d'),\n    ICON_159(\"captainicon-159\", '\\ue69e'),\n    ICON_160(\"captainicon-160\", '\\ue69f'),\n    ICON_161(\"captainicon-161\", '\\ue6a0'),\n    ICON_162(\"captainicon-162\", '\\ue6a1'),\n    ICON_163(\"captainicon-163\", '\\ue6a2'),\n    ICON_164(\"captainicon-164\", '\\ue6a3'),\n    ICON_165(\"captainicon-165\", '\\ue6a4'),\n    ICON_166(\"captainicon-166\", '\\ue6a5'),\n    ICON_167(\"captainicon-167\", '\\ue6a6'),\n    ICON_168(\"captainicon-168\", '\\ue6a7'),\n    ICON_169(\"captainicon-169\", '\\ue6a8'),\n    ICON_170(\"captainicon-170\", '\\ue6a9'),\n    ICON_171(\"captainicon-171\", '\\ue6aa'),\n    ICON_172(\"captainicon-172\", '\\ue6ab'),\n    ICON_173(\"captainicon-173\", '\\ue6ac'),\n    ICON_174(\"captainicon-174\", '\\ue6ad'),\n    ICON_175(\"captainicon-175\", '\\ue6ae'),\n    ICON_176(\"captainicon-176\", '\\ue6af'),\n    ICON_177(\"captainicon-177\", '\\ue6b0'),\n    ICON_178(\"captainicon-178\", '\\ue6b1'),\n    ICON_179(\"captainicon-179\", '\\ue6b2'),\n    ICON_180(\"captainicon-180\", '\\ue6b3'),\n    ICON_181(\"captainicon-181\", '\\ue6b4'),\n    ICON_182(\"captainicon-182\", '\\ue6b5'),\n    ICON_183(\"captainicon-183\", '\\ue6b6'),\n    ICON_184(\"captainicon-184\", '\\ue6b7'),\n    ICON_185(\"captainicon-185\", '\\ue6b8'),\n    ICON_186(\"captainicon-186\", '\\ue6b9'),\n    ICON_187(\"captainicon-187\", '\\ue6ba'),\n    ICON_188(\"captainicon-188\", '\\ue6bb'),\n    ICON_189(\"captainicon-189\", '\\ue6bc'),\n    ICON_190(\"captainicon-190\", '\\ue6bd'),\n    ICON_191(\"captainicon-191\", '\\ue6be'),\n    ICON_192(\"captainicon-192\", '\\ue6bf'),\n    ICON_193(\"captainicon-193\", '\\ue6c0'),\n    ICON_194(\"captainicon-194\", '\\ue6c1'),\n    ICON_195(\"captainicon-195\", '\\ue6c2'),\n    ICON_196(\"captainicon-196\", '\\ue6c3'),\n    ICON_197(\"captainicon-197\", '\\ue6c4'),\n    ICON_198(\"captainicon-198\", '\\ue6c5'),\n    ICON_199(\"captainicon-199\", '\\ue6c6'),\n    ICON_200(\"captainicon-200\", '\\ue6c7'),\n    ICON_201(\"captainicon-201\", '\\ue6c8'),\n    ICON_202(\"captainicon-202\", '\\ue6c9'),\n    ICON_203(\"captainicon-203\", '\\ue6ca'),\n    ICON_204(\"captainicon-204\", '\\ue6cb'),\n    ICON_205(\"captainicon-205\", '\\ue6cc'),\n    ICON_206(\"captainicon-206\", '\\ue6cd'),\n    ICON_207(\"captainicon-207\", '\\ue6ce'),\n    ICON_208(\"captainicon-208\", '\\ue6cf'),\n    ICON_209(\"captainicon-209\", '\\ue6d0'),\n    ICON_210(\"captainicon-210\", '\\ue6d1'),\n    ICON_211(\"captainicon-211\", '\\ue6d2'),\n    ICON_212(\"captainicon-212\", '\\ue6d3'),\n    ICON_213(\"captainicon-213\", '\\ue6d4'),\n    ICON_214(\"captainicon-214\", '\\ue6d5'),\n    ICON_215(\"captainicon-215\", '\\ue6d6'),\n    ICON_216(\"captainicon-216\", '\\ue6d7'),\n    ICON_217(\"captainicon-217\", '\\ue6d8'),\n    ICON_218(\"captainicon-218\", '\\ue6d9'),\n    ICON_219(\"captainicon-219\", '\\ue6da'),\n    ICON_220(\"captainicon-220\", '\\ue6db'),\n    ICON_221(\"captainicon-221\", '\\ue6dc'),\n    ICON_222(\"captainicon-222\", '\\ue6dd'),\n    ICON_223(\"captainicon-223\", '\\ue6de'),\n    ICON_224(\"captainicon-224\", '\\ue6df'),\n    ICON_225(\"captainicon-225\", '\\ue6e0'),\n    ICON_226(\"captainicon-226\", '\\ue6e1'),\n    ICON_227(\"captainicon-227\", '\\ue6e2'),\n    ICON_228(\"captainicon-228\", '\\ue6e3'),\n    ICON_229(\"captainicon-229\", '\\ue6e4'),\n    ICON_230(\"captainicon-230\", '\\ue6e5'),\n    ICON_231(\"captainicon-231\", '\\ue6e6'),\n    ICON_232(\"captainicon-232\", '\\ue6e7'),\n    ICON_233(\"captainicon-233\", '\\ue6e8'),\n    ICON_234(\"captainicon-234\", '\\ue6e9'),\n    ICON_235(\"captainicon-235\", '\\ue6ea'),\n    ICON_236(\"captainicon-236\", '\\ue6eb'),\n    ICON_237(\"captainicon-237\", '\\ue6ec'),\n    ICON_238(\"captainicon-238\", '\\ue6ed'),\n    ICON_239(\"captainicon-239\", '\\ue6ee'),\n    ICON_240(\"captainicon-240\", '\\ue6ef'),\n    ICON_241(\"captainicon-241\", '\\ue6f0'),\n    ICON_242(\"captainicon-242\", '\\ue6f1'),\n    ICON_243(\"captainicon-243\", '\\ue6f2'),\n    ICON_244(\"captainicon-244\", '\\ue6f3'),\n    ICON_245(\"captainicon-245\", '\\ue6f4'),\n    ICON_246(\"captainicon-246\", '\\ue6f5'),\n    ICON_247(\"captainicon-247\", '\\ue6f6'),\n    ICON_248(\"captainicon-248\", '\\ue6f7'),\n    ICON_249(\"captainicon-249\", '\\ue6f8'),\n    ICON_250(\"captainicon-250\", '\\ue6f9'),\n    ICON_251(\"captainicon-251\", '\\ue6fa'),\n    ICON_252(\"captainicon-252\", '\\ue6fb'),\n    ICON_253(\"captainicon-253\", '\\ue6fc'),\n    ICON_254(\"captainicon-254\", '\\ue6fd'),\n    ICON_255(\"captainicon-255\", '\\ue6fe'),\n    ICON_256(\"captainicon-256\", '\\ue6ff'),\n    ICON_257(\"captainicon-257\", '\\ue700'),\n    ICON_258(\"captainicon-258\", '\\ue701'),\n    ICON_259(\"captainicon-259\", '\\ue702'),\n    ICON_260(\"captainicon-260\", '\\ue703'),\n    ICON_261(\"captainicon-261\", '\\ue704'),\n    ICON_262(\"captainicon-262\", '\\ue705'),\n    ICON_263(\"captainicon-263\", '\\ue706'),\n    ICON_264(\"captainicon-264\", '\\ue707'),\n    ICON_265(\"captainicon-265\", '\\ue708'),\n    ICON_266(\"captainicon-266\", '\\ue709'),\n    ICON_267(\"captainicon-267\", '\\ue70a'),\n    ICON_268(\"captainicon-268\", '\\ue70b'),\n    ICON_269(\"captainicon-269\", '\\ue70c'),\n    ICON_270(\"captainicon-270\", '\\ue70d'),\n    ICON_271(\"captainicon-271\", '\\ue70e'),\n    ICON_272(\"captainicon-272\", '\\ue70f'),\n    ICON_273(\"captainicon-273\", '\\ue710'),\n    ICON_274(\"captainicon-274\", '\\ue711'),\n    ICON_275(\"captainicon-275\", '\\ue712'),\n    ICON_276(\"captainicon-276\", '\\ue713'),\n    ICON_277(\"captainicon-277\", '\\ue714'),\n    ICON_278(\"captainicon-278\", '\\ue715'),\n    ICON_279(\"captainicon-279\", '\\ue716'),\n    ICON_280(\"captainicon-280\", '\\ue717'),\n    ICON_281(\"captainicon-281\", '\\ue718'),\n    ICON_282(\"captainicon-282\", '\\ue719'),\n    ICON_283(\"captainicon-283\", '\\ue71a'),\n    ICON_284(\"captainicon-284\", '\\ue71b'),\n    ICON_285(\"captainicon-285\", '\\ue71c'),\n    ICON_286(\"captainicon-286\", '\\ue71d'),\n    ICON_287(\"captainicon-287\", '\\ue71e'),\n    ICON_288(\"captainicon-288\", '\\ue71f'),\n    ICON_289(\"captainicon-289\", '\\ue720'),\n    ICON_290(\"captainicon-290\", '\\ue721'),\n    ICON_291(\"captainicon-291\", '\\ue722'),\n    ICON_292(\"captainicon-292\", '\\ue723'),\n    ICON_293(\"captainicon-293\", '\\ue724'),\n    ICON_294(\"captainicon-294\", '\\ue725'),\n    ICON_295(\"captainicon-295\", '\\ue726'),\n    ICON_296(\"captainicon-296\", '\\ue727'),\n    ICON_297(\"captainicon-297\", '\\ue728'),\n    ICON_298(\"captainicon-298\", '\\ue729'),\n    ICON_299(\"captainicon-299\", '\\ue72a'),\n    ICON_300(\"captainicon-300\", '\\ue72b'),\n    ICON_301(\"captainicon-301\", '\\ue72c'),\n    ICON_302(\"captainicon-302\", '\\ue72d'),\n    ICON_303(\"captainicon-303\", '\\ue72e'),\n    ICON_304(\"captainicon-304\", '\\ue72f'),\n    ICON_305(\"captainicon-305\", '\\ue730'),\n    ICON_306(\"captainicon-306\", '\\ue731'),\n    ICON_307(\"captainicon-307\", '\\ue732'),\n    ICON_308(\"captainicon-308\", '\\ue733'),\n    ICON_309(\"captainicon-309\", '\\ue734'),\n    ICON_310(\"captainicon-310\", '\\ue735'),\n    ICON_311(\"captainicon-311\", '\\ue736'),\n    ICON_312(\"captainicon-312\", '\\ue737'),\n    ICON_313(\"captainicon-313\", '\\ue738'),\n    ICON_314(\"captainicon-314\", '\\ue739'),\n    ICON_315(\"captainicon-315\", '\\ue73a'),\n    ICON_316(\"captainicon-316\", '\\ue73b'),\n    ICON_317(\"captainicon-317\", '\\ue73c'),\n    ICON_318(\"captainicon-318\", '\\ue73d'),\n    ICON_319(\"captainicon-319\", '\\ue73e'),\n    ICON_320(\"captainicon-320\", '\\ue73f'),\n    ICON_321(\"captainicon-321\", '\\ue740'),\n    ICON_322(\"captainicon-322\", '\\ue741'),\n    ICON_323(\"captainicon-323\", '\\ue742'),\n    ICON_324(\"captainicon-324\", '\\ue743'),\n    ICON_325(\"captainicon-325\", '\\ue744'),\n    ICON_326(\"captainicon-326\", '\\ue745'),\n    ICON_327(\"captainicon-327\", '\\ue746'),\n    ICON_328(\"captainicon-328\", '\\ue747'),\n    ICON_329(\"captainicon-329\", '\\ue748'),\n    ICON_330(\"captainicon-330\", '\\ue749'),\n    ICON_331(\"captainicon-331\", '\\ue74a'),\n    ICON_332(\"captainicon-332\", '\\ue74b'),\n    ICON_333(\"captainicon-333\", '\\ue74c'),\n    ICON_334(\"captainicon-334\", '\\ue74d'),\n    ICON_335(\"captainicon-335\", '\\ue74e'),\n    ICON_336(\"captainicon-336\", '\\ue74f'),\n    ICON_337(\"captainicon-337\", '\\ue750'),\n    ICON_338(\"captainicon-338\", '\\ue751'),\n    ICON_339(\"captainicon-339\", '\\ue752'),\n    ICON_340(\"captainicon-340\", '\\ue753'),\n    ICON_341(\"captainicon-341\", '\\ue754'),\n    ICON_342(\"captainicon-342\", '\\ue755'),\n    ICON_343(\"captainicon-343\", '\\ue756'),\n    ICON_344(\"captainicon-344\", '\\ue757'),\n    ICON_345(\"captainicon-345\", '\\ue758'),\n    ICON_346(\"captainicon-346\", '\\ue759'),\n    ICON_347(\"captainicon-347\", '\\ue75a'),\n    ICON_348(\"captainicon-348\", '\\ue75b'),\n    ICON_349(\"captainicon-349\", '\\ue75c'),\n    ICON_350(\"captainicon-350\", '\\ue75d'),\n    ICON_351(\"captainicon-351\", '\\ue75e'),\n    ICON_352(\"captainicon-352\", '\\ue75f'),\n    ICON_353(\"captainicon-353\", '\\ue760'),\n    ICON_354(\"captainicon-354\", '\\ue761'),\n    ICON_355(\"captainicon-355\", '\\ue762'),\n    ICON_356(\"captainicon-356\", '\\ue763'),\n    ICON_357(\"captainicon-357\", '\\ue764'),\n    ICON_358(\"captainicon-358\", '\\ue765'),\n    ICON_359(\"captainicon-359\", '\\ue766'),\n    ICON_360(\"captainicon-360\", '\\ue767'),\n    ICON_361(\"captainicon-361\", '\\ue768'),\n    ICON_362(\"captainicon-362\", '\\ue769'),\n    ICON_363(\"captainicon-363\", '\\ue76a'),\n    ICON_364(\"captainicon-364\", '\\ue76b'),\n    ICON_365(\"captainicon-365\", '\\ue76c'),\n    ICON_366(\"captainicon-366\", '\\ue76d'),\n    ICON_367(\"captainicon-367\", '\\ue76e'),\n    ICON_368(\"captainicon-368\", '\\ue76f'),\n    ICON_369(\"captainicon-369\", '\\ue770'),\n    ICON_370(\"captainicon-370\", '\\ue771'),\n    ICON_371(\"captainicon-371\", '\\ue772'),\n    ICON_372(\"captainicon-372\", '\\ue773'),\n    ICON_373(\"captainicon-373\", '\\ue774'),\n    ICON_374(\"captainicon-374\", '\\ue775'),\n    ICON_375(\"captainicon-375\", '\\ue776');\n\n    public static Captainicon findByDescription(String description) {\n        for (Captainicon font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Captainicon(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-captainicon-pack/src/main/java/org/kordamp/ikonli/captainicon/CaptainiconIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.captainicon;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class CaptainiconIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/captainicon/20140501/fonts/captainicon.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"captainicon-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Captainicon.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"captainicon\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-captainicon-pack/src/main/java/org/kordamp/ikonli/captainicon/CaptainiconIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.captainicon;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class CaptainiconIkonProvider implements IkonProvider<Captainicon> {\n    @Override\n    public Class<Captainicon> getIkon() {\n        return Captainicon.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-captainicon-pack/src/main/resources/META-INF/resources/captainicon/20140501/css/captainicon.css",
    "content": "@font-face {\n\tfont-family: 'captainicon';\n\tsrc:url('../fonts/captainicon.eot?-1i2a56');\n\tsrc:url('../fonts/captainicon.eot?#iefix-1i2a56') format('embedded-opentype'),\n\t\turl('../fonts/captainicon.woff?-1i2a56') format('woff'),\n\t\turl('../fonts/captainicon.ttf?-1i2a56') format('truetype'),\n\t\turl('../fonts/captainicon.svg?-1i2a56#captainicon') format('svg');\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n[class^=\"captainicon-\"], [class*=\" captainicon-\"] {\n\tfont-family: 'captainicon';\n\tspeak: none;\n\tfont-style: normal;\n\tfont-weight: normal;\n\tfont-variant: normal;\n\ttext-transform: none;\n\tline-height: 1;\n\n\t/* Better Font Rendering =========== */\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n}\n\n.captainicon-001:before {\n\tcontent: \"\\e600\";\n}\n.captainicon-002:before {\n\tcontent: \"\\e601\";\n}\n.captainicon-003:before {\n\tcontent: \"\\e602\";\n}\n.captainicon-004:before {\n\tcontent: \"\\e603\";\n}\n.captainicon-005:before {\n\tcontent: \"\\e604\";\n}\n.captainicon-006:before {\n\tcontent: \"\\e605\";\n}\n.captainicon-007:before {\n\tcontent: \"\\e606\";\n}\n.captainicon-008:before {\n\tcontent: \"\\e607\";\n}\n.captainicon-009:before {\n\tcontent: \"\\e608\";\n}\n.captainicon-010:before {\n\tcontent: \"\\e609\";\n}\n.captainicon-011:before {\n\tcontent: \"\\e60a\";\n}\n.captainicon-012:before {\n\tcontent: \"\\e60b\";\n}\n.captainicon-013:before {\n\tcontent: \"\\e60c\";\n}\n.captainicon-014:before {\n\tcontent: \"\\e60d\";\n}\n.captainicon-015:before {\n\tcontent: \"\\e60e\";\n}\n.captainicon-016:before {\n\tcontent: \"\\e60f\";\n}\n.captainicon-017:before {\n\tcontent: \"\\e610\";\n}\n.captainicon-018:before {\n\tcontent: \"\\e611\";\n}\n.captainicon-019:before {\n\tcontent: \"\\e612\";\n}\n.captainicon-020:before {\n\tcontent: \"\\e613\";\n}\n.captainicon-021:before {\n\tcontent: \"\\e614\";\n}\n.captainicon-022:before {\n\tcontent: \"\\e615\";\n}\n.captainicon-023:before {\n\tcontent: \"\\e616\";\n}\n.captainicon-024:before {\n\tcontent: \"\\e617\";\n}\n.captainicon-025:before {\n\tcontent: \"\\e618\";\n}\n.captainicon-026:before {\n\tcontent: \"\\e619\";\n}\n.captainicon-027:before {\n\tcontent: \"\\e61a\";\n}\n.captainicon-028:before {\n\tcontent: \"\\e61b\";\n}\n.captainicon-029:before {\n\tcontent: \"\\e61c\";\n}\n.captainicon-030:before {\n\tcontent: \"\\e61d\";\n}\n.captainicon-031:before {\n\tcontent: \"\\e61e\";\n}\n.captainicon-032:before {\n\tcontent: \"\\e61f\";\n}\n.captainicon-033:before {\n\tcontent: \"\\e620\";\n}\n.captainicon-034:before {\n\tcontent: \"\\e621\";\n}\n.captainicon-035:before {\n\tcontent: \"\\e622\";\n}\n.captainicon-036:before {\n\tcontent: \"\\e623\";\n}\n.captainicon-037:before {\n\tcontent: \"\\e624\";\n}\n.captainicon-038:before {\n\tcontent: \"\\e625\";\n}\n.captainicon-039:before {\n\tcontent: \"\\e626\";\n}\n.captainicon-040:before {\n\tcontent: \"\\e627\";\n}\n.captainicon-041:before {\n\tcontent: \"\\e628\";\n}\n.captainicon-042:before {\n\tcontent: \"\\e629\";\n}\n.captainicon-043:before {\n\tcontent: \"\\e62a\";\n}\n.captainicon-044:before {\n\tcontent: \"\\e62b\";\n}\n.captainicon-045:before {\n\tcontent: \"\\e62c\";\n}\n.captainicon-046:before {\n\tcontent: \"\\e62d\";\n}\n.captainicon-047:before {\n\tcontent: \"\\e62e\";\n}\n.captainicon-048:before {\n\tcontent: \"\\e62f\";\n}\n.captainicon-049:before {\n\tcontent: \"\\e630\";\n}\n.captainicon-050:before {\n\tcontent: \"\\e631\";\n}\n.captainicon-051:before {\n\tcontent: \"\\e632\";\n}\n.captainicon-052:before {\n\tcontent: \"\\e633\";\n}\n.captainicon-053:before {\n\tcontent: \"\\e634\";\n}\n.captainicon-054:before {\n\tcontent: \"\\e635\";\n}\n.captainicon-055:before {\n\tcontent: \"\\e636\";\n}\n.captainicon-056:before {\n\tcontent: \"\\e637\";\n}\n.captainicon-057:before {\n\tcontent: \"\\e638\";\n}\n.captainicon-058:before {\n\tcontent: \"\\e639\";\n}\n.captainicon-059:before {\n\tcontent: \"\\e63a\";\n}\n.captainicon-060:before {\n\tcontent: \"\\e63b\";\n}\n.captainicon-061:before {\n\tcontent: \"\\e63c\";\n}\n.captainicon-062:before {\n\tcontent: \"\\e63d\";\n}\n.captainicon-063:before {\n\tcontent: \"\\e63e\";\n}\n.captainicon-064:before {\n\tcontent: \"\\e63f\";\n}\n.captainicon-065:before {\n\tcontent: \"\\e640\";\n}\n.captainicon-066:before {\n\tcontent: \"\\e641\";\n}\n.captainicon-067:before {\n\tcontent: \"\\e642\";\n}\n.captainicon-068:before {\n\tcontent: \"\\e643\";\n}\n.captainicon-069:before {\n\tcontent: \"\\e644\";\n}\n.captainicon-070:before {\n\tcontent: \"\\e645\";\n}\n.captainicon-071:before {\n\tcontent: \"\\e646\";\n}\n.captainicon-072:before {\n\tcontent: \"\\e647\";\n}\n.captainicon-073:before {\n\tcontent: \"\\e648\";\n}\n.captainicon-074:before {\n\tcontent: \"\\e649\";\n}\n.captainicon-075:before {\n\tcontent: \"\\e64a\";\n}\n.captainicon-076:before {\n\tcontent: \"\\e64b\";\n}\n.captainicon-077:before {\n\tcontent: \"\\e64c\";\n}\n.captainicon-078:before {\n\tcontent: \"\\e64d\";\n}\n.captainicon-079:before {\n\tcontent: \"\\e64e\";\n}\n.captainicon-080:before {\n\tcontent: \"\\e64f\";\n}\n.captainicon-081:before {\n\tcontent: \"\\e650\";\n}\n.captainicon-082:before {\n\tcontent: \"\\e651\";\n}\n.captainicon-083:before {\n\tcontent: \"\\e652\";\n}\n.captainicon-084:before {\n\tcontent: \"\\e653\";\n}\n.captainicon-085:before {\n\tcontent: \"\\e654\";\n}\n.captainicon-086:before {\n\tcontent: \"\\e655\";\n}\n.captainicon-087:before {\n\tcontent: \"\\e656\";\n}\n.captainicon-088:before {\n\tcontent: \"\\e657\";\n}\n.captainicon-089:before {\n\tcontent: \"\\e658\";\n}\n.captainicon-090:before {\n\tcontent: \"\\e659\";\n}\n.captainicon-091:before {\n\tcontent: \"\\e65a\";\n}\n.captainicon-092:before {\n\tcontent: \"\\e65b\";\n}\n.captainicon-093:before {\n\tcontent: \"\\e65c\";\n}\n.captainicon-094:before {\n\tcontent: \"\\e65d\";\n}\n.captainicon-095:before {\n\tcontent: \"\\e65e\";\n}\n.captainicon-096:before {\n\tcontent: \"\\e65f\";\n}\n.captainicon-097:before {\n\tcontent: \"\\e660\";\n}\n.captainicon-098:before {\n\tcontent: \"\\e661\";\n}\n.captainicon-099:before {\n\tcontent: \"\\e662\";\n}\n.captainicon-100:before {\n\tcontent: \"\\e663\";\n}\n.captainicon-101:before {\n\tcontent: \"\\e664\";\n}\n.captainicon-102:before {\n\tcontent: \"\\e665\";\n}\n.captainicon-103:before {\n\tcontent: \"\\e666\";\n}\n.captainicon-104:before {\n\tcontent: \"\\e667\";\n}\n.captainicon-105:before {\n\tcontent: \"\\e668\";\n}\n.captainicon-106:before {\n\tcontent: \"\\e669\";\n}\n.captainicon-107:before {\n\tcontent: \"\\e66a\";\n}\n.captainicon-108:before {\n\tcontent: \"\\e66b\";\n}\n.captainicon-109:before {\n\tcontent: \"\\e66c\";\n}\n.captainicon-110:before {\n\tcontent: \"\\e66d\";\n}\n.captainicon-111:before {\n\tcontent: \"\\e66e\";\n}\n.captainicon-112:before {\n\tcontent: \"\\e66f\";\n}\n.captainicon-113:before {\n\tcontent: \"\\e670\";\n}\n.captainicon-114:before {\n\tcontent: \"\\e671\";\n}\n.captainicon-115:before {\n\tcontent: \"\\e672\";\n}\n.captainicon-116:before {\n\tcontent: \"\\e673\";\n}\n.captainicon-117:before {\n\tcontent: \"\\e674\";\n}\n.captainicon-118:before {\n\tcontent: \"\\e675\";\n}\n.captainicon-119:before {\n\tcontent: \"\\e676\";\n}\n.captainicon-120:before {\n\tcontent: \"\\e677\";\n}\n.captainicon-121:before {\n\tcontent: \"\\e678\";\n}\n.captainicon-122:before {\n\tcontent: \"\\e679\";\n}\n.captainicon-123:before {\n\tcontent: \"\\e67a\";\n}\n.captainicon-124:before {\n\tcontent: \"\\e67b\";\n}\n.captainicon-125:before {\n\tcontent: \"\\e67c\";\n}\n.captainicon-126:before {\n\tcontent: \"\\e67d\";\n}\n.captainicon-127:before {\n\tcontent: \"\\e67e\";\n}\n.captainicon-128:before {\n\tcontent: \"\\e67f\";\n}\n.captainicon-129:before {\n\tcontent: \"\\e680\";\n}\n.captainicon-130:before {\n\tcontent: \"\\e681\";\n}\n.captainicon-131:before {\n\tcontent: \"\\e682\";\n}\n.captainicon-132:before {\n\tcontent: \"\\e683\";\n}\n.captainicon-133:before {\n\tcontent: \"\\e684\";\n}\n.captainicon-134:before {\n\tcontent: \"\\e685\";\n}\n.captainicon-135:before {\n\tcontent: \"\\e686\";\n}\n.captainicon-136:before {\n\tcontent: \"\\e687\";\n}\n.captainicon-137:before {\n\tcontent: \"\\e688\";\n}\n.captainicon-138:before {\n\tcontent: \"\\e689\";\n}\n.captainicon-139:before {\n\tcontent: \"\\e68a\";\n}\n.captainicon-140:before {\n\tcontent: \"\\e68b\";\n}\n.captainicon-141:before {\n\tcontent: \"\\e68c\";\n}\n.captainicon-142:before {\n\tcontent: \"\\e68d\";\n}\n.captainicon-143:before {\n\tcontent: \"\\e68e\";\n}\n.captainicon-144:before {\n\tcontent: \"\\e68f\";\n}\n.captainicon-145:before {\n\tcontent: \"\\e690\";\n}\n.captainicon-146:before {\n\tcontent: \"\\e691\";\n}\n.captainicon-147:before {\n\tcontent: \"\\e692\";\n}\n.captainicon-148:before {\n\tcontent: \"\\e693\";\n}\n.captainicon-149:before {\n\tcontent: \"\\e694\";\n}\n.captainicon-150:before {\n\tcontent: \"\\e695\";\n}\n.captainicon-151:before {\n\tcontent: \"\\e696\";\n}\n.captainicon-152:before {\n\tcontent: \"\\e697\";\n}\n.captainicon-153:before {\n\tcontent: \"\\e698\";\n}\n.captainicon-154:before {\n\tcontent: \"\\e699\";\n}\n.captainicon-155:before {\n\tcontent: \"\\e69a\";\n}\n.captainicon-156:before {\n\tcontent: \"\\e69b\";\n}\n.captainicon-157:before {\n\tcontent: \"\\e69c\";\n}\n.captainicon-158:before {\n\tcontent: \"\\e69d\";\n}\n.captainicon-159:before {\n\tcontent: \"\\e69e\";\n}\n.captainicon-160:before {\n\tcontent: \"\\e69f\";\n}\n.captainicon-161:before {\n\tcontent: \"\\e6a0\";\n}\n.captainicon-162:before {\n\tcontent: \"\\e6a1\";\n}\n.captainicon-163:before {\n\tcontent: \"\\e6a2\";\n}\n.captainicon-164:before {\n\tcontent: \"\\e6a3\";\n}\n.captainicon-165:before {\n\tcontent: \"\\e6a4\";\n}\n.captainicon-166:before {\n\tcontent: \"\\e6a5\";\n}\n.captainicon-167:before {\n\tcontent: \"\\e6a6\";\n}\n.captainicon-168:before {\n\tcontent: \"\\e6a7\";\n}\n.captainicon-169:before {\n\tcontent: \"\\e6a8\";\n}\n.captainicon-170:before {\n\tcontent: \"\\e6a9\";\n}\n.captainicon-171:before {\n\tcontent: \"\\e6aa\";\n}\n.captainicon-172:before {\n\tcontent: \"\\e6ab\";\n}\n.captainicon-173:before {\n\tcontent: \"\\e6ac\";\n}\n.captainicon-174:before {\n\tcontent: \"\\e6ad\";\n}\n.captainicon-175:before {\n\tcontent: \"\\e6ae\";\n}\n.captainicon-176:before {\n\tcontent: \"\\e6af\";\n}\n.captainicon-177:before {\n\tcontent: \"\\e6b0\";\n}\n.captainicon-178:before {\n\tcontent: \"\\e6b1\";\n}\n.captainicon-179:before {\n\tcontent: \"\\e6b2\";\n}\n.captainicon-180:before {\n\tcontent: \"\\e6b3\";\n}\n.captainicon-181:before {\n\tcontent: \"\\e6b4\";\n}\n.captainicon-182:before {\n\tcontent: \"\\e6b5\";\n}\n.captainicon-183:before {\n\tcontent: \"\\e6b6\";\n}\n.captainicon-184:before {\n\tcontent: \"\\e6b7\";\n}\n.captainicon-185:before {\n\tcontent: \"\\e6b8\";\n}\n.captainicon-186:before {\n\tcontent: \"\\e6b9\";\n}\n.captainicon-187:before {\n\tcontent: \"\\e6ba\";\n}\n.captainicon-188:before {\n\tcontent: \"\\e6bb\";\n}\n.captainicon-189:before {\n\tcontent: \"\\e6bc\";\n}\n.captainicon-190:before {\n\tcontent: \"\\e6bd\";\n}\n.captainicon-191:before {\n\tcontent: \"\\e6be\";\n}\n.captainicon-192:before {\n\tcontent: \"\\e6bf\";\n}\n.captainicon-193:before {\n\tcontent: \"\\e6c0\";\n}\n.captainicon-194:before {\n\tcontent: \"\\e6c1\";\n}\n.captainicon-195:before {\n\tcontent: \"\\e6c2\";\n}\n.captainicon-196:before {\n\tcontent: \"\\e6c3\";\n}\n.captainicon-197:before {\n\tcontent: \"\\e6c4\";\n}\n.captainicon-198:before {\n\tcontent: \"\\e6c5\";\n}\n.captainicon-199:before {\n\tcontent: \"\\e6c6\";\n}\n.captainicon-200:before {\n\tcontent: \"\\e6c7\";\n}\n.captainicon-201:before {\n\tcontent: \"\\e6c8\";\n}\n.captainicon-202:before {\n\tcontent: \"\\e6c9\";\n}\n.captainicon-203:before {\n\tcontent: \"\\e6ca\";\n}\n.captainicon-204:before {\n\tcontent: \"\\e6cb\";\n}\n.captainicon-205:before {\n\tcontent: \"\\e6cc\";\n}\n.captainicon-206:before {\n\tcontent: \"\\e6cd\";\n}\n.captainicon-207:before {\n\tcontent: \"\\e6ce\";\n}\n.captainicon-208:before {\n\tcontent: \"\\e6cf\";\n}\n.captainicon-209:before {\n\tcontent: \"\\e6d0\";\n}\n.captainicon-210:before {\n\tcontent: \"\\e6d1\";\n}\n.captainicon-211:before {\n\tcontent: \"\\e6d2\";\n}\n.captainicon-212:before {\n\tcontent: \"\\e6d3\";\n}\n.captainicon-213:before {\n\tcontent: \"\\e6d4\";\n}\n.captainicon-214:before {\n\tcontent: \"\\e6d5\";\n}\n.captainicon-215:before {\n\tcontent: \"\\e6d6\";\n}\n.captainicon-216:before {\n\tcontent: \"\\e6d7\";\n}\n.captainicon-217:before {\n\tcontent: \"\\e6d8\";\n}\n.captainicon-218:before {\n\tcontent: \"\\e6d9\";\n}\n.captainicon-219:before {\n\tcontent: \"\\e6da\";\n}\n.captainicon-220:before {\n\tcontent: \"\\e6db\";\n}\n.captainicon-221:before {\n\tcontent: \"\\e6dc\";\n}\n.captainicon-222:before {\n\tcontent: \"\\e6dd\";\n}\n.captainicon-223:before {\n\tcontent: \"\\e6de\";\n}\n.captainicon-224:before {\n\tcontent: \"\\e6df\";\n}\n.captainicon-225:before {\n\tcontent: \"\\e6e0\";\n}\n.captainicon-226:before {\n\tcontent: \"\\e6e1\";\n}\n.captainicon-227:before {\n\tcontent: \"\\e6e2\";\n}\n.captainicon-228:before {\n\tcontent: \"\\e6e3\";\n}\n.captainicon-229:before {\n\tcontent: \"\\e6e4\";\n}\n.captainicon-230:before {\n\tcontent: \"\\e6e5\";\n}\n.captainicon-231:before {\n\tcontent: \"\\e6e6\";\n}\n.captainicon-232:before {\n\tcontent: \"\\e6e7\";\n}\n.captainicon-233:before {\n\tcontent: \"\\e6e8\";\n}\n.captainicon-234:before {\n\tcontent: \"\\e6e9\";\n}\n.captainicon-235:before {\n\tcontent: \"\\e6ea\";\n}\n.captainicon-236:before {\n\tcontent: \"\\e6eb\";\n}\n.captainicon-237:before {\n\tcontent: \"\\e6ec\";\n}\n.captainicon-238:before {\n\tcontent: \"\\e6ed\";\n}\n.captainicon-239:before {\n\tcontent: \"\\e6ee\";\n}\n.captainicon-240:before {\n\tcontent: \"\\e6ef\";\n}\n.captainicon-241:before {\n\tcontent: \"\\e6f0\";\n}\n.captainicon-242:before {\n\tcontent: \"\\e6f1\";\n}\n.captainicon-243:before {\n\tcontent: \"\\e6f2\";\n}\n.captainicon-244:before {\n\tcontent: \"\\e6f3\";\n}\n.captainicon-245:before {\n\tcontent: \"\\e6f4\";\n}\n.captainicon-246:before {\n\tcontent: \"\\e6f5\";\n}\n.captainicon-247:before {\n\tcontent: \"\\e6f6\";\n}\n.captainicon-248:before {\n\tcontent: \"\\e6f7\";\n}\n.captainicon-249:before {\n\tcontent: \"\\e6f8\";\n}\n.captainicon-250:before {\n\tcontent: \"\\e6f9\";\n}\n.captainicon-251:before {\n\tcontent: \"\\e6fa\";\n}\n.captainicon-252:before {\n\tcontent: \"\\e6fb\";\n}\n.captainicon-253:before {\n\tcontent: \"\\e6fc\";\n}\n.captainicon-254:before {\n\tcontent: \"\\e6fd\";\n}\n.captainicon-255:before {\n\tcontent: \"\\e6fe\";\n}\n.captainicon-256:before {\n\tcontent: \"\\e6ff\";\n}\n.captainicon-257:before {\n\tcontent: \"\\e700\";\n}\n.captainicon-258:before {\n\tcontent: \"\\e701\";\n}\n.captainicon-259:before {\n\tcontent: \"\\e702\";\n}\n.captainicon-260:before {\n\tcontent: \"\\e703\";\n}\n.captainicon-261:before {\n\tcontent: \"\\e704\";\n}\n.captainicon-262:before {\n\tcontent: \"\\e705\";\n}\n.captainicon-263:before {\n\tcontent: \"\\e706\";\n}\n.captainicon-264:before {\n\tcontent: \"\\e707\";\n}\n.captainicon-265:before {\n\tcontent: \"\\e708\";\n}\n.captainicon-266:before {\n\tcontent: \"\\e709\";\n}\n.captainicon-267:before {\n\tcontent: \"\\e70a\";\n}\n.captainicon-268:before {\n\tcontent: \"\\e70b\";\n}\n.captainicon-269:before {\n\tcontent: \"\\e70c\";\n}\n.captainicon-270:before {\n\tcontent: \"\\e70d\";\n}\n.captainicon-271:before {\n\tcontent: \"\\e70e\";\n}\n.captainicon-272:before {\n\tcontent: \"\\e70f\";\n}\n.captainicon-273:before {\n\tcontent: \"\\e710\";\n}\n.captainicon-274:before {\n\tcontent: \"\\e711\";\n}\n.captainicon-275:before {\n\tcontent: \"\\e712\";\n}\n.captainicon-276:before {\n\tcontent: \"\\e713\";\n}\n.captainicon-277:before {\n\tcontent: \"\\e714\";\n}\n.captainicon-278:before {\n\tcontent: \"\\e715\";\n}\n.captainicon-279:before {\n\tcontent: \"\\e716\";\n}\n.captainicon-280:before {\n\tcontent: \"\\e717\";\n}\n.captainicon-281:before {\n\tcontent: \"\\e718\";\n}\n.captainicon-282:before {\n\tcontent: \"\\e719\";\n}\n.captainicon-283:before {\n\tcontent: \"\\e71a\";\n}\n.captainicon-284:before {\n\tcontent: \"\\e71b\";\n}\n.captainicon-285:before {\n\tcontent: \"\\e71c\";\n}\n.captainicon-286:before {\n\tcontent: \"\\e71d\";\n}\n.captainicon-287:before {\n\tcontent: \"\\e71e\";\n}\n.captainicon-288:before {\n\tcontent: \"\\e71f\";\n}\n.captainicon-289:before {\n\tcontent: \"\\e720\";\n}\n.captainicon-290:before {\n\tcontent: \"\\e721\";\n}\n.captainicon-291:before {\n\tcontent: \"\\e722\";\n}\n.captainicon-292:before {\n\tcontent: \"\\e723\";\n}\n.captainicon-293:before {\n\tcontent: \"\\e724\";\n}\n.captainicon-294:before {\n\tcontent: \"\\e725\";\n}\n.captainicon-295:before {\n\tcontent: \"\\e726\";\n}\n.captainicon-296:before {\n\tcontent: \"\\e727\";\n}\n.captainicon-297:before {\n\tcontent: \"\\e728\";\n}\n.captainicon-298:before {\n\tcontent: \"\\e729\";\n}\n.captainicon-299:before {\n\tcontent: \"\\e72a\";\n}\n.captainicon-300:before {\n\tcontent: \"\\e72b\";\n}\n.captainicon-301:before {\n\tcontent: \"\\e72c\";\n}\n.captainicon-302:before {\n\tcontent: \"\\e72d\";\n}\n.captainicon-303:before {\n\tcontent: \"\\e72e\";\n}\n.captainicon-304:before {\n\tcontent: \"\\e72f\";\n}\n.captainicon-305:before {\n\tcontent: \"\\e730\";\n}\n.captainicon-306:before {\n\tcontent: \"\\e731\";\n}\n.captainicon-307:before {\n\tcontent: \"\\e732\";\n}\n.captainicon-308:before {\n\tcontent: \"\\e733\";\n}\n.captainicon-309:before {\n\tcontent: \"\\e734\";\n}\n.captainicon-310:before {\n\tcontent: \"\\e735\";\n}\n.captainicon-311:before {\n\tcontent: \"\\e736\";\n}\n.captainicon-312:before {\n\tcontent: \"\\e737\";\n}\n.captainicon-313:before {\n\tcontent: \"\\e738\";\n}\n.captainicon-314:before {\n\tcontent: \"\\e739\";\n}\n.captainicon-315:before {\n\tcontent: \"\\e73a\";\n}\n.captainicon-316:before {\n\tcontent: \"\\e73b\";\n}\n.captainicon-317:before {\n\tcontent: \"\\e73c\";\n}\n.captainicon-318:before {\n\tcontent: \"\\e73d\";\n}\n.captainicon-319:before {\n\tcontent: \"\\e73e\";\n}\n.captainicon-320:before {\n\tcontent: \"\\e73f\";\n}\n.captainicon-321:before {\n\tcontent: \"\\e740\";\n}\n.captainicon-322:before {\n\tcontent: \"\\e741\";\n}\n.captainicon-323:before {\n\tcontent: \"\\e742\";\n}\n.captainicon-324:before {\n\tcontent: \"\\e743\";\n}\n.captainicon-325:before {\n\tcontent: \"\\e744\";\n}\n.captainicon-326:before {\n\tcontent: \"\\e745\";\n}\n.captainicon-327:before {\n\tcontent: \"\\e746\";\n}\n.captainicon-328:before {\n\tcontent: \"\\e747\";\n}\n.captainicon-329:before {\n\tcontent: \"\\e748\";\n}\n.captainicon-330:before {\n\tcontent: \"\\e749\";\n}\n.captainicon-331:before {\n\tcontent: \"\\e74a\";\n}\n.captainicon-332:before {\n\tcontent: \"\\e74b\";\n}\n.captainicon-333:before {\n\tcontent: \"\\e74c\";\n}\n.captainicon-334:before {\n\tcontent: \"\\e74d\";\n}\n.captainicon-335:before {\n\tcontent: \"\\e74e\";\n}\n.captainicon-336:before {\n\tcontent: \"\\e74f\";\n}\n.captainicon-337:before {\n\tcontent: \"\\e750\";\n}\n.captainicon-338:before {\n\tcontent: \"\\e751\";\n}\n.captainicon-339:before {\n\tcontent: \"\\e752\";\n}\n.captainicon-340:before {\n\tcontent: \"\\e753\";\n}\n.captainicon-341:before {\n\tcontent: \"\\e754\";\n}\n.captainicon-342:before {\n\tcontent: \"\\e755\";\n}\n.captainicon-343:before {\n\tcontent: \"\\e756\";\n}\n.captainicon-344:before {\n\tcontent: \"\\e757\";\n}\n.captainicon-345:before {\n\tcontent: \"\\e758\";\n}\n.captainicon-346:before {\n\tcontent: \"\\e759\";\n}\n.captainicon-347:before {\n\tcontent: \"\\e75a\";\n}\n.captainicon-348:before {\n\tcontent: \"\\e75b\";\n}\n.captainicon-349:before {\n\tcontent: \"\\e75c\";\n}\n.captainicon-350:before {\n\tcontent: \"\\e75d\";\n}\n.captainicon-351:before {\n\tcontent: \"\\e75e\";\n}\n.captainicon-352:before {\n\tcontent: \"\\e75f\";\n}\n.captainicon-353:before {\n\tcontent: \"\\e760\";\n}\n.captainicon-354:before {\n\tcontent: \"\\e761\";\n}\n.captainicon-355:before {\n\tcontent: \"\\e762\";\n}\n.captainicon-356:before {\n\tcontent: \"\\e763\";\n}\n.captainicon-357:before {\n\tcontent: \"\\e764\";\n}\n.captainicon-358:before {\n\tcontent: \"\\e765\";\n}\n.captainicon-359:before {\n\tcontent: \"\\e766\";\n}\n.captainicon-360:before {\n\tcontent: \"\\e767\";\n}\n.captainicon-361:before {\n\tcontent: \"\\e768\";\n}\n.captainicon-362:before {\n\tcontent: \"\\e769\";\n}\n.captainicon-363:before {\n\tcontent: \"\\e76a\";\n}\n.captainicon-364:before {\n\tcontent: \"\\e76b\";\n}\n.captainicon-365:before {\n\tcontent: \"\\e76c\";\n}\n.captainicon-366:before {\n\tcontent: \"\\e76d\";\n}\n.captainicon-367:before {\n\tcontent: \"\\e76e\";\n}\n.captainicon-368:before {\n\tcontent: \"\\e76f\";\n}\n.captainicon-369:before {\n\tcontent: \"\\e770\";\n}\n.captainicon-370:before {\n\tcontent: \"\\e771\";\n}\n.captainicon-371:before {\n\tcontent: \"\\e772\";\n}\n.captainicon-372:before {\n\tcontent: \"\\e773\";\n}\n.captainicon-373:before {\n\tcontent: \"\\e774\";\n}\n.captainicon-374:before {\n\tcontent: \"\\e775\";\n}\n.captainicon-375:before {\n\tcontent: \"\\e776\";\n}"
  },
  {
    "path": "icon-packs/ikonli-carbonicons-pack/ikonli-carbonicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-carbonicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.carbonicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.carbonicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.carbonicons.CarboniconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.carbonicons.CarbonIconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-carbonicons-pack/src/main/java/org/kordamp/ikonli/carbonicons/CarbonIcons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.carbonicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum CarbonIcons implements Ikon {\n    CI_3D_CURSOR(\"ci-3d-cursor\", '\\ue901'),\n    CI_3D_CURSOR_ALT(\"ci-3d-cursor-alt\", '\\ue900'),\n    CI_3D_CURVE_AUTO_COLON(\"ci-3d-curve-auto-colon\", '\\ue902'),\n    CI_3D_CURVE_AUTO_VESSELS(\"ci-3d-curve-auto-vessels\", '\\ue903'),\n    CI_3D_CURVE_MANUAL(\"ci-3d-curve-manual\", '\\ue904'),\n    CI_3D_ICA(\"ci-3d-ica\", '\\ue905'),\n    CI_3D_MPR_TOGGLE(\"ci-3d-mpr-toggle\", '\\ue906'),\n    CI_3D_PRINT_MESH(\"ci-3d-print-mesh\", '\\ue907'),\n    CI_3D_SOFTWARE(\"ci-3d-software\", '\\ue908'),\n    CI_3RD_PARTY_CONNECTED(\"ci-3rd-party-connected\", '\\ue909'),\n    CI_4K(\"ci-4k\", '\\ue90b'),\n    CI_4K_FILLED(\"ci-4k-filled\", '\\ue90a'),\n    ACCESSIBILITY(\"ci-accessibility\", '\\ue90f'),\n    ACCESSIBILITY_ALT(\"ci-accessibility-alt\", '\\ue90c'),\n    ACCESSIBILITY_COLOR(\"ci-accessibility-color\", '\\ue90e'),\n    ACCESSIBILITY_COLOR_FILLED(\"ci-accessibility-color-filled\", '\\ue90d'),\n    ACCOUNT(\"ci-account\", '\\ue910'),\n    ACCUMULATION_ICE(\"ci-accumulation-ice\", '\\ue911'),\n    ACCUMULATION_PRECIPITATION(\"ci-accumulation-precipitation\", '\\ue912'),\n    ACCUMULATION_RAIN(\"ci-accumulation-rain\", '\\ue913'),\n    ACCUMULATION_SNOW(\"ci-accumulation-snow\", '\\ue914'),\n    ACTIVITY(\"ci-activity\", '\\ue915'),\n    ADD(\"ci-add\", '\\ue919'),\n    ADD_ALT(\"ci-add-alt\", '\\ue916'),\n    ADD_COMMENT(\"ci-add-comment\", '\\ue917'),\n    ADD_FILLED(\"ci-add-filled\", '\\ue918'),\n    AGRICULTURE_ANALYTICS(\"ci-agriculture-analytics\", '\\ue91a'),\n    AIRLINE_DIGITAL_GATE(\"ci-airline-digital-gate\", '\\ue92b'),\n    AIRLINE_MANAGE_GATES(\"ci-airline-manage-gates\", '\\ue92c'),\n    AIRLINE_PASSENGER_CARE(\"ci-airline-passenger-care\", '\\ue92d'),\n    AIRLINE_RAPID_BOARD(\"ci-airline-rapid-board\", '\\ue92e'),\n    AIRPORT_01(\"ci-airport-01\", '\\ue92f'),\n    AIRPORT_02(\"ci-airport-02\", '\\ue930'),\n    AIRPORT_LOCATION(\"ci-airport-location\", '\\ue931'),\n    AI_RESULTS(\"ci-ai-results\", '\\ue920'),\n    AI_RESULTS_HIGH(\"ci-ai-results-high\", '\\ue91b'),\n    AI_RESULTS_LOW(\"ci-ai-results-low\", '\\ue91c'),\n    AI_RESULTS_MEDIUM(\"ci-ai-results-medium\", '\\ue91d'),\n    AI_RESULTS_URGENT(\"ci-ai-results-urgent\", '\\ue91e'),\n    AI_RESULTS_VERY_HIGH(\"ci-ai-results-very-high\", '\\ue91f'),\n    AI_STATUS(\"ci-ai-status\", '\\ue92a'),\n    AI_STATUS_COMPLETE(\"ci-ai-status-complete\", '\\ue921'),\n    AI_STATUS_FAILED(\"ci-ai-status-failed\", '\\ue922'),\n    AI_STATUS_IN_PROGRESS(\"ci-ai-status-in-progress\", '\\ue923'),\n    AI_STATUS_REJECTED(\"ci-ai-status-rejected\", '\\ue929'),\n    ALARM(\"ci-alarm\", '\\ue934'),\n    ALARM_ADD(\"ci-alarm-add\", '\\ue932'),\n    ALARM_SUBTRACT(\"ci-alarm-subtract\", '\\ue933'),\n    ALIGN_BOX_BOTTOM_CENTER(\"ci-align-box-bottom-center\", '\\ue935'),\n    ALIGN_BOX_BOTTOM_LEFT(\"ci-align-box-bottom-left\", '\\ue936'),\n    ALIGN_BOX_BOTTOM_RIGHT(\"ci-align-box-bottom-right\", '\\ue937'),\n    ALIGN_BOX_MIDDLE_CENTER(\"ci-align-box-middle-center\", '\\ue938'),\n    ALIGN_BOX_MIDDLE_LEFT(\"ci-align-box-middle-left\", '\\ue939'),\n    ALIGN_BOX_MIDDLE_RIGHT(\"ci-align-box-middle-right\", '\\ue93a'),\n    ALIGN_BOX_TOP_CENTER(\"ci-align-box-top-center\", '\\ue93b'),\n    ALIGN_BOX_TOP_LEFT(\"ci-align-box-top-left\", '\\ue93c'),\n    ALIGN_BOX_TOP_RIGHT(\"ci-align-box-top-right\", '\\ue93d'),\n    ALIGN_HORIZONTAL_CENTER(\"ci-align-horizontal-center\", '\\ue93e'),\n    ALIGN_HORIZONTAL_LEFT(\"ci-align-horizontal-left\", '\\ue93f'),\n    ALIGN_HORIZONTAL_RIGHT(\"ci-align-horizontal-right\", '\\ue940'),\n    ALIGN_VERTICAL_BOTTOM(\"ci-align-vertical-bottom\", '\\ue941'),\n    ALIGN_VERTICAL_CENTER(\"ci-align-vertical-center\", '\\ue942'),\n    ALIGN_VERTICAL_TOP(\"ci-align-vertical-top\", '\\ue943'),\n    ANALYTICS(\"ci-analytics\", '\\ue945'),\n    ANALYTICS_REFERENCE(\"ci-analytics-reference\", '\\ue944'),\n    ANGLE(\"ci-angle\", '\\ue946'),\n    ANNOTATION_VISIBILITY(\"ci-annotation-visibility\", '\\ue947'),\n    APERTURE(\"ci-aperture\", '\\ue948'),\n    API(\"ci-api\", '\\ue94a'),\n    API_1(\"ci-api-1\", '\\ue949'),\n    APP(\"ci-app\", '\\ue94d'),\n    APPLE(\"ci-apple\", '\\ue94e'),\n    APPLICATION(\"ci-application\", '\\ue94f'),\n    APPS(\"ci-apps\", '\\ue950'),\n    APP_CONNECTIVITY(\"ci-app-connectivity\", '\\ue94b'),\n    APP_SWITCHER(\"ci-app-switcher\", '\\ue94c'),\n    ARCHIVE(\"ci-archive\", '\\ue951'),\n    AREA(\"ci-area\", '\\ue953'),\n    AREA_CUSTOM(\"ci-area-custom\", '\\ue952'),\n    ARRIVAL(\"ci-arrival\", '\\ue954'),\n    ARROWS(\"ci-arrows\", '\\ue961'),\n    ARROWS_HORIZONTAL(\"ci-arrows-horizontal\", '\\ue95f'),\n    ARROWS_VERTICAL(\"ci-arrows-vertical\", '\\ue960'),\n    ARROW_ANNOTATION(\"ci-arrow-annotation\", '\\ue955'),\n    ARROW_DOWN(\"ci-arrow-down\", '\\ue958'),\n    ARROW_DOWN_LEFT(\"ci-arrow-down-left\", '\\ue956'),\n    ARROW_DOWN_RIGHT(\"ci-arrow-down-right\", '\\ue957'),\n    ARROW_LEFT(\"ci-arrow-left\", '\\ue959'),\n    ARROW_RIGHT(\"ci-arrow-right\", '\\ue95a'),\n    ARROW_SHIFT_DOWN(\"ci-arrow-shift-down\", '\\ue95b'),\n    ARROW_UP(\"ci-arrow-up\", '\\ue95e'),\n    ARROW_UP_LEFT(\"ci-arrow-up-left\", '\\ue95c'),\n    ARROW_UP_RIGHT(\"ci-arrow-up-right\", '\\ue95d'),\n    ASLEEP(\"ci-asleep\", '\\ue963'),\n    ASLEEP_FILLED(\"ci-asleep-filled\", '\\ue962'),\n    ASSET(\"ci-asset\", '\\ue964'),\n    AT(\"ci-at\", '\\ue965'),\n    ATTACHMENT(\"ci-attachment\", '\\ue966'),\n    AUDIO_CONSOLE(\"ci-audio-console\", '\\ue967'),\n    AUGMENTED_REALITY(\"ci-augmented-reality\", '\\ue968'),\n    AUTOMATIC(\"ci-automatic\", '\\ue96a'),\n    AUTO_SCROLL(\"ci-auto-scroll\", '\\ue969'),\n    AWAKE(\"ci-awake\", '\\ue96b'),\n    BACK_TO_TOP(\"ci-back-to-top\", '\\ue96c'),\n    BADGE(\"ci-badge\", '\\ue96d'),\n    BAGGAGE_CLAIM(\"ci-baggage-claim\", '\\ue96e'),\n    BAR(\"ci-bar\", '\\ue96f'),\n    BARRIER(\"ci-barrier\", '\\ue970'),\n    BASKETBALL(\"ci-basketball\", '\\ue971'),\n    BAT(\"ci-bat\", '\\ue972'),\n    BATTERY_CHARGING(\"ci-battery-charging\", '\\ue973'),\n    BATTERY_EMPTY(\"ci-battery-empty\", '\\ue974'),\n    BATTERY_FULL(\"ci-battery-full\", '\\ue975'),\n    BATTERY_HALF(\"ci-battery-half\", '\\ue976'),\n    BATTERY_LOW(\"ci-battery-low\", '\\ue977'),\n    BATTERY_QUARTER(\"ci-battery-quarter\", '\\ue978'),\n    BEE(\"ci-bee\", '\\ue97a'),\n    BEE_BAT(\"ci-bee-bat\", '\\ue979'),\n    BICYCLE(\"ci-bicycle\", '\\ue97b'),\n    BINOCULARS(\"ci-binoculars\", '\\ue97c'),\n    BLOCH_SPHERE(\"ci-bloch-sphere\", '\\ue97d'),\n    BLOCKCHAIN(\"ci-blockchain\", '\\ue97e'),\n    BLOG(\"ci-blog\", '\\ue97f'),\n    BLUETOOTH(\"ci-bluetooth\", '\\ue981'),\n    BLUETOOTH_OFF(\"ci-bluetooth-off\", '\\ue980'),\n    BOOK(\"ci-book\", '\\ue982'),\n    BOOKMARK(\"ci-bookmark\", '\\ue984'),\n    BOOKMARK_FILLED(\"ci-bookmark-filled\", '\\ue983'),\n    BOOLEAN(\"ci-boolean\", '\\ue985'),\n    BORDER_BOTTOM(\"ci-border-bottom\", '\\ue986'),\n    BORDER_FULL(\"ci-border-full\", '\\ue987'),\n    BORDER_LEFT(\"ci-border-left\", '\\ue988'),\n    BORDER_NONE(\"ci-border-none\", '\\ue989'),\n    BORDER_RIGHT(\"ci-border-right\", '\\ue98a'),\n    BORDER_TOP(\"ci-border-top\", '\\ue98b'),\n    BOT(\"ci-bot\", '\\ue98c'),\n    BOX(\"ci-box\", '\\ue98e'),\n    BOX_PLOT(\"ci-box-plot\", '\\ue98d'),\n    BRANCH(\"ci-branch\", '\\ue98f'),\n    BRIGHTNESS_CONTRAST(\"ci-brightness-contrast\", '\\ue990'),\n    BRING_TO_FRONT(\"ci-bring-to-front\", '\\ue991'),\n    BRUSH_FREEHAND(\"ci-brush-freehand\", '\\ue992'),\n    BRUSH_POLYGON(\"ci-brush-polygon\", '\\ue993'),\n    BUILDING(\"ci-building\", '\\ue997'),\n    BUILDING_INSIGHTS_1(\"ci-building-insights-1\", '\\ue994'),\n    BUILDING_INSIGHTS_2(\"ci-building-insights-2\", '\\ue995'),\n    BUILDING_INSIGHTS_3(\"ci-building-insights-3\", '\\ue996'),\n    BULLHORN(\"ci-bullhorn\", '\\ue998'),\n    BUOY(\"ci-buoy\", '\\ue999'),\n    BUS(\"ci-bus\", '\\ue99a'),\n    CABIN_CARE(\"ci-cabin-care\", '\\ue99d'),\n    CABIN_CARE_ALERT(\"ci-cabin-care-alert\", '\\ue99b'),\n    CABIN_CARE_ALT(\"ci-cabin-care-alt\", '\\ue99c'),\n    CAD(\"ci-cad\", '\\ue99e'),\n    CAFE(\"ci-cafe\", '\\ue99f'),\n    CALCULATOR(\"ci-calculator\", '\\ue9a1'),\n    CALCULATOR_CHECK(\"ci-calculator-check\", '\\ue9a0'),\n    CALENDAR(\"ci-calendar\", '\\ue9a5'),\n    CALENDAR_HEAT_MAP(\"ci-calendar-heat-map\", '\\ue9a2'),\n    CALENDAR_SETTINGS(\"ci-calendar-settings\", '\\ue9a3'),\n    CALENDAR_TOOLS(\"ci-calendar-tools\", '\\ue9a4'),\n    CALIBRATE(\"ci-calibrate\", '\\ue9a6'),\n    CAMERA(\"ci-camera\", '\\ue9a8'),\n    CAMERA_ACTION(\"ci-camera-action\", '\\ue9a7'),\n    CAMPSITE(\"ci-campsite\", '\\ue9a9'),\n    CAR(\"ci-car\", '\\ue9ab'),\n    CARBON(\"ci-carbon\", '\\ue9ac'),\n    CARET_DOWN(\"ci-caret-down\", '\\ue9ad'),\n    CARET_LEFT(\"ci-caret-left\", '\\ue9ae'),\n    CARET_RIGHT(\"ci-caret-right\", '\\ue9af'),\n    CARET_SORT(\"ci-caret-sort\", '\\ue9b2'),\n    CARET_SORT_DOWN(\"ci-caret-sort-down\", '\\ue9b0'),\n    CARET_SORT_UP(\"ci-caret-sort-up\", '\\ue9b1'),\n    CARET_UP(\"ci-caret-up\", '\\ue9b3'),\n    CAROUSEL_HORIZONTAL(\"ci-carousel-horizontal\", '\\ue9b4'),\n    CAROUSEL_VERTICAL(\"ci-carousel-vertical\", '\\ue9b5'),\n    CAR_FRONT(\"ci-car-front\", '\\ue9aa'),\n    CATALOG(\"ci-catalog\", '\\ue9b6'),\n    CATEGORIES(\"ci-categories\", '\\ue9b7'),\n    CATEGORY(\"ci-category\", '\\ue9bc'),\n    CATEGORY_ADD(\"ci-category-add\", '\\ue9b8'),\n    CATEGORY_AND(\"ci-category-and\", '\\ue9b9'),\n    CATEGORY_NEW(\"ci-category-new\", '\\ue9bb'),\n    CATEGORY_NEW_EACH(\"ci-category-new-each\", '\\ue9ba'),\n    CCX(\"ci-ccx\", '\\ue9bd'),\n    CDA(\"ci-cda\", '\\ue9c1'),\n    CD_ARCHIVE(\"ci-cd-archive\", '\\ue9be'),\n    CD_CREATE_ARCHIVE(\"ci-cd-create-archive\", '\\ue9bf'),\n    CD_CREATE_EXCHANGE(\"ci-cd-create-exchange\", '\\ue9c0'),\n    CENTER_CIRCLE(\"ci-center-circle\", '\\ue9c2'),\n    CENTER_SQUARE(\"ci-center-square\", '\\ue9c3'),\n    CENTER_TO_FIT(\"ci-center-to-fit\", '\\ue9c4'),\n    CERTIFICATE(\"ci-certificate\", '\\ue9c6'),\n    CERTIFICATE_CHECK(\"ci-certificate-check\", '\\ue9c5'),\n    CHANGE_CATALOG(\"ci-change-catalog\", '\\ue9c7'),\n    CHARACTER_PATTERNS(\"ci-character-patterns\", '\\ue9c8'),\n    CHARGING_STATION(\"ci-charging-station\", '\\ue9ca'),\n    CHARGING_STATION_FILLED(\"ci-charging-station-filled\", '\\ue9c9'),\n    CHART_3D(\"ci-chart-3d\", '\\ue9cb'),\n    CHART_AREA(\"ci-chart-area\", '\\ue9ce'),\n    CHART_AREA_SMOOTH(\"ci-chart-area-smooth\", '\\ue9cc'),\n    CHART_AREA_STEPPER(\"ci-chart-area-stepper\", '\\ue9cd'),\n    CHART_AVERAGE(\"ci-chart-average\", '\\ue9cf'),\n    CHART_BAR(\"ci-chart-bar\", '\\ue9d4'),\n    CHART_BAR_FLOATING(\"ci-chart-bar-floating\", '\\ue9d0'),\n    CHART_BAR_OVERLAY(\"ci-chart-bar-overlay\", '\\ue9d1'),\n    CHART_BAR_STACKED(\"ci-chart-bar-stacked\", '\\ue9d2'),\n    CHART_BAR_TARGET(\"ci-chart-bar-target\", '\\ue9d3'),\n    CHART_BUBBLE(\"ci-chart-bubble\", '\\ue9d5'),\n    CHART_BULLET(\"ci-chart-bullet\", '\\ue9d6'),\n    CHART_CANDLESTICK(\"ci-chart-candlestick\", '\\ue9d7'),\n    CHART_CLUSTER_BAR(\"ci-chart-cluster-bar\", '\\ue9d8'),\n    CHART_COLUMN(\"ci-chart-column\", '\\ue9db'),\n    CHART_COLUMN_FLOATING(\"ci-chart-column-floating\", '\\ue9d9'),\n    CHART_COLUMN_TARGET(\"ci-chart-column-target\", '\\ue9da'),\n    CHART_COMBO(\"ci-chart-combo\", '\\ue9dd'),\n    CHART_COMBO_STACKED(\"ci-chart-combo-stacked\", '\\ue9dc'),\n    CHART_CUSTOM(\"ci-chart-custom\", '\\ue9de'),\n    CHART_ERROR_BAR(\"ci-chart-error-bar\", '\\ue9e0'),\n    CHART_ERROR_BAR_ALT(\"ci-chart-error-bar-alt\", '\\ue9df'),\n    CHART_EVALUATION(\"ci-chart-evaluation\", '\\ue9e1'),\n    CHART_HIGH_LOW(\"ci-chart-high-low\", '\\ue9e2'),\n    CHART_HISTOGRAM(\"ci-chart-histogram\", '\\ue9e3'),\n    CHART_LINE(\"ci-chart-line\", '\\ue9e6'),\n    CHART_LINE_DATA(\"ci-chart-line-data\", '\\ue9e4'),\n    CHART_LINE_SMOOTH(\"ci-chart-line-smooth\", '\\ue9e5'),\n    CHART_MARIMEKKO(\"ci-chart-marimekko\", '\\ue9e7'),\n    CHART_MAXIMUM(\"ci-chart-maximum\", '\\ue9e8'),\n    CHART_MINIMUM(\"ci-chart-minimum\", '\\ue9e9'),\n    CHART_MULTITYPE(\"ci-chart-multitype\", '\\ue9eb'),\n    CHART_MULTI_LINE(\"ci-chart-multi-line\", '\\ue9ea'),\n    CHART_NETWORK(\"ci-chart-network\", '\\ue9ec'),\n    CHART_PARALLEL(\"ci-chart-parallel\", '\\ue9ed'),\n    CHART_PIE(\"ci-chart-pie\", '\\ue9ee'),\n    CHART_POINT(\"ci-chart-point\", '\\ue9ef'),\n    CHART_POPULATION(\"ci-chart-population\", '\\ue9f0'),\n    CHART_RADAR(\"ci-chart-radar\", '\\ue9f1'),\n    CHART_RADIAL(\"ci-chart-radial\", '\\ue9f2'),\n    CHART_RELATIONSHIP(\"ci-chart-relationship\", '\\ue9f3'),\n    CHART_RING(\"ci-chart-ring\", '\\ue9f4'),\n    CHART_RIVER(\"ci-chart-river\", '\\ue9f5'),\n    CHART_ROSE(\"ci-chart-rose\", '\\ue9f6'),\n    CHART_SCATTER(\"ci-chart-scatter\", '\\ue9f7'),\n    CHART_STACKED(\"ci-chart-stacked\", '\\ue9f8'),\n    CHART_STEPPER(\"ci-chart-stepper\", '\\ue9f9'),\n    CHART_SUNBURST(\"ci-chart-sunburst\", '\\ue9fa'),\n    CHART_TREEMAP(\"ci-chart-treemap\", '\\ue9fc'),\n    CHART_T_SNE(\"ci-chart-t-sne\", '\\ue9fb'),\n    CHART_VENN_DIAGRAM(\"ci-chart-venn-diagram\", '\\ue9fd'),\n    CHART_WATERFALL(\"ci-chart-waterfall\", '\\ue9fe'),\n    CHAT(\"ci-chat\", '\\uea00'),\n    CHAT_BOT(\"ci-chat-bot\", '\\ue9ff'),\n    CHECKBOX(\"ci-checkbox\", '\\uea07'),\n    CHECKBOX_CHECKED(\"ci-checkbox-checked\", '\\uea02'),\n    CHECKBOX_CHECKED_FILLED(\"ci-checkbox-checked-filled\", '\\uea01'),\n    CHECKBOX_INDETERMINATE(\"ci-checkbox-indeterminate\", '\\uea04'),\n    CHECKBOX_INDETERMINATE_FILLED(\"ci-checkbox-indeterminate-filled\", '\\uea03'),\n    CHECKBOX_UNDETERMINATE(\"ci-checkbox-undeterminate\", '\\uea06'),\n    CHECKBOX_UNDETERMINATE_FILLED(\"ci-checkbox-undeterminate-filled\", '\\uea05'),\n    CHECKMARK(\"ci-checkmark\", '\\uea0e'),\n    CHECKMARK_FILLED(\"ci-checkmark-filled\", '\\uea0a'),\n    CHECKMARK_FILLED_ERROR(\"ci-checkmark-filled-error\", '\\uea08'),\n    CHECKMARK_FILLED_WARNING(\"ci-checkmark-filled-warning\", '\\uea09'),\n    CHECKMARK_OUTLINE(\"ci-checkmark-outline\", '\\uea0d'),\n    CHECKMARK_OUTLINE_ERROR(\"ci-checkmark-outline-error\", '\\uea0b'),\n    CHECKMARK_OUTLINE_WARNING(\"ci-checkmark-outline-warning\", '\\uea0c'),\n    CHEMISTRY(\"ci-chemistry\", '\\uea10'),\n    CHEMISTRY_REFERENCE(\"ci-chemistry-reference\", '\\uea0f'),\n    CHEVRON_DOWN(\"ci-chevron-down\", '\\uea11'),\n    CHEVRON_LEFT(\"ci-chevron-left\", '\\uea12'),\n    CHEVRON_MINI(\"ci-chevron-mini\", '\\uea13'),\n    CHEVRON_RIGHT(\"ci-chevron-right\", '\\uea14'),\n    CHEVRON_SORT(\"ci-chevron-sort\", '\\uea17'),\n    CHEVRON_SORT_DOWN(\"ci-chevron-sort-down\", '\\uea15'),\n    CHEVRON_SORT_UP(\"ci-chevron-sort-up\", '\\uea16'),\n    CHEVRON_UP(\"ci-chevron-up\", '\\uea18'),\n    CHIP(\"ci-chip\", '\\uea19'),\n    CHOICES(\"ci-choices\", '\\uea1a'),\n    CIRCLE_DASH(\"ci-circle-dash\", '\\uea1b'),\n    CIRCLE_FILLED(\"ci-circle-filled\", '\\uea1c'),\n    CIRCLE_MEASUREMENT(\"ci-circle-measurement\", '\\uea1d'),\n    CIRCLE_PACKING(\"ci-circle-packing\", '\\uea1e'),\n    CIRCUIT_COMPOSER(\"ci-circuit-composer\", '\\uea1f'),\n    CLASSIFICATION(\"ci-classification\", '\\uea20'),\n    CLASSIFIER_LANGUAGE(\"ci-classifier-language\", '\\uea21'),\n    CLEAN(\"ci-clean\", '\\uea22'),\n    CLOSE(\"ci-close\", '\\uea25'),\n    CLOSED_CAPTION(\"ci-closed-caption\", '\\uea28'),\n    CLOSED_CAPTION_ALT(\"ci-closed-caption-alt\", '\\uea26'),\n    CLOSED_CAPTION_FILLED(\"ci-closed-caption-filled\", '\\uea27'),\n    CLOSE_FILLED(\"ci-close-filled\", '\\uea23'),\n    CLOSE_OUTLINE(\"ci-close-outline\", '\\uea24'),\n    CLOUD(\"ci-cloud\", '\\uea37'),\n    CLOUDY(\"ci-cloudy\", '\\uea38'),\n    CLOUD_APP(\"ci-cloud-app\", '\\uea29'),\n    CLOUD_CEILING(\"ci-cloud-ceiling\", '\\uea2a'),\n    CLOUD_DATA_OPS(\"ci-cloud-data-ops\", '\\uea2b'),\n    CLOUD_DOWNLOAD(\"ci-cloud-download\", '\\uea2c'),\n    CLOUD_FOUNDRY_1(\"ci-cloud-foundry-1\", '\\uea2d'),\n    CLOUD_FOUNDRY_2(\"ci-cloud-foundry-2\", '\\uea2e'),\n    CLOUD_LIGHTNING(\"ci-cloud-lightning\", '\\uea2f'),\n    CLOUD_RAIN(\"ci-cloud-rain\", '\\uea30'),\n    CLOUD_SNOW(\"ci-cloud-snow\", '\\uea35'),\n    CLOUD_UPLOAD(\"ci-cloud-upload\", '\\uea36'),\n    COBB_ANGLE(\"ci-cobb-angle\", '\\uea39'),\n    CODE(\"ci-code\", '\\uea3b'),\n    CODE_REFERENCE(\"ci-code-reference\", '\\uea3a'),\n    COGNITIVE(\"ci-cognitive\", '\\uea3c'),\n    COLLABORATE(\"ci-collaborate\", '\\uea3d'),\n    COLLAPSE_ALL(\"ci-collapse-all\", '\\uea3e'),\n    COLLAPSE_CATEGORIES(\"ci-collapse-categories\", '\\uea3f'),\n    COLOR_PALETTE(\"ci-color-palette\", '\\uea40'),\n    COLOR_SWITCH(\"ci-color-switch\", '\\uea41'),\n    COLUMN(\"ci-column\", '\\uea44'),\n    COLUMN_DELETE(\"ci-column-delete\", '\\uea42'),\n    COLUMN_INSERT(\"ci-column-insert\", '\\uea43'),\n    COMPARE(\"ci-compare\", '\\uea45'),\n    COMPASS(\"ci-compass\", '\\uea46'),\n    COMPOSER_EDIT(\"ci-composer-edit\", '\\uea47'),\n    CONCEPT(\"ci-concept\", '\\uea48'),\n    CONNECT(\"ci-connect\", '\\uea49'),\n    CONNECTION_SIGNAL(\"ci-connection-signal\", '\\uea4a'),\n    CONSTRUCTION(\"ci-construction\", '\\uea4b'),\n    CONTAINER_SOFTWARE(\"ci-container-software\", '\\uea4c'),\n    CONTENT_VIEW(\"ci-content-view\", '\\uea4d'),\n    CONTOUR_FINDING(\"ci-contour-finding\", '\\uea4e'),\n    CONTRAST(\"ci-contrast\", '\\uea4f'),\n    COPY(\"ci-copy\", '\\uea52'),\n    COPY_FILE(\"ci-copy-file\", '\\uea50'),\n    COPY_LINK(\"ci-copy-link\", '\\uea51'),\n    CORN(\"ci-corn\", '\\uea53'),\n    CORNER(\"ci-corner\", '\\uea54'),\n    CORONAVIRUS(\"ci-coronavirus\", '\\uea55'),\n    COURSE(\"ci-course\", '\\uea56'),\n    COVARIATE(\"ci-covariate\", '\\uea57'),\n    CREDENTIALS(\"ci-credentials\", '\\uea58'),\n    CROP(\"ci-crop\", '\\uea5b'),\n    CROP_GROWTH(\"ci-crop-growth\", '\\uea59'),\n    CROP_HEALTH(\"ci-crop-health\", '\\uea5a'),\n    CROSSROADS(\"ci-crossroads\", '\\uea5e'),\n    CROSS_REFERENCE(\"ci-cross-reference\", '\\uea5c'),\n    CROSS_TAB(\"ci-cross-tab\", '\\uea5d'),\n    CROWD_REPORT(\"ci-crowd-report\", '\\uea60'),\n    CROWD_REPORT_FILLED(\"ci-crowd-report-filled\", '\\uea5f'),\n    CSV(\"ci-csv\", '\\uea61'),\n    CU1(\"ci-cu1\", '\\uea62'),\n    CU3(\"ci-cu3\", '\\uea63'),\n    CUBE_VIEW(\"ci-cube-view\", '\\uea64'),\n    CURRENCY_BAHT(\"ci-currency-baht\", '\\uea65'),\n    CURRENCY_DOLLAR(\"ci-currency-dollar\", '\\uea66'),\n    CURRENCY_EURO(\"ci-currency-euro\", '\\uea67'),\n    CURRENCY_LIRA(\"ci-currency-lira\", '\\uea68'),\n    CURRENCY_POUND(\"ci-currency-pound\", '\\uea69'),\n    CURRENCY_RUPEE(\"ci-currency-rupee\", '\\uea6a'),\n    CURRENCY_SHEKEL(\"ci-currency-shekel\", '\\uea6b'),\n    CURRENCY_WON(\"ci-currency-won\", '\\uea6c'),\n    CURRENCY_YEN(\"ci-currency-yen\", '\\uea6d'),\n    CURSOR_1(\"ci-cursor-1\", '\\uea6e'),\n    CURSOR_2(\"ci-cursor-2\", '\\uea6f'),\n    CUT(\"ci-cut\", '\\uea71'),\n    CUT_IN_HALF(\"ci-cut-in-half\", '\\uea70'),\n    CY(\"ci-cy\", '\\uea72'),\n    CYCLIST(\"ci-cyclist\", '\\uea73'),\n    CZ(\"ci-cz\", '\\uea74'),\n    DASHBOARD(\"ci-dashboard\", '\\uea76'),\n    DASHBOARD_REFERENCE(\"ci-dashboard-reference\", '\\uea75'),\n    DATASTORE(\"ci-datastore\", '\\uea8e'),\n    DATA_1(\"ci-data-1\", '\\uea77'),\n    DATA_2(\"ci-data-2\", '\\uea78'),\n    DATA_BASE(\"ci-data-base\", '\\uea7a'),\n    DATA_BASE_ALT(\"ci-data-base-alt\", '\\uea79'),\n    DATA_CHECK(\"ci-data-check\", '\\uea7b'),\n    DATA_CLASS(\"ci-data-class\", '\\uea7c'),\n    DATA_COLLECTION(\"ci-data-collection\", '\\uea7d'),\n    DATA_CONNECTED(\"ci-data-connected\", '\\uea7e'),\n    DATA_ERROR(\"ci-data-error\", '\\uea7f'),\n    DATA_PLAYER(\"ci-data-player\", '\\uea80'),\n    DATA_REFERENCE(\"ci-data-reference\", '\\uea81'),\n    DATA_REFINERY(\"ci-data-refinery\", '\\uea83'),\n    DATA_REFINERY_REFERENCE(\"ci-data-refinery-reference\", '\\uea82'),\n    DATA_SET(\"ci-data-set\", '\\uea84'),\n    DATA_SHARE(\"ci-data-share\", '\\uea85'),\n    DATA_STRUCTURED(\"ci-data-structured\", '\\uea86'),\n    DATA_TABLE(\"ci-data-table\", '\\uea88'),\n    DATA_TABLE_REFERENCE(\"ci-data-table-reference\", '\\uea87'),\n    DATA_UNSTRUCTURED(\"ci-data-unstructured\", '\\uea89'),\n    DATA_VIS_1(\"ci-data-vis-1\", '\\uea8a'),\n    DATA_VIS_2(\"ci-data-vis-2\", '\\uea8b'),\n    DATA_VIS_3(\"ci-data-vis-3\", '\\uea8c'),\n    DATA_VIS_4(\"ci-data-vis-4\", '\\uea8d'),\n    DEBUG(\"ci-debug\", '\\uea8f'),\n    DECISION_TREE(\"ci-decision-tree\", '\\uea90'),\n    DELETE(\"ci-delete\", '\\uea91'),\n    DELIVERY_TRUCK(\"ci-delivery-truck\", '\\uea92'),\n    DENOMINATE(\"ci-denominate\", '\\uea93'),\n    DEPARTURE(\"ci-departure\", '\\uea94'),\n    DEPLOY(\"ci-deploy\", '\\uea96'),\n    DEPLOYMENT_PATTERN(\"ci-deployment-pattern\", '\\uea97'),\n    DEPLOYMENT_POLICY(\"ci-deployment-policy\", '\\uea98'),\n    DEPLOY_RULES(\"ci-deploy-rules\", '\\uea95'),\n    DEVELOPMENT(\"ci-development\", '\\uea99'),\n    DEVICES(\"ci-devices\", '\\uea9a'),\n    DEW_POINT(\"ci-dew-point\", '\\uea9c'),\n    DEW_POINT_FILLED(\"ci-dew-point-filled\", '\\uea9b'),\n    DIAGRAM(\"ci-diagram\", '\\uea9e'),\n    DIAGRAM_REFERENCE(\"ci-diagram-reference\", '\\uea9d'),\n    DICOM_6000(\"ci-dicom-6000\", '\\uea9f'),\n    DICOM_OVERLAY(\"ci-dicom-overlay\", '\\ueaa0'),\n    DIRECTION_BEAR_RIGHT_01(\"ci-direction-bear-right-01\", '\\ueaa2'),\n    DIRECTION_BEAR_RIGHT_01_FILLED(\"ci-direction-bear-right-01-filled\", '\\ueaa1'),\n    DIRECTION_BEAR_RIGHT_02(\"ci-direction-bear-right-02\", '\\ueaa4'),\n    DIRECTION_BEAR_RIGHT_02_FILLED(\"ci-direction-bear-right-02-filled\", '\\ueaa3'),\n    DIRECTION_CURVE(\"ci-direction-curve\", '\\ueaa6'),\n    DIRECTION_CURVE_FILLED(\"ci-direction-curve-filled\", '\\ueaa5'),\n    DIRECTION_MERGE(\"ci-direction-merge\", '\\ueaa8'),\n    DIRECTION_MERGE_FILLED(\"ci-direction-merge-filled\", '\\ueaa7'),\n    DIRECTION_RIGHT_01(\"ci-direction-right-01\", '\\ueaaa'),\n    DIRECTION_RIGHT_01_FILLED(\"ci-direction-right-01-filled\", '\\ueaa9'),\n    DIRECTION_RIGHT_02(\"ci-direction-right-02\", '\\ueaac'),\n    DIRECTION_RIGHT_02_FILLED(\"ci-direction-right-02-filled\", '\\ueaab'),\n    DIRECTION_ROTARY_FIRST_RIGHT(\"ci-direction-rotary-first-right\", '\\ueaae'),\n    DIRECTION_ROTARY_FIRST_RIGHT_FILLED(\"ci-direction-rotary-first-right-filled\", '\\ueaad'),\n    DIRECTION_ROTARY_RIGHT(\"ci-direction-rotary-right\", '\\ueab0'),\n    DIRECTION_ROTARY_RIGHT_FILLED(\"ci-direction-rotary-right-filled\", '\\ueaaf'),\n    DIRECTION_ROTARY_STRAIGHT(\"ci-direction-rotary-straight\", '\\ueab2'),\n    DIRECTION_ROTARY_STRAIGHT_FILLED(\"ci-direction-rotary-straight-filled\", '\\ueab1'),\n    DIRECTION_SHARP_TURN(\"ci-direction-sharp-turn\", '\\ueab4'),\n    DIRECTION_SHARP_TURN_FILLED(\"ci-direction-sharp-turn-filled\", '\\ueab3'),\n    DIRECTION_STRAIGHT(\"ci-direction-straight\", '\\ueab8'),\n    DIRECTION_STRAIGHT_FILLED(\"ci-direction-straight-filled\", '\\ueab5'),\n    DIRECTION_STRAIGHT_RIGHT(\"ci-direction-straight-right\", '\\ueab7'),\n    DIRECTION_STRAIGHT_RIGHT_FILLED(\"ci-direction-straight-right-filled\", '\\ueab6'),\n    DIRECTION_U_TURN(\"ci-direction-u-turn\", '\\ueaba'),\n    DIRECTION_U_TURN_FILLED(\"ci-direction-u-turn-filled\", '\\ueab9'),\n    DISTRIBUTE_HORIZONTAL_CENTER(\"ci-distribute-horizontal-center\", '\\ueabb'),\n    DISTRIBUTE_HORIZONTAL_LEFT(\"ci-distribute-horizontal-left\", '\\ueabc'),\n    DISTRIBUTE_HORIZONTAL_RIGHT(\"ci-distribute-horizontal-right\", '\\ueabd'),\n    DISTRIBUTE_VERTICAL_BOTTOM(\"ci-distribute-vertical-bottom\", '\\ueabe'),\n    DISTRIBUTE_VERTICAL_CENTER(\"ci-distribute-vertical-center\", '\\ueabf'),\n    DISTRIBUTE_VERTICAL_TOP(\"ci-distribute-vertical-top\", '\\ueac0'),\n    DNA(\"ci-dna\", '\\ueac1'),\n    DOC(\"ci-doc\", '\\ueac2'),\n    DOCUMENT(\"ci-document\", '\\uead0'),\n    DOCUMENT_ADD(\"ci-document-add\", '\\ueac3'),\n    DOCUMENT_BLANK(\"ci-document-blank\", '\\ueac4'),\n    DOCUMENT_DOWNLOAD(\"ci-document-download\", '\\ueac5'),\n    DOCUMENT_EXPORT(\"ci-document-export\", '\\ueac6'),\n    DOCUMENT_IMPORT(\"ci-document-import\", '\\ueac7'),\n    DOCUMENT_PDF(\"ci-document-pdf\", '\\ueac8'),\n    DOCUMENT_SENTIMENT(\"ci-document-sentiment\", '\\ueac9'),\n    DOCUMENT_SUBTRACT(\"ci-document-subtract\", '\\ueaca'),\n    DOCUMENT_TASKS(\"ci-document-tasks\", '\\ueacb'),\n    DOCUMENT_UNKNOWN(\"ci-document-unknown\", '\\ueacc'),\n    DOCUMENT_VIEW(\"ci-document-view\", '\\ueacd'),\n    DOCUMENT_WORD_PROCESSOR(\"ci-document-word-processor\", '\\ueacf'),\n    DOCUMENT_WORD_PROCESSOR_REFERENCE(\"ci-document-word-processor-reference\", '\\ueace'),\n    DOT_MARK(\"ci-dot-mark\", '\\uead1'),\n    DOUBLE_INTEGER(\"ci-double-integer\", '\\uead2'),\n    DOWNLOAD(\"ci-download\", '\\uead5'),\n    DOWNLOAD_STUDY(\"ci-download-study\", '\\uead4'),\n    DOWN_TO_BOTTOM(\"ci-down-to-bottom\", '\\uead3'),\n    DRAGGABLE(\"ci-draggable\", '\\uead8'),\n    DRAG_HORIZONTAL(\"ci-drag-horizontal\", '\\uead6'),\n    DRAG_VERTICAL(\"ci-drag-vertical\", '\\uead7'),\n    DRAW(\"ci-draw\", '\\uead9'),\n    DRIVER_ANALYSIS(\"ci-driver-analysis\", '\\ueada'),\n    DROP_PHOTO(\"ci-drop-photo\", '\\ueadc'),\n    DROP_PHOTO_FILLED(\"ci-drop-photo-filled\", '\\ueadb'),\n    DROUGHT(\"ci-drought\", '\\ueadd'),\n    DVR(\"ci-dvr\", '\\ueade'),\n    EARTH(\"ci-earth\", '\\ueae6'),\n    EARTHQUAKE(\"ci-earthquake\", '\\ueae7'),\n    EARTH_AMERICAS(\"ci-earth-americas\", '\\ueae0'),\n    EARTH_AMERICAS_FILLED(\"ci-earth-americas-filled\", '\\ueadf'),\n    EARTH_EUROPE_AFRICA(\"ci-earth-europe-africa\", '\\ueae2'),\n    EARTH_EUROPE_AFRICA_FILLED(\"ci-earth-europe-africa-filled\", '\\ueae1'),\n    EARTH_FILLED(\"ci-earth-filled\", '\\ueae3'),\n    EARTH_SOUTHEAST_ASIA(\"ci-earth-southeast-asia\", '\\ueae5'),\n    EARTH_SOUTHEAST_ASIA_FILLED(\"ci-earth-southeast-asia-filled\", '\\ueae4'),\n    EDGE_CLUSTER(\"ci-edge-cluster\", '\\ueae8'),\n    EDGE_DEVICE(\"ci-edge-device\", '\\ueae9'),\n    EDGE_ENHANCEMENT(\"ci-edge-enhancement\", '\\ueaed'),\n    EDGE_ENHANCEMENT_01(\"ci-edge-enhancement-01\", '\\ueaea'),\n    EDGE_ENHANCEMENT_02(\"ci-edge-enhancement-02\", '\\ueaeb'),\n    EDGE_ENHANCEMENT_03(\"ci-edge-enhancement-03\", '\\ueaec'),\n    EDGE_NODE(\"ci-edge-node\", '\\ueaee'),\n    EDGE_SERVICE(\"ci-edge-service\", '\\ueaef'),\n    EDIT(\"ci-edit\", '\\ueaf2'),\n    EDIT_FILTER(\"ci-edit-filter\", '\\ueaf0'),\n    EDIT_OFF(\"ci-edit-off\", '\\ueaf1'),\n    EDT_LOOP(\"ci-edt-loop\", '\\ueaf3'),\n    EDUCATION(\"ci-education\", '\\ueaf4'),\n    EMAIL(\"ci-email\", '\\ueaf6'),\n    EMAIL_NEW(\"ci-email-new\", '\\ueaf5'),\n    ENTERPRISE(\"ci-enterprise\", '\\ueaf7'),\n    ERASE(\"ci-erase\", '\\ueaf9'),\n    ERASE_3D(\"ci-erase-3d\", '\\ueaf8'),\n    ERROR(\"ci-error\", '\\ueafc'),\n    ERROR_FILLED(\"ci-error-filled\", '\\ueafa'),\n    ERROR_OUTLINE(\"ci-error-outline\", '\\ueafb'),\n    EVENT(\"ci-event\", '\\ueafe'),\n    EVENTS(\"ci-events\", '\\ueb00'),\n    EVENTS_ALT(\"ci-events-alt\", '\\ueaff'),\n    EVENT_SCHEDULE(\"ci-event-schedule\", '\\ueafd'),\n    EXAM_MODE(\"ci-exam-mode\", '\\ueb01'),\n    EXIT(\"ci-exit\", '\\ueb02'),\n    EXPAND_ALL(\"ci-expand-all\", '\\ueb03'),\n    EXPAND_CATEGORIES(\"ci-expand-categories\", '\\ueb04'),\n    EXPORT(\"ci-export\", '\\ueb05'),\n    EYEDROPPER(\"ci-eyedropper\", '\\ueb06'),\n    FACE_ACTIVATED(\"ci-face-activated\", '\\ueb09'),\n    FACE_ACTIVATED_ADD(\"ci-face-activated-add\", '\\ueb07'),\n    FACE_ACTIVATED_FILLED(\"ci-face-activated-filled\", '\\ueb08'),\n    FACE_ADD(\"ci-face-add\", '\\ueb0a'),\n    FACE_COOL(\"ci-face-cool\", '\\ueb0b'),\n    FACE_DISSATISFIED(\"ci-face-dissatisfied\", '\\ueb0d'),\n    FACE_DISSATISFIED_FILLED(\"ci-face-dissatisfied-filled\", '\\ueb0c'),\n    FACE_DIZZY(\"ci-face-dizzy\", '\\ueb0f'),\n    FACE_DIZZY_FILLED(\"ci-face-dizzy-filled\", '\\ueb0e'),\n    FACE_MASK(\"ci-face-mask\", '\\ueb10'),\n    FACE_NEUTRAL(\"ci-face-neutral\", '\\ueb12'),\n    FACE_NEUTRAL_FILLED(\"ci-face-neutral-filled\", '\\ueb11'),\n    FACE_PENDING(\"ci-face-pending\", '\\ueb14'),\n    FACE_PENDING_FILLED(\"ci-face-pending-filled\", '\\ueb13'),\n    FACE_SATISFIED(\"ci-face-satisfied\", '\\ueb16'),\n    FACE_SATISFIED_FILLED(\"ci-face-satisfied-filled\", '\\ueb15'),\n    FACE_WINK(\"ci-face-wink\", '\\ueb18'),\n    FACE_WINK_FILLED(\"ci-face-wink-filled\", '\\ueb17'),\n    FACTOR(\"ci-factor\", '\\ueb19'),\n    FADE(\"ci-fade\", '\\ueb1a'),\n    FAVORITE(\"ci-favorite\", '\\ueb1c'),\n    FAVORITE_FILLED(\"ci-favorite-filled\", '\\ueb1b'),\n    FETCH_UPLOAD(\"ci-fetch-upload\", '\\ueb1e'),\n    FETCH_UPLOAD_CLOUD(\"ci-fetch-upload-cloud\", '\\ueb1d'),\n    FILTER(\"ci-filter\", '\\ueb22'),\n    FILTER_EDIT(\"ci-filter-edit\", '\\ueb1f'),\n    FILTER_REMOVE(\"ci-filter-remove\", '\\ueb20'),\n    FILTER_RESET(\"ci-filter-reset\", '\\ueb21'),\n    FINANCE(\"ci-finance\", '\\ueb23'),\n    FINGERPRINT_RECOGNITION(\"ci-fingerprint-recognition\", '\\ueb24'),\n    FIRE(\"ci-fire\", '\\ueb25'),\n    FISH(\"ci-fish\", '\\ueb27'),\n    FISH_MULTIPLE(\"ci-fish-multiple\", '\\ueb26'),\n    FIT_TO_SCREEN(\"ci-fit-to-screen\", '\\ueb28'),\n    FLAG(\"ci-flag\", '\\ueb2a'),\n    FLAGGING_TAXI(\"ci-flagging-taxi\", '\\ueb2b'),\n    FLAG_FILLED(\"ci-flag-filled\", '\\ueb29'),\n    FLASH(\"ci-flash\", '\\ueb2f'),\n    FLASH_FILLED(\"ci-flash-filled\", '\\ueb2c'),\n    FLASH_OFF(\"ci-flash-off\", '\\ueb2e'),\n    FLASH_OFF_FILLED(\"ci-flash-off-filled\", '\\ueb2d'),\n    FLIGHT_INTERNATIONAL(\"ci-flight-international\", '\\ueb30'),\n    FLIGHT_ROSTER(\"ci-flight-roster\", '\\ueb31'),\n    FLIGHT_SCHEDULE(\"ci-flight-schedule\", '\\ueb32'),\n    FLOOD(\"ci-flood\", '\\ueb34'),\n    FLOOD_WARNING(\"ci-flood-warning\", '\\ueb33'),\n    FLOW(\"ci-flow\", '\\ueb3f'),\n    FLOW_CONNECTION(\"ci-flow-connection\", '\\ueb35'),\n    FLOW_DATA(\"ci-flow-data\", '\\ueb36'),\n    FOG(\"ci-fog\", '\\ueb40'),\n    FOLDER(\"ci-folder\", '\\ueb46'),\n    FOLDERS(\"ci-folders\", '\\ueb47'),\n    FOLDER_ADD(\"ci-folder-add\", '\\ueb41'),\n    FOLDER_DETAILS(\"ci-folder-details\", '\\ueb43'),\n    FOLDER_DETAILS_REFERENCE(\"ci-folder-details-reference\", '\\ueb42'),\n    FOLDER_OFF(\"ci-folder-off\", '\\ueb44'),\n    FOLDER_SHARED(\"ci-folder-shared\", '\\ueb45'),\n    FORECAST_HAIL(\"ci-forecast-hail\", '\\ueb49'),\n    FORECAST_HAIL_30(\"ci-forecast-hail-30\", '\\ueb48'),\n    FORECAST_LIGHTNING(\"ci-forecast-lightning\", '\\ueb4b'),\n    FORECAST_LIGHTNING_30(\"ci-forecast-lightning-30\", '\\ueb4a'),\n    FORK(\"ci-fork\", '\\ueb4c'),\n    FORUM(\"ci-forum\", '\\ueb4d'),\n    FORWARD_10(\"ci-forward-10\", '\\ueb4f'),\n    FORWARD_30(\"ci-forward-30\", '\\ueb50'),\n    FORWARD_5(\"ci-forward-5\", '\\ueb4e'),\n    FRAGILE(\"ci-fragile\", '\\ueb51'),\n    FRUIT_BOWL(\"ci-fruit-bowl\", '\\ueb52'),\n    FUSION_BLENDER(\"ci-fusion-blender\", '\\ueb58'),\n    GAME_CONSOLE(\"ci-game-console\", '\\ueb59'),\n    GAME_WIRELESS(\"ci-game-wireless\", '\\ueb5a'),\n    GAMIFICATION(\"ci-gamification\", '\\ueb5b'),\n    GAS_STATION(\"ci-gas-station\", '\\ueb5c'),\n    GENDER_FEMALE(\"ci-gender-female\", '\\ueb5d'),\n    GENDER_MALE(\"ci-gender-male\", '\\ueb5e'),\n    GENERATE_PDF(\"ci-generate-pdf\", '\\ueb5f'),\n    GIF(\"ci-gif\", '\\ueb60'),\n    GIFT(\"ci-gift\", '\\ueb61'),\n    GLOBE(\"ci-globe\", '\\ueb62'),\n    GRADIENT(\"ci-gradient\", '\\ueb63'),\n    GRAPHICAL_DATA_FLOW(\"ci-graphical-data-flow\", '\\ueb64'),\n    GRID(\"ci-grid\", '\\ueb65'),\n    GROUP(\"ci-group\", '\\ueb66'),\n    H(\"ci-h\", '\\ueb67'),\n    HAIL(\"ci-hail\", '\\ueb68'),\n    HANGING_PROTOCOL(\"ci-hanging-protocol\", '\\ueb69'),\n    HARBOR(\"ci-harbor\", '\\ueb6a'),\n    HASHTAG(\"ci-hashtag\", '\\ueb6b'),\n    HAZE(\"ci-haze\", '\\ueb6d'),\n    HAZE_NIGHT(\"ci-haze-night\", '\\ueb6c'),\n    HD(\"ci-hd\", '\\ueb6f'),\n    HDR(\"ci-hdr\", '\\ueb70'),\n    HD_FILLED(\"ci-hd-filled\", '\\ueb6e'),\n    HEADPHONES(\"ci-headphones\", '\\ueb71'),\n    HEADSET(\"ci-headset\", '\\ueb72'),\n    HEALTH_CROSS(\"ci-health-cross\", '\\ueb73'),\n    HEARING(\"ci-hearing\", '\\ueb74'),\n    HEAT_MAP(\"ci-heat-map\", '\\ueb78'),\n    HEAT_MAP_02(\"ci-heat-map-02\", '\\ueb75'),\n    HEAT_MAP_03(\"ci-heat-map-03\", '\\ueb76'),\n    HEAT_MAP_STOCKS(\"ci-heat-map-stocks\", '\\ueb77'),\n    HELICOPTER(\"ci-helicopter\", '\\ueb79'),\n    HELP(\"ci-help\", '\\ueb7c'),\n    HELP_DESK(\"ci-help-desk\", '\\ueb7a'),\n    HELP_FILLED(\"ci-help-filled\", '\\ueb7b'),\n    HINTON_PLOT(\"ci-hinton-plot\", '\\ueb7d'),\n    HOLE_FILLING(\"ci-hole-filling\", '\\ueb7f'),\n    HOLE_FILLING_CURSOR(\"ci-hole-filling-cursor\", '\\ueb7e'),\n    HOME(\"ci-home\", '\\ueb80'),\n    HOSPITAL(\"ci-hospital\", '\\ueb82'),\n    HOSPITAL_BED(\"ci-hospital-bed\", '\\ueb81'),\n    HOTEL(\"ci-hotel\", '\\ueb83'),\n    HOURGLASS(\"ci-hourglass\", '\\ueb84'),\n    HTML(\"ci-html\", '\\ueb86'),\n    HTML_REFERENCE(\"ci-html-reference\", '\\ueb85'),\n    HTTP(\"ci-http\", '\\ueb87'),\n    HUMIDITY(\"ci-humidity\", '\\ueb89'),\n    HUMIDITY_ALT(\"ci-humidity-alt\", '\\ueb88'),\n    HURRICANE(\"ci-hurricane\", '\\ueb8a'),\n    HYBRID_NETWORKING(\"ci-hybrid-networking\", '\\ueb8b'),\n    IBM_CLOUD(\"ci-ibm-cloud\", '\\ueb8c'),\n    IBM_SECURITY(\"ci-ibm-security\", '\\ueb8d'),\n    ICA_2D(\"ci-ica-2d\", '\\ueb8e'),\n    ICE_ACCRETION(\"ci-ice-accretion\", '\\ueb8f'),\n    ID(\"ci-id\", '\\ueb90'),\n    IDEA(\"ci-idea\", '\\ueb91'),\n    IDENTIFICATION(\"ci-identification\", '\\ueb92'),\n    IMAGE(\"ci-image\", '\\ueb96'),\n    IMAGE_MEDICAL(\"ci-image-medical\", '\\ueb93'),\n    IMAGE_REFERENCE(\"ci-image-reference\", '\\ueb94'),\n    IMAGE_SEARCH(\"ci-image-search\", '\\ueb95'),\n    IMPROVE_RELEVANCE(\"ci-improve-relevance\", '\\ueb97'),\n    INCOMPLETE(\"ci-incomplete\", '\\ueb9e'),\n    INCOMPLETE_CANCEL(\"ci-incomplete-cancel\", '\\ueb9b'),\n    INCOMPLETE_ERROR(\"ci-incomplete-error\", '\\ueb9c'),\n    INCOMPLETE_WARNING(\"ci-incomplete-warning\", '\\ueb9d'),\n    INCREASE_LEVEL(\"ci-increase-level\", '\\ueb9f'),\n    INDUSTRY(\"ci-industry\", '\\ueba0'),\n    INFORMATION(\"ci-information\", '\\ueba4'),\n    INFORMATION_FILLED(\"ci-information-filled\", '\\ueba1'),\n    INFORMATION_SQUARE(\"ci-information-square\", '\\ueba3'),\n    INFORMATION_SQUARE_FILLED(\"ci-information-square-filled\", '\\ueba2'),\n    INSERT(\"ci-insert\", '\\ueba6'),\n    INSERT_PAGE(\"ci-insert-page\", '\\ueba5'),\n    INTEGRATION(\"ci-integration\", '\\ueba7'),\n    INTERACTIONS(\"ci-interactions\", '\\ueba8'),\n    INTERACTIVE_SEGMENTATION_CURSOR(\"ci-interactive-segmentation-cursor\", '\\ueba9'),\n    INTERSECT(\"ci-intersect\", '\\uebaa'),\n    INVENTORY_MANAGEMENT(\"ci-inventory-management\", '\\uebab'),\n    IN_PROGRESS(\"ci-in-progress\", '\\ueb9a'),\n    IN_PROGRESS_ERROR(\"ci-in-progress-error\", '\\ueb98'),\n    IN_PROGRESS_WARNING(\"ci-in-progress-warning\", '\\ueb99'),\n    IOT_CONNECT(\"ci-iot-connect\", '\\uebac'),\n    IOT_PLATFORM(\"ci-iot-platform\", '\\uebad'),\n    ISO(\"ci-iso\", '\\uebb0'),\n    ISO_FILLED(\"ci-iso-filled\", '\\uebae'),\n    ISO_OUTLINE(\"ci-iso-outline\", '\\uebaf'),\n    JOIN_INNER(\"ci-join-inner\", '\\uebb1'),\n    JOIN_LEFT(\"ci-join-left\", '\\uebb2'),\n    JOIN_OUTER(\"ci-join-outer\", '\\uebb3'),\n    JOIN_RIGHT(\"ci-join-right\", '\\uebb4'),\n    JPG(\"ci-jpg\", '\\uebb5'),\n    JSON(\"ci-json\", '\\uebb7'),\n    JSON_REFERENCE(\"ci-json-reference\", '\\uebb6'),\n    JUMP_LINK(\"ci-jump-link\", '\\uebb8'),\n    KEEP_DRY(\"ci-keep-dry\", '\\uebb9'),\n    KEYBOARD(\"ci-keyboard\", '\\uebba'),\n    LANGUAGE(\"ci-language\", '\\uebbb'),\n    LAPTOP(\"ci-laptop\", '\\uebbc'),\n    LASSO(\"ci-lasso\", '\\uebbd'),\n    LAUNCH(\"ci-launch\", '\\uebc1'),\n    LAUNCH_STUDY_1(\"ci-launch-study-1\", '\\uebbe'),\n    LAUNCH_STUDY_2(\"ci-launch-study-2\", '\\uebbf'),\n    LAUNCH_STUDY_3(\"ci-launch-study-3\", '\\uebc0'),\n    LAYERS(\"ci-layers\", '\\uebc2'),\n    LEGEND(\"ci-legend\", '\\uebc3'),\n    LETTER_AA(\"ci-letter-aa\", '\\uebc4'),\n    LETTER_BB(\"ci-letter-bb\", '\\uebc5'),\n    LETTER_CC(\"ci-letter-cc\", '\\uebc6'),\n    LETTER_DD(\"ci-letter-dd\", '\\uebc7'),\n    LETTER_EE(\"ci-letter-ee\", '\\uebc8'),\n    LETTER_FF(\"ci-letter-ff\", '\\uebc9'),\n    LETTER_GG(\"ci-letter-gg\", '\\uebca'),\n    LETTER_HH(\"ci-letter-hh\", '\\uebcb'),\n    LETTER_II(\"ci-letter-ii\", '\\uebcc'),\n    LETTER_JJ(\"ci-letter-jj\", '\\uebcd'),\n    LETTER_KK(\"ci-letter-kk\", '\\uebce'),\n    LETTER_LL(\"ci-letter-ll\", '\\uebcf'),\n    LETTER_MM(\"ci-letter-mm\", '\\uebd0'),\n    LETTER_NN(\"ci-letter-nn\", '\\uebd1'),\n    LETTER_OO(\"ci-letter-oo\", '\\uebd2'),\n    LETTER_PP(\"ci-letter-pp\", '\\uebd3'),\n    LETTER_QQ(\"ci-letter-qq\", '\\uebd4'),\n    LETTER_RR(\"ci-letter-rr\", '\\uebd5'),\n    LETTER_SS(\"ci-letter-ss\", '\\uebd6'),\n    LETTER_TT(\"ci-letter-tt\", '\\uebd7'),\n    LETTER_UU(\"ci-letter-uu\", '\\uebd8'),\n    LETTER_VV(\"ci-letter-vv\", '\\uebd9'),\n    LETTER_WW(\"ci-letter-ww\", '\\uebda'),\n    LETTER_XX(\"ci-letter-xx\", '\\uebdb'),\n    LETTER_YY(\"ci-letter-yy\", '\\uebdc'),\n    LETTER_ZZ(\"ci-letter-zz\", '\\uebdd'),\n    LICENSE(\"ci-license\", '\\uebe4'),\n    LICENSE_DRAFT(\"ci-license-draft\", '\\uebde'),\n    LICENSE_GLOBAL(\"ci-license-global\", '\\uebdf'),\n    LICENSE_MAINTENANCE(\"ci-license-maintenance\", '\\uebe1'),\n    LICENSE_MAINTENANCE_DRAFT(\"ci-license-maintenance-draft\", '\\uebe0'),\n    LICENSE_THIRD_PARTY(\"ci-license-third-party\", '\\uebe3'),\n    LICENSE_THIRD_PARTY_DRAFT(\"ci-license-third-party-draft\", '\\uebe2'),\n    LIGHT(\"ci-light\", '\\uebe6'),\n    LIGHTNING(\"ci-lightning\", '\\uebe7'),\n    LIGHT_FILLED(\"ci-light-filled\", '\\uebe5'),\n    LINK(\"ci-link\", '\\uebe8'),\n    LINUX(\"ci-linux\", '\\uebea'),\n    LINUX_ALT(\"ci-linux-alt\", '\\uebe9'),\n    LIST(\"ci-list\", '\\uebf0'),\n    LIST_BOXES(\"ci-list-boxes\", '\\uebeb'),\n    LIST_BULLETED(\"ci-list-bulleted\", '\\uebec'),\n    LIST_CHECKED(\"ci-list-checked\", '\\uebed'),\n    LIST_DROPDOWN(\"ci-list-dropdown\", '\\uebee'),\n    LIST_NUMBERED(\"ci-list-numbered\", '\\uebef'),\n    LOCATION(\"ci-location\", '\\uebfb'),\n    LOCATION_COMPANY(\"ci-location-company\", '\\uebf2'),\n    LOCATION_COMPANY_FILLED(\"ci-location-company-filled\", '\\uebf1'),\n    LOCATION_HAZARD(\"ci-location-hazard\", '\\uebf4'),\n    LOCATION_HAZARD_FILLED(\"ci-location-hazard-filled\", '\\uebf3'),\n    LOCATION_HEART(\"ci-location-heart\", '\\uebf6'),\n    LOCATION_HEART_FILLED(\"ci-location-heart-filled\", '\\uebf5'),\n    LOCATION_PERSON(\"ci-location-person\", '\\uebf8'),\n    LOCATION_PERSON_FILLED(\"ci-location-person-filled\", '\\uebf7'),\n    LOCATION_STAR(\"ci-location-star\", '\\uebfa'),\n    LOCATION_STAR_FILLED(\"ci-location-star-filled\", '\\uebf9'),\n    LOCKED(\"ci-locked\", '\\uebfc'),\n    LOGIN(\"ci-login\", '\\uebfd'),\n    LOGOUT(\"ci-logout\", '\\uec17'),\n    LOGO_DIGG(\"ci-logo-digg\", '\\uebfe'),\n    LOGO_FACEBOOK(\"ci-logo-facebook\", '\\uebff'),\n    LOGO_FLICKR(\"ci-logo-flickr\", '\\uec00'),\n    LOGO_GITHUB(\"ci-logo-github\", '\\uec01'),\n    LOGO_GLASSDOOR(\"ci-logo-glassdoor\", '\\uec02'),\n    LOGO_INSTAGRAM(\"ci-logo-instagram\", '\\uec03'),\n    LOGO_JUPYTER(\"ci-logo-jupyter\", '\\uec04'),\n    LOGO_KEYBASE(\"ci-logo-keybase\", '\\uec05'),\n    LOGO_LINKEDIN(\"ci-logo-linkedin\", '\\uec06'),\n    LOGO_LIVESTREAM(\"ci-logo-livestream\", '\\uec07'),\n    LOGO_MEDIUM(\"ci-logo-medium\", '\\uec08'),\n    LOGO_OPENSHIFT(\"ci-logo-openshift\", '\\uec09'),\n    LOGO_PINTEREST(\"ci-logo-pinterest\", '\\uec0a'),\n    LOGO_PYTHON(\"ci-logo-python\", '\\uec0b'),\n    LOGO_QUORA(\"ci-logo-quora\", '\\uec0c'),\n    LOGO_R_SCRIPT(\"ci-logo-r-script\", '\\uec0d'),\n    LOGO_SKYPE(\"ci-logo-skype\", '\\uec0e'),\n    LOGO_SLACK(\"ci-logo-slack\", '\\uec0f'),\n    LOGO_SNAPCHAT(\"ci-logo-snapchat\", '\\uec10'),\n    LOGO_TUMBLR(\"ci-logo-tumblr\", '\\uec11'),\n    LOGO_TWITTER(\"ci-logo-twitter\", '\\uec12'),\n    LOGO_VMWARE(\"ci-logo-vmware\", '\\uec13'),\n    LOGO_XING(\"ci-logo-xing\", '\\uec14'),\n    LOGO_YELP(\"ci-logo-yelp\", '\\uec15'),\n    LOGO_YOUTUBE(\"ci-logo-youtube\", '\\uec16'),\n    LOOP(\"ci-loop\", '\\uec18'),\n    MACHINE_LEARNING(\"ci-machine-learning\", '\\uec1d'),\n    MACHINE_LEARNING_MODEL(\"ci-machine-learning-model\", '\\uec1c'),\n    MAC_COMMAND(\"ci-mac-command\", '\\uec19'),\n    MAC_OPTION(\"ci-mac-option\", '\\uec1a'),\n    MAC_SHIFT(\"ci-mac-shift\", '\\uec1b'),\n    MAGIC_WAND(\"ci-magic-wand\", '\\uec1f'),\n    MAGIC_WAND_FILLED(\"ci-magic-wand-filled\", '\\uec1e'),\n    MAGNIFY(\"ci-magnify\", '\\uec20'),\n    MAIL_ALL(\"ci-mail-all\", '\\uec21'),\n    MAIL_REPLY(\"ci-mail-reply\", '\\uec22'),\n    MAMMOGRAM(\"ci-mammogram\", '\\uec23'),\n    MANAGED_SOLUTIONS(\"ci-managed-solutions\", '\\uec25'),\n    MANAGE_PROTECTION(\"ci-manage-protection\", '\\uec24'),\n    MAP(\"ci-map\", '\\uec27'),\n    MAP_BOUNDARY(\"ci-map-boundary\", '\\uec26'),\n    MARINE_WARNING(\"ci-marine-warning\", '\\uec28'),\n    MATH_CURVE(\"ci-math-curve\", '\\uec29'),\n    MATRIX(\"ci-matrix\", '\\uec2a'),\n    MAXIMIZE(\"ci-maximize\", '\\uec2b'),\n    MEDICATION(\"ci-medication\", '\\uec2e'),\n    MEDICATION_ALERT(\"ci-medication-alert\", '\\uec2c'),\n    MEDICATION_REMINDER(\"ci-medication-reminder\", '\\uec2d'),\n    MENU(\"ci-menu\", '\\uec2f'),\n    METER(\"ci-meter\", '\\uec31'),\n    METER_ALT(\"ci-meter-alt\", '\\uec30'),\n    MICROPHONE(\"ci-microphone\", '\\uec35'),\n    MICROPHONE_FILLED(\"ci-microphone-filled\", '\\uec32'),\n    MICROPHONE_OFF(\"ci-microphone-off\", '\\uec34'),\n    MICROPHONE_OFF_FILLED(\"ci-microphone-off-filled\", '\\uec33'),\n    MICROSCOPE(\"ci-microscope\", '\\uec36'),\n    MIGRATE(\"ci-migrate\", '\\uec38'),\n    MIGRATE_ALT(\"ci-migrate-alt\", '\\uec37'),\n    MILESTONE(\"ci-milestone\", '\\uec39'),\n    MINIMIZE(\"ci-minimize\", '\\uec3a'),\n    MISUSE(\"ci-misuse\", '\\uec3d'),\n    MISUSE_ALT(\"ci-misuse-alt\", '\\uec3b'),\n    MISUSE_OUTLINE(\"ci-misuse-outline\", '\\uec3c'),\n    MIXED_RAIN_HAIL(\"ci-mixed-rain-hail\", '\\uec3e'),\n    MOBILE(\"ci-mobile\", '\\uec44'),\n    MOBILE_ADD(\"ci-mobile-add\", '\\uec3f'),\n    MOBILE_AUDIO(\"ci-mobile-audio\", '\\uec40'),\n    MOBILE_CHECK(\"ci-mobile-check\", '\\uec41'),\n    MOBILE_DOWNLOAD(\"ci-mobile-download\", '\\uec42'),\n    MOBILE_LANDSCAPE(\"ci-mobile-landscape\", '\\uec43'),\n    MODEL(\"ci-model\", '\\uec49'),\n    MODEL_ALT(\"ci-model-alt\", '\\uec45'),\n    MODEL_BUILDER(\"ci-model-builder\", '\\uec47'),\n    MODEL_BUILDER_REFERENCE(\"ci-model-builder-reference\", '\\uec46'),\n    MODEL_REFERENCE(\"ci-model-reference\", '\\uec48'),\n    MONEY(\"ci-money\", '\\uec4a'),\n    MONSTER(\"ci-monster\", '\\uec4b'),\n    MONUMENT(\"ci-monument\", '\\uec4c'),\n    MOON(\"ci-moon\", '\\uec4d'),\n    MOSTLY_CLOUDY(\"ci-mostly-cloudy\", '\\uec4f'),\n    MOSTLY_CLOUDY_NIGHT(\"ci-mostly-cloudy-night\", '\\uec4e'),\n    MOUNTAIN(\"ci-mountain\", '\\uec50'),\n    MOV(\"ci-mov\", '\\uec51'),\n    MOVE(\"ci-move\", '\\uec52'),\n    MOVEMENT(\"ci-movement\", '\\uec53'),\n    MP3(\"ci-mp3\", '\\uec54'),\n    MP4(\"ci-mp4\", '\\uec55'),\n    MPEG(\"ci-mpeg\", '\\uec56'),\n    MPG2(\"ci-mpg2\", '\\uec57'),\n    MUSIC(\"ci-music\", '\\uec58'),\n    NAME_SPACE(\"ci-name-space\", '\\uec59'),\n    NAVAID_CIVIL(\"ci-navaid-civil\", '\\uec5a'),\n    NAVAID_DME(\"ci-navaid-dme\", '\\uec5b'),\n    NAVAID_HELIPAD(\"ci-navaid-helipad\", '\\uec5c'),\n    NAVAID_MILITARY(\"ci-navaid-military\", '\\uec5e'),\n    NAVAID_MILITARY_CIVIL(\"ci-navaid-military-civil\", '\\uec5d'),\n    NAVAID_NDB(\"ci-navaid-ndb\", '\\uec75'),\n    NAVAID_PRIVATE(\"ci-navaid-private\", '\\uec76'),\n    NAVAID_SEAPLANE(\"ci-navaid-seaplane\", '\\uec77'),\n    NAVAID_TACAN(\"ci-navaid-tacan\", '\\uec78'),\n    NAVAID_VHFOR(\"ci-navaid-vhfor\", '\\uec79'),\n    NAVAID_VORTAC(\"ci-navaid-vortac\", '\\uec7e'),\n    NETWORK_1(\"ci-network-1\", '\\uec7f'),\n    NETWORK_2(\"ci-network-2\", '\\uec80'),\n    NETWORK_3(\"ci-network-3\", '\\uec82'),\n    NETWORK_3_REFERENCE(\"ci-network-3-reference\", '\\uec81'),\n    NETWORK_4(\"ci-network-4\", '\\uec83'),\n    NEW_TAB(\"ci-new-tab\", '\\uec84'),\n    NEXT_FILLED(\"ci-next-filled\", '\\uec85'),\n    NEXT_OUTLINE(\"ci-next-outline\", '\\uec86'),\n    NOMINAL(\"ci-nominal\", '\\uec89'),\n    NOMINATE(\"ci-nominate\", '\\uec8a'),\n    NON_CERTIFIED(\"ci-non-certified\", '\\uec8b'),\n    NOODLE_BOWL(\"ci-noodle-bowl\", '\\uec8c'),\n    NOTEBOOK(\"ci-notebook\", '\\uec91'),\n    NOTEBOOK_REFERENCE(\"ci-notebook-reference\", '\\uec90'),\n    NOTIFICATION(\"ci-notification\", '\\uec96'),\n    NOTIFICATION_FILLED(\"ci-notification-filled\", '\\uec92'),\n    NOTIFICATION_NEW(\"ci-notification-new\", '\\uec93'),\n    NOTIFICATION_OFF(\"ci-notification-off\", '\\uec95'),\n    NOTIFICATION_OFF_FILLED(\"ci-notification-off-filled\", '\\uec94'),\n    NOT_AVAILABLE(\"ci-not-available\", '\\uec8d'),\n    NOT_SENT(\"ci-not-sent\", '\\uec8f'),\n    NOT_SENT_FILLED(\"ci-not-sent-filled\", '\\uec8e'),\n    NO_IMAGE(\"ci-no-image\", '\\uec87'),\n    NO_TICKET(\"ci-no-ticket\", '\\uec88'),\n    NUMBER_0(\"ci-number-0\", '\\uec97'),\n    NUMBER_1(\"ci-number-1\", '\\uec98'),\n    NUMBER_2(\"ci-number-2\", '\\uec99'),\n    NUMBER_3(\"ci-number-3\", '\\uec9a'),\n    NUMBER_4(\"ci-number-4\", '\\uec9b'),\n    NUMBER_5(\"ci-number-5\", '\\uec9c'),\n    NUMBER_6(\"ci-number-6\", '\\uec9d'),\n    NUMBER_7(\"ci-number-7\", '\\uec9e'),\n    NUMBER_8(\"ci-number-8\", '\\uec9f'),\n    NUMBER_9(\"ci-number-9\", '\\ueca0'),\n    NUMBER_SMALL_0(\"ci-number-small-0\", '\\ueca1'),\n    NUMBER_SMALL_1(\"ci-number-small-1\", '\\ueca2'),\n    NUMBER_SMALL_2(\"ci-number-small-2\", '\\ueca3'),\n    NUMBER_SMALL_3(\"ci-number-small-3\", '\\ueca4'),\n    NUMBER_SMALL_4(\"ci-number-small-4\", '\\ueca5'),\n    NUMBER_SMALL_5(\"ci-number-small-5\", '\\ueca6'),\n    NUMBER_SMALL_6(\"ci-number-small-6\", '\\ueca7'),\n    NUMBER_SMALL_7(\"ci-number-small-7\", '\\ueca8'),\n    NUMBER_SMALL_8(\"ci-number-small-8\", '\\ueca9'),\n    NUMBER_SMALL_9(\"ci-number-small-9\", '\\uecaa'),\n    OBJECT_STORAGE(\"ci-object-storage\", '\\uecab'),\n    OBSERVED_HAIL(\"ci-observed-hail\", '\\uecac'),\n    OBSERVED_LIGHTNING(\"ci-observed-lightning\", '\\uecad'),\n    OMEGA(\"ci-omega\", '\\uecae'),\n    OPACITY(\"ci-opacity\", '\\uecaf'),\n    OPEN_PANEL_BOTTOM(\"ci-open-panel-bottom\", '\\uecb0'),\n    OPEN_PANEL_FILLED_BOTTOM(\"ci-open-panel-filled-bottom\", '\\uecb1'),\n    OPEN_PANEL_FILLED_LEFT(\"ci-open-panel-filled-left\", '\\uecb2'),\n    OPEN_PANEL_FILLED_RIGHT(\"ci-open-panel-filled-right\", '\\uecb3'),\n    OPEN_PANEL_FILLED_TOP(\"ci-open-panel-filled-top\", '\\uecb4'),\n    OPEN_PANEL_LEFT(\"ci-open-panel-left\", '\\uecb5'),\n    OPEN_PANEL_RIGHT(\"ci-open-panel-right\", '\\uecb6'),\n    OPEN_PANEL_TOP(\"ci-open-panel-top\", '\\uecb7'),\n    OPERATION(\"ci-operation\", '\\uecba'),\n    OPERATIONS_FIELD(\"ci-operations-field\", '\\uecbb'),\n    OPERATIONS_RECORD(\"ci-operations-record\", '\\uecbc'),\n    OPERATION_GAUGE(\"ci-operation-gauge\", '\\uecb8'),\n    OPERATION_IF(\"ci-operation-if\", '\\uecb9'),\n    ORDINAL(\"ci-ordinal\", '\\uecbd'),\n    OUTAGE(\"ci-outage\", '\\uecbe'),\n    OUTLOOK_SEVERE(\"ci-outlook-severe\", '\\uecbf'),\n    OVERFLOW_MENU_HORIZONTAL(\"ci-overflow-menu-horizontal\", '\\uecc0'),\n    OVERFLOW_MENU_VERTICAL(\"ci-overflow-menu-vertical\", '\\uecc1'),\n    OVERLAY(\"ci-overlay\", '\\uecc2'),\n    PACKAGE(\"ci-package\", '\\uecc3'),\n    PAGE_BREAK(\"ci-page-break\", '\\uecc4'),\n    PAGE_FIRST(\"ci-page-first\", '\\uecc5'),\n    PAGE_LAST(\"ci-page-last\", '\\uecc6'),\n    PAGE_NUMBER(\"ci-page-number\", '\\uecc7'),\n    PAGE_SCROLL(\"ci-page-scroll\", '\\uecc8'),\n    PAINT_BRUSH(\"ci-paint-brush\", '\\uecca'),\n    PAINT_BRUSH_ALT(\"ci-paint-brush-alt\", '\\uecc9'),\n    PALM_TREE(\"ci-palm-tree\", '\\ueccb'),\n    PANEL_EXPANSION(\"ci-panel-expansion\", '\\uecce'),\n    PAN_HORIZONTAL(\"ci-pan-horizontal\", '\\ueccc'),\n    PAN_VERTICAL(\"ci-pan-vertical\", '\\ueccd'),\n    PARAGRAPH(\"ci-paragraph\", '\\ueccf'),\n    PARENT_CHILD(\"ci-parent-child\", '\\uecd0'),\n    PARTLY_CLOUDY(\"ci-partly-cloudy\", '\\uecd2'),\n    PARTLY_CLOUDY_NIGHT(\"ci-partly-cloudy-night\", '\\uecd1'),\n    PARTNERSHIP(\"ci-partnership\", '\\uecd3'),\n    PASSENGER_DRINKS(\"ci-passenger-drinks\", '\\uecd4'),\n    PASSENGER_PLUS(\"ci-passenger-plus\", '\\uecd5'),\n    PASSWORD(\"ci-password\", '\\uecd6'),\n    PASTE(\"ci-paste\", '\\uecd7'),\n    PAUSE(\"ci-pause\", '\\uecdd'),\n    PAUSE_FILLED(\"ci-pause-filled\", '\\uecd8'),\n    PAUSE_FUTURE(\"ci-pause-future\", '\\uecd9'),\n    PAUSE_OUTLINE(\"ci-pause-outline\", '\\uecdb'),\n    PAUSE_OUTLINE_FILLED(\"ci-pause-outline-filled\", '\\uecda'),\n    PAUSE_PAST(\"ci-pause-past\", '\\uecdc'),\n    PDF(\"ci-pdf\", '\\uecdf'),\n    PDF_REFERENCE(\"ci-pdf-reference\", '\\uecde'),\n    PEDESTRIAN(\"ci-pedestrian\", '\\uece1'),\n    PEDESTRIAN_CHILD(\"ci-pedestrian-child\", '\\uece0'),\n    PENDING(\"ci-pending\", '\\uece3'),\n    PENDING_FILLED(\"ci-pending-filled\", '\\uece2'),\n    PERCENTAGE(\"ci-percentage\", '\\uece5'),\n    PERCENTAGE_FILLED(\"ci-percentage-filled\", '\\uece4'),\n    PERSON(\"ci-person\", '\\uece7'),\n    PERSON_FAVORITE(\"ci-person-favorite\", '\\uece6'),\n    PEST(\"ci-pest\", '\\uece8'),\n    PET_IMAGE_B(\"ci-pet-image-b\", '\\uece9'),\n    PET_IMAGE_O(\"ci-pet-image-o\", '\\uecea'),\n    PHONE(\"ci-phone\", '\\uecee'),\n    PHONE_FILLED(\"ci-phone-filled\", '\\ueceb'),\n    PHONE_OFF(\"ci-phone-off\", '\\ueced'),\n    PHONE_OFF_FILLED(\"ci-phone-off-filled\", '\\uecec'),\n    PHRASE_SENTIMENT(\"ci-phrase-sentiment\", '\\uecef'),\n    PICNIC_AREA(\"ci-picnic-area\", '\\uecf0'),\n    PILLS(\"ci-pills\", '\\uecf3'),\n    PILLS_ADD(\"ci-pills-add\", '\\uecf1'),\n    PILLS_SUBTRACT(\"ci-pills-subtract\", '\\uecf2'),\n    PIN(\"ci-pin\", '\\uecf5'),\n    PIN_FILLED(\"ci-pin-filled\", '\\uecf4'),\n    PLANE(\"ci-plane\", '\\uecf8'),\n    PLANE_PRIVATE(\"ci-plane-private\", '\\uecf6'),\n    PLANE_SEA(\"ci-plane-sea\", '\\uecf7'),\n    PLAY(\"ci-play\", '\\uecfd'),\n    PLAYLIST(\"ci-playlist\", '\\uecfe'),\n    PLAY_FILLED(\"ci-play-filled\", '\\uecfa'),\n    PLAY_FILLED_ALT(\"ci-play-filled-alt\", '\\uecf9'),\n    PLAY_OUTLINE(\"ci-play-outline\", '\\uecfc'),\n    PLAY_OUTLINE_FILLED(\"ci-play-outline-filled\", '\\uecfb'),\n    PLUG(\"ci-plug\", '\\ued00'),\n    PLUG_FILLED(\"ci-plug-filled\", '\\uecff'),\n    PNG(\"ci-png\", '\\ued01'),\n    POINTER_TEXT(\"ci-pointer-text\", '\\ued02'),\n    POLICE(\"ci-police\", '\\ued03'),\n    POLICY(\"ci-policy\", '\\ued04'),\n    POPUP(\"ci-popup\", '\\ued05'),\n    PORTFOLIO(\"ci-portfolio\", '\\ued06'),\n    POWER(\"ci-power\", '\\ued07'),\n    PPT(\"ci-ppt\", '\\ued08'),\n    PRESENTATION_FILE(\"ci-presentation-file\", '\\ued09'),\n    PRESSURE(\"ci-pressure\", '\\ued0b'),\n    PRESSURE_FILLED(\"ci-pressure-filled\", '\\ued0a'),\n    PREVIOUS_FILLED(\"ci-previous-filled\", '\\ued0c'),\n    PREVIOUS_OUTLINE(\"ci-previous-outline\", '\\ued0d'),\n    PRINTER(\"ci-printer\", '\\ued0e'),\n    PRODUCT(\"ci-product\", '\\ued0f'),\n    PURCHASE(\"ci-purchase\", '\\ued10'),\n    QQ_PLOT(\"ci-qq-plot\", '\\ued11'),\n    QR_CODE(\"ci-qr-code\", '\\ued12'),\n    QUADRANT_PLOT(\"ci-quadrant-plot\", '\\ued13'),\n    QUERY(\"ci-query\", '\\ued15'),\n    QUERY_QUEUE(\"ci-query-queue\", '\\ued14'),\n    QUEUED(\"ci-queued\", '\\ued16'),\n    QUOTES(\"ci-quotes\", '\\ued17'),\n    RADAR(\"ci-radar\", '\\ued1a'),\n    RADAR_ENHANCED(\"ci-radar-enhanced\", '\\ued18'),\n    RADAR_WEATHER(\"ci-radar-weather\", '\\ued19'),\n    RADIO(\"ci-radio\", '\\ued1d'),\n    RADIO_BUTTON(\"ci-radio-button\", '\\ued1c'),\n    RADIO_BUTTON_CHECKED(\"ci-radio-button-checked\", '\\ued1b'),\n    RAIN(\"ci-rain\", '\\ued23'),\n    RAIN_DRIZZLE(\"ci-rain-drizzle\", '\\ued1e'),\n    RAIN_DROP(\"ci-rain-drop\", '\\ued1f'),\n    RAIN_HEAVY(\"ci-rain-heavy\", '\\ued20'),\n    RAIN_SCATTERED(\"ci-rain-scattered\", '\\ued22'),\n    RAIN_SCATTERED_NIGHT(\"ci-rain-scattered-night\", '\\ued21'),\n    RAW(\"ci-raw\", '\\ued24'),\n    RECEIPT(\"ci-receipt\", '\\ued25'),\n    RECENTLY_VIEWED(\"ci-recently-viewed\", '\\ued26'),\n    RECOMMEND(\"ci-recommend\", '\\ued27'),\n    RECORDING(\"ci-recording\", '\\ued2a'),\n    RECORDING_FILLED(\"ci-recording-filled\", '\\ued29'),\n    RECORDING_FILLED_ALT(\"ci-recording-filled-alt\", '\\ued28'),\n    REDO(\"ci-redo\", '\\ued2b'),\n    REFLECT_HORIZONTAL(\"ci-reflect-horizontal\", '\\ued2d'),\n    REFLECT_VERTICAL(\"ci-reflect-vertical\", '\\ued2e'),\n    REF_EVAPOTRANSPIRATION(\"ci-ref-evapotranspiration\", '\\ued2c'),\n    REGION_ANALYSIS_AREA(\"ci-region-analysis-area\", '\\ued2f'),\n    REGION_ANALYSIS_VOLUME(\"ci-region-analysis-volume\", '\\ued30'),\n    REGISTRATION(\"ci-registration\", '\\ued31'),\n    REMINDER(\"ci-reminder\", '\\ued33'),\n    REMINDER_MEDICAL(\"ci-reminder-medical\", '\\ued32'),\n    RENEW(\"ci-renew\", '\\ued34'),\n    REPEAT(\"ci-repeat\", '\\ued36'),\n    REPEAT_ONE(\"ci-repeat-one\", '\\ued35'),\n    REPLY(\"ci-reply\", '\\ued37'),\n    REPORT(\"ci-report\", '\\ued39'),\n    REPORT_DATA(\"ci-report-data\", '\\ued38'),\n    REQUEST_QUOTE(\"ci-request-quote\", '\\ued3a'),\n    RESEARCH_BLOCH_SPHERE(\"ci-research-bloch-sphere\", '\\ued3b'),\n    RESEARCH_HINTON_PLOT(\"ci-research-hinton-plot\", '\\ued3c'),\n    RESEARCH_MATRIX(\"ci-research-matrix\", '\\ued3d'),\n    RESET(\"ci-reset\", '\\ued3f'),\n    RESET_ALT(\"ci-reset-alt\", '\\ued3e'),\n    RESTART(\"ci-restart\", '\\ued40'),\n    RESTAURANT(\"ci-restaurant\", '\\ued42'),\n    RESTAURANT_FINE(\"ci-restaurant-fine\", '\\ued41'),\n    REWIND_10(\"ci-rewind-10\", '\\ued44'),\n    REWIND_30(\"ci-rewind-30\", '\\ued45'),\n    REWIND_5(\"ci-rewind-5\", '\\ued43'),\n    ROAD(\"ci-road\", '\\ued47'),\n    ROADMAP(\"ci-roadmap\", '\\ued48'),\n    ROAD_WEATHER(\"ci-road-weather\", '\\ued46'),\n    ROCKET(\"ci-rocket\", '\\ued49'),\n    ROTATE(\"ci-rotate\", '\\ued54'),\n    ROTATE_180(\"ci-rotate-180\", '\\ued4a'),\n    ROTATE_360(\"ci-rotate-360\", '\\ued4b'),\n    ROTATE_CLOCKWISE(\"ci-rotate-clockwise\", '\\ued4f'),\n    ROTATE_CLOCKWISE_ALT(\"ci-rotate-clockwise-alt\", '\\ued4d'),\n    ROTATE_CLOCKWISE_ALT_FILLED(\"ci-rotate-clockwise-alt-filled\", '\\ued4c'),\n    ROTATE_CLOCKWISE_FILLED(\"ci-rotate-clockwise-filled\", '\\ued4e'),\n    ROTATE_COUNTERCLOCKWISE(\"ci-rotate-counterclockwise\", '\\ued53'),\n    ROTATE_COUNTERCLOCKWISE_ALT(\"ci-rotate-counterclockwise-alt\", '\\ued51'),\n    ROTATE_COUNTERCLOCKWISE_ALT_FILLED(\"ci-rotate-counterclockwise-alt-filled\", '\\ued50'),\n    ROTATE_COUNTERCLOCKWISE_FILLED(\"ci-rotate-counterclockwise-filled\", '\\ued52'),\n    ROW(\"ci-row\", '\\ued59'),\n    ROW_COLLAPSE(\"ci-row-collapse\", '\\ued55'),\n    ROW_DELETE(\"ci-row-delete\", '\\ued56'),\n    ROW_EXPAND(\"ci-row-expand\", '\\ued57'),\n    ROW_INSERT(\"ci-row-insert\", '\\ued58'),\n    RSS(\"ci-rss\", '\\ued5a'),\n    RULE(\"ci-rule\", '\\ued5b'),\n    RULER(\"ci-ruler\", '\\ued5d'),\n    RULER_ALT(\"ci-ruler-alt\", '\\ued5c'),\n    RUN(\"ci-run\", '\\ued5e'),\n    S(\"ci-s\", '\\ued60'),\n    SAILBOAT_COASTAL(\"ci-sailboat-coastal\", '\\ued61'),\n    SAILBOAT_OFFSHORE(\"ci-sailboat-offshore\", '\\ued62'),\n    SANKEY_DIAGRAM(\"ci-sankey-diagram\", '\\ued63'),\n    SATELLITE(\"ci-satellite\", '\\ued66'),\n    SATELLITE_RADAR(\"ci-satellite-radar\", '\\ued64'),\n    SATELLITE_WEATHER(\"ci-satellite-weather\", '\\ued65'),\n    SAVE(\"ci-save\", '\\ued6b'),\n    SAVE_ANNOTATION(\"ci-save-annotation\", '\\ued67'),\n    SAVE_IMAGE(\"ci-save-image\", '\\ued68'),\n    SAVE_MODEL(\"ci-save-model\", '\\ued69'),\n    SAVE_SERIES(\"ci-save-series\", '\\ued6a'),\n    SCALE(\"ci-scale\", '\\ued6c'),\n    SCALES(\"ci-scales\", '\\ued6e'),\n    SCALES_TIPPED(\"ci-scales-tipped\", '\\ued6d'),\n    SCALPEL(\"ci-scalpel\", '\\ued72'),\n    SCALPEL_CURSOR(\"ci-scalpel-cursor\", '\\ued6f'),\n    SCALPEL_LASSO(\"ci-scalpel-lasso\", '\\ued70'),\n    SCALPEL_SELECT(\"ci-scalpel-select\", '\\ued71'),\n    SCAN(\"ci-scan\", '\\ued73'),\n    SCATTER_MATRIX(\"ci-scatter-matrix\", '\\ued74'),\n    SCHEMATICS(\"ci-schematics\", '\\ued75'),\n    SCOOTER(\"ci-scooter\", '\\ued77'),\n    SCOOTER_FRONT(\"ci-scooter-front\", '\\ued76'),\n    SCREEN(\"ci-screen\", '\\ued79'),\n    SCREEN_OFF(\"ci-screen-off\", '\\ued78'),\n    SCRIPT(\"ci-script\", '\\ued7b'),\n    SCRIPT_REFERENCE(\"ci-script-reference\", '\\ued7a'),\n    SDK(\"ci-sdk\", '\\ued7c'),\n    SEARCH(\"ci-search\", '\\ued7d'),\n    SECURITY(\"ci-security\", '\\ued7e'),\n    SELECT_01(\"ci-select-01\", '\\ued7f'),\n    SELECT_02(\"ci-select-02\", '\\ued80'),\n    SEND(\"ci-send\", '\\ued85'),\n    SEND_ALT(\"ci-send-alt\", '\\ued82'),\n    SEND_ALT_FILLED(\"ci-send-alt-filled\", '\\ued81'),\n    SEND_FILLED(\"ci-send-filled\", '\\ued83'),\n    SEND_TO_BACK(\"ci-send-to-back\", '\\ued84'),\n    SERVICE_DESK(\"ci-service-desk\", '\\ued86'),\n    SETTINGS(\"ci-settings\", '\\ued89'),\n    SETTINGS_ADJUST(\"ci-settings-adjust\", '\\ued87'),\n    SETTINGS_CHECK(\"ci-settings-check\", '\\ued88'),\n    SHARE(\"ci-share\", '\\ued8b'),\n    SHARE_KNOWLEDGE(\"ci-share-knowledge\", '\\ued8a'),\n    SHOPPING_BAG(\"ci-shopping-bag\", '\\ued8c'),\n    SHOPPING_CART(\"ci-shopping-cart\", '\\ued8d'),\n    SHOPPING_CATALOG(\"ci-shopping-catalog\", '\\ued8e'),\n    SHRINK_SCREEN(\"ci-shrink-screen\", '\\ued90'),\n    SHRINK_SCREEN_FILLED(\"ci-shrink-screen-filled\", '\\ued8f'),\n    SHUFFLE(\"ci-shuffle\", '\\ued91'),\n    SHUTTLE(\"ci-shuttle\", '\\ued92'),\n    SIGMA(\"ci-sigma\", '\\ued93'),\n    SIGNAL_STRENGTH(\"ci-signal-strength\", '\\ued94'),\n    SKILL_LEVEL(\"ci-skill-level\", '\\ued98'),\n    SKILL_LEVEL_ADVANCED(\"ci-skill-level-advanced\", '\\ued95'),\n    SKILL_LEVEL_BASIC(\"ci-skill-level-basic\", '\\ued96'),\n    SKILL_LEVEL_INTERMEDIATE(\"ci-skill-level-intermediate\", '\\ued97'),\n    SKIP_BACK(\"ci-skip-back\", '\\ued9e'),\n    SKIP_BACK_FILLED(\"ci-skip-back-filled\", '\\ued99'),\n    SKIP_BACK_OUTLINE(\"ci-skip-back-outline\", '\\ued9c'),\n    SKIP_BACK_OUTLINE_FILLED(\"ci-skip-back-outline-filled\", '\\ued9a'),\n    SKIP_BACK_OUTLINE_SOLID(\"ci-skip-back-outline-solid\", '\\ued9b'),\n    SKIP_BACK_SOLID_FILLED(\"ci-skip-back-solid-filled\", '\\ued9d'),\n    SKIP_FORWARD(\"ci-skip-forward\", '\\ueda4'),\n    SKIP_FORWARD_FILLED(\"ci-skip-forward-filled\", '\\ued9f'),\n    SKIP_FORWARD_OUTLINE(\"ci-skip-forward-outline\", '\\ueda2'),\n    SKIP_FORWARD_OUTLINE_FILLED(\"ci-skip-forward-outline-filled\", '\\ueda0'),\n    SKIP_FORWARD_OUTLINE_SOLID(\"ci-skip-forward-outline-solid\", '\\ueda1'),\n    SKIP_FORWARD_SOLID_FILLED(\"ci-skip-forward-solid-filled\", '\\ueda3'),\n    SLEET(\"ci-sleet\", '\\ueda5'),\n    SMELL(\"ci-smell\", '\\ueda6'),\n    SMOKE(\"ci-smoke\", '\\ueda7'),\n    SMOOTHING(\"ci-smoothing\", '\\ueda9'),\n    SMOOTHING_CURSOR(\"ci-smoothing-cursor\", '\\ueda8'),\n    SNOOZE(\"ci-snooze\", '\\uedaa'),\n    SNOW(\"ci-snow\", '\\uedb0'),\n    SNOWFLAKE(\"ci-snowflake\", '\\uedb1'),\n    SNOW_BLIZZARD(\"ci-snow-blizzard\", '\\uedab'),\n    SNOW_DENSITY(\"ci-snow-density\", '\\uedac'),\n    SNOW_HEAVY(\"ci-snow-heavy\", '\\uedad'),\n    SNOW_SCATTERED(\"ci-snow-scattered\", '\\uedaf'),\n    SNOW_SCATTERED_NIGHT(\"ci-snow-scattered-night\", '\\uedae'),\n    SOCCER(\"ci-soccer\", '\\uedb2'),\n    SOIL_MOISTURE(\"ci-soil-moisture\", '\\uedb5'),\n    SOIL_MOISTURE_FIELD(\"ci-soil-moisture-field\", '\\uedb3'),\n    SOIL_MOISTURE_GLOBAL(\"ci-soil-moisture-global\", '\\uedb4'),\n    SOIL_TEMPERATURE(\"ci-soil-temperature\", '\\uedb8'),\n    SOIL_TEMPERATURE_FIELD(\"ci-soil-temperature-field\", '\\uedb6'),\n    SOIL_TEMPERATURE_GLOBAL(\"ci-soil-temperature-global\", '\\uedb7'),\n    SPELL_CHECK(\"ci-spell-check\", '\\uedb9'),\n    SPINE_LABEL(\"ci-spine-label\", '\\uedba'),\n    SPLIT(\"ci-split\", '\\uedbd'),\n    SPLIT_DISCARD(\"ci-split-discard\", '\\uedbb'),\n    SPLIT_SCREEN(\"ci-split-screen\", '\\uedbc'),\n    SPRAY_PAINT(\"ci-spray-paint\", '\\uedbe'),\n    SPROUT(\"ci-sprout\", '\\uedbf'),\n    SQL(\"ci-sql\", '\\uedc0'),\n    STACKED_MOVE(\"ci-stacked-move\", '\\uedc2'),\n    STACKED_SCROLLING_1(\"ci-stacked-scrolling-1\", '\\uedc3'),\n    STACKED_SCROLLING_2(\"ci-stacked-scrolling-2\", '\\uedc4'),\n    STACK_LIMITATION(\"ci-stack-limitation\", '\\uedc1'),\n    STAMP(\"ci-stamp\", '\\uedc5'),\n    STAR(\"ci-star\", '\\uedc9'),\n    STAR_FILLED(\"ci-star-filled\", '\\uedc6'),\n    STAR_HALF(\"ci-star-half\", '\\uedc7'),\n    STAR_REVIEW(\"ci-star-review\", '\\uedc8'),\n    STAY_INSIDE(\"ci-stay-inside\", '\\uedca'),\n    STEM_LEAF_PLOT(\"ci-stem-leaf-plot\", '\\uedcb'),\n    STETHOSCOPE(\"ci-stethoscope\", '\\uedcc'),\n    STOP(\"ci-stop\", '\\uedd1'),\n    STOP_FILLED(\"ci-stop-filled\", '\\uedce'),\n    STOP_FILLED_ALT(\"ci-stop-filled-alt\", '\\uedcd'),\n    STOP_OUTLINE(\"ci-stop-outline\", '\\uedd0'),\n    STOP_OUTLINE_FILLED(\"ci-stop-outline-filled\", '\\uedcf'),\n    STORAGE_REQUEST(\"ci-storage-request\", '\\uedd2'),\n    STORE(\"ci-store\", '\\uedd3'),\n    STORM_TRACKER(\"ci-storm-tracker\", '\\uedd4'),\n    STRAWBERRY(\"ci-strawberry\", '\\uedd5'),\n    STRESS_BREATH_EDITOR(\"ci-stress-breath-editor\", '\\uedd6'),\n    STRING_INTEGER(\"ci-string-integer\", '\\uedd7'),\n    STRING_TEXT(\"ci-string-text\", '\\uedd8'),\n    STUDY_NEXT(\"ci-study-next\", '\\uedd9'),\n    STUDY_PREVIOUS(\"ci-study-previous\", '\\uedda'),\n    STUDY_SKIP(\"ci-study-skip\", '\\ueddb'),\n    SUBTRACT(\"ci-subtract\", '\\uedde'),\n    SUBTRACT_ALT(\"ci-subtract-alt\", '\\ueddd'),\n    SUB_VOLUME(\"ci-sub-volume\", '\\ueddc'),\n    SUMMARY_KPI(\"ci-summary-kpi\", '\\ueddf'),\n    SUN(\"ci-sun\", '\\uede0'),\n    SUNNY(\"ci-sunny\", '\\uede1'),\n    SUNRISE(\"ci-sunrise\", '\\uede2'),\n    SUNSET(\"ci-sunset\", '\\uede3'),\n    SVG(\"ci-svg\", '\\uede4'),\n    SWIM(\"ci-swim\", '\\uede5'),\n    SWITCHER(\"ci-switcher\", '\\uede6'),\n    SYS_PROVISION(\"ci-sys-provision\", '\\uede7'),\n    S_ALT(\"ci-s-alt\", '\\ued5f'),\n    T(\"ci-t\", '\\uede9'),\n    TABLE(\"ci-table\", '\\uedec'),\n    TABLET(\"ci-tablet\", '\\uedee'),\n    TABLET_LANDSCAPE(\"ci-tablet-landscape\", '\\ueded'),\n    TABLE_OF_CONTENTS(\"ci-table-of-contents\", '\\uedea'),\n    TABLE_SPLIT(\"ci-table-split\", '\\uedeb'),\n    TAG(\"ci-tag\", '\\uedf1'),\n    TAG_EDIT(\"ci-tag-edit\", '\\uedef'),\n    TAG_GROUP(\"ci-tag-group\", '\\uedf0'),\n    TASK(\"ci-task\", '\\uedf3'),\n    TASK_VIEW(\"ci-task-view\", '\\uedf2'),\n    TASTE(\"ci-taste\", '\\uedf4'),\n    TAXI(\"ci-taxi\", '\\uedf5'),\n    TEMPERATURE(\"ci-temperature\", '\\uedfd'),\n    TEMPERATURE_FEELS_LIKE(\"ci-temperature-feels-like\", '\\uedf6'),\n    TEMPERATURE_FRIGID(\"ci-temperature-frigid\", '\\uedf7'),\n    TEMPERATURE_HOT(\"ci-temperature-hot\", '\\uedf8'),\n    TEMPERATURE_INVERSION(\"ci-temperature-inversion\", '\\uedf9'),\n    TEMPERATURE_MAX(\"ci-temperature-max\", '\\uedfa'),\n    TEMPERATURE_MIN(\"ci-temperature-min\", '\\uedfb'),\n    TEMPERATURE_WATER(\"ci-temperature-water\", '\\uedfc'),\n    TEMPLATE(\"ci-template\", '\\uedfe'),\n    TENNIS(\"ci-tennis\", '\\uee00'),\n    TENNIS_BALL(\"ci-tennis-ball\", '\\uedff'),\n    TERM(\"ci-term\", '\\uee01'),\n    TERMINAL(\"ci-terminal\", '\\uee02'),\n    TEXT_ALIGN_CENTER(\"ci-text-align-center\", '\\uee03'),\n    TEXT_ALIGN_JUSTIFY(\"ci-text-align-justify\", '\\uee04'),\n    TEXT_ALIGN_LEFT(\"ci-text-align-left\", '\\uee05'),\n    TEXT_ALIGN_RIGHT(\"ci-text-align-right\", '\\uee06'),\n    TEXT_ALL_CAPS(\"ci-text-all-caps\", '\\uee07'),\n    TEXT_ANNOTATION_TOGGLE(\"ci-text-annotation-toggle\", '\\uee08'),\n    TEXT_BOLD(\"ci-text-bold\", '\\uee09'),\n    TEXT_COLOR(\"ci-text-color\", '\\uee0a'),\n    TEXT_CREATION(\"ci-text-creation\", '\\uee0b'),\n    TEXT_FILL(\"ci-text-fill\", '\\uee0c'),\n    TEXT_FOOTNOTE(\"ci-text-footnote\", '\\uee0d'),\n    TEXT_HIGHLIGHT(\"ci-text-highlight\", '\\uee0e'),\n    TEXT_INDENT(\"ci-text-indent\", '\\uee11'),\n    TEXT_INDENT_LESS(\"ci-text-indent-less\", '\\uee0f'),\n    TEXT_INDENT_MORE(\"ci-text-indent-more\", '\\uee10'),\n    TEXT_ITALIC(\"ci-text-italic\", '\\uee12'),\n    TEXT_KERNING(\"ci-text-kerning\", '\\uee13'),\n    TEXT_LEADING(\"ci-text-leading\", '\\uee14'),\n    TEXT_LINE_SPACING(\"ci-text-line-spacing\", '\\uee15'),\n    TEXT_LINK(\"ci-text-link\", '\\uee17'),\n    TEXT_LINK_ANALYSIS(\"ci-text-link-analysis\", '\\uee16'),\n    TEXT_MINING(\"ci-text-mining\", '\\uee19'),\n    TEXT_MINING_APPLIER(\"ci-text-mining-applier\", '\\uee18'),\n    TEXT_NEW_LINE(\"ci-text-new-line\", '\\uee1a'),\n    TEXT_SCALE(\"ci-text-scale\", '\\uee1b'),\n    TEXT_SELECTION(\"ci-text-selection\", '\\uee1c'),\n    TEXT_SMALL_CAPS(\"ci-text-small-caps\", '\\uee1d'),\n    TEXT_STRIKETHROUGH(\"ci-text-strikethrough\", '\\uee1e'),\n    TEXT_SUBSCRIPT(\"ci-text-subscript\", '\\uee1f'),\n    TEXT_SUPERSCRIPT(\"ci-text-superscript\", '\\uee20'),\n    TEXT_TRACKING(\"ci-text-tracking\", '\\uee21'),\n    TEXT_UNDERLINE(\"ci-text-underline\", '\\uee22'),\n    TEXT_VERTICAL_ALIGNMENT(\"ci-text-vertical-alignment\", '\\uee23'),\n    TEXT_WRAP(\"ci-text-wrap\", '\\uee24'),\n    THEATER(\"ci-theater\", '\\uee25'),\n    THIS_SIDE_UP(\"ci-this-side-up\", '\\uee26'),\n    THRESHOLD(\"ci-threshold\", '\\uee27'),\n    THUMBNAIL_1(\"ci-thumbnail-1\", '\\uee28'),\n    THUMBNAIL_2(\"ci-thumbnail-2\", '\\uee29'),\n    THUMBNAIL_PREVIEW(\"ci-thumbnail-preview\", '\\uee2a'),\n    THUMBS_DOWN(\"ci-thumbs-down\", '\\uee2b'),\n    THUMBS_UP(\"ci-thumbs-up\", '\\uee2c'),\n    THUNDERSTORM(\"ci-thunderstorm\", '\\uee31'),\n    THUNDERSTORM_SCATTERED(\"ci-thunderstorm-scattered\", '\\uee2e'),\n    THUNDERSTORM_SCATTERED_NIGHT(\"ci-thunderstorm-scattered-night\", '\\uee2d'),\n    THUNDERSTORM_SEVERE(\"ci-thunderstorm-severe\", '\\uee2f'),\n    THUNDERSTORM_STRONG(\"ci-thunderstorm-strong\", '\\uee30'),\n    TICKET(\"ci-ticket\", '\\uee32'),\n    TIDES(\"ci-tides\", '\\uee33'),\n    TIF(\"ci-tif\", '\\uee34'),\n    TIME(\"ci-time\", '\\uee36'),\n    TIMER(\"ci-timer\", '\\uee37'),\n    TIME_PLOT(\"ci-time-plot\", '\\uee35'),\n    TOOLS(\"ci-tools\", '\\uee3a'),\n    TOOLS_ALT(\"ci-tools-alt\", '\\uee39'),\n    TOOL_BOX(\"ci-tool-box\", '\\uee38'),\n    TORNADO(\"ci-tornado\", '\\uee3c'),\n    TORNADO_WARNING(\"ci-tornado-warning\", '\\uee3b'),\n    TOUCH_1(\"ci-touch-1\", '\\uee3d'),\n    TOUCH_2(\"ci-touch-2\", '\\uee3e'),\n    TOUCH_INTERACTION(\"ci-touch-interaction\", '\\uee3f'),\n    TRAFFIC_CONE(\"ci-traffic-cone\", '\\uee40'),\n    TRAFFIC_EVENT(\"ci-traffic-event\", '\\uee41'),\n    TRAFFIC_FLOW(\"ci-traffic-flow\", '\\uee43'),\n    TRAFFIC_FLOW_INCIDENT(\"ci-traffic-flow-incident\", '\\uee42'),\n    TRAFFIC_INCIDENT(\"ci-traffic-incident\", '\\uee44'),\n    TRAFFIC_WEATHER_INCIDENT(\"ci-traffic-weather-incident\", '\\uee45'),\n    TRAIN(\"ci-train\", '\\uee49'),\n    TRAIN_HEART(\"ci-train-heart\", '\\uee46'),\n    TRAIN_TICKET(\"ci-train-ticket\", '\\uee47'),\n    TRAIN_TIME(\"ci-train-time\", '\\uee48'),\n    TRAM(\"ci-tram\", '\\uee4a'),\n    TRANSGENDER(\"ci-transgender\", '\\uee4b'),\n    TRANSLATE(\"ci-translate\", '\\uee4c'),\n    TRASH_CAN(\"ci-trash-can\", '\\uee4d'),\n    TREE(\"ci-tree\", '\\uee50'),\n    TREE_VIEW(\"ci-tree-view\", '\\uee4f'),\n    TREE_VIEW_ALT(\"ci-tree-view-alt\", '\\uee4e'),\n    TROPHY(\"ci-trophy\", '\\uee52'),\n    TROPHY_FILLED(\"ci-trophy-filled\", '\\uee51'),\n    TROPICAL_STORM(\"ci-tropical-storm\", '\\uee55'),\n    TROPICAL_STORM_MODEL_TRACKS(\"ci-tropical-storm-model-tracks\", '\\uee53'),\n    TROPICAL_STORM_TRACKS(\"ci-tropical-storm-tracks\", '\\uee54'),\n    TROPICAL_WARNING(\"ci-tropical-warning\", '\\uee56'),\n    TSV(\"ci-tsv\", '\\uee57'),\n    TWO_PERSON_LIFT(\"ci-two-person-lift\", '\\uee58'),\n    TXT(\"ci-txt\", '\\uee5a'),\n    TXT_REFERENCE(\"ci-txt-reference\", '\\uee59'),\n    TYPES(\"ci-types\", '\\uee5c'),\n    TYPE_PATTERN(\"ci-type-pattern\", '\\uee5b'),\n    T_ALT(\"ci-t-alt\", '\\uede8'),\n    U1(\"ci-u1\", '\\uee5d'),\n    U2(\"ci-u2\", '\\uee5e'),\n    U3(\"ci-u3\", '\\uee5f'),\n    UMBRELLA(\"ci-umbrella\", '\\uee60'),\n    UNDEFINED(\"ci-undefined\", '\\uee62'),\n    UNDEFINED_FILLED(\"ci-undefined-filled\", '\\uee61'),\n    UNDO(\"ci-undo\", '\\uee63'),\n    UNKNOWN(\"ci-unknown\", '\\uee65'),\n    UNKNOWN_FILLED(\"ci-unknown-filled\", '\\uee64'),\n    UNLINK(\"ci-unlink\", '\\uee66'),\n    UNLOCKED(\"ci-unlocked\", '\\uee67'),\n    UPGRADE(\"ci-upgrade\", '\\uee69'),\n    UPLOAD(\"ci-upload\", '\\uee6a'),\n    UP_TO_TOP(\"ci-up-to-top\", '\\uee68'),\n    USB(\"ci-usb\", '\\uee6b'),\n    USER(\"ci-user\", '\\uee81'),\n    USER_ACTIVITY(\"ci-user-activity\", '\\uee6c'),\n    USER_ADMIN(\"ci-user-admin\", '\\uee6d'),\n    USER_AVATAR(\"ci-user-avatar\", '\\uee70'),\n    USER_AVATAR_FILLED(\"ci-user-avatar-filled\", '\\uee6f'),\n    USER_AVATAR_FILLED_ALT(\"ci-user-avatar-filled-alt\", '\\uee6e'),\n    USER_CERTIFICATION(\"ci-user-certification\", '\\uee71'),\n    USER_DATA(\"ci-user-data\", '\\uee72'),\n    USER_FAVORITE(\"ci-user-favorite\", '\\uee75'),\n    USER_FAVORITE_ALT(\"ci-user-favorite-alt\", '\\uee74'),\n    USER_FAVORITE_ALT_FILLED(\"ci-user-favorite-alt-filled\", '\\uee73'),\n    USER_FILLED(\"ci-user-filled\", '\\uee76'),\n    USER_FOLLOW(\"ci-user-follow\", '\\uee77'),\n    USER_IDENTIFICATION(\"ci-user-identification\", '\\uee78'),\n    USER_MULTIPLE(\"ci-user-multiple\", '\\uee79'),\n    USER_ONLINE(\"ci-user-online\", '\\uee7a'),\n    USER_PROFILE(\"ci-user-profile\", '\\uee7c'),\n    USER_PROFILE_ALT(\"ci-user-profile-alt\", '\\uee7b'),\n    USER_ROLE(\"ci-user-role\", '\\uee7d'),\n    USER_SIMULATION(\"ci-user-simulation\", '\\uee7e'),\n    USER_SPEAKER(\"ci-user-speaker\", '\\uee7f'),\n    USER_X_RAY(\"ci-user-x-ray\", '\\uee80'),\n    UV_INDEX(\"ci-uv-index\", '\\uee84'),\n    UV_INDEX_ALT(\"ci-uv-index-alt\", '\\uee82'),\n    UV_INDEX_FILLED(\"ci-uv-index-filled\", '\\uee83'),\n    VAN(\"ci-van\", '\\uee85'),\n    VIDEO(\"ci-video\", '\\uee8b'),\n    VIDEO_ADD(\"ci-video-add\", '\\uee86'),\n    VIDEO_CHAT(\"ci-video-chat\", '\\uee87'),\n    VIDEO_FILLED(\"ci-video-filled\", '\\uee88'),\n    VIDEO_OFF(\"ci-video-off\", '\\uee8a'),\n    VIDEO_OFF_FILLED(\"ci-video-off-filled\", '\\uee89'),\n    VIEW(\"ci-view\", '\\uee92'),\n    VIEW_FILLED(\"ci-view-filled\", '\\uee8c'),\n    VIEW_MODE_1(\"ci-view-mode-1\", '\\uee8d'),\n    VIEW_MODE_2(\"ci-view-mode-2\", '\\uee8e'),\n    VIEW_NEXT(\"ci-view-next\", '\\uee8f'),\n    VIEW_OFF(\"ci-view-off\", '\\uee91'),\n    VIEW_OFF_FILLED(\"ci-view-off-filled\", '\\uee90'),\n    VIRTUAL_COLUMN(\"ci-virtual-column\", '\\uee94'),\n    VIRTUAL_COLUMN_KEY(\"ci-virtual-column-key\", '\\uee93'),\n    VIRTUAL_MACHINE(\"ci-virtual-machine\", '\\uee95'),\n    VIRTUAL_PRIVATE_CLOUD(\"ci-virtual-private-cloud\", '\\uee97'),\n    VIRTUAL_PRIVATE_CLOUD_ALT(\"ci-virtual-private-cloud-alt\", '\\uee96'),\n    VISUAL_RECOGNITION(\"ci-visual-recognition\", '\\uee98'),\n    VMDK_DISK(\"ci-vmdk-disk\", '\\uee99'),\n    VOICEMAIL(\"ci-voicemail\", '\\uee9a'),\n    VOLUME_DOWN(\"ci-volume-down\", '\\uee9c'),\n    VOLUME_DOWN_FILLED(\"ci-volume-down-filled\", '\\uee9b'),\n    VOLUME_MUTE(\"ci-volume-mute\", '\\uee9e'),\n    VOLUME_MUTE_FILLED(\"ci-volume-mute-filled\", '\\uee9d'),\n    VOLUME_UP(\"ci-volume-up\", '\\ueea0'),\n    VOLUME_UP_FILLED(\"ci-volume-up-filled\", '\\uee9f'),\n    VPN(\"ci-vpn\", '\\ueea1'),\n    WALLET(\"ci-wallet\", '\\ueea2'),\n    WARNING(\"ci-warning\", '\\ueeab'),\n    WARNING_ALT(\"ci-warning-alt\", '\\ueea6'),\n    WARNING_ALT_FILLED(\"ci-warning-alt-filled\", '\\ueea3'),\n    WARNING_ALT_INVERTED(\"ci-warning-alt-inverted\", '\\ueea5'),\n    WARNING_ALT_INVERTED_FILLED(\"ci-warning-alt-inverted-filled\", '\\ueea4'),\n    WARNING_FILLED(\"ci-warning-filled\", '\\ueea7'),\n    WARNING_OTHER(\"ci-warning-other\", '\\ueea8'),\n    WARNING_SQUARE(\"ci-warning-square\", '\\ueeaa'),\n    WARNING_SQUARE_FILLED(\"ci-warning-square-filled\", '\\ueea9'),\n    WATCH(\"ci-watch\", '\\ueeac'),\n    WATSON(\"ci-watson\", '\\ueeae'),\n    WATSON_MACHINE_LEARNING(\"ci-watson-machine-learning\", '\\ueead'),\n    WAVE_DIRECTION(\"ci-wave-direction\", '\\ueeaf'),\n    WAVE_HEIGHT(\"ci-wave-height\", '\\ueeb0'),\n    WAVE_PERIOD(\"ci-wave-period\", '\\ueeb1'),\n    WEATHER_FRONT_COLD(\"ci-weather-front-cold\", '\\ueeb2'),\n    WEATHER_FRONT_STATIONARY(\"ci-weather-front-stationary\", '\\ueeb3'),\n    WEATHER_FRONT_WARM(\"ci-weather-front-warm\", '\\ueeb4'),\n    WEATHER_STATION(\"ci-weather-station\", '\\ueeb5'),\n    WEBSHEET(\"ci-websheet\", '\\ueeb6'),\n    WHEAT(\"ci-wheat\", '\\ueeb7'),\n    WIFI(\"ci-wifi\", '\\ueeb9'),\n    WIFI_OFF(\"ci-wifi-off\", '\\ueeb8'),\n    WIKIS(\"ci-wikis\", '\\ueeba'),\n    WINDOW_AUTO(\"ci-window-auto\", '\\ueebd'),\n    WINDOW_BASE(\"ci-window-base\", '\\ueebe'),\n    WINDOW_OVERLAY(\"ci-window-overlay\", '\\ueebf'),\n    WINDY(\"ci-windy\", '\\ueecd'),\n    WINDY_DUST(\"ci-windy-dust\", '\\ueeca'),\n    WINDY_SNOW(\"ci-windy-snow\", '\\ueecb'),\n    WINDY_STRONG(\"ci-windy-strong\", '\\ueecc'),\n    WIND_GUSTS(\"ci-wind-gusts\", '\\ueebb'),\n    WIND_STREAM(\"ci-wind-stream\", '\\ueebc'),\n    WINTER_WARNING(\"ci-winter-warning\", '\\ueece'),\n    WINTRY_MIX(\"ci-wintry-mix\", '\\ueecf'),\n    WIRELESS_CHECKOUT(\"ci-wireless-checkout\", '\\ueed0'),\n    WMV(\"ci-wmv\", '\\ueed1'),\n    WORD_CLOUD(\"ci-word-cloud\", '\\ueed2'),\n    WORKSPACE(\"ci-workspace\", '\\ueed4'),\n    WORKSPACE_IMPORT(\"ci-workspace-import\", '\\ueed3'),\n    WORSHIP(\"ci-worship\", '\\ueed8'),\n    WORSHIP_CHRISTIAN(\"ci-worship-christian\", '\\ueed5'),\n    WORSHIP_JEWISH(\"ci-worship-jewish\", '\\ueed6'),\n    WORSHIP_MUSLIM(\"ci-worship-muslim\", '\\ueed7'),\n    X(\"ci-x\", '\\ueeda'),\n    XLS(\"ci-xls\", '\\ueedb'),\n    XML(\"ci-xml\", '\\ueedc'),\n    X_AXIS(\"ci-x-axis\", '\\ueed9'),\n    Y(\"ci-y\", '\\ueede'),\n    Y_AXIS(\"ci-y-axis\", '\\ueedd'),\n    Z(\"ci-z\", '\\ueee0'),\n    ZIP(\"ci-zip\", '\\ueee2'),\n    ZIP_REFERENCE(\"ci-zip-reference\", '\\ueee1'),\n    ZOOM_IN(\"ci-zoom-in\", '\\ueee3'),\n    ZOOM_OUT(\"ci-zoom-out\", '\\ueee4'),\n    ZOOM_PAN(\"ci-zoom-pan\", '\\ueee5'),\n    ZOOM_RESET(\"ci-zoom-reset\", '\\ueee6'),\n    Z_AXIS(\"ci-z-axis\", '\\ueedf');\n\n    public static CarbonIcons findByDescription(String description) {\n        for (CarbonIcons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    CarbonIcons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-carbonicons-pack/src/main/java/org/kordamp/ikonli/carbonicons/CarbonIconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.carbonicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class CarbonIconsIkonProvider implements IkonProvider<CarbonIcons> {\n    @Override\n    public Class<CarbonIcons> getIkon() {\n        return CarbonIcons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-carbonicons-pack/src/main/java/org/kordamp/ikonli/carbonicons/CarboniconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.carbonicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class CarboniconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/carbonicons/10.23.2/fonts/Carbon-Icons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"ci-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return CarbonIcons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Carbon-Icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-carbonicons-pack/src/main/resources/META-INF/resources/carbonicons/10.23.2/css/carbonicons.css",
    "content": "@font-face {\n  font-family: 'Carbon-Icons';\n  src:  url('../fonts/Carbon-Icons.eot?aobt14');\n  src:  url('../fonts/Carbon-Icons.eot?aobt14#iefix') format('embedded-opentype'),\n    url('../fonts/Carbon-Icons.ttf?aobt14') format('truetype'),\n    url('../fonts/Carbon-Icons.woff?aobt14') format('woff'),\n    url('../fonts/Carbon-Icons.svg?aobt14#Carbon-Icons') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"ci-\"], [class*=\" ci-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Carbon-Icons' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.ci-3d-cursor-alt:before {\n  content: \"\\e900\";\n}\n.ci-3d-cursor:before {\n  content: \"\\e901\";\n}\n.ci-3d-curve-auto-colon:before {\n  content: \"\\e902\";\n}\n.ci-3d-curve-auto-vessels:before {\n  content: \"\\e903\";\n}\n.ci-3d-curve-manual:before {\n  content: \"\\e904\";\n}\n.ci-3d-ica:before {\n  content: \"\\e905\";\n}\n.ci-3d-mpr-toggle:before {\n  content: \"\\e906\";\n}\n.ci-3d-print-mesh:before {\n  content: \"\\e907\";\n}\n.ci-3d-software:before {\n  content: \"\\e908\";\n}\n.ci-3rd-party-connected:before {\n  content: \"\\e909\";\n}\n.ci-4k-filled:before {\n  content: \"\\e90a\";\n}\n.ci-4k:before {\n  content: \"\\e90b\";\n}\n.ci-accessibility-alt:before {\n  content: \"\\e90c\";\n}\n.ci-accessibility-color-filled:before {\n  content: \"\\e90d\";\n}\n.ci-accessibility-color:before {\n  content: \"\\e90e\";\n}\n.ci-accessibility:before {\n  content: \"\\e90f\";\n}\n.ci-account:before {\n  content: \"\\e910\";\n}\n.ci-accumulation-ice:before {\n  content: \"\\e911\";\n}\n.ci-accumulation-precipitation:before {\n  content: \"\\e912\";\n}\n.ci-accumulation-rain:before {\n  content: \"\\e913\";\n}\n.ci-accumulation-snow:before {\n  content: \"\\e914\";\n}\n.ci-activity:before {\n  content: \"\\e915\";\n}\n.ci-add-alt:before {\n  content: \"\\e916\";\n}\n.ci-add-comment:before {\n  content: \"\\e917\";\n}\n.ci-add-filled:before {\n  content: \"\\e918\";\n}\n.ci-add:before {\n  content: \"\\e919\";\n}\n.ci-agriculture-analytics:before {\n  content: \"\\e91a\";\n}\n.ci-ai-results-high:before {\n  content: \"\\e91b\";\n}\n.ci-ai-results-low:before {\n  content: \"\\e91c\";\n}\n.ci-ai-results-medium:before {\n  content: \"\\e91d\";\n}\n.ci-ai-results-urgent:before {\n  content: \"\\e91e\";\n}\n.ci-ai-results-very-high:before {\n  content: \"\\e91f\";\n}\n.ci-ai-results:before {\n  content: \"\\e920\";\n}\n.ci-ai-status-complete:before {\n  content: \"\\e921\";\n}\n.ci-ai-status-failed:before {\n  content: \"\\e922\";\n}\n.ci-ai-status-in-progress:before {\n  content: \"\\e923\";\n}\n.ci-ai-status-queued .path1:before {\n  content: \"\\e924\";\n  color: rgb(0, 0, 0);\n}\n.ci-ai-status-queued .path2:before {\n  content: \"\\e925\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-ai-status-queued .path3:before {\n  content: \"\\e926\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-ai-status-queued .path4:before {\n  content: \"\\e927\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-ai-status-queued .path5:before {\n  content: \"\\e928\";\n  margin-left: -1em;\n  color: rgb(39, 36, 37);\n}\n.ci-ai-status-rejected:before {\n  content: \"\\e929\";\n}\n.ci-ai-status:before {\n  content: \"\\e92a\";\n}\n.ci-airline-digital-gate:before {\n  content: \"\\e92b\";\n}\n.ci-airline-manage-gates:before {\n  content: \"\\e92c\";\n}\n.ci-airline-passenger-care:before {\n  content: \"\\e92d\";\n}\n.ci-airline-rapid-board:before {\n  content: \"\\e92e\";\n}\n.ci-airport-01:before {\n  content: \"\\e92f\";\n}\n.ci-airport-02:before {\n  content: \"\\e930\";\n}\n.ci-airport-location:before {\n  content: \"\\e931\";\n}\n.ci-alarm-add:before {\n  content: \"\\e932\";\n}\n.ci-alarm-subtract:before {\n  content: \"\\e933\";\n}\n.ci-alarm:before {\n  content: \"\\e934\";\n}\n.ci-align-box-bottom-center:before {\n  content: \"\\e935\";\n}\n.ci-align-box-bottom-left:before {\n  content: \"\\e936\";\n}\n.ci-align-box-bottom-right:before {\n  content: \"\\e937\";\n}\n.ci-align-box-middle-center:before {\n  content: \"\\e938\";\n}\n.ci-align-box-middle-left:before {\n  content: \"\\e939\";\n}\n.ci-align-box-middle-right:before {\n  content: \"\\e93a\";\n}\n.ci-align-box-top-center:before {\n  content: \"\\e93b\";\n}\n.ci-align-box-top-left:before {\n  content: \"\\e93c\";\n}\n.ci-align-box-top-right:before {\n  content: \"\\e93d\";\n}\n.ci-align-horizontal-center:before {\n  content: \"\\e93e\";\n}\n.ci-align-horizontal-left:before {\n  content: \"\\e93f\";\n}\n.ci-align-horizontal-right:before {\n  content: \"\\e940\";\n}\n.ci-align-vertical-bottom:before {\n  content: \"\\e941\";\n}\n.ci-align-vertical-center:before {\n  content: \"\\e942\";\n}\n.ci-align-vertical-top:before {\n  content: \"\\e943\";\n}\n.ci-analytics-reference:before {\n  content: \"\\e944\";\n}\n.ci-analytics:before {\n  content: \"\\e945\";\n}\n.ci-angle:before {\n  content: \"\\e946\";\n}\n.ci-annotation-visibility:before {\n  content: \"\\e947\";\n}\n.ci-aperture:before {\n  content: \"\\e948\";\n}\n.ci-api-1:before {\n  content: \"\\e949\";\n}\n.ci-api:before {\n  content: \"\\e94a\";\n}\n.ci-app-connectivity:before {\n  content: \"\\e94b\";\n}\n.ci-app-switcher:before {\n  content: \"\\e94c\";\n}\n.ci-app:before {\n  content: \"\\e94d\";\n}\n.ci-apple:before {\n  content: \"\\e94e\";\n}\n.ci-application:before {\n  content: \"\\e94f\";\n}\n.ci-apps:before {\n  content: \"\\e950\";\n}\n.ci-archive:before {\n  content: \"\\e951\";\n}\n.ci-area-custom:before {\n  content: \"\\e952\";\n}\n.ci-area:before {\n  content: \"\\e953\";\n}\n.ci-arrival:before {\n  content: \"\\e954\";\n}\n.ci-arrow-annotation:before {\n  content: \"\\e955\";\n}\n.ci-arrow-down-left:before {\n  content: \"\\e956\";\n}\n.ci-arrow-down-right:before {\n  content: \"\\e957\";\n}\n.ci-arrow-down:before {\n  content: \"\\e958\";\n}\n.ci-arrow-left:before {\n  content: \"\\e959\";\n}\n.ci-arrow-right:before {\n  content: \"\\e95a\";\n}\n.ci-arrow-shift-down:before {\n  content: \"\\e95b\";\n}\n.ci-arrow-up-left:before {\n  content: \"\\e95c\";\n}\n.ci-arrow-up-right:before {\n  content: \"\\e95d\";\n}\n.ci-arrow-up:before {\n  content: \"\\e95e\";\n}\n.ci-arrows-horizontal:before {\n  content: \"\\e95f\";\n}\n.ci-arrows-vertical:before {\n  content: \"\\e960\";\n}\n.ci-arrows:before {\n  content: \"\\e961\";\n}\n.ci-asleep-filled:before {\n  content: \"\\e962\";\n}\n.ci-asleep:before {\n  content: \"\\e963\";\n}\n.ci-asset:before {\n  content: \"\\e964\";\n}\n.ci-at:before {\n  content: \"\\e965\";\n}\n.ci-attachment:before {\n  content: \"\\e966\";\n}\n.ci-audio-console:before {\n  content: \"\\e967\";\n}\n.ci-augmented-reality:before {\n  content: \"\\e968\";\n}\n.ci-auto-scroll:before {\n  content: \"\\e969\";\n}\n.ci-automatic:before {\n  content: \"\\e96a\";\n}\n.ci-awake:before {\n  content: \"\\e96b\";\n}\n.ci-back-to-top:before {\n  content: \"\\e96c\";\n}\n.ci-badge:before {\n  content: \"\\e96d\";\n}\n.ci-baggage-claim:before {\n  content: \"\\e96e\";\n}\n.ci-bar:before {\n  content: \"\\e96f\";\n}\n.ci-barrier:before {\n  content: \"\\e970\";\n}\n.ci-basketball:before {\n  content: \"\\e971\";\n}\n.ci-bat:before {\n  content: \"\\e972\";\n}\n.ci-battery-charging:before {\n  content: \"\\e973\";\n}\n.ci-battery-empty:before {\n  content: \"\\e974\";\n}\n.ci-battery-full:before {\n  content: \"\\e975\";\n}\n.ci-battery-half:before {\n  content: \"\\e976\";\n}\n.ci-battery-low:before {\n  content: \"\\e977\";\n}\n.ci-battery-quarter:before {\n  content: \"\\e978\";\n}\n.ci-bee-bat:before {\n  content: \"\\e979\";\n}\n.ci-bee:before {\n  content: \"\\e97a\";\n}\n.ci-bicycle:before {\n  content: \"\\e97b\";\n}\n.ci-binoculars:before {\n  content: \"\\e97c\";\n}\n.ci-bloch-sphere:before {\n  content: \"\\e97d\";\n}\n.ci-blockchain:before {\n  content: \"\\e97e\";\n}\n.ci-blog:before {\n  content: \"\\e97f\";\n}\n.ci-bluetooth-off:before {\n  content: \"\\e980\";\n}\n.ci-bluetooth:before {\n  content: \"\\e981\";\n}\n.ci-book:before {\n  content: \"\\e982\";\n}\n.ci-bookmark-filled:before {\n  content: \"\\e983\";\n}\n.ci-bookmark:before {\n  content: \"\\e984\";\n}\n.ci-boolean:before {\n  content: \"\\e985\";\n}\n.ci-border-bottom:before {\n  content: \"\\e986\";\n}\n.ci-border-full:before {\n  content: \"\\e987\";\n}\n.ci-border-left:before {\n  content: \"\\e988\";\n}\n.ci-border-none:before {\n  content: \"\\e989\";\n}\n.ci-border-right:before {\n  content: \"\\e98a\";\n}\n.ci-border-top:before {\n  content: \"\\e98b\";\n}\n.ci-bot:before {\n  content: \"\\e98c\";\n}\n.ci-box-plot:before {\n  content: \"\\e98d\";\n}\n.ci-box:before {\n  content: \"\\e98e\";\n}\n.ci-branch:before {\n  content: \"\\e98f\";\n}\n.ci-brightness-contrast:before {\n  content: \"\\e990\";\n}\n.ci-bring-to-front:before {\n  content: \"\\e991\";\n}\n.ci-brush-freehand:before {\n  content: \"\\e992\";\n}\n.ci-brush-polygon:before {\n  content: \"\\e993\";\n}\n.ci-building-insights-1:before {\n  content: \"\\e994\";\n}\n.ci-building-insights-2:before {\n  content: \"\\e995\";\n}\n.ci-building-insights-3:before {\n  content: \"\\e996\";\n}\n.ci-building:before {\n  content: \"\\e997\";\n}\n.ci-bullhorn:before {\n  content: \"\\e998\";\n}\n.ci-buoy:before {\n  content: \"\\e999\";\n}\n.ci-bus:before {\n  content: \"\\e99a\";\n}\n.ci-cabin-care-alert:before {\n  content: \"\\e99b\";\n}\n.ci-cabin-care-alt:before {\n  content: \"\\e99c\";\n}\n.ci-cabin-care:before {\n  content: \"\\e99d\";\n}\n.ci-cad:before {\n  content: \"\\e99e\";\n}\n.ci-cafe:before {\n  content: \"\\e99f\";\n}\n.ci-calculator-check:before {\n  content: \"\\e9a0\";\n}\n.ci-calculator:before {\n  content: \"\\e9a1\";\n}\n.ci-calendar-heat-map:before {\n  content: \"\\e9a2\";\n}\n.ci-calendar-settings:before {\n  content: \"\\e9a3\";\n}\n.ci-calendar-tools:before {\n  content: \"\\e9a4\";\n}\n.ci-calendar:before {\n  content: \"\\e9a5\";\n}\n.ci-calibrate:before {\n  content: \"\\e9a6\";\n}\n.ci-camera-action:before {\n  content: \"\\e9a7\";\n}\n.ci-camera:before {\n  content: \"\\e9a8\";\n}\n.ci-campsite:before {\n  content: \"\\e9a9\";\n}\n.ci-car-front:before {\n  content: \"\\e9aa\";\n}\n.ci-car:before {\n  content: \"\\e9ab\";\n}\n.ci-carbon:before {\n  content: \"\\e9ac\";\n}\n.ci-caret-down:before {\n  content: \"\\e9ad\";\n}\n.ci-caret-left:before {\n  content: \"\\e9ae\";\n}\n.ci-caret-right:before {\n  content: \"\\e9af\";\n}\n.ci-caret-sort-down:before {\n  content: \"\\e9b0\";\n}\n.ci-caret-sort-up:before {\n  content: \"\\e9b1\";\n}\n.ci-caret-sort:before {\n  content: \"\\e9b2\";\n}\n.ci-caret-up:before {\n  content: \"\\e9b3\";\n}\n.ci-carousel-horizontal:before {\n  content: \"\\e9b4\";\n}\n.ci-carousel-vertical:before {\n  content: \"\\e9b5\";\n}\n.ci-catalog:before {\n  content: \"\\e9b6\";\n}\n.ci-categories:before {\n  content: \"\\e9b7\";\n}\n.ci-category-add:before {\n  content: \"\\e9b8\";\n}\n.ci-category-and:before {\n  content: \"\\e9b9\";\n}\n.ci-category-new-each:before {\n  content: \"\\e9ba\";\n}\n.ci-category-new:before {\n  content: \"\\e9bb\";\n}\n.ci-category:before {\n  content: \"\\e9bc\";\n}\n.ci-ccx:before {\n  content: \"\\e9bd\";\n}\n.ci-cd-archive:before {\n  content: \"\\e9be\";\n}\n.ci-cd-create-archive:before {\n  content: \"\\e9bf\";\n}\n.ci-cd-create-exchange:before {\n  content: \"\\e9c0\";\n}\n.ci-cda:before {\n  content: \"\\e9c1\";\n}\n.ci-center-circle:before {\n  content: \"\\e9c2\";\n}\n.ci-center-square:before {\n  content: \"\\e9c3\";\n}\n.ci-center-to-fit:before {\n  content: \"\\e9c4\";\n}\n.ci-certificate-check:before {\n  content: \"\\e9c5\";\n}\n.ci-certificate:before {\n  content: \"\\e9c6\";\n}\n.ci-change-catalog:before {\n  content: \"\\e9c7\";\n}\n.ci-character-patterns:before {\n  content: \"\\e9c8\";\n}\n.ci-charging-station-filled:before {\n  content: \"\\e9c9\";\n}\n.ci-charging-station:before {\n  content: \"\\e9ca\";\n}\n.ci-chart-3d:before {\n  content: \"\\e9cb\";\n}\n.ci-chart-area-smooth:before {\n  content: \"\\e9cc\";\n}\n.ci-chart-area-stepper:before {\n  content: \"\\e9cd\";\n}\n.ci-chart-area:before {\n  content: \"\\e9ce\";\n}\n.ci-chart-average:before {\n  content: \"\\e9cf\";\n}\n.ci-chart-bar-floating:before {\n  content: \"\\e9d0\";\n}\n.ci-chart-bar-overlay:before {\n  content: \"\\e9d1\";\n}\n.ci-chart-bar-stacked:before {\n  content: \"\\e9d2\";\n}\n.ci-chart-bar-target:before {\n  content: \"\\e9d3\";\n}\n.ci-chart-bar:before {\n  content: \"\\e9d4\";\n}\n.ci-chart-bubble:before {\n  content: \"\\e9d5\";\n}\n.ci-chart-bullet:before {\n  content: \"\\e9d6\";\n}\n.ci-chart-candlestick:before {\n  content: \"\\e9d7\";\n}\n.ci-chart-cluster-bar:before {\n  content: \"\\e9d8\";\n}\n.ci-chart-column-floating:before {\n  content: \"\\e9d9\";\n}\n.ci-chart-column-target:before {\n  content: \"\\e9da\";\n}\n.ci-chart-column:before {\n  content: \"\\e9db\";\n}\n.ci-chart-combo-stacked:before {\n  content: \"\\e9dc\";\n}\n.ci-chart-combo:before {\n  content: \"\\e9dd\";\n}\n.ci-chart-custom:before {\n  content: \"\\e9de\";\n}\n.ci-chart-error-bar-alt:before {\n  content: \"\\e9df\";\n}\n.ci-chart-error-bar:before {\n  content: \"\\e9e0\";\n}\n.ci-chart-evaluation:before {\n  content: \"\\e9e1\";\n}\n.ci-chart-high-low:before {\n  content: \"\\e9e2\";\n}\n.ci-chart-histogram:before {\n  content: \"\\e9e3\";\n}\n.ci-chart-line-data:before {\n  content: \"\\e9e4\";\n}\n.ci-chart-line-smooth:before {\n  content: \"\\e9e5\";\n}\n.ci-chart-line:before {\n  content: \"\\e9e6\";\n}\n.ci-chart-marimekko:before {\n  content: \"\\e9e7\";\n}\n.ci-chart-maximum:before {\n  content: \"\\e9e8\";\n}\n.ci-chart-minimum:before {\n  content: \"\\e9e9\";\n}\n.ci-chart-multi-line:before {\n  content: \"\\e9ea\";\n}\n.ci-chart-multitype:before {\n  content: \"\\e9eb\";\n}\n.ci-chart-network:before {\n  content: \"\\e9ec\";\n}\n.ci-chart-parallel:before {\n  content: \"\\e9ed\";\n}\n.ci-chart-pie:before {\n  content: \"\\e9ee\";\n}\n.ci-chart-point:before {\n  content: \"\\e9ef\";\n}\n.ci-chart-population:before {\n  content: \"\\e9f0\";\n}\n.ci-chart-radar:before {\n  content: \"\\e9f1\";\n}\n.ci-chart-radial:before {\n  content: \"\\e9f2\";\n}\n.ci-chart-relationship:before {\n  content: \"\\e9f3\";\n}\n.ci-chart-ring:before {\n  content: \"\\e9f4\";\n}\n.ci-chart-river:before {\n  content: \"\\e9f5\";\n}\n.ci-chart-rose:before {\n  content: \"\\e9f6\";\n}\n.ci-chart-scatter:before {\n  content: \"\\e9f7\";\n}\n.ci-chart-stacked:before {\n  content: \"\\e9f8\";\n}\n.ci-chart-stepper:before {\n  content: \"\\e9f9\";\n}\n.ci-chart-sunburst:before {\n  content: \"\\e9fa\";\n}\n.ci-chart-t-sne:before {\n  content: \"\\e9fb\";\n}\n.ci-chart-treemap:before {\n  content: \"\\e9fc\";\n}\n.ci-chart-venn-diagram:before {\n  content: \"\\e9fd\";\n}\n.ci-chart-waterfall:before {\n  content: \"\\e9fe\";\n}\n.ci-chat-bot:before {\n  content: \"\\e9ff\";\n}\n.ci-chat:before {\n  content: \"\\ea00\";\n}\n.ci-checkbox-checked-filled:before {\n  content: \"\\ea01\";\n}\n.ci-checkbox-checked:before {\n  content: \"\\ea02\";\n}\n.ci-checkbox-indeterminate-filled:before {\n  content: \"\\ea03\";\n}\n.ci-checkbox-indeterminate:before {\n  content: \"\\ea04\";\n}\n.ci-checkbox-undeterminate-filled:before {\n  content: \"\\ea05\";\n}\n.ci-checkbox-undeterminate:before {\n  content: \"\\ea06\";\n}\n.ci-checkbox:before {\n  content: \"\\ea07\";\n}\n.ci-checkmark-filled-error:before {\n  content: \"\\ea08\";\n}\n.ci-checkmark-filled-warning:before {\n  content: \"\\ea09\";\n}\n.ci-checkmark-filled:before {\n  content: \"\\ea0a\";\n}\n.ci-checkmark-outline-error:before {\n  content: \"\\ea0b\";\n}\n.ci-checkmark-outline-warning:before {\n  content: \"\\ea0c\";\n}\n.ci-checkmark-outline:before {\n  content: \"\\ea0d\";\n}\n.ci-checkmark:before {\n  content: \"\\ea0e\";\n}\n.ci-chemistry-reference:before {\n  content: \"\\ea0f\";\n}\n.ci-chemistry:before {\n  content: \"\\ea10\";\n}\n.ci-chevron-down:before {\n  content: \"\\ea11\";\n}\n.ci-chevron-left:before {\n  content: \"\\ea12\";\n}\n.ci-chevron-mini:before {\n  content: \"\\ea13\";\n}\n.ci-chevron-right:before {\n  content: \"\\ea14\";\n}\n.ci-chevron-sort-down:before {\n  content: \"\\ea15\";\n}\n.ci-chevron-sort-up:before {\n  content: \"\\ea16\";\n}\n.ci-chevron-sort:before {\n  content: \"\\ea17\";\n}\n.ci-chevron-up:before {\n  content: \"\\ea18\";\n}\n.ci-chip:before {\n  content: \"\\ea19\";\n}\n.ci-choices:before {\n  content: \"\\ea1a\";\n}\n.ci-circle-dash:before {\n  content: \"\\ea1b\";\n}\n.ci-circle-filled:before {\n  content: \"\\ea1c\";\n}\n.ci-circle-measurement:before {\n  content: \"\\ea1d\";\n}\n.ci-circle-packing:before {\n  content: \"\\ea1e\";\n}\n.ci-circuit-composer:before {\n  content: \"\\ea1f\";\n}\n.ci-classification:before {\n  content: \"\\ea20\";\n}\n.ci-classifier-language:before {\n  content: \"\\ea21\";\n}\n.ci-clean:before {\n  content: \"\\ea22\";\n}\n.ci-close-filled:before {\n  content: \"\\ea23\";\n}\n.ci-close-outline:before {\n  content: \"\\ea24\";\n}\n.ci-close:before {\n  content: \"\\ea25\";\n}\n.ci-closed-caption-alt:before {\n  content: \"\\ea26\";\n}\n.ci-closed-caption-filled:before {\n  content: \"\\ea27\";\n}\n.ci-closed-caption:before {\n  content: \"\\ea28\";\n}\n.ci-cloud-app:before {\n  content: \"\\ea29\";\n}\n.ci-cloud-ceiling:before {\n  content: \"\\ea2a\";\n}\n.ci-cloud-data-ops:before {\n  content: \"\\ea2b\";\n}\n.ci-cloud-download:before {\n  content: \"\\ea2c\";\n}\n.ci-cloud-foundry-1:before {\n  content: \"\\ea2d\";\n}\n.ci-cloud-foundry-2:before {\n  content: \"\\ea2e\";\n}\n.ci-cloud-lightning:before {\n  content: \"\\ea2f\";\n}\n.ci-cloud-rain:before {\n  content: \"\\ea30\";\n}\n.ci-cloud-satellite .path1:before {\n  content: \"\\ea31\";\n  color: rgb(28, 28, 28);\n}\n.ci-cloud-satellite .path2:before {\n  content: \"\\ea32\";\n  margin-left: -1em;\n  color: rgb(28, 28, 28);\n}\n.ci-cloud-satellite .path3:before {\n  content: \"\\ea33\";\n  margin-left: -1em;\n  color: rgb(28, 28, 28);\n}\n.ci-cloud-satellite .path4:before {\n  content: \"\\ea34\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-cloud-snow:before {\n  content: \"\\ea35\";\n}\n.ci-cloud-upload:before {\n  content: \"\\ea36\";\n}\n.ci-cloud:before {\n  content: \"\\ea37\";\n}\n.ci-cloudy:before {\n  content: \"\\ea38\";\n}\n.ci-cobb-angle:before {\n  content: \"\\ea39\";\n}\n.ci-code-reference:before {\n  content: \"\\ea3a\";\n}\n.ci-code:before {\n  content: \"\\ea3b\";\n}\n.ci-cognitive:before {\n  content: \"\\ea3c\";\n}\n.ci-collaborate:before {\n  content: \"\\ea3d\";\n}\n.ci-collapse-all:before {\n  content: \"\\ea3e\";\n}\n.ci-collapse-categories:before {\n  content: \"\\ea3f\";\n}\n.ci-color-palette:before {\n  content: \"\\ea40\";\n}\n.ci-color-switch:before {\n  content: \"\\ea41\";\n}\n.ci-column-delete:before {\n  content: \"\\ea42\";\n}\n.ci-column-insert:before {\n  content: \"\\ea43\";\n}\n.ci-column:before {\n  content: \"\\ea44\";\n}\n.ci-compare:before {\n  content: \"\\ea45\";\n}\n.ci-compass:before {\n  content: \"\\ea46\";\n}\n.ci-composer-edit:before {\n  content: \"\\ea47\";\n}\n.ci-concept:before {\n  content: \"\\ea48\";\n}\n.ci-connect:before {\n  content: \"\\ea49\";\n}\n.ci-connection-signal:before {\n  content: \"\\ea4a\";\n}\n.ci-construction:before {\n  content: \"\\ea4b\";\n}\n.ci-container-software:before {\n  content: \"\\ea4c\";\n}\n.ci-content-view:before {\n  content: \"\\ea4d\";\n}\n.ci-contour-finding:before {\n  content: \"\\ea4e\";\n}\n.ci-contrast:before {\n  content: \"\\ea4f\";\n}\n.ci-copy-file:before {\n  content: \"\\ea50\";\n}\n.ci-copy-link:before {\n  content: \"\\ea51\";\n}\n.ci-copy:before {\n  content: \"\\ea52\";\n}\n.ci-corn:before {\n  content: \"\\ea53\";\n}\n.ci-corner:before {\n  content: \"\\ea54\";\n}\n.ci-coronavirus:before {\n  content: \"\\ea55\";\n}\n.ci-course:before {\n  content: \"\\ea56\";\n}\n.ci-covariate:before {\n  content: \"\\ea57\";\n}\n.ci-credentials:before {\n  content: \"\\ea58\";\n}\n.ci-crop-growth:before {\n  content: \"\\ea59\";\n}\n.ci-crop-health:before {\n  content: \"\\ea5a\";\n}\n.ci-crop:before {\n  content: \"\\ea5b\";\n}\n.ci-cross-reference:before {\n  content: \"\\ea5c\";\n}\n.ci-cross-tab:before {\n  content: \"\\ea5d\";\n}\n.ci-crossroads:before {\n  content: \"\\ea5e\";\n}\n.ci-crowd-report-filled:before {\n  content: \"\\ea5f\";\n}\n.ci-crowd-report:before {\n  content: \"\\ea60\";\n}\n.ci-csv:before {\n  content: \"\\ea61\";\n}\n.ci-cu1:before {\n  content: \"\\ea62\";\n}\n.ci-cu3:before {\n  content: \"\\ea63\";\n}\n.ci-cube-view:before {\n  content: \"\\ea64\";\n}\n.ci-currency-baht:before {\n  content: \"\\ea65\";\n}\n.ci-currency-dollar:before {\n  content: \"\\ea66\";\n}\n.ci-currency-euro:before {\n  content: \"\\ea67\";\n}\n.ci-currency-lira:before {\n  content: \"\\ea68\";\n}\n.ci-currency-pound:before {\n  content: \"\\ea69\";\n}\n.ci-currency-rupee:before {\n  content: \"\\ea6a\";\n}\n.ci-currency-shekel:before {\n  content: \"\\ea6b\";\n}\n.ci-currency-won:before {\n  content: \"\\ea6c\";\n}\n.ci-currency-yen:before {\n  content: \"\\ea6d\";\n}\n.ci-cursor-1:before {\n  content: \"\\ea6e\";\n}\n.ci-cursor-2:before {\n  content: \"\\ea6f\";\n}\n.ci-cut-in-half:before {\n  content: \"\\ea70\";\n}\n.ci-cut:before {\n  content: \"\\ea71\";\n}\n.ci-cy:before {\n  content: \"\\ea72\";\n}\n.ci-cyclist:before {\n  content: \"\\ea73\";\n}\n.ci-cz:before {\n  content: \"\\ea74\";\n}\n.ci-dashboard-reference:before {\n  content: \"\\ea75\";\n}\n.ci-dashboard:before {\n  content: \"\\ea76\";\n}\n.ci-data-1:before {\n  content: \"\\ea77\";\n}\n.ci-data-2:before {\n  content: \"\\ea78\";\n}\n.ci-data-base-alt:before {\n  content: \"\\ea79\";\n}\n.ci-data-base:before {\n  content: \"\\ea7a\";\n}\n.ci-data-check:before {\n  content: \"\\ea7b\";\n}\n.ci-data-class:before {\n  content: \"\\ea7c\";\n}\n.ci-data-collection:before {\n  content: \"\\ea7d\";\n}\n.ci-data-connected:before {\n  content: \"\\ea7e\";\n}\n.ci-data-error:before {\n  content: \"\\ea7f\";\n}\n.ci-data-player:before {\n  content: \"\\ea80\";\n}\n.ci-data-reference:before {\n  content: \"\\ea81\";\n}\n.ci-data-refinery-reference:before {\n  content: \"\\ea82\";\n}\n.ci-data-refinery:before {\n  content: \"\\ea83\";\n}\n.ci-data-set:before {\n  content: \"\\ea84\";\n}\n.ci-data-share:before {\n  content: \"\\ea85\";\n}\n.ci-data-structured:before {\n  content: \"\\ea86\";\n}\n.ci-data-table-reference:before {\n  content: \"\\ea87\";\n}\n.ci-data-table:before {\n  content: \"\\ea88\";\n}\n.ci-data-unstructured:before {\n  content: \"\\ea89\";\n}\n.ci-data-vis-1:before {\n  content: \"\\ea8a\";\n}\n.ci-data-vis-2:before {\n  content: \"\\ea8b\";\n}\n.ci-data-vis-3:before {\n  content: \"\\ea8c\";\n}\n.ci-data-vis-4:before {\n  content: \"\\ea8d\";\n}\n.ci-datastore:before {\n  content: \"\\ea8e\";\n}\n.ci-debug:before {\n  content: \"\\ea8f\";\n}\n.ci-decision-tree:before {\n  content: \"\\ea90\";\n}\n.ci-delete:before {\n  content: \"\\ea91\";\n}\n.ci-delivery-truck:before {\n  content: \"\\ea92\";\n}\n.ci-denominate:before {\n  content: \"\\ea93\";\n}\n.ci-departure:before {\n  content: \"\\ea94\";\n}\n.ci-deploy-rules:before {\n  content: \"\\ea95\";\n}\n.ci-deploy:before {\n  content: \"\\ea96\";\n}\n.ci-deployment-pattern:before {\n  content: \"\\ea97\";\n}\n.ci-deployment-policy:before {\n  content: \"\\ea98\";\n}\n.ci-development:before {\n  content: \"\\ea99\";\n}\n.ci-devices:before {\n  content: \"\\ea9a\";\n}\n.ci-dew-point-filled:before {\n  content: \"\\ea9b\";\n}\n.ci-dew-point:before {\n  content: \"\\ea9c\";\n}\n.ci-diagram-reference:before {\n  content: \"\\ea9d\";\n}\n.ci-diagram:before {\n  content: \"\\ea9e\";\n}\n.ci-dicom-6000:before {\n  content: \"\\ea9f\";\n}\n.ci-dicom-overlay:before {\n  content: \"\\eaa0\";\n}\n.ci-direction-bear-right-01-filled:before {\n  content: \"\\eaa1\";\n}\n.ci-direction-bear-right-01:before {\n  content: \"\\eaa2\";\n}\n.ci-direction-bear-right-02-filled:before {\n  content: \"\\eaa3\";\n}\n.ci-direction-bear-right-02:before {\n  content: \"\\eaa4\";\n}\n.ci-direction-curve-filled:before {\n  content: \"\\eaa5\";\n}\n.ci-direction-curve:before {\n  content: \"\\eaa6\";\n}\n.ci-direction-merge-filled:before {\n  content: \"\\eaa7\";\n}\n.ci-direction-merge:before {\n  content: \"\\eaa8\";\n}\n.ci-direction-right-01-filled:before {\n  content: \"\\eaa9\";\n}\n.ci-direction-right-01:before {\n  content: \"\\eaaa\";\n}\n.ci-direction-right-02-filled:before {\n  content: \"\\eaab\";\n}\n.ci-direction-right-02:before {\n  content: \"\\eaac\";\n}\n.ci-direction-rotary-first-right-filled:before {\n  content: \"\\eaad\";\n}\n.ci-direction-rotary-first-right:before {\n  content: \"\\eaae\";\n}\n.ci-direction-rotary-right-filled:before {\n  content: \"\\eaaf\";\n}\n.ci-direction-rotary-right:before {\n  content: \"\\eab0\";\n}\n.ci-direction-rotary-straight-filled:before {\n  content: \"\\eab1\";\n}\n.ci-direction-rotary-straight:before {\n  content: \"\\eab2\";\n}\n.ci-direction-sharp-turn-filled:before {\n  content: \"\\eab3\";\n}\n.ci-direction-sharp-turn:before {\n  content: \"\\eab4\";\n}\n.ci-direction-straight-filled:before {\n  content: \"\\eab5\";\n}\n.ci-direction-straight-right-filled:before {\n  content: \"\\eab6\";\n}\n.ci-direction-straight-right:before {\n  content: \"\\eab7\";\n}\n.ci-direction-straight:before {\n  content: \"\\eab8\";\n}\n.ci-direction-u-turn-filled:before {\n  content: \"\\eab9\";\n}\n.ci-direction-u-turn:before {\n  content: \"\\eaba\";\n}\n.ci-distribute-horizontal-center:before {\n  content: \"\\eabb\";\n}\n.ci-distribute-horizontal-left:before {\n  content: \"\\eabc\";\n}\n.ci-distribute-horizontal-right:before {\n  content: \"\\eabd\";\n}\n.ci-distribute-vertical-bottom:before {\n  content: \"\\eabe\";\n}\n.ci-distribute-vertical-center:before {\n  content: \"\\eabf\";\n}\n.ci-distribute-vertical-top:before {\n  content: \"\\eac0\";\n}\n.ci-dna:before {\n  content: \"\\eac1\";\n}\n.ci-doc:before {\n  content: \"\\eac2\";\n}\n.ci-document-add:before {\n  content: \"\\eac3\";\n}\n.ci-document-blank:before {\n  content: \"\\eac4\";\n}\n.ci-document-download:before {\n  content: \"\\eac5\";\n}\n.ci-document-export:before {\n  content: \"\\eac6\";\n}\n.ci-document-import:before {\n  content: \"\\eac7\";\n}\n.ci-document-pdf:before {\n  content: \"\\eac8\";\n}\n.ci-document-sentiment:before {\n  content: \"\\eac9\";\n}\n.ci-document-subtract:before {\n  content: \"\\eaca\";\n}\n.ci-document-tasks:before {\n  content: \"\\eacb\";\n}\n.ci-document-unknown:before {\n  content: \"\\eacc\";\n}\n.ci-document-view:before {\n  content: \"\\eacd\";\n}\n.ci-document-word-processor-reference:before {\n  content: \"\\eace\";\n}\n.ci-document-word-processor:before {\n  content: \"\\eacf\";\n}\n.ci-document:before {\n  content: \"\\ead0\";\n}\n.ci-dot-mark:before {\n  content: \"\\ead1\";\n}\n.ci-double-integer:before {\n  content: \"\\ead2\";\n}\n.ci-down-to-bottom:before {\n  content: \"\\ead3\";\n}\n.ci-download-study:before {\n  content: \"\\ead4\";\n}\n.ci-download:before {\n  content: \"\\ead5\";\n}\n.ci-drag-horizontal:before {\n  content: \"\\ead6\";\n}\n.ci-drag-vertical:before {\n  content: \"\\ead7\";\n}\n.ci-draggable:before {\n  content: \"\\ead8\";\n}\n.ci-draw:before {\n  content: \"\\ead9\";\n}\n.ci-driver-analysis:before {\n  content: \"\\eada\";\n}\n.ci-drop-photo-filled:before {\n  content: \"\\eadb\";\n}\n.ci-drop-photo:before {\n  content: \"\\eadc\";\n}\n.ci-drought:before {\n  content: \"\\eadd\";\n}\n.ci-dvr:before {\n  content: \"\\eade\";\n}\n.ci-earth-americas-filled:before {\n  content: \"\\eadf\";\n}\n.ci-earth-americas:before {\n  content: \"\\eae0\";\n}\n.ci-earth-europe-africa-filled:before {\n  content: \"\\eae1\";\n}\n.ci-earth-europe-africa:before {\n  content: \"\\eae2\";\n}\n.ci-earth-filled:before {\n  content: \"\\eae3\";\n}\n.ci-earth-southeast-asia-filled:before {\n  content: \"\\eae4\";\n}\n.ci-earth-southeast-asia:before {\n  content: \"\\eae5\";\n}\n.ci-earth:before {\n  content: \"\\eae6\";\n}\n.ci-earthquake:before {\n  content: \"\\eae7\";\n}\n.ci-edge-cluster:before {\n  content: \"\\eae8\";\n}\n.ci-edge-device:before {\n  content: \"\\eae9\";\n}\n.ci-edge-enhancement-01:before {\n  content: \"\\eaea\";\n}\n.ci-edge-enhancement-02:before {\n  content: \"\\eaeb\";\n}\n.ci-edge-enhancement-03:before {\n  content: \"\\eaec\";\n}\n.ci-edge-enhancement:before {\n  content: \"\\eaed\";\n}\n.ci-edge-node:before {\n  content: \"\\eaee\";\n}\n.ci-edge-service:before {\n  content: \"\\eaef\";\n}\n.ci-edit-filter:before {\n  content: \"\\eaf0\";\n}\n.ci-edit-off:before {\n  content: \"\\eaf1\";\n}\n.ci-edit:before {\n  content: \"\\eaf2\";\n}\n.ci-edt-loop:before {\n  content: \"\\eaf3\";\n}\n.ci-education:before {\n  content: \"\\eaf4\";\n}\n.ci-email-new:before {\n  content: \"\\eaf5\";\n}\n.ci-email:before {\n  content: \"\\eaf6\";\n}\n.ci-enterprise:before {\n  content: \"\\eaf7\";\n}\n.ci-erase-3d:before {\n  content: \"\\eaf8\";\n}\n.ci-erase:before {\n  content: \"\\eaf9\";\n}\n.ci-error-filled:before {\n  content: \"\\eafa\";\n}\n.ci-error-outline:before {\n  content: \"\\eafb\";\n}\n.ci-error:before {\n  content: \"\\eafc\";\n}\n.ci-event-schedule:before {\n  content: \"\\eafd\";\n}\n.ci-event:before {\n  content: \"\\eafe\";\n}\n.ci-events-alt:before {\n  content: \"\\eaff\";\n}\n.ci-events:before {\n  content: \"\\eb00\";\n}\n.ci-exam-mode:before {\n  content: \"\\eb01\";\n}\n.ci-exit:before {\n  content: \"\\eb02\";\n}\n.ci-expand-all:before {\n  content: \"\\eb03\";\n}\n.ci-expand-categories:before {\n  content: \"\\eb04\";\n}\n.ci-export:before {\n  content: \"\\eb05\";\n}\n.ci-eyedropper:before {\n  content: \"\\eb06\";\n}\n.ci-face-activated-add:before {\n  content: \"\\eb07\";\n}\n.ci-face-activated-filled:before {\n  content: \"\\eb08\";\n}\n.ci-face-activated:before {\n  content: \"\\eb09\";\n}\n.ci-face-add:before {\n  content: \"\\eb0a\";\n}\n.ci-face-cool:before {\n  content: \"\\eb0b\";\n}\n.ci-face-dissatisfied-filled:before {\n  content: \"\\eb0c\";\n}\n.ci-face-dissatisfied:before {\n  content: \"\\eb0d\";\n}\n.ci-face-dizzy-filled:before {\n  content: \"\\eb0e\";\n}\n.ci-face-dizzy:before {\n  content: \"\\eb0f\";\n}\n.ci-face-mask:before {\n  content: \"\\eb10\";\n}\n.ci-face-neutral-filled:before {\n  content: \"\\eb11\";\n}\n.ci-face-neutral:before {\n  content: \"\\eb12\";\n}\n.ci-face-pending-filled:before {\n  content: \"\\eb13\";\n}\n.ci-face-pending:before {\n  content: \"\\eb14\";\n}\n.ci-face-satisfied-filled:before {\n  content: \"\\eb15\";\n}\n.ci-face-satisfied:before {\n  content: \"\\eb16\";\n}\n.ci-face-wink-filled:before {\n  content: \"\\eb17\";\n}\n.ci-face-wink:before {\n  content: \"\\eb18\";\n}\n.ci-factor:before {\n  content: \"\\eb19\";\n}\n.ci-fade:before {\n  content: \"\\eb1a\";\n}\n.ci-favorite-filled:before {\n  content: \"\\eb1b\";\n}\n.ci-favorite:before {\n  content: \"\\eb1c\";\n}\n.ci-fetch-upload-cloud:before {\n  content: \"\\eb1d\";\n}\n.ci-fetch-upload:before {\n  content: \"\\eb1e\";\n}\n.ci-filter-edit:before {\n  content: \"\\eb1f\";\n}\n.ci-filter-remove:before {\n  content: \"\\eb20\";\n}\n.ci-filter-reset:before {\n  content: \"\\eb21\";\n}\n.ci-filter:before {\n  content: \"\\eb22\";\n}\n.ci-finance:before {\n  content: \"\\eb23\";\n}\n.ci-fingerprint-recognition:before {\n  content: \"\\eb24\";\n}\n.ci-fire:before {\n  content: \"\\eb25\";\n}\n.ci-fish-multiple:before {\n  content: \"\\eb26\";\n}\n.ci-fish:before {\n  content: \"\\eb27\";\n}\n.ci-fit-to-screen:before {\n  content: \"\\eb28\";\n}\n.ci-flag-filled:before {\n  content: \"\\eb29\";\n}\n.ci-flag:before {\n  content: \"\\eb2a\";\n}\n.ci-flagging-taxi:before {\n  content: \"\\eb2b\";\n}\n.ci-flash-filled:before {\n  content: \"\\eb2c\";\n}\n.ci-flash-off-filled:before {\n  content: \"\\eb2d\";\n}\n.ci-flash-off:before {\n  content: \"\\eb2e\";\n}\n.ci-flash:before {\n  content: \"\\eb2f\";\n}\n.ci-flight-international:before {\n  content: \"\\eb30\";\n}\n.ci-flight-roster:before {\n  content: \"\\eb31\";\n}\n.ci-flight-schedule:before {\n  content: \"\\eb32\";\n}\n.ci-flood-warning:before {\n  content: \"\\eb33\";\n}\n.ci-flood:before {\n  content: \"\\eb34\";\n}\n.ci-flow-connection:before {\n  content: \"\\eb35\";\n}\n.ci-flow-data:before {\n  content: \"\\eb36\";\n}\n.ci-flow-stream-reference .path1:before {\n  content: \"\\eb37\";\n  color: rgb(9, 9, 9);\n}\n.ci-flow-stream-reference .path2:before {\n  content: \"\\eb38\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-flow-stream-reference .path3:before {\n  content: \"\\eb39\";\n  margin-left: -1em;\n  color: rgb(9, 9, 9);\n}\n.ci-flow-stream-reference .path4:before {\n  content: \"\\eb3a\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-flow-stream-reference .path5:before {\n  content: \"\\eb3b\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-flow-stream .path1:before {\n  content: \"\\eb3c\";\n  color: rgb(9, 9, 9);\n}\n.ci-flow-stream .path2:before {\n  content: \"\\eb3d\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-flow-stream .path3:before {\n  content: \"\\eb3e\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-flow:before {\n  content: \"\\eb3f\";\n}\n.ci-fog:before {\n  content: \"\\eb40\";\n}\n.ci-folder-add:before {\n  content: \"\\eb41\";\n}\n.ci-folder-details-reference:before {\n  content: \"\\eb42\";\n}\n.ci-folder-details:before {\n  content: \"\\eb43\";\n}\n.ci-folder-off:before {\n  content: \"\\eb44\";\n}\n.ci-folder-shared:before {\n  content: \"\\eb45\";\n}\n.ci-folder:before {\n  content: \"\\eb46\";\n}\n.ci-folders:before {\n  content: \"\\eb47\";\n}\n.ci-forecast-hail-30:before {\n  content: \"\\eb48\";\n}\n.ci-forecast-hail:before {\n  content: \"\\eb49\";\n}\n.ci-forecast-lightning-30:before {\n  content: \"\\eb4a\";\n}\n.ci-forecast-lightning:before {\n  content: \"\\eb4b\";\n}\n.ci-fork:before {\n  content: \"\\eb4c\";\n}\n.ci-forum:before {\n  content: \"\\eb4d\";\n}\n.ci-forward-5:before {\n  content: \"\\eb4e\";\n}\n.ci-forward-10:before {\n  content: \"\\eb4f\";\n}\n.ci-forward-30:before {\n  content: \"\\eb50\";\n}\n.ci-fragile:before {\n  content: \"\\eb51\";\n}\n.ci-fruit-bowl:before {\n  content: \"\\eb52\";\n}\n.ci-function-math .path1:before {\n  content: \"\\eb53\";\n  color: rgb(0, 0, 0);\n}\n.ci-function-math .path2:before {\n  content: \"\\eb54\";\n  margin-left: -1em;\n  color: rgb(28, 28, 28);\n}\n.ci-function .path1:before {\n  content: \"\\eb55\";\n  color: rgb(39, 36, 37);\n}\n.ci-function .path2:before {\n  content: \"\\eb56\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-function .path3:before {\n  content: \"\\eb57\";\n  margin-left: -1em;\n  color: rgb(39, 36, 37);\n}\n.ci-fusion-blender:before {\n  content: \"\\eb58\";\n}\n.ci-game-console:before {\n  content: \"\\eb59\";\n}\n.ci-game-wireless:before {\n  content: \"\\eb5a\";\n}\n.ci-gamification:before {\n  content: \"\\eb5b\";\n}\n.ci-gas-station:before {\n  content: \"\\eb5c\";\n}\n.ci-gender-female:before {\n  content: \"\\eb5d\";\n}\n.ci-gender-male:before {\n  content: \"\\eb5e\";\n}\n.ci-generate-pdf:before {\n  content: \"\\eb5f\";\n}\n.ci-gif:before {\n  content: \"\\eb60\";\n}\n.ci-gift:before {\n  content: \"\\eb61\";\n}\n.ci-globe:before {\n  content: \"\\eb62\";\n}\n.ci-gradient:before {\n  content: \"\\eb63\";\n}\n.ci-graphical-data-flow:before {\n  content: \"\\eb64\";\n}\n.ci-grid:before {\n  content: \"\\eb65\";\n}\n.ci-group:before {\n  content: \"\\eb66\";\n}\n.ci-h:before {\n  content: \"\\eb67\";\n}\n.ci-hail:before {\n  content: \"\\eb68\";\n}\n.ci-hanging-protocol:before {\n  content: \"\\eb69\";\n}\n.ci-harbor:before {\n  content: \"\\eb6a\";\n}\n.ci-hashtag:before {\n  content: \"\\eb6b\";\n}\n.ci-haze-night:before {\n  content: \"\\eb6c\";\n}\n.ci-haze:before {\n  content: \"\\eb6d\";\n}\n.ci-hd-filled:before {\n  content: \"\\eb6e\";\n}\n.ci-hd:before {\n  content: \"\\eb6f\";\n}\n.ci-hdr:before {\n  content: \"\\eb70\";\n}\n.ci-headphones:before {\n  content: \"\\eb71\";\n}\n.ci-headset:before {\n  content: \"\\eb72\";\n}\n.ci-health-cross:before {\n  content: \"\\eb73\";\n}\n.ci-hearing:before {\n  content: \"\\eb74\";\n}\n.ci-heat-map-02:before {\n  content: \"\\eb75\";\n}\n.ci-heat-map-03:before {\n  content: \"\\eb76\";\n}\n.ci-heat-map-stocks:before {\n  content: \"\\eb77\";\n}\n.ci-heat-map:before {\n  content: \"\\eb78\";\n}\n.ci-helicopter:before {\n  content: \"\\eb79\";\n}\n.ci-help-desk:before {\n  content: \"\\eb7a\";\n}\n.ci-help-filled:before {\n  content: \"\\eb7b\";\n}\n.ci-help:before {\n  content: \"\\eb7c\";\n}\n.ci-hinton-plot:before {\n  content: \"\\eb7d\";\n}\n.ci-hole-filling-cursor:before {\n  content: \"\\eb7e\";\n}\n.ci-hole-filling:before {\n  content: \"\\eb7f\";\n}\n.ci-home:before {\n  content: \"\\eb80\";\n}\n.ci-hospital-bed:before {\n  content: \"\\eb81\";\n}\n.ci-hospital:before {\n  content: \"\\eb82\";\n}\n.ci-hotel:before {\n  content: \"\\eb83\";\n}\n.ci-hourglass:before {\n  content: \"\\eb84\";\n}\n.ci-html-reference:before {\n  content: \"\\eb85\";\n}\n.ci-html:before {\n  content: \"\\eb86\";\n}\n.ci-http:before {\n  content: \"\\eb87\";\n}\n.ci-humidity-alt:before {\n  content: \"\\eb88\";\n}\n.ci-humidity:before {\n  content: \"\\eb89\";\n}\n.ci-hurricane:before {\n  content: \"\\eb8a\";\n}\n.ci-hybrid-networking:before {\n  content: \"\\eb8b\";\n}\n.ci-ibm-cloud:before {\n  content: \"\\eb8c\";\n}\n.ci-ibm-security:before {\n  content: \"\\eb8d\";\n}\n.ci-ica-2d:before {\n  content: \"\\eb8e\";\n}\n.ci-ice-accretion:before {\n  content: \"\\eb8f\";\n}\n.ci-id:before {\n  content: \"\\eb90\";\n}\n.ci-idea:before {\n  content: \"\\eb91\";\n}\n.ci-identification:before {\n  content: \"\\eb92\";\n}\n.ci-image-medical:before {\n  content: \"\\eb93\";\n}\n.ci-image-reference:before {\n  content: \"\\eb94\";\n}\n.ci-image-search:before {\n  content: \"\\eb95\";\n}\n.ci-image:before {\n  content: \"\\eb96\";\n}\n.ci-improve-relevance:before {\n  content: \"\\eb97\";\n}\n.ci-in-progress-error:before {\n  content: \"\\eb98\";\n}\n.ci-in-progress-warning:before {\n  content: \"\\eb99\";\n}\n.ci-in-progress:before {\n  content: \"\\eb9a\";\n}\n.ci-incomplete-cancel:before {\n  content: \"\\eb9b\";\n}\n.ci-incomplete-error:before {\n  content: \"\\eb9c\";\n}\n.ci-incomplete-warning:before {\n  content: \"\\eb9d\";\n}\n.ci-incomplete:before {\n  content: \"\\eb9e\";\n}\n.ci-increase-level:before {\n  content: \"\\eb9f\";\n}\n.ci-industry:before {\n  content: \"\\eba0\";\n}\n.ci-information-filled:before {\n  content: \"\\eba1\";\n}\n.ci-information-square-filled:before {\n  content: \"\\eba2\";\n}\n.ci-information-square:before {\n  content: \"\\eba3\";\n}\n.ci-information:before {\n  content: \"\\eba4\";\n}\n.ci-insert-page:before {\n  content: \"\\eba5\";\n}\n.ci-insert:before {\n  content: \"\\eba6\";\n}\n.ci-integration:before {\n  content: \"\\eba7\";\n}\n.ci-interactions:before {\n  content: \"\\eba8\";\n}\n.ci-interactive-segmentation-cursor:before {\n  content: \"\\eba9\";\n}\n.ci-intersect:before {\n  content: \"\\ebaa\";\n}\n.ci-inventory-management:before {\n  content: \"\\ebab\";\n}\n.ci-iot-connect:before {\n  content: \"\\ebac\";\n}\n.ci-iot-platform:before {\n  content: \"\\ebad\";\n}\n.ci-iso-filled:before {\n  content: \"\\ebae\";\n}\n.ci-iso-outline:before {\n  content: \"\\ebaf\";\n}\n.ci-iso:before {\n  content: \"\\ebb0\";\n}\n.ci-join-inner:before {\n  content: \"\\ebb1\";\n}\n.ci-join-left:before {\n  content: \"\\ebb2\";\n}\n.ci-join-outer:before {\n  content: \"\\ebb3\";\n}\n.ci-join-right:before {\n  content: \"\\ebb4\";\n}\n.ci-jpg:before {\n  content: \"\\ebb5\";\n}\n.ci-json-reference:before {\n  content: \"\\ebb6\";\n}\n.ci-json:before {\n  content: \"\\ebb7\";\n}\n.ci-jump-link:before {\n  content: \"\\ebb8\";\n}\n.ci-keep-dry:before {\n  content: \"\\ebb9\";\n}\n.ci-keyboard:before {\n  content: \"\\ebba\";\n}\n.ci-language:before {\n  content: \"\\ebbb\";\n}\n.ci-laptop:before {\n  content: \"\\ebbc\";\n}\n.ci-lasso:before {\n  content: \"\\ebbd\";\n}\n.ci-launch-study-1:before {\n  content: \"\\ebbe\";\n}\n.ci-launch-study-2:before {\n  content: \"\\ebbf\";\n}\n.ci-launch-study-3:before {\n  content: \"\\ebc0\";\n}\n.ci-launch:before {\n  content: \"\\ebc1\";\n}\n.ci-layers:before {\n  content: \"\\ebc2\";\n}\n.ci-legend:before {\n  content: \"\\ebc3\";\n}\n.ci-letter-aa:before {\n  content: \"\\ebc4\";\n}\n.ci-letter-bb:before {\n  content: \"\\ebc5\";\n}\n.ci-letter-cc:before {\n  content: \"\\ebc6\";\n}\n.ci-letter-dd:before {\n  content: \"\\ebc7\";\n}\n.ci-letter-ee:before {\n  content: \"\\ebc8\";\n}\n.ci-letter-ff:before {\n  content: \"\\ebc9\";\n}\n.ci-letter-gg:before {\n  content: \"\\ebca\";\n}\n.ci-letter-hh:before {\n  content: \"\\ebcb\";\n}\n.ci-letter-ii:before {\n  content: \"\\ebcc\";\n}\n.ci-letter-jj:before {\n  content: \"\\ebcd\";\n}\n.ci-letter-kk:before {\n  content: \"\\ebce\";\n}\n.ci-letter-ll:before {\n  content: \"\\ebcf\";\n}\n.ci-letter-mm:before {\n  content: \"\\ebd0\";\n}\n.ci-letter-nn:before {\n  content: \"\\ebd1\";\n}\n.ci-letter-oo:before {\n  content: \"\\ebd2\";\n}\n.ci-letter-pp:before {\n  content: \"\\ebd3\";\n}\n.ci-letter-qq:before {\n  content: \"\\ebd4\";\n}\n.ci-letter-rr:before {\n  content: \"\\ebd5\";\n}\n.ci-letter-ss:before {\n  content: \"\\ebd6\";\n}\n.ci-letter-tt:before {\n  content: \"\\ebd7\";\n}\n.ci-letter-uu:before {\n  content: \"\\ebd8\";\n}\n.ci-letter-vv:before {\n  content: \"\\ebd9\";\n}\n.ci-letter-ww:before {\n  content: \"\\ebda\";\n}\n.ci-letter-xx:before {\n  content: \"\\ebdb\";\n}\n.ci-letter-yy:before {\n  content: \"\\ebdc\";\n}\n.ci-letter-zz:before {\n  content: \"\\ebdd\";\n}\n.ci-license-draft:before {\n  content: \"\\ebde\";\n}\n.ci-license-global:before {\n  content: \"\\ebdf\";\n}\n.ci-license-maintenance-draft:before {\n  content: \"\\ebe0\";\n}\n.ci-license-maintenance:before {\n  content: \"\\ebe1\";\n}\n.ci-license-third-party-draft:before {\n  content: \"\\ebe2\";\n}\n.ci-license-third-party:before {\n  content: \"\\ebe3\";\n}\n.ci-license:before {\n  content: \"\\ebe4\";\n}\n.ci-light-filled:before {\n  content: \"\\ebe5\";\n}\n.ci-light:before {\n  content: \"\\ebe6\";\n}\n.ci-lightning:before {\n  content: \"\\ebe7\";\n}\n.ci-link:before {\n  content: \"\\ebe8\";\n}\n.ci-linux-alt:before {\n  content: \"\\ebe9\";\n}\n.ci-linux:before {\n  content: \"\\ebea\";\n}\n.ci-list-boxes:before {\n  content: \"\\ebeb\";\n}\n.ci-list-bulleted:before {\n  content: \"\\ebec\";\n}\n.ci-list-checked:before {\n  content: \"\\ebed\";\n}\n.ci-list-dropdown:before {\n  content: \"\\ebee\";\n}\n.ci-list-numbered:before {\n  content: \"\\ebef\";\n}\n.ci-list:before {\n  content: \"\\ebf0\";\n}\n.ci-location-company-filled:before {\n  content: \"\\ebf1\";\n}\n.ci-location-company:before {\n  content: \"\\ebf2\";\n}\n.ci-location-hazard-filled:before {\n  content: \"\\ebf3\";\n}\n.ci-location-hazard:before {\n  content: \"\\ebf4\";\n}\n.ci-location-heart-filled:before {\n  content: \"\\ebf5\";\n}\n.ci-location-heart:before {\n  content: \"\\ebf6\";\n}\n.ci-location-person-filled:before {\n  content: \"\\ebf7\";\n}\n.ci-location-person:before {\n  content: \"\\ebf8\";\n}\n.ci-location-star-filled:before {\n  content: \"\\ebf9\";\n}\n.ci-location-star:before {\n  content: \"\\ebfa\";\n}\n.ci-location:before {\n  content: \"\\ebfb\";\n}\n.ci-locked:before {\n  content: \"\\ebfc\";\n}\n.ci-login:before {\n  content: \"\\ebfd\";\n}\n.ci-logo-digg:before {\n  content: \"\\ebfe\";\n}\n.ci-logo-facebook:before {\n  content: \"\\ebff\";\n}\n.ci-logo-flickr:before {\n  content: \"\\ec00\";\n}\n.ci-logo-github:before {\n  content: \"\\ec01\";\n}\n.ci-logo-glassdoor:before {\n  content: \"\\ec02\";\n}\n.ci-logo-instagram:before {\n  content: \"\\ec03\";\n}\n.ci-logo-jupyter:before {\n  content: \"\\ec04\";\n}\n.ci-logo-keybase:before {\n  content: \"\\ec05\";\n}\n.ci-logo-linkedin:before {\n  content: \"\\ec06\";\n}\n.ci-logo-livestream:before {\n  content: \"\\ec07\";\n}\n.ci-logo-medium:before {\n  content: \"\\ec08\";\n}\n.ci-logo-openshift:before {\n  content: \"\\ec09\";\n}\n.ci-logo-pinterest:before {\n  content: \"\\ec0a\";\n}\n.ci-logo-python:before {\n  content: \"\\ec0b\";\n}\n.ci-logo-quora:before {\n  content: \"\\ec0c\";\n}\n.ci-logo-r-script:before {\n  content: \"\\ec0d\";\n}\n.ci-logo-skype:before {\n  content: \"\\ec0e\";\n}\n.ci-logo-slack:before {\n  content: \"\\ec0f\";\n}\n.ci-logo-snapchat:before {\n  content: \"\\ec10\";\n}\n.ci-logo-tumblr:before {\n  content: \"\\ec11\";\n}\n.ci-logo-twitter:before {\n  content: \"\\ec12\";\n}\n.ci-logo-vmware:before {\n  content: \"\\ec13\";\n}\n.ci-logo-xing:before {\n  content: \"\\ec14\";\n}\n.ci-logo-yelp:before {\n  content: \"\\ec15\";\n}\n.ci-logo-youtube:before {\n  content: \"\\ec16\";\n}\n.ci-logout:before {\n  content: \"\\ec17\";\n}\n.ci-loop:before {\n  content: \"\\ec18\";\n}\n.ci-mac-command:before {\n  content: \"\\ec19\";\n}\n.ci-mac-option:before {\n  content: \"\\ec1a\";\n}\n.ci-mac-shift:before {\n  content: \"\\ec1b\";\n}\n.ci-machine-learning-model:before {\n  content: \"\\ec1c\";\n}\n.ci-machine-learning:before {\n  content: \"\\ec1d\";\n}\n.ci-magic-wand-filled:before {\n  content: \"\\ec1e\";\n}\n.ci-magic-wand:before {\n  content: \"\\ec1f\";\n}\n.ci-magnify:before {\n  content: \"\\ec20\";\n}\n.ci-mail-all:before {\n  content: \"\\ec21\";\n}\n.ci-mail-reply:before {\n  content: \"\\ec22\";\n}\n.ci-mammogram:before {\n  content: \"\\ec23\";\n}\n.ci-manage-protection:before {\n  content: \"\\ec24\";\n}\n.ci-managed-solutions:before {\n  content: \"\\ec25\";\n}\n.ci-map-boundary:before {\n  content: \"\\ec26\";\n}\n.ci-map:before {\n  content: \"\\ec27\";\n}\n.ci-marine-warning:before {\n  content: \"\\ec28\";\n}\n.ci-math-curve:before {\n  content: \"\\ec29\";\n}\n.ci-matrix:before {\n  content: \"\\ec2a\";\n}\n.ci-maximize:before {\n  content: \"\\ec2b\";\n}\n.ci-medication-alert:before {\n  content: \"\\ec2c\";\n}\n.ci-medication-reminder:before {\n  content: \"\\ec2d\";\n}\n.ci-medication:before {\n  content: \"\\ec2e\";\n}\n.ci-menu:before {\n  content: \"\\ec2f\";\n}\n.ci-meter-alt:before {\n  content: \"\\ec30\";\n}\n.ci-meter:before {\n  content: \"\\ec31\";\n}\n.ci-microphone-filled:before {\n  content: \"\\ec32\";\n}\n.ci-microphone-off-filled:before {\n  content: \"\\ec33\";\n}\n.ci-microphone-off:before {\n  content: \"\\ec34\";\n}\n.ci-microphone:before {\n  content: \"\\ec35\";\n}\n.ci-microscope:before {\n  content: \"\\ec36\";\n}\n.ci-migrate-alt:before {\n  content: \"\\ec37\";\n}\n.ci-migrate:before {\n  content: \"\\ec38\";\n}\n.ci-milestone:before {\n  content: \"\\ec39\";\n}\n.ci-minimize:before {\n  content: \"\\ec3a\";\n}\n.ci-misuse-alt:before {\n  content: \"\\ec3b\";\n}\n.ci-misuse-outline:before {\n  content: \"\\ec3c\";\n}\n.ci-misuse:before {\n  content: \"\\ec3d\";\n}\n.ci-mixed-rain-hail:before {\n  content: \"\\ec3e\";\n}\n.ci-mobile-add:before {\n  content: \"\\ec3f\";\n}\n.ci-mobile-audio:before {\n  content: \"\\ec40\";\n}\n.ci-mobile-check:before {\n  content: \"\\ec41\";\n}\n.ci-mobile-download:before {\n  content: \"\\ec42\";\n}\n.ci-mobile-landscape:before {\n  content: \"\\ec43\";\n}\n.ci-mobile:before {\n  content: \"\\ec44\";\n}\n.ci-model-alt:before {\n  content: \"\\ec45\";\n}\n.ci-model-builder-reference:before {\n  content: \"\\ec46\";\n}\n.ci-model-builder:before {\n  content: \"\\ec47\";\n}\n.ci-model-reference:before {\n  content: \"\\ec48\";\n}\n.ci-model:before {\n  content: \"\\ec49\";\n}\n.ci-money:before {\n  content: \"\\ec4a\";\n}\n.ci-monster:before {\n  content: \"\\ec4b\";\n}\n.ci-monument:before {\n  content: \"\\ec4c\";\n}\n.ci-moon:before {\n  content: \"\\ec4d\";\n}\n.ci-mostly-cloudy-night:before {\n  content: \"\\ec4e\";\n}\n.ci-mostly-cloudy:before {\n  content: \"\\ec4f\";\n}\n.ci-mountain:before {\n  content: \"\\ec50\";\n}\n.ci-mov:before {\n  content: \"\\ec51\";\n}\n.ci-move:before {\n  content: \"\\ec52\";\n}\n.ci-movement:before {\n  content: \"\\ec53\";\n}\n.ci-mp3:before {\n  content: \"\\ec54\";\n}\n.ci-mp4:before {\n  content: \"\\ec55\";\n}\n.ci-mpeg:before {\n  content: \"\\ec56\";\n}\n.ci-mpg2:before {\n  content: \"\\ec57\";\n}\n.ci-music:before {\n  content: \"\\ec58\";\n}\n.ci-name-space:before {\n  content: \"\\ec59\";\n}\n.ci-navaid-civil:before {\n  content: \"\\ec5a\";\n}\n.ci-navaid-dme:before {\n  content: \"\\ec5b\";\n}\n.ci-navaid-helipad:before {\n  content: \"\\ec5c\";\n}\n.ci-navaid-military-civil:before {\n  content: \"\\ec5d\";\n}\n.ci-navaid-military:before {\n  content: \"\\ec5e\";\n}\n.ci-navaid-ndb-dme .path1:before {\n  content: \"\\ec5f\";\n  color: rgb(23, 23, 23);\n}\n.ci-navaid-ndb-dme .path2:before {\n  content: \"\\ec60\";\n  margin-left: -1em;\n  color: rgb(23, 23, 23);\n}\n.ci-navaid-ndb-dme .path3:before {\n  content: \"\\ec61\";\n  margin-left: -1em;\n  color: rgb(23, 23, 23);\n}\n.ci-navaid-ndb-dme .path4:before {\n  content: \"\\ec62\";\n  margin-left: -1em;\n  color: rgb(23, 23, 23);\n}\n.ci-navaid-ndb-dme .path5:before {\n  content: \"\\ec63\";\n  margin-left: -1em;\n  color: rgb(23, 23, 23);\n}\n.ci-navaid-ndb-dme .path6:before {\n  content: \"\\ec64\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path7:before {\n  content: \"\\ec65\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path8:before {\n  content: \"\\ec66\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path9:before {\n  content: \"\\ec67\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path10:before {\n  content: \"\\ec68\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path11:before {\n  content: \"\\ec69\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path12:before {\n  content: \"\\ec6a\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path13:before {\n  content: \"\\ec6b\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path14:before {\n  content: \"\\ec6c\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path15:before {\n  content: \"\\ec6d\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path16:before {\n  content: \"\\ec6e\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path17:before {\n  content: \"\\ec6f\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path18:before {\n  content: \"\\ec70\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path19:before {\n  content: \"\\ec71\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path20:before {\n  content: \"\\ec72\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path21:before {\n  content: \"\\ec73\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb-dme .path22:before {\n  content: \"\\ec74\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-ndb:before {\n  content: \"\\ec75\";\n}\n.ci-navaid-private:before {\n  content: \"\\ec76\";\n}\n.ci-navaid-seaplane:before {\n  content: \"\\ec77\";\n}\n.ci-navaid-tacan:before {\n  content: \"\\ec78\";\n}\n.ci-navaid-vhfor:before {\n  content: \"\\ec79\";\n}\n.ci-navaid-vor .path1:before {\n  content: \"\\ec7a\";\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-vor .path2:before {\n  content: \"\\ec7b\";\n  margin-left: -1em;\n  color: rgb(23, 23, 23);\n}\n.ci-navaid-vordme .path1:before {\n  content: \"\\ec7c\";\n  color: rgb(0, 0, 0);\n}\n.ci-navaid-vordme .path2:before {\n  content: \"\\ec7d\";\n  margin-left: -1em;\n  color: rgb(23, 23, 23);\n}\n.ci-navaid-vortac:before {\n  content: \"\\ec7e\";\n}\n.ci-network-1:before {\n  content: \"\\ec7f\";\n}\n.ci-network-2:before {\n  content: \"\\ec80\";\n}\n.ci-network-3-reference:before {\n  content: \"\\ec81\";\n}\n.ci-network-3:before {\n  content: \"\\ec82\";\n}\n.ci-network-4:before {\n  content: \"\\ec83\";\n}\n.ci-new-tab:before {\n  content: \"\\ec84\";\n}\n.ci-next-filled:before {\n  content: \"\\ec85\";\n}\n.ci-next-outline:before {\n  content: \"\\ec86\";\n}\n.ci-no-image:before {\n  content: \"\\ec87\";\n}\n.ci-no-ticket:before {\n  content: \"\\ec88\";\n}\n.ci-nominal:before {\n  content: \"\\ec89\";\n}\n.ci-nominate:before {\n  content: \"\\ec8a\";\n}\n.ci-non-certified:before {\n  content: \"\\ec8b\";\n}\n.ci-noodle-bowl:before {\n  content: \"\\ec8c\";\n}\n.ci-not-available:before {\n  content: \"\\ec8d\";\n}\n.ci-not-sent-filled:before {\n  content: \"\\ec8e\";\n}\n.ci-not-sent:before {\n  content: \"\\ec8f\";\n}\n.ci-notebook-reference:before {\n  content: \"\\ec90\";\n}\n.ci-notebook:before {\n  content: \"\\ec91\";\n}\n.ci-notification-filled:before {\n  content: \"\\ec92\";\n}\n.ci-notification-new:before {\n  content: \"\\ec93\";\n}\n.ci-notification-off-filled:before {\n  content: \"\\ec94\";\n}\n.ci-notification-off:before {\n  content: \"\\ec95\";\n}\n.ci-notification:before {\n  content: \"\\ec96\";\n}\n.ci-number-0:before {\n  content: \"\\ec97\";\n}\n.ci-number-1:before {\n  content: \"\\ec98\";\n}\n.ci-number-2:before {\n  content: \"\\ec99\";\n}\n.ci-number-3:before {\n  content: \"\\ec9a\";\n}\n.ci-number-4:before {\n  content: \"\\ec9b\";\n}\n.ci-number-5:before {\n  content: \"\\ec9c\";\n}\n.ci-number-6:before {\n  content: \"\\ec9d\";\n}\n.ci-number-7:before {\n  content: \"\\ec9e\";\n}\n.ci-number-8:before {\n  content: \"\\ec9f\";\n}\n.ci-number-9:before {\n  content: \"\\eca0\";\n}\n.ci-number-small-0:before {\n  content: \"\\eca1\";\n}\n.ci-number-small-1:before {\n  content: \"\\eca2\";\n}\n.ci-number-small-2:before {\n  content: \"\\eca3\";\n}\n.ci-number-small-3:before {\n  content: \"\\eca4\";\n}\n.ci-number-small-4:before {\n  content: \"\\eca5\";\n}\n.ci-number-small-5:before {\n  content: \"\\eca6\";\n}\n.ci-number-small-6:before {\n  content: \"\\eca7\";\n}\n.ci-number-small-7:before {\n  content: \"\\eca8\";\n}\n.ci-number-small-8:before {\n  content: \"\\eca9\";\n}\n.ci-number-small-9:before {\n  content: \"\\ecaa\";\n}\n.ci-object-storage:before {\n  content: \"\\ecab\";\n}\n.ci-observed-hail:before {\n  content: \"\\ecac\";\n}\n.ci-observed-lightning:before {\n  content: \"\\ecad\";\n}\n.ci-omega:before {\n  content: \"\\ecae\";\n}\n.ci-opacity:before {\n  content: \"\\ecaf\";\n}\n.ci-open-panel-bottom:before {\n  content: \"\\ecb0\";\n}\n.ci-open-panel-filled-bottom:before {\n  content: \"\\ecb1\";\n}\n.ci-open-panel-filled-left:before {\n  content: \"\\ecb2\";\n}\n.ci-open-panel-filled-right:before {\n  content: \"\\ecb3\";\n}\n.ci-open-panel-filled-top:before {\n  content: \"\\ecb4\";\n}\n.ci-open-panel-left:before {\n  content: \"\\ecb5\";\n}\n.ci-open-panel-right:before {\n  content: \"\\ecb6\";\n}\n.ci-open-panel-top:before {\n  content: \"\\ecb7\";\n}\n.ci-operation-gauge:before {\n  content: \"\\ecb8\";\n}\n.ci-operation-if:before {\n  content: \"\\ecb9\";\n}\n.ci-operation:before {\n  content: \"\\ecba\";\n}\n.ci-operations-field:before {\n  content: \"\\ecbb\";\n}\n.ci-operations-record:before {\n  content: \"\\ecbc\";\n}\n.ci-ordinal:before {\n  content: \"\\ecbd\";\n}\n.ci-outage:before {\n  content: \"\\ecbe\";\n}\n.ci-outlook-severe:before {\n  content: \"\\ecbf\";\n}\n.ci-overflow-menu-horizontal:before {\n  content: \"\\ecc0\";\n}\n.ci-overflow-menu-vertical:before {\n  content: \"\\ecc1\";\n}\n.ci-overlay:before {\n  content: \"\\ecc2\";\n}\n.ci-package:before {\n  content: \"\\ecc3\";\n}\n.ci-page-break:before {\n  content: \"\\ecc4\";\n}\n.ci-page-first:before {\n  content: \"\\ecc5\";\n}\n.ci-page-last:before {\n  content: \"\\ecc6\";\n}\n.ci-page-number:before {\n  content: \"\\ecc7\";\n}\n.ci-page-scroll:before {\n  content: \"\\ecc8\";\n}\n.ci-paint-brush-alt:before {\n  content: \"\\ecc9\";\n}\n.ci-paint-brush:before {\n  content: \"\\ecca\";\n}\n.ci-palm-tree:before {\n  content: \"\\eccb\";\n}\n.ci-pan-horizontal:before {\n  content: \"\\eccc\";\n}\n.ci-pan-vertical:before {\n  content: \"\\eccd\";\n}\n.ci-panel-expansion:before {\n  content: \"\\ecce\";\n}\n.ci-paragraph:before {\n  content: \"\\eccf\";\n}\n.ci-parent-child:before {\n  content: \"\\ecd0\";\n}\n.ci-partly-cloudy-night:before {\n  content: \"\\ecd1\";\n}\n.ci-partly-cloudy:before {\n  content: \"\\ecd2\";\n}\n.ci-partnership:before {\n  content: \"\\ecd3\";\n}\n.ci-passenger-drinks:before {\n  content: \"\\ecd4\";\n}\n.ci-passenger-plus:before {\n  content: \"\\ecd5\";\n}\n.ci-password:before {\n  content: \"\\ecd6\";\n}\n.ci-paste:before {\n  content: \"\\ecd7\";\n}\n.ci-pause-filled:before {\n  content: \"\\ecd8\";\n}\n.ci-pause-future:before {\n  content: \"\\ecd9\";\n}\n.ci-pause-outline-filled:before {\n  content: \"\\ecda\";\n}\n.ci-pause-outline:before {\n  content: \"\\ecdb\";\n}\n.ci-pause-past:before {\n  content: \"\\ecdc\";\n}\n.ci-pause:before {\n  content: \"\\ecdd\";\n}\n.ci-pdf-reference:before {\n  content: \"\\ecde\";\n}\n.ci-pdf:before {\n  content: \"\\ecdf\";\n}\n.ci-pedestrian-child:before {\n  content: \"\\ece0\";\n}\n.ci-pedestrian:before {\n  content: \"\\ece1\";\n}\n.ci-pending-filled:before {\n  content: \"\\ece2\";\n}\n.ci-pending:before {\n  content: \"\\ece3\";\n}\n.ci-percentage-filled:before {\n  content: \"\\ece4\";\n}\n.ci-percentage:before {\n  content: \"\\ece5\";\n}\n.ci-person-favorite:before {\n  content: \"\\ece6\";\n}\n.ci-person:before {\n  content: \"\\ece7\";\n}\n.ci-pest:before {\n  content: \"\\ece8\";\n}\n.ci-pet-image-b:before {\n  content: \"\\ece9\";\n}\n.ci-pet-image-o:before {\n  content: \"\\ecea\";\n}\n.ci-phone-filled:before {\n  content: \"\\eceb\";\n}\n.ci-phone-off-filled:before {\n  content: \"\\ecec\";\n}\n.ci-phone-off:before {\n  content: \"\\eced\";\n}\n.ci-phone:before {\n  content: \"\\ecee\";\n}\n.ci-phrase-sentiment:before {\n  content: \"\\ecef\";\n}\n.ci-picnic-area:before {\n  content: \"\\ecf0\";\n}\n.ci-pills-add:before {\n  content: \"\\ecf1\";\n}\n.ci-pills-subtract:before {\n  content: \"\\ecf2\";\n}\n.ci-pills:before {\n  content: \"\\ecf3\";\n}\n.ci-pin-filled:before {\n  content: \"\\ecf4\";\n}\n.ci-pin:before {\n  content: \"\\ecf5\";\n}\n.ci-plane-private:before {\n  content: \"\\ecf6\";\n}\n.ci-plane-sea:before {\n  content: \"\\ecf7\";\n}\n.ci-plane:before {\n  content: \"\\ecf8\";\n}\n.ci-play-filled-alt:before {\n  content: \"\\ecf9\";\n}\n.ci-play-filled:before {\n  content: \"\\ecfa\";\n}\n.ci-play-outline-filled:before {\n  content: \"\\ecfb\";\n}\n.ci-play-outline:before {\n  content: \"\\ecfc\";\n}\n.ci-play:before {\n  content: \"\\ecfd\";\n}\n.ci-playlist:before {\n  content: \"\\ecfe\";\n}\n.ci-plug-filled:before {\n  content: \"\\ecff\";\n}\n.ci-plug:before {\n  content: \"\\ed00\";\n}\n.ci-png:before {\n  content: \"\\ed01\";\n}\n.ci-pointer-text:before {\n  content: \"\\ed02\";\n}\n.ci-police:before {\n  content: \"\\ed03\";\n}\n.ci-policy:before {\n  content: \"\\ed04\";\n}\n.ci-popup:before {\n  content: \"\\ed05\";\n}\n.ci-portfolio:before {\n  content: \"\\ed06\";\n}\n.ci-power:before {\n  content: \"\\ed07\";\n}\n.ci-ppt:before {\n  content: \"\\ed08\";\n}\n.ci-presentation-file:before {\n  content: \"\\ed09\";\n}\n.ci-pressure-filled:before {\n  content: \"\\ed0a\";\n}\n.ci-pressure:before {\n  content: \"\\ed0b\";\n}\n.ci-previous-filled:before {\n  content: \"\\ed0c\";\n}\n.ci-previous-outline:before {\n  content: \"\\ed0d\";\n}\n.ci-printer:before {\n  content: \"\\ed0e\";\n}\n.ci-product:before {\n  content: \"\\ed0f\";\n}\n.ci-purchase:before {\n  content: \"\\ed10\";\n}\n.ci-qq-plot:before {\n  content: \"\\ed11\";\n}\n.ci-qr-code:before {\n  content: \"\\ed12\";\n}\n.ci-quadrant-plot:before {\n  content: \"\\ed13\";\n}\n.ci-query-queue:before {\n  content: \"\\ed14\";\n}\n.ci-query:before {\n  content: \"\\ed15\";\n}\n.ci-queued:before {\n  content: \"\\ed16\";\n}\n.ci-quotes:before {\n  content: \"\\ed17\";\n}\n.ci-radar-enhanced:before {\n  content: \"\\ed18\";\n}\n.ci-radar-weather:before {\n  content: \"\\ed19\";\n}\n.ci-radar:before {\n  content: \"\\ed1a\";\n}\n.ci-radio-button-checked:before {\n  content: \"\\ed1b\";\n}\n.ci-radio-button:before {\n  content: \"\\ed1c\";\n}\n.ci-radio:before {\n  content: \"\\ed1d\";\n}\n.ci-rain-drizzle:before {\n  content: \"\\ed1e\";\n}\n.ci-rain-drop:before {\n  content: \"\\ed1f\";\n}\n.ci-rain-heavy:before {\n  content: \"\\ed20\";\n}\n.ci-rain-scattered-night:before {\n  content: \"\\ed21\";\n}\n.ci-rain-scattered:before {\n  content: \"\\ed22\";\n}\n.ci-rain:before {\n  content: \"\\ed23\";\n}\n.ci-raw:before {\n  content: \"\\ed24\";\n}\n.ci-receipt:before {\n  content: \"\\ed25\";\n}\n.ci-recently-viewed:before {\n  content: \"\\ed26\";\n}\n.ci-recommend:before {\n  content: \"\\ed27\";\n}\n.ci-recording-filled-alt:before {\n  content: \"\\ed28\";\n}\n.ci-recording-filled:before {\n  content: \"\\ed29\";\n}\n.ci-recording:before {\n  content: \"\\ed2a\";\n}\n.ci-redo:before {\n  content: \"\\ed2b\";\n}\n.ci-ref-evapotranspiration:before {\n  content: \"\\ed2c\";\n}\n.ci-reflect-horizontal:before {\n  content: \"\\ed2d\";\n}\n.ci-reflect-vertical:before {\n  content: \"\\ed2e\";\n}\n.ci-region-analysis-area:before {\n  content: \"\\ed2f\";\n}\n.ci-region-analysis-volume:before {\n  content: \"\\ed30\";\n}\n.ci-registration:before {\n  content: \"\\ed31\";\n}\n.ci-reminder-medical:before {\n  content: \"\\ed32\";\n}\n.ci-reminder:before {\n  content: \"\\ed33\";\n}\n.ci-renew:before {\n  content: \"\\ed34\";\n}\n.ci-repeat-one:before {\n  content: \"\\ed35\";\n}\n.ci-repeat:before {\n  content: \"\\ed36\";\n}\n.ci-reply:before {\n  content: \"\\ed37\";\n}\n.ci-report-data:before {\n  content: \"\\ed38\";\n}\n.ci-report:before {\n  content: \"\\ed39\";\n}\n.ci-request-quote:before {\n  content: \"\\ed3a\";\n}\n.ci-research-bloch-sphere:before {\n  content: \"\\ed3b\";\n}\n.ci-research-hinton-plot:before {\n  content: \"\\ed3c\";\n}\n.ci-research-matrix:before {\n  content: \"\\ed3d\";\n}\n.ci-reset-alt:before {\n  content: \"\\ed3e\";\n}\n.ci-reset:before {\n  content: \"\\ed3f\";\n}\n.ci-restart:before {\n  content: \"\\ed40\";\n}\n.ci-restaurant-fine:before {\n  content: \"\\ed41\";\n}\n.ci-restaurant:before {\n  content: \"\\ed42\";\n}\n.ci-rewind-5:before {\n  content: \"\\ed43\";\n}\n.ci-rewind-10:before {\n  content: \"\\ed44\";\n}\n.ci-rewind-30:before {\n  content: \"\\ed45\";\n}\n.ci-road-weather:before {\n  content: \"\\ed46\";\n}\n.ci-road:before {\n  content: \"\\ed47\";\n}\n.ci-roadmap:before {\n  content: \"\\ed48\";\n}\n.ci-rocket:before {\n  content: \"\\ed49\";\n}\n.ci-rotate-180:before {\n  content: \"\\ed4a\";\n}\n.ci-rotate-360:before {\n  content: \"\\ed4b\";\n}\n.ci-rotate-clockwise-alt-filled:before {\n  content: \"\\ed4c\";\n}\n.ci-rotate-clockwise-alt:before {\n  content: \"\\ed4d\";\n}\n.ci-rotate-clockwise-filled:before {\n  content: \"\\ed4e\";\n}\n.ci-rotate-clockwise:before {\n  content: \"\\ed4f\";\n}\n.ci-rotate-counterclockwise-alt-filled:before {\n  content: \"\\ed50\";\n}\n.ci-rotate-counterclockwise-alt:before {\n  content: \"\\ed51\";\n}\n.ci-rotate-counterclockwise-filled:before {\n  content: \"\\ed52\";\n}\n.ci-rotate-counterclockwise:before {\n  content: \"\\ed53\";\n}\n.ci-rotate:before {\n  content: \"\\ed54\";\n}\n.ci-row-collapse:before {\n  content: \"\\ed55\";\n}\n.ci-row-delete:before {\n  content: \"\\ed56\";\n}\n.ci-row-expand:before {\n  content: \"\\ed57\";\n}\n.ci-row-insert:before {\n  content: \"\\ed58\";\n}\n.ci-row:before {\n  content: \"\\ed59\";\n}\n.ci-rss:before {\n  content: \"\\ed5a\";\n}\n.ci-rule:before {\n  content: \"\\ed5b\";\n}\n.ci-ruler-alt:before {\n  content: \"\\ed5c\";\n}\n.ci-ruler:before {\n  content: \"\\ed5d\";\n}\n.ci-run:before {\n  content: \"\\ed5e\";\n}\n.ci-s-alt:before {\n  content: \"\\ed5f\";\n}\n.ci-s:before {\n  content: \"\\ed60\";\n}\n.ci-sailboat-coastal:before {\n  content: \"\\ed61\";\n}\n.ci-sailboat-offshore:before {\n  content: \"\\ed62\";\n}\n.ci-sankey-diagram:before {\n  content: \"\\ed63\";\n}\n.ci-satellite-radar:before {\n  content: \"\\ed64\";\n}\n.ci-satellite-weather:before {\n  content: \"\\ed65\";\n}\n.ci-satellite:before {\n  content: \"\\ed66\";\n}\n.ci-save-annotation:before {\n  content: \"\\ed67\";\n}\n.ci-save-image:before {\n  content: \"\\ed68\";\n}\n.ci-save-model:before {\n  content: \"\\ed69\";\n}\n.ci-save-series:before {\n  content: \"\\ed6a\";\n}\n.ci-save:before {\n  content: \"\\ed6b\";\n}\n.ci-scale:before {\n  content: \"\\ed6c\";\n}\n.ci-scales-tipped:before {\n  content: \"\\ed6d\";\n}\n.ci-scales:before {\n  content: \"\\ed6e\";\n}\n.ci-scalpel-cursor:before {\n  content: \"\\ed6f\";\n}\n.ci-scalpel-lasso:before {\n  content: \"\\ed70\";\n}\n.ci-scalpel-select:before {\n  content: \"\\ed71\";\n}\n.ci-scalpel:before {\n  content: \"\\ed72\";\n}\n.ci-scan:before {\n  content: \"\\ed73\";\n}\n.ci-scatter-matrix:before {\n  content: \"\\ed74\";\n}\n.ci-schematics:before {\n  content: \"\\ed75\";\n}\n.ci-scooter-front:before {\n  content: \"\\ed76\";\n}\n.ci-scooter:before {\n  content: \"\\ed77\";\n}\n.ci-screen-off:before {\n  content: \"\\ed78\";\n}\n.ci-screen:before {\n  content: \"\\ed79\";\n}\n.ci-script-reference:before {\n  content: \"\\ed7a\";\n}\n.ci-script:before {\n  content: \"\\ed7b\";\n}\n.ci-sdk:before {\n  content: \"\\ed7c\";\n}\n.ci-search:before {\n  content: \"\\ed7d\";\n}\n.ci-security:before {\n  content: \"\\ed7e\";\n}\n.ci-select-01:before {\n  content: \"\\ed7f\";\n}\n.ci-select-02:before {\n  content: \"\\ed80\";\n}\n.ci-send-alt-filled:before {\n  content: \"\\ed81\";\n}\n.ci-send-alt:before {\n  content: \"\\ed82\";\n}\n.ci-send-filled:before {\n  content: \"\\ed83\";\n}\n.ci-send-to-back:before {\n  content: \"\\ed84\";\n}\n.ci-send:before {\n  content: \"\\ed85\";\n}\n.ci-service-desk:before {\n  content: \"\\ed86\";\n}\n.ci-settings-adjust:before {\n  content: \"\\ed87\";\n}\n.ci-settings-check:before {\n  content: \"\\ed88\";\n}\n.ci-settings:before {\n  content: \"\\ed89\";\n}\n.ci-share-knowledge:before {\n  content: \"\\ed8a\";\n}\n.ci-share:before {\n  content: \"\\ed8b\";\n}\n.ci-shopping-bag:before {\n  content: \"\\ed8c\";\n}\n.ci-shopping-cart:before {\n  content: \"\\ed8d\";\n}\n.ci-shopping-catalog:before {\n  content: \"\\ed8e\";\n}\n.ci-shrink-screen-filled:before {\n  content: \"\\ed8f\";\n}\n.ci-shrink-screen:before {\n  content: \"\\ed90\";\n}\n.ci-shuffle:before {\n  content: \"\\ed91\";\n}\n.ci-shuttle:before {\n  content: \"\\ed92\";\n}\n.ci-sigma:before {\n  content: \"\\ed93\";\n}\n.ci-signal-strength:before {\n  content: \"\\ed94\";\n}\n.ci-skill-level-advanced:before {\n  content: \"\\ed95\";\n}\n.ci-skill-level-basic:before {\n  content: \"\\ed96\";\n}\n.ci-skill-level-intermediate:before {\n  content: \"\\ed97\";\n}\n.ci-skill-level:before {\n  content: \"\\ed98\";\n}\n.ci-skip-back-filled:before {\n  content: \"\\ed99\";\n}\n.ci-skip-back-outline-filled:before {\n  content: \"\\ed9a\";\n}\n.ci-skip-back-outline-solid:before {\n  content: \"\\ed9b\";\n}\n.ci-skip-back-outline:before {\n  content: \"\\ed9c\";\n}\n.ci-skip-back-solid-filled:before {\n  content: \"\\ed9d\";\n}\n.ci-skip-back:before {\n  content: \"\\ed9e\";\n}\n.ci-skip-forward-filled:before {\n  content: \"\\ed9f\";\n}\n.ci-skip-forward-outline-filled:before {\n  content: \"\\eda0\";\n}\n.ci-skip-forward-outline-solid:before {\n  content: \"\\eda1\";\n}\n.ci-skip-forward-outline:before {\n  content: \"\\eda2\";\n}\n.ci-skip-forward-solid-filled:before {\n  content: \"\\eda3\";\n}\n.ci-skip-forward:before {\n  content: \"\\eda4\";\n}\n.ci-sleet:before {\n  content: \"\\eda5\";\n}\n.ci-smell:before {\n  content: \"\\eda6\";\n}\n.ci-smoke:before {\n  content: \"\\eda7\";\n}\n.ci-smoothing-cursor:before {\n  content: \"\\eda8\";\n}\n.ci-smoothing:before {\n  content: \"\\eda9\";\n}\n.ci-snooze:before {\n  content: \"\\edaa\";\n}\n.ci-snow-blizzard:before {\n  content: \"\\edab\";\n}\n.ci-snow-density:before {\n  content: \"\\edac\";\n}\n.ci-snow-heavy:before {\n  content: \"\\edad\";\n}\n.ci-snow-scattered-night:before {\n  content: \"\\edae\";\n}\n.ci-snow-scattered:before {\n  content: \"\\edaf\";\n}\n.ci-snow:before {\n  content: \"\\edb0\";\n}\n.ci-snowflake:before {\n  content: \"\\edb1\";\n}\n.ci-soccer:before {\n  content: \"\\edb2\";\n}\n.ci-soil-moisture-field:before {\n  content: \"\\edb3\";\n}\n.ci-soil-moisture-global:before {\n  content: \"\\edb4\";\n}\n.ci-soil-moisture:before {\n  content: \"\\edb5\";\n}\n.ci-soil-temperature-field:before {\n  content: \"\\edb6\";\n}\n.ci-soil-temperature-global:before {\n  content: \"\\edb7\";\n}\n.ci-soil-temperature:before {\n  content: \"\\edb8\";\n}\n.ci-spell-check:before {\n  content: \"\\edb9\";\n}\n.ci-spine-label:before {\n  content: \"\\edba\";\n}\n.ci-split-discard:before {\n  content: \"\\edbb\";\n}\n.ci-split-screen:before {\n  content: \"\\edbc\";\n}\n.ci-split:before {\n  content: \"\\edbd\";\n}\n.ci-spray-paint:before {\n  content: \"\\edbe\";\n}\n.ci-sprout:before {\n  content: \"\\edbf\";\n}\n.ci-sql:before {\n  content: \"\\edc0\";\n}\n.ci-stack-limitation:before {\n  content: \"\\edc1\";\n}\n.ci-stacked-move:before {\n  content: \"\\edc2\";\n}\n.ci-stacked-scrolling-1:before {\n  content: \"\\edc3\";\n}\n.ci-stacked-scrolling-2:before {\n  content: \"\\edc4\";\n}\n.ci-stamp:before {\n  content: \"\\edc5\";\n}\n.ci-star-filled:before {\n  content: \"\\edc6\";\n}\n.ci-star-half:before {\n  content: \"\\edc7\";\n}\n.ci-star-review:before {\n  content: \"\\edc8\";\n}\n.ci-star:before {\n  content: \"\\edc9\";\n}\n.ci-stay-inside:before {\n  content: \"\\edca\";\n}\n.ci-stem-leaf-plot:before {\n  content: \"\\edcb\";\n}\n.ci-stethoscope:before {\n  content: \"\\edcc\";\n}\n.ci-stop-filled-alt:before {\n  content: \"\\edcd\";\n}\n.ci-stop-filled:before {\n  content: \"\\edce\";\n}\n.ci-stop-outline-filled:before {\n  content: \"\\edcf\";\n}\n.ci-stop-outline:before {\n  content: \"\\edd0\";\n}\n.ci-stop:before {\n  content: \"\\edd1\";\n}\n.ci-storage-request:before {\n  content: \"\\edd2\";\n}\n.ci-store:before {\n  content: \"\\edd3\";\n}\n.ci-storm-tracker:before {\n  content: \"\\edd4\";\n}\n.ci-strawberry:before {\n  content: \"\\edd5\";\n}\n.ci-stress-breath-editor:before {\n  content: \"\\edd6\";\n}\n.ci-string-integer:before {\n  content: \"\\edd7\";\n}\n.ci-string-text:before {\n  content: \"\\edd8\";\n}\n.ci-study-next:before {\n  content: \"\\edd9\";\n}\n.ci-study-previous:before {\n  content: \"\\edda\";\n}\n.ci-study-skip:before {\n  content: \"\\eddb\";\n}\n.ci-sub-volume:before {\n  content: \"\\eddc\";\n}\n.ci-subtract-alt:before {\n  content: \"\\eddd\";\n}\n.ci-subtract:before {\n  content: \"\\edde\";\n}\n.ci-summary-kpi:before {\n  content: \"\\eddf\";\n}\n.ci-sun:before {\n  content: \"\\ede0\";\n}\n.ci-sunny:before {\n  content: \"\\ede1\";\n}\n.ci-sunrise:before {\n  content: \"\\ede2\";\n}\n.ci-sunset:before {\n  content: \"\\ede3\";\n}\n.ci-svg:before {\n  content: \"\\ede4\";\n}\n.ci-swim:before {\n  content: \"\\ede5\";\n}\n.ci-switcher:before {\n  content: \"\\ede6\";\n}\n.ci-sys-provision:before {\n  content: \"\\ede7\";\n}\n.ci-t-alt:before {\n  content: \"\\ede8\";\n}\n.ci-t:before {\n  content: \"\\ede9\";\n}\n.ci-table-of-contents:before {\n  content: \"\\edea\";\n}\n.ci-table-split:before {\n  content: \"\\edeb\";\n}\n.ci-table:before {\n  content: \"\\edec\";\n}\n.ci-tablet-landscape:before {\n  content: \"\\eded\";\n}\n.ci-tablet:before {\n  content: \"\\edee\";\n}\n.ci-tag-edit:before {\n  content: \"\\edef\";\n}\n.ci-tag-group:before {\n  content: \"\\edf0\";\n}\n.ci-tag:before {\n  content: \"\\edf1\";\n}\n.ci-task-view:before {\n  content: \"\\edf2\";\n}\n.ci-task:before {\n  content: \"\\edf3\";\n}\n.ci-taste:before {\n  content: \"\\edf4\";\n}\n.ci-taxi:before {\n  content: \"\\edf5\";\n}\n.ci-temperature-feels-like:before {\n  content: \"\\edf6\";\n}\n.ci-temperature-frigid:before {\n  content: \"\\edf7\";\n}\n.ci-temperature-hot:before {\n  content: \"\\edf8\";\n}\n.ci-temperature-inversion:before {\n  content: \"\\edf9\";\n}\n.ci-temperature-max:before {\n  content: \"\\edfa\";\n}\n.ci-temperature-min:before {\n  content: \"\\edfb\";\n}\n.ci-temperature-water:before {\n  content: \"\\edfc\";\n}\n.ci-temperature:before {\n  content: \"\\edfd\";\n}\n.ci-template:before {\n  content: \"\\edfe\";\n}\n.ci-tennis-ball:before {\n  content: \"\\edff\";\n}\n.ci-tennis:before {\n  content: \"\\ee00\";\n}\n.ci-term:before {\n  content: \"\\ee01\";\n}\n.ci-terminal:before {\n  content: \"\\ee02\";\n}\n.ci-text-align-center:before {\n  content: \"\\ee03\";\n}\n.ci-text-align-justify:before {\n  content: \"\\ee04\";\n}\n.ci-text-align-left:before {\n  content: \"\\ee05\";\n}\n.ci-text-align-right:before {\n  content: \"\\ee06\";\n}\n.ci-text-all-caps:before {\n  content: \"\\ee07\";\n}\n.ci-text-annotation-toggle:before {\n  content: \"\\ee08\";\n}\n.ci-text-bold:before {\n  content: \"\\ee09\";\n}\n.ci-text-color:before {\n  content: \"\\ee0a\";\n}\n.ci-text-creation:before {\n  content: \"\\ee0b\";\n}\n.ci-text-fill:before {\n  content: \"\\ee0c\";\n}\n.ci-text-footnote:before {\n  content: \"\\ee0d\";\n}\n.ci-text-highlight:before {\n  content: \"\\ee0e\";\n}\n.ci-text-indent-less:before {\n  content: \"\\ee0f\";\n}\n.ci-text-indent-more:before {\n  content: \"\\ee10\";\n}\n.ci-text-indent:before {\n  content: \"\\ee11\";\n}\n.ci-text-italic:before {\n  content: \"\\ee12\";\n}\n.ci-text-kerning:before {\n  content: \"\\ee13\";\n}\n.ci-text-leading:before {\n  content: \"\\ee14\";\n}\n.ci-text-line-spacing:before {\n  content: \"\\ee15\";\n}\n.ci-text-link-analysis:before {\n  content: \"\\ee16\";\n}\n.ci-text-link:before {\n  content: \"\\ee17\";\n}\n.ci-text-mining-applier:before {\n  content: \"\\ee18\";\n}\n.ci-text-mining:before {\n  content: \"\\ee19\";\n}\n.ci-text-new-line:before {\n  content: \"\\ee1a\";\n}\n.ci-text-scale:before {\n  content: \"\\ee1b\";\n}\n.ci-text-selection:before {\n  content: \"\\ee1c\";\n}\n.ci-text-small-caps:before {\n  content: \"\\ee1d\";\n}\n.ci-text-strikethrough:before {\n  content: \"\\ee1e\";\n}\n.ci-text-subscript:before {\n  content: \"\\ee1f\";\n}\n.ci-text-superscript:before {\n  content: \"\\ee20\";\n}\n.ci-text-tracking:before {\n  content: \"\\ee21\";\n}\n.ci-text-underline:before {\n  content: \"\\ee22\";\n}\n.ci-text-vertical-alignment:before {\n  content: \"\\ee23\";\n}\n.ci-text-wrap:before {\n  content: \"\\ee24\";\n}\n.ci-theater:before {\n  content: \"\\ee25\";\n}\n.ci-this-side-up:before {\n  content: \"\\ee26\";\n}\n.ci-threshold:before {\n  content: \"\\ee27\";\n}\n.ci-thumbnail-1:before {\n  content: \"\\ee28\";\n}\n.ci-thumbnail-2:before {\n  content: \"\\ee29\";\n}\n.ci-thumbnail-preview:before {\n  content: \"\\ee2a\";\n}\n.ci-thumbs-down:before {\n  content: \"\\ee2b\";\n}\n.ci-thumbs-up:before {\n  content: \"\\ee2c\";\n}\n.ci-thunderstorm-scattered-night:before {\n  content: \"\\ee2d\";\n}\n.ci-thunderstorm-scattered:before {\n  content: \"\\ee2e\";\n}\n.ci-thunderstorm-severe:before {\n  content: \"\\ee2f\";\n}\n.ci-thunderstorm-strong:before {\n  content: \"\\ee30\";\n}\n.ci-thunderstorm:before {\n  content: \"\\ee31\";\n}\n.ci-ticket:before {\n  content: \"\\ee32\";\n}\n.ci-tides:before {\n  content: \"\\ee33\";\n}\n.ci-tif:before {\n  content: \"\\ee34\";\n}\n.ci-time-plot:before {\n  content: \"\\ee35\";\n}\n.ci-time:before {\n  content: \"\\ee36\";\n}\n.ci-timer:before {\n  content: \"\\ee37\";\n}\n.ci-tool-box:before {\n  content: \"\\ee38\";\n}\n.ci-tools-alt:before {\n  content: \"\\ee39\";\n}\n.ci-tools:before {\n  content: \"\\ee3a\";\n}\n.ci-tornado-warning:before {\n  content: \"\\ee3b\";\n}\n.ci-tornado:before {\n  content: \"\\ee3c\";\n}\n.ci-touch-1:before {\n  content: \"\\ee3d\";\n}\n.ci-touch-2:before {\n  content: \"\\ee3e\";\n}\n.ci-touch-interaction:before {\n  content: \"\\ee3f\";\n}\n.ci-traffic-cone:before {\n  content: \"\\ee40\";\n}\n.ci-traffic-event:before {\n  content: \"\\ee41\";\n}\n.ci-traffic-flow-incident:before {\n  content: \"\\ee42\";\n}\n.ci-traffic-flow:before {\n  content: \"\\ee43\";\n}\n.ci-traffic-incident:before {\n  content: \"\\ee44\";\n}\n.ci-traffic-weather-incident:before {\n  content: \"\\ee45\";\n}\n.ci-train-heart:before {\n  content: \"\\ee46\";\n}\n.ci-train-ticket:before {\n  content: \"\\ee47\";\n}\n.ci-train-time:before {\n  content: \"\\ee48\";\n}\n.ci-train:before {\n  content: \"\\ee49\";\n}\n.ci-tram:before {\n  content: \"\\ee4a\";\n}\n.ci-transgender:before {\n  content: \"\\ee4b\";\n}\n.ci-translate:before {\n  content: \"\\ee4c\";\n}\n.ci-trash-can:before {\n  content: \"\\ee4d\";\n}\n.ci-tree-view-alt:before {\n  content: \"\\ee4e\";\n}\n.ci-tree-view:before {\n  content: \"\\ee4f\";\n}\n.ci-tree:before {\n  content: \"\\ee50\";\n}\n.ci-trophy-filled:before {\n  content: \"\\ee51\";\n}\n.ci-trophy:before {\n  content: \"\\ee52\";\n}\n.ci-tropical-storm-model-tracks:before {\n  content: \"\\ee53\";\n}\n.ci-tropical-storm-tracks:before {\n  content: \"\\ee54\";\n}\n.ci-tropical-storm:before {\n  content: \"\\ee55\";\n}\n.ci-tropical-warning:before {\n  content: \"\\ee56\";\n}\n.ci-tsv:before {\n  content: \"\\ee57\";\n}\n.ci-two-person-lift:before {\n  content: \"\\ee58\";\n}\n.ci-txt-reference:before {\n  content: \"\\ee59\";\n}\n.ci-txt:before {\n  content: \"\\ee5a\";\n}\n.ci-type-pattern:before {\n  content: \"\\ee5b\";\n}\n.ci-types:before {\n  content: \"\\ee5c\";\n}\n.ci-u1:before {\n  content: \"\\ee5d\";\n}\n.ci-u2:before {\n  content: \"\\ee5e\";\n}\n.ci-u3:before {\n  content: \"\\ee5f\";\n}\n.ci-umbrella:before {\n  content: \"\\ee60\";\n}\n.ci-undefined-filled:before {\n  content: \"\\ee61\";\n}\n.ci-undefined:before {\n  content: \"\\ee62\";\n}\n.ci-undo:before {\n  content: \"\\ee63\";\n}\n.ci-unknown-filled:before {\n  content: \"\\ee64\";\n}\n.ci-unknown:before {\n  content: \"\\ee65\";\n}\n.ci-unlink:before {\n  content: \"\\ee66\";\n}\n.ci-unlocked:before {\n  content: \"\\ee67\";\n}\n.ci-up-to-top:before {\n  content: \"\\ee68\";\n}\n.ci-upgrade:before {\n  content: \"\\ee69\";\n}\n.ci-upload:before {\n  content: \"\\ee6a\";\n}\n.ci-usb:before {\n  content: \"\\ee6b\";\n}\n.ci-user-activity:before {\n  content: \"\\ee6c\";\n}\n.ci-user-admin:before {\n  content: \"\\ee6d\";\n}\n.ci-user-avatar-filled-alt:before {\n  content: \"\\ee6e\";\n}\n.ci-user-avatar-filled:before {\n  content: \"\\ee6f\";\n}\n.ci-user-avatar:before {\n  content: \"\\ee70\";\n}\n.ci-user-certification:before {\n  content: \"\\ee71\";\n}\n.ci-user-data:before {\n  content: \"\\ee72\";\n}\n.ci-user-favorite-alt-filled:before {\n  content: \"\\ee73\";\n}\n.ci-user-favorite-alt:before {\n  content: \"\\ee74\";\n}\n.ci-user-favorite:before {\n  content: \"\\ee75\";\n}\n.ci-user-filled:before {\n  content: \"\\ee76\";\n}\n.ci-user-follow:before {\n  content: \"\\ee77\";\n}\n.ci-user-identification:before {\n  content: \"\\ee78\";\n}\n.ci-user-multiple:before {\n  content: \"\\ee79\";\n}\n.ci-user-online:before {\n  content: \"\\ee7a\";\n}\n.ci-user-profile-alt:before {\n  content: \"\\ee7b\";\n}\n.ci-user-profile:before {\n  content: \"\\ee7c\";\n}\n.ci-user-role:before {\n  content: \"\\ee7d\";\n}\n.ci-user-simulation:before {\n  content: \"\\ee7e\";\n}\n.ci-user-speaker:before {\n  content: \"\\ee7f\";\n}\n.ci-user-x-ray:before {\n  content: \"\\ee80\";\n}\n.ci-user:before {\n  content: \"\\ee81\";\n}\n.ci-uv-index-alt:before {\n  content: \"\\ee82\";\n}\n.ci-uv-index-filled:before {\n  content: \"\\ee83\";\n}\n.ci-uv-index:before {\n  content: \"\\ee84\";\n}\n.ci-van:before {\n  content: \"\\ee85\";\n}\n.ci-video-add:before {\n  content: \"\\ee86\";\n}\n.ci-video-chat:before {\n  content: \"\\ee87\";\n}\n.ci-video-filled:before {\n  content: \"\\ee88\";\n}\n.ci-video-off-filled:before {\n  content: \"\\ee89\";\n}\n.ci-video-off:before {\n  content: \"\\ee8a\";\n}\n.ci-video:before {\n  content: \"\\ee8b\";\n}\n.ci-view-filled:before {\n  content: \"\\ee8c\";\n}\n.ci-view-mode-1:before {\n  content: \"\\ee8d\";\n}\n.ci-view-mode-2:before {\n  content: \"\\ee8e\";\n}\n.ci-view-next:before {\n  content: \"\\ee8f\";\n}\n.ci-view-off-filled:before {\n  content: \"\\ee90\";\n}\n.ci-view-off:before {\n  content: \"\\ee91\";\n}\n.ci-view:before {\n  content: \"\\ee92\";\n}\n.ci-virtual-column-key:before {\n  content: \"\\ee93\";\n}\n.ci-virtual-column:before {\n  content: \"\\ee94\";\n}\n.ci-virtual-machine:before {\n  content: \"\\ee95\";\n}\n.ci-virtual-private-cloud-alt:before {\n  content: \"\\ee96\";\n}\n.ci-virtual-private-cloud:before {\n  content: \"\\ee97\";\n}\n.ci-visual-recognition:before {\n  content: \"\\ee98\";\n}\n.ci-vmdk-disk:before {\n  content: \"\\ee99\";\n}\n.ci-voicemail:before {\n  content: \"\\ee9a\";\n}\n.ci-volume-down-filled:before {\n  content: \"\\ee9b\";\n}\n.ci-volume-down:before {\n  content: \"\\ee9c\";\n}\n.ci-volume-mute-filled:before {\n  content: \"\\ee9d\";\n}\n.ci-volume-mute:before {\n  content: \"\\ee9e\";\n}\n.ci-volume-up-filled:before {\n  content: \"\\ee9f\";\n}\n.ci-volume-up:before {\n  content: \"\\eea0\";\n}\n.ci-vpn:before {\n  content: \"\\eea1\";\n}\n.ci-wallet:before {\n  content: \"\\eea2\";\n}\n.ci-warning-alt-filled:before {\n  content: \"\\eea3\";\n}\n.ci-warning-alt-inverted-filled:before {\n  content: \"\\eea4\";\n}\n.ci-warning-alt-inverted:before {\n  content: \"\\eea5\";\n}\n.ci-warning-alt:before {\n  content: \"\\eea6\";\n}\n.ci-warning-filled:before {\n  content: \"\\eea7\";\n}\n.ci-warning-other:before {\n  content: \"\\eea8\";\n}\n.ci-warning-square-filled:before {\n  content: \"\\eea9\";\n}\n.ci-warning-square:before {\n  content: \"\\eeaa\";\n}\n.ci-warning:before {\n  content: \"\\eeab\";\n}\n.ci-watch:before {\n  content: \"\\eeac\";\n}\n.ci-watson-machine-learning:before {\n  content: \"\\eead\";\n}\n.ci-watson:before {\n  content: \"\\eeae\";\n}\n.ci-wave-direction:before {\n  content: \"\\eeaf\";\n}\n.ci-wave-height:before {\n  content: \"\\eeb0\";\n}\n.ci-wave-period:before {\n  content: \"\\eeb1\";\n}\n.ci-weather-front-cold:before {\n  content: \"\\eeb2\";\n}\n.ci-weather-front-stationary:before {\n  content: \"\\eeb3\";\n}\n.ci-weather-front-warm:before {\n  content: \"\\eeb4\";\n}\n.ci-weather-station:before {\n  content: \"\\eeb5\";\n}\n.ci-websheet:before {\n  content: \"\\eeb6\";\n}\n.ci-wheat:before {\n  content: \"\\eeb7\";\n}\n.ci-wifi-off:before {\n  content: \"\\eeb8\";\n}\n.ci-wifi:before {\n  content: \"\\eeb9\";\n}\n.ci-wikis:before {\n  content: \"\\eeba\";\n}\n.ci-wind-gusts:before {\n  content: \"\\eebb\";\n}\n.ci-wind-stream:before {\n  content: \"\\eebc\";\n}\n.ci-window-auto:before {\n  content: \"\\eebd\";\n}\n.ci-window-base:before {\n  content: \"\\eebe\";\n}\n.ci-window-overlay:before {\n  content: \"\\eebf\";\n}\n.ci-window-preset .path1:before {\n  content: \"\\eec0\";\n  color: rgb(0, 0, 0);\n}\n.ci-window-preset .path2:before {\n  content: \"\\eec1\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-window-preset .path3:before {\n  content: \"\\eec2\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-window-preset .path4:before {\n  content: \"\\eec3\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-window-preset .path5:before {\n  content: \"\\eec4\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-window-preset .path6:before {\n  content: \"\\eec5\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-window-preset .path7:before {\n  content: \"\\eec6\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-window-preset .path8:before {\n  content: \"\\eec7\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-window-preset .path9:before {\n  content: \"\\eec8\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.ci-window-preset .path10:before {\n  content: \"\\eec9\";\n  margin-left: -1em;\n  color: rgb(39, 36, 37);\n}\n.ci-windy-dust:before {\n  content: \"\\eeca\";\n}\n.ci-windy-snow:before {\n  content: \"\\eecb\";\n}\n.ci-windy-strong:before {\n  content: \"\\eecc\";\n}\n.ci-windy:before {\n  content: \"\\eecd\";\n}\n.ci-winter-warning:before {\n  content: \"\\eece\";\n}\n.ci-wintry-mix:before {\n  content: \"\\eecf\";\n}\n.ci-wireless-checkout:before {\n  content: \"\\eed0\";\n}\n.ci-wmv:before {\n  content: \"\\eed1\";\n}\n.ci-word-cloud:before {\n  content: \"\\eed2\";\n}\n.ci-workspace-import:before {\n  content: \"\\eed3\";\n}\n.ci-workspace:before {\n  content: \"\\eed4\";\n}\n.ci-worship-christian:before {\n  content: \"\\eed5\";\n}\n.ci-worship-jewish:before {\n  content: \"\\eed6\";\n}\n.ci-worship-muslim:before {\n  content: \"\\eed7\";\n}\n.ci-worship:before {\n  content: \"\\eed8\";\n}\n.ci-x-axis:before {\n  content: \"\\eed9\";\n}\n.ci-x:before {\n  content: \"\\eeda\";\n}\n.ci-xls:before {\n  content: \"\\eedb\";\n}\n.ci-xml:before {\n  content: \"\\eedc\";\n}\n.ci-y-axis:before {\n  content: \"\\eedd\";\n}\n.ci-y:before {\n  content: \"\\eede\";\n}\n.ci-z-axis:before {\n  content: \"\\eedf\";\n}\n.ci-z:before {\n  content: \"\\eee0\";\n}\n.ci-zip-reference:before {\n  content: \"\\eee1\";\n}\n.ci-zip:before {\n  content: \"\\eee2\";\n}\n.ci-zoom-in:before {\n  content: \"\\eee3\";\n}\n.ci-zoom-out:before {\n  content: \"\\eee4\";\n}\n.ci-zoom-pan:before {\n  content: \"\\eee5\";\n}\n.ci-zoom-reset:before {\n  content: \"\\eee6\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-codicons-pack/ikonli-codicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-codicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.codicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.codicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.codicons.CodiconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.codicons.CodiconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-codicons-pack/src/main/java/org/kordamp/ikonli/codicons/Codicons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.codicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Codicons implements Ikon {\n    ACCOUNT(\"codicon-account\", '\\uEB99'),\n    ACTIVATE_BREAKPOINTS(\"codicon-activate-breakpoints\", '\\uEA97'),\n    ADD(\"codicon-add\", '\\uEA60'),\n    ARCHIVE(\"codicon-archive\", '\\uEA98'),\n    ARROW_BOTH(\"codicon-arrow-both\", '\\uEA99'),\n    ARROW_DOWN(\"codicon-arrow-down\", '\\uEA9A'),\n    ARROW_LEFT(\"codicon-arrow-left\", '\\uEA9B'),\n    ARROW_RIGHT(\"codicon-arrow-right\", '\\uEA9C'),\n    ARROW_SMALL_DOWN(\"codicon-arrow-small-down\", '\\uEA9D'),\n    ARROW_SMALL_LEFT(\"codicon-arrow-small-left\", '\\uEA9E'),\n    ARROW_SMALL_RIGHT(\"codicon-arrow-small-right\", '\\uEA9F'),\n    ARROW_SMALL_UP(\"codicon-arrow-small-up\", '\\uEAA0'),\n    ARROW_UP(\"codicon-arrow-up\", '\\uEAA1'),\n    BEAKER(\"codicon-beaker\", '\\uEA79'),\n    BELL(\"codicon-bell\", '\\uEAA2'),\n    BELL_DOT(\"codicon-bell-dot\", '\\uEB9A'),\n    BOLD(\"codicon-bold\", '\\uEAA3'),\n    BOOK(\"codicon-book\", '\\uEAA4'),\n    BOOKMARK(\"codicon-bookmark\", '\\uEAA5'),\n    BRIEFCASE(\"codicon-briefcase\", '\\uEAAC'),\n    BROADCAST(\"codicon-broadcast\", '\\uEAAD'),\n    BROWSER(\"codicon-browser\", '\\uEAAE'),\n    BUG(\"codicon-bug\", '\\uEAAF'),\n    CALENDAR(\"codicon-calendar\", '\\uEAB0'),\n    CALL_INCOMING(\"codicon-call-incoming\", '\\uEB92'),\n    CALL_OUTGOING(\"codicon-call-outgoing\", '\\uEB93'),\n    CASE_SENSITIVE(\"codicon-case-sensitive\", '\\uEAB1'),\n    CHECK(\"codicon-check\", '\\uEAB2'),\n    CHECKLIST(\"codicon-checklist\", '\\uEAB3'),\n    CHECK_ALL(\"codicon-check-all\", '\\uEBB1'),\n    CHEVRON_DOWN(\"codicon-chevron-down\", '\\uEAB4'),\n    CHEVRON_LEFT(\"codicon-chevron-left\", '\\uEAB5'),\n    CHEVRON_RIGHT(\"codicon-chevron-right\", '\\uEAB6'),\n    CHEVRON_UP(\"codicon-chevron-up\", '\\uEAB7'),\n    CHROME_CLOSE(\"codicon-chrome-close\", '\\uEAB8'),\n    CHROME_MAXIMIZE(\"codicon-chrome-maximize\", '\\uEAB9'),\n    CHROME_MINIMIZE(\"codicon-chrome-minimize\", '\\uEABA'),\n    CHROME_RESTORE(\"codicon-chrome-restore\", '\\uEABB'),\n    CIRCLE_FILLED(\"codicon-circle-filled\", '\\uEA71'),\n    CIRCLE_OUTLINE(\"codicon-circle-outline\", '\\uEABC'),\n    CIRCLE_SLASH(\"codicon-circle-slash\", '\\uEABD'),\n    CIRCUIT_BOARD(\"codicon-circuit-board\", '\\uEABE'),\n    CLEAR_ALL(\"codicon-clear-all\", '\\uEABF'),\n    CLIPPY(\"codicon-clippy\", '\\uEAC0'),\n    CLOSE(\"codicon-close\", '\\uEA76'),\n    CLOSE_ALL(\"codicon-close-all\", '\\uEAC1'),\n    CLOUD(\"codicon-cloud\", '\\uEBAA'),\n    CLOUD_DOWNLOAD(\"codicon-cloud-download\", '\\uEAC2'),\n    CLOUD_UPLOAD(\"codicon-cloud-upload\", '\\uEAC3'),\n    CODE(\"codicon-code\", '\\uEAC4'),\n    COLLAPSE_ALL(\"codicon-collapse-all\", '\\uEAC5'),\n    COLOR_MODE(\"codicon-color-mode\", '\\uEAC6'),\n    COMMENT(\"codicon-comment\", '\\uEA6B'),\n    COMMENT_DISCUSSION(\"codicon-comment-discussion\", '\\uEAC7'),\n    CREDIT_CARD(\"codicon-credit-card\", '\\uEAC9'),\n    DASH(\"codicon-dash\", '\\uEACC'),\n    DASHBOARD(\"codicon-dashboard\", '\\uEACD'),\n    DATABASE(\"codicon-database\", '\\uEACE'),\n    DEBUG(\"codicon-debug\", '\\uEAD8'),\n    DEBUG_ALT(\"codicon-debug-alt\", '\\uEB91'),\n    DEBUG_ALT_SMALL(\"codicon-debug-alt-small\", '\\uEBA8'),\n    DEBUG_BREAKPOINT_CONDITIONAL(\"codicon-debug-breakpoint-conditional\", '\\uEAA7'),\n    DEBUG_BREAKPOINT_CONDITIONAL_UNVERIFIED(\"codicon-debug-breakpoint-conditional-unverified\", '\\uEAA6'),\n    DEBUG_BREAKPOINT_DATA(\"codicon-debug-breakpoint-data\", '\\uEAA9'),\n    DEBUG_BREAKPOINT_DATA_UNVERIFIED(\"codicon-debug-breakpoint-data-unverified\", '\\uEAA8'),\n    DEBUG_BREAKPOINT_FUNCTION(\"codicon-debug-breakpoint-function\", '\\uEB88'),\n    DEBUG_BREAKPOINT_FUNCTION_UNVERIFIED(\"codicon-debug-breakpoint-function-unverified\", '\\uEB87'),\n    DEBUG_BREAKPOINT_LOG(\"codicon-debug-breakpoint-log\", '\\uEAAB'),\n    DEBUG_BREAKPOINT_LOG_UNVERIFIED(\"codicon-debug-breakpoint-log-unverified\", '\\uEAAA'),\n    DEBUG_BREAKPOINT_UNSUPPORTED(\"codicon-debug-breakpoint-unsupported\", '\\uEB8C'),\n    DEBUG_CONSOLE(\"codicon-debug-console\", '\\uEB9B'),\n    DEBUG_CONTINUE(\"codicon-debug-continue\", '\\uEACF'),\n    DEBUG_DISCONNECT(\"codicon-debug-disconnect\", '\\uEAD0'),\n    DEBUG_PAUSE(\"codicon-debug-pause\", '\\uEAD1'),\n    DEBUG_RESTART(\"codicon-debug-restart\", '\\uEAD2'),\n    DEBUG_RESTART_FRAME(\"codicon-debug-restart-frame\", '\\uEB90'),\n    DEBUG_REVERSE_CONTINUE(\"codicon-debug-reverse-continue\", '\\uEB8E'),\n    DEBUG_STACKFRAME(\"codicon-debug-stackframe\", '\\uEB8B'),\n    DEBUG_STACKFRAME_ACTIVE(\"codicon-debug-stackframe-active\", '\\uEB89'),\n    DEBUG_STACKFRAME_DOT(\"codicon-debug-stackframe-dot\", '\\uEB8A'),\n    DEBUG_START(\"codicon-debug-start\", '\\uEAD3'),\n    DEBUG_STEP_BACK(\"codicon-debug-step-back\", '\\uEB8F'),\n    DEBUG_STEP_INTO(\"codicon-debug-step-into\", '\\uEAD4'),\n    DEBUG_STEP_OUT(\"codicon-debug-step-out\", '\\uEAD5'),\n    DEBUG_STEP_OVER(\"codicon-debug-step-over\", '\\uEAD6'),\n    DEBUG_STOP(\"codicon-debug-stop\", '\\uEAD7'),\n    DESKTOP_DOWNLOAD(\"codicon-desktop-download\", '\\uEA78'),\n    DEVICE_CAMERA(\"codicon-device-camera\", '\\uEADA'),\n    DEVICE_CAMERA_VIDEO(\"codicon-device-camera-video\", '\\uEAD9'),\n    DEVICE_MOBILE(\"codicon-device-mobile\", '\\uEADB'),\n    DIFF(\"codicon-diff\", '\\uEAE1'),\n    DIFF_ADDED(\"codicon-diff-added\", '\\uEADC'),\n    DIFF_IGNORED(\"codicon-diff-ignored\", '\\uEADD'),\n    DIFF_MODIFIED(\"codicon-diff-modified\", '\\uEADE'),\n    DIFF_REMOVED(\"codicon-diff-removed\", '\\uEADF'),\n    DIFF_RENAMED(\"codicon-diff-renamed\", '\\uEAE0'),\n    DISCARD(\"codicon-discard\", '\\uEAE2'),\n    EDIT(\"codicon-edit\", '\\uEA73'),\n    EDITOR_LAYOUT(\"codicon-editor-layout\", '\\uEAE3'),\n    ELLIPSIS(\"codicon-ellipsis\", '\\uEA7C'),\n    EMPTY_WINDOW(\"codicon-empty-window\", '\\uEAE4'),\n    ERROR(\"codicon-error\", '\\uEA87'),\n    EXCLUDE(\"codicon-exclude\", '\\uEAE5'),\n    EXPAND_ALL(\"codicon-expand-all\", '\\uEB95'),\n    EXPORT(\"codicon-export\", '\\uEBAC'),\n    EXTENSIONS(\"codicon-extensions\", '\\uEAE6'),\n    EYE(\"codicon-eye\", '\\uEA70'),\n    EYE_CLOSED(\"codicon-eye-closed\", '\\uEAE7'),\n    FEEDBACK(\"codicon-feedback\", '\\uEB96'),\n    FILE(\"codicon-file\", '\\uEA7B'),\n    FILES(\"codicon-files\", '\\uEAF0'),\n    FILE_BINARY(\"codicon-file-binary\", '\\uEAE8'),\n    FILE_CODE(\"codicon-file-code\", '\\uEAE9'),\n    FILE_MEDIA(\"codicon-file-media\", '\\uEAEA'),\n    FILE_PDF(\"codicon-file-pdf\", '\\uEAEB'),\n    FILE_SUBMODULE(\"codicon-file-submodule\", '\\uEAEC'),\n    FILE_SYMLINK_DIRECTORY(\"codicon-file-symlink-directory\", '\\uEAED'),\n    FILE_SYMLINK_FILE(\"codicon-file-symlink-file\", '\\uEAEE'),\n    FILE_ZIP(\"codicon-file-zip\", '\\uEAEF'),\n    FILTER(\"codicon-filter\", '\\uEAF1'),\n    FLAME(\"codicon-flame\", '\\uEAF2'),\n    FOLD(\"codicon-fold\", '\\uEAF5'),\n    FOLDER(\"codicon-folder\", '\\uEA83'),\n    FOLDER_ACTIVE(\"codicon-folder-active\", '\\uEAF6'),\n    FOLDER_OPENED(\"codicon-folder-opened\", '\\uEAF7'),\n    FOLD_DOWN(\"codicon-fold-down\", '\\uEAF3'),\n    FOLD_UP(\"codicon-fold-up\", '\\uEAF4'),\n    GEAR(\"codicon-gear\", '\\uEAF8'),\n    GIFT(\"codicon-gift\", '\\uEAF9'),\n    GIST_SECRET(\"codicon-gist-secret\", '\\uEAFA'),\n    GITHUB(\"codicon-github\", '\\uEA84'),\n    GITHUB_ACTION(\"codicon-github-action\", '\\uEAFF'),\n    GITHUB_ALT(\"codicon-github-alt\", '\\uEB00'),\n    GITHUB_INVERTED(\"codicon-github-inverted\", '\\uEBA1'),\n    GIT_COMMIT(\"codicon-git-commit\", '\\uEAFC'),\n    GIT_COMPARE(\"codicon-git-compare\", '\\uEAFD'),\n    GIT_MERGE(\"codicon-git-merge\", '\\uEAFE'),\n    GIT_PULL_REQUEST(\"codicon-git-pull-request\", '\\uEA64'),\n    GLOBE(\"codicon-globe\", '\\uEB01'),\n    GO_TO_FILE(\"codicon-go-to-file\", '\\uEA94'),\n    GRABBER(\"codicon-grabber\", '\\uEB02'),\n    GRAPH(\"codicon-graph\", '\\uEB03'),\n    GRAPH_LEFT(\"codicon-graph-left\", '\\uEBAD'),\n    GRIPPER(\"codicon-gripper\", '\\uEB04'),\n    GROUP_BY_REF_TYPE(\"codicon-group-by-ref-type\", '\\uEB97'),\n    HEART(\"codicon-heart\", '\\uEB05'),\n    HISTORY(\"codicon-history\", '\\uEA82'),\n    HOME(\"codicon-home\", '\\uEB06'),\n    HORIZONTAL_RULE(\"codicon-horizontal-rule\", '\\uEB07'),\n    HUBOT(\"codicon-hubot\", '\\uEB08'),\n    INBOX(\"codicon-inbox\", '\\uEB09'),\n    INFO(\"codicon-info\", '\\uEA74'),\n    ISSUES(\"codicon-issues\", '\\uEB0C'),\n    ISSUE_CLOSED(\"codicon-issue-closed\", '\\uEB0A'),\n    ISSUE_REOPENED(\"codicon-issue-reopened\", '\\uEB0B'),\n    ITALIC(\"codicon-italic\", '\\uEB0D'),\n    JERSEY(\"codicon-jersey\", '\\uEB0E'),\n    JSON(\"codicon-json\", '\\uEB0F'),\n    KEBAB_VERTICAL(\"codicon-kebab-vertical\", '\\uEB10'),\n    KEY(\"codicon-key\", '\\uEB11'),\n    LAW(\"codicon-law\", '\\uEB12'),\n    LIBRARY(\"codicon-library\", '\\uEB9C'),\n    LIGHTBULB(\"codicon-lightbulb\", '\\uEA61'),\n    LIGHTBULB_AUTOFIX(\"codicon-lightbulb-autofix\", '\\uEB13'),\n    LINK(\"codicon-link\", '\\uEB15'),\n    LINK_EXTERNAL(\"codicon-link-external\", '\\uEB14'),\n    LIST_FILTER(\"codicon-list-filter\", '\\uEB83'),\n    LIST_FLAT(\"codicon-list-flat\", '\\uEB84'),\n    LIST_ORDERED(\"codicon-list-ordered\", '\\uEB16'),\n    LIST_SELECTION(\"codicon-list-selection\", '\\uEB85'),\n    LIST_TREE(\"codicon-list-tree\", '\\uEB86'),\n    LIST_UNORDERED(\"codicon-list-unordered\", '\\uEB17'),\n    LIVE_SHARE(\"codicon-live-share\", '\\uEB18'),\n    LOADING(\"codicon-loading\", '\\uEB19'),\n    LOCATION(\"codicon-location\", '\\uEB1A'),\n    LOCK(\"codicon-lock\", '\\uEA75'),\n    MAGNET(\"codicon-magnet\", '\\uEBAE'),\n    MAIL(\"codicon-mail\", '\\uEB1C'),\n    MAIL_READ(\"codicon-mail-read\", '\\uEB1B'),\n    MARKDOWN(\"codicon-markdown\", '\\uEB1D'),\n    MEGAPHONE(\"codicon-megaphone\", '\\uEB1E'),\n    MENTION(\"codicon-mention\", '\\uEB1F'),\n    MENU(\"codicon-menu\", '\\uEB94'),\n    MERGE(\"codicon-merge\", '\\uEBAB'),\n    MILESTONE(\"codicon-milestone\", '\\uEB20'),\n    MIRROR(\"codicon-mirror\", '\\uEA69'),\n    MORTAR_BOARD(\"codicon-mortar-board\", '\\uEB21'),\n    MOVE(\"codicon-move\", '\\uEB22'),\n    MULTIPLE_WINDOWS(\"codicon-multiple-windows\", '\\uEB23'),\n    MUTE(\"codicon-mute\", '\\uEB24'),\n    NEW_FILE(\"codicon-new-file\", '\\uEA7F'),\n    NEW_FOLDER(\"codicon-new-folder\", '\\uEA80'),\n    NOTE(\"codicon-note\", '\\uEB26'),\n    NOTEBOOK(\"codicon-notebook\", '\\uEBAF'),\n    NO_NEWLINE(\"codicon-no-newline\", '\\uEB25'),\n    OCTOFACE(\"codicon-octoface\", '\\uEB27'),\n    OPEN_PREVIEW(\"codicon-open-preview\", '\\uEB28'),\n    ORGANIZATION(\"codicon-organization\", '\\uEA7E'),\n    OUTPUT(\"codicon-output\", '\\uEB9D'),\n    PACKAGE(\"codicon-package\", '\\uEB29'),\n    PAINTCAN(\"codicon-paintcan\", '\\uEB2A'),\n    PASS(\"codicon-pass\", '\\uEBA4'),\n    PERSON(\"codicon-person\", '\\uEA67'),\n    PIN(\"codicon-pin\", '\\uEB2B'),\n    PINNED(\"codicon-pinned\", '\\uEBA0'),\n    PLAY(\"codicon-play\", '\\uEB2C'),\n    PLAY_CIRCLE(\"codicon-play-circle\", '\\uEBA6'),\n    PLUG(\"codicon-plug\", '\\uEB2D'),\n    PRESERVE_CASE(\"codicon-preserve-case\", '\\uEB2E'),\n    PREVIEW(\"codicon-preview\", '\\uEB2F'),\n    PRIMITIVE_SQUARE(\"codicon-primitive-square\", '\\uEA72'),\n    PROJECT(\"codicon-project\", '\\uEB30'),\n    PULSE(\"codicon-pulse\", '\\uEB31'),\n    QUESTION(\"codicon-question\", '\\uEB32'),\n    QUOTE(\"codicon-quote\", '\\uEB33'),\n    RADIO_TOWER(\"codicon-radio-tower\", '\\uEB34'),\n    REACTIONS(\"codicon-reactions\", '\\uEB35'),\n    RECORD(\"codicon-record\", '\\uEBA7'),\n    RECORD_KEYS(\"codicon-record-keys\", '\\uEA65'),\n    REDO(\"codicon-redo\", '\\uEBB0'),\n    REFERENCES(\"codicon-references\", '\\uEB36'),\n    REFRESH(\"codicon-refresh\", '\\uEB37'),\n    REGEX(\"codicon-regex\", '\\uEB38'),\n    REMOTE(\"codicon-remote\", '\\uEB3A'),\n    REMOTE_EXPLORER(\"codicon-remote-explorer\", '\\uEB39'),\n    REMOVE(\"codicon-remove\", '\\uEB3B'),\n    REPLACE(\"codicon-replace\", '\\uEB3D'),\n    REPLACE_ALL(\"codicon-replace-all\", '\\uEB3C'),\n    REPLY(\"codicon-reply\", '\\uEA7D'),\n    REPO(\"codicon-repo\", '\\uEA62'),\n    REPORT(\"codicon-report\", '\\uEB42'),\n    REPO_CLONE(\"codicon-repo-clone\", '\\uEB3E'),\n    REPO_FORCE_PUSH(\"codicon-repo-force-push\", '\\uEB3F'),\n    REPO_FORKED(\"codicon-repo-forked\", '\\uEA63'),\n    REPO_PULL(\"codicon-repo-pull\", '\\uEB40'),\n    REPO_PUSH(\"codicon-repo-push\", '\\uEB41'),\n    REQUEST_CHANGES(\"codicon-request-changes\", '\\uEB43'),\n    ROCKET(\"codicon-rocket\", '\\uEB44'),\n    ROOT_FOLDER(\"codicon-root-folder\", '\\uEB46'),\n    ROOT_FOLDER_OPENED(\"codicon-root-folder-opened\", '\\uEB45'),\n    RSS(\"codicon-rss\", '\\uEB47'),\n    RUBY(\"codicon-ruby\", '\\uEB48'),\n    RUN_ALL(\"codicon-run-all\", '\\uEB9E'),\n    SAVE(\"codicon-save\", '\\uEB4B'),\n    SAVE_ALL(\"codicon-save-all\", '\\uEB49'),\n    SAVE_AS(\"codicon-save-as\", '\\uEB4A'),\n    SCREEN_FULL(\"codicon-screen-full\", '\\uEB4C'),\n    SCREEN_NORMAL(\"codicon-screen-normal\", '\\uEB4D'),\n    SEARCH(\"codicon-search\", '\\uEA6D'),\n    SEARCH_STOP(\"codicon-search-stop\", '\\uEB4E'),\n    SERVER(\"codicon-server\", '\\uEB50'),\n    SERVER_ENVIRONMENT(\"codicon-server-environment\", '\\uEBA3'),\n    SERVER_PROCESS(\"codicon-server-process\", '\\uEBA2'),\n    SETTINGS(\"codicon-settings\", '\\uEB52'),\n    SETTINGS_GEAR(\"codicon-settings-gear\", '\\uEB51'),\n    SHIELD(\"codicon-shield\", '\\uEB53'),\n    SIGN_IN(\"codicon-sign-in\", '\\uEA6F'),\n    SIGN_OUT(\"codicon-sign-out\", '\\uEA6E'),\n    SMILEY(\"codicon-smiley\", '\\uEB54'),\n    SORT_PRECEDENCE(\"codicon-sort-precedence\", '\\uEB55'),\n    SOURCE_CONTROL(\"codicon-source-control\", '\\uEA68'),\n    SPLIT_HORIZONTAL(\"codicon-split-horizontal\", '\\uEB56'),\n    SPLIT_VERTICAL(\"codicon-split-vertical\", '\\uEB57'),\n    SQUIRREL(\"codicon-squirrel\", '\\uEB58'),\n    STAR_EMPTY(\"codicon-star-empty\", '\\uEA6A'),\n    STAR_FULL(\"codicon-star-full\", '\\uEB59'),\n    STAR_HALF(\"codicon-star-half\", '\\uEB5A'),\n    STOP_CIRCLE(\"codicon-stop-circle\", '\\uEBA5'),\n    SYMBOL_ARRAY(\"codicon-symbol-array\", '\\uEA8A'),\n    SYMBOL_BOOLEAN(\"codicon-symbol-boolean\", '\\uEA8F'),\n    SYMBOL_CLASS(\"codicon-symbol-class\", '\\uEB5B'),\n    SYMBOL_COLOR(\"codicon-symbol-color\", '\\uEB5C'),\n    SYMBOL_CONSTANT(\"codicon-symbol-constant\", '\\uEB5D'),\n    SYMBOL_ENUM(\"codicon-symbol-enum\", '\\uEA95'),\n    SYMBOL_ENUM_MEMBER(\"codicon-symbol-enum-member\", '\\uEB5E'),\n    SYMBOL_EVENT(\"codicon-symbol-event\", '\\uEA86'),\n    SYMBOL_FIELD(\"codicon-symbol-field\", '\\uEB5F'),\n    SYMBOL_FILE(\"codicon-symbol-file\", '\\uEB60'),\n    SYMBOL_INTERFACE(\"codicon-symbol-interface\", '\\uEB61'),\n    SYMBOL_KEY(\"codicon-symbol-key\", '\\uEA93'),\n    SYMBOL_KEYWORD(\"codicon-symbol-keyword\", '\\uEB62'),\n    SYMBOL_METHOD(\"codicon-symbol-method\", '\\uEA8C'),\n    SYMBOL_MISC(\"codicon-symbol-misc\", '\\uEB63'),\n    SYMBOL_NAMESPACE(\"codicon-symbol-namespace\", '\\uEA8B'),\n    SYMBOL_NUMERIC(\"codicon-symbol-numeric\", '\\uEA90'),\n    SYMBOL_OPERATOR(\"codicon-symbol-operator\", '\\uEB64'),\n    SYMBOL_PARAMETER(\"codicon-symbol-parameter\", '\\uEA92'),\n    SYMBOL_PROPERTY(\"codicon-symbol-property\", '\\uEB65'),\n    SYMBOL_RULER(\"codicon-symbol-ruler\", '\\uEA96'),\n    SYMBOL_SNIPPET(\"codicon-symbol-snippet\", '\\uEB66'),\n    SYMBOL_STRING(\"codicon-symbol-string\", '\\uEB8D'),\n    SYMBOL_STRUCTURE(\"codicon-symbol-structure\", '\\uEA91'),\n    SYMBOL_VARIABLE(\"codicon-symbol-variable\", '\\uEA88'),\n    SYNC(\"codicon-sync\", '\\uEA77'),\n    SYNC_IGNORED(\"codicon-sync-ignored\", '\\uEB9F'),\n    TAG(\"codicon-tag\", '\\uEA66'),\n    TASKLIST(\"codicon-tasklist\", '\\uEB67'),\n    TELESCOPE(\"codicon-telescope\", '\\uEB68'),\n    TERMINAL(\"codicon-terminal\", '\\uEA85'),\n    TEXT_SIZE(\"codicon-text-size\", '\\uEB69'),\n    THREE_BARS(\"codicon-three-bars\", '\\uEB6A'),\n    THUMBSDOWN(\"codicon-thumbsdown\", '\\uEB6B'),\n    THUMBSUP(\"codicon-thumbsup\", '\\uEB6C'),\n    TOOLS(\"codicon-tools\", '\\uEB6D'),\n    TRASH(\"codicon-trash\", '\\uEA81'),\n    TRIANGLE_DOWN(\"codicon-triangle-down\", '\\uEB6E'),\n    TRIANGLE_LEFT(\"codicon-triangle-left\", '\\uEB6F'),\n    TRIANGLE_RIGHT(\"codicon-triangle-right\", '\\uEB70'),\n    TRIANGLE_UP(\"codicon-triangle-up\", '\\uEB71'),\n    TWITTER(\"codicon-twitter\", '\\uEB72'),\n    UNFOLD(\"codicon-unfold\", '\\uEB73'),\n    UNGROUP_BY_REF_TYPE(\"codicon-ungroup-by-ref-type\", '\\uEB98'),\n    UNLOCK(\"codicon-unlock\", '\\uEB74'),\n    UNMUTE(\"codicon-unmute\", '\\uEB75'),\n    UNVERIFIED(\"codicon-unverified\", '\\uEB76'),\n    VERIFIED(\"codicon-verified\", '\\uEB77'),\n    VERSIONS(\"codicon-versions\", '\\uEB78'),\n    VM(\"codicon-vm\", '\\uEA7A'),\n    VM_ACTIVE(\"codicon-vm-active\", '\\uEB79'),\n    VM_CONNECT(\"codicon-vm-connect\", '\\uEBA9'),\n    VM_OUTLINE(\"codicon-vm-outline\", '\\uEB7A'),\n    VM_RUNNING(\"codicon-vm-running\", '\\uEB7B'),\n    WARNING(\"codicon-warning\", '\\uEA6C'),\n    WATCH(\"codicon-watch\", '\\uEB7C'),\n    WHITESPACE(\"codicon-whitespace\", '\\uEB7D'),\n    WHOLE_WORD(\"codicon-whole-word\", '\\uEB7E'),\n    WINDOW(\"codicon-window\", '\\uEB7F'),\n    WORD_WRAP(\"codicon-word-wrap\", '\\uEB80'),\n    ZOOM_IN(\"codicon-zoom-in\", '\\uEB81'),\n    ZOOM_OUT(\"codicon-zoom-out\", '\\uEB82');\n\n    public static Codicons findByDescription(String description) {\n        for (Codicons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Codicons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-codicons-pack/src/main/java/org/kordamp/ikonli/codicons/CodiconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.codicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class CodiconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/codicons/0.0.12/fonts/codicon.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"codicon-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Codicons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"codicon\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-codicons-pack/src/main/java/org/kordamp/ikonli/codicons/CodiconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.codicons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class CodiconsIkonProvider implements IkonProvider<Codicons> {\n    @Override\n    public Class<Codicons> getIkon() {\n        return Codicons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-codicons-pack/src/main/resources/META-INF/resources/codicons/0.0.12/css/codicon.css",
    "content": "/*---------------------------------------------------------------------------------------------\n *  Copyright (c) Microsoft Corporation. All rights reserved.\n *  Licensed under the MIT License. See License.txt in the project root for license information.\n *--------------------------------------------------------------------------------------------*/\n\n@font-face {\n\tfont-family: \"codicon\";\n\tsrc: url(\"../fonts/codicon.ttf?669d352dfabff8f6eaa466c8ae820e43\") format(\"truetype\");\n}\n\n[class^=\"codicon-\"], [class*=\" codicon-\"] {\n\tfont-family: 'codicon';\n\tspeak: none;\n\tfont: normal normal normal 16px/1 codicon;\n\tdisplay: inline-block;\n\ttext-decoration: none;\n\ttext-rendering: auto;\n\ttext-align: center;\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n\tuser-select: none;\n\t-webkit-user-select: none;\n\t-ms-user-select: none;\n}\n\n.codicon-add:before { content: \"\\ea60\" }\n.codicon-plus:before { content: \"\\ea60\" }\n.codicon-gist-new:before { content: \"\\ea60\" }\n.codicon-repo-create:before { content: \"\\ea60\" }\n.codicon-lightbulb:before { content: \"\\ea61\" }\n.codicon-light-bulb:before { content: \"\\ea61\" }\n.codicon-repo:before { content: \"\\ea62\" }\n.codicon-repo-delete:before { content: \"\\ea62\" }\n.codicon-gist-fork:before { content: \"\\ea63\" }\n.codicon-repo-forked:before { content: \"\\ea63\" }\n.codicon-git-pull-request:before { content: \"\\ea64\" }\n.codicon-git-pull-request-abandoned:before { content: \"\\ea64\" }\n.codicon-record-keys:before { content: \"\\ea65\" }\n.codicon-keyboard:before { content: \"\\ea65\" }\n.codicon-tag:before { content: \"\\ea66\" }\n.codicon-tag-add:before { content: \"\\ea66\" }\n.codicon-tag-remove:before { content: \"\\ea66\" }\n.codicon-person:before { content: \"\\ea67\" }\n.codicon-person-add:before { content: \"\\ea67\" }\n.codicon-person-follow:before { content: \"\\ea67\" }\n.codicon-person-outline:before { content: \"\\ea67\" }\n.codicon-person-filled:before { content: \"\\ea67\" }\n.codicon-git-branch:before { content: \"\\ea68\" }\n.codicon-git-branch-create:before { content: \"\\ea68\" }\n.codicon-git-branch-delete:before { content: \"\\ea68\" }\n.codicon-source-control:before { content: \"\\ea68\" }\n.codicon-mirror:before { content: \"\\ea69\" }\n.codicon-mirror-public:before { content: \"\\ea69\" }\n.codicon-star:before { content: \"\\ea6a\" }\n.codicon-star-add:before { content: \"\\ea6a\" }\n.codicon-star-delete:before { content: \"\\ea6a\" }\n.codicon-star-empty:before { content: \"\\ea6a\" }\n.codicon-comment:before { content: \"\\ea6b\" }\n.codicon-comment-add:before { content: \"\\ea6b\" }\n.codicon-alert:before { content: \"\\ea6c\" }\n.codicon-warning:before { content: \"\\ea6c\" }\n.codicon-search:before { content: \"\\ea6d\" }\n.codicon-search-save:before { content: \"\\ea6d\" }\n.codicon-log-out:before { content: \"\\ea6e\" }\n.codicon-sign-out:before { content: \"\\ea6e\" }\n.codicon-log-in:before { content: \"\\ea6f\" }\n.codicon-sign-in:before { content: \"\\ea6f\" }\n.codicon-eye:before { content: \"\\ea70\" }\n.codicon-eye-unwatch:before { content: \"\\ea70\" }\n.codicon-eye-watch:before { content: \"\\ea70\" }\n.codicon-circle-filled:before { content: \"\\ea71\" }\n.codicon-primitive-dot:before { content: \"\\ea71\" }\n.codicon-close-dirty:before { content: \"\\ea71\" }\n.codicon-debug-breakpoint:before { content: \"\\ea71\" }\n.codicon-debug-breakpoint-disabled:before { content: \"\\ea71\" }\n.codicon-debug-hint:before { content: \"\\ea71\" }\n.codicon-primitive-square:before { content: \"\\ea72\" }\n.codicon-edit:before { content: \"\\ea73\" }\n.codicon-pencil:before { content: \"\\ea73\" }\n.codicon-info:before { content: \"\\ea74\" }\n.codicon-issue-opened:before { content: \"\\ea74\" }\n.codicon-gist-private:before { content: \"\\ea75\" }\n.codicon-git-fork-private:before { content: \"\\ea75\" }\n.codicon-lock:before { content: \"\\ea75\" }\n.codicon-mirror-private:before { content: \"\\ea75\" }\n.codicon-close:before { content: \"\\ea76\" }\n.codicon-remove-close:before { content: \"\\ea76\" }\n.codicon-x:before { content: \"\\ea76\" }\n.codicon-repo-sync:before { content: \"\\ea77\" }\n.codicon-sync:before { content: \"\\ea77\" }\n.codicon-clone:before { content: \"\\ea78\" }\n.codicon-desktop-download:before { content: \"\\ea78\" }\n.codicon-beaker:before { content: \"\\ea79\" }\n.codicon-microscope:before { content: \"\\ea79\" }\n.codicon-vm:before { content: \"\\ea7a\" }\n.codicon-device-desktop:before { content: \"\\ea7a\" }\n.codicon-file:before { content: \"\\ea7b\" }\n.codicon-file-text:before { content: \"\\ea7b\" }\n.codicon-more:before { content: \"\\ea7c\" }\n.codicon-ellipsis:before { content: \"\\ea7c\" }\n.codicon-kebab-horizontal:before { content: \"\\ea7c\" }\n.codicon-mail-reply:before { content: \"\\ea7d\" }\n.codicon-reply:before { content: \"\\ea7d\" }\n.codicon-organization:before { content: \"\\ea7e\" }\n.codicon-organization-filled:before { content: \"\\ea7e\" }\n.codicon-organization-outline:before { content: \"\\ea7e\" }\n.codicon-new-file:before { content: \"\\ea7f\" }\n.codicon-file-add:before { content: \"\\ea7f\" }\n.codicon-new-folder:before { content: \"\\ea80\" }\n.codicon-file-directory-create:before { content: \"\\ea80\" }\n.codicon-trash:before { content: \"\\ea81\" }\n.codicon-trashcan:before { content: \"\\ea81\" }\n.codicon-history:before { content: \"\\ea82\" }\n.codicon-clock:before { content: \"\\ea82\" }\n.codicon-folder:before { content: \"\\ea83\" }\n.codicon-file-directory:before { content: \"\\ea83\" }\n.codicon-symbol-folder:before { content: \"\\ea83\" }\n.codicon-logo-github:before { content: \"\\ea84\" }\n.codicon-mark-github:before { content: \"\\ea84\" }\n.codicon-github:before { content: \"\\ea84\" }\n.codicon-terminal:before { content: \"\\ea85\" }\n.codicon-console:before { content: \"\\ea85\" }\n.codicon-repl:before { content: \"\\ea85\" }\n.codicon-zap:before { content: \"\\ea86\" }\n.codicon-symbol-event:before { content: \"\\ea86\" }\n.codicon-error:before { content: \"\\ea87\" }\n.codicon-stop:before { content: \"\\ea87\" }\n.codicon-variable:before { content: \"\\ea88\" }\n.codicon-symbol-variable:before { content: \"\\ea88\" }\n.codicon-array:before { content: \"\\ea8a\" }\n.codicon-symbol-array:before { content: \"\\ea8a\" }\n.codicon-symbol-module:before { content: \"\\ea8b\" }\n.codicon-symbol-package:before { content: \"\\ea8b\" }\n.codicon-symbol-namespace:before { content: \"\\ea8b\" }\n.codicon-symbol-object:before { content: \"\\ea8b\" }\n.codicon-symbol-method:before { content: \"\\ea8c\" }\n.codicon-symbol-function:before { content: \"\\ea8c\" }\n.codicon-symbol-constructor:before { content: \"\\ea8c\" }\n.codicon-symbol-boolean:before { content: \"\\ea8f\" }\n.codicon-symbol-null:before { content: \"\\ea8f\" }\n.codicon-symbol-numeric:before { content: \"\\ea90\" }\n.codicon-symbol-number:before { content: \"\\ea90\" }\n.codicon-symbol-structure:before { content: \"\\ea91\" }\n.codicon-symbol-struct:before { content: \"\\ea91\" }\n.codicon-symbol-parameter:before { content: \"\\ea92\" }\n.codicon-symbol-type-parameter:before { content: \"\\ea92\" }\n.codicon-symbol-key:before { content: \"\\ea93\" }\n.codicon-symbol-text:before { content: \"\\ea93\" }\n.codicon-symbol-reference:before { content: \"\\ea94\" }\n.codicon-go-to-file:before { content: \"\\ea94\" }\n.codicon-symbol-enum:before { content: \"\\ea95\" }\n.codicon-symbol-value:before { content: \"\\ea95\" }\n.codicon-symbol-ruler:before { content: \"\\ea96\" }\n.codicon-symbol-unit:before { content: \"\\ea96\" }\n.codicon-activate-breakpoints:before { content: \"\\ea97\" }\n.codicon-archive:before { content: \"\\ea98\" }\n.codicon-arrow-both:before { content: \"\\ea99\" }\n.codicon-arrow-down:before { content: \"\\ea9a\" }\n.codicon-arrow-left:before { content: \"\\ea9b\" }\n.codicon-arrow-right:before { content: \"\\ea9c\" }\n.codicon-arrow-small-down:before { content: \"\\ea9d\" }\n.codicon-arrow-small-left:before { content: \"\\ea9e\" }\n.codicon-arrow-small-right:before { content: \"\\ea9f\" }\n.codicon-arrow-small-up:before { content: \"\\eaa0\" }\n.codicon-arrow-up:before { content: \"\\eaa1\" }\n.codicon-bell:before { content: \"\\eaa2\" }\n.codicon-bold:before { content: \"\\eaa3\" }\n.codicon-book:before { content: \"\\eaa4\" }\n.codicon-bookmark:before { content: \"\\eaa5\" }\n.codicon-debug-breakpoint-conditional-unverified:before { content: \"\\eaa6\" }\n.codicon-debug-breakpoint-conditional:before { content: \"\\eaa7\" }\n.codicon-debug-breakpoint-conditional-disabled:before { content: \"\\eaa7\" }\n.codicon-debug-breakpoint-data-unverified:before { content: \"\\eaa8\" }\n.codicon-debug-breakpoint-data:before { content: \"\\eaa9\" }\n.codicon-debug-breakpoint-data-disabled:before { content: \"\\eaa9\" }\n.codicon-debug-breakpoint-log-unverified:before { content: \"\\eaaa\" }\n.codicon-debug-breakpoint-log:before { content: \"\\eaab\" }\n.codicon-debug-breakpoint-log-disabled:before { content: \"\\eaab\" }\n.codicon-briefcase:before { content: \"\\eaac\" }\n.codicon-broadcast:before { content: \"\\eaad\" }\n.codicon-browser:before { content: \"\\eaae\" }\n.codicon-bug:before { content: \"\\eaaf\" }\n.codicon-calendar:before { content: \"\\eab0\" }\n.codicon-case-sensitive:before { content: \"\\eab1\" }\n.codicon-check:before { content: \"\\eab2\" }\n.codicon-checklist:before { content: \"\\eab3\" }\n.codicon-chevron-down:before { content: \"\\eab4\" }\n.codicon-chevron-left:before { content: \"\\eab5\" }\n.codicon-chevron-right:before { content: \"\\eab6\" }\n.codicon-chevron-up:before { content: \"\\eab7\" }\n.codicon-chrome-close:before { content: \"\\eab8\" }\n.codicon-chrome-maximize:before { content: \"\\eab9\" }\n.codicon-chrome-minimize:before { content: \"\\eaba\" }\n.codicon-chrome-restore:before { content: \"\\eabb\" }\n.codicon-circle-outline:before { content: \"\\eabc\" }\n.codicon-debug-breakpoint-unverified:before { content: \"\\eabc\" }\n.codicon-circle-slash:before { content: \"\\eabd\" }\n.codicon-circuit-board:before { content: \"\\eabe\" }\n.codicon-clear-all:before { content: \"\\eabf\" }\n.codicon-clippy:before { content: \"\\eac0\" }\n.codicon-close-all:before { content: \"\\eac1\" }\n.codicon-cloud-download:before { content: \"\\eac2\" }\n.codicon-cloud-upload:before { content: \"\\eac3\" }\n.codicon-code:before { content: \"\\eac4\" }\n.codicon-collapse-all:before { content: \"\\eac5\" }\n.codicon-color-mode:before { content: \"\\eac6\" }\n.codicon-comment-discussion:before { content: \"\\eac7\" }\n.codicon-credit-card:before { content: \"\\eac9\" }\n.codicon-dash:before { content: \"\\eacc\" }\n.codicon-dashboard:before { content: \"\\eacd\" }\n.codicon-database:before { content: \"\\eace\" }\n.codicon-debug-continue:before { content: \"\\eacf\" }\n.codicon-debug-disconnect:before { content: \"\\ead0\" }\n.codicon-debug-pause:before { content: \"\\ead1\" }\n.codicon-debug-restart:before { content: \"\\ead2\" }\n.codicon-debug-start:before { content: \"\\ead3\" }\n.codicon-debug-step-into:before { content: \"\\ead4\" }\n.codicon-debug-step-out:before { content: \"\\ead5\" }\n.codicon-debug-step-over:before { content: \"\\ead6\" }\n.codicon-debug-stop:before { content: \"\\ead7\" }\n.codicon-debug:before { content: \"\\ead8\" }\n.codicon-device-camera-video:before { content: \"\\ead9\" }\n.codicon-device-camera:before { content: \"\\eada\" }\n.codicon-device-mobile:before { content: \"\\eadb\" }\n.codicon-diff-added:before { content: \"\\eadc\" }\n.codicon-diff-ignored:before { content: \"\\eadd\" }\n.codicon-diff-modified:before { content: \"\\eade\" }\n.codicon-diff-removed:before { content: \"\\eadf\" }\n.codicon-diff-renamed:before { content: \"\\eae0\" }\n.codicon-diff:before { content: \"\\eae1\" }\n.codicon-discard:before { content: \"\\eae2\" }\n.codicon-editor-layout:before { content: \"\\eae3\" }\n.codicon-empty-window:before { content: \"\\eae4\" }\n.codicon-exclude:before { content: \"\\eae5\" }\n.codicon-extensions:before { content: \"\\eae6\" }\n.codicon-eye-closed:before { content: \"\\eae7\" }\n.codicon-file-binary:before { content: \"\\eae8\" }\n.codicon-file-code:before { content: \"\\eae9\" }\n.codicon-file-media:before { content: \"\\eaea\" }\n.codicon-file-pdf:before { content: \"\\eaeb\" }\n.codicon-file-submodule:before { content: \"\\eaec\" }\n.codicon-file-symlink-directory:before { content: \"\\eaed\" }\n.codicon-file-symlink-file:before { content: \"\\eaee\" }\n.codicon-file-zip:before { content: \"\\eaef\" }\n.codicon-files:before { content: \"\\eaf0\" }\n.codicon-filter:before { content: \"\\eaf1\" }\n.codicon-flame:before { content: \"\\eaf2\" }\n.codicon-fold-down:before { content: \"\\eaf3\" }\n.codicon-fold-up:before { content: \"\\eaf4\" }\n.codicon-fold:before { content: \"\\eaf5\" }\n.codicon-folder-active:before { content: \"\\eaf6\" }\n.codicon-folder-opened:before { content: \"\\eaf7\" }\n.codicon-gear:before { content: \"\\eaf8\" }\n.codicon-gift:before { content: \"\\eaf9\" }\n.codicon-gist-secret:before { content: \"\\eafa\" }\n.codicon-gist:before { content: \"\\eafb\" }\n.codicon-git-commit:before { content: \"\\eafc\" }\n.codicon-git-compare:before { content: \"\\eafd\" }\n.codicon-compare-changes:before { content: \"\\eafd\" }\n.codicon-git-merge:before { content: \"\\eafe\" }\n.codicon-github-action:before { content: \"\\eaff\" }\n.codicon-github-alt:before { content: \"\\eb00\" }\n.codicon-globe:before { content: \"\\eb01\" }\n.codicon-grabber:before { content: \"\\eb02\" }\n.codicon-graph:before { content: \"\\eb03\" }\n.codicon-gripper:before { content: \"\\eb04\" }\n.codicon-heart:before { content: \"\\eb05\" }\n.codicon-home:before { content: \"\\eb06\" }\n.codicon-horizontal-rule:before { content: \"\\eb07\" }\n.codicon-hubot:before { content: \"\\eb08\" }\n.codicon-inbox:before { content: \"\\eb09\" }\n.codicon-issue-closed:before { content: \"\\eb0a\" }\n.codicon-issue-reopened:before { content: \"\\eb0b\" }\n.codicon-issues:before { content: \"\\eb0c\" }\n.codicon-italic:before { content: \"\\eb0d\" }\n.codicon-jersey:before { content: \"\\eb0e\" }\n.codicon-json:before { content: \"\\eb0f\" }\n.codicon-kebab-vertical:before { content: \"\\eb10\" }\n.codicon-key:before { content: \"\\eb11\" }\n.codicon-law:before { content: \"\\eb12\" }\n.codicon-lightbulb-autofix:before { content: \"\\eb13\" }\n.codicon-link-external:before { content: \"\\eb14\" }\n.codicon-link:before { content: \"\\eb15\" }\n.codicon-list-ordered:before { content: \"\\eb16\" }\n.codicon-list-unordered:before { content: \"\\eb17\" }\n.codicon-live-share:before { content: \"\\eb18\" }\n.codicon-loading:before { content: \"\\eb19\" }\n.codicon-location:before { content: \"\\eb1a\" }\n.codicon-mail-read:before { content: \"\\eb1b\" }\n.codicon-mail:before { content: \"\\eb1c\" }\n.codicon-markdown:before { content: \"\\eb1d\" }\n.codicon-megaphone:before { content: \"\\eb1e\" }\n.codicon-mention:before { content: \"\\eb1f\" }\n.codicon-milestone:before { content: \"\\eb20\" }\n.codicon-mortar-board:before { content: \"\\eb21\" }\n.codicon-move:before { content: \"\\eb22\" }\n.codicon-multiple-windows:before { content: \"\\eb23\" }\n.codicon-mute:before { content: \"\\eb24\" }\n.codicon-no-newline:before { content: \"\\eb25\" }\n.codicon-note:before { content: \"\\eb26\" }\n.codicon-octoface:before { content: \"\\eb27\" }\n.codicon-open-preview:before { content: \"\\eb28\" }\n.codicon-package:before { content: \"\\eb29\" }\n.codicon-paintcan:before { content: \"\\eb2a\" }\n.codicon-pin:before { content: \"\\eb2b\" }\n.codicon-play:before { content: \"\\eb2c\" }\n.codicon-run:before { content: \"\\eb2c\" }\n.codicon-plug:before { content: \"\\eb2d\" }\n.codicon-preserve-case:before { content: \"\\eb2e\" }\n.codicon-preview:before { content: \"\\eb2f\" }\n.codicon-project:before { content: \"\\eb30\" }\n.codicon-pulse:before { content: \"\\eb31\" }\n.codicon-question:before { content: \"\\eb32\" }\n.codicon-quote:before { content: \"\\eb33\" }\n.codicon-radio-tower:before { content: \"\\eb34\" }\n.codicon-reactions:before { content: \"\\eb35\" }\n.codicon-references:before { content: \"\\eb36\" }\n.codicon-refresh:before { content: \"\\eb37\" }\n.codicon-regex:before { content: \"\\eb38\" }\n.codicon-remote-explorer:before { content: \"\\eb39\" }\n.codicon-remote:before { content: \"\\eb3a\" }\n.codicon-remove:before { content: \"\\eb3b\" }\n.codicon-replace-all:before { content: \"\\eb3c\" }\n.codicon-replace:before { content: \"\\eb3d\" }\n.codicon-repo-clone:before { content: \"\\eb3e\" }\n.codicon-repo-force-push:before { content: \"\\eb3f\" }\n.codicon-repo-pull:before { content: \"\\eb40\" }\n.codicon-repo-push:before { content: \"\\eb41\" }\n.codicon-report:before { content: \"\\eb42\" }\n.codicon-request-changes:before { content: \"\\eb43\" }\n.codicon-rocket:before { content: \"\\eb44\" }\n.codicon-root-folder-opened:before { content: \"\\eb45\" }\n.codicon-root-folder:before { content: \"\\eb46\" }\n.codicon-rss:before { content: \"\\eb47\" }\n.codicon-ruby:before { content: \"\\eb48\" }\n.codicon-save-all:before { content: \"\\eb49\" }\n.codicon-save-as:before { content: \"\\eb4a\" }\n.codicon-save:before { content: \"\\eb4b\" }\n.codicon-screen-full:before { content: \"\\eb4c\" }\n.codicon-screen-normal:before { content: \"\\eb4d\" }\n.codicon-search-stop:before { content: \"\\eb4e\" }\n.codicon-server:before { content: \"\\eb50\" }\n.codicon-settings-gear:before { content: \"\\eb51\" }\n.codicon-settings:before { content: \"\\eb52\" }\n.codicon-shield:before { content: \"\\eb53\" }\n.codicon-smiley:before { content: \"\\eb54\" }\n.codicon-sort-precedence:before { content: \"\\eb55\" }\n.codicon-split-horizontal:before { content: \"\\eb56\" }\n.codicon-split-vertical:before { content: \"\\eb57\" }\n.codicon-squirrel:before { content: \"\\eb58\" }\n.codicon-star-full:before { content: \"\\eb59\" }\n.codicon-star-half:before { content: \"\\eb5a\" }\n.codicon-symbol-class:before { content: \"\\eb5b\" }\n.codicon-symbol-color:before { content: \"\\eb5c\" }\n.codicon-symbol-constant:before { content: \"\\eb5d\" }\n.codicon-symbol-enum-member:before { content: \"\\eb5e\" }\n.codicon-symbol-field:before { content: \"\\eb5f\" }\n.codicon-symbol-file:before { content: \"\\eb60\" }\n.codicon-symbol-interface:before { content: \"\\eb61\" }\n.codicon-symbol-keyword:before { content: \"\\eb62\" }\n.codicon-symbol-misc:before { content: \"\\eb63\" }\n.codicon-symbol-operator:before { content: \"\\eb64\" }\n.codicon-symbol-property:before { content: \"\\eb65\" }\n.codicon-wrench:before { content: \"\\eb65\" }\n.codicon-wrench-subaction:before { content: \"\\eb65\" }\n.codicon-symbol-snippet:before { content: \"\\eb66\" }\n.codicon-tasklist:before { content: \"\\eb67\" }\n.codicon-telescope:before { content: \"\\eb68\" }\n.codicon-text-size:before { content: \"\\eb69\" }\n.codicon-three-bars:before { content: \"\\eb6a\" }\n.codicon-thumbsdown:before { content: \"\\eb6b\" }\n.codicon-thumbsup:before { content: \"\\eb6c\" }\n.codicon-tools:before { content: \"\\eb6d\" }\n.codicon-triangle-down:before { content: \"\\eb6e\" }\n.codicon-triangle-left:before { content: \"\\eb6f\" }\n.codicon-triangle-right:before { content: \"\\eb70\" }\n.codicon-triangle-up:before { content: \"\\eb71\" }\n.codicon-twitter:before { content: \"\\eb72\" }\n.codicon-unfold:before { content: \"\\eb73\" }\n.codicon-unlock:before { content: \"\\eb74\" }\n.codicon-unmute:before { content: \"\\eb75\" }\n.codicon-unverified:before { content: \"\\eb76\" }\n.codicon-verified:before { content: \"\\eb77\" }\n.codicon-versions:before { content: \"\\eb78\" }\n.codicon-vm-active:before { content: \"\\eb79\" }\n.codicon-vm-outline:before { content: \"\\eb7a\" }\n.codicon-vm-running:before { content: \"\\eb7b\" }\n.codicon-watch:before { content: \"\\eb7c\" }\n.codicon-whitespace:before { content: \"\\eb7d\" }\n.codicon-whole-word:before { content: \"\\eb7e\" }\n.codicon-window:before { content: \"\\eb7f\" }\n.codicon-word-wrap:before { content: \"\\eb80\" }\n.codicon-zoom-in:before { content: \"\\eb81\" }\n.codicon-zoom-out:before { content: \"\\eb82\" }\n.codicon-list-filter:before { content: \"\\eb83\" }\n.codicon-list-flat:before { content: \"\\eb84\" }\n.codicon-list-selection:before { content: \"\\eb85\" }\n.codicon-selection:before { content: \"\\eb85\" }\n.codicon-list-tree:before { content: \"\\eb86\" }\n.codicon-debug-breakpoint-function-unverified:before { content: \"\\eb87\" }\n.codicon-debug-breakpoint-function:before { content: \"\\eb88\" }\n.codicon-debug-breakpoint-function-disabled:before { content: \"\\eb88\" }\n.codicon-debug-stackframe-active:before { content: \"\\eb89\" }\n.codicon-debug-stackframe-dot:before { content: \"\\eb8a\" }\n.codicon-debug-stackframe:before { content: \"\\eb8b\" }\n.codicon-debug-stackframe-focused:before { content: \"\\eb8b\" }\n.codicon-debug-breakpoint-unsupported:before { content: \"\\eb8c\" }\n.codicon-symbol-string:before { content: \"\\eb8d\" }\n.codicon-debug-reverse-continue:before { content: \"\\eb8e\" }\n.codicon-debug-step-back:before { content: \"\\eb8f\" }\n.codicon-debug-restart-frame:before { content: \"\\eb90\" }\n.codicon-debug-alt:before { content: \"\\eb91\" }\n.codicon-call-incoming:before { content: \"\\eb92\" }\n.codicon-call-outgoing:before { content: \"\\eb93\" }\n.codicon-menu:before { content: \"\\eb94\" }\n.codicon-expand-all:before { content: \"\\eb95\" }\n.codicon-feedback:before { content: \"\\eb96\" }\n.codicon-group-by-ref-type:before { content: \"\\eb97\" }\n.codicon-ungroup-by-ref-type:before { content: \"\\eb98\" }\n.codicon-account:before { content: \"\\eb99\" }\n.codicon-bell-dot:before { content: \"\\eb9a\" }\n.codicon-debug-console:before { content: \"\\eb9b\" }\n.codicon-library:before { content: \"\\eb9c\" }\n.codicon-output:before { content: \"\\eb9d\" }\n.codicon-run-all:before { content: \"\\eb9e\" }\n.codicon-sync-ignored:before { content: \"\\eb9f\" }\n.codicon-pinned:before { content: \"\\eba0\" }\n.codicon-github-inverted:before { content: \"\\eba1\" }\n.codicon-server-process:before { content: \"\\eba2\" }\n.codicon-server-environment:before { content: \"\\eba3\" }\n.codicon-pass:before { content: \"\\eba4\" }\n.codicon-stop-circle:before { content: \"\\eba5\" }\n.codicon-play-circle:before { content: \"\\eba6\" }\n.codicon-record:before { content: \"\\eba7\" }\n.codicon-debug-alt-small:before { content: \"\\eba8\" }\n.codicon-vm-connect:before { content: \"\\eba9\" }\n.codicon-cloud:before { content: \"\\ebaa\" }\n.codicon-merge:before { content: \"\\ebab\" }\n.codicon-export:before { content: \"\\ebac\" }\n.codicon-graph-left:before { content: \"\\ebad\" }\n.codicon-magnet:before { content: \"\\ebae\" }\n.codicon-notebook:before { content: \"\\ebaf\" }\n.codicon-redo:before { content: \"\\ebb0\" }\n.codicon-check-all:before { content: \"\\ebb1\" }\n"
  },
  {
    "path": "icon-packs/ikonli-coreui-pack/ikonli-coreui-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-coreui-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.coreui {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.coreui;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.coreui.CoreUiBrandsIkonHandler,\n            org.kordamp.ikonli.coreui.CoreUiFreeIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.coreui.CoreUiBrandsIkonProvider,\n            org.kordamp.ikonli.coreui.CoreUiFreeIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-coreui-pack/src/main/java/org/kordamp/ikonli/coreui/CoreUiBrands.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.coreui;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum CoreUiBrands implements Ikon {\n    ABOUT_ME(\"cib-about-me\", '\\uea03'),\n    ABSTRACT(\"cib-abstract\", '\\uea04'),\n    ACM(\"cib-acm\", '\\uea05'),\n    ADDTHIS(\"cib-addthis\", '\\uea06'),\n    ADGUARD(\"cib-adguard\", '\\uea07'),\n    ADOBE(\"cib-adobe\", '\\uea08'),\n    ADOBE_ACROBAT_READER(\"cib-adobe-acrobat-reader\", '\\uea09'),\n    ADOBE_AFTER_EFFECTS(\"cib-adobe-after-effects\", '\\uea0a'),\n    ADOBE_AUDITION(\"cib-adobe-audition\", '\\uea0b'),\n    ADOBE_CREATIVE_CLOUD(\"cib-adobe-creative-cloud\", '\\uea0c'),\n    ADOBE_DREAMWEAVER(\"cib-adobe-dreamweaver\", '\\uea0d'),\n    ADOBE_ILLUSTRATOR(\"cib-adobe-illustrator\", '\\uea0e'),\n    ADOBE_INDESIGN(\"cib-adobe-indesign\", '\\uea0f'),\n    ADOBE_LIGHTROOM(\"cib-adobe-lightroom\", '\\uea10'),\n    ADOBE_LIGHTROOM_CLASSIC(\"cib-adobe-lightroom-classic\", '\\uea11'),\n    ADOBE_PHOTOSHOP(\"cib-adobe-photoshop\", '\\uea12'),\n    ADOBE_PREMIERE(\"cib-adobe-premiere\", '\\uea13'),\n    ADOBE_TYPEKIT(\"cib-adobe-typekit\", '\\uea14'),\n    ADOBE_XD(\"cib-adobe-xd\", '\\uea15'),\n    AIRBNB(\"cib-airbnb\", '\\uea16'),\n    ALGOLIA(\"cib-algolia\", '\\uea17'),\n    ALIPAY(\"cib-alipay\", '\\uea18'),\n    ALLOCINE(\"cib-allocine\", '\\uea19'),\n    AMAZON(\"cib-amazon\", '\\uea1a'),\n    AMAZON_AWS(\"cib-amazon-aws\", '\\uea1b'),\n    AMAZON_PAY(\"cib-amazon-pay\", '\\uea1c'),\n    AMD(\"cib-amd\", '\\uea1d'),\n    AMERICAN_EXPRESS(\"cib-american-express\", '\\uea1e'),\n    ANACONDA(\"cib-anaconda\", '\\uea1f'),\n    ANALOGUE(\"cib-analogue\", '\\uea20'),\n    ANDROID(\"cib-android\", '\\uea21'),\n    ANDROID_ALT(\"cib-android-alt\", '\\uea22'),\n    ANGELLIST(\"cib-angellist\", '\\uea23'),\n    ANGULAR(\"cib-angular\", '\\uea24'),\n    ANGULAR_UNIVERSAL(\"cib-angular-universal\", '\\uea25'),\n    ANSIBLE(\"cib-ansible\", '\\uea26'),\n    APACHE(\"cib-apache\", '\\uea27'),\n    APACHE_AIRFLOW(\"cib-apache-airflow\", '\\uea28'),\n    APACHE_FLINK(\"cib-apache-flink\", '\\uea29'),\n    APACHE_SPARK(\"cib-apache-spark\", '\\uea2a'),\n    APPLE(\"cib-apple\", '\\uea2d'),\n    APPLE_MUSIC(\"cib-apple-music\", '\\uea2e'),\n    APPLE_PAY(\"cib-apple-pay\", '\\uea2f'),\n    APPLE_PODCASTS(\"cib-apple-podcasts\", '\\uea30'),\n    APPVEYOR(\"cib-appveyor\", '\\uea31'),\n    APP_STORE(\"cib-app-store\", '\\uea2b'),\n    APP_STORE_IOS(\"cib-app-store-ios\", '\\uea2c'),\n    ARAL(\"cib-aral\", '\\uea32'),\n    ARCHIVE_OF_OUR_OWN(\"cib-archive-of-our-own\", '\\uea34'),\n    ARCH_LINUX(\"cib-arch-linux\", '\\uea33'),\n    ARDUINO(\"cib-arduino\", '\\uea35'),\n    ARTSTATION(\"cib-artstation\", '\\uea36'),\n    ARXIV(\"cib-arxiv\", '\\uea37'),\n    ASANA(\"cib-asana\", '\\uea38'),\n    ATLASSIAN(\"cib-atlassian\", '\\uea3a'),\n    ATOM(\"cib-atom\", '\\uea3b'),\n    AT_AND_T(\"cib-at-and-t\", '\\uea39'),\n    AUDIBLE(\"cib-audible\", '\\uea3c'),\n    AURELIA(\"cib-aurelia\", '\\uea3d'),\n    AUTH0(\"cib-auth0\", '\\uea3e'),\n    AUTOMATIC(\"cib-automatic\", '\\uea3f'),\n    AUTOTASK(\"cib-autotask\", '\\uea40'),\n    AVENTRIX(\"cib-aventrix\", '\\uea41'),\n    AZURE_ARTIFACTS(\"cib-azure-artifacts\", '\\uea42'),\n    AZURE_DEVOPS(\"cib-azure-devops\", '\\uea43'),\n    AZURE_PIPELINES(\"cib-azure-pipelines\", '\\uea44'),\n    BABEL(\"cib-babel\", '\\uea45'),\n    BAIDU(\"cib-baidu\", '\\uea46'),\n    BAMBOO(\"cib-bamboo\", '\\uea47'),\n    BANCONTACT(\"cib-bancontact\", '\\uea48'),\n    BANDCAMP(\"cib-bandcamp\", '\\uea49'),\n    BASECAMP(\"cib-basecamp\", '\\uea4a'),\n    BATHASU(\"cib-bathasu\", '\\uea4b'),\n    BEHANCE(\"cib-behance\", '\\uea4c'),\n    BIG_CARTEL(\"cib-big-cartel\", '\\uea4d'),\n    BING(\"cib-bing\", '\\uea4e'),\n    BIT(\"cib-bit\", '\\uea4f'),\n    BITBUCKET(\"cib-bitbucket\", '\\uea50'),\n    BITCOIN(\"cib-bitcoin\", '\\uea51'),\n    BITDEFENDER(\"cib-bitdefender\", '\\uea52'),\n    BITLY(\"cib-bitly\", '\\uea53'),\n    BLACKBERRY(\"cib-blackberry\", '\\uea54'),\n    BLENDER(\"cib-blender\", '\\uea55'),\n    BLOGGER(\"cib-blogger\", '\\uea56'),\n    BLOGGER_B(\"cib-blogger-b\", '\\uea57'),\n    BLUETOOTH(\"cib-bluetooth\", '\\uea58'),\n    BLUETOOTH_B(\"cib-bluetooth-b\", '\\uea59'),\n    BOEING(\"cib-boeing\", '\\uea5a'),\n    BOOST(\"cib-boost\", '\\uea5b'),\n    BOOTSTRAP(\"cib-bootstrap\", '\\uea5c'),\n    BOWER(\"cib-bower\", '\\uea5d'),\n    BRAND_AI(\"cib-brand-ai\", '\\uea5e'),\n    BRAVE(\"cib-brave\", '\\uea5f'),\n    BTC(\"cib-btc\", '\\uea60'),\n    BUDDY(\"cib-buddy\", '\\uea61'),\n    BUFFER(\"cib-buffer\", '\\uea62'),\n    BUYSELLADS(\"cib-buysellads\", '\\uea64'),\n    BUY_ME_A_COFFEE(\"cib-buy-me-a-coffee\", '\\uea63'),\n    BUZZFEED(\"cib-buzzfeed\", '\\uea65'),\n    C(\"cib-c\", '\\uea66'),\n    CAKEPHP(\"cib-cakephp\", '\\uea67'),\n    CAMPAIGN_MONITOR(\"cib-campaign-monitor\", '\\uea68'),\n    CANVA(\"cib-canva\", '\\uea69'),\n    CASHAPP(\"cib-cashapp\", '\\uea6a'),\n    CASSANDRA(\"cib-cassandra\", '\\uea6b'),\n    CASTRO(\"cib-castro\", '\\uea6c'),\n    CC_AMAZON_PAY(\"cib-cc-amazon-pay\", '\\uea6d'),\n    CC_AMEX(\"cib-cc-amex\", '\\uea6e'),\n    CC_APPLE_PAY(\"cib-cc-apple-pay\", '\\uea6f'),\n    CC_DINERS_CLUB(\"cib-cc-diners-club\", '\\uea70'),\n    CC_DISCOVER(\"cib-cc-discover\", '\\uea71'),\n    CC_JCB(\"cib-cc-jcb\", '\\uea72'),\n    CC_MASTERCARD(\"cib-cc-mastercard\", '\\uea73'),\n    CC_PAYPAL(\"cib-cc-paypal\", '\\uea74'),\n    CC_STRIPE(\"cib-cc-stripe\", '\\uea75'),\n    CC_VISA(\"cib-cc-visa\", '\\uea76'),\n    CENTOS(\"cib-centos\", '\\uea77'),\n    CEVO(\"cib-cevo\", '\\uea78'),\n    CHASE(\"cib-chase\", '\\uea79'),\n    CHEF(\"cib-chef\", '\\uea7a'),\n    CHROMECAST(\"cib-chromecast\", '\\uea7b'),\n    CIRCLE(\"cib-circle\", '\\uea7c'),\n    CIRCLECI(\"cib-circleci\", '\\uea7d'),\n    CIRRUSCI(\"cib-cirrusci\", '\\uea7e'),\n    CISCO(\"cib-cisco\", '\\uea7f'),\n    CIVICRM(\"cib-civicrm\", '\\uea80'),\n    CLOCKIFY(\"cib-clockify\", '\\uea81'),\n    CLOJURE(\"cib-clojure\", '\\uea82'),\n    CLOUDBEES(\"cib-cloudbees\", '\\uea83'),\n    CLOUDFLARE(\"cib-cloudflare\", '\\uea84'),\n    CMAKE(\"cib-cmake\", '\\uea85'),\n    CODACY(\"cib-codacy\", '\\uea87'),\n    CODECADEMY(\"cib-codecademy\", '\\uea89'),\n    CODECOV(\"cib-codecov\", '\\uea8a'),\n    CODEIGNITER(\"cib-codeigniter\", '\\uea8b'),\n    CODEPEN(\"cib-codepen\", '\\uea8c'),\n    CODERWALL(\"cib-coderwall\", '\\uea8d'),\n    CODESANDBOX(\"cib-codesandbox\", '\\uea8e'),\n    CODESHIP(\"cib-codeship\", '\\uea8f'),\n    CODEWARS(\"cib-codewars\", '\\uea90'),\n    CODE_CLIMATE(\"cib-code-climate\", '\\uea88'),\n    CODIO(\"cib-codio\", '\\uea91'),\n    COFFEESCRIPT(\"cib-coffeescript\", '\\uea92'),\n    COMMON_WORKFLOW_LANGUAGE(\"cib-common-workflow-language\", '\\uea93'),\n    COMPOSER(\"cib-composer\", '\\uea94'),\n    CONDA_FORGE(\"cib-conda-forge\", '\\uea95'),\n    CONEKTA(\"cib-conekta\", '\\uea96'),\n    CONFLUENCE(\"cib-confluence\", '\\uea97'),\n    COREUI(\"cib-coreui\", '\\uea98'),\n    COREUI_C(\"cib-coreui-c\", '\\uea99'),\n    COREUI_500PX(\"cib-500px\", '\\uea01'),\n    COREUI_500PX_5(\"cib-500px-5\", '\\uea02'),\n    COURSERA(\"cib-coursera\", '\\uea9a'),\n    COVERALLS(\"cib-coveralls\", '\\uea9b'),\n    CO_OP(\"cib-co-op\", '\\uea86'),\n    CPANEL(\"cib-cpanel\", '\\uea9c'),\n    CPLUSPLUS(\"cib-cplusplus\", '\\uea9d'),\n    CREATIVE_COMMONS(\"cib-creative-commons\", '\\uea9e'),\n    CREATIVE_COMMONS_BY(\"cib-creative-commons-by\", '\\uea9f'),\n    CREATIVE_COMMONS_NC(\"cib-creative-commons-nc\", '\\ueaa0'),\n    CREATIVE_COMMONS_NC_EU(\"cib-creative-commons-nc-eu\", '\\ueaa1'),\n    CREATIVE_COMMONS_NC_JP(\"cib-creative-commons-nc-jp\", '\\ueaa2'),\n    CREATIVE_COMMONS_ND(\"cib-creative-commons-nd\", '\\ueaa3'),\n    CREATIVE_COMMONS_PD(\"cib-creative-commons-pd\", '\\ueaa4'),\n    CREATIVE_COMMONS_PD_ALT(\"cib-creative-commons-pd-alt\", '\\ueaa5'),\n    CREATIVE_COMMONS_REMIX(\"cib-creative-commons-remix\", '\\ueaa6'),\n    CREATIVE_COMMONS_SA(\"cib-creative-commons-sa\", '\\ueaa7'),\n    CREATIVE_COMMONS_SAMPLING(\"cib-creative-commons-sampling\", '\\ueaa8'),\n    CREATIVE_COMMONS_SAMPLING_PLUS(\"cib-creative-commons-sampling-plus\", '\\ueaa9'),\n    CREATIVE_COMMONS_SHARE(\"cib-creative-commons-share\", '\\ueaaa'),\n    CREATIVE_COMMONS_ZERO(\"cib-creative-commons-zero\", '\\ueaab'),\n    CRUNCHBASE(\"cib-crunchbase\", '\\ueaac'),\n    CRUNCHYROLL(\"cib-crunchyroll\", '\\ueaad'),\n    CSS3(\"cib-css3\", '\\ueaae'),\n    CSS3_SHILED(\"cib-css3-shiled\", '\\ueaaf'),\n    CSSWIZARDRY(\"cib-csswizardry\", '\\ueab0'),\n    D3_JS(\"cib-d3-js\", '\\ueab1'),\n    DAILYMOTION(\"cib-dailymotion\", '\\ueab2'),\n    DASHLANE(\"cib-dashlane\", '\\ueab3'),\n    DAZN(\"cib-dazn\", '\\ueab4'),\n    DBLP(\"cib-dblp\", '\\ueab5'),\n    DEBIAN(\"cib-debian\", '\\ueab6'),\n    DEEPIN(\"cib-deepin\", '\\ueab7'),\n    DEEZER(\"cib-deezer\", '\\ueab8'),\n    DELICIOUS(\"cib-delicious\", '\\ueab9'),\n    DELL(\"cib-dell\", '\\ueaba'),\n    DENO(\"cib-deno\", '\\ueabb'),\n    DEPENDABOT(\"cib-dependabot\", '\\ueabc'),\n    DESIGNER_NEWS(\"cib-designer-news\", '\\ueabd'),\n    DEVIANTART(\"cib-deviantart\", '\\ueabf'),\n    DEVRANT(\"cib-devrant\", '\\ueac0'),\n    DEV_TO(\"cib-dev-to\", '\\ueabe'),\n    DIASPORA(\"cib-diaspora\", '\\ueac1'),\n    DIGG(\"cib-digg\", '\\ueac2'),\n    DIGITAL_OCEAN(\"cib-digital-ocean\", '\\ueac3'),\n    DISCORD(\"cib-discord\", '\\ueac4'),\n    DISCOURSE(\"cib-discourse\", '\\ueac5'),\n    DISCOVER(\"cib-discover\", '\\ueac6'),\n    DISQUS(\"cib-disqus\", '\\ueac7'),\n    DISROOT(\"cib-disroot\", '\\ueac8'),\n    DJANGO(\"cib-django\", '\\ueac9'),\n    DOCKER(\"cib-docker\", '\\ueaca'),\n    DOCUSIGN(\"cib-docusign\", '\\ueacb'),\n    DOT_NET(\"cib-dot-net\", '\\ueacc'),\n    DRAUGIEM_LV(\"cib-draugiem-lv\", '\\ueacd'),\n    DRIBBBLE(\"cib-dribbble\", '\\ueace'),\n    DRONE(\"cib-drone\", '\\ueacf'),\n    DROPBOX(\"cib-dropbox\", '\\uead0'),\n    DRUPAL(\"cib-drupal\", '\\uead1'),\n    DTUBE(\"cib-dtube\", '\\uead2'),\n    DUCKDUCKGO(\"cib-duckduckgo\", '\\uead3'),\n    DYNATRACE(\"cib-dynatrace\", '\\uead4'),\n    EBAY(\"cib-ebay\", '\\uead5'),\n    ECLIPSEIDE(\"cib-eclipseide\", '\\uead6'),\n    ELASTIC(\"cib-elastic\", '\\uead7'),\n    ELASTIC_CLOUD(\"cib-elastic-cloud\", '\\uead8'),\n    ELASTIC_SEARCH(\"cib-elastic-search\", '\\uead9'),\n    ELASTIC_STACK(\"cib-elastic-stack\", '\\ueada'),\n    ELECTRON(\"cib-electron\", '\\ueadb'),\n    ELEMENTARY(\"cib-elementary\", '\\ueadc'),\n    ELEVENTY(\"cib-eleventy\", '\\ueadd'),\n    ELLO(\"cib-ello\", '\\ueade'),\n    ELSEVIER(\"cib-elsevier\", '\\ueadf'),\n    EMLAKJET(\"cib-emlakjet\", '\\ueae0'),\n    EMPIREKRED(\"cib-empirekred\", '\\ueae1'),\n    ENVATO(\"cib-envato\", '\\ueae2'),\n    EPIC_GAMES(\"cib-epic-games\", '\\ueae3'),\n    EPSON(\"cib-epson\", '\\ueae4'),\n    ESEA(\"cib-esea\", '\\ueae5'),\n    ESLINT(\"cib-eslint\", '\\ueae6'),\n    ETHEREUM(\"cib-ethereum\", '\\ueae7'),\n    ETSY(\"cib-etsy\", '\\ueae8'),\n    EVENTBRITE(\"cib-eventbrite\", '\\ueaea'),\n    EVENT_STORE(\"cib-event-store\", '\\ueae9'),\n    EVERNOTE(\"cib-evernote\", '\\ueaeb'),\n    EVERPLACES(\"cib-everplaces\", '\\ueaec'),\n    EVRY(\"cib-evry\", '\\ueaed'),\n    EXERCISM(\"cib-exercism\", '\\ueaee'),\n    EXPERTS_EXCHANGE(\"cib-experts-exchange\", '\\ueaef'),\n    EXPO(\"cib-expo\", '\\ueaf0'),\n    EYEEM(\"cib-eyeem\", '\\ueaf1'),\n    FACEBOOK(\"cib-facebook\", '\\ueaf3'),\n    FACEBOOK_F(\"cib-facebook-f\", '\\ueaf4'),\n    FACEIT(\"cib-faceit\", '\\ueaf5'),\n    FANDANGO(\"cib-fandango\", '\\ueaf6'),\n    FAVRO(\"cib-favro\", '\\ueaf7'),\n    FEATHUB(\"cib-feathub\", '\\ueaf8'),\n    FEDEX(\"cib-fedex\", '\\ueaf9'),\n    FEDORA(\"cib-fedora\", '\\ueafa'),\n    FEEDLY(\"cib-feedly\", '\\ueafb'),\n    FIDO_ALLIANCE(\"cib-fido-alliance\", '\\ueafc'),\n    FIGMA(\"cib-figma\", '\\ueafd'),\n    FILEZILLA(\"cib-filezilla\", '\\ueafe'),\n    FIREBASE(\"cib-firebase\", '\\ueaff'),\n    FITBIT(\"cib-fitbit\", '\\ueb00'),\n    FLASK(\"cib-flask\", '\\ueb01'),\n    FLATTR(\"cib-flattr\", '\\ueb02'),\n    FLICKR(\"cib-flickr\", '\\ueb03'),\n    FLIPBOARD(\"cib-flipboard\", '\\ueb04'),\n    FLUTTER(\"cib-flutter\", '\\ueb05'),\n    FNAC(\"cib-fnac\", '\\ueb06'),\n    FOURSQUARE(\"cib-foursquare\", '\\ueb07'),\n    FRAMER(\"cib-framer\", '\\ueb08'),\n    FREEBSD(\"cib-freebsd\", '\\ueb09'),\n    FREECODECAMP(\"cib-freecodecamp\", '\\ueb0a'),\n    FURRY_NETWORK(\"cib-furry-network\", '\\ueb0c'),\n    FUR_AFFINITY(\"cib-fur-affinity\", '\\ueb0b'),\n    F_SECURE(\"cib-f-secure\", '\\ueaf2'),\n    GARMIN(\"cib-garmin\", '\\ueb0d'),\n    GATSBY(\"cib-gatsby\", '\\ueb0e'),\n    GAUGES(\"cib-gauges\", '\\ueb0f'),\n    GENIUS(\"cib-genius\", '\\ueb10'),\n    GENTOO(\"cib-gentoo\", '\\ueb11'),\n    GEOCACHING(\"cib-geocaching\", '\\ueb12'),\n    GERRIT(\"cib-gerrit\", '\\ueb13'),\n    GG(\"cib-gg\", '\\ueb14'),\n    GHOST(\"cib-ghost\", '\\ueb15'),\n    GIMP(\"cib-gimp\", '\\ueb16'),\n    GIT(\"cib-git\", '\\ueb17'),\n    GITEA(\"cib-gitea\", '\\ueb18'),\n    GITHUB(\"cib-github\", '\\ueb19'),\n    GITKRAKEN(\"cib-gitkraken\", '\\ueb1a'),\n    GITLAB(\"cib-gitlab\", '\\ueb1b'),\n    GITPOD(\"cib-gitpod\", '\\ueb1c'),\n    GITTER(\"cib-gitter\", '\\ueb1d'),\n    GLASSDOOR(\"cib-glassdoor\", '\\ueb1e'),\n    GLITCH(\"cib-glitch\", '\\ueb1f'),\n    GMAIL(\"cib-gmail\", '\\ueb20'),\n    GNU(\"cib-gnu\", '\\ueb21'),\n    GNU_PRIVACY_GUARD(\"cib-gnu-privacy-guard\", '\\ueb22'),\n    GNU_SOCIAL(\"cib-gnu-social\", '\\ueb23'),\n    GO(\"cib-go\", '\\ueb24'),\n    GODOT_ENGINE(\"cib-godot-engine\", '\\ueb25'),\n    GOG_COM(\"cib-gog-com\", '\\ueb26'),\n    GOLDENLINE(\"cib-goldenline\", '\\ueb27'),\n    GOODREADS(\"cib-goodreads\", '\\ueb28'),\n    GOOGLE(\"cib-google\", '\\ueb29'),\n    GOOGLES_CHOLAR(\"cib-googles-cholar\", '\\ueb33'),\n    GOOGLE_ADS(\"cib-google-ads\", '\\ueb2a'),\n    GOOGLE_ALLO(\"cib-google-allo\", '\\ueb2b'),\n    GOOGLE_ANALYTICS(\"cib-google-analytics\", '\\ueb2c'),\n    GOOGLE_CHROME(\"cib-google-chrome\", '\\ueb2d'),\n    GOOGLE_CLOUD(\"cib-google-cloud\", '\\ueb2e'),\n    GOOGLE_KEEP(\"cib-google-keep\", '\\ueb2f'),\n    GOOGLE_PAY(\"cib-google-pay\", '\\ueb30'),\n    GOOGLE_PLAY(\"cib-google-play\", '\\ueb31'),\n    GOOGLE_PODCASTS(\"cib-google-podcasts\", '\\ueb32'),\n    GOV_UK(\"cib-gov-uk\", '\\ueb34'),\n    GRADLE(\"cib-gradle\", '\\ueb35'),\n    GRAFANA(\"cib-grafana\", '\\ueb36'),\n    GRAPHCOOL(\"cib-graphcool\", '\\ueb37'),\n    GRAPHQL(\"cib-graphql\", '\\ueb38'),\n    GRAV(\"cib-grav\", '\\ueb39'),\n    GRAVATAR(\"cib-gravatar\", '\\ueb3a'),\n    GREENKEEPER(\"cib-greenkeeper\", '\\ueb3b'),\n    GREENSOCK(\"cib-greensock\", '\\ueb3c'),\n    GROOVY(\"cib-groovy\", '\\ueb3d'),\n    GROUPON(\"cib-groupon\", '\\ueb3e'),\n    GRUNT(\"cib-grunt\", '\\ueb3f'),\n    GULP(\"cib-gulp\", '\\ueb40'),\n    GUMROAD(\"cib-gumroad\", '\\ueb41'),\n    GUMTREE(\"cib-gumtree\", '\\ueb42'),\n    HABR(\"cib-habr\", '\\ueb43'),\n    HACKADAY(\"cib-hackaday\", '\\ueb44'),\n    HACKEREARTH(\"cib-hackerearth\", '\\ueb45'),\n    HACKERONE(\"cib-hackerone\", '\\ueb46'),\n    HACKERRANK(\"cib-hackerrank\", '\\ueb47'),\n    HACKHANDS(\"cib-hackhands\", '\\ueb48'),\n    HACKSTER(\"cib-hackster\", '\\ueb49'),\n    HAPPYCOW(\"cib-happycow\", '\\ueb4a'),\n    HASHNODE(\"cib-hashnode\", '\\ueb4b'),\n    HASKELL(\"cib-haskell\", '\\ueb4c'),\n    HATENA_BOOKMARK(\"cib-hatena-bookmark\", '\\ueb4d'),\n    HAXE(\"cib-haxe\", '\\ueb4e'),\n    HELM(\"cib-helm\", '\\ueb4f'),\n    HERE(\"cib-here\", '\\ueb50'),\n    HEROKU(\"cib-heroku\", '\\ueb51'),\n    HEXO(\"cib-hexo\", '\\ueb52'),\n    HIGHLY(\"cib-highly\", '\\ueb53'),\n    HIPCHAT(\"cib-hipchat\", '\\ueb54'),\n    HITACHI(\"cib-hitachi\", '\\ueb55'),\n    HOCKEYAPP(\"cib-hockeyapp\", '\\ueb56'),\n    HOMIFY(\"cib-homify\", '\\ueb57'),\n    HOOTSUITE(\"cib-hootsuite\", '\\ueb58'),\n    HOTJAR(\"cib-hotjar\", '\\ueb59'),\n    HOUZZ(\"cib-houzz\", '\\ueb5a'),\n    HP(\"cib-hp\", '\\ueb5b'),\n    HTML5(\"cib-html5\", '\\ueb5c'),\n    HTML5_SHIELD(\"cib-html5-shield\", '\\ueb5d'),\n    HTMLACADEMY(\"cib-htmlacademy\", '\\ueb5e'),\n    HUAWEI(\"cib-huawei\", '\\ueb5f'),\n    HUBSPOT(\"cib-hubspot\", '\\ueb60'),\n    HULU(\"cib-hulu\", '\\ueb61'),\n    HUMBLE_BUNDLE(\"cib-humble-bundle\", '\\ueb62'),\n    IATA(\"cib-iata\", '\\ueb63'),\n    IBM(\"cib-ibm\", '\\ueb64'),\n    ICLOUD(\"cib-icloud\", '\\ueb65'),\n    ICONJAR(\"cib-iconjar\", '\\ueb66'),\n    ICQ(\"cib-icq\", '\\ueb67'),\n    IDEAL(\"cib-ideal\", '\\ueb68'),\n    IFIXIT(\"cib-ifixit\", '\\ueb69'),\n    IMDB(\"cib-imdb\", '\\ueb6a'),\n    INDEED(\"cib-indeed\", '\\ueb6b'),\n    INKSCAPE(\"cib-inkscape\", '\\ueb6c'),\n    INSTACART(\"cib-instacart\", '\\ueb6d'),\n    INSTAGRAM(\"cib-instagram\", '\\ueb6e'),\n    INSTAPAPER(\"cib-instapaper\", '\\ueb6f'),\n    INTEL(\"cib-intel\", '\\ueb70'),\n    INTELLIJIDEA(\"cib-intellijidea\", '\\ueb71'),\n    INTERCOM(\"cib-intercom\", '\\ueb72'),\n    INTERNET_EXPLORER(\"cib-internet-explorer\", '\\ueb73'),\n    INVISION(\"cib-invision\", '\\ueb74'),\n    IONIC(\"cib-ionic\", '\\ueb75'),\n    ISSUU(\"cib-issuu\", '\\ueb76'),\n    ITCH_IO(\"cib-itch-io\", '\\ueb77'),\n    JABBER(\"cib-jabber\", '\\ueb78'),\n    JAVA(\"cib-java\", '\\ueb79'),\n    JAVASCRIPT(\"cib-javascript\", '\\ueb7a'),\n    JEKYLL(\"cib-jekyll\", '\\ueb7b'),\n    JENKINS(\"cib-jenkins\", '\\ueb7c'),\n    JEST(\"cib-jest\", '\\ueb7d'),\n    JET(\"cib-jet\", '\\ueb7e'),\n    JETBRAINS(\"cib-jetbrains\", '\\ueb7f'),\n    JIRA(\"cib-jira\", '\\ueb80'),\n    JOOMLA(\"cib-joomla\", '\\ueb81'),\n    JQUERY(\"cib-jquery\", '\\ueb82'),\n    JS(\"cib-js\", '\\ueb83'),\n    JSDELIVR(\"cib-jsdelivr\", '\\ueb84'),\n    JSFIDDLE(\"cib-jsfiddle\", '\\ueb85'),\n    JSON(\"cib-json\", '\\ueb86'),\n    JUPYTER(\"cib-jupyter\", '\\ueb87'),\n    JUSTGIVING(\"cib-justgiving\", '\\ueb88'),\n    KAGGLE(\"cib-kaggle\", '\\ueb89'),\n    KAIOS(\"cib-kaios\", '\\ueb8a'),\n    KASPERSKY(\"cib-kaspersky\", '\\ueb8b'),\n    KENTICO(\"cib-kentico\", '\\ueb8c'),\n    KERAS(\"cib-keras\", '\\ueb8d'),\n    KEYBASE(\"cib-keybase\", '\\ueb8e'),\n    KEYCDN(\"cib-keycdn\", '\\ueb8f'),\n    KHAN_ACADEMY(\"cib-khan-academy\", '\\ueb90'),\n    KIBANA(\"cib-kibana\", '\\ueb91'),\n    KICKSTARTER(\"cib-kickstarter\", '\\ueb92'),\n    KIK(\"cib-kik\", '\\ueb93'),\n    KIRBY(\"cib-kirby\", '\\ueb94'),\n    KLOUT(\"cib-klout\", '\\ueb95'),\n    KNOWN(\"cib-known\", '\\ueb96'),\n    KODI(\"cib-kodi\", '\\ueb98'),\n    KODING(\"cib-koding\", '\\ueb99'),\n    KOTLIN(\"cib-kotlin\", '\\ueb9a'),\n    KO_FI(\"cib-ko-fi\", '\\ueb97'),\n    KRITA(\"cib-krita\", '\\ueb9b'),\n    KUBERNETES(\"cib-kubernetes\", '\\ueb9c'),\n    LANYRD(\"cib-lanyrd\", '\\ueb9d'),\n    LARAVEL(\"cib-laravel\", '\\ueb9e'),\n    LARAVEL_HORIZON(\"cib-laravel-horizon\", '\\ueb9f'),\n    LARAVEL_NOVA(\"cib-laravel-nova\", '\\ueba0'),\n    LAST_FM(\"cib-last-fm\", '\\ueba1'),\n    LATEX(\"cib-latex\", '\\ueba2'),\n    LAUNCHPAD(\"cib-launchpad\", '\\ueba3'),\n    LEETCODE(\"cib-leetcode\", '\\ueba4'),\n    LENOVO(\"cib-lenovo\", '\\ueba5'),\n    LESS(\"cib-less\", '\\ueba6'),\n    LETS_ENCRYPT(\"cib-lets-encrypt\", '\\ueba7'),\n    LETTERBOXD(\"cib-letterboxd\", '\\ueba8'),\n    LGTM(\"cib-lgtm\", '\\ueba9'),\n    LIBERAPAY(\"cib-liberapay\", '\\uebaa'),\n    LIBRARYTHING(\"cib-librarything\", '\\uebab'),\n    LIBREOFFICE(\"cib-libreoffice\", '\\uebac'),\n    LINE(\"cib-line\", '\\uebad'),\n    LINKEDIN(\"cib-linkedin\", '\\uebae'),\n    LINKEDIN_IN(\"cib-linkedin-in\", '\\uebaf'),\n    LINUX(\"cib-linux\", '\\uebb0'),\n    LINUX_FOUNDATION(\"cib-linux-foundation\", '\\uebb1'),\n    LINUX_MINT(\"cib-linux-mint\", '\\uebb2'),\n    LIVEJOURNAL(\"cib-livejournal\", '\\uebb3'),\n    LIVESTREAM(\"cib-livestream\", '\\uebb4'),\n    LOGSTASH(\"cib-logstash\", '\\uebb5'),\n    LUA(\"cib-lua\", '\\uebb6'),\n    LUMEN(\"cib-lumen\", '\\uebb7'),\n    LYFT(\"cib-lyft\", '\\uebb8'),\n    MACYS(\"cib-macys\", '\\uebb9'),\n    MAGENTO(\"cib-magento\", '\\uebba'),\n    MAGISK(\"cib-magisk\", '\\uebbb'),\n    MAILCHIMP(\"cib-mailchimp\", '\\uebbd'),\n    MAIL_RU(\"cib-mail-ru\", '\\uebbc'),\n    MAKERBOT(\"cib-makerbot\", '\\uebbe'),\n    MANJARO(\"cib-manjaro\", '\\uebbf'),\n    MARKDOWN(\"cib-markdown\", '\\uebc0'),\n    MARKETO(\"cib-marketo\", '\\uebc1'),\n    MASTERCARD(\"cib-mastercard\", '\\uebc2'),\n    MASTODON(\"cib-mastodon\", '\\uebc3'),\n    MATERIAL_DESIGN(\"cib-material-design\", '\\uebc4'),\n    MATHWORKS(\"cib-mathworks\", '\\uebc5'),\n    MATRIX(\"cib-matrix\", '\\uebc6'),\n    MATTERMOST(\"cib-mattermost\", '\\uebc7'),\n    MATTERNET(\"cib-matternet\", '\\uebc8'),\n    MAXCDN(\"cib-maxcdn\", '\\uebc9'),\n    MCAFEE(\"cib-mcafee\", '\\uebca'),\n    MEDIAFIRE(\"cib-mediafire\", '\\uebcc'),\n    MEDIA_TEMPLE(\"cib-media-temple\", '\\uebcb'),\n    MEDIUM(\"cib-medium\", '\\uebcd'),\n    MEDIUM_M(\"cib-medium-m\", '\\uebce'),\n    MEETUP(\"cib-meetup\", '\\uebcf'),\n    MEGA(\"cib-mega\", '\\uebd0'),\n    MENDELEY(\"cib-mendeley\", '\\uebd1'),\n    MESSENGER(\"cib-messenger\", '\\uebd2'),\n    METEOR(\"cib-meteor\", '\\uebd3'),\n    MICROGENETICS(\"cib-microgenetics\", '\\uebd5'),\n    MICROSOFT(\"cib-microsoft\", '\\uebd6'),\n    MICROSOFT_EDGE(\"cib-microsoft-edge\", '\\uebd7'),\n    MICRO_BLOG(\"cib-micro-blog\", '\\uebd4'),\n    MINETEST(\"cib-minetest\", '\\uebd8'),\n    MINUTEMAILER(\"cib-minutemailer\", '\\uebd9'),\n    MIX(\"cib-mix\", '\\uebda'),\n    MIXCLOUD(\"cib-mixcloud\", '\\uebdb'),\n    MIXER(\"cib-mixer\", '\\uebdc'),\n    MOJANG(\"cib-mojang\", '\\uebdd'),\n    MONERO(\"cib-monero\", '\\uebde'),\n    MONGODB(\"cib-mongodb\", '\\uebdf'),\n    MONKEYTIE(\"cib-monkeytie\", '\\uebe0'),\n    MONOGRAM(\"cib-monogram\", '\\uebe1'),\n    MONZO(\"cib-monzo\", '\\uebe2'),\n    MOO(\"cib-moo\", '\\uebe3'),\n    MOZILLA(\"cib-mozilla\", '\\uebe4'),\n    MOZILLA_FIREFOX(\"cib-mozilla-firefox\", '\\uebe5'),\n    MUSESCORE(\"cib-musescore\", '\\uebe6'),\n    MXLINUX(\"cib-mxlinux\", '\\uebe7'),\n    MYSPACE(\"cib-myspace\", '\\uebe8'),\n    MYSQL(\"cib-mysql\", '\\uebe9'),\n    NATIVESCRIPT(\"cib-nativescript\", '\\uebea'),\n    NEC(\"cib-nec\", '\\uebeb'),\n    NEO4J(\"cib-neo4j\", '\\uebec'),\n    NETFLIX(\"cib-netflix\", '\\uebed'),\n    NETLIFY(\"cib-netlify\", '\\uebee'),\n    NEXTCLOUD(\"cib-nextcloud\", '\\uebf0'),\n    NEXTDOOR(\"cib-nextdoor\", '\\uebf1'),\n    NEXT_JS(\"cib-next-js\", '\\uebef'),\n    NGINX(\"cib-nginx\", '\\uebf2'),\n    NIM(\"cib-nim\", '\\uebf3'),\n    NINTENDO(\"cib-nintendo\", '\\uebf4'),\n    NINTENDO_3DS(\"cib-nintendo-3ds\", '\\uebf5'),\n    NINTENDO_GAMECUBE(\"cib-nintendo-gamecube\", '\\uebf6'),\n    NINTENDO_SWITCH(\"cib-nintendo-switch\", '\\uebf7'),\n    NODEMON(\"cib-nodemon\", '\\uebfa'),\n    NODE_JS(\"cib-node-js\", '\\uebf8'),\n    NODE_RED(\"cib-node-red\", '\\uebf9'),\n    NOKIA(\"cib-nokia\", '\\uebfb'),\n    NOTION(\"cib-notion\", '\\uebfc'),\n    NPM(\"cib-npm\", '\\uebfd'),\n    NUCLEO(\"cib-nucleo\", '\\uebfe'),\n    NUGET(\"cib-nuget\", '\\uebff'),\n    NUXT_JS(\"cib-nuxt-js\", '\\uec00'),\n    NVIDIA(\"cib-nvidia\", '\\uec01'),\n    OCAML(\"cib-ocaml\", '\\uec02'),\n    OCTAVE(\"cib-octave\", '\\uec03'),\n    OCTOPUS_DEPLOY(\"cib-octopus-deploy\", '\\uec04'),\n    OCULUS(\"cib-oculus\", '\\uec05'),\n    ODNOKLASSNIKI(\"cib-odnoklassniki\", '\\uec06'),\n    OPENSTREETMAP(\"cib-openstreetmap\", '\\uec0b'),\n    OPENSUSE(\"cib-opensuse\", '\\uec0c'),\n    OPENVPN(\"cib-openvpn\", '\\uec0d'),\n    OPEN_ACCESS(\"cib-open-access\", '\\uec07'),\n    OPEN_COLLECTIVE(\"cib-open-collective\", '\\uec08'),\n    OPEN_ID(\"cib-open-id\", '\\uec09'),\n    OPEN_SOURCE_INITIATIVE(\"cib-open-source-initiative\", '\\uec0a'),\n    OPERA(\"cib-opera\", '\\uec0e'),\n    OPSGENIE(\"cib-opsgenie\", '\\uec0f'),\n    ORACLE(\"cib-oracle\", '\\uec10'),\n    ORCID(\"cib-orcid\", '\\uec11'),\n    ORIGIN(\"cib-origin\", '\\uec12'),\n    OSI(\"cib-osi\", '\\uec13'),\n    OSMC(\"cib-osmc\", '\\uec14'),\n    OVERCAST(\"cib-overcast\", '\\uec15'),\n    OVERLEAF(\"cib-overleaf\", '\\uec16'),\n    OVH(\"cib-ovh\", '\\uec17'),\n    PAGEKIT(\"cib-pagekit\", '\\uec18'),\n    PALANTIR(\"cib-palantir\", '\\uec19'),\n    PANDORA(\"cib-pandora\", '\\uec1a'),\n    PANTHEON(\"cib-pantheon\", '\\uec1b'),\n    PATREON(\"cib-patreon\", '\\uec1c'),\n    PAYPAL(\"cib-paypal\", '\\uec1d'),\n    PERISCOPE(\"cib-periscope\", '\\uec1e'),\n    PHP(\"cib-php\", '\\uec1f'),\n    PICARTO_TV(\"cib-picarto-tv\", '\\uec20'),\n    PINBOARD(\"cib-pinboard\", '\\uec21'),\n    PINGDOM(\"cib-pingdom\", '\\uec22'),\n    PINGUP(\"cib-pingup\", '\\uec23'),\n    PINTEREST(\"cib-pinterest\", '\\uec24'),\n    PINTEREST_P(\"cib-pinterest-p\", '\\uec25'),\n    PIVOTALTRACKER(\"cib-pivotaltracker\", '\\uec26'),\n    PLANGRID(\"cib-plangrid\", '\\uec27'),\n    PLAYERFM(\"cib-playerfm\", '\\uec29'),\n    PLAYER_ME(\"cib-player-me\", '\\uec28'),\n    PLAYSTATION(\"cib-playstation\", '\\uec2a'),\n    PLAYSTATION3(\"cib-playstation3\", '\\uec2b'),\n    PLAYSTATION4(\"cib-playstation4\", '\\uec2c'),\n    PLESK(\"cib-plesk\", '\\uec2d'),\n    PLEX(\"cib-plex\", '\\uec2e'),\n    PLURALSIGHT(\"cib-pluralsight\", '\\uec2f'),\n    PLURK(\"cib-plurk\", '\\uec30'),\n    POCKET(\"cib-pocket\", '\\uec31'),\n    POSTGRESQL(\"cib-postgresql\", '\\uec32'),\n    POSTMAN(\"cib-postman\", '\\uec33'),\n    POSTWOMAN(\"cib-postwoman\", '\\uec34'),\n    POWERSHELL(\"cib-powershell\", '\\uec35'),\n    PRETTIER(\"cib-prettier\", '\\uec36'),\n    PRISMIC(\"cib-prismic\", '\\uec37'),\n    PROBOT(\"cib-probot\", '\\uec38'),\n    PROCESSWIRE(\"cib-processwire\", '\\uec39'),\n    PRODUCT_HUNT(\"cib-product-hunt\", '\\uec3a'),\n    PROTONMAIL(\"cib-protonmail\", '\\uec3c'),\n    PROTO_IO(\"cib-proto-io\", '\\uec3b'),\n    PROXMOX(\"cib-proxmox\", '\\uec3d'),\n    PYPI(\"cib-pypi\", '\\uec3e'),\n    PYTHON(\"cib-python\", '\\uec3f'),\n    PYTORCH(\"cib-pytorch\", '\\uec40'),\n    QGIS(\"cib-qgis\", '\\uec41'),\n    QIITA(\"cib-qiita\", '\\uec42'),\n    QQ(\"cib-qq\", '\\uec43'),\n    QUALCOMM(\"cib-qualcomm\", '\\uec44'),\n    QUANTCAST(\"cib-quantcast\", '\\uec45'),\n    QUANTOPIAN(\"cib-quantopian\", '\\uec46'),\n    QUARKUS(\"cib-quarkus\", '\\uec47'),\n    QUORA(\"cib-quora\", '\\uec48'),\n    QWIKLABS(\"cib-qwiklabs\", '\\uec49'),\n    QZONE(\"cib-qzone\", '\\uec4a'),\n    R(\"cib-r\", '\\uec4b'),\n    RADIOPUBLIC(\"cib-radiopublic\", '\\uec4c'),\n    RAILS(\"cib-rails\", '\\uec4d'),\n    RASPBERRY_PI(\"cib-raspberry-pi\", '\\uec4e'),\n    REACT(\"cib-react\", '\\uec4f'),\n    README(\"cib-readme\", '\\uec51'),\n    READ_THE_DOCS(\"cib-read-the-docs\", '\\uec50'),\n    REALM(\"cib-realm\", '\\uec52'),\n    REASON(\"cib-reason\", '\\uec53'),\n    REDBUBBLE(\"cib-redbubble\", '\\uec54'),\n    REDDIT(\"cib-reddit\", '\\uec55'),\n    REDDIT_ALT(\"cib-reddit-alt\", '\\uec56'),\n    REDHAT(\"cib-redhat\", '\\uec57'),\n    REDIS(\"cib-redis\", '\\uec58'),\n    REDUX(\"cib-redux\", '\\uec59'),\n    RENREN(\"cib-renren\", '\\uec5a'),\n    REVERBNATION(\"cib-reverbnation\", '\\uec5b'),\n    RIOT(\"cib-riot\", '\\uec5c'),\n    RIPPLE(\"cib-ripple\", '\\uec5d'),\n    RISEUP(\"cib-riseup\", '\\uec5e'),\n    ROLLUP_JS(\"cib-rollup-js\", '\\uec5f'),\n    ROOTS(\"cib-roots\", '\\uec60'),\n    ROUNDCUBE(\"cib-roundcube\", '\\uec61'),\n    RSS(\"cib-rss\", '\\uec62'),\n    RSTUDIO(\"cib-rstudio\", '\\uec63'),\n    RUBY(\"cib-ruby\", '\\uec64'),\n    RUBYGEMS(\"cib-rubygems\", '\\uec65'),\n    RUNKEEPER(\"cib-runkeeper\", '\\uec66'),\n    RUST(\"cib-rust\", '\\uec67'),\n    SAFARI(\"cib-safari\", '\\uec68'),\n    SAHIBINDEN(\"cib-sahibinden\", '\\uec69'),\n    SALESFORCE(\"cib-salesforce\", '\\uec6a'),\n    SALTSTACK(\"cib-saltstack\", '\\uec6b'),\n    SAMSUNG(\"cib-samsung\", '\\uec6c'),\n    SAMSUNG_PAY(\"cib-samsung-pay\", '\\uec6d'),\n    SAP(\"cib-sap\", '\\uec6e'),\n    SASS(\"cib-sass\", '\\uec6f'),\n    SASS_ALT(\"cib-sass-alt\", '\\uec70'),\n    SAUCELABS(\"cib-saucelabs\", '\\uec71'),\n    SCALA(\"cib-scala\", '\\uec72'),\n    SCALEWAY(\"cib-scaleway\", '\\uec73'),\n    SCRIBD(\"cib-scribd\", '\\uec74'),\n    SCRUTINIZERCI(\"cib-scrutinizerci\", '\\uec75'),\n    SEAGATE(\"cib-seagate\", '\\uec76'),\n    SEGA(\"cib-sega\", '\\uec77'),\n    SELLFY(\"cib-sellfy\", '\\uec78'),\n    SEMAPHORECI(\"cib-semaphoreci\", '\\uec79'),\n    SENSU(\"cib-sensu\", '\\uec7a'),\n    SENTRY(\"cib-sentry\", '\\uec7b'),\n    SERVER_FAULT(\"cib-server-fault\", '\\uec7c'),\n    SHAZAM(\"cib-shazam\", '\\uec7d'),\n    SHELL(\"cib-shell\", '\\uec7e'),\n    SHOPIFY(\"cib-shopify\", '\\uec7f'),\n    SHOWPAD(\"cib-showpad\", '\\uec80'),\n    SIEMENS(\"cib-siemens\", '\\uec81'),\n    SIGNAL(\"cib-signal\", '\\uec82'),\n    SINA_WEIBO(\"cib-sina-weibo\", '\\uec83'),\n    SITEPOINT(\"cib-sitepoint\", '\\uec84'),\n    SKETCH(\"cib-sketch\", '\\uec85'),\n    SKILLSHARE(\"cib-skillshare\", '\\uec86'),\n    SKYLINER(\"cib-skyliner\", '\\uec87'),\n    SKYPE(\"cib-skype\", '\\uec88'),\n    SLACK(\"cib-slack\", '\\uec89'),\n    SLASHDOT(\"cib-slashdot\", '\\uec8a'),\n    SLICKPIC(\"cib-slickpic\", '\\uec8b'),\n    SLIDES(\"cib-slides\", '\\uec8c'),\n    SLIDESHARE(\"cib-slideshare\", '\\uec8d'),\n    SMASHINGMAGAZINE(\"cib-smashingmagazine\", '\\uec8e'),\n    SNAPCHAT(\"cib-snapchat\", '\\uec8f'),\n    SNAPCRAFT(\"cib-snapcraft\", '\\uec90'),\n    SNYK(\"cib-snyk\", '\\uec91'),\n    SOCIETY6(\"cib-society6\", '\\uec92'),\n    SOCKET_IO(\"cib-socket-io\", '\\uec93'),\n    SOGOU(\"cib-sogou\", '\\uec94'),\n    SOLUS(\"cib-solus\", '\\uec95'),\n    SONGKICK(\"cib-songkick\", '\\uec96'),\n    SONOS(\"cib-sonos\", '\\uec97'),\n    SOUNDCLOUD(\"cib-soundcloud\", '\\uec98'),\n    SOURCEFORGE(\"cib-sourceforge\", '\\uec99'),\n    SOURCEGRAPH(\"cib-sourcegraph\", '\\uec9a'),\n    SPACEMACS(\"cib-spacemacs\", '\\uec9b'),\n    SPACEX(\"cib-spacex\", '\\uec9c'),\n    SPARKFUN(\"cib-sparkfun\", '\\uec9d'),\n    SPARKPOST(\"cib-sparkpost\", '\\uec9e'),\n    SPDX(\"cib-spdx\", '\\uec9f'),\n    SPEAKER_DECK(\"cib-speaker-deck\", '\\ueca0'),\n    SPECTRUM(\"cib-spectrum\", '\\ueca1'),\n    SPOTIFY(\"cib-spotify\", '\\ueca2'),\n    SPOTLIGHT(\"cib-spotlight\", '\\ueca3'),\n    SPREAKER(\"cib-spreaker\", '\\ueca4'),\n    SPRING(\"cib-spring\", '\\ueca5'),\n    SPRINT(\"cib-sprint\", '\\ueca6'),\n    SQUARESPACE(\"cib-squarespace\", '\\ueca7'),\n    STACKBIT(\"cib-stackbit\", '\\ueca8'),\n    STACKEXCHANGE(\"cib-stackexchange\", '\\ueca9'),\n    STACKOVERFLOW(\"cib-stackoverflow\", '\\uecaa'),\n    STACKPATH(\"cib-stackpath\", '\\uecab'),\n    STACKSHARE(\"cib-stackshare\", '\\uecac'),\n    STADIA(\"cib-stadia\", '\\uecad'),\n    STATAMIC(\"cib-statamic\", '\\uecae'),\n    STATICMAN(\"cib-staticman\", '\\uecaf'),\n    STATUSPAGE(\"cib-statuspage\", '\\uecb0'),\n    STEAM(\"cib-steam\", '\\uecb1'),\n    STEEM(\"cib-steem\", '\\uecb2'),\n    STEEMIT(\"cib-steemit\", '\\uecb3'),\n    STITCHER(\"cib-stitcher\", '\\uecb4'),\n    STORIFY(\"cib-storify\", '\\uecb5'),\n    STORYBOOK(\"cib-storybook\", '\\uecb6'),\n    STRAPI(\"cib-strapi\", '\\uecb7'),\n    STRAVA(\"cib-strava\", '\\uecb8'),\n    STRIPE(\"cib-stripe\", '\\uecb9'),\n    STRIPE_S(\"cib-stripe-s\", '\\uecba'),\n    STUBHUB(\"cib-stubhub\", '\\uecbb'),\n    STUMBLEUPON(\"cib-stumbleupon\", '\\uecbc'),\n    STYLESHARE(\"cib-styleshare\", '\\uecbd'),\n    STYLUS(\"cib-stylus\", '\\uecbe'),\n    SUBLIME_TEXT(\"cib-sublime-text\", '\\uecbf'),\n    SUBVERSION(\"cib-subversion\", '\\uecc0'),\n    SUPERUSER(\"cib-superuser\", '\\uecc1'),\n    SVELTE(\"cib-svelte\", '\\uecc2'),\n    SVG(\"cib-svg\", '\\uecc3'),\n    SWAGGER(\"cib-swagger\", '\\uecc4'),\n    SWARM(\"cib-swarm\", '\\uecc5'),\n    SWIFT(\"cib-swift\", '\\uecc6'),\n    SYMANTEC(\"cib-symantec\", '\\uecc7'),\n    SYMFONY(\"cib-symfony\", '\\uecc8'),\n    SYNOLOGY(\"cib-synology\", '\\uecc9'),\n    TABLEAU(\"cib-tableau\", '\\ueccb'),\n    TAILS(\"cib-tails\", '\\ueccc'),\n    TAPAS(\"cib-tapas\", '\\ueccd'),\n    TEAMVIEWER(\"cib-teamviewer\", '\\uecce'),\n    TED(\"cib-ted\", '\\ueccf'),\n    TEESPRING(\"cib-teespring\", '\\uecd0'),\n    TELEGRAM(\"cib-telegram\", '\\uecd1'),\n    TELEGRAM_PLANE(\"cib-telegram-plane\", '\\uecd2'),\n    TENCENT_QQ(\"cib-tencent-qq\", '\\uecd3'),\n    TENCENT_WEIBO(\"cib-tencent-weibo\", '\\uecd4'),\n    TENSORFLOW(\"cib-tensorflow\", '\\uecd5'),\n    TERRAFORM(\"cib-terraform\", '\\uecd6'),\n    TESLA(\"cib-tesla\", '\\uecd7'),\n    THE_MIGHTY(\"cib-the-mighty\", '\\uecd8'),\n    THE_MOVIE_DATABASE(\"cib-the-movie-database\", '\\uecd9'),\n    TIDAL(\"cib-tidal\", '\\uecda'),\n    TIKTOK(\"cib-tiktok\", '\\uecdb'),\n    TINDER(\"cib-tinder\", '\\uecdc'),\n    TODOIST(\"cib-todoist\", '\\uecdd'),\n    TOGGL(\"cib-toggl\", '\\uecde'),\n    TOPCODER(\"cib-topcoder\", '\\uecdf'),\n    TOPTAL(\"cib-toptal\", '\\uece0'),\n    TOR(\"cib-tor\", '\\uece1'),\n    TOSHIBA(\"cib-toshiba\", '\\uece2'),\n    TRAINERROAD(\"cib-trainerroad\", '\\uece3'),\n    TRAKT(\"cib-trakt\", '\\uece4'),\n    TRAVISCI(\"cib-travisci\", '\\uece5'),\n    TREEHOUSE(\"cib-treehouse\", '\\uece6'),\n    TRELLO(\"cib-trello\", '\\uece7'),\n    TRIPADVISOR(\"cib-tripadvisor\", '\\uece8'),\n    TRULIA(\"cib-trulia\", '\\uece9'),\n    TUMBLR(\"cib-tumblr\", '\\uecea'),\n    TWILIO(\"cib-twilio\", '\\ueceb'),\n    TWITCH(\"cib-twitch\", '\\uecec'),\n    TWITTER(\"cib-twitter\", '\\ueced'),\n    TWOO(\"cib-twoo\", '\\uecee'),\n    TYPESCRIPT(\"cib-typescript\", '\\uecef'),\n    TYPO3(\"cib-typo3\", '\\uecf0'),\n    T_MOBILE(\"cib-t-mobile\", '\\uecca'),\n    UBER(\"cib-uber\", '\\uecf1'),\n    UBISOFT(\"cib-ubisoft\", '\\uecf2'),\n    UBLOCK_ORIGIN(\"cib-ublock-origin\", '\\uecf3'),\n    UBUNTU(\"cib-ubuntu\", '\\uecf4'),\n    UDACITY(\"cib-udacity\", '\\uecf5'),\n    UDEMY(\"cib-udemy\", '\\uecf6'),\n    UIKIT(\"cib-uikit\", '\\uecf7'),\n    UMBRACO(\"cib-umbraco\", '\\uecf8'),\n    UNITY(\"cib-unity\", '\\uecf9'),\n    UNREAL_ENGINE(\"cib-unreal-engine\", '\\uecfa'),\n    UNSPLASH(\"cib-unsplash\", '\\uecfb'),\n    UNTAPPD(\"cib-untappd\", '\\uecfc'),\n    UPWORK(\"cib-upwork\", '\\uecfd'),\n    USB(\"cib-usb\", '\\uecfe'),\n    V8(\"cib-v8\", '\\uecff'),\n    VAGRANT(\"cib-vagrant\", '\\ued00'),\n    VENMO(\"cib-venmo\", '\\ued01'),\n    VERIZON(\"cib-verizon\", '\\ued02'),\n    VIADEO(\"cib-viadeo\", '\\ued03'),\n    VIBER(\"cib-viber\", '\\ued04'),\n    VIM(\"cib-vim\", '\\ued05'),\n    VIMEO(\"cib-vimeo\", '\\ued06'),\n    VIMEO_V(\"cib-vimeo-v\", '\\ued07'),\n    VINE(\"cib-vine\", '\\ued08'),\n    VIRB(\"cib-virb\", '\\ued09'),\n    VISA(\"cib-visa\", '\\ued0a'),\n    VISUAL_STUDIO(\"cib-visual-studio\", '\\ued0b'),\n    VISUAL_STUDIO_CODE(\"cib-visual-studio-code\", '\\ued0c'),\n    VK(\"cib-vk\", '\\ued0d'),\n    VLC(\"cib-vlc\", '\\ued0e'),\n    VSCO(\"cib-vsco\", '\\ued0f'),\n    VUE_JS(\"cib-vue-js\", '\\ued10'),\n    WATTPAD(\"cib-wattpad\", '\\ued11'),\n    WEASYL(\"cib-weasyl\", '\\ued12'),\n    WEBCOMPONENTS_ORG(\"cib-webcomponents-org\", '\\ued13'),\n    WEBPACK(\"cib-webpack\", '\\ued14'),\n    WEBSTORM(\"cib-webstorm\", '\\ued15'),\n    WECHAT(\"cib-wechat\", '\\ued16'),\n    WHATSAPP(\"cib-whatsapp\", '\\ued17'),\n    WHEN_I_WORK(\"cib-when-i-work\", '\\ued18'),\n    WII(\"cib-wii\", '\\ued19'),\n    WIIU(\"cib-wiiu\", '\\ued1a'),\n    WIKIPEDIA(\"cib-wikipedia\", '\\ued1b'),\n    WINDOWS(\"cib-windows\", '\\ued1c'),\n    WIRE(\"cib-wire\", '\\ued1d'),\n    WIREGUARD(\"cib-wireguard\", '\\ued1e'),\n    WIX(\"cib-wix\", '\\ued1f'),\n    WOLFRAM(\"cib-wolfram\", '\\ued20'),\n    WOLFRAM_LANGUAGE(\"cib-wolfram-language\", '\\ued21'),\n    WOLFRAM_MATHEMATICA(\"cib-wolfram-mathematica\", '\\ued22'),\n    WORDPRESS(\"cib-wordpress\", '\\ued23'),\n    WPENGINE(\"cib-wpengine\", '\\ued24'),\n    XBOX(\"cib-xbox\", '\\ued26'),\n    XCODE(\"cib-xcode\", '\\ued27'),\n    XERO(\"cib-xero\", '\\ued28'),\n    XIAOMI(\"cib-xiaomi\", '\\ued29'),\n    XING(\"cib-xing\", '\\ued2a'),\n    XRP(\"cib-xrp\", '\\ued2b'),\n    XSPLIT(\"cib-xsplit\", '\\ued2c'),\n    X_PACK(\"cib-x-pack\", '\\ued25'),\n    YAHOO(\"cib-yahoo\", '\\ued2e'),\n    YAMMER(\"cib-yammer\", '\\ued2f'),\n    YANDEX(\"cib-yandex\", '\\ued30'),\n    YARN(\"cib-yarn\", '\\ued31'),\n    YELP(\"cib-yelp\", '\\ued32'),\n    YOUTUBE(\"cib-youtube\", '\\ued33'),\n    Y_COMBINATOR(\"cib-y-combinator\", '\\ued2d'),\n    ZALANDO(\"cib-zalando\", '\\ued34'),\n    ZAPIER(\"cib-zapier\", '\\ued35'),\n    ZEIT(\"cib-zeit\", '\\ued36'),\n    ZENDESK(\"cib-zendesk\", '\\ued37'),\n    ZERPLY(\"cib-zerply\", '\\ued38'),\n    ZILLOW(\"cib-zillow\", '\\ued39'),\n    ZINGAT(\"cib-zingat\", '\\ued3a'),\n    ZOOM(\"cib-zoom\", '\\ued3b'),\n    ZORIN(\"cib-zorin\", '\\ued3c'),\n    ZULIP(\"cib-zulip\", '\\ued3d');\n\n    public static CoreUiBrands findByDescription(String description) {\n        for (CoreUiBrands font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    CoreUiBrands(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-coreui-pack/src/main/java/org/kordamp/ikonli/coreui/CoreUiBrandsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.coreui;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class CoreUiBrandsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/coreui/2.0.0-beta.5/fonts/CoreUI-Icons-Brand.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"cib-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return CoreUiBrands.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"CoreUI-Icons-Brand\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-coreui-pack/src/main/java/org/kordamp/ikonli/coreui/CoreUiBrandsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.coreui;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class CoreUiBrandsIkonProvider implements IkonProvider<CoreUiBrands> {\n    @Override\n    public Class<CoreUiBrands> getIkon() {\n        return CoreUiBrands.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-coreui-pack/src/main/java/org/kordamp/ikonli/coreui/CoreUiFree.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.coreui;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum CoreUiFree implements Ikon {\n    ACCOUNT_LOGOUT(\"cil-account-logout\", '\\uea03'),\n    ACTION_REDO(\"cil-action-redo\", '\\uea04'),\n    ACTION_UNDO(\"cil-action-undo\", '\\uea05'),\n    ADDRESS_BOOK(\"cil-address-book\", '\\uea06'),\n    AIRPLANE_MODE(\"cil-airplane-mode\", '\\uea07'),\n    AIRPLANE_MODE_OFF(\"cil-airplane-mode-off\", '\\uea08'),\n    AIRPLAY(\"cil-airplay\", '\\uea09'),\n    ALARM(\"cil-alarm\", '\\uea0a'),\n    ALBUM(\"cil-album\", '\\uea0b'),\n    ALIGN_CENTER(\"cil-align-center\", '\\uea0c'),\n    ALIGN_LEFT(\"cil-align-left\", '\\uea0d'),\n    ALIGN_RIGHT(\"cil-align-right\", '\\uea0e'),\n    AMERICAN_FOOTBALL(\"cil-american-football\", '\\uea0f'),\n    ANIMAL(\"cil-animal\", '\\uea10'),\n    APERTURE(\"cil-aperture\", '\\uea11'),\n    APPLE(\"cil-apple\", '\\uea12'),\n    APPLICATIONS(\"cil-applications\", '\\uea13'),\n    APPLICATIONS_SETTINGS(\"cil-applications-settings\", '\\uea14'),\n    APPS(\"cil-apps\", '\\uea15'),\n    APPS_SETTINGS(\"cil-apps-settings\", '\\uea16'),\n    ARROW_BOTTOM(\"cil-arrow-bottom\", '\\uea17'),\n    ARROW_CIRCLE_BOTTOM(\"cil-arrow-circle-bottom\", '\\uea18'),\n    ARROW_CIRCLE_LEFT(\"cil-arrow-circle-left\", '\\uea19'),\n    ARROW_CIRCLE_RIGHT(\"cil-arrow-circle-right\", '\\uea1a'),\n    ARROW_CIRCLE_TOP(\"cil-arrow-circle-top\", '\\uea1b'),\n    ARROW_LEFT(\"cil-arrow-left\", '\\uea1c'),\n    ARROW_RIGHT(\"cil-arrow-right\", '\\uea1d'),\n    ARROW_THICK_BOTTOM(\"cil-arrow-thick-bottom\", '\\uea1e'),\n    ARROW_THICK_FROM_BOTTOM(\"cil-arrow-thick-from-bottom\", '\\uea1f'),\n    ARROW_THICK_FROM_LEFT(\"cil-arrow-thick-from-left\", '\\uea20'),\n    ARROW_THICK_FROM_RIGHT(\"cil-arrow-thick-from-right\", '\\uea21'),\n    ARROW_THICK_FROM_TOP(\"cil-arrow-thick-from-top\", '\\uea22'),\n    ARROW_THICK_LEFT(\"cil-arrow-thick-left\", '\\uea23'),\n    ARROW_THICK_RIGHT(\"cil-arrow-thick-right\", '\\uea24'),\n    ARROW_THICK_TOP(\"cil-arrow-thick-top\", '\\uea29'),\n    ARROW_THICK_TO_BOTTOM(\"cil-arrow-thick-to-bottom\", '\\uea25'),\n    ARROW_THICK_TO_LEFT(\"cil-arrow-thick-to-left\", '\\uea26'),\n    ARROW_THICK_TO_RIGHT(\"cil-arrow-thick-to-right\", '\\uea27'),\n    ARROW_THICK_TO_TOP(\"cil-arrow-thick-to-top\", '\\uea28'),\n    ARROW_TOP(\"cil-arrow-top\", '\\uea2a'),\n    ASSISTIVE_LISTENING_SYSTEM(\"cil-assistive-listening-system\", '\\uea2b'),\n    ASTERISK(\"cil-asterisk\", '\\uea2c'),\n    ASTERISK_CIRCLE(\"cil-asterisk-circle\", '\\uea2d'),\n    AT(\"cil-at\", '\\uea2e'),\n    AUDIO(\"cil-audio\", '\\uea2f'),\n    AUDIO_DESCRIPTION(\"cil-audio-description\", '\\uea30'),\n    AUDIO_SPECTRUM(\"cil-audio-spectrum\", '\\uea31'),\n    AV_TIMER(\"cil-av-timer\", '\\uea32'),\n    BABY(\"cil-baby\", '\\uea33'),\n    BABY_CARRIAGE(\"cil-baby-carriage\", '\\uea34'),\n    BACKSPACE(\"cil-backspace\", '\\uea35'),\n    BADGE(\"cil-badge\", '\\uea36'),\n    BALANCE_SCALE(\"cil-balance-scale\", '\\uea37'),\n    BAN(\"cil-ban\", '\\uea38'),\n    BANK(\"cil-bank\", '\\uea39'),\n    BARCODE(\"cil-barcode\", '\\uea3b'),\n    BAR_CHART(\"cil-bar-chart\", '\\uea3a'),\n    BASEBALL(\"cil-baseball\", '\\uea3c'),\n    BASKET(\"cil-basket\", '\\uea3d'),\n    BASKETBALL(\"cil-basketball\", '\\uea3e'),\n    BATH(\"cil-bath\", '\\uea3f'),\n    BATHROOM(\"cil-bathroom\", '\\uea40'),\n    BATTERY_0(\"cil-battery-0\", '\\uea41'),\n    BATTERY_3(\"cil-battery-3\", '\\uea42'),\n    BATTERY_5(\"cil-battery-5\", '\\uea43'),\n    BATTERY_ALERT(\"cil-battery-alert\", '\\uea44'),\n    BATTERY_EMPTY(\"cil-battery-empty\", '\\uea45'),\n    BATTERY_FULL(\"cil-battery-full\", '\\uea46'),\n    BATTERY_SLASH(\"cil-battery-slash\", '\\uea47'),\n    BEACH_ACCESS(\"cil-beach-access\", '\\uea48'),\n    BEAKER(\"cil-beaker\", '\\uea49'),\n    BED(\"cil-bed\", '\\uea4a'),\n    BELL(\"cil-bell\", '\\uea4b'),\n    BELL_EXCLAMATION(\"cil-bell-exclamation\", '\\uea4c'),\n    BIKE(\"cil-bike\", '\\uea4d'),\n    BIRTHDAY_CAKE(\"cil-birthday-cake\", '\\uea4e'),\n    BLIND(\"cil-blind\", '\\uea4f'),\n    BLUETOOTH(\"cil-bluetooth\", '\\uea50'),\n    BLUR(\"cil-blur\", '\\uea51'),\n    BLUR_CIRCULAR(\"cil-blur-circular\", '\\uea52'),\n    BLUR_LINEAR(\"cil-blur-linear\", '\\uea53'),\n    BOAT_ALT(\"cil-boat-alt\", '\\uea54'),\n    BOLD(\"cil-bold\", '\\uea55'),\n    BOLT(\"cil-bolt\", '\\uea56'),\n    BOLT_CIRCLE(\"cil-bolt-circle\", '\\uea57'),\n    BOOK(\"cil-book\", '\\uea58'),\n    BOOKMARK(\"cil-bookmark\", '\\uea59'),\n    BORDER_ALL(\"cil-border-all\", '\\uea5a'),\n    BORDER_BOTTOM(\"cil-border-bottom\", '\\uea5b'),\n    BORDER_CLEAR(\"cil-border-clear\", '\\uea5c'),\n    BORDER_HORIZONTAL(\"cil-border-horizontal\", '\\uea5d'),\n    BORDER_INNER(\"cil-border-inner\", '\\uea5e'),\n    BORDER_LEFT(\"cil-border-left\", '\\uea5f'),\n    BORDER_OUTER(\"cil-border-outer\", '\\uea60'),\n    BORDER_RIGHT(\"cil-border-right\", '\\uea61'),\n    BORDER_STYLE(\"cil-border-style\", '\\uea62'),\n    BORDER_TOP(\"cil-border-top\", '\\uea63'),\n    BORDER_VERTICAL(\"cil-border-vertical\", '\\uea64'),\n    BOWLING(\"cil-bowling\", '\\uea65'),\n    BRAILLE(\"cil-braille\", '\\uea66'),\n    BRIEFCASE(\"cil-briefcase\", '\\uea67'),\n    BRIGHTNESS(\"cil-brightness\", '\\uea68'),\n    BRITISH_POUND(\"cil-british-pound\", '\\uea69'),\n    BROWSER(\"cil-browser\", '\\uea6a'),\n    BRUSH(\"cil-brush\", '\\uea6b'),\n    BRUSH_ALT(\"cil-brush-alt\", '\\uea6c'),\n    BUG(\"cil-bug\", '\\uea6d'),\n    BUILDING(\"cil-building\", '\\uea6e'),\n    BULLHORN(\"cil-bullhorn\", '\\uea6f'),\n    BURGER(\"cil-burger\", '\\uea70'),\n    BURN(\"cil-burn\", '\\uea71'),\n    BUS_ALT(\"cil-bus-alt\", '\\uea72'),\n    CALCULATOR(\"cil-calculator\", '\\uea73'),\n    CALENDAR(\"cil-calendar\", '\\uea74'),\n    CALENDAR_CHECK(\"cil-calendar-check\", '\\uea75'),\n    CAMERA(\"cil-camera\", '\\uea76'),\n    CAMERA_CONTROL(\"cil-camera-control\", '\\uea77'),\n    CAMERA_ROLL(\"cil-camera-roll\", '\\uea78'),\n    CARET_BOTTOM(\"cil-caret-bottom\", '\\uea7a'),\n    CARET_LEFT(\"cil-caret-left\", '\\uea7b'),\n    CARET_RIGHT(\"cil-caret-right\", '\\uea7c'),\n    CARET_TOP(\"cil-caret-top\", '\\uea7d'),\n    CART(\"cil-cart\", '\\uea7e'),\n    CAR_ALT(\"cil-car-alt\", '\\uea79'),\n    CASH(\"cil-cash\", '\\uea7f'),\n    CASINO(\"cil-casino\", '\\uea80'),\n    CAST(\"cil-cast\", '\\uea81'),\n    CAT(\"cil-cat\", '\\uea82'),\n    CC(\"cil-cc\", '\\uea83'),\n    CENTER_FOCUS(\"cil-center-focus\", '\\uea84'),\n    CHART(\"cil-chart\", '\\uea85'),\n    CHART_LINE(\"cil-chart-line\", '\\uea86'),\n    CHART_PIE(\"cil-chart-pie\", '\\uea87'),\n    CHAT_BUBBLE(\"cil-chat-bubble\", '\\uea88'),\n    CHECK(\"cil-check\", '\\uea89'),\n    CHECK_ALT(\"cil-check-alt\", '\\uea8a'),\n    CHECK_CIRCLE(\"cil-check-circle\", '\\uea8b'),\n    CHEVRON_BOTTOM(\"cil-chevron-bottom\", '\\uea8c'),\n    CHEVRON_CIRCLE_DOWN_ALT(\"cil-chevron-circle-down-alt\", '\\uea8d'),\n    CHEVRON_CIRCLE_LEFT_ALT(\"cil-chevron-circle-left-alt\", '\\uea8e'),\n    CHEVRON_CIRCLE_RIGHT_ALT(\"cil-chevron-circle-right-alt\", '\\uea8f'),\n    CHEVRON_CIRCLE_UP_ALT(\"cil-chevron-circle-up-alt\", '\\uea90'),\n    CHEVRON_DOUBLE_DOWN(\"cil-chevron-double-down\", '\\uea91'),\n    CHEVRON_DOUBLE_LEFT(\"cil-chevron-double-left\", '\\uea92'),\n    CHEVRON_DOUBLE_RIGHT(\"cil-chevron-double-right\", '\\uea93'),\n    CHEVRON_DOUBLE_UP(\"cil-chevron-double-up\", '\\uea94'),\n    CHEVRON_LEFT(\"cil-chevron-left\", '\\uea95'),\n    CHEVRON_RIGHT(\"cil-chevron-right\", '\\uea96'),\n    CHEVRON_TOP(\"cil-chevron-top\", '\\uea97'),\n    CHILD(\"cil-child\", '\\uea98'),\n    CHILD_FRIENDLY(\"cil-child-friendly\", '\\uea99'),\n    CIRCLE(\"cil-circle\", '\\uea9a'),\n    CLEAR_ALL(\"cil-clear-all\", '\\uea9b'),\n    CLIPBOARD(\"cil-clipboard\", '\\uea9c'),\n    CLOCK(\"cil-clock\", '\\uea9d'),\n    CLONE(\"cil-clone\", '\\uea9e'),\n    CLOSED_CAPTIONING(\"cil-closed-captioning\", '\\uea9f'),\n    CLOUD(\"cil-cloud\", '\\ueaa0'),\n    CLOUDY(\"cil-cloudy\", '\\ueaa3'),\n    CLOUD_DOWNLOAD(\"cil-cloud-download\", '\\ueaa1'),\n    CLOUD_UPLOAD(\"cil-cloud-upload\", '\\ueaa2'),\n    CODE(\"cil-code\", '\\ueaa4'),\n    COFFEE(\"cil-coffee\", '\\ueaa5'),\n    COG(\"cil-cog\", '\\ueaa6'),\n    COLOR_BORDER(\"cil-color-border\", '\\ueaa7'),\n    COLOR_FILL(\"cil-color-fill\", '\\ueaa8'),\n    COLOR_PALETTE(\"cil-color-palette\", '\\ueaa9'),\n    COLUMNS(\"cil-columns\", '\\ueaaa'),\n    COMMAND(\"cil-command\", '\\ueaab'),\n    COMMENT_BUBBLE(\"cil-comment-bubble\", '\\ueaac'),\n    COMMENT_SQUARE(\"cil-comment-square\", '\\ueaad'),\n    COMPASS(\"cil-compass\", '\\ueaae'),\n    COMPRESS(\"cil-compress\", '\\ueaaf'),\n    CONTACT(\"cil-contact\", '\\ueab0'),\n    CONTRAST(\"cil-contrast\", '\\ueab1'),\n    CONTROL(\"cil-control\", '\\ueab2'),\n    COPY(\"cil-copy\", '\\ueab3'),\n    COUCH(\"cil-couch\", '\\ueab4'),\n    CREDIT_CARD(\"cil-credit-card\", '\\ueab5'),\n    CROP(\"cil-crop\", '\\ueab6'),\n    CROP_ROTATE(\"cil-crop-rotate\", '\\ueab7'),\n    CURSOR(\"cil-cursor\", '\\ueab8'),\n    CURSOR_MOVE(\"cil-cursor-move\", '\\ueab9'),\n    CUT(\"cil-cut\", '\\ueaba'),\n    DATA_TRANSFER_DOWN(\"cil-data-transfer-down\", '\\ueabb'),\n    DATA_TRANSFER_UP(\"cil-data-transfer-up\", '\\ueabc'),\n    DEAF(\"cil-deaf\", '\\ueabd'),\n    DELETE(\"cil-delete\", '\\ueabe'),\n    DESCRIPTION(\"cil-description\", '\\ueabf'),\n    DEVICES(\"cil-devices\", '\\ueac0'),\n    DIALPAD(\"cil-dialpad\", '\\ueac1'),\n    DIAMOND(\"cil-diamond\", '\\ueac2'),\n    DINNER(\"cil-dinner\", '\\ueac3'),\n    DISABLED(\"cil-disabled\", '\\ueac4'),\n    DOG(\"cil-dog\", '\\ueac5'),\n    DOLLAR(\"cil-dollar\", '\\ueac6'),\n    DOOR(\"cil-door\", '\\ueac7'),\n    DOUBLE_QUOTE_SANS_LEFT(\"cil-double-quote-sans-left\", '\\ueac8'),\n    DOUBLE_QUOTE_SANS_RIGHT(\"cil-double-quote-sans-right\", '\\ueac9'),\n    DRINK(\"cil-drink\", '\\ueaca'),\n    DRINK_ALCOHOL(\"cil-drink-alcohol\", '\\ueacb'),\n    DROP(\"cil-drop\", '\\ueacc'),\n    ECO(\"cil-eco\", '\\ueacd'),\n    EDUCATION(\"cil-education\", '\\ueace'),\n    ELEVATOR(\"cil-elevator\", '\\ueacf'),\n    ENVELOPE_CLOSED(\"cil-envelope-closed\", '\\uead0'),\n    ENVELOPE_LETTER(\"cil-envelope-letter\", '\\uead1'),\n    ENVELOPE_OPEN(\"cil-envelope-open\", '\\uead2'),\n    EQUALIZER(\"cil-equalizer\", '\\uead3'),\n    ETHERNET(\"cil-ethernet\", '\\uead4'),\n    EURO(\"cil-euro\", '\\uead5'),\n    EXCERPT(\"cil-excerpt\", '\\uead6'),\n    EXIT_TO_APP(\"cil-exit-to-app\", '\\uead7'),\n    EXPAND_DOWN(\"cil-expand-down\", '\\uead8'),\n    EXPAND_LEFT(\"cil-expand-left\", '\\uead9'),\n    EXPAND_RIGHT(\"cil-expand-right\", '\\ueada'),\n    EXPAND_UP(\"cil-expand-up\", '\\ueadb'),\n    EXPOSURE(\"cil-exposure\", '\\ueadc'),\n    EXTERNAL_LINK(\"cil-external-link\", '\\ueadd'),\n    EYEDROPPER(\"cil-eyedropper\", '\\ueade'),\n    FACE(\"cil-face\", '\\ueadf'),\n    FACE_DEAD(\"cil-face-dead\", '\\ueae0'),\n    FACTORY(\"cil-factory\", '\\ueae1'),\n    FACTORY_SLASH(\"cil-factory-slash\", '\\ueae2'),\n    FASTFOOD(\"cil-fastfood\", '\\ueae3'),\n    FAX(\"cil-fax\", '\\ueae4'),\n    FEATURED_PLAYLIST(\"cil-featured-playlist\", '\\ueae5'),\n    FILE(\"cil-file\", '\\ueae6'),\n    FILTER(\"cil-filter\", '\\ueae7'),\n    FILTER_FRAMES(\"cil-filter-frames\", '\\ueae8'),\n    FILTER_PHOTO(\"cil-filter-photo\", '\\ueae9'),\n    FILTER_SQUARE(\"cil-filter-square\", '\\ueaea'),\n    FILTER_X(\"cil-filter-x\", '\\ueaeb'),\n    FIND_IN_PAGE(\"cil-find-in-page\", '\\ueaec'),\n    FINGERPRINT(\"cil-fingerprint\", '\\ueaed'),\n    FIRE(\"cil-fire\", '\\ueaee'),\n    FLAG_ALT(\"cil-flag-alt\", '\\ueaef'),\n    FLIGHT_TAKEOFF(\"cil-flight-takeoff\", '\\ueaf0'),\n    FLIP(\"cil-flip\", '\\ueaf1'),\n    FLIP_TO_BACK(\"cil-flip-to-back\", '\\ueaf2'),\n    FLIP_TO_FRONT(\"cil-flip-to-front\", '\\ueaf3'),\n    FLOWER(\"cil-flower\", '\\ueaf4'),\n    FOLDER(\"cil-folder\", '\\ueaf5'),\n    FOLDER_OPEN(\"cil-folder-open\", '\\ueaf6'),\n    FONT(\"cil-font\", '\\ueaf7'),\n    FOOTBALL(\"cil-football\", '\\ueaf8'),\n    FORK(\"cil-fork\", '\\ueaf9'),\n    FRIDGE(\"cil-fridge\", '\\ueafa'),\n    FROWN(\"cil-frown\", '\\ueafb'),\n    FULLSCREEN(\"cil-fullscreen\", '\\ueafc'),\n    FULLSCREEN_EXIT(\"cil-fullscreen-exit\", '\\ueafd'),\n    FUNCTIONS(\"cil-functions\", '\\ueafe'),\n    FUNCTIONS_ALT(\"cil-functions-alt\", '\\ueaff'),\n    GAMEPAD(\"cil-gamepad\", '\\ueb00'),\n    GARAGE(\"cil-garage\", '\\ueb01'),\n    GAUGE(\"cil-gauge\", '\\ueb02'),\n    GEM(\"cil-gem\", '\\ueb03'),\n    GIF(\"cil-gif\", '\\ueb04'),\n    GIFT(\"cil-gift\", '\\ueb05'),\n    GLOBE_ALT(\"cil-globe-alt\", '\\ueb06'),\n    GOLF(\"cil-golf\", '\\ueb07'),\n    GOLF_ALT(\"cil-golf-alt\", '\\ueb08'),\n    GRADIENT(\"cil-gradient\", '\\ueb09'),\n    GRAIN(\"cil-grain\", '\\ueb0a'),\n    GRAPH(\"cil-graph\", '\\ueb0b'),\n    GRID(\"cil-grid\", '\\ueb0c'),\n    GRID_SLASH(\"cil-grid-slash\", '\\ueb0d'),\n    GROUP(\"cil-group\", '\\ueb0e'),\n    HAMBURGER_MENU(\"cil-hamburger-menu\", '\\ueb0f'),\n    HAND_POINT_DOWN(\"cil-hand-point-down\", '\\ueb10'),\n    HAND_POINT_LEFT(\"cil-hand-point-left\", '\\ueb11'),\n    HAND_POINT_RIGHT(\"cil-hand-point-right\", '\\ueb12'),\n    HAND_POINT_UP(\"cil-hand-point-up\", '\\ueb13'),\n    HAPPY(\"cil-happy\", '\\ueb14'),\n    HD(\"cil-hd\", '\\ueb15'),\n    HDR(\"cil-hdr\", '\\ueb16'),\n    HEADER(\"cil-header\", '\\ueb17'),\n    HEADPHONES(\"cil-headphones\", '\\ueb18'),\n    HEALING(\"cil-healing\", '\\ueb19'),\n    HEART(\"cil-heart\", '\\ueb1a'),\n    HIGHLIGHTER(\"cil-highlighter\", '\\ueb1b'),\n    HIGHLIGT(\"cil-highligt\", '\\ueb1c'),\n    HISTORY(\"cil-history\", '\\ueb1d'),\n    HOME(\"cil-home\", '\\ueb1e'),\n    HOSPITAL(\"cil-hospital\", '\\ueb1f'),\n    HOT_TUB(\"cil-hot-tub\", '\\ueb20'),\n    HOUSE(\"cil-house\", '\\ueb21'),\n    HTTPS(\"cil-https\", '\\ueb22'),\n    IMAGE(\"cil-image\", '\\ueb23'),\n    IMAGE_BROKEN(\"cil-image-broken\", '\\ueb24'),\n    IMAGE_PLUS(\"cil-image-plus\", '\\ueb25'),\n    INBOX(\"cil-inbox\", '\\ueb26'),\n    INDENT_DECREASE(\"cil-indent-decrease\", '\\ueb27'),\n    INDENT_INCREASE(\"cil-indent-increase\", '\\ueb28'),\n    INDUSTRY(\"cil-industry\", '\\ueb29'),\n    INDUSTRY_SLASH(\"cil-industry-slash\", '\\ueb2a'),\n    INFINITY(\"cil-infinity\", '\\ueb2b'),\n    INFO(\"cil-info\", '\\ueb2c'),\n    INPUT(\"cil-input\", '\\ueb2d'),\n    INPUT_HDMI(\"cil-input-hdmi\", '\\ueb2e'),\n    INPUT_POWER(\"cil-input-power\", '\\ueb2f'),\n    INSTITUTION(\"cil-institution\", '\\ueb30'),\n    ITALIC(\"cil-italic\", '\\ueb31'),\n    JUSTIFY_CENTER(\"cil-justify-center\", '\\ueb32'),\n    JUSTIFY_LEFT(\"cil-justify-left\", '\\ueb33'),\n    JUSTIFY_RIGHT(\"cil-justify-right\", '\\ueb34'),\n    KEYBOARD(\"cil-keyboard\", '\\ueb35'),\n    LAN(\"cil-lan\", '\\ueb36'),\n    LANGUAGE(\"cil-language\", '\\ueb37'),\n    LAPTOP(\"cil-laptop\", '\\ueb38'),\n    LAYERS(\"cil-layers\", '\\ueb39'),\n    LEAF(\"cil-leaf\", '\\ueb3a'),\n    LEMON(\"cil-lemon\", '\\ueb3b'),\n    LEVEL_DOWN(\"cil-level-down\", '\\ueb3c'),\n    LEVEL_UP(\"cil-level-up\", '\\ueb3d'),\n    LIBRARY(\"cil-library\", '\\ueb3e'),\n    LIBRARY_ADD(\"cil-library-add\", '\\ueb3f'),\n    LIBRARY_BUILDING(\"cil-library-building\", '\\ueb40'),\n    LIFE_RING(\"cil-life-ring\", '\\ueb41'),\n    LIGHTBULB(\"cil-lightbulb\", '\\ueb42'),\n    LINE_SPACING(\"cil-line-spacing\", '\\ueb43'),\n    LINE_STYLE(\"cil-line-style\", '\\ueb44'),\n    LINE_WEIGHT(\"cil-line-weight\", '\\ueb45'),\n    LINK(\"cil-link\", '\\ueb46'),\n    LINK_ALT(\"cil-link-alt\", '\\ueb47'),\n    LINK_BROKEN(\"cil-link-broken\", '\\ueb48'),\n    LIST(\"cil-list\", '\\ueb49'),\n    LIST_FILTER(\"cil-list-filter\", '\\ueb4a'),\n    LIST_HIGH_PRIORITY(\"cil-list-high-priority\", '\\ueb4b'),\n    LIST_LOW_PRIORITY(\"cil-list-low-priority\", '\\ueb4c'),\n    LIST_NUMBERED(\"cil-list-numbered\", '\\ueb4d'),\n    LIST_NUMBERED_RTL(\"cil-list-numbered-rtl\", '\\ueb4e'),\n    LIST_RICH(\"cil-list-rich\", '\\ueb4f'),\n    LOCATION_PIN(\"cil-location-pin\", '\\ueb50'),\n    LOCK_LOCKED(\"cil-lock-locked\", '\\ueb51'),\n    LOCK_UNLOCKED(\"cil-lock-unlocked\", '\\ueb52'),\n    LOCOMOTIVE(\"cil-locomotive\", '\\ueb53'),\n    LOOP(\"cil-loop\", '\\ueb54'),\n    LOOP_1(\"cil-loop-1\", '\\ueb55'),\n    LOOP_CIRCULAR(\"cil-loop-circular\", '\\ueb56'),\n    LOW_VISION(\"cil-low-vision\", '\\ueb57'),\n    MAGNIFYING_GLASS(\"cil-magnifying-glass\", '\\ueb58'),\n    MAP(\"cil-map\", '\\ueb59'),\n    MEDIA_EJECT(\"cil-media-eject\", '\\ueb5a'),\n    MEDIA_PAUSE(\"cil-media-pause\", '\\ueb5b'),\n    MEDIA_PLAY(\"cil-media-play\", '\\ueb5c'),\n    MEDIA_RECORD(\"cil-media-record\", '\\ueb5d'),\n    MEDIA_SKIP_BACKWARD(\"cil-media-skip-backward\", '\\ueb5e'),\n    MEDIA_SKIP_FORWARD(\"cil-media-skip-forward\", '\\ueb5f'),\n    MEDIA_STEP_BACKWARD(\"cil-media-step-backward\", '\\ueb60'),\n    MEDIA_STEP_FORWARD(\"cil-media-step-forward\", '\\ueb61'),\n    MEDIA_STOP(\"cil-media-stop\", '\\ueb62'),\n    MEDICAL_CROSS(\"cil-medical-cross\", '\\ueb63'),\n    MEH(\"cil-meh\", '\\ueb64'),\n    MEMORY(\"cil-memory\", '\\ueb65'),\n    MENU(\"cil-menu\", '\\ueb66'),\n    MIC(\"cil-mic\", '\\ueb67'),\n    MICROPHONE(\"cil-microphone\", '\\ueb68'),\n    MINUS(\"cil-minus\", '\\ueb69'),\n    MOBILE(\"cil-mobile\", '\\ueb6a'),\n    MOBILE_LANDSCAPE(\"cil-mobile-landscape\", '\\ueb6b'),\n    MONEY(\"cil-money\", '\\ueb6c'),\n    MONITOR(\"cil-monitor\", '\\ueb6d'),\n    MOOD_BAD(\"cil-mood-bad\", '\\ueb6e'),\n    MOOD_GOOD(\"cil-mood-good\", '\\ueb6f'),\n    MOOD_VERY_BAD(\"cil-mood-very-bad\", '\\ueb70'),\n    MOOD_VERY_GOOD(\"cil-mood-very-good\", '\\ueb71'),\n    MOON(\"cil-moon\", '\\ueb72'),\n    MOUSE(\"cil-mouse\", '\\ueb73'),\n    MOUTH_SLASH(\"cil-mouth-slash\", '\\ueb74'),\n    MOVE(\"cil-move\", '\\ueb75'),\n    MOVIE(\"cil-movie\", '\\ueb76'),\n    MUG(\"cil-mug\", '\\ueb77'),\n    MUG_TEA(\"cil-mug-tea\", '\\ueb78'),\n    MUSIC_NOTE(\"cil-music-note\", '\\ueb79'),\n    NEWSPAPER(\"cil-newspaper\", '\\ueb7a'),\n    NOTES(\"cil-notes\", '\\ueb7c'),\n    NOTE_ADD(\"cil-note-add\", '\\ueb7b'),\n    OBJECT_GROUP(\"cil-object-group\", '\\ueb7d'),\n    OBJECT_UNGROUP(\"cil-object-ungroup\", '\\ueb7e'),\n    OPACITY(\"cil-opacity\", '\\ueb7f'),\n    OPENTYPE(\"cil-opentype\", '\\ueb80'),\n    OPTIONS(\"cil-options\", '\\ueb81'),\n    PAINT(\"cil-paint\", '\\ueb82'),\n    PAINT_BUCKET(\"cil-paint-bucket\", '\\ueb83'),\n    PAPERCLIP(\"cil-paperclip\", '\\ueb85'),\n    PAPER_PLANE(\"cil-paper-plane\", '\\ueb84'),\n    PARAGRAPH(\"cil-paragraph\", '\\ueb86'),\n    PAW(\"cil-paw\", '\\ueb87'),\n    PEN(\"cil-pen\", '\\ueb88'),\n    PENCIL(\"cil-pencil\", '\\ueb8b'),\n    PEN_ALT(\"cil-pen-alt\", '\\ueb89'),\n    PEN_NIB(\"cil-pen-nib\", '\\ueb8a'),\n    PEOPLE(\"cil-people\", '\\ueb8c'),\n    PHONE(\"cil-phone\", '\\ueb8d'),\n    PIN(\"cil-pin\", '\\ueb8e'),\n    PIZZA(\"cil-pizza\", '\\ueb8f'),\n    PLANT(\"cil-plant\", '\\ueb90'),\n    PLAYLIST_ADD(\"cil-playlist-add\", '\\ueb91'),\n    PLUS(\"cil-plus\", '\\ueb92'),\n    POOL(\"cil-pool\", '\\ueb93'),\n    POWER_STANDBY(\"cil-power-standby\", '\\ueb94'),\n    PREGNANT(\"cil-pregnant\", '\\ueb95'),\n    PRINT(\"cil-print\", '\\ueb96'),\n    PUSHCHAIR(\"cil-pushchair\", '\\ueb97'),\n    PUZZLE(\"cil-puzzle\", '\\ueb98'),\n    QR_CODE(\"cil-qr-code\", '\\ueb99'),\n    RAIN(\"cil-rain\", '\\ueb9a'),\n    RECTANGLE(\"cil-rectangle\", '\\ueb9b'),\n    RECYCLE(\"cil-recycle\", '\\ueb9c'),\n    RELOAD(\"cil-reload\", '\\ueb9d'),\n    REPORT_SLASH(\"cil-report-slash\", '\\ueb9e'),\n    RESIZE_BOTH(\"cil-resize-both\", '\\ueb9f'),\n    RESIZE_HEIGHT(\"cil-resize-height\", '\\ueba0'),\n    RESIZE_WIDTH(\"cil-resize-width\", '\\ueba1'),\n    RESTAURANT(\"cil-restaurant\", '\\ueba2'),\n    ROOM(\"cil-room\", '\\ueba3'),\n    ROUTER(\"cil-router\", '\\ueba4'),\n    ROWING(\"cil-rowing\", '\\ueba5'),\n    RSS(\"cil-rss\", '\\ueba6'),\n    RUBLE(\"cil-ruble\", '\\ueba7'),\n    RUNNING(\"cil-running\", '\\ueba8'),\n    SAD(\"cil-sad\", '\\ueba9'),\n    SATELITE(\"cil-satelite\", '\\uebaa'),\n    SAVE(\"cil-save\", '\\uebab'),\n    SCHOOL(\"cil-school\", '\\uebac'),\n    SCREEN_DESKTOP(\"cil-screen-desktop\", '\\uebad'),\n    SCREEN_SMARTPHONE(\"cil-screen-smartphone\", '\\uebae'),\n    SCRUBBER(\"cil-scrubber\", '\\uebaf'),\n    SEARCH(\"cil-search\", '\\uebb0'),\n    SEND(\"cil-send\", '\\uebb1'),\n    SETTINGS(\"cil-settings\", '\\uebb2'),\n    SHARE(\"cil-share\", '\\uebb3'),\n    SHARE_ALL(\"cil-share-all\", '\\uebb4'),\n    SHARE_ALT(\"cil-share-alt\", '\\uebb5'),\n    SHARE_BOXED(\"cil-share-boxed\", '\\uebb6'),\n    SHIELD_ALT(\"cil-shield-alt\", '\\uebb7'),\n    SHORT_TEXT(\"cil-short-text\", '\\uebb8'),\n    SHOWER(\"cil-shower\", '\\uebb9'),\n    SIGNAL_CELLULAR_0(\"cil-signal-cellular-0\", '\\uebbb'),\n    SIGNAL_CELLULAR_3(\"cil-signal-cellular-3\", '\\uebbc'),\n    SIGNAL_CELLULAR_4(\"cil-signal-cellular-4\", '\\uebbd'),\n    SIGN_LANGUAGE(\"cil-sign-language\", '\\uebba'),\n    SIM(\"cil-sim\", '\\uebbe'),\n    SITEMAP(\"cil-sitemap\", '\\uebbf'),\n    SMILE(\"cil-smile\", '\\uebc0'),\n    SMILE_PLUS(\"cil-smile-plus\", '\\uebc1'),\n    SMOKE(\"cil-smoke\", '\\uebc2'),\n    SMOKE_FREE(\"cil-smoke-free\", '\\uebc3'),\n    SMOKE_SLASH(\"cil-smoke-slash\", '\\uebc4'),\n    SMOKING_ROOM(\"cil-smoking-room\", '\\uebc5'),\n    SNOWFLAKE(\"cil-snowflake\", '\\uebc6'),\n    SOCCER(\"cil-soccer\", '\\uebc7'),\n    SOFA(\"cil-sofa\", '\\uebc8'),\n    SORT_ALPHA_DOWN(\"cil-sort-alpha-down\", '\\uebc9'),\n    SORT_ALPHA_UP(\"cil-sort-alpha-up\", '\\uebca'),\n    SORT_ASCENDING(\"cil-sort-ascending\", '\\uebcb'),\n    SORT_DESCENDING(\"cil-sort-descending\", '\\uebcc'),\n    SORT_NUMERIC_DOWN(\"cil-sort-numeric-down\", '\\uebcd'),\n    SORT_NUMERIC_UP(\"cil-sort-numeric-up\", '\\uebce'),\n    SPA(\"cil-spa\", '\\uebcf'),\n    SPACE_BAR(\"cil-space-bar\", '\\uebd0'),\n    SPEAK(\"cil-speak\", '\\uebd1'),\n    SPEAKER(\"cil-speaker\", '\\uebd2'),\n    SPEECH(\"cil-speech\", '\\uebd3'),\n    SPEEDOMETER(\"cil-speedometer\", '\\uebd4'),\n    SPREADSHEET(\"cil-spreadsheet\", '\\uebd5'),\n    SQUARE(\"cil-square\", '\\uebd6'),\n    STAR(\"cil-star\", '\\uebd7'),\n    STAR_HALF(\"cil-star-half\", '\\uebd8'),\n    STORAGE(\"cil-storage\", '\\uebd9'),\n    STREAM(\"cil-stream\", '\\uebda'),\n    STRIKETHROUGH(\"cil-strikethrough\", '\\uebdb'),\n    SUN(\"cil-sun\", '\\uebdc'),\n    SWAP_HORIZONTAL(\"cil-swap-horizontal\", '\\uebdd'),\n    SWAP_VERTICAL(\"cil-swap-vertical\", '\\uebde'),\n    SWIMMING(\"cil-swimming\", '\\uebdf'),\n    SYNC(\"cil-sync\", '\\uebe0'),\n    TABLET(\"cil-tablet\", '\\uebe1'),\n    TAG(\"cil-tag\", '\\uebe2'),\n    TAGS(\"cil-tags\", '\\uebe3'),\n    TASK(\"cil-task\", '\\uebe4'),\n    TAXI(\"cil-taxi\", '\\uebe5'),\n    TENNIS(\"cil-tennis\", '\\uebe6'),\n    TENNIS_BALL(\"cil-tennis-ball\", '\\uebe7'),\n    TERMINAL(\"cil-terminal\", '\\uebe8'),\n    TERRAIN(\"cil-terrain\", '\\uebe9'),\n    TEXT(\"cil-text\", '\\uebea'),\n    TEXT_SHAPES(\"cil-text-shapes\", '\\uebeb'),\n    TEXT_SIZE(\"cil-text-size\", '\\uebec'),\n    TEXT_SQUARE(\"cil-text-square\", '\\uebed'),\n    TEXT_STRIKE(\"cil-text-strike\", '\\uebee'),\n    THUMB_DOWN(\"cil-thumb-down\", '\\uebef'),\n    THUMB_UP(\"cil-thumb-up\", '\\uebf0'),\n    TOGGLE_OFF(\"cil-toggle-off\", '\\uebf1'),\n    TOGGLE_ON(\"cil-toggle-on\", '\\uebf2'),\n    TOILET(\"cil-toilet\", '\\uebf3'),\n    TOUCH_APP(\"cil-touch-app\", '\\uebf4'),\n    TRANSFER(\"cil-transfer\", '\\uebf5'),\n    TRANSLATE(\"cil-translate\", '\\uebf6'),\n    TRASH(\"cil-trash\", '\\uebf7'),\n    TRIANGLE(\"cil-triangle\", '\\uebf8'),\n    TRUCK(\"cil-truck\", '\\uebf9'),\n    TV(\"cil-tv\", '\\uebfa'),\n    UNDERLINE(\"cil-underline\", '\\uebfb'),\n    USB(\"cil-usb\", '\\uebfc'),\n    USER(\"cil-user\", '\\uebfd'),\n    USER_FEMALE(\"cil-user-female\", '\\uebfe'),\n    USER_FOLLOW(\"cil-user-follow\", '\\uebff'),\n    USER_PLUS(\"cil-user-plus\", '\\uec00'),\n    USER_UNFOLLOW(\"cil-user-unfollow\", '\\uec01'),\n    USER_X(\"cil-user-x\", '\\uec02'),\n    VECTOR(\"cil-vector\", '\\uec03'),\n    VERTICAL_ALIGN_BOTTOM(\"cil-vertical-align-bottom\", '\\uec04'),\n    VERTICAL_ALIGN_CENTER(\"cil-vertical-align-center\", '\\uec05'),\n    VERTICAL_ALIGN_TOP(\"cil-vertical-align-top\", '\\uec06'),\n    VIDEO(\"cil-video\", '\\uec07'),\n    VIDEOGAME(\"cil-videogame\", '\\uec08'),\n    VIEW_COLUMN(\"cil-view-column\", '\\uec09'),\n    VIEW_MODULE(\"cil-view-module\", '\\uec0a'),\n    VIEW_QUILT(\"cil-view-quilt\", '\\uec0b'),\n    VIEW_STREAM(\"cil-view-stream\", '\\uec0c'),\n    VOICE(\"cil-voice\", '\\uec0d'),\n    VOICE_OVER_RECORD(\"cil-voice-over-record\", '\\uec0e'),\n    VOLUME_HIGH(\"cil-volume-high\", '\\uec0f'),\n    VOLUME_LOW(\"cil-volume-low\", '\\uec10'),\n    VOLUME_OFF(\"cil-volume-off\", '\\uec11'),\n    WALK(\"cil-walk\", '\\uec12'),\n    WALLET(\"cil-wallet\", '\\uec13'),\n    WALLPAPER(\"cil-wallpaper\", '\\uec14'),\n    WARNING(\"cil-warning\", '\\uec15'),\n    WATCH(\"cil-watch\", '\\uec16'),\n    WC(\"cil-wc\", '\\uec17'),\n    WEIGHTLIFITNG(\"cil-weightlifitng\", '\\uec18'),\n    WHEELCHAIR(\"cil-wheelchair\", '\\uec19'),\n    WIFI_SIGNAL_0(\"cil-wifi-signal-0\", '\\uec1a'),\n    WIFI_SIGNAL_1(\"cil-wifi-signal-1\", '\\uec1b'),\n    WIFI_SIGNAL_2(\"cil-wifi-signal-2\", '\\uec1c'),\n    WIFI_SIGNAL_3(\"cil-wifi-signal-3\", '\\uec1d'),\n    WIFI_SIGNAL_4(\"cil-wifi-signal-4\", '\\uec1e'),\n    WIFI_SIGNAL_OFF(\"cil-wifi-signal-off\", '\\uec1f'),\n    WINDOW(\"cil-window\", '\\uec20'),\n    WINDOW_MAXIMIZE(\"cil-window-maximize\", '\\uec21'),\n    WINDOW_MINIMIZE(\"cil-window-minimize\", '\\uec22'),\n    WINDOW_RESTORE(\"cil-window-restore\", '\\uec23'),\n    WRAP_TEXT(\"cil-wrap-text\", '\\uec24'),\n    X(\"cil-x\", '\\uec25'),\n    X_CIRCLE(\"cil-x-circle\", '\\uec26'),\n    YEN(\"cil-yen\", '\\uec27'),\n    ZOOM(\"cil-zoom\", '\\uec28'),\n    ZOOM_IN(\"cil-zoom-in\", '\\uec29'),\n    ZOOM_OUT(\"cil-zoom-out\", '\\uec2a');\n\n    public static CoreUiFree findByDescription(String description) {\n        for (CoreUiFree font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    CoreUiFree(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-coreui-pack/src/main/java/org/kordamp/ikonli/coreui/CoreUiFreeIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.coreui;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class CoreUiFreeIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/coreui/2.0.0-beta.5/fonts/CoreUI-Icons-Free.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"cil-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return CoreUiFree.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"CoreUI-Icons-Free\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-coreui-pack/src/main/java/org/kordamp/ikonli/coreui/CoreUiFreeIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.coreui;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class CoreUiFreeIkonProvider implements IkonProvider<CoreUiFree> {\n    @Override\n    public Class<CoreUiFree> getIkon() {\n        return CoreUiFree.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-coreui-pack/src/main/resources/META-INF/resources/coreui/2.0.0-beta.5/css/coreui-brand.css",
    "content": "@charset \"UTF-8\";\n/*!\n * CoreUI Icons - Brand Icons\n * @version v2.0.0-beta.4\n * @link https://coreui.io/icons/brand/\n * Copyright (c) 2020 creativeLabs Łukasz Holeczek\n * Licensed under CC0 1.0 Universal\n */\n@font-face {\n  font-family: 'CoreUI-Icons-Brand';\n  src: url(\"../fonts/CoreUI-Icons-Brand.eot?64h6xh\");\n  src: url(\"../fonts/CoreUI-Icons-Brand.eot?64h6xh#iefix\") format(\"embedded-opentype\"), url(\"../fonts/CoreUI-Icons-Brand.ttf?64h6xh\") format(\"truetype\"), url(\"../fonts/CoreUI-Icons-Brand.woff?64h6xh\") format(\"woff\"), url(\"../fonts/CoreUI-Icons-Brand.svg?64h6xh#CoreUI-Icons-Brand\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n[class^=\"cib-\"], [class*=\" cib-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'CoreUI-Icons-Brand' !important;\n  speak: none;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.cib-500px:before {\n  content: \"\\ea01\";\n}\n\n.cib-500px-5:before {\n  content: \"\\ea02\";\n}\n\n.cib-about-me:before {\n  content: \"\\ea03\";\n}\n\n.cib-abstract:before {\n  content: \"\\ea04\";\n}\n\n.cib-acm:before {\n  content: \"\\ea05\";\n}\n\n.cib-addthis:before {\n  content: \"\\ea06\";\n}\n\n.cib-adguard:before {\n  content: \"\\ea07\";\n}\n\n.cib-adobe:before {\n  content: \"\\ea08\";\n}\n\n.cib-adobe-acrobat-reader:before {\n  content: \"\\ea09\";\n}\n\n.cib-adobe-after-effects:before {\n  content: \"\\ea0a\";\n}\n\n.cib-adobe-audition:before {\n  content: \"\\ea0b\";\n}\n\n.cib-adobe-creative-cloud:before {\n  content: \"\\ea0c\";\n}\n\n.cib-adobe-dreamweaver:before {\n  content: \"\\ea0d\";\n}\n\n.cib-adobe-illustrator:before {\n  content: \"\\ea0e\";\n}\n\n.cib-adobe-indesign:before {\n  content: \"\\ea0f\";\n}\n\n.cib-adobe-lightroom:before {\n  content: \"\\ea10\";\n}\n\n.cib-adobe-lightroom-classic:before {\n  content: \"\\ea11\";\n}\n\n.cib-adobe-photoshop:before {\n  content: \"\\ea12\";\n}\n\n.cib-adobe-premiere:before {\n  content: \"\\ea13\";\n}\n\n.cib-adobe-typekit:before {\n  content: \"\\ea14\";\n}\n\n.cib-adobe-xd:before {\n  content: \"\\ea15\";\n}\n\n.cib-airbnb:before {\n  content: \"\\ea16\";\n}\n\n.cib-algolia:before {\n  content: \"\\ea17\";\n}\n\n.cib-alipay:before {\n  content: \"\\ea18\";\n}\n\n.cib-allocine:before {\n  content: \"\\ea19\";\n}\n\n.cib-amazon:before {\n  content: \"\\ea1a\";\n}\n\n.cib-amazon-aws:before {\n  content: \"\\ea1b\";\n}\n\n.cib-amazon-pay:before {\n  content: \"\\ea1c\";\n}\n\n.cib-amd:before {\n  content: \"\\ea1d\";\n}\n\n.cib-american-express:before {\n  content: \"\\ea1e\";\n}\n\n.cib-anaconda:before {\n  content: \"\\ea1f\";\n}\n\n.cib-analogue:before {\n  content: \"\\ea20\";\n}\n\n.cib-android:before {\n  content: \"\\ea21\";\n}\n\n.cib-android-alt:before {\n  content: \"\\ea22\";\n}\n\n.cib-angellist:before {\n  content: \"\\ea23\";\n}\n\n.cib-angular:before {\n  content: \"\\ea24\";\n}\n\n.cib-angular-universal:before {\n  content: \"\\ea25\";\n}\n\n.cib-ansible:before {\n  content: \"\\ea26\";\n}\n\n.cib-apache:before {\n  content: \"\\ea27\";\n}\n\n.cib-apache-airflow:before {\n  content: \"\\ea28\";\n}\n\n.cib-apache-flink:before {\n  content: \"\\ea29\";\n}\n\n.cib-apache-spark:before {\n  content: \"\\ea2a\";\n}\n\n.cib-app-store:before {\n  content: \"\\ea2b\";\n}\n\n.cib-app-store-ios:before {\n  content: \"\\ea2c\";\n}\n\n.cib-apple:before {\n  content: \"\\ea2d\";\n}\n\n.cib-apple-music:before {\n  content: \"\\ea2e\";\n}\n\n.cib-apple-pay:before {\n  content: \"\\ea2f\";\n}\n\n.cib-apple-podcasts:before {\n  content: \"\\ea30\";\n}\n\n.cib-appveyor:before {\n  content: \"\\ea31\";\n}\n\n.cib-aral:before {\n  content: \"\\ea32\";\n}\n\n.cib-arch-linux:before {\n  content: \"\\ea33\";\n}\n\n.cib-archive-of-our-own:before {\n  content: \"\\ea34\";\n}\n\n.cib-arduino:before {\n  content: \"\\ea35\";\n}\n\n.cib-artstation:before {\n  content: \"\\ea36\";\n}\n\n.cib-arxiv:before {\n  content: \"\\ea37\";\n}\n\n.cib-asana:before {\n  content: \"\\ea38\";\n}\n\n.cib-at-and-t:before {\n  content: \"\\ea39\";\n}\n\n.cib-atlassian:before {\n  content: \"\\ea3a\";\n}\n\n.cib-atom:before {\n  content: \"\\ea3b\";\n}\n\n.cib-audible:before {\n  content: \"\\ea3c\";\n}\n\n.cib-aurelia:before {\n  content: \"\\ea3d\";\n}\n\n.cib-auth0:before {\n  content: \"\\ea3e\";\n}\n\n.cib-automatic:before {\n  content: \"\\ea3f\";\n}\n\n.cib-autotask:before {\n  content: \"\\ea40\";\n}\n\n.cib-aventrix:before {\n  content: \"\\ea41\";\n}\n\n.cib-azure-artifacts:before {\n  content: \"\\ea42\";\n}\n\n.cib-azure-devops:before {\n  content: \"\\ea43\";\n}\n\n.cib-azure-pipelines:before {\n  content: \"\\ea44\";\n}\n\n.cib-babel:before {\n  content: \"\\ea45\";\n}\n\n.cib-baidu:before {\n  content: \"\\ea46\";\n}\n\n.cib-bamboo:before {\n  content: \"\\ea47\";\n}\n\n.cib-bancontact:before {\n  content: \"\\ea48\";\n}\n\n.cib-bandcamp:before {\n  content: \"\\ea49\";\n}\n\n.cib-basecamp:before {\n  content: \"\\ea4a\";\n}\n\n.cib-bathasu:before {\n  content: \"\\ea4b\";\n}\n\n.cib-behance:before {\n  content: \"\\ea4c\";\n}\n\n.cib-big-cartel:before {\n  content: \"\\ea4d\";\n}\n\n.cib-bing:before {\n  content: \"\\ea4e\";\n}\n\n.cib-bit:before {\n  content: \"\\ea4f\";\n}\n\n.cib-bitbucket:before {\n  content: \"\\ea50\";\n}\n\n.cib-bitcoin:before {\n  content: \"\\ea51\";\n}\n\n.cib-bitdefender:before {\n  content: \"\\ea52\";\n}\n\n.cib-bitly:before {\n  content: \"\\ea53\";\n}\n\n.cib-blackberry:before {\n  content: \"\\ea54\";\n}\n\n.cib-blender:before {\n  content: \"\\ea55\";\n}\n\n.cib-blogger:before {\n  content: \"\\ea56\";\n}\n\n.cib-blogger-b:before {\n  content: \"\\ea57\";\n}\n\n.cib-bluetooth:before {\n  content: \"\\ea58\";\n}\n\n.cib-bluetooth-b:before {\n  content: \"\\ea59\";\n}\n\n.cib-boeing:before {\n  content: \"\\ea5a\";\n}\n\n.cib-boost:before {\n  content: \"\\ea5b\";\n}\n\n.cib-bootstrap:before {\n  content: \"\\ea5c\";\n}\n\n.cib-bower:before {\n  content: \"\\ea5d\";\n}\n\n.cib-brand-ai:before {\n  content: \"\\ea5e\";\n}\n\n.cib-brave:before {\n  content: \"\\ea5f\";\n}\n\n.cib-btc:before {\n  content: \"\\ea60\";\n}\n\n.cib-buddy:before {\n  content: \"\\ea61\";\n}\n\n.cib-buffer:before {\n  content: \"\\ea62\";\n}\n\n.cib-buy-me-a-coffee:before {\n  content: \"\\ea63\";\n}\n\n.cib-buysellads:before {\n  content: \"\\ea64\";\n}\n\n.cib-buzzfeed:before {\n  content: \"\\ea65\";\n}\n\n.cib-c:before {\n  content: \"\\ea66\";\n}\n\n.cib-cakephp:before {\n  content: \"\\ea67\";\n}\n\n.cib-campaign-monitor:before {\n  content: \"\\ea68\";\n}\n\n.cib-canva:before {\n  content: \"\\ea69\";\n}\n\n.cib-cashapp:before {\n  content: \"\\ea6a\";\n}\n\n.cib-cassandra:before {\n  content: \"\\ea6b\";\n}\n\n.cib-castro:before {\n  content: \"\\ea6c\";\n}\n\n.cib-cc-amazon-pay:before {\n  content: \"\\ea6d\";\n}\n\n.cib-cc-amex:before {\n  content: \"\\ea6e\";\n}\n\n.cib-cc-apple-pay:before {\n  content: \"\\ea6f\";\n}\n\n.cib-cc-diners-club:before {\n  content: \"\\ea70\";\n}\n\n.cib-cc-discover:before {\n  content: \"\\ea71\";\n}\n\n.cib-cc-jcb:before {\n  content: \"\\ea72\";\n}\n\n.cib-cc-mastercard:before {\n  content: \"\\ea73\";\n}\n\n.cib-cc-paypal:before {\n  content: \"\\ea74\";\n}\n\n.cib-cc-stripe:before {\n  content: \"\\ea75\";\n}\n\n.cib-cc-visa:before {\n  content: \"\\ea76\";\n}\n\n.cib-centos:before {\n  content: \"\\ea77\";\n}\n\n.cib-cevo:before {\n  content: \"\\ea78\";\n}\n\n.cib-chase:before {\n  content: \"\\ea79\";\n}\n\n.cib-chef:before {\n  content: \"\\ea7a\";\n}\n\n.cib-chromecast:before {\n  content: \"\\ea7b\";\n}\n\n.cib-circle:before {\n  content: \"\\ea7c\";\n}\n\n.cib-circleci:before {\n  content: \"\\ea7d\";\n}\n\n.cib-cirrusci:before {\n  content: \"\\ea7e\";\n}\n\n.cib-cisco:before {\n  content: \"\\ea7f\";\n}\n\n.cib-civicrm:before {\n  content: \"\\ea80\";\n}\n\n.cib-clockify:before {\n  content: \"\\ea81\";\n}\n\n.cib-clojure:before {\n  content: \"\\ea82\";\n}\n\n.cib-cloudbees:before {\n  content: \"\\ea83\";\n}\n\n.cib-cloudflare:before {\n  content: \"\\ea84\";\n}\n\n.cib-cmake:before {\n  content: \"\\ea85\";\n}\n\n.cib-co-op:before {\n  content: \"\\ea86\";\n}\n\n.cib-codacy:before {\n  content: \"\\ea87\";\n}\n\n.cib-code-climate:before {\n  content: \"\\ea88\";\n}\n\n.cib-codecademy:before {\n  content: \"\\ea89\";\n}\n\n.cib-codecov:before {\n  content: \"\\ea8a\";\n}\n\n.cib-codeigniter:before {\n  content: \"\\ea8b\";\n}\n\n.cib-codepen:before {\n  content: \"\\ea8c\";\n}\n\n.cib-coderwall:before {\n  content: \"\\ea8d\";\n}\n\n.cib-codesandbox:before {\n  content: \"\\ea8e\";\n}\n\n.cib-codeship:before {\n  content: \"\\ea8f\";\n}\n\n.cib-codewars:before {\n  content: \"\\ea90\";\n}\n\n.cib-codio:before {\n  content: \"\\ea91\";\n}\n\n.cib-coffeescript:before {\n  content: \"\\ea92\";\n}\n\n.cib-common-workflow-language:before {\n  content: \"\\ea93\";\n}\n\n.cib-composer:before {\n  content: \"\\ea94\";\n}\n\n.cib-conda-forge:before {\n  content: \"\\ea95\";\n}\n\n.cib-conekta:before {\n  content: \"\\ea96\";\n}\n\n.cib-confluence:before {\n  content: \"\\ea97\";\n}\n\n.cib-coreui:before {\n  content: \"\\ea98\";\n}\n\n.cib-coreui-c:before {\n  content: \"\\ea99\";\n}\n\n.cib-coursera:before {\n  content: \"\\ea9a\";\n}\n\n.cib-coveralls:before {\n  content: \"\\ea9b\";\n}\n\n.cib-cpanel:before {\n  content: \"\\ea9c\";\n}\n\n.cib-cplusplus:before {\n  content: \"\\ea9d\";\n}\n\n.cib-creative-commons:before {\n  content: \"\\ea9e\";\n}\n\n.cib-creative-commons-by:before {\n  content: \"\\ea9f\";\n}\n\n.cib-creative-commons-nc:before {\n  content: \"\\eaa0\";\n}\n\n.cib-creative-commons-nc-eu:before {\n  content: \"\\eaa1\";\n}\n\n.cib-creative-commons-nc-jp:before {\n  content: \"\\eaa2\";\n}\n\n.cib-creative-commons-nd:before {\n  content: \"\\eaa3\";\n}\n\n.cib-creative-commons-pd:before {\n  content: \"\\eaa4\";\n}\n\n.cib-creative-commons-pd-alt:before {\n  content: \"\\eaa5\";\n}\n\n.cib-creative-commons-remix:before {\n  content: \"\\eaa6\";\n}\n\n.cib-creative-commons-sa:before {\n  content: \"\\eaa7\";\n}\n\n.cib-creative-commons-sampling:before {\n  content: \"\\eaa8\";\n}\n\n.cib-creative-commons-sampling-plus:before {\n  content: \"\\eaa9\";\n}\n\n.cib-creative-commons-share:before {\n  content: \"\\eaaa\";\n}\n\n.cib-creative-commons-zero:before {\n  content: \"\\eaab\";\n}\n\n.cib-crunchbase:before {\n  content: \"\\eaac\";\n}\n\n.cib-crunchyroll:before {\n  content: \"\\eaad\";\n}\n\n.cib-css3:before {\n  content: \"\\eaae\";\n}\n\n.cib-css3-shiled:before {\n  content: \"\\eaaf\";\n}\n\n.cib-csswizardry:before {\n  content: \"\\eab0\";\n}\n\n.cib-d3-js:before {\n  content: \"\\eab1\";\n}\n\n.cib-dailymotion:before {\n  content: \"\\eab2\";\n}\n\n.cib-dashlane:before {\n  content: \"\\eab3\";\n}\n\n.cib-dazn:before {\n  content: \"\\eab4\";\n}\n\n.cib-dblp:before {\n  content: \"\\eab5\";\n}\n\n.cib-debian:before {\n  content: \"\\eab6\";\n}\n\n.cib-deepin:before {\n  content: \"\\eab7\";\n}\n\n.cib-deezer:before {\n  content: \"\\eab8\";\n}\n\n.cib-delicious:before {\n  content: \"\\eab9\";\n}\n\n.cib-dell:before {\n  content: \"\\eaba\";\n}\n\n.cib-deno:before {\n  content: \"\\eabb\";\n}\n\n.cib-dependabot:before {\n  content: \"\\eabc\";\n}\n\n.cib-designer-news:before {\n  content: \"\\eabd\";\n}\n\n.cib-dev-to:before {\n  content: \"\\eabe\";\n}\n\n.cib-deviantart:before {\n  content: \"\\eabf\";\n}\n\n.cib-devrant:before {\n  content: \"\\eac0\";\n}\n\n.cib-diaspora:before {\n  content: \"\\eac1\";\n}\n\n.cib-digg:before {\n  content: \"\\eac2\";\n}\n\n.cib-digital-ocean:before {\n  content: \"\\eac3\";\n}\n\n.cib-discord:before {\n  content: \"\\eac4\";\n}\n\n.cib-discourse:before {\n  content: \"\\eac5\";\n}\n\n.cib-discover:before {\n  content: \"\\eac6\";\n}\n\n.cib-disqus:before {\n  content: \"\\eac7\";\n}\n\n.cib-disroot:before {\n  content: \"\\eac8\";\n}\n\n.cib-django:before {\n  content: \"\\eac9\";\n}\n\n.cib-docker:before {\n  content: \"\\eaca\";\n}\n\n.cib-docusign:before {\n  content: \"\\eacb\";\n}\n\n.cib-dot-net:before {\n  content: \"\\eacc\";\n}\n\n.cib-draugiem-lv:before {\n  content: \"\\eacd\";\n}\n\n.cib-dribbble:before {\n  content: \"\\eace\";\n}\n\n.cib-drone:before {\n  content: \"\\eacf\";\n}\n\n.cib-dropbox:before {\n  content: \"\\ead0\";\n}\n\n.cib-drupal:before {\n  content: \"\\ead1\";\n}\n\n.cib-dtube:before {\n  content: \"\\ead2\";\n}\n\n.cib-duckduckgo:before {\n  content: \"\\ead3\";\n}\n\n.cib-dynatrace:before {\n  content: \"\\ead4\";\n}\n\n.cib-ebay:before {\n  content: \"\\ead5\";\n}\n\n.cib-eclipseide:before {\n  content: \"\\ead6\";\n}\n\n.cib-elastic:before {\n  content: \"\\ead7\";\n}\n\n.cib-elastic-cloud:before {\n  content: \"\\ead8\";\n}\n\n.cib-elastic-search:before {\n  content: \"\\ead9\";\n}\n\n.cib-elastic-stack:before {\n  content: \"\\eada\";\n}\n\n.cib-electron:before {\n  content: \"\\eadb\";\n}\n\n.cib-elementary:before {\n  content: \"\\eadc\";\n}\n\n.cib-eleventy:before {\n  content: \"\\eadd\";\n}\n\n.cib-ello:before {\n  content: \"\\eade\";\n}\n\n.cib-elsevier:before {\n  content: \"\\eadf\";\n}\n\n.cib-emlakjet:before {\n  content: \"\\eae0\";\n}\n\n.cib-empirekred:before {\n  content: \"\\eae1\";\n}\n\n.cib-envato:before {\n  content: \"\\eae2\";\n}\n\n.cib-epic-games:before {\n  content: \"\\eae3\";\n}\n\n.cib-epson:before {\n  content: \"\\eae4\";\n}\n\n.cib-esea:before {\n  content: \"\\eae5\";\n}\n\n.cib-eslint:before {\n  content: \"\\eae6\";\n}\n\n.cib-ethereum:before {\n  content: \"\\eae7\";\n}\n\n.cib-etsy:before {\n  content: \"\\eae8\";\n}\n\n.cib-event-store:before {\n  content: \"\\eae9\";\n}\n\n.cib-eventbrite:before {\n  content: \"\\eaea\";\n}\n\n.cib-evernote:before {\n  content: \"\\eaeb\";\n}\n\n.cib-everplaces:before {\n  content: \"\\eaec\";\n}\n\n.cib-evry:before {\n  content: \"\\eaed\";\n}\n\n.cib-exercism:before {\n  content: \"\\eaee\";\n}\n\n.cib-experts-exchange:before {\n  content: \"\\eaef\";\n}\n\n.cib-expo:before {\n  content: \"\\eaf0\";\n}\n\n.cib-eyeem:before {\n  content: \"\\eaf1\";\n}\n\n.cib-f-secure:before {\n  content: \"\\eaf2\";\n}\n\n.cib-facebook:before {\n  content: \"\\eaf3\";\n}\n\n.cib-facebook-f:before {\n  content: \"\\eaf4\";\n}\n\n.cib-faceit:before {\n  content: \"\\eaf5\";\n}\n\n.cib-fandango:before {\n  content: \"\\eaf6\";\n}\n\n.cib-favro:before {\n  content: \"\\eaf7\";\n}\n\n.cib-feathub:before {\n  content: \"\\eaf8\";\n}\n\n.cib-fedex:before {\n  content: \"\\eaf9\";\n}\n\n.cib-fedora:before {\n  content: \"\\eafa\";\n}\n\n.cib-feedly:before {\n  content: \"\\eafb\";\n}\n\n.cib-fido-alliance:before {\n  content: \"\\eafc\";\n}\n\n.cib-figma:before {\n  content: \"\\eafd\";\n}\n\n.cib-filezilla:before {\n  content: \"\\eafe\";\n}\n\n.cib-firebase:before {\n  content: \"\\eaff\";\n}\n\n.cib-fitbit:before {\n  content: \"\\eb00\";\n}\n\n.cib-flask:before {\n  content: \"\\eb01\";\n}\n\n.cib-flattr:before {\n  content: \"\\eb02\";\n}\n\n.cib-flickr:before {\n  content: \"\\eb03\";\n}\n\n.cib-flipboard:before {\n  content: \"\\eb04\";\n}\n\n.cib-flutter:before {\n  content: \"\\eb05\";\n}\n\n.cib-fnac:before {\n  content: \"\\eb06\";\n}\n\n.cib-foursquare:before {\n  content: \"\\eb07\";\n}\n\n.cib-framer:before {\n  content: \"\\eb08\";\n}\n\n.cib-freebsd:before {\n  content: \"\\eb09\";\n}\n\n.cib-freecodecamp:before {\n  content: \"\\eb0a\";\n}\n\n.cib-fur-affinity:before {\n  content: \"\\eb0b\";\n}\n\n.cib-furry-network:before {\n  content: \"\\eb0c\";\n}\n\n.cib-garmin:before {\n  content: \"\\eb0d\";\n}\n\n.cib-gatsby:before {\n  content: \"\\eb0e\";\n}\n\n.cib-gauges:before {\n  content: \"\\eb0f\";\n}\n\n.cib-genius:before {\n  content: \"\\eb10\";\n}\n\n.cib-gentoo:before {\n  content: \"\\eb11\";\n}\n\n.cib-geocaching:before {\n  content: \"\\eb12\";\n}\n\n.cib-gerrit:before {\n  content: \"\\eb13\";\n}\n\n.cib-gg:before {\n  content: \"\\eb14\";\n}\n\n.cib-ghost:before {\n  content: \"\\eb15\";\n}\n\n.cib-gimp:before {\n  content: \"\\eb16\";\n}\n\n.cib-git:before {\n  content: \"\\eb17\";\n}\n\n.cib-gitea:before {\n  content: \"\\eb18\";\n}\n\n.cib-github:before {\n  content: \"\\eb19\";\n}\n\n.cib-gitkraken:before {\n  content: \"\\eb1a\";\n}\n\n.cib-gitlab:before {\n  content: \"\\eb1b\";\n}\n\n.cib-gitpod:before {\n  content: \"\\eb1c\";\n}\n\n.cib-gitter:before {\n  content: \"\\eb1d\";\n}\n\n.cib-glassdoor:before {\n  content: \"\\eb1e\";\n}\n\n.cib-glitch:before {\n  content: \"\\eb1f\";\n}\n\n.cib-gmail:before {\n  content: \"\\eb20\";\n}\n\n.cib-gnu:before {\n  content: \"\\eb21\";\n}\n\n.cib-gnu-privacy-guard:before {\n  content: \"\\eb22\";\n}\n\n.cib-gnu-social:before {\n  content: \"\\eb23\";\n}\n\n.cib-go:before {\n  content: \"\\eb24\";\n}\n\n.cib-godot-engine:before {\n  content: \"\\eb25\";\n}\n\n.cib-gog-com:before {\n  content: \"\\eb26\";\n}\n\n.cib-goldenline:before {\n  content: \"\\eb27\";\n}\n\n.cib-goodreads:before {\n  content: \"\\eb28\";\n}\n\n.cib-google:before {\n  content: \"\\eb29\";\n}\n\n.cib-google-ads:before {\n  content: \"\\eb2a\";\n}\n\n.cib-google-allo:before {\n  content: \"\\eb2b\";\n}\n\n.cib-google-analytics:before {\n  content: \"\\eb2c\";\n}\n\n.cib-google-chrome:before {\n  content: \"\\eb2d\";\n}\n\n.cib-google-cloud:before {\n  content: \"\\eb2e\";\n}\n\n.cib-google-keep:before {\n  content: \"\\eb2f\";\n}\n\n.cib-google-pay:before {\n  content: \"\\eb30\";\n}\n\n.cib-google-play:before {\n  content: \"\\eb31\";\n}\n\n.cib-google-podcasts:before {\n  content: \"\\eb32\";\n}\n\n.cib-googles-cholar:before {\n  content: \"\\eb33\";\n}\n\n.cib-gov-uk:before {\n  content: \"\\eb34\";\n}\n\n.cib-gradle:before {\n  content: \"\\eb35\";\n}\n\n.cib-grafana:before {\n  content: \"\\eb36\";\n}\n\n.cib-graphcool:before {\n  content: \"\\eb37\";\n}\n\n.cib-graphql:before {\n  content: \"\\eb38\";\n}\n\n.cib-grav:before {\n  content: \"\\eb39\";\n}\n\n.cib-gravatar:before {\n  content: \"\\eb3a\";\n}\n\n.cib-greenkeeper:before {\n  content: \"\\eb3b\";\n}\n\n.cib-greensock:before {\n  content: \"\\eb3c\";\n}\n\n.cib-groovy:before {\n  content: \"\\eb3d\";\n}\n\n.cib-groupon:before {\n  content: \"\\eb3e\";\n}\n\n.cib-grunt:before {\n  content: \"\\eb3f\";\n}\n\n.cib-gulp:before {\n  content: \"\\eb40\";\n}\n\n.cib-gumroad:before {\n  content: \"\\eb41\";\n}\n\n.cib-gumtree:before {\n  content: \"\\eb42\";\n}\n\n.cib-habr:before {\n  content: \"\\eb43\";\n}\n\n.cib-hackaday:before {\n  content: \"\\eb44\";\n}\n\n.cib-hackerearth:before {\n  content: \"\\eb45\";\n}\n\n.cib-hackerone:before {\n  content: \"\\eb46\";\n}\n\n.cib-hackerrank:before {\n  content: \"\\eb47\";\n}\n\n.cib-hackhands:before {\n  content: \"\\eb48\";\n}\n\n.cib-hackster:before {\n  content: \"\\eb49\";\n}\n\n.cib-happycow:before {\n  content: \"\\eb4a\";\n}\n\n.cib-hashnode:before {\n  content: \"\\eb4b\";\n}\n\n.cib-haskell:before {\n  content: \"\\eb4c\";\n}\n\n.cib-hatena-bookmark:before {\n  content: \"\\eb4d\";\n}\n\n.cib-haxe:before {\n  content: \"\\eb4e\";\n}\n\n.cib-helm:before {\n  content: \"\\eb4f\";\n}\n\n.cib-here:before {\n  content: \"\\eb50\";\n}\n\n.cib-heroku:before {\n  content: \"\\eb51\";\n}\n\n.cib-hexo:before {\n  content: \"\\eb52\";\n}\n\n.cib-highly:before {\n  content: \"\\eb53\";\n}\n\n.cib-hipchat:before {\n  content: \"\\eb54\";\n}\n\n.cib-hitachi:before {\n  content: \"\\eb55\";\n}\n\n.cib-hockeyapp:before {\n  content: \"\\eb56\";\n}\n\n.cib-homify:before {\n  content: \"\\eb57\";\n}\n\n.cib-hootsuite:before {\n  content: \"\\eb58\";\n}\n\n.cib-hotjar:before {\n  content: \"\\eb59\";\n}\n\n.cib-houzz:before {\n  content: \"\\eb5a\";\n}\n\n.cib-hp:before {\n  content: \"\\eb5b\";\n}\n\n.cib-html5:before {\n  content: \"\\eb5c\";\n}\n\n.cib-html5-shield:before {\n  content: \"\\eb5d\";\n}\n\n.cib-htmlacademy:before {\n  content: \"\\eb5e\";\n}\n\n.cib-huawei:before {\n  content: \"\\eb5f\";\n}\n\n.cib-hubspot:before {\n  content: \"\\eb60\";\n}\n\n.cib-hulu:before {\n  content: \"\\eb61\";\n}\n\n.cib-humble-bundle:before {\n  content: \"\\eb62\";\n}\n\n.cib-iata:before {\n  content: \"\\eb63\";\n}\n\n.cib-ibm:before {\n  content: \"\\eb64\";\n}\n\n.cib-icloud:before {\n  content: \"\\eb65\";\n}\n\n.cib-iconjar:before {\n  content: \"\\eb66\";\n}\n\n.cib-icq:before {\n  content: \"\\eb67\";\n}\n\n.cib-ideal:before {\n  content: \"\\eb68\";\n}\n\n.cib-ifixit:before {\n  content: \"\\eb69\";\n}\n\n.cib-imdb:before {\n  content: \"\\eb6a\";\n}\n\n.cib-indeed:before {\n  content: \"\\eb6b\";\n}\n\n.cib-inkscape:before {\n  content: \"\\eb6c\";\n}\n\n.cib-instacart:before {\n  content: \"\\eb6d\";\n}\n\n.cib-instagram:before {\n  content: \"\\eb6e\";\n}\n\n.cib-instapaper:before {\n  content: \"\\eb6f\";\n}\n\n.cib-intel:before {\n  content: \"\\eb70\";\n}\n\n.cib-intellijidea:before {\n  content: \"\\eb71\";\n}\n\n.cib-intercom:before {\n  content: \"\\eb72\";\n}\n\n.cib-internet-explorer:before {\n  content: \"\\eb73\";\n}\n\n.cib-invision:before {\n  content: \"\\eb74\";\n}\n\n.cib-ionic:before {\n  content: \"\\eb75\";\n}\n\n.cib-issuu:before {\n  content: \"\\eb76\";\n}\n\n.cib-itch-io:before {\n  content: \"\\eb77\";\n}\n\n.cib-jabber:before {\n  content: \"\\eb78\";\n}\n\n.cib-java:before {\n  content: \"\\eb79\";\n}\n\n.cib-javascript:before {\n  content: \"\\eb7a\";\n}\n\n.cib-jekyll:before {\n  content: \"\\eb7b\";\n}\n\n.cib-jenkins:before {\n  content: \"\\eb7c\";\n}\n\n.cib-jest:before {\n  content: \"\\eb7d\";\n}\n\n.cib-jet:before {\n  content: \"\\eb7e\";\n}\n\n.cib-jetbrains:before {\n  content: \"\\eb7f\";\n}\n\n.cib-jira:before {\n  content: \"\\eb80\";\n}\n\n.cib-joomla:before {\n  content: \"\\eb81\";\n}\n\n.cib-jquery:before {\n  content: \"\\eb82\";\n}\n\n.cib-js:before {\n  content: \"\\eb83\";\n}\n\n.cib-jsdelivr:before {\n  content: \"\\eb84\";\n}\n\n.cib-jsfiddle:before {\n  content: \"\\eb85\";\n}\n\n.cib-json:before {\n  content: \"\\eb86\";\n}\n\n.cib-jupyter:before {\n  content: \"\\eb87\";\n}\n\n.cib-justgiving:before {\n  content: \"\\eb88\";\n}\n\n.cib-kaggle:before {\n  content: \"\\eb89\";\n}\n\n.cib-kaios:before {\n  content: \"\\eb8a\";\n}\n\n.cib-kaspersky:before {\n  content: \"\\eb8b\";\n}\n\n.cib-kentico:before {\n  content: \"\\eb8c\";\n}\n\n.cib-keras:before {\n  content: \"\\eb8d\";\n}\n\n.cib-keybase:before {\n  content: \"\\eb8e\";\n}\n\n.cib-keycdn:before {\n  content: \"\\eb8f\";\n}\n\n.cib-khan-academy:before {\n  content: \"\\eb90\";\n}\n\n.cib-kibana:before {\n  content: \"\\eb91\";\n}\n\n.cib-kickstarter:before {\n  content: \"\\eb92\";\n}\n\n.cib-kik:before {\n  content: \"\\eb93\";\n}\n\n.cib-kirby:before {\n  content: \"\\eb94\";\n}\n\n.cib-klout:before {\n  content: \"\\eb95\";\n}\n\n.cib-known:before {\n  content: \"\\eb96\";\n}\n\n.cib-ko-fi:before {\n  content: \"\\eb97\";\n}\n\n.cib-kodi:before {\n  content: \"\\eb98\";\n}\n\n.cib-koding:before {\n  content: \"\\eb99\";\n}\n\n.cib-kotlin:before {\n  content: \"\\eb9a\";\n}\n\n.cib-krita:before {\n  content: \"\\eb9b\";\n}\n\n.cib-kubernetes:before {\n  content: \"\\eb9c\";\n}\n\n.cib-lanyrd:before {\n  content: \"\\eb9d\";\n}\n\n.cib-laravel:before {\n  content: \"\\eb9e\";\n}\n\n.cib-laravel-horizon:before {\n  content: \"\\eb9f\";\n}\n\n.cib-laravel-nova:before {\n  content: \"\\eba0\";\n}\n\n.cib-last-fm:before {\n  content: \"\\eba1\";\n}\n\n.cib-latex:before {\n  content: \"\\eba2\";\n}\n\n.cib-launchpad:before {\n  content: \"\\eba3\";\n}\n\n.cib-leetcode:before {\n  content: \"\\eba4\";\n}\n\n.cib-lenovo:before {\n  content: \"\\eba5\";\n}\n\n.cib-less:before {\n  content: \"\\eba6\";\n}\n\n.cib-lets-encrypt:before {\n  content: \"\\eba7\";\n}\n\n.cib-letterboxd:before {\n  content: \"\\eba8\";\n}\n\n.cib-lgtm:before {\n  content: \"\\eba9\";\n}\n\n.cib-liberapay:before {\n  content: \"\\ebaa\";\n}\n\n.cib-librarything:before {\n  content: \"\\ebab\";\n}\n\n.cib-libreoffice:before {\n  content: \"\\ebac\";\n}\n\n.cib-line:before {\n  content: \"\\ebad\";\n}\n\n.cib-linkedin:before {\n  content: \"\\ebae\";\n}\n\n.cib-linkedin-in:before {\n  content: \"\\ebaf\";\n}\n\n.cib-linux:before {\n  content: \"\\ebb0\";\n}\n\n.cib-linux-foundation:before {\n  content: \"\\ebb1\";\n}\n\n.cib-linux-mint:before {\n  content: \"\\ebb2\";\n}\n\n.cib-livejournal:before {\n  content: \"\\ebb3\";\n}\n\n.cib-livestream:before {\n  content: \"\\ebb4\";\n}\n\n.cib-logstash:before {\n  content: \"\\ebb5\";\n}\n\n.cib-lua:before {\n  content: \"\\ebb6\";\n}\n\n.cib-lumen:before {\n  content: \"\\ebb7\";\n}\n\n.cib-lyft:before {\n  content: \"\\ebb8\";\n}\n\n.cib-macys:before {\n  content: \"\\ebb9\";\n}\n\n.cib-magento:before {\n  content: \"\\ebba\";\n}\n\n.cib-magisk:before {\n  content: \"\\ebbb\";\n}\n\n.cib-mail-ru:before {\n  content: \"\\ebbc\";\n}\n\n.cib-mailchimp:before {\n  content: \"\\ebbd\";\n}\n\n.cib-makerbot:before {\n  content: \"\\ebbe\";\n}\n\n.cib-manjaro:before {\n  content: \"\\ebbf\";\n}\n\n.cib-markdown:before {\n  content: \"\\ebc0\";\n}\n\n.cib-marketo:before {\n  content: \"\\ebc1\";\n}\n\n.cib-mastercard:before {\n  content: \"\\ebc2\";\n}\n\n.cib-mastodon:before {\n  content: \"\\ebc3\";\n}\n\n.cib-material-design:before {\n  content: \"\\ebc4\";\n}\n\n.cib-mathworks:before {\n  content: \"\\ebc5\";\n}\n\n.cib-matrix:before {\n  content: \"\\ebc6\";\n}\n\n.cib-mattermost:before {\n  content: \"\\ebc7\";\n}\n\n.cib-matternet:before {\n  content: \"\\ebc8\";\n}\n\n.cib-maxcdn:before {\n  content: \"\\ebc9\";\n}\n\n.cib-mcafee:before {\n  content: \"\\ebca\";\n}\n\n.cib-media-temple:before {\n  content: \"\\ebcb\";\n}\n\n.cib-mediafire:before {\n  content: \"\\ebcc\";\n}\n\n.cib-medium:before {\n  content: \"\\ebcd\";\n}\n\n.cib-medium-m:before {\n  content: \"\\ebce\";\n}\n\n.cib-meetup:before {\n  content: \"\\ebcf\";\n}\n\n.cib-mega:before {\n  content: \"\\ebd0\";\n}\n\n.cib-mendeley:before {\n  content: \"\\ebd1\";\n}\n\n.cib-messenger:before {\n  content: \"\\ebd2\";\n}\n\n.cib-meteor:before {\n  content: \"\\ebd3\";\n}\n\n.cib-micro-blog:before {\n  content: \"\\ebd4\";\n}\n\n.cib-microgenetics:before {\n  content: \"\\ebd5\";\n}\n\n.cib-microsoft:before {\n  content: \"\\ebd6\";\n}\n\n.cib-microsoft-edge:before {\n  content: \"\\ebd7\";\n}\n\n.cib-minetest:before {\n  content: \"\\ebd8\";\n}\n\n.cib-minutemailer:before {\n  content: \"\\ebd9\";\n}\n\n.cib-mix:before {\n  content: \"\\ebda\";\n}\n\n.cib-mixcloud:before {\n  content: \"\\ebdb\";\n}\n\n.cib-mixer:before {\n  content: \"\\ebdc\";\n}\n\n.cib-mojang:before {\n  content: \"\\ebdd\";\n}\n\n.cib-monero:before {\n  content: \"\\ebde\";\n}\n\n.cib-mongodb:before {\n  content: \"\\ebdf\";\n}\n\n.cib-monkeytie:before {\n  content: \"\\ebe0\";\n}\n\n.cib-monogram:before {\n  content: \"\\ebe1\";\n}\n\n.cib-monzo:before {\n  content: \"\\ebe2\";\n}\n\n.cib-moo:before {\n  content: \"\\ebe3\";\n}\n\n.cib-mozilla:before {\n  content: \"\\ebe4\";\n}\n\n.cib-mozilla-firefox:before {\n  content: \"\\ebe5\";\n}\n\n.cib-musescore:before {\n  content: \"\\ebe6\";\n}\n\n.cib-mxlinux:before {\n  content: \"\\ebe7\";\n}\n\n.cib-myspace:before {\n  content: \"\\ebe8\";\n}\n\n.cib-mysql:before {\n  content: \"\\ebe9\";\n}\n\n.cib-nativescript:before {\n  content: \"\\ebea\";\n}\n\n.cib-nec:before {\n  content: \"\\ebeb\";\n}\n\n.cib-neo4j:before {\n  content: \"\\ebec\";\n}\n\n.cib-netflix:before {\n  content: \"\\ebed\";\n}\n\n.cib-netlify:before {\n  content: \"\\ebee\";\n}\n\n.cib-next-js:before {\n  content: \"\\ebef\";\n}\n\n.cib-nextcloud:before {\n  content: \"\\ebf0\";\n}\n\n.cib-nextdoor:before {\n  content: \"\\ebf1\";\n}\n\n.cib-nginx:before {\n  content: \"\\ebf2\";\n}\n\n.cib-nim:before {\n  content: \"\\ebf3\";\n}\n\n.cib-nintendo:before {\n  content: \"\\ebf4\";\n}\n\n.cib-nintendo-3ds:before {\n  content: \"\\ebf5\";\n}\n\n.cib-nintendo-gamecube:before {\n  content: \"\\ebf6\";\n}\n\n.cib-nintendo-switch:before {\n  content: \"\\ebf7\";\n}\n\n.cib-node-js:before {\n  content: \"\\ebf8\";\n}\n\n.cib-node-red:before {\n  content: \"\\ebf9\";\n}\n\n.cib-nodemon:before {\n  content: \"\\ebfa\";\n}\n\n.cib-nokia:before {\n  content: \"\\ebfb\";\n}\n\n.cib-notion:before {\n  content: \"\\ebfc\";\n}\n\n.cib-npm:before {\n  content: \"\\ebfd\";\n}\n\n.cib-nucleo:before {\n  content: \"\\ebfe\";\n}\n\n.cib-nuget:before {\n  content: \"\\ebff\";\n}\n\n.cib-nuxt-js:before {\n  content: \"\\ec00\";\n}\n\n.cib-nvidia:before {\n  content: \"\\ec01\";\n}\n\n.cib-ocaml:before {\n  content: \"\\ec02\";\n}\n\n.cib-octave:before {\n  content: \"\\ec03\";\n}\n\n.cib-octopus-deploy:before {\n  content: \"\\ec04\";\n}\n\n.cib-oculus:before {\n  content: \"\\ec05\";\n}\n\n.cib-odnoklassniki:before {\n  content: \"\\ec06\";\n}\n\n.cib-open-access:before {\n  content: \"\\ec07\";\n}\n\n.cib-open-collective:before {\n  content: \"\\ec08\";\n}\n\n.cib-open-id:before {\n  content: \"\\ec09\";\n}\n\n.cib-open-source-initiative:before {\n  content: \"\\ec0a\";\n}\n\n.cib-openstreetmap:before {\n  content: \"\\ec0b\";\n}\n\n.cib-opensuse:before {\n  content: \"\\ec0c\";\n}\n\n.cib-openvpn:before {\n  content: \"\\ec0d\";\n}\n\n.cib-opera:before {\n  content: \"\\ec0e\";\n}\n\n.cib-opsgenie:before {\n  content: \"\\ec0f\";\n}\n\n.cib-oracle:before {\n  content: \"\\ec10\";\n}\n\n.cib-orcid:before {\n  content: \"\\ec11\";\n}\n\n.cib-origin:before {\n  content: \"\\ec12\";\n}\n\n.cib-osi:before {\n  content: \"\\ec13\";\n}\n\n.cib-osmc:before {\n  content: \"\\ec14\";\n}\n\n.cib-overcast:before {\n  content: \"\\ec15\";\n}\n\n.cib-overleaf:before {\n  content: \"\\ec16\";\n}\n\n.cib-ovh:before {\n  content: \"\\ec17\";\n}\n\n.cib-pagekit:before {\n  content: \"\\ec18\";\n}\n\n.cib-palantir:before {\n  content: \"\\ec19\";\n}\n\n.cib-pandora:before {\n  content: \"\\ec1a\";\n}\n\n.cib-pantheon:before {\n  content: \"\\ec1b\";\n}\n\n.cib-patreon:before {\n  content: \"\\ec1c\";\n}\n\n.cib-paypal:before {\n  content: \"\\ec1d\";\n}\n\n.cib-periscope:before {\n  content: \"\\ec1e\";\n}\n\n.cib-php:before {\n  content: \"\\ec1f\";\n}\n\n.cib-picarto-tv:before {\n  content: \"\\ec20\";\n}\n\n.cib-pinboard:before {\n  content: \"\\ec21\";\n}\n\n.cib-pingdom:before {\n  content: \"\\ec22\";\n}\n\n.cib-pingup:before {\n  content: \"\\ec23\";\n}\n\n.cib-pinterest:before {\n  content: \"\\ec24\";\n}\n\n.cib-pinterest-p:before {\n  content: \"\\ec25\";\n}\n\n.cib-pivotaltracker:before {\n  content: \"\\ec26\";\n}\n\n.cib-plangrid:before {\n  content: \"\\ec27\";\n}\n\n.cib-player-me:before {\n  content: \"\\ec28\";\n}\n\n.cib-playerfm:before {\n  content: \"\\ec29\";\n}\n\n.cib-playstation:before {\n  content: \"\\ec2a\";\n}\n\n.cib-playstation3:before {\n  content: \"\\ec2b\";\n}\n\n.cib-playstation4:before {\n  content: \"\\ec2c\";\n}\n\n.cib-plesk:before {\n  content: \"\\ec2d\";\n}\n\n.cib-plex:before {\n  content: \"\\ec2e\";\n}\n\n.cib-pluralsight:before {\n  content: \"\\ec2f\";\n}\n\n.cib-plurk:before {\n  content: \"\\ec30\";\n}\n\n.cib-pocket:before {\n  content: \"\\ec31\";\n}\n\n.cib-postgresql:before {\n  content: \"\\ec32\";\n}\n\n.cib-postman:before {\n  content: \"\\ec33\";\n}\n\n.cib-postwoman:before {\n  content: \"\\ec34\";\n}\n\n.cib-powershell:before {\n  content: \"\\ec35\";\n}\n\n.cib-prettier:before {\n  content: \"\\ec36\";\n}\n\n.cib-prismic:before {\n  content: \"\\ec37\";\n}\n\n.cib-probot:before {\n  content: \"\\ec38\";\n}\n\n.cib-processwire:before {\n  content: \"\\ec39\";\n}\n\n.cib-product-hunt:before {\n  content: \"\\ec3a\";\n}\n\n.cib-proto-io:before {\n  content: \"\\ec3b\";\n}\n\n.cib-protonmail:before {\n  content: \"\\ec3c\";\n}\n\n.cib-proxmox:before {\n  content: \"\\ec3d\";\n}\n\n.cib-pypi:before {\n  content: \"\\ec3e\";\n}\n\n.cib-python:before {\n  content: \"\\ec3f\";\n}\n\n.cib-pytorch:before {\n  content: \"\\ec40\";\n}\n\n.cib-qgis:before {\n  content: \"\\ec41\";\n}\n\n.cib-qiita:before {\n  content: \"\\ec42\";\n}\n\n.cib-qq:before {\n  content: \"\\ec43\";\n}\n\n.cib-qualcomm:before {\n  content: \"\\ec44\";\n}\n\n.cib-quantcast:before {\n  content: \"\\ec45\";\n}\n\n.cib-quantopian:before {\n  content: \"\\ec46\";\n}\n\n.cib-quarkus:before {\n  content: \"\\ec47\";\n}\n\n.cib-quora:before {\n  content: \"\\ec48\";\n}\n\n.cib-qwiklabs:before {\n  content: \"\\ec49\";\n}\n\n.cib-qzone:before {\n  content: \"\\ec4a\";\n}\n\n.cib-r:before {\n  content: \"\\ec4b\";\n}\n\n.cib-radiopublic:before {\n  content: \"\\ec4c\";\n}\n\n.cib-rails:before {\n  content: \"\\ec4d\";\n}\n\n.cib-raspberry-pi:before {\n  content: \"\\ec4e\";\n}\n\n.cib-react:before {\n  content: \"\\ec4f\";\n}\n\n.cib-read-the-docs:before {\n  content: \"\\ec50\";\n}\n\n.cib-readme:before {\n  content: \"\\ec51\";\n}\n\n.cib-realm:before {\n  content: \"\\ec52\";\n}\n\n.cib-reason:before {\n  content: \"\\ec53\";\n}\n\n.cib-redbubble:before {\n  content: \"\\ec54\";\n}\n\n.cib-reddit:before {\n  content: \"\\ec55\";\n}\n\n.cib-reddit-alt:before {\n  content: \"\\ec56\";\n}\n\n.cib-redhat:before {\n  content: \"\\ec57\";\n}\n\n.cib-redis:before {\n  content: \"\\ec58\";\n}\n\n.cib-redux:before {\n  content: \"\\ec59\";\n}\n\n.cib-renren:before {\n  content: \"\\ec5a\";\n}\n\n.cib-reverbnation:before {\n  content: \"\\ec5b\";\n}\n\n.cib-riot:before {\n  content: \"\\ec5c\";\n}\n\n.cib-ripple:before {\n  content: \"\\ec5d\";\n}\n\n.cib-riseup:before {\n  content: \"\\ec5e\";\n}\n\n.cib-rollup-js:before {\n  content: \"\\ec5f\";\n}\n\n.cib-roots:before {\n  content: \"\\ec60\";\n}\n\n.cib-roundcube:before {\n  content: \"\\ec61\";\n}\n\n.cib-rss:before {\n  content: \"\\ec62\";\n}\n\n.cib-rstudio:before {\n  content: \"\\ec63\";\n}\n\n.cib-ruby:before {\n  content: \"\\ec64\";\n}\n\n.cib-rubygems:before {\n  content: \"\\ec65\";\n}\n\n.cib-runkeeper:before {\n  content: \"\\ec66\";\n}\n\n.cib-rust:before {\n  content: \"\\ec67\";\n}\n\n.cib-safari:before {\n  content: \"\\ec68\";\n}\n\n.cib-sahibinden:before {\n  content: \"\\ec69\";\n}\n\n.cib-salesforce:before {\n  content: \"\\ec6a\";\n}\n\n.cib-saltstack:before {\n  content: \"\\ec6b\";\n}\n\n.cib-samsung:before {\n  content: \"\\ec6c\";\n}\n\n.cib-samsung-pay:before {\n  content: \"\\ec6d\";\n}\n\n.cib-sap:before {\n  content: \"\\ec6e\";\n}\n\n.cib-sass:before {\n  content: \"\\ec6f\";\n}\n\n.cib-sass-alt:before {\n  content: \"\\ec70\";\n}\n\n.cib-saucelabs:before {\n  content: \"\\ec71\";\n}\n\n.cib-scala:before {\n  content: \"\\ec72\";\n}\n\n.cib-scaleway:before {\n  content: \"\\ec73\";\n}\n\n.cib-scribd:before {\n  content: \"\\ec74\";\n}\n\n.cib-scrutinizerci:before {\n  content: \"\\ec75\";\n}\n\n.cib-seagate:before {\n  content: \"\\ec76\";\n}\n\n.cib-sega:before {\n  content: \"\\ec77\";\n}\n\n.cib-sellfy:before {\n  content: \"\\ec78\";\n}\n\n.cib-semaphoreci:before {\n  content: \"\\ec79\";\n}\n\n.cib-sensu:before {\n  content: \"\\ec7a\";\n}\n\n.cib-sentry:before {\n  content: \"\\ec7b\";\n}\n\n.cib-server-fault:before {\n  content: \"\\ec7c\";\n}\n\n.cib-shazam:before {\n  content: \"\\ec7d\";\n}\n\n.cib-shell:before {\n  content: \"\\ec7e\";\n}\n\n.cib-shopify:before {\n  content: \"\\ec7f\";\n}\n\n.cib-showpad:before {\n  content: \"\\ec80\";\n}\n\n.cib-siemens:before {\n  content: \"\\ec81\";\n}\n\n.cib-signal:before {\n  content: \"\\ec82\";\n}\n\n.cib-sina-weibo:before {\n  content: \"\\ec83\";\n}\n\n.cib-sitepoint:before {\n  content: \"\\ec84\";\n}\n\n.cib-sketch:before {\n  content: \"\\ec85\";\n}\n\n.cib-skillshare:before {\n  content: \"\\ec86\";\n}\n\n.cib-skyliner:before {\n  content: \"\\ec87\";\n}\n\n.cib-skype:before {\n  content: \"\\ec88\";\n}\n\n.cib-slack:before {\n  content: \"\\ec89\";\n}\n\n.cib-slashdot:before {\n  content: \"\\ec8a\";\n}\n\n.cib-slickpic:before {\n  content: \"\\ec8b\";\n}\n\n.cib-slides:before {\n  content: \"\\ec8c\";\n}\n\n.cib-slideshare:before {\n  content: \"\\ec8d\";\n}\n\n.cib-smashingmagazine:before {\n  content: \"\\ec8e\";\n}\n\n.cib-snapchat:before {\n  content: \"\\ec8f\";\n}\n\n.cib-snapcraft:before {\n  content: \"\\ec90\";\n}\n\n.cib-snyk:before {\n  content: \"\\ec91\";\n}\n\n.cib-society6:before {\n  content: \"\\ec92\";\n}\n\n.cib-socket-io:before {\n  content: \"\\ec93\";\n}\n\n.cib-sogou:before {\n  content: \"\\ec94\";\n}\n\n.cib-solus:before {\n  content: \"\\ec95\";\n}\n\n.cib-songkick:before {\n  content: \"\\ec96\";\n}\n\n.cib-sonos:before {\n  content: \"\\ec97\";\n}\n\n.cib-soundcloud:before {\n  content: \"\\ec98\";\n}\n\n.cib-sourceforge:before {\n  content: \"\\ec99\";\n}\n\n.cib-sourcegraph:before {\n  content: \"\\ec9a\";\n}\n\n.cib-spacemacs:before {\n  content: \"\\ec9b\";\n}\n\n.cib-spacex:before {\n  content: \"\\ec9c\";\n}\n\n.cib-sparkfun:before {\n  content: \"\\ec9d\";\n}\n\n.cib-sparkpost:before {\n  content: \"\\ec9e\";\n}\n\n.cib-spdx:before {\n  content: \"\\ec9f\";\n}\n\n.cib-speaker-deck:before {\n  content: \"\\eca0\";\n}\n\n.cib-spectrum:before {\n  content: \"\\eca1\";\n}\n\n.cib-spotify:before {\n  content: \"\\eca2\";\n}\n\n.cib-spotlight:before {\n  content: \"\\eca3\";\n}\n\n.cib-spreaker:before {\n  content: \"\\eca4\";\n}\n\n.cib-spring:before {\n  content: \"\\eca5\";\n}\n\n.cib-sprint:before {\n  content: \"\\eca6\";\n}\n\n.cib-squarespace:before {\n  content: \"\\eca7\";\n}\n\n.cib-stackbit:before {\n  content: \"\\eca8\";\n}\n\n.cib-stackexchange:before {\n  content: \"\\eca9\";\n}\n\n.cib-stackoverflow:before {\n  content: \"\\ecaa\";\n}\n\n.cib-stackpath:before {\n  content: \"\\ecab\";\n}\n\n.cib-stackshare:before {\n  content: \"\\ecac\";\n}\n\n.cib-stadia:before {\n  content: \"\\ecad\";\n}\n\n.cib-statamic:before {\n  content: \"\\ecae\";\n}\n\n.cib-staticman:before {\n  content: \"\\ecaf\";\n}\n\n.cib-statuspage:before {\n  content: \"\\ecb0\";\n}\n\n.cib-steam:before {\n  content: \"\\ecb1\";\n}\n\n.cib-steem:before {\n  content: \"\\ecb2\";\n}\n\n.cib-steemit:before {\n  content: \"\\ecb3\";\n}\n\n.cib-stitcher:before {\n  content: \"\\ecb4\";\n}\n\n.cib-storify:before {\n  content: \"\\ecb5\";\n}\n\n.cib-storybook:before {\n  content: \"\\ecb6\";\n}\n\n.cib-strapi:before {\n  content: \"\\ecb7\";\n}\n\n.cib-strava:before {\n  content: \"\\ecb8\";\n}\n\n.cib-stripe:before {\n  content: \"\\ecb9\";\n}\n\n.cib-stripe-s:before {\n  content: \"\\ecba\";\n}\n\n.cib-stubhub:before {\n  content: \"\\ecbb\";\n}\n\n.cib-stumbleupon:before {\n  content: \"\\ecbc\";\n}\n\n.cib-styleshare:before {\n  content: \"\\ecbd\";\n}\n\n.cib-stylus:before {\n  content: \"\\ecbe\";\n}\n\n.cib-sublime-text:before {\n  content: \"\\ecbf\";\n}\n\n.cib-subversion:before {\n  content: \"\\ecc0\";\n}\n\n.cib-superuser:before {\n  content: \"\\ecc1\";\n}\n\n.cib-svelte:before {\n  content: \"\\ecc2\";\n}\n\n.cib-svg:before {\n  content: \"\\ecc3\";\n}\n\n.cib-swagger:before {\n  content: \"\\ecc4\";\n}\n\n.cib-swarm:before {\n  content: \"\\ecc5\";\n}\n\n.cib-swift:before {\n  content: \"\\ecc6\";\n}\n\n.cib-symantec:before {\n  content: \"\\ecc7\";\n}\n\n.cib-symfony:before {\n  content: \"\\ecc8\";\n}\n\n.cib-synology:before {\n  content: \"\\ecc9\";\n}\n\n.cib-t-mobile:before {\n  content: \"\\ecca\";\n}\n\n.cib-tableau:before {\n  content: \"\\eccb\";\n}\n\n.cib-tails:before {\n  content: \"\\eccc\";\n}\n\n.cib-tapas:before {\n  content: \"\\eccd\";\n}\n\n.cib-teamviewer:before {\n  content: \"\\ecce\";\n}\n\n.cib-ted:before {\n  content: \"\\eccf\";\n}\n\n.cib-teespring:before {\n  content: \"\\ecd0\";\n}\n\n.cib-telegram:before {\n  content: \"\\ecd1\";\n}\n\n.cib-telegram-plane:before {\n  content: \"\\ecd2\";\n}\n\n.cib-tencent-qq:before {\n  content: \"\\ecd3\";\n}\n\n.cib-tencent-weibo:before {\n  content: \"\\ecd4\";\n}\n\n.cib-tensorflow:before {\n  content: \"\\ecd5\";\n}\n\n.cib-terraform:before {\n  content: \"\\ecd6\";\n}\n\n.cib-tesla:before {\n  content: \"\\ecd7\";\n}\n\n.cib-the-mighty:before {\n  content: \"\\ecd8\";\n}\n\n.cib-the-movie-database:before {\n  content: \"\\ecd9\";\n}\n\n.cib-tidal:before {\n  content: \"\\ecda\";\n}\n\n.cib-tiktok:before {\n  content: \"\\ecdb\";\n}\n\n.cib-tinder:before {\n  content: \"\\ecdc\";\n}\n\n.cib-todoist:before {\n  content: \"\\ecdd\";\n}\n\n.cib-toggl:before {\n  content: \"\\ecde\";\n}\n\n.cib-topcoder:before {\n  content: \"\\ecdf\";\n}\n\n.cib-toptal:before {\n  content: \"\\ece0\";\n}\n\n.cib-tor:before {\n  content: \"\\ece1\";\n}\n\n.cib-toshiba:before {\n  content: \"\\ece2\";\n}\n\n.cib-trainerroad:before {\n  content: \"\\ece3\";\n}\n\n.cib-trakt:before {\n  content: \"\\ece4\";\n}\n\n.cib-travisci:before {\n  content: \"\\ece5\";\n}\n\n.cib-treehouse:before {\n  content: \"\\ece6\";\n}\n\n.cib-trello:before {\n  content: \"\\ece7\";\n}\n\n.cib-tripadvisor:before {\n  content: \"\\ece8\";\n}\n\n.cib-trulia:before {\n  content: \"\\ece9\";\n}\n\n.cib-tumblr:before {\n  content: \"\\ecea\";\n}\n\n.cib-twilio:before {\n  content: \"\\eceb\";\n}\n\n.cib-twitch:before {\n  content: \"\\ecec\";\n}\n\n.cib-twitter:before {\n  content: \"\\eced\";\n}\n\n.cib-twoo:before {\n  content: \"\\ecee\";\n}\n\n.cib-typescript:before {\n  content: \"\\ecef\";\n}\n\n.cib-typo3:before {\n  content: \"\\ecf0\";\n}\n\n.cib-uber:before {\n  content: \"\\ecf1\";\n}\n\n.cib-ubisoft:before {\n  content: \"\\ecf2\";\n}\n\n.cib-ublock-origin:before {\n  content: \"\\ecf3\";\n}\n\n.cib-ubuntu:before {\n  content: \"\\ecf4\";\n}\n\n.cib-udacity:before {\n  content: \"\\ecf5\";\n}\n\n.cib-udemy:before {\n  content: \"\\ecf6\";\n}\n\n.cib-uikit:before {\n  content: \"\\ecf7\";\n}\n\n.cib-umbraco:before {\n  content: \"\\ecf8\";\n}\n\n.cib-unity:before {\n  content: \"\\ecf9\";\n}\n\n.cib-unreal-engine:before {\n  content: \"\\ecfa\";\n}\n\n.cib-unsplash:before {\n  content: \"\\ecfb\";\n}\n\n.cib-untappd:before {\n  content: \"\\ecfc\";\n}\n\n.cib-upwork:before {\n  content: \"\\ecfd\";\n}\n\n.cib-usb:before {\n  content: \"\\ecfe\";\n}\n\n.cib-v8:before {\n  content: \"\\ecff\";\n}\n\n.cib-vagrant:before {\n  content: \"\\ed00\";\n}\n\n.cib-venmo:before {\n  content: \"\\ed01\";\n}\n\n.cib-verizon:before {\n  content: \"\\ed02\";\n}\n\n.cib-viadeo:before {\n  content: \"\\ed03\";\n}\n\n.cib-viber:before {\n  content: \"\\ed04\";\n}\n\n.cib-vim:before {\n  content: \"\\ed05\";\n}\n\n.cib-vimeo:before {\n  content: \"\\ed06\";\n}\n\n.cib-vimeo-v:before {\n  content: \"\\ed07\";\n}\n\n.cib-vine:before {\n  content: \"\\ed08\";\n}\n\n.cib-virb:before {\n  content: \"\\ed09\";\n}\n\n.cib-visa:before {\n  content: \"\\ed0a\";\n}\n\n.cib-visual-studio:before {\n  content: \"\\ed0b\";\n}\n\n.cib-visual-studio-code:before {\n  content: \"\\ed0c\";\n}\n\n.cib-vk:before {\n  content: \"\\ed0d\";\n}\n\n.cib-vlc:before {\n  content: \"\\ed0e\";\n}\n\n.cib-vsco:before {\n  content: \"\\ed0f\";\n}\n\n.cib-vue-js:before {\n  content: \"\\ed10\";\n}\n\n.cib-wattpad:before {\n  content: \"\\ed11\";\n}\n\n.cib-weasyl:before {\n  content: \"\\ed12\";\n}\n\n.cib-webcomponents-org:before {\n  content: \"\\ed13\";\n}\n\n.cib-webpack:before {\n  content: \"\\ed14\";\n}\n\n.cib-webstorm:before {\n  content: \"\\ed15\";\n}\n\n.cib-wechat:before {\n  content: \"\\ed16\";\n}\n\n.cib-whatsapp:before {\n  content: \"\\ed17\";\n}\n\n.cib-when-i-work:before {\n  content: \"\\ed18\";\n}\n\n.cib-wii:before {\n  content: \"\\ed19\";\n}\n\n.cib-wiiu:before {\n  content: \"\\ed1a\";\n}\n\n.cib-wikipedia:before {\n  content: \"\\ed1b\";\n}\n\n.cib-windows:before {\n  content: \"\\ed1c\";\n}\n\n.cib-wire:before {\n  content: \"\\ed1d\";\n}\n\n.cib-wireguard:before {\n  content: \"\\ed1e\";\n}\n\n.cib-wix:before {\n  content: \"\\ed1f\";\n}\n\n.cib-wolfram:before {\n  content: \"\\ed20\";\n}\n\n.cib-wolfram-language:before {\n  content: \"\\ed21\";\n}\n\n.cib-wolfram-mathematica:before {\n  content: \"\\ed22\";\n}\n\n.cib-wordpress:before {\n  content: \"\\ed23\";\n}\n\n.cib-wpengine:before {\n  content: \"\\ed24\";\n}\n\n.cib-x-pack:before {\n  content: \"\\ed25\";\n}\n\n.cib-xbox:before {\n  content: \"\\ed26\";\n}\n\n.cib-xcode:before {\n  content: \"\\ed27\";\n}\n\n.cib-xero:before {\n  content: \"\\ed28\";\n}\n\n.cib-xiaomi:before {\n  content: \"\\ed29\";\n}\n\n.cib-xing:before {\n  content: \"\\ed2a\";\n}\n\n.cib-xrp:before {\n  content: \"\\ed2b\";\n}\n\n.cib-xsplit:before {\n  content: \"\\ed2c\";\n}\n\n.cib-y-combinator:before {\n  content: \"\\ed2d\";\n}\n\n.cib-yahoo:before {\n  content: \"\\ed2e\";\n}\n\n.cib-yammer:before {\n  content: \"\\ed2f\";\n}\n\n.cib-yandex:before {\n  content: \"\\ed30\";\n}\n\n.cib-yarn:before {\n  content: \"\\ed31\";\n}\n\n.cib-yelp:before {\n  content: \"\\ed32\";\n}\n\n.cib-youtube:before {\n  content: \"\\ed33\";\n}\n\n.cib-zalando:before {\n  content: \"\\ed34\";\n}\n\n.cib-zapier:before {\n  content: \"\\ed35\";\n}\n\n.cib-zeit:before {\n  content: \"\\ed36\";\n}\n\n.cib-zendesk:before {\n  content: \"\\ed37\";\n}\n\n.cib-zerply:before {\n  content: \"\\ed38\";\n}\n\n.cib-zillow:before {\n  content: \"\\ed39\";\n}\n\n.cib-zingat:before {\n  content: \"\\ed3a\";\n}\n\n.cib-zoom:before {\n  content: \"\\ed3b\";\n}\n\n.cib-zorin:before {\n  content: \"\\ed3c\";\n}\n\n.cib-zulip:before {\n  content: \"\\ed3d\";\n}"
  },
  {
    "path": "icon-packs/ikonli-coreui-pack/src/main/resources/META-INF/resources/coreui/2.0.0-beta.5/css/coreui-free.css",
    "content": "@charset \"UTF-8\";\n/*!\n * CoreUI Icons Free Open Source Icons\n * @version v2.0.0-beta.4\n * @link https://coreui.io/icons\n * Copyright (c) 2020 creativeLabs Łukasz Holeczek\n * Licensed under MIT (https://coreui.io/icons/license)\n */\n@font-face {\n  font-family: 'CoreUI-Icons-Free';\n  src: url(\"../fonts/CoreUI-Icons-Free.eot?64h6xh\");\n  src: url(\"../fonts/CoreUI-Icons-Free.eot?64h6xh#iefix\") format(\"embedded-opentype\"), url(\"../fonts/CoreUI-Icons-Free.ttf?64h6xh\") format(\"truetype\"), url(\"../fonts/CoreUI-Icons-Free.woff?64h6xh\") format(\"woff\"), url(\"../fonts/CoreUI-Icons-Free.svg?64h6xh#CoreUI-Icons-Free\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n[class^=\"cil-\"], [class*=\" cil-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'CoreUI-Icons-Free' !important;\n  speak: none;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.cil-3d:before {\n  content: \"\\ea01\";\n}\n\n.cil-4k:before {\n  content: \"\\ea02\";\n}\n\n.cil-account-logout:before {\n  content: \"\\ea03\";\n}\n\n.cil-action-redo:before {\n  content: \"\\ea04\";\n}\n\n.cil-action-undo:before {\n  content: \"\\ea05\";\n}\n\n.cil-address-book:before {\n  content: \"\\ea06\";\n}\n\n.cil-airplane-mode:before {\n  content: \"\\ea07\";\n}\n\n.cil-airplane-mode-off:before {\n  content: \"\\ea08\";\n}\n\n.cil-airplay:before {\n  content: \"\\ea09\";\n}\n\n.cil-alarm:before {\n  content: \"\\ea0a\";\n}\n\n.cil-album:before {\n  content: \"\\ea0b\";\n}\n\n.cil-align-center:before {\n  content: \"\\ea0c\";\n}\n\n.cil-align-left:before {\n  content: \"\\ea0d\";\n}\n\n.cil-align-right:before {\n  content: \"\\ea0e\";\n}\n\n.cil-american-football:before {\n  content: \"\\ea0f\";\n}\n\n.cil-animal:before {\n  content: \"\\ea10\";\n}\n\n.cil-aperture:before {\n  content: \"\\ea11\";\n}\n\n.cil-apple:before {\n  content: \"\\ea12\";\n}\n\n.cil-applications:before {\n  content: \"\\ea13\";\n}\n\n.cil-applications-settings:before {\n  content: \"\\ea14\";\n}\n\n.cil-apps:before {\n  content: \"\\ea15\";\n}\n\n.cil-apps-settings:before {\n  content: \"\\ea16\";\n}\n\n.cil-arrow-bottom:before {\n  content: \"\\ea17\";\n}\n\n.cil-arrow-circle-bottom:before {\n  content: \"\\ea18\";\n}\n\n.cil-arrow-circle-left:before {\n  content: \"\\ea19\";\n}\n\n.cil-arrow-circle-right:before {\n  content: \"\\ea1a\";\n}\n\n.cil-arrow-circle-top:before {\n  content: \"\\ea1b\";\n}\n\n.cil-arrow-left:before {\n  content: \"\\ea1c\";\n}\n\n.cil-arrow-right:before {\n  content: \"\\ea1d\";\n}\n\n.cil-arrow-thick-bottom:before {\n  content: \"\\ea1e\";\n}\n\n.cil-arrow-thick-from-bottom:before {\n  content: \"\\ea1f\";\n}\n\n.cil-arrow-thick-from-left:before {\n  content: \"\\ea20\";\n}\n\n.cil-arrow-thick-from-right:before {\n  content: \"\\ea21\";\n}\n\n.cil-arrow-thick-from-top:before {\n  content: \"\\ea22\";\n}\n\n.cil-arrow-thick-left:before {\n  content: \"\\ea23\";\n}\n\n.cil-arrow-thick-right:before {\n  content: \"\\ea24\";\n}\n\n.cil-arrow-thick-to-bottom:before {\n  content: \"\\ea25\";\n}\n\n.cil-arrow-thick-to-left:before {\n  content: \"\\ea26\";\n}\n\n.cil-arrow-thick-to-right:before {\n  content: \"\\ea27\";\n}\n\n.cil-arrow-thick-to-top:before {\n  content: \"\\ea28\";\n}\n\n.cil-arrow-thick-top:before {\n  content: \"\\ea29\";\n}\n\n.cil-arrow-top:before {\n  content: \"\\ea2a\";\n}\n\n.cil-assistive-listening-system:before {\n  content: \"\\ea2b\";\n}\n\n.cil-asterisk:before {\n  content: \"\\ea2c\";\n}\n\n.cil-asterisk-circle:before {\n  content: \"\\ea2d\";\n}\n\n.cil-at:before {\n  content: \"\\ea2e\";\n}\n\n.cil-audio:before {\n  content: \"\\ea2f\";\n}\n\n.cil-audio-description:before {\n  content: \"\\ea30\";\n}\n\n.cil-audio-spectrum:before {\n  content: \"\\ea31\";\n}\n\n.cil-av-timer:before {\n  content: \"\\ea32\";\n}\n\n.cil-baby:before {\n  content: \"\\ea33\";\n}\n\n.cil-baby-carriage:before {\n  content: \"\\ea34\";\n}\n\n.cil-backspace:before {\n  content: \"\\ea35\";\n}\n\n.cil-badge:before {\n  content: \"\\ea36\";\n}\n\n.cil-balance-scale:before {\n  content: \"\\ea37\";\n}\n\n.cil-ban:before {\n  content: \"\\ea38\";\n}\n\n.cil-bank:before {\n  content: \"\\ea39\";\n}\n\n.cil-bar-chart:before {\n  content: \"\\ea3a\";\n}\n\n.cil-barcode:before {\n  content: \"\\ea3b\";\n}\n\n.cil-baseball:before {\n  content: \"\\ea3c\";\n}\n\n.cil-basket:before {\n  content: \"\\ea3d\";\n}\n\n.cil-basketball:before {\n  content: \"\\ea3e\";\n}\n\n.cil-bath:before {\n  content: \"\\ea3f\";\n}\n\n.cil-bathroom:before {\n  content: \"\\ea40\";\n}\n\n.cil-battery-0:before {\n  content: \"\\ea41\";\n}\n\n.cil-battery-3:before {\n  content: \"\\ea42\";\n}\n\n.cil-battery-5:before {\n  content: \"\\ea43\";\n}\n\n.cil-battery-alert:before {\n  content: \"\\ea44\";\n}\n\n.cil-battery-empty:before {\n  content: \"\\ea45\";\n}\n\n.cil-battery-full:before {\n  content: \"\\ea46\";\n}\n\n.cil-battery-slash:before {\n  content: \"\\ea47\";\n}\n\n.cil-beach-access:before {\n  content: \"\\ea48\";\n}\n\n.cil-beaker:before {\n  content: \"\\ea49\";\n}\n\n.cil-bed:before {\n  content: \"\\ea4a\";\n}\n\n.cil-bell:before {\n  content: \"\\ea4b\";\n}\n\n.cil-bell-exclamation:before {\n  content: \"\\ea4c\";\n}\n\n.cil-bike:before {\n  content: \"\\ea4d\";\n}\n\n.cil-birthday-cake:before {\n  content: \"\\ea4e\";\n}\n\n.cil-blind:before {\n  content: \"\\ea4f\";\n}\n\n.cil-bluetooth:before {\n  content: \"\\ea50\";\n}\n\n.cil-blur:before {\n  content: \"\\ea51\";\n}\n\n.cil-blur-circular:before {\n  content: \"\\ea52\";\n}\n\n.cil-blur-linear:before {\n  content: \"\\ea53\";\n}\n\n.cil-boat-alt:before {\n  content: \"\\ea54\";\n}\n\n.cil-bold:before {\n  content: \"\\ea55\";\n}\n\n.cil-bolt:before {\n  content: \"\\ea56\";\n}\n\n.cil-bolt-circle:before {\n  content: \"\\ea57\";\n}\n\n.cil-book:before {\n  content: \"\\ea58\";\n}\n\n.cil-bookmark:before {\n  content: \"\\ea59\";\n}\n\n.cil-border-all:before {\n  content: \"\\ea5a\";\n}\n\n.cil-border-bottom:before {\n  content: \"\\ea5b\";\n}\n\n.cil-border-clear:before {\n  content: \"\\ea5c\";\n}\n\n.cil-border-horizontal:before {\n  content: \"\\ea5d\";\n}\n\n.cil-border-inner:before {\n  content: \"\\ea5e\";\n}\n\n.cil-border-left:before {\n  content: \"\\ea5f\";\n}\n\n.cil-border-outer:before {\n  content: \"\\ea60\";\n}\n\n.cil-border-right:before {\n  content: \"\\ea61\";\n}\n\n.cil-border-style:before {\n  content: \"\\ea62\";\n}\n\n.cil-border-top:before {\n  content: \"\\ea63\";\n}\n\n.cil-border-vertical:before {\n  content: \"\\ea64\";\n}\n\n.cil-bowling:before {\n  content: \"\\ea65\";\n}\n\n.cil-braille:before {\n  content: \"\\ea66\";\n}\n\n.cil-briefcase:before {\n  content: \"\\ea67\";\n}\n\n.cil-brightness:before {\n  content: \"\\ea68\";\n}\n\n.cil-british-pound:before {\n  content: \"\\ea69\";\n}\n\n.cil-browser:before {\n  content: \"\\ea6a\";\n}\n\n.cil-brush:before {\n  content: \"\\ea6b\";\n}\n\n.cil-brush-alt:before {\n  content: \"\\ea6c\";\n}\n\n.cil-bug:before {\n  content: \"\\ea6d\";\n}\n\n.cil-building:before {\n  content: \"\\ea6e\";\n}\n\n.cil-bullhorn:before {\n  content: \"\\ea6f\";\n}\n\n.cil-burger:before {\n  content: \"\\ea70\";\n}\n\n.cil-burn:before {\n  content: \"\\ea71\";\n}\n\n.cil-bus-alt:before {\n  content: \"\\ea72\";\n}\n\n.cil-calculator:before {\n  content: \"\\ea73\";\n}\n\n.cil-calendar:before {\n  content: \"\\ea74\";\n}\n\n.cil-calendar-check:before {\n  content: \"\\ea75\";\n}\n\n.cil-camera:before {\n  content: \"\\ea76\";\n}\n\n.cil-camera-control:before {\n  content: \"\\ea77\";\n}\n\n.cil-camera-roll:before {\n  content: \"\\ea78\";\n}\n\n.cil-car-alt:before {\n  content: \"\\ea79\";\n}\n\n.cil-caret-bottom:before {\n  content: \"\\ea7a\";\n}\n\n.cil-caret-left:before {\n  content: \"\\ea7b\";\n}\n\n.cil-caret-right:before {\n  content: \"\\ea7c\";\n}\n\n.cil-caret-top:before {\n  content: \"\\ea7d\";\n}\n\n.cil-cart:before {\n  content: \"\\ea7e\";\n}\n\n.cil-cash:before {\n  content: \"\\ea7f\";\n}\n\n.cil-casino:before {\n  content: \"\\ea80\";\n}\n\n.cil-cast:before {\n  content: \"\\ea81\";\n}\n\n.cil-cat:before {\n  content: \"\\ea82\";\n}\n\n.cil-cc:before {\n  content: \"\\ea83\";\n}\n\n.cil-center-focus:before {\n  content: \"\\ea84\";\n}\n\n.cil-chart:before {\n  content: \"\\ea85\";\n}\n\n.cil-chart-line:before {\n  content: \"\\ea86\";\n}\n\n.cil-chart-pie:before {\n  content: \"\\ea87\";\n}\n\n.cil-chat-bubble:before {\n  content: \"\\ea88\";\n}\n\n.cil-check:before {\n  content: \"\\ea89\";\n}\n\n.cil-check-alt:before {\n  content: \"\\ea8a\";\n}\n\n.cil-check-circle:before {\n  content: \"\\ea8b\";\n}\n\n.cil-chevron-bottom:before {\n  content: \"\\ea8c\";\n}\n\n.cil-chevron-circle-down-alt:before {\n  content: \"\\ea8d\";\n}\n\n.cil-chevron-circle-left-alt:before {\n  content: \"\\ea8e\";\n}\n\n.cil-chevron-circle-right-alt:before {\n  content: \"\\ea8f\";\n}\n\n.cil-chevron-circle-up-alt:before {\n  content: \"\\ea90\";\n}\n\n.cil-chevron-double-down:before {\n  content: \"\\ea91\";\n}\n\n.cil-chevron-double-left:before {\n  content: \"\\ea92\";\n}\n\n.cil-chevron-double-right:before {\n  content: \"\\ea93\";\n}\n\n.cil-chevron-double-up:before {\n  content: \"\\ea94\";\n}\n\n.cil-chevron-left:before {\n  content: \"\\ea95\";\n}\n\n.cil-chevron-right:before {\n  content: \"\\ea96\";\n}\n\n.cil-chevron-top:before {\n  content: \"\\ea97\";\n}\n\n.cil-child:before {\n  content: \"\\ea98\";\n}\n\n.cil-child-friendly:before {\n  content: \"\\ea99\";\n}\n\n.cil-circle:before {\n  content: \"\\ea9a\";\n}\n\n.cil-clear-all:before {\n  content: \"\\ea9b\";\n}\n\n.cil-clipboard:before {\n  content: \"\\ea9c\";\n}\n\n.cil-clock:before {\n  content: \"\\ea9d\";\n}\n\n.cil-clone:before {\n  content: \"\\ea9e\";\n}\n\n.cil-closed-captioning:before {\n  content: \"\\ea9f\";\n}\n\n.cil-cloud:before {\n  content: \"\\eaa0\";\n}\n\n.cil-cloud-download:before {\n  content: \"\\eaa1\";\n}\n\n.cil-cloud-upload:before {\n  content: \"\\eaa2\";\n}\n\n.cil-cloudy:before {\n  content: \"\\eaa3\";\n}\n\n.cil-code:before {\n  content: \"\\eaa4\";\n}\n\n.cil-coffee:before {\n  content: \"\\eaa5\";\n}\n\n.cil-cog:before {\n  content: \"\\eaa6\";\n}\n\n.cil-color-border:before {\n  content: \"\\eaa7\";\n}\n\n.cil-color-fill:before {\n  content: \"\\eaa8\";\n}\n\n.cil-color-palette:before {\n  content: \"\\eaa9\";\n}\n\n.cil-columns:before {\n  content: \"\\eaaa\";\n}\n\n.cil-command:before {\n  content: \"\\eaab\";\n}\n\n.cil-comment-bubble:before {\n  content: \"\\eaac\";\n}\n\n.cil-comment-square:before {\n  content: \"\\eaad\";\n}\n\n.cil-compass:before {\n  content: \"\\eaae\";\n}\n\n.cil-compress:before {\n  content: \"\\eaaf\";\n}\n\n.cil-contact:before {\n  content: \"\\eab0\";\n}\n\n.cil-contrast:before {\n  content: \"\\eab1\";\n}\n\n.cil-control:before {\n  content: \"\\eab2\";\n}\n\n.cil-copy:before {\n  content: \"\\eab3\";\n}\n\n.cil-couch:before {\n  content: \"\\eab4\";\n}\n\n.cil-credit-card:before {\n  content: \"\\eab5\";\n}\n\n.cil-crop:before {\n  content: \"\\eab6\";\n}\n\n.cil-crop-rotate:before {\n  content: \"\\eab7\";\n}\n\n.cil-cursor:before {\n  content: \"\\eab8\";\n}\n\n.cil-cursor-move:before {\n  content: \"\\eab9\";\n}\n\n.cil-cut:before {\n  content: \"\\eaba\";\n}\n\n.cil-data-transfer-down:before {\n  content: \"\\eabb\";\n}\n\n.cil-data-transfer-up:before {\n  content: \"\\eabc\";\n}\n\n.cil-deaf:before {\n  content: \"\\eabd\";\n}\n\n.cil-delete:before {\n  content: \"\\eabe\";\n}\n\n.cil-description:before {\n  content: \"\\eabf\";\n}\n\n.cil-devices:before {\n  content: \"\\eac0\";\n}\n\n.cil-dialpad:before {\n  content: \"\\eac1\";\n}\n\n.cil-diamond:before {\n  content: \"\\eac2\";\n}\n\n.cil-dinner:before {\n  content: \"\\eac3\";\n}\n\n.cil-disabled:before {\n  content: \"\\eac4\";\n}\n\n.cil-dog:before {\n  content: \"\\eac5\";\n}\n\n.cil-dollar:before {\n  content: \"\\eac6\";\n}\n\n.cil-door:before {\n  content: \"\\eac7\";\n}\n\n.cil-double-quote-sans-left:before {\n  content: \"\\eac8\";\n}\n\n.cil-double-quote-sans-right:before {\n  content: \"\\eac9\";\n}\n\n.cil-drink:before {\n  content: \"\\eaca\";\n}\n\n.cil-drink-alcohol:before {\n  content: \"\\eacb\";\n}\n\n.cil-drop:before {\n  content: \"\\eacc\";\n}\n\n.cil-eco:before {\n  content: \"\\eacd\";\n}\n\n.cil-education:before {\n  content: \"\\eace\";\n}\n\n.cil-elevator:before {\n  content: \"\\eacf\";\n}\n\n.cil-envelope-closed:before {\n  content: \"\\ead0\";\n}\n\n.cil-envelope-letter:before {\n  content: \"\\ead1\";\n}\n\n.cil-envelope-open:before {\n  content: \"\\ead2\";\n}\n\n.cil-equalizer:before {\n  content: \"\\ead3\";\n}\n\n.cil-ethernet:before {\n  content: \"\\ead4\";\n}\n\n.cil-euro:before {\n  content: \"\\ead5\";\n}\n\n.cil-excerpt:before {\n  content: \"\\ead6\";\n}\n\n.cil-exit-to-app:before {\n  content: \"\\ead7\";\n}\n\n.cil-expand-down:before {\n  content: \"\\ead8\";\n}\n\n.cil-expand-left:before {\n  content: \"\\ead9\";\n}\n\n.cil-expand-right:before {\n  content: \"\\eada\";\n}\n\n.cil-expand-up:before {\n  content: \"\\eadb\";\n}\n\n.cil-exposure:before {\n  content: \"\\eadc\";\n}\n\n.cil-external-link:before {\n  content: \"\\eadd\";\n}\n\n.cil-eyedropper:before {\n  content: \"\\eade\";\n}\n\n.cil-face:before {\n  content: \"\\eadf\";\n}\n\n.cil-face-dead:before {\n  content: \"\\eae0\";\n}\n\n.cil-factory:before {\n  content: \"\\eae1\";\n}\n\n.cil-factory-slash:before {\n  content: \"\\eae2\";\n}\n\n.cil-fastfood:before {\n  content: \"\\eae3\";\n}\n\n.cil-fax:before {\n  content: \"\\eae4\";\n}\n\n.cil-featured-playlist:before {\n  content: \"\\eae5\";\n}\n\n.cil-file:before {\n  content: \"\\eae6\";\n}\n\n.cil-filter:before {\n  content: \"\\eae7\";\n}\n\n.cil-filter-frames:before {\n  content: \"\\eae8\";\n}\n\n.cil-filter-photo:before {\n  content: \"\\eae9\";\n}\n\n.cil-filter-square:before {\n  content: \"\\eaea\";\n}\n\n.cil-filter-x:before {\n  content: \"\\eaeb\";\n}\n\n.cil-find-in-page:before {\n  content: \"\\eaec\";\n}\n\n.cil-fingerprint:before {\n  content: \"\\eaed\";\n}\n\n.cil-fire:before {\n  content: \"\\eaee\";\n}\n\n.cil-flag-alt:before {\n  content: \"\\eaef\";\n}\n\n.cil-flight-takeoff:before {\n  content: \"\\eaf0\";\n}\n\n.cil-flip:before {\n  content: \"\\eaf1\";\n}\n\n.cil-flip-to-back:before {\n  content: \"\\eaf2\";\n}\n\n.cil-flip-to-front:before {\n  content: \"\\eaf3\";\n}\n\n.cil-flower:before {\n  content: \"\\eaf4\";\n}\n\n.cil-folder:before {\n  content: \"\\eaf5\";\n}\n\n.cil-folder-open:before {\n  content: \"\\eaf6\";\n}\n\n.cil-font:before {\n  content: \"\\eaf7\";\n}\n\n.cil-football:before {\n  content: \"\\eaf8\";\n}\n\n.cil-fork:before {\n  content: \"\\eaf9\";\n}\n\n.cil-fridge:before {\n  content: \"\\eafa\";\n}\n\n.cil-frown:before {\n  content: \"\\eafb\";\n}\n\n.cil-fullscreen:before {\n  content: \"\\eafc\";\n}\n\n.cil-fullscreen-exit:before {\n  content: \"\\eafd\";\n}\n\n.cil-functions:before {\n  content: \"\\eafe\";\n}\n\n.cil-functions-alt:before {\n  content: \"\\eaff\";\n}\n\n.cil-gamepad:before {\n  content: \"\\eb00\";\n}\n\n.cil-garage:before {\n  content: \"\\eb01\";\n}\n\n.cil-gauge:before {\n  content: \"\\eb02\";\n}\n\n.cil-gem:before {\n  content: \"\\eb03\";\n}\n\n.cil-gif:before {\n  content: \"\\eb04\";\n}\n\n.cil-gift:before {\n  content: \"\\eb05\";\n}\n\n.cil-globe-alt:before {\n  content: \"\\eb06\";\n}\n\n.cil-golf:before {\n  content: \"\\eb07\";\n}\n\n.cil-golf-alt:before {\n  content: \"\\eb08\";\n}\n\n.cil-gradient:before {\n  content: \"\\eb09\";\n}\n\n.cil-grain:before {\n  content: \"\\eb0a\";\n}\n\n.cil-graph:before {\n  content: \"\\eb0b\";\n}\n\n.cil-grid:before {\n  content: \"\\eb0c\";\n}\n\n.cil-grid-slash:before {\n  content: \"\\eb0d\";\n}\n\n.cil-group:before {\n  content: \"\\eb0e\";\n}\n\n.cil-hamburger-menu:before {\n  content: \"\\eb0f\";\n}\n\n.cil-hand-point-down:before {\n  content: \"\\eb10\";\n}\n\n.cil-hand-point-left:before {\n  content: \"\\eb11\";\n}\n\n.cil-hand-point-right:before {\n  content: \"\\eb12\";\n}\n\n.cil-hand-point-up:before {\n  content: \"\\eb13\";\n}\n\n.cil-happy:before {\n  content: \"\\eb14\";\n}\n\n.cil-hd:before {\n  content: \"\\eb15\";\n}\n\n.cil-hdr:before {\n  content: \"\\eb16\";\n}\n\n.cil-header:before {\n  content: \"\\eb17\";\n}\n\n.cil-headphones:before {\n  content: \"\\eb18\";\n}\n\n.cil-healing:before {\n  content: \"\\eb19\";\n}\n\n.cil-heart:before {\n  content: \"\\eb1a\";\n}\n\n.cil-highlighter:before {\n  content: \"\\eb1b\";\n}\n\n.cil-highligt:before {\n  content: \"\\eb1c\";\n}\n\n.cil-history:before {\n  content: \"\\eb1d\";\n}\n\n.cil-home:before {\n  content: \"\\eb1e\";\n}\n\n.cil-hospital:before {\n  content: \"\\eb1f\";\n}\n\n.cil-hot-tub:before {\n  content: \"\\eb20\";\n}\n\n.cil-house:before {\n  content: \"\\eb21\";\n}\n\n.cil-https:before {\n  content: \"\\eb22\";\n}\n\n.cil-image:before {\n  content: \"\\eb23\";\n}\n\n.cil-image-broken:before {\n  content: \"\\eb24\";\n}\n\n.cil-image-plus:before {\n  content: \"\\eb25\";\n}\n\n.cil-inbox:before {\n  content: \"\\eb26\";\n}\n\n.cil-indent-decrease:before {\n  content: \"\\eb27\";\n}\n\n.cil-indent-increase:before {\n  content: \"\\eb28\";\n}\n\n.cil-industry:before {\n  content: \"\\eb29\";\n}\n\n.cil-industry-slash:before {\n  content: \"\\eb2a\";\n}\n\n.cil-infinity:before {\n  content: \"\\eb2b\";\n}\n\n.cil-info:before {\n  content: \"\\eb2c\";\n}\n\n.cil-input:before {\n  content: \"\\eb2d\";\n}\n\n.cil-input-hdmi:before {\n  content: \"\\eb2e\";\n}\n\n.cil-input-power:before {\n  content: \"\\eb2f\";\n}\n\n.cil-institution:before {\n  content: \"\\eb30\";\n}\n\n.cil-italic:before {\n  content: \"\\eb31\";\n}\n\n.cil-justify-center:before {\n  content: \"\\eb32\";\n}\n\n.cil-justify-left:before {\n  content: \"\\eb33\";\n}\n\n.cil-justify-right:before {\n  content: \"\\eb34\";\n}\n\n.cil-keyboard:before {\n  content: \"\\eb35\";\n}\n\n.cil-lan:before {\n  content: \"\\eb36\";\n}\n\n.cil-language:before {\n  content: \"\\eb37\";\n}\n\n.cil-laptop:before {\n  content: \"\\eb38\";\n}\n\n.cil-layers:before {\n  content: \"\\eb39\";\n}\n\n.cil-leaf:before {\n  content: \"\\eb3a\";\n}\n\n.cil-lemon:before {\n  content: \"\\eb3b\";\n}\n\n.cil-level-down:before {\n  content: \"\\eb3c\";\n}\n\n.cil-level-up:before {\n  content: \"\\eb3d\";\n}\n\n.cil-library:before {\n  content: \"\\eb3e\";\n}\n\n.cil-library-add:before {\n  content: \"\\eb3f\";\n}\n\n.cil-library-building:before {\n  content: \"\\eb40\";\n}\n\n.cil-life-ring:before {\n  content: \"\\eb41\";\n}\n\n.cil-lightbulb:before {\n  content: \"\\eb42\";\n}\n\n.cil-line-spacing:before {\n  content: \"\\eb43\";\n}\n\n.cil-line-style:before {\n  content: \"\\eb44\";\n}\n\n.cil-line-weight:before {\n  content: \"\\eb45\";\n}\n\n.cil-link:before {\n  content: \"\\eb46\";\n}\n\n.cil-link-alt:before {\n  content: \"\\eb47\";\n}\n\n.cil-link-broken:before {\n  content: \"\\eb48\";\n}\n\n.cil-list:before {\n  content: \"\\eb49\";\n}\n\n.cil-list-filter:before {\n  content: \"\\eb4a\";\n}\n\n.cil-list-high-priority:before {\n  content: \"\\eb4b\";\n}\n\n.cil-list-low-priority:before {\n  content: \"\\eb4c\";\n}\n\n.cil-list-numbered:before {\n  content: \"\\eb4d\";\n}\n\n.cil-list-numbered-rtl:before {\n  content: \"\\eb4e\";\n}\n\n.cil-list-rich:before {\n  content: \"\\eb4f\";\n}\n\n.cil-location-pin:before {\n  content: \"\\eb50\";\n}\n\n.cil-lock-locked:before {\n  content: \"\\eb51\";\n}\n\n.cil-lock-unlocked:before {\n  content: \"\\eb52\";\n}\n\n.cil-locomotive:before {\n  content: \"\\eb53\";\n}\n\n.cil-loop:before {\n  content: \"\\eb54\";\n}\n\n.cil-loop-1:before {\n  content: \"\\eb55\";\n}\n\n.cil-loop-circular:before {\n  content: \"\\eb56\";\n}\n\n.cil-low-vision:before {\n  content: \"\\eb57\";\n}\n\n.cil-magnifying-glass:before {\n  content: \"\\eb58\";\n}\n\n.cil-map:before {\n  content: \"\\eb59\";\n}\n\n.cil-media-eject:before {\n  content: \"\\eb5a\";\n}\n\n.cil-media-pause:before {\n  content: \"\\eb5b\";\n}\n\n.cil-media-play:before {\n  content: \"\\eb5c\";\n}\n\n.cil-media-record:before {\n  content: \"\\eb5d\";\n}\n\n.cil-media-skip-backward:before {\n  content: \"\\eb5e\";\n}\n\n.cil-media-skip-forward:before {\n  content: \"\\eb5f\";\n}\n\n.cil-media-step-backward:before {\n  content: \"\\eb60\";\n}\n\n.cil-media-step-forward:before {\n  content: \"\\eb61\";\n}\n\n.cil-media-stop:before {\n  content: \"\\eb62\";\n}\n\n.cil-medical-cross:before {\n  content: \"\\eb63\";\n}\n\n.cil-meh:before {\n  content: \"\\eb64\";\n}\n\n.cil-memory:before {\n  content: \"\\eb65\";\n}\n\n.cil-menu:before {\n  content: \"\\eb66\";\n}\n\n.cil-mic:before {\n  content: \"\\eb67\";\n}\n\n.cil-microphone:before {\n  content: \"\\eb68\";\n}\n\n.cil-minus:before {\n  content: \"\\eb69\";\n}\n\n.cil-mobile:before {\n  content: \"\\eb6a\";\n}\n\n.cil-mobile-landscape:before {\n  content: \"\\eb6b\";\n}\n\n.cil-money:before {\n  content: \"\\eb6c\";\n}\n\n.cil-monitor:before {\n  content: \"\\eb6d\";\n}\n\n.cil-mood-bad:before {\n  content: \"\\eb6e\";\n}\n\n.cil-mood-good:before {\n  content: \"\\eb6f\";\n}\n\n.cil-mood-very-bad:before {\n  content: \"\\eb70\";\n}\n\n.cil-mood-very-good:before {\n  content: \"\\eb71\";\n}\n\n.cil-moon:before {\n  content: \"\\eb72\";\n}\n\n.cil-mouse:before {\n  content: \"\\eb73\";\n}\n\n.cil-mouth-slash:before {\n  content: \"\\eb74\";\n}\n\n.cil-move:before {\n  content: \"\\eb75\";\n}\n\n.cil-movie:before {\n  content: \"\\eb76\";\n}\n\n.cil-mug:before {\n  content: \"\\eb77\";\n}\n\n.cil-mug-tea:before {\n  content: \"\\eb78\";\n}\n\n.cil-music-note:before {\n  content: \"\\eb79\";\n}\n\n.cil-newspaper:before {\n  content: \"\\eb7a\";\n}\n\n.cil-note-add:before {\n  content: \"\\eb7b\";\n}\n\n.cil-notes:before {\n  content: \"\\eb7c\";\n}\n\n.cil-object-group:before {\n  content: \"\\eb7d\";\n}\n\n.cil-object-ungroup:before {\n  content: \"\\eb7e\";\n}\n\n.cil-opacity:before {\n  content: \"\\eb7f\";\n}\n\n.cil-opentype:before {\n  content: \"\\eb80\";\n}\n\n.cil-options:before {\n  content: \"\\eb81\";\n}\n\n.cil-paint:before {\n  content: \"\\eb82\";\n}\n\n.cil-paint-bucket:before {\n  content: \"\\eb83\";\n}\n\n.cil-paper-plane:before {\n  content: \"\\eb84\";\n}\n\n.cil-paperclip:before {\n  content: \"\\eb85\";\n}\n\n.cil-paragraph:before {\n  content: \"\\eb86\";\n}\n\n.cil-paw:before {\n  content: \"\\eb87\";\n}\n\n.cil-pen:before {\n  content: \"\\eb88\";\n}\n\n.cil-pen-alt:before {\n  content: \"\\eb89\";\n}\n\n.cil-pen-nib:before {\n  content: \"\\eb8a\";\n}\n\n.cil-pencil:before {\n  content: \"\\eb8b\";\n}\n\n.cil-people:before {\n  content: \"\\eb8c\";\n}\n\n.cil-phone:before {\n  content: \"\\eb8d\";\n}\n\n.cil-pin:before {\n  content: \"\\eb8e\";\n}\n\n.cil-pizza:before {\n  content: \"\\eb8f\";\n}\n\n.cil-plant:before {\n  content: \"\\eb90\";\n}\n\n.cil-playlist-add:before {\n  content: \"\\eb91\";\n}\n\n.cil-plus:before {\n  content: \"\\eb92\";\n}\n\n.cil-pool:before {\n  content: \"\\eb93\";\n}\n\n.cil-power-standby:before {\n  content: \"\\eb94\";\n}\n\n.cil-pregnant:before {\n  content: \"\\eb95\";\n}\n\n.cil-print:before {\n  content: \"\\eb96\";\n}\n\n.cil-pushchair:before {\n  content: \"\\eb97\";\n}\n\n.cil-puzzle:before {\n  content: \"\\eb98\";\n}\n\n.cil-qr-code:before {\n  content: \"\\eb99\";\n}\n\n.cil-rain:before {\n  content: \"\\eb9a\";\n}\n\n.cil-rectangle:before {\n  content: \"\\eb9b\";\n}\n\n.cil-recycle:before {\n  content: \"\\eb9c\";\n}\n\n.cil-reload:before {\n  content: \"\\eb9d\";\n}\n\n.cil-report-slash:before {\n  content: \"\\eb9e\";\n}\n\n.cil-resize-both:before {\n  content: \"\\eb9f\";\n}\n\n.cil-resize-height:before {\n  content: \"\\eba0\";\n}\n\n.cil-resize-width:before {\n  content: \"\\eba1\";\n}\n\n.cil-restaurant:before {\n  content: \"\\eba2\";\n}\n\n.cil-room:before {\n  content: \"\\eba3\";\n}\n\n.cil-router:before {\n  content: \"\\eba4\";\n}\n\n.cil-rowing:before {\n  content: \"\\eba5\";\n}\n\n.cil-rss:before {\n  content: \"\\eba6\";\n}\n\n.cil-ruble:before {\n  content: \"\\eba7\";\n}\n\n.cil-running:before {\n  content: \"\\eba8\";\n}\n\n.cil-sad:before {\n  content: \"\\eba9\";\n}\n\n.cil-satelite:before {\n  content: \"\\ebaa\";\n}\n\n.cil-save:before {\n  content: \"\\ebab\";\n}\n\n.cil-school:before {\n  content: \"\\ebac\";\n}\n\n.cil-screen-desktop:before {\n  content: \"\\ebad\";\n}\n\n.cil-screen-smartphone:before {\n  content: \"\\ebae\";\n}\n\n.cil-scrubber:before {\n  content: \"\\ebaf\";\n}\n\n.cil-search:before {\n  content: \"\\ebb0\";\n}\n\n.cil-send:before {\n  content: \"\\ebb1\";\n}\n\n.cil-settings:before {\n  content: \"\\ebb2\";\n}\n\n.cil-share:before {\n  content: \"\\ebb3\";\n}\n\n.cil-share-all:before {\n  content: \"\\ebb4\";\n}\n\n.cil-share-alt:before {\n  content: \"\\ebb5\";\n}\n\n.cil-share-boxed:before {\n  content: \"\\ebb6\";\n}\n\n.cil-shield-alt:before {\n  content: \"\\ebb7\";\n}\n\n.cil-short-text:before {\n  content: \"\\ebb8\";\n}\n\n.cil-shower:before {\n  content: \"\\ebb9\";\n}\n\n.cil-sign-language:before {\n  content: \"\\ebba\";\n}\n\n.cil-signal-cellular-0:before {\n  content: \"\\ebbb\";\n}\n\n.cil-signal-cellular-3:before {\n  content: \"\\ebbc\";\n}\n\n.cil-signal-cellular-4:before {\n  content: \"\\ebbd\";\n}\n\n.cil-sim:before {\n  content: \"\\ebbe\";\n}\n\n.cil-sitemap:before {\n  content: \"\\ebbf\";\n}\n\n.cil-smile:before {\n  content: \"\\ebc0\";\n}\n\n.cil-smile-plus:before {\n  content: \"\\ebc1\";\n}\n\n.cil-smoke:before {\n  content: \"\\ebc2\";\n}\n\n.cil-smoke-free:before {\n  content: \"\\ebc3\";\n}\n\n.cil-smoke-slash:before {\n  content: \"\\ebc4\";\n}\n\n.cil-smoking-room:before {\n  content: \"\\ebc5\";\n}\n\n.cil-snowflake:before {\n  content: \"\\ebc6\";\n}\n\n.cil-soccer:before {\n  content: \"\\ebc7\";\n}\n\n.cil-sofa:before {\n  content: \"\\ebc8\";\n}\n\n.cil-sort-alpha-down:before {\n  content: \"\\ebc9\";\n}\n\n.cil-sort-alpha-up:before {\n  content: \"\\ebca\";\n}\n\n.cil-sort-ascending:before {\n  content: \"\\ebcb\";\n}\n\n.cil-sort-descending:before {\n  content: \"\\ebcc\";\n}\n\n.cil-sort-numeric-down:before {\n  content: \"\\ebcd\";\n}\n\n.cil-sort-numeric-up:before {\n  content: \"\\ebce\";\n}\n\n.cil-spa:before {\n  content: \"\\ebcf\";\n}\n\n.cil-space-bar:before {\n  content: \"\\ebd0\";\n}\n\n.cil-speak:before {\n  content: \"\\ebd1\";\n}\n\n.cil-speaker:before {\n  content: \"\\ebd2\";\n}\n\n.cil-speech:before {\n  content: \"\\ebd3\";\n}\n\n.cil-speedometer:before {\n  content: \"\\ebd4\";\n}\n\n.cil-spreadsheet:before {\n  content: \"\\ebd5\";\n}\n\n.cil-square:before {\n  content: \"\\ebd6\";\n}\n\n.cil-star:before {\n  content: \"\\ebd7\";\n}\n\n.cil-star-half:before {\n  content: \"\\ebd8\";\n}\n\n.cil-storage:before {\n  content: \"\\ebd9\";\n}\n\n.cil-stream:before {\n  content: \"\\ebda\";\n}\n\n.cil-strikethrough:before {\n  content: \"\\ebdb\";\n}\n\n.cil-sun:before {\n  content: \"\\ebdc\";\n}\n\n.cil-swap-horizontal:before {\n  content: \"\\ebdd\";\n}\n\n.cil-swap-vertical:before {\n  content: \"\\ebde\";\n}\n\n.cil-swimming:before {\n  content: \"\\ebdf\";\n}\n\n.cil-sync:before {\n  content: \"\\ebe0\";\n}\n\n.cil-tablet:before {\n  content: \"\\ebe1\";\n}\n\n.cil-tag:before {\n  content: \"\\ebe2\";\n}\n\n.cil-tags:before {\n  content: \"\\ebe3\";\n}\n\n.cil-task:before {\n  content: \"\\ebe4\";\n}\n\n.cil-taxi:before {\n  content: \"\\ebe5\";\n}\n\n.cil-tennis:before {\n  content: \"\\ebe6\";\n}\n\n.cil-tennis-ball:before {\n  content: \"\\ebe7\";\n}\n\n.cil-terminal:before {\n  content: \"\\ebe8\";\n}\n\n.cil-terrain:before {\n  content: \"\\ebe9\";\n}\n\n.cil-text:before {\n  content: \"\\ebea\";\n}\n\n.cil-text-shapes:before {\n  content: \"\\ebeb\";\n}\n\n.cil-text-size:before {\n  content: \"\\ebec\";\n}\n\n.cil-text-square:before {\n  content: \"\\ebed\";\n}\n\n.cil-text-strike:before {\n  content: \"\\ebee\";\n}\n\n.cil-thumb-down:before {\n  content: \"\\ebef\";\n}\n\n.cil-thumb-up:before {\n  content: \"\\ebf0\";\n}\n\n.cil-toggle-off:before {\n  content: \"\\ebf1\";\n}\n\n.cil-toggle-on:before {\n  content: \"\\ebf2\";\n}\n\n.cil-toilet:before {\n  content: \"\\ebf3\";\n}\n\n.cil-touch-app:before {\n  content: \"\\ebf4\";\n}\n\n.cil-transfer:before {\n  content: \"\\ebf5\";\n}\n\n.cil-translate:before {\n  content: \"\\ebf6\";\n}\n\n.cil-trash:before {\n  content: \"\\ebf7\";\n}\n\n.cil-triangle:before {\n  content: \"\\ebf8\";\n}\n\n.cil-truck:before {\n  content: \"\\ebf9\";\n}\n\n.cil-tv:before {\n  content: \"\\ebfa\";\n}\n\n.cil-underline:before {\n  content: \"\\ebfb\";\n}\n\n.cil-usb:before {\n  content: \"\\ebfc\";\n}\n\n.cil-user:before {\n  content: \"\\ebfd\";\n}\n\n.cil-user-female:before {\n  content: \"\\ebfe\";\n}\n\n.cil-user-follow:before {\n  content: \"\\ebff\";\n}\n\n.cil-user-plus:before {\n  content: \"\\ec00\";\n}\n\n.cil-user-unfollow:before {\n  content: \"\\ec01\";\n}\n\n.cil-user-x:before {\n  content: \"\\ec02\";\n}\n\n.cil-vector:before {\n  content: \"\\ec03\";\n}\n\n.cil-vertical-align-bottom:before {\n  content: \"\\ec04\";\n}\n\n.cil-vertical-align-center:before {\n  content: \"\\ec05\";\n}\n\n.cil-vertical-align-top:before {\n  content: \"\\ec06\";\n}\n\n.cil-video:before {\n  content: \"\\ec07\";\n}\n\n.cil-videogame:before {\n  content: \"\\ec08\";\n}\n\n.cil-view-column:before {\n  content: \"\\ec09\";\n}\n\n.cil-view-module:before {\n  content: \"\\ec0a\";\n}\n\n.cil-view-quilt:before {\n  content: \"\\ec0b\";\n}\n\n.cil-view-stream:before {\n  content: \"\\ec0c\";\n}\n\n.cil-voice:before {\n  content: \"\\ec0d\";\n}\n\n.cil-voice-over-record:before {\n  content: \"\\ec0e\";\n}\n\n.cil-volume-high:before {\n  content: \"\\ec0f\";\n}\n\n.cil-volume-low:before {\n  content: \"\\ec10\";\n}\n\n.cil-volume-off:before {\n  content: \"\\ec11\";\n}\n\n.cil-walk:before {\n  content: \"\\ec12\";\n}\n\n.cil-wallet:before {\n  content: \"\\ec13\";\n}\n\n.cil-wallpaper:before {\n  content: \"\\ec14\";\n}\n\n.cil-warning:before {\n  content: \"\\ec15\";\n}\n\n.cil-watch:before {\n  content: \"\\ec16\";\n}\n\n.cil-wc:before {\n  content: \"\\ec17\";\n}\n\n.cil-weightlifitng:before {\n  content: \"\\ec18\";\n}\n\n.cil-wheelchair:before {\n  content: \"\\ec19\";\n}\n\n.cil-wifi-signal-0:before {\n  content: \"\\ec1a\";\n}\n\n.cil-wifi-signal-1:before {\n  content: \"\\ec1b\";\n}\n\n.cil-wifi-signal-2:before {\n  content: \"\\ec1c\";\n}\n\n.cil-wifi-signal-3:before {\n  content: \"\\ec1d\";\n}\n\n.cil-wifi-signal-4:before {\n  content: \"\\ec1e\";\n}\n\n.cil-wifi-signal-off:before {\n  content: \"\\ec1f\";\n}\n\n.cil-window:before {\n  content: \"\\ec20\";\n}\n\n.cil-window-maximize:before {\n  content: \"\\ec21\";\n}\n\n.cil-window-minimize:before {\n  content: \"\\ec22\";\n}\n\n.cil-window-restore:before {\n  content: \"\\ec23\";\n}\n\n.cil-wrap-text:before {\n  content: \"\\ec24\";\n}\n\n.cil-x:before {\n  content: \"\\ec25\";\n}\n\n.cil-x-circle:before {\n  content: \"\\ec26\";\n}\n\n.cil-yen:before {\n  content: \"\\ec27\";\n}\n\n.cil-zoom:before {\n  content: \"\\ec28\";\n}\n\n.cil-zoom-in:before {\n  content: \"\\ec29\";\n}\n\n.cil-zoom-out:before {\n  content: \"\\ec2a\";\n}"
  },
  {
    "path": "icon-packs/ikonli-dashicons-pack/ikonli-dashicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-dashicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.dashicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.dashicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.dashicons.DashiconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.dashicons.DashiconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-dashicons-pack/src/main/java/org/kordamp/ikonli/dashicons/Dashicons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.dashicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Dashicons implements Ikon {\n    ADMIN_APPEARANCE(\"dashicons-admin-appearance\", '\\uf100'),\n    ADMIN_COLLAPSE(\"dashicons-admin-collapse\", '\\uf148'),\n    ADMIN_COMMENTS(\"dashicons-admin-comments\", '\\uf101'),\n    ADMIN_CUSTOMIZER(\"dashicons-admin-customizer\", '\\uf540'),\n    ADMIN_GENERIC(\"dashicons-admin-generic\", '\\uf111'),\n    ADMIN_HOME(\"dashicons-admin-home\", '\\uf102'),\n    ADMIN_LINKS(\"dashicons-admin-links\", '\\uf103'),\n    ADMIN_MEDIA(\"dashicons-admin-media\", '\\uf104'),\n    ADMIN_MULTISITE(\"dashicons-admin-multisite\", '\\uf541'),\n    ADMIN_NETWORK(\"dashicons-admin-network\", '\\uf112'),\n    ADMIN_PAGE(\"dashicons-admin-page\", '\\uf105'),\n    ADMIN_PLUGINS(\"dashicons-admin-plugins\", '\\uf106'),\n    ADMIN_POST(\"dashicons-admin-post\", '\\uf109'),\n    ADMIN_SETTINGS(\"dashicons-admin-settings\", '\\uf108'),\n    ADMIN_SITE(\"dashicons-admin-site\", '\\uf319'),\n    ADMIN_SITE_ALT(\"dashicons-admin-site-alt\", '\\uf11d'),\n    ADMIN_SITE_ALT2(\"dashicons-admin-site-alt2\", '\\uf11e'),\n    ADMIN_SITE_ALT3(\"dashicons-admin-site-alt3\", '\\uf11f'),\n    ADMIN_TOOLS(\"dashicons-admin-tools\", '\\uf107'),\n    ADMIN_USERS(\"dashicons-admin-users\", '\\uf110'),\n    AIRPLANE(\"dashicons-airplane\", '\\uf15f'),\n    ALBUM(\"dashicons-album\", '\\uf514'),\n    ALIGN_CENTER(\"dashicons-align-center\", '\\uf134'),\n    ALIGN_FULL_WIDTH(\"dashicons-align-full-width\", '\\uf114'),\n    ALIGN_LEFT(\"dashicons-align-left\", '\\uf135'),\n    ALIGN_NONE(\"dashicons-align-none\", '\\uf138'),\n    ALIGN_PULL_LEFT(\"dashicons-align-pull-left\", '\\uf10a'),\n    ALIGN_PULL_RIGHT(\"dashicons-align-pull-right\", '\\uf10b'),\n    ALIGN_RIGHT(\"dashicons-align-right\", '\\uf136'),\n    ALIGN_WIDE(\"dashicons-align-wide\", '\\uf11b'),\n    AMAZON(\"dashicons-amazon\", '\\uf162'),\n    ANALYTICS(\"dashicons-analytics\", '\\uf183'),\n    ARCHIVE(\"dashicons-archive\", '\\uf480'),\n    ARROW_DOWN(\"dashicons-arrow-down\", '\\uf140'),\n    ARROW_DOWN_ALT(\"dashicons-arrow-down-alt\", '\\uf346'),\n    ARROW_DOWN_ALT2(\"dashicons-arrow-down-alt2\", '\\uf347'),\n    ARROW_LEFT(\"dashicons-arrow-left\", '\\uf141'),\n    ARROW_LEFT_ALT(\"dashicons-arrow-left-alt\", '\\uf340'),\n    ARROW_LEFT_ALT2(\"dashicons-arrow-left-alt2\", '\\uf341'),\n    ARROW_RIGHT(\"dashicons-arrow-right\", '\\uf139'),\n    ARROW_RIGHT_ALT(\"dashicons-arrow-right-alt\", '\\uf344'),\n    ARROW_RIGHT_ALT2(\"dashicons-arrow-right-alt2\", '\\uf345'),\n    ARROW_UP(\"dashicons-arrow-up\", '\\uf142'),\n    ARROW_UP_ALT(\"dashicons-arrow-up-alt\", '\\uf342'),\n    ARROW_UP_ALT2(\"dashicons-arrow-up-alt2\", '\\uf343'),\n    ARROW_UP_DUPLICATE(\"dashicons-arrow-up-duplicate\", '\\uf143'),\n    ART(\"dashicons-art\", '\\uf309'),\n    AWARDS(\"dashicons-awards\", '\\uf313'),\n    BACKUP(\"dashicons-backup\", '\\uf321'),\n    BANK(\"dashicons-bank\", '\\uf16a'),\n    BEER(\"dashicons-beer\", '\\uf16c'),\n    BELL(\"dashicons-bell\", '\\uf16d'),\n    BLOCK_DEFAULT(\"dashicons-block-default\", '\\uf12b'),\n    BOOK(\"dashicons-book\", '\\uf330'),\n    BOOK_ALT(\"dashicons-book-alt\", '\\uf331'),\n    BUDDICONS_ACTIVITY(\"dashicons-buddicons-activity\", '\\uf452'),\n    BUDDICONS_BBPRESS_LOGO(\"dashicons-buddicons-bbpress-logo\", '\\uf477'),\n    BUDDICONS_BUDDYPRESS_LOGO(\"dashicons-buddicons-buddypress-logo\", '\\uf448'),\n    BUDDICONS_COMMUNITY(\"dashicons-buddicons-community\", '\\uf453'),\n    BUDDICONS_FORUMS(\"dashicons-buddicons-forums\", '\\uf449'),\n    BUDDICONS_FRIENDS(\"dashicons-buddicons-friends\", '\\uf454'),\n    BUDDICONS_GROUPS(\"dashicons-buddicons-groups\", '\\uf456'),\n    BUDDICONS_PM(\"dashicons-buddicons-pm\", '\\uf457'),\n    BUDDICONS_REPLIES(\"dashicons-buddicons-replies\", '\\uf451'),\n    BUDDICONS_TOPICS(\"dashicons-buddicons-topics\", '\\uf450'),\n    BUDDICONS_TRACKING(\"dashicons-buddicons-tracking\", '\\uf455'),\n    BUILDING(\"dashicons-building\", '\\uf512'),\n    BUSINESSMAN(\"dashicons-businessman\", '\\uf338'),\n    BUSINESSPERSON(\"dashicons-businessperson\", '\\uf12e'),\n    BUSINESSWOMAN(\"dashicons-businesswoman\", '\\uf12f'),\n    BUTTON(\"dashicons-button\", '\\uf11a'),\n    CALCULATOR(\"dashicons-calculator\", '\\uf16e'),\n    CALENDAR(\"dashicons-calendar\", '\\uf145'),\n    CALENDAR_ALT(\"dashicons-calendar-alt\", '\\uf508'),\n    CAMERA(\"dashicons-camera\", '\\uf306'),\n    CAMERA_ALT(\"dashicons-camera-alt\", '\\uf129'),\n    CAR(\"dashicons-car\", '\\uf16b'),\n    CARROT(\"dashicons-carrot\", '\\uf511'),\n    CART(\"dashicons-cart\", '\\uf174'),\n    CATEGORY(\"dashicons-category\", '\\uf318'),\n    CHART_AREA(\"dashicons-chart-area\", '\\uf239'),\n    CHART_BAR(\"dashicons-chart-bar\", '\\uf185'),\n    CHART_LINE(\"dashicons-chart-line\", '\\uf238'),\n    CHART_PIE(\"dashicons-chart-pie\", '\\uf184'),\n    CLIPBOARD(\"dashicons-clipboard\", '\\uf481'),\n    CLOCK(\"dashicons-clock\", '\\uf469'),\n    CLOUD(\"dashicons-cloud\", '\\uf176'),\n    CLOUD_SAVED(\"dashicons-cloud-saved\", '\\uf137'),\n    CLOUD_UPLOAD(\"dashicons-cloud-upload\", '\\uf13b'),\n    CODE_STANDARDS(\"dashicons-code-standards\", '\\uf13a'),\n    COFFEE(\"dashicons-coffee\", '\\uf16f'),\n    COLOR_PICKER(\"dashicons-color-picker\", '\\uf131'),\n    COLUMNS(\"dashicons-columns\", '\\uf13c'),\n    CONTROLS_BACK(\"dashicons-controls-back\", '\\uf518'),\n    CONTROLS_FORWARD(\"dashicons-controls-forward\", '\\uf519'),\n    CONTROLS_PAUSE(\"dashicons-controls-pause\", '\\uf523'),\n    CONTROLS_PLAY(\"dashicons-controls-play\", '\\uf522'),\n    CONTROLS_REPEAT(\"dashicons-controls-repeat\", '\\uf515'),\n    CONTROLS_SKIPBACK(\"dashicons-controls-skipback\", '\\uf516'),\n    CONTROLS_SKIPFORWARD(\"dashicons-controls-skipforward\", '\\uf517'),\n    CONTROLS_VOLUMEOFF(\"dashicons-controls-volumeoff\", '\\uf520'),\n    CONTROLS_VOLUMEON(\"dashicons-controls-volumeon\", '\\uf521'),\n    COVER_IMAGE(\"dashicons-cover-image\", '\\uf13d'),\n    DASHBOARD(\"dashicons-dashboard\", '\\uf226'),\n    DATABASE(\"dashicons-database\", '\\uf17e'),\n    DATABASE_ADD(\"dashicons-database-add\", '\\uf170'),\n    DATABASE_EXPORT(\"dashicons-database-export\", '\\uf17a'),\n    DATABASE_IMPORT(\"dashicons-database-import\", '\\uf17b'),\n    DATABASE_REMOVE(\"dashicons-database-remove\", '\\uf17c'),\n    DATABASE_VIEW(\"dashicons-database-view\", '\\uf17d'),\n    DESKTOP(\"dashicons-desktop\", '\\uf472'),\n    DISMISS(\"dashicons-dismiss\", '\\uf153'),\n    DOWNLOAD(\"dashicons-download\", '\\uf316'),\n    DRUMSTICK(\"dashicons-drumstick\", '\\uf17f'),\n    EDIT(\"dashicons-edit\", '\\uf464'),\n    EDITOR_ALIGNCENTER(\"dashicons-editor-aligncenter\", '\\uf207'),\n    EDITOR_ALIGNLEFT(\"dashicons-editor-alignleft\", '\\uf206'),\n    EDITOR_ALIGNRIGHT(\"dashicons-editor-alignright\", '\\uf208'),\n    EDITOR_BOLD(\"dashicons-editor-bold\", '\\uf200'),\n    EDITOR_BREAK(\"dashicons-editor-break\", '\\uf474'),\n    EDITOR_CODE(\"dashicons-editor-code\", '\\uf475'),\n    EDITOR_CODE_DUPLICATE(\"dashicons-editor-code-duplicate\", '\\uf494'),\n    EDITOR_CONTRACT(\"dashicons-editor-contract\", '\\uf506'),\n    EDITOR_CUSTOMCHAR(\"dashicons-editor-customchar\", '\\uf220'),\n    EDITOR_DISTRACTIONFREE(\"dashicons-editor-distractionfree\", '\\uf211'),\n    EDITOR_EXPAND(\"dashicons-editor-expand\", '\\uf211'),\n    EDITOR_HELP(\"dashicons-editor-help\", '\\uf223'),\n    EDITOR_INDENT(\"dashicons-editor-indent\", '\\uf222'),\n    EDITOR_INSERTMORE(\"dashicons-editor-insertmore\", '\\uf209'),\n    EDITOR_ITALIC(\"dashicons-editor-italic\", '\\uf201'),\n    EDITOR_JUSTIFY(\"dashicons-editor-justify\", '\\uf214'),\n    EDITOR_KITCHENSINK(\"dashicons-editor-kitchensink\", '\\uf212'),\n    EDITOR_LTR(\"dashicons-editor-ltr\", '\\uf10c'),\n    EDITOR_OL(\"dashicons-editor-ol\", '\\uf204'),\n    EDITOR_OL_RTL(\"dashicons-editor-ol-rtl\", '\\uf12c'),\n    EDITOR_OUTDENT(\"dashicons-editor-outdent\", '\\uf221'),\n    EDITOR_PARAGRAPH(\"dashicons-editor-paragraph\", '\\uf476'),\n    EDITOR_PASTE_TEXT(\"dashicons-editor-paste-text\", '\\uf217'),\n    EDITOR_PASTE_WORD(\"dashicons-editor-paste-word\", '\\uf216'),\n    EDITOR_QUOTE(\"dashicons-editor-quote\", '\\uf205'),\n    EDITOR_REMOVEFORMATTING(\"dashicons-editor-removeformatting\", '\\uf218'),\n    EDITOR_RTL(\"dashicons-editor-rtl\", '\\uf320'),\n    EDITOR_SPELLCHECK(\"dashicons-editor-spellcheck\", '\\uf210'),\n    EDITOR_STRIKETHROUGH(\"dashicons-editor-strikethrough\", '\\uf224'),\n    EDITOR_TABLE(\"dashicons-editor-table\", '\\uf535'),\n    EDITOR_TEXTCOLOR(\"dashicons-editor-textcolor\", '\\uf215'),\n    EDITOR_UL(\"dashicons-editor-ul\", '\\uf203'),\n    EDITOR_UNDERLINE(\"dashicons-editor-underline\", '\\uf213'),\n    EDITOR_UNLINK(\"dashicons-editor-unlink\", '\\uf225'),\n    EDITOR_VIDEO(\"dashicons-editor-video\", '\\uf219'),\n    EDIT_LARGE(\"dashicons-edit-large\", '\\uf327'),\n    EDIT_PAGE(\"dashicons-edit-page\", '\\uf186'),\n    ELLIPSIS(\"dashicons-ellipsis\", '\\uf11c'),\n    EMAIL(\"dashicons-email\", '\\uf465'),\n    EMAIL_ALT(\"dashicons-email-alt\", '\\uf466'),\n    EMAIL_ALT2(\"dashicons-email-alt2\", '\\uf467'),\n    EMBED_AUDIO(\"dashicons-embed-audio\", '\\uf13e'),\n    EMBED_GENERIC(\"dashicons-embed-generic\", '\\uf13f'),\n    EMBED_PHOTO(\"dashicons-embed-photo\", '\\uf144'),\n    EMBED_POST(\"dashicons-embed-post\", '\\uf146'),\n    EMBED_VIDEO(\"dashicons-embed-video\", '\\uf149'),\n    EXCERPT_VIEW(\"dashicons-excerpt-view\", '\\uf164'),\n    EXERPT_VIEW(\"dashicons-exerpt-view\", '\\uf164'),\n    EXIT(\"dashicons-exit\", '\\uf14a'),\n    EXTERNAL(\"dashicons-external\", '\\uf504'),\n    FACEBOOK(\"dashicons-facebook\", '\\uf304'),\n    FACEBOOK_ALT(\"dashicons-facebook-alt\", '\\uf305'),\n    FEEDBACK(\"dashicons-feedback\", '\\uf175'),\n    FILTER(\"dashicons-filter\", '\\uf536'),\n    FLAG(\"dashicons-flag\", '\\uf227'),\n    FOOD(\"dashicons-food\", '\\uf187'),\n    FORMAT_ASIDE(\"dashicons-format-aside\", '\\uf123'),\n    FORMAT_AUDIO(\"dashicons-format-audio\", '\\uf127'),\n    FORMAT_CHAT(\"dashicons-format-chat\", '\\uf125'),\n    FORMAT_GALLERY(\"dashicons-format-gallery\", '\\uf161'),\n    FORMAT_IMAGE(\"dashicons-format-image\", '\\uf128'),\n    FORMAT_LINKS(\"dashicons-format-links\", '\\uf103'),\n    FORMAT_QUOTE(\"dashicons-format-quote\", '\\uf122'),\n    FORMAT_STANDARD(\"dashicons-format-standard\", '\\uf109'),\n    FORMAT_STATUS(\"dashicons-format-status\", '\\uf130'),\n    FORMAT_VIDEO(\"dashicons-format-video\", '\\uf126'),\n    FORMS(\"dashicons-forms\", '\\uf314'),\n    FULLSCREEN_ALT(\"dashicons-fullscreen-alt\", '\\uf188'),\n    FULLSCREEN_EXIT_ALT(\"dashicons-fullscreen-exit-alt\", '\\uf189'),\n    GAMES(\"dashicons-games\", '\\uf18a'),\n    GOOGLE(\"dashicons-google\", '\\uf18b'),\n    GOOGLEPLUS(\"dashicons-googleplus\", '\\uf462'),\n    GRID_VIEW(\"dashicons-grid-view\", '\\uf509'),\n    GROUPS(\"dashicons-groups\", '\\uf307'),\n    HAMMER(\"dashicons-hammer\", '\\uf308'),\n    HEADING(\"dashicons-heading\", '\\uf10e'),\n    HEART(\"dashicons-heart\", '\\uf487'),\n    HIDDEN(\"dashicons-hidden\", '\\uf530'),\n    HOURGLASS(\"dashicons-hourglass\", '\\uf18c'),\n    HTML(\"dashicons-html\", '\\uf14b'),\n    ID(\"dashicons-id\", '\\uf336'),\n    ID_ALT(\"dashicons-id-alt\", '\\uf337'),\n    IMAGES_ALT(\"dashicons-images-alt\", '\\uf232'),\n    IMAGES_ALT2(\"dashicons-images-alt2\", '\\uf233'),\n    IMAGE_CROP(\"dashicons-image-crop\", '\\uf165'),\n    IMAGE_FILTER(\"dashicons-image-filter\", '\\uf533'),\n    IMAGE_FLIP_HORIZONTAL(\"dashicons-image-flip-horizontal\", '\\uf169'),\n    IMAGE_FLIP_VERTICAL(\"dashicons-image-flip-vertical\", '\\uf168'),\n    IMAGE_ROTATE(\"dashicons-image-rotate\", '\\uf531'),\n    IMAGE_ROTATE_LEFT(\"dashicons-image-rotate-left\", '\\uf166'),\n    IMAGE_ROTATE_RIGHT(\"dashicons-image-rotate-right\", '\\uf167'),\n    INDEX_CARD(\"dashicons-index-card\", '\\uf510'),\n    INFO(\"dashicons-info\", '\\uf348'),\n    INFO_OUTLINE(\"dashicons-info-outline\", '\\uf14c'),\n    INSERT(\"dashicons-insert\", '\\uf10f'),\n    INSERT_AFTER(\"dashicons-insert-after\", '\\uf14d'),\n    INSERT_BEFORE(\"dashicons-insert-before\", '\\uf14e'),\n    INSTAGRAM(\"dashicons-instagram\", '\\uf12d'),\n    LAPTOP(\"dashicons-laptop\", '\\uf547'),\n    LAYOUT(\"dashicons-layout\", '\\uf538'),\n    LEFTRIGHT(\"dashicons-leftright\", '\\uf229'),\n    LIGHTBULB(\"dashicons-lightbulb\", '\\uf339'),\n    LINKEDIN(\"dashicons-linkedin\", '\\uf18d'),\n    LIST_VIEW(\"dashicons-list-view\", '\\uf163'),\n    LOCATION(\"dashicons-location\", '\\uf230'),\n    LOCATION_ALT(\"dashicons-location-alt\", '\\uf231'),\n    LOCK(\"dashicons-lock\", '\\uf160'),\n    LOCK_DUPLICATE(\"dashicons-lock-duplicate\", '\\uf315'),\n    MARKER(\"dashicons-marker\", '\\uf159'),\n    MEDIA_ARCHIVE(\"dashicons-media-archive\", '\\uf501'),\n    MEDIA_AUDIO(\"dashicons-media-audio\", '\\uf500'),\n    MEDIA_CODE(\"dashicons-media-code\", '\\uf499'),\n    MEDIA_DEFAULT(\"dashicons-media-default\", '\\uf498'),\n    MEDIA_DOCUMENT(\"dashicons-media-document\", '\\uf497'),\n    MEDIA_INTERACTIVE(\"dashicons-media-interactive\", '\\uf496'),\n    MEDIA_SPREADSHEET(\"dashicons-media-spreadsheet\", '\\uf495'),\n    MEDIA_TEXT(\"dashicons-media-text\", '\\uf491'),\n    MEDIA_VIDEO(\"dashicons-media-video\", '\\uf490'),\n    MEGAPHONE(\"dashicons-megaphone\", '\\uf488'),\n    MENU(\"dashicons-menu\", '\\uf333'),\n    MENU_ALT(\"dashicons-menu-alt\", '\\uf228'),\n    MENU_ALT2(\"dashicons-menu-alt2\", '\\uf329'),\n    MENU_ALT3(\"dashicons-menu-alt3\", '\\uf349'),\n    MICROPHONE(\"dashicons-microphone\", '\\uf482'),\n    MIGRATE(\"dashicons-migrate\", '\\uf310'),\n    MINUS(\"dashicons-minus\", '\\uf460'),\n    MONEY(\"dashicons-money\", '\\uf526'),\n    MONEY_ALT(\"dashicons-money-alt\", '\\uf18e'),\n    MOVE(\"dashicons-move\", '\\uf545'),\n    NAMETAG(\"dashicons-nametag\", '\\uf484'),\n    NETWORKING(\"dashicons-networking\", '\\uf325'),\n    NO(\"dashicons-no\", '\\uf158'),\n    NO_ALT(\"dashicons-no-alt\", '\\uf335'),\n    OPEN_FOLDER(\"dashicons-open-folder\", '\\uf18f'),\n    PALMTREE(\"dashicons-palmtree\", '\\uf527'),\n    PAPERCLIP(\"dashicons-paperclip\", '\\uf546'),\n    PDF(\"dashicons-pdf\", '\\uf190'),\n    PERFORMANCE(\"dashicons-performance\", '\\uf311'),\n    PETS(\"dashicons-pets\", '\\uf191'),\n    PHONE(\"dashicons-phone\", '\\uf525'),\n    PINTEREST(\"dashicons-pinterest\", '\\uf192'),\n    PLAYLIST_AUDIO(\"dashicons-playlist-audio\", '\\uf492'),\n    PLAYLIST_VIDEO(\"dashicons-playlist-video\", '\\uf493'),\n    PLUGINS_CHECKED(\"dashicons-plugins-checked\", '\\uf485'),\n    PLUS(\"dashicons-plus\", '\\uf132'),\n    PLUS_ALT(\"dashicons-plus-alt\", '\\uf502'),\n    PLUS_ALT2(\"dashicons-plus-alt2\", '\\uf543'),\n    PODIO(\"dashicons-podio\", '\\uf19c'),\n    PORTFOLIO(\"dashicons-portfolio\", '\\uf322'),\n    POST_STATUS(\"dashicons-post-status\", '\\uf173'),\n    POST_TRASH(\"dashicons-post-trash\", '\\uf182'),\n    PRESSTHIS(\"dashicons-pressthis\", '\\uf157'),\n    PRINTER(\"dashicons-printer\", '\\uf193'),\n    PRIVACY(\"dashicons-privacy\", '\\uf194'),\n    PRODUCTS(\"dashicons-products\", '\\uf312'),\n    RANDOMIZE(\"dashicons-randomize\", '\\uf503'),\n    REDDIT(\"dashicons-reddit\", '\\uf195'),\n    REDO(\"dashicons-redo\", '\\uf172'),\n    REMOVE(\"dashicons-remove\", '\\uf14f'),\n    REST_API(\"dashicons-rest-api\", '\\uf124'),\n    RSS(\"dashicons-rss\", '\\uf303'),\n    SAVED(\"dashicons-saved\", '\\uf15e'),\n    SCHEDULE(\"dashicons-schedule\", '\\uf489'),\n    SCREENOPTIONS(\"dashicons-screenoptions\", '\\uf180'),\n    SEARCH(\"dashicons-search\", '\\uf179'),\n    SHARE(\"dashicons-share\", '\\uf237'),\n    SHARE1(\"dashicons-share1\", '\\uf237'),\n    SHARE_ALT(\"dashicons-share-alt\", '\\uf240'),\n    SHARE_ALT2(\"dashicons-share-alt2\", '\\uf242'),\n    SHIELD(\"dashicons-shield\", '\\uf332'),\n    SHIELD_ALT(\"dashicons-shield-alt\", '\\uf334'),\n    SHORTCODE(\"dashicons-shortcode\", '\\uf150'),\n    SLIDES(\"dashicons-slides\", '\\uf181'),\n    SMARTPHONE(\"dashicons-smartphone\", '\\uf470'),\n    SMILEY(\"dashicons-smiley\", '\\uf328'),\n    SORT(\"dashicons-sort\", '\\uf156'),\n    SOS(\"dashicons-sos\", '\\uf468'),\n    SPOTIFY(\"dashicons-spotify\", '\\uf196'),\n    STAR_EMPTY(\"dashicons-star-empty\", '\\uf154'),\n    STAR_FILLED(\"dashicons-star-filled\", '\\uf155'),\n    STAR_HALF(\"dashicons-star-half\", '\\uf459'),\n    STICKY(\"dashicons-sticky\", '\\uf537'),\n    STORE(\"dashicons-store\", '\\uf513'),\n    SUPERHERO(\"dashicons-superhero\", '\\uf198'),\n    SUPERHERO_ALT(\"dashicons-superhero-alt\", '\\uf197'),\n    TABLET(\"dashicons-tablet\", '\\uf471'),\n    TABLE_COL_AFTER(\"dashicons-table-col-after\", '\\uf151'),\n    TABLE_COL_BEFORE(\"dashicons-table-col-before\", '\\uf152'),\n    TABLE_COL_DELETE(\"dashicons-table-col-delete\", '\\uf15a'),\n    TABLE_ROW_AFTER(\"dashicons-table-row-after\", '\\uf15b'),\n    TABLE_ROW_BEFORE(\"dashicons-table-row-before\", '\\uf15c'),\n    TABLE_ROW_DELETE(\"dashicons-table-row-delete\", '\\uf15d'),\n    TAG(\"dashicons-tag\", '\\uf323'),\n    TAGCLOUD(\"dashicons-tagcloud\", '\\uf479'),\n    TESTIMONIAL(\"dashicons-testimonial\", '\\uf473'),\n    TEXT(\"dashicons-text\", '\\uf478'),\n    TEXT_PAGE(\"dashicons-text-page\", '\\uf121'),\n    THUMBS_DOWN(\"dashicons-thumbs-down\", '\\uf542'),\n    THUMBS_UP(\"dashicons-thumbs-up\", '\\uf529'),\n    TICKETS(\"dashicons-tickets\", '\\uf486'),\n    TICKETS_ALT(\"dashicons-tickets-alt\", '\\uf524'),\n    TIDE(\"dashicons-tide\", '\\uf10d'),\n    TRANSLATION(\"dashicons-translation\", '\\uf326'),\n    TRASH(\"dashicons-trash\", '\\uf182'),\n    TWITCH(\"dashicons-twitch\", '\\uf199'),\n    TWITTER(\"dashicons-twitter\", '\\uf301'),\n    TWITTER_ALT(\"dashicons-twitter-alt\", '\\uf302'),\n    UNDO(\"dashicons-undo\", '\\uf171'),\n    UNIVERSAL_ACCESS(\"dashicons-universal-access\", '\\uf483'),\n    UNIVERSAL_ACCESS_ALT(\"dashicons-universal-access-alt\", '\\uf507'),\n    UNLOCK(\"dashicons-unlock\", '\\uf528'),\n    UPDATE(\"dashicons-update\", '\\uf463'),\n    UPDATE_ALT(\"dashicons-update-alt\", '\\uf113'),\n    UPLOAD(\"dashicons-upload\", '\\uf317'),\n    VAULT(\"dashicons-vault\", '\\uf178'),\n    VIDEO_ALT(\"dashicons-video-alt\", '\\uf234'),\n    VIDEO_ALT2(\"dashicons-video-alt2\", '\\uf235'),\n    VIDEO_ALT3(\"dashicons-video-alt3\", '\\uf236'),\n    VISIBILITY(\"dashicons-visibility\", '\\uf177'),\n    WARNING(\"dashicons-warning\", '\\uf534'),\n    WELCOME_ADD_PAGE(\"dashicons-welcome-add-page\", '\\uf133'),\n    WELCOME_COMMENTS(\"dashicons-welcome-comments\", '\\uf117'),\n    WELCOME_EDIT_PAGE(\"dashicons-welcome-edit-page\", '\\uf119'),\n    WELCOME_LEARN_MORE(\"dashicons-welcome-learn-more\", '\\uf118'),\n    WELCOME_VIEW_SITE(\"dashicons-welcome-view-site\", '\\uf115'),\n    WELCOME_WIDGETS_MENUS(\"dashicons-welcome-widgets-menus\", '\\uf116'),\n    WELCOME_WRITE_BLOG(\"dashicons-welcome-write-blog\", '\\uf119'),\n    WHATSAPP(\"dashicons-whatsapp\", '\\uf19a'),\n    WORDPRESS(\"dashicons-wordpress\", '\\uf120'),\n    WORDPRESS_ALT(\"dashicons-wordpress-alt\", '\\uf324'),\n    XING(\"dashicons-xing\", '\\uf19d'),\n    YES(\"dashicons-yes\", '\\uf147'),\n    YES_ALT(\"dashicons-yes-alt\", '\\uf12a'),\n    YOUTUBE(\"dashicons-youtube\", '\\uf19b');\n\n    public static Dashicons findByDescription(String description) {\n        for (Dashicons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Dashicons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-dashicons-pack/src/main/java/org/kordamp/ikonli/dashicons/DashiconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.dashicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class DashiconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/dashicons/20200504/fonts/dashicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"dashicons-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Dashicons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"dashicons\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-dashicons-pack/src/main/java/org/kordamp/ikonli/dashicons/DashiconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.dashicons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class DashiconsIkonProvider implements IkonProvider<Dashicons> {\n    @Override\n    public Class<Dashicons> getIkon() {\n        return Dashicons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-dashicons-pack/src/main/resources/META-INF/resources/dashicons/20200504/css/dashicons.css",
    "content": "/**\n * DO NOT EDIT THIS FILE DIRECTLY\n * This file is automatically built using a build process\n * If you need to fix errors, see https://github.com/WordPress/dashicons\n */\n\n/* stylelint-disable function-url-quotes, declaration-colon-newline-after */\n@font-face {\n\tfont-family: dashicons;\n\tsrc: url(\"../fonts/dashicons.eot?380d8bbbfa573efd9332485b301f5f57\");\n\tsrc: url(\"../fonts/dashicons.eot?380d8bbbfa573efd9332485b301f5f57#iefix\") format(\"embedded-opentype\"),\n\t\turl(\"data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAHwIAAsAAAAA3GAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAAQAAAAFZAuk8lY21hcAAAAXwAAAk/AAAU9l+BPsxnbHlmAAAKvAAAYxsAAKlYRBARVmhlYWQAAG3YAAAAMAAAADYWrKgJaGhlYQAAbggAAAAfAAAAJAQ3A0hobXR4AABuKAAAACUAAAVQpgT/9mxvY2EAAG5QAAACqgAAAqpytEbobWF4cAAAcPwAAAAfAAAAIAJvAKBuYW1lAABxHAAAATAAAAIiwytf8nBvc3QAAHJMAAAJvAAAEhojMlz2eJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2Bk/Mc4gYGVgYOBhzGNgYHBHUp/ZZBkaGFgYGJgZWbACgLSXFMYHD4yfHVnAnH1mBgZGIE0CDMAAI/zCGl4nN3Y93/eVRnG8c/9JE2bstLdQIF0N8x0t8w0pSMt0BZKS5ml7F32lrL3hlKmCxEQtzjAhQMRRcEJijhQQWV4vgNBGV4nl3+B/mbTd8+reeVJvuc859znvgL0A5pkO2nW3xcJ8qee02ej7/NNDOz7fHPTw/r/LnTo60ale4ooWov2orOYXXQXPWVr2V52lrPL3qq3WlmtqlZXx1bnVFdVd9TNdWvdXnfWk+tZ9dx6wfvvQ6KgaCraio6iq+/VUbaVHWVX2V0trJb2vXpNtbZaV91YU7fUbXVH3VVPrbvrefnV//WfYJc4M86OS2N9PBCP9n08FS/E6w0agxtDG2P6ProaPY3ljaMaJzVOb1ze2NC4s3Ff46G+VzfRQn8GsBEbM4RN2YQtGMVlMY2v8COGai0Hxm6MjEWxOBZGb+zJArbidjajjUGxJHbgUzwYG/EJPsNDfJLFsYzpXM6Pmcd8Ps1BvB8LGEE7W7KSzdmGA9ifgzmau7ibcUxkB7bnHhZxb+xDgw/yYb7GU/yQp2NgDI9xMZ61sWVsFZtHkxb5+ZgQE2NSdMYmDOM5HmZrfs6H+Cbf4bt8m28xhb2YyjQWciDHxk7RGg2W8DFWxbyYE20cx/GcwImcxKmxWYyIGXr3l7MPp/MAn+PzfIFH+Co/4296Q2v+wdvRHP1iQIyKMTE2ZsZesW8QSzmHi7mFK7iWsziTs7mIG/gAl3Irl3Az13A117GeC7iSdVzIjdzGMXycP/ITfskv+B5PRk/MjT1iCPuyLAbF4Jgds2Jj7uOj7MmX+DI78hfejBa6+Kxmekp0s5TBXM/kiNg29uaNmM5p0c6fmMmMGMbLMZS/8w2+zh78lPFMYFvt9Ul0Moax/IA/s5P2+hy6mcXO7EoPu7F7bM1feSR25wzuZAN3xBasiJGxDSfH9pzLeVzF7NgxtmM0+/FK7MLrvBNTeZSXYlP+wO/5J//SV/2O3/Iiv+EFfs2veDf68xHOj53p5Yt8n72ZG6MZzhoO5wgO4VCO5CgOY3VM4S1epYxdYzKP8QSPx3xu4v7o4Fmdydbo4j1eo+IZbdaW/+Gc/L/82Tj/0zbS/4kVue5YrmzpP3L1Sw3T+SY1mU46qdl05kn9TKef1GL5J6T+popAGmCqDaRWU5UgDTTVC9JGpspB2ti4TOMmpmpC2tRUV0ibmSoMqc1Ua0iDLFfwNNhypU5DTJWINNTQGqRhFos0DrdYrHGExUKNIy16Nbabqhhpc1M9I21hqmykUaYaR9rSyM+7lZGfd2sjP2+HxRKNo01VkTTGVB9JY40HNY6zyGs23lQ9SRNMdZQ00VRRSZNMtZXUaeQ5bmOqt6RtTZWXtJ2pBpO2N1Vj0g6mukza0VShSV2mWk2abKrapClGvtumWuS1mmbkNZ5u5HWdYeQ1m2mq+KRZRl7v2UZ+9p1M9wFpZ9PNQNrFdEeQdjXdFqTdTPcGaXfTDULqNvK6zjHy+vUYed5zjbwee5juHNI8I++f+ca9GheYbiTSQiOfp17TLUVaZLqvSItNNxdpT9MdRtrLdJuR9jae1rjEIu/tpRZ5/y6zyHPZxyLvkX2NtRqXW+R13s8i780VFnmdV1rkc7+/5SKRVhnPazzAIu+7Ay3yuh1kkffdwRZ53x1ikc/0oUY+f6tNNxTpMNOtTFpj5LNyuOmmJh1hurNJR5pub9JRpnucdLTpRicdY7rbSceabnnScUbep8cbeb1PMPKePdHIe/YkI7+fJxt53muN/L1Psch781SLXPNOs8h74HQjv4dnmLoL0plGXuOzLPL+Otsi781zLHINOdfI8zjPyPM438jzuMDI8/iAkedxoZGfcZ1FrlEXWeSzebFFPpeXGLlWXWrkfXSZkffa5Uae3xWmjoh0pak3Il1l6pJIV5v6JdI1ps6JdK2phyJdZ+qmSNeb+irSDaYOi3Sjqdci3WTqukg3G29rvMUi3123WuQ74jaLfEett8j1+3aLXIM3WOQafIdFrk93WuQ9c5dFPmd3W75G0z2mbi8/ah/1fRRh6gDV85t6QYpmU1dI0c/UH1K0mDpFiv6mnpFigKl7pGg19ZEUbaaOkmKQqbekGGzqMimGmPpNiqGmzpNimKkHpRhu6kYpRpj6UoqRpg6Vot3Uq1J0mLpWitGm/pVijKmTpRhr6mkpxpm6W4rxpj6XYoKp46WYaOp9KSaZumCKTlM/TNFl6owpJpt6ZIoppm6ZYqrxpMZpFqrvxXQL1fdihoXqezHTIq/TLFOnTTHbUJ0tui3yGvdYaH3LsNDXlQ0Lvb5sMnXplM2mfp2yn6lzp2wx9fCU/U3dPOUAU19P2Wrq8CnbTL0+5SDjTY2DLXe95RBTEqAcasoElMMs195yuKH6VY4wJQbKkabsQNlu5O/dYcoTlKMNrXs5xiKvwVgL9RblOFPuoBxvvKFxgimLUE40VCvLSRb5Z3aakgpllymzUE429J6VUyzynKYaL2ucZpHnPd2UcihnmPIO5UxT8qGcZcpAlLNNaYiy28jPPsfIz95j5DnOtfybg3IPI89jnpHnMd/I67TAyOu00JSzKHtNiYtqoSl7UfWaUhjVUlMeo1pmSmZU+5gyGtW+prRGtdyU26j2MyU4qhWmLEe10lBvVK0y5Tuq1aakR7XGcq2uDrfIX3+EKQdSHWlKhFRHmbIh1dGGamh1jCkvUh1r5GdZa6E9V51iSpNUpxq6d6vTTAmT6nRT1qQ6w5Qnqc405U+qswy9l9XZFjo71TmmdEq1zpRTqS4y8jpdbLyi8RKLvP6XmvIs1WXGOxovN2VcqitMaZfqSuMljVeZEjDVjaYsTHWTKRVT3WzKx1S3mJIy1a3WN8fbTOmZar0pR1PdbkrUVBtM2ZrqDlPKztdlH+Vt6jAlb+qG8a7GJlMap2425XLqFkN9Rt3flNWpB5hSO3WrKb9Tt5mSPPUgU6anHmzozNRDTDmfeqgp8VMPM2V/6uGG9lw9wtCeq0ca6i/rdkP9Zd1haC/Wow3txXqMoV6zHmtof9fjLFRH6vHGWxonGK9qnGiUGidZ6EzVnRaqR3WX8ZjGycYTGqcaj2ucZqFaUE839N7XM4z7Nc60yPOYZTyrsdvybyfrOUZe7x6L/PPnGu9pnGe8pnG+UWlcYDzzb8iLsxoAeJysvQmcJMdZJ5qRlZmR91F5VWXdZ/bd0511zEzP9PSMPKOrS5JHEpJGI0uyTbUk27KMMLBobZVtrvVaPmVw1+7+WMDYy5rDpsfAwjMLmPXxmDKYa8HALrCmZ8Es+3sLCw/evpr3RWTW0TMjA/t73VWRkZFH3F/8vyO+YlgG/tD/g64yGrPOMI2w2/H85L+LQyw4JeQ5WDCQgOHf63a6nTMIgk1I3+yi5z/dlE/4muV5RadY3f/0GsY5UZTzaUsqKFqtki9ImuKo2BVzoov/5NNNhTNE3dZMHuMh3A3p2MNwhyYV8uW6phQkyyyoGOcxJkWLy/dF9EVGZQyIbRaRo6PqGmptI7uNEdO93OlcfvZyp3v56Q+jL9Jo5/KbHuuMf/NzryWP0ueHaMSkGcaONr0CcoRlhNu1avM0anUGh16x6EWDyC0W0ajoXnGLgwE9TPL+HfRrTJmJINZpd8Jm2MRVvEEbAydNso1Iq3Q7qNNN/j2/GLcX+i2EEItFFXNKfaW+7qmKkkr5gR8pmVou548f8FQsCrykp1dMScBqfnUB/XCKFQVJkBAS/HyultEygRdkWNZTMscaK/XxD+qO4qclXdZSllStKTmeS8o6gnqGzDHox5qAfRwK2K21myEOu82w1o463bDrd7rtyPX8ro89P8KbnVazKjgeGh3H+kJnwQt6gQ9HHXe7grHQCb18L/DgqAvHv1JeXd1ZXR3l/DC+gT7hB7vJE8ePC3pIEp4nt+2skiKlaLl+Ef0CIzE66QMExYLy+O0I+26l7bdrLhqGuY99LPeL/dZwOL466qNmch4t7O/vvzgYTN/zNfSfGI+pMschDi1sIB3BgIUaGKgJw3IbeSlySkar43Vw16O3rLH0mg+D2dtEn3MNww3dE/lnzPKa+QzWycmJ3/pnouWL3yOavvqMCEne8RPLcN+Ce7zwjFVZRf8O7oEbdfyMuVY2n8mTE8MYf+Wfib6JMA0jmurp+vLs1gopNkfLfg1dY2wmzywxHeifdqu5jMIarlUFGJFeVNnshJueI1SbrY4fWXEk2oTmwdBdk1PUM5Tlar+6LBuGjBjFGOYajXazORqQMBBwrx/FscMrshFFhgwH41PNNrkrHP8VvZt95ztzj9AYFEuKJxn6DYZnFJhhLpOD0d5gFhnoPkR7ykBhG0YLdJRPzktxasOHoUUDcqVCuvFNb3qTPRgEe9/Y7++2MD35bzQcD/pXUb9/ddBCrRa674kn7Oee23roYfvSpdby8t7jj6efey5Nw+iRS5cege9OBH/JmP599F9pu9Eex9DhBluD8dyBaefNhu9PZi0rW7infqzX7GV/Ja0VMufOhbrj5B0H/Xz23NlsQTMfFB+P/kPj1QW49dvJhbwzmeOEPqRIW3StisVHbsWKhogZH46uM9EA9cYHQYR6yRj8HPo8g6GVahCHhugUWQytA3MdqArppjOo3ep2fHLBQOi++4/dL2Qc7jf8ayWtVMi8vqyUPaWMpc9Bss3j+9H74Q7MO36rcM3VJLGseHDL67KF6iVItjPC/QkN+wP0xwwMJwSZNemwJhOJEplmTJTDrkfHOVLWf2jd3bAci9fWtu/ATjbtyZqcNvAd2+vORtpO8+hg7QfXNQ6iGy65xUjLmuSnMy6+fTtJn865EboC42KZuR1GrdVq1ipVwbXiEduIyJBdRnR8nkY1Mki3oPqdTc/1588KaP7ONhoZyviAjuGeYlxnsophKFlRFqeRQUCuBljBAUkikT5qkbTxVQjfbbhGU8BQdYi8RCKP3JQymXcjFsHaETEPMJdhBajqyCmizW3UWkO+jvAaCjvdZhULsOAVEKHuTWjGbieEuVdE/man66UgtduB+dMM4W44UBKfLJEejMgU0HsBd7qH289sbz/zNhK8g/dNaaXEG5ItSBwrenKjwol6IOkFqb0eFFnO4PD/YadYnkOSqAgFrEJn+zhXCCpWWU6bfMa98zuMkmR6iGOZ5K0QfMzK43KkWYogKpakIU7LINtzkaIY2cA+UTFFbfynjqdlbclQcIrlUpyU76QFnkul9MISkuor4Tn0RkHSDE5RGJj1szZagJXjFPOGG1rJhlinC40BNa2RBhJC2mhk1QtJ++io2YWm8nxyqbmO3DWYCKTxPDJdyQCFa3HLkX/BJU0IsW0WOmCuzVReElleV7mUq/Ga6BQNNc1JhhjK1kNWjpWQk7uQ2lQcAdsBhFXN51mW1ViO47k0LwoaxiW/hjlITGGrrKRYxKYU797XHnP9+SYc/zKWkCiyYsHQ0ipCPE6lTBVhzufFQsaSczZXgtYS4BLL8e47BEOSIQuDFzWelThB8vycxxY91dUFKHDdUwypAa29tmWZThua05pr0zSTYQpAKxaYNRiDJ5gd5jyzy1xkHmYeY17HPH1DW/OR59ea3TaMLIBXfq0dujUy1kiI4RsJfuTWmj5pwhCWUDL9TyM4wBVyHQYpvCGEboKQpKTgFO4kT+K5ph7/zVkkdo3fadoir0rsY7XbBdFuPsZKzbOc0RWDxy5Kj5JrT1/gIf0ygvSUeVxkkXTcSDXXVP9Y+X/66mq5vKr6G6W/8rXV8rH5Jv6/a9XKj99nNDS9Vq2d/6b7DK3xuvO16vl6pXrhfPW2e/WGZtx7D6Tq35QkV+vVaqW+Vy94y2cL9eXxf6kVvZVzxdqSN6VDtD1PMnfcND5xZzK2QhiUpO40Eg88OlphZBZZOl/JUMWTu+daJHgKMJcupVVe5FIZ+/Qaa5Rsu38WkCjHpTVdzAuyqGvRva6N+arcCRQTaJKmcmLqyNj60u5K1bNVLGOOgC9JXrRVNbd9b8rJ5jMFixU4G3FYL+V0VTbV+2przUvLli7piiDLM7z76+jLjAPjhiEAJ1lVmjBfsA+QhveSVQ99Inuh/G6707Q/rmmbZ0t33XGXrI+/H3uG4QECyur6x+1m2/7n5fObunLXnXeVdj6DDYJ+pvn8LKx7Dqz1DKqSBlmHmdzZ9L0E7OMuoO0CncFVcrENmDtCjGNoksClBMvp2RafggmhGs6FQqecq1WP3X+sWs0V2yVk64qtW1ozXy7nm5ql24p+br3aye9giRdFXsI7hXZlgs+/DPXdgmOTMBoE0YVNY4rsgGQQLItLiMDXbbSOJhdmRwDfn9X9tPHItslxKc1f0zhR5hzNLCsvn7yk3beWFnY+rAoi76awktJcn8MyawRP6ryAPqsJgv7aAOhhCgMm1VKywLkC5rWXt4X02n3apZMvq1VNczhZ5LQNnxyM0w8pjk+KLtBOw+g3KbotAvreYu5lmHalDXwBG66xuF3xrZrF64QAtgGFwvjzttEa9KwH9A9G5zaCud4lBLVICOct0hCzfap13nHSu6/bvM4cXkUPa91AFc1VN7Dv52TMwgqCLvpRRuBZmecWKraSkiU2pXO5syVBYCWB76wGaZpmR9j07Afe2Nq4LaPhYDxE/V8PbE2QnrBEWevyKSTJAhKVJw1JQLLMIyiuZvGsIHN+19Z5JEFeSChaOZ7lFa48xQlXACekABnBomJX2hXUrrgYjj3UhzwiAFI0MoDYcNiPZmN98hygi4rlkycPxkMYZteZAxLArfwN7zcAD9I8bECdjQgC+PKTvA4PUbYHf+NrcxnuRcNoP/o6ZS2gaVkh06NFnTwznDzThQ7tJvke7o+ASdkHdDK+egVymctjen8D7g/hbhe+6GC/NX3gWtSKmFeuH60XZFOLKMSOy9eD8HDQ6yVl3I+Gw7+nbi5p1QGtV5Q07ZF+iHHSr6KfZ0zgre5jHoUSCzWY8mQVj2CJh2nWbcbcP+C4hOcNASYBRd08gwj5bbdgrNcI0XAiQE0w0OEadquAAHzX8bqup7OACNst9P133v/myymOXXrq+OqDDR4vp0MjhVjDSGNZALxiGH/qLuiGDJOqynE6x/K5WrqRKfF4BZ5yA01MLS37OXbhEstJlqwZ7yp1EJdqhEEWCSlf5FQkwLpfkznEao0WstKuzLIlTtJyPcANGYXV0zXM86xmsJpl8qYYZpRs7Z/KajatWOYyw4hTXpq0owk8URZocQW4IjpGyUjBbpTwam3Aul3grd3Jl7T5aNxHe+OrqHWtR1jhk25xuEf/SFqEhnC5F/R6lJ+OoqKbDfZae8FeMOnDa7OxgwiTXLEqDcJhHY5bWfp0METDVqsHcyQIEhp6BcorEhmHBRwCEMrDVj86OIj6UJhRPzg4CPrMVB5yBe2RUWcTKUA4GAzgRtQfDLIHB7N7BqhFZijwOGiw10fR/v7sGuEJRFo2mhWe5YGCJNvpvXtwL0/eQ25NckFxntN7elAelkqfUA+G8943Hs2n266EtFIRiuJsJpU7mgfhgXw8pFkkOUyu0/cDwIbJivrT9ydt1qhZtBrhtPTTjG5qswblfpMKDG9qsx7J5wzyD/b6B8PhDekIRyjYG0Edp7TvMzCugNO2vZiV871YgERWCZKgE5aEQm3fo4C7SRD172EWiSqbSqu+Xghk3y8WeD5bWN9882XXVqRTjeYObixKisjXFxQF/WQKc0paNhXRlIKMoPLC2c7J6GSxlGpvLEXr9zveJ00UpD1HFwqWPaFHn0K/BpQoA+ULaQl9sgD7pInXYUxgn4x+wtSFkwi0n9+NGn4Xh7Vv0vVWaWur1NL1qLy1VX506dSpB05tLccSpHOV9tn6zvjPy52d+g76p/F95P5yBPf/0qkHt+DmbCxEyp9Qv/fE95zQPnwiabNfg3KVmCUiD2B1lqA7yn1ss2usTgeZv83iZru7QSQV3SZ6bPMkji6/aaO+qS1JC8XGAxdCfvXuBy7Yx16U17KX37Qtomy29zzi0E/B2etO4iB9sp4rbZo2vQ1ubmbu/XBm86TwR1jhX3jhYgexM5o9AuopAi41AUdB/8Jk5XEURsmXkAoE61h/POJ3xIjfwfAVxyNKu0d72SyMIfJ3ncgXYyyBvoS+BDhigWkz5wBJvIGgogSu4pCgHSKRjcWyQHohuUFlsXCt5ROYSLqCSgdmJ0K1m2BIAu6cbrPWAVwCjwKGJBReAFIdOQRVoicraY/TVJ3zXaWh7Wha2tD1Z7WG8lFP58b/IxJMTrvL5BxBeJbXJf5ZQVuaRDn9kxCRhWcFPcW9SRZFsbjgpCS9ntUES2QVxa0H9SxKc16QTamW66d1fQc4AMcAbuDNmvZxTtdPtHheu88U9OcFjXuLoGrcswJaEsiBxi+8hVf01JuBeBtvku2lvIgVSQuamoCNouKmg1xjhiv+FfSNQCQmDViOarAEtVuULVhDVcF1AGYVoJVIh60hxLjFfvGFpSoC3jHtm3x1mc27KPILQJvd4q9v1boyK7GKZcGUEruN434o7+yIzTnaMCRcHyJrNfkSoV4F8quhQa8Pq46O+rqC+i3405XRSNGn8tpr8Bzg/G7FrcDqaLU6EdB6ItHqWgTjE0nLZoeKoGDqlMlRMYxtYD3g04tWS6hVWh0PAdU/ggKCq8eHPBWco+n7YUKjyErevoWsGnl7VEHDKH7n4SGRsKAAYNfe3Pum7UjecQLGImMDHIHyufA5KvcRahMBUHKshpOENhUB+RMx3ShaL/r5wC0W3QDy0DQIokkkWC1HQ9kgHAo6PIiK657XKy4VSZJ8nKPCn1YccsfJYS9bXj04oAyNkcwdsmZLjM/U6ex5K5SZdHW30+40/U4Tag6TwYs2u50jHGSqGkt2gL2J1Qvd2b3bcBUYoU5308EbRCALxBgukrnU3XQxwUNELkLYJwHDq+kLny+ZOQ7hxwTdNXIcFizdM7TV7uPd7uPPkqC7cHuWs7hS6+GnHm61Hl4VdMcMOJmzDKf4aPN8xvIxHxTNoq3xLOnqfAbzWS+oFETheC1jGlx+ZXVz/Z719XvQk0vdRu1tniALH82VXWsl7aRNtJzkA8H4+UKOd/k2zQiCt9G7bI+tI6mcYzkkf0va3/ZsrLOpFOJfSC9XyyuKrJe4wvo9r7lnnTRrooiB4aACEmoCrTrF7DKP36CN8eebFB+9goswVvA2cJBNTMYBGQ9E/0DlHFGLUDeDDekKCGB1ws4j5sJbz59/63tIcOHcc2fPPvcdJDi39fqtrdd/Cwmedu1SqAeVlcullZXtlZV7NMdQMc+yZdfIqlKn02n4lsizKMeJWFdNRWOZ5IUQaMkLIcgmL4RgRcUb5cATFnKllYC8dHtlYAimltYMtZN34GVuu41cM+f4dj3waX4T2n0F5opIZ/RiTLvtVgitAvXtTiK4TaZCIU6ci/tAnW6YRvDARBW3SWHBNrTrRNvkxs17Gk3VdYdZ2TQdYy+gc2gvnhjJob+x4Je9wCv7Cxu2uyTanmpXiRZJXFo4MB11SarYmnHs4msvHtMNuyw5nuqgg0xOLrimISfH9z2iGKZ8NDDz6/oZ0/fN3V0SntHXj3u+lsISJwichFPa6puFlMUC+PB7+fVcbj3f8xVLYkUpJcx4D7KO+kyNWSdS5okcuUmJB8BrB1N6w1dIWKtQ2D0fT6gR3Agh4TG69A3o0hXT88xF1jMD02MX4WT8v+aEyHWiQDGU6yTcplQmn9yahxPUg8bCPKkUj0nbxQ3Ziw+7hmdMLkJ0wjMMoB469P4qc5o5y5xn7mR6dAw01ymcc5ORMH+aopqgeBRAbemYmD8Puy4+g1wDxUf8h6qoqYouqv6qN1RFXVE1UfVW/ZcNOSLViWRjSEN6fhgBa5h80BvNbNq1LDedNbO2nT1yNv67EXlkRF4xjX00iOg/4JSgBd/puvLTUM91qpEhChlcC4VYLO4TPOEL2G+vsZSYkhW2S5ddoMHoPVUpMCLvVbnbvI4RSDXLZvnFHDaiYFVxVrZXbXktaJtSfpFnbfRE+q6aF7CDQSrn1e62JGQalTOmJz/5fnHrVVu1GgTih14rZs2dimEiZm69GjEa1RcB2PGBX4sRtR12QwwfQK4Y2B7EHLt/qTzuu7mgXmqOHn9cOSn8oRqJjz8s/+DH0WinXB4fosDJOHnTGX/33bfLlWe1b86It9+pPPXMlCai30G/zNzDPMQ8wTzLvMB8N/MhQBtEibeOHNLBRiL0bk/gV5cMTmghaA86RKOJdiQ5xgM5voGMe88PJ0tnd0I3iRaTDAwYRjBO/Hi0xEkwTzqTc38ujn7RWz3ji6qUlmyJcAKSKvpnVj3TSddYvhLoTYkjazKsNS34kignhVpQ5dhqLrgmmWTQPxQvzed5WJvgm+IC7lUStwuTXNgV8CO7ROdCghLFIST4W39n1deaedcUFV5QRdPNNTR/dceXNXn9pKpXT7qw7MASr5FntTiEU9YQ3JNVXT25blqvj+dbFB8+xKkAfPjUjoBFQJhbWBFFBUcxHEpoySH6I7pOkTkI2JkiZgKVYR2anXRaxKyBdNQUGXsO5uenJjQoUpSy8gGikPuAgk6rJfX9qk/i5htI2hvWiCrvAyQYf1URVUVSBMkxxCr6bUX5gFryybXTSnwHBD/wBqXsq/AUfYdfUt+bztmuZWfsQPfzU/nNS+jLjEtXEIZMJSJ6DbuEy/F8MpD9poEIhIHVEohFSLEH9lD2m9PLzQeay+nn9RPNM1FWU9PB+sa3ZAC0LQS1THPHCeydpuebIbr463XPtr36lzM5dHd9w1UM8S717Stcds19T+CtegFfcIGfoXSZZeZkUj6TA86rBvzgMsz+iOkyW8wZhiGI1a+1o8kX/yPiRGJCJVn9KNprAfMdjV450icCK/hjmR45RAOCp1uDOE7Dw30Sm5ct/grTYNaovj2eijXsuzhsd8NqrJsibABZPAko7ALUowCmiQ40K6MEaXvRDIL0smtnMzKWRN7NV9Y3L2yXzIN6qDZaDTW8d6fsFXWRS61Uevl8r7KS4gxVMrWMtYOBV9AxRi+cvOfYsfuOz+Rzv8IEVFJMZCt4gnqgDFuI6nFpSQkvHU6Lc/F4EBxfh/Ut5ReKy2ExXC4W/JTguO9YhL9JWRDTq9d7qu80/G2SOYKvsO03HF9ILy7+n5NiTMsxgnLcztwNrUOapkYELFUsxO3R9UhR2i1gnrpEBJGADELWoEydSXOGRHUa/8OU8aHQaGhm9RLKXr6cPVnIBuXq2uLiWrUcjP/aaHA2L6q8qBh2Blg3jWuUHC3DcYgVzGdMgUUcl9Gcva2trUNdSKU6r7l8PPBO3CGKAkbQV6J4R+e8KmSsoMILAuZxyjJVU1CxkNIDTfELZhiaBV/RAj0l4JXg5Zen4+AaGsAILkGsMrO3OI0AhMYgglgCQZLnEtkzIX+oDyGvq+Ohqusq6qs6GhRdegmCA5I4UHRdYajShtoPxLKSJYqOzzOvZi4xr4nzm2jLgf9qpm6SmszEJ1/nUowHqV59mtglsoXBdYYWkISHmmX7dlo7cuhpaSAwcDY5pIN0+lnbd+C0Aom+bWWvw6qORvOVHX8nXIDPZbgRYO5D8eHghsRMxs76H9TSjnKJBMeT9IdIk2jJWvwVoBulI/TiNjrm7mXuj/lS6+ga6NYoKiJ9UxX8ubhNVnIgF1uIiMMjF98Qn1AW4LjH/Z5f8vvwPYxXhoP4QMkMMOF7QFKSw5ASFjQcD9AgS+BcloY7ZAnbIevRNDb+diI3v0ZJTpYSm4CG0QQL3FzXf1z92hW3G6sU6DeuB2DQPoDPW9Rj2BqScu+jvb+n3C8fHmav0D9mbj6MEpsawM4wPukkiOUD3Sg1NaoZ3K0apjJ+RjEN9e5eP6JCvFMww9XxryvptILWVDMaH5x68BR85u1FiC0Nsbcj9bBquOZ2J7ZNwx4aXIsG10qrq2dWVxGQbRh9QetwlJiMJTYb6DsBUa/QucQ0nETh2a2tsYRq1ybomDZoFIdxO1aogs2fMploB1oQGvDyIl7bqYbHcdouOprY2KxfrG82RM0pjP+7dK7mVvAnof1Kvv8x4BLgiddXI0/EnWbRruhOttHIkq+jF91SrS4LZZ8MMPhM8PAfo/9OtH7dRHoLdDGxD9lGsV6VJjcpJGxSGW7C2WFqUIGJvSBVEB6JClH6ngt392xNU/K6JTumpHmqgDNaSfXdPEL1mibKHOdqORtIvZ6GLi8VK27aX65ziJe4+kraXChxLC9zxbBhpRfMailql71KoSCLnKVzGOCNibkUEvS0ky5znlZQTqQV1tMByqimZJgZSVLV8momJYlsKrOaKy54rIxZ1g3v2DrLMDN9xQgQVxXGPtONJpxZ20oYOTL6K7iGJ2Mgmg6GwwkDRvmVnmKg3f6hFnfBX5uk4zwq4FEQQw/RwZ4HaZPPnJxrSKy37AqZbz5MICIx6x+0rgSoB+Or1zqc8ZqkrAWmCbP0ONHnUKFEla5eGI447MzO0aSg/NQ0bxJBI5VAVVN7RisHQidFUKy6i/YVCpLH/1EhOnjjB2LMHKEtIaOTxcPICj8ip/VQkojZqebj70GDGNoeHOEvp3NpNK9DpP9kTo32on60FyuSgvHhaDTH+5SZDYg5ArYqhN3oUAbap6IrckqObhGlLOwlYoaQ6PowGmnK+O1v5KFZUQOWVXzZ8ExAL4q28aAAHbGowNC7iD6mONz4kz8myYTccLypsh9V06afSqV4e/wvUOH74Aow3Wwas++cx2FEP0MlpMAUuqEbTYVDiNm4eGx0ZePik/cfO3Y/Yg6OXdwYXjlGTp68uBHz1SyDxoA9V5kOc5LZZs4xF5i7CDr2qKIEZpFA0DwRdK+jRMwNPB41i2uvoRrMsJrgJx23aSBAVvjoF23UjFJedbIIpTi2jvHXRFf8PMZ/jl1Pf7sB0IRlkapJnqrm7hdpF/1w+ofSn59+f9D+QvqHbPTXdZbAmYyr5sp6XXThBfjz8Kqvief0Fw07p6qepGkoxaYskfazBU+9Hd7w4tx3ru8JH1O/Qc5mxxK2WNoGTAH2gWXZwA5ijr+m233NcyQ4vnRhaenCAyTIpFLo+V4WajZKLkIw3k+uQvA9KYQ6F194gVfmeeghYMMyQ2yeW0QWiklApeZuDGaADw27hI9+gT+1VNhQDSVopmor7ToCrL3+yxfra0/WUWDIS6fLWb6Rk1lhs1rvdC60PvTq+tpr63PztvIKuWyhdq1L5jKl4zdmc6n3/PO7j0BWN2cCV3qQ0TxtyMGx9cpVQW9LnVoqbuiyNleJVRSkLH7pNPCzs/LfHk3pyK+h34S+uZO5yHwbWemocoFgNFJuSj+ACrqEXCR1qTZ5Apg7VNRMGA+fkPouNfSKA9/rtJuNKb6jBV5Gbmy07lGNhSfQBHKFSA+qzX8pyqoEGNhIG6yiqgprpGFREJHsrOUVP8Wu1cP7S4UsFgvl16/kNV0VFIU1ZdNw/NT4b5bJwn1KScFDWBYlSZGIvFlLGynyLqTlJYllZaWAeU3RsS2Lhijb2JAN/mm3WMCN5YVXpdNaLnt3Y6FYN/y8mTZFTUK6ILOs7wRPxsjgBd7GuqLxuACv42QpL/Lwivh1szWE9BMGHhNGXTcBzI2YDYeVnapEopC0rgst2S96RGczHhXdAzj8fthuh8sZW1HszICQ2ScdEo6iBzYvO7nHgum4/gL6PPRZh9JHWKBwGB/oiuVTUtmlC1RIDwZKDBj92NrxDEKfz4W5tbRiKGlRlsUBjSiKaK7Z+dwvvsuWBJkXLdt11BXFsd+FPm/ncvYqvYU8NMCKgknEXMs1c9/6TttRVlTXsU2JlwXJftccvRzENjHdyKrZ8O3tEzOT2IaDYY6sewKMvobbtYCoImY4hO9jj42vPvbYDfcgvo0tv41G1yc3oRbcxCZyy2GSnxVZJD+itupRExXyneZH7iN6dA3FRRkSFfeUZlyhsm/GdnG70vZx22933Yobdt1BhLJ7e0E0vra3h3q95sei3m40TI6zcu5TewdSk9CtWZHbJUYHwP2P0OnL49Hlyy+8gKIXXpivF7HFIbXy21DmNh4Nh+T2z9KqvfDC+Cq5e3J/ENsI2BFkUIv2BgMoCkHS87iVB1xwfnJPg05JJ+ZuiYan043IikJYXyLepMxwjV6JZfLTCxERKNAczst6xnRdM6PLbEpKsRyPbKtsaY6qcpwcAqyDlYWkS6JKRokqShwn8cjS83HpfpeT00HtNbUgLXMA8mRWStc6IQAJiZNl7r0LOV1EEi+lBFG1lixVFFKSzLOinmPm9x0Q6c1xgqXtygTvCxTvIwBMjVaMWsk2g5gZ3owVM3EyPfFxxa0cRy9pTlodP6fYNvouYikFnLukp3O6StjQtKkposDzUBTVrJsqFOaP6Qg6tJXx72oWm1bRomKPR2To7Mkyla1eIVz0nql5pmPCx9NMESui9FuEzorTftEYDzgrYp9MNJF3E30pwW10FQQaYU9Q2c0QE3fjzRPTzRWV6ZWYydnsPIF23AxdFjOfjmHbozFs+48xmHvxGwDc7cVxtB1feqtBjSz7uXM1uuoer51D2TitFSO4+PPetxKZwXJ3Pq0Xv4qZ01mKjAP1Owa88b1ktZ+IfIG1JTZjAPnauNXp1uLa+oAD2m6sajtN1ZUwBueTyJCM1ogZIU1D/ZjMW5RdbeUzASCuhy5DQPU9xy76a8HkpLIiXw6cLHf20WMXEROT71i0FgXFtqNnNLvwZ7qv97SMDic9iL5R0DN6D04gKQoCbdFniza5MFc/GRD3GmC32whus+eqcnPJ8Y21m69KdKRpcHiYVOajR2swq9rGpDLfN22D3i7qT6ry9iNl7x+t2GBWlbghgCTu7jLMkXrlbl2vf2QXzerl0+4+/Ad3UlKvJSIRndXrH9pFcb0O4modGY8qrMRkp9Lt8+PRPToOv36dbmqDyTj81v3WrbttUqeNWa3nxmBw606bq83gaK1vOf7u/P9n/IXUcu4fPfzM5bvSl0//746/t6zA09vzOlOV1usM6aM5puCmlg//3gTKhU0K/fdFUV/P5EgxITg8Wub+rD5w0PfIVfgmhzmsN6IWlfXZijQBupV2AqHp+sQTqViEe6hPJAWDiOwWMpQIgJeBHh5fDQ4PyV6i64wMZFcOAnogat1rV64M+/P8DGmrzI2cVDivD5xxTz/T60WTzxGu6XDuAjO/dwwzOrGGjKjJrk8oU9RGe9H4amu/Nxj0ACeNRsPW/nA4Z0P5a+hLZKcmIrYnZDBOttjSXQvFWAjfiXd2bcPAIzveYC3uNNHPqIXyXWcXPdvl0wYG6K8ItsjzuuoEIg98uOC63YLBG04+vWQJMnrJs51UZade6Lou2QbEyzlb1XledATFFBRBdwXX9tjSjilJmZkd8e+hP6CY0IbV1u+us9i3fU8wWLq/9aOVT1WNyqfqX31AQfL/+6n6X5hq5fsqn4S0T9bR8gNKUR7XP/U/FCk1w/e/hX4L8FUa6Apj16xKu0ZmlYEA6LW7naaBziC/Dwh2hF5fETMS9OweZoc7/lsW0WB8EKHbKiKLg/Fo2JcyH/R33rI4ee9PogOY38neUlJA4P89wuQTbS96/XkJ4dH7iiOcO/2+/Hv33pd/H/qR81JW/FLhvV8S0X3vz7//pyFtOqdmNtjUmouMPz45ov5VlAXUk40PQJKI0oqGzNd73p88Hx0m9un9mx5/pef9JH9yRAeHh8Rcn4Y3PJ60xTsAExvQwiVoYytmE8meA8L44nYsmMPRJrWTGH5z+3RQ9IKt20q1fJAJwsXjQR6Soa1XK03McmFhZfE77rLC9PEl35vD3MTuN4pxfUSMyA4Hg2toeK231+8x8/IDnlqgU6tfm2zcwIf9fnY47NEQ9ftkt+91hh7m+JkrlFcH+N2tuV2/0oXG8wHh4wiYtQomPM6HTp4s98tPjPtPwCGOoyHE0f1PjOG4Vz5xAoInUH8Sn9rofSyWpRB5mICJkJ2ieSrsg9lGxO6xth5gMbMRpfWl/dc0LPvBDz1gm43H9l3VFK0IfUu3vVHL5WA9qobrr7r3vtvWwwqc6YphVjbaXZIVP60LkYPHe2qBp3BrkGnYxTypi5/yMVSuQmoZHgyHg73S8SeRs1d68nipuvVkaTyC6BaxQu6Xnjxxe7904kl0e+XxE6U+RB+ft/VXYw3njPwDTQ+J4R3wrETggUOChqHPgZd1cSJcqKKDhJhD8AMLqmUohuYVzEqj1DBcXWxiPavr2fllQVF0V1N0WzYqdjFr+YaiSPcKgQqkforVryXjl8xGj2o5q0Q2Aqwc0dJEhCmsNUg0+UbJsXcY9PsRfK4zhwcwzIP+qEeGeJDN9qJLjxD42Wu1dqOInEezNr5hzwRKZttEhxLPGrJl4rAPtBumDYy+ParCae3352y7/3nMSyKYHbjWjbrwRd/euaNj/JhJQ5h0UXTYms7T0fw8tYE1mv+PxbLz3wOCu6mqKNGrX5vKdb+OXp1Y/tP1z53fXhB//Ve4RjRhlSROdgtA7fu9aBANWvCN+vMJo0F2hLIQRcA2D/r9Xmv6N7h2bXRwsB8lf7tx6pzuiK7cqBaPty1E1VhkuaZLOY1TpOQDC9/7hXK7WGyXNdM2408gmaY5QKNS+0y7tC+bpowiEo5HNN6DW/au9pmZTd0VaJv7mcvME8zrmaeItBBYUpjDjkFW3Fo34cnXEfHMUBWI54OO36STewPSYQYQ6XeH0D0cwwyfmiMSvFoNXVLcVmqzS96FfT6ajR80SBmskOIX71gpsQLLs3xKwSKPRES2gm6Isgprqarbukx07cgUeFUEDp5DvMwrPObl0Is4zklX5PFfXqN/qMTCS/gUyy+m08UUPMfLHEcSUqwo8x8XOYFXdA7LBs9qPM+mUyzHwdqe4tO8biqoJt7bz2phMIT/+fYR6e7dFeYi8w1U64b9M8TwipAc4B2p5WBMHrC/TQkgLJPxZUohfAIw3AkGg0Wi2oR2ma0fZNPpEKqhiujOw8PyimakBA4blqxiVVBUIZUysrAsVWzT0WUs84aiYayrioJ1rKUdT9NkrQLrXq8faBKWz0fBR9JIhXqqhopZQdB5QRCgnkZgbAZ3q5pi8ClVFCzBxCnOFixD1hBidSuY0Jkrt6YzNbpWYpgGfjtqUAIQf2vJ8aAPMzkghAbNEZphNkt1ubciNDP/IZV/yIhHg39fbpdK7bICLL7pEMOpAEY1Gew77dJHqKV1RGwnx9TSDhF1z5SmjICq6TCzVgiSgQnendpNd29S0xLDdeJ4gdBQdPq268yrTsWyi+8LyYvHQxKGOmq1ru620KgXBL1EtRTA1dGkINapUz8E831wUxk2biqDbRFpNE2rzYwaiPEffCK/C58jBfkdkv/4qk7LQ/A7NGgQtDeAqLeywZEijUdxWU6bSdl+58pgAB8oV0xzfgnos00sZrqxcQxgYaIfTban3SLtL03FSRvCaq22VVsU+c1GZflLR5KEjWZ5+cfzjg7Tr3QhvZlvbd223g0rN6XM4fyfZhxK93wij0+0TadRrG8ifkfW0WR/hreJns2b5r81Vo0ThkEO7/yoKHaxh38Y467oonfnDR9Q6r81zeOm1/HhFmP8tR/GLtyDPyp6uIsZ5h9Pb0uo/b9Hb0d9IuOd2DH8KkWQ67AOnWbOE2kbFQh2mzHPDKxIW49tdHEUwooJ66X7CliTEOfSxPcD1bWF6HslSZAlZ7Vq1St+WnQkP5P9Su5E7mRO3+p0g4JhaUah7HiWoZvPruh8Snx91rIsIwc4Mxj10b9jU5wr2/VMcxF7KS5/vPhdw+Hym4e+a1ocYtOaY+8sy54SLFhKUFcz2ocHo2DYm2KGX0T3MGeZ25l7gVpeortDui4V4oa12IIYEGeNeGYhu/pgVANGoSJQF7o8IpR008drUH/AkEAW4UIDR+tIgDageAtv1KJYR9NCH5YtJe1X0kYqwxey3XomZ5w0cplMNZPz11bTioQNzFZYQSqvORK2JVeT2LvvZiV1/Jd8ThS454qyblpvWLmCNgLT/ByXcrFjFUTVyezsLC/vBDs7Oyl42oHHTDVty25KMBQrcGTjQd3xTHMJib78qmU1O5PtXDmCO2b7GW+wy5vtYIxnYvxJ9scSq5nWMMYz8Rj9Dqq7keF9UaqWglYLa110/7GnW/1j+TcoF5sDoqXuhW+brVlDuma51GqgSXb0T7ReZFF6xZOXYpuAY4eHO7eIUZNtiEfB/k2RmSxgDw3oqsHEdvZhbHBPTezbLlGu96N6J+1EmeI/KWUO0eCDjdB2ax/63tVyGJZWfwpqHa9BX0NfYzKA3IowO9vMccBs20zilUjAITExBWrAhrFbIt4HEhlin8qNEo9EfmyM2uVDGG8wN/zENZFidZZD4pvIOW2JKnFONH7naNjqR8PR6DOmXUtcE9VPWaFVWTURP7kIzxPPQ6poLYXES5F9pmsqxE3RWbg42utHH7BO1eF0+cRxr2abC+ZqxXKTS6RK1nSt+3q4NLbfIq0Hq6pFEHyEEtSJ5xDorY6vdA0Ne4DRh73rTICYIDvMksPVaXBTAhoFwXiQzaJ+lvwNBgH5i6ZBACnkQkQDkjC1U2lRHRUMBzsxB/AaE1uh2iQyKC4V4YOITzCIfSE+EIUjORbjq/FnSqMJ370a+3WqzdkYhsQDFTFQqNJNk2S4nSFyj26HqFfQoWeO94m9BNozvYqQ4p56PeZTUuq5Tve5lMTywuuf4lhAhP/6X+svHRKLCxL8raBwTzyFhRT7+MbG42xKwE89wSmCrL7jHeqU//5zKE+RaP2I1hgARIMqp4lXBbKdtMQS70kOMCdXqbVjC0Jh+AmiOeK4H3hnSlbQV18Q1/z/7Lnit5Oj7979F88rmGcROvkJjsXSbD5do7xTlkryICuoPWREtkkR6Q6xdfL81wEtODb+sWNf+VGeUyzxAx/EaTnFo+Ha76zB5w/ey5kGy7/udTxrmBwz01uRNiW+U4gl9A12m7g29YkFUM/HvktcinXDtn/EgvMLZANZ0dXVfr/Z3N0Nmk1Ae0XvKjG+gaC3R5QzRfHZlwBAwAAk7H9vfg92wrvfmDt06a3ze+2tcvn4/MuFuXfb0GolWNlXb1W/o7UK2zB6ulPDvCN1PDiYVu7aWrFlKkTcqs+XYLT//FwZsjtNZ207lsoeaetV6qHmFrWd+ppqzvuZCqknqlds+z+XxZTg5ivYdLCu4ErelX0RS6zg9lzFf9etWmogihnJLVQFVcO2JVTzjsBKopRRnLtcPnVsvh3ny+3TUXJzG4aUEe6+8uiIBsAT37LL6huDterekVExwQ+xPjXD5KmXtJt8Yk1txioEoc+foENDHvep16uhbIwHiUbxofG11iwaIboTid6H3h3D4/390SQyZ09FPBMQmbMFTIAFrEBszIQAZff7n322/olP1J9FB7HfjVHr2fqP/mj9WWbeHkuMPSK6ZGh1azbR1Vuw/ruHo+h99X/xVBSNr41afXQwCu59X/1fXmd60QHKRrM9+2+GdcIlFgqAkmrE5dkWajepaSYU6Hfv3pbvECS3mSkvRWfORD9351palM+motXOnVNZ3+io/D9+z5HXuIka4C70RhmYyKfa4mktXbaKjeV2+5clGOQjTR6/LGvfvx0axnF2OVzd/n5NJjczU/nBNWqbPVvN5nTg8csRlaPQhazNJ8ej3TAeZnvBaHwVAuq6bDhhacb7166NgFUExjagKoGprPEr1IdHO1Ggl5CLXSD766jdy1Yqaw+sVSrZge1VTBW9FGHM00905SDFm7r+InPUN4qbeBxpT5yOuUJsez+Ietmat7YRLNeC5Wx7w29GaDAeDEciQsRmXhqpLMIYsROa9vu0zYmeGRAXaeJkA2JtuhFxYpIcLxc+dEHMX1QFH8a4MHc9bDUPeDGLFfiq2Df0jG74eDUAqlJevZJrsI4DUcdBTfSSxO3sCHgSPmBlWWpCf8BmrQc4SRvuU8PzwQrerPkL+ifI2Sf0Bb+2OTfnJvvsqW8UC1dsIgJLuGC/WwvQ1f3xaDc2WRkOR4MBOhyP9hFggz2ACEHQH8z65xo6JKuj3ejQkTBZSLCbMDbkpNU5QEShdFe73bDtQz6qNlqthu3o6FMRayrjX2q023e1pB+I/qS8AjdJv0kHHTstr01wLaIjeeptNLaFnXohdcMkHQWuW+sRvOHue8V9coSuBWKE+nV7vdcrutSsqQ9Hr7i7W/QGxD/prG2y1KKVWkbMW3RTl3zxpnKyt4Hs05kYPfididFHrT1n7hHRwWrVYmEQGm5SYcKnFZNG0N2KOQYqML42IJC77EeAPkRFM9PX0qrMcyxKCbJm53SRPciayp+goUkehic3TfIwedeXUDZB7K9LTEBGQ1W2VF3VDFnLahq8/08UM8vcaL+SJ/j6prkL/Is9rdPEkMWaN2TZSBJJ/CR6j55O6+NvhhB993h4EKO4XmLHEtsilwNNiI1Y0uVAxegweUAnD4/3KA9E+ma5WHyDqhYyVTtD95AqB1GQhXpYshpos7FA+GnqY+uonAILtxBeJIm/Z2sZxxbai0vLtWba1baWw83/K61l3DRuLy6uVJu2o52EtJ+tZEye5xsX3ZNOtbm6+cazq+HNSVM6eI1yXEXqIfZEzNU7FJISf5UTbBHdFME3Wdcg5m0njh078XckkGNr7XeZ1Cb7XXHXfjFOPD3ZzX9scbh4jAZX5+23489LyViKzWemcghSXonRAK3H/nfKk96HFbfjE7EDkT0kX7o7BBLpytoy3tIKoh7wAoP4m+2Nh4P9/XgBRmhfNqiHKOIk6pDu6tijugB9ui6lKDerQ97OdN1oQh+ukF2vRJND1gu+WwPs6TZCtwuMHZSBOGkCxMHDlIJruBuWUNtAUXRwcO1g/AvN3mgA4SAMd0Kylg6J248BAmwRhOGl5g4gkBHxBbLTHAwGcEsvbGrhdQZSgMEJw72wCbfuNBlmTlYnQPs4VLtE9EhUywYMZjuFY4UZ0ZeF3YPB2vnwji+s3RGeX3s+PL88WPvb82uDtTvQaEDT4CokXmdCmkqun791HvFbqRTHjXiaU60SZ/xQ/Q54+PAOchh/gR5QH95Wh1zopTpNe5mGNH1ajy8DhiO7Zlp0v+YaIltWqV/lif57M1n1yF4KHFtD0UXan3Bw3UkEfZ+y4A/9BSVv6IJjFKywqGfyvl5sWkXTEXTjMMgG8Hm35mjw2dBtTbN19LztOPby8fZDumLKpYxkGFKmJFmK/lD7+Bq5P2jK5EZ9SSaPabN15FeovT3hhSPqto1aAm763bWJrI44hGiHTfTZX3gOn13YPM+i0onqSm0ruKPZfc3x46/pnry0wbKoubuwwaLzm9WtOioeD/LUdUP06EndvhF3TnDMTZTQT7zwTrzxziOYnx+i/n5EgqMY9CpxREbdlyU04ovoZ4CX86hPoi1q00S6YZPwclVKnJKoP4umuh2gEiVEdgWGcISuWEdNus1g0yOsQzWMN8R8iVNUvRooYqFaeDYleQVPxtlC9g85GaISzhSy6bK+8cymUeZLYfkjOSuvVXNcTl1aleUvrS6pEK/qBSuf4mT0XmtJN4tLtUxmUa9ns/WC4xiTyPjqs+vHj68/q6XTX252nhR19bGFdYTWFx5TdfGJbpPj0LT//gx9hnCuhL3pNsPJBoJuI9m/U0LoP9QfqXt69lu+G7tiCaBUdusbnj6TC4xAQK+pP1R3K8GPfBvGJezhcQOVM0rWqOLZ+BgkesWZqMRCO4Md+KDhd33X+OA7vxP1Jvf+BvppIpVqxI4eiJtxAcebF4gxCGJOb6wEWd5rnMxu2PZG9mTD46OVjbuC5cWN9Qfza6xrmi67lv+GxxeXp2PmTwE/EllukznF7DDxbuhmTUcYcJxHBFFF1EWdFo+hwl0dxTYmJaBJmJibLyPcKRGXBNRrjgEx9HOiL28vLd35QpU3iivLIrIyEjovjv+0ulFcvzPLvUlmYVWXf8jLZMte5elTTqB6xpm31DmN47Rv6i+dQj+K8baB7jojO2ihsCxmLCShO6TMf67k185lcncfl3IyxltlM5spRycCFqGtSHB4Li31T83a9eMw7wjvVaMW9dBgdLGqVeKN8IRcEBKSeLqhepmXNNawj605JqsRi9PxIQmPpqEAwn6nHBYKYaUd88dHz+Z4iivQrzaVTawzbeKhrEaZzZh7oPpXEvcjIrVs13CNuP+jN6SoRURMq/sREU9F9ccrUVBLNYOAzZt59upuNvqfW1vmI4+s0bBP9zgPAMXuDR56aHDfzs59gz5yTm6VLj3y8tbJ0iOXmMSPd7J2xesV6fFXMXcwu9BOgPzwNjqT6lDCxLpkvqY2u4lWDIfVZBs0GWmbwOOzxLa25k81aJXYgIUIhYfXeZziUoCYLE3URR4hHngNWf0yrFoP1cycIQiibFt6oGuaa8P5FbrOUjtyoEnvTWFeFiXFNwRZxbxkwRl3WwBrdHbdM3N6mbhgAiAJB44v6zkrl822gmCXhsxMRzFM6nk8qSetIz9XR+y4PtSR/wfWL67b+BovslyKZYW0JmpQOZ4FhkVF3ODdNSOvAypU0lA1Q42rdo2oqMbDPmp9MytysiTCYCfV4mSoFlSu3/d8K9DLQOFT8FIWsTypk9mmcsoomPn7A6iYBpyTgXokBr/JIgejBLgE14/a6LDfG/X7vYNe0OvvEcVln353s70DGBxTO/b/ir48kXGiCTLmyUwn9NqfuB5FfbKV84FT4//W8JZffZe3dPFXG69e9u66uOShZ5aoseJ97sW73KWLd3qfc12SfufFGSaH8hIZMSkzQ9iFCX1LAZ8KIxwwETq82rp6taUFO/0+YvqxGQbqUysMgqC1S/B3JX4fC2+E9+nJ+1y6grWJNV0jCv2KW8E1n2V68RvGf3nl0gF5ySNXLqGA5HH1atT/GOTDTMpHfRUpVL5WINgI8G3UBva15jegrGRLrk81pyG8+mAzbYenzq/dhr4fuvJwBHkM6IboQc12OrefeOgzgB0RcxhBuw9v+X4YSN0aUB8XgEqjAiQeCm+T1mgTJS36yObF21YvbIW2NX4nvAfeFvV2sySDhx46cXvHsW87JDgwus70Dg7nbKEIj1qmKL1IdvNRpXw3RhRk8FaJU9y2vw2c/k5788SJzfbOqafK57yzjcXbl5ZuX2ycddf2j1Vehw7LxadffLpY7q6HhdrS7a++falabLauLC4TF+/T+URk/kQrkoc8F4k3OiAOVoU0ElTHhraLWk0CLboRGVMk1pjwB367SqFPzSVuE1vReARM6l7xi9lRH3irQTARnN+xVHV2nMryoIeYXg+qi6h3NeDUe3DDjw8GWcJSLRf7kQrQVR0cobVE4lakvggJ919z426MqA3MdJt8mwCfLl+JI4BAI+LvNEK98egwLgM/Pgx61Lfs+BrxeHatFaEgGl27thdzgsPg6uHh/iA7OpzDXfP6EIZwGpXERw/59QMojEX3n8M3QFfHwAl/q2YdEn+axLkf+onxd6A9V01b30C3OjPEj0WrNcfbphKvWkSSVpt6eQmPOiij9qqx7ephq0VMChzTlM88c/r0M28nwZmZndZg2I/1vv3kGgTjvZm117wNbqyBu8GP14RoUGXYnFnsxWR/w7xJbLIt4vfpuJ3ZJSvQW1Q6SqSDbeoSD/D6vI2yPZ9lqtKuHLaojVQwZ3Fc26pWty6Q4P2EZIyoMdLw2MXXkasQoFZ16/aT1erJ27eq40E0zf/aLH9Ec3ZpKV65SVNkngZfrwC/jfooujH/8dVZ/sRajWSfmvYr6dUGxF8517myIeaWfem3dnfhgw5v3ZUoS662ZjxCbLtvUb8ej8/R/+5NrFJYrVVrsEoKxOGHAyslcT+yOfn9mtOIuPOl/lL82GqKTHEiqSJiXmo/hc4vnFyAT/30w6fhk48R0nfySsOu5l2OaIpYyc3X7EaxYdf0nJqk6HrNafz7SrXzb6KGkU4bS2s0gpgCedtCYYW87fQ5GFe+bm6wqqfpVbtRpm+VyCt4NWfU7Dp5K+SDWfQjD0SNSiW9mv032dU0jczJjq7QmevNpAczjokH6h/GprkxTOwR1xeJGwz0CIEsPeKps2Wq6GXVRAe6MvG2oejR6KB/kCW/VzHf9vP+m+nOPbdGdvCliB6bWAYOBsPBYH9vbx8iRCUOqOMQBYAhYIkcZPeYmdyX+KulHm2J/qJHXEZf37t6de8bmek9H4AxVmY249nr0p9ooro+6gONCG/XETVmhelFf0FmOblEZJGICc+FmgxcsmQofcWQgDeW9PBccygqWFcjVcOKiA6b50K35GUcMafEv8yh5EQn45VcuHP8jOdppqppqjkb95+jbaASayxS7yk18yk8aAEj4ceeMOgPQez0ek07lwuD4MO7u5axZJg9362UTkUo//ZcMwefH1kef/WDhbSJTKv0wR/fKASCkJlg3aN6mE2mQ3XTTDfxtDLRydivqI955ZN53vn0LdU0t44GMVsdP4n2E9dVUX8S2bspZUqLf5HSYuDrG905jwRTtxl+F1AsbneBI+0VDbvZbqTNYixkO/XA2/7VYPDsyic/IhbTQbMZpIvia2LJ2rdXr7Va0WGr8bNzexWIxQUTb5yb7Due/KZXm3punAr5li4sOWaBzwNLi6tGni+YDiTVW607WrAIkGi1mOV8ZyWbXXF8Llus1iHxXHRnq3XnbB/BkPr2a1At51TfcKO2E/jLxFWBgKkWiMirBwEA1IAaKTEQPtdSZM0v+opaJ8ACBbvLp04t75ryAbkFgisnOFs2fN9Q06kXdokq7+j+jxtXuiM76Y9sn58R/iP7Pw6SRAjIa2e+fzgqL9SodsKjdJ9YZBPnc34UYqqCDOdCvNmZOBrzpl2Mor3x1VGv118rra31pkFoZVhWiQQBsRmTCKUVBY32xsAB7fW0KNCCrNYKtGygRVkI+1lLKudzRdXInVYsBT5H+oGUM5yVzKbGWtAViZ+4TUL5uy7xU0Llv5MiBQL3JokXU7rjlESzp9qC7FqGMy3H+O++gxMcVnmIdQoO1vUHza0UL8gFxz2St0w1liRvuvMGmGOy+YZmAqsn0aL1elmAa/Frx4dRK9vb3e1liY989kgdpjWYlHBalBv7RbzJliV5lmzUIX0Dh3alwEb0l8jC+JRyhfTVwRCKdTDsX2f6QLn7QyKPTfIituk94OF6VEIIPG42m52yqQl2nZQ3PdE9zloeln4M3F20jqYGTgmKnNQpugqvC0g2MYX5ll5vOGvya/v7xCh7NwFlrVaPZmweqXvslzpDUX2dWggfY1oJz5yUJeGBJ2bP+B8RpwW9Qix3WkPou1uF0/L2YsOcYHKghjvZ5NCiJjqJXdWt+u1WfZbszbllZ8X75OlO95s6K6K5wyfBCJM+ouh+0j83euUkusFJv2RNuUfd1cjmbjTXIbtkiSSBMYjtzeKx/xX0Z9Dy9FdBkOcSyAXUbxn58WrcDanzzDXqXmCbpT8nVpvuMkeJIDwWR9J9KwLV/MIigb4sIrPkcALLcT9+Ags9AaOghCRXcg0RO3+a4kTRWWmWTiJD9bBWMSpGSVMLpXIFi5Ysp0RdMLHBC5hV0VPFUn6zIrDoJXiIewkhUbJP5DPSe9gUxwp6LfppTg9afi4qGyonLS08Wyh+hk1h280osgN3YD3j+pLGzPalzH4rg/yOBXwtCGL7Qfo9bF1pIabVmrXTIPF5kDzTJurd6e9WJN8BcQY4bE2eYZmZfxw0NyJYZsxMvmhALMt6+73etGy3zGeubIRFn+QzoTuEpyAeT+e99zpkF1Fs25r81tl0FaObCohGIor5yr07uxGRMVJ0EHXugikLaxv5mZ5gP9H6ltwTD8rtGBi05QdPkDvJAicb8764h/FeQzuiiArQJd1T05/uL0T91mTX4dR2nVq/kV0qsUOHYNp+dF08wVygvtjIcGvFPz5AXAUB9Id5RQyqJzAh3jFBZcMeYVviDUbh12FVkWEpPM9xmMO8p/uioVpFx7RTppLHmiqKsuHKqhgoRjad9yxJkaR0c85L9rFXHzv26idIgAJOYSVJYnmUYtMlURbrdc7yncBQ9BQvihlVliU1byhGNUxZcj7I4PTPzTnBfmfyHggmvBKMHcIbNGFmEh8uDMz72sw/DK50dUSFpNspgEaxPsenUsNEmhhrPM6wdPmmTqPCbYST3VVNlrE3qtkFRZbtgjD+X78NjAuHeAxVxHyKMDGmhlX8nJHRyxU9o6sZsegWResbC4uLJxwJ2qb2bUEjgA86GI+qGzmPc62vYlUwU5LI84IkcaJMfn7sBwpa1iD+JbRCSkCpFOLYxZOLtmHpAbb9R9K5XCNejyYypWvE6hdRCk42qdboNr7E0Q4RMfZ36Sc5ImbuhByn8qIYe8eo+w7mvnhmHPFbPME1duzFZsKXzP/gJflpkymLOolggCGA0JooMuTY3btsRMmWgqLby6Zflc72JlaLwXi4nzjDjw8fab69yZ285yRM+8SlmPFwssngYARNnM5m09DWEC3+xHCYYHc5PriOY5PWQtevJ7TlQWLRPLHWmJhwkLb7B6VNNjLPLD8mW2xcNKIMFd3VHAxm8ewgmMWL7pErbvEgXl9IEEWvEPeK82fFmY+0F9GLlE7i+AdYiQ4Cvfjoo/VHLzUefbRx6VH0KDmBGDlPnvkA+gB9ZvaIjzqPdi892nmUfhBzqftoctKdo1Ec3SUa1uD+VMVGWvTxdOhEqBcBefqrX8gmTmzi+7+EPks9ZjJ2bGY/sdVoVol3/SIrTKztBbcWG3iQLUv0LvJDb+RkTmj1+6roK7Lu572Cn1eW9iqGnd9Ms4aRalfS5pLnDEr59ZX1jH/xVXqttJBZ0ZVyUCtkrN33x2YI6LOcXAjqdtpNZzYyHpcuLTflxbNy9sLOpdtOdxYbJrfZzmfSRmgbUqb2pzETlrTXf0J/NLMC1xFg/DUU//YsoZ9Ev0jdk9FfLdOpp0JiSknEfcLcD0uiK+THTK9kzuxkORJ7u3XM00TPe7sIK/vbse7ht5PfSrI075h1xV8pplKSIAJUkDhhA/1c9ty5zKczluFxmXPnsi9aoiKI/hn/RWy4+EX6hvQxT00Lsmh92ttZQYjYinnEST7LTuTB8Z52smO+CphxkzkJa2XiiYvs3bYwHcg1ss3D9WPbPfozSIm7kgiWVeKfI3nkZQdWSjwYod4fO6YTrJnO03mnXrcLj0fArvbGh1f671MURTeGARBFFBGndp813GzfMdN2oZ93fEDB/eCwf9DSfWNeB6TQX8mb+FyF9bwzdQrTnZDiKU2mJk8b9Nfsmq1pavemyBNoZ5Xyewcxth7Eh2/W72k2GqFurpbflphjxheGiVuX43fEKv07/igmJ4uEaOn6rrbgWLv3aGZ5NRunKEcOE/nRT9D1qAR88gnq3W4zBoFk6BNOvTZ/LhRRl6ZTv8XkVxVasVczwrV1af0hsglnpD3Qhm/qkpL2TaB096UV2TD9tCKxWvZXM5aZNn0I/qLqmemaZ1oXsyeaTbMVbBrLzRNoMZ8NPNMuZHKuadummw/yacu1wiDIZ/J2LpfN2fn7cu28HbRzmdWz+YrjVPJnV2e6qK8BN7ZKf685bMZChhLC5HfDsDBxwEx6hPi49r1EDNHthHzYjB0flBBqCxKSexoPy9/eWzzV1mEJ9PDJJ+RA1OzierH0XEkgysazpiYI4vgzvMKyWk9RZR71BVmT79EQq/IvvqVYXCs5mhjI5x4RfQANSlp137IIC7LmnU1rqiF8lVdEXu3JrMTP6ZmJVQpxFk3kMV7snjkhUXQPqQDknSxe1AOyD3BJ2IjlKVNVDeI7C82wkBFSKS7lS8VK1C1kvUzN8K1UpqyoYglLiCtqLMZSOR1uV5fvRCPPOb9QaJssp6T5VP6+fLFSXFkuVVnHlI9V7TTWraxjvhBusmilLgYZzVi6cP9tzdk+n2sJxiW/47wxQ8eEV2pQp9eT7Q7dNjD8SZzKYhKGEIDHgBiTjkboPUNeEE23UFjIswNFzhQKSwXpb4Z7e2Rjc+y4OyogQXhrqrBYyKRfzD/CQ6TgfhKL+xMHBfiGcuXons3m0ZJ1b1hDianRDcXZ24udhpLg4QcfhPO5UrRmv11wpRX1pr4Vrv8dWdTRdciZSL86dBXsdtbYNnG+Sg3wiNMNSn2JoQPEmg0qGcexu3gyy86gEF2+d+1egbNd5Z+cPpnJ2Tle7OQK5+9ZP/udsi/Qa+NfUSVcUvyiWnoymytqxf+C3kYu+Db3VvzEsU3dEFVe2C7BU9GFr8mccO/6Rc6vaeV85rXwjK+WsKg5X03Wxt9Fv5v4LSkinV1jt1kvNVOouOjlxXz+1W9846tpeGFvbxda4+WFSQKE458iabszHwhXEnuUqRlV/HuELeAK9klkhhVjPc4N9w6oO5MeCenPsiflPEC/AT26RX4dLbaeJT9fRjTOlF2iGyI7LXsN6uDFcbIwQmWS+4hvXHTxaRlmJ6trHCs6Jrd2bs1/GqfNWvWRh1+VyVRJXHw6Y1nHzp3N/H+VXXlwG9d537fX2xvHYrHAAsRJcCkSBEUuDkmkSEoyqcOEDlKK41tWFNCKj9q1Lct14yC10kmUpEfa1CZnEjczSttk0jQNXed2nBmnycRk3RxTN0nbJH+EnKSettO4nXbaQH3fWwAEKbtJQHAPALtv9+07vuP3/b40jotiICJm1WcuKE6E42KGEuSlUDAzWjpEDtMjiMva9qFbbs5ekIIhctzBA7tDoVjmtgKOaIJUfjtctq//t0idmOTqaxQVnQcsE0XgTCCaYEHEdt53enBingitZIQiH/vCLtjc/URBBRqGPkEBp40FSUWDcUdkDflyRAicllT24QaWcA0rT2kR9AeKwQ4jBS8o+C6ibbPhB0WFLfJo/wM80cbxPg3zLGpqyrXzF5KKNBmScV7X9da3TVX5e1kp8Arm+X4sftH+oSgJQH++9RyWyDPzPf+gm4K5YKyjk+IOizJqDGcdXc8OEwW0baJGjXxN+nDQlPE3pVqeKJ0hX97u0Ts3idYJ3iw/PNzFQLQ7hdqoUTrwgabo95Mo+o3c2FhOlhOtjde4Ui6Wze7OigtywBRYKW7hRQ1t7J4dYxOtn6FmwX1fbjSXIzrQomwneBQypEWx1y/tjxedKDSmAJ5E8g+AmhoNH+voHGC498cwLk87iR/J6DWbzspKvV6nwRDgv/EQXd+8Rl5lx9mI1516fG1pyVCbmtFsUmr31uZqo74c7/Fp6tSLBDNZmx3YcyGvlAvFe6SWXWz5iTsqeJsWAAH3ti/0M5qhiFIWB1hdNqKzbDi4yp47ceIcWzfUFTAPSOxgdZCVVAMpZEdlQctVjftDuuvqoTP1+ukr6fSV0/V1SpqnGi6Y+11DZbbwmpvU1tgPTMwd9nEI7gcGhBSpIUjhVRvLiQJYfsfIYOvSqy+jVafVcHIT+UQslshP5FrrnpMZQcxIxqk7ZSKSbaK4Rz5XFPIbzxvKjyx6mZH8kHevnfO8XC+HIlh5476OiWkEbUXwiP6QF8gHZJInWub6UqNZJ4+ltV7vSyY8tLLU7OtzGqgx762D4WVPyXt2Hpbe1n09R9l/58CKVqBJpIiaXrO7gXvk/DkL5zBNaRf1utRWU0join+im3P9/MbA0x31ifSJpI7WE6YUEicnI4fMRDhiyAH+sMg6B6v6gKNLAvW0akZrPRwPm/HQ6mBhKM/zLEbpbC4lBDQ9HImFWfPnEYclcsxdQT1EzqJIYeF+10gUDEnLgYs4p4nRCPDtR8KHE7zNSyxr8bwlSEUzZprxcK+ODjmZwcIDlh0f0WblfbPKenN5uTm0f/9Qs0kZfomWu9SoT56Z9HYdXjy8i9npf+77//zPYOx+A7/zU2tv5HJeL5d7bAkV8jRI5efLbm28AxiHwWAgX+nxYlntuPFqzaPwdtJr0Ercle7V/ooPcolCoTIgPmvl7WTxQDFp28nJob6SdkkajKVL7Mhq0o5bX+AGKoVCQgl8Lnyv5MYzxWKGHH/JGHWGJ5O2lRrJpIpbbfBrpK/GaOY/P7UYReYQidMD841FVErcDaR74sSe2m1nf+2W+o3FkfeeOPr2o+5sre890UxmJJPx7rvjtkqtXiwenb/5yOOH68nqbCFdzGSK6e6z+gR6zM9tSkmk3/3JI/33fgtdIqt7vslcP4ZtYUiAJ6bNigMQcoGmjW2jB4ExhtJ7X2Ma15ilNTKmLy03IPEJmXKbK0Tsgkij1+GLMncggDeWUYNM6YD6dbaAvt0x/QvoRYr1oVmcfBMfJNQEJA94jqlRmkzRuF1V46iWVxKyrIWCkh5WUSjuJDRZdURx8NZswjSrR47KTuVYuXwMfbD/LbskLGmapBM1IciqpiYHCpJg6dnE0SNV03zeubFcvrHH9ruJvkrjIBfARg45T0sckckMHlsiHUOmOGD65rqUnXgA8gsDaKE2xdcqVRoobnCk/5U49IwsOmlZJHqKatuqFQ5ppLtevIFTnEwu7LrhXMY5M1AeIO8fdH5p6tGYboaDeveXWdN1zWzGQfca6bBo4LAms4LAktsPK0hS5sWAYwU4SeIClvO4AycbWOj8UuIEgZO0YETu/NIAs7phOb1cuQrFuuEKIFVh1uCyfggeuWPSz/f17y4Ity5uIsdrNf99bvg48hrzSA8XZ48Lx1ub3q7fQ47mdtrhV0gbywGXAR3pyBDv+jAPu80ADyZKHAUaePQQTcHKPWAfHBk5EHuAg7wLB+wHOe7BKM3BkJHlCYdsOBOyTH9KNsLko21yIXChtLPOeT5BbicdTDvhFSBJEINxKJLs68+XslUnIilKwCCaphHSDFGamcmYaJ3nFTBPPHHboeGozAuSogXNaDyVLewqefGeGBq/zD2/TKlEKqAqZIV+RgkaKJD7F11MkxfIH593+wbVphwNOeFI8Bde4LpIHrOdzEuyoqur+f6+ZCSs98yFmKIEmRqVR0Ke7Zl5208DHlopl5eWktU7qgtkY2Wt3FqDcPbyWhnRftHR45a28zXUABMJIwcZK2BacNvqURMxrVWPHE1GiRXyWluLr9DXUpvIpuNjWW/jYcj80om79NEwJs1pjlfWQLuCxfMrTqOxI9yRUvduNLv99tvocWqzKIL1DvRhap8Y8/MMbN/n/GxVuQEXp9CqlcJaMBg3ceovyKYeCDph3Fc7/IidM89dOmfm7EfQ4xC3zbGCRhMndDdbH1m8Qd0zN7dHvWGR2Yq3q/t4GZS1vayLnGtMcx4xTVSH7MxbPKAauXeHyJJDVCfuZUwr2KQ1EWkBU5Bll3QCTBW4hGy3WrON7RT6rw7E1bPGGFLPqvGB9NhTPsDw8/7eP7W/7AEV/KP/zUn/m2XfLxTx96b975jeuBuNSTK7Ie/qthncpHEmOOeCqwaiYnJ5P/SEOgbhoxTyFdoSosZEqmIhZsutMshq/K47ihovCONLo2IUIZbXxdLbKoLOcvq+x8oCz+4+csiTdB5LE0cXq0TdUMmdb3lTvsvxrK3qiiCjgOaooyLHJ7QgiwVDDgfSvF5JigLZDRpcSBSzXFAM9sZFypSpjSjZuGZDLuk0guipmkvGi/ryhb6Vlb4Ly/XJR09FL12KnnoUbSybj35sfv5jj5pnLwVuvTw5efnWwDZ/hkzWr3eOniOZ7eUHri//urKvK7db5hLagPEPAqZ9bgWbzD10OALnGE166wfPNjdi6XTsJkRmA2xgMiW8meyjqwfQQcGN6/EB4eBBOZGy4nErlZAPHhQGyIdud36mGOMMINtNSk3SZijZttqP3CxR82w/6sAfAyOYdrIdG9gJlALOjkW9RXScZqOpawEeY75vNNWzSuiIUVUzkzF3LiEveua/m81VVlZEOUBUGsvqrhWDrE22O88BsxRwo2Yx5AUnj2gaKhzyVtXX1z9SLEr9Y7Y91k8E2fX187AlDZekbK9/EvioQKOtCR4u4Pw0KFoRu+YFyFwwxboVFyX/srXhrSLnmWMzL5xfHfjBkannBscri0UkIGadvJzS+4v1+vEDF0u/3R8w60t765w/JrB6G8fexRkUeqwrAnDj+CZt+g/xs+juO+4o3nln60VWaz39JH2hI63vIvczt5duJ+/fQi+1Kujj57LkD93devqNyjG3oJ8VjpTDkXObPWVdpcX8Lau9CCe/epm+0DN+Ia0/8ktpPY3upiUxHZ+m3s3Xl6eRirWKa9csF0ANhXyFEiLgNre+XfEXXNezg+2r2ezVTObFn7+GXr0sOk8mxCefDAeejEmX//DkaXfx5ODJBXfhJEIZnM1m5rL/Aldx0MGJUimBHXT3ZDgwMRGThltrJxfdxVPuyYXBhZPduex16rpT0YDjbtd1rf0PPIro3LH+Y+Td+rBf2VfJ+/JlcuMv/c+xY7ljx6626xpe6c03LsfsVDQpDeq6AER/gLkFKZyU9XG/mI+TUj5HS6HnfYnU9620nNZn6Y2SUpC4mT7XwR50ysmD1WuLSBjuxM27vm8+69sqMBHI0V+fPEVqz1047Z4+2TrLahktO1LKGK3KM5kvP5/9EHrp+1C9pwbgB6eegCKvwrNtP+CtnH2d+fv1IqE93OhJcIv6rzFE8t9JWeCDAJq92Dge8rUhz0JuF9WPnNVrzCqa9wOd0TrsNXyAPhymtMfTZ5nX47Gk3JVbDD9ZimvqZfzp8FXCTI3WVpvLgJyPr6G1jQYRZZZWvdUGWgWPcxOih2jWx7rTfvVwcHbY/2ht+Jbjbqw9wHv92BHLa1CGG8tpAvkHGgXQrUPxvZubaJXmEGk26cpzvHg5zmzxi24yvZhe6Kl5ylNB7UsVP3slUcq9NfqilJtrrWfjft5c5g15t1CbvKC3ToBaj4Yh0cwaS8sraGW9QUQu37xNyX59i/aWDkF5D2s5d6yEqBuxnf54jNoiLQj0MxDpZt7nOazKHGfbWl01PF6U8E+r0nGRN5AK+TT5iKrMWUFDDV6VsbwhPaxKyvJGu5xvor+hXN0QiTKWQpS0CrzZEcpXDa4/or0QyYk8TjTXW07c6Smo9R8A7OuWZL3pdG9JW5iMTSZI7qnMnKL4dVyh/EG4UItOEa2wBpnZiXJKU7OnIQ1q1bXhkgwEBmWfKNuMena2Qu1CFQ/b/hztZ5GxowJ1ytttNALLOJGBQNhyWk84pmuEIw7i8oKmfUWLCXle1b4iCkro0y9ImMtzAfyCJLJ5VhG5VT2EWkAgYyXwUUU39XXdtITWhoaj31Cldayh248iTBRIfOQ9R6TwoIuPtn58lpxzjpz7rB7j51h1fY4z8F0Yc2QtnRVw6+tKfZ4IhMcjCS6oNnTT1EekUKQhqUfGJFVlNB+TwDLUujZJ5MJjpI4uMI8x72DexbwfMg8jImhvqy27CqFeKVR1o3aefGWPRcFiXbOj1VF2QEyzGNgdR0mtYSLelsDtMQ3qt2vZIMoAwmVbVfoJq8mUIkY8Mom7tfGBAMpXcRkOrlEHN2CipoHwqgbU+tfX738GCifqfeTfywWRqBJRk2f1CKtwLBeL8hwvIZfu9IVLZ7GOwtqDVU3g+FBhCAUDunKmIiS26v6+xOSZyT8tsJxiRHIqj/iYKESkYix5T5ETlVLcSvI6upjoCwQ0dPEIDg8O4KNXDsNaOvrDwXqy/yT5/4iWZkU9GFRxKHmBQxLCMhJZfmj8AoeRbODpsNE0vbOHjIBslzLHF1iRl242Q9b8jWQkPG65fS6AtGZ0JKLByfPkeCTtM8OX1JHpoBSIZPc4Q9opTeBvP3Wix07v8/cQOZRo/BURV8RC1iKqa7VGRpM7ztyGAq0VyL/z2Xues6vHqj95Ll6rexYjQBugY65NRr0h5kZqL/Gtn5hGmm5hTSycr9k73Wkd0SaFSLfIk6dEdDLyjAemQVAkvZgoPx5pIMhxtSi2j+4fNo9Q3pHVaOqhsvPQKt0mi5cX+k5luJAezEtExgqOWtbuENmQ8yE9xE5HxCo2Eaor0uyq1/CPsBo3jre3YLBN1mrJUD6AZT4mhzQtpMRJvwr0B8fC6XQYbdmF/LyqFBePerIDgEkdezQmPcv59+cir64ZrdWAUucLpcK5Om/Hovcgxw4qn5UDLFoxNMdRA3ABqmG8ufVz2dCVrr71PClHbjNNMCYOQeClV6uQ1g38uXQKAX/DbHihVLrx9/MzS3tOoNJMf/9Sfz9aP9T61q5d73r1exOe99qh8+fPt/WED5FzJkHKye1H7VzcHfCgTbNzV0oInb8ifcDKZq0PZEdSqdS+K9EMm31GqadH0lU7nbb/uZrJslnLTrfP+WP0eZozoO3cAU8MIABKqL3aT7p/CdEU420d3K7WRFxFPzaT6cy+mYXjB3XlgJfaLcuSpmeHIlHT1vNv3cfV3Ei/nkmoqQT6nb6INjM5UxgaQoOoP4k4sZxDKtJ3jUeLZVZV3FrQwMFcmOvhcYpAO6Ssuz4c0uq4vr1fZLDutVdbkKFoO4/5VrIeGJva+ZgCdIOCBsZ88AAAO0D7QRtTF564MEUXGz4jyXIxPV4sjqeLKSvXp2gCxkrBDIYjAQsrIVlN5awUYqbbx0xd+F+fMPIxLNAgZF4IyBgLtSl3D8ffkMv3D8bzHP+2Spmcp4cD72PoeUai+NBf9YKZX/4qv/SrXNoWXr6P+oJ8Y3y+nYrWHxe6mY9ttzcLJsWsehB60cnOGVBXFEUj16kpCnJoZAUNvQioq5T3Rg08WxNMFYgMVVOobdULjFUhyrkFM3O0Q4yB88BP7VGyJTAHQWupeR+QpgaTpeCwPTdYnB/HlZtveeGWCWVy22fIGfBiUS+ZHpwbXlryltzxWHSsL0P2umW+iv7cLxPcHDagHP1oWXKPZo70FMA6+tQ7YNERRubHxeott0zKU4OJ3cHh+Fxfsb7jE/SJwcPDjYY7HrfG+zKtP+vd27rXFcqVYtDIWYBTdszw6+AsXy6jcnkFALplgOr2xoyBRAjsJweu55JzIaadSrYd1bCH76NjC3cpmzk1+1Zr22V9h6KZv4Y0SQPBWZNar0ma9n0/m8xSxAiTKSxstJOrdA6La1JmvjyfAfs9HLniZ/19NCXGgzB8BuMis6Wfr9AYgwxk1WkHkVC4fC3k4h2AUHJlTVBNmmpgeWkpvgXVQE3f2/wIuDs8yKCqLtO4ut7c3abPrdl7wpodgrbanVWIqrPaydCdOvMQYh7a1g4hWv26Gi5UbLSRslr0HKhupVqbkGUP9q7BcnStG1f/E3IdwJ5UYYClhpqf/ZyNFC1QAyKKdue3c0BKIXadkOUBF+g00Hd2vXP28L7hnBDcNTN1Zd+uCK/zkvR3csI0EyaeuJAdPRp3Rvfu7gvoR0ezF5C+by/GQ9mqGtnXl9AGMynBElRtRjbhgC/sHT8YS7nJsaQz2seZ/Ubs4Pje7bG9wetje2v5NOo6dHqMk2fkeXmPHO43zXyvkfPfPvrRN8npcDgd7pVdABcCOowvToSyRBGqbUOJePUNFHccyJMdRxB30Wpu0nzZTg9nMJwn/Aa6m92jULcfh0ejxP91BliP/Tdapzhe0NzI6nudj+MzM0xvfAD22ydyzbzpFoQu3SuYdqnrmMJLwV3xZc3TyIgM+pffItXfTYq6MnYqFjs1puhiEjHzrU3UH1hacrAqSSpe2TtQYne77m62NNCbGyJArczDr9Ojx6ElUGlri4qNOv+Ac7m3764Pn8hkTrwJFnf4tmIPCBDWVhAD/YZe4iuD/YXBwUL/4DzlMU19xnFAd9Xbbb6X99CP/dnL7CfjzDHm+OvwVhJVucOCSJkQOzMZKJIgW7rbPtj5C0os1KQX3wRyS1RvrTp1QFa0vitiqK1io7HcbL7Q3Vnt/aaB6nQMWgWzxdRS3Y+1bvq17DjNuqRI5O0AT78EQG+p60v7B/QT0tYhtzDVQCwyZtaq47jmEkH2U/2SdD95ZKGSZF250n8ljH7Ujy3p/v9CzZL0o/cUrlS32vXL6GXSHmdo76Y4JaLDgFRFVCma57HtZaJEl+NRUI4imBIctempYBSgcRLok6m77rtznEsJkXmpXJkcHx3jFoNxXlPDfdNDFh+RsC4QFcNggbuX59hAJB6TeTbMC/wu4MW9nxyw7677RnE9IiTT5GQfjHOI5dTUVNxNW5jo2FleZLGosJgnqqwiYCHMI9YS2ADoCNeuET0RkTo5wNSZRebmHTKV4MIt5Ynw6PqT8oAPMCXX7iOG3HFQpIlqB+Ll2IAY9dLs7gqgMmniCASAolqafssysxevXJydfeS9F2dbX7spJfKiaMWNQPqtE8WT6YBuCLwsGGFZPi5jQeQFMRoLRAdEgRft7NfBTZrYX35l35z5nYO5fJp0r1lyrovvfYQsbvgpiwwdsWh0TybJKpqlalIQx1y7lrBfYVmiDRIRiEPBIHuThqxQ2h2fmH5bSko+cGh86J2rmrxld4THC1iIOnMTczvzlh21sTMh2HgVqmYYvXHV+L/IjZKZCGqGIlZd0hMKJlRMt14eeR+5DVhc65EuteMJgdSCGdWNvlsq7pGEruoiJ3NaUJJmMfgIePKlEzVFnhOifQ8c4gXSSGK11qfu8qZfnkhlnARi5tonnn0EFbfE3dYz32J1DaGh8WQcyYqpaFKAi+atsVjkBZY1DBAZyfL4lz6th8LxePH+O3/a+plzfrJ04o9VqdMHPk3xYwUyJlN4W8QDQCtMttNslaLhwOZjQwoCsBt8iTMmSPvdNcNxArdPFWa+wXGsCBsH0GlW5icEzC+gBxVJmL2fFwXlgRUOc8qvP8SvCKQxPLUtNtfciVTJ+9EGPXPUkdxi7uDl3DYn3Bcfzkw9HWM6vpkPoydprlsbw+HoN3MfhGPQk7FXHs7s75b3JxR9ChFP4CjLUQhypN2Lx/10MgKRC74qJSuJkf5TJ7UImaY7O0lJusa8C11KSgIkbeEj2v6L+9s7UnLv9MS7IdfA/wHc2fNXAHicY2BkYGAA4l9X/x6N57f5ysDNxAACtw4bt8Ho/7/+/2fiZQKp5GAASwMAmL8N/3icY2BkYGBiAAI9Job/v/5/ZuJlYGRAAYwhAF9SBIQAeJxjYGBgYBrFo3gUD0H8/z8Zen4NvLtpHR7khAt1wh4A/0IMmAAAAAAAAAAAUABwAI4A5AEwAVQBsgIAAk4CgAKWAtIDDgNuBAAEqgVSBcgF/AZABqAHIgc+B1IHeAeSB6oHwgfmCAIIigjICOII+AkKCRgJLglACUwJYAlwCXwJkgmkCbAJvAoKClYKnArGC2oLoAu8C+wMDgxkDRINpA5ADqQPGA9mD5wQZhDGEQwRbBG2EfoScBKgEywTohP4FCYUSBSgFSAVYBV2FcwV5BYwFlAWyhcIFzwXbheaGEIYdBjIGNwY7hkAGRQZIhlCGVoZchmCGe4aThq+Gy4bmhwGHG4c2h04HXAdnh26HgoeMh5eHoQepB7EHuQfFB8oH0Qfch+qH9wgJCBcIIAgmCC4IRYhTiHeIlgikCLCIwQjUCOSI84kBiR2JPQlICU4JXYlmiYGJnQmoCboJx4nSieKJ7goAChcKJYo2Cj4KRopOiluKagpzCn0KlAqeCqoKt4rTiuuK/IsSiyGLNotDC0+LZwt0i4ELnwurC7CLuwvWC+YL+QwWDDAMOYxGDFAMWgxmDHKMgAyTjKOMrwy+jMmM2YzqDPkNGw0ojTINNo1JDVaNcA19DYuNnA2njbyNzA3VDdqN6w36DhGOH44rjkoOUI5XDl2OZA51DnuOfw6ejr0Oxg7ijvyPAw8Jjw+PKQ9CD1aPcI+LD6MPug/ND9yP8w/9EAKQCBAfkDkQRBBTEGQQeRCJEJQQsZC6EMaQ2ZDnEOuQ9xD+kRARLhE4EUWRVBFqkXMRfRGHEZgRnJGyEc0R1xHdEeWR8pILEhMSHxIsEjkSTJJZkmaSdRJ/kocSlpKjEqwStpLDktES9RMuEzWTUxNgE2qTdROHk5ATqBO7E8sT2ZPok+8UBxQTlBwUJJQ6FEWUTpRbFGmUepSXlKCUuhTblQEVD5UZFR2VKwAAHicY2BkYGAMYZjCIMgAAkxAzAWEDAz/wXwGACE9AhEAeJxtkE1OwzAQhV/6h2glVIGExM5iwQaR/iy66AHafRfZp6nTpEriyHEr9QKcgDNwBk7AkjNwFF7CKAuoR7K/efPGIxvAGJ/wUC8P181erw6umP1ylzQW7pEfhPsY4VF4QP1FeIhnLIRHuEPIG7xefdstnHAHN3gV7lJ/E+6R34X7uMeH8ID6l/AQAb6FR3jyFruwStLIFNVG749ZaNu8hUDbKjWFmvnTVlvrQtvQ6Z3anlV12s+di1VsTa5WpnA6y4wqrTnoyPmJc+VyMolF9yOTY8d3VUiQIoJBQd5AY48jMlbshfp/JWCH5Zk2ucIMPqYXfGv6isYb8gc1HQpbnLlXOHHmnKpDzDymxyAnrZre2p0xDJWyqR2oRNR9Tqi7SiwxYcR//H4zPf8B3ldh6nicbVcFdOO4Fu1Vw1Camd2dZeYsdJaZmeEzKbaSaCtbXktum/3MzMzMzMzMzMzMzP9JtpN0zu85je99kp+fpEeaY3P5X3Xu//7hJjDMo4IqaqijgSZaaKODLhawiCUsYwXbsB07sAf2xF7Yib2xD/bFftgfB+BAHISDcQgOxWE4HEfgSByFo3EMjkUPx+F4nIATsYpdOAkn4xScitNwOs7AmTgLZ+McnIvzcD4uwIW4CBfjElyKy3A5rsCVuApX4xpci+twPW7AjWTlzbgdbo874I64E+6Mu+CuuBvujnuAo48AIQQGGGIEiVuwBoUIMTQS3IoUBhYZ1rGBTYxxG+6Je+HeuA/ui/vh/ngAHogH4cF4CB6Kh+HheAQeiUfh0XgMHovH4fF4Ap6IJ+HJeAqeiqfh6XgGnoln4dl4Dp6L5+H5eAFeiBfhxXgJXoqX4eV4BV6JV+HVeA1ei9fh9XgD3og34c14C96Kt+HteAfeiXfh3XgP3ov34f34AD6ID+HD+Ag+io/h4/gEPolP4dP4DD6Lz+Hz+AK+iC/hy/gKvoqv4ev4Br6Jb+Hb+A6+i+/h+/gBfogf4cf4CX6Kn+Hn+AV+iV/h1/gNfovf4ff4A/6IP+HP+Av+ir/h7/gH/ol/4d/4D/7L5hgYY/OswqqsxuqswZqsxdqsw7psgS2yJbbMVtg2tp3tYHuwPdlebCfbm+3D9mX7sf3ZAexAdhA7mB3CDmWHscPZEexIdhQ7mh3DjmU9dhw7np3ATmSrbBc7iZ3MTmGnstPY6ewMdiY7i53NzmHnsvPY+ewCdiG7iF3MLmGXssvY5ewKdiW7il3NrmHXsuvY9ewGdiO7id08t8TDSMY9niSCpzwOxEIuCLRSPDFTGkUitqaYHmTG6kjeJtJuLhiKWKQyaOVspCPRzqGS8ZopcCRCyRcLnCkrjbSiUBALu6HTtUJBwoflQKKyoYxNOaCNLUwywloZD01JSVePK7u4la7uxne1prwwy2qtShMzI1LT4DJNFI9Flat+FnW4kkNaM61fpEs5GWRK9TZkaEetXKDEwBYw1rFYzGHiprmhpRmeyuHItnOBx8V7pE7UeMRv03GTx1yNrQxMnafBSK7TOaSp3uiFeiPOV7mFrramvJjpvjozs6TlTMeLIW+DG1vaja+2ZwSdHGeJG+nOktWVCQuzRMmAW9EoRfM8tTW+wdPQ1Po8WMuSSp/Ha5W+ECn9KNXtKx2s9UIx4OQSjb7Wa05pxYGVfhaGMtCx6fHAynVpx3tMRf1+kgpjekoP9c4ZMaHxdGTbdMQ5cRaTkqWpbKDTLDLLM4JUijg0M1OGqc4S05kKkmhmfipoyWJ2vtUJHdyM7TalhZOrNvqZVCGBdj8zMiYLIx4vlDghz9Nxt6QbmgZr/cxaHbcCroJMcavTDkGyj6dukxoloQmRSLmT1XI4H/CUIJ2CrdDDTbViqNNxKxgR7fFU8GYO++59jyhYRSFMJCElk76mo6sG7oza9JuFPcPXRdjJMR235n44CxcCHYqesdwZRKcd6MFAiA4lEp2SumBNpHUiWRSbLm2LTSnqes4lliaMDsN5ysJEkHAKyOlsCsrx4oTRzgtulyfcrJG5pG/7Fkmhc2UiXHc2CDJueXdR3A70ukh7MqL00wy5GfnVd0JueZ8byh9huDghYjPRqZ1yGW3lqYhIW3fC16XYaJSsHgqzRo5SD6WJpDENF7luL5uh80eK/LUWZUs6Ep6SLR66pFhxaMX9aOcBlDaKtDQrcrG9PCvIM04h6WsVdkpMXrC2oyD+/CYRvDiRxs5/Jwrz1O+cpFtIaCPozEv1I6GSckTGIVm3PGGUXG2kUzEZt2ResFCwW0izHIzL1a1JG4xETNGQbwWJlJ18VFMetao5YaUSnVn3zXI/Eipqw5Qno+WJwFAhsGLTbpVQ8Znsyq2ZtmLPguTHSF4UcV9vSlvo66UGCl2lyFZyvVJiU7km7Igyx3BUqqWTV6I0zFngQ6NcQqbKoYx2LXWh2J0IXBUt1axTmdAN+qJMjDRNEXGpXOC3Jmi16mFbRH0R9ngWSt3NcVGmi5FkpK1uFZgKayH2H+iIzUCkifVuWxGb0jbIYpFSXeoMeCDKPN0oSYOCPXThVxtIRRMrA8WHlYHWYSffvB43pHhCnFXtgpA32YUCD7lSIh2X83wslsQfTLcglGlsZsohb3TVEbPgirMJUiF8bdw2Q906nKw6pCRpakOth0o0h6kM/TpreaqvjTh1O2l9JLjL1lV6UhEbyZA8qznSWTpU3JjKyEaqRm+SPibDlre0F6Q66eQw34cdBaHjor4olVTdyeu3zUgp5VC8c7WcyyhjU/j5Ar2yRZKX4VlR/k3jLGhP4WrLxd1mL3C5S8YD7YLC+VPFkU4ehj0+IOO6Bek7Bxe1nDXpYV3URDVqASlJ0WNMKprOJG9EU7nffqb6DeeZ5JgxiUzuLB2qFdxK7Te/UZKFvMqX2aUW8ZQKQte3hL2ix2kXzLlGK8cuJxWTig5hoWA6yFxHupxT6ZKg7xFEITHUAvDQjISwhS4XcsUnvLc0IzGkzEDdWoM0Zc7cZglWJ2hXxaFWJN3Jusn1SNLeWFGlfjEzzYhEY+9THlVctqjH5F60ha2iqyUnqsXaO0qs2zohTxxQFhZpI+EqsuSazYRT/XcFdz4JB23C3q8pu1cSYU3Vf7mZ+GUKaoFdJfQ77jdrSv3CFoueuedzkggbxL1nNEuwWnGommh6uenKFplD4eiSQBFXTd9B2ZE09ST1n3XPdR6MG0mqwyywpkn3hdDfAmqpoF7HVuiha3nCbDgz6Voh51Njqr5naBiyJ8yU6ObRqBPnGKZmhDv/pqGS4lv01gStVj0kgRTKB1othzSZjHbOUTOKlmxa1Eql1u9SjQqqooMwNGPeaFM3iXZ1pUULo2IVJXbc9pDiUwlS5fCIq0HNl91xleoblSiT0SGMROqPrTlhiz6Lu+tRHkFLU54H0YwgFEpQIc0Frh2efcPxLW/4/t2/UfMCO08e1KB/3121Le2nJBeTXDWdJ+ftgPdpO8qivvHNf7PAWdJ2iyHXcebXC1yxtFdtKuexUT4qq4TNqGY3XK1tuwcZmL+R4woVI72dmmZKUobTmoPANdbusrC7sEZlimK8lSUhz+9atRzWii5x3YVv03uoP+YJWp3CXQSN7EtFXXqd+raYQmdpQyhq3X375Vc9EZS30pVSoMiV6G5Jm7pcilxK8re9HaWE7llDtzEurqevbqTuhkiXkWFjg8qRoRtx1zUF+U3C+cCEVTbJqvo4z7bz9Ky79Jj1xdzc/wARDj0u\") format(\"woff\"),\n\t\turl(\"../fonts/dashicons.ttf?380d8bbbfa573efd9332485b301f5f57\") format(\"truetype\");\n\tfont-weight: 400;\n\tfont-style: normal;\n}\n/* stylelint-enable */\n\n\n.dashicons,\n.dashicons-before:before {\n\tfont-family: dashicons;\n\tdisplay: inline-block;\n\tline-height: 1;\n\tfont-weight: 400;\n\tfont-style: normal;\n\tspeak: none;\n\ttext-decoration: inherit;\n\ttext-transform: none;\n\ttext-rendering: auto;\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n\twidth: 20px;\n\theight: 20px;\n\tfont-size: 20px;\n\tvertical-align: top;\n\ttext-align: center;\n\ttransition: color 0.1s ease-in;\n}\n\n/* Icons */\n\n.dashicons-admin-appearance:before {\n\tcontent: \"\\f100\";\n}\n\n.dashicons-admin-collapse:before {\n\tcontent: \"\\f148\";\n}\n\n.dashicons-admin-comments:before {\n\tcontent: \"\\f101\";\n}\n\n.dashicons-admin-customizer:before {\n\tcontent: \"\\f540\";\n}\n\n.dashicons-admin-generic:before {\n\tcontent: \"\\f111\";\n}\n\n.dashicons-admin-home:before {\n\tcontent: \"\\f102\";\n}\n\n.dashicons-admin-links:before {\n\tcontent: \"\\f103\";\n}\n\n.dashicons-admin-media:before {\n\tcontent: \"\\f104\";\n}\n\n.dashicons-admin-multisite:before {\n\tcontent: \"\\f541\";\n}\n\n.dashicons-admin-network:before {\n\tcontent: \"\\f112\";\n}\n\n.dashicons-admin-page:before {\n\tcontent: \"\\f105\";\n}\n\n.dashicons-admin-plugins:before {\n\tcontent: \"\\f106\";\n}\n\n.dashicons-admin-post:before {\n\tcontent: \"\\f109\";\n}\n\n.dashicons-admin-settings:before {\n\tcontent: \"\\f108\";\n}\n\n.dashicons-admin-site-alt:before {\n\tcontent: \"\\f11d\";\n}\n\n.dashicons-admin-site-alt2:before {\n\tcontent: \"\\f11e\";\n}\n\n.dashicons-admin-site-alt3:before {\n\tcontent: \"\\f11f\";\n}\n\n.dashicons-admin-site:before {\n\tcontent: \"\\f319\";\n}\n\n.dashicons-admin-tools:before {\n\tcontent: \"\\f107\";\n}\n\n.dashicons-admin-users:before {\n\tcontent: \"\\f110\";\n}\n\n.dashicons-airplane:before {\n\tcontent: \"\\f15f\";\n}\n\n.dashicons-album:before {\n\tcontent: \"\\f514\";\n}\n\n.dashicons-align-center:before {\n\tcontent: \"\\f134\";\n}\n\n.dashicons-align-full-width:before {\n\tcontent: \"\\f114\";\n}\n\n.dashicons-align-left:before {\n\tcontent: \"\\f135\";\n}\n\n.dashicons-align-none:before {\n\tcontent: \"\\f138\";\n}\n\n.dashicons-align-pull-left:before {\n\tcontent: \"\\f10a\";\n}\n\n.dashicons-align-pull-right:before {\n\tcontent: \"\\f10b\";\n}\n\n.dashicons-align-right:before {\n\tcontent: \"\\f136\";\n}\n\n.dashicons-align-wide:before {\n\tcontent: \"\\f11b\";\n}\n\n.dashicons-amazon:before {\n\tcontent: \"\\f162\";\n}\n\n.dashicons-analytics:before {\n\tcontent: \"\\f183\";\n}\n\n.dashicons-archive:before {\n\tcontent: \"\\f480\";\n}\n\n.dashicons-arrow-down-alt:before {\n\tcontent: \"\\f346\";\n}\n\n.dashicons-arrow-down-alt2:before {\n\tcontent: \"\\f347\";\n}\n\n.dashicons-arrow-down:before {\n\tcontent: \"\\f140\";\n}\n\n.dashicons-arrow-left-alt:before {\n\tcontent: \"\\f340\";\n}\n\n.dashicons-arrow-left-alt2:before {\n\tcontent: \"\\f341\";\n}\n\n.dashicons-arrow-left:before {\n\tcontent: \"\\f141\";\n}\n\n.dashicons-arrow-right-alt:before {\n\tcontent: \"\\f344\";\n}\n\n.dashicons-arrow-right-alt2:before {\n\tcontent: \"\\f345\";\n}\n\n.dashicons-arrow-right:before {\n\tcontent: \"\\f139\";\n}\n\n.dashicons-arrow-up-alt:before {\n\tcontent: \"\\f342\";\n}\n\n.dashicons-arrow-up-alt2:before {\n\tcontent: \"\\f343\";\n}\n\n.dashicons-arrow-up-duplicate:before {\n\tcontent: \"\\f143\";\n}\n\n.dashicons-arrow-up:before {\n\tcontent: \"\\f142\";\n}\n\n.dashicons-art:before {\n\tcontent: \"\\f309\";\n}\n\n.dashicons-awards:before {\n\tcontent: \"\\f313\";\n}\n\n.dashicons-backup:before {\n\tcontent: \"\\f321\";\n}\n\n.dashicons-bank:before {\n\tcontent: \"\\f16a\";\n}\n\n.dashicons-beer:before {\n\tcontent: \"\\f16c\";\n}\n\n.dashicons-bell:before {\n\tcontent: \"\\f16d\";\n}\n\n.dashicons-block-default:before {\n\tcontent: \"\\f12b\";\n}\n\n.dashicons-book-alt:before {\n\tcontent: \"\\f331\";\n}\n\n.dashicons-book:before {\n\tcontent: \"\\f330\";\n}\n\n.dashicons-buddicons-activity:before {\n\tcontent: \"\\f452\";\n}\n\n.dashicons-buddicons-bbpress-logo:before {\n\tcontent: \"\\f477\";\n}\n\n.dashicons-buddicons-buddypress-logo:before {\n\tcontent: \"\\f448\";\n}\n\n.dashicons-buddicons-community:before {\n\tcontent: \"\\f453\";\n}\n\n.dashicons-buddicons-forums:before {\n\tcontent: \"\\f449\";\n}\n\n.dashicons-buddicons-friends:before {\n\tcontent: \"\\f454\";\n}\n\n.dashicons-buddicons-groups:before {\n\tcontent: \"\\f456\";\n}\n\n.dashicons-buddicons-pm:before {\n\tcontent: \"\\f457\";\n}\n\n.dashicons-buddicons-replies:before {\n\tcontent: \"\\f451\";\n}\n\n.dashicons-buddicons-topics:before {\n\tcontent: \"\\f450\";\n}\n\n.dashicons-buddicons-tracking:before {\n\tcontent: \"\\f455\";\n}\n\n.dashicons-building:before {\n\tcontent: \"\\f512\";\n}\n\n.dashicons-businessman:before {\n\tcontent: \"\\f338\";\n}\n\n.dashicons-businessperson:before {\n\tcontent: \"\\f12e\";\n}\n\n.dashicons-businesswoman:before {\n\tcontent: \"\\f12f\";\n}\n\n.dashicons-button:before {\n\tcontent: \"\\f11a\";\n}\n\n.dashicons-calculator:before {\n\tcontent: \"\\f16e\";\n}\n\n.dashicons-calendar-alt:before {\n\tcontent: \"\\f508\";\n}\n\n.dashicons-calendar:before {\n\tcontent: \"\\f145\";\n}\n\n.dashicons-camera-alt:before {\n\tcontent: \"\\f129\";\n}\n\n.dashicons-camera:before {\n\tcontent: \"\\f306\";\n}\n\n.dashicons-car:before {\n\tcontent: \"\\f16b\";\n}\n\n.dashicons-carrot:before {\n\tcontent: \"\\f511\";\n}\n\n.dashicons-cart:before {\n\tcontent: \"\\f174\";\n}\n\n.dashicons-category:before {\n\tcontent: \"\\f318\";\n}\n\n.dashicons-chart-area:before {\n\tcontent: \"\\f239\";\n}\n\n.dashicons-chart-bar:before {\n\tcontent: \"\\f185\";\n}\n\n.dashicons-chart-line:before {\n\tcontent: \"\\f238\";\n}\n\n.dashicons-chart-pie:before {\n\tcontent: \"\\f184\";\n}\n\n.dashicons-clipboard:before {\n\tcontent: \"\\f481\";\n}\n\n.dashicons-clock:before {\n\tcontent: \"\\f469\";\n}\n\n.dashicons-cloud-saved:before {\n\tcontent: \"\\f137\";\n}\n\n.dashicons-cloud-upload:before {\n\tcontent: \"\\f13b\";\n}\n\n.dashicons-cloud:before {\n\tcontent: \"\\f176\";\n}\n\n.dashicons-code-standards:before {\n\tcontent: \"\\f13a\";\n}\n\n.dashicons-coffee:before {\n\tcontent: \"\\f16f\";\n}\n\n.dashicons-color-picker:before {\n\tcontent: \"\\f131\";\n}\n\n.dashicons-columns:before {\n\tcontent: \"\\f13c\";\n}\n\n.dashicons-controls-back:before {\n\tcontent: \"\\f518\";\n}\n\n.dashicons-controls-forward:before {\n\tcontent: \"\\f519\";\n}\n\n.dashicons-controls-pause:before {\n\tcontent: \"\\f523\";\n}\n\n.dashicons-controls-play:before {\n\tcontent: \"\\f522\";\n}\n\n.dashicons-controls-repeat:before {\n\tcontent: \"\\f515\";\n}\n\n.dashicons-controls-skipback:before {\n\tcontent: \"\\f516\";\n}\n\n.dashicons-controls-skipforward:before {\n\tcontent: \"\\f517\";\n}\n\n.dashicons-controls-volumeoff:before {\n\tcontent: \"\\f520\";\n}\n\n.dashicons-controls-volumeon:before {\n\tcontent: \"\\f521\";\n}\n\n.dashicons-cover-image:before {\n\tcontent: \"\\f13d\";\n}\n\n.dashicons-dashboard:before {\n\tcontent: \"\\f226\";\n}\n\n.dashicons-database-add:before {\n\tcontent: \"\\f170\";\n}\n\n.dashicons-database-export:before {\n\tcontent: \"\\f17a\";\n}\n\n.dashicons-database-import:before {\n\tcontent: \"\\f17b\";\n}\n\n.dashicons-database-remove:before {\n\tcontent: \"\\f17c\";\n}\n\n.dashicons-database-view:before {\n\tcontent: \"\\f17d\";\n}\n\n.dashicons-database:before {\n\tcontent: \"\\f17e\";\n}\n\n.dashicons-desktop:before {\n\tcontent: \"\\f472\";\n}\n\n.dashicons-dismiss:before {\n\tcontent: \"\\f153\";\n}\n\n.dashicons-download:before {\n\tcontent: \"\\f316\";\n}\n\n.dashicons-drumstick:before {\n\tcontent: \"\\f17f\";\n}\n\n.dashicons-edit-large:before {\n\tcontent: \"\\f327\";\n}\n\n.dashicons-edit-page:before {\n\tcontent: \"\\f186\";\n}\n\n.dashicons-edit:before {\n\tcontent: \"\\f464\";\n}\n\n.dashicons-editor-aligncenter:before {\n\tcontent: \"\\f207\";\n}\n\n.dashicons-editor-alignleft:before {\n\tcontent: \"\\f206\";\n}\n\n.dashicons-editor-alignright:before {\n\tcontent: \"\\f208\";\n}\n\n.dashicons-editor-bold:before {\n\tcontent: \"\\f200\";\n}\n\n.dashicons-editor-break:before {\n\tcontent: \"\\f474\";\n}\n\n.dashicons-editor-code-duplicate:before {\n\tcontent: \"\\f494\";\n}\n\n.dashicons-editor-code:before {\n\tcontent: \"\\f475\";\n}\n\n.dashicons-editor-contract:before {\n\tcontent: \"\\f506\";\n}\n\n.dashicons-editor-customchar:before {\n\tcontent: \"\\f220\";\n}\n\n.dashicons-editor-expand:before {\n\tcontent: \"\\f211\";\n}\n\n.dashicons-editor-help:before {\n\tcontent: \"\\f223\";\n}\n\n.dashicons-editor-indent:before {\n\tcontent: \"\\f222\";\n}\n\n.dashicons-editor-insertmore:before {\n\tcontent: \"\\f209\";\n}\n\n.dashicons-editor-italic:before {\n\tcontent: \"\\f201\";\n}\n\n.dashicons-editor-justify:before {\n\tcontent: \"\\f214\";\n}\n\n.dashicons-editor-kitchensink:before {\n\tcontent: \"\\f212\";\n}\n\n.dashicons-editor-ltr:before {\n\tcontent: \"\\f10c\";\n}\n\n.dashicons-editor-ol-rtl:before {\n\tcontent: \"\\f12c\";\n}\n\n.dashicons-editor-ol:before {\n\tcontent: \"\\f204\";\n}\n\n.dashicons-editor-outdent:before {\n\tcontent: \"\\f221\";\n}\n\n.dashicons-editor-paragraph:before {\n\tcontent: \"\\f476\";\n}\n\n.dashicons-editor-paste-text:before {\n\tcontent: \"\\f217\";\n}\n\n.dashicons-editor-paste-word:before {\n\tcontent: \"\\f216\";\n}\n\n.dashicons-editor-quote:before {\n\tcontent: \"\\f205\";\n}\n\n.dashicons-editor-removeformatting:before {\n\tcontent: \"\\f218\";\n}\n\n.dashicons-editor-rtl:before {\n\tcontent: \"\\f320\";\n}\n\n.dashicons-editor-spellcheck:before {\n\tcontent: \"\\f210\";\n}\n\n.dashicons-editor-strikethrough:before {\n\tcontent: \"\\f224\";\n}\n\n.dashicons-editor-table:before {\n\tcontent: \"\\f535\";\n}\n\n.dashicons-editor-textcolor:before {\n\tcontent: \"\\f215\";\n}\n\n.dashicons-editor-ul:before {\n\tcontent: \"\\f203\";\n}\n\n.dashicons-editor-underline:before {\n\tcontent: \"\\f213\";\n}\n\n.dashicons-editor-unlink:before {\n\tcontent: \"\\f225\";\n}\n\n.dashicons-editor-video:before {\n\tcontent: \"\\f219\";\n}\n\n.dashicons-ellipsis:before {\n\tcontent: \"\\f11c\";\n}\n\n.dashicons-email-alt:before {\n\tcontent: \"\\f466\";\n}\n\n.dashicons-email-alt2:before {\n\tcontent: \"\\f467\";\n}\n\n.dashicons-email:before {\n\tcontent: \"\\f465\";\n}\n\n.dashicons-embed-audio:before {\n\tcontent: \"\\f13e\";\n}\n\n.dashicons-embed-generic:before {\n\tcontent: \"\\f13f\";\n}\n\n.dashicons-embed-photo:before {\n\tcontent: \"\\f144\";\n}\n\n.dashicons-embed-post:before {\n\tcontent: \"\\f146\";\n}\n\n.dashicons-embed-video:before {\n\tcontent: \"\\f149\";\n}\n\n.dashicons-excerpt-view:before {\n\tcontent: \"\\f164\";\n}\n\n.dashicons-exit:before {\n\tcontent: \"\\f14a\";\n}\n\n.dashicons-external:before {\n\tcontent: \"\\f504\";\n}\n\n.dashicons-facebook-alt:before {\n\tcontent: \"\\f305\";\n}\n\n.dashicons-facebook:before {\n\tcontent: \"\\f304\";\n}\n\n.dashicons-feedback:before {\n\tcontent: \"\\f175\";\n}\n\n.dashicons-filter:before {\n\tcontent: \"\\f536\";\n}\n\n.dashicons-flag:before {\n\tcontent: \"\\f227\";\n}\n\n.dashicons-food:before {\n\tcontent: \"\\f187\";\n}\n\n.dashicons-format-aside:before {\n\tcontent: \"\\f123\";\n}\n\n.dashicons-format-audio:before {\n\tcontent: \"\\f127\";\n}\n\n.dashicons-format-chat:before {\n\tcontent: \"\\f125\";\n}\n\n.dashicons-format-gallery:before {\n\tcontent: \"\\f161\";\n}\n\n.dashicons-format-image:before {\n\tcontent: \"\\f128\";\n}\n\n.dashicons-format-quote:before {\n\tcontent: \"\\f122\";\n}\n\n.dashicons-format-status:before {\n\tcontent: \"\\f130\";\n}\n\n.dashicons-format-video:before {\n\tcontent: \"\\f126\";\n}\n\n.dashicons-forms:before {\n\tcontent: \"\\f314\";\n}\n\n.dashicons-fullscreen-alt:before {\n\tcontent: \"\\f188\";\n}\n\n.dashicons-fullscreen-exit-alt:before {\n\tcontent: \"\\f189\";\n}\n\n.dashicons-games:before {\n\tcontent: \"\\f18a\";\n}\n\n.dashicons-google:before {\n\tcontent: \"\\f18b\";\n}\n\n.dashicons-googleplus:before {\n\tcontent: \"\\f462\";\n}\n\n.dashicons-grid-view:before {\n\tcontent: \"\\f509\";\n}\n\n.dashicons-groups:before {\n\tcontent: \"\\f307\";\n}\n\n.dashicons-hammer:before {\n\tcontent: \"\\f308\";\n}\n\n.dashicons-heading:before {\n\tcontent: \"\\f10e\";\n}\n\n.dashicons-heart:before {\n\tcontent: \"\\f487\";\n}\n\n.dashicons-hidden:before {\n\tcontent: \"\\f530\";\n}\n\n.dashicons-hourglass:before {\n\tcontent: \"\\f18c\";\n}\n\n.dashicons-html:before {\n\tcontent: \"\\f14b\";\n}\n\n.dashicons-id-alt:before {\n\tcontent: \"\\f337\";\n}\n\n.dashicons-id:before {\n\tcontent: \"\\f336\";\n}\n\n.dashicons-image-crop:before {\n\tcontent: \"\\f165\";\n}\n\n.dashicons-image-filter:before {\n\tcontent: \"\\f533\";\n}\n\n.dashicons-image-flip-horizontal:before {\n\tcontent: \"\\f169\";\n}\n\n.dashicons-image-flip-vertical:before {\n\tcontent: \"\\f168\";\n}\n\n.dashicons-image-rotate-left:before {\n\tcontent: \"\\f166\";\n}\n\n.dashicons-image-rotate-right:before {\n\tcontent: \"\\f167\";\n}\n\n.dashicons-image-rotate:before {\n\tcontent: \"\\f531\";\n}\n\n.dashicons-images-alt:before {\n\tcontent: \"\\f232\";\n}\n\n.dashicons-images-alt2:before {\n\tcontent: \"\\f233\";\n}\n\n.dashicons-index-card:before {\n\tcontent: \"\\f510\";\n}\n\n.dashicons-info-outline:before {\n\tcontent: \"\\f14c\";\n}\n\n.dashicons-info:before {\n\tcontent: \"\\f348\";\n}\n\n.dashicons-insert-after:before {\n\tcontent: \"\\f14d\";\n}\n\n.dashicons-insert-before:before {\n\tcontent: \"\\f14e\";\n}\n\n.dashicons-insert:before {\n\tcontent: \"\\f10f\";\n}\n\n.dashicons-instagram:before {\n\tcontent: \"\\f12d\";\n}\n\n.dashicons-laptop:before {\n\tcontent: \"\\f547\";\n}\n\n.dashicons-layout:before {\n\tcontent: \"\\f538\";\n}\n\n.dashicons-leftright:before {\n\tcontent: \"\\f229\";\n}\n\n.dashicons-lightbulb:before {\n\tcontent: \"\\f339\";\n}\n\n.dashicons-linkedin:before {\n\tcontent: \"\\f18d\";\n}\n\n.dashicons-list-view:before {\n\tcontent: \"\\f163\";\n}\n\n.dashicons-location-alt:before {\n\tcontent: \"\\f231\";\n}\n\n.dashicons-location:before {\n\tcontent: \"\\f230\";\n}\n\n.dashicons-lock-duplicate:before {\n\tcontent: \"\\f315\";\n}\n\n.dashicons-lock:before {\n\tcontent: \"\\f160\";\n}\n\n.dashicons-marker:before {\n\tcontent: \"\\f159\";\n}\n\n.dashicons-media-archive:before {\n\tcontent: \"\\f501\";\n}\n\n.dashicons-media-audio:before {\n\tcontent: \"\\f500\";\n}\n\n.dashicons-media-code:before {\n\tcontent: \"\\f499\";\n}\n\n.dashicons-media-default:before {\n\tcontent: \"\\f498\";\n}\n\n.dashicons-media-document:before {\n\tcontent: \"\\f497\";\n}\n\n.dashicons-media-interactive:before {\n\tcontent: \"\\f496\";\n}\n\n.dashicons-media-spreadsheet:before {\n\tcontent: \"\\f495\";\n}\n\n.dashicons-media-text:before {\n\tcontent: \"\\f491\";\n}\n\n.dashicons-media-video:before {\n\tcontent: \"\\f490\";\n}\n\n.dashicons-megaphone:before {\n\tcontent: \"\\f488\";\n}\n\n.dashicons-menu-alt:before {\n\tcontent: \"\\f228\";\n}\n\n.dashicons-menu-alt2:before {\n\tcontent: \"\\f329\";\n}\n\n.dashicons-menu-alt3:before {\n\tcontent: \"\\f349\";\n}\n\n.dashicons-menu:before {\n\tcontent: \"\\f333\";\n}\n\n.dashicons-microphone:before {\n\tcontent: \"\\f482\";\n}\n\n.dashicons-migrate:before {\n\tcontent: \"\\f310\";\n}\n\n.dashicons-minus:before {\n\tcontent: \"\\f460\";\n}\n\n.dashicons-money-alt:before {\n\tcontent: \"\\f18e\";\n}\n\n.dashicons-money:before {\n\tcontent: \"\\f526\";\n}\n\n.dashicons-move:before {\n\tcontent: \"\\f545\";\n}\n\n.dashicons-nametag:before {\n\tcontent: \"\\f484\";\n}\n\n.dashicons-networking:before {\n\tcontent: \"\\f325\";\n}\n\n.dashicons-no-alt:before {\n\tcontent: \"\\f335\";\n}\n\n.dashicons-no:before {\n\tcontent: \"\\f158\";\n}\n\n.dashicons-open-folder:before {\n\tcontent: \"\\f18f\";\n}\n\n.dashicons-palmtree:before {\n\tcontent: \"\\f527\";\n}\n\n.dashicons-paperclip:before {\n\tcontent: \"\\f546\";\n}\n\n.dashicons-pdf:before {\n\tcontent: \"\\f190\";\n}\n\n.dashicons-performance:before {\n\tcontent: \"\\f311\";\n}\n\n.dashicons-pets:before {\n\tcontent: \"\\f191\";\n}\n\n.dashicons-phone:before {\n\tcontent: \"\\f525\";\n}\n\n.dashicons-pinterest:before {\n\tcontent: \"\\f192\";\n}\n\n.dashicons-playlist-audio:before {\n\tcontent: \"\\f492\";\n}\n\n.dashicons-playlist-video:before {\n\tcontent: \"\\f493\";\n}\n\n.dashicons-plugins-checked:before {\n\tcontent: \"\\f485\";\n}\n\n.dashicons-plus-alt:before {\n\tcontent: \"\\f502\";\n}\n\n.dashicons-plus-alt2:before {\n\tcontent: \"\\f543\";\n}\n\n.dashicons-plus:before {\n\tcontent: \"\\f132\";\n}\n\n.dashicons-podio:before {\n\tcontent: \"\\f19c\";\n}\n\n.dashicons-portfolio:before {\n\tcontent: \"\\f322\";\n}\n\n.dashicons-post-status:before {\n\tcontent: \"\\f173\";\n}\n\n.dashicons-pressthis:before {\n\tcontent: \"\\f157\";\n}\n\n.dashicons-printer:before {\n\tcontent: \"\\f193\";\n}\n\n.dashicons-privacy:before {\n\tcontent: \"\\f194\";\n}\n\n.dashicons-products:before {\n\tcontent: \"\\f312\";\n}\n\n.dashicons-randomize:before {\n\tcontent: \"\\f503\";\n}\n\n.dashicons-reddit:before {\n\tcontent: \"\\f195\";\n}\n\n.dashicons-redo:before {\n\tcontent: \"\\f172\";\n}\n\n.dashicons-remove:before {\n\tcontent: \"\\f14f\";\n}\n\n.dashicons-rest-api:before {\n\tcontent: \"\\f124\";\n}\n\n.dashicons-rss:before {\n\tcontent: \"\\f303\";\n}\n\n.dashicons-saved:before {\n\tcontent: \"\\f15e\";\n}\n\n.dashicons-schedule:before {\n\tcontent: \"\\f489\";\n}\n\n.dashicons-screenoptions:before {\n\tcontent: \"\\f180\";\n}\n\n.dashicons-search:before {\n\tcontent: \"\\f179\";\n}\n\n.dashicons-share-alt:before {\n\tcontent: \"\\f240\";\n}\n\n.dashicons-share-alt2:before {\n\tcontent: \"\\f242\";\n}\n\n.dashicons-share:before {\n\tcontent: \"\\f237\";\n}\n\n.dashicons-shield-alt:before {\n\tcontent: \"\\f334\";\n}\n\n.dashicons-shield:before {\n\tcontent: \"\\f332\";\n}\n\n.dashicons-shortcode:before {\n\tcontent: \"\\f150\";\n}\n\n.dashicons-slides:before {\n\tcontent: \"\\f181\";\n}\n\n.dashicons-smartphone:before {\n\tcontent: \"\\f470\";\n}\n\n.dashicons-smiley:before {\n\tcontent: \"\\f328\";\n}\n\n.dashicons-sort:before {\n\tcontent: \"\\f156\";\n}\n\n.dashicons-sos:before {\n\tcontent: \"\\f468\";\n}\n\n.dashicons-spotify:before {\n\tcontent: \"\\f196\";\n}\n\n.dashicons-star-empty:before {\n\tcontent: \"\\f154\";\n}\n\n.dashicons-star-filled:before {\n\tcontent: \"\\f155\";\n}\n\n.dashicons-star-half:before {\n\tcontent: \"\\f459\";\n}\n\n.dashicons-sticky:before {\n\tcontent: \"\\f537\";\n}\n\n.dashicons-store:before {\n\tcontent: \"\\f513\";\n}\n\n.dashicons-superhero-alt:before {\n\tcontent: \"\\f197\";\n}\n\n.dashicons-superhero:before {\n\tcontent: \"\\f198\";\n}\n\n.dashicons-table-col-after:before {\n\tcontent: \"\\f151\";\n}\n\n.dashicons-table-col-before:before {\n\tcontent: \"\\f152\";\n}\n\n.dashicons-table-col-delete:before {\n\tcontent: \"\\f15a\";\n}\n\n.dashicons-table-row-after:before {\n\tcontent: \"\\f15b\";\n}\n\n.dashicons-table-row-before:before {\n\tcontent: \"\\f15c\";\n}\n\n.dashicons-table-row-delete:before {\n\tcontent: \"\\f15d\";\n}\n\n.dashicons-tablet:before {\n\tcontent: \"\\f471\";\n}\n\n.dashicons-tag:before {\n\tcontent: \"\\f323\";\n}\n\n.dashicons-tagcloud:before {\n\tcontent: \"\\f479\";\n}\n\n.dashicons-testimonial:before {\n\tcontent: \"\\f473\";\n}\n\n.dashicons-text-page:before {\n\tcontent: \"\\f121\";\n}\n\n.dashicons-text:before {\n\tcontent: \"\\f478\";\n}\n\n.dashicons-thumbs-down:before {\n\tcontent: \"\\f542\";\n}\n\n.dashicons-thumbs-up:before {\n\tcontent: \"\\f529\";\n}\n\n.dashicons-tickets-alt:before {\n\tcontent: \"\\f524\";\n}\n\n.dashicons-tickets:before {\n\tcontent: \"\\f486\";\n}\n\n.dashicons-tide:before {\n\tcontent: \"\\f10d\";\n}\n\n.dashicons-translation:before {\n\tcontent: \"\\f326\";\n}\n\n.dashicons-trash:before {\n\tcontent: \"\\f182\";\n}\n\n.dashicons-twitch:before {\n\tcontent: \"\\f199\";\n}\n\n.dashicons-twitter-alt:before {\n\tcontent: \"\\f302\";\n}\n\n.dashicons-twitter:before {\n\tcontent: \"\\f301\";\n}\n\n.dashicons-undo:before {\n\tcontent: \"\\f171\";\n}\n\n.dashicons-universal-access-alt:before {\n\tcontent: \"\\f507\";\n}\n\n.dashicons-universal-access:before {\n\tcontent: \"\\f483\";\n}\n\n.dashicons-unlock:before {\n\tcontent: \"\\f528\";\n}\n\n.dashicons-update-alt:before {\n\tcontent: \"\\f113\";\n}\n\n.dashicons-update:before {\n\tcontent: \"\\f463\";\n}\n\n.dashicons-upload:before {\n\tcontent: \"\\f317\";\n}\n\n.dashicons-vault:before {\n\tcontent: \"\\f178\";\n}\n\n.dashicons-video-alt:before {\n\tcontent: \"\\f234\";\n}\n\n.dashicons-video-alt2:before {\n\tcontent: \"\\f235\";\n}\n\n.dashicons-video-alt3:before {\n\tcontent: \"\\f236\";\n}\n\n.dashicons-visibility:before {\n\tcontent: \"\\f177\";\n}\n\n.dashicons-warning:before {\n\tcontent: \"\\f534\";\n}\n\n.dashicons-welcome-add-page:before {\n\tcontent: \"\\f133\";\n}\n\n.dashicons-welcome-comments:before {\n\tcontent: \"\\f117\";\n}\n\n.dashicons-welcome-learn-more:before {\n\tcontent: \"\\f118\";\n}\n\n.dashicons-welcome-view-site:before {\n\tcontent: \"\\f115\";\n}\n\n.dashicons-welcome-widgets-menus:before {\n\tcontent: \"\\f116\";\n}\n\n.dashicons-welcome-write-blog:before {\n\tcontent: \"\\f119\";\n}\n\n.dashicons-whatsapp:before {\n\tcontent: \"\\f19a\";\n}\n\n.dashicons-wordpress-alt:before {\n\tcontent: \"\\f324\";\n}\n\n.dashicons-wordpress:before {\n\tcontent: \"\\f120\";\n}\n\n.dashicons-xing:before {\n\tcontent: \"\\f19d\";\n}\n\n.dashicons-yes-alt:before {\n\tcontent: \"\\f12a\";\n}\n\n.dashicons-yes:before {\n\tcontent: \"\\f147\";\n}\n\n.dashicons-youtube:before {\n\tcontent: \"\\f19b\";\n}\n\n/* Additional CSS classes, manually added to the CSS template file */\n\n.dashicons-editor-distractionfree:before {\n\tcontent: \"\\f211\";\n}\n\n/* This is a typo, but was previously released. It should remain for backward compatibility. See https://core.trac.wordpress.org/ticket/30832. */\n.dashicons-exerpt-view:before {\n\tcontent: \"\\f164\";\n}\n\n.dashicons-format-links:before {\n\tcontent: \"\\f103\";\n}\n\n.dashicons-format-standard:before {\n\tcontent: \"\\f109\";\n}\n\n.dashicons-post-trash:before {\n\tcontent: \"\\f182\";\n}\n\n.dashicons-share1:before {\n\tcontent: \"\\f237\";\n}\n\n.dashicons-welcome-edit-page:before {\n\tcontent: \"\\f119\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-devicons-pack/ikonli-devicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-devicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.devicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.devicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.devicons.DeviconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.devicons.DeviconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-devicons-pack/src/main/java/org/kordamp/ikonli/devicons/Devicons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.devicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Devicons implements Ikon {\n    // latest is e6c5\n    ANDROID(\"di-android\", '\\ue60e'),\n    ANGULAR(\"di-angular\", '\\ue653'),\n    APPCELERATOR(\"di-appcelerator\", '\\ue6ab'),\n    APPLE(\"di-apple\", '\\ue611'),\n    APPSTORE(\"di-appstore\", '\\ue613'),\n    APTANA(\"di-aptana\", '\\ue699'),\n    ASTERISK(\"di-asterisk\", '\\ue6ac'),\n    ATLASSIAN(\"di-atlassian\", '\\ue65b'),\n    ATOM(\"di-atom\", '\\ue664'),\n    AWS(\"di-aws\", '\\ue6ad'),\n    BACKBONE(\"di-backbone\", '\\ue652'),\n    BING_SMALL(\"di-bing_small\", '\\ue600'),\n    BINTRAY(\"di-bintray\", '\\ue694'),\n    BITBUCKET(\"di-bitbucket\", '\\ue603'),\n    BLACKBERRY(\"di-blackberry\", '\\ue623'),\n    BOOTSTRAP(\"di-bootstrap\", '\\ue647'),\n    BOWER(\"di-bower\", '\\ue64d'),\n    BRACKETS(\"di-brackets\", '\\ue69d'),\n    BUGSENSE(\"di-bugsense\", '\\ue68d'),\n    CELLULOID(\"di-celluloid\", '\\ue66b'),\n    CHROME(\"di-chrome\", '\\ue643'),\n    CISCO(\"di-cisco\", '\\ue665'),\n    CLOJURE(\"di-clojure\", '\\ue668'),\n    CLOJURE_ALT(\"di-clojure_alt\", '\\ue66a'),\n    CLOUD9(\"di-cloud9\", '\\ue69f'),\n    CODA(\"di-coda\", '\\ue693'),\n    CODE(\"di-code\", '\\ue696'),\n    CODEIGNITER(\"di-codeigniter\", '\\ue680'),\n    CODEPEN(\"di-codepen\", '\\ue616'),\n    CODE_BADGE(\"di-code_badge\", '\\ue6a3'),\n    CODROPS(\"di-codrops\", '\\ue62f'),\n    COFFEESCRIPT(\"di-coffeescript\", '\\ue651'),\n    COMPASS(\"di-compass\", '\\ue661'),\n    COMPOSER(\"di-composer\", '\\ue683'),\n    CREATIVECOMMONS(\"di-creativecommons\", '\\ue689'),\n    CREATIVECOMMONS_BADGE(\"di-creativecommons_badge\", '\\ue68a'),\n    CSS3(\"di-css3\", '\\ue649'),\n    CSS3_FULL(\"di-css3_full\", '\\ue64a'),\n    CSSDECK(\"di-cssdeck\", '\\ue62a'),\n    CSS_TRICKS(\"di-css_tricks\", '\\ue601'),\n    DART(\"di-dart\", '\\ue698'),\n    DATABASE(\"di-database\", '\\ue606'),\n    DEBIAN(\"di-debian\", '\\ue67d'),\n    DIGITAL_OCEAN(\"di-digital-ocean\", '\\ue6ae'),\n    DJANGO(\"di-django\", '\\ue61d'),\n    DLANG(\"di-dlang\", '\\ue6af'),\n    DOCKER(\"di-docker\", '\\ue6b0'),\n    DOCTRINE(\"di-doctrine\", '\\ue674'),\n    DOJO(\"di-dojo\", '\\ue61c'),\n    DOTNET(\"di-dotnet\", '\\ue67f'),\n    DREAMWEAVER(\"di-dreamweaver\", '\\ue69c'),\n    DROPBOX(\"di-dropbox\", '\\ue607'),\n    DRUPAL(\"di-drupal\", '\\ue642'),\n    ECLIPSE(\"di-eclipse\", '\\ue69e'),\n    EMBER(\"di-ember\", '\\ue61b'),\n    ENVATO(\"di-envato\", '\\ue65d'),\n    ERLANG(\"di-erlang\", '\\ue6b1'),\n    EXTJS(\"di-extjs\", '\\ue68e'),\n    FIREBASE(\"di-firebase\", '\\ue687'),\n    FIREFOX(\"di-firefox\", '\\ue645'),\n    FSHARP(\"di-fsharp\", '\\ue6a7'),\n    GHOST(\"di-ghost\", '\\ue61f'),\n    GHOST_SMALL(\"di-ghost_small\", '\\ue614'),\n    GIT(\"di-git\", '\\ue602'),\n    GITHUB(\"di-github\", '\\ue60a'),\n    GITHUB_ALT(\"di-github_alt\", '\\ue608'),\n    GITHUB_BADGE(\"di-github_badge\", '\\ue609'),\n    GITHUB_FULL(\"di-github_full\", '\\ue617'),\n    GIT_BRANCH(\"di-git_branch\", '\\ue625'),\n    GIT_COMMIT(\"di-git_commit\", '\\ue629'),\n    GIT_COMPARE(\"di-git_compare\", '\\ue628'),\n    GIT_MERGE(\"di-git_merge\", '\\ue627'),\n    GIT_PULL_REQUEST(\"di-git_pull_request\", '\\ue626'),\n    GNU(\"di-gnu\", '\\ue679'),\n    GO(\"di-go\", '\\ue624'),\n    GOOGLE_ANALYTICS(\"di-google_analytics\", '\\ue660'),\n    GOOGLE_CLOUD_PLATFORM(\"di-google-cloud-platform\", '\\ue6b2'),\n    GOOGLE_DRIVE(\"di-google_drive\", '\\ue631'),\n    GRAILS(\"di-grails\", '\\ue6b3'),\n    GROOVY(\"di-groovy\", '\\ue675'),\n    GRUNT(\"di-grunt\", '\\ue64c'),\n    GULP(\"di-gulp\", '\\ue663'),\n    HACKERNEWS(\"di-hackernews\", '\\ue61a'),\n    HASKELL(\"di-haskell\", '\\ue677'),\n    HEROKU(\"di-heroku\", '\\ue67b'),\n    HTML5(\"di-html5\", '\\ue636'),\n    HTML5_3D_EFFECTS(\"di-html5_3d_effects\", '\\ue635'),\n    HTML5_CONNECTIVITY(\"di-html5_connectivity\", '\\ue634'),\n    HTML5_DEVICE_ACCESS(\"di-html5_device_access\", '\\ue633'),\n    HTML5_MULTIMEDIA(\"di-html5_multimedia\", '\\ue632'),\n    IE(\"di-ie\", '\\ue644'),\n    ILLUSTRATOR(\"di-illustrator\", '\\ue6b4'),\n    INTELLIJ(\"di-intellij\", '\\ue6b5'),\n    IONIC(\"di-ionic\", '\\ue6a9'),\n    JAVA(\"di-java\", '\\ue638'),\n    JAVASCRIPT(\"di-javascript\", '\\ue64e'),\n    JAVASCRIPT_BADGE(\"di-javascript_badge\", '\\ue681'),\n    JAVASCRIPT_SHIELD(\"di-javascript_shield\", '\\ue64f'),\n    JEKYLL_SMALL(\"di-jekyll_small\", '\\ue60d'),\n    JENKINS(\"di-jenkins\", '\\ue667'),\n    JIRA(\"di-jira\", '\\ue65c'),\n    JOOMLA(\"di-joomla\", '\\ue641'),\n    JQUERY(\"di-jquery\", '\\ue650'),\n    JQUERY_UI(\"di-jquery_ui\", '\\ue654'),\n    KOMODO(\"di-komodo\", '\\ue692'),\n    KRAKENJS(\"di-krakenjs\", '\\ue685'),\n    KRAKENJS_BADGE(\"di-krakenjs_badge\", '\\ue684'),\n    LARAVEL(\"di-laravel\", '\\ue63f'),\n    LESS(\"di-less\", '\\ue658'),\n    LINUX(\"di-linux\", '\\ue612'),\n    MAGENTO(\"di-magento\", '\\ue640'),\n    MAILCHIMP(\"di-mailchimp\", '\\ue69a'),\n    MARKDOWN(\"di-markdown\", '\\ue63e'),\n    MATERIALIZECSS(\"di-materializecss\", '\\ue6b6'),\n    METEOR(\"di-meteor\", '\\ue6a5'),\n    METEORFULL(\"di-meteorfull\", '\\ue6a6'),\n    MITLICENCE(\"di-mitlicence\", '\\ue68b'),\n    MODERNIZR(\"di-modernizr\", '\\ue620'),\n    MONGODB(\"di-mongodb\", '\\ue6a4'),\n    MOOTOOLS(\"di-mootools\", '\\ue690'),\n    MOOTOOLS_BADGE(\"di-mootools_badge\", '\\ue68f'),\n    MOZILLA(\"di-mozilla\", '\\ue686'),\n    MSQL_SERVER(\"di-msql_server\", '\\ue67c'),\n    MYSQL(\"di-mysql\", '\\ue604'),\n    NANCY(\"di-nancy\", '\\ue666'),\n    NETBEANS(\"di-netbeans\", '\\ue69b'),\n    NETMAGAZINE(\"di-netmagazine\", '\\ue62e'),\n    NGINX(\"di-nginx\", '\\ue676'),\n    NODEJS(\"di-nodejs\", '\\ue619'),\n    NODEJS_SMALL(\"di-nodejs_small\", '\\ue618'),\n    NPM(\"di-npm\", '\\ue61e'),\n    ONEDRIVE(\"di-onedrive\", '\\ue662'),\n    OPENSHIFT(\"di-openshift\", '\\ue6b7'),\n    OPENSOURCE(\"di-opensource\", '\\ue671'),\n    OPERA(\"di-opera\", '\\ue646'),\n    PERL(\"di-perl\", '\\ue669'),\n    PHONEGAP(\"di-phonegap\", '\\ue630'),\n    PHOTOSHOP(\"di-photoshop\", '\\ue6b8'),\n    PHP(\"di-php\", '\\ue63d'),\n    POSTGRESQL(\"di-postgresql\", '\\ue66e'),\n    PROLOG(\"di-prolog\", '\\ue6a1'),\n    PYTHON(\"di-python\", '\\ue63c'),\n    RACKSPACE(\"di-rackspace\", '\\ue6b9'),\n    RAPHAEL(\"di-raphael\", '\\ue65f'),\n    RASPBERRY_PI(\"di-raspberry_pi\", '\\ue622'),\n    REACT(\"di-react\", '\\ue6ba'),\n    REDHAT(\"di-redhat\", '\\ue6bb'),\n    REDIS(\"di-redis\", '\\ue66d'),\n    REQUIREJS(\"di-requirejs\", '\\ue670'),\n    RESPONSIVE(\"di-responsive\", '\\ue697'),\n    RUBY(\"di-ruby\", '\\ue639'),\n    RUBY_ON_RAILS(\"di-ruby_on_rails\", '\\ue63b'),\n    RUBY_ROUGH(\"di-ruby_rough\", '\\ue691'),\n    RUST(\"di-rust\", '\\ue6a8'),\n    SAFARI(\"di-safari\", '\\ue648'),\n    SASS(\"di-sass\", '\\ue64b'),\n    SCALA(\"di-scala\", '\\ue637'),\n    SCRIPTCS(\"di-scriptcs\", '\\ue6bc'),\n    SCRUM(\"di-scrum\", '\\ue6a0'),\n    SENCHATOUCH(\"di-senchatouch\", '\\ue68c'),\n    SIZZLEJS(\"di-sizzlejs\", '\\ue688'),\n    SMASHING_MAGAZINE(\"di-smashing_magazine\", '\\ue62d'),\n    SNAP_SVG(\"di-snap_svg\", '\\ue65e'),\n    SQLLITE(\"di-sqllite\", '\\ue6c4'),\n    STACKOVERFLOW(\"di-stackoverflow\", '\\ue610'),\n    STREAMLINE(\"di-streamline\", '\\ue605'),\n    STYLUS(\"di-stylus\", '\\ue659'),\n    SWIFT(\"di-swift\", '\\ue655'),\n    SYMFONY(\"di-symfony\", '\\ue656'),\n    SYMFONY_BADGE(\"di-symfony_badge\", '\\ue657'),\n    TECHCRUNCH(\"di-techcrunch\", '\\ue62c'),\n    TERMINAL(\"di-terminal\", '\\ue695'),\n    TERMINAL_BADGE(\"di-terminal_badge\", '\\ue6a2'),\n    TRAVIS(\"di-travis\", '\\ue67e'),\n    TRELLO(\"di-trello\", '\\ue65a'),\n    TYPO3(\"di-typo3\", '\\ue672'),\n    UBUNTU(\"di-ubuntu\", '\\ue63a'),\n    UIKIT(\"di-uikit\", '\\ue673'),\n    UNITY_SMALL(\"di-unity_small\", '\\ue621'),\n    VIM(\"di-vim\", '\\ue6c5'),\n    VISUALSTUDIO(\"di-visualstudio\", '\\ue60c'),\n    W3C(\"di-w3c\", '\\ue66c'),\n    WEBPLATFORM(\"di-webplatform\", '\\ue66f'),\n    WINDOWS(\"di-windows\", '\\ue60f'),\n    WORDPRESS(\"di-wordpress\", '\\ue60b'),\n    YAHOO(\"di-yahoo\", '\\ue615'),\n    YAHOO_SMALL(\"di-yahoo_small\", '\\ue62b'),\n    YEOMAN(\"di-yeoman\", '\\ue67a'),\n    YII(\"di-yii\", '\\ue682'),\n    ZEND(\"di-zend\", '\\ue678');\n\n    public static Devicons findByDescription(String description) {\n        for (Devicons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Devicons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-devicons-pack/src/main/java/org/kordamp/ikonli/devicons/DeviconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.devicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class DeviconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/devicons/1.8.0/fonts/devicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"di-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Devicons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Devicons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-devicons-pack/src/main/java/org/kordamp/ikonli/devicons/DeviconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.devicons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class DeviconsIkonProvider implements IkonProvider<Devicons> {\n    @Override\n    public Class<Devicons> getIkon() {\n        return Devicons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-devicons-pack/src/main/resources/META-INF/resources/devicons/1.8.0/css/devicons.css",
    "content": "﻿/*!\n *  Devicons 1.8.0 made by Theodore Vorillas / http://vorillaz.com \n */\n@font-face {\n  font-family: 'Devicons';\n  src: url(\"../fonts/devicons.eot?xqxft6\");\n  src: url(\"../fonts/devicons.eot?#iefixxqxft6\") format(\"embedded-opentype\"), url(\"../fonts/devicons.woff?xqxft6\") format(\"woff\"), url(\"../fonts/devicons.ttf?xqxft6\") format(\"truetype\"), url(\"../fonts/devicons.svg?xqxft6#devicons\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n.devicons {\n  font-family: 'Devicons';\n  speak: none;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.devicons-git:before {\n  content: \"\\e602\";\n}\n\n.devicons-git_compare:before {\n  content: \"\\e628\";\n}\n\n.devicons-git_branch:before {\n  content: \"\\e625\";\n}\n\n.devicons-git_commit:before {\n  content: \"\\e629\";\n}\n\n.devicons-git_pull_request:before {\n  content: \"\\e626\";\n}\n\n.devicons-git_merge:before {\n  content: \"\\e627\";\n}\n\n.devicons-bitbucket:before {\n  content: \"\\e603\";\n}\n\n.devicons-github_alt:before {\n  content: \"\\e608\";\n}\n\n.devicons-github_badge:before {\n  content: \"\\e609\";\n}\n\n.devicons-github:before {\n  content: \"\\e60a\";\n}\n\n.devicons-github_full:before {\n  content: \"\\e617\";\n}\n\n.devicons-java:before {\n  content: \"\\e638\";\n}\n\n.devicons-ruby:before {\n  content: \"\\e639\";\n}\n\n.devicons-scala:before {\n  content: \"\\e637\";\n}\n\n.devicons-python:before {\n  content: \"\\e63c\";\n}\n\n.devicons-go:before {\n  content: \"\\e624\";\n}\n\n.devicons-ruby_on_rails:before {\n  content: \"\\e63b\";\n}\n\n.devicons-django:before {\n  content: \"\\e61d\";\n}\n\n.devicons-markdown:before {\n  content: \"\\e63e\";\n}\n\n.devicons-php:before {\n  content: \"\\e63d\";\n}\n\n.devicons-mysql:before {\n  content: \"\\e604\";\n}\n\n.devicons-streamline:before {\n  content: \"\\e605\";\n}\n\n.devicons-database:before {\n  content: \"\\e606\";\n}\n\n.devicons-laravel:before {\n  content: \"\\e63f\";\n}\n\n.devicons-javascript:before {\n  content: \"\\e64e\";\n}\n\n.devicons-angular:before {\n  content: \"\\e653\";\n}\n\n.devicons-backbone:before {\n  content: \"\\e652\";\n}\n\n.devicons-coffeescript:before {\n  content: \"\\e651\";\n}\n\n.devicons-jquery:before {\n  content: \"\\e650\";\n}\n\n.devicons-modernizr:before {\n  content: \"\\e620\";\n}\n\n.devicons-jquery_ui:before {\n  content: \"\\e654\";\n}\n\n.devicons-ember:before {\n  content: \"\\e61b\";\n}\n\n.devicons-dojo:before {\n  content: \"\\e61c\";\n}\n\n.devicons-nodejs:before {\n  content: \"\\e619\";\n}\n\n.devicons-nodejs_small:before {\n  content: \"\\e618\";\n}\n\n.devicons-javascript_shield:before {\n  content: \"\\e64f\";\n}\n\n.devicons-bootstrap:before {\n  content: \"\\e647\";\n}\n\n.devicons-sass:before {\n  content: \"\\e64b\";\n}\n\n.devicons-css3_full:before {\n  content: \"\\e64a\";\n}\n\n.devicons-css3:before {\n  content: \"\\e649\";\n}\n\n.devicons-html5:before {\n  content: \"\\e636\";\n}\n\n.devicons-html5_multimedia:before {\n  content: \"\\e632\";\n}\n\n.devicons-html5_device_access:before {\n  content: \"\\e633\";\n}\n\n.devicons-html5_3d_effects:before {\n  content: \"\\e635\";\n}\n\n.devicons-html5_connectivity:before {\n  content: \"\\e634\";\n}\n\n.devicons-ghost_small:before {\n  content: \"\\e614\";\n}\n\n.devicons-ghost:before {\n  content: \"\\e61f\";\n}\n\n.devicons-magento:before {\n  content: \"\\e640\";\n}\n\n.devicons-joomla:before {\n  content: \"\\e641\";\n}\n\n.devicons-jekyll_small:before {\n  content: \"\\e60d\";\n}\n\n.devicons-drupal:before {\n  content: \"\\e642\";\n}\n\n.devicons-wordpress:before {\n  content: \"\\e60b\";\n}\n\n.devicons-grunt:before {\n  content: \"\\e64c\";\n}\n\n.devicons-bower:before {\n  content: \"\\e64d\";\n}\n\n.devicons-npm:before {\n  content: \"\\e61e\";\n}\n\n.devicons-yahoo_small:before {\n  content: \"\\e62b\";\n}\n\n.devicons-yahoo:before {\n  content: \"\\e615\";\n}\n\n.devicons-bing_small:before {\n  content: \"\\e600\";\n}\n\n.devicons-windows:before {\n  content: \"\\e60f\";\n}\n\n.devicons-linux:before {\n  content: \"\\e612\";\n}\n\n.devicons-ubuntu:before {\n  content: \"\\e63a\";\n}\n\n.devicons-android:before {\n  content: \"\\e60e\";\n}\n\n.devicons-apple:before {\n  content: \"\\e611\";\n}\n\n.devicons-appstore:before {\n  content: \"\\e613\";\n}\n\n.devicons-phonegap:before {\n  content: \"\\e630\";\n}\n\n.devicons-blackberry:before {\n  content: \"\\e623\";\n}\n\n.devicons-stackoverflow:before {\n  content: \"\\e610\";\n}\n\n.devicons-techcrunch:before {\n  content: \"\\e62c\";\n}\n\n.devicons-codrops:before {\n  content: \"\\e62f\";\n}\n\n.devicons-css_tricks:before {\n  content: \"\\e601\";\n}\n\n.devicons-smashing_magazine:before {\n  content: \"\\e62d\";\n}\n\n.devicons-netmagazine:before {\n  content: \"\\e62e\";\n}\n\n.devicons-codepen:before {\n  content: \"\\e616\";\n}\n\n.devicons-cssdeck:before {\n  content: \"\\e62a\";\n}\n\n.devicons-hackernews:before {\n  content: \"\\e61a\";\n}\n\n.devicons-dropbox:before {\n  content: \"\\e607\";\n}\n\n.devicons-google_drive:before {\n  content: \"\\e631\";\n}\n\n.devicons-visualstudio:before {\n  content: \"\\e60c\";\n}\n\n.devicons-unity_small:before {\n  content: \"\\e621\";\n}\n\n.devicons-raspberry_pi:before {\n  content: \"\\e622\";\n}\n\n.devicons-chrome:before {\n  content: \"\\e643\";\n}\n\n.devicons-ie:before {\n  content: \"\\e644\";\n}\n\n.devicons-firefox:before {\n  content: \"\\e645\";\n}\n\n.devicons-opera:before {\n  content: \"\\e646\";\n}\n\n.devicons-safari:before {\n  content: \"\\e648\";\n}\n\n.devicons-swift:before {\n  content: \"\\e655\";\n}\n\n.devicons-symfony:before {\n  content: \"\\e656\";\n}\n\n.devicons-symfony_badge:before {\n  content: \"\\e657\";\n}\n\n.devicons-less:before {\n  content: \"\\e658\";\n}\n\n.devicons-stylus:before {\n  content: \"\\e659\";\n}\n\n.devicons-trello:before {\n  content: \"\\e65a\";\n}\n\n.devicons-atlassian:before {\n  content: \"\\e65b\";\n}\n\n.devicons-jira:before {\n  content: \"\\e65c\";\n}\n\n.devicons-envato:before {\n  content: \"\\e65d\";\n}\n\n.devicons-snap_svg:before {\n  content: \"\\e65e\";\n}\n\n.devicons-raphael:before {\n  content: \"\\e65f\";\n}\n\n.devicons-google_analytics:before {\n  content: \"\\e660\";\n}\n\n.devicons-compass:before {\n  content: \"\\e661\";\n}\n\n.devicons-onedrive:before {\n  content: \"\\e662\";\n}\n\n.devicons-gulp:before {\n  content: \"\\e663\";\n}\n\n.devicons-atom:before {\n  content: \"\\e664\";\n}\n\n.devicons-cisco:before {\n  content: \"\\e665\";\n}\n\n.devicons-nancy:before {\n  content: \"\\e666\";\n}\n\n.devicons-clojure:before {\n  content: \"\\e668\";\n}\n\n.devicons-clojure_alt:before {\n  content: \"\\e66a\";\n}\n\n.devicons-perl:before {\n  content: \"\\e669\";\n}\n\n.devicons-celluloid:before {\n  content: \"\\e66b\";\n}\n\n.devicons-w3c:before {\n  content: \"\\e66c\";\n}\n\n.devicons-redis:before {\n  content: \"\\e66d\";\n}\n\n.devicons-postgresql:before {\n  content: \"\\e66e\";\n}\n\n.devicons-webplatform:before {\n  content: \"\\e66f\";\n}\n\n.devicons-jenkins:before {\n  content: \"\\e667\";\n}\n\n.devicons-requirejs:before {\n  content: \"\\e670\";\n}\n\n.devicons-opensource:before {\n  content: \"\\e671\";\n}\n\n.devicons-typo3:before {\n  content: \"\\e672\";\n}\n\n.devicons-uikit:before {\n  content: \"\\e673\";\n}\n\n.devicons-doctrine:before {\n  content: \"\\e674\";\n}\n\n.devicons-groovy:before {\n  content: \"\\e675\";\n}\n\n.devicons-nginx:before {\n  content: \"\\e676\";\n}\n\n.devicons-haskell:before {\n  content: \"\\e677\";\n}\n\n.devicons-zend:before {\n  content: \"\\e678\";\n}\n\n.devicons-gnu:before {\n  content: \"\\e679\";\n}\n\n.devicons-yeoman:before {\n  content: \"\\e67a\";\n}\n\n.devicons-heroku:before {\n  content: \"\\e67b\";\n}\n\n.devicons-debian:before {\n  content: \"\\e67d\";\n}\n\n.devicons-travis:before {\n  content: \"\\e67e\";\n}\n\n.devicons-dotnet:before {\n  content: \"\\e67f\";\n}\n\n.devicons-codeigniter:before {\n  content: \"\\e680\";\n}\n\n.devicons-javascript_badge:before {\n  content: \"\\e681\";\n}\n\n.devicons-yii:before {\n  content: \"\\e682\";\n}\n\n.devicons-msql_server:before {\n  content: \"\\e67c\";\n}\n\n.devicons-composer:before {\n  content: \"\\e683\";\n}\n\n.devicons-krakenjs_badge:before {\n  content: \"\\e684\";\n}\n\n.devicons-krakenjs:before {\n  content: \"\\e685\";\n}\n\n.devicons-mozilla:before {\n  content: \"\\e686\";\n}\n\n.devicons-firebase:before {\n  content: \"\\e687\";\n}\n\n.devicons-sizzlejs:before {\n  content: \"\\e688\";\n}\n\n.devicons-creativecommons:before {\n  content: \"\\e689\";\n}\n\n.devicons-creativecommons_badge:before {\n  content: \"\\e68a\";\n}\n\n.devicons-mitlicence:before {\n  content: \"\\e68b\";\n}\n\n.devicons-senchatouch:before {\n  content: \"\\e68c\";\n}\n\n.devicons-bugsense:before {\n  content: \"\\e68d\";\n}\n\n.devicons-extjs:before {\n  content: \"\\e68e\";\n}\n\n.devicons-mootools_badge:before {\n  content: \"\\e68f\";\n}\n\n.devicons-mootools:before {\n  content: \"\\e690\";\n}\n\n.devicons-ruby_rough:before {\n  content: \"\\e691\";\n}\n\n.devicons-komodo:before {\n  content: \"\\e692\";\n}\n\n.devicons-coda:before {\n  content: \"\\e693\";\n}\n\n.devicons-bintray:before {\n  content: \"\\e694\";\n}\n\n.devicons-terminal:before {\n  content: \"\\e695\";\n}\n\n.devicons-code:before {\n  content: \"\\e696\";\n}\n\n.devicons-responsive:before {\n  content: \"\\e697\";\n}\n\n.devicons-dart:before {\n  content: \"\\e698\";\n}\n\n.devicons-aptana:before {\n  content: \"\\e699\";\n}\n\n.devicons-mailchimp:before {\n  content: \"\\e69a\";\n}\n\n.devicons-netbeans:before {\n  content: \"\\e69b\";\n}\n\n.devicons-dreamweaver:before {\n  content: \"\\e69c\";\n}\n\n.devicons-brackets:before {\n  content: \"\\e69d\";\n}\n\n.devicons-eclipse:before {\n  content: \"\\e69e\";\n}\n\n.devicons-cloud9:before {\n  content: \"\\e69f\";\n}\n\n.devicons-scrum:before {\n  content: \"\\e6a0\";\n}\n\n.devicons-prolog:before {\n  content: \"\\e6a1\";\n}\n\n.devicons-terminal_badge:before {\n  content: \"\\e6a2\";\n}\n\n.devicons-code_badge:before {\n  content: \"\\e6a3\";\n}\n\n.devicons-mongodb:before {\n  content: \"\\e6a4\";\n}\n\n.devicons-meteor:before {\n  content: \"\\e6a5\";\n}\n\n.devicons-meteorfull:before {\n  content: \"\\e6a6\";\n}\n\n.devicons-fsharp:before {\n  content: \"\\e6a7\";\n}\n\n.devicons-rust:before {\n  content: \"\\e6a8\";\n}\n\n.devicons-ionic:before {\n  content: \"\\e6a9\";\n}\n\n.devicons-sublime:before {\n  content: \"\\e6aa\";\n}\n\n.devicons-appcelerator:before {\n  content: \"\\e6ab\";\n}\n\n.devicons-asterisk:before {\n  content: \"\\e6ac\";\n}\n\n.devicons-aws:before {\n  content: \"\\e6ad\";\n}\n\n.devicons-digital-ocean:before {\n  content: \"\\e6ae\";\n}\n\n.devicons-dlang:before {\n  content: \"\\e6af\";\n}\n\n.devicons-docker:before {\n  content: \"\\e6b0\";\n}\n\n.devicons-erlang:before {\n  content: \"\\e6b1\";\n}\n\n.devicons-google-cloud-platform:before {\n  content: \"\\e6b2\";\n}\n\n.devicons-grails:before {\n  content: \"\\e6b3\";\n}\n\n.devicons-illustrator:before {\n  content: \"\\e6b4\";\n}\n\n.devicons-intellij:before {\n  content: \"\\e6b5\";\n}\n\n.devicons-materializecss:before {\n  content: \"\\e6b6\";\n}\n\n.devicons-openshift:before {\n  content: \"\\e6b7\";\n}\n\n.devicons-photoshop:before {\n  content: \"\\e6b8\";\n}\n\n.devicons-rackspace:before {\n  content: \"\\e6b9\";\n}\n\n.devicons-react:before {\n  content: \"\\e6ba\";\n}\n\n.devicons-redhat:before {\n  content: \"\\e6bb\";\n}\n\n.devicons-scriptcs:before {\n  content: \"\\e6bc\";\n}\n\n.devicons-sqllite:before {\n  content: \"\\e6c4\";\n}\n\n.devicons-vim:before {\n  content: \"\\e6c5\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-elusive-pack/ikonli-elusive-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-elusive-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.elusive {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.elusive;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.elusive.ElusiveIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.elusive.ElusiveIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-elusive-pack/src/main/java/org/kordamp/ikonli/elusive/Elusive.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.elusive;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Elusive implements Ikon {\n    // latest is e72a\n    ADDRESS_BOOK(\"eli-address-book\", '\\ue729'),\n    ADDRESS_BOOK_ALT(\"eli-address-book-alt\", '\\ue728'),\n    ADJUST(\"eli-adjust\", '\\ue727'),\n    ADJUST_ALT(\"eli-adjust-alt\", '\\ue726'),\n    ADULT(\"eli-adult\", '\\ue725'),\n    ALIGN_CENTER(\"eli-align-center\", '\\ue724'),\n    ALIGN_JUSTIFY(\"eli-align-justify\", '\\ue723'),\n    ALIGN_LEFT(\"eli-align-left\", '\\ue722'),\n    ALIGN_RIGHT(\"eli-align-right\", '\\ue721'),\n    ARROW_DOWN(\"eli-arrow-down\", '\\ue720'),\n    ARROW_LEFT(\"eli-arrow-left\", '\\ue71f'),\n    ARROW_RIGHT(\"eli-arrow-right\", '\\ue71e'),\n    ARROW_UP(\"eli-arrow-up\", '\\ue71d'),\n    ASL(\"eli-asl\", '\\ue71c'),\n    ASTERISK(\"eli-asterisk\", '\\ue72a'),\n    BACKWARD(\"eli-backward\", '\\ue71b'),\n    BAN_CIRCLE(\"eli-ban-circle\", '\\ue71a'),\n    BARCODE(\"eli-barcode\", '\\ue719'),\n    BEHANCE(\"eli-behance\", '\\ue718'),\n    BLIND(\"eli-blind\", '\\ue716'),\n    BLOGGER(\"eli-blogger\", '\\ue715'),\n    BOLD(\"eli-bold\", '\\ue714'),\n    BOOK(\"eli-book\", '\\ue713'),\n    BOOKMARK(\"eli-bookmark\", '\\ue712'),\n    BOOKMARK_EMPTY(\"eli-bookmark-empty\", '\\ue711'),\n    BRAILLE(\"eli-braille\", '\\ue710'),\n    BRIEFCASE(\"eli-briefcase\", '\\ue70f'),\n    BROOM(\"eli-broom\", '\\ue70e'),\n    BRUSH(\"eli-brush\", '\\ue70d'),\n    BULB(\"eli-bulb\", '\\ue70c'),\n    BULLHORN(\"eli-bullhorn\", '\\ue70b'),\n    CALENDAR(\"eli-calendar\", '\\ue70a'),\n    CALENDAR_SIGN(\"eli-calendar-sign\", '\\ue709'),\n    CAMERA(\"eli-camera\", '\\ue708'),\n    CAR(\"eli-car\", '\\ue707'),\n    CARET_DOWN(\"eli-caret-down\", '\\ue706'),\n    CARET_LEFT(\"eli-caret-left\", '\\ue705'),\n    CARET_RIGHT(\"eli-caret-right\", '\\ue704'),\n    CARET_UP(\"eli-caret-up\", '\\ue703'),\n    CC(\"eli-cc\", '\\ue702'),\n    CERTIFICATE(\"eli-certificate\", '\\ue701'),\n    CHECK(\"eli-check\", '\\ue700'),\n    CHECK_EMPTY(\"eli-check-empty\", '\\ue6ff'),\n    CHEVRON_DOWN(\"eli-chevron-down\", '\\ue6fe'),\n    CHEVRON_LEFT(\"eli-chevron-left\", '\\ue6fd'),\n    CHEVRON_RIGHT(\"eli-chevron-right\", '\\ue6fc'),\n    CHEVRON_UP(\"eli-chevron-up\", '\\ue6fb'),\n    CHILD(\"eli-child\", '\\ue6fa'),\n    CIRCLE_ARROW_DOWN(\"eli-circle-arrow-down\", '\\ue6f9'),\n    CIRCLE_ARROW_LEFT(\"eli-circle-arrow-left\", '\\ue6f8'),\n    CIRCLE_ARROW_RIGHT(\"eli-circle-arrow-right\", '\\ue6f7'),\n    CIRCLE_ARROW_UP(\"eli-circle-arrow-up\", '\\ue6f6'),\n    CLOUD(\"eli-cloud\", '\\ue6f5'),\n    CLOUD_ALT(\"eli-cloud-alt\", '\\ue6f4'),\n    COG(\"eli-cog\", '\\ue6f3'),\n    COGS(\"eli-cogs\", '\\ue6f1'),\n    COG_ALT(\"eli-cog-alt\", '\\ue6f2'),\n    COMMENT(\"eli-comment\", '\\ue6f0'),\n    COMMENT_ALT(\"eli-comment-alt\", '\\ue6ef'),\n    COMPASS(\"eli-compass\", '\\ue6ee'),\n    COMPASS_ALT(\"eli-compass-alt\", '\\ue6ed'),\n    CREDIT_CARD(\"eli-credit-card\", '\\ue6ec'),\n    CSS(\"eli-css\", '\\ue6eb'),\n    DASHBOARD(\"eli-dashboard\", '\\ue6ea'),\n    DELICIOUS(\"eli-delicious\", '\\ue6e9'),\n    DELL(\"eli-dell\", '\\ue717'),\n    DEVIANTART(\"eli-deviantart\", '\\ue6e8'),\n    DIGG(\"eli-digg\", '\\ue6e7'),\n    DOWNLOAD(\"eli-download\", '\\ue6e6'),\n    DOWNLOAD_ALT(\"eli-download-alt\", '\\ue6e5'),\n    DRIBBBLE(\"eli-dribbble\", '\\ue6e4'),\n    EDIT(\"eli-edit\", '\\ue6e3'),\n    EJECT(\"eli-eject\", '\\ue6e2'),\n    ENVELOPE(\"eli-envelope\", '\\ue6e1'),\n    ENVELOPE_ALT(\"eli-envelope-alt\", '\\ue6e0'),\n    ERROR(\"eli-error\", '\\ue6df'),\n    ERROR_ALT(\"eli-error-alt\", '\\ue6de'),\n    EUR(\"eli-eur\", '\\ue6dd'),\n    EXCLAMATION_SIGN(\"eli-exclamation-sign\", '\\ue6dc'),\n    EYE_CLOSE(\"eli-eye-close\", '\\ue6db'),\n    EYE_OPEN(\"eli-eye-open\", '\\ue6da'),\n    FACEBOOK(\"eli-facebook\", '\\ue6d9'),\n    FACETIME_VIDEO(\"eli-facetime-video\", '\\ue6d8'),\n    FAST_BACKWARD(\"eli-fast-backward\", '\\ue6d7'),\n    FAST_FORWARD(\"eli-fast-forward\", '\\ue6d6'),\n    FEMALE(\"eli-female\", '\\ue6d5'),\n    FILE(\"eli-file\", '\\ue6d4'),\n    FILE_ALT(\"eli-file-alt\", '\\ue6d3'),\n    FILE_EDIT(\"eli-file-edit\", '\\ue6d2'),\n    FILE_EDIT_ALT(\"eli-file-edit-alt\", '\\ue6d1'),\n    FILE_NEW(\"eli-file-new\", '\\ue6d0'),\n    FILE_NEW_ALT(\"eli-file-new-alt\", '\\ue6cf'),\n    FILM(\"eli-film\", '\\ue6ce'),\n    FILTER(\"eli-filter\", '\\ue6cd'),\n    FIRE(\"eli-fire\", '\\ue6cc'),\n    FLAG(\"eli-flag\", '\\ue6cb'),\n    FLAG_ALT(\"eli-flag-alt\", '\\ue6ca'),\n    FLICKR(\"eli-flickr\", '\\ue6c9'),\n    FOLDER(\"eli-folder\", '\\ue6c8'),\n    FOLDER_CLOSE(\"eli-folder-close\", '\\ue6c7'),\n    FOLDER_OPEN(\"eli-folder-open\", '\\ue6c6'),\n    FOLDER_SIGN(\"eli-folder-sign\", '\\ue6c5'),\n    FONT(\"eli-font\", '\\ue6c4'),\n    FONTSIZE(\"eli-fontsize\", '\\ue6c3'),\n    FORK(\"eli-fork\", '\\ue6c2'),\n    FORWARD(\"eli-forward\", '\\ue6c1'),\n    FORWARD_ALT(\"eli-forward-alt\", '\\ue6c0'),\n    FOURSQUARE(\"eli-foursquare\", '\\ue6bf'),\n    FRIENDFEED(\"eli-friendfeed\", '\\ue6be'),\n    FRIENDFEED_RECT(\"eli-friendfeed-rect\", '\\ue6bd'),\n    FULLSCREEN(\"eli-fullscreen\", '\\ue6bc'),\n    GBP(\"eli-gbp\", '\\ue6bb'),\n    GIFT(\"eli-gift\", '\\ue6ba'),\n    GITHUB(\"eli-github\", '\\ue6b9'),\n    GITHUB_TEXT(\"eli-github-text\", '\\ue6b8'),\n    GLASS(\"eli-glass\", '\\ue6b7'),\n    GLASSES(\"eli-glasses\", '\\ue6b6'),\n    GLOBE(\"eli-globe\", '\\ue6b5'),\n    GLOBE_ALT(\"eli-globe-alt\", '\\ue6b4'),\n    GOOGLEPLUS(\"eli-googleplus\", '\\ue6b3'),\n    GRAPH(\"eli-graph\", '\\ue6b2'),\n    GRAPH_ALT(\"eli-graph-alt\", '\\ue6b1'),\n    GROUP(\"eli-group\", '\\ue6b0'),\n    GROUP_ALT(\"eli-group-alt\", '\\ue6af'),\n    GUIDEDOG(\"eli-guidedog\", '\\ue6ae'),\n    HAND_DOWN(\"eli-hand-down\", '\\ue6ad'),\n    HAND_LEFT(\"eli-hand-left\", '\\ue6ac'),\n    HAND_RIGHT(\"eli-hand-right\", '\\ue6ab'),\n    HAND_UP(\"eli-hand-up\", '\\ue6aa'),\n    HDD(\"eli-hdd\", '\\ue6a9'),\n    HEADPHONES(\"eli-headphones\", '\\ue6a8'),\n    HEARING_IMPAIRED(\"eli-hearing-impaired\", '\\ue6a7'),\n    HEART(\"eli-heart\", '\\ue6a6'),\n    HEART_ALT(\"eli-heart-alt\", '\\ue6a5'),\n    HEART_EMPTY(\"eli-heart-empty\", '\\ue6a4'),\n    HOME(\"eli-home\", '\\ue6a3'),\n    HOME_ALT(\"eli-home-alt\", '\\ue6a2'),\n    HOURGLASS(\"eli-hourglass\", '\\ue6a1'),\n    IDEA(\"eli-idea\", '\\ue6a0'),\n    IDEA_ALT(\"eli-idea-alt\", '\\ue69f'),\n    INBOX(\"eli-inbox\", '\\ue69e'),\n    INBOX_ALT(\"eli-inbox-alt\", '\\ue69d'),\n    INBOX_BOX(\"eli-inbox-box\", '\\ue69c'),\n    INDENT_LEFT(\"eli-indent-left\", '\\ue69b'),\n    INDENT_RIGHT(\"eli-indent-right\", '\\ue69a'),\n    INFO_SIGN(\"eli-info-sign\", '\\ue699'),\n    INSTAGRAM(\"eli-instagram\", '\\ue698'),\n    IPHONE_HOME(\"eli-iphone-home\", '\\ue697'),\n    ITALIC(\"eli-italic\", '\\ue696'),\n    KEY(\"eli-key\", '\\ue695'),\n    LAPTOP(\"eli-laptop\", '\\ue694'),\n    LAPTOP_ALT(\"eli-laptop-alt\", '\\ue693'),\n    LASTFM(\"eli-lastfm\", '\\ue692'),\n    LEAF(\"eli-leaf\", '\\ue691'),\n    LINES(\"eli-lines\", '\\ue690'),\n    LINK(\"eli-link\", '\\ue68f'),\n    LINKEDIN(\"eli-linkedin\", '\\ue68e'),\n    LIST(\"eli-list\", '\\ue68d'),\n    LIST_ALT(\"eli-list-alt\", '\\ue68c'),\n    LIVEJOURNAL(\"eli-livejournal\", '\\ue68b'),\n    LOCK(\"eli-lock\", '\\ue68a'),\n    LOCK_ALT(\"eli-lock-alt\", '\\ue689'),\n    MAGIC(\"eli-magic\", '\\ue688'),\n    MAGNET(\"eli-magnet\", '\\ue687'),\n    MALE(\"eli-male\", '\\ue686'),\n    MAP_MARKER(\"eli-map-marker\", '\\ue685'),\n    MAP_MARKER_ALT(\"eli-map-marker-alt\", '\\ue684'),\n    MIC(\"eli-mic\", '\\ue683'),\n    MIC_ALT(\"eli-mic-alt\", '\\ue682'),\n    MINUS(\"eli-minus\", '\\ue681'),\n    MINUS_SIGN(\"eli-minus-sign\", '\\ue680'),\n    MOVE(\"eli-move\", '\\ue67f'),\n    MUSIC(\"eli-music\", '\\ue67e'),\n    MYSPACE(\"eli-myspace\", '\\ue67d'),\n    NETWORK(\"eli-network\", '\\ue67c'),\n    OFF(\"eli-off\", '\\ue67b'),\n    OK(\"eli-ok\", '\\ue67a'),\n    OK_CIRCLE(\"eli-ok-circle\", '\\ue679'),\n    OK_SIGN(\"eli-ok-sign\", '\\ue678'),\n    OPENSOURCE(\"eli-opensource\", '\\ue677'),\n    PAPER_CLIP(\"eli-paper-clip\", '\\ue676'),\n    PAPER_CLIP_ALT(\"eli-paper-clip-alt\", '\\ue675'),\n    PATH(\"eli-path\", '\\ue674'),\n    PAUSE(\"eli-pause\", '\\ue673'),\n    PAUSE_ALT(\"eli-pause-alt\", '\\ue672'),\n    PENCIL(\"eli-pencil\", '\\ue671'),\n    PENCIL_ALT(\"eli-pencil-alt\", '\\ue670'),\n    PERSON(\"eli-person\", '\\ue66f'),\n    PHONE(\"eli-phone\", '\\ue66e'),\n    PHONE_ALT(\"eli-phone-alt\", '\\ue66d'),\n    PHOTO(\"eli-photo\", '\\ue66c'),\n    PHOTO_ALT(\"eli-photo-alt\", '\\ue66b'),\n    PICASA(\"eli-picasa\", '\\ue66a'),\n    PICTURE(\"eli-picture\", '\\ue669'),\n    PINTEREST(\"eli-pinterest\", '\\ue668'),\n    PLANE(\"eli-plane\", '\\ue667'),\n    PLAY(\"eli-play\", '\\ue666'),\n    PLAY_ALT(\"eli-play-alt\", '\\ue665'),\n    PLAY_CIRCLE(\"eli-play-circle\", '\\ue664'),\n    PLUS(\"eli-plus\", '\\ue663'),\n    PLUS_SIGN(\"eli-plus-sign\", '\\ue662'),\n    PODCAST(\"eli-podcast\", '\\ue661'),\n    PRINT(\"eli-print\", '\\ue660'),\n    PUZZLE(\"eli-puzzle\", '\\ue65f'),\n    QRCODE(\"eli-qrcode\", '\\ue65e'),\n    QUESTION(\"eli-question\", '\\ue65d'),\n    QUESTION_SIGN(\"eli-question-sign\", '\\ue65c'),\n    QUOTES(\"eli-quotes\", '\\ue65b'),\n    QUOTES_ALT(\"eli-quotes-alt\", '\\ue65a'),\n    RANDOM(\"eli-random\", '\\ue659'),\n    RECORD(\"eli-record\", '\\ue658'),\n    REDDIT(\"eli-reddit\", '\\ue657'),\n    REFRESH(\"eli-refresh\", '\\ue656'),\n    REMOVE(\"eli-remove\", '\\ue655'),\n    REMOVE_CIRCLE(\"eli-remove-circle\", '\\ue654'),\n    REMOVE_SIGN(\"eli-remove-sign\", '\\ue653'),\n    REPEAT(\"eli-repeat\", '\\ue652'),\n    REPEAT_ALT(\"eli-repeat-alt\", '\\ue651'),\n    RESIZE_FULL(\"eli-resize-full\", '\\ue650'),\n    RESIZE_HORIZONTAL(\"eli-resize-horizontal\", '\\ue64f'),\n    RESIZE_SMALL(\"eli-resize-small\", '\\ue64e'),\n    RESIZE_VERTICAL(\"eli-resize-vertical\", '\\ue64d'),\n    RETURN_KEY(\"eli-return-key\", '\\ue64c'),\n    RETWEET(\"eli-retweet\", '\\ue64b'),\n    REVERSE_ALT(\"eli-reverse-alt\", '\\ue64a'),\n    ROAD(\"eli-road\", '\\ue649'),\n    RSS(\"eli-rss\", '\\ue648'),\n    SCISSORS(\"eli-scissors\", '\\ue647'),\n    SCREEN(\"eli-screen\", '\\ue646'),\n    SCREENSHOT(\"eli-screenshot\", '\\ue644'),\n    SCREEN_ALT(\"eli-screen-alt\", '\\ue645'),\n    SEARCH(\"eli-search\", '\\ue643'),\n    SEARCH_ALT(\"eli-search-alt\", '\\ue642'),\n    SHARE(\"eli-share\", '\\ue641'),\n    SHARE_ALT(\"eli-share-alt\", '\\ue640'),\n    SHOPPING_CART(\"eli-shopping-cart\", '\\ue63f'),\n    SHOPPING_CART_SIGN(\"eli-shopping-cart-sign\", '\\ue63e'),\n    SIGNAL(\"eli-signal\", '\\ue63d'),\n    SKYPE(\"eli-skype\", '\\ue63c'),\n    SLIDESHARE(\"eli-slideshare\", '\\ue63b'),\n    SMILEY(\"eli-smiley\", '\\ue63a'),\n    SMILEY_ALT(\"eli-smiley-alt\", '\\ue639'),\n    SOUNDCLOUD(\"eli-soundcloud\", '\\ue638'),\n    SPEAKER(\"eli-speaker\", '\\ue637'),\n    SPOTIFY(\"eli-spotify\", '\\ue636'),\n    STACKOVERFLOW(\"eli-stackoverflow\", '\\ue635'),\n    STAR(\"eli-star\", '\\ue634'),\n    STAR_ALT(\"eli-star-alt\", '\\ue633'),\n    STAR_EMPTY(\"eli-star-empty\", '\\ue632'),\n    STEP_BACKWARD(\"eli-step-backward\", '\\ue631'),\n    STEP_FORWARD(\"eli-step-forward\", '\\ue630'),\n    STOP(\"eli-stop\", '\\ue62f'),\n    STOP_ALT(\"eli-stop-alt\", '\\ue62e'),\n    STUMBLEUPON(\"eli-stumbleupon\", '\\ue62d'),\n    TAG(\"eli-tag\", '\\ue62c'),\n    TAGS(\"eli-tags\", '\\ue62b'),\n    TASKS(\"eli-tasks\", '\\ue62a'),\n    TEXT_HEIGHT(\"eli-text-height\", '\\ue629'),\n    TEXT_WIDTH(\"eli-text-width\", '\\ue628'),\n    TH(\"eli-th\", '\\ue627'),\n    THUMBS_DOWN(\"eli-thumbs-down\", '\\ue624'),\n    THUMBS_UP(\"eli-thumbs-up\", '\\ue623'),\n    TH_LARGE(\"eli-th-large\", '\\ue626'),\n    TH_LIST(\"eli-th-list\", '\\ue625'),\n    TIME(\"eli-time\", '\\ue622'),\n    TIME_ALT(\"eli-time-alt\", '\\ue621'),\n    TINT(\"eli-tint\", '\\ue620'),\n    TORSO(\"eli-torso\", '\\ue61f'),\n    TRASH(\"eli-trash\", '\\ue61e'),\n    TRASH_ALT(\"eli-trash-alt\", '\\ue61d'),\n    TUMBLR(\"eli-tumblr\", '\\ue61c'),\n    TWITTER(\"eli-twitter\", '\\ue61b'),\n    UNIVERSAL_ACCESS(\"eli-universal-access\", '\\ue61a'),\n    UNLOCK(\"eli-unlock\", '\\ue619'),\n    UNLOCK_ALT(\"eli-unlock-alt\", '\\ue618'),\n    UPLOAD(\"eli-upload\", '\\ue617'),\n    USD(\"eli-usd\", '\\ue616'),\n    USER(\"eli-user\", '\\ue615'),\n    VIADEO(\"eli-viadeo\", '\\ue614'),\n    VIDEO(\"eli-video\", '\\ue613'),\n    VIDEO_ALT(\"eli-video-alt\", '\\ue612'),\n    VIDEO_CHAT(\"eli-video-chat\", '\\ue611'),\n    VIEW_MODE(\"eli-view-mode\", '\\ue610'),\n    VIMEO(\"eli-vimeo\", '\\ue60f'),\n    VKONTAKTE(\"eli-vkontakte\", '\\ue60e'),\n    VOLUME_DOWN(\"eli-volume-down\", '\\ue60d'),\n    VOLUME_OFF(\"eli-volume-off\", '\\ue60c'),\n    VOLUME_UP(\"eli-volume-up\", '\\ue60b'),\n    W3C(\"eli-w3c\", '\\ue60a'),\n    WARNING_SIGN(\"eli-warning-sign\", '\\ue609'),\n    WEBSITE(\"eli-website\", '\\ue608'),\n    WEBSITE_ALT(\"eli-website-alt\", '\\ue607'),\n    WHEELCHAIR(\"eli-wheelchair\", '\\ue606'),\n    WORDPRESS(\"eli-wordpress\", '\\ue605'),\n    WRENCH(\"eli-wrench\", '\\ue604'),\n    WRENCH_ALT(\"eli-wrench-alt\", '\\ue603'),\n    YOUTUBE(\"eli-youtube\", '\\ue602'),\n    ZOOM_IN(\"eli-zoom-in\", '\\ue601'),\n    ZOOM_OUT(\"eli-zoom-out\", '\\ue600');\n\n    public static Elusive findByDescription(String description) {\n        for (Elusive font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Elusive(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-elusive-pack/src/main/java/org/kordamp/ikonli/elusive/ElusiveIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.elusive;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class ElusiveIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/elusive/2.0/fonts/Elusive-Icons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"eli-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Elusive.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Elusive-Icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-elusive-pack/src/main/java/org/kordamp/ikonli/elusive/ElusiveIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.elusive;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class ElusiveIkonProvider implements IkonProvider<Elusive> {\n    @Override\n    public Class<Elusive> getIkon() {\n        return Elusive.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-elusive-pack/src/main/resources/META-INF/resources/elusive/2.0/css/elusive-webfont.css",
    "content": "@font-face {\n\tfont-family: 'Elusive-Icons';\n\tsrc:url('../fonts/Elusive-Icons.eot');\n\tsrc:url('../fonts/Elusive-Icons.eot?#iefix') format('embedded-opentype'),\n\t\turl('../fonts/Elusive-Icons.ttf') format('truetype'),\n\t\turl('../fonts/Elusive-Icons.woff') format('woff'),\n\t\turl('../fonts/Elusive-Icons.svg#Elusive-Icons') format('svg');\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n.el-icon {\n\tfont-family: 'Elusive-Icons';\n\tspeak: none;\n\tfont-style: normal;\n\tfont-weight: normal;\n\tfont-variant: normal;\n\ttext-transform: none;\n\tline-height: 1;\n\n\t/* Better Font Rendering =========== */\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n}\n\n.el-icon-zoom-out:before {\n\tcontent: \"\\e600\";\n}\n.el-icon-zoom-in:before {\n\tcontent: \"\\e601\";\n}\n.el-icon-youtube:before {\n\tcontent: \"\\e602\";\n}\n.el-icon-wrench-alt:before {\n\tcontent: \"\\e603\";\n}\n.el-icon-wrench:before {\n\tcontent: \"\\e604\";\n}\n.el-icon-wordpress:before {\n\tcontent: \"\\e605\";\n}\n.el-icon-wheelchair:before {\n\tcontent: \"\\e606\";\n}\n.el-icon-website-alt:before {\n\tcontent: \"\\e607\";\n}\n.el-icon-website:before {\n\tcontent: \"\\e608\";\n}\n.el-icon-warning-sign:before {\n\tcontent: \"\\e609\";\n}\n.el-icon-w3c:before {\n\tcontent: \"\\e60a\";\n}\n.el-icon-volume-up:before {\n\tcontent: \"\\e60b\";\n}\n.el-icon-volume-off:before {\n\tcontent: \"\\e60c\";\n}\n.el-icon-volume-down:before {\n\tcontent: \"\\e60d\";\n}\n.el-icon-vkontakte:before {\n\tcontent: \"\\e60e\";\n}\n.el-icon-vimeo:before {\n\tcontent: \"\\e60f\";\n}\n.el-icon-view-mode:before {\n\tcontent: \"\\e610\";\n}\n.el-icon-video-chat:before {\n\tcontent: \"\\e611\";\n}\n.el-icon-video-alt:before {\n\tcontent: \"\\e612\";\n}\n.el-icon-video:before {\n\tcontent: \"\\e613\";\n}\n.el-icon-viadeo:before {\n\tcontent: \"\\e614\";\n}\n.el-icon-user:before {\n\tcontent: \"\\e615\";\n}\n.el-icon-usd:before {\n\tcontent: \"\\e616\";\n}\n.el-icon-upload:before {\n\tcontent: \"\\e617\";\n}\n.el-icon-unlock-alt:before {\n\tcontent: \"\\e618\";\n}\n.el-icon-unlock:before {\n\tcontent: \"\\e619\";\n}\n.el-icon-universal-access:before {\n\tcontent: \"\\e61a\";\n}\n.el-icon-twitter:before {\n\tcontent: \"\\e61b\";\n}\n.el-icon-tumblr:before {\n\tcontent: \"\\e61c\";\n}\n.el-icon-trash-alt:before {\n\tcontent: \"\\e61d\";\n}\n.el-icon-trash:before {\n\tcontent: \"\\e61e\";\n}\n.el-icon-torso:before {\n\tcontent: \"\\e61f\";\n}\n.el-icon-tint:before {\n\tcontent: \"\\e620\";\n}\n.el-icon-time-alt:before {\n\tcontent: \"\\e621\";\n}\n.el-icon-time:before {\n\tcontent: \"\\e622\";\n}\n.el-icon-thumbs-up:before {\n\tcontent: \"\\e623\";\n}\n.el-icon-thumbs-down:before {\n\tcontent: \"\\e624\";\n}\n.el-icon-th-list:before {\n\tcontent: \"\\e625\";\n}\n.el-icon-th-large:before {\n\tcontent: \"\\e626\";\n}\n.el-icon-th:before {\n\tcontent: \"\\e627\";\n}\n.el-icon-text-width:before {\n\tcontent: \"\\e628\";\n}\n.el-icon-text-height:before {\n\tcontent: \"\\e629\";\n}\n.el-icon-tasks:before {\n\tcontent: \"\\e62a\";\n}\n.el-icon-tags:before {\n\tcontent: \"\\e62b\";\n}\n.el-icon-tag:before {\n\tcontent: \"\\e62c\";\n}\n.el-icon-stumbleupon:before {\n\tcontent: \"\\e62d\";\n}\n.el-icon-stop-alt:before {\n\tcontent: \"\\e62e\";\n}\n.el-icon-stop:before {\n\tcontent: \"\\e62f\";\n}\n.el-icon-step-forward:before {\n\tcontent: \"\\e630\";\n}\n.el-icon-step-backward:before {\n\tcontent: \"\\e631\";\n}\n.el-icon-star-empty:before {\n\tcontent: \"\\e632\";\n}\n.el-icon-star-alt:before {\n\tcontent: \"\\e633\";\n}\n.el-icon-star:before {\n\tcontent: \"\\e634\";\n}\n.el-icon-stackoverflow:before {\n\tcontent: \"\\e635\";\n}\n.el-icon-spotify:before {\n\tcontent: \"\\e636\";\n}\n.el-icon-speaker:before {\n\tcontent: \"\\e637\";\n}\n.el-icon-soundcloud:before {\n\tcontent: \"\\e638\";\n}\n.el-icon-smiley-alt:before {\n\tcontent: \"\\e639\";\n}\n.el-icon-smiley:before {\n\tcontent: \"\\e63a\";\n}\n.el-icon-slideshare:before {\n\tcontent: \"\\e63b\";\n}\n.el-icon-skype:before {\n\tcontent: \"\\e63c\";\n}\n.el-icon-signal:before {\n\tcontent: \"\\e63d\";\n}\n.el-icon-shopping-cart-sign:before {\n\tcontent: \"\\e63e\";\n}\n.el-icon-shopping-cart:before {\n\tcontent: \"\\e63f\";\n}\n.el-icon-share-alt:before {\n\tcontent: \"\\e640\";\n}\n.el-icon-share:before {\n\tcontent: \"\\e641\";\n}\n.el-icon-search-alt:before {\n\tcontent: \"\\e642\";\n}\n.el-icon-search:before {\n\tcontent: \"\\e643\";\n}\n.el-icon-screenshot:before {\n\tcontent: \"\\e644\";\n}\n.el-icon-screen-alt:before {\n\tcontent: \"\\e645\";\n}\n.el-icon-screen:before {\n\tcontent: \"\\e646\";\n}\n.el-icon-scissors:before {\n\tcontent: \"\\e647\";\n}\n.el-icon-rss:before {\n\tcontent: \"\\e648\";\n}\n.el-icon-road:before {\n\tcontent: \"\\e649\";\n}\n.el-icon-reverse-alt:before {\n\tcontent: \"\\e64a\";\n}\n.el-icon-retweet:before {\n\tcontent: \"\\e64b\";\n}\n.el-icon-return-key:before {\n\tcontent: \"\\e64c\";\n}\n.el-icon-resize-vertical:before {\n\tcontent: \"\\e64d\";\n}\n.el-icon-resize-small:before {\n\tcontent: \"\\e64e\";\n}\n.el-icon-resize-horizontal:before {\n\tcontent: \"\\e64f\";\n}\n.el-icon-resize-full:before {\n\tcontent: \"\\e650\";\n}\n.el-icon-repeat-alt:before {\n\tcontent: \"\\e651\";\n}\n.el-icon-repeat:before {\n\tcontent: \"\\e652\";\n}\n.el-icon-remove-sign:before {\n\tcontent: \"\\e653\";\n}\n.el-icon-remove-circle:before {\n\tcontent: \"\\e654\";\n}\n.el-icon-remove:before {\n\tcontent: \"\\e655\";\n}\n.el-icon-refresh:before {\n\tcontent: \"\\e656\";\n}\n.el-icon-reddit:before {\n\tcontent: \"\\e657\";\n}\n.el-icon-record:before {\n\tcontent: \"\\e658\";\n}\n.el-icon-random:before {\n\tcontent: \"\\e659\";\n}\n.el-icon-quotes-alt:before {\n\tcontent: \"\\e65a\";\n}\n.el-icon-quotes:before {\n\tcontent: \"\\e65b\";\n}\n.el-icon-question-sign:before {\n\tcontent: \"\\e65c\";\n}\n.el-icon-question:before {\n\tcontent: \"\\e65d\";\n}\n.el-icon-qrcode:before {\n\tcontent: \"\\e65e\";\n}\n.el-icon-puzzle:before {\n\tcontent: \"\\e65f\";\n}\n.el-icon-print:before {\n\tcontent: \"\\e660\";\n}\n.el-icon-podcast:before {\n\tcontent: \"\\e661\";\n}\n.el-icon-plus-sign:before {\n\tcontent: \"\\e662\";\n}\n.el-icon-plus:before {\n\tcontent: \"\\e663\";\n}\n.el-icon-play-circle:before {\n\tcontent: \"\\e664\";\n}\n.el-icon-play-alt:before {\n\tcontent: \"\\e665\";\n}\n.el-icon-play:before {\n\tcontent: \"\\e666\";\n}\n.el-icon-plane:before {\n\tcontent: \"\\e667\";\n}\n.el-icon-pinterest:before {\n\tcontent: \"\\e668\";\n}\n.el-icon-picture:before {\n\tcontent: \"\\e669\";\n}\n.el-icon-picasa:before {\n\tcontent: \"\\e66a\";\n}\n.el-icon-photo-alt:before {\n\tcontent: \"\\e66b\";\n}\n.el-icon-photo:before {\n\tcontent: \"\\e66c\";\n}\n.el-icon-phone-alt:before {\n\tcontent: \"\\e66d\";\n}\n.el-icon-phone:before {\n\tcontent: \"\\e66e\";\n}\n.el-icon-person:before {\n\tcontent: \"\\e66f\";\n}\n.el-icon-pencil-alt:before {\n\tcontent: \"\\e670\";\n}\n.el-icon-pencil:before {\n\tcontent: \"\\e671\";\n}\n.el-icon-pause-alt:before {\n\tcontent: \"\\e672\";\n}\n.el-icon-pause:before {\n\tcontent: \"\\e673\";\n}\n.el-icon-path:before {\n\tcontent: \"\\e674\";\n}\n.el-icon-paper-clip-alt:before {\n\tcontent: \"\\e675\";\n}\n.el-icon-paper-clip:before {\n\tcontent: \"\\e676\";\n}\n.el-icon-opensource:before {\n\tcontent: \"\\e677\";\n}\n.el-icon-ok-sign:before {\n\tcontent: \"\\e678\";\n}\n.el-icon-ok-circle:before {\n\tcontent: \"\\e679\";\n}\n.el-icon-ok:before {\n\tcontent: \"\\e67a\";\n}\n.el-icon-off:before {\n\tcontent: \"\\e67b\";\n}\n.el-icon-network:before {\n\tcontent: \"\\e67c\";\n}\n.el-icon-myspace:before {\n\tcontent: \"\\e67d\";\n}\n.el-icon-music:before {\n\tcontent: \"\\e67e\";\n}\n.el-icon-move:before {\n\tcontent: \"\\e67f\";\n}\n.el-icon-minus-sign:before {\n\tcontent: \"\\e680\";\n}\n.el-icon-minus:before {\n\tcontent: \"\\e681\";\n}\n.el-icon-mic-alt:before {\n\tcontent: \"\\e682\";\n}\n.el-icon-mic:before {\n\tcontent: \"\\e683\";\n}\n.el-icon-map-marker-alt:before {\n\tcontent: \"\\e684\";\n}\n.el-icon-map-marker:before {\n\tcontent: \"\\e685\";\n}\n.el-icon-male:before {\n\tcontent: \"\\e686\";\n}\n.el-icon-magnet:before {\n\tcontent: \"\\e687\";\n}\n.el-icon-magic:before {\n\tcontent: \"\\e688\";\n}\n.el-icon-lock-alt:before {\n\tcontent: \"\\e689\";\n}\n.el-icon-lock:before {\n\tcontent: \"\\e68a\";\n}\n.el-icon-livejournal:before {\n\tcontent: \"\\e68b\";\n}\n.el-icon-list-alt:before {\n\tcontent: \"\\e68c\";\n}\n.el-icon-list:before {\n\tcontent: \"\\e68d\";\n}\n.el-icon-linkedin:before {\n\tcontent: \"\\e68e\";\n}\n.el-icon-link:before {\n\tcontent: \"\\e68f\";\n}\n.el-icon-lines:before {\n\tcontent: \"\\e690\";\n}\n.el-icon-leaf:before {\n\tcontent: \"\\e691\";\n}\n.el-icon-lastfm:before {\n\tcontent: \"\\e692\";\n}\n.el-icon-laptop-alt:before {\n\tcontent: \"\\e693\";\n}\n.el-icon-laptop:before {\n\tcontent: \"\\e694\";\n}\n.el-icon-key:before {\n\tcontent: \"\\e695\";\n}\n.el-icon-italic:before {\n\tcontent: \"\\e696\";\n}\n.el-icon-iphone-home:before {\n\tcontent: \"\\e697\";\n}\n.el-icon-instagram:before {\n\tcontent: \"\\e698\";\n}\n.el-icon-info-sign:before {\n\tcontent: \"\\e699\";\n}\n.el-icon-indent-right:before {\n\tcontent: \"\\e69a\";\n}\n.el-icon-indent-left:before {\n\tcontent: \"\\e69b\";\n}\n.el-icon-inbox-box:before {\n\tcontent: \"\\e69c\";\n}\n.el-icon-inbox-alt:before {\n\tcontent: \"\\e69d\";\n}\n.el-icon-inbox:before {\n\tcontent: \"\\e69e\";\n}\n.el-icon-idea-alt:before {\n\tcontent: \"\\e69f\";\n}\n.el-icon-idea:before {\n\tcontent: \"\\e6a0\";\n}\n.el-icon-hourglass:before {\n\tcontent: \"\\e6a1\";\n}\n.el-icon-home-alt:before {\n\tcontent: \"\\e6a2\";\n}\n.el-icon-home:before {\n\tcontent: \"\\e6a3\";\n}\n.el-icon-heart-empty:before {\n\tcontent: \"\\e6a4\";\n}\n.el-icon-heart-alt:before {\n\tcontent: \"\\e6a5\";\n}\n.el-icon-heart:before {\n\tcontent: \"\\e6a6\";\n}\n.el-icon-hearing-impaired:before {\n\tcontent: \"\\e6a7\";\n}\n.el-icon-headphones:before {\n\tcontent: \"\\e6a8\";\n}\n.el-icon-hdd:before {\n\tcontent: \"\\e6a9\";\n}\n.el-icon-hand-up:before {\n\tcontent: \"\\e6aa\";\n}\n.el-icon-hand-right:before {\n\tcontent: \"\\e6ab\";\n}\n.el-icon-hand-left:before {\n\tcontent: \"\\e6ac\";\n}\n.el-icon-hand-down:before {\n\tcontent: \"\\e6ad\";\n}\n.el-icon-guidedog:before {\n\tcontent: \"\\e6ae\";\n}\n.el-icon-group-alt:before {\n\tcontent: \"\\e6af\";\n}\n.el-icon-group:before {\n\tcontent: \"\\e6b0\";\n}\n.el-icon-graph-alt:before {\n\tcontent: \"\\e6b1\";\n}\n.el-icon-graph:before {\n\tcontent: \"\\e6b2\";\n}\n.el-icon-googleplus:before {\n\tcontent: \"\\e6b3\";\n}\n.el-icon-globe-alt:before {\n\tcontent: \"\\e6b4\";\n}\n.el-icon-globe:before {\n\tcontent: \"\\e6b5\";\n}\n.el-icon-glasses:before {\n\tcontent: \"\\e6b6\";\n}\n.el-icon-glass:before {\n\tcontent: \"\\e6b7\";\n}\n.el-icon-github-text:before {\n\tcontent: \"\\e6b8\";\n}\n.el-icon-github:before {\n\tcontent: \"\\e6b9\";\n}\n.el-icon-gift:before {\n\tcontent: \"\\e6ba\";\n}\n.el-icon-gbp:before {\n\tcontent: \"\\e6bb\";\n}\n.el-icon-fullscreen:before {\n\tcontent: \"\\e6bc\";\n}\n.el-icon-friendfeed-rect:before {\n\tcontent: \"\\e6bd\";\n}\n.el-icon-friendfeed:before {\n\tcontent: \"\\e6be\";\n}\n.el-icon-foursquare:before {\n\tcontent: \"\\e6bf\";\n}\n.el-icon-forward-alt:before {\n\tcontent: \"\\e6c0\";\n}\n.el-icon-forward:before {\n\tcontent: \"\\e6c1\";\n}\n.el-icon-fork:before {\n\tcontent: \"\\e6c2\";\n}\n.el-icon-fontsize:before {\n\tcontent: \"\\e6c3\";\n}\n.el-icon-font:before {\n\tcontent: \"\\e6c4\";\n}\n.el-icon-folder-sign:before {\n\tcontent: \"\\e6c5\";\n}\n.el-icon-folder-open:before {\n\tcontent: \"\\e6c6\";\n}\n.el-icon-folder-close:before {\n\tcontent: \"\\e6c7\";\n}\n.el-icon-folder:before {\n\tcontent: \"\\e6c8\";\n}\n.el-icon-flickr:before {\n\tcontent: \"\\e6c9\";\n}\n.el-icon-flag-alt:before {\n\tcontent: \"\\e6ca\";\n}\n.el-icon-flag:before {\n\tcontent: \"\\e6cb\";\n}\n.el-icon-fire:before {\n\tcontent: \"\\e6cc\";\n}\n.el-icon-filter:before {\n\tcontent: \"\\e6cd\";\n}\n.el-icon-film:before {\n\tcontent: \"\\e6ce\";\n}\n.el-icon-file-new-alt:before {\n\tcontent: \"\\e6cf\";\n}\n.el-icon-file-new:before {\n\tcontent: \"\\e6d0\";\n}\n.el-icon-file-edit-alt:before {\n\tcontent: \"\\e6d1\";\n}\n.el-icon-file-edit:before {\n\tcontent: \"\\e6d2\";\n}\n.el-icon-file-alt:before {\n\tcontent: \"\\e6d3\";\n}\n.el-icon-file:before {\n\tcontent: \"\\e6d4\";\n}\n.el-icon-female:before {\n\tcontent: \"\\e6d5\";\n}\n.el-icon-fast-forward:before {\n\tcontent: \"\\e6d6\";\n}\n.el-icon-fast-backward:before {\n\tcontent: \"\\e6d7\";\n}\n.el-icon-facetime-video:before {\n\tcontent: \"\\e6d8\";\n}\n.el-icon-facebook:before {\n\tcontent: \"\\e6d9\";\n}\n.el-icon-eye-open:before {\n\tcontent: \"\\e6da\";\n}\n.el-icon-eye-close:before {\n\tcontent: \"\\e6db\";\n}\n.el-icon-exclamation-sign:before {\n\tcontent: \"\\e6dc\";\n}\n.el-icon-eur:before {\n\tcontent: \"\\e6dd\";\n}\n.el-icon-error-alt:before {\n\tcontent: \"\\e6de\";\n}\n.el-icon-error:before {\n\tcontent: \"\\e6df\";\n}\n.el-icon-envelope-alt:before {\n\tcontent: \"\\e6e0\";\n}\n.el-icon-envelope:before {\n\tcontent: \"\\e6e1\";\n}\n.el-icon-eject:before {\n\tcontent: \"\\e6e2\";\n}\n.el-icon-edit:before {\n\tcontent: \"\\e6e3\";\n}\n.el-icon-dribbble:before {\n\tcontent: \"\\e6e4\";\n}\n.el-icon-download-alt:before {\n\tcontent: \"\\e6e5\";\n}\n.el-icon-download:before {\n\tcontent: \"\\e6e6\";\n}\n.el-icon-digg:before {\n\tcontent: \"\\e6e7\";\n}\n.el-icon-deviantart:before {\n\tcontent: \"\\e6e8\";\n}\n.el-icon-delicious:before {\n\tcontent: \"\\e6e9\";\n}\n.el-icon-dashboard:before {\n\tcontent: \"\\e6ea\";\n}\n.el-icon-css:before {\n\tcontent: \"\\e6eb\";\n}\n.el-icon-credit-card:before {\n\tcontent: \"\\e6ec\";\n}\n.el-icon-compass-alt:before {\n\tcontent: \"\\e6ed\";\n}\n.el-icon-compass:before {\n\tcontent: \"\\e6ee\";\n}\n.el-icon-comment-alt:before {\n\tcontent: \"\\e6ef\";\n}\n.el-icon-comment:before {\n\tcontent: \"\\e6f0\";\n}\n.el-icon-cogs:before {\n\tcontent: \"\\e6f1\";\n}\n.el-icon-cog-alt:before {\n\tcontent: \"\\e6f2\";\n}\n.el-icon-cog:before {\n\tcontent: \"\\e6f3\";\n}\n.el-icon-cloud-alt:before {\n\tcontent: \"\\e6f4\";\n}\n.el-icon-cloud:before {\n\tcontent: \"\\e6f5\";\n}\n.el-icon-circle-arrow-up:before {\n\tcontent: \"\\e6f6\";\n}\n.el-icon-circle-arrow-right:before {\n\tcontent: \"\\e6f7\";\n}\n.el-icon-circle-arrow-left:before {\n\tcontent: \"\\e6f8\";\n}\n.el-icon-circle-arrow-down:before {\n\tcontent: \"\\e6f9\";\n}\n.el-icon-child:before {\n\tcontent: \"\\e6fa\";\n}\n.el-icon-chevron-up:before {\n\tcontent: \"\\e6fb\";\n}\n.el-icon-chevron-right:before {\n\tcontent: \"\\e6fc\";\n}\n.el-icon-chevron-left:before {\n\tcontent: \"\\e6fd\";\n}\n.el-icon-chevron-down:before {\n\tcontent: \"\\e6fe\";\n}\n.el-icon-check-empty:before {\n\tcontent: \"\\e6ff\";\n}\n.el-icon-check:before {\n\tcontent: \"\\e700\";\n}\n.el-icon-certificate:before {\n\tcontent: \"\\e701\";\n}\n.el-icon-cc:before {\n\tcontent: \"\\e702\";\n}\n.el-icon-caret-up:before {\n\tcontent: \"\\e703\";\n}\n.el-icon-caret-right:before {\n\tcontent: \"\\e704\";\n}\n.el-icon-caret-left:before {\n\tcontent: \"\\e705\";\n}\n.el-icon-caret-down:before {\n\tcontent: \"\\e706\";\n}\n.el-icon-car:before {\n\tcontent: \"\\e707\";\n}\n.el-icon-camera:before {\n\tcontent: \"\\e708\";\n}\n.el-icon-calendar-sign:before {\n\tcontent: \"\\e709\";\n}\n.el-icon-calendar:before {\n\tcontent: \"\\e70a\";\n}\n.el-icon-bullhorn:before {\n\tcontent: \"\\e70b\";\n}\n.el-icon-bulb:before {\n\tcontent: \"\\e70c\";\n}\n.el-icon-brush:before {\n\tcontent: \"\\e70d\";\n}\n.el-icon-broom:before {\n\tcontent: \"\\e70e\";\n}\n.el-icon-briefcase:before {\n\tcontent: \"\\e70f\";\n}\n.el-icon-braille:before {\n\tcontent: \"\\e710\";\n}\n.el-icon-bookmark-empty:before {\n\tcontent: \"\\e711\";\n}\n.el-icon-bookmark:before {\n\tcontent: \"\\e712\";\n}\n.el-icon-book:before {\n\tcontent: \"\\e713\";\n}\n.el-icon-bold:before {\n\tcontent: \"\\e714\";\n}\n.el-icon-blogger:before {\n\tcontent: \"\\e715\";\n}\n.el-icon-blind:before {\n\tcontent: \"\\e716\";\n}\n.el-icon-bell:before {\n\tcontent: \"\\e717\";\n}\n.el-icon-behance:before {\n\tcontent: \"\\e718\";\n}\n.el-icon-barcode:before {\n\tcontent: \"\\e719\";\n}\n.el-icon-ban-circle:before {\n\tcontent: \"\\e71a\";\n}\n.el-icon-backward:before {\n\tcontent: \"\\e71b\";\n}\n.el-icon-asl:before {\n\tcontent: \"\\e71c\";\n}\n.el-icon-arrow-up:before {\n\tcontent: \"\\e71d\";\n}\n.el-icon-arrow-right:before {\n\tcontent: \"\\e71e\";\n}\n.el-icon-arrow-left:before {\n\tcontent: \"\\e71f\";\n}\n.el-icon-arrow-down:before {\n\tcontent: \"\\e720\";\n}\n.el-icon-align-right:before {\n\tcontent: \"\\e721\";\n}\n.el-icon-align-left:before {\n\tcontent: \"\\e722\";\n}\n.el-icon-align-justify:before {\n\tcontent: \"\\e723\";\n}\n.el-icon-align-center:before {\n\tcontent: \"\\e724\";\n}\n.el-icon-adult:before {\n\tcontent: \"\\e725\";\n}\n.el-icon-adjust-alt:before {\n\tcontent: \"\\e726\";\n}\n.el-icon-adjust:before {\n\tcontent: \"\\e727\";\n}\n.el-icon-address-book-alt:before {\n\tcontent: \"\\e728\";\n}\n.el-icon-address-book:before {\n\tcontent: \"\\e729\";\n}\n.el-icon-asterisk:before {\n\tcontent: \"\\e72a\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-entypo-pack/ikonli-entypo-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-entypo-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.entypo {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.entypo;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.entypo.EntypoIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.entypo.EntypoIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-entypo-pack/src/main/java/org/kordamp/ikonli/entypo/Entypo.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.entypo;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\npublic enum Entypo implements Ikon {\n    // last is ea9a\n    ADDRESS(\"enty-address\", '\\ue929'),\n    ADD_TO_LIST(\"enty-add-to-list\", '\\uea2f'),\n    ADD_USER(\"enty-add-user\", '\\ue900'),\n    ADJUST(\"enty-adjust\", '\\ue987'),\n    AIR(\"enty-air\", '\\ue960'),\n    AIRCRAFT(\"enty-aircraft\", '\\ue94f'),\n    AIRCRAFT_LANDING(\"enty-aircraft-landing\", '\\ue952'),\n    AIRCRAFT_TAKE_OFF(\"enty-aircraft-take-off\", '\\ue951'),\n    ALIGN_BOTTOM(\"enty-align-bottom\", '\\ue9c5'),\n    ALIGN_HORIZONTAL_MIDDLE(\"enty-align-horizontal-middle\", '\\ue9c8'),\n    ALIGN_LEFT(\"enty-align-left\", '\\ue9c4'),\n    ALIGN_RIGHT(\"enty-align-right\", '\\ue9c7'),\n    ALIGN_TOP(\"enty-align-top\", '\\ue9c6'),\n    ALIGN_VERTICAL_MIDDLE(\"enty-align-vertical-middle\", '\\ue9c9'),\n    APP_STORE(\"enty-app-store\", '\\uea92'),\n    ARCHIVE(\"enty-archive\", '\\ue9e6'),\n    AREA_GRAPH(\"enty-area-graph\", '\\ue9a1'),\n    ARROW_BOLD_DOWN(\"enty-arrow-bold-down\", '\\uea06'),\n    ARROW_BOLD_LEFT(\"enty-arrow-bold-left\", '\\uea05'),\n    ARROW_BOLD_RIGHT(\"enty-arrow-bold-right\", '\\uea08'),\n    ARROW_BOLD_UP(\"enty-arrow-bold-up\", '\\uea07'),\n    ARROW_DOWN(\"enty-arrow-down\", '\\uea0a'),\n    ARROW_LEFT(\"enty-arrow-left\", '\\uea09'),\n    ARROW_LONG_DOWN(\"enty-arrow-long-down\", '\\uea26'),\n    ARROW_LONG_LEFT(\"enty-arrow-long-left\", '\\uea25'),\n    ARROW_LONG_RIGHT(\"enty-arrow-long-right\", '\\uea28'),\n    ARROW_LONG_UP(\"enty-arrow-long-up\", '\\uea27'),\n    ARROW_RIGHT(\"enty-arrow-right\", '\\uea0c'),\n    ARROW_UP(\"enty-arrow-up\", '\\uea0b'),\n    ARROW_WITH_CIRCLE_DOWN(\"enty-arrow-with-circle-down\", '\\uea0e'),\n    ARROW_WITH_CIRCLE_LEFT(\"enty-arrow-with-circle-left\", '\\uea0d'),\n    ARROW_WITH_CIRCLE_RIGHT(\"enty-arrow-with-circle-right\", '\\uea10'),\n    ARROW_WITH_CIRCLE_UP(\"enty-arrow-with-circle-up\", '\\uea0f'),\n    ATTACHMENT(\"enty-attachment\", '\\ue928'),\n    AWARENESS_RIBBON(\"enty-awareness-ribbon\", '\\ue93d'),\n    BACK(\"enty-back\", '\\ue9bd'),\n    BACK_IN_TIME(\"enty-back-in-time\", '\\ue9c3'),\n    BAIDU(\"enty-baidu\", '\\uea96'),\n    BAR_GRAPH(\"enty-bar-graph\", '\\ue9a0'),\n    BASECAMP(\"enty-basecamp\", '\\uea87'),\n    BATTERY(\"enty-battery\", '\\ue969'),\n    BEAMED_NOTE(\"enty-beamed-note\", '\\ue944'),\n    BEHANCE(\"enty-behance\", '\\uea83'),\n    BELL(\"enty-bell\", '\\ue933'),\n    BLACKBOARD(\"enty-blackboard\", '\\ue94b'),\n    BLOCK(\"enty-block\", '\\ue9b3'),\n    BOOK(\"enty-book\", '\\ue94c'),\n    BOOKMARK(\"enty-bookmark\", '\\ue9f1'),\n    BOOKMARKS(\"enty-bookmarks\", '\\ue9f2'),\n    BOWL(\"enty-bowl\", '\\ue95e'),\n    BOX(\"enty-box\", '\\ue997'),\n    BRIEFCASE(\"enty-briefcase\", '\\ue95f'),\n    BROWSER(\"enty-browser\", '\\ue97f'),\n    BRUSH(\"enty-brush\", '\\ue974'),\n    BUCKET(\"enty-bucket\", '\\ue96a'),\n    BUG(\"enty-bug\", '\\uea3a'),\n    CAKE(\"enty-cake\", '\\ue96d'),\n    CALCULATOR(\"enty-calculator\", '\\ue931'),\n    CALENDAR(\"enty-calendar\", '\\ue95a'),\n    CAMERA(\"enty-camera\", '\\ue93b'),\n    CCW(\"enty-ccw\", '\\ue9b9'),\n    CHAT(\"enty-chat\", '\\ue927'),\n    CHECK(\"enty-check\", '\\ue9a8'),\n    CHEVRON_DOWN(\"enty-chevron-down\", '\\uea16'),\n    CHEVRON_LEFT(\"enty-chevron-left\", '\\uea15'),\n    CHEVRON_RIGHT(\"enty-chevron-right\", '\\uea18'),\n    CHEVRON_SMALL_DOWN(\"enty-chevron-small-down\", '\\uea1a'),\n    CHEVRON_SMALL_LEFT(\"enty-chevron-small-left\", '\\uea19'),\n    CHEVRON_SMALL_RIGHT(\"enty-chevron-small-right\", '\\uea1c'),\n    CHEVRON_SMALL_UP(\"enty-chevron-small-up\", '\\uea1b'),\n    CHEVRON_THIN_DOWN(\"enty-chevron-thin-down\", '\\uea1e'),\n    CHEVRON_THIN_LEFT(\"enty-chevron-thin-left\", '\\uea1d'),\n    CHEVRON_THIN_RIGHT(\"enty-chevron-thin-right\", '\\uea20'),\n    CHEVRON_THIN_UP(\"enty-chevron-thin-up\", '\\uea1f'),\n    CHEVRON_UP(\"enty-chevron-up\", '\\uea17'),\n    CHEVRON_WITH_CIRCLE_DOWN(\"enty-chevron-with-circle-down\", '\\uea22'),\n    CHEVRON_WITH_CIRCLE_LEFT(\"enty-chevron-with-circle-left\", '\\uea21'),\n    CHEVRON_WITH_CIRCLE_RIGHT(\"enty-chevron-with-circle-right\", '\\uea24'),\n    CHEVRON_WITH_CIRCLE_UP(\"enty-chevron-with-circle-up\", '\\uea23'),\n    CIRCLE(\"enty-circle\", '\\ue9bb'),\n    CIRCLE_WITH_CROSS(\"enty-circle-with-cross\", '\\ue9af'),\n    CIRCLE_WITH_MINUS(\"enty-circle-with-minus\", '\\ue9ad'),\n    CIRCLE_WITH_PLUS(\"enty-circle-with-plus\", '\\ue9ae'),\n    CIRCULAR_GRAPH(\"enty-circular-graph\", '\\ue9a2'),\n    CLAPPERBOARD(\"enty-clapperboard\", '\\ue946'),\n    CLASSIC_COMPUTER(\"enty-classic-computer\", '\\uea32'),\n    CLIPBOARD(\"enty-clipboard\", '\\ue995'),\n    CLOCK(\"enty-clock\", '\\ue957'),\n    CLOUD(\"enty-cloud\", '\\ue9ee'),\n    CODE(\"enty-code\", '\\ue989'),\n    COG(\"enty-cog\", '\\ue936'),\n    COLOURS(\"enty-colours\", '\\ue964'),\n    COMPASS(\"enty-compass\", '\\ue926'),\n    CONTROLLER_FAST_BACKWARD(\"enty-controller-fast-backward\", '\\uea30'),\n    CONTROLLER_FAST_FORWARD(\"enty-controller-fast-forward\", '\\ue9f8'),\n    CONTROLLER_JUMP_TO_START(\"enty-controller-jump-to-start\", '\\ue9f9'),\n    CONTROLLER_NEXT(\"enty-controller-next\", '\\ue9fa'),\n    CONTROLLER_PAUS(\"enty-controller-paus\", '\\ue9f5'),\n    CONTROLLER_PLAY(\"enty-controller-play\", '\\ue9f4'),\n    CONTROLLER_RECORD(\"enty-controller-record\", '\\ue9f6'),\n    CONTROLLER_STOP(\"enty-controller-stop\", '\\ue9f7'),\n    CONTROLLER_VOLUME(\"enty-controller-volume\", '\\ue9fd'),\n    COPY(\"enty-copy\", '\\ue9d9'),\n    CREATIVE_CLOUD(\"enty-creative-cloud\", '\\uea86'),\n    CREATIVE_COMMONS(\"enty-creative-commons\", '\\uea41'),\n    CREATIVE_COMMONS_ATTRIBUTION(\"enty-creative-commons-attribution\", '\\uea40'),\n    CREATIVE_COMMONS_NODERIVS(\"enty-creative-commons-noderivs\", '\\uea48'),\n    CREATIVE_COMMONS_NONCOMMERCIAL_EU(\"enty-creative-commons-noncommercial-eu\", '\\uea47'),\n    CREATIVE_COMMONS_NONCOMMERCIAL_US(\"enty-creative-commons-noncommercial-us\", '\\uea46'),\n    CREATIVE_COMMONS_PUBLIC_DOMAIN(\"enty-creative-commons-public-domain\", '\\uea45'),\n    CREATIVE_COMMONS_REMIX(\"enty-creative-commons-remix\", '\\uea44'),\n    CREATIVE_COMMONS_SHARE(\"enty-creative-commons-share\", '\\uea43'),\n    CREATIVE_COMMONS_SHAREALIKE(\"enty-creative-commons-sharealike\", '\\uea42'),\n    CREDIT(\"enty-credit\", '\\ue955'),\n    CREDIT_CARD(\"enty-credit-card\", '\\ue98d'),\n    CROP(\"enty-crop\", '\\uea3e'),\n    CROSS(\"enty-cross\", '\\ue9a9'),\n    CUP(\"enty-cup\", '\\ue970'),\n    CW(\"enty-cw\", '\\ue9ba'),\n    CYCLE(\"enty-cycle\", '\\ue9b8'),\n    DATABASE(\"enty-database\", '\\ue996'),\n    DIAL_PAD(\"enty-dial-pad\", '\\ue993'),\n    DIRECTION(\"enty-direction\", '\\ue925'),\n    DOCUMENT(\"enty-document\", '\\ue9d4'),\n    DOCUMENTS(\"enty-documents\", '\\ue9d5'),\n    DOCUMENT_LANDSCAPE(\"enty-document-landscape\", '\\uea33'),\n    DOTS_THREE_HORIZONTAL(\"enty-dots-three-horizontal\", '\\uea2e'),\n    DOTS_THREE_VERTICAL(\"enty-dots-three-vertical\", '\\uea2a'),\n    DOTS_TWO_HORIZONTAL(\"enty-dots-two-horizontal\", '\\uea2d'),\n    DOTS_TWO_VERTICAL(\"enty-dots-two-vertical\", '\\uea2b'),\n    DOT_SINGLE(\"enty-dot-single\", '\\uea2c'),\n    DOWNLOAD(\"enty-download\", '\\ue9ea'),\n    DRIBBBLE(\"enty-dribbble\", '\\uea5c'),\n    DRIBBBLE_WITH_CIRCLE(\"enty-dribbble-with-circle\", '\\uea5d'),\n    DRINK(\"enty-drink\", '\\ue942'),\n    DRIVE(\"enty-drive\", '\\ue96e'),\n    DROP(\"enty-drop\", '\\ue95c'),\n    DROPBOX(\"enty-dropbox\", '\\uea74'),\n    EDIT(\"enty-edit\", '\\ue924'),\n    EMAIL(\"enty-email\", '\\ue923'),\n    EMOJI_FLIRT(\"enty-emoji-flirt\", '\\ue9e7'),\n    EMOJI_HAPPY(\"enty-emoji-happy\", '\\ue9cc'),\n    EMOJI_NEUTRAL(\"enty-emoji-neutral\", '\\ue9cd'),\n    EMOJI_SAD(\"enty-emoji-sad\", '\\ue9ce'),\n    ERASE(\"enty-erase\", '\\ue9b2'),\n    ERASER(\"enty-eraser\", '\\ue97d'),\n    EVERNOTE(\"enty-evernote\", '\\uea97'),\n    EXPORT(\"enty-export\", '\\ue922'),\n    EYE(\"enty-eye\", '\\ue954'),\n    EYE_WITH_LINE(\"enty-eye-with-line\", '\\uea36'),\n    FACEBOOK(\"enty-facebook\", '\\uea53'),\n    FACEBOOK_WITH_CIRCLE(\"enty-facebook-with-circle\", '\\uea54'),\n    FEATHER(\"enty-feather\", '\\ue921'),\n    FINGERPRINT(\"enty-fingerprint\", '\\uea3c'),\n    FIVE_HUNDRED_PX(\"enty-five-hundred-px\", '\\uea6d'),\n    FIVE_HUNDRED_PX_WITH_CIRCLE(\"enty-five-hundred-px-with-circle\", '\\uea6e'),\n    FLAG(\"enty-flag\", '\\ue935'),\n    FLASH(\"enty-flash\", '\\ue959'),\n    FLASHLIGHT(\"enty-flashlight\", '\\ue930'),\n    FLATTR(\"enty-flattr\", '\\uea79'),\n    FLAT_BRUSH(\"enty-flat-brush\", '\\ue97b'),\n    FLICKR(\"enty-flickr\", '\\uea4b'),\n    FLICKR_WITH_CIRCLE(\"enty-flickr-with-circle\", '\\uea4c'),\n    FLOWER(\"enty-flower\", '\\uea37'),\n    FLOW_BRANCH(\"enty-flow-branch\", '\\uea01'),\n    FLOW_CASCADE(\"enty-flow-cascade\", '\\uea00'),\n    FLOW_LINE(\"enty-flow-line\", '\\uea03'),\n    FLOW_PARALLEL(\"enty-flow-parallel\", '\\uea04'),\n    FLOW_TREE(\"enty-flow-tree\", '\\uea02'),\n    FOLDER(\"enty-folder\", '\\ue9df'),\n    FOLDER_IMAGES(\"enty-folder-images\", '\\ue9e0'),\n    FOLDER_MUSIC(\"enty-folder-music\", '\\ue9e1'),\n    FOLDER_VIDEO(\"enty-folder-video\", '\\ue9e2'),\n    FORWARD(\"enty-forward\", '\\ue920'),\n    FOURSQUARE(\"enty-foursquare\", '\\uea7a'),\n    FUNNEL(\"enty-funnel\", '\\ue96b'),\n    GAME_CONTROLLER(\"enty-game-controller\", '\\ue96f'),\n    GAUGE(\"enty-gauge\", '\\ue963'),\n    GITHUB(\"enty-github\", '\\uea49'),\n    GITHUB_WITH_CIRCLE(\"enty-github-with-circle\", '\\uea4a'),\n    GLOBE(\"enty-globe\", '\\ue977'),\n    GOOGLE_DRIVE(\"enty-google-drive\", '\\uea7f'),\n    GOOGLE_HANGOUTS(\"enty-google-hangouts\", '\\uea77'),\n    GOOGLE_PLAY(\"enty-google-play\", '\\uea93'),\n    GOOGLE_PLUS(\"enty-google-plus\", '\\uea56'),\n    GOOGLE_PLUS_WITH_CIRCLE(\"enty-google-plus-with-circle\", '\\uea55'),\n    GRADUATION_CAP(\"enty-graduation-cap\", '\\ue94a'),\n    GRID(\"enty-grid\", '\\ue9d2'),\n    GROOVESHARK(\"enty-grooveshark\", '\\uea72'),\n    HAIR_CROSS(\"enty-hair-cross\", '\\ue91f'),\n    HAND(\"enty-hand\", '\\ue956'),\n    HEART(\"enty-heart\", '\\ue91d'),\n    HEART_OUTLINED(\"enty-heart-outlined\", '\\ue91e'),\n    HELP(\"enty-help\", '\\ue9b5'),\n    HELP_WITH_CIRCLE(\"enty-help-with-circle\", '\\ue9b6'),\n    HOME(\"enty-home\", '\\ue92d'),\n    HOUR_GLASS(\"enty-hour-glass\", '\\ue961'),\n    HOUZZ(\"enty-houzz\", '\\uea95'),\n    ICLOUD(\"enty-icloud\", '\\uea73'),\n    IMAGE(\"enty-image\", '\\ue9da'),\n    IMAGES(\"enty-images\", '\\ue9dc'),\n    IMAGE_INVERTED(\"enty-image-inverted\", '\\ue9db'),\n    INBOX(\"enty-inbox\", '\\ue91c'),\n    INFINITY(\"enty-infinity\", '\\ue98b'),\n    INFO(\"enty-info\", '\\ue9b4'),\n    INFO_WITH_CIRCLE(\"enty-info-with-circle\", '\\ue9b7'),\n    INSTAGRAM(\"enty-instagram\", '\\uea99'),\n    INSTAGRAM_WITH_CIRCLE(\"enty-instagram-with-circle\", '\\uea9a'),\n    INSTALL(\"enty-install\", '\\ue9ec'),\n    KEY(\"enty-key\", '\\ue967'),\n    KEYBOARD(\"enty-keyboard\", '\\ue979'),\n    LAB_FLASK(\"enty-lab-flask\", '\\ue972'),\n    LANDLINE(\"enty-landline\", '\\ue91b'),\n    LANGUAGE(\"enty-language\", '\\ue965'),\n    LAPTOP(\"enty-laptop\", '\\ue91a'),\n    LASTFM(\"enty-lastfm\", '\\uea61'),\n    LASTFM_WITH_CIRCLE(\"enty-lastfm-with-circle\", '\\uea60'),\n    LAYERS(\"enty-layers\", '\\ue9f0'),\n    LEAF(\"enty-leaf\", '\\ue940'),\n    LEVEL_DOWN(\"enty-level-down\", '\\ue9be'),\n    LEVEL_UP(\"enty-level-up\", '\\ue9bf'),\n    LIFEBUOY(\"enty-lifebuoy\", '\\ue953'),\n    LIGHT_BULB(\"enty-light-bulb\", '\\ue98c'),\n    LIGHT_DOWN(\"enty-light-down\", '\\ue985'),\n    LIGHT_UP(\"enty-light-up\", '\\ue986'),\n    LINE_GRAPH(\"enty-line-graph\", '\\ue99e'),\n    LINK(\"enty-link\", '\\ue934'),\n    LINKEDIN(\"enty-linkedin\", '\\uea98'),\n    LINKEDIN_WITH_CIRCLE(\"enty-linkedin-with-circle\", '\\uea5b'),\n    LIST(\"enty-list\", '\\ue9d1'),\n    LOCATION(\"enty-location\", '\\ue918'),\n    LOCATION_PIN(\"enty-location-pin\", '\\ue919'),\n    LOCK(\"enty-lock\", '\\ue9a3'),\n    LOCK_OPEN(\"enty-lock-open\", '\\ue9a4'),\n    LOGIN(\"enty-login\", '\\ue9a5'),\n    LOG_OUT(\"enty-log-out\", '\\ue9a6'),\n    LOOP(\"enty-loop\", '\\ue9c0'),\n    MAGNET(\"enty-magnet\", '\\ue96c'),\n    MAGNIFYING_GLASS(\"enty-magnifying-glass\", '\\ue92f'),\n    MAIL(\"enty-mail\", '\\ue917'),\n    MAIL_WITH_CIRCLE(\"enty-mail-with-circle\", '\\uea91'),\n    MAN(\"enty-man\", '\\ue941'),\n    MAP(\"enty-map\", '\\ue916'),\n    MASK(\"enty-mask\", '\\ue9e4'),\n    MEDAL(\"enty-medal\", '\\ue948'),\n    MEDIUM(\"enty-medium\", '\\uea90'),\n    MEDIUM_WITH_CIRCLE(\"enty-medium-with-circle\", '\\uea8f'),\n    MEGAPHONE(\"enty-megaphone\", '\\ue93c'),\n    MENU(\"enty-menu\", '\\ue9d3'),\n    MERGE(\"enty-merge\", '\\uea35'),\n    MESSAGE(\"enty-message\", '\\ue92a'),\n    MIC(\"enty-mic\", '\\ue958'),\n    MINUS(\"enty-minus\", '\\ue9b0'),\n    MIXI(\"enty-mixi\", '\\uea82'),\n    MOBILE(\"enty-mobile\", '\\ue915'),\n    MODERN_MIC(\"enty-modern-mic\", '\\ue945'),\n    MOON(\"enty-moon\", '\\ue93e'),\n    MOUSE(\"enty-mouse\", '\\ue914'),\n    MOUSE_POINTER(\"enty-mouse-pointer\", '\\uea3d'),\n    MUSIC(\"enty-music\", '\\ue9de'),\n    NETWORK(\"enty-network\", '\\ue966'),\n    NEW(\"enty-new\", '\\ue949'),\n    NEWS(\"enty-news\", '\\ue94e'),\n    NEWSLETTER(\"enty-newsletter\", '\\uea38'),\n    NEW_MESSAGE(\"enty-new-message\", '\\ue913'),\n    NOTE(\"enty-note\", '\\ue943'),\n    NOTIFICATION(\"enty-notification\", '\\ue912'),\n    NOTIFICATIONS_OFF(\"enty-notifications-off\", '\\uea3f'),\n    OLD_MOBILE(\"enty-old-mobile\", '\\ue911'),\n    OLD_PHONE(\"enty-old-phone\", '\\ue910'),\n    ONEDRIVE(\"enty-onedrive\", '\\uea75'),\n    OPEN_BOOK(\"enty-open-book\", '\\ue9f3'),\n    PALETTE(\"enty-palette\", '\\ue93f'),\n    PAPER_PLANE(\"enty-paper-plane\", '\\ue90f'),\n    PAYPAL(\"enty-paypal\", '\\uea84'),\n    PENCIL(\"enty-pencil\", '\\ue97c'),\n    PHONE(\"enty-phone\", '\\ue90e'),\n    PICASA(\"enty-picasa\", '\\uea80'),\n    PIE_CHART(\"enty-pie-chart\", '\\ue99f'),\n    PIN(\"enty-pin\", '\\ue94d'),\n    PINTEREST(\"enty-pinterest\", '\\uea58'),\n    PINTEREST_WITH_CIRCLE(\"enty-pinterest-with-circle\", '\\uea57'),\n    PLUS(\"enty-plus\", '\\ue9b1'),\n    POPUP(\"enty-popup\", '\\ue92e'),\n    POWER_PLUG(\"enty-power-plug\", '\\ue939'),\n    PRICE_RIBBON(\"enty-price-ribbon\", '\\ue947'),\n    PRICE_TAG(\"enty-price-tag\", '\\ue93a'),\n    PRINT(\"enty-print\", '\\ue932'),\n    PROGRESS_EMPTY(\"enty-progress-empty\", '\\ue984'),\n    PROGRESS_FULL(\"enty-progress-full\", '\\ue981'),\n    PROGRESS_ONE(\"enty-progress-one\", '\\ue983'),\n    PROGRESS_TWO(\"enty-progress-two\", '\\ue982'),\n    PUBLISH(\"enty-publish\", '\\ue980'),\n    QQ(\"enty-qq\", '\\uea76'),\n    QQ_WITH_CIRCLE(\"enty-qq-with-circle\", '\\uea8c'),\n    QUOTE(\"enty-quote\", '\\ue92c'),\n    RADIO(\"enty-radio\", '\\ue978'),\n    RAFT(\"enty-raft\", '\\uea8d'),\n    RAFT_WITH_CIRCLE(\"enty-raft-with-circle\", '\\uea8e'),\n    RAINBOW(\"enty-rainbow\", '\\uea89'),\n    RDIO(\"enty-rdio\", '\\uea62'),\n    RDIO_WITH_CIRCLE(\"enty-rdio-with-circle\", '\\uea63'),\n    REMOVE_USER(\"enty-remove-user\", '\\uea31'),\n    RENREN(\"enty-renren\", '\\uea7d'),\n    REPLY(\"enty-reply\", '\\ue90c'),\n    REPLY_ALL(\"enty-reply-all\", '\\ue90d'),\n    RESIZE_100(\"enty-resize-100\", '\\ue9fc'),\n    RESIZE_FULL_SCREEN(\"enty-resize-full-screen\", '\\ue9fb'),\n    RETWEET(\"enty-retweet\", '\\ue9c1'),\n    ROCKET(\"enty-rocket\", '\\ue971'),\n    ROUND_BRUSH(\"enty-round-brush\", '\\ue97a'),\n    RSS(\"enty-rss\", '\\ue999'),\n    RULER(\"enty-ruler\", '\\ue973'),\n    SAVE(\"enty-save\", '\\ue9eb'),\n    SCISSORS(\"enty-scissors\", '\\ue97e'),\n    SCRIBD(\"enty-scribd\", '\\uea7b'),\n    SELECT_ARROWS(\"enty-select-arrows\", '\\uea29'),\n    SHARE(\"enty-share\", '\\ue90a'),\n    SHAREABLE(\"enty-shareable\", '\\ue909'),\n    SHARE_ALTERNATIVE(\"enty-share-alternative\", '\\ue90b'),\n    SHIELD(\"enty-shield\", '\\ue950'),\n    SHOP(\"enty-shop\", '\\ue98e'),\n    SHOPPING_BAG(\"enty-shopping-bag\", '\\ue990'),\n    SHOPPING_BASKET(\"enty-shopping-basket\", '\\ue991'),\n    SHOPPING_CART(\"enty-shopping-cart\", '\\ue98f'),\n    SHUFFLE(\"enty-shuffle\", '\\ue9bc'),\n    SIGNAL(\"enty-signal\", '\\ue99a'),\n    SINA_WEIBO(\"enty-sina-weibo\", '\\uea7e'),\n    SKYPE(\"enty-skype\", '\\uea6f'),\n    SKYPE_WITH_CIRCLE(\"enty-skype-with-circle\", '\\uea70'),\n    SLIDESHARE(\"enty-slideshare\", '\\uea78'),\n    SMASHING(\"enty-smashing\", '\\uea85'),\n    SOUND(\"enty-sound\", '\\ue9fe'),\n    SOUNDCLOUD(\"enty-soundcloud\", '\\uea81'),\n    SOUND_MIX(\"enty-sound-mix\", '\\ue988'),\n    SOUND_MUTE(\"enty-sound-mute\", '\\ue9ff'),\n    SPORTS_CLUB(\"enty-sports-club\", '\\ue9e3'),\n    SPOTIFY(\"enty-spotify\", '\\uea64'),\n    SPOTIFY_WITH_CIRCLE(\"enty-spotify-with-circle\", '\\uea65'),\n    SPREADSHEET(\"enty-spreadsheet\", '\\ue9d8'),\n    SQUARED_CROSS(\"enty-squared-cross\", '\\ue9ac'),\n    SQUARED_MINUS(\"enty-squared-minus\", '\\ue9aa'),\n    SQUARED_PLUS(\"enty-squared-plus\", '\\ue9ab'),\n    STAR(\"enty-star\", '\\ue907'),\n    STAR_OUTLINED(\"enty-star-outlined\", '\\ue908'),\n    STOPWATCH(\"enty-stopwatch\", '\\ue968'),\n    STUMBLEUPON(\"enty-stumbleupon\", '\\uea5e'),\n    STUMBLEUPON_WITH_CIRCLE(\"enty-stumbleupon-with-circle\", '\\uea5f'),\n    SUITCASE(\"enty-suitcase\", '\\ue975'),\n    SWAP(\"enty-swap\", '\\ue9c2'),\n    SWARM(\"enty-swarm\", '\\uea7c'),\n    SWEDEN(\"enty-sweden\", '\\ue99d'),\n    SWITCH(\"enty-switch\", '\\ue9a7'),\n    TABLET(\"enty-tablet\", '\\ue906'),\n    TABLET_MOBILE_COMBO(\"enty-tablet-mobile-combo\", '\\uea39'),\n    TAG(\"enty-tag\", '\\ue9ca'),\n    TEXT(\"enty-text\", '\\ue9d0'),\n    TEXT_DOCUMENT(\"enty-text-document\", '\\ue9d6'),\n    TEXT_DOCUMENT_INVERTED(\"enty-text-document-inverted\", '\\ue9d7'),\n    THERMOMETER(\"enty-thermometer\", '\\ue99b'),\n    THUMBS_DOWN(\"enty-thumbs-down\", '\\ue905'),\n    THUMBS_UP(\"enty-thumbs-up\", '\\ue904'),\n    THUNDER_CLOUD(\"enty-thunder-cloud\", '\\ue95b'),\n    TICKET(\"enty-ticket\", '\\ue998'),\n    TIME_SLOT(\"enty-time-slot\", '\\ue9e5'),\n    TOOLS(\"enty-tools\", '\\ue937'),\n    TRAFFIC_CONE(\"enty-traffic-cone\", '\\ue976'),\n    TRASH(\"enty-trash\", '\\ue9e8'),\n    TREE(\"enty-tree\", '\\ue962'),\n    TRIANGLE_DOWN(\"enty-triangle-down\", '\\uea12'),\n    TRIANGLE_LEFT(\"enty-triangle-left\", '\\uea11'),\n    TRIANGLE_RIGHT(\"enty-triangle-right\", '\\uea14'),\n    TRIANGLE_UP(\"enty-triangle-up\", '\\uea13'),\n    TRIPADVISOR(\"enty-tripadvisor\", '\\uea88'),\n    TROPHY(\"enty-trophy\", '\\ue938'),\n    TUMBLR(\"enty-tumblr\", '\\uea59'),\n    TUMBLR_WITH_CIRCLE(\"enty-tumblr-with-circle\", '\\uea5a'),\n    TV(\"enty-tv\", '\\ue98a'),\n    TWITTER(\"enty-twitter\", '\\uea52'),\n    TWITTER_WITH_CIRCLE(\"enty-twitter-with-circle\", '\\uea51'),\n    TYPING(\"enty-typing\", '\\ue92b'),\n    UNINSTALL(\"enty-uninstall\", '\\ue9ed'),\n    UNREAD(\"enty-unread\", '\\ue9cf'),\n    UNTAG(\"enty-untag\", '\\ue9cb'),\n    UPLOAD(\"enty-upload\", '\\ue9e9'),\n    UPLOAD_TO_CLOUD(\"enty-upload-to-cloud\", '\\ue9ef'),\n    USER(\"enty-user\", '\\ue903'),\n    USERS(\"enty-users\", '\\ue902'),\n    VIDEO(\"enty-video\", '\\ue9dd'),\n    VIDEO_CAMERA(\"enty-video-camera\", '\\uea3b'),\n    VIMEO(\"enty-vimeo\", '\\uea4f'),\n    VIMEO_WITH_CIRCLE(\"enty-vimeo-with-circle\", '\\uea50'),\n    VINE(\"enty-vine\", '\\uea69'),\n    VINE_WITH_CIRCLE(\"enty-vine-with-circle\", '\\uea6a'),\n    VINYL(\"enty-vinyl\", '\\ue95d'),\n    VK(\"enty-vk\", '\\uea66'),\n    VK_ALTERNITIVE(\"enty-vk-alternitive\", '\\uea67'),\n    VK_WITH_CIRCLE(\"enty-vk-with-circle\", '\\uea68'),\n    VOICEMAIL(\"enty-voicemail\", '\\ue994'),\n    V_CARD(\"enty-v-card\", '\\ue901'),\n    WALLET(\"enty-wallet\", '\\ue992'),\n    WARNING(\"enty-warning\", '\\uea34'),\n    WATER(\"enty-water\", '\\ue99c'),\n    WINDOWS_STORE(\"enty-windows-store\", '\\uea94'),\n    XING(\"enty-xing\", '\\uea6b'),\n    XING_WITH_CIRCLE(\"enty-xing-with-circle\", '\\uea6c'),\n    YELP(\"enty-yelp\", '\\uea71'),\n    YOUKO(\"enty-youko\", '\\uea8a'),\n    YOUKO_WITH_CIRCLE(\"enty-youko-with-circle\", '\\uea8b'),\n    YOUTUBE(\"enty-youtube\", '\\uea4e'),\n    YOUTUBE_WITH_CIRCLE(\"enty-youtube-with-circle\", '\\uea4d');\n\n    public static Entypo findByDescription(String description) {\n        for (Entypo font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Entypo(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-entypo-pack/src/main/java/org/kordamp/ikonli/entypo/EntypoIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.entypo;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class EntypoIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/entypo/1.0/fonts/Entypo.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"enty-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Entypo.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Entypo\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-entypo-pack/src/main/java/org/kordamp/ikonli/entypo/EntypoIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.entypo;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class EntypoIkonProvider implements IkonProvider<Entypo> {\n    @Override\n    public Class<Entypo> getIkon() {\n        return Entypo.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-entypo-pack/src/main/resources/META-INF/resources/entypo/1.0/css/entypo.css",
    "content": "@font-face {\n  font-family: 'Entypo';\n  src:  url('../fonts/Entypo.eot?qf0asv');\n  src:  url('../fonts/Entypo.eot?qf0asv#iefix') format('embedded-opentype'),\n    url('../fonts/Entypo.ttf?qf0asv') format('truetype'),\n    url('../fonts/Entypo.woff?qf0asv') format('woff'),\n    url('../fonts/Entypo.svg?qf0asv#Entypo') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n\n[class^=\"enty-\"], [class*=\" enty-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Entypo' !important;\n  speak: none;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.enty-add-user:before {\n  content: \"\\e900\";\n}\n.enty-v-card:before {\n  content: \"\\e901\";\n}\n.enty-users:before {\n  content: \"\\e902\";\n}\n.enty-user:before {\n  content: \"\\e903\";\n}\n.enty-thumbs-up:before {\n  content: \"\\e904\";\n}\n.enty-thumbs-down:before {\n  content: \"\\e905\";\n}\n.enty-tablet:before {\n  content: \"\\e906\";\n}\n.enty-star:before {\n  content: \"\\e907\";\n}\n.enty-star-outlined:before {\n  content: \"\\e908\";\n}\n.enty-shareable:before {\n  content: \"\\e909\";\n}\n.enty-share:before {\n  content: \"\\e90a\";\n}\n.enty-share-alternative:before {\n  content: \"\\e90b\";\n}\n.enty-reply:before {\n  content: \"\\e90c\";\n}\n.enty-reply-all:before {\n  content: \"\\e90d\";\n}\n.enty-phone:before {\n  content: \"\\e90e\";\n}\n.enty-paper-plane:before {\n  content: \"\\e90f\";\n}\n.enty-old-phone:before {\n  content: \"\\e910\";\n}\n.enty-old-mobile:before {\n  content: \"\\e911\";\n}\n.enty-notification:before {\n  content: \"\\e912\";\n}\n.enty-new-message:before {\n  content: \"\\e913\";\n}\n.enty-mouse:before {\n  content: \"\\e914\";\n}\n.enty-mobile:before {\n  content: \"\\e915\";\n}\n.enty-map:before {\n  content: \"\\e916\";\n}\n.enty-mail:before {\n  content: \"\\e917\";\n}\n.enty-location:before {\n  content: \"\\e918\";\n}\n.enty-location-pin:before {\n  content: \"\\e919\";\n}\n.enty-laptop:before {\n  content: \"\\e91a\";\n}\n.enty-landline:before {\n  content: \"\\e91b\";\n}\n.enty-inbox:before {\n  content: \"\\e91c\";\n}\n.enty-heart:before {\n  content: \"\\e91d\";\n}\n.enty-heart-outlined:before {\n  content: \"\\e91e\";\n}\n.enty-hair-cross:before {\n  content: \"\\e91f\";\n}\n.enty-forward:before {\n  content: \"\\e920\";\n}\n.enty-feather:before {\n  content: \"\\e921\";\n}\n.enty-export:before {\n  content: \"\\e922\";\n}\n.enty-email:before {\n  content: \"\\e923\";\n}\n.enty-edit:before {\n  content: \"\\e924\";\n}\n.enty-direction:before {\n  content: \"\\e925\";\n}\n.enty-compass:before {\n  content: \"\\e926\";\n}\n.enty-chat:before {\n  content: \"\\e927\";\n}\n.enty-attachment:before {\n  content: \"\\e928\";\n}\n.enty-address:before {\n  content: \"\\e929\";\n}\n.enty-message:before {\n  content: \"\\e92a\";\n}\n.enty-typing:before {\n  content: \"\\e92b\";\n}\n.enty-quote:before {\n  content: \"\\e92c\";\n}\n.enty-home:before {\n  content: \"\\e92d\";\n}\n.enty-popup:before {\n  content: \"\\e92e\";\n}\n.enty-magnifying-glass:before {\n  content: \"\\e92f\";\n}\n.enty-flashlight:before {\n  content: \"\\e930\";\n}\n.enty-calculator:before {\n  content: \"\\e931\";\n}\n.enty-print:before {\n  content: \"\\e932\";\n}\n.enty-bell:before {\n  content: \"\\e933\";\n}\n.enty-link:before {\n  content: \"\\e934\";\n}\n.enty-flag:before {\n  content: \"\\e935\";\n}\n.enty-cog:before {\n  content: \"\\e936\";\n}\n.enty-tools:before {\n  content: \"\\e937\";\n}\n.enty-trophy:before {\n  content: \"\\e938\";\n}\n.enty-power-plug:before {\n  content: \"\\e939\";\n}\n.enty-price-tag:before {\n  content: \"\\e93a\";\n}\n.enty-camera:before {\n  content: \"\\e93b\";\n}\n.enty-megaphone:before {\n  content: \"\\e93c\";\n}\n.enty-awareness-ribbon:before {\n  content: \"\\e93d\";\n}\n.enty-moon:before {\n  content: \"\\e93e\";\n}\n.enty-palette:before {\n  content: \"\\e93f\";\n}\n.enty-leaf:before {\n  content: \"\\e940\";\n}\n.enty-man:before {\n  content: \"\\e941\";\n}\n.enty-drink:before {\n  content: \"\\e942\";\n}\n.enty-note:before {\n  content: \"\\e943\";\n}\n.enty-beamed-note:before {\n  content: \"\\e944\";\n}\n.enty-modern-mic:before {\n  content: \"\\e945\";\n}\n.enty-clapperboard:before {\n  content: \"\\e946\";\n}\n.enty-price-ribbon:before {\n  content: \"\\e947\";\n}\n.enty-medal:before {\n  content: \"\\e948\";\n}\n.enty-new:before {\n  content: \"\\e949\";\n}\n.enty-graduation-cap:before {\n  content: \"\\e94a\";\n}\n.enty-blackboard:before {\n  content: \"\\e94b\";\n}\n.enty-book:before {\n  content: \"\\e94c\";\n}\n.enty-pin:before {\n  content: \"\\e94d\";\n}\n.enty-news:before {\n  content: \"\\e94e\";\n}\n.enty-aircraft:before {\n  content: \"\\e94f\";\n}\n.enty-shield:before {\n  content: \"\\e950\";\n}\n.enty-aircraft-take-off:before {\n  content: \"\\e951\";\n}\n.enty-aircraft-landing:before {\n  content: \"\\e952\";\n}\n.enty-lifebuoy:before {\n  content: \"\\e953\";\n}\n.enty-eye:before {\n  content: \"\\e954\";\n}\n.enty-credit:before {\n  content: \"\\e955\";\n}\n.enty-hand:before {\n  content: \"\\e956\";\n}\n.enty-clock:before {\n  content: \"\\e957\";\n}\n.enty-mic:before {\n  content: \"\\e958\";\n}\n.enty-flash:before {\n  content: \"\\e959\";\n}\n.enty-calendar:before {\n  content: \"\\e95a\";\n}\n.enty-thunder-cloud:before {\n  content: \"\\e95b\";\n}\n.enty-drop:before {\n  content: \"\\e95c\";\n}\n.enty-vinyl:before {\n  content: \"\\e95d\";\n}\n.enty-bowl:before {\n  content: \"\\e95e\";\n}\n.enty-briefcase:before {\n  content: \"\\e95f\";\n}\n.enty-air:before {\n  content: \"\\e960\";\n}\n.enty-hour-glass:before {\n  content: \"\\e961\";\n}\n.enty-tree:before {\n  content: \"\\e962\";\n}\n.enty-gauge:before {\n  content: \"\\e963\";\n}\n.enty-colours:before {\n  content: \"\\e964\";\n}\n.enty-language:before {\n  content: \"\\e965\";\n}\n.enty-network:before {\n  content: \"\\e966\";\n}\n.enty-key:before {\n  content: \"\\e967\";\n}\n.enty-stopwatch:before {\n  content: \"\\e968\";\n}\n.enty-battery:before {\n  content: \"\\e969\";\n}\n.enty-bucket:before {\n  content: \"\\e96a\";\n}\n.enty-funnel:before {\n  content: \"\\e96b\";\n}\n.enty-magnet:before {\n  content: \"\\e96c\";\n}\n.enty-cake:before {\n  content: \"\\e96d\";\n}\n.enty-drive:before {\n  content: \"\\e96e\";\n}\n.enty-game-controller:before {\n  content: \"\\e96f\";\n}\n.enty-cup:before {\n  content: \"\\e970\";\n}\n.enty-rocket:before {\n  content: \"\\e971\";\n}\n.enty-lab-flask:before {\n  content: \"\\e972\";\n}\n.enty-ruler:before {\n  content: \"\\e973\";\n}\n.enty-brush:before {\n  content: \"\\e974\";\n}\n.enty-suitcase:before {\n  content: \"\\e975\";\n}\n.enty-traffic-cone:before {\n  content: \"\\e976\";\n}\n.enty-globe:before {\n  content: \"\\e977\";\n}\n.enty-radio:before {\n  content: \"\\e978\";\n}\n.enty-keyboard:before {\n  content: \"\\e979\";\n}\n.enty-round-brush:before {\n  content: \"\\e97a\";\n}\n.enty-flat-brush:before {\n  content: \"\\e97b\";\n}\n.enty-pencil:before {\n  content: \"\\e97c\";\n}\n.enty-eraser:before {\n  content: \"\\e97d\";\n}\n.enty-scissors:before {\n  content: \"\\e97e\";\n}\n.enty-browser:before {\n  content: \"\\e97f\";\n}\n.enty-publish:before {\n  content: \"\\e980\";\n}\n.enty-progress-full:before {\n  content: \"\\e981\";\n}\n.enty-progress-two:before {\n  content: \"\\e982\";\n}\n.enty-progress-one:before {\n  content: \"\\e983\";\n}\n.enty-progress-empty:before {\n  content: \"\\e984\";\n}\n.enty-light-down:before {\n  content: \"\\e985\";\n}\n.enty-light-up:before {\n  content: \"\\e986\";\n}\n.enty-adjust:before {\n  content: \"\\e987\";\n}\n.enty-sound-mix:before {\n  content: \"\\e988\";\n}\n.enty-code:before {\n  content: \"\\e989\";\n}\n.enty-tv:before {\n  content: \"\\e98a\";\n}\n.enty-infinity:before {\n  content: \"\\e98b\";\n}\n.enty-light-bulb:before {\n  content: \"\\e98c\";\n}\n.enty-credit-card:before {\n  content: \"\\e98d\";\n}\n.enty-shop:before {\n  content: \"\\e98e\";\n}\n.enty-shopping-cart:before {\n  content: \"\\e98f\";\n}\n.enty-shopping-bag:before {\n  content: \"\\e990\";\n}\n.enty-shopping-basket:before {\n  content: \"\\e991\";\n}\n.enty-wallet:before {\n  content: \"\\e992\";\n}\n.enty-dial-pad:before {\n  content: \"\\e993\";\n}\n.enty-voicemail:before {\n  content: \"\\e994\";\n}\n.enty-clipboard:before {\n  content: \"\\e995\";\n}\n.enty-database:before {\n  content: \"\\e996\";\n}\n.enty-box:before {\n  content: \"\\e997\";\n}\n.enty-ticket:before {\n  content: \"\\e998\";\n}\n.enty-rss:before {\n  content: \"\\e999\";\n}\n.enty-signal:before {\n  content: \"\\e99a\";\n}\n.enty-thermometer:before {\n  content: \"\\e99b\";\n}\n.enty-water:before {\n  content: \"\\e99c\";\n}\n.enty-sweden:before {\n  content: \"\\e99d\";\n}\n.enty-line-graph:before {\n  content: \"\\e99e\";\n}\n.enty-pie-chart:before {\n  content: \"\\e99f\";\n}\n.enty-bar-graph:before {\n  content: \"\\e9a0\";\n}\n.enty-area-graph:before {\n  content: \"\\e9a1\";\n}\n.enty-circular-graph:before {\n  content: \"\\e9a2\";\n}\n.enty-lock:before {\n  content: \"\\e9a3\";\n}\n.enty-lock-open:before {\n  content: \"\\e9a4\";\n}\n.enty-login:before {\n  content: \"\\e9a5\";\n}\n.enty-log-out:before {\n  content: \"\\e9a6\";\n}\n.enty-switch:before {\n  content: \"\\e9a7\";\n}\n.enty-check:before {\n  content: \"\\e9a8\";\n}\n.enty-cross:before {\n  content: \"\\e9a9\";\n}\n.enty-squared-minus:before {\n  content: \"\\e9aa\";\n}\n.enty-squared-plus:before {\n  content: \"\\e9ab\";\n}\n.enty-squared-cross:before {\n  content: \"\\e9ac\";\n}\n.enty-circle-with-minus:before {\n  content: \"\\e9ad\";\n}\n.enty-circle-with-plus:before {\n  content: \"\\e9ae\";\n}\n.enty-circle-with-cross:before {\n  content: \"\\e9af\";\n}\n.enty-minus:before {\n  content: \"\\e9b0\";\n}\n.enty-plus:before {\n  content: \"\\e9b1\";\n}\n.enty-erase:before {\n  content: \"\\e9b2\";\n}\n.enty-block:before {\n  content: \"\\e9b3\";\n}\n.enty-info:before {\n  content: \"\\e9b4\";\n}\n.enty-help:before {\n  content: \"\\e9b5\";\n}\n.enty-help-with-circle:before {\n  content: \"\\e9b6\";\n}\n.enty-info-with-circle:before {\n  content: \"\\e9b7\";\n}\n.enty-cycle:before {\n  content: \"\\e9b8\";\n}\n.enty-ccw:before {\n  content: \"\\e9b9\";\n}\n.enty-cw:before {\n  content: \"\\e9ba\";\n}\n.enty-circle:before {\n  content: \"\\e9bb\";\n}\n.enty-shuffle:before {\n  content: \"\\e9bc\";\n}\n.enty-back:before {\n  content: \"\\e9bd\";\n}\n.enty-level-down:before {\n  content: \"\\e9be\";\n}\n.enty-level-up:before {\n  content: \"\\e9bf\";\n}\n.enty-loop:before {\n  content: \"\\e9c0\";\n}\n.enty-retweet:before {\n  content: \"\\e9c1\";\n}\n.enty-swap:before {\n  content: \"\\e9c2\";\n}\n.enty-back-in-time:before {\n  content: \"\\e9c3\";\n}\n.enty-align-left:before {\n  content: \"\\e9c4\";\n}\n.enty-align-bottom:before {\n  content: \"\\e9c5\";\n}\n.enty-align-top:before {\n  content: \"\\e9c6\";\n}\n.enty-align-right:before {\n  content: \"\\e9c7\";\n}\n.enty-align-horizontal-middle:before {\n  content: \"\\e9c8\";\n}\n.enty-align-vertical-middle:before {\n  content: \"\\e9c9\";\n}\n.enty-tag:before {\n  content: \"\\e9ca\";\n}\n.enty-untag:before {\n  content: \"\\e9cb\";\n}\n.enty-emoji-happy:before {\n  content: \"\\e9cc\";\n}\n.enty-emoji-neutral:before {\n  content: \"\\e9cd\";\n}\n.enty-emoji-sad:before {\n  content: \"\\e9ce\";\n}\n.enty-unread:before {\n  content: \"\\e9cf\";\n}\n.enty-text:before {\n  content: \"\\e9d0\";\n}\n.enty-list:before {\n  content: \"\\e9d1\";\n}\n.enty-grid:before {\n  content: \"\\e9d2\";\n}\n.enty-menu:before {\n  content: \"\\e9d3\";\n}\n.enty-document:before {\n  content: \"\\e9d4\";\n}\n.enty-documents:before {\n  content: \"\\e9d5\";\n}\n.enty-text-document:before {\n  content: \"\\e9d6\";\n}\n.enty-text-document-inverted:before {\n  content: \"\\e9d7\";\n}\n.enty-spreadsheet:before {\n  content: \"\\e9d8\";\n}\n.enty-copy:before {\n  content: \"\\e9d9\";\n}\n.enty-image:before {\n  content: \"\\e9da\";\n}\n.enty-image-inverted:before {\n  content: \"\\e9db\";\n}\n.enty-images:before {\n  content: \"\\e9dc\";\n}\n.enty-video:before {\n  content: \"\\e9dd\";\n}\n.enty-music:before {\n  content: \"\\e9de\";\n}\n.enty-folder:before {\n  content: \"\\e9df\";\n}\n.enty-folder-images:before {\n  content: \"\\e9e0\";\n}\n.enty-folder-music:before {\n  content: \"\\e9e1\";\n}\n.enty-folder-video:before {\n  content: \"\\e9e2\";\n}\n.enty-sports-club:before {\n  content: \"\\e9e3\";\n}\n.enty-mask:before {\n  content: \"\\e9e4\";\n}\n.enty-time-slot:before {\n  content: \"\\e9e5\";\n}\n.enty-archive:before {\n  content: \"\\e9e6\";\n}\n.enty-emoji-flirt:before {\n  content: \"\\e9e7\";\n}\n.enty-trash:before {\n  content: \"\\e9e8\";\n}\n.enty-upload:before {\n  content: \"\\e9e9\";\n}\n.enty-download:before {\n  content: \"\\e9ea\";\n}\n.enty-save:before {\n  content: \"\\e9eb\";\n}\n.enty-install:before {\n  content: \"\\e9ec\";\n}\n.enty-uninstall:before {\n  content: \"\\e9ed\";\n}\n.enty-cloud:before {\n  content: \"\\e9ee\";\n}\n.enty-upload-to-cloud:before {\n  content: \"\\e9ef\";\n}\n.enty-layers:before {\n  content: \"\\e9f0\";\n}\n.enty-bookmark:before {\n  content: \"\\e9f1\";\n}\n.enty-bookmarks:before {\n  content: \"\\e9f2\";\n}\n.enty-open-book:before {\n  content: \"\\e9f3\";\n}\n.enty-controller-play:before {\n  content: \"\\e9f4\";\n}\n.enty-controller-paus:before {\n  content: \"\\e9f5\";\n}\n.enty-controller-record:before {\n  content: \"\\e9f6\";\n}\n.enty-controller-stop:before {\n  content: \"\\e9f7\";\n}\n.enty-controller-fast-forward:before {\n  content: \"\\e9f8\";\n}\n.enty-controller-jump-to-start:before {\n  content: \"\\e9f9\";\n}\n.enty-controller-next:before {\n  content: \"\\e9fa\";\n}\n.enty-resize-full-screen:before {\n  content: \"\\e9fb\";\n}\n.enty-resize-100:before {\n  content: \"\\e9fc\";\n}\n.enty-controller-volume:before {\n  content: \"\\e9fd\";\n}\n.enty-sound:before {\n  content: \"\\e9fe\";\n}\n.enty-sound-mute:before {\n  content: \"\\e9ff\";\n}\n.enty-flow-cascade:before {\n  content: \"\\ea00\";\n}\n.enty-flow-branch:before {\n  content: \"\\ea01\";\n}\n.enty-flow-tree:before {\n  content: \"\\ea02\";\n}\n.enty-flow-line:before {\n  content: \"\\ea03\";\n}\n.enty-flow-parallel:before {\n  content: \"\\ea04\";\n}\n.enty-arrow-bold-left:before {\n  content: \"\\ea05\";\n}\n.enty-arrow-bold-down:before {\n  content: \"\\ea06\";\n}\n.enty-arrow-bold-up:before {\n  content: \"\\ea07\";\n}\n.enty-arrow-bold-right:before {\n  content: \"\\ea08\";\n}\n.enty-arrow-left:before {\n  content: \"\\ea09\";\n}\n.enty-arrow-down:before {\n  content: \"\\ea0a\";\n}\n.enty-arrow-up:before {\n  content: \"\\ea0b\";\n}\n.enty-arrow-right:before {\n  content: \"\\ea0c\";\n}\n.enty-arrow-with-circle-left:before {\n  content: \"\\ea0d\";\n}\n.enty-arrow-with-circle-down:before {\n  content: \"\\ea0e\";\n}\n.enty-arrow-with-circle-up:before {\n  content: \"\\ea0f\";\n}\n.enty-arrow-with-circle-right:before {\n  content: \"\\ea10\";\n}\n.enty-triangle-left:before {\n  content: \"\\ea11\";\n}\n.enty-triangle-down:before {\n  content: \"\\ea12\";\n}\n.enty-triangle-up:before {\n  content: \"\\ea13\";\n}\n.enty-triangle-right:before {\n  content: \"\\ea14\";\n}\n.enty-chevron-left:before {\n  content: \"\\ea15\";\n}\n.enty-chevron-down:before {\n  content: \"\\ea16\";\n}\n.enty-chevron-up:before {\n  content: \"\\ea17\";\n}\n.enty-chevron-right:before {\n  content: \"\\ea18\";\n}\n.enty-chevron-small-left:before {\n  content: \"\\ea19\";\n}\n.enty-chevron-small-down:before {\n  content: \"\\ea1a\";\n}\n.enty-chevron-small-up:before {\n  content: \"\\ea1b\";\n}\n.enty-chevron-small-right:before {\n  content: \"\\ea1c\";\n}\n.enty-chevron-thin-left:before {\n  content: \"\\ea1d\";\n}\n.enty-chevron-thin-down:before {\n  content: \"\\ea1e\";\n}\n.enty-chevron-thin-up:before {\n  content: \"\\ea1f\";\n}\n.enty-chevron-thin-right:before {\n  content: \"\\ea20\";\n}\n.enty-chevron-with-circle-left:before {\n  content: \"\\ea21\";\n}\n.enty-chevron-with-circle-down:before {\n  content: \"\\ea22\";\n}\n.enty-chevron-with-circle-up:before {\n  content: \"\\ea23\";\n}\n.enty-chevron-with-circle-right:before {\n  content: \"\\ea24\";\n}\n.enty-arrow-long-left:before {\n  content: \"\\ea25\";\n}\n.enty-arrow-long-down:before {\n  content: \"\\ea26\";\n}\n.enty-arrow-long-up:before {\n  content: \"\\ea27\";\n}\n.enty-arrow-long-right:before {\n  content: \"\\ea28\";\n}\n.enty-select-arrows:before {\n  content: \"\\ea29\";\n}\n.enty-dots-three-vertical:before {\n  content: \"\\ea2a\";\n}\n.enty-dots-two-vertical:before {\n  content: \"\\ea2b\";\n}\n.enty-dot-single:before {\n  content: \"\\ea2c\";\n}\n.enty-dots-two-horizontal:before {\n  content: \"\\ea2d\";\n}\n.enty-dots-three-horizontal:before {\n  content: \"\\ea2e\";\n}\n.enty-add-to-list:before {\n  content: \"\\ea2f\";\n}\n.enty-controller-fast-backward:before {\n  content: \"\\ea30\";\n}\n.enty-remove-user:before {\n  content: \"\\ea31\";\n}\n.enty-classic-computer:before {\n  content: \"\\ea32\";\n}\n.enty-document-landscape:before {\n  content: \"\\ea33\";\n}\n.enty-warning:before {\n  content: \"\\ea34\";\n}\n.enty-merge:before {\n  content: \"\\ea35\";\n}\n.enty-eye-with-line:before {\n  content: \"\\ea36\";\n}\n.enty-flower:before {\n  content: \"\\ea37\";\n}\n.enty-newsletter:before {\n  content: \"\\ea38\";\n}\n.enty-tablet-mobile-combo:before {\n  content: \"\\ea39\";\n}\n.enty-bug:before {\n  content: \"\\ea3a\";\n}\n.enty-video-camera:before {\n  content: \"\\ea3b\";\n}\n.enty-fingerprint:before {\n  content: \"\\ea3c\";\n}\n.enty-mouse-pointer:before {\n  content: \"\\ea3d\";\n}\n.enty-crop:before {\n  content: \"\\ea3e\";\n}\n.enty-notifications-off:before {\n  content: \"\\ea3f\";\n}\n.enty-creative-commons-attribution:before {\n  content: \"\\ea40\";\n}\n.enty-creative-commons:before {\n  content: \"\\ea41\";\n}\n.enty-creative-commons-sharealike:before {\n  content: \"\\ea42\";\n}\n.enty-creative-commons-share:before {\n  content: \"\\ea43\";\n}\n.enty-creative-commons-remix:before {\n  content: \"\\ea44\";\n}\n.enty-creative-commons-public-domain:before {\n  content: \"\\ea45\";\n}\n.enty-creative-commons-noncommercial-us:before {\n  content: \"\\ea46\";\n}\n.enty-creative-commons-noncommercial-eu:before {\n  content: \"\\ea47\";\n}\n.enty-creative-commons-noderivs:before {\n  content: \"\\ea48\";\n}\n.enty-github:before {\n  content: \"\\ea49\";\n}\n.enty-github-with-circle:before {\n  content: \"\\ea4a\";\n}\n.enty-flickr:before {\n  content: \"\\ea4b\";\n}\n.enty-flickr-with-circle:before {\n  content: \"\\ea4c\";\n}\n.enty-youtube-with-circle:before {\n  content: \"\\ea4d\";\n}\n.enty-youtube:before {\n  content: \"\\ea4e\";\n}\n.enty-vimeo:before {\n  content: \"\\ea4f\";\n}\n.enty-vimeo-with-circle:before {\n  content: \"\\ea50\";\n}\n.enty-twitter-with-circle:before {\n  content: \"\\ea51\";\n}\n.enty-twitter:before {\n  content: \"\\ea52\";\n}\n.enty-facebook:before {\n  content: \"\\ea53\";\n}\n.enty-facebook-with-circle:before {\n  content: \"\\ea54\";\n}\n.enty-google-plus-with-circle:before {\n  content: \"\\ea55\";\n}\n.enty-google-plus:before {\n  content: \"\\ea56\";\n}\n.enty-pinterest-with-circle:before {\n  content: \"\\ea57\";\n}\n.enty-pinterest:before {\n  content: \"\\ea58\";\n}\n.enty-tumblr:before {\n  content: \"\\ea59\";\n}\n.enty-tumblr-with-circle:before {\n  content: \"\\ea5a\";\n}\n.enty-linkedin-with-circle:before {\n  content: \"\\ea5b\";\n}\n.enty-dribbble:before {\n  content: \"\\ea5c\";\n}\n.enty-dribbble-with-circle:before {\n  content: \"\\ea5d\";\n}\n.enty-stumbleupon:before {\n  content: \"\\ea5e\";\n}\n.enty-stumbleupon-with-circle:before {\n  content: \"\\ea5f\";\n}\n.enty-lastfm-with-circle:before {\n  content: \"\\ea60\";\n}\n.enty-lastfm:before {\n  content: \"\\ea61\";\n}\n.enty-rdio:before {\n  content: \"\\ea62\";\n}\n.enty-rdio-with-circle:before {\n  content: \"\\ea63\";\n}\n.enty-spotify:before {\n  content: \"\\ea64\";\n}\n.enty-spotify-with-circle:before {\n  content: \"\\ea65\";\n}\n.enty-vk:before {\n  content: \"\\ea66\";\n}\n.enty-vk-alternitive:before {\n  content: \"\\ea67\";\n}\n.enty-vk-with-circle:before {\n  content: \"\\ea68\";\n}\n.enty-vine:before {\n  content: \"\\ea69\";\n}\n.enty-vine-with-circle:before {\n  content: \"\\ea6a\";\n}\n.enty-xing:before {\n  content: \"\\ea6b\";\n}\n.enty-xing-with-circle:before {\n  content: \"\\ea6c\";\n}\n.enty-five-hundred-px:before {\n  content: \"\\ea6d\";\n}\n.enty-five-hundred-px-with-circle:before {\n  content: \"\\ea6e\";\n}\n.enty-skype:before {\n  content: \"\\ea6f\";\n}\n.enty-skype-with-circle:before {\n  content: \"\\ea70\";\n}\n.enty-yelp:before {\n  content: \"\\ea71\";\n}\n.enty-grooveshark:before {\n  content: \"\\ea72\";\n}\n.enty-icloud:before {\n  content: \"\\ea73\";\n}\n.enty-dropbox:before {\n  content: \"\\ea74\";\n}\n.enty-onedrive:before {\n  content: \"\\ea75\";\n}\n.enty-qq:before {\n  content: \"\\ea76\";\n}\n.enty-google-hangouts:before {\n  content: \"\\ea77\";\n}\n.enty-slideshare:before {\n  content: \"\\ea78\";\n}\n.enty-flattr:before {\n  content: \"\\ea79\";\n}\n.enty-foursquare:before {\n  content: \"\\ea7a\";\n}\n.enty-scribd:before {\n  content: \"\\ea7b\";\n}\n.enty-swarm:before {\n  content: \"\\ea7c\";\n}\n.enty-renren:before {\n  content: \"\\ea7d\";\n}\n.enty-sina-weibo:before {\n  content: \"\\ea7e\";\n}\n.enty-google-drive:before {\n  content: \"\\ea7f\";\n}\n.enty-picasa:before {\n  content: \"\\ea80\";\n}\n.enty-soundcloud:before {\n  content: \"\\ea81\";\n}\n.enty-mixi:before {\n  content: \"\\ea82\";\n}\n.enty-behance:before {\n  content: \"\\ea83\";\n}\n.enty-paypal:before {\n  content: \"\\ea84\";\n}\n.enty-smashing:before {\n  content: \"\\ea85\";\n}\n.enty-creative-cloud:before {\n  content: \"\\ea86\";\n}\n.enty-basecamp:before {\n  content: \"\\ea87\";\n}\n.enty-tripadvisor:before {\n  content: \"\\ea88\";\n}\n.enty-rainbow:before {\n  content: \"\\ea89\";\n}\n.enty-youko:before {\n  content: \"\\ea8a\";\n}\n.enty-youko-with-circle:before {\n  content: \"\\ea8b\";\n}\n.enty-qq-with-circle:before {\n  content: \"\\ea8c\";\n}\n.enty-raft:before {\n  content: \"\\ea8d\";\n}\n.enty-raft-with-circle:before {\n  content: \"\\ea8e\";\n}\n.enty-medium-with-circle:before {\n  content: \"\\ea8f\";\n}\n.enty-medium:before {\n  content: \"\\ea90\";\n}\n.enty-mail-with-circle:before {\n  content: \"\\ea91\";\n}\n.enty-app-store:before {\n  content: \"\\ea92\";\n}\n.enty-google-play:before {\n  content: \"\\ea93\";\n}\n.enty-windows-store:before {\n  content: \"\\ea94\";\n}\n.enty-houzz:before {\n  content: \"\\ea95\";\n}\n.enty-baidu:before {\n  content: \"\\ea96\";\n}\n.enty-evernote:before {\n  content: \"\\ea97\";\n}\n.enty-linkedin:before {\n  content: \"\\ea98\";\n}\n.enty-instagram:before {\n  content: \"\\ea99\";\n}\n.enty-instagram-with-circle:before {\n  content: \"\\ea9a\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-evaicons-pack/ikonli-evaicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-evaicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.evaicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.evaicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.evaicons.EvaiconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.evaicons.EvaiconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-evaicons-pack/src/main/java/org/kordamp/ikonli/evaicons/Evaicons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.evaicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Evaicons implements Ikon {\n    ACTIVITY(\"eva-activity\", '\\ue901'),\n    ACTIVITY_OUTLINE(\"eva-activity-outline\", '\\ue900'),\n    ALERT_CIRCLE(\"eva-alert-circle\", '\\ue903'),\n    ALERT_CIRCLE_OUTLINE(\"eva-alert-circle-outline\", '\\ue902'),\n    ALERT_TRIANGLE(\"eva-alert-triangle\", '\\ue905'),\n    ALERT_TRIANGLE_OUTLINE(\"eva-alert-triangle-outline\", '\\ue904'),\n    ARCHIVE(\"eva-archive\", '\\ue907'),\n    ARCHIVE_OUTLINE(\"eva-archive-outline\", '\\ue906'),\n    ARROWHEAD_DOWN(\"eva-arrowhead-down\", '\\ue929'),\n    ARROWHEAD_DOWN_OUTLINE(\"eva-arrowhead-down-outline\", '\\ue928'),\n    ARROWHEAD_LEFT(\"eva-arrowhead-left\", '\\ue92b'),\n    ARROWHEAD_LEFT_OUTLINE(\"eva-arrowhead-left-outline\", '\\ue92a'),\n    ARROWHEAD_RIGHT(\"eva-arrowhead-right\", '\\ue92d'),\n    ARROWHEAD_RIGHT_OUTLINE(\"eva-arrowhead-right-outline\", '\\ue92c'),\n    ARROWHEAD_UP(\"eva-arrowhead-up\", '\\ue92f'),\n    ARROWHEAD_UP_OUTLINE(\"eva-arrowhead-up-outline\", '\\ue92e'),\n    ARROW_BACK(\"eva-arrow-back\", '\\ue909'),\n    ARROW_BACK_OUTLINE(\"eva-arrow-back-outline\", '\\ue908'),\n    ARROW_CIRCLE_DOWN(\"eva-arrow-circle-down\", '\\ue90b'),\n    ARROW_CIRCLE_DOWN_OUTLINE(\"eva-arrow-circle-down-outline\", '\\ue90a'),\n    ARROW_CIRCLE_LEFT(\"eva-arrow-circle-left\", '\\ue90d'),\n    ARROW_CIRCLE_LEFT_OUTLINE(\"eva-arrow-circle-left-outline\", '\\ue90c'),\n    ARROW_CIRCLE_RIGHT(\"eva-arrow-circle-right\", '\\ue90f'),\n    ARROW_CIRCLE_RIGHT_OUTLINE(\"eva-arrow-circle-right-outline\", '\\ue90e'),\n    ARROW_CIRCLE_UP(\"eva-arrow-circle-up\", '\\ue911'),\n    ARROW_CIRCLE_UP_OUTLINE(\"eva-arrow-circle-up-outline\", '\\ue910'),\n    ARROW_DOWN(\"eva-arrow-down\", '\\ue913'),\n    ARROW_DOWNWARD(\"eva-arrow-downward\", '\\ue915'),\n    ARROW_DOWNWARD_OUTLINE(\"eva-arrow-downward-outline\", '\\ue914'),\n    ARROW_DOWN_OUTLINE(\"eva-arrow-down-outline\", '\\ue912'),\n    ARROW_FORWARD(\"eva-arrow-forward\", '\\ue917'),\n    ARROW_FORWARD_OUTLINE(\"eva-arrow-forward-outline\", '\\ue916'),\n    ARROW_IOS_BACK(\"eva-arrow-ios-back\", '\\ue919'),\n    ARROW_IOS_BACK_OUTLINE(\"eva-arrow-ios-back-outline\", '\\ue918'),\n    ARROW_IOS_DOWNWARD(\"eva-arrow-ios-downward\", '\\ue91b'),\n    ARROW_IOS_DOWNWARD_OUTLINE(\"eva-arrow-ios-downward-outline\", '\\ue91a'),\n    ARROW_IOS_FORWARD(\"eva-arrow-ios-forward\", '\\ue91d'),\n    ARROW_IOS_FORWARD_OUTLINE(\"eva-arrow-ios-forward-outline\", '\\ue91c'),\n    ARROW_IOS_UPWARD(\"eva-arrow-ios-upward\", '\\ue91f'),\n    ARROW_IOS_UPWARD_OUTLINE(\"eva-arrow-ios-upward-outline\", '\\ue91e'),\n    ARROW_LEFT(\"eva-arrow-left\", '\\ue921'),\n    ARROW_LEFT_OUTLINE(\"eva-arrow-left-outline\", '\\ue920'),\n    ARROW_RIGHT(\"eva-arrow-right\", '\\ue923'),\n    ARROW_RIGHT_OUTLINE(\"eva-arrow-right-outline\", '\\ue922'),\n    ARROW_UP(\"eva-arrow-up\", '\\ue925'),\n    ARROW_UPWARD(\"eva-arrow-upward\", '\\ue927'),\n    ARROW_UPWARD_OUTLINE(\"eva-arrow-upward-outline\", '\\ue926'),\n    ARROW_UP_OUTLINE(\"eva-arrow-up-outline\", '\\ue924'),\n    AT(\"eva-at\", '\\ue931'),\n    ATTACH(\"eva-attach\", '\\ue935'),\n    ATTACH_2(\"eva-attach-2\", '\\ue933'),\n    ATTACH_2_OUTLINE(\"eva-attach-2-outline\", '\\ue932'),\n    ATTACH_OUTLINE(\"eva-attach-outline\", '\\ue934'),\n    AT_OUTLINE(\"eva-at-outline\", '\\ue930'),\n    AWARD(\"eva-award\", '\\ue937'),\n    AWARD_OUTLINE(\"eva-award-outline\", '\\ue936'),\n    BACKSPACE(\"eva-backspace\", '\\ue939'),\n    BACKSPACE_OUTLINE(\"eva-backspace-outline\", '\\ue938'),\n    BAR_CHART(\"eva-bar-chart\", '\\ue93d'),\n    BAR_CHART_2(\"eva-bar-chart-2\", '\\ue93b'),\n    BAR_CHART_2_OUTLINE(\"eva-bar-chart-2-outline\", '\\ue93a'),\n    BAR_CHART_OUTLINE(\"eva-bar-chart-outline\", '\\ue93c'),\n    BATTERY(\"eva-battery\", '\\ue93f'),\n    BATTERY_OUTLINE(\"eva-battery-outline\", '\\ue93e'),\n    BEHANCE(\"eva-behance\", '\\ue941'),\n    BEHANCE_OUTLINE(\"eva-behance-outline\", '\\ue940'),\n    BELL(\"eva-bell\", '\\ue945'),\n    BELL_OFF(\"eva-bell-off\", '\\ue943'),\n    BELL_OFF_OUTLINE(\"eva-bell-off-outline\", '\\ue942'),\n    BELL_OUTLINE(\"eva-bell-outline\", '\\ue944'),\n    BLUETOOTH(\"eva-bluetooth\", '\\ue947'),\n    BLUETOOTH_OUTLINE(\"eva-bluetooth-outline\", '\\ue946'),\n    BOOK(\"eva-book\", '\\ue94b'),\n    BOOKMARK(\"eva-bookmark\", '\\ue94d'),\n    BOOKMARK_OUTLINE(\"eva-bookmark-outline\", '\\ue94c'),\n    BOOK_OPEN(\"eva-book-open\", '\\ue949'),\n    BOOK_OPEN_OUTLINE(\"eva-book-open-outline\", '\\ue948'),\n    BOOK_OUTLINE(\"eva-book-outline\", '\\ue94a'),\n    BRIEFCASE(\"eva-briefcase\", '\\ue94f'),\n    BRIEFCASE_OUTLINE(\"eva-briefcase-outline\", '\\ue94e'),\n    BROWSER(\"eva-browser\", '\\ue951'),\n    BROWSER_OUTLINE(\"eva-browser-outline\", '\\ue950'),\n    BRUSH(\"eva-brush\", '\\ue953'),\n    BRUSH_OUTLINE(\"eva-brush-outline\", '\\ue952'),\n    BULB(\"eva-bulb\", '\\ue955'),\n    BULB_OUTLINE(\"eva-bulb-outline\", '\\ue954'),\n    CALENDAR(\"eva-calendar\", '\\ue957'),\n    CALENDAR_OUTLINE(\"eva-calendar-outline\", '\\ue956'),\n    CAMERA(\"eva-camera\", '\\ue959'),\n    CAMERA_OUTLINE(\"eva-camera-outline\", '\\ue958'),\n    CAR(\"eva-car\", '\\ue95b'),\n    CAR_OUTLINE(\"eva-car-outline\", '\\ue95a'),\n    CAST(\"eva-cast\", '\\ue95d'),\n    CAST_OUTLINE(\"eva-cast-outline\", '\\ue95c'),\n    CHARGING(\"eva-charging\", '\\ue95f'),\n    CHARGING_OUTLINE(\"eva-charging-outline\", '\\ue95e'),\n    CHECKMARK(\"eva-checkmark\", '\\ue969'),\n    CHECKMARK_CIRCLE(\"eva-checkmark-circle\", '\\ue963'),\n    CHECKMARK_CIRCLE_2(\"eva-checkmark-circle-2\", '\\ue961'),\n    CHECKMARK_CIRCLE_2_OUTLINE(\"eva-checkmark-circle-2-outline\", '\\ue960'),\n    CHECKMARK_CIRCLE_OUTLINE(\"eva-checkmark-circle-outline\", '\\ue962'),\n    CHECKMARK_OUTLINE(\"eva-checkmark-outline\", '\\ue964'),\n    CHECKMARK_SQUARE(\"eva-checkmark-square\", '\\ue968'),\n    CHECKMARK_SQUARE_2(\"eva-checkmark-square-2\", '\\ue966'),\n    CHECKMARK_SQUARE_2_OUTLINE(\"eva-checkmark-square-2-outline\", '\\ue965'),\n    CHECKMARK_SQUARE_OUTLINE(\"eva-checkmark-square-outline\", '\\ue967'),\n    CHEVRON_DOWN(\"eva-chevron-down\", '\\ue96b'),\n    CHEVRON_DOWN_OUTLINE(\"eva-chevron-down-outline\", '\\ue96a'),\n    CHEVRON_LEFT(\"eva-chevron-left\", '\\ue96d'),\n    CHEVRON_LEFT_OUTLINE(\"eva-chevron-left-outline\", '\\ue96c'),\n    CHEVRON_RIGHT(\"eva-chevron-right\", '\\ue96f'),\n    CHEVRON_RIGHT_OUTLINE(\"eva-chevron-right-outline\", '\\ue96e'),\n    CHEVRON_UP(\"eva-chevron-up\", '\\ue971'),\n    CHEVRON_UP_OUTLINE(\"eva-chevron-up-outline\", '\\ue970'),\n    CLIPBOARD(\"eva-clipboard\", '\\ue973'),\n    CLIPBOARD_OUTLINE(\"eva-clipboard-outline\", '\\ue972'),\n    CLOCK(\"eva-clock\", '\\ue975'),\n    CLOCK_OUTLINE(\"eva-clock-outline\", '\\ue974'),\n    CLOSE(\"eva-close\", '\\ue97b'),\n    CLOSE_CIRCLE(\"eva-close-circle\", '\\ue977'),\n    CLOSE_CIRCLE_OUTLINE(\"eva-close-circle-outline\", '\\ue976'),\n    CLOSE_OUTLINE(\"eva-close-outline\", '\\ue978'),\n    CLOSE_SQUARE(\"eva-close-square\", '\\ue97a'),\n    CLOSE_SQUARE_OUTLINE(\"eva-close-square-outline\", '\\ue979'),\n    CLOUD_DOWNLOAD(\"eva-cloud-download\", '\\ue97d'),\n    CLOUD_DOWNLOAD_OUTLINE(\"eva-cloud-download-outline\", '\\ue97c'),\n    CLOUD_UPLOAD(\"eva-cloud-upload\", '\\ue97f'),\n    CLOUD_UPLOAD_OUTLINE(\"eva-cloud-upload-outline\", '\\ue97e'),\n    CODE(\"eva-code\", '\\ue983'),\n    CODE_DOWNLOAD(\"eva-code-download\", '\\ue981'),\n    CODE_DOWNLOAD_OUTLINE(\"eva-code-download-outline\", '\\ue980'),\n    CODE_OUTLINE(\"eva-code-outline\", '\\ue982'),\n    COLLAPSE(\"eva-collapse\", '\\ue985'),\n    COLLAPSE_OUTLINE(\"eva-collapse-outline\", '\\ue984'),\n    COLOR_PALETTE(\"eva-color-palette\", '\\ue987'),\n    COLOR_PALETTE_OUTLINE(\"eva-color-palette-outline\", '\\ue986'),\n    COLOR_PICKER(\"eva-color-picker\", '\\ue989'),\n    COLOR_PICKER_OUTLINE(\"eva-color-picker-outline\", '\\ue988'),\n    COMPASS(\"eva-compass\", '\\ue98b'),\n    COMPASS_OUTLINE(\"eva-compass-outline\", '\\ue98a'),\n    COPY(\"eva-copy\", '\\ue98d'),\n    COPY_OUTLINE(\"eva-copy-outline\", '\\ue98c'),\n    CORNER_DOWN_LEFT(\"eva-corner-down-left\", '\\ue98f'),\n    CORNER_DOWN_LEFT_OUTLINE(\"eva-corner-down-left-outline\", '\\ue98e'),\n    CORNER_DOWN_RIGHT(\"eva-corner-down-right\", '\\ue991'),\n    CORNER_DOWN_RIGHT_OUTLINE(\"eva-corner-down-right-outline\", '\\ue990'),\n    CORNER_LEFT_DOWN(\"eva-corner-left-down\", '\\ue993'),\n    CORNER_LEFT_DOWN_OUTLINE(\"eva-corner-left-down-outline\", '\\ue992'),\n    CORNER_LEFT_UP(\"eva-corner-left-up\", '\\ue995'),\n    CORNER_LEFT_UP_OUTLINE(\"eva-corner-left-up-outline\", '\\ue994'),\n    CORNER_RIGHT_DOWN(\"eva-corner-right-down\", '\\ue997'),\n    CORNER_RIGHT_DOWN_OUTLINE(\"eva-corner-right-down-outline\", '\\ue996'),\n    CORNER_RIGHT_UP(\"eva-corner-right-up\", '\\ue999'),\n    CORNER_RIGHT_UP_OUTLINE(\"eva-corner-right-up-outline\", '\\ue998'),\n    CORNER_UP_LEFT(\"eva-corner-up-left\", '\\ue99b'),\n    CORNER_UP_LEFT_OUTLINE(\"eva-corner-up-left-outline\", '\\ue99a'),\n    CORNER_UP_RIGHT(\"eva-corner-up-right\", '\\ue99d'),\n    CORNER_UP_RIGHT_OUTLINE(\"eva-corner-up-right-outline\", '\\ue99c'),\n    CREDIT_CARD(\"eva-credit-card\", '\\ue99f'),\n    CREDIT_CARD_OUTLINE(\"eva-credit-card-outline\", '\\ue99e'),\n    CROP(\"eva-crop\", '\\ue9a1'),\n    CROP_OUTLINE(\"eva-crop-outline\", '\\ue9a0'),\n    CUBE(\"eva-cube\", '\\ue9a3'),\n    CUBE_OUTLINE(\"eva-cube-outline\", '\\ue9a2'),\n    DIAGONAL_ARROW_LEFT_DOWN(\"eva-diagonal-arrow-left-down\", '\\ue9a5'),\n    DIAGONAL_ARROW_LEFT_DOWN_OUTLINE(\"eva-diagonal-arrow-left-down-outline\", '\\ue9a4'),\n    DIAGONAL_ARROW_LEFT_UP(\"eva-diagonal-arrow-left-up\", '\\ue9a7'),\n    DIAGONAL_ARROW_LEFT_UP_OUTLINE(\"eva-diagonal-arrow-left-up-outline\", '\\ue9a6'),\n    DIAGONAL_ARROW_RIGHT_DOWN(\"eva-diagonal-arrow-right-down\", '\\ue9a9'),\n    DIAGONAL_ARROW_RIGHT_DOWN_OUTLINE(\"eva-diagonal-arrow-right-down-outline\", '\\ue9a8'),\n    DIAGONAL_ARROW_RIGHT_UP(\"eva-diagonal-arrow-right-up\", '\\ue9ab'),\n    DIAGONAL_ARROW_RIGHT_UP_OUTLINE(\"eva-diagonal-arrow-right-up-outline\", '\\ue9aa'),\n    DONE_ALL(\"eva-done-all\", '\\ue9ad'),\n    DONE_ALL_OUTLINE(\"eva-done-all-outline\", '\\ue9ac'),\n    DOWNLOAD(\"eva-download\", '\\ue9af'),\n    DOWNLOAD_OUTLINE(\"eva-download-outline\", '\\ue9ae'),\n    DROPLET(\"eva-droplet\", '\\ue9b3'),\n    DROPLET_OFF(\"eva-droplet-off\", '\\ue9b1'),\n    DROPLET_OFF_OUTLINE(\"eva-droplet-off-outline\", '\\ue9b0'),\n    DROPLET_OUTLINE(\"eva-droplet-outline\", '\\ue9b2'),\n    EDIT(\"eva-edit\", '\\ue9b7'),\n    EDIT_2(\"eva-edit-2\", '\\ue9b5'),\n    EDIT_2_OUTLINE(\"eva-edit-2-outline\", '\\ue9b4'),\n    EDIT_OUTLINE(\"eva-edit-outline\", '\\ue9b6'),\n    EMAIL(\"eva-email\", '\\ue9b9'),\n    EMAIL_OUTLINE(\"eva-email-outline\", '\\ue9b8'),\n    EXPAND(\"eva-expand\", '\\ue9bb'),\n    EXPAND_OUTLINE(\"eva-expand-outline\", '\\ue9ba'),\n    EXTERNAL_LINK(\"eva-external-link\", '\\ue9bd'),\n    EXTERNAL_LINK_OUTLINE(\"eva-external-link-outline\", '\\ue9bc'),\n    EYE(\"eva-eye\", '\\ue9c3'),\n    EYE_OFF(\"eva-eye-off\", '\\ue9c1'),\n    EYE_OFF_2(\"eva-eye-off-2\", '\\ue9bf'),\n    EYE_OFF_2_OUTLINE(\"eva-eye-off-2-outline\", '\\ue9be'),\n    EYE_OFF_OUTLINE(\"eva-eye-off-outline\", '\\ue9c0'),\n    EYE_OUTLINE(\"eva-eye-outline\", '\\ue9c2'),\n    FACEBOOK(\"eva-facebook\", '\\ue9c5'),\n    FACEBOOK_OUTLINE(\"eva-facebook-outline\", '\\ue9c4'),\n    FILE(\"eva-file\", '\\ue9cd'),\n    FILE_ADD(\"eva-file-add\", '\\ue9c7'),\n    FILE_ADD_OUTLINE(\"eva-file-add-outline\", '\\ue9c6'),\n    FILE_OUTLINE(\"eva-file-outline\", '\\ue9c8'),\n    FILE_REMOVE(\"eva-file-remove\", '\\ue9ca'),\n    FILE_REMOVE_OUTLINE(\"eva-file-remove-outline\", '\\ue9c9'),\n    FILE_TEXT(\"eva-file-text\", '\\ue9cc'),\n    FILE_TEXT_OUTLINE(\"eva-file-text-outline\", '\\ue9cb'),\n    FILM(\"eva-film\", '\\ue9cf'),\n    FILM_OUTLINE(\"eva-film-outline\", '\\ue9ce'),\n    FLAG(\"eva-flag\", '\\ue9d1'),\n    FLAG_OUTLINE(\"eva-flag-outline\", '\\ue9d0'),\n    FLASH(\"eva-flash\", '\\ue9d5'),\n    FLASH_OFF(\"eva-flash-off\", '\\ue9d3'),\n    FLASH_OFF_OUTLINE(\"eva-flash-off-outline\", '\\ue9d2'),\n    FLASH_OUTLINE(\"eva-flash-outline\", '\\ue9d4'),\n    FLIP(\"eva-flip\", '\\ue9d9'),\n    FLIP_2(\"eva-flip-2\", '\\ue9d7'),\n    FLIP_2_OUTLINE(\"eva-flip-2-outline\", '\\ue9d6'),\n    FLIP_OUTLINE(\"eva-flip-outline\", '\\ue9d8'),\n    FOLDER(\"eva-folder\", '\\ue9df'),\n    FOLDER_ADD(\"eva-folder-add\", '\\ue9db'),\n    FOLDER_ADD_OUTLINE(\"eva-folder-add-outline\", '\\ue9da'),\n    FOLDER_OUTLINE(\"eva-folder-outline\", '\\ue9dc'),\n    FOLDER_REMOVE(\"eva-folder-remove\", '\\ue9de'),\n    FOLDER_REMOVE_OUTLINE(\"eva-folder-remove-outline\", '\\ue9dd'),\n    FUNNEL(\"eva-funnel\", '\\ue9e1'),\n    FUNNEL_OUTLINE(\"eva-funnel-outline\", '\\ue9e0'),\n    GIFT(\"eva-gift\", '\\ue9e3'),\n    GIFT_OUTLINE(\"eva-gift-outline\", '\\ue9e2'),\n    GITHUB(\"eva-github\", '\\ue9e5'),\n    GITHUB_OUTLINE(\"eva-github-outline\", '\\ue9e4'),\n    GLOBE(\"eva-globe\", '\\ue9ea'),\n    GLOBE_2(\"eva-globe-2\", '\\ue9e7'),\n    GLOBE_2_OUTLINE(\"eva-globe-2-outline\", '\\ue9e6'),\n    GLOBE_3(\"eva-globe-3\", '\\ue9e8'),\n    GLOBE_OUTLINE(\"eva-globe-outline\", '\\ue9e9'),\n    GOOGLE(\"eva-google\", '\\ue9ec'),\n    GOOGLE_OUTLINE(\"eva-google-outline\", '\\ue9eb'),\n    GRID(\"eva-grid\", '\\ue9ee'),\n    GRID_OUTLINE(\"eva-grid-outline\", '\\ue9ed'),\n    HARD_DRIVE(\"eva-hard-drive\", '\\ue9f0'),\n    HARD_DRIVE_OUTLINE(\"eva-hard-drive-outline\", '\\ue9ef'),\n    HASH(\"eva-hash\", '\\ue9f2'),\n    HASH_OUTLINE(\"eva-hash-outline\", '\\ue9f1'),\n    HEADPHONES(\"eva-headphones\", '\\ue9f4'),\n    HEADPHONES_OUTLINE(\"eva-headphones-outline\", '\\ue9f3'),\n    HEART(\"eva-heart\", '\\ue9f6'),\n    HEART_OUTLINE(\"eva-heart-outline\", '\\ue9f5'),\n    HOME(\"eva-home\", '\\ue9f8'),\n    HOME_OUTLINE(\"eva-home-outline\", '\\ue9f7'),\n    IMAGE(\"eva-image\", '\\ue9fb'),\n    IMAGE_2(\"eva-image-2\", '\\ue9f9'),\n    IMAGE_OUTLINE(\"eva-image-outline\", '\\ue9fa'),\n    INBOX(\"eva-inbox\", '\\ue9fd'),\n    INBOX_OUTLINE(\"eva-inbox-outline\", '\\ue9fc'),\n    INFO(\"eva-info\", '\\ue9ff'),\n    INFO_OUTLINE(\"eva-info-outline\", '\\ue9fe'),\n    KEYPAD(\"eva-keypad\", '\\uea01'),\n    KEYPAD_OUTLINE(\"eva-keypad-outline\", '\\uea00'),\n    LAYERS(\"eva-layers\", '\\uea03'),\n    LAYERS_OUTLINE(\"eva-layers-outline\", '\\uea02'),\n    LAYOUT(\"eva-layout\", '\\uea05'),\n    LAYOUT_OUTLINE(\"eva-layout-outline\", '\\uea04'),\n    LINK(\"eva-link\", '\\uea09'),\n    LINKEDIN(\"eva-linkedin\", '\\uea0b'),\n    LINKEDIN_OUTLINE(\"eva-linkedin-outline\", '\\uea0a'),\n    LINK_2(\"eva-link-2\", '\\uea07'),\n    LINK_2_OUTLINE(\"eva-link-2-outline\", '\\uea06'),\n    LINK_OUTLINE(\"eva-link-outline\", '\\uea08'),\n    LIST(\"eva-list\", '\\uea0d'),\n    LIST_OUTLINE(\"eva-list-outline\", '\\uea0c'),\n    LOADER_OUTLINE(\"eva-loader-outline\", '\\uea0e'),\n    LOCK(\"eva-lock\", '\\uea10'),\n    LOCK_OUTLINE(\"eva-lock-outline\", '\\uea0f'),\n    LOG_IN(\"eva-log-in\", '\\uea12'),\n    LOG_IN_OUTLINE(\"eva-log-in-outline\", '\\uea11'),\n    LOG_OUT(\"eva-log-out\", '\\uea14'),\n    LOG_OUT_OUTLINE(\"eva-log-out-outline\", '\\uea13'),\n    MAP(\"eva-map\", '\\uea16'),\n    MAP_OUTLINE(\"eva-map-outline\", '\\uea15'),\n    MAXIMIZE(\"eva-maximize\", '\\uea18'),\n    MAXIMIZE_OUTLINE(\"eva-maximize-outline\", '\\uea17'),\n    MENU(\"eva-menu\", '\\uea1e'),\n    MENU_2(\"eva-menu-2\", '\\uea1a'),\n    MENU_2_OUTLINE(\"eva-menu-2-outline\", '\\uea19'),\n    MENU_ARROW(\"eva-menu-arrow\", '\\uea1c'),\n    MENU_ARROW_OUTLINE(\"eva-menu-arrow-outline\", '\\uea1b'),\n    MENU_OUTLINE(\"eva-menu-outline\", '\\uea1d'),\n    MESSAGE_CIRCLE(\"eva-message-circle\", '\\uea20'),\n    MESSAGE_CIRCLE_OUTLINE(\"eva-message-circle-outline\", '\\uea1f'),\n    MESSAGE_SQUARE(\"eva-message-square\", '\\uea22'),\n    MESSAGE_SQUARE_OUTLINE(\"eva-message-square-outline\", '\\uea21'),\n    MIC(\"eva-mic\", '\\uea26'),\n    MIC_OFF(\"eva-mic-off\", '\\uea24'),\n    MIC_OFF_OUTLINE(\"eva-mic-off-outline\", '\\uea23'),\n    MIC_OUTLINE(\"eva-mic-outline\", '\\uea25'),\n    MINIMIZE(\"eva-minimize\", '\\uea28'),\n    MINIMIZE_OUTLINE(\"eva-minimize-outline\", '\\uea27'),\n    MINUS(\"eva-minus\", '\\uea2e'),\n    MINUS_CIRCLE(\"eva-minus-circle\", '\\uea2a'),\n    MINUS_CIRCLE_OUTLINE(\"eva-minus-circle-outline\", '\\uea29'),\n    MINUS_OUTLINE(\"eva-minus-outline\", '\\uea2b'),\n    MINUS_SQUARE(\"eva-minus-square\", '\\uea2d'),\n    MINUS_SQUARE_OUTLINE(\"eva-minus-square-outline\", '\\uea2c'),\n    MONITOR(\"eva-monitor\", '\\uea30'),\n    MONITOR_OUTLINE(\"eva-monitor-outline\", '\\uea2f'),\n    MOON(\"eva-moon\", '\\uea32'),\n    MOON_OUTLINE(\"eva-moon-outline\", '\\uea31'),\n    MORE_HORIZONTAL(\"eva-more-horizontal\", '\\uea34'),\n    MORE_HORIZONTAL_OUTLINE(\"eva-more-horizontal-outline\", '\\uea33'),\n    MORE_VERTICAL(\"eva-more-vertical\", '\\uea36'),\n    MORE_VERTICAL_OUTLINE(\"eva-more-vertical-outline\", '\\uea35'),\n    MOVE(\"eva-move\", '\\uea38'),\n    MOVE_OUTLINE(\"eva-move-outline\", '\\uea37'),\n    MUSIC(\"eva-music\", '\\uea3a'),\n    MUSIC_OUTLINE(\"eva-music-outline\", '\\uea39'),\n    NAVIGATION(\"eva-navigation\", '\\uea3e'),\n    NAVIGATION_2(\"eva-navigation-2\", '\\uea3c'),\n    NAVIGATION_2_OUTLINE(\"eva-navigation-2-outline\", '\\uea3b'),\n    NAVIGATION_OUTLINE(\"eva-navigation-outline\", '\\uea3d'),\n    NPM(\"eva-npm\", '\\uea40'),\n    NPM_OUTLINE(\"eva-npm-outline\", '\\uea3f'),\n    OPTIONS(\"eva-options\", '\\uea44'),\n    OPTIONS_2(\"eva-options-2\", '\\uea42'),\n    OPTIONS_2_OUTLINE(\"eva-options-2-outline\", '\\uea41'),\n    OPTIONS_OUTLINE(\"eva-options-outline\", '\\uea43'),\n    PANTONE(\"eva-pantone\", '\\uea46'),\n    PANTONE_OUTLINE(\"eva-pantone-outline\", '\\uea45'),\n    PAPER_PLANE(\"eva-paper-plane\", '\\uea48'),\n    PAPER_PLANE_OUTLINE(\"eva-paper-plane-outline\", '\\uea47'),\n    PAUSE_CIRCLE(\"eva-pause-circle\", '\\uea4a'),\n    PAUSE_CIRCLE_OUTLINE(\"eva-pause-circle-outline\", '\\uea49'),\n    PEOPLE(\"eva-people\", '\\uea4c'),\n    PEOPLE_OUTLINE(\"eva-people-outline\", '\\uea4b'),\n    PERCENT(\"eva-percent\", '\\uea4e'),\n    PERCENT_OUTLINE(\"eva-percent-outline\", '\\uea4d'),\n    PERSON(\"eva-person\", '\\uea58'),\n    PERSON_ADD(\"eva-person-add\", '\\uea50'),\n    PERSON_ADD_OUTLINE(\"eva-person-add-outline\", '\\uea4f'),\n    PERSON_DELETE(\"eva-person-delete\", '\\uea52'),\n    PERSON_DELETE_OUTLINE(\"eva-person-delete-outline\", '\\uea51'),\n    PERSON_DONE(\"eva-person-done\", '\\uea54'),\n    PERSON_DONE_OUTLINE(\"eva-person-done-outline\", '\\uea53'),\n    PERSON_OUTLINE(\"eva-person-outline\", '\\uea55'),\n    PERSON_REMOVE(\"eva-person-remove\", '\\uea57'),\n    PERSON_REMOVE_OUTLINE(\"eva-person-remove-outline\", '\\uea56'),\n    PHONE(\"eva-phone\", '\\uea60'),\n    PHONE_CALL(\"eva-phone-call\", '\\uea5a'),\n    PHONE_CALL_OUTLINE(\"eva-phone-call-outline\", '\\uea59'),\n    PHONE_MISSED(\"eva-phone-missed\", '\\uea5c'),\n    PHONE_MISSED_OUTLINE(\"eva-phone-missed-outline\", '\\uea5b'),\n    PHONE_OFF(\"eva-phone-off\", '\\uea5e'),\n    PHONE_OFF_OUTLINE(\"eva-phone-off-outline\", '\\uea5d'),\n    PHONE_OUTLINE(\"eva-phone-outline\", '\\uea5f'),\n    PIE_CHART(\"eva-pie-chart\", '\\uea63'),\n    PIE_CHART_2(\"eva-pie-chart-2\", '\\uea61'),\n    PIE_CHART_OUTLINE(\"eva-pie-chart-outline\", '\\uea62'),\n    PIN(\"eva-pin\", '\\uea65'),\n    PIN_OUTLINE(\"eva-pin-outline\", '\\uea64'),\n    PLAY_CIRCLE(\"eva-play-circle\", '\\uea67'),\n    PLAY_CIRCLE_OUTLINE(\"eva-play-circle-outline\", '\\uea66'),\n    PLUS(\"eva-plus\", '\\uea6d'),\n    PLUS_CIRCLE(\"eva-plus-circle\", '\\uea69'),\n    PLUS_CIRCLE_OUTLINE(\"eva-plus-circle-outline\", '\\uea68'),\n    PLUS_OUTLINE(\"eva-plus-outline\", '\\uea6a'),\n    PLUS_SQUARE(\"eva-plus-square\", '\\uea6c'),\n    PLUS_SQUARE_OUTLINE(\"eva-plus-square-outline\", '\\uea6b'),\n    POWER(\"eva-power\", '\\uea6f'),\n    POWER_OUTLINE(\"eva-power-outline\", '\\uea6e'),\n    PRICETAGS(\"eva-pricetags\", '\\uea71'),\n    PRICETAGS_OUTLINE(\"eva-pricetags-outline\", '\\uea70'),\n    PRINTER(\"eva-printer\", '\\uea73'),\n    PRINTER_OUTLINE(\"eva-printer-outline\", '\\uea72'),\n    QUESTION_MARK(\"eva-question-mark\", '\\uea77'),\n    QUESTION_MARK_CIRCLE(\"eva-question-mark-circle\", '\\uea75'),\n    QUESTION_MARK_CIRCLE_OUTLINE(\"eva-question-mark-circle-outline\", '\\uea74'),\n    QUESTION_MARK_OUTLINE(\"eva-question-mark-outline\", '\\uea76'),\n    RADIO(\"eva-radio\", '\\uea7d'),\n    RADIO_BUTTON_OFF(\"eva-radio-button-off\", '\\uea79'),\n    RADIO_BUTTON_OFF_OUTLINE(\"eva-radio-button-off-outline\", '\\uea78'),\n    RADIO_BUTTON_ON(\"eva-radio-button-on\", '\\uea7b'),\n    RADIO_BUTTON_ON_OUTLINE(\"eva-radio-button-on-outline\", '\\uea7a'),\n    RADIO_OUTLINE(\"eva-radio-outline\", '\\uea7c'),\n    RECORDING(\"eva-recording\", '\\uea7f'),\n    RECORDING_OUTLINE(\"eva-recording-outline\", '\\uea7e'),\n    REFRESH(\"eva-refresh\", '\\uea81'),\n    REFRESH_OUTLINE(\"eva-refresh-outline\", '\\uea80'),\n    REPEAT(\"eva-repeat\", '\\uea83'),\n    REPEAT_OUTLINE(\"eva-repeat-outline\", '\\uea82'),\n    REWIND_LEFT(\"eva-rewind-left\", '\\uea85'),\n    REWIND_LEFT_OUTLINE(\"eva-rewind-left-outline\", '\\uea84'),\n    REWIND_RIGHT(\"eva-rewind-right\", '\\uea87'),\n    REWIND_RIGHT_OUTLINE(\"eva-rewind-right-outline\", '\\uea86'),\n    SAVE(\"eva-save\", '\\uea89'),\n    SAVE_OUTLINE(\"eva-save-outline\", '\\uea88'),\n    SCISSORS(\"eva-scissors\", '\\uea8b'),\n    SCISSORS_OUTLINE(\"eva-scissors-outline\", '\\uea8a'),\n    SEARCH(\"eva-search\", '\\uea8d'),\n    SEARCH_OUTLINE(\"eva-search-outline\", '\\uea8c'),\n    SETTINGS(\"eva-settings\", '\\uea91'),\n    SETTINGS_2(\"eva-settings-2\", '\\uea8f'),\n    SETTINGS_2_OUTLINE(\"eva-settings-2-outline\", '\\uea8e'),\n    SETTINGS_OUTLINE(\"eva-settings-outline\", '\\uea90'),\n    SHAKE(\"eva-shake\", '\\uea93'),\n    SHAKE_OUTLINE(\"eva-shake-outline\", '\\uea92'),\n    SHARE(\"eva-share\", '\\uea95'),\n    SHARE_OUTLINE(\"eva-share-outline\", '\\uea94'),\n    SHIELD(\"eva-shield\", '\\uea99'),\n    SHIELD_OFF(\"eva-shield-off\", '\\uea97'),\n    SHIELD_OFF_OUTLINE(\"eva-shield-off-outline\", '\\uea96'),\n    SHIELD_OUTLINE(\"eva-shield-outline\", '\\uea98'),\n    SHOPPING_BAG(\"eva-shopping-bag\", '\\uea9b'),\n    SHOPPING_BAG_OUTLINE(\"eva-shopping-bag-outline\", '\\uea9a'),\n    SHOPPING_CART(\"eva-shopping-cart\", '\\uea9d'),\n    SHOPPING_CART_OUTLINE(\"eva-shopping-cart-outline\", '\\uea9c'),\n    SHUFFLE(\"eva-shuffle\", '\\ueaa1'),\n    SHUFFLE_2(\"eva-shuffle-2\", '\\uea9f'),\n    SHUFFLE_2_OUTLINE(\"eva-shuffle-2-outline\", '\\uea9e'),\n    SHUFFLE_OUTLINE(\"eva-shuffle-outline\", '\\ueaa0'),\n    SKIP_BACK(\"eva-skip-back\", '\\ueaa3'),\n    SKIP_BACK_OUTLINE(\"eva-skip-back-outline\", '\\ueaa2'),\n    SKIP_FORWARD(\"eva-skip-forward\", '\\ueaa5'),\n    SKIP_FORWARD_OUTLINE(\"eva-skip-forward-outline\", '\\ueaa4'),\n    SLASH(\"eva-slash\", '\\ueaa7'),\n    SLASH_OUTLINE(\"eva-slash-outline\", '\\ueaa6'),\n    SMARTPHONE(\"eva-smartphone\", '\\ueaa9'),\n    SMARTPHONE_OUTLINE(\"eva-smartphone-outline\", '\\ueaa8'),\n    SMILING_FACE(\"eva-smiling-face\", '\\ueaab'),\n    SMILING_FACE_OUTLINE(\"eva-smiling-face-outline\", '\\ueaaa'),\n    SPEAKER(\"eva-speaker\", '\\ueaad'),\n    SPEAKER_OUTLINE(\"eva-speaker-outline\", '\\ueaac'),\n    SQUARE(\"eva-square\", '\\ueaaf'),\n    SQUARE_OUTLINE(\"eva-square-outline\", '\\ueaae'),\n    STAR(\"eva-star\", '\\ueab1'),\n    STAR_OUTLINE(\"eva-star-outline\", '\\ueab0'),\n    STOP_CIRCLE(\"eva-stop-circle\", '\\ueab3'),\n    STOP_CIRCLE_OUTLINE(\"eva-stop-circle-outline\", '\\ueab2'),\n    SUN(\"eva-sun\", '\\ueab5'),\n    SUN_OUTLINE(\"eva-sun-outline\", '\\ueab4'),\n    SWAP(\"eva-swap\", '\\ueab7'),\n    SWAP_OUTLINE(\"eva-swap-outline\", '\\ueab6'),\n    SYNC(\"eva-sync\", '\\ueab9'),\n    SYNC_OUTLINE(\"eva-sync-outline\", '\\ueab8'),\n    TEXT(\"eva-text\", '\\ueabb'),\n    TEXT_OUTLINE(\"eva-text-outline\", '\\ueaba'),\n    THERMOMETER(\"eva-thermometer\", '\\ueac1'),\n    THERMOMETER_MINUS(\"eva-thermometer-minus\", '\\ueabd'),\n    THERMOMETER_MINUS_OUTLINE(\"eva-thermometer-minus-outline\", '\\ueabc'),\n    THERMOMETER_OUTLINE(\"eva-thermometer-outline\", '\\ueabe'),\n    THERMOMETER_PLUS(\"eva-thermometer-plus\", '\\ueac0'),\n    THERMOMETER_PLUS_OUTLINE(\"eva-thermometer-plus-outline\", '\\ueabf'),\n    TOGGLE_LEFT(\"eva-toggle-left\", '\\ueac3'),\n    TOGGLE_LEFT_OUTLINE(\"eva-toggle-left-outline\", '\\ueac2'),\n    TOGGLE_RIGHT(\"eva-toggle-right\", '\\ueac5'),\n    TOGGLE_RIGHT_OUTLINE(\"eva-toggle-right-outline\", '\\ueac4'),\n    TRASH(\"eva-trash\", '\\ueac9'),\n    TRASH_2(\"eva-trash-2\", '\\ueac7'),\n    TRASH_2_OUTLINE(\"eva-trash-2-outline\", '\\ueac6'),\n    TRASH_OUTLINE(\"eva-trash-outline\", '\\ueac8'),\n    TRENDING_DOWN(\"eva-trending-down\", '\\ueacb'),\n    TRENDING_DOWN_OUTLINE(\"eva-trending-down-outline\", '\\ueaca'),\n    TRENDING_UP(\"eva-trending-up\", '\\ueacd'),\n    TRENDING_UP_OUTLINE(\"eva-trending-up-outline\", '\\ueacc'),\n    TV(\"eva-tv\", '\\ueacf'),\n    TV_OUTLINE(\"eva-tv-outline\", '\\ueace'),\n    TWITTER(\"eva-twitter\", '\\uead1'),\n    TWITTER_OUTLINE(\"eva-twitter-outline\", '\\uead0'),\n    UMBRELLA(\"eva-umbrella\", '\\uead3'),\n    UMBRELLA_OUTLINE(\"eva-umbrella-outline\", '\\uead2'),\n    UNDO(\"eva-undo\", '\\uead5'),\n    UNDO_OUTLINE(\"eva-undo-outline\", '\\uead4'),\n    UNLOCK(\"eva-unlock\", '\\uead7'),\n    UNLOCK_OUTLINE(\"eva-unlock-outline\", '\\uead6'),\n    UPLOAD(\"eva-upload\", '\\uead9'),\n    UPLOAD_OUTLINE(\"eva-upload-outline\", '\\uead8'),\n    VIDEO(\"eva-video\", '\\ueadd'),\n    VIDEO_OFF(\"eva-video-off\", '\\ueadb'),\n    VIDEO_OFF_OUTLINE(\"eva-video-off-outline\", '\\ueada'),\n    VIDEO_OUTLINE(\"eva-video-outline\", '\\ueadc'),\n    VOLUME_DOWN(\"eva-volume-down\", '\\ueadf'),\n    VOLUME_DOWN_OUTLINE(\"eva-volume-down-outline\", '\\ueade'),\n    VOLUME_MUTE(\"eva-volume-mute\", '\\ueae1'),\n    VOLUME_MUTE_OUTLINE(\"eva-volume-mute-outline\", '\\ueae0'),\n    VOLUME_OFF(\"eva-volume-off\", '\\ueae3'),\n    VOLUME_OFF_OUTLINE(\"eva-volume-off-outline\", '\\ueae2'),\n    VOLUME_UP(\"eva-volume-up\", '\\ueae5'),\n    VOLUME_UP_OUTLINE(\"eva-volume-up-outline\", '\\ueae4'),\n    WIFI(\"eva-wifi\", '\\ueae9'),\n    WIFI_OFF(\"eva-wifi-off\", '\\ueae7'),\n    WIFI_OFF_OUTLINE(\"eva-wifi-off-outline\", '\\ueae6'),\n    WIFI_OUTLINE(\"eva-wifi-outline\", '\\ueae8');\n\n    public static Evaicons findByDescription(String description) {\n        for (Evaicons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Evaicons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-evaicons-pack/src/main/java/org/kordamp/ikonli/evaicons/EvaiconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.evaicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class EvaiconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/evaicons/1.1.3/fonts/Evaicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"eva-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Evaicons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Evaicons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-evaicons-pack/src/main/java/org/kordamp/ikonli/evaicons/EvaiconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.evaicons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class EvaiconsIkonProvider implements IkonProvider<Evaicons> {\n    @Override\n    public Class<Evaicons> getIkon() {\n        return Evaicons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-evaicons-pack/src/main/resources/META-INF/resources/evaicons/1.1.3/css/evaicons.css",
    "content": "@font-face {\n  font-family: 'Evaicons';\n  src:  url('../fonts/Evaicons.eot?66ynol');\n  src:  url('../fonts/Evaicons.eot?66ynol#iefix') format('embedded-opentype'),\n    url('../fonts/Evaicons.ttf?66ynol') format('truetype'),\n    url('../fonts/Evaicons.woff?66ynol') format('woff'),\n    url('../fonts/Evaicons.svg?66ynol#Evaicons') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"eva-\"], [class*=\" eva-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Evaicons' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.eva-activity-outline:before {\n  content: \"\\e900\";\n}\n.eva-activity:before {\n  content: \"\\e901\";\n}\n.eva-alert-circle-outline:before {\n  content: \"\\e902\";\n}\n.eva-alert-circle:before {\n  content: \"\\e903\";\n}\n.eva-alert-triangle-outline:before {\n  content: \"\\e904\";\n}\n.eva-alert-triangle:before {\n  content: \"\\e905\";\n}\n.eva-archive-outline:before {\n  content: \"\\e906\";\n}\n.eva-archive:before {\n  content: \"\\e907\";\n}\n.eva-arrow-back-outline:before {\n  content: \"\\e908\";\n}\n.eva-arrow-back:before {\n  content: \"\\e909\";\n}\n.eva-arrow-circle-down-outline:before {\n  content: \"\\e90a\";\n}\n.eva-arrow-circle-down:before {\n  content: \"\\e90b\";\n}\n.eva-arrow-circle-left-outline:before {\n  content: \"\\e90c\";\n}\n.eva-arrow-circle-left:before {\n  content: \"\\e90d\";\n}\n.eva-arrow-circle-right-outline:before {\n  content: \"\\e90e\";\n}\n.eva-arrow-circle-right:before {\n  content: \"\\e90f\";\n}\n.eva-arrow-circle-up-outline:before {\n  content: \"\\e910\";\n}\n.eva-arrow-circle-up:before {\n  content: \"\\e911\";\n}\n.eva-arrow-down-outline:before {\n  content: \"\\e912\";\n}\n.eva-arrow-down:before {\n  content: \"\\e913\";\n}\n.eva-arrow-downward-outline:before {\n  content: \"\\e914\";\n}\n.eva-arrow-downward:before {\n  content: \"\\e915\";\n}\n.eva-arrow-forward-outline:before {\n  content: \"\\e916\";\n}\n.eva-arrow-forward:before {\n  content: \"\\e917\";\n}\n.eva-arrow-ios-back-outline:before {\n  content: \"\\e918\";\n}\n.eva-arrow-ios-back:before {\n  content: \"\\e919\";\n}\n.eva-arrow-ios-downward-outline:before {\n  content: \"\\e91a\";\n}\n.eva-arrow-ios-downward:before {\n  content: \"\\e91b\";\n}\n.eva-arrow-ios-forward-outline:before {\n  content: \"\\e91c\";\n}\n.eva-arrow-ios-forward:before {\n  content: \"\\e91d\";\n}\n.eva-arrow-ios-upward-outline:before {\n  content: \"\\e91e\";\n}\n.eva-arrow-ios-upward:before {\n  content: \"\\e91f\";\n}\n.eva-arrow-left-outline:before {\n  content: \"\\e920\";\n}\n.eva-arrow-left:before {\n  content: \"\\e921\";\n}\n.eva-arrow-right-outline:before {\n  content: \"\\e922\";\n}\n.eva-arrow-right:before {\n  content: \"\\e923\";\n}\n.eva-arrow-up-outline:before {\n  content: \"\\e924\";\n}\n.eva-arrow-up:before {\n  content: \"\\e925\";\n}\n.eva-arrow-upward-outline:before {\n  content: \"\\e926\";\n}\n.eva-arrow-upward:before {\n  content: \"\\e927\";\n}\n.eva-arrowhead-down-outline:before {\n  content: \"\\e928\";\n}\n.eva-arrowhead-down:before {\n  content: \"\\e929\";\n}\n.eva-arrowhead-left-outline:before {\n  content: \"\\e92a\";\n}\n.eva-arrowhead-left:before {\n  content: \"\\e92b\";\n}\n.eva-arrowhead-right-outline:before {\n  content: \"\\e92c\";\n}\n.eva-arrowhead-right:before {\n  content: \"\\e92d\";\n}\n.eva-arrowhead-up-outline:before {\n  content: \"\\e92e\";\n}\n.eva-arrowhead-up:before {\n  content: \"\\e92f\";\n}\n.eva-at-outline:before {\n  content: \"\\e930\";\n}\n.eva-at:before {\n  content: \"\\e931\";\n}\n.eva-attach-2-outline:before {\n  content: \"\\e932\";\n}\n.eva-attach-2:before {\n  content: \"\\e933\";\n}\n.eva-attach-outline:before {\n  content: \"\\e934\";\n}\n.eva-attach:before {\n  content: \"\\e935\";\n}\n.eva-award-outline:before {\n  content: \"\\e936\";\n}\n.eva-award:before {\n  content: \"\\e937\";\n}\n.eva-backspace-outline:before {\n  content: \"\\e938\";\n}\n.eva-backspace:before {\n  content: \"\\e939\";\n}\n.eva-bar-chart-2-outline:before {\n  content: \"\\e93a\";\n}\n.eva-bar-chart-2:before {\n  content: \"\\e93b\";\n}\n.eva-bar-chart-outline:before {\n  content: \"\\e93c\";\n}\n.eva-bar-chart:before {\n  content: \"\\e93d\";\n}\n.eva-battery-outline:before {\n  content: \"\\e93e\";\n}\n.eva-battery:before {\n  content: \"\\e93f\";\n}\n.eva-behance-outline:before {\n  content: \"\\e940\";\n}\n.eva-behance:before {\n  content: \"\\e941\";\n}\n.eva-bell-off-outline:before {\n  content: \"\\e942\";\n}\n.eva-bell-off:before {\n  content: \"\\e943\";\n}\n.eva-bell-outline:before {\n  content: \"\\e944\";\n}\n.eva-bell:before {\n  content: \"\\e945\";\n}\n.eva-bluetooth-outline:before {\n  content: \"\\e946\";\n}\n.eva-bluetooth:before {\n  content: \"\\e947\";\n}\n.eva-book-open-outline:before {\n  content: \"\\e948\";\n}\n.eva-book-open:before {\n  content: \"\\e949\";\n}\n.eva-book-outline:before {\n  content: \"\\e94a\";\n}\n.eva-book:before {\n  content: \"\\e94b\";\n}\n.eva-bookmark-outline:before {\n  content: \"\\e94c\";\n}\n.eva-bookmark:before {\n  content: \"\\e94d\";\n}\n.eva-briefcase-outline:before {\n  content: \"\\e94e\";\n}\n.eva-briefcase:before {\n  content: \"\\e94f\";\n}\n.eva-browser-outline:before {\n  content: \"\\e950\";\n}\n.eva-browser:before {\n  content: \"\\e951\";\n}\n.eva-brush-outline:before {\n  content: \"\\e952\";\n}\n.eva-brush:before {\n  content: \"\\e953\";\n}\n.eva-bulb-outline:before {\n  content: \"\\e954\";\n}\n.eva-bulb:before {\n  content: \"\\e955\";\n}\n.eva-calendar-outline:before {\n  content: \"\\e956\";\n}\n.eva-calendar:before {\n  content: \"\\e957\";\n}\n.eva-camera-outline:before {\n  content: \"\\e958\";\n}\n.eva-camera:before {\n  content: \"\\e959\";\n}\n.eva-car-outline:before {\n  content: \"\\e95a\";\n}\n.eva-car:before {\n  content: \"\\e95b\";\n}\n.eva-cast-outline:before {\n  content: \"\\e95c\";\n}\n.eva-cast:before {\n  content: \"\\e95d\";\n}\n.eva-charging-outline:before {\n  content: \"\\e95e\";\n}\n.eva-charging:before {\n  content: \"\\e95f\";\n}\n.eva-checkmark-circle-2-outline:before {\n  content: \"\\e960\";\n}\n.eva-checkmark-circle-2:before {\n  content: \"\\e961\";\n}\n.eva-checkmark-circle-outline:before {\n  content: \"\\e962\";\n}\n.eva-checkmark-circle:before {\n  content: \"\\e963\";\n}\n.eva-checkmark-outline:before {\n  content: \"\\e964\";\n}\n.eva-checkmark-square-2-outline:before {\n  content: \"\\e965\";\n}\n.eva-checkmark-square-2:before {\n  content: \"\\e966\";\n}\n.eva-checkmark-square-outline:before {\n  content: \"\\e967\";\n}\n.eva-checkmark-square:before {\n  content: \"\\e968\";\n}\n.eva-checkmark:before {\n  content: \"\\e969\";\n}\n.eva-chevron-down-outline:before {\n  content: \"\\e96a\";\n}\n.eva-chevron-down:before {\n  content: \"\\e96b\";\n}\n.eva-chevron-left-outline:before {\n  content: \"\\e96c\";\n}\n.eva-chevron-left:before {\n  content: \"\\e96d\";\n}\n.eva-chevron-right-outline:before {\n  content: \"\\e96e\";\n}\n.eva-chevron-right:before {\n  content: \"\\e96f\";\n}\n.eva-chevron-up-outline:before {\n  content: \"\\e970\";\n}\n.eva-chevron-up:before {\n  content: \"\\e971\";\n}\n.eva-clipboard-outline:before {\n  content: \"\\e972\";\n}\n.eva-clipboard:before {\n  content: \"\\e973\";\n}\n.eva-clock-outline:before {\n  content: \"\\e974\";\n}\n.eva-clock:before {\n  content: \"\\e975\";\n}\n.eva-close-circle-outline:before {\n  content: \"\\e976\";\n}\n.eva-close-circle:before {\n  content: \"\\e977\";\n}\n.eva-close-outline:before {\n  content: \"\\e978\";\n}\n.eva-close-square-outline:before {\n  content: \"\\e979\";\n}\n.eva-close-square:before {\n  content: \"\\e97a\";\n}\n.eva-close:before {\n  content: \"\\e97b\";\n}\n.eva-cloud-download-outline:before {\n  content: \"\\e97c\";\n}\n.eva-cloud-download:before {\n  content: \"\\e97d\";\n}\n.eva-cloud-upload-outline:before {\n  content: \"\\e97e\";\n}\n.eva-cloud-upload:before {\n  content: \"\\e97f\";\n}\n.eva-code-download-outline:before {\n  content: \"\\e980\";\n}\n.eva-code-download:before {\n  content: \"\\e981\";\n}\n.eva-code-outline:before {\n  content: \"\\e982\";\n}\n.eva-code:before {\n  content: \"\\e983\";\n}\n.eva-collapse-outline:before {\n  content: \"\\e984\";\n}\n.eva-collapse:before {\n  content: \"\\e985\";\n}\n.eva-color-palette-outline:before {\n  content: \"\\e986\";\n}\n.eva-color-palette:before {\n  content: \"\\e987\";\n}\n.eva-color-picker-outline:before {\n  content: \"\\e988\";\n}\n.eva-color-picker:before {\n  content: \"\\e989\";\n}\n.eva-compass-outline:before {\n  content: \"\\e98a\";\n}\n.eva-compass:before {\n  content: \"\\e98b\";\n}\n.eva-copy-outline:before {\n  content: \"\\e98c\";\n}\n.eva-copy:before {\n  content: \"\\e98d\";\n}\n.eva-corner-down-left-outline:before {\n  content: \"\\e98e\";\n}\n.eva-corner-down-left:before {\n  content: \"\\e98f\";\n}\n.eva-corner-down-right-outline:before {\n  content: \"\\e990\";\n}\n.eva-corner-down-right:before {\n  content: \"\\e991\";\n}\n.eva-corner-left-down-outline:before {\n  content: \"\\e992\";\n}\n.eva-corner-left-down:before {\n  content: \"\\e993\";\n}\n.eva-corner-left-up-outline:before {\n  content: \"\\e994\";\n}\n.eva-corner-left-up:before {\n  content: \"\\e995\";\n}\n.eva-corner-right-down-outline:before {\n  content: \"\\e996\";\n}\n.eva-corner-right-down:before {\n  content: \"\\e997\";\n}\n.eva-corner-right-up-outline:before {\n  content: \"\\e998\";\n}\n.eva-corner-right-up:before {\n  content: \"\\e999\";\n}\n.eva-corner-up-left-outline:before {\n  content: \"\\e99a\";\n}\n.eva-corner-up-left:before {\n  content: \"\\e99b\";\n}\n.eva-corner-up-right-outline:before {\n  content: \"\\e99c\";\n}\n.eva-corner-up-right:before {\n  content: \"\\e99d\";\n}\n.eva-credit-card-outline:before {\n  content: \"\\e99e\";\n}\n.eva-credit-card:before {\n  content: \"\\e99f\";\n}\n.eva-crop-outline:before {\n  content: \"\\e9a0\";\n}\n.eva-crop:before {\n  content: \"\\e9a1\";\n}\n.eva-cube-outline:before {\n  content: \"\\e9a2\";\n}\n.eva-cube:before {\n  content: \"\\e9a3\";\n}\n.eva-diagonal-arrow-left-down-outline:before {\n  content: \"\\e9a4\";\n}\n.eva-diagonal-arrow-left-down:before {\n  content: \"\\e9a5\";\n}\n.eva-diagonal-arrow-left-up-outline:before {\n  content: \"\\e9a6\";\n}\n.eva-diagonal-arrow-left-up:before {\n  content: \"\\e9a7\";\n}\n.eva-diagonal-arrow-right-down-outline:before {\n  content: \"\\e9a8\";\n}\n.eva-diagonal-arrow-right-down:before {\n  content: \"\\e9a9\";\n}\n.eva-diagonal-arrow-right-up-outline:before {\n  content: \"\\e9aa\";\n}\n.eva-diagonal-arrow-right-up:before {\n  content: \"\\e9ab\";\n}\n.eva-done-all-outline:before {\n  content: \"\\e9ac\";\n}\n.eva-done-all:before {\n  content: \"\\e9ad\";\n}\n.eva-download-outline:before {\n  content: \"\\e9ae\";\n}\n.eva-download:before {\n  content: \"\\e9af\";\n}\n.eva-droplet-off-outline:before {\n  content: \"\\e9b0\";\n}\n.eva-droplet-off:before {\n  content: \"\\e9b1\";\n}\n.eva-droplet-outline:before {\n  content: \"\\e9b2\";\n}\n.eva-droplet:before {\n  content: \"\\e9b3\";\n}\n.eva-edit-2-outline:before {\n  content: \"\\e9b4\";\n}\n.eva-edit-2:before {\n  content: \"\\e9b5\";\n}\n.eva-edit-outline:before {\n  content: \"\\e9b6\";\n}\n.eva-edit:before {\n  content: \"\\e9b7\";\n}\n.eva-email-outline:before {\n  content: \"\\e9b8\";\n}\n.eva-email:before {\n  content: \"\\e9b9\";\n}\n.eva-expand-outline:before {\n  content: \"\\e9ba\";\n}\n.eva-expand:before {\n  content: \"\\e9bb\";\n}\n.eva-external-link-outline:before {\n  content: \"\\e9bc\";\n}\n.eva-external-link:before {\n  content: \"\\e9bd\";\n}\n.eva-eye-off-2-outline:before {\n  content: \"\\e9be\";\n}\n.eva-eye-off-2:before {\n  content: \"\\e9bf\";\n}\n.eva-eye-off-outline:before {\n  content: \"\\e9c0\";\n}\n.eva-eye-off:before {\n  content: \"\\e9c1\";\n}\n.eva-eye-outline:before {\n  content: \"\\e9c2\";\n}\n.eva-eye:before {\n  content: \"\\e9c3\";\n}\n.eva-facebook-outline:before {\n  content: \"\\e9c4\";\n}\n.eva-facebook:before {\n  content: \"\\e9c5\";\n}\n.eva-file-add-outline:before {\n  content: \"\\e9c6\";\n}\n.eva-file-add:before {\n  content: \"\\e9c7\";\n}\n.eva-file-outline:before {\n  content: \"\\e9c8\";\n}\n.eva-file-remove-outline:before {\n  content: \"\\e9c9\";\n}\n.eva-file-remove:before {\n  content: \"\\e9ca\";\n}\n.eva-file-text-outline:before {\n  content: \"\\e9cb\";\n}\n.eva-file-text:before {\n  content: \"\\e9cc\";\n}\n.eva-file:before {\n  content: \"\\e9cd\";\n}\n.eva-film-outline:before {\n  content: \"\\e9ce\";\n}\n.eva-film:before {\n  content: \"\\e9cf\";\n}\n.eva-flag-outline:before {\n  content: \"\\e9d0\";\n}\n.eva-flag:before {\n  content: \"\\e9d1\";\n}\n.eva-flash-off-outline:before {\n  content: \"\\e9d2\";\n}\n.eva-flash-off:before {\n  content: \"\\e9d3\";\n}\n.eva-flash-outline:before {\n  content: \"\\e9d4\";\n}\n.eva-flash:before {\n  content: \"\\e9d5\";\n}\n.eva-flip-2-outline:before {\n  content: \"\\e9d6\";\n}\n.eva-flip-2:before {\n  content: \"\\e9d7\";\n}\n.eva-flip-outline:before {\n  content: \"\\e9d8\";\n}\n.eva-flip:before {\n  content: \"\\e9d9\";\n}\n.eva-folder-add-outline:before {\n  content: \"\\e9da\";\n}\n.eva-folder-add:before {\n  content: \"\\e9db\";\n}\n.eva-folder-outline:before {\n  content: \"\\e9dc\";\n}\n.eva-folder-remove-outline:before {\n  content: \"\\e9dd\";\n}\n.eva-folder-remove:before {\n  content: \"\\e9de\";\n}\n.eva-folder:before {\n  content: \"\\e9df\";\n}\n.eva-funnel-outline:before {\n  content: \"\\e9e0\";\n}\n.eva-funnel:before {\n  content: \"\\e9e1\";\n}\n.eva-gift-outline:before {\n  content: \"\\e9e2\";\n}\n.eva-gift:before {\n  content: \"\\e9e3\";\n}\n.eva-github-outline:before {\n  content: \"\\e9e4\";\n}\n.eva-github:before {\n  content: \"\\e9e5\";\n}\n.eva-globe-2-outline:before {\n  content: \"\\e9e6\";\n}\n.eva-globe-2:before {\n  content: \"\\e9e7\";\n}\n.eva-globe-3:before {\n  content: \"\\e9e8\";\n}\n.eva-globe-outline:before {\n  content: \"\\e9e9\";\n}\n.eva-globe:before {\n  content: \"\\e9ea\";\n}\n.eva-google-outline:before {\n  content: \"\\e9eb\";\n}\n.eva-google:before {\n  content: \"\\e9ec\";\n}\n.eva-grid-outline:before {\n  content: \"\\e9ed\";\n}\n.eva-grid:before {\n  content: \"\\e9ee\";\n}\n.eva-hard-drive-outline:before {\n  content: \"\\e9ef\";\n}\n.eva-hard-drive:before {\n  content: \"\\e9f0\";\n}\n.eva-hash-outline:before {\n  content: \"\\e9f1\";\n}\n.eva-hash:before {\n  content: \"\\e9f2\";\n}\n.eva-headphones-outline:before {\n  content: \"\\e9f3\";\n}\n.eva-headphones:before {\n  content: \"\\e9f4\";\n}\n.eva-heart-outline:before {\n  content: \"\\e9f5\";\n}\n.eva-heart:before {\n  content: \"\\e9f6\";\n}\n.eva-home-outline:before {\n  content: \"\\e9f7\";\n}\n.eva-home:before {\n  content: \"\\e9f8\";\n}\n.eva-image-2:before {\n  content: \"\\e9f9\";\n}\n.eva-image-outline:before {\n  content: \"\\e9fa\";\n}\n.eva-image:before {\n  content: \"\\e9fb\";\n}\n.eva-inbox-outline:before {\n  content: \"\\e9fc\";\n}\n.eva-inbox:before {\n  content: \"\\e9fd\";\n}\n.eva-info-outline:before {\n  content: \"\\e9fe\";\n}\n.eva-info:before {\n  content: \"\\e9ff\";\n}\n.eva-keypad-outline:before {\n  content: \"\\ea00\";\n}\n.eva-keypad:before {\n  content: \"\\ea01\";\n}\n.eva-layers-outline:before {\n  content: \"\\ea02\";\n}\n.eva-layers:before {\n  content: \"\\ea03\";\n}\n.eva-layout-outline:before {\n  content: \"\\ea04\";\n}\n.eva-layout:before {\n  content: \"\\ea05\";\n}\n.eva-link-2-outline:before {\n  content: \"\\ea06\";\n}\n.eva-link-2:before {\n  content: \"\\ea07\";\n}\n.eva-link-outline:before {\n  content: \"\\ea08\";\n}\n.eva-link:before {\n  content: \"\\ea09\";\n}\n.eva-linkedin-outline:before {\n  content: \"\\ea0a\";\n}\n.eva-linkedin:before {\n  content: \"\\ea0b\";\n}\n.eva-list-outline:before {\n  content: \"\\ea0c\";\n}\n.eva-list:before {\n  content: \"\\ea0d\";\n}\n.eva-loader-outline:before {\n  content: \"\\ea0e\";\n}\n.eva-lock-outline:before {\n  content: \"\\ea0f\";\n}\n.eva-lock:before {\n  content: \"\\ea10\";\n}\n.eva-log-in-outline:before {\n  content: \"\\ea11\";\n}\n.eva-log-in:before {\n  content: \"\\ea12\";\n}\n.eva-log-out-outline:before {\n  content: \"\\ea13\";\n}\n.eva-log-out:before {\n  content: \"\\ea14\";\n}\n.eva-map-outline:before {\n  content: \"\\ea15\";\n}\n.eva-map:before {\n  content: \"\\ea16\";\n}\n.eva-maximize-outline:before {\n  content: \"\\ea17\";\n}\n.eva-maximize:before {\n  content: \"\\ea18\";\n}\n.eva-menu-2-outline:before {\n  content: \"\\ea19\";\n}\n.eva-menu-2:before {\n  content: \"\\ea1a\";\n}\n.eva-menu-arrow-outline:before {\n  content: \"\\ea1b\";\n}\n.eva-menu-arrow:before {\n  content: \"\\ea1c\";\n}\n.eva-menu-outline:before {\n  content: \"\\ea1d\";\n}\n.eva-menu:before {\n  content: \"\\ea1e\";\n}\n.eva-message-circle-outline:before {\n  content: \"\\ea1f\";\n}\n.eva-message-circle:before {\n  content: \"\\ea20\";\n}\n.eva-message-square-outline:before {\n  content: \"\\ea21\";\n}\n.eva-message-square:before {\n  content: \"\\ea22\";\n}\n.eva-mic-off-outline:before {\n  content: \"\\ea23\";\n}\n.eva-mic-off:before {\n  content: \"\\ea24\";\n}\n.eva-mic-outline:before {\n  content: \"\\ea25\";\n}\n.eva-mic:before {\n  content: \"\\ea26\";\n}\n.eva-minimize-outline:before {\n  content: \"\\ea27\";\n}\n.eva-minimize:before {\n  content: \"\\ea28\";\n}\n.eva-minus-circle-outline:before {\n  content: \"\\ea29\";\n}\n.eva-minus-circle:before {\n  content: \"\\ea2a\";\n}\n.eva-minus-outline:before {\n  content: \"\\ea2b\";\n}\n.eva-minus-square-outline:before {\n  content: \"\\ea2c\";\n}\n.eva-minus-square:before {\n  content: \"\\ea2d\";\n}\n.eva-minus:before {\n  content: \"\\ea2e\";\n}\n.eva-monitor-outline:before {\n  content: \"\\ea2f\";\n}\n.eva-monitor:before {\n  content: \"\\ea30\";\n}\n.eva-moon-outline:before {\n  content: \"\\ea31\";\n}\n.eva-moon:before {\n  content: \"\\ea32\";\n}\n.eva-more-horizontal-outline:before {\n  content: \"\\ea33\";\n}\n.eva-more-horizontal:before {\n  content: \"\\ea34\";\n}\n.eva-more-vertical-outline:before {\n  content: \"\\ea35\";\n}\n.eva-more-vertical:before {\n  content: \"\\ea36\";\n}\n.eva-move-outline:before {\n  content: \"\\ea37\";\n}\n.eva-move:before {\n  content: \"\\ea38\";\n}\n.eva-music-outline:before {\n  content: \"\\ea39\";\n}\n.eva-music:before {\n  content: \"\\ea3a\";\n}\n.eva-navigation-2-outline:before {\n  content: \"\\ea3b\";\n}\n.eva-navigation-2:before {\n  content: \"\\ea3c\";\n}\n.eva-navigation-outline:before {\n  content: \"\\ea3d\";\n}\n.eva-navigation:before {\n  content: \"\\ea3e\";\n}\n.eva-npm-outline:before {\n  content: \"\\ea3f\";\n}\n.eva-npm:before {\n  content: \"\\ea40\";\n}\n.eva-options-2-outline:before {\n  content: \"\\ea41\";\n}\n.eva-options-2:before {\n  content: \"\\ea42\";\n}\n.eva-options-outline:before {\n  content: \"\\ea43\";\n}\n.eva-options:before {\n  content: \"\\ea44\";\n}\n.eva-pantone-outline:before {\n  content: \"\\ea45\";\n}\n.eva-pantone:before {\n  content: \"\\ea46\";\n}\n.eva-paper-plane-outline:before {\n  content: \"\\ea47\";\n}\n.eva-paper-plane:before {\n  content: \"\\ea48\";\n}\n.eva-pause-circle-outline:before {\n  content: \"\\ea49\";\n}\n.eva-pause-circle:before {\n  content: \"\\ea4a\";\n}\n.eva-people-outline:before {\n  content: \"\\ea4b\";\n}\n.eva-people:before {\n  content: \"\\ea4c\";\n}\n.eva-percent-outline:before {\n  content: \"\\ea4d\";\n}\n.eva-percent:before {\n  content: \"\\ea4e\";\n}\n.eva-person-add-outline:before {\n  content: \"\\ea4f\";\n}\n.eva-person-add:before {\n  content: \"\\ea50\";\n}\n.eva-person-delete-outline:before {\n  content: \"\\ea51\";\n}\n.eva-person-delete:before {\n  content: \"\\ea52\";\n}\n.eva-person-done-outline:before {\n  content: \"\\ea53\";\n}\n.eva-person-done:before {\n  content: \"\\ea54\";\n}\n.eva-person-outline:before {\n  content: \"\\ea55\";\n}\n.eva-person-remove-outline:before {\n  content: \"\\ea56\";\n}\n.eva-person-remove:before {\n  content: \"\\ea57\";\n}\n.eva-person:before {\n  content: \"\\ea58\";\n}\n.eva-phone-call-outline:before {\n  content: \"\\ea59\";\n}\n.eva-phone-call:before {\n  content: \"\\ea5a\";\n}\n.eva-phone-missed-outline:before {\n  content: \"\\ea5b\";\n}\n.eva-phone-missed:before {\n  content: \"\\ea5c\";\n}\n.eva-phone-off-outline:before {\n  content: \"\\ea5d\";\n}\n.eva-phone-off:before {\n  content: \"\\ea5e\";\n}\n.eva-phone-outline:before {\n  content: \"\\ea5f\";\n}\n.eva-phone:before {\n  content: \"\\ea60\";\n}\n.eva-pie-chart-2:before {\n  content: \"\\ea61\";\n}\n.eva-pie-chart-outline:before {\n  content: \"\\ea62\";\n}\n.eva-pie-chart:before {\n  content: \"\\ea63\";\n}\n.eva-pin-outline:before {\n  content: \"\\ea64\";\n}\n.eva-pin:before {\n  content: \"\\ea65\";\n}\n.eva-play-circle-outline:before {\n  content: \"\\ea66\";\n}\n.eva-play-circle:before {\n  content: \"\\ea67\";\n}\n.eva-plus-circle-outline:before {\n  content: \"\\ea68\";\n}\n.eva-plus-circle:before {\n  content: \"\\ea69\";\n}\n.eva-plus-outline:before {\n  content: \"\\ea6a\";\n}\n.eva-plus-square-outline:before {\n  content: \"\\ea6b\";\n}\n.eva-plus-square:before {\n  content: \"\\ea6c\";\n}\n.eva-plus:before {\n  content: \"\\ea6d\";\n}\n.eva-power-outline:before {\n  content: \"\\ea6e\";\n}\n.eva-power:before {\n  content: \"\\ea6f\";\n}\n.eva-pricetags-outline:before {\n  content: \"\\ea70\";\n}\n.eva-pricetags:before {\n  content: \"\\ea71\";\n}\n.eva-printer-outline:before {\n  content: \"\\ea72\";\n}\n.eva-printer:before {\n  content: \"\\ea73\";\n}\n.eva-question-mark-circle-outline:before {\n  content: \"\\ea74\";\n}\n.eva-question-mark-circle:before {\n  content: \"\\ea75\";\n}\n.eva-question-mark-outline:before {\n  content: \"\\ea76\";\n}\n.eva-question-mark:before {\n  content: \"\\ea77\";\n}\n.eva-radio-button-off-outline:before {\n  content: \"\\ea78\";\n}\n.eva-radio-button-off:before {\n  content: \"\\ea79\";\n}\n.eva-radio-button-on-outline:before {\n  content: \"\\ea7a\";\n}\n.eva-radio-button-on:before {\n  content: \"\\ea7b\";\n}\n.eva-radio-outline:before {\n  content: \"\\ea7c\";\n}\n.eva-radio:before {\n  content: \"\\ea7d\";\n}\n.eva-recording-outline:before {\n  content: \"\\ea7e\";\n}\n.eva-recording:before {\n  content: \"\\ea7f\";\n}\n.eva-refresh-outline:before {\n  content: \"\\ea80\";\n}\n.eva-refresh:before {\n  content: \"\\ea81\";\n}\n.eva-repeat-outline:before {\n  content: \"\\ea82\";\n}\n.eva-repeat:before {\n  content: \"\\ea83\";\n}\n.eva-rewind-left-outline:before {\n  content: \"\\ea84\";\n}\n.eva-rewind-left:before {\n  content: \"\\ea85\";\n}\n.eva-rewind-right-outline:before {\n  content: \"\\ea86\";\n}\n.eva-rewind-right:before {\n  content: \"\\ea87\";\n}\n.eva-save-outline:before {\n  content: \"\\ea88\";\n}\n.eva-save:before {\n  content: \"\\ea89\";\n}\n.eva-scissors-outline:before {\n  content: \"\\ea8a\";\n}\n.eva-scissors:before {\n  content: \"\\ea8b\";\n}\n.eva-search-outline:before {\n  content: \"\\ea8c\";\n}\n.eva-search:before {\n  content: \"\\ea8d\";\n}\n.eva-settings-2-outline:before {\n  content: \"\\ea8e\";\n}\n.eva-settings-2:before {\n  content: \"\\ea8f\";\n}\n.eva-settings-outline:before {\n  content: \"\\ea90\";\n}\n.eva-settings:before {\n  content: \"\\ea91\";\n}\n.eva-shake-outline:before {\n  content: \"\\ea92\";\n}\n.eva-shake:before {\n  content: \"\\ea93\";\n}\n.eva-share-outline:before {\n  content: \"\\ea94\";\n}\n.eva-share:before {\n  content: \"\\ea95\";\n}\n.eva-shield-off-outline:before {\n  content: \"\\ea96\";\n}\n.eva-shield-off:before {\n  content: \"\\ea97\";\n}\n.eva-shield-outline:before {\n  content: \"\\ea98\";\n}\n.eva-shield:before {\n  content: \"\\ea99\";\n}\n.eva-shopping-bag-outline:before {\n  content: \"\\ea9a\";\n}\n.eva-shopping-bag:before {\n  content: \"\\ea9b\";\n}\n.eva-shopping-cart-outline:before {\n  content: \"\\ea9c\";\n}\n.eva-shopping-cart:before {\n  content: \"\\ea9d\";\n}\n.eva-shuffle-2-outline:before {\n  content: \"\\ea9e\";\n}\n.eva-shuffle-2:before {\n  content: \"\\ea9f\";\n}\n.eva-shuffle-outline:before {\n  content: \"\\eaa0\";\n}\n.eva-shuffle:before {\n  content: \"\\eaa1\";\n}\n.eva-skip-back-outline:before {\n  content: \"\\eaa2\";\n}\n.eva-skip-back:before {\n  content: \"\\eaa3\";\n}\n.eva-skip-forward-outline:before {\n  content: \"\\eaa4\";\n}\n.eva-skip-forward:before {\n  content: \"\\eaa5\";\n}\n.eva-slash-outline:before {\n  content: \"\\eaa6\";\n}\n.eva-slash:before {\n  content: \"\\eaa7\";\n}\n.eva-smartphone-outline:before {\n  content: \"\\eaa8\";\n}\n.eva-smartphone:before {\n  content: \"\\eaa9\";\n}\n.eva-smiling-face-outline:before {\n  content: \"\\eaaa\";\n}\n.eva-smiling-face:before {\n  content: \"\\eaab\";\n}\n.eva-speaker-outline:before {\n  content: \"\\eaac\";\n}\n.eva-speaker:before {\n  content: \"\\eaad\";\n}\n.eva-square-outline:before {\n  content: \"\\eaae\";\n}\n.eva-square:before {\n  content: \"\\eaaf\";\n}\n.eva-star-outline:before {\n  content: \"\\eab0\";\n}\n.eva-star:before {\n  content: \"\\eab1\";\n}\n.eva-stop-circle-outline:before {\n  content: \"\\eab2\";\n}\n.eva-stop-circle:before {\n  content: \"\\eab3\";\n}\n.eva-sun-outline:before {\n  content: \"\\eab4\";\n}\n.eva-sun:before {\n  content: \"\\eab5\";\n}\n.eva-swap-outline:before {\n  content: \"\\eab6\";\n}\n.eva-swap:before {\n  content: \"\\eab7\";\n}\n.eva-sync-outline:before {\n  content: \"\\eab8\";\n}\n.eva-sync:before {\n  content: \"\\eab9\";\n}\n.eva-text-outline:before {\n  content: \"\\eaba\";\n}\n.eva-text:before {\n  content: \"\\eabb\";\n}\n.eva-thermometer-minus-outline:before {\n  content: \"\\eabc\";\n}\n.eva-thermometer-minus:before {\n  content: \"\\eabd\";\n}\n.eva-thermometer-outline:before {\n  content: \"\\eabe\";\n}\n.eva-thermometer-plus-outline:before {\n  content: \"\\eabf\";\n}\n.eva-thermometer-plus:before {\n  content: \"\\eac0\";\n}\n.eva-thermometer:before {\n  content: \"\\eac1\";\n}\n.eva-toggle-left-outline:before {\n  content: \"\\eac2\";\n}\n.eva-toggle-left:before {\n  content: \"\\eac3\";\n}\n.eva-toggle-right-outline:before {\n  content: \"\\eac4\";\n}\n.eva-toggle-right:before {\n  content: \"\\eac5\";\n}\n.eva-trash-2-outline:before {\n  content: \"\\eac6\";\n}\n.eva-trash-2:before {\n  content: \"\\eac7\";\n}\n.eva-trash-outline:before {\n  content: \"\\eac8\";\n}\n.eva-trash:before {\n  content: \"\\eac9\";\n}\n.eva-trending-down-outline:before {\n  content: \"\\eaca\";\n}\n.eva-trending-down:before {\n  content: \"\\eacb\";\n}\n.eva-trending-up-outline:before {\n  content: \"\\eacc\";\n}\n.eva-trending-up:before {\n  content: \"\\eacd\";\n}\n.eva-tv-outline:before {\n  content: \"\\eace\";\n}\n.eva-tv:before {\n  content: \"\\eacf\";\n}\n.eva-twitter-outline:before {\n  content: \"\\ead0\";\n}\n.eva-twitter:before {\n  content: \"\\ead1\";\n}\n.eva-umbrella-outline:before {\n  content: \"\\ead2\";\n}\n.eva-umbrella:before {\n  content: \"\\ead3\";\n}\n.eva-undo-outline:before {\n  content: \"\\ead4\";\n}\n.eva-undo:before {\n  content: \"\\ead5\";\n}\n.eva-unlock-outline:before {\n  content: \"\\ead6\";\n}\n.eva-unlock:before {\n  content: \"\\ead7\";\n}\n.eva-upload-outline:before {\n  content: \"\\ead8\";\n}\n.eva-upload:before {\n  content: \"\\ead9\";\n}\n.eva-video-off-outline:before {\n  content: \"\\eada\";\n}\n.eva-video-off:before {\n  content: \"\\eadb\";\n}\n.eva-video-outline:before {\n  content: \"\\eadc\";\n}\n.eva-video:before {\n  content: \"\\eadd\";\n}\n.eva-volume-down-outline:before {\n  content: \"\\eade\";\n}\n.eva-volume-down:before {\n  content: \"\\eadf\";\n}\n.eva-volume-mute-outline:before {\n  content: \"\\eae0\";\n}\n.eva-volume-mute:before {\n  content: \"\\eae1\";\n}\n.eva-volume-off-outline:before {\n  content: \"\\eae2\";\n}\n.eva-volume-off:before {\n  content: \"\\eae3\";\n}\n.eva-volume-up-outline:before {\n  content: \"\\eae4\";\n}\n.eva-volume-up:before {\n  content: \"\\eae5\";\n}\n.eva-wifi-off-outline:before {\n  content: \"\\eae6\";\n}\n.eva-wifi-off:before {\n  content: \"\\eae7\";\n}\n.eva-wifi-outline:before {\n  content: \"\\eae8\";\n}\n.eva-wifi:before {\n  content: \"\\eae9\";\n}"
  },
  {
    "path": "icon-packs/ikonli-feather-pack/ikonli-feather-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-feather-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.feather {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.feather;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.feather.FeatherIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.feather.FeatherIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-feather-pack/src/main/java/org/kordamp/ikonli/feather/Feather.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.feather;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Feather implements Ikon {\n    ACTIVITY(\"fth-activity\", '\\ue000'),\n    AIRPLAY(\"fth-airplay\", '\\ue001'),\n    ALERT_CIRCLE(\"fth-alert-circle\", '\\ue002'),\n    ALERT_OCTAGON(\"fth-alert-octagon\", '\\ue003'),\n    ALERT_TRIANGLE(\"fth-alert-triangle\", '\\ue004'),\n    ALIGN_CENTER(\"fth-align-center\", '\\ue005'),\n    ALIGN_JUSTIFY(\"fth-align-justify\", '\\ue006'),\n    ALIGN_LEFT(\"fth-align-left\", '\\ue007'),\n    ALIGN_RIGHT(\"fth-align-right\", '\\ue008'),\n    ANCHOR(\"fth-anchor\", '\\ue009'),\n    APERTURE(\"fth-aperture\", '\\ue00a'),\n    ARCHIVE(\"fth-archive\", '\\ue00b'),\n    ARROW_DOWN(\"fth-arrow-down\", '\\ue00c'),\n    ARROW_DOWN_CIRCLE(\"fth-arrow-down-circle\", '\\ue00d'),\n    ARROW_DOWN_LEFT(\"fth-arrow-down-left\", '\\ue00e'),\n    ARROW_DOWN_RIGHT(\"fth-arrow-down-right\", '\\ue00f'),\n    ARROW_LEFT(\"fth-arrow-left\", '\\ue010'),\n    ARROW_LEFT_CIRCLE(\"fth-arrow-left-circle\", '\\ue011'),\n    ARROW_RIGHT(\"fth-arrow-right\", '\\ue012'),\n    ARROW_RIGHT_CIRCLE(\"fth-arrow-right-circle\", '\\ue013'),\n    ARROW_UP(\"fth-arrow-up\", '\\ue014'),\n    ARROW_UP_CIRCLE(\"fth-arrow-up-circle\", '\\ue015'),\n    ARROW_UP_LEFT(\"fth-arrow-up-left\", '\\ue016'),\n    ARROW_UP_RIGHT(\"fth-arrow-up-right\", '\\ue017'),\n    AT_SIGN(\"fth-at-sign\", '\\ue018'),\n    AWARD(\"fth-award\", '\\ue019'),\n    BAR_CHART(\"fth-bar-chart\", '\\ue01a'),\n    BAR_CHART_2(\"fth-bar-chart-2\", '\\ue01b'),\n    BATTERY(\"fth-battery\", '\\ue01c'),\n    BATTERY_CHARGING(\"fth-battery-charging\", '\\ue01d'),\n    BELL(\"fth-bell\", '\\ue01e'),\n    BELL_OFF(\"fth-bell-off\", '\\ue01f'),\n    BLUETOOTH(\"fth-bluetooth\", '\\ue020'),\n    BOLD(\"fth-bold\", '\\ue021'),\n    BOOK(\"fth-book\", '\\ue022'),\n    BOOKMARK(\"fth-bookmark\", '\\ue023'),\n    BOOK_OPEN(\"fth-book-open\", '\\ue024'),\n    BOX(\"fth-box\", '\\ue025'),\n    BRIEFCASE(\"fth-briefcase\", '\\ue026'),\n    CALENDAR(\"fth-calendar\", '\\ue027'),\n    CAMERA(\"fth-camera\", '\\ue028'),\n    CAMERA_OFF(\"fth-camera-off\", '\\ue029'),\n    CAST(\"fth-cast\", '\\ue02a'),\n    CHECK(\"fth-check\", '\\ue02b'),\n    CHECK_CIRCLE(\"fth-check-circle\", '\\ue02c'),\n    CHECK_SQUARE(\"fth-check-square\", '\\ue02d'),\n    CHEVRONS_DOWN(\"fth-chevrons-down\", '\\ue031'),\n    CHEVRONS_LEFT(\"fth-chevrons-left\", '\\ue032'),\n    CHEVRONS_RIGHT(\"fth-chevrons-right\", '\\ue033'),\n    CHEVRONS_UP(\"fth-chevrons-up\", '\\ue034'),\n    CHEVRON_DOWN(\"fth-chevron-down\", '\\ue02e'),\n    CHEVRON_LEFT(\"fth-chevron-left\", '\\ue02f'),\n    CHEVRON_RIGHT(\"fth-chevron-right\", '\\ue030'),\n    CHEVRON_UP(\"fth-chevron-up\", '\\ue035'),\n    CHROME(\"fth-chrome\", '\\ue036'),\n    CIRCLE(\"fth-circle\", '\\ue037'),\n    CLIPBOARD(\"fth-clipboard\", '\\ue038'),\n    CLOCK(\"fth-clock\", '\\ue039'),\n    CLOUD(\"fth-cloud\", '\\ue03a'),\n    CLOUD_DRIZZLE(\"fth-cloud-drizzle\", '\\ue03b'),\n    CLOUD_LIGHTNING(\"fth-cloud-lightning\", '\\ue03c'),\n    CLOUD_OFF(\"fth-cloud-off\", '\\ue03d'),\n    CLOUD_RAIN(\"fth-cloud-rain\", '\\ue03e'),\n    CLOUD_SNOW(\"fth-cloud-snow\", '\\ue03f'),\n    CODE(\"fth-code\", '\\ue040'),\n    CODEPEN(\"fth-codepen\", '\\ue041'),\n    CODESANDBOX(\"fth-codesandbox\", '\\ue042'),\n    COFFEE(\"fth-coffee\", '\\ue043'),\n    COLUMNS(\"fth-columns\", '\\ue044'),\n    COMMAND(\"fth-command\", '\\ue045'),\n    COMPASS(\"fth-compass\", '\\ue046'),\n    COPY(\"fth-copy\", '\\ue047'),\n    CORNER_DOWN_LEFT(\"fth-corner-down-left\", '\\ue048'),\n    CORNER_DOWN_RIGHT(\"fth-corner-down-right\", '\\ue049'),\n    CORNER_LEFT_DOWN(\"fth-corner-left-down\", '\\ue04a'),\n    CORNER_LEFT_UP(\"fth-corner-left-up\", '\\ue04b'),\n    CORNER_RIGHT_DOWN(\"fth-corner-right-down\", '\\ue04c'),\n    CORNER_RIGHT_UP(\"fth-corner-right-up\", '\\ue04d'),\n    CORNER_UP_LEFT(\"fth-corner-up-left\", '\\ue04e'),\n    CORNER_UP_RIGHT(\"fth-corner-up-right\", '\\ue04f'),\n    CPU(\"fth-cpu\", '\\ue050'),\n    CREDIT_CARD(\"fth-credit-card\", '\\ue051'),\n    CROP(\"fth-crop\", '\\ue052'),\n    CROSSHAIR(\"fth-crosshair\", '\\ue053'),\n    DATABASE(\"fth-database\", '\\ue054'),\n    DELETE(\"fth-delete\", '\\ue055'),\n    DISC(\"fth-disc\", '\\ue056'),\n    DIVIDE(\"fth-divide\", '\\ue057'),\n    DIVIDE_CIRCLE(\"fth-divide-circle\", '\\ue058'),\n    DIVIDE_SQUARE(\"fth-divide-square\", '\\ue059'),\n    DOLLAR_SIGN(\"fth-dollar-sign\", '\\ue05a'),\n    DOWNLOAD(\"fth-download\", '\\ue05b'),\n    DOWNLOAD_CLOUD(\"fth-download-cloud\", '\\ue05c'),\n    DRIBBBLE(\"fth-dribbble\", '\\ue05d'),\n    DROPLET(\"fth-droplet\", '\\ue05e'),\n    EDIT(\"fth-edit\", '\\ue05f'),\n    EDIT_2(\"fth-edit-2\", '\\ue060'),\n    EDIT_3(\"fth-edit-3\", '\\ue061'),\n    EXTERNAL_LINK(\"fth-external-link\", '\\ue062'),\n    EYE(\"fth-eye\", '\\ue063'),\n    EYE_OFF(\"fth-eye-off\", '\\ue064'),\n    FACEBOOK(\"fth-facebook\", '\\ue065'),\n    FAST_FORWARD(\"fth-fast-forward\", '\\ue066'),\n    FEATHER(\"fth-feather\", '\\ue067'),\n    FIGMA(\"fth-figma\", '\\ue068'),\n    FILE(\"fth-file\", '\\ue069'),\n    FILE_MINUS(\"fth-file-minus\", '\\ue06a'),\n    FILE_PLUS(\"fth-file-plus\", '\\ue06b'),\n    FILE_TEXT(\"fth-file-text\", '\\ue06c'),\n    FILM(\"fth-film\", '\\ue06d'),\n    FILTER(\"fth-filter\", '\\ue06e'),\n    FLAG(\"fth-flag\", '\\ue06f'),\n    FOLDER(\"fth-folder\", '\\ue070'),\n    FOLDER_MINUS(\"fth-folder-minus\", '\\ue071'),\n    FOLDER_PLUS(\"fth-folder-plus\", '\\ue072'),\n    FRAMER(\"fth-framer\", '\\ue073'),\n    FROWN(\"fth-frown\", '\\ue074'),\n    GIFT(\"fth-gift\", '\\ue075'),\n    GITHUB(\"fth-github\", '\\ue078'),\n    GITLAB(\"fth-gitlab\", '\\ue079'),\n    GIT_BRANCH(\"fth-git-branch\", '\\ue076'),\n    GIT_COMMIT(\"fth-git-commit\", '\\ue077'),\n    GIT_MERGE(\"fth-git-merge\", '\\ue07a'),\n    GIT_PULL_REQUEST(\"fth-git-pull-request\", '\\ue07b'),\n    GLOBE(\"fth-globe\", '\\ue07c'),\n    GRID(\"fth-grid\", '\\ue07d'),\n    HARD_DRIVE(\"fth-hard-drive\", '\\ue07e'),\n    HASH(\"fth-hash\", '\\ue07f'),\n    HEADPHONES(\"fth-headphones\", '\\ue080'),\n    HEART(\"fth-heart\", '\\ue081'),\n    HELP_CIRCLE(\"fth-help-circle\", '\\ue082'),\n    HEXAGON(\"fth-hexagon\", '\\ue083'),\n    HOME(\"fth-home\", '\\ue084'),\n    IMAGE(\"fth-image\", '\\ue085'),\n    INBOX(\"fth-inbox\", '\\ue086'),\n    INFO(\"fth-info\", '\\ue087'),\n    INSTAGRAM(\"fth-instagram\", '\\ue088'),\n    ITALIC(\"fth-italic\", '\\ue089'),\n    KEY(\"fth-key\", '\\ue08a'),\n    LAYERS(\"fth-layers\", '\\ue08b'),\n    LAYOUT(\"fth-layout\", '\\ue08c'),\n    LIFE_BUOY(\"fth-life-buoy\", '\\ue08d'),\n    LINK(\"fth-link\", '\\ue08e'),\n    LINKEDIN(\"fth-linkedin\", '\\ue090'),\n    LINK_2(\"fth-link-2\", '\\ue08f'),\n    LIST(\"fth-list\", '\\ue091'),\n    LOADER(\"fth-loader\", '\\ue092'),\n    LOCK(\"fth-lock\", '\\ue093'),\n    LOG_IN(\"fth-log-in\", '\\ue094'),\n    LOG_OUT(\"fth-log-out\", '\\ue095'),\n    MAIL(\"fth-mail\", '\\ue096'),\n    MAP(\"fth-map\", '\\ue097'),\n    MAP_PIN(\"fth-map-pin\", '\\ue098'),\n    MAXIMIZE(\"fth-maximize\", '\\ue099'),\n    MAXIMIZE_2(\"fth-maximize-2\", '\\ue09a'),\n    MEH(\"fth-meh\", '\\ue09b'),\n    MENU(\"fth-menu\", '\\ue09c'),\n    MESSAGE_CIRCLE(\"fth-message-circle\", '\\ue09d'),\n    MESSAGE_SQUARE(\"fth-message-square\", '\\ue09e'),\n    MIC(\"fth-mic\", '\\ue09f'),\n    MIC_OFF(\"fth-mic-off\", '\\ue0a0'),\n    MINIMIZE(\"fth-minimize\", '\\ue0a1'),\n    MINIMIZE_2(\"fth-minimize-2\", '\\ue0a2'),\n    MINUS(\"fth-minus\", '\\ue0a3'),\n    MINUS_CIRCLE(\"fth-minus-circle\", '\\ue0a4'),\n    MINUS_SQUARE(\"fth-minus-square\", '\\ue0a5'),\n    MONITOR(\"fth-monitor\", '\\ue0a6'),\n    MOON(\"fth-moon\", '\\ue0a7'),\n    MORE_HORIZONTAL(\"fth-more-horizontal\", '\\ue0a8'),\n    MORE_VERTICAL(\"fth-more-vertical\", '\\ue0a9'),\n    MOUSE_POINTER(\"fth-mouse-pointer\", '\\ue0aa'),\n    MOVE(\"fth-move\", '\\ue0ab'),\n    MUSIC(\"fth-music\", '\\ue0ac'),\n    NAVIGATION(\"fth-navigation\", '\\ue0ad'),\n    NAVIGATION_2(\"fth-navigation-2\", '\\ue0ae'),\n    OCTAGON(\"fth-octagon\", '\\ue0af'),\n    PACKAGE(\"fth-package\", '\\ue0b0'),\n    PAPERCLIP(\"fth-paperclip\", '\\ue0b1'),\n    PAUSE(\"fth-pause\", '\\ue0b2'),\n    PAUSE_CIRCLE(\"fth-pause-circle\", '\\ue0b3'),\n    PEN_TOOL(\"fth-pen-tool\", '\\ue0b4'),\n    PERCENT(\"fth-percent\", '\\ue0b5'),\n    PHONE(\"fth-phone\", '\\ue0b6'),\n    PHONE_CALL(\"fth-phone-call\", '\\ue0b7'),\n    PHONE_FORWARDED(\"fth-phone-forwarded\", '\\ue0b8'),\n    PHONE_INCOMING(\"fth-phone-incoming\", '\\ue0b9'),\n    PHONE_MISSED(\"fth-phone-missed\", '\\ue0ba'),\n    PHONE_OFF(\"fth-phone-off\", '\\ue0bb'),\n    PHONE_OUTGOING(\"fth-phone-outgoing\", '\\ue0bc'),\n    PIE_CHART(\"fth-pie-chart\", '\\ue0bd'),\n    PLAY(\"fth-play\", '\\ue0be'),\n    PLAY_CIRCLE(\"fth-play-circle\", '\\ue0bf'),\n    PLUS(\"fth-plus\", '\\ue0c0'),\n    PLUS_CIRCLE(\"fth-plus-circle\", '\\ue0c1'),\n    PLUS_SQUARE(\"fth-plus-square\", '\\ue0c2'),\n    POCKET(\"fth-pocket\", '\\ue0c3'),\n    POWER(\"fth-power\", '\\ue0c4'),\n    PRINTER(\"fth-printer\", '\\ue0c5'),\n    RADIO(\"fth-radio\", '\\ue0c6'),\n    REFRESH_CCW(\"fth-refresh-ccw\", '\\ue0c7'),\n    REFRESH_CW(\"fth-refresh-cw\", '\\ue0c8'),\n    REPEAT(\"fth-repeat\", '\\ue0c9'),\n    REWIND(\"fth-rewind\", '\\ue0ca'),\n    ROTATE_CCW(\"fth-rotate-ccw\", '\\ue0cb'),\n    ROTATE_CW(\"fth-rotate-cw\", '\\ue0cc'),\n    RSS(\"fth-rss\", '\\ue0cd'),\n    SAVE(\"fth-save\", '\\ue0ce'),\n    SCISSORS(\"fth-scissors\", '\\ue0cf'),\n    SEARCH(\"fth-search\", '\\ue0d0'),\n    SEND(\"fth-send\", '\\ue0d1'),\n    SERVER(\"fth-server\", '\\ue0d2'),\n    SETTINGS(\"fth-settings\", '\\ue0d3'),\n    SHARE(\"fth-share\", '\\ue0d4'),\n    SHARE_2(\"fth-share-2\", '\\ue0d5'),\n    SHIELD(\"fth-shield\", '\\ue0d6'),\n    SHIELD_OFF(\"fth-shield-off\", '\\ue0d7'),\n    SHOPPING_BAG(\"fth-shopping-bag\", '\\ue0d8'),\n    SHOPPING_CART(\"fth-shopping-cart\", '\\ue0d9'),\n    SHUFFLE(\"fth-shuffle\", '\\ue0da'),\n    SIDEBAR(\"fth-sidebar\", '\\ue0db'),\n    SKIP_BACK(\"fth-skip-back\", '\\ue0dc'),\n    SKIP_FORWARD(\"fth-skip-forward\", '\\ue0dd'),\n    SLACK(\"fth-slack\", '\\ue0de'),\n    SLASH(\"fth-slash\", '\\ue0df'),\n    SLIDERS(\"fth-sliders\", '\\ue0e0'),\n    SMARTPHONE(\"fth-smartphone\", '\\ue0e1'),\n    SMILE(\"fth-smile\", '\\ue0e2'),\n    SPEAKER(\"fth-speaker\", '\\ue0e3'),\n    SQUARE(\"fth-square\", '\\ue0e4'),\n    STAR(\"fth-star\", '\\ue0e5'),\n    STOP_CIRCLE(\"fth-stop-circle\", '\\ue0e6'),\n    SUN(\"fth-sun\", '\\ue0e7'),\n    SUNRISE(\"fth-sunrise\", '\\ue0e8'),\n    SUNSET(\"fth-sunset\", '\\ue0e9'),\n    TABLET(\"fth-tablet\", '\\ue0ea'),\n    TAG(\"fth-tag\", '\\ue0eb'),\n    TARGET(\"fth-target\", '\\ue0ec'),\n    TERMINAL(\"fth-terminal\", '\\ue0ed'),\n    THERMOMETER(\"fth-thermometer\", '\\ue0ee'),\n    THUMBS_DOWN(\"fth-thumbs-down\", '\\ue0ef'),\n    THUMBS_UP(\"fth-thumbs-up\", '\\ue0f0'),\n    TOGGLE_LEFT(\"fth-toggle-left\", '\\ue0f1'),\n    TOGGLE_RIGHT(\"fth-toggle-right\", '\\ue0f2'),\n    TOOL(\"fth-tool\", '\\ue0f3'),\n    TRASH(\"fth-trash\", '\\ue0f4'),\n    TRASH_2(\"fth-trash-2\", '\\ue0f5'),\n    TRELLO(\"fth-trello\", '\\ue0f6'),\n    TRENDING_DOWN(\"fth-trending-down\", '\\ue0f7'),\n    TRENDING_UP(\"fth-trending-up\", '\\ue0f8'),\n    TRIANGLE(\"fth-triangle\", '\\ue0f9'),\n    TRUCK(\"fth-truck\", '\\ue0fa'),\n    TV(\"fth-tv\", '\\ue0fb'),\n    TWITCH(\"fth-twitch\", '\\ue0fc'),\n    TWITTER(\"fth-twitter\", '\\ue0fd'),\n    TYPE(\"fth-type\", '\\ue0fe'),\n    UMBRELLA(\"fth-umbrella\", '\\ue0ff'),\n    UNDERLINE(\"fth-underline\", '\\ue100'),\n    UNLOCK(\"fth-unlock\", '\\ue101'),\n    UPLOAD(\"fth-upload\", '\\ue102'),\n    UPLOAD_CLOUD(\"fth-upload-cloud\", '\\ue103'),\n    USER(\"fth-user\", '\\ue104'),\n    USERS(\"fth-users\", '\\ue108'),\n    USER_CHECK(\"fth-user-check\", '\\ue105'),\n    USER_MINUS(\"fth-user-minus\", '\\ue106'),\n    USER_PLUS(\"fth-user-plus\", '\\ue107'),\n    USER_X(\"fth-user-x\", '\\ue109'),\n    VIDEO(\"fth-video\", '\\ue10a'),\n    VIDEO_OFF(\"fth-video-off\", '\\ue10b'),\n    VOICEMAIL(\"fth-voicemail\", '\\ue10c'),\n    VOLUME(\"fth-volume\", '\\ue10d'),\n    VOLUME_1(\"fth-volume-1\", '\\ue10e'),\n    VOLUME_2(\"fth-volume-2\", '\\ue10f'),\n    VOLUME_X(\"fth-volume-x\", '\\ue110'),\n    WATCH(\"fth-watch\", '\\ue111'),\n    WIFI(\"fth-wifi\", '\\ue112'),\n    WIFI_OFF(\"fth-wifi-off\", '\\ue113'),\n    WIND(\"fth-wind\", '\\ue114'),\n    X(\"fth-x\", '\\ue115'),\n    X_CIRCLE(\"fth-x-circle\", '\\ue116'),\n    X_OCTAGON(\"fth-x-octagon\", '\\ue117'),\n    X_SQUARE(\"fth-x-square\", '\\ue118'),\n    YOUTUBE(\"fth-youtube\", '\\ue119'),\n    ZAP(\"fth-zap\", '\\ue11a'),\n    ZAP_OFF(\"fth-zap-off\", '\\ue11b'),\n    ZOOM_IN(\"fth-zoom-in\", '\\ue11c'),\n    ZOOM_OUT(\"fth-zoom-out\", '\\ue11d');\n\n    public static Feather findByDescription(String description) {\n        for (Feather font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Feather(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-feather-pack/src/main/java/org/kordamp/ikonli/feather/FeatherIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.feather;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FeatherIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/feather/4.28/fonts/feather.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"fth-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Feather.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"FeatherIcons\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-feather-pack/src/main/java/org/kordamp/ikonli/feather/FeatherIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.feather;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class FeatherIkonProvider implements IkonProvider<Feather> {\n    @Override\n    public Class<Feather> getIkon() {\n        return Feather.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-feather-pack/src/main/resources/META-INF/resources/feather/4.28/css/feather.css",
    "content": "@font-face {\n    font-family: 'FeatherIcons';\n    src: url('../fonts/feather.eot?7wkbcu');\n    src: url('../fonts/feather.eot?7wkbcu#iefix') format('embedded-opentype'),\n    url('../fonts/feather.ttf?7wkbcu') format('truetype'),\n    url('../fonts/feather.woff?7wkbcu') format('woff'),\n    url('../fonts/feather.svg?7wkbcu#FeatherIcons') format('svg');\n    font-weight: normal;\n    font-style: normal;\n    font-display: block;\n}\n\n.fth:before {\n    /* use !important to prevent issues with browser extensions that change fonts */\n    font-family: 'FeatherIcons' !important;\n    speak: none;\n    font-style: normal;\n    font-weight: normal;\n    font-variant: normal;\n    text-transform: none;\n    line-height: 1;\n\n    /* Better Font Rendering =========== */\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n}\n\n.fth-activity:before {\n    content: \"\\e000\";\n}\n.fth-airplay:before {\n    content: \"\\e001\";\n}\n.fth-alert-circle:before {\n    content: \"\\e002\";\n}\n.fth-alert-octagon:before {\n    content: \"\\e003\";\n}\n.fth-alert-triangle:before {\n    content: \"\\e004\";\n}\n.fth-align-center:before {\n    content: \"\\e005\";\n}\n.fth-align-justify:before {\n    content: \"\\e006\";\n}\n.fth-align-left:before {\n    content: \"\\e007\";\n}\n.fth-align-right:before {\n    content: \"\\e008\";\n}\n.fth-anchor:before {\n    content: \"\\e009\";\n}\n.fth-aperture:before {\n    content: \"\\e00a\";\n}\n.fth-archive:before {\n    content: \"\\e00b\";\n}\n.fth-arrow-down:before {\n    content: \"\\e00c\";\n}\n.fth-arrow-down-circle:before {\n    content: \"\\e00d\";\n}\n.fth-arrow-down-left:before {\n    content: \"\\e00e\";\n}\n.fth-arrow-down-right:before {\n    content: \"\\e00f\";\n}\n.fth-arrow-left:before {\n    content: \"\\e010\";\n}\n.fth-arrow-left-circle:before {\n    content: \"\\e011\";\n}\n.fth-arrow-right:before {\n    content: \"\\e012\";\n}\n.fth-arrow-right-circle:before {\n    content: \"\\e013\";\n}\n.fth-arrow-up:before {\n    content: \"\\e014\";\n}\n.fth-arrow-up-circle:before {\n    content: \"\\e015\";\n}\n.fth-arrow-up-left:before {\n    content: \"\\e016\";\n}\n.fth-arrow-up-right:before {\n    content: \"\\e017\";\n}\n.fth-at-sign:before {\n    content: \"\\e018\";\n}\n.fth-award:before {\n    content: \"\\e019\";\n}\n.fth-bar-chart:before {\n    content: \"\\e01a\";\n}\n.fth-bar-chart-2:before {\n    content: \"\\e01b\";\n}\n.fth-battery:before {\n    content: \"\\e01c\";\n}\n.fth-battery-charging:before {\n    content: \"\\e01d\";\n}\n.fth-bell:before {\n    content: \"\\e01e\";\n}\n.fth-bell-off:before {\n    content: \"\\e01f\";\n}\n.fth-bluetooth:before {\n    content: \"\\e020\";\n}\n.fth-bold:before {\n    content: \"\\e021\";\n}\n.fth-book:before {\n    content: \"\\e022\";\n}\n.fth-bookmark:before {\n    content: \"\\e023\";\n}\n.fth-book-open:before {\n    content: \"\\e024\";\n}\n.fth-box:before {\n    content: \"\\e025\";\n}\n.fth-briefcase:before {\n    content: \"\\e026\";\n}\n.fth-calendar:before {\n    content: \"\\e027\";\n}\n.fth-camera:before {\n    content: \"\\e028\";\n}\n.fth-camera-off:before {\n    content: \"\\e029\";\n}\n.fth-cast:before {\n    content: \"\\e02a\";\n}\n.fth-check:before {\n    content: \"\\e02b\";\n}\n.fth-check-circle:before {\n    content: \"\\e02c\";\n}\n.fth-check-square:before {\n    content: \"\\e02d\";\n}\n.fth-chevron-down:before {\n    content: \"\\e02e\";\n}\n.fth-chevron-left:before {\n    content: \"\\e02f\";\n}\n.fth-chevron-right:before {\n    content: \"\\e030\";\n}\n.fth-chevrons-down:before {\n    content: \"\\e031\";\n}\n.fth-chevrons-left:before {\n    content: \"\\e032\";\n}\n.fth-chevrons-right:before {\n    content: \"\\e033\";\n}\n.fth-chevrons-up:before {\n    content: \"\\e034\";\n}\n.fth-chevron-up:before {\n    content: \"\\e035\";\n}\n.fth-chrome:before {\n    content: \"\\e036\";\n}\n.fth-circle:before {\n    content: \"\\e037\";\n}\n.fth-clipboard:before {\n    content: \"\\e038\";\n}\n.fth-clock:before {\n    content: \"\\e039\";\n}\n.fth-cloud:before {\n    content: \"\\e03a\";\n}\n.fth-cloud-drizzle:before {\n    content: \"\\e03b\";\n}\n.fth-cloud-lightning:before {\n    content: \"\\e03c\";\n}\n.fth-cloud-off:before {\n    content: \"\\e03d\";\n}\n.fth-cloud-rain:before {\n    content: \"\\e03e\";\n}\n.fth-cloud-snow:before {\n    content: \"\\e03f\";\n}\n.fth-code:before {\n    content: \"\\e040\";\n}\n.fth-codepen:before {\n    content: \"\\e041\";\n}\n.fth-codesandbox:before {\n    content: \"\\e042\";\n}\n.fth-coffee:before {\n    content: \"\\e043\";\n}\n.fth-columns:before {\n    content: \"\\e044\";\n}\n.fth-command:before {\n    content: \"\\e045\";\n}\n.fth-compass:before {\n    content: \"\\e046\";\n}\n.fth-copy:before {\n    content: \"\\e047\";\n}\n.fth-corner-down-left:before {\n    content: \"\\e048\";\n}\n.fth-corner-down-right:before {\n    content: \"\\e049\";\n}\n.fth-corner-left-down:before {\n    content: \"\\e04a\";\n}\n.fth-corner-left-up:before {\n    content: \"\\e04b\";\n}\n.fth-corner-right-down:before {\n    content: \"\\e04c\";\n}\n.fth-corner-right-up:before {\n    content: \"\\e04d\";\n}\n.fth-corner-up-left:before {\n    content: \"\\e04e\";\n}\n.fth-corner-up-right:before {\n    content: \"\\e04f\";\n}\n.fth-cpu:before {\n    content: \"\\e050\";\n}\n.fth-credit-card:before {\n    content: \"\\e051\";\n}\n.fth-crop:before {\n    content: \"\\e052\";\n}\n.fth-crosshair:before {\n    content: \"\\e053\";\n}\n.fth-database:before {\n    content: \"\\e054\";\n}\n.fth-delete:before {\n    content: \"\\e055\";\n}\n.fth-disc:before {\n    content: \"\\e056\";\n}\n.fth-divide:before {\n    content: \"\\e057\";\n}\n.fth-divide-circle:before {\n    content: \"\\e058\";\n}\n.fth-divide-square:before {\n    content: \"\\e059\";\n}\n.fth-dollar-sign:before {\n    content: \"\\e05a\";\n}\n.fth-download:before {\n    content: \"\\e05b\";\n}\n.fth-download-cloud:before {\n    content: \"\\e05c\";\n}\n.fth-dribbble:before {\n    content: \"\\e05d\";\n}\n.fth-droplet:before {\n    content: \"\\e05e\";\n}\n.fth-edit:before {\n    content: \"\\e05f\";\n}\n.fth-edit-2:before {\n    content: \"\\e060\";\n}\n.fth-edit-3:before {\n    content: \"\\e061\";\n}\n.fth-external-link:before {\n    content: \"\\e062\";\n}\n.fth-eye:before {\n    content: \"\\e063\";\n}\n.fth-eye-off:before {\n    content: \"\\e064\";\n}\n.fth-facebook:before {\n    content: \"\\e065\";\n}\n.fth-fast-forward:before {\n    content: \"\\e066\";\n}\n.fth-feather:before {\n    content: \"\\e067\";\n}\n.fth-figma:before {\n    content: \"\\e068\";\n}\n.fth-file:before {\n    content: \"\\e069\";\n}\n.fth-file-minus:before {\n    content: \"\\e06a\";\n}\n.fth-file-plus:before {\n    content: \"\\e06b\";\n}\n.fth-file-text:before {\n    content: \"\\e06c\";\n}\n.fth-film:before {\n    content: \"\\e06d\";\n}\n.fth-filter:before {\n    content: \"\\e06e\";\n}\n.fth-flag:before {\n    content: \"\\e06f\";\n}\n.fth-folder:before {\n    content: \"\\e070\";\n}\n.fth-folder-minus:before {\n    content: \"\\e071\";\n}\n.fth-folder-plus:before {\n    content: \"\\e072\";\n}\n.fth-framer:before {\n    content: \"\\e073\";\n}\n.fth-frown:before {\n    content: \"\\e074\";\n}\n.fth-gift:before {\n    content: \"\\e075\";\n}\n.fth-git-branch:before {\n    content: \"\\e076\";\n}\n.fth-git-commit:before {\n    content: \"\\e077\";\n}\n.fth-github:before {\n    content: \"\\e078\";\n}\n.fth-gitlab:before {\n    content: \"\\e079\";\n}\n.fth-git-merge:before {\n    content: \"\\e07a\";\n}\n.fth-git-pull-request:before {\n    content: \"\\e07b\";\n}\n.fth-globe:before {\n    content: \"\\e07c\";\n}\n.fth-grid:before {\n    content: \"\\e07d\";\n}\n.fth-hard-drive:before {\n    content: \"\\e07e\";\n}\n.fth-hash:before {\n    content: \"\\e07f\";\n}\n.fth-headphones:before {\n    content: \"\\e080\";\n}\n.fth-heart:before {\n    content: \"\\e081\";\n}\n.fth-help-circle:before {\n    content: \"\\e082\";\n}\n.fth-hexagon:before {\n    content: \"\\e083\";\n}\n.fth-home:before {\n    content: \"\\e084\";\n}\n.fth-image:before {\n    content: \"\\e085\";\n}\n.fth-inbox:before {\n    content: \"\\e086\";\n}\n.fth-info:before {\n    content: \"\\e087\";\n}\n.fth-instagram:before {\n    content: \"\\e088\";\n}\n.fth-italic:before {\n    content: \"\\e089\";\n}\n.fth-key:before {\n    content: \"\\e08a\";\n}\n.fth-layers:before {\n    content: \"\\e08b\";\n}\n.fth-layout:before {\n    content: \"\\e08c\";\n}\n.fth-life-buoy:before {\n    content: \"\\e08d\";\n}\n.fth-link:before {\n    content: \"\\e08e\";\n}\n.fth-link-2:before {\n    content: \"\\e08f\";\n}\n.fth-linkedin:before {\n    content: \"\\e090\";\n}\n.fth-list:before {\n    content: \"\\e091\";\n}\n.fth-loader:before {\n    content: \"\\e092\";\n}\n.fth-lock:before {\n    content: \"\\e093\";\n}\n.fth-log-in:before {\n    content: \"\\e094\";\n}\n.fth-log-out:before {\n    content: \"\\e095\";\n}\n.fth-mail:before {\n    content: \"\\e096\";\n}\n.fth-map:before {\n    content: \"\\e097\";\n}\n.fth-map-pin:before {\n    content: \"\\e098\";\n}\n.fth-maximize:before {\n    content: \"\\e099\";\n}\n.fth-maximize-2:before {\n    content: \"\\e09a\";\n}\n.fth-meh:before {\n    content: \"\\e09b\";\n}\n.fth-menu:before {\n    content: \"\\e09c\";\n}\n.fth-message-circle:before {\n    content: \"\\e09d\";\n}\n.fth-message-square:before {\n    content: \"\\e09e\";\n}\n.fth-mic:before {\n    content: \"\\e09f\";\n}\n.fth-mic-off:before {\n    content: \"\\e0a0\";\n}\n.fth-minimize:before {\n    content: \"\\e0a1\";\n}\n.fth-minimize-2:before {\n    content: \"\\e0a2\";\n}\n.fth-minus:before {\n    content: \"\\e0a3\";\n}\n.fth-minus-circle:before {\n    content: \"\\e0a4\";\n}\n.fth-minus-square:before {\n    content: \"\\e0a5\";\n}\n.fth-monitor:before {\n    content: \"\\e0a6\";\n}\n.fth-moon:before {\n    content: \"\\e0a7\";\n}\n.fth-more-horizontal:before {\n    content: \"\\e0a8\";\n}\n.fth-more-vertical:before {\n    content: \"\\e0a9\";\n}\n.fth-mouse-pointer:before {\n    content: \"\\e0aa\";\n}\n.fth-move:before {\n    content: \"\\e0ab\";\n}\n.fth-music:before {\n    content: \"\\e0ac\";\n}\n.fth-navigation:before {\n    content: \"\\e0ad\";\n}\n.fth-navigation-2:before {\n    content: \"\\e0ae\";\n}\n.fth-octagon:before {\n    content: \"\\e0af\";\n}\n.fth-package:before {\n    content: \"\\e0b0\";\n}\n.fth-paperclip:before {\n    content: \"\\e0b1\";\n}\n.fth-pause:before {\n    content: \"\\e0b2\";\n}\n.fth-pause-circle:before {\n    content: \"\\e0b3\";\n}\n.fth-pen-tool:before {\n    content: \"\\e0b4\";\n}\n.fth-percent:before {\n    content: \"\\e0b5\";\n}\n.fth-phone:before {\n    content: \"\\e0b6\";\n}\n.fth-phone-call:before {\n    content: \"\\e0b7\";\n}\n.fth-phone-forwarded:before {\n    content: \"\\e0b8\";\n}\n.fth-phone-incoming:before {\n    content: \"\\e0b9\";\n}\n.fth-phone-missed:before {\n    content: \"\\e0ba\";\n}\n.fth-phone-off:before {\n    content: \"\\e0bb\";\n}\n.fth-phone-outgoing:before {\n    content: \"\\e0bc\";\n}\n.fth-pie-chart:before {\n    content: \"\\e0bd\";\n}\n.fth-play:before {\n    content: \"\\e0be\";\n}\n.fth-play-circle:before {\n    content: \"\\e0bf\";\n}\n.fth-plus:before {\n    content: \"\\e0c0\";\n}\n.fth-plus-circle:before {\n    content: \"\\e0c1\";\n}\n.fth-plus-square:before {\n    content: \"\\e0c2\";\n}\n.fth-pocket:before {\n    content: \"\\e0c3\";\n}\n.fth-power:before {\n    content: \"\\e0c4\";\n}\n.fth-printer:before {\n    content: \"\\e0c5\";\n}\n.fth-radio:before {\n    content: \"\\e0c6\";\n}\n.fth-refresh-ccw:before {\n    content: \"\\e0c7\";\n}\n.fth-refresh-cw:before {\n    content: \"\\e0c8\";\n}\n.fth-repeat:before {\n    content: \"\\e0c9\";\n}\n.fth-rewind:before {\n    content: \"\\e0ca\";\n}\n.fth-rotate-ccw:before {\n    content: \"\\e0cb\";\n}\n.fth-rotate-cw:before {\n    content: \"\\e0cc\";\n}\n.fth-rss:before {\n    content: \"\\e0cd\";\n}\n.fth-save:before {\n    content: \"\\e0ce\";\n}\n.fth-scissors:before {\n    content: \"\\e0cf\";\n}\n.fth-search:before {\n    content: \"\\e0d0\";\n}\n.fth-send:before {\n    content: \"\\e0d1\";\n}\n.fth-server:before {\n    content: \"\\e0d2\";\n}\n.fth-settings:before {\n    content: \"\\e0d3\";\n}\n.fth-share:before {\n    content: \"\\e0d4\";\n}\n.fth-share-2:before {\n    content: \"\\e0d5\";\n}\n.fth-shield:before {\n    content: \"\\e0d6\";\n}\n.fth-shield-off:before {\n    content: \"\\e0d7\";\n}\n.fth-shopping-bag:before {\n    content: \"\\e0d8\";\n}\n.fth-shopping-cart:before {\n    content: \"\\e0d9\";\n}\n.fth-shuffle:before {\n    content: \"\\e0da\";\n}\n.fth-sidebar:before {\n    content: \"\\e0db\";\n}\n.fth-skip-back:before {\n    content: \"\\e0dc\";\n}\n.fth-skip-forward:before {\n    content: \"\\e0dd\";\n}\n.fth-slack:before {\n    content: \"\\e0de\";\n}\n.fth-slash:before {\n    content: \"\\e0df\";\n}\n.fth-sliders:before {\n    content: \"\\e0e0\";\n}\n.fth-smartphone:before {\n    content: \"\\e0e1\";\n}\n.fth-smile:before {\n    content: \"\\e0e2\";\n}\n.fth-speaker:before {\n    content: \"\\e0e3\";\n}\n.fth-square:before {\n    content: \"\\e0e4\";\n}\n.fth-star:before {\n    content: \"\\e0e5\";\n}\n.fth-stop-circle:before {\n    content: \"\\e0e6\";\n}\n.fth-sun:before {\n    content: \"\\e0e7\";\n}\n.fth-sunrise:before {\n    content: \"\\e0e8\";\n}\n.fth-sunset:before {\n    content: \"\\e0e9\";\n}\n.fth-tablet:before {\n    content: \"\\e0ea\";\n}\n.fth-tag:before {\n    content: \"\\e0eb\";\n}\n.fth-target:before {\n    content: \"\\e0ec\";\n}\n.fth-terminal:before {\n    content: \"\\e0ed\";\n}\n.fth-thermometer:before {\n    content: \"\\e0ee\";\n}\n.fth-thumbs-down:before {\n    content: \"\\e0ef\";\n}\n.fth-thumbs-up:before {\n    content: \"\\e0f0\";\n}\n.fth-toggle-left:before {\n    content: \"\\e0f1\";\n}\n.fth-toggle-right:before {\n    content: \"\\e0f2\";\n}\n.fth-tool:before {\n    content: \"\\e0f3\";\n}\n.fth-trash:before {\n    content: \"\\e0f4\";\n}\n.fth-trash-2:before {\n    content: \"\\e0f5\";\n}\n.fth-trello:before {\n    content: \"\\e0f6\";\n}\n.fth-trending-down:before {\n    content: \"\\e0f7\";\n}\n.fth-trending-up:before {\n    content: \"\\e0f8\";\n}\n.fth-triangle:before {\n    content: \"\\e0f9\";\n}\n.fth-truck:before {\n    content: \"\\e0fa\";\n}\n.fth-tv:before {\n    content: \"\\e0fb\";\n}\n.fth-twitch:before {\n    content: \"\\e0fc\";\n}\n.fth-twitter:before {\n    content: \"\\e0fd\";\n}\n.fth-type:before {\n    content: \"\\e0fe\";\n}\n.fth-umbrella:before {\n    content: \"\\e0ff\";\n}\n.fth-underline:before {\n    content: \"\\e100\";\n}\n.fth-unlock:before {\n    content: \"\\e101\";\n}\n.fth-upload:before {\n    content: \"\\e102\";\n}\n.fth-upload-cloud:before {\n    content: \"\\e103\";\n}\n.fth-user:before {\n    content: \"\\e104\";\n}\n.fth-user-check:before {\n    content: \"\\e105\";\n}\n.fth-user-minus:before {\n    content: \"\\e106\";\n}\n.fth-user-plus:before {\n    content: \"\\e107\";\n}\n.fth-users:before {\n    content: \"\\e108\";\n}\n.fth-user-x:before {\n    content: \"\\e109\";\n}\n.fth-video:before {\n    content: \"\\e10a\";\n}\n.fth-video-off:before {\n    content: \"\\e10b\";\n}\n.fth-voicemail:before {\n    content: \"\\e10c\";\n}\n.fth-volume:before {\n    content: \"\\e10d\";\n}\n.fth-volume-1:before {\n    content: \"\\e10e\";\n}\n.fth-volume-2:before {\n    content: \"\\e10f\";\n}\n.fth-volume-x:before {\n    content: \"\\e110\";\n}\n.fth-watch:before {\n    content: \"\\e111\";\n}\n.fth-wifi:before {\n    content: \"\\e112\";\n}\n.fth-wifi-off:before {\n    content: \"\\e113\";\n}\n.fth-wind:before {\n    content: \"\\e114\";\n}\n.fth-x:before {\n    content: \"\\e115\";\n}\n.fth-x-circle:before {\n    content: \"\\e116\";\n}\n.fth-x-octagon:before {\n    content: \"\\e117\";\n}\n.fth-x-square:before {\n    content: \"\\e118\";\n}\n.fth-youtube:before {\n    content: \"\\e119\";\n}\n.fth-zap:before {\n    content: \"\\e11a\";\n}\n.fth-zap-off:before {\n    content: \"\\e11b\";\n}\n.fth-zoom-in:before {\n    content: \"\\e11c\";\n}\n.fth-zoom-out:before {\n    content: \"\\e11d\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fileicons-pack/ikonli-fileicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-fileicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.fileicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.fileicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.fileicons.FileIconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.fileicons.FileIconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-fileicons-pack/src/main/java/org/kordamp/ikonli/fileicons/FileIcons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fileicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum FileIcons implements Ikon {\n    FILE_1C(\"file-1c\", '\\ue901'),\n    FILE_1C_ALT(\"file-1c-alt\", '\\ue900'),\n    FILE_3DS_MAX(\"file-3ds-max\", '\\ue903'),\n    FILE_3D_MODEL(\"file-3d-model\", '\\ue902'),\n    FILE_4D(\"file-4d\", '\\ue904'),\n    ABAP(\"file-abap\", '\\ue906'),\n    ABIF(\"file-abif\", '\\ue907'),\n    ACRE(\"file-acre\", '\\ue908'),\n    ACTIONSCRIPT(\"file-actionscript\", '\\ue909'),\n    ADA(\"file-ada\", '\\ue90a'),\n    ADOBE(\"file-adobe\", '\\ue920'),\n    ADOBE_ACROBAT(\"file-adobe-acrobat\", '\\ue90b'),\n    ADOBE_AFTEREFFECTS(\"file-adobe-aftereffects\", '\\ue90c'),\n    ADOBE_ANIMATE(\"file-adobe-animate\", '\\ue90d'),\n    ADOBE_AUDITION(\"file-adobe-audition\", '\\ue90e'),\n    ADOBE_BRIDGE(\"file-adobe-bridge\", '\\ue90f'),\n    ADOBE_CHARACTERANIMATOR(\"file-adobe-characteranimator\", '\\ue910'),\n    ADOBE_CREATIVECLOUD(\"file-adobe-creativecloud\", '\\ue911'),\n    ADOBE_DIMENSION(\"file-adobe-dimension\", '\\ue912'),\n    ADOBE_DREAMWEAVER(\"file-adobe-dreamweaver\", '\\ue913'),\n    ADOBE_FLASH(\"file-adobe-flash\", '\\ue914'),\n    ADOBE_FUSE(\"file-adobe-fuse\", '\\ue915'),\n    ADOBE_ILLUSTRATOR(\"file-adobe-illustrator\", '\\ue916'),\n    ADOBE_INCOPY(\"file-adobe-incopy\", '\\ue917'),\n    ADOBE_INDESIGN(\"file-adobe-indesign\", '\\ue918'),\n    ADOBE_LIGHTROOM(\"file-adobe-lightroom\", '\\ue919'),\n    ADOBE_MEDIAENCODER(\"file-adobe-mediaencoder\", '\\ue91a'),\n    ADOBE_PHOTOSHOP(\"file-adobe-photoshop\", '\\ue91b'),\n    ADOBE_PRELUDE(\"file-adobe-prelude\", '\\ue91c'),\n    ADOBE_PREMIERE(\"file-adobe-premiere\", '\\ue91d'),\n    ADOBE_PREMIERERUSH(\"file-adobe-premiererush\", '\\ue91e'),\n    ADOBE_XD(\"file-adobe-xd\", '\\ue91f'),\n    AETERNITY(\"file-aeternity\", '\\ue921'),\n    AFFECTSCRIPT(\"file-affectscript\", '\\ue922'),\n    AFFINITYDESIGNER(\"file-affinitydesigner\", '\\ue923'),\n    AGC(\"file-agc\", '\\ue924'),\n    AGDA(\"file-agda\", '\\ue925'),\n    AKKA(\"file-akka\", '\\ue926'),\n    ALACRITTY(\"file-alacritty\", '\\ue928'),\n    ALACRITTY_ALT(\"file-alacritty-alt\", '\\ue927'),\n    ALEX(\"file-alex\", '\\ue929'),\n    ALLOY(\"file-alloy\", '\\ue92a'),\n    ALPINE_LINUX(\"file-alpine-linux\", '\\ue92b'),\n    AMD(\"file-amd\", '\\ue92c'),\n    AMIGAOS(\"file-amigaos\", '\\ue92d'),\n    AMPL(\"file-ampl\", '\\ue92e'),\n    AMUSEWIKI(\"file-amusewiki\", '\\ue92f'),\n    ANALYTICA(\"file-analytica\", '\\ue930'),\n    ANGELSCRIPT(\"file-angelscript\", '\\ue931'),\n    ANIMESTUDIO(\"file-animestudio\", '\\ue932'),\n    ANSIBLE(\"file-ansible\", '\\ue934'),\n    ANSIBLE_ALT(\"file-ansible-alt\", '\\ue933'),\n    ANTLR(\"file-antlr\", '\\ue935'),\n    ANTWAR(\"file-antwar\", '\\ue936'),\n    ANYSCRIPT(\"file-anyscript\", '\\ue937'),\n    APACHE_ANT(\"file-apache-ant\", '\\ue938'),\n    APIEXTRACTOR(\"file-apiextractor\", '\\ue93a'),\n    API_BLUEPRINT(\"file-api-blueprint\", '\\ue939'),\n    APL(\"file-apl\", '\\ue93c'),\n    APL_OLD(\"file-apl-old\", '\\ue93b'),\n    APOLLO(\"file-apollo\", '\\ue93d'),\n    APPLE(\"file-apple\", '\\ue93e'),\n    APPVEYOR(\"file-appveyor\", '\\ue93f'),\n    ARC(\"file-arc\", '\\ue940'),\n    ARCH_LINUX(\"file-arch-linux\", '\\ue941'),\n    ARDUINO(\"file-arduino\", '\\ue942'),\n    ARM(\"file-arm\", '\\ue943'),\n    ARTTEXT(\"file-arttext\", '\\ue944'),\n    ASCIIDOC(\"file-asciidoc\", '\\ue945'),\n    ASCIIDOCTOR(\"file-asciidoctor\", '\\ue946'),\n    ASSEMBLY_AGC(\"file-assembly-agc\", '\\ue947'),\n    ASSEMBLY_AMD(\"file-assembly-amd\", '\\ue948'),\n    ASSEMBLY_ARM(\"file-assembly-arm\", '\\ue949'),\n    ASSEMBLY_ATT(\"file-assembly-att\", '\\ue94a'),\n    ASSEMBLY_AVR(\"file-assembly-avr\", '\\ue94b'),\n    ASSEMBLY_GENERIC(\"file-assembly-generic\", '\\ue94c'),\n    ASSEMBLY_HITACHI(\"file-assembly-hitachi\", '\\ue94d'),\n    ASSEMBLY_INTEL(\"file-assembly-intel\", '\\ue94e'),\n    ASSEMBLY_MOTOROLA(\"file-assembly-motorola\", '\\ue94f'),\n    ASSEMBLY_POWERPC(\"file-assembly-powerpc\", '\\ue950'),\n    ASSEMBLY_RISCV(\"file-assembly-riscv\", '\\ue951'),\n    ASSEMBLY_SPARC(\"file-assembly-sparc\", '\\ue952'),\n    ASSEMBLY_VAX(\"file-assembly-vax\", '\\ue953'),\n    ASSEMBLY_ZILOG(\"file-assembly-zilog\", '\\ue954'),\n    ASYMPTOTE(\"file-asymptote\", '\\ue956'),\n    ASYMPTOTE_ALT(\"file-asymptote-alt\", '\\ue955'),\n    ATOUM(\"file-atoum\", '\\ue957'),\n    ATS(\"file-ats\", '\\ue958'),\n    ATT(\"file-att\", '\\ue959'),\n    AUDACITY(\"file-audacity\", '\\ue95a'),\n    AUGEAS(\"file-augeas\", '\\ue95b'),\n    AURELIA(\"file-aurelia\", '\\ue95c'),\n    AUTOHOTKEY(\"file-autohotkey\", '\\ue95d'),\n    AUTOIT(\"file-autoit\", '\\ue95e'),\n    AVR(\"file-avr\", '\\ue95f'),\n    AVRO(\"file-avro\", '\\ue960'),\n    AWK(\"file-awk\", '\\ue961'),\n    AZURE_PIPELINES(\"file-azure-pipelines\", '\\ue962'),\n    A_PLUS(\"file-a-plus\", '\\ue905'),\n    BABEL(\"file-babel\", '\\ue963'),\n    BALLERINA(\"file-ballerina\", '\\ue964'),\n    BAZAAR(\"file-bazaar\", '\\ue965'),\n    BAZEL(\"file-bazel\", '\\ue967'),\n    BAZEL_OLD(\"file-bazel-old\", '\\ue966'),\n    BEHAT(\"file-behat\", '\\ue968'),\n    BEM(\"file-bem\", '\\ue969'),\n    BIBTEX(\"file-bibtex\", '\\ue96a'),\n    BIML(\"file-biml\", '\\ue96b'),\n    BINDER(\"file-binder\", '\\ue96c'),\n    BINTRAY(\"file-bintray\", '\\ue96d'),\n    BISON(\"file-bison\", '\\ue96e'),\n    BITHOUND(\"file-bithound\", '\\ue96f'),\n    BLENDER(\"file-blender\", '\\ue970'),\n    BLITZBASIC(\"file-blitzbasic\", '\\ue971'),\n    BLOC(\"file-bloc\", '\\ue972'),\n    BLUESPEC(\"file-bluespec\", '\\ue973'),\n    BNF(\"file-bnf\", '\\ue974'),\n    BOO(\"file-boo\", '\\ue975'),\n    BORS(\"file-bors\", '\\ue976'),\n    BOSQUE(\"file-bosque\", '\\ue977'),\n    BRAINFUCK(\"file-brainfuck\", '\\ue978'),\n    BRAKEMAN(\"file-brakeman\", '\\ue979'),\n    BRO(\"file-bro\", '\\ue97a'),\n    BROCCOLI(\"file-broccoli\", '\\ue97b'),\n    BROTLI(\"file-brotli\", '\\ue97d'),\n    BROTLI_OLD(\"file-brotli-old\", '\\ue97c'),\n    BROWSERSLIST(\"file-browserslist\", '\\ue97e'),\n    BROWSERSYNC(\"file-browsersync\", '\\ue97f'),\n    BRUNCH(\"file-brunch\", '\\ue980'),\n    BUCK(\"file-buck\", '\\ue981'),\n    BUILDKITE(\"file-buildkite\", '\\ue983'),\n    BUILD_BOOT(\"file-build-boot\", '\\ue982'),\n    BUNDLER(\"file-bundler\", '\\ue984'),\n    BYOND(\"file-byond\", '\\ue985'),\n    C1(\"file-c1\", '\\ue986'),\n    C2(\"file-c2\", '\\ue987'),\n    C3(\"file-c3\", '\\ue988'),\n    CABAL(\"file-cabal\", '\\ue989'),\n    CADDY(\"file-caddy\", '\\ue98b'),\n    CADDY_OLD(\"file-caddy-old\", '\\ue98a'),\n    CAFFE(\"file-caffe\", '\\ue98c'),\n    CAFFE2(\"file-caffe2\", '\\ue98d'),\n    CAIRO(\"file-cairo\", '\\ue98e'),\n    CAKE(\"file-cake\", '\\ue98f'),\n    CAKEFILE(\"file-cakefile\", '\\ue990'),\n    CAKEPHP(\"file-cakephp\", '\\ue992'),\n    CAKEPHP_OLD(\"file-cakephp-old\", '\\ue991'),\n    CALVA(\"file-calva\", '\\ue993'),\n    CARTHAGE(\"file-carthage\", '\\ue994'),\n    CDF(\"file-cdf\", '\\ue995'),\n    CEYLON(\"file-ceylon\", '\\ue996'),\n    CHAI(\"file-chai\", '\\ue997'),\n    CHAPEL(\"file-chapel\", '\\ue998'),\n    CHARTJS(\"file-chartjs\", '\\ue999'),\n    CHEETAH3D(\"file-cheetah3d\", '\\ue99a'),\n    CHEF(\"file-chef\", '\\ue99b'),\n    CHOCOLATEY(\"file-chocolatey\", '\\ue99c'),\n    CHUCK(\"file-chuck\", '\\ue99d'),\n    CIRCLECI(\"file-circleci\", '\\ue99e'),\n    CIRRU(\"file-cirru\", '\\ue99f'),\n    CKEDITOR(\"file-ckeditor\", '\\ue9a0'),\n    CLARION(\"file-clarion\", '\\ue9a1'),\n    CLEAN(\"file-clean\", '\\ue9a2'),\n    CLICK(\"file-click\", '\\ue9a3'),\n    CLIPS(\"file-clips\", '\\ue9a4'),\n    CLOJUREJS(\"file-clojurejs\", '\\ue9a5'),\n    CLOSURETEMPLATE(\"file-closuretemplate\", '\\ue9a6'),\n    CLOUDFOUNDRY(\"file-cloudfoundry\", '\\ue9a7'),\n    CMAKE(\"file-cmake\", '\\ue9a8'),\n    COBOL(\"file-cobol\", '\\ue9a9'),\n    COCOAPODS(\"file-cocoapods\", '\\ue9aa'),\n    CODACY(\"file-codacy\", '\\ue9ab'),\n    CODECOV(\"file-codecov\", '\\ue9ad'),\n    CODEKIT(\"file-codekit\", '\\ue9ae'),\n    CODEMETA(\"file-codemeta\", '\\ue9af'),\n    CODEMIRROR(\"file-codemirror\", '\\ue9b0'),\n    CODESHIP(\"file-codeship\", '\\ue9b1'),\n    CODE_CLIMATE(\"file-code-climate\", '\\ue9ac'),\n    COLDFUSION(\"file-coldfusion\", '\\ue9b2'),\n    COMMITLINT(\"file-commitlint\", '\\ue9b3'),\n    COMMON_LISP(\"file-common-lisp\", '\\ue9b4'),\n    COMPONENT_PASCAL(\"file-component-pascal\", '\\ue9b5'),\n    COMPOSER(\"file-composer\", '\\ue9b6'),\n    CONAN(\"file-conan\", '\\ue9b7'),\n    CONDA(\"file-conda\", '\\ue9b8'),\n    CONFIG(\"file-config\", '\\ue9c3'),\n    CONFIG_COFFEESCRIPT(\"file-config-coffeescript\", '\\ue9b9'),\n    CONFIG_GO(\"file-config-go\", '\\ue9ba'),\n    CONFIG_HASKELL(\"file-config-haskell\", '\\ue9bb'),\n    CONFIG_JS(\"file-config-js\", '\\ue9bc'),\n    CONFIG_PERL(\"file-config-perl\", '\\ue9bd'),\n    CONFIG_PYTHON(\"file-config-python\", '\\ue9be'),\n    CONFIG_REACT(\"file-config-react\", '\\ue9bf'),\n    CONFIG_RUBY(\"file-config-ruby\", '\\ue9c0'),\n    CONFIG_RUST(\"file-config-rust\", '\\ue9c1'),\n    CONFIG_TYPESCRIPT(\"file-config-typescript\", '\\ue9c2'),\n    CONLL(\"file-conll\", '\\ue9c4'),\n    COQ(\"file-coq\", '\\ue9c5'),\n    CORDOVA(\"file-cordova\", '\\ue9c6'),\n    CORELDRAW(\"file-coreldraw\", '\\ue9c8'),\n    CORELDRAW_ALT(\"file-coreldraw-alt\", '\\ue9c7'),\n    COVERALLS(\"file-coveralls\", '\\ue9c9'),\n    CPAN(\"file-cpan\", '\\ue9ca'),\n    CPCDOSC(\"file-cpcdosc\", '\\ue9cb'),\n    CRAFTTWEAKER(\"file-crafttweaker\", '\\ue9cc'),\n    CREOLE(\"file-creole\", '\\ue9cd'),\n    CROWDIN(\"file-crowdin\", '\\ue9ce'),\n    CRYSTAL(\"file-crystal\", '\\ue9cf'),\n    CSOUND(\"file-csound\", '\\ue9d0'),\n    CUBIT(\"file-cubit\", '\\ue9d1'),\n    CUCUMBER(\"file-cucumber\", '\\ue9d2'),\n    CUNEIFORM(\"file-cuneiform\", '\\ue9d3'),\n    CURL(\"file-curl\", '\\ue9d5'),\n    CURL_LANG(\"file-curl-lang\", '\\ue9d4'),\n    CURRY(\"file-curry\", '\\ue9d6'),\n    CVS(\"file-cvs\", '\\ue9d7'),\n    CWL(\"file-cwl\", '\\ue9d8'),\n    CYTHON(\"file-cython\", '\\ue9d9'),\n    D3(\"file-d3\", '\\ue9da'),\n    DAFNY(\"file-dafny\", '\\ue9db'),\n    DARCS_PATCH(\"file-darcs-patch\", '\\ue9dc'),\n    DASHBOARD(\"file-dashboard\", '\\ue9dd'),\n    DATAWEAVE(\"file-dataweave\", '\\ue9de'),\n    DBASE(\"file-dbase\", '\\ue9df'),\n    DEFAULT(\"file-default\", '\\ue9e0'),\n    DELPHI(\"file-delphi\", '\\ue9e1'),\n    DENO(\"file-deno\", '\\ue9e2'),\n    DEPENDABOT(\"file-dependabot\", '\\ue9e3'),\n    DEVCONTAINER(\"file-devcontainer\", '\\ue9e4'),\n    DEVICETREE(\"file-devicetree\", '\\ue9e5'),\n    DHALL(\"file-dhall\", '\\ue9e6'),\n    DIA(\"file-dia\", '\\ue9e7'),\n    DIFF(\"file-diff\", '\\ue9e8'),\n    DIGDAG(\"file-digdag\", '\\ue9e9'),\n    DNA(\"file-dna\", '\\ue9ea'),\n    DOCBOOK(\"file-docbook\", '\\ue9eb'),\n    DOCKER(\"file-docker\", '\\ue9ec'),\n    DOCLETS(\"file-doclets\", '\\ue9ed'),\n    DOCPAD(\"file-docpad\", '\\ue9ee'),\n    DOCZ(\"file-docz\", '\\ue9ef'),\n    DOGESCRIPT(\"file-dogescript\", '\\ue9f0'),\n    DOM(\"file-dom\", '\\ue9f1'),\n    DONEJS(\"file-donejs\", '\\ue9f2'),\n    DOSBOX(\"file-dosbox\", '\\ue9f4'),\n    DOSBOX_ALT(\"file-dosbox-alt\", '\\ue9f3'),\n    DOTJS(\"file-dotjs\", '\\ue9f5'),\n    DOXYGEN(\"file-doxygen\", '\\ue9f6'),\n    DRAGONFLYBSD(\"file-dragonflybsd\", '\\ue9f7'),\n    DRAGULA(\"file-dragula\", '\\ue9f8'),\n    DRAWIO(\"file-drawio\", '\\ue9f9'),\n    DRONE(\"file-drone\", '\\ue9fa'),\n    DUB(\"file-dub\", '\\ue9fb'),\n    DVC(\"file-dvc\", '\\ue9fc'),\n    DYALOG(\"file-dyalog\", '\\ue9fd'),\n    DYLIB(\"file-dylib\", '\\ue9fe'),\n    E(\"file-e\", '\\ue9ff'),\n    EAGLE(\"file-eagle\", '\\uea00'),\n    EASYBUILD(\"file-easybuild\", '\\uea01'),\n    EC(\"file-ec\", '\\uea02'),\n    ECERE(\"file-ecere\", '\\uea03'),\n    ECLIPSE_LANG(\"file-eclipse-lang\", '\\uea04'),\n    EDGE(\"file-edge\", '\\uea05'),\n    EDITORCONFIG(\"file-editorconfig\", '\\uea06'),\n    EIFFEL(\"file-eiffel\", '\\uea07'),\n    EJS(\"file-ejs\", '\\uea08'),\n    ELECTRON(\"file-electron\", '\\uea09'),\n    ELEMENTARYOS(\"file-elementaryos\", '\\uea0a'),\n    ELM(\"file-elm\", '\\uea0b'),\n    EMACS(\"file-emacs\", '\\uea0c'),\n    EMBER(\"file-ember\", '\\uea0d'),\n    EMBERSCRIPT(\"file-emberscript\", '\\uea0e'),\n    ENSIME(\"file-ensime\", '\\uea0f'),\n    EQ(\"file-eq\", '\\uea10'),\n    ESDOC(\"file-esdoc\", '\\uea11'),\n    ESLINT(\"file-eslint\", '\\uea13'),\n    ESLINT_OLD(\"file-eslint-old\", '\\uea12'),\n    EXPO(\"file-expo\", '\\uea14'),\n    FABFILE(\"file-fabfile\", '\\uea15'),\n    FABRIC(\"file-fabric\", '\\uea16'),\n    FACTOR(\"file-factor\", '\\uea17'),\n    FALCON(\"file-falcon\", '\\uea18'),\n    FANCY(\"file-fancy\", '\\uea19'),\n    FANTOM(\"file-fantom\", '\\uea1a'),\n    FAUNA(\"file-fauna\", '\\uea1b'),\n    FAUST(\"file-faust\", '\\uea1c'),\n    FBX(\"file-fbx\", '\\uea1d'),\n    FEXL(\"file-fexl\", '\\uea1e'),\n    FFMPEG(\"file-ffmpeg\", '\\uea1f'),\n    FINALDRAFT(\"file-finaldraft\", '\\uea20'),\n    FINDER(\"file-finder\", '\\uea21'),\n    FIREBASE(\"file-firebase\", '\\uea23'),\n    FIREBASE_BOLT(\"file-firebase-bolt\", '\\uea22'),\n    FLASK(\"file-flask\", '\\uea24'),\n    FLOOBITS(\"file-floobits\", '\\uea25'),\n    FLOW(\"file-flow\", '\\uea26'),\n    FLUTTER(\"file-flutter\", '\\uea27'),\n    FLUX(\"file-flux\", '\\uea28'),\n    FONT(\"file-font\", '\\uea2b'),\n    FONTFORGE(\"file-fontforge\", '\\uea2c'),\n    FONT_BITMAP(\"file-font-bitmap\", '\\uea29'),\n    FONT_OUTLINE(\"file-font-outline\", '\\uea2a'),\n    FORK(\"file-fork\", '\\uea2d'),\n    FORTHERECORD(\"file-fortherecord\", '\\uea2e'),\n    FORTRAN(\"file-fortran\", '\\uea2f'),\n    FOSSA(\"file-fossa\", '\\uea30'),\n    FOSSIL(\"file-fossil\", '\\uea31'),\n    FOUNTAIN(\"file-fountain\", '\\uea32'),\n    FRANCA(\"file-franca\", '\\uea33'),\n    FREEDESKTOP(\"file-freedesktop\", '\\uea34'),\n    FREEDOS(\"file-freedos\", '\\uea35'),\n    FREEMARKER(\"file-freemarker\", '\\uea36'),\n    FREEMAT(\"file-freemat\", '\\uea37'),\n    FREGE(\"file-frege\", '\\uea38'),\n    FTHTML(\"file-fthtml\", '\\uea39'),\n    FUELUX(\"file-fuelux\", '\\uea3a'),\n    FUSEBOX(\"file-fusebox\", '\\uea3b'),\n    FUTHARK(\"file-futhark\", '\\uea3c'),\n    GALAXY(\"file-galaxy\", '\\uea3d'),\n    GALEN(\"file-galen\", '\\uea3e'),\n    GAMEMAKER(\"file-gamemaker\", '\\uea3f'),\n    GAMS(\"file-gams\", '\\uea40'),\n    GAP(\"file-gap\", '\\uea41'),\n    GATSBY(\"file-gatsby\", '\\uea42'),\n    GAUSS(\"file-gauss\", '\\uea43'),\n    GDB(\"file-gdb\", '\\uea44'),\n    GENSHI(\"file-genshi\", '\\uea45'),\n    GENSTAT(\"file-genstat\", '\\uea46'),\n    GENTOO(\"file-gentoo\", '\\uea47'),\n    GF(\"file-gf\", '\\uea48'),\n    GHOSTSCRIPT(\"file-ghostscript\", '\\uea49'),\n    GIMP(\"file-gimp\", '\\uea4a'),\n    GITLAB(\"file-gitlab\", '\\uea4b'),\n    GITPOD(\"file-gitpod\", '\\uea4c'),\n    GLADE(\"file-glade\", '\\uea4d'),\n    GLIDE(\"file-glide\", '\\uea4e'),\n    GLTF(\"file-gltf\", '\\uea4f'),\n    GLYPHS(\"file-glyphs\", '\\uea50'),\n    GN(\"file-gn\", '\\uea51'),\n    GNU(\"file-gnu\", '\\uea52'),\n    GNUPLOT(\"file-gnuplot\", '\\uea53'),\n    GO(\"file-go\", '\\uea55'),\n    GODOT(\"file-godot\", '\\uea56'),\n    GOLO(\"file-golo\", '\\uea57'),\n    GORELEASER(\"file-goreleaser\", '\\uea58'),\n    GOSU(\"file-gosu\", '\\uea59'),\n    GO_OLD(\"file-go-old\", '\\uea54'),\n    GRADLE(\"file-gradle\", '\\uea5a'),\n    GRAPHITE(\"file-graphite\", '\\uea5b'),\n    GRAPHQL(\"file-graphql\", '\\uea5d'),\n    GRAPHQL_CODEGENERATOR(\"file-graphql-codegenerator\", '\\uea5c'),\n    GRAPHVIZ(\"file-graphviz\", '\\uea5e'),\n    GRAVIT_DESIGNER(\"file-gravit-designer\", '\\uea5f'),\n    GREENKEEPER(\"file-greenkeeper\", '\\uea60'),\n    GRIDSOME(\"file-gridsome\", '\\uea61'),\n    GROOVY(\"file-groovy\", '\\uea62'),\n    GRUNT(\"file-grunt\", '\\uea63'),\n    GULP(\"file-gulp\", '\\uea64'),\n    HACK(\"file-hack\", '\\uea65'),\n    HAML(\"file-haml\", '\\uea66'),\n    HARBOUR(\"file-harbour\", '\\uea67'),\n    HASHICORP(\"file-hashicorp\", '\\uea68'),\n    HAXE(\"file-haxe\", '\\uea69'),\n    HAXEDEVELOP(\"file-haxedevelop\", '\\uea6a'),\n    HELIX(\"file-helix\", '\\uea6b'),\n    HEWLETTPACKARD(\"file-hewlettpackard\", '\\uea6c'),\n    HIE(\"file-hie\", '\\uea6d'),\n    HITACHI(\"file-hitachi\", '\\uea6e'),\n    HJSON(\"file-hjson\", '\\uea6f'),\n    HOMEBREW(\"file-homebrew\", '\\uea70'),\n    HOP(\"file-hop\", '\\uea71'),\n    HOPLON(\"file-hoplon\", '\\uea72'),\n    HOUNDCI(\"file-houndci\", '\\uea73'),\n    HUGO(\"file-hugo\", '\\uea74'),\n    HUSKY(\"file-husky\", '\\uea75'),\n    HY(\"file-hy\", '\\uea76'),\n    HYGEN(\"file-hygen\", '\\uea77'),\n    HYPER(\"file-hyper\", '\\uea78'),\n    ICOMOON(\"file-icomoon\", '\\uea79'),\n    ICU(\"file-icu\", '\\uea7a'),\n    IDL(\"file-idl\", '\\uea7b'),\n    IDRIS(\"file-idris\", '\\uea7c'),\n    IGOR_PRO(\"file-igor-pro\", '\\uea7d'),\n    ILLUMOS(\"file-illumos\", '\\uea7e'),\n    IMAGE(\"file-image\", '\\uea7f'),\n    IMBA(\"file-imba\", '\\uea82'),\n    IMBA_ALT(\"file-imba-alt\", '\\uea80'),\n    IMBA_OLD(\"file-imba-old\", '\\uea81'),\n    INFLUXDATA(\"file-influxdata\", '\\uea83'),\n    INFORM7(\"file-inform7\", '\\uea84'),\n    INK(\"file-ink\", '\\uea85'),\n    INKSCAPE(\"file-inkscape\", '\\uea86'),\n    INNOSETUP(\"file-innosetup\", '\\uea87'),\n    INTEL(\"file-intel\", '\\uea88'),\n    IO(\"file-io\", '\\uea89'),\n    IONIC_PROJECT(\"file-ionic-project\", '\\uea90'),\n    ISABELLE(\"file-isabelle\", '\\uea91'),\n    ISTANBUL(\"file-istanbul\", '\\uea92'),\n    J(\"file-j\", '\\uea93'),\n    JADE(\"file-jade\", '\\uea94'),\n    JAKEFILE(\"file-jakefile\", '\\uea95'),\n    JANET(\"file-janet\", '\\uea96'),\n    JASMINE(\"file-jasmine\", '\\uea97'),\n    JENKINS(\"file-jenkins\", '\\uea98'),\n    JEST(\"file-jest\", '\\uea99'),\n    JINJA(\"file-jinja\", '\\uea9a'),\n    JISON(\"file-jison\", '\\uea9b'),\n    JOLIE(\"file-jolie\", '\\uea9c'),\n    JSCPD(\"file-jscpd\", '\\uea9d'),\n    JSON5(\"file-json5\", '\\ueaa2'),\n    JSONNET(\"file-jsonnet\", '\\ueaa3'),\n    JSON_1(\"file-json-1\", '\\uea9e'),\n    JSON_2(\"file-json-2\", '\\uea9f'),\n    JSON_LD1(\"file-json-ld1\", '\\ueaa0'),\n    JSON_LD2(\"file-json-ld2\", '\\ueaa1'),\n    JSX(\"file-jsx\", '\\ueaa6'),\n    JSX_ALT(\"file-jsx-alt\", '\\ueaa4'),\n    JSX_ATOM(\"file-jsx-atom\", '\\ueaa5'),\n    JULIA(\"file-julia\", '\\ueaa7'),\n    JUNOS(\"file-junos\", '\\ueaa8'),\n    JUPYTER(\"file-jupyter\", '\\ueaa9'),\n    KAITAI(\"file-kaitai\", '\\ueaaa'),\n    KARMA(\"file-karma\", '\\ueaab'),\n    KEYBASE(\"file-keybase\", '\\ueaac'),\n    KEYNOTE(\"file-keynote\", '\\ueaad'),\n    KHRONOS(\"file-khronos\", '\\ueaae'),\n    KIBO(\"file-kibo\", '\\ueaaf'),\n    KICAD(\"file-kicad\", '\\ueab0'),\n    KITCHENCI(\"file-kitchenci\", '\\ueab1'),\n    KIVY(\"file-kivy\", '\\ueab2'),\n    KNIME(\"file-knime\", '\\ueab3'),\n    KNOCKOUT(\"file-knockout\", '\\ueab4'),\n    KOS(\"file-kos\", '\\ueab5'),\n    KOTLIN(\"file-kotlin\", '\\ueab6'),\n    KRL(\"file-krl\", '\\ueab7'),\n    KUBERNETES(\"file-kubernetes\", '\\ueab8'),\n    KUSTO(\"file-kusto\", '\\ueaba'),\n    KUSTO_ALT(\"file-kusto-alt\", '\\ueab9'),\n    KX(\"file-kx\", '\\ueabb'),\n    LABVIEW(\"file-labview\", '\\ueabc'),\n    LARK(\"file-lark\", '\\ueabd'),\n    LASSO(\"file-lasso\", '\\ueabe'),\n    LATEX(\"file-latex\", '\\ueabf'),\n    LATINO(\"file-latino\", '\\ueac0'),\n    LEAFLET(\"file-leaflet\", '\\ueac1'),\n    LEAN(\"file-lean\", '\\ueac2'),\n    LEFTHOOK(\"file-lefthook\", '\\ueac4'),\n    LEFTHOOK_ALT(\"file-lefthook-alt\", '\\ueac3'),\n    LEININGEN(\"file-leiningen\", '\\ueac5'),\n    LEKTOR(\"file-lektor\", '\\ueac6'),\n    LERNA(\"file-lerna\", '\\ueac7'),\n    LEX(\"file-lex\", '\\ueac9'),\n    LEX_ALT(\"file-lex-alt\", '\\ueac8'),\n    LFE(\"file-lfe\", '\\ueaca'),\n    LGTM(\"file-lgtm\", '\\ueacb'),\n    LIBUV(\"file-libuv\", '\\ueacc'),\n    LIGHTHOUSE(\"file-lighthouse\", '\\ueacd'),\n    LIGHTWAVE(\"file-lightwave\", '\\ueace'),\n    LILYPOND(\"file-lilypond\", '\\ueacf'),\n    LIME(\"file-lime\", '\\uead0'),\n    LINQPAD(\"file-linqpad\", '\\uead1'),\n    LISP(\"file-lisp\", '\\uead2'),\n    LIVESCRIPT(\"file-livescript\", '\\uead3'),\n    LLVM(\"file-llvm\", '\\uead4'),\n    LOGTALK(\"file-logtalk\", '\\uead5'),\n    LOLCODE(\"file-lolcode\", '\\uead6'),\n    LOOKML(\"file-lookml\", '\\uead7'),\n    LSL(\"file-lsl\", '\\uead8'),\n    LUA(\"file-lua\", '\\uead9'),\n    MACAULAY2(\"file-macaulay2\", '\\ueada'),\n    MACVIM(\"file-macvim\", '\\ueadb'),\n    MAGIT(\"file-magit\", '\\ueadc'),\n    MAKO(\"file-mako\", '\\ueadd'),\n    MANJARO(\"file-manjaro\", '\\ueade'),\n    MANPAGE(\"file-manpage\", '\\ueadf'),\n    MAPBOX(\"file-mapbox\", '\\ueae0'),\n    MARKDOWNLINT(\"file-markdownlint\", '\\ueae1'),\n    MARKO(\"file-marko\", '\\ueae2'),\n    MATHEMATICA(\"file-mathematica\", '\\ueae3'),\n    MATHJAX(\"file-mathjax\", '\\ueae4'),\n    MATLAB(\"file-matlab\", '\\ueae5'),\n    MATROSKA(\"file-matroska\", '\\ueae6'),\n    MAX(\"file-max\", '\\ueae7'),\n    MAYA(\"file-maya\", '\\ueae8'),\n    MDX(\"file-mdx\", '\\ueae9'),\n    MEDIAWIKI(\"file-mediawiki\", '\\ueaea'),\n    MELPA(\"file-melpa\", '\\ueaeb'),\n    MERCURIAL(\"file-mercurial\", '\\ueaec'),\n    MERCURY(\"file-mercury\", '\\ueaed'),\n    MERMAID(\"file-mermaid\", '\\ueaee'),\n    MESON(\"file-meson\", '\\ueaf0'),\n    MESON_OLD(\"file-meson-old\", '\\ueaef'),\n    METAL(\"file-metal\", '\\ueaf1'),\n    METEOR(\"file-meteor\", '\\ueaf2'),\n    MICROSOFT_ACCESS(\"file-microsoft-access\", '\\ueaf3'),\n    MICROSOFT_EXCEL(\"file-microsoft-excel\", '\\ueaf4'),\n    MICROSOFT_INFOPATH(\"file-microsoft-infopath\", '\\ueaf5'),\n    MICROSOFT_LYNC(\"file-microsoft-lync\", '\\ueaf6'),\n    MICROSOFT_ONENOTE(\"file-microsoft-onenote\", '\\ueaf7'),\n    MICROSOFT_OUTLOOK(\"file-microsoft-outlook\", '\\ueaf8'),\n    MICROSOFT_POWERPOINT(\"file-microsoft-powerpoint\", '\\ueaf9'),\n    MICROSOFT_PROJECT(\"file-microsoft-project\", '\\ueafa'),\n    MICROSOFT_PUBLISHER(\"file-microsoft-publisher\", '\\ueafb'),\n    MICROSOFT_VISIO(\"file-microsoft-visio\", '\\ueafc'),\n    MICROSOFT_WORD(\"file-microsoft-word\", '\\ueafd'),\n    MINECRAFT(\"file-minecraft\", '\\ueafe'),\n    MINIZINC(\"file-minizinc\", '\\ueaff'),\n    MIRAH(\"file-mirah\", '\\ueb00'),\n    MIRANDA(\"file-miranda\", '\\ueb01'),\n    MIRC(\"file-mirc\", '\\ueb02'),\n    MJML(\"file-mjml\", '\\ueb03'),\n    MOCHA(\"file-mocha\", '\\ueb04'),\n    MODELICA(\"file-modelica\", '\\ueb05'),\n    MODERNWEB(\"file-modernweb\", '\\ueb06'),\n    MODO(\"file-modo\", '\\ueb07'),\n    MODULA_2(\"file-modula-2\", '\\ueb08'),\n    MODULA_3(\"file-modula-3\", '\\ueb09'),\n    MOHO(\"file-moho\", '\\ueb0a'),\n    MOLECULER(\"file-moleculer\", '\\ueb0b'),\n    MOMENT(\"file-moment\", '\\ueb0d'),\n    MOMENT_TIMEZONE(\"file-moment-timezone\", '\\ueb0c'),\n    MONKEY(\"file-monkey\", '\\ueb0e'),\n    MONO(\"file-mono\", '\\ueb0f'),\n    MONOTONE(\"file-monotone\", '\\ueb10'),\n    MOTOROLA(\"file-motorola\", '\\ueb11'),\n    MOUSTACHE(\"file-moustache\", '\\ueb12'),\n    MRUBY(\"file-mruby\", '\\ueb13'),\n    MS_DOS(\"file-ms-dos\", '\\ueb14'),\n    MUPAD(\"file-mupad\", '\\ueb15'),\n    NANO(\"file-nano\", '\\ueb16'),\n    NANOC(\"file-nanoc\", '\\ueb17'),\n    NANT(\"file-nant\", '\\ueb18'),\n    NASM(\"file-nasm\", '\\ueb19'),\n    NDEPEND(\"file-ndepend\", '\\ueb1a'),\n    NEKO(\"file-neko\", '\\ueb1b'),\n    NEMERLE(\"file-nemerle\", '\\ueb1c'),\n    NEO4J(\"file-neo4j\", '\\ueb1d'),\n    NEON(\"file-neon\", '\\ueb1e'),\n    NESSUS(\"file-nessus\", '\\ueb1f'),\n    NESTJS(\"file-nestjs\", '\\ueb20'),\n    NETLIFY(\"file-netlify\", '\\ueb21'),\n    NETLINX(\"file-netlinx\", '\\ueb22'),\n    NETLOGO(\"file-netlogo\", '\\ueb23'),\n    NEW_RELIC(\"file-new-relic\", '\\ueb24'),\n    NEXTFLOW(\"file-nextflow\", '\\ueb25'),\n    NEXTJS(\"file-nextjs\", '\\ueb26'),\n    NGINX(\"file-nginx\", '\\ueb27'),\n    NIB(\"file-nib\", '\\ueb28'),\n    NICKLE(\"file-nickle\", '\\ueb29'),\n    NIGHTWATCH(\"file-nightwatch\", '\\ueb2a'),\n    NIMBLE(\"file-nimble\", '\\ueb2b'),\n    NIMROD(\"file-nimrod\", '\\ueb2c'),\n    NINTENDO64(\"file-nintendo64\", '\\ueb2d'),\n    NIT(\"file-nit\", '\\ueb2e'),\n    NIX(\"file-nix\", '\\ueb2f'),\n    NMAP(\"file-nmap\", '\\ueb30'),\n    NODEMON(\"file-nodemon\", '\\ueb31'),\n    NOKOGIRI(\"file-nokogiri\", '\\ueb32'),\n    NOMAD(\"file-nomad\", '\\ueb33'),\n    NOON(\"file-noon\", '\\ueb34'),\n    NORMALISE(\"file-normalise\", '\\ueb35'),\n    NPM(\"file-npm\", '\\ueb37'),\n    NPM_OLD(\"file-npm-old\", '\\ueb36'),\n    NSIS(\"file-nsis\", '\\ueb39'),\n    NSIS_OLD(\"file-nsis-old\", '\\ueb38'),\n    NSRI(\"file-nsri\", '\\ueb3b'),\n    NSRI_ALT(\"file-nsri-alt\", '\\ueb3a'),\n    NUCLIDE(\"file-nuclide\", '\\ueb3c'),\n    NUGET(\"file-nuget\", '\\ueb3d'),\n    NUMPY(\"file-numpy\", '\\ueb3f'),\n    NUMPY_OLD(\"file-numpy-old\", '\\ueb3e'),\n    NUNJUCKS(\"file-nunjucks\", '\\ueb40'),\n    NUXT(\"file-nuxt\", '\\ueb41'),\n    NVIDIA(\"file-nvidia\", '\\ueb42'),\n    NWSCRIPT(\"file-nwscript\", '\\ueb43'),\n    NX(\"file-nx\", '\\ueb44'),\n    NXC(\"file-nxc\", '\\ueb45'),\n    OBERON(\"file-oberon\", '\\ueb46'),\n    OBJECTIVE_J(\"file-objective-j\", '\\ueb47'),\n    OCAML(\"file-ocaml\", '\\ueb48'),\n    OCTAVE(\"file-octave\", '\\ueb49'),\n    ODIN(\"file-odin\", '\\ueb4a'),\n    OGONE(\"file-ogone\", '\\ueb4b'),\n    OOC(\"file-ooc\", '\\ueb4c'),\n    OPA(\"file-opa\", '\\ueb4d'),\n    OPENAPI(\"file-openapi\", '\\ueb4e'),\n    OPENBSD(\"file-openbsd\", '\\ueb50'),\n    OPENBSD_ALT(\"file-openbsd-alt\", '\\ueb4f'),\n    OPENCL(\"file-opencl\", '\\ueb51'),\n    OPENCV(\"file-opencv\", '\\ueb52'),\n    OPENEXR(\"file-openexr\", '\\ueb53'),\n    OPENGL(\"file-opengl\", '\\ueb54'),\n    OPENINDIANA(\"file-openindiana\", '\\ueb55'),\n    OPENOFFICE(\"file-openoffice\", '\\ueb56'),\n    OPENPOLICYAGENT(\"file-openpolicyagent\", '\\ueb57'),\n    OPENSCAD(\"file-openscad\", '\\ueb58'),\n    OPENSOLARIS(\"file-opensolaris\", '\\ueb59'),\n    OPENSTACK(\"file-openstack\", '\\ueb5a'),\n    OPENVMS(\"file-openvms\", '\\ueb5b'),\n    OPENVPN(\"file-openvpn\", '\\ueb5c'),\n    OPENZFS(\"file-openzfs\", '\\ueb5d'),\n    ORG_MODE(\"file-org-mode\", '\\ueb5e'),\n    OS2(\"file-os2\", '\\ueb5f'),\n    OWL(\"file-owl\", '\\ueb60'),\n    OX(\"file-ox\", '\\ueb61'),\n    OXYGENE(\"file-oxygene\", '\\ueb62'),\n    OZ(\"file-oz\", '\\ueb63'),\n    P4(\"file-p4\", '\\ueb64'),\n    PAN(\"file-pan\", '\\ueb65'),\n    PAPYRUS(\"file-papyrus\", '\\ueb66'),\n    PARROT(\"file-parrot\", '\\ueb67'),\n    PASCAL(\"file-pascal\", '\\ueb68'),\n    PATCH(\"file-patch\", '\\ueb69'),\n    PATREON(\"file-patreon\", '\\ueb6a'),\n    PAWN(\"file-pawn\", '\\ueb6b'),\n    PCD(\"file-pcd\", '\\ueb6c'),\n    PEGJS(\"file-pegjs\", '\\ueb6d'),\n    PERL6(\"file-perl6\", '\\ueb6e'),\n    PHALCON(\"file-phalcon\", '\\ueb6f'),\n    PHOENIX(\"file-phoenix\", '\\ueb70'),\n    PHP(\"file-php\", '\\ueb71'),\n    PHPUNIT(\"file-phpunit\", '\\ueb72'),\n    PHRASEAPP(\"file-phraseapp\", '\\ueb73'),\n    PICKLE(\"file-pickle\", '\\ueb74'),\n    PICOLISP(\"file-picolisp\", '\\ueb76'),\n    PICO_8(\"file-pico-8\", '\\ueb75'),\n    PIKE(\"file-pike\", '\\ueb77'),\n    PINESCRIPT(\"file-pinescript\", '\\ueb78'),\n    PIPENV(\"file-pipenv\", '\\ueb79'),\n    PKGSRC(\"file-pkgsrc\", '\\ueb7a'),\n    PLATFORMIO(\"file-platformio\", '\\ueb7b'),\n    PM2(\"file-pm2\", '\\ueb7c'),\n    PNPM(\"file-pnpm\", '\\ueb7d'),\n    POD(\"file-pod\", '\\ueb7e'),\n    POGOSCRIPT(\"file-pogoscript\", '\\ueb7f'),\n    POINTWISE(\"file-pointwise\", '\\ueb80'),\n    POLYMER(\"file-polymer\", '\\ueb81'),\n    PONY(\"file-pony\", '\\ueb82'),\n    POSTCSS(\"file-postcss\", '\\ueb83'),\n    POSTSCRIPT(\"file-postscript\", '\\ueb84'),\n    POV_RAY(\"file-pov-ray\", '\\ueb85'),\n    POWERBUILDER(\"file-powerbuilder\", '\\ueb86'),\n    POWERPC(\"file-powerpc\", '\\ueb87'),\n    POWERSHELL(\"file-powershell\", '\\ueb88'),\n    PRECISION(\"file-precision\", '\\ueb89'),\n    PRECOMMIT(\"file-precommit\", '\\ueb8a'),\n    PRETTIER(\"file-prettier\", '\\ueb8b'),\n    PRISMA(\"file-prisma\", '\\ueb8c'),\n    PROCESSING(\"file-processing\", '\\ueb8d'),\n    PROGRESS(\"file-progress\", '\\ueb8f'),\n    PROGRESS_OLD(\"file-progress-old\", '\\ueb8e'),\n    PROPELLER(\"file-propeller\", '\\ueb90'),\n    PROS(\"file-pros\", '\\ueb91'),\n    PROSELINT(\"file-proselint\", '\\ueb92'),\n    PROTRACTOR(\"file-protractor\", '\\ueb93'),\n    PUG(\"file-pug\", '\\ueb95'),\n    PUG_OLD(\"file-pug-old\", '\\ueb94'),\n    PULLAPPROVE(\"file-pullapprove\", '\\ueb96'),\n    PUPPET(\"file-puppet\", '\\ueb97'),\n    PURE(\"file-pure\", '\\ueb98'),\n    PUREBASIC(\"file-purebasic\", '\\ueb99'),\n    PURESCRIPT(\"file-purescript\", '\\ueb9a'),\n    PYPI(\"file-pypi\", '\\ueb9b'),\n    PYRET(\"file-pyret\", '\\ueb9c'),\n    PYTEST(\"file-pytest\", '\\ueb9d'),\n    PYUP(\"file-pyup\", '\\ueb9e'),\n    Q(\"file-q\", '\\ueb9f'),\n    QISKIT(\"file-qiskit\", '\\ueba0'),\n    QLIKVIEW(\"file-qlikview\", '\\ueba1'),\n    QT(\"file-qt\", '\\ueba2'),\n    QUASAR(\"file-quasar\", '\\ueba3'),\n    R(\"file-r\", '\\ueba4'),\n    RACKET(\"file-racket\", '\\ueba5'),\n    RAML(\"file-raml\", '\\ueba6'),\n    RASCAL(\"file-rascal\", '\\ueba7'),\n    RAZZLE(\"file-razzle\", '\\ueba8'),\n    RDATA(\"file-rdata\", '\\ueba9'),\n    RDOC(\"file-rdoc\", '\\uebaa'),\n    REACTOS(\"file-reactos\", '\\uebab'),\n    READTHEDOCS(\"file-readthedocs\", '\\uebac'),\n    REALBASIC(\"file-realbasic\", '\\uebad'),\n    REASON(\"file-reason\", '\\uebae'),\n    REASONSTUDIOS(\"file-reasonstudios\", '\\uebb0'),\n    REASONSTUDIOS_ALT(\"file-reasonstudios-alt\", '\\uebaf'),\n    REBOL(\"file-rebol\", '\\uebb1'),\n    RED(\"file-red\", '\\uebb3'),\n    REDUX(\"file-redux\", '\\uebb4'),\n    RED_OLD(\"file-red-old\", '\\uebb2'),\n    REEK(\"file-reek\", '\\uebb5'),\n    REGEX(\"file-regex\", '\\uebb6'),\n    REMARK(\"file-remark\", '\\uebb7'),\n    RENOVATE(\"file-renovate\", '\\uebb8'),\n    RESCRIPT(\"file-rescript\", '\\uebb9'),\n    RESTRUCTUREDTEXT(\"file-restructuredtext\", '\\uebba'),\n    REXX(\"file-rexx\", '\\uebbb'),\n    RHINO3D(\"file-rhino3d\", '\\uebbc'),\n    RING(\"file-ring\", '\\uebbd'),\n    RIOT(\"file-riot\", '\\uebbf'),\n    RIOT_OLD(\"file-riot-old\", '\\uebbe'),\n    RISC_V(\"file-risc-v\", '\\uebc0'),\n    RMARKDOWN(\"file-rmarkdown\", '\\uebc1'),\n    ROBOTFRAMEWORK(\"file-robotframework\", '\\uebc3'),\n    ROBOTFRAMEWORK_OLD(\"file-robotframework-old\", '\\uebc2'),\n    ROBOTS(\"file-robots\", '\\uebc4'),\n    ROLLUP(\"file-rollup\", '\\uebc6'),\n    ROLLUP_OLD(\"file-rollup-old\", '\\uebc5'),\n    RSPEC(\"file-rspec\", '\\uebc7'),\n    RSTUDIO(\"file-rstudio\", '\\uebc8'),\n    RSYNC(\"file-rsync\", '\\uebc9'),\n    RUBOCOP(\"file-rubocop\", '\\uebca'),\n    RUBYGEMS(\"file-rubygems\", '\\uebcb'),\n    SAC(\"file-sac\", '\\uebcc'),\n    SAGE(\"file-sage\", '\\uebcd'),\n    SAILS(\"file-sails\", '\\uebce'),\n    SALTSTACK(\"file-saltstack\", '\\uebcf'),\n    SAN(\"file-san\", '\\uebd0'),\n    SAS(\"file-sas\", '\\uebd1'),\n    SBT(\"file-sbt\", '\\uebd2'),\n    SCHEME(\"file-scheme\", '\\uebd3'),\n    SCILAB(\"file-scilab\", '\\uebd4'),\n    SCILLA(\"file-scilla\", '\\uebd5'),\n    SCRATCH(\"file-scratch\", '\\uebd6'),\n    SCRIPT(\"file--script\", '\\ue986'),\n    SCRUTINIZER(\"file-scrutinizer\", '\\uebd7'),\n    SELF(\"file-self\", '\\uebd8'),\n    SEMANTICRELEASE(\"file-semanticrelease\", '\\uebd9'),\n    SENTRY(\"file-sentry\", '\\uebda'),\n    SEQUELIZE(\"file-sequelize\", '\\uebdb'),\n    SERVERLESS(\"file-serverless\", '\\uebdc'),\n    SERVICE_FABRIC(\"file-service-fabric\", '\\uebdd'),\n    SHADOWCLJS(\"file-shadowcljs\", '\\uebde'),\n    SHEN(\"file-shen\", '\\uebdf'),\n    SHIPIT(\"file-shipit\", '\\uebe0'),\n    SHIPPABLE(\"file-shippable\", '\\uebe1'),\n    SHOPIFY(\"file-shopify\", '\\uebe2'),\n    SHURIKEN(\"file-shuriken\", '\\uebe3'),\n    SIGILS(\"file-sigils\", '\\uebe4'),\n    SILICONGRAPHICS(\"file-silicongraphics\", '\\uebe5'),\n    SILVERSTRIPE(\"file-silverstripe\", '\\uebe6'),\n    SINATRA(\"file-sinatra\", '\\uebe7'),\n    SKETCH(\"file-sketch\", '\\uebe8'),\n    SKETCHUP_LAYOUT(\"file-sketchup-layout\", '\\uebe9'),\n    SKETCHUP_MAKE(\"file-sketchup-make\", '\\uebea'),\n    SKETCHUP_STYLEBUILDER(\"file-sketchup-stylebuilder\", '\\uebeb'),\n    SLASH(\"file-slash\", '\\uebec'),\n    SMARTOS(\"file-smartos\", '\\uebee'),\n    SMARTOS_ALT(\"file-smartos-alt\", '\\uebed'),\n    SNAPCRAFT(\"file-snapcraft\", '\\uebef'),\n    SNORT(\"file-snort\", '\\uebf0'),\n    SNOWPACK(\"file-snowpack\", '\\uebf1'),\n    SNYK(\"file-snyk\", '\\uebf2'),\n    SOLIDARITY(\"file-solidarity\", '\\uebf3'),\n    SOLIDITY(\"file-solidity\", '\\uebf4'),\n    SOPHIA(\"file-sophia\", '\\uebf5'),\n    SORBET(\"file-sorbet\", '\\uebf6'),\n    SOURCE(\"file-source\", '\\uebf7'),\n    SPACEMACS(\"file-spacemacs\", '\\uebf8'),\n    SPACENGINE(\"file-spacengine\", '\\uebf9'),\n    SPARC(\"file-sparc\", '\\uebfa'),\n    SPRAY(\"file-spray\", '\\uebfb'),\n    SQF(\"file-sqf\", '\\uebfc'),\n    SQLITE(\"file-sqlite\", '\\uebfd'),\n    SQUARESPACE(\"file-squarespace\", '\\uebfe'),\n    STAN(\"file-stan\", '\\uebff'),\n    STATA(\"file-stata\", '\\uec00'),\n    STDLIBJS(\"file-stdlibjs\", '\\uec01'),\n    STENCIL(\"file-stencil\", '\\uec02'),\n    STITCHES(\"file-stitches\", '\\uec03'),\n    STORYBOOK(\"file-storybook\", '\\uec04'),\n    STORYIST(\"file-storyist\", '\\uec05'),\n    STRINGS(\"file-strings\", '\\uec06'),\n    STYLABLE(\"file-stylable\", '\\uec07'),\n    STYLEDCOMPONENTS(\"file-styledcomponents\", '\\uec08'),\n    STYLELINT(\"file-stylelint\", '\\uec09'),\n    STYLISHHASKELL(\"file-stylishhaskell\", '\\uec0a'),\n    STYLUS(\"file-stylus\", '\\uec0d'),\n    STYLUS_ORB(\"file-stylus-orb\", '\\uec0b'),\n    STYLUS_S(\"file-stylus-s\", '\\uec0c'),\n    SUBLIME(\"file-sublime\", '\\uec0e'),\n    SUPERCOLLIDER(\"file-supercollider\", '\\uec0f'),\n    SVELTE(\"file-svelte\", '\\uec10'),\n    SVN(\"file-svn\", '\\uec11'),\n    SWAGGER(\"file-swagger\", '\\uec12'),\n    SYSTEMVERILOG(\"file-systemverilog\", '\\uec13'),\n    TAG(\"file-tag\", '\\uec14'),\n    TAILWIND(\"file-tailwind\", '\\uec15'),\n    TCL(\"file-tcl\", '\\uec16'),\n    TELEGRAM(\"file-telegram\", '\\uec17'),\n    TEMPLATETOOLKIT(\"file-templatetoolkit\", '\\uec18'),\n    TEMPLEOS(\"file-templeos\", '\\uec19'),\n    TERMINAL(\"file-terminal\", '\\uec1a'),\n    TERN(\"file-tern\", '\\uec1b'),\n    TERRAFORM(\"file-terraform\", '\\uec1c'),\n    TERSER(\"file-terser\", '\\uec1d'),\n    TESTCAFE(\"file-testcafe\", '\\uec2a'),\n    TEST_COFFEESCRIPT(\"file-test-coffeescript\", '\\uec1e'),\n    TEST_DIRECTORY(\"file-test-directory\", '\\uec1f'),\n    TEST_GENERIC(\"file-test-generic\", '\\uec20'),\n    TEST_GO(\"file-test-go\", '\\uec21'),\n    TEST_HASKELL(\"file-test-haskell\", '\\uec22'),\n    TEST_JS(\"file-test-js\", '\\uec23'),\n    TEST_PERL(\"file-test-perl\", '\\uec24'),\n    TEST_PYTHON(\"file-test-python\", '\\uec25'),\n    TEST_REACT(\"file-test-react\", '\\uec26'),\n    TEST_RUBY(\"file-test-ruby\", '\\uec27'),\n    TEST_RUST(\"file-test-rust\", '\\uec28'),\n    TEST_TYPESCRIPT(\"file-test-typescript\", '\\uec29'),\n    TEXTILE(\"file-textile\", '\\uec2b'),\n    TEXTMATE(\"file-textmate\", '\\uec2c'),\n    TFS(\"file-tfs\", '\\uec2d'),\n    THOR(\"file-thor\", '\\uec2e'),\n    TILT(\"file-tilt\", '\\uec2f'),\n    TINYMCE(\"file-tinymce\", '\\uec30'),\n    TIPE(\"file-tipe\", '\\uec31'),\n    TLA(\"file-tla\", '\\uec32'),\n    TMUX(\"file-tmux\", '\\uec33'),\n    TOML(\"file-toml\", '\\uec34'),\n    TORTOISESVN(\"file-tortoisesvn\", '\\uec35'),\n    TOTVS(\"file-totvs\", '\\uec36'),\n    TRUFFLE(\"file-truffle\", '\\uec37'),\n    TSX(\"file-tsx\", '\\uec39'),\n    TSX_ALT(\"file-tsx-alt\", '\\uec38'),\n    TTCN_3(\"file-ttcn-3\", '\\uec3a'),\n    TURING(\"file-turing\", '\\uec3b'),\n    TWIG(\"file-twig\", '\\uec3c'),\n    TWINE(\"file-twine\", '\\uec3d'),\n    TXL(\"file-txl\", '\\uec3e'),\n    TYPEDOC(\"file-typedoc\", '\\uec3f'),\n    TYPESCRIPT(\"file-typescript\", '\\uec41'),\n    TYPESCRIPT_ALT(\"file-typescript-alt\", '\\uec40'),\n    TYPINGS(\"file-typings\", '\\uec42'),\n    UFO(\"file-ufo\", '\\uec43'),\n    UNIBEAUTIFY(\"file-unibeautify\", '\\uec44'),\n    UNICODE(\"file-unicode\", '\\uec45'),\n    UNO(\"file-uno\", '\\uec46'),\n    UNREALSCRIPT(\"file-unrealscript\", '\\uec47'),\n    URWEB(\"file-urweb\", '\\uec48'),\n    V(\"file-v\", '\\uec4a'),\n    V8(\"file-v8\", '\\uec4c'),\n    V8_TURBOFAN(\"file-v8-turbofan\", '\\uec4b'),\n    VAGRANT(\"file-vagrant\", '\\uec4d'),\n    VALA(\"file-vala\", '\\uec4e'),\n    VAX(\"file-vax\", '\\uec4f'),\n    VCL(\"file-vcl\", '\\uec50'),\n    VELOCITY(\"file-velocity\", '\\uec51'),\n    VERILOG(\"file-verilog\", '\\uec52'),\n    VERTEXSHADER(\"file-vertexshader\", '\\uec53'),\n    VHDL(\"file-vhdl\", '\\uec54'),\n    VIDEO(\"file-video\", '\\uec55'),\n    VIRTUALBOX(\"file-virtualbox\", '\\uec57'),\n    VIRTUALBOX_ALT(\"file-virtualbox-alt\", '\\uec56'),\n    VMWARE(\"file-vmware\", '\\uec58'),\n    VSCODE(\"file-vscode\", '\\uec59'),\n    VSTS(\"file-vsts\", '\\uec5a'),\n    VUE(\"file-vue\", '\\uec5b'),\n    VYPER(\"file-vyper\", '\\uec5c'),\n    V_RAY(\"file-v-ray\", '\\uec49'),\n    W3C(\"file-w3c\", '\\uec5d'),\n    WALLABY(\"file-wallaby\", '\\uec5e'),\n    WALT(\"file-walt\", '\\uec5f'),\n    WARCRAFT_III(\"file-warcraft-iii\", '\\uec60'),\n    WASI(\"file-wasi\", '\\uec61'),\n    WATCHMAN(\"file-watchman\", '\\uec62'),\n    WDL(\"file-wdl\", '\\uec63'),\n    WEBASSEMBLY(\"file-webassembly\", '\\uec64'),\n    WEBGL(\"file-webgl\", '\\uec65'),\n    WEBHINT(\"file-webhint\", '\\uec66'),\n    WEBPACK(\"file-webpack\", '\\uec68'),\n    WEBPACK_OLD(\"file-webpack-old\", '\\uec67'),\n    WEBVTT(\"file-webvtt\", '\\uec69'),\n    WENYAN(\"file-wenyan\", '\\uec6a'),\n    WERCKER(\"file-wercker\", '\\uec6b'),\n    WGET(\"file-wget\", '\\uec6c'),\n    WINE(\"file-wine\", '\\uec6d'),\n    WIX(\"file-wix\", '\\uec6e'),\n    WORKBOX(\"file-workbox\", '\\uec6f'),\n    WURST(\"file-wurst\", '\\uec70'),\n    X10(\"file-x10\", '\\uec71'),\n    XAMARIN(\"file-xamarin\", '\\uec72'),\n    XMAKE(\"file-xmake\", '\\uec73'),\n    XMOS(\"file-xmos\", '\\uec74'),\n    XPAGES(\"file-xpages\", '\\uec75'),\n    XTEND(\"file-xtend\", '\\uec76'),\n    XUBUNTU(\"file-xubuntu\", '\\uec77'),\n    YAML(\"file-yaml\", '\\uec7c'),\n    YAMLLINT(\"file-yamllint\", '\\uec7d'),\n    YAML_ALT1(\"file-yaml-alt1\", '\\uec78'),\n    YAML_ALT2(\"file-yaml-alt2\", '\\uec79'),\n    YAML_ALT3(\"file-yaml-alt3\", '\\uec7a'),\n    YAML_ALT4(\"file-yaml-alt4\", '\\uec7b'),\n    YANDEX(\"file-yandex\", '\\uec7e'),\n    YANG(\"file-yang\", '\\uec7f'),\n    YARA(\"file-yara\", '\\uec80'),\n    YARN(\"file-yarn\", '\\uec81'),\n    YASM(\"file-yasm\", '\\uec82'),\n    YORICK(\"file-yorick\", '\\uec83'),\n    YUI(\"file-yui\", '\\uec84'),\n    ZBRUSH(\"file-zbrush\", '\\uec85'),\n    ZEIT(\"file-zeit\", '\\uec86'),\n    ZEPHIR(\"file-zephir\", '\\uec87'),\n    ZIG(\"file-zig\", '\\uec88'),\n    ZILOG(\"file-zilog\", '\\uec89'),\n    ZIMPL(\"file-zimpl\", '\\uec8a'),\n    ZORINOS(\"file-zorinos\", '\\uec8b'),\n    ZORK(\"file-zork\", '\\uec8c');\n\n    public static FileIcons findByDescription(String description) {\n        for (FileIcons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    FileIcons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fileicons-pack/src/main/java/org/kordamp/ikonli/fileicons/FileIconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fileicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FileIconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fileicons/2.1.44/fonts/File-Icons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"file-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return FileIcons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"File-Icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fileicons-pack/src/main/java/org/kordamp/ikonli/fileicons/FileIconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fileicons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class FileIconsIkonProvider implements IkonProvider<FileIcons> {\n    @Override\n    public Class<FileIcons> getIkon() {\n        return FileIcons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fileicons-pack/src/main/resources/META-INF/resources/fileicons/2.1.44/css/fileicons.css",
    "content": "@font-face {\n  font-family: 'File-Icons';\n  src:  url('../fonts/File-Icons.eot?5z3ukx');\n  src:  url('../fonts/File-Icons.eot?5z3ukx#iefix') format('embedded-opentype'),\n    url('../fonts/File-Icons.ttf?5z3ukx') format('truetype'),\n    url('../fonts/File-Icons.woff?5z3ukx') format('woff'),\n    url('../fonts/File-Icons.svg?5z3ukx#File-Icons') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"file-\"], [class*=\" file-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'File-Icons' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.file-1c-alt:before {\n  content: \"\\e900\";\n}\n.file-1c:before {\n  content: \"\\e901\";\n}\n.file-3d-model:before {\n  content: \"\\e902\";\n}\n.file-3ds-max:before {\n  content: \"\\e903\";\n}\n.file-4d:before {\n  content: \"\\e904\";\n}\n.file-a-plus:before {\n  content: \"\\e905\";\n}\n.file-abap:before {\n  content: \"\\e906\";\n}\n.file-abif:before {\n  content: \"\\e907\";\n}\n.file-acre:before {\n  content: \"\\e908\";\n}\n.file-actionscript:before {\n  content: \"\\e909\";\n}\n.file-ada:before {\n  content: \"\\e90a\";\n}\n.file-adobe-acrobat:before {\n  content: \"\\e90b\";\n}\n.file-adobe-aftereffects:before {\n  content: \"\\e90c\";\n}\n.file-adobe-animate:before {\n  content: \"\\e90d\";\n}\n.file-adobe-audition:before {\n  content: \"\\e90e\";\n}\n.file-adobe-bridge:before {\n  content: \"\\e90f\";\n}\n.file-adobe-characteranimator:before {\n  content: \"\\e910\";\n}\n.file-adobe-creativecloud:before {\n  content: \"\\e911\";\n}\n.file-adobe-dimension:before {\n  content: \"\\e912\";\n}\n.file-adobe-dreamweaver:before {\n  content: \"\\e913\";\n}\n.file-adobe-flash:before {\n  content: \"\\e914\";\n}\n.file-adobe-fuse:before {\n  content: \"\\e915\";\n}\n.file-adobe-illustrator:before {\n  content: \"\\e916\";\n}\n.file-adobe-incopy:before {\n  content: \"\\e917\";\n}\n.file-adobe-indesign:before {\n  content: \"\\e918\";\n}\n.file-adobe-lightroom:before {\n  content: \"\\e919\";\n}\n.file-adobe-mediaencoder:before {\n  content: \"\\e91a\";\n}\n.file-adobe-photoshop:before {\n  content: \"\\e91b\";\n}\n.file-adobe-prelude:before {\n  content: \"\\e91c\";\n}\n.file-adobe-premiere:before {\n  content: \"\\e91d\";\n}\n.file-adobe-premiererush:before {\n  content: \"\\e91e\";\n}\n.file-adobe-xd:before {\n  content: \"\\e91f\";\n}\n.file-adobe:before {\n  content: \"\\e920\";\n}\n.file-aeternity:before {\n  content: \"\\e921\";\n}\n.file-affectscript:before {\n  content: \"\\e922\";\n}\n.file-affinitydesigner:before {\n  content: \"\\e923\";\n}\n.file-agc:before {\n  content: \"\\e924\";\n}\n.file-agda:before {\n  content: \"\\e925\";\n}\n.file-akka:before {\n  content: \"\\e926\";\n}\n.file-alacritty-alt:before {\n  content: \"\\e927\";\n}\n.file-alacritty:before {\n  content: \"\\e928\";\n}\n.file-alex:before {\n  content: \"\\e929\";\n}\n.file-alloy:before {\n  content: \"\\e92a\";\n}\n.file-alpine-linux:before {\n  content: \"\\e92b\";\n}\n.file-amd:before {\n  content: \"\\e92c\";\n}\n.file-amigaos:before {\n  content: \"\\e92d\";\n}\n.file-ampl:before {\n  content: \"\\e92e\";\n}\n.file-amusewiki:before {\n  content: \"\\e92f\";\n}\n.file-analytica:before {\n  content: \"\\e930\";\n}\n.file-angelscript:before {\n  content: \"\\e931\";\n}\n.file-animestudio:before {\n  content: \"\\e932\";\n}\n.file-ansible-alt:before {\n  content: \"\\e933\";\n}\n.file-ansible:before {\n  content: \"\\e934\";\n}\n.file-antlr:before {\n  content: \"\\e935\";\n}\n.file-antwar:before {\n  content: \"\\e936\";\n}\n.file-anyscript:before {\n  content: \"\\e937\";\n}\n.file-apache-ant:before {\n  content: \"\\e938\";\n}\n.file-api-blueprint:before {\n  content: \"\\e939\";\n}\n.file-apiextractor:before {\n  content: \"\\e93a\";\n}\n.file-apl-old:before {\n  content: \"\\e93b\";\n}\n.file-apl:before {\n  content: \"\\e93c\";\n}\n.file-apollo:before {\n  content: \"\\e93d\";\n}\n.file-apple:before {\n  content: \"\\e93e\";\n}\n.file-appveyor:before {\n  content: \"\\e93f\";\n}\n.file-arc:before {\n  content: \"\\e940\";\n}\n.file-arch-linux:before {\n  content: \"\\e941\";\n}\n.file-arduino:before {\n  content: \"\\e942\";\n}\n.file-arm:before {\n  content: \"\\e943\";\n}\n.file-arttext:before {\n  content: \"\\e944\";\n}\n.file-asciidoc:before {\n  content: \"\\e945\";\n}\n.file-asciidoctor:before {\n  content: \"\\e946\";\n}\n.file-assembly-agc:before {\n  content: \"\\e947\";\n}\n.file-assembly-amd:before {\n  content: \"\\e948\";\n}\n.file-assembly-arm:before {\n  content: \"\\e949\";\n}\n.file-assembly-att:before {\n  content: \"\\e94a\";\n}\n.file-assembly-avr:before {\n  content: \"\\e94b\";\n}\n.file-assembly-generic:before {\n  content: \"\\e94c\";\n}\n.file-assembly-hitachi:before {\n  content: \"\\e94d\";\n}\n.file-assembly-intel:before {\n  content: \"\\e94e\";\n}\n.file-assembly-motorola:before {\n  content: \"\\e94f\";\n}\n.file-assembly-powerpc:before {\n  content: \"\\e950\";\n}\n.file-assembly-riscv:before {\n  content: \"\\e951\";\n}\n.file-assembly-sparc:before {\n  content: \"\\e952\";\n}\n.file-assembly-vax:before {\n  content: \"\\e953\";\n}\n.file-assembly-zilog:before {\n  content: \"\\e954\";\n}\n.file-asymptote-alt:before {\n  content: \"\\e955\";\n}\n.file-asymptote:before {\n  content: \"\\e956\";\n}\n.file-atoum:before {\n  content: \"\\e957\";\n}\n.file-ats:before {\n  content: \"\\e958\";\n}\n.file-att:before {\n  content: \"\\e959\";\n}\n.file-audacity:before {\n  content: \"\\e95a\";\n}\n.file-augeas:before {\n  content: \"\\e95b\";\n}\n.file-aurelia:before {\n  content: \"\\e95c\";\n}\n.file-autohotkey:before {\n  content: \"\\e95d\";\n}\n.file-autoit:before {\n  content: \"\\e95e\";\n}\n.file-avr:before {\n  content: \"\\e95f\";\n}\n.file-avro:before {\n  content: \"\\e960\";\n}\n.file-awk:before {\n  content: \"\\e961\";\n}\n.file-azure-pipelines:before {\n  content: \"\\e962\";\n}\n.file-babel:before {\n  content: \"\\e963\";\n}\n.file-ballerina:before {\n  content: \"\\e964\";\n}\n.file-bazaar:before {\n  content: \"\\e965\";\n}\n.file-bazel-old:before {\n  content: \"\\e966\";\n}\n.file-bazel:before {\n  content: \"\\e967\";\n}\n.file-behat:before {\n  content: \"\\e968\";\n}\n.file-bem:before {\n  content: \"\\e969\";\n}\n.file-bibtex:before {\n  content: \"\\e96a\";\n}\n.file-biml:before {\n  content: \"\\e96b\";\n}\n.file-binder:before {\n  content: \"\\e96c\";\n}\n.file-bintray:before {\n  content: \"\\e96d\";\n}\n.file-bison:before {\n  content: \"\\e96e\";\n}\n.file-bithound:before {\n  content: \"\\e96f\";\n}\n.file-blender:before {\n  content: \"\\e970\";\n}\n.file-blitzbasic:before {\n  content: \"\\e971\";\n}\n.file-bloc:before {\n  content: \"\\e972\";\n}\n.file-bluespec:before {\n  content: \"\\e973\";\n}\n.file-bnf:before {\n  content: \"\\e974\";\n}\n.file-boo:before {\n  content: \"\\e975\";\n}\n.file-bors:before {\n  content: \"\\e976\";\n}\n.file-bosque:before {\n  content: \"\\e977\";\n}\n.file-brainfuck:before {\n  content: \"\\e978\";\n}\n.file-brakeman:before {\n  content: \"\\e979\";\n}\n.file-bro:before {\n  content: \"\\e97a\";\n}\n.file-broccoli:before {\n  content: \"\\e97b\";\n}\n.file-brotli-old:before {\n  content: \"\\e97c\";\n}\n.file-brotli:before {\n  content: \"\\e97d\";\n}\n.file-browserslist:before {\n  content: \"\\e97e\";\n}\n.file-browsersync:before {\n  content: \"\\e97f\";\n}\n.file-brunch:before {\n  content: \"\\e980\";\n}\n.file-buck:before {\n  content: \"\\e981\";\n}\n.file-build-boot:before {\n  content: \"\\e982\";\n}\n.file-buildkite:before {\n  content: \"\\e983\";\n}\n.file-bundler:before {\n  content: \"\\e984\";\n}\n.file-byond:before {\n  content: \"\\e985\";\n}\n.file-c1:before {\n  content: \"\\e986\";\n}\n.file-script:before {\n  content: \"\\e986\";\n}\n.file-c2:before {\n  content: \"\\e987\";\n}\n.file-c3:before {\n  content: \"\\e988\";\n}\n.file-cabal:before {\n  content: \"\\e989\";\n}\n.file-caddy-old:before {\n  content: \"\\e98a\";\n}\n.file-caddy:before {\n  content: \"\\e98b\";\n}\n.file-caffe:before {\n  content: \"\\e98c\";\n}\n.file-caffe2:before {\n  content: \"\\e98d\";\n}\n.file-cairo:before {\n  content: \"\\e98e\";\n}\n.file-cake:before {\n  content: \"\\e98f\";\n}\n.file-cakefile:before {\n  content: \"\\e990\";\n}\n.file-cakephp-old:before {\n  content: \"\\e991\";\n}\n.file-cakephp:before {\n  content: \"\\e992\";\n}\n.file-calva:before {\n  content: \"\\e993\";\n}\n.file-carthage:before {\n  content: \"\\e994\";\n}\n.file-cdf:before {\n  content: \"\\e995\";\n}\n.file-ceylon:before {\n  content: \"\\e996\";\n}\n.file-chai:before {\n  content: \"\\e997\";\n}\n.file-chapel:before {\n  content: \"\\e998\";\n}\n.file-chartjs:before {\n  content: \"\\e999\";\n}\n.file-cheetah3d:before {\n  content: \"\\e99a\";\n}\n.file-chef:before {\n  content: \"\\e99b\";\n}\n.file-chocolatey:before {\n  content: \"\\e99c\";\n}\n.file-chuck:before {\n  content: \"\\e99d\";\n}\n.file-circleci:before {\n  content: \"\\e99e\";\n}\n.file-cirru:before {\n  content: \"\\e99f\";\n}\n.file-ckeditor:before {\n  content: \"\\e9a0\";\n}\n.file-clarion:before {\n  content: \"\\e9a1\";\n}\n.file-clean:before {\n  content: \"\\e9a2\";\n}\n.file-click:before {\n  content: \"\\e9a3\";\n}\n.file-clips:before {\n  content: \"\\e9a4\";\n}\n.file-clojurejs:before {\n  content: \"\\e9a5\";\n}\n.file-closuretemplate:before {\n  content: \"\\e9a6\";\n}\n.file-cloudfoundry:before {\n  content: \"\\e9a7\";\n}\n.file-cmake:before {\n  content: \"\\e9a8\";\n}\n.file-cobol:before {\n  content: \"\\e9a9\";\n}\n.file-cocoapods:before {\n  content: \"\\e9aa\";\n}\n.file-codacy:before {\n  content: \"\\e9ab\";\n}\n.file-code-climate:before {\n  content: \"\\e9ac\";\n}\n.file-codecov:before {\n  content: \"\\e9ad\";\n}\n.file-codekit:before {\n  content: \"\\e9ae\";\n}\n.file-codemeta:before {\n  content: \"\\e9af\";\n}\n.file-codemirror:before {\n  content: \"\\e9b0\";\n}\n.file-codeship:before {\n  content: \"\\e9b1\";\n}\n.file-coldfusion:before {\n  content: \"\\e9b2\";\n}\n.file-commitlint:before {\n  content: \"\\e9b3\";\n}\n.file-common-lisp:before {\n  content: \"\\e9b4\";\n}\n.file-component-pascal:before {\n  content: \"\\e9b5\";\n}\n.file-composer:before {\n  content: \"\\e9b6\";\n}\n.file-conan:before {\n  content: \"\\e9b7\";\n}\n.file-conda:before {\n  content: \"\\e9b8\";\n}\n.file-config-coffeescript:before {\n  content: \"\\e9b9\";\n}\n.file-config-go:before {\n  content: \"\\e9ba\";\n}\n.file-config-haskell:before {\n  content: \"\\e9bb\";\n}\n.file-config-js:before {\n  content: \"\\e9bc\";\n}\n.file-config-perl:before {\n  content: \"\\e9bd\";\n}\n.file-config-python:before {\n  content: \"\\e9be\";\n}\n.file-config-react:before {\n  content: \"\\e9bf\";\n}\n.file-config-ruby:before {\n  content: \"\\e9c0\";\n}\n.file-config-rust:before {\n  content: \"\\e9c1\";\n}\n.file-config-typescript:before {\n  content: \"\\e9c2\";\n}\n.file-config:before {\n  content: \"\\e9c3\";\n}\n.file-conll:before {\n  content: \"\\e9c4\";\n}\n.file-coq:before {\n  content: \"\\e9c5\";\n}\n.file-cordova:before {\n  content: \"\\e9c6\";\n}\n.file-coreldraw-alt:before {\n  content: \"\\e9c7\";\n}\n.file-coreldraw:before {\n  content: \"\\e9c8\";\n}\n.file-coveralls:before {\n  content: \"\\e9c9\";\n}\n.file-cpan:before {\n  content: \"\\e9ca\";\n}\n.file-cpcdosc:before {\n  content: \"\\e9cb\";\n}\n.file-crafttweaker:before {\n  content: \"\\e9cc\";\n}\n.file-creole:before {\n  content: \"\\e9cd\";\n}\n.file-crowdin:before {\n  content: \"\\e9ce\";\n}\n.file-crystal:before {\n  content: \"\\e9cf\";\n}\n.file-csound:before {\n  content: \"\\e9d0\";\n}\n.file-cubit:before {\n  content: \"\\e9d1\";\n}\n.file-cucumber:before {\n  content: \"\\e9d2\";\n}\n.file-cuneiform:before {\n  content: \"\\e9d3\";\n}\n.file-curl-lang:before {\n  content: \"\\e9d4\";\n}\n.file-curl:before {\n  content: \"\\e9d5\";\n}\n.file-curry:before {\n  content: \"\\e9d6\";\n}\n.file-cvs:before {\n  content: \"\\e9d7\";\n}\n.file-cwl:before {\n  content: \"\\e9d8\";\n}\n.file-cython:before {\n  content: \"\\e9d9\";\n}\n.file-d3:before {\n  content: \"\\e9da\";\n}\n.file-dafny:before {\n  content: \"\\e9db\";\n}\n.file-darcs-patch:before {\n  content: \"\\e9dc\";\n}\n.file-dashboard:before {\n  content: \"\\e9dd\";\n}\n.file-dataweave:before {\n  content: \"\\e9de\";\n}\n.file-dbase:before {\n  content: \"\\e9df\";\n}\n.file-default:before {\n  content: \"\\e9e0\";\n}\n.file-delphi:before {\n  content: \"\\e9e1\";\n}\n.file-deno:before {\n  content: \"\\e9e2\";\n}\n.file-dependabot:before {\n  content: \"\\e9e3\";\n}\n.file-devcontainer:before {\n  content: \"\\e9e4\";\n}\n.file-devicetree:before {\n  content: \"\\e9e5\";\n}\n.file-dhall:before {\n  content: \"\\e9e6\";\n}\n.file-dia:before {\n  content: \"\\e9e7\";\n}\n.file-diff:before {\n  content: \"\\e9e8\";\n}\n.file-digdag:before {\n  content: \"\\e9e9\";\n}\n.file-dna:before {\n  content: \"\\e9ea\";\n}\n.file-docbook:before {\n  content: \"\\e9eb\";\n}\n.file-docker:before {\n  content: \"\\e9ec\";\n}\n.file-doclets:before {\n  content: \"\\e9ed\";\n}\n.file-docpad:before {\n  content: \"\\e9ee\";\n}\n.file-docz:before {\n  content: \"\\e9ef\";\n}\n.file-dogescript:before {\n  content: \"\\e9f0\";\n}\n.file-dom:before {\n  content: \"\\e9f1\";\n}\n.file-donejs:before {\n  content: \"\\e9f2\";\n}\n.file-dosbox-alt:before {\n  content: \"\\e9f3\";\n}\n.file-dosbox:before {\n  content: \"\\e9f4\";\n}\n.file-dotjs:before {\n  content: \"\\e9f5\";\n}\n.file-doxygen:before {\n  content: \"\\e9f6\";\n}\n.file-dragonflybsd:before {\n  content: \"\\e9f7\";\n}\n.file-dragula:before {\n  content: \"\\e9f8\";\n}\n.file-drawio:before {\n  content: \"\\e9f9\";\n}\n.file-drone:before {\n  content: \"\\e9fa\";\n}\n.file-dub:before {\n  content: \"\\e9fb\";\n}\n.file-dvc:before {\n  content: \"\\e9fc\";\n}\n.file-dyalog:before {\n  content: \"\\e9fd\";\n}\n.file-dylib:before {\n  content: \"\\e9fe\";\n}\n.file-e:before {\n  content: \"\\e9ff\";\n}\n.file-eagle:before {\n  content: \"\\ea00\";\n}\n.file-easybuild:before {\n  content: \"\\ea01\";\n}\n.file-ec:before {\n  content: \"\\ea02\";\n}\n.file-ecere:before {\n  content: \"\\ea03\";\n}\n.file-eclipse-lang:before {\n  content: \"\\ea04\";\n}\n.file-edge:before {\n  content: \"\\ea05\";\n}\n.file-editorconfig:before {\n  content: \"\\ea06\";\n}\n.file-eiffel:before {\n  content: \"\\ea07\";\n}\n.file-ejs:before {\n  content: \"\\ea08\";\n}\n.file-electron:before {\n  content: \"\\ea09\";\n}\n.file-elementaryos:before {\n  content: \"\\ea0a\";\n}\n.file-elm:before {\n  content: \"\\ea0b\";\n}\n.file-emacs:before {\n  content: \"\\ea0c\";\n}\n.file-ember:before {\n  content: \"\\ea0d\";\n}\n.file-emberscript:before {\n  content: \"\\ea0e\";\n}\n.file-ensime:before {\n  content: \"\\ea0f\";\n}\n.file-eq:before {\n  content: \"\\ea10\";\n}\n.file-esdoc:before {\n  content: \"\\ea11\";\n}\n.file-eslint-old:before {\n  content: \"\\ea12\";\n}\n.file-eslint:before {\n  content: \"\\ea13\";\n}\n.file-expo:before {\n  content: \"\\ea14\";\n}\n.file-fabfile:before {\n  content: \"\\ea15\";\n}\n.file-fabric:before {\n  content: \"\\ea16\";\n}\n.file-factor:before {\n  content: \"\\ea17\";\n}\n.file-falcon:before {\n  content: \"\\ea18\";\n}\n.file-fancy:before {\n  content: \"\\ea19\";\n}\n.file-fantom:before {\n  content: \"\\ea1a\";\n}\n.file-fauna:before {\n  content: \"\\ea1b\";\n}\n.file-faust:before {\n  content: \"\\ea1c\";\n}\n.file-fbx:before {\n  content: \"\\ea1d\";\n}\n.file-fexl:before {\n  content: \"\\ea1e\";\n}\n.file-ffmpeg:before {\n  content: \"\\ea1f\";\n}\n.file-finaldraft:before {\n  content: \"\\ea20\";\n}\n.file-finder:before {\n  content: \"\\ea21\";\n}\n.file-firebase-bolt:before {\n  content: \"\\ea22\";\n}\n.file-firebase:before {\n  content: \"\\ea23\";\n}\n.file-flask:before {\n  content: \"\\ea24\";\n}\n.file-floobits:before {\n  content: \"\\ea25\";\n}\n.file-flow:before {\n  content: \"\\ea26\";\n}\n.file-flutter:before {\n  content: \"\\ea27\";\n}\n.file-flux:before {\n  content: \"\\ea28\";\n}\n.file-font-bitmap:before {\n  content: \"\\ea29\";\n}\n.file-font-outline:before {\n  content: \"\\ea2a\";\n}\n.file-font:before {\n  content: \"\\ea2b\";\n}\n.file-fontforge:before {\n  content: \"\\ea2c\";\n}\n.file-fork:before {\n  content: \"\\ea2d\";\n}\n.file-fortherecord:before {\n  content: \"\\ea2e\";\n}\n.file-fortran:before {\n  content: \"\\ea2f\";\n}\n.file-fossa:before {\n  content: \"\\ea30\";\n}\n.file-fossil:before {\n  content: \"\\ea31\";\n}\n.file-fountain:before {\n  content: \"\\ea32\";\n}\n.file-franca:before {\n  content: \"\\ea33\";\n}\n.file-freedesktop:before {\n  content: \"\\ea34\";\n}\n.file-freedos:before {\n  content: \"\\ea35\";\n}\n.file-freemarker:before {\n  content: \"\\ea36\";\n}\n.file-freemat:before {\n  content: \"\\ea37\";\n}\n.file-frege:before {\n  content: \"\\ea38\";\n}\n.file-fthtml:before {\n  content: \"\\ea39\";\n}\n.file-fuelux:before {\n  content: \"\\ea3a\";\n}\n.file-fusebox:before {\n  content: \"\\ea3b\";\n}\n.file-futhark:before {\n  content: \"\\ea3c\";\n}\n.file-galaxy:before {\n  content: \"\\ea3d\";\n}\n.file-galen:before {\n  content: \"\\ea3e\";\n}\n.file-gamemaker:before {\n  content: \"\\ea3f\";\n}\n.file-gams:before {\n  content: \"\\ea40\";\n}\n.file-gap:before {\n  content: \"\\ea41\";\n}\n.file-gatsby:before {\n  content: \"\\ea42\";\n}\n.file-gauss:before {\n  content: \"\\ea43\";\n}\n.file-gdb:before {\n  content: \"\\ea44\";\n}\n.file-genshi:before {\n  content: \"\\ea45\";\n}\n.file-genstat:before {\n  content: \"\\ea46\";\n}\n.file-gentoo:before {\n  content: \"\\ea47\";\n}\n.file-gf:before {\n  content: \"\\ea48\";\n}\n.file-ghostscript:before {\n  content: \"\\ea49\";\n}\n.file-gimp:before {\n  content: \"\\ea4a\";\n}\n.file-gitlab:before {\n  content: \"\\ea4b\";\n}\n.file-gitpod:before {\n  content: \"\\ea4c\";\n}\n.file-glade:before {\n  content: \"\\ea4d\";\n}\n.file-glide:before {\n  content: \"\\ea4e\";\n}\n.file-gltf:before {\n  content: \"\\ea4f\";\n}\n.file-glyphs:before {\n  content: \"\\ea50\";\n}\n.file-gn:before {\n  content: \"\\ea51\";\n}\n.file-gnu:before {\n  content: \"\\ea52\";\n}\n.file-gnuplot:before {\n  content: \"\\ea53\";\n}\n.file-go-old:before {\n  content: \"\\ea54\";\n}\n.file-go:before {\n  content: \"\\ea55\";\n}\n.file-godot:before {\n  content: \"\\ea56\";\n}\n.file-golo:before {\n  content: \"\\ea57\";\n}\n.file-goreleaser:before {\n  content: \"\\ea58\";\n}\n.file-gosu:before {\n  content: \"\\ea59\";\n}\n.file-gradle:before {\n  content: \"\\ea5a\";\n}\n.file-graphite:before {\n  content: \"\\ea5b\";\n}\n.file-graphql-codegenerator:before {\n  content: \"\\ea5c\";\n}\n.file-graphql:before {\n  content: \"\\ea5d\";\n}\n.file-graphviz:before {\n  content: \"\\ea5e\";\n}\n.file-gravit-designer:before {\n  content: \"\\ea5f\";\n}\n.file-greenkeeper:before {\n  content: \"\\ea60\";\n}\n.file-gridsome:before {\n  content: \"\\ea61\";\n}\n.file-groovy:before {\n  content: \"\\ea62\";\n}\n.file-grunt:before {\n  content: \"\\ea63\";\n}\n.file-gulp:before {\n  content: \"\\ea64\";\n}\n.file-hack:before {\n  content: \"\\ea65\";\n}\n.file-haml:before {\n  content: \"\\ea66\";\n}\n.file-harbour:before {\n  content: \"\\ea67\";\n}\n.file-hashicorp:before {\n  content: \"\\ea68\";\n}\n.file-haxe:before {\n  content: \"\\ea69\";\n}\n.file-haxedevelop:before {\n  content: \"\\ea6a\";\n}\n.file-helix:before {\n  content: \"\\ea6b\";\n}\n.file-hewlettpackard:before {\n  content: \"\\ea6c\";\n}\n.file-hie:before {\n  content: \"\\ea6d\";\n}\n.file-hitachi:before {\n  content: \"\\ea6e\";\n}\n.file-hjson:before {\n  content: \"\\ea6f\";\n}\n.file-homebrew:before {\n  content: \"\\ea70\";\n}\n.file-hop:before {\n  content: \"\\ea71\";\n}\n.file-hoplon:before {\n  content: \"\\ea72\";\n}\n.file-houndci:before {\n  content: \"\\ea73\";\n}\n.file-hugo:before {\n  content: \"\\ea74\";\n}\n.file-husky:before {\n  content: \"\\ea75\";\n}\n.file-hy:before {\n  content: \"\\ea76\";\n}\n.file-hygen:before {\n  content: \"\\ea77\";\n}\n.file-hyper:before {\n  content: \"\\ea78\";\n}\n.file-icomoon:before {\n  content: \"\\ea79\";\n}\n.file-icu:before {\n  content: \"\\ea7a\";\n}\n.file-idl:before {\n  content: \"\\ea7b\";\n}\n.file-idris:before {\n  content: \"\\ea7c\";\n}\n.file-igor-pro:before {\n  content: \"\\ea7d\";\n}\n.file-illumos:before {\n  content: \"\\ea7e\";\n}\n.file-image:before {\n  content: \"\\ea7f\";\n}\n.file-imba-alt:before {\n  content: \"\\ea80\";\n}\n.file-imba-old:before {\n  content: \"\\ea81\";\n}\n.file-imba:before {\n  content: \"\\ea82\";\n}\n.file-influxdata:before {\n  content: \"\\ea83\";\n}\n.file-inform7:before {\n  content: \"\\ea84\";\n}\n.file-ink:before {\n  content: \"\\ea85\";\n}\n.file-inkscape:before {\n  content: \"\\ea86\";\n}\n.file-innosetup:before {\n  content: \"\\ea87\";\n}\n.file-intel:before {\n  content: \"\\ea88\";\n}\n.file-io:before {\n  content: \"\\ea89\";\n}\n.file-ioke .path1:before {\n  content: \"\\ea8a\";\n  color: rgb(24, 25, 22);\n}\n.file-ioke .path2:before {\n  content: \"\\ea8b\";\n  margin-left: -1em;\n  color: rgb(24, 25, 22);\n}\n.file-ioke .path3:before {\n  content: \"\\ea8c\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.file-ioke .path4:before {\n  content: \"\\ea8d\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.file-ioke .path5:before {\n  content: \"\\ea8e\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.file-ioke .path6:before {\n  content: \"\\ea8f\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.file-ionic-project:before {\n  content: \"\\ea90\";\n}\n.file-isabelle:before {\n  content: \"\\ea91\";\n}\n.file-istanbul:before {\n  content: \"\\ea92\";\n}\n.file-j:before {\n  content: \"\\ea93\";\n}\n.file-jade:before {\n  content: \"\\ea94\";\n}\n.file-jakefile:before {\n  content: \"\\ea95\";\n}\n.file-janet:before {\n  content: \"\\ea96\";\n}\n.file-jasmine:before {\n  content: \"\\ea97\";\n}\n.file-jenkins:before {\n  content: \"\\ea98\";\n}\n.file-jest:before {\n  content: \"\\ea99\";\n}\n.file-jinja:before {\n  content: \"\\ea9a\";\n}\n.file-jison:before {\n  content: \"\\ea9b\";\n}\n.file-jolie:before {\n  content: \"\\ea9c\";\n}\n.file-jscpd:before {\n  content: \"\\ea9d\";\n}\n.file-json-1:before {\n  content: \"\\ea9e\";\n}\n.file-json-2:before {\n  content: \"\\ea9f\";\n}\n.file-json-ld1:before {\n  content: \"\\eaa0\";\n}\n.file-json-ld2:before {\n  content: \"\\eaa1\";\n}\n.file-json5:before {\n  content: \"\\eaa2\";\n}\n.file-jsonnet:before {\n  content: \"\\eaa3\";\n}\n.file-jsx-alt:before {\n  content: \"\\eaa4\";\n}\n.file-jsx-atom:before {\n  content: \"\\eaa5\";\n}\n.file-jsx:before {\n  content: \"\\eaa6\";\n}\n.file-julia:before {\n  content: \"\\eaa7\";\n}\n.file-junos:before {\n  content: \"\\eaa8\";\n}\n.file-jupyter:before {\n  content: \"\\eaa9\";\n}\n.file-kaitai:before {\n  content: \"\\eaaa\";\n}\n.file-karma:before {\n  content: \"\\eaab\";\n}\n.file-keybase:before {\n  content: \"\\eaac\";\n}\n.file-keynote:before {\n  content: \"\\eaad\";\n}\n.file-khronos:before {\n  content: \"\\eaae\";\n}\n.file-kibo:before {\n  content: \"\\eaaf\";\n}\n.file-kicad:before {\n  content: \"\\eab0\";\n}\n.file-kitchenci:before {\n  content: \"\\eab1\";\n}\n.file-kivy:before {\n  content: \"\\eab2\";\n}\n.file-knime:before {\n  content: \"\\eab3\";\n}\n.file-knockout:before {\n  content: \"\\eab4\";\n}\n.file-kos:before {\n  content: \"\\eab5\";\n}\n.file-kotlin:before {\n  content: \"\\eab6\";\n}\n.file-krl:before {\n  content: \"\\eab7\";\n}\n.file-kubernetes:before {\n  content: \"\\eab8\";\n}\n.file-kusto-alt:before {\n  content: \"\\eab9\";\n}\n.file-kusto:before {\n  content: \"\\eaba\";\n}\n.file-kx:before {\n  content: \"\\eabb\";\n}\n.file-labview:before {\n  content: \"\\eabc\";\n}\n.file-lark:before {\n  content: \"\\eabd\";\n}\n.file-lasso:before {\n  content: \"\\eabe\";\n}\n.file-latex:before {\n  content: \"\\eabf\";\n}\n.file-latino:before {\n  content: \"\\eac0\";\n}\n.file-leaflet:before {\n  content: \"\\eac1\";\n}\n.file-lean:before {\n  content: \"\\eac2\";\n}\n.file-lefthook-alt:before {\n  content: \"\\eac3\";\n}\n.file-lefthook:before {\n  content: \"\\eac4\";\n}\n.file-leiningen:before {\n  content: \"\\eac5\";\n}\n.file-lektor:before {\n  content: \"\\eac6\";\n}\n.file-lerna:before {\n  content: \"\\eac7\";\n}\n.file-lex-alt:before {\n  content: \"\\eac8\";\n}\n.file-lex:before {\n  content: \"\\eac9\";\n}\n.file-lfe:before {\n  content: \"\\eaca\";\n}\n.file-lgtm:before {\n  content: \"\\eacb\";\n}\n.file-libuv:before {\n  content: \"\\eacc\";\n}\n.file-lighthouse:before {\n  content: \"\\eacd\";\n}\n.file-lightwave:before {\n  content: \"\\eace\";\n}\n.file-lilypond:before {\n  content: \"\\eacf\";\n}\n.file-lime:before {\n  content: \"\\ead0\";\n}\n.file-linqpad:before {\n  content: \"\\ead1\";\n}\n.file-lisp:before {\n  content: \"\\ead2\";\n}\n.file-livescript:before {\n  content: \"\\ead3\";\n}\n.file-llvm:before {\n  content: \"\\ead4\";\n}\n.file-logtalk:before {\n  content: \"\\ead5\";\n}\n.file-lolcode:before {\n  content: \"\\ead6\";\n}\n.file-lookml:before {\n  content: \"\\ead7\";\n}\n.file-lsl:before {\n  content: \"\\ead8\";\n}\n.file-lua:before {\n  content: \"\\ead9\";\n}\n.file-macaulay2:before {\n  content: \"\\eada\";\n}\n.file-macvim:before {\n  content: \"\\eadb\";\n}\n.file-magit:before {\n  content: \"\\eadc\";\n}\n.file-mako:before {\n  content: \"\\eadd\";\n}\n.file-manjaro:before {\n  content: \"\\eade\";\n}\n.file-manpage:before {\n  content: \"\\eadf\";\n}\n.file-mapbox:before {\n  content: \"\\eae0\";\n}\n.file-markdownlint:before {\n  content: \"\\eae1\";\n}\n.file-marko:before {\n  content: \"\\eae2\";\n}\n.file-mathematica:before {\n  content: \"\\eae3\";\n}\n.file-mathjax:before {\n  content: \"\\eae4\";\n}\n.file-matlab:before {\n  content: \"\\eae5\";\n}\n.file-matroska:before {\n  content: \"\\eae6\";\n}\n.file-max:before {\n  content: \"\\eae7\";\n}\n.file-maya:before {\n  content: \"\\eae8\";\n}\n.file-mdx:before {\n  content: \"\\eae9\";\n}\n.file-mediawiki:before {\n  content: \"\\eaea\";\n}\n.file-melpa:before {\n  content: \"\\eaeb\";\n}\n.file-mercurial:before {\n  content: \"\\eaec\";\n}\n.file-mercury:before {\n  content: \"\\eaed\";\n}\n.file-mermaid:before {\n  content: \"\\eaee\";\n}\n.file-meson-old:before {\n  content: \"\\eaef\";\n}\n.file-meson:before {\n  content: \"\\eaf0\";\n}\n.file-metal:before {\n  content: \"\\eaf1\";\n}\n.file-meteor:before {\n  content: \"\\eaf2\";\n}\n.file-microsoft-access:before {\n  content: \"\\eaf3\";\n}\n.file-microsoft-excel:before {\n  content: \"\\eaf4\";\n}\n.file-microsoft-infopath:before {\n  content: \"\\eaf5\";\n}\n.file-microsoft-lync:before {\n  content: \"\\eaf6\";\n}\n.file-microsoft-onenote:before {\n  content: \"\\eaf7\";\n}\n.file-microsoft-outlook:before {\n  content: \"\\eaf8\";\n}\n.file-microsoft-powerpoint:before {\n  content: \"\\eaf9\";\n}\n.file-microsoft-project:before {\n  content: \"\\eafa\";\n}\n.file-microsoft-publisher:before {\n  content: \"\\eafb\";\n}\n.file-microsoft-visio:before {\n  content: \"\\eafc\";\n}\n.file-microsoft-word:before {\n  content: \"\\eafd\";\n}\n.file-minecraft:before {\n  content: \"\\eafe\";\n}\n.file-minizinc:before {\n  content: \"\\eaff\";\n}\n.file-mirah:before {\n  content: \"\\eb00\";\n}\n.file-miranda:before {\n  content: \"\\eb01\";\n}\n.file-mirc:before {\n  content: \"\\eb02\";\n}\n.file-mjml:before {\n  content: \"\\eb03\";\n}\n.file-mocha:before {\n  content: \"\\eb04\";\n}\n.file-modelica:before {\n  content: \"\\eb05\";\n}\n.file-modernweb:before {\n  content: \"\\eb06\";\n}\n.file-modo:before {\n  content: \"\\eb07\";\n}\n.file-modula-2:before {\n  content: \"\\eb08\";\n}\n.file-modula-3:before {\n  content: \"\\eb09\";\n}\n.file-moho:before {\n  content: \"\\eb0a\";\n}\n.file-moleculer:before {\n  content: \"\\eb0b\";\n}\n.file-moment-timezone:before {\n  content: \"\\eb0c\";\n}\n.file-moment:before {\n  content: \"\\eb0d\";\n}\n.file-monkey:before {\n  content: \"\\eb0e\";\n}\n.file-mono:before {\n  content: \"\\eb0f\";\n}\n.file-monotone:before {\n  content: \"\\eb10\";\n}\n.file-motorola:before {\n  content: \"\\eb11\";\n}\n.file-moustache:before {\n  content: \"\\eb12\";\n}\n.file-mruby:before {\n  content: \"\\eb13\";\n}\n.file-ms-dos:before {\n  content: \"\\eb14\";\n}\n.file-mupad:before {\n  content: \"\\eb15\";\n}\n.file-nano:before {\n  content: \"\\eb16\";\n}\n.file-nanoc:before {\n  content: \"\\eb17\";\n}\n.file-nant:before {\n  content: \"\\eb18\";\n}\n.file-nasm:before {\n  content: \"\\eb19\";\n}\n.file-ndepend:before {\n  content: \"\\eb1a\";\n}\n.file-neko:before {\n  content: \"\\eb1b\";\n}\n.file-nemerle:before {\n  content: \"\\eb1c\";\n}\n.file-neo4j:before {\n  content: \"\\eb1d\";\n}\n.file-neon:before {\n  content: \"\\eb1e\";\n}\n.file-nessus:before {\n  content: \"\\eb1f\";\n}\n.file-nestjs:before {\n  content: \"\\eb20\";\n}\n.file-netlify:before {\n  content: \"\\eb21\";\n}\n.file-netlinx:before {\n  content: \"\\eb22\";\n}\n.file-netlogo:before {\n  content: \"\\eb23\";\n}\n.file-new-relic:before {\n  content: \"\\eb24\";\n}\n.file-nextflow:before {\n  content: \"\\eb25\";\n}\n.file-nextjs:before {\n  content: \"\\eb26\";\n}\n.file-nginx:before {\n  content: \"\\eb27\";\n}\n.file-nib:before {\n  content: \"\\eb28\";\n}\n.file-nickle:before {\n  content: \"\\eb29\";\n}\n.file-nightwatch:before {\n  content: \"\\eb2a\";\n}\n.file-nimble:before {\n  content: \"\\eb2b\";\n}\n.file-nimrod:before {\n  content: \"\\eb2c\";\n}\n.file-nintendo64:before {\n  content: \"\\eb2d\";\n}\n.file-nit:before {\n  content: \"\\eb2e\";\n}\n.file-nix:before {\n  content: \"\\eb2f\";\n}\n.file-nmap:before {\n  content: \"\\eb30\";\n}\n.file-nodemon:before {\n  content: \"\\eb31\";\n}\n.file-nokogiri:before {\n  content: \"\\eb32\";\n}\n.file-nomad:before {\n  content: \"\\eb33\";\n}\n.file-noon:before {\n  content: \"\\eb34\";\n}\n.file-normalise:before {\n  content: \"\\eb35\";\n}\n.file-npm-old:before {\n  content: \"\\eb36\";\n}\n.file-npm:before {\n  content: \"\\eb37\";\n}\n.file-nsis-old:before {\n  content: \"\\eb38\";\n}\n.file-nsis:before {\n  content: \"\\eb39\";\n}\n.file-nsri-alt:before {\n  content: \"\\eb3a\";\n}\n.file-nsri:before {\n  content: \"\\eb3b\";\n}\n.file-nuclide:before {\n  content: \"\\eb3c\";\n}\n.file-nuget:before {\n  content: \"\\eb3d\";\n}\n.file-numpy-old:before {\n  content: \"\\eb3e\";\n}\n.file-numpy:before {\n  content: \"\\eb3f\";\n}\n.file-nunjucks:before {\n  content: \"\\eb40\";\n}\n.file-nuxt:before {\n  content: \"\\eb41\";\n}\n.file-nvidia:before {\n  content: \"\\eb42\";\n}\n.file-nwscript:before {\n  content: \"\\eb43\";\n}\n.file-nx:before {\n  content: \"\\eb44\";\n}\n.file-nxc:before {\n  content: \"\\eb45\";\n}\n.file-oberon:before {\n  content: \"\\eb46\";\n}\n.file-objective-j:before {\n  content: \"\\eb47\";\n}\n.file-ocaml:before {\n  content: \"\\eb48\";\n}\n.file-octave:before {\n  content: \"\\eb49\";\n}\n.file-odin:before {\n  content: \"\\eb4a\";\n}\n.file-ogone:before {\n  content: \"\\eb4b\";\n}\n.file-ooc:before {\n  content: \"\\eb4c\";\n}\n.file-opa:before {\n  content: \"\\eb4d\";\n}\n.file-openapi:before {\n  content: \"\\eb4e\";\n}\n.file-openbsd-alt:before {\n  content: \"\\eb4f\";\n}\n.file-openbsd:before {\n  content: \"\\eb50\";\n}\n.file-opencl:before {\n  content: \"\\eb51\";\n}\n.file-opencv:before {\n  content: \"\\eb52\";\n}\n.file-openexr:before {\n  content: \"\\eb53\";\n}\n.file-opengl:before {\n  content: \"\\eb54\";\n}\n.file-openindiana:before {\n  content: \"\\eb55\";\n}\n.file-openoffice:before {\n  content: \"\\eb56\";\n}\n.file-openpolicyagent:before {\n  content: \"\\eb57\";\n}\n.file-openscad:before {\n  content: \"\\eb58\";\n}\n.file-opensolaris:before {\n  content: \"\\eb59\";\n}\n.file-openstack:before {\n  content: \"\\eb5a\";\n}\n.file-openvms:before {\n  content: \"\\eb5b\";\n}\n.file-openvpn:before {\n  content: \"\\eb5c\";\n}\n.file-openzfs:before {\n  content: \"\\eb5d\";\n}\n.file-org-mode:before {\n  content: \"\\eb5e\";\n}\n.file-os2:before {\n  content: \"\\eb5f\";\n}\n.file-owl:before {\n  content: \"\\eb60\";\n}\n.file-ox:before {\n  content: \"\\eb61\";\n}\n.file-oxygene:before {\n  content: \"\\eb62\";\n}\n.file-oz:before {\n  content: \"\\eb63\";\n}\n.file-p4:before {\n  content: \"\\eb64\";\n}\n.file-pan:before {\n  content: \"\\eb65\";\n}\n.file-papyrus:before {\n  content: \"\\eb66\";\n}\n.file-parrot:before {\n  content: \"\\eb67\";\n}\n.file-pascal:before {\n  content: \"\\eb68\";\n}\n.file-patch:before {\n  content: \"\\eb69\";\n}\n.file-patreon:before {\n  content: \"\\eb6a\";\n}\n.file-pawn:before {\n  content: \"\\eb6b\";\n}\n.file-pcd:before {\n  content: \"\\eb6c\";\n}\n.file-pegjs:before {\n  content: \"\\eb6d\";\n}\n.file-perl6:before {\n  content: \"\\eb6e\";\n}\n.file-phalcon:before {\n  content: \"\\eb6f\";\n}\n.file-phoenix:before {\n  content: \"\\eb70\";\n}\n.file-php:before {\n  content: \"\\eb71\";\n}\n.file-phpunit:before {\n  content: \"\\eb72\";\n}\n.file-phraseapp:before {\n  content: \"\\eb73\";\n}\n.file-pickle:before {\n  content: \"\\eb74\";\n}\n.file-pico-8:before {\n  content: \"\\eb75\";\n}\n.file-picolisp:before {\n  content: \"\\eb76\";\n}\n.file-pike:before {\n  content: \"\\eb77\";\n}\n.file-pinescript:before {\n  content: \"\\eb78\";\n}\n.file-pipenv:before {\n  content: \"\\eb79\";\n}\n.file-pkgsrc:before {\n  content: \"\\eb7a\";\n}\n.file-platformio:before {\n  content: \"\\eb7b\";\n}\n.file-pm2:before {\n  content: \"\\eb7c\";\n}\n.file-pnpm:before {\n  content: \"\\eb7d\";\n}\n.file-pod:before {\n  content: \"\\eb7e\";\n}\n.file-pogoscript:before {\n  content: \"\\eb7f\";\n}\n.file-pointwise:before {\n  content: \"\\eb80\";\n}\n.file-polymer:before {\n  content: \"\\eb81\";\n}\n.file-pony:before {\n  content: \"\\eb82\";\n}\n.file-postcss:before {\n  content: \"\\eb83\";\n}\n.file-postscript:before {\n  content: \"\\eb84\";\n}\n.file-pov-ray:before {\n  content: \"\\eb85\";\n}\n.file-powerbuilder:before {\n  content: \"\\eb86\";\n}\n.file-powerpc:before {\n  content: \"\\eb87\";\n}\n.file-powershell:before {\n  content: \"\\eb88\";\n}\n.file-precision:before {\n  content: \"\\eb89\";\n}\n.file-precommit:before {\n  content: \"\\eb8a\";\n}\n.file-prettier:before {\n  content: \"\\eb8b\";\n}\n.file-prisma:before {\n  content: \"\\eb8c\";\n}\n.file-processing:before {\n  content: \"\\eb8d\";\n}\n.file-progress-old:before {\n  content: \"\\eb8e\";\n}\n.file-progress:before {\n  content: \"\\eb8f\";\n}\n.file-propeller:before {\n  content: \"\\eb90\";\n}\n.file-pros:before {\n  content: \"\\eb91\";\n}\n.file-proselint:before {\n  content: \"\\eb92\";\n}\n.file-protractor:before {\n  content: \"\\eb93\";\n}\n.file-pug-old:before {\n  content: \"\\eb94\";\n}\n.file-pug:before {\n  content: \"\\eb95\";\n}\n.file-pullapprove:before {\n  content: \"\\eb96\";\n}\n.file-puppet:before {\n  content: \"\\eb97\";\n}\n.file-pure:before {\n  content: \"\\eb98\";\n}\n.file-purebasic:before {\n  content: \"\\eb99\";\n}\n.file-purescript:before {\n  content: \"\\eb9a\";\n}\n.file-pypi:before {\n  content: \"\\eb9b\";\n}\n.file-pyret:before {\n  content: \"\\eb9c\";\n}\n.file-pytest:before {\n  content: \"\\eb9d\";\n}\n.file-pyup:before {\n  content: \"\\eb9e\";\n}\n.file-q:before {\n  content: \"\\eb9f\";\n}\n.file-qiskit:before {\n  content: \"\\eba0\";\n}\n.file-qlikview:before {\n  content: \"\\eba1\";\n}\n.file-qt:before {\n  content: \"\\eba2\";\n}\n.file-quasar:before {\n  content: \"\\eba3\";\n}\n.file-r:before {\n  content: \"\\eba4\";\n}\n.file-racket:before {\n  content: \"\\eba5\";\n}\n.file-raml:before {\n  content: \"\\eba6\";\n}\n.file-rascal:before {\n  content: \"\\eba7\";\n}\n.file-razzle:before {\n  content: \"\\eba8\";\n}\n.file-rdata:before {\n  content: \"\\eba9\";\n}\n.file-rdoc:before {\n  content: \"\\ebaa\";\n}\n.file-reactos:before {\n  content: \"\\ebab\";\n}\n.file-readthedocs:before {\n  content: \"\\ebac\";\n}\n.file-realbasic:before {\n  content: \"\\ebad\";\n}\n.file-reason:before {\n  content: \"\\ebae\";\n}\n.file-reasonstudios-alt:before {\n  content: \"\\ebaf\";\n}\n.file-reasonstudios:before {\n  content: \"\\ebb0\";\n}\n.file-rebol:before {\n  content: \"\\ebb1\";\n}\n.file-red-old:before {\n  content: \"\\ebb2\";\n}\n.file-red:before {\n  content: \"\\ebb3\";\n}\n.file-redux:before {\n  content: \"\\ebb4\";\n}\n.file-reek:before {\n  content: \"\\ebb5\";\n}\n.file-regex:before {\n  content: \"\\ebb6\";\n}\n.file-remark:before {\n  content: \"\\ebb7\";\n}\n.file-renovate:before {\n  content: \"\\ebb8\";\n}\n.file-rescript:before {\n  content: \"\\ebb9\";\n}\n.file-restructuredtext:before {\n  content: \"\\ebba\";\n}\n.file-rexx:before {\n  content: \"\\ebbb\";\n}\n.file-rhino3d:before {\n  content: \"\\ebbc\";\n}\n.file-ring:before {\n  content: \"\\ebbd\";\n}\n.file-riot-old:before {\n  content: \"\\ebbe\";\n}\n.file-riot:before {\n  content: \"\\ebbf\";\n}\n.file-risc-v:before {\n  content: \"\\ebc0\";\n}\n.file-rmarkdown:before {\n  content: \"\\ebc1\";\n}\n.file-robotframework-old:before {\n  content: \"\\ebc2\";\n}\n.file-robotframework:before {\n  content: \"\\ebc3\";\n}\n.file-robots:before {\n  content: \"\\ebc4\";\n}\n.file-rollup-old:before {\n  content: \"\\ebc5\";\n}\n.file-rollup:before {\n  content: \"\\ebc6\";\n}\n.file-rspec:before {\n  content: \"\\ebc7\";\n}\n.file-rstudio:before {\n  content: \"\\ebc8\";\n}\n.file-rsync:before {\n  content: \"\\ebc9\";\n}\n.file-rubocop:before {\n  content: \"\\ebca\";\n}\n.file-rubygems:before {\n  content: \"\\ebcb\";\n}\n.file-sac:before {\n  content: \"\\ebcc\";\n}\n.file-sage:before {\n  content: \"\\ebcd\";\n}\n.file-sails:before {\n  content: \"\\ebce\";\n}\n.file-saltstack:before {\n  content: \"\\ebcf\";\n}\n.file-san:before {\n  content: \"\\ebd0\";\n}\n.file-sas:before {\n  content: \"\\ebd1\";\n}\n.file-sbt:before {\n  content: \"\\ebd2\";\n}\n.file-scheme:before {\n  content: \"\\ebd3\";\n}\n.file-scilab:before {\n  content: \"\\ebd4\";\n}\n.file-scilla:before {\n  content: \"\\ebd5\";\n}\n.file-scratch:before {\n  content: \"\\ebd6\";\n}\n.file-scrutinizer:before {\n  content: \"\\ebd7\";\n}\n.file-self:before {\n  content: \"\\ebd8\";\n}\n.file-semanticrelease:before {\n  content: \"\\ebd9\";\n}\n.file-sentry:before {\n  content: \"\\ebda\";\n}\n.file-sequelize:before {\n  content: \"\\ebdb\";\n}\n.file-serverless:before {\n  content: \"\\ebdc\";\n}\n.file-service-fabric:before {\n  content: \"\\ebdd\";\n}\n.file-shadowcljs:before {\n  content: \"\\ebde\";\n}\n.file-shen:before {\n  content: \"\\ebdf\";\n}\n.file-shipit:before {\n  content: \"\\ebe0\";\n}\n.file-shippable:before {\n  content: \"\\ebe1\";\n}\n.file-shopify:before {\n  content: \"\\ebe2\";\n}\n.file-shuriken:before {\n  content: \"\\ebe3\";\n}\n.file-sigils:before {\n  content: \"\\ebe4\";\n}\n.file-silicongraphics:before {\n  content: \"\\ebe5\";\n}\n.file-silverstripe:before {\n  content: \"\\ebe6\";\n}\n.file-sinatra:before {\n  content: \"\\ebe7\";\n}\n.file-sketch:before {\n  content: \"\\ebe8\";\n}\n.file-sketchup-layout:before {\n  content: \"\\ebe9\";\n}\n.file-sketchup-make:before {\n  content: \"\\ebea\";\n}\n.file-sketchup-stylebuilder:before {\n  content: \"\\ebeb\";\n}\n.file-slash:before {\n  content: \"\\ebec\";\n}\n.file-smartos-alt:before {\n  content: \"\\ebed\";\n}\n.file-smartos:before {\n  content: \"\\ebee\";\n}\n.file-snapcraft:before {\n  content: \"\\ebef\";\n}\n.file-snort:before {\n  content: \"\\ebf0\";\n}\n.file-snowpack:before {\n  content: \"\\ebf1\";\n}\n.file-snyk:before {\n  content: \"\\ebf2\";\n}\n.file-solidarity:before {\n  content: \"\\ebf3\";\n}\n.file-solidity:before {\n  content: \"\\ebf4\";\n}\n.file-sophia:before {\n  content: \"\\ebf5\";\n}\n.file-sorbet:before {\n  content: \"\\ebf6\";\n}\n.file-source:before {\n  content: \"\\ebf7\";\n}\n.file-spacemacs:before {\n  content: \"\\ebf8\";\n}\n.file-spacengine:before {\n  content: \"\\ebf9\";\n}\n.file-sparc:before {\n  content: \"\\ebfa\";\n}\n.file-spray:before {\n  content: \"\\ebfb\";\n}\n.file-sqf:before {\n  content: \"\\ebfc\";\n}\n.file-sqlite:before {\n  content: \"\\ebfd\";\n}\n.file-squarespace:before {\n  content: \"\\ebfe\";\n}\n.file-stan:before {\n  content: \"\\ebff\";\n}\n.file-stata:before {\n  content: \"\\ec00\";\n}\n.file-stdlibjs:before {\n  content: \"\\ec01\";\n}\n.file-stencil:before {\n  content: \"\\ec02\";\n}\n.file-stitches:before {\n  content: \"\\ec03\";\n}\n.file-storybook:before {\n  content: \"\\ec04\";\n}\n.file-storyist:before {\n  content: \"\\ec05\";\n}\n.file-strings:before {\n  content: \"\\ec06\";\n}\n.file-stylable:before {\n  content: \"\\ec07\";\n}\n.file-styledcomponents:before {\n  content: \"\\ec08\";\n}\n.file-stylelint:before {\n  content: \"\\ec09\";\n}\n.file-stylishhaskell:before {\n  content: \"\\ec0a\";\n}\n.file-stylus-orb:before {\n  content: \"\\ec0b\";\n}\n.file-stylus-s:before {\n  content: \"\\ec0c\";\n}\n.file-stylus:before {\n  content: \"\\ec0d\";\n}\n.file-sublime:before {\n  content: \"\\ec0e\";\n}\n.file-supercollider:before {\n  content: \"\\ec0f\";\n}\n.file-svelte:before {\n  content: \"\\ec10\";\n}\n.file-svn:before {\n  content: \"\\ec11\";\n}\n.file-swagger:before {\n  content: \"\\ec12\";\n}\n.file-systemverilog:before {\n  content: \"\\ec13\";\n}\n.file-tag:before {\n  content: \"\\ec14\";\n}\n.file-tailwind:before {\n  content: \"\\ec15\";\n}\n.file-tcl:before {\n  content: \"\\ec16\";\n}\n.file-telegram:before {\n  content: \"\\ec17\";\n}\n.file-templatetoolkit:before {\n  content: \"\\ec18\";\n}\n.file-templeos:before {\n  content: \"\\ec19\";\n}\n.file-terminal:before {\n  content: \"\\ec1a\";\n}\n.file-tern:before {\n  content: \"\\ec1b\";\n}\n.file-terraform:before {\n  content: \"\\ec1c\";\n}\n.file-terser:before {\n  content: \"\\ec1d\";\n}\n.file-test-coffeescript:before {\n  content: \"\\ec1e\";\n}\n.file-test-directory:before {\n  content: \"\\ec1f\";\n}\n.file-test-generic:before {\n  content: \"\\ec20\";\n}\n.file-test-go:before {\n  content: \"\\ec21\";\n}\n.file-test-haskell:before {\n  content: \"\\ec22\";\n}\n.file-test-js:before {\n  content: \"\\ec23\";\n}\n.file-test-perl:before {\n  content: \"\\ec24\";\n}\n.file-test-python:before {\n  content: \"\\ec25\";\n}\n.file-test-react:before {\n  content: \"\\ec26\";\n}\n.file-test-ruby:before {\n  content: \"\\ec27\";\n}\n.file-test-rust:before {\n  content: \"\\ec28\";\n}\n.file-test-typescript:before {\n  content: \"\\ec29\";\n}\n.file-testcafe:before {\n  content: \"\\ec2a\";\n}\n.file-textile:before {\n  content: \"\\ec2b\";\n}\n.file-textmate:before {\n  content: \"\\ec2c\";\n}\n.file-tfs:before {\n  content: \"\\ec2d\";\n}\n.file-thor:before {\n  content: \"\\ec2e\";\n}\n.file-tilt:before {\n  content: \"\\ec2f\";\n}\n.file-tinymce:before {\n  content: \"\\ec30\";\n}\n.file-tipe:before {\n  content: \"\\ec31\";\n}\n.file-tla:before {\n  content: \"\\ec32\";\n}\n.file-tmux:before {\n  content: \"\\ec33\";\n}\n.file-toml:before {\n  content: \"\\ec34\";\n}\n.file-tortoisesvn:before {\n  content: \"\\ec35\";\n}\n.file-totvs:before {\n  content: \"\\ec36\";\n}\n.file-truffle:before {\n  content: \"\\ec37\";\n}\n.file-tsx-alt:before {\n  content: \"\\ec38\";\n}\n.file-tsx:before {\n  content: \"\\ec39\";\n}\n.file-ttcn-3:before {\n  content: \"\\ec3a\";\n}\n.file-turing:before {\n  content: \"\\ec3b\";\n}\n.file-twig:before {\n  content: \"\\ec3c\";\n}\n.file-twine:before {\n  content: \"\\ec3d\";\n}\n.file-txl:before {\n  content: \"\\ec3e\";\n}\n.file-typedoc:before {\n  content: \"\\ec3f\";\n}\n.file-typescript-alt:before {\n  content: \"\\ec40\";\n}\n.file-typescript:before {\n  content: \"\\ec41\";\n}\n.file-typings:before {\n  content: \"\\ec42\";\n}\n.file-ufo:before {\n  content: \"\\ec43\";\n}\n.file-unibeautify:before {\n  content: \"\\ec44\";\n}\n.file-unicode:before {\n  content: \"\\ec45\";\n}\n.file-uno:before {\n  content: \"\\ec46\";\n}\n.file-unrealscript:before {\n  content: \"\\ec47\";\n}\n.file-urweb:before {\n  content: \"\\ec48\";\n}\n.file-v-ray:before {\n  content: \"\\ec49\";\n}\n.file-v:before {\n  content: \"\\ec4a\";\n}\n.file-v8-turbofan:before {\n  content: \"\\ec4b\";\n}\n.file-v8:before {\n  content: \"\\ec4c\";\n}\n.file-vagrant:before {\n  content: \"\\ec4d\";\n}\n.file-vala:before {\n  content: \"\\ec4e\";\n}\n.file-vax:before {\n  content: \"\\ec4f\";\n}\n.file-vcl:before {\n  content: \"\\ec50\";\n}\n.file-velocity:before {\n  content: \"\\ec51\";\n}\n.file-verilog:before {\n  content: \"\\ec52\";\n}\n.file-vertexshader:before {\n  content: \"\\ec53\";\n}\n.file-vhdl:before {\n  content: \"\\ec54\";\n}\n.file-video:before {\n  content: \"\\ec55\";\n}\n.file-virtualbox-alt:before {\n  content: \"\\ec56\";\n}\n.file-virtualbox:before {\n  content: \"\\ec57\";\n}\n.file-vmware:before {\n  content: \"\\ec58\";\n}\n.file-vscode:before {\n  content: \"\\ec59\";\n}\n.file-vsts:before {\n  content: \"\\ec5a\";\n}\n.file-vue:before {\n  content: \"\\ec5b\";\n}\n.file-vyper:before {\n  content: \"\\ec5c\";\n}\n.file-w3c:before {\n  content: \"\\ec5d\";\n}\n.file-wallaby:before {\n  content: \"\\ec5e\";\n}\n.file-walt:before {\n  content: \"\\ec5f\";\n}\n.file-warcraft-iii:before {\n  content: \"\\ec60\";\n}\n.file-wasi:before {\n  content: \"\\ec61\";\n}\n.file-watchman:before {\n  content: \"\\ec62\";\n}\n.file-wdl:before {\n  content: \"\\ec63\";\n}\n.file-webassembly:before {\n  content: \"\\ec64\";\n}\n.file-webgl:before {\n  content: \"\\ec65\";\n}\n.file-webhint:before {\n  content: \"\\ec66\";\n}\n.file-webpack-old:before {\n  content: \"\\ec67\";\n}\n.file-webpack:before {\n  content: \"\\ec68\";\n}\n.file-webvtt:before {\n  content: \"\\ec69\";\n}\n.file-wenyan:before {\n  content: \"\\ec6a\";\n}\n.file-wercker:before {\n  content: \"\\ec6b\";\n}\n.file-wget:before {\n  content: \"\\ec6c\";\n}\n.file-wine:before {\n  content: \"\\ec6d\";\n}\n.file-wix:before {\n  content: \"\\ec6e\";\n}\n.file-workbox:before {\n  content: \"\\ec6f\";\n}\n.file-wurst:before {\n  content: \"\\ec70\";\n}\n.file-x10:before {\n  content: \"\\ec71\";\n}\n.file-xamarin:before {\n  content: \"\\ec72\";\n}\n.file-xmake:before {\n  content: \"\\ec73\";\n}\n.file-xmos:before {\n  content: \"\\ec74\";\n}\n.file-xpages:before {\n  content: \"\\ec75\";\n}\n.file-xtend:before {\n  content: \"\\ec76\";\n}\n.file-xubuntu:before {\n  content: \"\\ec77\";\n}\n.file-yaml-alt1:before {\n  content: \"\\ec78\";\n}\n.file-yaml-alt2:before {\n  content: \"\\ec79\";\n}\n.file-yaml-alt3:before {\n  content: \"\\ec7a\";\n}\n.file-yaml-alt4:before {\n  content: \"\\ec7b\";\n}\n.file-yaml:before {\n  content: \"\\ec7c\";\n}\n.file-yamllint:before {\n  content: \"\\ec7d\";\n}\n.file-yandex:before {\n  content: \"\\ec7e\";\n}\n.file-yang:before {\n  content: \"\\ec7f\";\n}\n.file-yara:before {\n  content: \"\\ec80\";\n}\n.file-yarn:before {\n  content: \"\\ec81\";\n}\n.file-yasm:before {\n  content: \"\\ec82\";\n}\n.file-yorick:before {\n  content: \"\\ec83\";\n}\n.file-yui:before {\n  content: \"\\ec84\";\n}\n.file-zbrush:before {\n  content: \"\\ec85\";\n}\n.file-zeit:before {\n  content: \"\\ec86\";\n}\n.file-zephir:before {\n  content: \"\\ec87\";\n}\n.file-zig:before {\n  content: \"\\ec88\";\n}\n.file-zilog:before {\n  content: \"\\ec89\";\n}\n.file-zimpl:before {\n  content: \"\\ec8a\";\n}\n.file-zorinos:before {\n  content: \"\\ec8b\";\n}\n.file-zork:before {\n  content: \"\\ec8c\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/ikonli-fluentui-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.fluentui {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.fluentui;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.fluentui.FluentUiFilledALIkonHandler,\n            org.kordamp.ikonli.fluentui.FluentUiFilledMZIkonHandler,\n            org.kordamp.ikonli.fluentui.FluentUiRegularALIkonHandler,\n            org.kordamp.ikonli.fluentui.FluentUiRegularMZIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.fluentui.FluentUiFilledALIkonProvider,\n            org.kordamp.ikonli.fluentui.FluentUiFilledMZIkonProvider,\n            org.kordamp.ikonli.fluentui.FluentUiRegularALIkonProvider,\n            org.kordamp.ikonli.fluentui.FluentUiRegularMZIkonProvider;\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/org/kordamp/ikonli/fluentui/FluentUiFilledAL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fluentui;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum FluentUiFilledAL implements Ikon {\n    ACCESSIBILITY_16('\\uf102'),\n    ACCESSIBILITY_20('\\uf103'),\n    ACCESSIBILITY_24('\\uf104'),\n    ACCESSIBILITY_28('\\uf105'),\n    ACCESS_TIME_24('\\uf101'),\n    ACTIVITY_24('\\uf106'),\n    ADD_12('\\uf107'),\n    ADD_16('\\uf108'),\n    ADD_20('\\uf109'),\n    ADD_24('\\uf10a'),\n    ADD_28('\\uf10b'),\n    ADD_CIRCLE_20('\\uf10c'),\n    ADD_CIRCLE_24('\\uf10d'),\n    ADD_CIRCLE_28('\\uf10e'),\n    ADD_SQUARE_24('\\uf8e2'),\n    AIRPLANE_20('\\uf10f'),\n    AIRPLANE_24('\\uf110'),\n    AIRPLANE_TAKE_OFF_16('\\uf111'),\n    AIRPLANE_TAKE_OFF_20('\\uf112'),\n    AIRPLANE_TAKE_OFF_24('\\uf113'),\n    ALERT_20('\\uf114'),\n    ALERT_24('\\uf115'),\n    ALERT_28('\\uf116'),\n    ALERT_OFF_16('\\uf117'),\n    ALERT_OFF_20('\\uf118'),\n    ALERT_OFF_24('\\uf119'),\n    ALERT_OFF_28('\\uf11a'),\n    ALERT_ON_24('\\uf11b'),\n    ALERT_SNOOZE_20('\\uf11c'),\n    ALERT_SNOOZE_24('\\uf11d'),\n    ALERT_URGENT_20('\\uf11e'),\n    ALERT_URGENT_24('\\uf11f'),\n    ANIMAL_DOG_20('\\uf120'),\n    ANIMAL_DOG_24('\\uf121'),\n    APPROVALS_APP_24('\\uf130'),\n    APPROVALS_APP_28('\\uf131'),\n    APPS_16('\\uf132'),\n    APPS_20('\\uf133'),\n    APPS_24('\\uf134'),\n    APPS_28('\\uf135'),\n    APPS_ADD_IN_20('\\uf136'),\n    APPS_ADD_IN_24('\\uf137'),\n    APPS_LIST_20('\\uf8e3'),\n    APPS_LIST_24('\\uf138'),\n    APP_FOLDER_20('\\uf122'),\n    APP_FOLDER_24('\\uf123'),\n    APP_GENERIC_24('\\uf124'),\n    APP_RECENT_24('\\uf125'),\n    APP_SPAN_16('\\uf126'),\n    APP_SPAN_20('\\uf127'),\n    APP_SPAN_24('\\uf128'),\n    APP_SPAN_28('\\uf129'),\n    APP_STORE_24('\\uf12a'),\n    APP_TITLE_24('\\uf12b'),\n    APP_UNSPAN_16('\\uf12c'),\n    APP_UNSPAN_20('\\uf12d'),\n    APP_UNSPAN_24('\\uf12e'),\n    APP_UNSPAN_28('\\uf12f'),\n    ARCHIVE_16('\\uf8e4'),\n    ARCHIVE_20('\\uf139'),\n    ARCHIVE_24('\\uf13a'),\n    ARCHIVE_28('\\uf13b'),\n    ARCHIVE_48('\\uf13c'),\n    ARROWS_BIDIRECTIONAL_24('\\uf1a6'),\n    ARROW_AUTOFIT_HEIGHT_24('\\uf8e5'),\n    ARROW_AUTOFIT_WIDTH_24('\\uf8e6'),\n    ARROW_CLOCKWISE_20('\\uf13d'),\n    ARROW_CLOCKWISE_24('\\uf13e'),\n    ARROW_COUNTERCLOCKWISE_20('\\uf13f'),\n    ARROW_COUNTERCLOCKWISE_24('\\uf140'),\n    ARROW_COUNTERCLOCKWISE_28('\\uf8e7'),\n    ARROW_CURVE_DOWN_LEFT_20('\\uf141'),\n    ARROW_CURVE_DOWN_RIGHT_20('\\uf142'),\n    ARROW_CURVE_RIGHT_20('\\uf143'),\n    ARROW_CURVE_RIGHT_24('\\uf144'),\n    ARROW_CURVE_UP_LEFT_20('\\uf145'),\n    ARROW_CURVE_UP_RIGHT_20('\\uf146'),\n    ARROW_DOWNLOAD_16('\\uf14f'),\n    ARROW_DOWNLOAD_20('\\uf150'),\n    ARROW_DOWNLOAD_24('\\uf151'),\n    ARROW_DOWNLOAD_48('\\uf152'),\n    ARROW_DOWN_12('\\uf8e8'),\n    ARROW_DOWN_16('\\uf147'),\n    ARROW_DOWN_20('\\uf148'),\n    ARROW_DOWN_24('\\uf149'),\n    ARROW_DOWN_28('\\uf14a'),\n    ARROW_DOWN_LEFT_16('\\uf8e9'),\n    ARROW_DOWN_LEFT_24('\\uf14b'),\n    ARROW_DOWN_RIGHT_CIRCLE_16('\\uf14c'),\n    ARROW_DOWN_RIGHT_CIRCLE_24('\\uf14d'),\n    ARROW_DOWN_SQUARE_24('\\uf14e'),\n    ARROW_ENTER_24('\\uf153'),\n    ARROW_EXPAND_24('\\uf154'),\n    ARROW_EXPORT_20('\\uf155'),\n    ARROW_EXPORT_RTL_20('\\uf8ea'),\n    ARROW_FIT_HEIGHT_24('\\uf8eb'),\n    ARROW_FIT_WIDTH_24('\\uf8ec'),\n    ARROW_FORWARD_16('\\uf156'),\n    ARROW_FORWARD_20('\\uf157'),\n    ARROW_FORWARD_24('\\uf158'),\n    ARROW_HOOK_DOWN_LEFT_16('\\uf8ed'),\n    ARROW_HOOK_DOWN_LEFT_20('\\uf8ee'),\n    ARROW_HOOK_DOWN_LEFT_24('\\uf8ef'),\n    ARROW_HOOK_DOWN_LEFT_28('\\uf8f0'),\n    ARROW_HOOK_DOWN_RIGHT_16('\\uf8f1'),\n    ARROW_HOOK_DOWN_RIGHT_20('\\uf8f2'),\n    ARROW_HOOK_DOWN_RIGHT_24('\\uf8f3'),\n    ARROW_HOOK_DOWN_RIGHT_28('\\uf8f4'),\n    ARROW_HOOK_UP_LEFT_16('\\uf8f5'),\n    ARROW_HOOK_UP_LEFT_20('\\uf8f6'),\n    ARROW_HOOK_UP_LEFT_24('\\uf8f7'),\n    ARROW_HOOK_UP_LEFT_28('\\uf8f8'),\n    ARROW_HOOK_UP_RIGHT_16('\\uf8f9'),\n    ARROW_HOOK_UP_RIGHT_20('\\uf8fa'),\n    ARROW_HOOK_UP_RIGHT_24('\\uf8fb'),\n    ARROW_HOOK_UP_RIGHT_28('\\uf8fc'),\n    ARROW_IMPORT_20('\\uf159'),\n    ARROW_IMPORT_24('\\uf15a'),\n    ARROW_LEFT_20('\\uf15b'),\n    ARROW_LEFT_24('\\uf15c'),\n    ARROW_LEFT_28('\\uf15d'),\n    ARROW_MAXIMIZE_16('\\uf15e'),\n    ARROW_MAXIMIZE_20('\\uf15f'),\n    ARROW_MAXIMIZE_24('\\uf160'),\n    ARROW_MAXIMIZE_28('\\uf161'),\n    ARROW_MAXIMIZE_VERTICAL_20('\\uf162'),\n    ARROW_MAXIMIZE_VERTICAL_24('\\uf163'),\n    ARROW_MINIMIZE_16('\\uf164'),\n    ARROW_MINIMIZE_20('\\uf165'),\n    ARROW_MINIMIZE_24('\\uf166'),\n    ARROW_MINIMIZE_28('\\uf167'),\n    ARROW_MINIMIZE_VERTICAL_24('\\uf168'),\n    ARROW_MOVE_20('\\uf8fd'),\n    ARROW_MOVE_24('\\uf169'),\n    ARROW_NEXT_20('\\uf16a'),\n    ARROW_NEXT_24('\\uf16b'),\n    ARROW_PREVIOUS_20('\\uf16c'),\n    ARROW_PREVIOUS_24('\\uf16d'),\n    ARROW_REDO_20('\\uf16e'),\n    ARROW_REDO_24('\\uf16f'),\n    ARROW_REDO_32('\\uf8fe'),\n    ARROW_REDO_48('\\uf8ff'),\n    ARROW_REPEAT_ALL_16('\\uf170'),\n    ARROW_REPEAT_ALL_20('\\uf171'),\n    ARROW_REPEAT_ALL_24('\\uf172'),\n    ARROW_REPEAT_ALL_OFF_16('\\uf173'),\n    ARROW_REPEAT_ALL_OFF_20('\\uf174'),\n    ARROW_REPEAT_ALL_OFF_24('\\uf175'),\n    ARROW_REPLY_16('\\uf176'),\n    ARROW_REPLY_20('\\uf177'),\n    ARROW_REPLY_24('\\uf178'),\n    ARROW_REPLY_48('\\uf179'),\n    ARROW_REPLY_ALL_16('\\uf17a'),\n    ARROW_REPLY_ALL_20('\\uf17b'),\n    ARROW_REPLY_ALL_24('\\uf17c'),\n    ARROW_REPLY_ALL_48('\\uf17d'),\n    ARROW_REPLY_DOWN_16('\\uf17e'),\n    ARROW_REPLY_DOWN_20('\\uf17f'),\n    ARROW_REPLY_DOWN_24('\\uf180'),\n    ARROW_RIGHT_20('\\uf181'),\n    ARROW_RIGHT_24('\\uf182'),\n    ARROW_RIGHT_28('\\uf183'),\n    ARROW_RIGHT_CIRCLE_24('\\uf184'),\n    ARROW_ROTATE_CLOCKWISE_20('\\uf185'),\n    ARROW_ROTATE_CLOCKWISE_24('\\uf186'),\n    ARROW_ROTATE_COUNTERCLOCKWISE_20('\\uf187'),\n    ARROW_ROTATE_COUNTERCLOCKWISE_24('\\uf188'),\n    ARROW_ROTATE_ICON_24('\\uf189'),\n    ARROW_ROTATE_LEFT_24('\\uf900'),\n    ARROW_ROTATE_RIGHT_20('\\uf901'),\n    ARROW_ROTATE_RIGHT_24('\\uf902'),\n    ARROW_SORT_20('\\uf18a'),\n    ARROW_SORT_24('\\uf18b'),\n    ARROW_SORT_28('\\uf18c'),\n    ARROW_SWAP_20('\\uf18d'),\n    ARROW_SWAP_24('\\uf18e'),\n    ARROW_SYNC_12('\\uf18f'),\n    ARROW_SYNC_20('\\uf190'),\n    ARROW_SYNC_24('\\uf191'),\n    ARROW_SYNC_CIRCLE_16('\\uf192'),\n    ARROW_SYNC_CIRCLE_20('\\uf193'),\n    ARROW_SYNC_CIRCLE_24('\\uf194'),\n    ARROW_SYNC_OFF_12('\\uf195'),\n    ARROW_TRENDING_16('\\uf196'),\n    ARROW_TRENDING_20('\\uf197'),\n    ARROW_TRENDING_24('\\uf198'),\n    ARROW_UNDO_20('\\uf199'),\n    ARROW_UNDO_24('\\uf19a'),\n    ARROW_UPLOAD_20('\\uf1a4'),\n    ARROW_UPLOAD_24('\\uf1a5'),\n    ARROW_UP_20('\\uf19b'),\n    ARROW_UP_24('\\uf19c'),\n    ARROW_UP_28('\\uf19d'),\n    ARROW_UP_CIRCLE_16('\\uf19e'),\n    ARROW_UP_CIRCLE_20('\\uf19f'),\n    ARROW_UP_CIRCLE_24('\\uf1a0'),\n    ARROW_UP_LEFT_24('\\uf1a1'),\n    ARROW_UP_LEFT_CIRCLE_24('\\uf1a2'),\n    ARROW_UP_RIGHT_16('\\uf903'),\n    ARROW_UP_RIGHT_24('\\uf1a3'),\n    ASSIGNMENTS_24('\\uf1a7'),\n    ATTACH_16('\\uf1a8'),\n    ATTACH_20('\\uf1a9'),\n    ATTACH_24('\\uf1aa'),\n    ATTACH_ARROW_RIGHT_20('\\uf904'),\n    ATTACH_ARROW_RIGHT_24('\\uf905'),\n    ATTACH_FORWARD_20('\\uf1ab'),\n    ATTACH_FORWARD_24('\\uf1ac'),\n    ATTACH_TEXT_24('\\uf906'),\n    ATTACH_WITH_TEXT_24('\\uf1ad'),\n    AUTOCORRECT_24('\\uf1ae'),\n    AUTOFIT_CONTENT_24('\\uf907'),\n    AUTOSUM_20('\\uf1af'),\n    AUTOSUM_24('\\uf1b0'),\n    BACKPACK_12('\\uf908'),\n    BACKPACK_16('\\uf909'),\n    BACKPACK_20('\\uf90a'),\n    BACKPACK_24('\\uf90b'),\n    BACKPACK_28('\\uf90c'),\n    BACKPACK_48('\\uf90d'),\n    BACKSPACE_20('\\uf1b1'),\n    BACKSPACE_24('\\uf1b2'),\n    BACKWARD_20('\\uf1b3'),\n    BACKWARD_24('\\uf1b4'),\n    BADGE_24('\\uf1b5'),\n    BALLOON_16('\\uf90e'),\n    BALLOON_20('\\uf1b6'),\n    BALLOON_24('\\uf1b7'),\n    BANK_16('\\uf1b8'),\n    BANK_20('\\uf1b9'),\n    BANK_24('\\uf1ba'),\n    BATTERY_0_20('\\uf1bb'),\n    BATTERY_0_24('\\uf1bc'),\n    BATTERY_1_20('\\uf1bd'),\n    BATTERY_1_24('\\uf1be'),\n    BATTERY_2_20('\\uf1bf'),\n    BATTERY_2_24('\\uf1c0'),\n    BATTERY_3_20('\\uf1c1'),\n    BATTERY_3_24('\\uf1c2'),\n    BATTERY_4_20('\\uf1c3'),\n    BATTERY_4_24('\\uf1c4'),\n    BATTERY_5_20('\\uf1c5'),\n    BATTERY_5_24('\\uf1c6'),\n    BATTERY_6_20('\\uf1c7'),\n    BATTERY_6_24('\\uf1c8'),\n    BATTERY_7_20('\\uf1c9'),\n    BATTERY_7_24('\\uf1ca'),\n    BATTERY_8_20('\\uf1cb'),\n    BATTERY_8_24('\\uf1cc'),\n    BATTERY_9_20('\\uf1cd'),\n    BATTERY_9_24('\\uf1ce'),\n    BATTERY_CHARGE_20('\\uf1cf'),\n    BATTERY_CHARGE_24('\\uf1d0'),\n    BATTERY_FULL_20('\\uf1d1'),\n    BATTERY_FULL_24('\\uf1d2'),\n    BATTERY_SAVER_20('\\uf1d3'),\n    BATTERY_SAVER_24('\\uf1d4'),\n    BATTERY_WARNING_24('\\uf1d5'),\n    BEAKER_16('\\uf1d6'),\n    BEAKER_20('\\uf1d7'),\n    BEAKER_24('\\uf1d8'),\n    BED_16('\\uf90f'),\n    BED_20('\\uf1d9'),\n    BED_24('\\uf1da'),\n    BLOCK_16('\\uf1db'),\n    BLOCK_20('\\uf1dc'),\n    BLOCK_24('\\uf1dd'),\n    BLUETOOTH_20('\\uf1de'),\n    BLUETOOTH_24('\\uf1df'),\n    BLUETOOTH_28('\\uf910'),\n    BLUETOOTH_CONNECTED_24('\\uf1e0'),\n    BLUETOOTH_DISABLED_24('\\uf1e1'),\n    BLUETOOTH_SEARCHING_24('\\uf1e2'),\n    BLUR_16('\\uf911'),\n    BLUR_20('\\uf912'),\n    BLUR_24('\\uf913'),\n    BLUR_28('\\uf914'),\n    BOARD_24('\\uf1e3'),\n    BOOKMARK_16('\\uf1f4'),\n    BOOKMARK_20('\\uf1f5'),\n    BOOKMARK_24('\\uf1f6'),\n    BOOKMARK_28('\\uf1f7'),\n    BOOKMARK_OFF_24('\\uf1f8'),\n    BOOK_20('\\uf915'),\n    BOOK_24('\\uf916'),\n    BOOK_ADD_20('\\uf917'),\n    BOOK_ADD_24('\\uf918'),\n    BOOK_CLOCK_24('\\uf919'),\n    BOOK_COINS_24('\\uf91a'),\n    BOOK_COMPASS_24('\\uf91b'),\n    BOOK_DATABASE_24('\\uf91c'),\n    BOOK_EXCLAMATION_MARK_24('\\uf91d'),\n    BOOK_FORMULA_COMPATIBILITY_24('\\uf1e4'),\n    BOOK_FORMULA_DATABASE_24('\\uf1e5'),\n    BOOK_FORMULA_DATE_24('\\uf1e6'),\n    BOOK_FORMULA_ENGINEERING_24('\\uf1e7'),\n    BOOK_FORMULA_FINANCIAL_24('\\uf1e8'),\n    BOOK_FORMULA_INFORMATION_24('\\uf1e9'),\n    BOOK_FORMULA_LOGICAL_24('\\uf1ea'),\n    BOOK_FORMULA_LOOKUP_24('\\uf1eb'),\n    BOOK_FORMULA_MATH_24('\\uf1ec'),\n    BOOK_FORMULA_RECENT_24('\\uf1ed'),\n    BOOK_FORMULA_STATISTICS_24('\\uf1ee'),\n    BOOK_FORMULA_TEXT_24('\\uf1ef'),\n    BOOK_GLOBE_24('\\uf1f0'),\n    BOOK_INFORMATION_24('\\uf91e'),\n    BOOK_LETTER_24('\\uf91f'),\n    BOOK_NUMBER_16('\\uf1f1'),\n    BOOK_NUMBER_20('\\uf1f2'),\n    BOOK_NUMBER_24('\\uf1f3'),\n    BOOK_OPEN_20('\\uf920'),\n    BOOK_OPEN_24('\\uf921'),\n    BOOK_OPEN_GLOBE_24('\\uf922'),\n    BOOK_PULSE_24('\\uf923'),\n    BOOK_QUESTION_MARK_24('\\uf924'),\n    BOOK_SEARCH_24('\\uf925'),\n    BOOK_STAR_24('\\uf926'),\n    BOOK_THETA_24('\\uf927'),\n    BORDER_ALL_24('\\uf928'),\n    BORDER_BOTTOM_24('\\uf929'),\n    BORDER_BOTTOM_DOUBLE_24('\\uf92a'),\n    BORDER_BOTTOM_THICK_24('\\uf92b'),\n    BORDER_LEFT_24('\\uf92c'),\n    BORDER_NONE_24('\\uf92d'),\n    BORDER_OUTSIDE_24('\\uf92e'),\n    BORDER_OUTSIDE_THICK_24('\\uf92f'),\n    BORDER_RIGHT_24('\\uf930'),\n    BORDER_TOP_24('\\uf931'),\n    BORDER_TOP_BOTTOM_24('\\uf932'),\n    BORDER_TOP_BOTTOM_DOUBLE_24('\\uf933'),\n    BORDER_TOP_BOTTOM_THICK_24('\\uf934'),\n    BOT_24('\\uf1f9'),\n    BOT_ADD_24('\\uf1fa'),\n    BRANCH_24('\\uf1fb'),\n    BRIEFCASE_12('\\uf935'),\n    BRIEFCASE_20('\\uf1fc'),\n    BRIEFCASE_24('\\uf1fd'),\n    BRIEFCASE_32('\\uf936'),\n    BRIEFCASE_ADD_24('\\uf937'),\n    BRIEFCASE_ADD_32('\\uf938'),\n    BRING_TO_FRONT_20('\\uf1fe'),\n    BRING_TO_FRONT_24('\\uf1ff'),\n    BROAD_ACTIVITY_FEED_24('\\uf200'),\n    BROOM_20('\\uf201'),\n    BROOM_24('\\uf202'),\n    BUG_16('\\uf939'),\n    BUG_20('\\uf93a'),\n    BUG_24('\\uf93b'),\n    BUG_REPORT_24('\\uf203'),\n    BUILDING_1_24('\\uf204'),\n    BUILDING_24('\\uf205'),\n    BUILDING_2_16('\\uf206'),\n    BUILDING_2_20('\\uf207'),\n    BUILDING_2_24('\\uf208'),\n    BUILDING_BANK_16('\\uf93c'),\n    BUILDING_BANK_20('\\uf93d'),\n    BUILDING_BANK_24('\\uf93e'),\n    BUILDING_GOVERNMENT_24('\\uf93f'),\n    BUILDING_GOVERNMENT_32('\\uf940'),\n    BUILDING_MULTIPLE_24('\\uf941'),\n    BUILDING_RETAIL_24('\\uf209'),\n    BUILDING_SHOP_16('\\uf942'),\n    BUILDING_SHOP_20('\\uf943'),\n    BUILDING_SHOP_24('\\uf944'),\n    BUILDING_SKYSCRAPER_16('\\uf945'),\n    BUILDING_SKYSCRAPER_20('\\uf946'),\n    BUILDING_SKYSCRAPER_24('\\uf947'),\n    CALCULATOR_20('\\uf20a'),\n    CALENDAR_20('\\uf20b'),\n    CALENDAR_24('\\uf20c'),\n    CALENDAR_28('\\uf20d'),\n    CALENDAR_3_DAY_20('\\uf20e'),\n    CALENDAR_3_DAY_24('\\uf20f'),\n    CALENDAR_3_DAY_28('\\uf210'),\n    CALENDAR_ADD_20('\\uf211'),\n    CALENDAR_ADD_24('\\uf212'),\n    CALENDAR_AGENDA_20('\\uf213'),\n    CALENDAR_AGENDA_24('\\uf214'),\n    CALENDAR_AGENDA_28('\\uf215'),\n    CALENDAR_ARROW_RIGHT_20('\\uf216'),\n    CALENDAR_ASSISTANT_20('\\uf217'),\n    CALENDAR_ASSISTANT_24('\\uf218'),\n    CALENDAR_CANCEL_16('\\uf948'),\n    CALENDAR_CANCEL_20('\\uf219'),\n    CALENDAR_CANCEL_24('\\uf21a'),\n    CALENDAR_CHECKMARK_16('\\uf21b'),\n    CALENDAR_CHECKMARK_20('\\uf21c'),\n    CALENDAR_CHECKMARK_24('\\uf8e1'),\n    CALENDAR_CLOCK_16('\\uf949'),\n    CALENDAR_CLOCK_20('\\uf21d'),\n    CALENDAR_CLOCK_24('\\uf21e'),\n    CALENDAR_DATE_20('\\uf21f'),\n    CALENDAR_DATE_24('\\uf220'),\n    CALENDAR_DATE_28('\\uf221'),\n    CALENDAR_DAY_20('\\uf222'),\n    CALENDAR_DAY_24('\\uf223'),\n    CALENDAR_DAY_28('\\uf224'),\n    CALENDAR_EMPTY_16('\\uf225'),\n    CALENDAR_EMPTY_20('\\uf226'),\n    CALENDAR_EMPTY_24('\\uf227'),\n    CALENDAR_EMPTY_28('\\uf228'),\n    CALENDAR_LATER_24('\\uf229'),\n    CALENDAR_MENTION_20('\\uf94a'),\n    CALENDAR_MONTH_20('\\uf22a'),\n    CALENDAR_MONTH_24('\\uf22b'),\n    CALENDAR_MONTH_28('\\uf22c'),\n    CALENDAR_MULTIPLE_20('\\uf22d'),\n    CALENDAR_MULTIPLE_24('\\uf22e'),\n    CALENDAR_OVERDUE_24('\\uf22f'),\n    CALENDAR_PERSON_20('\\uf230'),\n    CALENDAR_PERSON_24('\\uf94b'),\n    CALENDAR_QUESTION_MARK_16('\\uf94c'),\n    CALENDAR_QUESTION_MARK_20('\\uf94d'),\n    CALENDAR_QUESTION_MARK_24('\\uf94e'),\n    CALENDAR_REPLY_16('\\uf231'),\n    CALENDAR_REPLY_20('\\uf232'),\n    CALENDAR_REPLY_24('\\uf233'),\n    CALENDAR_REPLY_28('\\uf234'),\n    CALENDAR_SETTINGS_20('\\uf235'),\n    CALENDAR_STAR_20('\\uf236'),\n    CALENDAR_STAR_24('\\uf237'),\n    CALENDAR_SYNC_16('\\uf238'),\n    CALENDAR_SYNC_20('\\uf239'),\n    CALENDAR_SYNC_24('\\uf23a'),\n    CALENDAR_TODAY_16('\\uf23b'),\n    CALENDAR_TODAY_20('\\uf23c'),\n    CALENDAR_TODAY_24('\\uf23d'),\n    CALENDAR_TODAY_28('\\uf23e'),\n    CALENDAR_WEEK_NUMBERS_24('\\uf23f'),\n    CALENDAR_WEEK_START_20('\\uf240'),\n    CALENDAR_WEEK_START_24('\\uf241'),\n    CALENDAR_WEEK_START_28('\\uf242'),\n    CALENDAR_WORK_WEEK_16('\\uf243'),\n    CALENDAR_WORK_WEEK_20('\\uf244'),\n    CALENDAR_WORK_WEEK_24('\\uf245'),\n    CALLIGRAPHY_PEN_20('\\uf252'),\n    CALLIGRAPHY_PEN_24('\\uf253'),\n    CALL_ADD_24('\\uf246'),\n    CALL_BLOCKED_16('\\uf94f'),\n    CALL_BLOCKED_20('\\uf950'),\n    CALL_BLOCKED_24('\\uf951'),\n    CALL_BLOCKED_28('\\uf952'),\n    CALL_BLOCKED_48('\\uf953'),\n    CALL_END_20('\\uf247'),\n    CALL_END_24('\\uf248'),\n    CALL_END_28('\\uf249'),\n    CALL_FORWARD_16('\\uf954'),\n    CALL_FORWARD_20('\\uf955'),\n    CALL_FORWARD_24('\\uf24a'),\n    CALL_FORWARD_28('\\uf956'),\n    CALL_FORWARD_48('\\uf957'),\n    CALL_INBOUND_16('\\uf24b'),\n    CALL_INBOUND_20('\\uf958'),\n    CALL_INBOUND_24('\\uf24c'),\n    CALL_INBOUND_28('\\uf959'),\n    CALL_INBOUND_48('\\uf95a'),\n    CALL_MISSED_16('\\uf24d'),\n    CALL_MISSED_24('\\uf24e'),\n    CALL_MISSED_28('\\uf95b'),\n    CALL_MISSED_48('\\uf95c'),\n    CALL_OUTBOUND_16('\\uf24f'),\n    CALL_OUTBOUND_20('\\uf95d'),\n    CALL_OUTBOUND_24('\\uf250'),\n    CALL_OUTBOUND_28('\\uf95e'),\n    CALL_OUTBOUND_48('\\uf95f'),\n    CALL_PARK_16('\\uf960'),\n    CALL_PARK_20('\\uf961'),\n    CALL_PARK_24('\\uf251'),\n    CALL_PARK_28('\\uf962'),\n    CALL_PARK_48('\\uf963'),\n    CAMERA_20('\\uf254'),\n    CAMERA_24('\\uf255'),\n    CAMERA_28('\\uf256'),\n    CAMERA_ADD_20('\\uf257'),\n    CAMERA_ADD_24('\\uf258'),\n    CAMERA_ADD_48('\\uf259'),\n    CAMERA_EDIT_20('\\uf964'),\n    CAMERA_SWITCH_24('\\uf25a'),\n    CARET_12('\\uf25b'),\n    CARET_16('\\uf25c'),\n    CARET_20('\\uf25d'),\n    CARET_24('\\uf25e'),\n    CARET_DOWN_12('\\uf25f'),\n    CARET_DOWN_16('\\uf260'),\n    CARET_DOWN_20('\\uf261'),\n    CARET_DOWN_24('\\uf262'),\n    CARET_LEFT_12('\\uf263'),\n    CARET_LEFT_16('\\uf264'),\n    CARET_LEFT_20('\\uf265'),\n    CARET_LEFT_24('\\uf266'),\n    CARET_RIGHT_12('\\uf267'),\n    CARET_RIGHT_16('\\uf268'),\n    CARET_RIGHT_20('\\uf269'),\n    CARET_RIGHT_24('\\uf26a'),\n    CARET_UP_12('\\uf965'),\n    CARET_UP_16('\\uf966'),\n    CARET_UP_20('\\uf967'),\n    CARET_UP_24('\\uf968'),\n    CART_16('\\uf969'),\n    CART_20('\\uf96a'),\n    CART_24('\\uf26b'),\n    CAST_20('\\uf26c'),\n    CAST_24('\\uf26d'),\n    CAST_28('\\uf26e'),\n    CELLULAR_3G_24('\\uf26f'),\n    CELLULAR_4G_24('\\uf270'),\n    CELLULAR_DATA_1_20('\\uf271'),\n    CELLULAR_DATA_1_24('\\uf272'),\n    CELLULAR_DATA_2_20('\\uf273'),\n    CELLULAR_DATA_2_24('\\uf274'),\n    CELLULAR_DATA_3_20('\\uf275'),\n    CELLULAR_DATA_3_24('\\uf276'),\n    CELLULAR_DATA_4_20('\\uf277'),\n    CELLULAR_DATA_4_24('\\uf278'),\n    CELLULAR_DATA_5_20('\\uf279'),\n    CELLULAR_DATA_5_24('\\uf27a'),\n    CELLULAR_DATA_OFF_24('\\uf27b'),\n    CELLULAR_OFF_24('\\uf27c'),\n    CELLULAR_UNAVAILABLE_24('\\uf27d'),\n    CENTER_HORIZONTALLY_24('\\uf96b'),\n    CENTER_VERTICALLY_24('\\uf96c'),\n    CERTIFICATE_20('\\uf27e'),\n    CERTIFICATE_24('\\uf27f'),\n    CHANNEL_16('\\uf280'),\n    CHANNEL_20('\\uf281'),\n    CHANNEL_24('\\uf282'),\n    CHANNEL_28('\\uf96d'),\n    CHANNEL_48('\\uf96e'),\n    CHANNEL_ADD_16('\\uf96f'),\n    CHANNEL_ADD_20('\\uf970'),\n    CHANNEL_ADD_24('\\uf971'),\n    CHANNEL_ADD_28('\\uf972'),\n    CHANNEL_ADD_48('\\uf973'),\n    CHANNEL_ALERT_16('\\uf974'),\n    CHANNEL_ALERT_20('\\uf975'),\n    CHANNEL_ALERT_24('\\uf976'),\n    CHANNEL_ALERT_28('\\uf977'),\n    CHANNEL_ALERT_48('\\uf978'),\n    CHANNEL_ARROW_LEFT_16('\\uf979'),\n    CHANNEL_ARROW_LEFT_20('\\uf97a'),\n    CHANNEL_ARROW_LEFT_24('\\uf97b'),\n    CHANNEL_ARROW_LEFT_28('\\uf97c'),\n    CHANNEL_ARROW_LEFT_48('\\uf97d'),\n    CHANNEL_DISMISS_16('\\uf97e'),\n    CHANNEL_DISMISS_20('\\uf97f'),\n    CHANNEL_DISMISS_24('\\uf980'),\n    CHANNEL_DISMISS_28('\\uf981'),\n    CHANNEL_DISMISS_48('\\uf982'),\n    CHANNEL_FOLLOW_24('\\uf283'),\n    CHANNEL_NOTIFICATIONS_24('\\uf284'),\n    CHANNEL_UNFOLLOW_24('\\uf285'),\n    CHAT_16('\\uf983'),\n    CHAT_20('\\uf286'),\n    CHAT_24('\\uf287'),\n    CHAT_28('\\uf288'),\n    CHAT_BUBBLES_QUESTION_24('\\uf289'),\n    CHAT_HELP_24('\\uf28a'),\n    CHAT_OFF_24('\\uf28b'),\n    CHAT_WARNING_24('\\uf28c'),\n    CHECKBOX_CHECKED_20('\\uf28d'),\n    CHECKBOX_CHECKED_24('\\uf28e'),\n    CHECKBOX_UNCHECKED_12('\\uf28f'),\n    CHECKBOX_UNCHECKED_16('\\uf290'),\n    CHECKBOX_UNCHECKED_20('\\uf291'),\n    CHECKBOX_UNCHECKED_24('\\uf292'),\n    CHECKMARK_12('\\uf293'),\n    CHECKMARK_16('\\uf984'),\n    CHECKMARK_20('\\uf294'),\n    CHECKMARK_24('\\uf295'),\n    CHECKMARK_28('\\uf296'),\n    CHECKMARK_CIRCLE_16('\\uf297'),\n    CHECKMARK_CIRCLE_20('\\uf298'),\n    CHECKMARK_CIRCLE_24('\\uf299'),\n    CHECKMARK_CIRCLE_48('\\uf29a'),\n    CHECKMARK_LOCK_16('\\uf29b'),\n    CHECKMARK_LOCK_20('\\uf29c'),\n    CHECKMARK_LOCK_24('\\uf29d'),\n    CHECKMARK_SQUARE_24('\\uf29e'),\n    CHECKMARK_UNDERLINE_CIRCLE_16('\\uf29f'),\n    CHECKMARK_UNDERLINE_CIRCLE_20('\\uf2a0'),\n    CHEVRON_DOWN_12('\\uf2a1'),\n    CHEVRON_DOWN_16('\\uf2a2'),\n    CHEVRON_DOWN_20('\\uf2a3'),\n    CHEVRON_DOWN_24('\\uf2a4'),\n    CHEVRON_DOWN_28('\\uf2a5'),\n    CHEVRON_DOWN_48('\\uf2a6'),\n    CHEVRON_DOWN_CIRCLE_24('\\uf2a7'),\n    CHEVRON_LEFT_12('\\uf2a8'),\n    CHEVRON_LEFT_16('\\uf2a9'),\n    CHEVRON_LEFT_20('\\uf2aa'),\n    CHEVRON_LEFT_24('\\uf2ab'),\n    CHEVRON_LEFT_28('\\uf2ac'),\n    CHEVRON_LEFT_48('\\uf2ad'),\n    CHEVRON_RIGHT_12('\\uf2ae'),\n    CHEVRON_RIGHT_16('\\uf2af'),\n    CHEVRON_RIGHT_20('\\uf2b0'),\n    CHEVRON_RIGHT_24('\\uf2b1'),\n    CHEVRON_RIGHT_28('\\uf2b2'),\n    CHEVRON_RIGHT_48('\\uf2b3'),\n    CHEVRON_RIGHT_CIRCLE_24('\\uf985'),\n    CHEVRON_UP_12('\\uf2b4'),\n    CHEVRON_UP_16('\\uf2b5'),\n    CHEVRON_UP_20('\\uf2b6'),\n    CHEVRON_UP_24('\\uf2b7'),\n    CHEVRON_UP_28('\\uf2b8'),\n    CHEVRON_UP_48('\\uf2b9'),\n    CIRCLE_16('\\uf2ba'),\n    CIRCLE_20('\\uf2bb'),\n    CIRCLE_24('\\uf2bc'),\n    CIRCLE_HALF_FILL_20('\\uf2bd'),\n    CIRCLE_HALF_FILL_24('\\uf2be'),\n    CIRCLE_LINE_24('\\uf2bf'),\n    CIRCLE_SMALL_24('\\uf2c0'),\n    CITY_16('\\uf2c1'),\n    CITY_20('\\uf2c2'),\n    CITY_24('\\uf2c3'),\n    CLASSIFICATION_16('\\uf2c5'),\n    CLASSIFICATION_20('\\uf2c6'),\n    CLASSIFICATION_24('\\uf2c7'),\n    CLASS_24('\\uf2c4'),\n    CLEAR_FORMATTING_24('\\uf2c8'),\n    CLIPBOARD_20('\\uf2c9'),\n    CLIPBOARD_24('\\uf2ca'),\n    CLIPBOARD_CODE_16('\\uf2cb'),\n    CLIPBOARD_CODE_20('\\uf2cc'),\n    CLIPBOARD_CODE_24('\\uf2cd'),\n    CLIPBOARD_LETTER_16('\\uf2ce'),\n    CLIPBOARD_LETTER_20('\\uf2cf'),\n    CLIPBOARD_LETTER_24('\\uf2d0'),\n    CLIPBOARD_LINK_16('\\uf2d1'),\n    CLIPBOARD_LINK_20('\\uf2d2'),\n    CLIPBOARD_LINK_24('\\uf2d3'),\n    CLIPBOARD_MORE_24('\\uf2d4'),\n    CLIPBOARD_PASTE_16('\\uf986'),\n    CLIPBOARD_PASTE_20('\\uf2d5'),\n    CLIPBOARD_PASTE_24('\\uf2d6'),\n    CLIPBOARD_SEARCH_20('\\uf2d7'),\n    CLIPBOARD_SEARCH_24('\\uf2d8'),\n    CLIPBOARD_TEXT_20('\\uf2d9'),\n    CLIPBOARD_TEXT_24('\\uf2da'),\n    CLOCK_12('\\uf2db'),\n    CLOCK_16('\\uf2dc'),\n    CLOCK_20('\\uf2dd'),\n    CLOCK_24('\\uf2de'),\n    CLOCK_28('\\uf2df'),\n    CLOCK_48('\\uf2e0'),\n    CLOCK_ALARM_20('\\uf2e1'),\n    CLOCK_ALARM_24('\\uf2e2'),\n    CLOCK_DISMISS_24('\\uf987'),\n    CLOSED_CAPTION_16('\\uf988'),\n    CLOSED_CAPTION_20('\\uf989'),\n    CLOSED_CAPTION_24('\\uf2e3'),\n    CLOSED_CAPTION_28('\\uf98a'),\n    CLOSED_CAPTION_48('\\uf98b'),\n    CLOUD_20('\\uf2e4'),\n    CLOUD_24('\\uf2e5'),\n    CLOUD_48('\\uf2e6'),\n    CLOUD_BACKUP_24('\\uf2e7'),\n    CLOUD_BACKUP_48('\\uf2e8'),\n    CLOUD_DOWNLOAD_24('\\uf2e9'),\n    CLOUD_DOWNLOAD_32('\\uf98c'),\n    CLOUD_DOWNLOAD_48('\\uf98d'),\n    CLOUD_OFFLINE_24('\\uf2ec'),\n    CLOUD_OFF_24('\\uf2ea'),\n    CLOUD_OFF_48('\\uf2eb'),\n    CLOUD_SYNC_COMPLETE_24('\\uf2ed'),\n    CLOUD_SYNC_COMPLETE_48('\\uf2ee'),\n    CODE_20('\\uf2ef'),\n    CODE_24('\\uf2f0'),\n    COLLECTIONS_20('\\uf2f1'),\n    COLLECTIONS_24('\\uf2f2'),\n    COLLECTIONS_ADD_20('\\uf2f3'),\n    COLLECTIONS_ADD_24('\\uf2f4'),\n    COLOR_20('\\uf2f5'),\n    COLOR_24('\\uf2f6'),\n    COLOR_BACKGROUND_20('\\uf2f7'),\n    COLOR_BACKGROUND_24('\\uf2f8'),\n    COLOR_FILL_20('\\uf2f9'),\n    COLOR_FILL_24('\\uf2fa'),\n    COLOR_LINE_16('\\uf98e'),\n    COLOR_LINE_20('\\uf2fb'),\n    COLOR_LINE_24('\\uf2fc'),\n    COLUMN_TRIPLE_24('\\uf2fd'),\n    COMMENT_12('\\uf98f'),\n    COMMENT_16('\\uf2fe'),\n    COMMENT_20('\\uf2ff'),\n    COMMENT_24('\\uf300'),\n    COMMENT_28('\\uf990'),\n    COMMENT_48('\\uf991'),\n    COMMENT_ADD_12('\\uf992'),\n    COMMENT_ADD_16('\\uf993'),\n    COMMENT_ADD_20('\\uf994'),\n    COMMENT_ADD_24('\\uf301'),\n    COMMENT_ADD_28('\\uf995'),\n    COMMENT_ADD_48('\\uf996'),\n    COMMENT_ARROW_LEFT_12('\\uf997'),\n    COMMENT_ARROW_LEFT_16('\\uf998'),\n    COMMENT_ARROW_LEFT_20('\\uf999'),\n    COMMENT_ARROW_LEFT_28('\\uf99a'),\n    COMMENT_ARROW_LEFT_48('\\uf99b'),\n    COMMENT_ARROW_RIGHT_12('\\uf99c'),\n    COMMENT_ARROW_RIGHT_16('\\uf99d'),\n    COMMENT_ARROW_RIGHT_20('\\uf99e'),\n    COMMENT_ARROW_RIGHT_28('\\uf99f'),\n    COMMENT_ARROW_RIGHT_48('\\uf9a0'),\n    COMMENT_CHECKMARK_12('\\uf9a1'),\n    COMMENT_CHECKMARK_16('\\uf9a2'),\n    COMMENT_CHECKMARK_20('\\uf9a3'),\n    COMMENT_CHECKMARK_24('\\uf9a4'),\n    COMMENT_CHECKMARK_28('\\uf9a5'),\n    COMMENT_CHECKMARK_48('\\uf9a6'),\n    COMMENT_DELETE_24('\\uf302'),\n    COMMENT_EDIT_20('\\uf9a7'),\n    COMMENT_EDIT_24('\\uf9a8'),\n    COMMENT_MENTION_16('\\uf303'),\n    COMMENT_MENTION_20('\\uf304'),\n    COMMENT_MENTION_24('\\uf305'),\n    COMMENT_MULTIPLE_16('\\uf306'),\n    COMMENT_MULTIPLE_20('\\uf307'),\n    COMMENT_MULTIPLE_24('\\uf308'),\n    COMMENT_NEXT_24('\\uf309'),\n    COMMENT_OFF_16('\\uf9a9'),\n    COMMENT_OFF_20('\\uf9aa'),\n    COMMENT_OFF_24('\\uf9ab'),\n    COMMENT_OFF_28('\\uf9ac'),\n    COMMENT_OFF_48('\\uf9ad'),\n    COMMENT_PREVIOUS_24('\\uf30a'),\n    COMMENT_RESOLVE_24('\\uf30b'),\n    COMMUNICATION_16('\\uf30c'),\n    COMMUNICATION_20('\\uf30d'),\n    COMMUNICATION_24('\\uf30e'),\n    COMPASS_NORTHWEST_16('\\uf30f'),\n    COMPASS_NORTHWEST_20('\\uf310'),\n    COMPASS_NORTHWEST_24('\\uf311'),\n    COMPASS_NORTHWEST_28('\\uf312'),\n    COMPOSE_16('\\uf313'),\n    COMPOSE_20('\\uf314'),\n    COMPOSE_24('\\uf315'),\n    COMPOSE_28('\\uf316'),\n    CONFERENCE_ROOM_16('\\uf317'),\n    CONFERENCE_ROOM_20('\\uf318'),\n    CONFERENCE_ROOM_24('\\uf319'),\n    CONFERENCE_ROOM_28('\\uf31a'),\n    CONFERENCE_ROOM_48('\\uf31b'),\n    CONNECTOR_16('\\uf31c'),\n    CONNECTOR_20('\\uf31d'),\n    CONNECTOR_24('\\uf31e'),\n    CONTACTS_24('\\uf322'),\n    CONTACT_CARD_20('\\uf31f'),\n    CONTACT_CARD_24('\\uf320'),\n    CONTACT_CARD_GROUP_16('\\uf9ae'),\n    CONTACT_CARD_GROUP_20('\\uf9af'),\n    CONTACT_CARD_GROUP_24('\\uf321'),\n    CONTACT_CARD_GROUP_28('\\uf9b0'),\n    CONTACT_CARD_GROUP_48('\\uf9b1'),\n    CONTENT_SETTINGS_16('\\uf323'),\n    CONTENT_SETTINGS_20('\\uf324'),\n    CONTENT_SETTINGS_24('\\uf325'),\n    CONVERT_RANGE_24('\\uf9b2'),\n    CONVERT_TO_TABLE_24('\\uf326'),\n    CONVERT_TO_TEXT_24('\\uf327'),\n    COOKIES_20('\\uf328'),\n    COOKIES_24('\\uf329'),\n    COPY_16('\\uf32a'),\n    COPY_20('\\uf32b'),\n    COPY_24('\\uf32c'),\n    COPY_ADD_24('\\uf9b3'),\n    COPY_IMAGE_24('\\uf32d'),\n    COPY_LINK_24('\\uf32e'),\n    COPY_MOVE_16('\\uf32f'),\n    COPY_MOVE_24('\\uf330'),\n    COPY_SELECT_20('\\uf9b4'),\n    COUCH_12('\\uf9b5'),\n    COUCH_24('\\uf9b6'),\n    CROP_20('\\uf9b7'),\n    CROP_24('\\uf331'),\n    CROP_INTERIM_24('\\uf332'),\n    CROP_INTERIM_OFF_24('\\uf333'),\n    CUBE_16('\\uf334'),\n    CUBE_20('\\uf335'),\n    CUBE_24('\\uf336'),\n    CURRENCY_16('\\uf337'),\n    CURRENCY_20('\\uf338'),\n    CURRENCY_24('\\uf339'),\n    CURRENCY_DOLLAR_RUPEE_16('\\uf9b8'),\n    CURRENCY_DOLLAR_RUPEE_20('\\uf9b9'),\n    CURRENCY_DOLLAR_RUPEE_24('\\uf9ba'),\n    CURSOR_20('\\uf9bb'),\n    CURSOR_24('\\uf9bc'),\n    CURSOR_HOVER_16('\\uf9bd'),\n    CURSOR_HOVER_20('\\uf9be'),\n    CURSOR_HOVER_24('\\uf9bf'),\n    CURSOR_HOVER_28('\\uf9c0'),\n    CURSOR_HOVER_32('\\uf9c1'),\n    CURSOR_HOVER_48('\\uf9c2'),\n    CURSOR_HOVER_OFF_16('\\uf9c3'),\n    CURSOR_HOVER_OFF_20('\\uf9c4'),\n    CURSOR_HOVER_OFF_24('\\uf9c5'),\n    CURSOR_HOVER_OFF_28('\\uf9c6'),\n    CURSOR_HOVER_OFF_48('\\uf9c7'),\n    CUT_20('\\uf33a'),\n    CUT_24('\\uf33b'),\n    DARK_THEME_24('\\uf33c'),\n    DATA_AREA_24('\\uf33d'),\n    DATA_BAR_HORIZONTAL_24('\\uf33e'),\n    DATA_BAR_VERTICAL_20('\\uf33f'),\n    DATA_BAR_VERTICAL_24('\\uf340'),\n    DATA_BAR_VERTICAL_ADD_24('\\uf9c8'),\n    DATA_FUNNEL_24('\\uf341'),\n    DATA_HISTOGRAM_24('\\uf342'),\n    DATA_LINE_24('\\uf343'),\n    DATA_PIE_20('\\uf344'),\n    DATA_PIE_24('\\uf345'),\n    DATA_SCATTER_24('\\uf346'),\n    DATA_SUNBURST_24('\\uf347'),\n    DATA_TREEMAP_24('\\uf348'),\n    DATA_USAGE_20('\\uf9c9'),\n    DATA_USAGE_24('\\uf349'),\n    DATA_WATERFALL_24('\\uf34a'),\n    DATA_WHISKER_24('\\uf34b'),\n    DECIMAL_ARROW_LEFT_24('\\uf9ca'),\n    DECIMAL_ARROW_RIGHT_24('\\uf9cb'),\n    DELETE_16('\\uf9cc'),\n    DELETE_20('\\uf34c'),\n    DELETE_24('\\uf34d'),\n    DELETE_28('\\uf34e'),\n    DELETE_48('\\uf34f'),\n    DELETE_FOREVER_24('\\uf350'),\n    DELETE_FOREVER_28('\\uf351'),\n    DELETE_OFF_20('\\uf352'),\n    DELETE_OFF_24('\\uf353'),\n    DENTIST_12('\\uf9cd'),\n    DENTIST_16('\\uf9ce'),\n    DENTIST_20('\\uf9cf'),\n    DENTIST_24('\\uf354'),\n    DENTIST_28('\\uf9d0'),\n    DENTIST_48('\\uf9d1'),\n    DESIGN_IDEAS_16('\\uf355'),\n    DESIGN_IDEAS_20('\\uf356'),\n    DESIGN_IDEAS_24('\\uf357'),\n    DESKTOP_16('\\uf358'),\n    DESKTOP_20('\\uf359'),\n    DESKTOP_24('\\uf35a'),\n    DESKTOP_28('\\uf35b'),\n    DEVELOPER_BOARD_24('\\uf35c'),\n    DEVICE_EQ_24('\\uf35d'),\n    DIALPAD_20('\\uf35e'),\n    DIALPAD_24('\\uf35f'),\n    DIALPAD_OFF_24('\\uf360'),\n    DICTIONARY_20('\\uf361'),\n    DICTIONARY_24('\\uf362'),\n    DICTIONARY_ADD_20('\\uf363'),\n    DICTIONARY_ADD_24('\\uf364'),\n    DIRECTIONS_20('\\uf365'),\n    DIRECTIONS_24('\\uf366'),\n    DISMISS_12('\\uf367'),\n    DISMISS_16('\\uf368'),\n    DISMISS_20('\\uf369'),\n    DISMISS_24('\\uf36a'),\n    DISMISS_28('\\uf36b'),\n    DISMISS_CIRCLE_16('\\uf36c'),\n    DISMISS_CIRCLE_20('\\uf36d'),\n    DISMISS_CIRCLE_24('\\uf36e'),\n    DISMISS_CIRCLE_28('\\uf9d2'),\n    DISMISS_CIRCLE_48('\\uf36f'),\n    DIVIDER_SHORT_24('\\uf370'),\n    DIVIDER_TALL_24('\\uf371'),\n    DOCK_24('\\uf372'),\n    DOCK_LEFT_16('\\uf373'),\n    DOCK_LEFT_20('\\uf374'),\n    DOCK_LEFT_24('\\uf375'),\n    DOCK_LEFT_28('\\uf9d3'),\n    DOCK_LEFT_48('\\uf9d4'),\n    DOCK_RIGHT_16('\\uf9d5'),\n    DOCK_RIGHT_20('\\uf9d6'),\n    DOCK_RIGHT_24('\\uf9d7'),\n    DOCK_RIGHT_28('\\uf9d8'),\n    DOCK_RIGHT_48('\\uf9d9'),\n    DOCK_ROW_24('\\uf376'),\n    DOCTOR_12('\\uf9da'),\n    DOCTOR_16('\\uf9db'),\n    DOCTOR_20('\\uf9dc'),\n    DOCTOR_24('\\uf377'),\n    DOCTOR_28('\\uf9dd'),\n    DOCTOR_48('\\uf9de'),\n    DOCUMENT_16('\\uf9df'),\n    DOCUMENT_20('\\uf378'),\n    DOCUMENT_24('\\uf379'),\n    DOCUMENT_28('\\uf37a'),\n    DOCUMENT_48('\\uf9e0'),\n    DOCUMENT_ADD_16('\\uf9e1'),\n    DOCUMENT_ADD_20('\\uf9e2'),\n    DOCUMENT_ADD_24('\\uf9e3'),\n    DOCUMENT_ADD_28('\\uf9e4'),\n    DOCUMENT_ADD_48('\\uf9e5'),\n    DOCUMENT_ARROW_LEFT_16('\\uf9e6'),\n    DOCUMENT_ARROW_LEFT_20('\\uf9e7'),\n    DOCUMENT_ARROW_LEFT_24('\\uf9e8'),\n    DOCUMENT_ARROW_LEFT_28('\\uf9e9'),\n    DOCUMENT_ARROW_LEFT_48('\\uf9ea'),\n    DOCUMENT_AUTOSAVE_24('\\uf37b'),\n    DOCUMENT_BRIEFCASE_20('\\uf37c'),\n    DOCUMENT_BRIEFCASE_24('\\uf37d'),\n    DOCUMENT_CATCH_UP_16('\\uf9eb'),\n    DOCUMENT_CATCH_UP_20('\\uf9ec'),\n    DOCUMENT_CATCH_UP_24('\\uf37e'),\n    DOCUMENT_COPY_16('\\uf37f'),\n    DOCUMENT_COPY_20('\\uf380'),\n    DOCUMENT_COPY_24('\\uf381'),\n    DOCUMENT_COPY_48('\\uf382'),\n    DOCUMENT_DISMISS_20('\\uf383'),\n    DOCUMENT_DISMISS_24('\\uf384'),\n    DOCUMENT_EDIT_16('\\uf385'),\n    DOCUMENT_EDIT_20('\\uf386'),\n    DOCUMENT_EDIT_24('\\uf387'),\n    DOCUMENT_ENDNOTE_20('\\uf388'),\n    DOCUMENT_ENDNOTE_24('\\uf389'),\n    DOCUMENT_ERROR_16('\\uf38a'),\n    DOCUMENT_ERROR_20('\\uf38b'),\n    DOCUMENT_ERROR_24('\\uf38c'),\n    DOCUMENT_FOOTER_24('\\uf38d'),\n    DOCUMENT_FOOTER_REMOVE_24('\\uf38e'),\n    DOCUMENT_HEADER_24('\\uf38f'),\n    DOCUMENT_HEADER_FOOTER_20('\\uf390'),\n    DOCUMENT_HEADER_FOOTER_24('\\uf391'),\n    DOCUMENT_HEADER_REMOVE_24('\\uf392'),\n    DOCUMENT_LANDSCAPE_20('\\uf393'),\n    DOCUMENT_LANDSCAPE_24('\\uf394'),\n    DOCUMENT_LANDSCAPE_DATA_24('\\uf9ed'),\n    DOCUMENT_LANDSCAPE_SPLIT_20('\\uf9ee'),\n    DOCUMENT_LANDSCAPE_SPLIT_HINT_20('\\uf9ef'),\n    DOCUMENT_MARGINS_20('\\uf395'),\n    DOCUMENT_MARGINS_24('\\uf396'),\n    DOCUMENT_NONE_20('\\uf397'),\n    DOCUMENT_NONE_24('\\uf398'),\n    DOCUMENT_ONE_PAGE_20('\\uf399'),\n    DOCUMENT_ONE_PAGE_24('\\uf39a'),\n    DOCUMENT_PAGE_24('\\uf39b'),\n    DOCUMENT_PAGE_BOTTOM_CENTER_20('\\uf39c'),\n    DOCUMENT_PAGE_BOTTOM_CENTER_24('\\uf39d'),\n    DOCUMENT_PAGE_BOTTOM_LEFT_20('\\uf39e'),\n    DOCUMENT_PAGE_BOTTOM_LEFT_24('\\uf39f'),\n    DOCUMENT_PAGE_BOTTOM_RIGHT_20('\\uf3a0'),\n    DOCUMENT_PAGE_BOTTOM_RIGHT_24('\\uf3a1'),\n    DOCUMENT_PAGE_BREAK_20('\\uf9f0'),\n    DOCUMENT_PAGE_BREAK_24('\\uf3a2'),\n    DOCUMENT_PAGE_NUMBER_20('\\uf3a3'),\n    DOCUMENT_PAGE_NUMBER_24('\\uf3a4'),\n    DOCUMENT_PAGE_TOP_CENTER_20('\\uf3a5'),\n    DOCUMENT_PAGE_TOP_CENTER_24('\\uf3a6'),\n    DOCUMENT_PAGE_TOP_LEFT_20('\\uf3a7'),\n    DOCUMENT_PAGE_TOP_LEFT_24('\\uf3a8'),\n    DOCUMENT_PAGE_TOP_RIGHT_20('\\uf3a9'),\n    DOCUMENT_PAGE_TOP_RIGHT_24('\\uf3aa'),\n    DOCUMENT_PDF_16('\\uf3ab'),\n    DOCUMENT_PDF_20('\\uf3ac'),\n    DOCUMENT_PDF_24('\\uf3ad'),\n    DOCUMENT_SEARCH_20('\\uf3ae'),\n    DOCUMENT_SEARCH_24('\\uf3af'),\n    DOCUMENT_TOOLBOX_20('\\uf3b0'),\n    DOCUMENT_TOOLBOX_24('\\uf3b1'),\n    DOCUMENT_TOP_CENTER_20('\\uf3b2'),\n    DOCUMENT_TOP_LEFT_20('\\uf3b3'),\n    DOCUMENT_TOP_RIGHT_20('\\uf3b4'),\n    DOCUMENT_UNKNOWN_16('\\uf3b5'),\n    DOCUMENT_UNKNOWN_20('\\uf3b6'),\n    DOCUMENT_UNKNOWN_24('\\uf3b7'),\n    DOCUMENT_WIDTH_20('\\uf3b8'),\n    DOCUMENT_WIDTH_24('\\uf3b9'),\n    DOUBLE_SWIPE_DOWN_24('\\uf3ba'),\n    DOUBLE_SWIPE_UP_24('\\uf3bb'),\n    DOUBLE_TAP_SWIPE_DOWN_24('\\uf3bc'),\n    DOUBLE_TAP_SWIPE_UP_24('\\uf3bd'),\n    DRAFTS_16('\\uf3be'),\n    DRAFTS_20('\\uf3bf'),\n    DRAFTS_24('\\uf3c0'),\n    DRAG_24('\\uf3c1'),\n    DRINK_24('\\uf3c2'),\n    DRINK_BEER_16('\\uf9f1'),\n    DRINK_BEER_20('\\uf9f2'),\n    DRINK_BEER_24('\\uf3c3'),\n    DRINK_COFFEE_16('\\uf9f3'),\n    DRINK_COFFEE_20('\\uf3c4'),\n    DRINK_COFFEE_24('\\uf3c5'),\n    DRINK_MARGARITA_16('\\uf9f4'),\n    DRINK_MARGARITA_20('\\uf9f5'),\n    DRINK_MARGARITA_24('\\uf3c6'),\n    DRINK_WINE_16('\\uf9f6'),\n    DRINK_WINE_20('\\uf9f7'),\n    DRINK_WINE_24('\\uf3c7'),\n    DUAL_SCREEN_24('\\uf3c8'),\n    DUAL_SCREEN_ADD_24('\\uf3c9'),\n    DUAL_SCREEN_ARROW_RIGHT_24('\\uf3ca'),\n    DUAL_SCREEN_CLOCK_24('\\uf3cb'),\n    DUAL_SCREEN_DESKTOP_24('\\uf3cc'),\n    DUAL_SCREEN_ERROR_24('\\uf3cd'),\n    DUAL_SCREEN_GROUP_24('\\uf3ce'),\n    DUAL_SCREEN_LOCK_24('\\uf3cf'),\n    DUAL_SCREEN_MIRROR_24('\\uf3d0'),\n    DUAL_SCREEN_PAGINATION_24('\\uf3d1'),\n    DUAL_SCREEN_SETTINGS_24('\\uf3d2'),\n    DUAL_SCREEN_SPAN_24('\\uf9f8'),\n    DUAL_SCREEN_STATUS_BAR_24('\\uf3d3'),\n    DUAL_SCREEN_TABLET_24('\\uf3d4'),\n    DUAL_SCREEN_UPDATE_24('\\uf3d5'),\n    DUAL_SCREEN_VERTICAL_SCROLL_24('\\uf3d6'),\n    DUAL_SCREEN_VIBRATE_24('\\uf3d7'),\n    EARTH_16('\\uf3d8'),\n    EARTH_20('\\uf3d9'),\n    EARTH_24('\\uf3da'),\n    EDIT_16('\\uf3db'),\n    EDIT_20('\\uf3dc'),\n    EDIT_24('\\uf3dd'),\n    EDIT_32('\\uf9f9'),\n    EDIT_OFF_16('\\uf9fa'),\n    EDIT_OFF_24('\\uf9fb'),\n    EDIT_SETTINGS_24('\\uf9fc'),\n    EMOJI_16('\\uf3de'),\n    EMOJI_20('\\uf3df'),\n    EMOJI_24('\\uf3e0'),\n    EMOJI_ADD_16('\\uf9fd'),\n    EMOJI_ADD_24('\\uf3e1'),\n    EMOJI_ANGRY_20('\\uf3e2'),\n    EMOJI_ANGRY_24('\\uf3e3'),\n    EMOJI_HAND_24('\\uf9fe'),\n    EMOJI_HAND_28('\\uf9ff'),\n    EMOJI_LAUGH_20('\\uf3e4'),\n    EMOJI_LAUGH_24('\\uf3e5'),\n    EMOJI_MEH_20('\\uf3e6'),\n    EMOJI_MEH_24('\\uf3e7'),\n    EMOJI_SAD_20('\\uf3e8'),\n    EMOJI_SAD_24('\\uf3e9'),\n    EMOJI_SURPRISE_20('\\uf3ea'),\n    EMOJI_SURPRISE_24('\\uf3eb'),\n    ERASER_20('\\ufa00'),\n    ERASER_24('\\ufa01'),\n    ERASER_MEDIUM_24('\\ufa02'),\n    ERASER_SEGMENT_24('\\ufa03'),\n    ERASER_SMALL_24('\\ufa04'),\n    ERASER_TOOL_24('\\uf3ee'),\n    ERASE_20('\\uf3ec'),\n    ERASE_24('\\uf3ed'),\n    ERROR_CIRCLE_12('\\ufa05'),\n    ERROR_CIRCLE_16('\\uf3ef'),\n    ERROR_CIRCLE_20('\\uf3f0'),\n    ERROR_CIRCLE_24('\\uf3f1'),\n    EXPORT_24('\\uf3f2'),\n    EXTENDED_DOCK_24('\\uf3f3'),\n    EXTENSION_20('\\uf3f4'),\n    EXTENSION_24('\\uf3f5'),\n    EYE_HIDE_20('\\uf3f6'),\n    EYE_HIDE_24('\\uf3f7'),\n    EYE_SHOW_12('\\uf3f8'),\n    EYE_SHOW_16('\\uf3f9'),\n    EYE_SHOW_20('\\uf3fa'),\n    EYE_SHOW_24('\\uf3fb'),\n    EYE_TRACKING_16('\\ufa06'),\n    EYE_TRACKING_20('\\ufa07'),\n    EYE_TRACKING_24('\\ufa08'),\n    EYE_TRACKING_OFF_16('\\ufa09'),\n    EYE_TRACKING_OFF_20('\\ufa0a'),\n    EYE_TRACKING_OFF_24('\\ufa0b'),\n    FAST_ACCELERATION_24('\\uf3fc'),\n    FAST_FORWARD_20('\\uf3fd'),\n    FAST_FORWARD_24('\\uf3fe'),\n    FAST_MODE_16('\\uf3ff'),\n    FAST_MODE_20('\\uf400'),\n    FAST_MODE_24('\\uf401'),\n    FAST_MODE_28('\\uf402'),\n    FAVORITES_20('\\uf403'),\n    FAVORITES_24('\\uf404'),\n    FILTER_20('\\uf405'),\n    FILTER_24('\\uf406'),\n    FILTER_28('\\uf407'),\n    FINGERPRINT_24('\\uf408'),\n    FINGERPRINT_48('\\ufa10'),\n    FIXED_WIDTH_24('\\ufa11'),\n    FLAG_16('\\uf409'),\n    FLAG_20('\\uf40a'),\n    FLAG_24('\\uf40b'),\n    FLAG_28('\\uf40c'),\n    FLAG_48('\\uf40d'),\n    FLAG_OFF_24('\\uf40e'),\n    FLAG_OFF_28('\\uf40f'),\n    FLAG_OFF_48('\\uf410'),\n    FLAG_PRIDE_16('\\uf411'),\n    FLAG_PRIDE_20('\\uf412'),\n    FLAG_PRIDE_24('\\uf413'),\n    FLAG_PRIDE_28('\\uf414'),\n    FLAG_PRIDE_48('\\uf415'),\n    FLASHLIGHT_24('\\uf41a'),\n    FLASHLIGHT_OFF_24('\\uf41b'),\n    FLASH_AUTO_24('\\uf416'),\n    FLASH_OFF_24('\\uf417'),\n    FLASH_ON_20('\\uf418'),\n    FLASH_ON_24('\\uf419'),\n    FLIP_HORIZONTAL_24('\\ufa12'),\n    FLIP_VERTICAL_24('\\ufa13'),\n    FLUENT_32('\\ufa14'),\n    FLUENT_48('\\ufa15'),\n    FLUID_20('\\ufa16'),\n    FLUID_24('\\ufa17'),\n    FOLDER_20('\\uf41c'),\n    FOLDER_24('\\uf41d'),\n    FOLDER_28('\\uf41e'),\n    FOLDER_48('\\uf41f'),\n    FOLDER_ADD_20('\\uf420'),\n    FOLDER_ADD_24('\\uf421'),\n    FOLDER_ADD_28('\\uf422'),\n    FOLDER_ADD_48('\\uf423'),\n    FOLDER_BRIEFCASE_20('\\uf424'),\n    FOLDER_JUNK_20('\\uf425'),\n    FOLDER_JUNK_24('\\uf426'),\n    FOLDER_JUNK_28('\\uf427'),\n    FOLDER_JUNK_48('\\uf428'),\n    FOLDER_LINK_20('\\uf429'),\n    FOLDER_LINK_24('\\uf42a'),\n    FOLDER_LINK_28('\\uf42b'),\n    FOLDER_LINK_48('\\uf42c'),\n    FOLDER_MOVE_16('\\ufa18'),\n    FOLDER_MOVE_20('\\uf42d'),\n    FOLDER_MOVE_24('\\uf42e'),\n    FOLDER_MOVE_28('\\uf42f'),\n    FOLDER_MOVE_48('\\uf430'),\n    FOLDER_OPEN_16('\\uf431'),\n    FOLDER_OPEN_20('\\uf432'),\n    FOLDER_OPEN_24('\\uf433'),\n    FOLDER_OPEN_VERTICAL_20('\\uf434'),\n    FOLDER_PUBLIC_16('\\uf435'),\n    FOLDER_PUBLIC_20('\\uf436'),\n    FOLDER_PUBLIC_24('\\uf437'),\n    FOLDER_ZIP_16('\\uf438'),\n    FOLDER_ZIP_20('\\uf439'),\n    FOLDER_ZIP_24('\\uf43a'),\n    FONT_DECREASE_20('\\uf43b'),\n    FONT_DECREASE_24('\\uf43c'),\n    FONT_INCREASE_20('\\uf43d'),\n    FONT_INCREASE_24('\\uf43e'),\n    FONT_SPACE_TRACKING_IN_16('\\uf43f'),\n    FONT_SPACE_TRACKING_IN_20('\\uf440'),\n    FONT_SPACE_TRACKING_IN_24('\\uf441'),\n    FONT_SPACE_TRACKING_IN_28('\\uf442'),\n    FONT_SPACE_TRACKING_OUT_16('\\uf443'),\n    FONT_SPACE_TRACKING_OUT_20('\\uf444'),\n    FONT_SPACE_TRACKING_OUT_24('\\uf445'),\n    FONT_SPACE_TRACKING_OUT_28('\\uf446'),\n    FOOD_20('\\uf447'),\n    FOOD_24('\\uf448'),\n    FOOD_CAKE_24('\\uf449'),\n    FOOD_EGG_16('\\ufa19'),\n    FOOD_EGG_20('\\ufa1a'),\n    FOOD_EGG_24('\\uf44a'),\n    FOOD_TOAST_16('\\ufa1b'),\n    FOOD_TOAST_20('\\ufa1c'),\n    FOOD_TOAST_24('\\uf44b'),\n    FORM_NEW_24('\\uf44c'),\n    FORM_NEW_28('\\uf44d'),\n    FORM_NEW_48('\\uf44e'),\n    FORWARD_20('\\uf44f'),\n    FORWARD_24('\\uf450'),\n    FPS_240_24('\\uf451'),\n    FPS_960_24('\\uf452'),\n    FULL_SCREEN_ZOOM_24('\\uf453'),\n    F_STOP_16('\\ufa0c'),\n    F_STOP_20('\\ufa0d'),\n    F_STOP_24('\\ufa0e'),\n    F_STOP_28('\\ufa0f'),\n    GALLERY_24('\\uf454'),\n    GAMES_24('\\uf455'),\n    GAVEL_24('\\ufa1d'),\n    GAVEL_32('\\ufa1e'),\n    GESTURE_24('\\uf456'),\n    GIFT_20('\\uf459'),\n    GIFT_24('\\uf45a'),\n    GIF_20('\\uf457'),\n    GIF_24('\\uf458'),\n    GLANCE_24('\\uf45b'),\n    GLASSES_16('\\ufa1f'),\n    GLASSES_20('\\ufa20'),\n    GLASSES_24('\\uf45c'),\n    GLASSES_28('\\ufa21'),\n    GLASSES_48('\\ufa22'),\n    GLASSES_OFF_16('\\ufa23'),\n    GLASSES_OFF_20('\\ufa24'),\n    GLASSES_OFF_24('\\uf45d'),\n    GLASSES_OFF_28('\\ufa25'),\n    GLASSES_OFF_48('\\ufa26'),\n    GLOBE_16('\\ufa27'),\n    GLOBE_20('\\uf45e'),\n    GLOBE_24('\\uf45f'),\n    GLOBE_ADD_24('\\uf460'),\n    GLOBE_CLOCK_24('\\uf461'),\n    GLOBE_DESKTOP_24('\\uf462'),\n    GLOBE_LOCATION_24('\\uf463'),\n    GLOBE_SEARCH_24('\\uf464'),\n    GLOBE_VIDEO_24('\\uf465'),\n    GRID_20('\\uf466'),\n    GRID_24('\\uf467'),\n    GRID_28('\\uf468'),\n    GROUP_20('\\uf469'),\n    GROUP_24('\\uf46a'),\n    GROUP_LIST_24('\\uf46b'),\n    GUEST_16('\\uf46c'),\n    GUEST_20('\\uf46d'),\n    GUEST_24('\\uf46e'),\n    GUEST_28('\\uf46f'),\n    GUEST_ADD_24('\\uf470'),\n    HANDSHAKE_16('\\uf472'),\n    HANDSHAKE_20('\\uf473'),\n    HANDSHAKE_24('\\uf474'),\n    HAND_LEFT_20('\\ufa28'),\n    HAND_RAISE_24('\\uf471'),\n    HAND_RIGHT_24('\\ufa29'),\n    HAND_RIGHT_28('\\ufa2a'),\n    HAT_GRADUATION_16('\\ufa2b'),\n    HAT_GRADUATION_20('\\ufa2c'),\n    HAT_GRADUATION_24('\\ufa2d'),\n    HDR_24('\\uf475'),\n    HD_16('\\ufa2e'),\n    HD_20('\\ufa2f'),\n    HD_24('\\ufa30'),\n    HEADPHONES_24('\\uf476'),\n    HEADPHONES_28('\\uf477'),\n    HEADSET_16('\\ufa31'),\n    HEADSET_20('\\ufa32'),\n    HEADSET_24('\\uf478'),\n    HEADSET_28('\\uf479'),\n    HEADSET_48('\\ufa33'),\n    HEADSET_VR_20('\\uf47a'),\n    HEADSET_VR_24('\\uf47b'),\n    HEART_16('\\uf47c'),\n    HEART_20('\\uf47d'),\n    HEART_24('\\uf47e'),\n    HEART_PULSE_24('\\ufa34'),\n    HEART_PULSE_32('\\ufa35'),\n    HIGHLIGHT_16('\\uf47f'),\n    HIGHLIGHT_20('\\uf480'),\n    HIGHLIGHT_24('\\uf481'),\n    HIGHLIGHT_ACCENT_16('\\uf482'),\n    HIGHLIGHT_ACCENT_20('\\uf483'),\n    HIGHLIGHT_ACCENT_24('\\uf484'),\n    HISTORY_20('\\uf485'),\n    HISTORY_24('\\uf486'),\n    HOME_16('\\ufa36'),\n    HOME_20('\\uf487'),\n    HOME_24('\\uf488'),\n    HOME_28('\\uf489'),\n    HOME_32('\\ufa37'),\n    HOME_48('\\ufa38'),\n    HOME_ADD_24('\\uf48a'),\n    HOME_CHECKMARK_24('\\uf48b'),\n    ICONS_20('\\uf48c'),\n    ICONS_24('\\uf48d'),\n    IMAGE_16('\\uf48e'),\n    IMAGE_20('\\uf48f'),\n    IMAGE_24('\\uf490'),\n    IMAGE_28('\\uf491'),\n    IMAGE_48('\\uf492'),\n    IMAGE_ADD_24('\\uf493'),\n    IMAGE_ALT_TEXT_20('\\uf494'),\n    IMAGE_ALT_TEXT_24('\\uf495'),\n    IMAGE_ARROW_COUNTERCLOCKWISE_24('\\ufa39'),\n    IMAGE_COPY_20('\\uf496'),\n    IMAGE_COPY_24('\\uf497'),\n    IMAGE_COPY_28('\\uf498'),\n    IMAGE_EDIT_16('\\uf499'),\n    IMAGE_EDIT_20('\\uf49a'),\n    IMAGE_EDIT_24('\\uf49b'),\n    IMAGE_LIBRARY_20('\\uf49c'),\n    IMAGE_LIBRARY_24('\\uf49d'),\n    IMAGE_LIBRARY_28('\\uf49e'),\n    IMAGE_OFF_24('\\uf49f'),\n    IMAGE_SEARCH_20('\\uf4a0'),\n    IMAGE_SEARCH_24('\\uf4a1'),\n    IMMERSIVE_READER_20('\\uf4a2'),\n    IMMERSIVE_READER_24('\\uf4a3'),\n    IMPORTANT_12('\\uf4a4'),\n    IMPORTANT_16('\\uf4a5'),\n    IMPORTANT_20('\\uf4a6'),\n    IMPORTANT_24('\\uf4a7'),\n    INCOGNITO_24('\\uf4a8'),\n    INFO_16('\\uf4a9'),\n    INFO_20('\\uf4aa'),\n    INFO_24('\\uf4ab'),\n    INFO_28('\\uf4ac'),\n    INFO_SHIELD_20('\\ufa3a'),\n    INKING_TOOL_16('\\uf4ad'),\n    INKING_TOOL_20('\\uf4ae'),\n    INKING_TOOL_24('\\uf4af'),\n    INKING_TOOL_ACCENT_16('\\uf4b0'),\n    INKING_TOOL_ACCENT_20('\\uf4b1'),\n    INKING_TOOL_ACCENT_24('\\uf4b2'),\n    INPRIVATE_ACCOUNT_16('\\uf4b3'),\n    INPRIVATE_ACCOUNT_20('\\uf4b4'),\n    INPRIVATE_ACCOUNT_24('\\uf4b5'),\n    INPRIVATE_ACCOUNT_28('\\uf4b6'),\n    INSERT_20('\\uf4b7'),\n    INSPECT_20('\\uf4b8'),\n    INSPECT_24('\\uf4b9'),\n    IOS_ARROW_LEFT_24('\\uf4ba'),\n    IOS_CHEVRON_24('\\uf4bb'),\n    IOS_CHEVRON_RIGHT_20('\\uf4bc'),\n    JAVASCRIPT_16('\\uf4bd'),\n    JAVASCRIPT_20('\\uf4be'),\n    JAVASCRIPT_24('\\uf4bf'),\n    KEYBOARD_20('\\uf4c2'),\n    KEYBOARD_24('\\uf4c3'),\n    KEYBOARD_DOCK_24('\\uf4c4'),\n    KEYBOARD_LAYOUT_FLOAT_24('\\uf4c5'),\n    KEYBOARD_LAYOUT_ONE_HANDED_LEFT_24('\\uf4c6'),\n    KEYBOARD_LAYOUT_RESIZE_24('\\uf4c7'),\n    KEYBOARD_LAYOUT_SPLIT_24('\\uf4c8'),\n    KEYBOARD_SHIFT_24('\\uf4c9'),\n    KEYBOARD_SHIFT_UPPERCASE_24('\\uf4ca'),\n    KEYBOARD_TAB_24('\\uf4cb'),\n    KEY_20('\\uf4c0'),\n    KEY_24('\\uf4c1'),\n    KEY_MULTIPLE_20('\\ufa3b'),\n    LAPTOP_16('\\uf4cc'),\n    LAPTOP_20('\\uf4cd'),\n    LAPTOP_24('\\uf4ce'),\n    LAPTOP_28('\\uf4cf'),\n    LARGE_16('\\uf4d0'),\n    LARGE_20('\\uf4d1'),\n    LARGE_24('\\uf4d2'),\n    LASSO_24('\\uf4d3'),\n    LAUNCHER_SETTINGS_24('\\uf4d4'),\n    LAYER_20('\\uf4d5'),\n    LAYER_24('\\uf4d6'),\n    LEAF_16('\\uf4d7'),\n    LEAF_20('\\uf4d8'),\n    LEAF_24('\\uf4d9'),\n    LEAF_TWO_16('\\uf4da'),\n    LEAF_TWO_20('\\uf4db'),\n    LEAF_TWO_24('\\uf4dc'),\n    LIBRARY_24('\\uf4dd'),\n    LIBRARY_28('\\uf4de'),\n    LIGHTBULB_16('\\uf4df'),\n    LIGHTBULB_20('\\uf4e0'),\n    LIGHTBULB_24('\\uf4e1'),\n    LIGHTBULB_CIRCLE_24('\\uf4e2'),\n    LIGHTBULB_FILAMENT_16('\\uf4e3'),\n    LIGHTBULB_FILAMENT_20('\\uf4e4'),\n    LIGHTBULB_FILAMENT_24('\\uf4e5'),\n    LIKERT_16('\\uf4e7'),\n    LIKERT_20('\\uf4e8'),\n    LIKERT_24('\\uf4e9'),\n    LIKE_16('\\uf4e6'),\n    LINE_HORIZONTAL_1_20('\\uf4ea'),\n    LINE_HORIZONTAL_3_20('\\uf4eb'),\n    LINE_HORIZONTAL_5_20('\\uf4ec'),\n    LINE_HORIZONTAL_5_ERROR_20('\\ufa3c'),\n    LINK_16('\\uf4ed'),\n    LINK_20('\\uf4ee'),\n    LINK_24('\\uf4ef'),\n    LINK_28('\\uf4f0'),\n    LINK_48('\\uf4f1'),\n    LINK_EDIT_16('\\uf4f2'),\n    LINK_EDIT_20('\\uf4f3'),\n    LINK_EDIT_24('\\uf4f4'),\n    LINK_REMOVE_20('\\uf4f5'),\n    LINK_SQUARE_12('\\ufa3d'),\n    LINK_SQUARE_16('\\ufa3e'),\n    LINK_SQUARE_24('\\uf4f6'),\n    LIST_20('\\uf4f7'),\n    LIST_24('\\uf4f8'),\n    LIST_28('\\uf4f9'),\n    LIVE_20('\\uf4fa'),\n    LIVE_24('\\uf4fb'),\n    LOCAL_LANGUAGE_16('\\uf4fc'),\n    LOCAL_LANGUAGE_20('\\uf4fd'),\n    LOCAL_LANGUAGE_24('\\uf4fe'),\n    LOCAL_LANGUAGE_28('\\uf4ff'),\n    LOCATION_12('\\uf500'),\n    LOCATION_16('\\uf501'),\n    LOCATION_20('\\uf502'),\n    LOCATION_24('\\uf503'),\n    LOCATION_28('\\uf504'),\n    LOCATION_48('\\ufa3f'),\n    LOCATION_LIVE_20('\\uf505'),\n    LOCATION_LIVE_24('\\uf506'),\n    LOCATION_NOT_FOUND_24('\\uf507'),\n    LOCATION_OFF_16('\\ufa40'),\n    LOCATION_OFF_20('\\ufa41'),\n    LOCATION_OFF_24('\\ufa42'),\n    LOCATION_OFF_28('\\ufa43'),\n    LOCATION_OFF_48('\\ufa44'),\n    LOCK_12('\\uf508'),\n    LOCK_16('\\uf509'),\n    LOCK_20('\\uf50a'),\n    LOCK_24('\\uf50b'),\n    LOCK_MULTIPLE_24('\\ufa45'),\n    LOCK_SHIELD_20('\\uf50c'),\n    LOCK_SHIELD_24('\\uf50d'),\n    LOCK_SHIELD_48('\\uf50e'),\n    LOTTERY_24('\\ufa46');\n\n    public static FluentUiFilledAL findByDescription(String description) {\n        for (FluentUiFilledAL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    FluentUiFilledAL(int code) {\n        this.description = \"fltfal-\" + name().toLowerCase().replace(\"_\", \"-\");\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/org/kordamp/ikonli/fluentui/FluentUiFilledALIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fluentui;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FluentUiFilledALIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fluentui/1.1.74/fonts/FluentSystemIcons-Filled.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"fltfal-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return FluentUiFilledAL.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"FluentSystemIcons-Filled\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/org/kordamp/ikonli/fluentui/FluentUiFilledALIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fluentui;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class FluentUiFilledALIkonProvider implements IkonProvider<FluentUiFilledAL> {\n    @Override\n    public Class<FluentUiFilledAL> getIkon() {\n        return FluentUiFilledAL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/org/kordamp/ikonli/fluentui/FluentUiFilledMZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fluentui;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum FluentUiFilledMZ implements Ikon {\n    MAGIC_WAND_16('\\ufa47'),\n    MAGIC_WAND_20('\\ufa48'),\n    MAGIC_WAND_24('\\uf50f'),\n    MAGIC_WAND_28('\\ufa49'),\n    MAGIC_WAND_48('\\ufa4a'),\n    MAIL_16('\\ufa4b'),\n    MAIL_20('\\uf510'),\n    MAIL_24('\\uf511'),\n    MAIL_28('\\uf512'),\n    MAIL_48('\\uf513'),\n    MAIL_ADD_24('\\uf514'),\n    MAIL_ALL_20('\\uf515'),\n    MAIL_ALL_24('\\uf516'),\n    MAIL_ALL_ACCOUNTS_24('\\uf517'),\n    MAIL_ALL_READ_20('\\uf518'),\n    MAIL_ALL_UNREAD_20('\\uf519'),\n    MAIL_CLOCK_20('\\uf51a'),\n    MAIL_COPY_20('\\uf51b'),\n    MAIL_COPY_24('\\uf51c'),\n    MAIL_INBOX_16('\\uf51d'),\n    MAIL_INBOX_20('\\uf51e'),\n    MAIL_INBOX_24('\\uf51f'),\n    MAIL_INBOX_28('\\uf520'),\n    MAIL_INBOX_ADD_16('\\uf521'),\n    MAIL_INBOX_ADD_20('\\uf522'),\n    MAIL_INBOX_ADD_24('\\uf523'),\n    MAIL_INBOX_ADD_28('\\uf524'),\n    MAIL_INBOX_DISMISS_16('\\uf525'),\n    MAIL_INBOX_DISMISS_20('\\uf526'),\n    MAIL_INBOX_DISMISS_24('\\uf527'),\n    MAIL_INBOX_DISMISS_28('\\uf528'),\n    MAIL_MOVE_TO_FOCUSSED_24('\\uf529'),\n    MAIL_OUTBOX_20('\\uf8e0'),\n    MAIL_OUTBOX_24('\\uf52a'),\n    MAIL_READ_16('\\ufa4c'),\n    MAIL_READ_20('\\uf52b'),\n    MAIL_READ_24('\\uf52c'),\n    MAIL_READ_28('\\uf52d'),\n    MAIL_READ_48('\\uf52e'),\n    MAIL_UNREAD_16('\\uf52f'),\n    MAIL_UNREAD_20('\\uf530'),\n    MAIL_UNREAD_24('\\uf531'),\n    MAIL_UNREAD_28('\\uf532'),\n    MAIL_UNREAD_48('\\uf533'),\n    MAIL_UNSUBSCRIBE_24('\\uf534'),\n    MALWARE_DETECTED_16('\\uf535'),\n    MALWARE_DETECTED_24('\\uf536'),\n    MANUFACTURER_24('\\uf537'),\n    MAP_24('\\uf538'),\n    MAP_DRIVE_16('\\uf539'),\n    MAP_DRIVE_20('\\uf53a'),\n    MAP_DRIVE_24('\\uf53b'),\n    MATCH_APP_LAYOUT_24('\\uf53c'),\n    MATH_FORMAT_LINEAR_24('\\ufa4d'),\n    MATH_FORMAT_PROFESSIONAL_24('\\ufa4e'),\n    MATH_FORMULA_24('\\ufa4f'),\n    MAXIMIZE_16('\\uf53d'),\n    MAXIMIZE_20('\\ufa50'),\n    MAXIMIZE_24('\\ufa51'),\n    MAXIMIZE_28('\\ufa52'),\n    MAXIMIZE_48('\\ufa53'),\n    MEET_NOW_16('\\ufa54'),\n    MEET_NOW_20('\\uf53e'),\n    MEET_NOW_24('\\uf53f'),\n    MEGAPHONE_16('\\uf540'),\n    MEGAPHONE_20('\\uf541'),\n    MEGAPHONE_24('\\uf542'),\n    MEGAPHONE_28('\\uf543'),\n    MEGAPHONE_OFF_24('\\uf544'),\n    MENTION_16('\\uf545'),\n    MENTION_20('\\uf546'),\n    MENTION_24('\\uf547'),\n    MERGE_24('\\uf548'),\n    MIC_OFF_12('\\uf549'),\n    MIC_OFF_16('\\uf54a'),\n    MIC_OFF_20('\\ufa55'),\n    MIC_OFF_24('\\uf54b'),\n    MIC_OFF_28('\\uf54c'),\n    MIC_OFF_48('\\ufa56'),\n    MIC_ON_16('\\uf54d'),\n    MIC_ON_20('\\uf54e'),\n    MIC_ON_24('\\uf54f'),\n    MIC_ON_28('\\uf550'),\n    MIC_ON_48('\\uf551'),\n    MIC_PROHIBITED_24('\\ufa57'),\n    MIC_SETTINGS_24('\\uf552'),\n    MIDI_20('\\uf553'),\n    MIDI_24('\\uf554'),\n    MINIMIZE_12('\\ufa58'),\n    MINIMIZE_16('\\ufa59'),\n    MINIMIZE_20('\\ufa5a'),\n    MINIMIZE_24('\\ufa5b'),\n    MINIMIZE_28('\\ufa5c'),\n    MINIMIZE_48('\\ufa5d'),\n    MISSING_METADATA_16('\\uf555'),\n    MISSING_METADATA_24('\\uf556'),\n    MOBILE_OPTIMIZED_24('\\uf557'),\n    MONEY_16('\\uf558'),\n    MONEY_20('\\uf559'),\n    MONEY_24('\\uf55a'),\n    MORE_16('\\uf55b'),\n    MORE_20('\\uf55c'),\n    MORE_24('\\uf55d'),\n    MORE_28('\\uf55e'),\n    MORE_48('\\uf55f'),\n    MORE_CIRCLE_20('\\ufa5e'),\n    MORE_VERTICAL_20('\\uf560'),\n    MORE_VERTICAL_24('\\uf561'),\n    MORE_VERTICAL_28('\\uf562'),\n    MORE_VERTICAL_48('\\uf563'),\n    MOVIES_AND_TV_16('\\ufa5f'),\n    MOVIES_AND_TV_20('\\ufa60'),\n    MOVIES_AND_TV_24('\\uf564'),\n    MULTISELECT_20('\\uf565'),\n    MULTISELECT_24('\\uf566'),\n    MUSIC_20('\\uf567'),\n    MUSIC_24('\\uf568'),\n    MUSIC_NOTES_16('\\ufa63'),\n    MUSIC_NOTES_24('\\ufa64'),\n    MUSIC_NOTE_20('\\ufa61'),\n    MUSIC_NOTE_24('\\ufa62'),\n    MY_LOCATION_24('\\uf569'),\n    NAVIGATION_20('\\uf56a'),\n    NAVIGATION_24('\\uf56b'),\n    NAVIGATION_UNREAD_24('\\ufa65'),\n    NETWORK_CHECK_24('\\uf56c'),\n    NEWS_20('\\uf56f'),\n    NEWS_24('\\uf570'),\n    NEWS_28('\\uf571'),\n    NEW_16('\\uf56d'),\n    NEW_24('\\uf56e'),\n    NEXT_16('\\uf572'),\n    NEXT_20('\\uf573'),\n    NEXT_24('\\uf574'),\n    NOTEBOOK_24('\\uf57a'),\n    NOTEBOOK_ERROR_24('\\uf57b'),\n    NOTEBOOK_LIGHTNING_24('\\uf57c'),\n    NOTEBOOK_QUESTION_MARK_24('\\uf57d'),\n    NOTEBOOK_SECTION_24('\\uf57e'),\n    NOTEBOOK_SYNC_24('\\uf57f'),\n    NOTEPAD_20('\\uf580'),\n    NOTEPAD_24('\\uf581'),\n    NOTEPAD_28('\\uf582'),\n    NOTE_20('\\uf575'),\n    NOTE_24('\\uf576'),\n    NOTE_ADD_16('\\uf577'),\n    NOTE_ADD_20('\\uf578'),\n    NOTE_ADD_24('\\uf579'),\n    NUMBER_ROW_16('\\uf583'),\n    NUMBER_ROW_20('\\uf584'),\n    NUMBER_ROW_24('\\uf585'),\n    NUMBER_SYMBOL_16('\\uf586'),\n    NUMBER_SYMBOL_20('\\uf587'),\n    NUMBER_SYMBOL_24('\\uf588'),\n    NUMBER_SYMBOL_DISMISS_24('\\ufa66'),\n    OFFICE_APPS_24('\\uf589'),\n    OFFICE_APPS_28('\\uf58a'),\n    OPEN_16('\\uf58b'),\n    OPEN_20('\\uf58c'),\n    OPEN_24('\\uf58d'),\n    OPEN_28('\\ufa67'),\n    OPEN_48('\\ufa68'),\n    OPEN_FOLDER_16('\\ufa69'),\n    OPEN_FOLDER_20('\\ufa6a'),\n    OPEN_FOLDER_24('\\uf58e'),\n    OPEN_FOLDER_28('\\ufa6b'),\n    OPEN_FOLDER_48('\\ufa6c'),\n    OPEN_IN_BROWSER_24('\\uf58f'),\n    OPEN_OFF_16('\\ufa6d'),\n    OPEN_OFF_20('\\ufa6e'),\n    OPEN_OFF_24('\\ufa6f'),\n    OPEN_OFF_28('\\ufa70'),\n    OPEN_OFF_48('\\ufa71'),\n    OPTIONS_16('\\uf590'),\n    OPTIONS_20('\\uf591'),\n    OPTIONS_24('\\uf592'),\n    ORGANIZATION_20('\\uf593'),\n    ORGANIZATION_24('\\uf594'),\n    ORGANIZATION_28('\\uf595'),\n    OWNER_24('\\uf596'),\n    PAGE_20('\\uf597'),\n    PAGE_FIT_16('\\uf598'),\n    PAGE_FIT_20('\\uf599'),\n    PAGE_FIT_24('\\uf59a'),\n    PAINT_BRUSH_16('\\uf59b'),\n    PAINT_BRUSH_20('\\uf59c'),\n    PAINT_BRUSH_24('\\uf59d'),\n    PAINT_BRUSH_ARROW_DOWN_24('\\ufa72'),\n    PAINT_BRUSH_ARROW_UP_24('\\ufa73'),\n    PAINT_BUCKET_16('\\uf59e'),\n    PAINT_BUCKET_20('\\uf59f'),\n    PAINT_BUCKET_24('\\uf5a0'),\n    PAIR_24('\\uf5a1'),\n    PANE_CLOSE_16('\\uf5a2'),\n    PANE_CLOSE_20('\\uf5a3'),\n    PANE_CLOSE_24('\\uf5a4'),\n    PANE_OPEN_16('\\uf5a5'),\n    PANE_OPEN_20('\\uf5a6'),\n    PANE_OPEN_24('\\uf5a7'),\n    PASSWORD_24('\\uf5a8'),\n    PATIENT_24('\\uf5a9'),\n    PAUSE_12('\\ufa74'),\n    PAUSE_16('\\uf5aa'),\n    PAUSE_20('\\uf5ab'),\n    PAUSE_24('\\uf5ac'),\n    PAUSE_48('\\uf5ad'),\n    PAYMENT_16('\\ufa75'),\n    PAYMENT_20('\\uf5ae'),\n    PAYMENT_24('\\uf5af'),\n    PAYMENT_28('\\ufa76'),\n    PEN_SETTINGS_24('\\uf5b0'),\n    PEOPLE_16('\\uf5b1'),\n    PEOPLE_20('\\uf5b2'),\n    PEOPLE_24('\\uf5b3'),\n    PEOPLE_28('\\uf5b4'),\n    PEOPLE_ADD_16('\\uf5b5'),\n    PEOPLE_ADD_20('\\uf5b6'),\n    PEOPLE_ADD_24('\\uf5b7'),\n    PEOPLE_AUDIENCE_24('\\uf5b8'),\n    PEOPLE_COMMUNITY_16('\\uf5b9'),\n    PEOPLE_COMMUNITY_20('\\uf5ba'),\n    PEOPLE_COMMUNITY_24('\\uf5bb'),\n    PEOPLE_COMMUNITY_28('\\uf5bc'),\n    PEOPLE_COMMUNITY_ADD_24('\\uf5bd'),\n    PEOPLE_PROHIBITED_16('\\ufa77'),\n    PEOPLE_PROHIBITED_20('\\uf5be'),\n    PEOPLE_SEARCH_24('\\uf5bf'),\n    PEOPLE_SETTINGS_20('\\uf5c0'),\n    PEOPLE_SWAP_16('\\ufa78'),\n    PEOPLE_SWAP_20('\\ufa79'),\n    PEOPLE_SWAP_24('\\ufa7a'),\n    PEOPLE_SWAP_28('\\ufa7b'),\n    PEOPLE_TEAM_16('\\uf5c1'),\n    PEOPLE_TEAM_20('\\uf5c2'),\n    PEOPLE_TEAM_24('\\uf5c3'),\n    PEOPLE_TEAM_28('\\uf5c4'),\n    PEOPLE_TEAM_ADD_20('\\ufa7c'),\n    PEOPLE_TEAM_ADD_24('\\ufa7d'),\n    PEOPLE_TEAM_DISMISS_24('\\ufa7e'),\n    PERSON_12('\\uf5c5'),\n    PERSON_16('\\uf5c6'),\n    PERSON_20('\\uf5c7'),\n    PERSON_24('\\uf5c8'),\n    PERSON_28('\\uf5c9'),\n    PERSON_48('\\uf5ca'),\n    PERSON_ACCOUNTS_24('\\uf5cb'),\n    PERSON_ADD_20('\\uf5cc'),\n    PERSON_ADD_24('\\uf5cd'),\n    PERSON_ARROW_LEFT_20('\\uf5ce'),\n    PERSON_ARROW_LEFT_24('\\uf5cf'),\n    PERSON_ARROW_RIGHT_16('\\uf5d0'),\n    PERSON_ARROW_RIGHT_20('\\uf5d1'),\n    PERSON_ARROW_RIGHT_24('\\uf5d2'),\n    PERSON_AVAILABLE_16('\\uf5d3'),\n    PERSON_AVAILABLE_20('\\ufa7f'),\n    PERSON_AVAILABLE_24('\\uf5d4'),\n    PERSON_BLOCK_24('\\uf5d5'),\n    PERSON_BOARD_16('\\uf5d6'),\n    PERSON_BOARD_20('\\uf5d7'),\n    PERSON_BOARD_24('\\uf5d8'),\n    PERSON_CALL_24('\\uf5d9'),\n    PERSON_CLOCK_16('\\ufa80'),\n    PERSON_CLOCK_20('\\ufa81'),\n    PERSON_CLOCK_24('\\ufa82'),\n    PERSON_DELETE_16('\\uf5da'),\n    PERSON_DELETE_20('\\ufa83'),\n    PERSON_DELETE_24('\\uf5db'),\n    PERSON_FEEDBACK_20('\\uf5dc'),\n    PERSON_FEEDBACK_24('\\uf5dd'),\n    PERSON_MAIL_16('\\ufa84'),\n    PERSON_MAIL_20('\\ufa85'),\n    PERSON_MAIL_24('\\ufa86'),\n    PERSON_MAIL_28('\\ufa87'),\n    PERSON_MAIL_48('\\ufa88'),\n    PERSON_PROHIBITED_20('\\uf5de'),\n    PERSON_PROHIBITED_24('\\ufa89'),\n    PERSON_QUESTION_MARK_16('\\uf5df'),\n    PERSON_QUESTION_MARK_20('\\uf5e0'),\n    PERSON_QUESTION_MARK_24('\\uf5e1'),\n    PERSON_SUPPORT_16('\\uf5e2'),\n    PERSON_SUPPORT_20('\\uf5e3'),\n    PERSON_SUPPORT_24('\\uf5e4'),\n    PERSON_SWAP_16('\\uf5e5'),\n    PERSON_SWAP_20('\\uf5e6'),\n    PERSON_SWAP_24('\\uf5e7'),\n    PERSON_VOICE_20('\\uf5e8'),\n    PERSON_VOICE_24('\\uf5e9'),\n    PHONE_16('\\ufa8a'),\n    PHONE_20('\\uf5ea'),\n    PHONE_24('\\uf5eb'),\n    PHONE_28('\\uf5ec'),\n    PHONE_ADD_NEW_APP_24('\\uf5ed'),\n    PHONE_DESKTOP_16('\\uf5ee'),\n    PHONE_DESKTOP_20('\\uf5ef'),\n    PHONE_DESKTOP_24('\\uf5f0'),\n    PHONE_DESKTOP_28('\\uf5f1'),\n    PHONE_ERROR_24('\\uf5f2'),\n    PHONE_HOME_LOCK_24('\\uf5f3'),\n    PHONE_LAPTOP_20('\\uf5f4'),\n    PHONE_LAPTOP_24('\\uf5f5'),\n    PHONE_LINK_SETUP_24('\\uf5f6'),\n    PHONE_MOBILE_20('\\uf5f7'),\n    PHONE_MOBILE_24('\\uf5f8'),\n    PHONE_PAGE_HEADER_24('\\uf5f9'),\n    PHONE_PAGINATION_24('\\uf5fa'),\n    PHONE_SCREEN_TIME_24('\\uf5fb'),\n    PHONE_SHAKE_24('\\uf5fc'),\n    PHONE_STATUS_BAR_24('\\uf5fd'),\n    PHONE_TABLET_20('\\uf5fe'),\n    PHONE_TABLET_24('\\uf5ff'),\n    PHONE_TO_PC_20('\\uf600'),\n    PHONE_TO_PC_24('\\uf601'),\n    PHONE_UPDATE_24('\\uf602'),\n    PHONE_VERTICAL_SCROLL_24('\\uf603'),\n    PHONE_VIBRATE_24('\\uf604'),\n    PHOTO_FILTER_24('\\uf605'),\n    PICTURE_IN_PICTURE_16('\\uf606'),\n    PICTURE_IN_PICTURE_20('\\uf607'),\n    PICTURE_IN_PICTURE_24('\\uf608'),\n    PIN_12('\\uf609'),\n    PIN_16('\\uf60a'),\n    PIN_20('\\uf60b'),\n    PIN_24('\\uf60c'),\n    PIN_OFF_20('\\uf60d'),\n    PIN_OFF_24('\\uf60e'),\n    PLAY_20('\\uf60f'),\n    PLAY_24('\\uf610'),\n    PLAY_48('\\uf611'),\n    PLAY_CIRCLE_24('\\uf612'),\n    PLUG_DISCONNECTED_20('\\uf613'),\n    PLUG_DISCONNECTED_24('\\uf614'),\n    PLUG_DISCONNECTED_28('\\uf615'),\n    POINT_SCAN_24('\\uf616'),\n    POLL_20('\\ufa8b'),\n    POLL_24('\\uf617'),\n    POWER_20('\\uf618'),\n    POWER_24('\\uf619'),\n    POWER_28('\\uf61a'),\n    PREDICTIONS_24('\\uf61b'),\n    PREMIUM_16('\\uf61c'),\n    PREMIUM_20('\\uf61d'),\n    PREMIUM_24('\\uf61e'),\n    PREMIUM_28('\\uf61f'),\n    PRESENCE_AVAILABLE_10('\\uf620'),\n    PRESENCE_AVAILABLE_12('\\uf621'),\n    PRESENCE_AVAILABLE_16('\\uf622'),\n    PRESENCE_AWAY_10('\\uf623'),\n    PRESENCE_AWAY_12('\\uf624'),\n    PRESENCE_AWAY_16('\\uf625'),\n    PRESENCE_BUSY_10('\\uf626'),\n    PRESENCE_BUSY_12('\\uf627'),\n    PRESENCE_BUSY_16('\\uf628'),\n    PRESENCE_DND_10('\\uf629'),\n    PRESENCE_DND_12('\\uf62a'),\n    PRESENCE_DND_16('\\uf62b'),\n    PRESENTER_24('\\uf62c'),\n    PRESENTER_OFF_24('\\uf62d'),\n    PREVIEW_LINK_16('\\uf62e'),\n    PREVIEW_LINK_20('\\uf62f'),\n    PREVIEW_LINK_24('\\uf630'),\n    PREVIOUS_16('\\uf631'),\n    PREVIOUS_20('\\uf632'),\n    PREVIOUS_24('\\uf633'),\n    PRINT_20('\\uf634'),\n    PRINT_24('\\uf635'),\n    PRINT_48('\\uf636'),\n    PROHIBITED_20('\\uf637'),\n    PROHIBITED_24('\\uf638'),\n    PROHIBITED_28('\\uf639'),\n    PROHIBITED_48('\\uf63a'),\n    PROOFREAD_LANGUAGE_24('\\uf63b'),\n    PROTOCOL_HANDLER_16('\\uf63c'),\n    PROTOCOL_HANDLER_20('\\uf63d'),\n    PROTOCOL_HANDLER_24('\\uf63e'),\n    PULSE_24('\\ufa8c'),\n    QR_CODE_20('\\ufa8d'),\n    QR_CODE_24('\\uf63f'),\n    QR_CODE_28('\\uf640'),\n    QUESTION_16('\\uf641'),\n    QUESTION_20('\\uf642'),\n    QUESTION_24('\\uf643'),\n    QUESTION_28('\\uf644'),\n    QUESTION_48('\\uf645'),\n    QUESTION_CIRCLE_16('\\uf646'),\n    QUESTION_CIRCLE_20('\\uf647'),\n    QUESTION_CIRCLE_24('\\uf648'),\n    QUESTION_CIRCLE_28('\\uf649'),\n    QUESTION_CIRCLE_48('\\uf64a'),\n    QUIZ_NEW_24('\\uf64b'),\n    QUIZ_NEW_28('\\uf64c'),\n    QUIZ_NEW_48('\\uf64d'),\n    RADIO_BUTTON_20('\\uf64e'),\n    RADIO_BUTTON_24('\\uf64f'),\n    RATING_MATURE_16('\\uf650'),\n    RATING_MATURE_20('\\uf651'),\n    RATING_MATURE_24('\\uf652'),\n    READING_LIST_16('\\uf65b'),\n    READING_LIST_20('\\uf65c'),\n    READING_LIST_24('\\uf65d'),\n    READING_LIST_28('\\uf65e'),\n    READING_LIST_ADD_16('\\uf65f'),\n    READING_LIST_ADD_20('\\uf660'),\n    READING_LIST_ADD_24('\\uf661'),\n    READING_LIST_ADD_28('\\uf662'),\n    READING_MODE_20('\\uf663'),\n    READING_MODE_24('\\uf664'),\n    READING_MODE_MOBILE_20('\\uf665'),\n    READING_MODE_MOBILE_24('\\uf666'),\n    READ_ALOUD_20('\\uf657'),\n    READ_ALOUD_24('\\uf658'),\n    READ_ONLY_16('\\uf659'),\n    READ_ONLY_24('\\uf65a'),\n    REAL_ESTATE_24('\\ufa8e'),\n    RECIEPT_20('\\uf667'),\n    RECIEPT_24('\\uf668'),\n    RECOMMENDED_24('\\uf669'),\n    RECORD_16('\\uf66a'),\n    RECORD_20('\\uf66b'),\n    RECORD_24('\\uf66c'),\n    REMOVE_12('\\uf66d'),\n    REMOVE_16('\\uf66e'),\n    REMOVE_20('\\uf66f'),\n    REMOVE_24('\\uf670'),\n    REMOVE_RECENT_24('\\uf671'),\n    RENAME_16('\\uf672'),\n    RENAME_20('\\uf673'),\n    RENAME_24('\\uf674'),\n    RENAME_28('\\uf675'),\n    RESIZE_20('\\uf676'),\n    RESIZE_IMAGE_24('\\uf677'),\n    RESIZE_TABLE_24('\\uf678'),\n    RESIZE_VIDEO_24('\\uf679'),\n    RESTORE_16('\\uf67a'),\n    REWARD_16('\\uf67b'),\n    REWARD_20('\\uf67c'),\n    REWARD_24('\\uf67d'),\n    REWIND_20('\\uf67e'),\n    REWIND_24('\\uf67f'),\n    RE_ORDER_16('\\uf653'),\n    RE_ORDER_24('\\uf654'),\n    RE_ORDER_DOTS_20('\\uf655'),\n    RE_ORDER_DOTS_24('\\uf656'),\n    RIBBON_24('\\ufa8f'),\n    RIBBON_STAR_20('\\ufa90'),\n    RIBBON_STAR_24('\\ufa91'),\n    ROCKET_16('\\uf680'),\n    ROCKET_20('\\uf681'),\n    ROCKET_24('\\uf682'),\n    ROUTER_24('\\uf683'),\n    ROW_TRIPLE_24('\\uf684'),\n    RULER_16('\\uf685'),\n    RULER_20('\\uf686'),\n    RULER_24('\\uf687'),\n    RUN_16('\\ufa92'),\n    RUN_20('\\ufa93'),\n    RUN_24('\\uf688'),\n    SAVE_20('\\uf689'),\n    SAVE_24('\\uf68a'),\n    SAVE_AS_20('\\uf68b'),\n    SAVE_AS_24('\\uf68c'),\n    SAVE_COPY_24('\\uf68d'),\n    SAVINGS_16('\\uf68e'),\n    SAVINGS_20('\\uf68f'),\n    SAVINGS_24('\\uf690'),\n    SCALES_24('\\ufa94'),\n    SCALES_32('\\ufa95'),\n    SCALE_FILL_24('\\uf691'),\n    SCALE_FIT_16('\\uf692'),\n    SCALE_FIT_20('\\uf693'),\n    SCALE_FIT_24('\\uf694'),\n    SCAN_24('\\uf695'),\n    SCRATCHPAD_24('\\uf696'),\n    SCREENSHOT_20('\\uf697'),\n    SCREENSHOT_24('\\uf698'),\n    SEARCH_20('\\uf699'),\n    SEARCH_24('\\uf69a'),\n    SEARCH_28('\\uf69b'),\n    SEARCH_INFO_24('\\uf69c'),\n    SEARCH_SHIELD_20('\\ufa96'),\n    SEARCH_SQUARE_24('\\uf69d'),\n    SELECT_ALL_24('\\uf69e'),\n    SELECT_ALL_OFF_24('\\uf69f'),\n    SELECT_OBJECT_20('\\uf6a0'),\n    SELECT_OBJECT_24('\\uf6a1'),\n    SEND_20('\\uf6a2'),\n    SEND_24('\\uf6a3'),\n    SEND_28('\\uf6a4'),\n    SEND_CLOCK_20('\\uf6a5'),\n    SEND_COPY_24('\\uf6a6'),\n    SEND_LOGGING_24('\\uf6a7'),\n    SEND_TO_BACK_20('\\uf6a8'),\n    SEND_TO_BACK_24('\\uf6a9'),\n    SERIAL_PORT_16('\\uf6aa'),\n    SERIAL_PORT_20('\\uf6ab'),\n    SERIAL_PORT_24('\\uf6ac'),\n    SERVICE_BELL_24('\\uf6ad'),\n    SETTINGS_16('\\uf6b1'),\n    SETTINGS_20('\\uf6b2'),\n    SETTINGS_24('\\uf6b3'),\n    SETTINGS_28('\\uf6b4'),\n    SET_TOP_STACK_16('\\uf6ae'),\n    SET_TOP_STACK_20('\\uf6af'),\n    SET_TOP_STACK_24('\\uf6b0'),\n    SHAPES_16('\\uf6b5'),\n    SHAPES_20('\\uf6b6'),\n    SHAPES_24('\\uf6b7'),\n    SHARE_20('\\uf6b8'),\n    SHARE_24('\\uf6b9'),\n    SHARE_ANDROID_20('\\uf6ba'),\n    SHARE_ANDROID_24('\\uf6bb'),\n    SHARE_CLOSE_TRAY_24('\\uf6bc'),\n    SHARE_DESKTOP_24('\\uf6bd'),\n    SHARE_IOS_20('\\uf6be'),\n    SHARE_IOS_24('\\uf6bf'),\n    SHARE_IOS_28('\\uf6c0'),\n    SHARE_IOS_48('\\uf6c1'),\n    SHARE_SCREEN_20('\\uf6c2'),\n    SHARE_SCREEN_24('\\uf6c3'),\n    SHARE_SCREEN_28('\\uf6c4'),\n    SHARE_STOP_16('\\ufa97'),\n    SHARE_STOP_20('\\ufa98'),\n    SHARE_STOP_24('\\uf6c5'),\n    SHARE_STOP_28('\\uf6c6'),\n    SHARE_STOP_48('\\ufa99'),\n    SHIELD_20('\\uf6c7'),\n    SHIELD_24('\\uf6c8'),\n    SHIELD_DISMISS_20('\\uf6c9'),\n    SHIELD_DISMISS_24('\\uf6ca'),\n    SHIELD_DISMISS_SHIELD_20('\\ufa9a'),\n    SHIELD_ERROR_20('\\uf6cb'),\n    SHIELD_ERROR_24('\\uf6cc'),\n    SHIELD_KEYHOLE_16('\\uf6cd'),\n    SHIELD_KEYHOLE_20('\\uf6ce'),\n    SHIELD_KEYHOLE_24('\\uf6cf'),\n    SHIELD_PROHIBITED_20('\\uf6d0'),\n    SHIELD_PROHIBITED_24('\\uf6d1'),\n    SHIFTS_24('\\uf6d2'),\n    SHIFTS_24H_20('\\uf6d3'),\n    SHIFTS_24H_24('\\uf6d4'),\n    SHIFTS_28('\\uf6d5'),\n    SHIFTS_30_MINUTES_24('\\uf6d6'),\n    SHIFTS_ACTIVITY_20('\\uf6d7'),\n    SHIFTS_ACTIVITY_24('\\uf6d8'),\n    SHIFTS_ADD_24('\\uf6d9'),\n    SHIFTS_APPROVE_24('\\uf6da'),\n    SHIFTS_AVAILABILITY_24('\\uf6db'),\n    SHIFTS_DAY_20('\\ufa9b'),\n    SHIFTS_DAY_24('\\ufa9c'),\n    SHIFTS_DENY_24('\\uf6dc'),\n    SHIFTS_OPEN_20('\\uf6dd'),\n    SHIFTS_OPEN_24('\\uf6de'),\n    SHIFTS_PENDING_24('\\uf6df'),\n    SHIFTS_TEAM_24('\\uf6e0'),\n    SHIP_20('\\uf6e1'),\n    SHIP_24('\\uf6e2'),\n    SIDEBAR_SEARCH_LTR_20('\\ufa9d'),\n    SIDEBAR_SEARCH_RTL_20('\\ufa9e'),\n    SIGNATURE_16('\\uf6e4'),\n    SIGNATURE_20('\\uf6e5'),\n    SIGNATURE_24('\\uf6e6'),\n    SIGNATURE_28('\\uf6e7'),\n    SIGNED_16('\\uf6e8'),\n    SIGNED_20('\\uf6e9'),\n    SIGNED_24('\\uf6ea'),\n    SIGN_OUT_20('\\ufa9f'),\n    SIGN_OUT_24('\\uf6e3'),\n    SIM_16('\\uf6eb'),\n    SIM_20('\\uf6ec'),\n    SIM_24('\\uf6ed'),\n    SLEEP_24('\\uf6ee'),\n    SLIDE_ADD_24('\\uf6ef'),\n    SLIDE_DESIGN_24('\\uf6f0'),\n    SLIDE_HIDE_24('\\uf6f1'),\n    SLIDE_LAYOUT_20('\\uf6f2'),\n    SLIDE_LAYOUT_24('\\uf6f3'),\n    SLIDE_MICROPHONE_24('\\uf6f4'),\n    SLIDE_MULTIPLE_ARROW_RIGHT_24('\\ufaa0'),\n    SLIDE_SEARCH_24('\\ufaa1'),\n    SLIDE_SEARCH_28('\\ufaa2'),\n    SLIDE_SIZE_24('\\ufaa3'),\n    SLIDE_TEXT_16('\\ufaa4'),\n    SLIDE_TEXT_20('\\ufaa5'),\n    SLIDE_TEXT_24('\\uf6f5'),\n    SLIDE_TEXT_28('\\ufaa6'),\n    SLIDE_TEXT_48('\\ufaa7'),\n    SLOW_MODE_16('\\uf6f6'),\n    SLOW_MODE_20('\\uf6f7'),\n    SLOW_MODE_24('\\uf6f8'),\n    SLOW_MODE_28('\\uf6f9'),\n    SMALL_16('\\uf6fa'),\n    SMALL_20('\\uf6fb'),\n    SMALL_24('\\uf6fc'),\n    SNOOZE_16('\\uf6fd'),\n    SNOOZE_24('\\uf6fe'),\n    SOUND_SOURCE_24('\\uf6ff'),\n    SOUND_SOURCE_28('\\uf700'),\n    SPACEBAR_24('\\uf701'),\n    SPEAKER_0_16('\\ufaa8'),\n    SPEAKER_0_20('\\ufaa9'),\n    SPEAKER_0_24('\\uf702'),\n    SPEAKER_0_28('\\ufaaa'),\n    SPEAKER_0_48('\\ufaab'),\n    SPEAKER_16('\\uf703'),\n    SPEAKER_1_16('\\ufaac'),\n    SPEAKER_1_20('\\ufaad'),\n    SPEAKER_1_24('\\uf704'),\n    SPEAKER_1_28('\\ufaae'),\n    SPEAKER_1_48('\\ufaaf'),\n    SPEAKER_20('\\uf705'),\n    SPEAKER_24('\\uf706'),\n    SPEAKER_28('\\uf707'),\n    SPEAKER_48('\\ufab0'),\n    SPEAKER_BLUETOOTH_24('\\uf708'),\n    SPEAKER_BLUETOOTH_28('\\ufab1'),\n    SPEAKER_EDIT_16('\\uf709'),\n    SPEAKER_EDIT_20('\\uf70a'),\n    SPEAKER_EDIT_24('\\uf70b'),\n    SPEAKER_NONE_16('\\ufab2'),\n    SPEAKER_NONE_20('\\uf70c'),\n    SPEAKER_NONE_24('\\uf70d'),\n    SPEAKER_NONE_28('\\uf70e'),\n    SPEAKER_NONE_48('\\ufab3'),\n    SPEAKER_OFF_16('\\ufab4'),\n    SPEAKER_OFF_20('\\ufab5'),\n    SPEAKER_OFF_24('\\uf70f'),\n    SPEAKER_OFF_28('\\uf710'),\n    SPEAKER_OFF_48('\\ufab6'),\n    SPEAKER_SETTINGS_24('\\uf711'),\n    SPEAKER_USB_24('\\ufab7'),\n    SPEAKER_USB_28('\\ufab8'),\n    SPINNER_IOS_20('\\uf712'),\n    SPORTS_16('\\uf713'),\n    SPORTS_20('\\uf714'),\n    SPORTS_24('\\uf715'),\n    SPORT_16('\\ufab9'),\n    SPORT_20('\\ufaba'),\n    SPORT_24('\\ufabb'),\n    SPORT_AMERICAN_FOOTBALL_24('\\ufabc'),\n    SPORT_BASEBALL_24('\\ufabd'),\n    SPORT_BASKETBALL_24('\\ufabe'),\n    SPORT_HOCKEY_24('\\ufabf'),\n    STAR_12('\\uf716'),\n    STAR_16('\\uf717'),\n    STAR_20('\\uf718'),\n    STAR_24('\\uf719'),\n    STAR_28('\\uf71a'),\n    STAR_ADD_16('\\uf71b'),\n    STAR_ADD_20('\\uf71c'),\n    STAR_ADD_24('\\uf71d'),\n    STAR_ARROW_RIGHT_24('\\uf71e'),\n    STAR_ARROW_RIGHT_START_24('\\uf71f'),\n    STAR_EDIT_24('\\ufac0'),\n    STAR_EMPHASIS_24('\\uf720'),\n    STAR_HALF_12('\\uf721'),\n    STAR_HALF_16('\\uf722'),\n    STAR_HALF_20('\\uf723'),\n    STAR_HALF_24('\\uf724'),\n    STAR_HALF_28('\\uf725'),\n    STAR_OFF_12('\\uf726'),\n    STAR_OFF_16('\\uf727'),\n    STAR_OFF_20('\\uf728'),\n    STAR_OFF_24('\\uf729'),\n    STAR_OFF_28('\\uf72a'),\n    STAR_ONE_QUARTER_12('\\uf72b'),\n    STAR_ONE_QUARTER_16('\\uf72c'),\n    STAR_ONE_QUARTER_20('\\uf72d'),\n    STAR_ONE_QUARTER_24('\\uf72e'),\n    STAR_ONE_QUARTER_28('\\uf72f'),\n    STAR_PROHIBITED_16('\\uf730'),\n    STAR_PROHIBITED_20('\\uf731'),\n    STAR_PROHIBITED_24('\\uf732'),\n    STAR_SETTINGS_24('\\uf733'),\n    STAR_THREE_QUARTER_12('\\uf734'),\n    STAR_THREE_QUARTER_16('\\uf735'),\n    STAR_THREE_QUARTER_20('\\uf736'),\n    STAR_THREE_QUARTER_24('\\uf737'),\n    STAR_THREE_QUARTER_28('\\uf738'),\n    STATUS_16('\\uf739'),\n    STATUS_20('\\uf73a'),\n    STATUS_24('\\uf73b'),\n    STETHOSCOPE_20('\\uf73c'),\n    STETHOSCOPE_24('\\uf73d'),\n    STICKER_20('\\uf73e'),\n    STICKER_24('\\uf73f'),\n    STICKER_ADD_24('\\uf740'),\n    STOP_16('\\uf741'),\n    STOP_20('\\uf742'),\n    STOP_24('\\uf743'),\n    STORAGE_24('\\uf744'),\n    STORE_16('\\uf745'),\n    STORE_20('\\uf746'),\n    STORE_24('\\uf747'),\n    STORE_MICROSOFT_16('\\uf748'),\n    STORE_MICROSOFT_20('\\uf749'),\n    STORE_MICROSOFT_24('\\uf74a'),\n    STYLE_GUIDE_24('\\uf74b'),\n    SUBWAY_20('\\uf74d'),\n    SUBWAY_24('\\uf74e'),\n    SUB_GRID_24('\\uf74c'),\n    SUGGESTION_24('\\uf74f'),\n    SURFACE_EARBUDS_20('\\uf750'),\n    SURFACE_EARBUDS_24('\\uf751'),\n    SURFACE_HUB_20('\\uf752'),\n    SURFACE_HUB_24('\\uf753'),\n    SWIPE_DOWN_24('\\uf754'),\n    SWIPE_RIGHT_24('\\uf755'),\n    SWIPE_UP_24('\\uf756'),\n    SYMBOLS_24('\\uf757'),\n    SYNC_OFF_16('\\uf758'),\n    SYNC_OFF_20('\\uf759'),\n    SYSTEM_24('\\uf75a'),\n    TABLET_20('\\uf791'),\n    TABLET_24('\\uf792'),\n    TABLE_16('\\ufac3'),\n    TABLE_20('\\uf775'),\n    TABLE_24('\\uf776'),\n    TABLE_28('\\ufac4'),\n    TABLE_48('\\ufac5'),\n    TABLE_ADD_24('\\uf777'),\n    TABLE_CELLS_MERGE_20('\\uf778'),\n    TABLE_CELLS_MERGE_24('\\uf779'),\n    TABLE_CELLS_SPLIT_20('\\uf77a'),\n    TABLE_CELLS_SPLIT_24('\\uf77b'),\n    TABLE_COLUMN_DELETE_24('\\uf77c'),\n    TABLE_COLUMN_INSERT_24('\\uf77d'),\n    TABLE_COLUMN_RESIZE_24('\\uf77e'),\n    TABLE_DELETE_24('\\uf77f'),\n    TABLE_EDIT_24('\\uf780'),\n    TABLE_FREEZE_24('\\uf781'),\n    TABLE_FREEZE_COLUMN_24('\\uf782'),\n    TABLE_FREEZE_ROW_24('\\uf783'),\n    TABLE_INSERT_DOWN_24('\\uf784'),\n    TABLE_INSERT_LEFT_24('\\uf785'),\n    TABLE_INSERT_RIGHT_24('\\uf786'),\n    TABLE_INSERT_UP_24('\\uf787'),\n    TABLE_MOVE_DOWN_24('\\uf788'),\n    TABLE_MOVE_LEFT_24('\\uf789'),\n    TABLE_MOVE_RIGHT_24('\\uf78a'),\n    TABLE_MOVE_UP_24('\\uf78b'),\n    TABLE_ROW_DELETE_24('\\uf78c'),\n    TABLE_ROW_INSERT_24('\\uf78d'),\n    TABLE_ROW_RESIZE_24('\\uf78e'),\n    TABLE_SETTINGS_24('\\uf78f'),\n    TABLE_SIMPLE_16('\\ufac6'),\n    TABLE_SIMPLE_20('\\ufac7'),\n    TABLE_SIMPLE_24('\\ufac8'),\n    TABLE_SIMPLE_28('\\ufac9'),\n    TABLE_SIMPLE_48('\\ufaca'),\n    TABLE_SWITCH_24('\\uf790'),\n    TABS_24('\\uf793'),\n    TAB_16('\\uf75b'),\n    TAB_20('\\uf75c'),\n    TAB_24('\\uf75d'),\n    TAB_28('\\uf75e'),\n    TAB_DESKTOP_20('\\uf75f'),\n    TAB_DESKTOP_ARROW_CLOCKWISE_16('\\uf760'),\n    TAB_DESKTOP_ARROW_CLOCKWISE_20('\\uf761'),\n    TAB_DESKTOP_ARROW_CLOCKWISE_24('\\uf762'),\n    TAB_DESKTOP_ARROW_LEFT_20('\\ufac1'),\n    TAB_DESKTOP_CLOCK_20('\\uf763'),\n    TAB_DESKTOP_COPY_20('\\uf764'),\n    TAB_DESKTOP_IMAGE_16('\\uf765'),\n    TAB_DESKTOP_IMAGE_20('\\uf766'),\n    TAB_DESKTOP_IMAGE_24('\\uf767'),\n    TAB_DESKTOP_MULTIPLE_20('\\uf768'),\n    TAB_DESKTOP_NEW_PAGE_20('\\uf769'),\n    TAB_INPRIVATE_ACCOUNT_20('\\uf76e'),\n    TAB_INPRIVATE_ACCOUNT_24('\\uf76f'),\n    TAB_IN_PRIVATE_16('\\uf76a'),\n    TAB_IN_PRIVATE_20('\\uf76b'),\n    TAB_IN_PRIVATE_24('\\uf76c'),\n    TAB_IN_PRIVATE_28('\\uf76d'),\n    TAB_NEW_20('\\uf770'),\n    TAB_NEW_24('\\uf771'),\n    TAB_PROHIBITED_24('\\ufac2'),\n    TAB_SWEEP_24('\\uf772'),\n    TAB_TRACKING_PREVENTION_20('\\uf773'),\n    TAB_TRACKING_PREVENTION_24('\\uf774'),\n    TAG_16('\\ufacb'),\n    TAG_20('\\uf794'),\n    TAG_24('\\uf795'),\n    TAP_DOUBLE_24('\\uf796'),\n    TAP_SINGLE_24('\\uf797'),\n    TARGET_16('\\uf798'),\n    TARGET_20('\\uf799'),\n    TARGET_24('\\uf79a'),\n    TARGET_EDIT_16('\\uf79b'),\n    TARGET_EDIT_20('\\uf79c'),\n    TARGET_EDIT_24('\\uf79d'),\n    TASKS_APP_20('\\ufacc'),\n    TASKS_APP_24('\\uf7a2'),\n    TASKS_APP_28('\\uf7a3'),\n    TASK_LIST_20('\\uf79e'),\n    TASK_LIST_24('\\uf79f'),\n    TASK_LIST_ADD_20('\\uf7a0'),\n    TASK_LIST_ADD_24('\\uf7a1'),\n    TEAM_ADD_24('\\uf7a4'),\n    TEAM_DELETE_24('\\uf7a5'),\n    TEDDY_24('\\uf7a6'),\n    TEMPERATURE_20('\\uf7a7'),\n    TEMPERATURE_24('\\uf7a8'),\n    TENT_12('\\ufacd'),\n    TENT_16('\\uface'),\n    TENT_20('\\ufacf'),\n    TENT_24('\\uf7a9'),\n    TENT_28('\\ufad0'),\n    TENT_48('\\ufad1'),\n    TEST_CALL_24('\\uf7aa'),\n    TEXTBOX_20('\\uf828'),\n    TEXTBOX_24('\\uf829'),\n    TEXTBOX_ALIGN_20('\\uf82a'),\n    TEXTBOX_ALIGN_24('\\uf82b'),\n    TEXTBOX_ALIGN_BOTTOM_20('\\uf82c'),\n    TEXTBOX_ALIGN_BOTTOM_24('\\uf82d'),\n    TEXTBOX_ALIGN_MIDDLE_20('\\uf82e'),\n    TEXTBOX_ALIGN_MIDDLE_24('\\uf82f'),\n    TEXTBOX_ALIGN_TOP_20('\\uf830'),\n    TEXTBOX_ALIGN_TOP_24('\\uf831'),\n    TEXTBOX_VERTICAL_20('\\uf832'),\n    TEXTBOX_VERTICAL_24('\\uf833'),\n    TEXT_24('\\uf7ab'),\n    TEXT_ADD_24('\\uf7ac'),\n    TEXT_ADD_SPACE_AFTER_20('\\uf7ad'),\n    TEXT_ADD_SPACE_AFTER_24('\\uf7ae'),\n    TEXT_ADD_SPACE_BEFORE_20('\\uf7af'),\n    TEXT_ADD_SPACE_BEFORE_24('\\uf7b0'),\n    TEXT_ALIGN_CENTER_20('\\uf7b1'),\n    TEXT_ALIGN_CENTER_24('\\uf7b2'),\n    TEXT_ALIGN_DISTRIBUTED_20('\\uf7b3'),\n    TEXT_ALIGN_DISTRIBUTED_24('\\uf7b4'),\n    TEXT_ALIGN_JUSTIFY_20('\\uf7b5'),\n    TEXT_ALIGN_JUSTIFY_24('\\uf7b6'),\n    TEXT_ALIGN_LEFT_20('\\uf7b7'),\n    TEXT_ALIGN_LEFT_24('\\uf7b8'),\n    TEXT_ALIGN_RIGHT_20('\\uf7b9'),\n    TEXT_ALIGN_RIGHT_24('\\uf7ba'),\n    TEXT_ASTERISK_20('\\uf7bb'),\n    TEXT_BOLD_16('\\ufad2'),\n    TEXT_BOLD_20('\\uf7bc'),\n    TEXT_BOLD_24('\\uf7bd'),\n    TEXT_BULLET_LIST_20('\\uf7be'),\n    TEXT_BULLET_LIST_24('\\uf7bf'),\n    TEXT_BULLET_LIST_ADD_24('\\uf7c0'),\n    TEXT_BULLET_LIST_SQUARE_24('\\uf7c1'),\n    TEXT_BULLET_LIST_SQUARE_WARNING_16('\\uf7c2'),\n    TEXT_BULLET_LIST_SQUARE_WARNING_20('\\uf7c3'),\n    TEXT_BULLET_LIST_SQUARE_WARNING_24('\\uf7c4'),\n    TEXT_BULLET_LIST_TREE_16('\\uf7c5'),\n    TEXT_BULLET_LIST_TREE_20('\\uf7c6'),\n    TEXT_BULLET_LIST_TREE_24('\\uf7c7'),\n    TEXT_CHANGE_ACCEPT_20('\\uf7c8'),\n    TEXT_CHANGE_ACCEPT_24('\\uf7c9'),\n    TEXT_CHANGE_CASE_20('\\uf7ca'),\n    TEXT_CHANGE_CASE_24('\\uf7cb'),\n    TEXT_CHANGE_NEXT_20('\\uf7cc'),\n    TEXT_CHANGE_NEXT_24('\\uf7cd'),\n    TEXT_CHANGE_PREVIOUS_20('\\uf7ce'),\n    TEXT_CHANGE_PREVIOUS_24('\\uf7cf'),\n    TEXT_CHANGE_REJECT_20('\\uf7d0'),\n    TEXT_CHANGE_REJECT_24('\\uf7d1'),\n    TEXT_CHANGE_SETTINGS_20('\\uf7d2'),\n    TEXT_CHANGE_SETTINGS_24('\\uf7d3'),\n    TEXT_CLEAR_FORMATTING_20('\\uf7d4'),\n    TEXT_CLEAR_FORMATTING_24('\\uf7d5'),\n    TEXT_COLLAPSE_24('\\uf7d6'),\n    TEXT_COLOR_16('\\ufad3'),\n    TEXT_COLOR_20('\\uf7d7'),\n    TEXT_COLOR_24('\\uf7d8'),\n    TEXT_COLUMN_ONE_20('\\uf7d9'),\n    TEXT_COLUMN_ONE_24('\\uf7da'),\n    TEXT_COLUMN_ONE_NARROW_20('\\ufad4'),\n    TEXT_COLUMN_ONE_NARROW_24('\\ufad5'),\n    TEXT_COLUMN_ONE_WIDE_20('\\ufad6'),\n    TEXT_COLUMN_ONE_WIDE_24('\\ufad7'),\n    TEXT_COLUMN_THREE_20('\\uf7db'),\n    TEXT_COLUMN_THREE_24('\\uf7dc'),\n    TEXT_COLUMN_TWO_20('\\uf7dd'),\n    TEXT_COLUMN_TWO_24('\\uf7de'),\n    TEXT_COLUMN_TWO_LEFT_20('\\uf7df'),\n    TEXT_COLUMN_TWO_LEFT_24('\\uf7e0'),\n    TEXT_COLUMN_TWO_RIGHT_20('\\uf7e1'),\n    TEXT_COLUMN_TWO_RIGHT_24('\\uf7e2'),\n    TEXT_CONTINUOUS_24('\\ufad8'),\n    TEXT_DESCRIPTION_20('\\uf7e3'),\n    TEXT_DESCRIPTION_24('\\uf7e4'),\n    TEXT_DIRECTION_20('\\uf7e5'),\n    TEXT_DIRECTION_24('\\uf7e6'),\n    TEXT_DIRECTION_HORIZONTAL_LTR_20('\\uf7e7'),\n    TEXT_DIRECTION_HORIZONTAL_LTR_24('\\uf7e8'),\n    TEXT_DIRECTION_ROTATE_270_20('\\uf7e9'),\n    TEXT_DIRECTION_ROTATE_270_24('\\uf7ea'),\n    TEXT_DIRECTION_ROTATE_270_AC_20('\\uf7eb'),\n    TEXT_DIRECTION_ROTATE_270_AC_24('\\uf7ec'),\n    TEXT_DIRECTION_ROTATE_90_20('\\uf7ed'),\n    TEXT_DIRECTION_ROTATE_90_24('\\uf7ee'),\n    TEXT_DIRECTION_VERTICAL_20('\\uf7ef'),\n    TEXT_DIRECTION_VERTICAL_24('\\uf7f0'),\n    TEXT_EDIT_STYLE_20('\\uf7f1'),\n    TEXT_EDIT_STYLE_24('\\uf7f2'),\n    TEXT_EFFECTS_20('\\uf7f3'),\n    TEXT_EFFECTS_24('\\uf7f4'),\n    TEXT_EXPAND_24('\\uf7f5'),\n    TEXT_FIELD_16('\\uf7f6'),\n    TEXT_FIELD_20('\\uf7f7'),\n    TEXT_FIELD_24('\\uf7f8'),\n    TEXT_FIRST_LINE_20('\\uf7f9'),\n    TEXT_FIRST_LINE_24('\\uf7fa'),\n    TEXT_FONT_16('\\uf7fb'),\n    TEXT_FONT_20('\\uf7fc'),\n    TEXT_FONT_24('\\uf7fd'),\n    TEXT_FONT_SIZE_20('\\uf7fe'),\n    TEXT_FONT_SIZE_24('\\uf7ff'),\n    TEXT_FOOTNOTE_20('\\uf800'),\n    TEXT_FOOTNOTE_24('\\uf801'),\n    TEXT_GRAMMAR_OPTIONS_16('\\uf802'),\n    TEXT_GRAMMAR_OPTIONS_20('\\uf803'),\n    TEXT_GRAMMAR_OPTIONS_24('\\uf804'),\n    TEXT_HANGING_20('\\uf805'),\n    TEXT_HANGING_24('\\uf806'),\n    TEXT_HEADER_1_20('\\uf807'),\n    TEXT_HEADER_2_20('\\uf808'),\n    TEXT_HEADER_3_20('\\uf809'),\n    TEXT_INDENT_DECREASE_20('\\ufad9'),\n    TEXT_INDENT_DECREASE_24('\\uf80a'),\n    TEXT_INDENT_INCREASE_20('\\ufada'),\n    TEXT_INDENT_INCREASE_24('\\uf80b'),\n    TEXT_ITALIC_16('\\ufadb'),\n    TEXT_ITALIC_20('\\uf80c'),\n    TEXT_ITALIC_24('\\uf80d'),\n    TEXT_LINE_SPACING_20('\\uf80e'),\n    TEXT_LINE_SPACING_24('\\uf80f'),\n    TEXT_NUMBER_FORMAT_20('\\uf810'),\n    TEXT_NUMBER_FORMAT_24('\\uf811'),\n    TEXT_NUMBER_LIST_LTR_20('\\uf812'),\n    TEXT_NUMBER_LIST_LTR_24('\\uf813'),\n    TEXT_NUMBER_LIST_RTL_24('\\uf814'),\n    TEXT_PARAGRAPH_SETTINGS_20('\\uf815'),\n    TEXT_PARAGRAPH_SETTINGS_24('\\uf816'),\n    TEXT_PROOFING_TOOLS_20('\\uf817'),\n    TEXT_PROOFING_TOOLS_24('\\uf818'),\n    TEXT_QUOTE_20('\\uf819'),\n    TEXT_QUOTE_24('\\uf81a'),\n    TEXT_SORT_ASCENDING_20('\\uf81b'),\n    TEXT_SORT_DESCENDING_20('\\uf81c'),\n    TEXT_STRIKETHROUGH_16('\\ufadc'),\n    TEXT_STRIKETHROUGH_20('\\uf81d'),\n    TEXT_STRIKETHROUGH_24('\\uf81e'),\n    TEXT_SUBSCRIPT_20('\\uf81f'),\n    TEXT_SUBSCRIPT_24('\\uf820'),\n    TEXT_SUPERSCRIPT_20('\\uf821'),\n    TEXT_SUPERSCRIPT_24('\\uf822'),\n    TEXT_UNDERLINE_16('\\ufadd'),\n    TEXT_UNDERLINE_20('\\uf823'),\n    TEXT_UNDERLINE_24('\\uf824'),\n    TEXT_WORD_COUNT_20('\\uf825'),\n    TEXT_WORD_COUNT_24('\\uf826'),\n    TEXT_WRAP_24('\\uf827'),\n    TEXT_WRAP_BEHIND_20('\\ufade'),\n    TEXT_WRAP_BEHIND_24('\\ufadf'),\n    TEXT_WRAP_FRONT_20('\\ufae0'),\n    TEXT_WRAP_FRONT_24('\\ufae1'),\n    TEXT_WRAP_LINE_20('\\ufae2'),\n    TEXT_WRAP_LINE_24('\\ufae3'),\n    TEXT_WRAP_SQUARE_20('\\ufae4'),\n    TEXT_WRAP_SQUARE_24('\\ufae5'),\n    TEXT_WRAP_THROUGH_20('\\ufae6'),\n    TEXT_WRAP_THROUGH_24('\\ufae7'),\n    TEXT_WRAP_TIGHT_20('\\ufae8'),\n    TEXT_WRAP_TIGHT_24('\\ufae9'),\n    TEXT_WRAP_TOP_BOTTOM_20('\\ufaea'),\n    TEXT_WRAP_TOP_BOTTOM_24('\\ufaeb'),\n    THINKING_20('\\uf834'),\n    THINKING_24('\\uf835'),\n    THUMB_DISLIKE_20('\\uf836'),\n    THUMB_DISLIKE_24('\\uf837'),\n    THUMB_LIKE_20('\\uf838'),\n    THUMB_LIKE_24('\\uf839'),\n    TICKET_20('\\uf83a'),\n    TICKET_24('\\uf83b'),\n    TICKET_DIAGONAL_16('\\ufaec'),\n    TICKET_DIAGONAL_20('\\ufaed'),\n    TICKET_DIAGONAL_24('\\ufaee'),\n    TICKET_DIAGONAL_28('\\ufaef'),\n    TIMELINE_24('\\uf83e'),\n    TIMER_10_24('\\uf83f'),\n    TIMER_16('\\ufaf0'),\n    TIMER_20('\\ufaf1'),\n    TIMER_24('\\uf840'),\n    TIMER_2_24('\\uf841'),\n    TIMER_OFF_24('\\uf842'),\n    TIME_AND_WEATHER_24('\\uf83c'),\n    TIME_PICKER_24('\\uf83d'),\n    TOGGLE_LEFT_16('\\ufaf2'),\n    TOGGLE_LEFT_20('\\ufaf3'),\n    TOGGLE_LEFT_24('\\ufaf4'),\n    TOGGLE_LEFT_28('\\ufaf5'),\n    TOGGLE_LEFT_48('\\ufaf6'),\n    TOGGLE_RIGHT_16('\\uf843'),\n    TOGGLE_RIGHT_20('\\uf844'),\n    TOGGLE_RIGHT_24('\\uf845'),\n    TOGGLE_RIGHT_28('\\ufaf7'),\n    TOGGLE_RIGHT_48('\\ufaf8'),\n    TOOLBOX_16('\\uf846'),\n    TOOLBOX_20('\\uf847'),\n    TOOLBOX_24('\\uf848'),\n    TOOLBOX_28('\\uf849'),\n    TOP_SPEED_24('\\uf84a'),\n    TRANSLATE_20('\\uf84b'),\n    TRANSLATE_24('\\uf84c'),\n    TROPHY_16('\\uf84d'),\n    TROPHY_20('\\uf84e'),\n    TROPHY_24('\\uf84f'),\n    TV_16('\\ufaf9'),\n    TV_20('\\ufafa'),\n    TV_24('\\ufafb'),\n    TV_28('\\ufafc'),\n    TV_48('\\ufafd'),\n    UNINSTALL_APP_24('\\uf850'),\n    UNLOCK_20('\\uf851'),\n    UNLOCK_24('\\uf852'),\n    UNLOCK_28('\\uf853'),\n    UPLOAD_24('\\uf854'),\n    USB_PORT_20('\\uf855'),\n    USB_PORT_24('\\uf856'),\n    USB_STICK_20('\\uf857'),\n    USB_STICK_24('\\uf858'),\n    VAULT_16('\\uf859'),\n    VAULT_20('\\uf85a'),\n    VAULT_24('\\uf85b'),\n    VEHICLE_BICYCLE_16('\\ufafe'),\n    VEHICLE_BICYCLE_20('\\ufaff'),\n    VEHICLE_BICYCLE_24('\\uf85c'),\n    VEHICLE_BUS_16('\\ufb00'),\n    VEHICLE_BUS_20('\\ufb01'),\n    VEHICLE_BUS_24('\\uf85d'),\n    VEHICLE_CAB_24('\\uf85e'),\n    VEHICLE_CAR_16('\\uf85f'),\n    VEHICLE_CAR_20('\\uf860'),\n    VEHICLE_CAR_24('\\uf861'),\n    VEHICLE_CAR_28('\\ufb02'),\n    VEHICLE_CAR_48('\\ufb03'),\n    VEHICLE_SHIP_16('\\ufb04'),\n    VEHICLE_SHIP_20('\\ufb05'),\n    VEHICLE_SHIP_24('\\ufb06'),\n    VEHICLE_SUBWAY_16('\\ufb07'),\n    VEHICLE_SUBWAY_20('\\ufb08'),\n    VEHICLE_SUBWAY_24('\\ufb09'),\n    VEHICLE_TRUCK_16('\\ufb0a'),\n    VEHICLE_TRUCK_20('\\ufb0b'),\n    VEHICLE_TRUCK_24('\\uf862'),\n    VIDEO_16('\\uf863'),\n    VIDEO_20('\\uf864'),\n    VIDEO_24('\\uf865'),\n    VIDEO_28('\\uf866'),\n    VIDEO_BACKGROUND_EFFECT_24('\\uf867'),\n    VIDEO_CLIP_20('\\ufb0c'),\n    VIDEO_CLIP_24('\\uf868'),\n    VIDEO_OFF_20('\\uf869'),\n    VIDEO_OFF_24('\\uf86a'),\n    VIDEO_OFF_28('\\uf86b'),\n    VIDEO_PERSON_24('\\uf86c'),\n    VIDEO_PERSON_OFF_24('\\uf86d'),\n    VIDEO_PERSON_STAR_24('\\uf86e'),\n    VIDEO_PLAY_PAUSE_24('\\uf86f'),\n    VIDEO_SECURITY_20('\\uf870'),\n    VIDEO_SECURITY_24('\\uf871'),\n    VIDEO_SWITCH_24('\\uf872'),\n    VIEW_DESKTOP_20('\\uf873'),\n    VIEW_DESKTOP_24('\\uf874'),\n    VIEW_DESKTOP_MOBILE_20('\\uf875'),\n    VIEW_DESKTOP_MOBILE_24('\\uf876'),\n    VISUAL_SEARCH_16('\\uf877'),\n    VISUAL_SEARCH_20('\\uf878'),\n    VISUAL_SEARCH_24('\\uf879'),\n    VOICEMAIL_16('\\uf87a'),\n    VOICEMAIL_20('\\uf87b'),\n    VOICEMAIL_24('\\uf87c'),\n    VOTE_20('\\ufb0d'),\n    VOTE_24('\\ufb0e'),\n    WALKIE_TALKIE_24('\\uf87d'),\n    WALKIE_TALKIE_28('\\uf87e'),\n    WALLPAPER_24('\\uf87f'),\n    WARNING_16('\\uf880'),\n    WARNING_20('\\uf881'),\n    WARNING_24('\\uf882'),\n    WEATHER_BLOWING_SNOW_20('\\uf883'),\n    WEATHER_BLOWING_SNOW_24('\\uf884'),\n    WEATHER_BLOWING_SNOW_48('\\uf885'),\n    WEATHER_CLOUDY_20('\\uf886'),\n    WEATHER_CLOUDY_24('\\uf887'),\n    WEATHER_CLOUDY_48('\\uf888'),\n    WEATHER_DRIZZLE_20('\\ufb0f'),\n    WEATHER_DRIZZLE_24('\\ufb10'),\n    WEATHER_DRIZZLE_48('\\ufb11'),\n    WEATHER_DUSTSTORM_20('\\uf889'),\n    WEATHER_DUSTSTORM_24('\\uf88a'),\n    WEATHER_DUSTSTORM_48('\\uf88b'),\n    WEATHER_FOG_20('\\uf88c'),\n    WEATHER_FOG_24('\\uf88d'),\n    WEATHER_FOG_48('\\uf88e'),\n    WEATHER_HAIL_DAY_20('\\uf88f'),\n    WEATHER_HAIL_DAY_24('\\uf890'),\n    WEATHER_HAIL_DAY_48('\\uf891'),\n    WEATHER_HAIL_NIGHT_20('\\uf892'),\n    WEATHER_HAIL_NIGHT_24('\\uf893'),\n    WEATHER_HAIL_NIGHT_48('\\uf894'),\n    WEATHER_HAZE_20('\\ufb12'),\n    WEATHER_HAZE_24('\\ufb13'),\n    WEATHER_HAZE_48('\\ufb14'),\n    WEATHER_MOON_16('\\ufb15'),\n    WEATHER_MOON_20('\\uf895'),\n    WEATHER_MOON_24('\\uf896'),\n    WEATHER_MOON_28('\\ufb16'),\n    WEATHER_MOON_48('\\uf897'),\n    WEATHER_MOON_OFF_16('\\ufb17'),\n    WEATHER_MOON_OFF_20('\\ufb18'),\n    WEATHER_MOON_OFF_24('\\ufb19'),\n    WEATHER_MOON_OFF_28('\\ufb1a'),\n    WEATHER_MOON_OFF_48('\\ufb1b'),\n    WEATHER_PARTLY_CLOUDY_DAY_20('\\uf898'),\n    WEATHER_PARTLY_CLOUDY_DAY_24('\\uf899'),\n    WEATHER_PARTLY_CLOUDY_DAY_48('\\uf89a'),\n    WEATHER_PARTLY_CLOUDY_NIGHT_20('\\uf89b'),\n    WEATHER_PARTLY_CLOUDY_NIGHT_24('\\uf89c'),\n    WEATHER_PARTLY_CLOUDY_NIGHT_48('\\uf89d'),\n    WEATHER_RAIN_20('\\uf89e'),\n    WEATHER_RAIN_24('\\uf89f'),\n    WEATHER_RAIN_48('\\uf8a0'),\n    WEATHER_RAIN_SHOWERS_DAY_20('\\uf8a1'),\n    WEATHER_RAIN_SHOWERS_DAY_24('\\uf8a2'),\n    WEATHER_RAIN_SHOWERS_DAY_48('\\uf8a3'),\n    WEATHER_RAIN_SHOWERS_NIGHT_20('\\uf8a4'),\n    WEATHER_RAIN_SHOWERS_NIGHT_24('\\uf8a5'),\n    WEATHER_RAIN_SHOWERS_NIGHT_48('\\uf8a6'),\n    WEATHER_RAIN_SNOW_20('\\uf8a7'),\n    WEATHER_RAIN_SNOW_24('\\uf8a8'),\n    WEATHER_RAIN_SNOW_48('\\uf8a9'),\n    WEATHER_SNOWFLAKE_20('\\uf8b3'),\n    WEATHER_SNOWFLAKE_24('\\uf8b4'),\n    WEATHER_SNOWFLAKE_48('\\uf8b5'),\n    WEATHER_SNOW_20('\\uf8aa'),\n    WEATHER_SNOW_24('\\uf8ab'),\n    WEATHER_SNOW_48('\\uf8ac'),\n    WEATHER_SNOW_SHOWER_DAY_20('\\uf8ad'),\n    WEATHER_SNOW_SHOWER_DAY_24('\\uf8ae'),\n    WEATHER_SNOW_SHOWER_DAY_48('\\uf8af'),\n    WEATHER_SNOW_SHOWER_NIGHT_20('\\uf8b0'),\n    WEATHER_SNOW_SHOWER_NIGHT_24('\\uf8b1'),\n    WEATHER_SNOW_SHOWER_NIGHT_48('\\uf8b2'),\n    WEATHER_SQUALLS_20('\\uf8b6'),\n    WEATHER_SQUALLS_24('\\uf8b7'),\n    WEATHER_SQUALLS_48('\\uf8b8'),\n    WEATHER_SUNNY_20('\\uf8b9'),\n    WEATHER_SUNNY_24('\\uf8ba'),\n    WEATHER_SUNNY_48('\\uf8bb'),\n    WEATHER_SUNNY_HIGH_20('\\ufb1c'),\n    WEATHER_SUNNY_HIGH_24('\\ufb1d'),\n    WEATHER_SUNNY_HIGH_48('\\ufb1e'),\n    WEATHER_SUNNY_LOW_20('\\ufb1f'),\n    WEATHER_SUNNY_LOW_24('\\ufb20'),\n    WEATHER_SUNNY_LOW_48('\\ufb21'),\n    WEATHER_THUNDERSTORM_20('\\uf8bc'),\n    WEATHER_THUNDERSTORM_24('\\uf8bd'),\n    WEATHER_THUNDERSTORM_48('\\uf8be'),\n    WEB_ASSET_24('\\uf8bf'),\n    WEEKEND_12('\\uf8c0'),\n    WEEKEND_24('\\uf8c1'),\n    WHITEBOARD_20('\\uf8c2'),\n    WHITEBOARD_24('\\uf8c3'),\n    WIFI_1_20('\\uf8c4'),\n    WIFI_1_24('\\uf8c5'),\n    WIFI_2_20('\\uf8c6'),\n    WIFI_2_24('\\uf8c7'),\n    WIFI_3_20('\\uf8c8'),\n    WIFI_3_24('\\uf8c9'),\n    WIFI_4_20('\\uf8ca'),\n    WIFI_4_24('\\uf8cb'),\n    WIFI_PROTECTED_24('\\uf8cc'),\n    WINDOW_20('\\uf8cd'),\n    WINDOW_AD_20('\\uf8ce'),\n    WINDOW_DEV_TOOLS_16('\\uf8cf'),\n    WINDOW_DEV_TOOLS_20('\\uf8d0'),\n    WINDOW_DEV_TOOLS_24('\\uf8d1'),\n    WINDOW_HORIZONTAL_20('\\ufb22'),\n    WINDOW_INPRIVATE_20('\\uf8d2'),\n    WINDOW_INPRIVATE_ACCOUNT_20('\\uf8d3'),\n    WINDOW_MULTIPLE_20('\\uf8d4'),\n    WINDOW_NEW_16('\\ufb23'),\n    WINDOW_NEW_20('\\uf8d5'),\n    WINDOW_NEW_24('\\ufb24'),\n    WINDOW_SHIELD_16('\\uf8d6'),\n    WINDOW_SHIELD_20('\\uf8d7'),\n    WINDOW_SHIELD_24('\\uf8d8'),\n    WINDOW_VERTICAL_20('\\ufb25'),\n    WRENCH_16('\\ufb26'),\n    WRENCH_20('\\ufb27'),\n    WRENCH_24('\\uf8d9'),\n    XBOX_CONSOLE_20('\\uf8da'),\n    XBOX_CONSOLE_24('\\uf8db'),\n    ZOOM_IN_20('\\uf8dc'),\n    ZOOM_IN_24('\\uf8dd'),\n    ZOOM_OUT_20('\\uf8de'),\n    ZOOM_OUT_24('\\uf8df');\n\n    public static FluentUiFilledMZ findByDescription(String description) {\n        for (FluentUiFilledMZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    FluentUiFilledMZ(int code) {\n        this.description = \"fltfmz-\" + name().toLowerCase().replace(\"_\", \"-\");\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/org/kordamp/ikonli/fluentui/FluentUiFilledMZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fluentui;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FluentUiFilledMZIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fluentui/1.1.74/fonts/FluentSystemIcons-Filled.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"fltfmz-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return FluentUiFilledMZ.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"FluentSystemIcons-Filled\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/org/kordamp/ikonli/fluentui/FluentUiFilledMZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fluentui;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class FluentUiFilledMZIkonProvider implements IkonProvider<FluentUiFilledMZ> {\n    @Override\n    public Class<FluentUiFilledMZ> getIkon() {\n        return FluentUiFilledMZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/org/kordamp/ikonli/fluentui/FluentUiRegularAL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fluentui;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum FluentUiRegularAL implements Ikon {\n    ACCESSIBILITY_16('\\uf102'),\n    ACCESSIBILITY_20('\\uf103'),\n    ACCESSIBILITY_24('\\uf104'),\n    ACCESSIBILITY_28('\\uf105'),\n    ACCESS_TIME_24('\\uf101'),\n    ACTIVITY_24('\\uf106'),\n    ADD_12('\\uf107'),\n    ADD_16('\\uf108'),\n    ADD_20('\\uf109'),\n    ADD_24('\\uf10a'),\n    ADD_28('\\uf10b'),\n    ADD_CIRCLE_20('\\uf10c'),\n    ADD_CIRCLE_24('\\uf10d'),\n    ADD_CIRCLE_28('\\uf10e'),\n    ADD_SQUARE_24('\\uf8ca'),\n    AIRPLANE_20('\\uf10f'),\n    AIRPLANE_24('\\uf110'),\n    AIRPLANE_TAKE_OFF_16('\\uf111'),\n    AIRPLANE_TAKE_OFF_20('\\uf112'),\n    AIRPLANE_TAKE_OFF_24('\\uf113'),\n    ALERT_20('\\uf114'),\n    ALERT_24('\\uf115'),\n    ALERT_28('\\uf116'),\n    ALERT_OFF_16('\\uf117'),\n    ALERT_OFF_20('\\uf118'),\n    ALERT_OFF_24('\\uf119'),\n    ALERT_OFF_28('\\uf11a'),\n    ALERT_ON_24('\\uf11b'),\n    ALERT_SNOOZE_20('\\uf11c'),\n    ALERT_SNOOZE_24('\\uf11d'),\n    ALERT_URGENT_20('\\uf11e'),\n    ALERT_URGENT_24('\\uf11f'),\n    ANIMAL_DOG_20('\\uf120'),\n    ANIMAL_DOG_24('\\uf121'),\n    APPROVALS_APP_24('\\uf130'),\n    APPROVALS_APP_28('\\uf131'),\n    APPS_16('\\uf132'),\n    APPS_20('\\uf133'),\n    APPS_24('\\uf134'),\n    APPS_28('\\uf135'),\n    APPS_ADD_IN_20('\\uf136'),\n    APPS_ADD_IN_24('\\uf137'),\n    APPS_LIST_20('\\uf8cb'),\n    APPS_LIST_24('\\uf138'),\n    APP_FOLDER_20('\\uf122'),\n    APP_FOLDER_24('\\uf123'),\n    APP_GENERIC_24('\\uf124'),\n    APP_RECENT_24('\\uf125'),\n    APP_SPAN_16('\\uf126'),\n    APP_SPAN_20('\\uf127'),\n    APP_SPAN_24('\\uf128'),\n    APP_SPAN_28('\\uf129'),\n    APP_STORE_24('\\uf12a'),\n    APP_TITLE_24('\\uf12b'),\n    APP_UNSPAN_16('\\uf12c'),\n    APP_UNSPAN_20('\\uf12d'),\n    APP_UNSPAN_24('\\uf12e'),\n    APP_UNSPAN_28('\\uf12f'),\n    ARCHIVE_16('\\uf8cc'),\n    ARCHIVE_20('\\uf139'),\n    ARCHIVE_24('\\uf13a'),\n    ARCHIVE_28('\\uf13b'),\n    ARCHIVE_48('\\uf13c'),\n    ARROWS_BIDIRECTIONAL_24('\\uf1a6'),\n    ARROW_AUTOFIT_HEIGHT_24('\\uf8cd'),\n    ARROW_AUTOFIT_WIDTH_24('\\uf8ce'),\n    ARROW_CLOCKWISE_20('\\uf13d'),\n    ARROW_CLOCKWISE_24('\\uf13e'),\n    ARROW_COUNTERCLOCKWISE_20('\\uf13f'),\n    ARROW_COUNTERCLOCKWISE_24('\\uf140'),\n    ARROW_COUNTERCLOCKWISE_28('\\uf8cf'),\n    ARROW_CURVE_DOWN_LEFT_20('\\uf141'),\n    ARROW_CURVE_DOWN_RIGHT_20('\\uf142'),\n    ARROW_CURVE_RIGHT_20('\\uf143'),\n    ARROW_CURVE_RIGHT_24('\\uf144'),\n    ARROW_CURVE_UP_LEFT_20('\\uf145'),\n    ARROW_CURVE_UP_RIGHT_20('\\uf146'),\n    ARROW_DOWNLOAD_16('\\uf14f'),\n    ARROW_DOWNLOAD_20('\\uf150'),\n    ARROW_DOWNLOAD_24('\\uf151'),\n    ARROW_DOWNLOAD_48('\\uf152'),\n    ARROW_DOWN_12('\\uf8d0'),\n    ARROW_DOWN_16('\\uf147'),\n    ARROW_DOWN_20('\\uf148'),\n    ARROW_DOWN_24('\\uf149'),\n    ARROW_DOWN_28('\\uf14a'),\n    ARROW_DOWN_LEFT_16('\\uf8d1'),\n    ARROW_DOWN_LEFT_24('\\uf14b'),\n    ARROW_DOWN_RIGHT_CIRCLE_16('\\uf14c'),\n    ARROW_DOWN_RIGHT_CIRCLE_24('\\uf14d'),\n    ARROW_DOWN_SQUARE_24('\\uf14e'),\n    ARROW_ENTER_24('\\uf153'),\n    ARROW_EXPAND_24('\\uf154'),\n    ARROW_EXPORT_20('\\uf155'),\n    ARROW_EXPORT_RTL_20('\\uf8d2'),\n    ARROW_FIT_HEIGHT_24('\\uf8d3'),\n    ARROW_FIT_WIDTH_24('\\uf8d4'),\n    ARROW_FORWARD_16('\\uf156'),\n    ARROW_FORWARD_20('\\uf157'),\n    ARROW_FORWARD_24('\\uf158'),\n    ARROW_HOOK_DOWN_LEFT_16('\\uf8d5'),\n    ARROW_HOOK_DOWN_LEFT_20('\\uf8d6'),\n    ARROW_HOOK_DOWN_LEFT_24('\\uf8d7'),\n    ARROW_HOOK_DOWN_LEFT_28('\\uf8d8'),\n    ARROW_HOOK_DOWN_RIGHT_16('\\uf8d9'),\n    ARROW_HOOK_DOWN_RIGHT_20('\\uf8da'),\n    ARROW_HOOK_DOWN_RIGHT_24('\\uf8db'),\n    ARROW_HOOK_DOWN_RIGHT_28('\\uf8dc'),\n    ARROW_HOOK_UP_LEFT_16('\\uf8dd'),\n    ARROW_HOOK_UP_LEFT_20('\\uf8de'),\n    ARROW_HOOK_UP_LEFT_24('\\uf8df'),\n    ARROW_HOOK_UP_LEFT_28('\\uf8e0'),\n    ARROW_HOOK_UP_RIGHT_16('\\uf8e1'),\n    ARROW_HOOK_UP_RIGHT_20('\\uf8e2'),\n    ARROW_HOOK_UP_RIGHT_24('\\uf8e3'),\n    ARROW_HOOK_UP_RIGHT_28('\\uf8e4'),\n    ARROW_IMPORT_20('\\uf159'),\n    ARROW_IMPORT_24('\\uf15a'),\n    ARROW_LEFT_20('\\uf15b'),\n    ARROW_LEFT_24('\\uf15c'),\n    ARROW_LEFT_28('\\uf15d'),\n    ARROW_MAXIMIZE_16('\\uf15e'),\n    ARROW_MAXIMIZE_20('\\uf15f'),\n    ARROW_MAXIMIZE_24('\\uf160'),\n    ARROW_MAXIMIZE_28('\\uf161'),\n    ARROW_MAXIMIZE_VERTICAL_20('\\uf162'),\n    ARROW_MAXIMIZE_VERTICAL_24('\\uf163'),\n    ARROW_MINIMIZE_16('\\uf164'),\n    ARROW_MINIMIZE_20('\\uf165'),\n    ARROW_MINIMIZE_24('\\uf166'),\n    ARROW_MINIMIZE_28('\\uf167'),\n    ARROW_MINIMIZE_VERTICAL_24('\\uf168'),\n    ARROW_MOVE_20('\\uf8e5'),\n    ARROW_MOVE_24('\\uf169'),\n    ARROW_NEXT_20('\\uf16a'),\n    ARROW_NEXT_24('\\uf16b'),\n    ARROW_PREVIOUS_20('\\uf16c'),\n    ARROW_PREVIOUS_24('\\uf16d'),\n    ARROW_REDO_20('\\uf16e'),\n    ARROW_REDO_24('\\uf16f'),\n    ARROW_REDO_32('\\uf8e6'),\n    ARROW_REDO_48('\\uf8e7'),\n    ARROW_REPEAT_ALL_16('\\uf170'),\n    ARROW_REPEAT_ALL_20('\\uf171'),\n    ARROW_REPEAT_ALL_24('\\uf172'),\n    ARROW_REPEAT_ALL_OFF_16('\\uf173'),\n    ARROW_REPEAT_ALL_OFF_20('\\uf174'),\n    ARROW_REPEAT_ALL_OFF_24('\\uf175'),\n    ARROW_REPLY_16('\\uf176'),\n    ARROW_REPLY_20('\\uf177'),\n    ARROW_REPLY_24('\\uf178'),\n    ARROW_REPLY_48('\\uf179'),\n    ARROW_REPLY_ALL_16('\\uf17a'),\n    ARROW_REPLY_ALL_20('\\uf17b'),\n    ARROW_REPLY_ALL_24('\\uf17c'),\n    ARROW_REPLY_ALL_48('\\uf17d'),\n    ARROW_REPLY_DOWN_16('\\uf17e'),\n    ARROW_REPLY_DOWN_20('\\uf17f'),\n    ARROW_REPLY_DOWN_24('\\uf180'),\n    ARROW_RIGHT_20('\\uf181'),\n    ARROW_RIGHT_24('\\uf182'),\n    ARROW_RIGHT_28('\\uf183'),\n    ARROW_RIGHT_CIRCLE_24('\\uf184'),\n    ARROW_ROTATE_CLOCKWISE_20('\\uf185'),\n    ARROW_ROTATE_CLOCKWISE_24('\\uf186'),\n    ARROW_ROTATE_COUNTERCLOCKWISE_20('\\uf187'),\n    ARROW_ROTATE_COUNTERCLOCKWISE_24('\\uf188'),\n    ARROW_ROTATE_ICON_24('\\uf189'),\n    ARROW_ROTATE_LEFT_24('\\uf8e8'),\n    ARROW_ROTATE_RIGHT_20('\\uf8e9'),\n    ARROW_ROTATE_RIGHT_24('\\uf8ea'),\n    ARROW_SORT_20('\\uf18a'),\n    ARROW_SORT_24('\\uf18b'),\n    ARROW_SORT_28('\\uf18c'),\n    ARROW_SWAP_20('\\uf18d'),\n    ARROW_SWAP_24('\\uf18e'),\n    ARROW_SYNC_12('\\uf18f'),\n    ARROW_SYNC_20('\\uf190'),\n    ARROW_SYNC_24('\\uf191'),\n    ARROW_SYNC_CIRCLE_16('\\uf192'),\n    ARROW_SYNC_CIRCLE_20('\\uf193'),\n    ARROW_SYNC_CIRCLE_24('\\uf194'),\n    ARROW_SYNC_OFF_12('\\uf195'),\n    ARROW_TRENDING_16('\\uf196'),\n    ARROW_TRENDING_20('\\uf197'),\n    ARROW_TRENDING_24('\\uf198'),\n    ARROW_UNDO_20('\\uf199'),\n    ARROW_UNDO_24('\\uf19a'),\n    ARROW_UPLOAD_20('\\uf1a4'),\n    ARROW_UPLOAD_24('\\uf1a5'),\n    ARROW_UP_20('\\uf19b'),\n    ARROW_UP_24('\\uf19c'),\n    ARROW_UP_28('\\uf19d'),\n    ARROW_UP_CIRCLE_16('\\uf19e'),\n    ARROW_UP_CIRCLE_20('\\uf19f'),\n    ARROW_UP_CIRCLE_24('\\uf1a0'),\n    ARROW_UP_LEFT_24('\\uf1a1'),\n    ARROW_UP_LEFT_CIRCLE_24('\\uf1a2'),\n    ARROW_UP_RIGHT_16('\\uf8eb'),\n    ARROW_UP_RIGHT_24('\\uf1a3'),\n    ASSIGNMENTS_24('\\uf1a7'),\n    ATTACH_16('\\uf1a8'),\n    ATTACH_20('\\uf1a9'),\n    ATTACH_24('\\uf1aa'),\n    ATTACH_ARROW_RIGHT_20('\\uf8ec'),\n    ATTACH_ARROW_RIGHT_24('\\uf8ed'),\n    ATTACH_FORWARD_20('\\uf1ab'),\n    ATTACH_FORWARD_24('\\uf1ac'),\n    ATTACH_TEXT_24('\\uf8ee'),\n    ATTACH_WITH_TEXT_24('\\uf1ad'),\n    AUTOCORRECT_24('\\uf1ae'),\n    AUTOFIT_CONTENT_24('\\uf8ef'),\n    AUTOSUM_20('\\uf1af'),\n    AUTOSUM_24('\\uf1b0'),\n    BACKPACK_12('\\uf8f0'),\n    BACKPACK_16('\\uf8f1'),\n    BACKPACK_20('\\uf8f2'),\n    BACKPACK_24('\\uf8f3'),\n    BACKPACK_28('\\uf8f4'),\n    BACKPACK_48('\\uf8f5'),\n    BACKSPACE_20('\\uf1b1'),\n    BACKSPACE_24('\\uf1b2'),\n    BACKWARD_20('\\uf1b3'),\n    BACKWARD_24('\\uf1b4'),\n    BADGE_24('\\uf1b5'),\n    BALLOON_16('\\uf8f6'),\n    BALLOON_20('\\uf1b6'),\n    BALLOON_24('\\uf1b7'),\n    BANK_16('\\uf1b8'),\n    BANK_20('\\uf1b9'),\n    BANK_24('\\uf1ba'),\n    BATTERY_0_20('\\uf1bb'),\n    BATTERY_0_24('\\uf1bc'),\n    BATTERY_1_20('\\uf1bd'),\n    BATTERY_1_24('\\uf1be'),\n    BATTERY_2_20('\\uf1bf'),\n    BATTERY_2_24('\\uf1c0'),\n    BATTERY_3_20('\\uf1c1'),\n    BATTERY_3_24('\\uf1c2'),\n    BATTERY_4_20('\\uf1c3'),\n    BATTERY_4_24('\\uf1c4'),\n    BATTERY_5_20('\\uf1c5'),\n    BATTERY_5_24('\\uf1c6'),\n    BATTERY_6_20('\\uf1c7'),\n    BATTERY_6_24('\\uf1c8'),\n    BATTERY_7_20('\\uf1c9'),\n    BATTERY_7_24('\\uf1ca'),\n    BATTERY_8_20('\\uf1cb'),\n    BATTERY_8_24('\\uf1cc'),\n    BATTERY_9_20('\\uf1cd'),\n    BATTERY_9_24('\\uf1ce'),\n    BATTERY_CHARGE_20('\\uf1cf'),\n    BATTERY_CHARGE_24('\\uf1d0'),\n    BATTERY_FULL_20('\\uf1d1'),\n    BATTERY_FULL_24('\\uf1d2'),\n    BATTERY_SAVER_20('\\uf1d3'),\n    BATTERY_SAVER_24('\\uf1d4'),\n    BATTERY_WARNING_24('\\uf1d5'),\n    BEAKER_16('\\uf1d6'),\n    BEAKER_20('\\uf1d7'),\n    BEAKER_24('\\uf1d8'),\n    BED_16('\\uf8f7'),\n    BED_20('\\uf1d9'),\n    BED_24('\\uf1da'),\n    BLOCK_16('\\uf1db'),\n    BLOCK_20('\\uf1dc'),\n    BLOCK_24('\\uf1dd'),\n    BLUETOOTH_20('\\uf1de'),\n    BLUETOOTH_24('\\uf1df'),\n    BLUETOOTH_28('\\uf8f8'),\n    BLUETOOTH_CONNECTED_24('\\uf1e0'),\n    BLUETOOTH_DISABLED_24('\\uf1e1'),\n    BLUETOOTH_SEARCHING_24('\\uf1e2'),\n    BLUR_16('\\uf8f9'),\n    BLUR_20('\\uf8fa'),\n    BLUR_24('\\uf8fb'),\n    BLUR_28('\\uf8fc'),\n    BOARD_24('\\uf1e3'),\n    BOOKMARK_16('\\uf1f4'),\n    BOOKMARK_20('\\uf1f5'),\n    BOOKMARK_24('\\uf1f6'),\n    BOOKMARK_28('\\uf1f7'),\n    BOOKMARK_OFF_24('\\uf1f8'),\n    BOOK_20('\\uf8fd'),\n    BOOK_24('\\uf8fe'),\n    BOOK_ADD_20('\\uf8ff'),\n    BOOK_ADD_24('\\uf900'),\n    BOOK_CLOCK_24('\\uf901'),\n    BOOK_COINS_24('\\uf902'),\n    BOOK_COMPASS_24('\\uf903'),\n    BOOK_DATABASE_24('\\uf904'),\n    BOOK_EXCLAMATION_MARK_24('\\uf905'),\n    BOOK_FORMULA_COMPATIBILITY_24('\\uf1e4'),\n    BOOK_FORMULA_DATABASE_24('\\uf1e5'),\n    BOOK_FORMULA_DATE_24('\\uf1e6'),\n    BOOK_FORMULA_ENGINEERING_24('\\uf1e7'),\n    BOOK_FORMULA_FINANCIAL_24('\\uf1e8'),\n    BOOK_FORMULA_INFORMATION_24('\\uf1e9'),\n    BOOK_FORMULA_LOGICAL_24('\\uf1ea'),\n    BOOK_FORMULA_LOOKUP_24('\\uf1eb'),\n    BOOK_FORMULA_MATH_24('\\uf1ec'),\n    BOOK_FORMULA_RECENT_24('\\uf1ed'),\n    BOOK_FORMULA_STATISTICS_24('\\uf1ee'),\n    BOOK_FORMULA_TEXT_24('\\uf1ef'),\n    BOOK_GLOBE_24('\\uf1f0'),\n    BOOK_INFORMATION_24('\\uf906'),\n    BOOK_LETTER_24('\\uf907'),\n    BOOK_NUMBER_16('\\uf1f1'),\n    BOOK_NUMBER_20('\\uf1f2'),\n    BOOK_NUMBER_24('\\uf1f3'),\n    BOOK_OPEN_20('\\uf908'),\n    BOOK_OPEN_24('\\uf909'),\n    BOOK_OPEN_GLOBE_24('\\uf90a'),\n    BOOK_PULSE_24('\\uf90b'),\n    BOOK_QUESTION_MARK_24('\\uf90c'),\n    BOOK_SEARCH_24('\\uf90d'),\n    BOOK_STAR_24('\\uf90e'),\n    BOOK_THETA_24('\\uf90f'),\n    BORDER_ALL_24('\\uf910'),\n    BORDER_BOTTOM_24('\\uf911'),\n    BORDER_BOTTOM_DOUBLE_24('\\uf912'),\n    BORDER_BOTTOM_THICK_24('\\uf913'),\n    BORDER_LEFT_24('\\uf914'),\n    BORDER_NONE_24('\\uf915'),\n    BORDER_OUTSIDE_24('\\uf916'),\n    BORDER_OUTSIDE_THICK_24('\\uf917'),\n    BORDER_RIGHT_24('\\uf918'),\n    BORDER_TOP_24('\\uf919'),\n    BORDER_TOP_BOTTOM_24('\\uf91a'),\n    BORDER_TOP_BOTTOM_DOUBLE_24('\\uf91b'),\n    BORDER_TOP_BOTTOM_THICK_24('\\uf91c'),\n    BOT_24('\\uf1f9'),\n    BOT_ADD_24('\\uf1fa'),\n    BRANCH_24('\\uf1fb'),\n    BRIEFCASE_12('\\uf91d'),\n    BRIEFCASE_20('\\uf1fc'),\n    BRIEFCASE_24('\\uf1fd'),\n    BRIEFCASE_32('\\uf91e'),\n    BRIEFCASE_ADD_24('\\uf91f'),\n    BRIEFCASE_ADD_32('\\uf920'),\n    BRING_TO_FRONT_20('\\uf1fe'),\n    BRING_TO_FRONT_24('\\uf1ff'),\n    BROAD_ACTIVITY_FEED_24('\\uf200'),\n    BROOM_20('\\uf201'),\n    BROOM_24('\\uf202'),\n    BUG_16('\\uf921'),\n    BUG_20('\\uf922'),\n    BUG_24('\\uf923'),\n    BUG_REPORT_24('\\uf203'),\n    BUILDING_1_24('\\uf204'),\n    BUILDING_24('\\uf205'),\n    BUILDING_2_16('\\uf206'),\n    BUILDING_2_20('\\uf207'),\n    BUILDING_2_24('\\uf208'),\n    BUILDING_BANK_16('\\uf924'),\n    BUILDING_BANK_20('\\uf925'),\n    BUILDING_BANK_24('\\uf926'),\n    BUILDING_GOVERNMENT_24('\\uf927'),\n    BUILDING_GOVERNMENT_32('\\uf928'),\n    BUILDING_MULTIPLE_24('\\uf929'),\n    BUILDING_RETAIL_24('\\uf209'),\n    BUILDING_SHOP_16('\\uf92a'),\n    BUILDING_SHOP_20('\\uf92b'),\n    BUILDING_SHOP_24('\\uf92c'),\n    BUILDING_SKYSCRAPER_16('\\uf92d'),\n    BUILDING_SKYSCRAPER_20('\\uf92e'),\n    BUILDING_SKYSCRAPER_24('\\uf92f'),\n    CALCULATOR_20('\\uf20a'),\n    CALENDAR_20('\\uf20b'),\n    CALENDAR_24('\\uf20c'),\n    CALENDAR_28('\\uf20d'),\n    CALENDAR_3_DAY_20('\\uf20e'),\n    CALENDAR_3_DAY_24('\\uf20f'),\n    CALENDAR_3_DAY_28('\\uf210'),\n    CALENDAR_ADD_20('\\uf211'),\n    CALENDAR_ADD_24('\\uf212'),\n    CALENDAR_AGENDA_20('\\uf213'),\n    CALENDAR_AGENDA_24('\\uf214'),\n    CALENDAR_AGENDA_28('\\uf215'),\n    CALENDAR_ARROW_RIGHT_20('\\uf216'),\n    CALENDAR_ASSISTANT_20('\\uf217'),\n    CALENDAR_ASSISTANT_24('\\uf218'),\n    CALENDAR_CANCEL_16('\\uf930'),\n    CALENDAR_CANCEL_20('\\uf219'),\n    CALENDAR_CANCEL_24('\\uf21a'),\n    CALENDAR_CHECKMARK_16('\\uf21b'),\n    CALENDAR_CHECKMARK_20('\\uf21c'),\n    CALENDAR_CHECKMARK_24('\\uf8c9'),\n    CALENDAR_CLOCK_16('\\uf931'),\n    CALENDAR_CLOCK_20('\\uf21d'),\n    CALENDAR_CLOCK_24('\\uf21e'),\n    CALENDAR_DATE_20('\\uf21f'),\n    CALENDAR_DATE_24('\\uf220'),\n    CALENDAR_DATE_28('\\uf221'),\n    CALENDAR_DAY_20('\\uf222'),\n    CALENDAR_DAY_24('\\uf223'),\n    CALENDAR_DAY_28('\\uf224'),\n    CALENDAR_EMPTY_16('\\uf225'),\n    CALENDAR_EMPTY_20('\\uf226'),\n    CALENDAR_EMPTY_24('\\uf227'),\n    CALENDAR_EMPTY_28('\\uf228'),\n    CALENDAR_LATER_24('\\uf229'),\n    CALENDAR_MENTION_20('\\uf932'),\n    CALENDAR_MONTH_20('\\uf22a'),\n    CALENDAR_MONTH_24('\\uf22b'),\n    CALENDAR_MONTH_28('\\uf22c'),\n    CALENDAR_MULTIPLE_20('\\uf22d'),\n    CALENDAR_MULTIPLE_24('\\uf22e'),\n    CALENDAR_OVERDUE_24('\\uf22f'),\n    CALENDAR_PERSON_20('\\uf230'),\n    CALENDAR_PERSON_24('\\uf933'),\n    CALENDAR_QUESTION_MARK_16('\\uf934'),\n    CALENDAR_QUESTION_MARK_20('\\uf935'),\n    CALENDAR_QUESTION_MARK_24('\\uf936'),\n    CALENDAR_REPLY_16('\\uf231'),\n    CALENDAR_REPLY_20('\\uf232'),\n    CALENDAR_REPLY_24('\\uf233'),\n    CALENDAR_REPLY_28('\\uf234'),\n    CALENDAR_SETTINGS_20('\\uf235'),\n    CALENDAR_STAR_20('\\uf236'),\n    CALENDAR_STAR_24('\\uf237'),\n    CALENDAR_SYNC_16('\\uf238'),\n    CALENDAR_SYNC_20('\\uf239'),\n    CALENDAR_SYNC_24('\\uf23a'),\n    CALENDAR_TODAY_16('\\uf23b'),\n    CALENDAR_TODAY_20('\\uf23c'),\n    CALENDAR_TODAY_24('\\uf23d'),\n    CALENDAR_TODAY_28('\\uf23e'),\n    CALENDAR_WEEK_NUMBERS_24('\\uf23f'),\n    CALENDAR_WEEK_START_20('\\uf240'),\n    CALENDAR_WEEK_START_24('\\uf241'),\n    CALENDAR_WEEK_START_28('\\uf242'),\n    CALENDAR_WORK_WEEK_16('\\uf243'),\n    CALENDAR_WORK_WEEK_20('\\uf244'),\n    CALENDAR_WORK_WEEK_24('\\uf245'),\n    CALLIGRAPHY_PEN_20('\\uf252'),\n    CALLIGRAPHY_PEN_24('\\uf253'),\n    CALL_ADD_24('\\uf246'),\n    CALL_BLOCKED_16('\\uf937'),\n    CALL_BLOCKED_20('\\uf938'),\n    CALL_BLOCKED_24('\\uf939'),\n    CALL_BLOCKED_28('\\uf93a'),\n    CALL_BLOCKED_48('\\uf93b'),\n    CALL_END_20('\\uf247'),\n    CALL_END_24('\\uf248'),\n    CALL_END_28('\\uf249'),\n    CALL_FORWARD_16('\\uf93c'),\n    CALL_FORWARD_20('\\uf93d'),\n    CALL_FORWARD_24('\\uf24a'),\n    CALL_FORWARD_28('\\uf93e'),\n    CALL_FORWARD_48('\\uf93f'),\n    CALL_INBOUND_16('\\uf24b'),\n    CALL_INBOUND_20('\\uf940'),\n    CALL_INBOUND_24('\\uf24c'),\n    CALL_INBOUND_28('\\uf941'),\n    CALL_INBOUND_48('\\uf942'),\n    CALL_MISSED_16('\\uf24d'),\n    CALL_MISSED_24('\\uf24e'),\n    CALL_MISSED_28('\\uf943'),\n    CALL_MISSED_48('\\uf944'),\n    CALL_OUTBOUND_16('\\uf24f'),\n    CALL_OUTBOUND_20('\\uf945'),\n    CALL_OUTBOUND_24('\\uf250'),\n    CALL_OUTBOUND_28('\\uf946'),\n    CALL_OUTBOUND_48('\\uf947'),\n    CALL_PARK_16('\\uf948'),\n    CALL_PARK_20('\\uf949'),\n    CALL_PARK_24('\\uf251'),\n    CALL_PARK_28('\\uf94a'),\n    CALL_PARK_48('\\uf94b'),\n    CAMERA_20('\\uf254'),\n    CAMERA_24('\\uf255'),\n    CAMERA_28('\\uf256'),\n    CAMERA_ADD_20('\\uf257'),\n    CAMERA_ADD_24('\\uf258'),\n    CAMERA_ADD_48('\\uf259'),\n    CAMERA_EDIT_20('\\uf94c'),\n    CAMERA_SWITCH_24('\\uf25a'),\n    CARET_12('\\uf25b'),\n    CARET_16('\\uf25c'),\n    CARET_20('\\uf25d'),\n    CARET_24('\\uf25e'),\n    CARET_DOWN_12('\\uf25f'),\n    CARET_DOWN_16('\\uf260'),\n    CARET_DOWN_20('\\uf261'),\n    CARET_DOWN_24('\\uf262'),\n    CARET_LEFT_12('\\uf263'),\n    CARET_LEFT_16('\\uf264'),\n    CARET_LEFT_20('\\uf265'),\n    CARET_LEFT_24('\\uf266'),\n    CARET_RIGHT_12('\\uf267'),\n    CARET_RIGHT_16('\\uf268'),\n    CARET_RIGHT_20('\\uf269'),\n    CARET_RIGHT_24('\\uf26a'),\n    CARET_UP_12('\\uf94d'),\n    CARET_UP_16('\\uf94e'),\n    CARET_UP_20('\\uf94f'),\n    CARET_UP_24('\\uf950'),\n    CART_16('\\uf951'),\n    CART_20('\\uf952'),\n    CART_24('\\uf26b'),\n    CAST_20('\\uf26c'),\n    CAST_24('\\uf26d'),\n    CAST_28('\\uf26e'),\n    CELLULAR_3G_24('\\uf26f'),\n    CELLULAR_4G_24('\\uf270'),\n    CELLULAR_DATA_1_20('\\uf271'),\n    CELLULAR_DATA_1_24('\\uf272'),\n    CELLULAR_DATA_2_20('\\uf273'),\n    CELLULAR_DATA_2_24('\\uf274'),\n    CELLULAR_DATA_3_20('\\uf275'),\n    CELLULAR_DATA_3_24('\\uf276'),\n    CELLULAR_DATA_4_20('\\uf277'),\n    CELLULAR_DATA_4_24('\\uf278'),\n    CELLULAR_DATA_5_20('\\uf279'),\n    CELLULAR_DATA_5_24('\\uf27a'),\n    CELLULAR_DATA_OFF_24('\\uf27b'),\n    CELLULAR_OFF_24('\\uf27c'),\n    CELLULAR_UNAVAILABLE_24('\\uf27d'),\n    CENTER_HORIZONTALLY_24('\\uf953'),\n    CENTER_VERTICALLY_24('\\uf954'),\n    CERTIFICATE_20('\\uf27e'),\n    CERTIFICATE_24('\\uf27f'),\n    CHANNEL_16('\\uf280'),\n    CHANNEL_20('\\uf281'),\n    CHANNEL_24('\\uf282'),\n    CHANNEL_28('\\uf955'),\n    CHANNEL_48('\\uf956'),\n    CHANNEL_ADD_16('\\uf957'),\n    CHANNEL_ADD_20('\\uf958'),\n    CHANNEL_ADD_24('\\uf959'),\n    CHANNEL_ADD_28('\\uf95a'),\n    CHANNEL_ADD_48('\\uf95b'),\n    CHANNEL_ALERT_16('\\uf95c'),\n    CHANNEL_ALERT_20('\\uf95d'),\n    CHANNEL_ALERT_24('\\uf95e'),\n    CHANNEL_ALERT_28('\\uf95f'),\n    CHANNEL_ALERT_48('\\uf960'),\n    CHANNEL_ARROW_LEFT_16('\\uf961'),\n    CHANNEL_ARROW_LEFT_20('\\uf962'),\n    CHANNEL_ARROW_LEFT_24('\\uf963'),\n    CHANNEL_ARROW_LEFT_28('\\uf964'),\n    CHANNEL_ARROW_LEFT_48('\\uf965'),\n    CHANNEL_DISMISS_16('\\uf966'),\n    CHANNEL_DISMISS_20('\\uf967'),\n    CHANNEL_DISMISS_24('\\uf968'),\n    CHANNEL_DISMISS_28('\\uf969'),\n    CHANNEL_DISMISS_48('\\uf96a'),\n    CHANNEL_FOLLOW_24('\\uf283'),\n    CHANNEL_NOTIFICATIONS_24('\\uf284'),\n    CHANNEL_UNFOLLOW_24('\\uf285'),\n    CHAT_16('\\uf96b'),\n    CHAT_20('\\uf286'),\n    CHAT_24('\\uf287'),\n    CHAT_28('\\uf288'),\n    CHAT_BUBBLES_QUESTION_24('\\uf289'),\n    CHAT_HELP_24('\\uf28a'),\n    CHAT_OFF_24('\\uf28b'),\n    CHAT_WARNING_24('\\uf28c'),\n    CHECKBOX_CHECKED_20('\\uf28d'),\n    CHECKBOX_CHECKED_24('\\uf28e'),\n    CHECKBOX_UNCHECKED_12('\\uf28f'),\n    CHECKBOX_UNCHECKED_16('\\uf290'),\n    CHECKBOX_UNCHECKED_20('\\uf291'),\n    CHECKBOX_UNCHECKED_24('\\uf292'),\n    CHECKMARK_12('\\uf293'),\n    CHECKMARK_16('\\uf96c'),\n    CHECKMARK_20('\\uf294'),\n    CHECKMARK_24('\\uf295'),\n    CHECKMARK_28('\\uf296'),\n    CHECKMARK_CIRCLE_16('\\uf297'),\n    CHECKMARK_CIRCLE_20('\\uf298'),\n    CHECKMARK_CIRCLE_24('\\uf299'),\n    CHECKMARK_CIRCLE_48('\\uf29a'),\n    CHECKMARK_LOCK_16('\\uf29b'),\n    CHECKMARK_LOCK_20('\\uf29c'),\n    CHECKMARK_LOCK_24('\\uf29d'),\n    CHECKMARK_SQUARE_24('\\uf29e'),\n    CHECKMARK_UNDERLINE_CIRCLE_16('\\uf29f'),\n    CHECKMARK_UNDERLINE_CIRCLE_20('\\uf2a0'),\n    CHEVRON_DOWN_12('\\uf2a1'),\n    CHEVRON_DOWN_16('\\uf2a2'),\n    CHEVRON_DOWN_20('\\uf2a3'),\n    CHEVRON_DOWN_24('\\uf2a4'),\n    CHEVRON_DOWN_28('\\uf2a5'),\n    CHEVRON_DOWN_48('\\uf2a6'),\n    CHEVRON_DOWN_CIRCLE_24('\\uf2a7'),\n    CHEVRON_LEFT_12('\\uf2a8'),\n    CHEVRON_LEFT_16('\\uf2a9'),\n    CHEVRON_LEFT_20('\\uf2aa'),\n    CHEVRON_LEFT_24('\\uf2ab'),\n    CHEVRON_LEFT_28('\\uf2ac'),\n    CHEVRON_LEFT_48('\\uf2ad'),\n    CHEVRON_RIGHT_12('\\uf2ae'),\n    CHEVRON_RIGHT_16('\\uf2af'),\n    CHEVRON_RIGHT_20('\\uf2b0'),\n    CHEVRON_RIGHT_24('\\uf2b1'),\n    CHEVRON_RIGHT_28('\\uf2b2'),\n    CHEVRON_RIGHT_48('\\uf2b3'),\n    CHEVRON_RIGHT_CIRCLE_24('\\uf96d'),\n    CHEVRON_UP_12('\\uf2b4'),\n    CHEVRON_UP_16('\\uf2b5'),\n    CHEVRON_UP_20('\\uf2b6'),\n    CHEVRON_UP_24('\\uf2b7'),\n    CHEVRON_UP_28('\\uf2b8'),\n    CHEVRON_UP_48('\\uf2b9'),\n    CIRCLE_16('\\uf2ba'),\n    CIRCLE_20('\\uf2bb'),\n    CIRCLE_24('\\uf2bc'),\n    CIRCLE_HALF_FILL_20('\\uf2bd'),\n    CIRCLE_HALF_FILL_24('\\uf2be'),\n    CIRCLE_LINE_24('\\uf2bf'),\n    CIRCLE_SMALL_24('\\uf2c0'),\n    CITY_16('\\uf2c1'),\n    CITY_20('\\uf2c2'),\n    CITY_24('\\uf2c3'),\n    CLASSIFICATION_16('\\uf2c5'),\n    CLASSIFICATION_20('\\uf2c6'),\n    CLASSIFICATION_24('\\uf2c7'),\n    CLASS_24('\\uf2c4'),\n    CLEAR_FORMATTING_24('\\uf2c8'),\n    CLIPBOARD_20('\\uf2c9'),\n    CLIPBOARD_24('\\uf2ca'),\n    CLIPBOARD_CODE_16('\\uf2cb'),\n    CLIPBOARD_CODE_20('\\uf2cc'),\n    CLIPBOARD_CODE_24('\\uf2cd'),\n    CLIPBOARD_LETTER_16('\\uf2ce'),\n    CLIPBOARD_LETTER_20('\\uf2cf'),\n    CLIPBOARD_LETTER_24('\\uf2d0'),\n    CLIPBOARD_LINK_16('\\uf2d1'),\n    CLIPBOARD_LINK_20('\\uf2d2'),\n    CLIPBOARD_LINK_24('\\uf2d3'),\n    CLIPBOARD_MORE_24('\\uf2d4'),\n    CLIPBOARD_PASTE_16('\\uf96e'),\n    CLIPBOARD_PASTE_20('\\uf2d5'),\n    CLIPBOARD_PASTE_24('\\uf2d6'),\n    CLIPBOARD_SEARCH_20('\\uf2d7'),\n    CLIPBOARD_SEARCH_24('\\uf2d8'),\n    CLIPBOARD_TEXT_20('\\uf2d9'),\n    CLIPBOARD_TEXT_24('\\uf2da'),\n    CLOCK_12('\\uf2db'),\n    CLOCK_16('\\uf2dc'),\n    CLOCK_20('\\uf2dd'),\n    CLOCK_24('\\uf2de'),\n    CLOCK_28('\\uf2df'),\n    CLOCK_48('\\uf2e0'),\n    CLOCK_ALARM_20('\\uf2e1'),\n    CLOCK_ALARM_24('\\uf2e2'),\n    CLOCK_DISMISS_24('\\uf96f'),\n    CLOSED_CAPTION_16('\\uf970'),\n    CLOSED_CAPTION_20('\\uf971'),\n    CLOSED_CAPTION_24('\\uf2e3'),\n    CLOSED_CAPTION_28('\\uf972'),\n    CLOSED_CAPTION_48('\\uf973'),\n    CLOUD_20('\\uf2e4'),\n    CLOUD_24('\\uf2e5'),\n    CLOUD_48('\\uf2e6'),\n    CLOUD_BACKUP_24('\\uf2e7'),\n    CLOUD_BACKUP_48('\\uf2e8'),\n    CLOUD_DOWNLOAD_24('\\uf2e9'),\n    CLOUD_DOWNLOAD_32('\\uf974'),\n    CLOUD_DOWNLOAD_48('\\uf975'),\n    CLOUD_OFFLINE_24('\\uf2ec'),\n    CLOUD_OFF_24('\\uf2ea'),\n    CLOUD_OFF_48('\\uf2eb'),\n    CLOUD_SYNC_COMPLETE_24('\\uf2ed'),\n    CLOUD_SYNC_COMPLETE_48('\\uf2ee'),\n    CODE_20('\\uf2ef'),\n    CODE_24('\\uf2f0'),\n    COLLECTIONS_20('\\uf2f1'),\n    COLLECTIONS_24('\\uf2f2'),\n    COLLECTIONS_ADD_20('\\uf2f3'),\n    COLLECTIONS_ADD_24('\\uf2f4'),\n    COLOR_20('\\uf2f5'),\n    COLOR_24('\\uf2f6'),\n    COLOR_BACKGROUND_20('\\uf2f7'),\n    COLOR_BACKGROUND_24('\\uf2f8'),\n    COLOR_BACKGROUND_ACCENT_20('\\uf976'),\n    COLOR_BACKGROUND_ACCENT_24('\\uf977'),\n    COLOR_FILL_20('\\uf2f9'),\n    COLOR_FILL_24('\\uf2fa'),\n    COLOR_FILL_ACCENT_20('\\uf978'),\n    COLOR_FILL_ACCENT_24('\\uf979'),\n    COLOR_LINE_16('\\uf97a'),\n    COLOR_LINE_20('\\uf2fb'),\n    COLOR_LINE_24('\\uf2fc'),\n    COLOR_LINE_ACCENT_16('\\uf97b'),\n    COLOR_LINE_ACCENT_20('\\uf97c'),\n    COLOR_LINE_ACCENT_24('\\uf97d'),\n    COLUMN_TRIPLE_24('\\uf2fd'),\n    COMMENT_12('\\uf97e'),\n    COMMENT_16('\\uf2fe'),\n    COMMENT_20('\\uf2ff'),\n    COMMENT_24('\\uf300'),\n    COMMENT_28('\\uf97f'),\n    COMMENT_48('\\uf980'),\n    COMMENT_ADD_12('\\uf981'),\n    COMMENT_ADD_16('\\uf982'),\n    COMMENT_ADD_20('\\uf983'),\n    COMMENT_ADD_24('\\uf301'),\n    COMMENT_ADD_28('\\uf984'),\n    COMMENT_ADD_48('\\uf985'),\n    COMMENT_ARROW_LEFT_12('\\uf986'),\n    COMMENT_ARROW_LEFT_16('\\uf987'),\n    COMMENT_ARROW_LEFT_20('\\uf988'),\n    COMMENT_ARROW_LEFT_28('\\uf989'),\n    COMMENT_ARROW_LEFT_48('\\uf98a'),\n    COMMENT_ARROW_RIGHT_12('\\uf98b'),\n    COMMENT_ARROW_RIGHT_16('\\uf98c'),\n    COMMENT_ARROW_RIGHT_20('\\uf98d'),\n    COMMENT_ARROW_RIGHT_28('\\uf98e'),\n    COMMENT_ARROW_RIGHT_48('\\uf98f'),\n    COMMENT_CHECKMARK_12('\\uf990'),\n    COMMENT_CHECKMARK_16('\\uf991'),\n    COMMENT_CHECKMARK_20('\\uf992'),\n    COMMENT_CHECKMARK_24('\\uf993'),\n    COMMENT_CHECKMARK_28('\\uf994'),\n    COMMENT_CHECKMARK_48('\\uf995'),\n    COMMENT_DELETE_24('\\uf302'),\n    COMMENT_EDIT_20('\\uf996'),\n    COMMENT_EDIT_24('\\uf997'),\n    COMMENT_MENTION_16('\\uf303'),\n    COMMENT_MENTION_20('\\uf304'),\n    COMMENT_MENTION_24('\\uf305'),\n    COMMENT_MULTIPLE_16('\\uf306'),\n    COMMENT_MULTIPLE_20('\\uf307'),\n    COMMENT_MULTIPLE_24('\\uf308'),\n    COMMENT_NEXT_24('\\uf309'),\n    COMMENT_OFF_16('\\uf998'),\n    COMMENT_OFF_20('\\uf999'),\n    COMMENT_OFF_24('\\uf99a'),\n    COMMENT_OFF_28('\\uf99b'),\n    COMMENT_OFF_48('\\uf99c'),\n    COMMENT_PREVIOUS_24('\\uf30a'),\n    COMMENT_RESOLVE_24('\\uf30b'),\n    COMMUNICATION_16('\\uf30c'),\n    COMMUNICATION_20('\\uf30d'),\n    COMMUNICATION_24('\\uf30e'),\n    COMPASS_NORTHWEST_16('\\uf30f'),\n    COMPASS_NORTHWEST_20('\\uf310'),\n    COMPASS_NORTHWEST_24('\\uf311'),\n    COMPASS_NORTHWEST_28('\\uf312'),\n    COMPOSE_16('\\uf313'),\n    COMPOSE_20('\\uf314'),\n    COMPOSE_24('\\uf315'),\n    COMPOSE_28('\\uf316'),\n    CONFERENCE_ROOM_16('\\uf317'),\n    CONFERENCE_ROOM_20('\\uf318'),\n    CONFERENCE_ROOM_24('\\uf319'),\n    CONFERENCE_ROOM_28('\\uf31a'),\n    CONFERENCE_ROOM_48('\\uf31b'),\n    CONNECTOR_16('\\uf31c'),\n    CONNECTOR_20('\\uf31d'),\n    CONNECTOR_24('\\uf31e'),\n    CONTACTS_24('\\uf322'),\n    CONTACT_CARD_20('\\uf31f'),\n    CONTACT_CARD_24('\\uf320'),\n    CONTACT_CARD_GROUP_16('\\uf99d'),\n    CONTACT_CARD_GROUP_20('\\uf99e'),\n    CONTACT_CARD_GROUP_24('\\uf321'),\n    CONTACT_CARD_GROUP_28('\\uf99f'),\n    CONTACT_CARD_GROUP_48('\\uf9a0'),\n    CONTENT_SETTINGS_16('\\uf323'),\n    CONTENT_SETTINGS_20('\\uf324'),\n    CONTENT_SETTINGS_24('\\uf325'),\n    CONVERT_RANGE_24('\\uf9a1'),\n    CONVERT_TO_TABLE_24('\\uf326'),\n    CONVERT_TO_TEXT_24('\\uf327'),\n    COOKIES_20('\\uf328'),\n    COOKIES_24('\\uf329'),\n    COPY_16('\\uf32a'),\n    COPY_20('\\uf32b'),\n    COPY_24('\\uf32c'),\n    COPY_ADD_24('\\uf9a2'),\n    COPY_IMAGE_24('\\uf32d'),\n    COPY_LINK_24('\\uf32e'),\n    COPY_MOVE_16('\\uf32f'),\n    COPY_MOVE_24('\\uf330'),\n    COPY_SELECT_20('\\uf9a3'),\n    COUCH_12('\\uf9a4'),\n    COUCH_24('\\uf9a5'),\n    CROP_20('\\uf9a6'),\n    CROP_24('\\uf331'),\n    CROP_INTERIM_24('\\uf332'),\n    CROP_INTERIM_OFF_24('\\uf333'),\n    CUBE_16('\\uf334'),\n    CUBE_20('\\uf335'),\n    CUBE_24('\\uf336'),\n    CURRENCY_16('\\uf337'),\n    CURRENCY_20('\\uf338'),\n    CURRENCY_24('\\uf339'),\n    CURRENCY_DOLLAR_RUPEE_16('\\uf9a7'),\n    CURRENCY_DOLLAR_RUPEE_20('\\uf9a8'),\n    CURRENCY_DOLLAR_RUPEE_24('\\uf9a9'),\n    CURSOR_20('\\uf9aa'),\n    CURSOR_24('\\uf9ab'),\n    CURSOR_HOVER_16('\\uf9ac'),\n    CURSOR_HOVER_20('\\uf9ad'),\n    CURSOR_HOVER_24('\\uf9ae'),\n    CURSOR_HOVER_28('\\uf9af'),\n    CURSOR_HOVER_32('\\uf9b0'),\n    CURSOR_HOVER_48('\\uf9b1'),\n    CURSOR_HOVER_OFF_16('\\uf9b2'),\n    CURSOR_HOVER_OFF_20('\\uf9b3'),\n    CURSOR_HOVER_OFF_24('\\uf9b4'),\n    CURSOR_HOVER_OFF_28('\\uf9b5'),\n    CURSOR_HOVER_OFF_48('\\uf9b6'),\n    CUT_20('\\uf33a'),\n    CUT_24('\\uf33b'),\n    DARK_THEME_24('\\uf33c'),\n    DATA_AREA_24('\\uf33d'),\n    DATA_BAR_HORIZONTAL_24('\\uf33e'),\n    DATA_BAR_VERTICAL_20('\\uf33f'),\n    DATA_BAR_VERTICAL_24('\\uf340'),\n    DATA_BAR_VERTICAL_ADD_24('\\uf9b7'),\n    DATA_FUNNEL_24('\\uf341'),\n    DATA_HISTOGRAM_24('\\uf342'),\n    DATA_LINE_24('\\uf343'),\n    DATA_PIE_20('\\uf344'),\n    DATA_PIE_24('\\uf345'),\n    DATA_SCATTER_24('\\uf346'),\n    DATA_SUNBURST_24('\\uf347'),\n    DATA_TREEMAP_24('\\uf348'),\n    DATA_USAGE_20('\\uf9b8'),\n    DATA_USAGE_24('\\uf349'),\n    DATA_WATERFALL_24('\\uf34a'),\n    DATA_WHISKER_24('\\uf34b'),\n    DECIMAL_ARROW_LEFT_24('\\uf9b9'),\n    DECIMAL_ARROW_RIGHT_24('\\uf9ba'),\n    DELETE_16('\\uf9bb'),\n    DELETE_20('\\uf34c'),\n    DELETE_24('\\uf34d'),\n    DELETE_28('\\uf34e'),\n    DELETE_48('\\uf34f'),\n    DELETE_FOREVER_24('\\uf350'),\n    DELETE_FOREVER_28('\\uf351'),\n    DELETE_OFF_20('\\uf352'),\n    DELETE_OFF_24('\\uf353'),\n    DENTIST_12('\\uf9bc'),\n    DENTIST_16('\\uf9bd'),\n    DENTIST_20('\\uf9be'),\n    DENTIST_24('\\uf354'),\n    DENTIST_28('\\uf9bf'),\n    DENTIST_48('\\uf9c0'),\n    DESIGN_IDEAS_16('\\uf355'),\n    DESIGN_IDEAS_20('\\uf356'),\n    DESIGN_IDEAS_24('\\uf357'),\n    DESKTOP_16('\\uf358'),\n    DESKTOP_20('\\uf359'),\n    DESKTOP_24('\\uf35a'),\n    DESKTOP_28('\\uf35b'),\n    DEVELOPER_BOARD_24('\\uf35c'),\n    DEVICE_EQ_24('\\uf35d'),\n    DIALPAD_20('\\uf35e'),\n    DIALPAD_24('\\uf35f'),\n    DIALPAD_OFF_24('\\uf360'),\n    DICTIONARY_20('\\uf361'),\n    DICTIONARY_24('\\uf362'),\n    DICTIONARY_ADD_20('\\uf363'),\n    DICTIONARY_ADD_24('\\uf364'),\n    DIRECTIONS_20('\\uf365'),\n    DIRECTIONS_24('\\uf366'),\n    DISMISS_12('\\uf367'),\n    DISMISS_16('\\uf368'),\n    DISMISS_20('\\uf369'),\n    DISMISS_24('\\uf36a'),\n    DISMISS_28('\\uf36b'),\n    DISMISS_CIRCLE_16('\\uf36c'),\n    DISMISS_CIRCLE_20('\\uf36d'),\n    DISMISS_CIRCLE_24('\\uf36e'),\n    DISMISS_CIRCLE_28('\\uf9c1'),\n    DISMISS_CIRCLE_48('\\uf36f'),\n    DIVIDER_SHORT_24('\\uf370'),\n    DIVIDER_TALL_24('\\uf371'),\n    DOCK_24('\\uf372'),\n    DOCK_LEFT_16('\\uf373'),\n    DOCK_LEFT_20('\\uf374'),\n    DOCK_LEFT_24('\\uf375'),\n    DOCK_LEFT_28('\\uf9c2'),\n    DOCK_LEFT_48('\\uf9c3'),\n    DOCK_RIGHT_16('\\uf9c4'),\n    DOCK_RIGHT_20('\\uf9c5'),\n    DOCK_RIGHT_24('\\uf9c6'),\n    DOCK_RIGHT_28('\\uf9c7'),\n    DOCK_RIGHT_48('\\uf9c8'),\n    DOCK_ROW_24('\\uf376'),\n    DOCTOR_12('\\uf9c9'),\n    DOCTOR_16('\\uf9ca'),\n    DOCTOR_20('\\uf9cb'),\n    DOCTOR_24('\\uf377'),\n    DOCTOR_28('\\uf9cc'),\n    DOCTOR_48('\\uf9cd'),\n    DOCUMENT_16('\\uf9ce'),\n    DOCUMENT_20('\\uf378'),\n    DOCUMENT_24('\\uf379'),\n    DOCUMENT_28('\\uf37a'),\n    DOCUMENT_48('\\uf9cf'),\n    DOCUMENT_ADD_16('\\uf9d0'),\n    DOCUMENT_ADD_20('\\uf9d1'),\n    DOCUMENT_ADD_24('\\uf9d2'),\n    DOCUMENT_ADD_28('\\uf9d3'),\n    DOCUMENT_ADD_48('\\uf9d4'),\n    DOCUMENT_ARROW_LEFT_16('\\uf9d5'),\n    DOCUMENT_ARROW_LEFT_20('\\uf9d6'),\n    DOCUMENT_ARROW_LEFT_24('\\uf9d7'),\n    DOCUMENT_ARROW_LEFT_28('\\uf9d8'),\n    DOCUMENT_ARROW_LEFT_48('\\uf9d9'),\n    DOCUMENT_AUTOSAVE_24('\\uf37b'),\n    DOCUMENT_BRIEFCASE_20('\\uf37c'),\n    DOCUMENT_BRIEFCASE_24('\\uf37d'),\n    DOCUMENT_CATCH_UP_16('\\uf9da'),\n    DOCUMENT_CATCH_UP_20('\\uf9db'),\n    DOCUMENT_CATCH_UP_24('\\uf37e'),\n    DOCUMENT_COPY_16('\\uf37f'),\n    DOCUMENT_COPY_20('\\uf380'),\n    DOCUMENT_COPY_24('\\uf381'),\n    DOCUMENT_COPY_48('\\uf382'),\n    DOCUMENT_DISMISS_20('\\uf383'),\n    DOCUMENT_DISMISS_24('\\uf384'),\n    DOCUMENT_EDIT_16('\\uf385'),\n    DOCUMENT_EDIT_20('\\uf386'),\n    DOCUMENT_EDIT_24('\\uf387'),\n    DOCUMENT_ENDNOTE_20('\\uf388'),\n    DOCUMENT_ENDNOTE_24('\\uf389'),\n    DOCUMENT_ERROR_16('\\uf38a'),\n    DOCUMENT_ERROR_20('\\uf38b'),\n    DOCUMENT_ERROR_24('\\uf38c'),\n    DOCUMENT_FOOTER_24('\\uf38d'),\n    DOCUMENT_FOOTER_REMOVE_24('\\uf38e'),\n    DOCUMENT_HEADER_24('\\uf38f'),\n    DOCUMENT_HEADER_FOOTER_20('\\uf390'),\n    DOCUMENT_HEADER_FOOTER_24('\\uf391'),\n    DOCUMENT_HEADER_REMOVE_24('\\uf392'),\n    DOCUMENT_LANDSCAPE_20('\\uf393'),\n    DOCUMENT_LANDSCAPE_24('\\uf394'),\n    DOCUMENT_LANDSCAPE_DATA_24('\\uf9dc'),\n    DOCUMENT_LANDSCAPE_SPLIT_20('\\uf9dd'),\n    DOCUMENT_LANDSCAPE_SPLIT_HINT_20('\\uf9de'),\n    DOCUMENT_MARGINS_20('\\uf395'),\n    DOCUMENT_MARGINS_24('\\uf396'),\n    DOCUMENT_NONE_20('\\uf397'),\n    DOCUMENT_NONE_24('\\uf398'),\n    DOCUMENT_ONE_PAGE_20('\\uf399'),\n    DOCUMENT_ONE_PAGE_24('\\uf39a'),\n    DOCUMENT_PAGE_24('\\uf39b'),\n    DOCUMENT_PAGE_BOTTOM_CENTER_20('\\uf39c'),\n    DOCUMENT_PAGE_BOTTOM_CENTER_24('\\uf39d'),\n    DOCUMENT_PAGE_BOTTOM_LEFT_20('\\uf39e'),\n    DOCUMENT_PAGE_BOTTOM_LEFT_24('\\uf39f'),\n    DOCUMENT_PAGE_BOTTOM_RIGHT_20('\\uf3a0'),\n    DOCUMENT_PAGE_BOTTOM_RIGHT_24('\\uf3a1'),\n    DOCUMENT_PAGE_BREAK_20('\\uf9df'),\n    DOCUMENT_PAGE_BREAK_24('\\uf3a2'),\n    DOCUMENT_PAGE_NUMBER_20('\\uf3a3'),\n    DOCUMENT_PAGE_NUMBER_24('\\uf3a4'),\n    DOCUMENT_PAGE_TOP_CENTER_20('\\uf3a5'),\n    DOCUMENT_PAGE_TOP_CENTER_24('\\uf3a6'),\n    DOCUMENT_PAGE_TOP_LEFT_20('\\uf3a7'),\n    DOCUMENT_PAGE_TOP_LEFT_24('\\uf3a8'),\n    DOCUMENT_PAGE_TOP_RIGHT_20('\\uf3a9'),\n    DOCUMENT_PAGE_TOP_RIGHT_24('\\uf3aa'),\n    DOCUMENT_PDF_16('\\uf3ab'),\n    DOCUMENT_PDF_20('\\uf3ac'),\n    DOCUMENT_PDF_24('\\uf3ad'),\n    DOCUMENT_SEARCH_20('\\uf3ae'),\n    DOCUMENT_SEARCH_24('\\uf3af'),\n    DOCUMENT_TOOLBOX_20('\\uf3b0'),\n    DOCUMENT_TOOLBOX_24('\\uf3b1'),\n    DOCUMENT_TOP_CENTER_20('\\uf3b2'),\n    DOCUMENT_TOP_LEFT_20('\\uf3b3'),\n    DOCUMENT_TOP_RIGHT_20('\\uf3b4'),\n    DOCUMENT_UNKNOWN_16('\\uf3b5'),\n    DOCUMENT_UNKNOWN_20('\\uf3b6'),\n    DOCUMENT_UNKNOWN_24('\\uf3b7'),\n    DOCUMENT_WIDTH_20('\\uf3b8'),\n    DOCUMENT_WIDTH_24('\\uf3b9'),\n    DOUBLE_SWIPE_DOWN_24('\\uf3ba'),\n    DOUBLE_SWIPE_UP_24('\\uf3bb'),\n    DOUBLE_TAP_SWIPE_DOWN_24('\\uf3bc'),\n    DOUBLE_TAP_SWIPE_UP_24('\\uf3bd'),\n    DRAFTS_16('\\uf3be'),\n    DRAFTS_20('\\uf3bf'),\n    DRAFTS_24('\\uf3c0'),\n    DRAG_24('\\uf3c1'),\n    DRINK_24('\\uf3c2'),\n    DRINK_BEER_16('\\uf9e0'),\n    DRINK_BEER_20('\\uf9e1'),\n    DRINK_BEER_24('\\uf3c3'),\n    DRINK_COFFEE_16('\\uf9e2'),\n    DRINK_COFFEE_20('\\uf3c4'),\n    DRINK_COFFEE_24('\\uf3c5'),\n    DRINK_MARGARITA_16('\\uf9e3'),\n    DRINK_MARGARITA_20('\\uf9e4'),\n    DRINK_MARGARITA_24('\\uf3c6'),\n    DRINK_WINE_16('\\uf9e5'),\n    DRINK_WINE_20('\\uf9e6'),\n    DRINK_WINE_24('\\uf3c7'),\n    DUAL_SCREEN_24('\\uf3c8'),\n    DUAL_SCREEN_ADD_24('\\uf3c9'),\n    DUAL_SCREEN_ARROW_RIGHT_24('\\uf3ca'),\n    DUAL_SCREEN_CLOCK_24('\\uf3cb'),\n    DUAL_SCREEN_DESKTOP_24('\\uf3cc'),\n    DUAL_SCREEN_ERROR_24('\\uf3cd'),\n    DUAL_SCREEN_GROUP_24('\\uf3ce'),\n    DUAL_SCREEN_HEADER_24('\\uf3cf'),\n    DUAL_SCREEN_LOCK_24('\\uf3d0'),\n    DUAL_SCREEN_MIRROR_24('\\uf3d1'),\n    DUAL_SCREEN_PAGINATION_24('\\uf3d2'),\n    DUAL_SCREEN_SETTINGS_24('\\uf3d3'),\n    DUAL_SCREEN_SPAN_24('\\uf9e7'),\n    DUAL_SCREEN_STATUS_BAR_24('\\uf3d4'),\n    DUAL_SCREEN_TABLET_24('\\uf3d5'),\n    DUAL_SCREEN_UPDATE_24('\\uf3d6'),\n    DUAL_SCREEN_VERTICAL_SCROLL_24('\\uf3d7'),\n    DUAL_SCREEN_VIBRATE_24('\\uf3d8'),\n    EARTH_16('\\uf3d9'),\n    EARTH_20('\\uf3da'),\n    EARTH_24('\\uf3db'),\n    EDIT_16('\\uf3dc'),\n    EDIT_20('\\uf3dd'),\n    EDIT_24('\\uf3de'),\n    EDIT_32('\\uf9e8'),\n    EDIT_OFF_16('\\uf9e9'),\n    EDIT_OFF_24('\\uf9ea'),\n    EDIT_SETTINGS_24('\\uf9eb'),\n    EMOJI_16('\\uf3df'),\n    EMOJI_20('\\uf3e0'),\n    EMOJI_24('\\uf3e1'),\n    EMOJI_ADD_16('\\uf9ec'),\n    EMOJI_ADD_24('\\uf3e2'),\n    EMOJI_ANGRY_20('\\uf3e3'),\n    EMOJI_ANGRY_24('\\uf3e4'),\n    EMOJI_HAND_24('\\uf9ed'),\n    EMOJI_HAND_28('\\uf9ee'),\n    EMOJI_LAUGH_20('\\uf3e5'),\n    EMOJI_LAUGH_24('\\uf3e6'),\n    EMOJI_MEH_20('\\uf3e7'),\n    EMOJI_MEH_24('\\uf3e8'),\n    EMOJI_SAD_20('\\uf3e9'),\n    EMOJI_SAD_24('\\uf3ea'),\n    EMOJI_SURPRISE_20('\\uf3eb'),\n    EMOJI_SURPRISE_24('\\uf3ec'),\n    ERASER_20('\\uf9ef'),\n    ERASER_24('\\uf9f0'),\n    ERASER_MEDIUM_24('\\uf9f1'),\n    ERASER_SEGMENT_24('\\uf9f2'),\n    ERASER_SMALL_24('\\uf9f3'),\n    ERASER_TOOL_24('\\uf3ef'),\n    ERASE_20('\\uf3ed'),\n    ERASE_24('\\uf3ee'),\n    ERROR_CIRCLE_12('\\uf9f4'),\n    ERROR_CIRCLE_16('\\uf3f0'),\n    ERROR_CIRCLE_20('\\uf3f1'),\n    ERROR_CIRCLE_24('\\uf3f2'),\n    EXPORT_24('\\uf3f3'),\n    EXTENDED_DOCK_24('\\uf3f4'),\n    EXTENSION_20('\\uf3f5'),\n    EXTENSION_24('\\uf3f6'),\n    EYE_HIDE_20('\\uf3f7'),\n    EYE_HIDE_24('\\uf3f8'),\n    EYE_SHOW_12('\\uf3f9'),\n    EYE_SHOW_16('\\uf3fa'),\n    EYE_SHOW_20('\\uf3fb'),\n    EYE_SHOW_24('\\uf3fc'),\n    EYE_TRACKING_16('\\uf9f5'),\n    EYE_TRACKING_20('\\uf9f6'),\n    EYE_TRACKING_24('\\uf9f7'),\n    EYE_TRACKING_OFF_16('\\uf9f8'),\n    EYE_TRACKING_OFF_20('\\uf9f9'),\n    EYE_TRACKING_OFF_24('\\uf9fa'),\n    FAST_ACCELERATION_24('\\uf3fd'),\n    FAST_FORWARD_20('\\uf3fe'),\n    FAST_FORWARD_24('\\uf3ff'),\n    FAST_MODE_16('\\uf400'),\n    FAST_MODE_20('\\uf401'),\n    FAST_MODE_24('\\uf402'),\n    FAST_MODE_28('\\uf403'),\n    FAVORITES_20('\\uf404'),\n    FAVORITES_24('\\uf405'),\n    FILTER_20('\\uf406'),\n    FILTER_24('\\uf407'),\n    FILTER_28('\\uf408'),\n    FINGERPRINT_24('\\uf409'),\n    FINGERPRINT_48('\\uf9ff'),\n    FIXED_WIDTH_24('\\ufa00'),\n    FLAG_16('\\uf40a'),\n    FLAG_20('\\uf40b'),\n    FLAG_24('\\uf40c'),\n    FLAG_28('\\uf40d'),\n    FLAG_48('\\uf40e'),\n    FLAG_OFF_24('\\uf40f'),\n    FLAG_OFF_28('\\uf410'),\n    FLAG_OFF_48('\\uf411'),\n    FLASHLIGHT_24('\\uf416'),\n    FLASHLIGHT_OFF_24('\\uf417'),\n    FLASH_AUTO_24('\\uf412'),\n    FLASH_OFF_24('\\uf413'),\n    FLASH_ON_20('\\uf414'),\n    FLASH_ON_24('\\uf415'),\n    FLIP_HORIZONTAL_24('\\ufa01'),\n    FLIP_VERTICAL_24('\\ufa02'),\n    FLUENT_32('\\ufa03'),\n    FLUENT_48('\\ufa04'),\n    FLUID_20('\\ufa05'),\n    FLUID_24('\\ufa06'),\n    FOLDER_20('\\uf418'),\n    FOLDER_24('\\uf419'),\n    FOLDER_28('\\uf41a'),\n    FOLDER_48('\\uf41b'),\n    FOLDER_ADD_20('\\uf41c'),\n    FOLDER_ADD_24('\\uf41d'),\n    FOLDER_ADD_28('\\uf41e'),\n    FOLDER_ADD_48('\\uf41f'),\n    FOLDER_BRIEFCASE_20('\\uf420'),\n    FOLDER_JUNK_20('\\uf421'),\n    FOLDER_JUNK_24('\\uf422'),\n    FOLDER_JUNK_28('\\uf423'),\n    FOLDER_JUNK_48('\\uf424'),\n    FOLDER_LINK_20('\\uf425'),\n    FOLDER_LINK_24('\\uf426'),\n    FOLDER_LINK_28('\\uf427'),\n    FOLDER_LINK_48('\\uf428'),\n    FOLDER_MOVE_16('\\ufa07'),\n    FOLDER_MOVE_20('\\uf429'),\n    FOLDER_MOVE_24('\\uf42a'),\n    FOLDER_MOVE_28('\\uf42b'),\n    FOLDER_MOVE_48('\\uf42c'),\n    FOLDER_OPEN_16('\\uf42d'),\n    FOLDER_OPEN_20('\\uf42e'),\n    FOLDER_OPEN_24('\\uf42f'),\n    FOLDER_OPEN_VERTICAL_20('\\uf430'),\n    FOLDER_PUBLIC_16('\\uf431'),\n    FOLDER_PUBLIC_20('\\uf432'),\n    FOLDER_PUBLIC_24('\\uf433'),\n    FOLDER_ZIP_16('\\uf434'),\n    FOLDER_ZIP_20('\\uf435'),\n    FOLDER_ZIP_24('\\uf436'),\n    FONT_DECREASE_20('\\uf437'),\n    FONT_DECREASE_24('\\uf438'),\n    FONT_INCREASE_20('\\uf439'),\n    FONT_INCREASE_24('\\uf43a'),\n    FONT_SPACE_TRACKING_IN_16('\\uf43b'),\n    FONT_SPACE_TRACKING_IN_20('\\uf43c'),\n    FONT_SPACE_TRACKING_IN_24('\\uf43d'),\n    FONT_SPACE_TRACKING_IN_28('\\uf43e'),\n    FONT_SPACE_TRACKING_OUT_16('\\uf43f'),\n    FONT_SPACE_TRACKING_OUT_20('\\uf440'),\n    FONT_SPACE_TRACKING_OUT_24('\\uf441'),\n    FONT_SPACE_TRACKING_OUT_28('\\uf442'),\n    FOOD_20('\\uf443'),\n    FOOD_24('\\uf444'),\n    FOOD_CAKE_24('\\uf445'),\n    FOOD_EGG_16('\\ufa08'),\n    FOOD_EGG_20('\\ufa09'),\n    FOOD_EGG_24('\\uf446'),\n    FOOD_TOAST_16('\\ufa0a'),\n    FOOD_TOAST_20('\\ufa0b'),\n    FOOD_TOAST_24('\\uf447'),\n    FORM_NEW_24('\\uf448'),\n    FORM_NEW_28('\\uf449'),\n    FORM_NEW_48('\\uf44a'),\n    FORWARD_20('\\uf44b'),\n    FORWARD_24('\\uf44c'),\n    FPS_240_24('\\uf44d'),\n    FPS_960_24('\\uf44e'),\n    FULL_SCREEN_ZOOM_24('\\uf44f'),\n    F_STOP_16('\\uf9fb'),\n    F_STOP_20('\\uf9fc'),\n    F_STOP_24('\\uf9fd'),\n    F_STOP_28('\\uf9fe'),\n    GALLERY_24('\\uf450'),\n    GAMES_24('\\uf451'),\n    GAVEL_24('\\ufa0c'),\n    GAVEL_32('\\ufa0d'),\n    GESTURE_24('\\uf452'),\n    GIFT_20('\\uf455'),\n    GIFT_24('\\uf456'),\n    GIF_20('\\uf453'),\n    GIF_24('\\uf454'),\n    GLANCE_24('\\uf457'),\n    GLASSES_16('\\ufa0e'),\n    GLASSES_20('\\ufa0f'),\n    GLASSES_24('\\uf458'),\n    GLASSES_28('\\ufa10'),\n    GLASSES_48('\\ufa11'),\n    GLASSES_OFF_16('\\ufa12'),\n    GLASSES_OFF_20('\\ufa13'),\n    GLASSES_OFF_24('\\uf459'),\n    GLASSES_OFF_28('\\ufa14'),\n    GLASSES_OFF_48('\\ufa15'),\n    GLOBE_16('\\ufa16'),\n    GLOBE_20('\\uf45a'),\n    GLOBE_24('\\uf45b'),\n    GLOBE_ADD_24('\\uf45c'),\n    GLOBE_CLOCK_24('\\uf45d'),\n    GLOBE_DESKTOP_24('\\uf45e'),\n    GLOBE_LOCATION_24('\\uf45f'),\n    GLOBE_SEARCH_24('\\uf460'),\n    GLOBE_VIDEO_24('\\uf461'),\n    GRID_20('\\uf462'),\n    GRID_24('\\uf463'),\n    GRID_28('\\uf464'),\n    GROUP_20('\\uf465'),\n    GROUP_24('\\uf466'),\n    GROUP_LIST_24('\\uf467'),\n    GUEST_16('\\uf468'),\n    GUEST_20('\\uf469'),\n    GUEST_24('\\uf46a'),\n    GUEST_28('\\uf46b'),\n    GUEST_ADD_24('\\uf46c'),\n    HANDSHAKE_16('\\uf46e'),\n    HANDSHAKE_20('\\uf46f'),\n    HANDSHAKE_24('\\uf470'),\n    HAND_LEFT_20('\\ufa17'),\n    HAND_RAISE_24('\\uf46d'),\n    HAND_RIGHT_24('\\ufa18'),\n    HAND_RIGHT_28('\\ufa19'),\n    HAT_GRADUATION_16('\\ufa1a'),\n    HAT_GRADUATION_20('\\ufa1b'),\n    HAT_GRADUATION_24('\\ufa1c'),\n    HDR_24('\\uf471'),\n    HD_16('\\ufa1d'),\n    HD_20('\\ufa1e'),\n    HD_24('\\ufa1f'),\n    HEADPHONES_24('\\uf472'),\n    HEADPHONES_28('\\uf473'),\n    HEADSET_16('\\ufa20'),\n    HEADSET_20('\\ufa21'),\n    HEADSET_24('\\uf474'),\n    HEADSET_28('\\uf475'),\n    HEADSET_48('\\ufa22'),\n    HEADSET_VR_20('\\uf476'),\n    HEADSET_VR_24('\\uf477'),\n    HEART_16('\\uf478'),\n    HEART_20('\\uf479'),\n    HEART_24('\\uf47a'),\n    HEART_PULSE_24('\\ufa23'),\n    HEART_PULSE_32('\\ufa24'),\n    HIGHLIGHT_16('\\uf47b'),\n    HIGHLIGHT_20('\\uf47c'),\n    HIGHLIGHT_24('\\uf47d'),\n    HISTORY_20('\\uf47e'),\n    HISTORY_24('\\uf47f'),\n    HOME_16('\\ufa25'),\n    HOME_20('\\uf480'),\n    HOME_24('\\uf481'),\n    HOME_28('\\uf482'),\n    HOME_32('\\ufa26'),\n    HOME_48('\\ufa27'),\n    HOME_ADD_24('\\uf483'),\n    HOME_CHECKMARK_24('\\uf484'),\n    ICONS_20('\\uf485'),\n    ICONS_24('\\uf486'),\n    IMAGE_16('\\uf487'),\n    IMAGE_20('\\uf488'),\n    IMAGE_24('\\uf489'),\n    IMAGE_28('\\uf48a'),\n    IMAGE_48('\\uf48b'),\n    IMAGE_ADD_24('\\uf48c'),\n    IMAGE_ALT_TEXT_20('\\uf48d'),\n    IMAGE_ALT_TEXT_24('\\uf48e'),\n    IMAGE_ARROW_COUNTERCLOCKWISE_24('\\ufa28'),\n    IMAGE_COPY_20('\\uf48f'),\n    IMAGE_COPY_24('\\uf490'),\n    IMAGE_COPY_28('\\uf491'),\n    IMAGE_EDIT_16('\\uf492'),\n    IMAGE_EDIT_20('\\uf493'),\n    IMAGE_EDIT_24('\\uf494'),\n    IMAGE_LIBRARY_20('\\uf495'),\n    IMAGE_LIBRARY_24('\\uf496'),\n    IMAGE_LIBRARY_28('\\uf497'),\n    IMAGE_OFF_24('\\uf498'),\n    IMAGE_SEARCH_20('\\uf499'),\n    IMAGE_SEARCH_24('\\uf49a'),\n    IMMERSIVE_READER_20('\\uf49b'),\n    IMMERSIVE_READER_24('\\uf49c'),\n    IMPORTANT_12('\\uf49d'),\n    IMPORTANT_16('\\uf49e'),\n    IMPORTANT_20('\\uf49f'),\n    IMPORTANT_24('\\uf4a0'),\n    INCOGNITO_24('\\uf4a1'),\n    INFO_16('\\uf4a2'),\n    INFO_20('\\uf4a3'),\n    INFO_24('\\uf4a4'),\n    INFO_28('\\uf4a5'),\n    INFO_SHIELD_20('\\ufa29'),\n    INKING_TOOL_16('\\uf4a6'),\n    INKING_TOOL_20('\\uf4a7'),\n    INKING_TOOL_24('\\uf4a8'),\n    INPRIVATE_ACCOUNT_16('\\uf4a9'),\n    INPRIVATE_ACCOUNT_20('\\uf4aa'),\n    INPRIVATE_ACCOUNT_24('\\uf4ab'),\n    INPRIVATE_ACCOUNT_28('\\uf4ac'),\n    INSERT_20('\\uf4ad'),\n    INSPECT_20('\\uf4ae'),\n    INSPECT_24('\\uf4af'),\n    IOS_ARROW_LEFT_24('\\uf4b0'),\n    IOS_CHEVRON_24('\\uf4b1'),\n    IOS_CHEVRON_RIGHT_20('\\uf4b2'),\n    JAVASCRIPT_16('\\uf4b3'),\n    JAVASCRIPT_20('\\uf4b4'),\n    JAVASCRIPT_24('\\uf4b5'),\n    KEYBOARD_20('\\uf4b8'),\n    KEYBOARD_24('\\uf4b9'),\n    KEYBOARD_DOCK_24('\\uf4ba'),\n    KEYBOARD_LAYOUT_FLOAT_24('\\uf4bb'),\n    KEYBOARD_LAYOUT_ONE_HANDED_LEFT_24('\\uf4bc'),\n    KEYBOARD_LAYOUT_RESIZE_24('\\uf4bd'),\n    KEYBOARD_LAYOUT_SPLIT_24('\\uf4be'),\n    KEYBOARD_SHIFT_24('\\uf4bf'),\n    KEYBOARD_SHIFT_UPPERCASE_24('\\uf4c0'),\n    KEYBOARD_TAB_24('\\uf4c1'),\n    KEY_20('\\uf4b6'),\n    KEY_24('\\uf4b7'),\n    KEY_MULTIPLE_20('\\ufa2a'),\n    LAPTOP_16('\\uf4c2'),\n    LAPTOP_20('\\uf4c3'),\n    LAPTOP_24('\\uf4c4'),\n    LAPTOP_28('\\uf4c5'),\n    LARGE_16('\\uf4c6'),\n    LARGE_20('\\uf4c7'),\n    LARGE_24('\\uf4c8'),\n    LASSO_24('\\uf4c9'),\n    LAUNCHER_SETTINGS_24('\\uf4ca'),\n    LAYER_20('\\uf4cb'),\n    LAYER_24('\\uf4cc'),\n    LEAF_16('\\uf4cd'),\n    LEAF_20('\\uf4ce'),\n    LEAF_24('\\uf4cf'),\n    LEAF_TWO_16('\\uf4d0'),\n    LEAF_TWO_20('\\uf4d1'),\n    LEAF_TWO_24('\\uf4d2'),\n    LIBRARY_24('\\uf4d3'),\n    LIBRARY_28('\\uf4d4'),\n    LIGHTBULB_16('\\uf4d5'),\n    LIGHTBULB_20('\\uf4d6'),\n    LIGHTBULB_24('\\uf4d7'),\n    LIGHTBULB_CIRCLE_24('\\uf4d8'),\n    LIGHTBULB_FILAMENT_16('\\uf4d9'),\n    LIGHTBULB_FILAMENT_20('\\uf4da'),\n    LIGHTBULB_FILAMENT_24('\\uf4db'),\n    LIKERT_16('\\uf4dd'),\n    LIKERT_20('\\uf4de'),\n    LIKERT_24('\\uf4df'),\n    LIKE_16('\\uf4dc'),\n    LINE_HORIZONTAL_1_20('\\uf4e0'),\n    LINE_HORIZONTAL_3_20('\\uf4e1'),\n    LINE_HORIZONTAL_5_20('\\uf4e2'),\n    LINE_HORIZONTAL_5_ERROR_20('\\ufa2b'),\n    LINK_16('\\uf4e3'),\n    LINK_20('\\uf4e4'),\n    LINK_24('\\uf4e5'),\n    LINK_28('\\uf4e6'),\n    LINK_48('\\uf4e7'),\n    LINK_EDIT_16('\\uf4e8'),\n    LINK_EDIT_20('\\uf4e9'),\n    LINK_EDIT_24('\\uf4ea'),\n    LINK_REMOVE_20('\\uf4eb'),\n    LINK_SQUARE_12('\\ufa2c'),\n    LINK_SQUARE_16('\\ufa2d'),\n    LINK_SQUARE_24('\\uf4ec'),\n    LIST_20('\\uf4ed'),\n    LIST_24('\\uf4ee'),\n    LIST_28('\\uf4ef'),\n    LIVE_20('\\uf4f0'),\n    LIVE_24('\\uf4f1'),\n    LOCAL_LANGUAGE_16('\\uf4f2'),\n    LOCAL_LANGUAGE_20('\\uf4f3'),\n    LOCAL_LANGUAGE_24('\\uf4f4'),\n    LOCAL_LANGUAGE_28('\\uf4f5'),\n    LOCATION_12('\\uf4f6'),\n    LOCATION_16('\\uf4f7'),\n    LOCATION_20('\\uf4f8'),\n    LOCATION_24('\\uf4f9'),\n    LOCATION_28('\\uf4fa'),\n    LOCATION_48('\\ufa2e'),\n    LOCATION_LIVE_20('\\uf4fb'),\n    LOCATION_LIVE_24('\\uf4fc'),\n    LOCATION_NOT_FOUND_24('\\uf4fd'),\n    LOCATION_OFF_16('\\ufa2f'),\n    LOCATION_OFF_20('\\ufa30'),\n    LOCATION_OFF_24('\\ufa31'),\n    LOCATION_OFF_28('\\ufa32'),\n    LOCATION_OFF_48('\\ufa33'),\n    LOCK_12('\\uf4fe'),\n    LOCK_16('\\uf4ff'),\n    LOCK_20('\\uf500'),\n    LOCK_24('\\uf501'),\n    LOCK_MULTIPLE_24('\\ufa34'),\n    LOCK_SHIELD_20('\\uf502'),\n    LOCK_SHIELD_24('\\uf503'),\n    LOCK_SHIELD_48('\\uf504'),\n    LOTTERY_24('\\ufa35');\n\n    public static FluentUiRegularAL findByDescription(String description) {\n        for (FluentUiRegularAL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    FluentUiRegularAL(int code) {\n        this.description = \"fltral-\" + name().toLowerCase().replace(\"_\", \"-\");\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/org/kordamp/ikonli/fluentui/FluentUiRegularALIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fluentui;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FluentUiRegularALIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fluentui/1.1.74/fonts/FluentSystemIcons-Regular.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"fltral-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return FluentUiRegularAL.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"FluentSystemIcons-Regular\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/org/kordamp/ikonli/fluentui/FluentUiRegularALIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fluentui;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class FluentUiRegularALIkonProvider implements IkonProvider<FluentUiRegularAL> {\n    @Override\n    public Class<FluentUiRegularAL> getIkon() {\n        return FluentUiRegularAL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/org/kordamp/ikonli/fluentui/FluentUiRegularMZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fluentui;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum FluentUiRegularMZ implements Ikon {\n    MAGIC_WAND_16('\\ufa36'),\n    MAGIC_WAND_20('\\ufa37'),\n    MAGIC_WAND_24('\\uf505'),\n    MAGIC_WAND_28('\\ufa38'),\n    MAGIC_WAND_48('\\ufa39'),\n    MAIL_16('\\ufa3a'),\n    MAIL_20('\\uf506'),\n    MAIL_24('\\uf507'),\n    MAIL_28('\\uf508'),\n    MAIL_48('\\uf509'),\n    MAIL_ADD_24('\\uf50a'),\n    MAIL_ALL_20('\\uf50b'),\n    MAIL_ALL_24('\\uf50c'),\n    MAIL_ALL_ACCOUNTS_24('\\uf50d'),\n    MAIL_ALL_READ_20('\\uf50e'),\n    MAIL_ALL_UNREAD_20('\\uf50f'),\n    MAIL_CLOCK_20('\\uf510'),\n    MAIL_COPY_20('\\uf511'),\n    MAIL_COPY_24('\\uf512'),\n    MAIL_INBOX_16('\\uf513'),\n    MAIL_INBOX_20('\\uf514'),\n    MAIL_INBOX_24('\\uf515'),\n    MAIL_INBOX_28('\\uf516'),\n    MAIL_INBOX_ADD_16('\\uf517'),\n    MAIL_INBOX_ADD_20('\\uf518'),\n    MAIL_INBOX_ADD_24('\\uf519'),\n    MAIL_INBOX_ADD_28('\\uf51a'),\n    MAIL_INBOX_DISMISS_16('\\uf51b'),\n    MAIL_INBOX_DISMISS_20('\\uf51c'),\n    MAIL_INBOX_DISMISS_24('\\uf51d'),\n    MAIL_INBOX_DISMISS_28('\\uf51e'),\n    MAIL_MOVE_TO_FOCUSSED_24('\\uf51f'),\n    MAIL_OUTBOX_20('\\uf8c8'),\n    MAIL_OUTBOX_24('\\uf520'),\n    MAIL_READ_16('\\ufa3b'),\n    MAIL_READ_20('\\uf521'),\n    MAIL_READ_24('\\uf522'),\n    MAIL_READ_28('\\uf523'),\n    MAIL_READ_48('\\uf524'),\n    MAIL_UNREAD_16('\\uf525'),\n    MAIL_UNREAD_20('\\uf526'),\n    MAIL_UNREAD_24('\\uf527'),\n    MAIL_UNREAD_28('\\uf528'),\n    MAIL_UNREAD_48('\\uf529'),\n    MAIL_UNSUBSCRIBE_24('\\uf52a'),\n    MALWARE_DETECTED_16('\\uf52b'),\n    MALWARE_DETECTED_24('\\uf52c'),\n    MANUFACTURER_24('\\uf52d'),\n    MAP_24('\\uf52e'),\n    MAP_DRIVE_16('\\uf52f'),\n    MAP_DRIVE_20('\\uf530'),\n    MAP_DRIVE_24('\\uf531'),\n    MATCH_APP_LAYOUT_24('\\uf532'),\n    MATH_FORMAT_LINEAR_24('\\ufa3c'),\n    MATH_FORMAT_PROFESSIONAL_24('\\ufa3d'),\n    MATH_FORMULA_24('\\ufa3e'),\n    MAXIMIZE_16('\\uf533'),\n    MAXIMIZE_20('\\ufa3f'),\n    MAXIMIZE_24('\\ufa40'),\n    MAXIMIZE_28('\\ufa41'),\n    MAXIMIZE_48('\\ufa42'),\n    MEET_NOW_16('\\ufa43'),\n    MEET_NOW_20('\\uf534'),\n    MEET_NOW_24('\\uf535'),\n    MEGAPHONE_16('\\uf536'),\n    MEGAPHONE_20('\\uf537'),\n    MEGAPHONE_24('\\uf538'),\n    MEGAPHONE_28('\\uf539'),\n    MEGAPHONE_OFF_24('\\uf53a'),\n    MENTION_16('\\uf53b'),\n    MENTION_20('\\uf53c'),\n    MENTION_24('\\uf53d'),\n    MERGE_24('\\uf53e'),\n    MIC_OFF_12('\\uf53f'),\n    MIC_OFF_16('\\uf540'),\n    MIC_OFF_20('\\ufa44'),\n    MIC_OFF_24('\\uf541'),\n    MIC_OFF_28('\\uf542'),\n    MIC_OFF_48('\\ufa45'),\n    MIC_ON_16('\\uf543'),\n    MIC_ON_20('\\uf544'),\n    MIC_ON_24('\\uf545'),\n    MIC_ON_28('\\uf546'),\n    MIC_ON_48('\\uf547'),\n    MIC_PROHIBITED_24('\\ufa46'),\n    MIC_SETTINGS_24('\\uf548'),\n    MIDI_20('\\uf549'),\n    MIDI_24('\\uf54a'),\n    MINIMIZE_12('\\ufa47'),\n    MINIMIZE_16('\\ufa48'),\n    MINIMIZE_20('\\ufa49'),\n    MINIMIZE_24('\\ufa4a'),\n    MINIMIZE_28('\\ufa4b'),\n    MINIMIZE_48('\\ufa4c'),\n    MISSING_METADATA_16('\\uf54b'),\n    MISSING_METADATA_24('\\uf54c'),\n    MOBILE_OPTIMIZED_24('\\uf54d'),\n    MONEY_16('\\uf54e'),\n    MONEY_20('\\uf54f'),\n    MONEY_24('\\uf550'),\n    MORE_16('\\uf551'),\n    MORE_20('\\uf552'),\n    MORE_24('\\uf553'),\n    MORE_28('\\uf554'),\n    MORE_48('\\uf555'),\n    MORE_CIRCLE_20('\\ufa4d'),\n    MORE_VERTICAL_20('\\uf556'),\n    MORE_VERTICAL_24('\\uf557'),\n    MORE_VERTICAL_28('\\uf558'),\n    MORE_VERTICAL_48('\\uf559'),\n    MOVIES_AND_TV_16('\\ufa4e'),\n    MOVIES_AND_TV_20('\\ufa4f'),\n    MOVIES_AND_TV_24('\\uf55a'),\n    MULTISELECT_20('\\uf55b'),\n    MULTISELECT_24('\\uf55c'),\n    MUSIC_20('\\uf55d'),\n    MUSIC_24('\\uf55e'),\n    MUSIC_NOTES_16('\\ufa52'),\n    MUSIC_NOTES_24('\\ufa53'),\n    MUSIC_NOTE_20('\\ufa50'),\n    MUSIC_NOTE_24('\\ufa51'),\n    MY_LOCATION_24('\\uf55f'),\n    NAVIGATION_20('\\uf560'),\n    NAVIGATION_24('\\uf561'),\n    NAVIGATION_UNREAD_24('\\ufa54'),\n    NETWORK_CHECK_24('\\uf562'),\n    NEWS_20('\\uf565'),\n    NEWS_24('\\uf566'),\n    NEWS_28('\\uf567'),\n    NEW_16('\\uf563'),\n    NEW_24('\\uf564'),\n    NEXT_16('\\uf568'),\n    NEXT_20('\\uf569'),\n    NEXT_24('\\uf56a'),\n    NOTEBOOK_24('\\uf570'),\n    NOTEBOOK_ERROR_24('\\uf571'),\n    NOTEBOOK_LIGHTNING_24('\\uf572'),\n    NOTEBOOK_QUESTION_MARK_24('\\uf573'),\n    NOTEBOOK_SECTION_24('\\uf574'),\n    NOTEBOOK_SYNC_24('\\uf575'),\n    NOTEPAD_20('\\uf576'),\n    NOTEPAD_24('\\uf577'),\n    NOTEPAD_28('\\uf578'),\n    NOTE_20('\\uf56b'),\n    NOTE_24('\\uf56c'),\n    NOTE_ADD_16('\\uf56d'),\n    NOTE_ADD_20('\\uf56e'),\n    NOTE_ADD_24('\\uf56f'),\n    NUMBER_ROW_16('\\uf579'),\n    NUMBER_ROW_20('\\uf57a'),\n    NUMBER_ROW_24('\\uf57b'),\n    NUMBER_SYMBOL_16('\\uf57c'),\n    NUMBER_SYMBOL_20('\\uf57d'),\n    NUMBER_SYMBOL_24('\\uf57e'),\n    NUMBER_SYMBOL_DISMISS_24('\\ufa55'),\n    OFFICE_APPS_24('\\uf57f'),\n    OFFICE_APPS_28('\\uf580'),\n    OPEN_16('\\uf581'),\n    OPEN_20('\\uf582'),\n    OPEN_24('\\uf583'),\n    OPEN_28('\\ufa56'),\n    OPEN_48('\\ufa57'),\n    OPEN_FOLDER_16('\\ufa58'),\n    OPEN_FOLDER_20('\\ufa59'),\n    OPEN_FOLDER_24('\\uf584'),\n    OPEN_FOLDER_28('\\ufa5a'),\n    OPEN_FOLDER_48('\\ufa5b'),\n    OPEN_IN_BROWSER_24('\\uf585'),\n    OPEN_OFF_16('\\ufa5c'),\n    OPEN_OFF_20('\\ufa5d'),\n    OPEN_OFF_24('\\ufa5e'),\n    OPEN_OFF_28('\\ufa5f'),\n    OPEN_OFF_48('\\ufa60'),\n    OPTIONS_16('\\uf586'),\n    OPTIONS_20('\\uf587'),\n    OPTIONS_24('\\uf588'),\n    ORGANIZATION_20('\\uf589'),\n    ORGANIZATION_24('\\uf58a'),\n    ORGANIZATION_28('\\uf58b'),\n    OWNER_24('\\uf58c'),\n    PAGE_20('\\uf58d'),\n    PAGE_FIT_16('\\uf58e'),\n    PAGE_FIT_20('\\uf58f'),\n    PAGE_FIT_24('\\uf590'),\n    PAINT_BRUSH_16('\\uf591'),\n    PAINT_BRUSH_20('\\uf592'),\n    PAINT_BRUSH_24('\\uf593'),\n    PAINT_BRUSH_ARROW_DOWN_24('\\ufa61'),\n    PAINT_BRUSH_ARROW_UP_24('\\ufa62'),\n    PAINT_BUCKET_16('\\uf594'),\n    PAINT_BUCKET_20('\\uf595'),\n    PAINT_BUCKET_24('\\uf596'),\n    PAIR_24('\\uf597'),\n    PANE_CLOSE_16('\\uf598'),\n    PANE_CLOSE_20('\\uf599'),\n    PANE_CLOSE_24('\\uf59a'),\n    PANE_OPEN_16('\\uf59b'),\n    PANE_OPEN_20('\\uf59c'),\n    PANE_OPEN_24('\\uf59d'),\n    PASSWORD_24('\\uf59e'),\n    PATIENT_24('\\uf59f'),\n    PAUSE_12('\\ufa63'),\n    PAUSE_16('\\uf5a0'),\n    PAUSE_20('\\uf5a1'),\n    PAUSE_24('\\uf5a2'),\n    PAUSE_48('\\uf5a3'),\n    PAYMENT_16('\\ufa64'),\n    PAYMENT_20('\\uf5a4'),\n    PAYMENT_24('\\uf5a5'),\n    PAYMENT_28('\\ufa65'),\n    PEN_SETTINGS_24('\\uf5a6'),\n    PEOPLE_16('\\uf5a7'),\n    PEOPLE_20('\\uf5a8'),\n    PEOPLE_24('\\uf5a9'),\n    PEOPLE_28('\\uf5aa'),\n    PEOPLE_ADD_16('\\uf5ab'),\n    PEOPLE_ADD_20('\\uf5ac'),\n    PEOPLE_ADD_24('\\uf5ad'),\n    PEOPLE_AUDIENCE_24('\\uf5ae'),\n    PEOPLE_COMMUNITY_16('\\uf5af'),\n    PEOPLE_COMMUNITY_20('\\uf5b0'),\n    PEOPLE_COMMUNITY_24('\\uf5b1'),\n    PEOPLE_COMMUNITY_28('\\uf5b2'),\n    PEOPLE_COMMUNITY_ADD_24('\\uf5b3'),\n    PEOPLE_PROHIBITED_16('\\ufa66'),\n    PEOPLE_PROHIBITED_20('\\uf5b4'),\n    PEOPLE_SEARCH_24('\\uf5b5'),\n    PEOPLE_SETTINGS_20('\\uf5b6'),\n    PEOPLE_SWAP_16('\\ufa67'),\n    PEOPLE_SWAP_20('\\ufa68'),\n    PEOPLE_SWAP_24('\\ufa69'),\n    PEOPLE_SWAP_28('\\ufa6a'),\n    PEOPLE_TEAM_16('\\uf5b7'),\n    PEOPLE_TEAM_20('\\uf5b8'),\n    PEOPLE_TEAM_24('\\uf5b9'),\n    PEOPLE_TEAM_28('\\uf5ba'),\n    PEOPLE_TEAM_ADD_20('\\ufa6b'),\n    PEOPLE_TEAM_ADD_24('\\ufa6c'),\n    PEOPLE_TEAM_DISMISS_24('\\ufa6d'),\n    PERSON_12('\\uf5bb'),\n    PERSON_16('\\uf5bc'),\n    PERSON_20('\\uf5bd'),\n    PERSON_24('\\uf5be'),\n    PERSON_28('\\uf5bf'),\n    PERSON_48('\\uf5c0'),\n    PERSON_ACCOUNTS_24('\\uf5c1'),\n    PERSON_ADD_20('\\uf5c2'),\n    PERSON_ADD_24('\\uf5c3'),\n    PERSON_ARROW_LEFT_20('\\uf5c4'),\n    PERSON_ARROW_LEFT_24('\\uf5c5'),\n    PERSON_ARROW_RIGHT_16('\\uf5c6'),\n    PERSON_ARROW_RIGHT_20('\\uf5c7'),\n    PERSON_ARROW_RIGHT_24('\\uf5c8'),\n    PERSON_AVAILABLE_16('\\uf5c9'),\n    PERSON_AVAILABLE_20('\\ufa6e'),\n    PERSON_AVAILABLE_24('\\uf5ca'),\n    PERSON_BLOCK_24('\\uf5cb'),\n    PERSON_BOARD_16('\\uf5cc'),\n    PERSON_BOARD_20('\\uf5cd'),\n    PERSON_BOARD_24('\\uf5ce'),\n    PERSON_CALL_24('\\uf5cf'),\n    PERSON_CLOCK_16('\\ufa6f'),\n    PERSON_CLOCK_20('\\ufa70'),\n    PERSON_CLOCK_24('\\ufa71'),\n    PERSON_DELETE_16('\\uf5d0'),\n    PERSON_DELETE_20('\\ufa72'),\n    PERSON_DELETE_24('\\uf5d1'),\n    PERSON_FEEDBACK_20('\\uf5d2'),\n    PERSON_FEEDBACK_24('\\uf5d3'),\n    PERSON_MAIL_16('\\ufa73'),\n    PERSON_MAIL_20('\\ufa74'),\n    PERSON_MAIL_24('\\ufa75'),\n    PERSON_MAIL_28('\\ufa76'),\n    PERSON_MAIL_48('\\ufa77'),\n    PERSON_PROHIBITED_20('\\uf5d4'),\n    PERSON_PROHIBITED_24('\\ufa78'),\n    PERSON_QUESTION_MARK_16('\\uf5d5'),\n    PERSON_QUESTION_MARK_20('\\uf5d6'),\n    PERSON_QUESTION_MARK_24('\\uf5d7'),\n    PERSON_SUPPORT_16('\\uf5d8'),\n    PERSON_SUPPORT_20('\\uf5d9'),\n    PERSON_SUPPORT_24('\\uf5da'),\n    PERSON_SWAP_16('\\uf5db'),\n    PERSON_SWAP_20('\\uf5dc'),\n    PERSON_SWAP_24('\\uf5dd'),\n    PERSON_VOICE_20('\\uf5de'),\n    PERSON_VOICE_24('\\uf5df'),\n    PHONE_16('\\ufa79'),\n    PHONE_20('\\uf5e0'),\n    PHONE_24('\\uf5e1'),\n    PHONE_28('\\uf5e2'),\n    PHONE_ADD_NEW_APP_24('\\uf5e3'),\n    PHONE_DESKTOP_16('\\uf5e4'),\n    PHONE_DESKTOP_20('\\uf5e5'),\n    PHONE_DESKTOP_24('\\uf5e6'),\n    PHONE_DESKTOP_28('\\uf5e7'),\n    PHONE_ERROR_24('\\uf5e8'),\n    PHONE_HOME_LOCK_24('\\uf5e9'),\n    PHONE_LAPTOP_20('\\uf5ea'),\n    PHONE_LAPTOP_24('\\uf5eb'),\n    PHONE_LINK_SETUP_24('\\uf5ec'),\n    PHONE_MOBILE_20('\\uf5ed'),\n    PHONE_MOBILE_24('\\uf5ee'),\n    PHONE_PAGE_HEADER_24('\\uf5ef'),\n    PHONE_PAGINATION_24('\\uf5f0'),\n    PHONE_SCREEN_TIME_24('\\uf5f1'),\n    PHONE_SHAKE_24('\\uf5f2'),\n    PHONE_STATUS_BAR_24('\\uf5f3'),\n    PHONE_TABLET_20('\\uf5f4'),\n    PHONE_TABLET_24('\\uf5f5'),\n    PHONE_TO_PC_20('\\uf5f6'),\n    PHONE_TO_PC_24('\\uf5f7'),\n    PHONE_UPDATE_24('\\uf5f8'),\n    PHONE_VERTICAL_SCROLL_24('\\uf5f9'),\n    PHONE_VIBRATE_24('\\uf5fa'),\n    PHOTO_FILTER_24('\\uf5fb'),\n    PICTURE_IN_PICTURE_16('\\uf5fc'),\n    PICTURE_IN_PICTURE_20('\\uf5fd'),\n    PICTURE_IN_PICTURE_24('\\uf5fe'),\n    PIN_12('\\uf5ff'),\n    PIN_16('\\uf600'),\n    PIN_20('\\uf601'),\n    PIN_24('\\uf602'),\n    PIN_OFF_20('\\uf603'),\n    PIN_OFF_24('\\uf604'),\n    PLAY_20('\\uf605'),\n    PLAY_24('\\uf606'),\n    PLAY_48('\\uf607'),\n    PLAY_CIRCLE_24('\\uf608'),\n    PLUG_DISCONNECTED_20('\\uf609'),\n    PLUG_DISCONNECTED_24('\\uf60a'),\n    PLUG_DISCONNECTED_28('\\uf60b'),\n    POINT_SCAN_24('\\uf60c'),\n    POLL_20('\\ufa7a'),\n    POLL_24('\\uf60d'),\n    POWER_20('\\uf60e'),\n    POWER_24('\\uf60f'),\n    POWER_28('\\uf610'),\n    PREDICTIONS_24('\\uf611'),\n    PREMIUM_16('\\uf612'),\n    PREMIUM_20('\\uf613'),\n    PREMIUM_24('\\uf614'),\n    PREMIUM_28('\\uf615'),\n    PRESENCE_AVAILABLE_10('\\ufa7b'),\n    PRESENCE_AVAILABLE_12('\\ufa7c'),\n    PRESENCE_AVAILABLE_16('\\ufa7d'),\n    PRESENCE_BLOCKED_10('\\uf616'),\n    PRESENCE_BLOCKED_12('\\uf617'),\n    PRESENCE_BLOCKED_16('\\uf618'),\n    PRESENCE_DND_10('\\ufa7e'),\n    PRESENCE_DND_12('\\ufa7f'),\n    PRESENCE_DND_16('\\ufa80'),\n    PRESENCE_OFFLINE_10('\\uf619'),\n    PRESENCE_OFFLINE_12('\\uf61a'),\n    PRESENCE_OFFLINE_16('\\uf61b'),\n    PRESENCE_OOF_10('\\uf61c'),\n    PRESENCE_OOF_12('\\uf61d'),\n    PRESENCE_OOF_16('\\uf61e'),\n    PRESENCE_UNKNOWN_10('\\uf61f'),\n    PRESENCE_UNKNOWN_12('\\uf620'),\n    PRESENCE_UNKNOWN_16('\\uf621'),\n    PRESENTER_24('\\uf622'),\n    PRESENTER_OFF_24('\\uf623'),\n    PREVIEW_LINK_16('\\uf624'),\n    PREVIEW_LINK_20('\\uf625'),\n    PREVIEW_LINK_24('\\uf626'),\n    PREVIOUS_16('\\uf627'),\n    PREVIOUS_20('\\uf628'),\n    PREVIOUS_24('\\uf629'),\n    PRINT_20('\\uf62a'),\n    PRINT_24('\\uf62b'),\n    PRINT_48('\\uf62c'),\n    PROHIBITED_20('\\uf62d'),\n    PROHIBITED_24('\\uf62e'),\n    PROHIBITED_28('\\uf62f'),\n    PROHIBITED_48('\\uf630'),\n    PROOFREAD_LANGUAGE_24('\\uf631'),\n    PROTOCOL_HANDLER_16('\\uf632'),\n    PROTOCOL_HANDLER_20('\\uf633'),\n    PROTOCOL_HANDLER_24('\\uf634'),\n    PULSE_24('\\ufa81'),\n    QR_CODE_20('\\ufa82'),\n    QR_CODE_24('\\uf635'),\n    QR_CODE_28('\\uf636'),\n    QUESTION_16('\\uf637'),\n    QUESTION_20('\\uf638'),\n    QUESTION_24('\\uf639'),\n    QUESTION_28('\\uf63a'),\n    QUESTION_48('\\uf63b'),\n    QUESTION_CIRCLE_16('\\uf63c'),\n    QUESTION_CIRCLE_20('\\uf63d'),\n    QUESTION_CIRCLE_24('\\uf63e'),\n    QUESTION_CIRCLE_28('\\uf63f'),\n    QUESTION_CIRCLE_48('\\uf640'),\n    QUIZ_NEW_24('\\uf641'),\n    QUIZ_NEW_28('\\uf642'),\n    QUIZ_NEW_48('\\uf643'),\n    RADIO_BUTTON_20('\\uf644'),\n    RADIO_BUTTON_24('\\uf645'),\n    RATING_MATURE_16('\\uf646'),\n    RATING_MATURE_20('\\uf647'),\n    RATING_MATURE_24('\\uf648'),\n    READING_LIST_16('\\uf651'),\n    READING_LIST_20('\\uf652'),\n    READING_LIST_24('\\uf653'),\n    READING_LIST_28('\\uf654'),\n    READING_LIST_ADD_16('\\uf655'),\n    READING_LIST_ADD_20('\\uf656'),\n    READING_LIST_ADD_24('\\uf657'),\n    READING_LIST_ADD_28('\\uf658'),\n    READING_MODE_20('\\uf659'),\n    READING_MODE_24('\\uf65a'),\n    READING_MODE_MOBILE_20('\\uf65b'),\n    READING_MODE_MOBILE_24('\\uf65c'),\n    READ_ALOUD_20('\\uf64d'),\n    READ_ALOUD_24('\\uf64e'),\n    READ_ONLY_16('\\uf64f'),\n    READ_ONLY_24('\\uf650'),\n    REAL_ESTATE_24('\\ufa83'),\n    RECIEPT_20('\\uf65d'),\n    RECIEPT_24('\\uf65e'),\n    RECOMMENDED_24('\\uf65f'),\n    RECORD_16('\\uf660'),\n    RECORD_20('\\uf661'),\n    RECORD_24('\\uf662'),\n    REMOVE_12('\\uf663'),\n    REMOVE_16('\\uf664'),\n    REMOVE_20('\\uf665'),\n    REMOVE_24('\\uf666'),\n    REMOVE_RECENT_24('\\uf667'),\n    RENAME_16('\\uf668'),\n    RENAME_20('\\uf669'),\n    RENAME_24('\\uf66a'),\n    RENAME_28('\\uf66b'),\n    RESIZE_20('\\uf66c'),\n    RESIZE_IMAGE_24('\\uf66d'),\n    RESIZE_TABLE_24('\\uf66e'),\n    RESIZE_VIDEO_24('\\uf66f'),\n    RESTORE_16('\\uf670'),\n    REWARD_16('\\uf671'),\n    REWARD_20('\\uf672'),\n    REWARD_24('\\uf673'),\n    REWIND_20('\\uf674'),\n    REWIND_24('\\uf675'),\n    RE_ORDER_16('\\uf649'),\n    RE_ORDER_24('\\uf64a'),\n    RE_ORDER_DOTS_20('\\uf64b'),\n    RE_ORDER_DOTS_24('\\uf64c'),\n    RIBBON_24('\\ufa84'),\n    RIBBON_STAR_20('\\ufa85'),\n    RIBBON_STAR_24('\\ufa86'),\n    ROCKET_16('\\uf676'),\n    ROCKET_20('\\uf677'),\n    ROCKET_24('\\uf678'),\n    ROUTER_24('\\uf679'),\n    ROW_TRIPLE_24('\\uf67a'),\n    RULER_16('\\uf67b'),\n    RULER_20('\\uf67c'),\n    RULER_24('\\uf67d'),\n    RUN_16('\\ufa87'),\n    RUN_20('\\ufa88'),\n    RUN_24('\\uf67e'),\n    SAVE_20('\\uf67f'),\n    SAVE_24('\\uf680'),\n    SAVE_AS_20('\\uf681'),\n    SAVE_AS_24('\\uf682'),\n    SAVE_COPY_24('\\uf683'),\n    SAVINGS_16('\\uf684'),\n    SAVINGS_20('\\uf685'),\n    SAVINGS_24('\\uf686'),\n    SCALES_24('\\ufa89'),\n    SCALES_32('\\ufa8a'),\n    SCALE_FILL_24('\\uf687'),\n    SCALE_FIT_16('\\uf688'),\n    SCALE_FIT_20('\\uf689'),\n    SCALE_FIT_24('\\uf68a'),\n    SCAN_24('\\uf68b'),\n    SCRATCHPAD_24('\\uf68c'),\n    SCREENSHOT_20('\\uf68d'),\n    SCREENSHOT_24('\\uf68e'),\n    SEARCH_20('\\uf68f'),\n    SEARCH_24('\\uf690'),\n    SEARCH_28('\\uf691'),\n    SEARCH_INFO_20('\\uf692'),\n    SEARCH_INFO_24('\\uf693'),\n    SEARCH_SHIELD_20('\\ufa8b'),\n    SEARCH_SQUARE_24('\\uf694'),\n    SELECT_ALL_24('\\uf695'),\n    SELECT_ALL_OFF_24('\\uf696'),\n    SELECT_OBJECT_20('\\uf697'),\n    SELECT_OBJECT_24('\\uf698'),\n    SEND_20('\\uf699'),\n    SEND_24('\\uf69a'),\n    SEND_28('\\uf69b'),\n    SEND_CLOCK_20('\\uf69c'),\n    SEND_COPY_24('\\uf69d'),\n    SEND_LOGGING_24('\\uf69e'),\n    SEND_TO_BACK_20('\\uf69f'),\n    SEND_TO_BACK_24('\\uf6a0'),\n    SERIAL_PORT_16('\\uf6a1'),\n    SERIAL_PORT_20('\\uf6a2'),\n    SERIAL_PORT_24('\\uf6a3'),\n    SERVICE_BELL_24('\\uf6a4'),\n    SETTINGS_16('\\uf6a8'),\n    SETTINGS_20('\\uf6a9'),\n    SETTINGS_24('\\uf6aa'),\n    SETTINGS_28('\\uf6ab'),\n    SET_TOP_STACK_16('\\uf6a5'),\n    SET_TOP_STACK_20('\\uf6a6'),\n    SET_TOP_STACK_24('\\uf6a7'),\n    SHAPES_16('\\uf6ac'),\n    SHAPES_20('\\uf6ad'),\n    SHAPES_24('\\uf6ae'),\n    SHARE_20('\\uf6af'),\n    SHARE_24('\\uf6b0'),\n    SHARE_ANDROID_20('\\uf6b1'),\n    SHARE_ANDROID_24('\\uf6b2'),\n    SHARE_CLOSE_TRAY_24('\\uf6b3'),\n    SHARE_DESKTOP_24('\\uf6b4'),\n    SHARE_IOS_20('\\uf6b5'),\n    SHARE_IOS_24('\\uf6b6'),\n    SHARE_IOS_28('\\uf6b7'),\n    SHARE_IOS_48('\\uf6b8'),\n    SHARE_SCREEN_20('\\uf6b9'),\n    SHARE_SCREEN_24('\\uf6ba'),\n    SHARE_SCREEN_28('\\uf6bb'),\n    SHARE_STOP_16('\\ufa8c'),\n    SHARE_STOP_20('\\ufa8d'),\n    SHARE_STOP_24('\\uf6bc'),\n    SHARE_STOP_28('\\uf6bd'),\n    SHARE_STOP_48('\\ufa8e'),\n    SHIELD_20('\\uf6be'),\n    SHIELD_24('\\uf6bf'),\n    SHIELD_DISMISS_20('\\uf6c0'),\n    SHIELD_DISMISS_24('\\uf6c1'),\n    SHIELD_DISMISS_SHIELD_20('\\ufa8f'),\n    SHIELD_ERROR_20('\\uf6c2'),\n    SHIELD_ERROR_24('\\uf6c3'),\n    SHIELD_KEYHOLE_16('\\uf6c4'),\n    SHIELD_KEYHOLE_20('\\uf6c5'),\n    SHIELD_KEYHOLE_24('\\uf6c6'),\n    SHIELD_PROHIBITED_20('\\uf6c7'),\n    SHIELD_PROHIBITED_24('\\uf6c8'),\n    SHIFTS_24('\\uf6c9'),\n    SHIFTS_24H_20('\\uf6ca'),\n    SHIFTS_24H_24('\\uf6cb'),\n    SHIFTS_28('\\uf6cc'),\n    SHIFTS_30_MINUTES_24('\\uf6cd'),\n    SHIFTS_ACTIVITY_20('\\uf6ce'),\n    SHIFTS_ACTIVITY_24('\\uf6cf'),\n    SHIFTS_ADD_24('\\uf6d0'),\n    SHIFTS_APPROVE_24('\\uf6d1'),\n    SHIFTS_AVAILABILITY_24('\\uf6d2'),\n    SHIFTS_DAY_20('\\ufa90'),\n    SHIFTS_DAY_24('\\ufa91'),\n    SHIFTS_DENY_24('\\uf6d3'),\n    SHIFTS_OPEN_20('\\uf6d4'),\n    SHIFTS_OPEN_24('\\uf6d5'),\n    SHIFTS_PENDING_24('\\uf6d6'),\n    SHIFTS_TEAM_24('\\uf6d7'),\n    SHIP_20('\\uf6d8'),\n    SHIP_24('\\uf6d9'),\n    SIDEBAR_SEARCH_LTR_20('\\ufa92'),\n    SIDEBAR_SEARCH_RTL_20('\\ufa93'),\n    SIGNATURE_16('\\uf6db'),\n    SIGNATURE_20('\\uf6dc'),\n    SIGNATURE_24('\\uf6dd'),\n    SIGNATURE_28('\\uf6de'),\n    SIGNED_16('\\uf6df'),\n    SIGNED_20('\\uf6e0'),\n    SIGNED_24('\\uf6e1'),\n    SIGN_OUT_20('\\ufa94'),\n    SIGN_OUT_24('\\uf6da'),\n    SIM_16('\\uf6e2'),\n    SIM_20('\\uf6e3'),\n    SIM_24('\\uf6e4'),\n    SLEEP_24('\\uf6e5'),\n    SLIDE_ADD_24('\\uf6e6'),\n    SLIDE_DESIGN_24('\\uf6e7'),\n    SLIDE_HIDE_24('\\uf6e8'),\n    SLIDE_LAYOUT_20('\\uf6e9'),\n    SLIDE_LAYOUT_24('\\uf6ea'),\n    SLIDE_MICROPHONE_24('\\uf6eb'),\n    SLIDE_MULTIPLE_ARROW_RIGHT_24('\\ufa95'),\n    SLIDE_SEARCH_24('\\ufa96'),\n    SLIDE_SEARCH_28('\\ufa97'),\n    SLIDE_SIZE_24('\\ufa98'),\n    SLIDE_TEXT_16('\\ufa99'),\n    SLIDE_TEXT_20('\\ufa9a'),\n    SLIDE_TEXT_24('\\uf6ec'),\n    SLIDE_TEXT_28('\\ufa9b'),\n    SLIDE_TEXT_48('\\ufa9c'),\n    SLOW_MODE_16('\\uf6ed'),\n    SLOW_MODE_20('\\uf6ee'),\n    SLOW_MODE_24('\\uf6ef'),\n    SLOW_MODE_28('\\uf6f0'),\n    SMALL_16('\\uf6f1'),\n    SMALL_20('\\uf6f2'),\n    SMALL_24('\\uf6f3'),\n    SNOOZE_16('\\uf6f4'),\n    SNOOZE_24('\\uf6f5'),\n    SOUND_SOURCE_24('\\uf6f6'),\n    SOUND_SOURCE_28('\\uf6f7'),\n    SPACEBAR_24('\\uf6f8'),\n    SPEAKER_0_16('\\ufa9d'),\n    SPEAKER_0_20('\\ufa9e'),\n    SPEAKER_0_24('\\uf6f9'),\n    SPEAKER_0_28('\\ufa9f'),\n    SPEAKER_0_48('\\ufaa0'),\n    SPEAKER_16('\\uf6fa'),\n    SPEAKER_1_16('\\ufaa1'),\n    SPEAKER_1_20('\\ufaa2'),\n    SPEAKER_1_24('\\uf6fb'),\n    SPEAKER_1_28('\\ufaa3'),\n    SPEAKER_1_48('\\ufaa4'),\n    SPEAKER_20('\\uf6fc'),\n    SPEAKER_24('\\uf6fd'),\n    SPEAKER_28('\\uf6fe'),\n    SPEAKER_48('\\ufaa5'),\n    SPEAKER_BLUETOOTH_24('\\uf6ff'),\n    SPEAKER_BLUETOOTH_28('\\ufaa6'),\n    SPEAKER_EDIT_16('\\uf700'),\n    SPEAKER_EDIT_20('\\uf701'),\n    SPEAKER_EDIT_24('\\uf702'),\n    SPEAKER_NONE_16('\\ufaa7'),\n    SPEAKER_NONE_20('\\uf703'),\n    SPEAKER_NONE_24('\\uf704'),\n    SPEAKER_NONE_28('\\uf705'),\n    SPEAKER_NONE_48('\\ufaa8'),\n    SPEAKER_OFF_16('\\ufaa9'),\n    SPEAKER_OFF_20('\\ufaaa'),\n    SPEAKER_OFF_24('\\uf706'),\n    SPEAKER_OFF_28('\\uf707'),\n    SPEAKER_OFF_48('\\ufaab'),\n    SPEAKER_SETTINGS_24('\\uf708'),\n    SPEAKER_USB_24('\\ufaac'),\n    SPEAKER_USB_28('\\ufaad'),\n    SPINNER_IOS_20('\\uf709'),\n    SPORTS_16('\\uf70a'),\n    SPORTS_20('\\uf70b'),\n    SPORTS_24('\\uf70c'),\n    SPORT_16('\\ufaae'),\n    SPORT_20('\\ufaaf'),\n    SPORT_24('\\ufab0'),\n    SPORT_AMERICAN_FOOTBALL_24('\\ufab1'),\n    SPORT_BASEBALL_24('\\ufab2'),\n    SPORT_BASKETBALL_24('\\ufab3'),\n    SPORT_HOCKEY_24('\\ufab4'),\n    STAR_12('\\uf70d'),\n    STAR_16('\\uf70e'),\n    STAR_20('\\uf70f'),\n    STAR_24('\\uf710'),\n    STAR_28('\\uf711'),\n    STAR_ADD_16('\\uf712'),\n    STAR_ADD_20('\\uf713'),\n    STAR_ADD_24('\\uf714'),\n    STAR_ARROW_RIGHT_24('\\uf715'),\n    STAR_ARROW_RIGHT_START_24('\\uf716'),\n    STAR_EDIT_24('\\ufab5'),\n    STAR_EMPHASIS_24('\\uf717'),\n    STAR_OFF_12('\\uf718'),\n    STAR_OFF_16('\\uf719'),\n    STAR_OFF_20('\\uf71a'),\n    STAR_OFF_24('\\uf71b'),\n    STAR_OFF_28('\\uf71c'),\n    STAR_PROHIBITED_16('\\uf71d'),\n    STAR_PROHIBITED_20('\\uf71e'),\n    STAR_PROHIBITED_24('\\uf71f'),\n    STAR_SETTINGS_24('\\uf720'),\n    STATUS_16('\\uf721'),\n    STATUS_20('\\uf722'),\n    STATUS_24('\\uf723'),\n    STETHOSCOPE_20('\\uf724'),\n    STETHOSCOPE_24('\\uf725'),\n    STICKER_20('\\uf726'),\n    STICKER_24('\\uf727'),\n    STICKER_ADD_24('\\uf728'),\n    STOP_16('\\uf729'),\n    STOP_20('\\uf72a'),\n    STOP_24('\\uf72b'),\n    STORAGE_24('\\uf72c'),\n    STORE_16('\\uf72d'),\n    STORE_20('\\uf72e'),\n    STORE_24('\\uf72f'),\n    STORE_MICROSOFT_16('\\uf730'),\n    STORE_MICROSOFT_20('\\uf731'),\n    STORE_MICROSOFT_24('\\uf732'),\n    STYLE_GUIDE_24('\\uf733'),\n    SUBWAY_20('\\uf735'),\n    SUBWAY_24('\\uf736'),\n    SUB_GRID_24('\\uf734'),\n    SUGGESTION_24('\\uf737'),\n    SURFACE_EARBUDS_20('\\uf738'),\n    SURFACE_EARBUDS_24('\\uf739'),\n    SURFACE_HUB_20('\\uf73a'),\n    SURFACE_HUB_24('\\uf73b'),\n    SWIPE_DOWN_24('\\uf73c'),\n    SWIPE_RIGHT_24('\\uf73d'),\n    SWIPE_UP_24('\\uf73e'),\n    SYMBOLS_24('\\uf73f'),\n    SYNC_OFF_16('\\uf740'),\n    SYNC_OFF_20('\\uf741'),\n    SYSTEM_24('\\uf742'),\n    TABLET_20('\\uf779'),\n    TABLET_24('\\uf77a'),\n    TABLE_16('\\ufab8'),\n    TABLE_20('\\uf75d'),\n    TABLE_24('\\uf75e'),\n    TABLE_28('\\ufab9'),\n    TABLE_48('\\ufaba'),\n    TABLE_ADD_24('\\uf75f'),\n    TABLE_CELLS_MERGE_20('\\uf760'),\n    TABLE_CELLS_MERGE_24('\\uf761'),\n    TABLE_CELLS_SPLIT_20('\\uf762'),\n    TABLE_CELLS_SPLIT_24('\\uf763'),\n    TABLE_COLUMN_DELETE_24('\\uf764'),\n    TABLE_COLUMN_INSERT_24('\\uf765'),\n    TABLE_COLUMN_RESIZE_24('\\uf766'),\n    TABLE_DELETE_24('\\uf767'),\n    TABLE_EDIT_24('\\uf768'),\n    TABLE_FREEZE_24('\\uf769'),\n    TABLE_FREEZE_COLUMN_24('\\uf76a'),\n    TABLE_FREEZE_ROW_24('\\uf76b'),\n    TABLE_INSERT_DOWN_24('\\uf76c'),\n    TABLE_INSERT_LEFT_24('\\uf76d'),\n    TABLE_INSERT_RIGHT_24('\\uf76e'),\n    TABLE_INSERT_UP_24('\\uf76f'),\n    TABLE_MOVE_DOWN_24('\\uf770'),\n    TABLE_MOVE_LEFT_24('\\uf771'),\n    TABLE_MOVE_RIGHT_24('\\uf772'),\n    TABLE_MOVE_UP_24('\\uf773'),\n    TABLE_ROW_DELETE_24('\\uf774'),\n    TABLE_ROW_INSERT_24('\\uf775'),\n    TABLE_ROW_RESIZE_24('\\uf776'),\n    TABLE_SETTINGS_24('\\uf777'),\n    TABLE_SIMPLE_16('\\ufabb'),\n    TABLE_SIMPLE_20('\\ufabc'),\n    TABLE_SIMPLE_24('\\ufabd'),\n    TABLE_SIMPLE_28('\\ufabe'),\n    TABLE_SIMPLE_48('\\ufabf'),\n    TABLE_SWITCH_24('\\uf778'),\n    TABS_24('\\uf77b'),\n    TAB_16('\\uf743'),\n    TAB_20('\\uf744'),\n    TAB_24('\\uf745'),\n    TAB_28('\\uf746'),\n    TAB_DESKTOP_20('\\uf747'),\n    TAB_DESKTOP_ARROW_CLOCKWISE_16('\\uf748'),\n    TAB_DESKTOP_ARROW_CLOCKWISE_20('\\uf749'),\n    TAB_DESKTOP_ARROW_CLOCKWISE_24('\\uf74a'),\n    TAB_DESKTOP_ARROW_LEFT_20('\\ufab6'),\n    TAB_DESKTOP_CLOCK_20('\\uf74b'),\n    TAB_DESKTOP_COPY_20('\\uf74c'),\n    TAB_DESKTOP_IMAGE_16('\\uf74d'),\n    TAB_DESKTOP_IMAGE_20('\\uf74e'),\n    TAB_DESKTOP_IMAGE_24('\\uf74f'),\n    TAB_DESKTOP_MULTIPLE_20('\\uf750'),\n    TAB_DESKTOP_NEW_PAGE_20('\\uf751'),\n    TAB_INPRIVATE_ACCOUNT_20('\\uf756'),\n    TAB_INPRIVATE_ACCOUNT_24('\\uf757'),\n    TAB_IN_PRIVATE_16('\\uf752'),\n    TAB_IN_PRIVATE_20('\\uf753'),\n    TAB_IN_PRIVATE_24('\\uf754'),\n    TAB_IN_PRIVATE_28('\\uf755'),\n    TAB_NEW_20('\\uf758'),\n    TAB_NEW_24('\\uf759'),\n    TAB_PROHIBITED_24('\\ufab7'),\n    TAB_SWEEP_24('\\uf75a'),\n    TAB_TRACKING_PREVENTION_20('\\uf75b'),\n    TAB_TRACKING_PREVENTION_24('\\uf75c'),\n    TAG_16('\\ufac0'),\n    TAG_20('\\uf77c'),\n    TAG_24('\\uf77d'),\n    TAP_DOUBLE_24('\\uf77e'),\n    TAP_SINGLE_24('\\uf77f'),\n    TARGET_16('\\uf780'),\n    TARGET_20('\\uf781'),\n    TARGET_24('\\uf782'),\n    TARGET_EDIT_16('\\uf783'),\n    TARGET_EDIT_20('\\uf784'),\n    TARGET_EDIT_24('\\uf785'),\n    TASKS_APP_20('\\ufac1'),\n    TASKS_APP_24('\\uf78a'),\n    TASKS_APP_28('\\uf78b'),\n    TASK_LIST_20('\\uf786'),\n    TASK_LIST_24('\\uf787'),\n    TASK_LIST_ADD_20('\\uf788'),\n    TASK_LIST_ADD_24('\\uf789'),\n    TEAM_ADD_24('\\uf78c'),\n    TEAM_DELETE_24('\\uf78d'),\n    TEDDY_24('\\uf78e'),\n    TEMPERATURE_20('\\uf78f'),\n    TEMPERATURE_24('\\uf790'),\n    TENT_12('\\ufac2'),\n    TENT_16('\\ufac3'),\n    TENT_20('\\ufac4'),\n    TENT_24('\\uf791'),\n    TENT_28('\\ufac5'),\n    TENT_48('\\ufac6'),\n    TEST_CALL_24('\\uf792'),\n    TEXTBOX_20('\\uf80f'),\n    TEXTBOX_24('\\uf810'),\n    TEXTBOX_ALIGN_20('\\uf811'),\n    TEXTBOX_ALIGN_24('\\uf812'),\n    TEXTBOX_ALIGN_BOTTOM_20('\\uf813'),\n    TEXTBOX_ALIGN_BOTTOM_24('\\uf814'),\n    TEXTBOX_ALIGN_MIDDLE_20('\\uf815'),\n    TEXTBOX_ALIGN_MIDDLE_24('\\uf816'),\n    TEXTBOX_ALIGN_TOP_20('\\uf817'),\n    TEXTBOX_ALIGN_TOP_24('\\uf818'),\n    TEXTBOX_VERTICAL_20('\\uf819'),\n    TEXTBOX_VERTICAL_24('\\uf81a'),\n    TEXT_24('\\uf793'),\n    TEXT_ADD_24('\\uf794'),\n    TEXT_ADD_SPACE_AFTER_20('\\uf795'),\n    TEXT_ADD_SPACE_AFTER_24('\\uf796'),\n    TEXT_ADD_SPACE_BEFORE_20('\\uf797'),\n    TEXT_ADD_SPACE_BEFORE_24('\\uf798'),\n    TEXT_ALIGN_CENTER_20('\\uf799'),\n    TEXT_ALIGN_CENTER_24('\\uf79a'),\n    TEXT_ALIGN_DISTRIBUTED_20('\\uf79b'),\n    TEXT_ALIGN_DISTRIBUTED_24('\\uf79c'),\n    TEXT_ALIGN_JUSTIFY_20('\\uf79d'),\n    TEXT_ALIGN_JUSTIFY_24('\\uf79e'),\n    TEXT_ALIGN_LEFT_20('\\uf79f'),\n    TEXT_ALIGN_LEFT_24('\\uf7a0'),\n    TEXT_ALIGN_RIGHT_20('\\uf7a1'),\n    TEXT_ALIGN_RIGHT_24('\\uf7a2'),\n    TEXT_ASTERISK_20('\\uf7a3'),\n    TEXT_BOLD_16('\\ufac7'),\n    TEXT_BOLD_20('\\uf7a4'),\n    TEXT_BOLD_24('\\uf7a5'),\n    TEXT_BULLET_LIST_20('\\uf7a6'),\n    TEXT_BULLET_LIST_24('\\uf7a7'),\n    TEXT_BULLET_LIST_ADD_24('\\uf7a8'),\n    TEXT_BULLET_LIST_SQUARE_24('\\uf7a9'),\n    TEXT_BULLET_LIST_SQUARE_WARNING_16('\\uf7aa'),\n    TEXT_BULLET_LIST_SQUARE_WARNING_20('\\uf7ab'),\n    TEXT_BULLET_LIST_SQUARE_WARNING_24('\\uf7ac'),\n    TEXT_BULLET_LIST_TREE_16('\\uf7ad'),\n    TEXT_BULLET_LIST_TREE_20('\\uf7ae'),\n    TEXT_BULLET_LIST_TREE_24('\\uf7af'),\n    TEXT_CHANGE_ACCEPT_20('\\uf7b0'),\n    TEXT_CHANGE_ACCEPT_24('\\uf7b1'),\n    TEXT_CHANGE_CASE_20('\\uf7b2'),\n    TEXT_CHANGE_CASE_24('\\uf7b3'),\n    TEXT_CHANGE_NEXT_20('\\uf7b4'),\n    TEXT_CHANGE_NEXT_24('\\uf7b5'),\n    TEXT_CHANGE_PREVIOUS_20('\\uf7b6'),\n    TEXT_CHANGE_PREVIOUS_24('\\uf7b7'),\n    TEXT_CHANGE_REJECT_20('\\uf7b8'),\n    TEXT_CHANGE_REJECT_24('\\uf7b9'),\n    TEXT_CHANGE_SETTINGS_20('\\uf7ba'),\n    TEXT_CHANGE_SETTINGS_24('\\uf7bb'),\n    TEXT_CLEAR_FORMATTING_20('\\uf7bc'),\n    TEXT_CLEAR_FORMATTING_24('\\uf7bd'),\n    TEXT_COLLAPSE_24('\\uf7be'),\n    TEXT_COLOR_16('\\ufac8'),\n    TEXT_COLOR_20('\\uf7bf'),\n    TEXT_COLOR_24('\\uf7c0'),\n    TEXT_COLOR_ACCENT_16('\\ufac9'),\n    TEXT_COLOR_ACCENT_20('\\ufaca'),\n    TEXT_COLOR_ACCENT_24('\\ufacb'),\n    TEXT_COLUMN_ONE_20('\\uf7c1'),\n    TEXT_COLUMN_ONE_24('\\uf7c2'),\n    TEXT_COLUMN_ONE_NARROW_20('\\ufacc'),\n    TEXT_COLUMN_ONE_NARROW_24('\\ufacd'),\n    TEXT_COLUMN_ONE_WIDE_20('\\uface'),\n    TEXT_COLUMN_ONE_WIDE_24('\\ufacf'),\n    TEXT_COLUMN_THREE_20('\\uf7c3'),\n    TEXT_COLUMN_THREE_24('\\uf7c4'),\n    TEXT_COLUMN_TWO_20('\\uf7c5'),\n    TEXT_COLUMN_TWO_24('\\uf7c6'),\n    TEXT_COLUMN_TWO_LEFT_20('\\uf7c7'),\n    TEXT_COLUMN_TWO_LEFT_24('\\uf7c8'),\n    TEXT_COLUMN_TWO_RIGHT_20('\\uf7c9'),\n    TEXT_COLUMN_TWO_RIGHT_24('\\uf7ca'),\n    TEXT_CONTINUOUS_24('\\ufad0'),\n    TEXT_DESCRIPTION_20('\\uf7cb'),\n    TEXT_DESCRIPTION_24('\\uf7cc'),\n    TEXT_DIRECTION_20('\\uf7cd'),\n    TEXT_DIRECTION_24('\\uf7ce'),\n    TEXT_DIRECTION_HORIZONTAL_LTR_20('\\uf7cf'),\n    TEXT_DIRECTION_HORIZONTAL_LTR_24('\\uf7d0'),\n    TEXT_DIRECTION_ROTATE_270_20('\\uf7d1'),\n    TEXT_DIRECTION_ROTATE_270_24('\\uf7d2'),\n    TEXT_DIRECTION_ROTATE_270_AC_20('\\uf7d3'),\n    TEXT_DIRECTION_ROTATE_270_AC_24('\\uf7d4'),\n    TEXT_DIRECTION_ROTATE_90_20('\\uf7d5'),\n    TEXT_DIRECTION_ROTATE_90_24('\\uf7d6'),\n    TEXT_DIRECTION_VERTICAL_20('\\uf7d7'),\n    TEXT_DIRECTION_VERTICAL_24('\\uf7d8'),\n    TEXT_EDIT_STYLE_20('\\uf7d9'),\n    TEXT_EDIT_STYLE_24('\\uf7da'),\n    TEXT_EFFECTS_20('\\uf7db'),\n    TEXT_EFFECTS_24('\\uf7dc'),\n    TEXT_EXPAND_24('\\uf7dd'),\n    TEXT_FIELD_16('\\uf7de'),\n    TEXT_FIELD_20('\\uf7df'),\n    TEXT_FIELD_24('\\uf7e0'),\n    TEXT_FIRST_LINE_20('\\uf7e1'),\n    TEXT_FIRST_LINE_24('\\uf7e2'),\n    TEXT_FONT_16('\\uf7e3'),\n    TEXT_FONT_20('\\uf7e4'),\n    TEXT_FONT_24('\\uf7e5'),\n    TEXT_FONT_SIZE_20('\\uf7e6'),\n    TEXT_FONT_SIZE_24('\\uf7e7'),\n    TEXT_FOOTNOTE_20('\\uf7e8'),\n    TEXT_FOOTNOTE_24('\\uf7e9'),\n    TEXT_GRAMMAR_OPTIONS_16('\\uf7ea'),\n    TEXT_GRAMMAR_OPTIONS_20('\\uf7eb'),\n    TEXT_GRAMMAR_OPTIONS_24('\\uf7ec'),\n    TEXT_HANGING_20('\\uf7ed'),\n    TEXT_HANGING_24('\\uf7ee'),\n    TEXT_HEADER_1_20('\\uf7ef'),\n    TEXT_HEADER_2_20('\\uf7f0'),\n    TEXT_HEADER_3_20('\\uf7f1'),\n    TEXT_INDENT_DECREASE_20('\\ufad1'),\n    TEXT_INDENT_DECREASE_24('\\uf7f2'),\n    TEXT_INDENT_INCREASE_20('\\ufad2'),\n    TEXT_INDENT_INCREASE_24('\\uf7f3'),\n    TEXT_ITALIC_16('\\ufad3'),\n    TEXT_ITALIC_20('\\uf7f4'),\n    TEXT_ITALIC_24('\\uf7f5'),\n    TEXT_LINE_SPACING_20('\\uf7f6'),\n    TEXT_LINE_SPACING_24('\\uf7f7'),\n    TEXT_NUMBER_FORMAT_24('\\uf7f8'),\n    TEXT_NUMBER_LIST_LTR_20('\\uf7f9'),\n    TEXT_NUMBER_LIST_LTR_24('\\uf7fa'),\n    TEXT_NUMBER_LIST_RTL_24('\\uf7fb'),\n    TEXT_PARAGRAPH_SETTINGS_20('\\uf7fc'),\n    TEXT_PARAGRAPH_SETTINGS_24('\\uf7fd'),\n    TEXT_PROOFING_TOOLS_20('\\uf7fe'),\n    TEXT_PROOFING_TOOLS_24('\\uf7ff'),\n    TEXT_QUOTE_20('\\uf800'),\n    TEXT_QUOTE_24('\\uf801'),\n    TEXT_SORT_ASCENDING_20('\\uf802'),\n    TEXT_SORT_DESCENDING_20('\\uf803'),\n    TEXT_STRIKETHROUGH_16('\\ufad4'),\n    TEXT_STRIKETHROUGH_20('\\uf804'),\n    TEXT_STRIKETHROUGH_24('\\uf805'),\n    TEXT_SUBSCRIPT_20('\\uf806'),\n    TEXT_SUBSCRIPT_24('\\uf807'),\n    TEXT_SUPERSCRIPT_20('\\uf808'),\n    TEXT_SUPERSCRIPT_24('\\uf809'),\n    TEXT_UNDERLINE_16('\\ufad5'),\n    TEXT_UNDERLINE_20('\\uf80a'),\n    TEXT_UNDERLINE_24('\\uf80b'),\n    TEXT_WORD_COUNT_20('\\uf80c'),\n    TEXT_WORD_COUNT_24('\\uf80d'),\n    TEXT_WRAP_24('\\uf80e'),\n    TEXT_WRAP_BEHIND_20('\\ufad6'),\n    TEXT_WRAP_BEHIND_24('\\ufad7'),\n    TEXT_WRAP_FRONT_20('\\ufad8'),\n    TEXT_WRAP_FRONT_24('\\ufad9'),\n    TEXT_WRAP_LINE_20('\\ufada'),\n    TEXT_WRAP_LINE_24('\\ufadb'),\n    TEXT_WRAP_SQUARE_20('\\ufadc'),\n    TEXT_WRAP_SQUARE_24('\\ufadd'),\n    TEXT_WRAP_THROUGH_20('\\ufade'),\n    TEXT_WRAP_THROUGH_24('\\ufadf'),\n    TEXT_WRAP_TIGHT_20('\\ufae0'),\n    TEXT_WRAP_TIGHT_24('\\ufae1'),\n    TEXT_WRAP_TOP_BOTTOM_20('\\ufae2'),\n    TEXT_WRAP_TOP_BOTTOM_24('\\ufae3'),\n    THINKING_20('\\uf81b'),\n    THINKING_24('\\uf81c'),\n    THUMB_DISLIKE_20('\\uf81d'),\n    THUMB_DISLIKE_24('\\uf81e'),\n    THUMB_LIKE_20('\\uf81f'),\n    THUMB_LIKE_24('\\uf820'),\n    TICKET_20('\\uf821'),\n    TICKET_24('\\uf822'),\n    TICKET_DIAGONAL_16('\\ufae4'),\n    TICKET_DIAGONAL_20('\\ufae5'),\n    TICKET_DIAGONAL_24('\\ufae6'),\n    TICKET_DIAGONAL_28('\\ufae7'),\n    TIMELINE_24('\\uf825'),\n    TIMER_10_24('\\uf826'),\n    TIMER_16('\\ufae8'),\n    TIMER_20('\\ufae9'),\n    TIMER_24('\\uf827'),\n    TIMER_2_24('\\uf828'),\n    TIMER_OFF_24('\\uf829'),\n    TIME_AND_WEATHER_24('\\uf823'),\n    TIME_PICKER_24('\\uf824'),\n    TOGGLE_LEFT_16('\\ufaea'),\n    TOGGLE_LEFT_20('\\ufaeb'),\n    TOGGLE_LEFT_24('\\ufaec'),\n    TOGGLE_LEFT_28('\\ufaed'),\n    TOGGLE_LEFT_48('\\ufaee'),\n    TOGGLE_RIGHT_16('\\uf82a'),\n    TOGGLE_RIGHT_20('\\uf82b'),\n    TOGGLE_RIGHT_24('\\uf82c'),\n    TOGGLE_RIGHT_28('\\ufaef'),\n    TOGGLE_RIGHT_48('\\ufaf0'),\n    TOOLBOX_16('\\uf82d'),\n    TOOLBOX_20('\\uf82e'),\n    TOOLBOX_24('\\uf82f'),\n    TOOLBOX_28('\\uf830'),\n    TOP_SPEED_24('\\uf831'),\n    TRANSLATE_16('\\uf832'),\n    TRANSLATE_20('\\uf833'),\n    TRANSLATE_24('\\uf834'),\n    TROPHY_16('\\uf835'),\n    TROPHY_20('\\uf836'),\n    TROPHY_24('\\uf837'),\n    TV_16('\\ufaf1'),\n    TV_20('\\ufaf2'),\n    TV_24('\\ufaf3'),\n    TV_28('\\ufaf4'),\n    TV_48('\\ufaf5'),\n    UNINSTALL_APP_24('\\uf838'),\n    UNLOCK_20('\\uf839'),\n    UNLOCK_24('\\uf83a'),\n    UNLOCK_28('\\uf83b'),\n    UPLOAD_24('\\uf83c'),\n    USB_PORT_20('\\uf83d'),\n    USB_PORT_24('\\uf83e'),\n    USB_STICK_20('\\uf83f'),\n    USB_STICK_24('\\uf840'),\n    VAULT_16('\\uf841'),\n    VAULT_20('\\uf842'),\n    VAULT_24('\\uf843'),\n    VEHICLE_BICYCLE_16('\\ufaf6'),\n    VEHICLE_BICYCLE_20('\\ufaf7'),\n    VEHICLE_BICYCLE_24('\\uf844'),\n    VEHICLE_BUS_16('\\ufaf8'),\n    VEHICLE_BUS_20('\\ufaf9'),\n    VEHICLE_BUS_24('\\uf845'),\n    VEHICLE_CAB_24('\\uf846'),\n    VEHICLE_CAR_16('\\uf847'),\n    VEHICLE_CAR_20('\\uf848'),\n    VEHICLE_CAR_24('\\uf849'),\n    VEHICLE_CAR_28('\\ufafa'),\n    VEHICLE_CAR_48('\\ufafb'),\n    VEHICLE_SHIP_16('\\ufafc'),\n    VEHICLE_SHIP_20('\\ufafd'),\n    VEHICLE_SHIP_24('\\ufafe'),\n    VEHICLE_SUBWAY_16('\\ufaff'),\n    VEHICLE_SUBWAY_20('\\ufb00'),\n    VEHICLE_SUBWAY_24('\\ufb01'),\n    VEHICLE_TRUCK_16('\\ufb02'),\n    VEHICLE_TRUCK_20('\\ufb03'),\n    VEHICLE_TRUCK_24('\\uf84a'),\n    VIDEO_16('\\uf84b'),\n    VIDEO_20('\\uf84c'),\n    VIDEO_24('\\uf84d'),\n    VIDEO_28('\\uf84e'),\n    VIDEO_BACKGROUND_EFFECT_24('\\uf84f'),\n    VIDEO_CLIP_20('\\ufb04'),\n    VIDEO_CLIP_24('\\uf850'),\n    VIDEO_OFF_20('\\uf851'),\n    VIDEO_OFF_24('\\uf852'),\n    VIDEO_OFF_28('\\uf853'),\n    VIDEO_PERSON_24('\\uf854'),\n    VIDEO_PERSON_OFF_24('\\uf855'),\n    VIDEO_PERSON_STAR_24('\\uf856'),\n    VIDEO_PLAY_PAUSE_24('\\uf857'),\n    VIDEO_SECURITY_20('\\uf858'),\n    VIDEO_SECURITY_24('\\uf859'),\n    VIDEO_SWITCH_24('\\uf85a'),\n    VIEW_DESKTOP_20('\\uf85b'),\n    VIEW_DESKTOP_24('\\uf85c'),\n    VIEW_DESKTOP_MOBILE_20('\\uf85d'),\n    VIEW_DESKTOP_MOBILE_24('\\uf85e'),\n    VISUAL_SEARCH_16('\\uf85f'),\n    VISUAL_SEARCH_20('\\uf860'),\n    VISUAL_SEARCH_24('\\uf861'),\n    VOICEMAIL_16('\\uf862'),\n    VOICEMAIL_20('\\uf863'),\n    VOICEMAIL_24('\\uf864'),\n    VOTE_20('\\ufb05'),\n    VOTE_24('\\ufb06'),\n    WALKIE_TALKIE_24('\\uf865'),\n    WALKIE_TALKIE_28('\\uf866'),\n    WALLPAPER_24('\\uf867'),\n    WARNING_16('\\uf868'),\n    WARNING_20('\\uf869'),\n    WARNING_24('\\uf86a'),\n    WEATHER_BLOWING_SNOW_20('\\uf86b'),\n    WEATHER_BLOWING_SNOW_24('\\uf86c'),\n    WEATHER_BLOWING_SNOW_48('\\uf86d'),\n    WEATHER_CLOUDY_20('\\uf86e'),\n    WEATHER_CLOUDY_24('\\uf86f'),\n    WEATHER_CLOUDY_48('\\uf870'),\n    WEATHER_DRIZZLE_20('\\ufb07'),\n    WEATHER_DRIZZLE_24('\\ufb08'),\n    WEATHER_DRIZZLE_48('\\ufb09'),\n    WEATHER_DUSTSTORM_20('\\uf871'),\n    WEATHER_DUSTSTORM_24('\\uf872'),\n    WEATHER_DUSTSTORM_48('\\uf873'),\n    WEATHER_FOG_20('\\uf874'),\n    WEATHER_FOG_24('\\uf875'),\n    WEATHER_FOG_48('\\uf876'),\n    WEATHER_HAIL_DAY_20('\\uf877'),\n    WEATHER_HAIL_DAY_24('\\uf878'),\n    WEATHER_HAIL_DAY_48('\\uf879'),\n    WEATHER_HAIL_NIGHT_20('\\uf87a'),\n    WEATHER_HAIL_NIGHT_24('\\uf87b'),\n    WEATHER_HAIL_NIGHT_48('\\uf87c'),\n    WEATHER_HAZE_20('\\ufb0a'),\n    WEATHER_HAZE_24('\\ufb0b'),\n    WEATHER_HAZE_48('\\ufb0c'),\n    WEATHER_MOON_16('\\ufb0d'),\n    WEATHER_MOON_20('\\uf87d'),\n    WEATHER_MOON_24('\\uf87e'),\n    WEATHER_MOON_28('\\ufb0e'),\n    WEATHER_MOON_48('\\uf87f'),\n    WEATHER_MOON_OFF_16('\\ufb0f'),\n    WEATHER_MOON_OFF_20('\\ufb10'),\n    WEATHER_MOON_OFF_24('\\ufb11'),\n    WEATHER_MOON_OFF_28('\\ufb12'),\n    WEATHER_MOON_OFF_48('\\ufb13'),\n    WEATHER_PARTLY_CLOUDY_DAY_20('\\uf880'),\n    WEATHER_PARTLY_CLOUDY_DAY_24('\\uf881'),\n    WEATHER_PARTLY_CLOUDY_DAY_48('\\uf882'),\n    WEATHER_PARTLY_CLOUDY_NIGHT_20('\\uf883'),\n    WEATHER_PARTLY_CLOUDY_NIGHT_24('\\uf884'),\n    WEATHER_PARTLY_CLOUDY_NIGHT_48('\\uf885'),\n    WEATHER_RAIN_20('\\uf886'),\n    WEATHER_RAIN_24('\\uf887'),\n    WEATHER_RAIN_48('\\uf888'),\n    WEATHER_RAIN_SHOWERS_DAY_20('\\uf889'),\n    WEATHER_RAIN_SHOWERS_DAY_24('\\uf88a'),\n    WEATHER_RAIN_SHOWERS_DAY_48('\\uf88b'),\n    WEATHER_RAIN_SHOWERS_NIGHT_20('\\uf88c'),\n    WEATHER_RAIN_SHOWERS_NIGHT_24('\\uf88d'),\n    WEATHER_RAIN_SHOWERS_NIGHT_48('\\uf88e'),\n    WEATHER_RAIN_SNOW_20('\\uf88f'),\n    WEATHER_RAIN_SNOW_24('\\uf890'),\n    WEATHER_RAIN_SNOW_48('\\uf891'),\n    WEATHER_SNOWFLAKE_20('\\uf89b'),\n    WEATHER_SNOWFLAKE_24('\\uf89c'),\n    WEATHER_SNOWFLAKE_48('\\uf89d'),\n    WEATHER_SNOW_20('\\uf892'),\n    WEATHER_SNOW_24('\\uf893'),\n    WEATHER_SNOW_48('\\uf894'),\n    WEATHER_SNOW_SHOWER_DAY_20('\\uf895'),\n    WEATHER_SNOW_SHOWER_DAY_24('\\uf896'),\n    WEATHER_SNOW_SHOWER_DAY_48('\\uf897'),\n    WEATHER_SNOW_SHOWER_NIGHT_20('\\uf898'),\n    WEATHER_SNOW_SHOWER_NIGHT_24('\\uf899'),\n    WEATHER_SNOW_SHOWER_NIGHT_48('\\uf89a'),\n    WEATHER_SQUALLS_20('\\uf89e'),\n    WEATHER_SQUALLS_24('\\uf89f'),\n    WEATHER_SQUALLS_48('\\uf8a0'),\n    WEATHER_SUNNY_20('\\uf8a1'),\n    WEATHER_SUNNY_24('\\uf8a2'),\n    WEATHER_SUNNY_48('\\uf8a3'),\n    WEATHER_SUNNY_HIGH_20('\\ufb14'),\n    WEATHER_SUNNY_HIGH_24('\\ufb15'),\n    WEATHER_SUNNY_HIGH_48('\\ufb16'),\n    WEATHER_SUNNY_LOW_20('\\ufb17'),\n    WEATHER_SUNNY_LOW_24('\\ufb18'),\n    WEATHER_SUNNY_LOW_48('\\ufb19'),\n    WEATHER_THUNDERSTORM_20('\\uf8a4'),\n    WEATHER_THUNDERSTORM_24('\\uf8a5'),\n    WEATHER_THUNDERSTORM_48('\\uf8a6'),\n    WEB_ASSET_24('\\uf8a7'),\n    WEEKEND_12('\\uf8a8'),\n    WEEKEND_24('\\uf8a9'),\n    WHITEBOARD_20('\\uf8aa'),\n    WHITEBOARD_24('\\uf8ab'),\n    WIFI_1_20('\\uf8ac'),\n    WIFI_1_24('\\uf8ad'),\n    WIFI_2_20('\\uf8ae'),\n    WIFI_2_24('\\uf8af'),\n    WIFI_3_20('\\uf8b0'),\n    WIFI_3_24('\\uf8b1'),\n    WIFI_4_20('\\uf8b2'),\n    WIFI_4_24('\\uf8b3'),\n    WIFI_PROTECTED_24('\\uf8b4'),\n    WINDOW_20('\\uf8b5'),\n    WINDOW_AD_20('\\uf8b6'),\n    WINDOW_DEV_TOOLS_16('\\uf8b7'),\n    WINDOW_DEV_TOOLS_20('\\uf8b8'),\n    WINDOW_DEV_TOOLS_24('\\uf8b9'),\n    WINDOW_HORIZONTAL_20('\\ufb1a'),\n    WINDOW_INPRIVATE_20('\\uf8ba'),\n    WINDOW_INPRIVATE_ACCOUNT_20('\\uf8bb'),\n    WINDOW_MULTIPLE_20('\\uf8bc'),\n    WINDOW_NEW_16('\\ufb1b'),\n    WINDOW_NEW_20('\\uf8bd'),\n    WINDOW_NEW_24('\\ufb1c'),\n    WINDOW_SHIELD_16('\\uf8be'),\n    WINDOW_SHIELD_20('\\uf8bf'),\n    WINDOW_SHIELD_24('\\uf8c0'),\n    WINDOW_VERTICAL_20('\\ufb1d'),\n    WRENCH_16('\\ufb1e'),\n    WRENCH_20('\\ufb1f'),\n    WRENCH_24('\\uf8c1'),\n    XBOX_CONSOLE_20('\\uf8c2'),\n    XBOX_CONSOLE_24('\\uf8c3'),\n    ZOOM_IN_20('\\uf8c4'),\n    ZOOM_IN_24('\\uf8c5'),\n    ZOOM_OUT_20('\\uf8c6'),\n    ZOOM_OUT_24('\\uf8c7');\n\n    public static FluentUiRegularMZ findByDescription(String description) {\n        for (FluentUiRegularMZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    FluentUiRegularMZ(int code) {\n        this.description = \"fltrmz-\" + name().toLowerCase().replace(\"_\", \"-\");\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/org/kordamp/ikonli/fluentui/FluentUiRegularMZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fluentui;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FluentUiRegularMZIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fluentui/1.1.74/fonts/FluentSystemIcons-Regular.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"fltrmz-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return FluentUiRegularMZ.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"FluentSystemIcons-Regular\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/java/org/kordamp/ikonli/fluentui/FluentUiRegularMZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fluentui;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class FluentUiRegularMZIkonProvider implements IkonProvider<FluentUiRegularMZ> {\n    @Override\n    public Class<FluentUiRegularMZ> getIkon() {\n        return FluentUiRegularMZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/resources/META-INF/resources/fluentui/1.1.74/css/FluentSystemIcons-Filled.css",
    "content": "@font-face {\n    font-family: 'FluentSystemIcons-Filled';\n    src: url('../fonts/FluentSystemIcons-Filled.ttf') format('truetype');\n    font-weight: normal;\n    font-style: normal;\n    font-display: block;\n}\n\n.fltf:before {\n    /* use !important to prevent issues with browser extensions that change fonts */\n    font-family: 'FluentSystemIcons-Filled' !important;\n    speak: never;\n    font-style: normal;\n    font-weight: normal;\n    font-variant: normal;\n    text-transform: none;\n    line-height: 1;\n\n    /* Better Font Rendering =========== */\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n}\n\n/* Icons */\n.fltf-access-time-24:before {\n    content: \"\\f101\";\n}\n\n.fltf-accessibility-16:before {\n    content: \"\\f102\";\n}\n\n.fltf-accessibility-20:before {\n    content: \"\\f103\";\n}\n\n.fltf-accessibility-24:before {\n    content: \"\\f104\";\n}\n\n.fltf-accessibility-28:before {\n    content: \"\\f105\";\n}\n\n.fltf-activity-24:before {\n    content: \"\\f106\";\n}\n\n.fltf-add-12:before {\n    content: \"\\f107\";\n}\n\n.fltf-add-16:before {\n    content: \"\\f108\";\n}\n\n.fltf-add-20:before {\n    content: \"\\f109\";\n}\n\n.fltf-add-24:before {\n    content: \"\\f10a\";\n}\n\n.fltf-add-28:before {\n    content: \"\\f10b\";\n}\n\n.fltf-add-circle-20:before {\n    content: \"\\f10c\";\n}\n\n.fltf-add-circle-24:before {\n    content: \"\\f10d\";\n}\n\n.fltf-add-circle-28:before {\n    content: \"\\f10e\";\n}\n\n.fltf-airplane-20:before {\n    content: \"\\f10f\";\n}\n\n.fltf-airplane-24:before {\n    content: \"\\f110\";\n}\n\n.fltf-airplane-take-off-16:before {\n    content: \"\\f111\";\n}\n\n.fltf-airplane-take-off-20:before {\n    content: \"\\f112\";\n}\n\n.fltf-airplane-take-off-24:before {\n    content: \"\\f113\";\n}\n\n.fltf-alert-20:before {\n    content: \"\\f114\";\n}\n\n.fltf-alert-24:before {\n    content: \"\\f115\";\n}\n\n.fltf-alert-28:before {\n    content: \"\\f116\";\n}\n\n.fltf-alert-off-16:before {\n    content: \"\\f117\";\n}\n\n.fltf-alert-off-20:before {\n    content: \"\\f118\";\n}\n\n.fltf-alert-off-24:before {\n    content: \"\\f119\";\n}\n\n.fltf-alert-off-28:before {\n    content: \"\\f11a\";\n}\n\n.fltf-alert-on-24:before {\n    content: \"\\f11b\";\n}\n\n.fltf-alert-snooze-20:before {\n    content: \"\\f11c\";\n}\n\n.fltf-alert-snooze-24:before {\n    content: \"\\f11d\";\n}\n\n.fltf-alert-urgent-20:before {\n    content: \"\\f11e\";\n}\n\n.fltf-alert-urgent-24:before {\n    content: \"\\f11f\";\n}\n\n.fltf-animal-dog-20:before {\n    content: \"\\f120\";\n}\n\n.fltf-animal-dog-24:before {\n    content: \"\\f121\";\n}\n\n.fltf-app-folder-20:before {\n    content: \"\\f122\";\n}\n\n.fltf-app-folder-24:before {\n    content: \"\\f123\";\n}\n\n.fltf-app-generic-24:before {\n    content: \"\\f124\";\n}\n\n.fltf-app-recent-24:before {\n    content: \"\\f125\";\n}\n\n.fltf-app-span-16:before {\n    content: \"\\f126\";\n}\n\n.fltf-app-span-20:before {\n    content: \"\\f127\";\n}\n\n.fltf-app-span-24:before {\n    content: \"\\f128\";\n}\n\n.fltf-app-span-28:before {\n    content: \"\\f129\";\n}\n\n.fltf-app-store-24:before {\n    content: \"\\f12a\";\n}\n\n.fltf-app-title-24:before {\n    content: \"\\f12b\";\n}\n\n.fltf-app-unspan-16:before {\n    content: \"\\f12c\";\n}\n\n.fltf-app-unspan-20:before {\n    content: \"\\f12d\";\n}\n\n.fltf-app-unspan-24:before {\n    content: \"\\f12e\";\n}\n\n.fltf-app-unspan-28:before {\n    content: \"\\f12f\";\n}\n\n.fltf-approvals-app-24:before {\n    content: \"\\f130\";\n}\n\n.fltf-approvals-app-28:before {\n    content: \"\\f131\";\n}\n\n.fltf-apps-16:before {\n    content: \"\\f132\";\n}\n\n.fltf-apps-20:before {\n    content: \"\\f133\";\n}\n\n.fltf-apps-24:before {\n    content: \"\\f134\";\n}\n\n.fltf-apps-28:before {\n    content: \"\\f135\";\n}\n\n.fltf-apps-add-in-20:before {\n    content: \"\\f136\";\n}\n\n.fltf-apps-add-in-24:before {\n    content: \"\\f137\";\n}\n\n.fltf-apps-list-24:before {\n    content: \"\\f138\";\n}\n\n.fltf-archive-20:before {\n    content: \"\\f139\";\n}\n\n.fltf-archive-24:before {\n    content: \"\\f13a\";\n}\n\n.fltf-archive-28:before {\n    content: \"\\f13b\";\n}\n\n.fltf-archive-48:before {\n    content: \"\\f13c\";\n}\n\n.fltf-arrow-clockwise-20:before {\n    content: \"\\f13d\";\n}\n\n.fltf-arrow-clockwise-24:before {\n    content: \"\\f13e\";\n}\n\n.fltf-arrow-counterclockwise-20:before {\n    content: \"\\f13f\";\n}\n\n.fltf-arrow-counterclockwise-24:before {\n    content: \"\\f140\";\n}\n\n.fltf-arrow-curve-down-left-20:before {\n    content: \"\\f141\";\n}\n\n.fltf-arrow-curve-down-right-20:before {\n    content: \"\\f142\";\n}\n\n.fltf-arrow-curve-right-20:before {\n    content: \"\\f143\";\n}\n\n.fltf-arrow-curve-right-24:before {\n    content: \"\\f144\";\n}\n\n.fltf-arrow-curve-up-left-20:before {\n    content: \"\\f145\";\n}\n\n.fltf-arrow-curve-up-right-20:before {\n    content: \"\\f146\";\n}\n\n.fltf-arrow-down-16:before {\n    content: \"\\f147\";\n}\n\n.fltf-arrow-down-20:before {\n    content: \"\\f148\";\n}\n\n.fltf-arrow-down-24:before {\n    content: \"\\f149\";\n}\n\n.fltf-arrow-down-28:before {\n    content: \"\\f14a\";\n}\n\n.fltf-arrow-down-left-24:before {\n    content: \"\\f14b\";\n}\n\n.fltf-arrow-down-right-circle-16:before {\n    content: \"\\f14c\";\n}\n\n.fltf-arrow-down-right-circle-24:before {\n    content: \"\\f14d\";\n}\n\n.fltf-arrow-down-square-24:before {\n    content: \"\\f14e\";\n}\n\n.fltf-arrow-download-16:before {\n    content: \"\\f14f\";\n}\n\n.fltf-arrow-download-20:before {\n    content: \"\\f150\";\n}\n\n.fltf-arrow-download-24:before {\n    content: \"\\f151\";\n}\n\n.fltf-arrow-download-48:before {\n    content: \"\\f152\";\n}\n\n.fltf-arrow-enter-24:before {\n    content: \"\\f153\";\n}\n\n.fltf-arrow-expand-24:before {\n    content: \"\\f154\";\n}\n\n.fltf-arrow-export-20:before {\n    content: \"\\f155\";\n}\n\n.fltf-arrow-forward-16:before {\n    content: \"\\f156\";\n}\n\n.fltf-arrow-forward-20:before {\n    content: \"\\f157\";\n}\n\n.fltf-arrow-forward-24:before {\n    content: \"\\f158\";\n}\n\n.fltf-arrow-import-20:before {\n    content: \"\\f159\";\n}\n\n.fltf-arrow-import-24:before {\n    content: \"\\f15a\";\n}\n\n.fltf-arrow-left-20:before {\n    content: \"\\f15b\";\n}\n\n.fltf-arrow-left-24:before {\n    content: \"\\f15c\";\n}\n\n.fltf-arrow-left-28:before {\n    content: \"\\f15d\";\n}\n\n.fltf-arrow-maximize-16:before {\n    content: \"\\f15e\";\n}\n\n.fltf-arrow-maximize-20:before {\n    content: \"\\f15f\";\n}\n\n.fltf-arrow-maximize-24:before {\n    content: \"\\f160\";\n}\n\n.fltf-arrow-maximize-28:before {\n    content: \"\\f161\";\n}\n\n.fltf-arrow-maximize-vertical-20:before {\n    content: \"\\f162\";\n}\n\n.fltf-arrow-maximize-vertical-24:before {\n    content: \"\\f163\";\n}\n\n.fltf-arrow-minimize-16:before {\n    content: \"\\f164\";\n}\n\n.fltf-arrow-minimize-20:before {\n    content: \"\\f165\";\n}\n\n.fltf-arrow-minimize-24:before {\n    content: \"\\f166\";\n}\n\n.fltf-arrow-minimize-28:before {\n    content: \"\\f167\";\n}\n\n.fltf-arrow-minimize-vertical-24:before {\n    content: \"\\f168\";\n}\n\n.fltf-arrow-move-24:before {\n    content: \"\\f169\";\n}\n\n.fltf-arrow-next-20:before {\n    content: \"\\f16a\";\n}\n\n.fltf-arrow-next-24:before {\n    content: \"\\f16b\";\n}\n\n.fltf-arrow-previous-20:before {\n    content: \"\\f16c\";\n}\n\n.fltf-arrow-previous-24:before {\n    content: \"\\f16d\";\n}\n\n.fltf-arrow-redo-20:before {\n    content: \"\\f16e\";\n}\n\n.fltf-arrow-redo-24:before {\n    content: \"\\f16f\";\n}\n\n.fltf-arrow-repeat-all-16:before {\n    content: \"\\f170\";\n}\n\n.fltf-arrow-repeat-all-20:before {\n    content: \"\\f171\";\n}\n\n.fltf-arrow-repeat-all-24:before {\n    content: \"\\f172\";\n}\n\n.fltf-arrow-repeat-all-off-16:before {\n    content: \"\\f173\";\n}\n\n.fltf-arrow-repeat-all-off-20:before {\n    content: \"\\f174\";\n}\n\n.fltf-arrow-repeat-all-off-24:before {\n    content: \"\\f175\";\n}\n\n.fltf-arrow-reply-16:before {\n    content: \"\\f176\";\n}\n\n.fltf-arrow-reply-20:before {\n    content: \"\\f177\";\n}\n\n.fltf-arrow-reply-24:before {\n    content: \"\\f178\";\n}\n\n.fltf-arrow-reply-48:before {\n    content: \"\\f179\";\n}\n\n.fltf-arrow-reply-all-16:before {\n    content: \"\\f17a\";\n}\n\n.fltf-arrow-reply-all-20:before {\n    content: \"\\f17b\";\n}\n\n.fltf-arrow-reply-all-24:before {\n    content: \"\\f17c\";\n}\n\n.fltf-arrow-reply-all-48:before {\n    content: \"\\f17d\";\n}\n\n.fltf-arrow-reply-down-16:before {\n    content: \"\\f17e\";\n}\n\n.fltf-arrow-reply-down-20:before {\n    content: \"\\f17f\";\n}\n\n.fltf-arrow-reply-down-24:before {\n    content: \"\\f180\";\n}\n\n.fltf-arrow-right-20:before {\n    content: \"\\f181\";\n}\n\n.fltf-arrow-right-24:before {\n    content: \"\\f182\";\n}\n\n.fltf-arrow-right-28:before {\n    content: \"\\f183\";\n}\n\n.fltf-arrow-right-circle-24:before {\n    content: \"\\f184\";\n}\n\n.fltf-arrow-rotate-clockwise-20:before {\n    content: \"\\f185\";\n}\n\n.fltf-arrow-rotate-clockwise-24:before {\n    content: \"\\f186\";\n}\n\n.fltf-arrow-rotate-counterclockwise-20:before {\n    content: \"\\f187\";\n}\n\n.fltf-arrow-rotate-counterclockwise-24:before {\n    content: \"\\f188\";\n}\n\n.fltf-arrow-rotate-icon-24:before {\n    content: \"\\f189\";\n}\n\n.fltf-arrow-sort-20:before {\n    content: \"\\f18a\";\n}\n\n.fltf-arrow-sort-24:before {\n    content: \"\\f18b\";\n}\n\n.fltf-arrow-sort-28:before {\n    content: \"\\f18c\";\n}\n\n.fltf-arrow-swap-20:before {\n    content: \"\\f18d\";\n}\n\n.fltf-arrow-swap-24:before {\n    content: \"\\f18e\";\n}\n\n.fltf-arrow-sync-12:before {\n    content: \"\\f18f\";\n}\n\n.fltf-arrow-sync-20:before {\n    content: \"\\f190\";\n}\n\n.fltf-arrow-sync-24:before {\n    content: \"\\f191\";\n}\n\n.fltf-arrow-sync-circle-16:before {\n    content: \"\\f192\";\n}\n\n.fltf-arrow-sync-circle-20:before {\n    content: \"\\f193\";\n}\n\n.fltf-arrow-sync-circle-24:before {\n    content: \"\\f194\";\n}\n\n.fltf-arrow-sync-off-12:before {\n    content: \"\\f195\";\n}\n\n.fltf-arrow-trending-16:before {\n    content: \"\\f196\";\n}\n\n.fltf-arrow-trending-20:before {\n    content: \"\\f197\";\n}\n\n.fltf-arrow-trending-24:before {\n    content: \"\\f198\";\n}\n\n.fltf-arrow-undo-20:before {\n    content: \"\\f199\";\n}\n\n.fltf-arrow-undo-24:before {\n    content: \"\\f19a\";\n}\n\n.fltf-arrow-up-20:before {\n    content: \"\\f19b\";\n}\n\n.fltf-arrow-up-24:before {\n    content: \"\\f19c\";\n}\n\n.fltf-arrow-up-28:before {\n    content: \"\\f19d\";\n}\n\n.fltf-arrow-up-circle-16:before {\n    content: \"\\f19e\";\n}\n\n.fltf-arrow-up-circle-20:before {\n    content: \"\\f19f\";\n}\n\n.fltf-arrow-up-circle-24:before {\n    content: \"\\f1a0\";\n}\n\n.fltf-arrow-up-left-24:before {\n    content: \"\\f1a1\";\n}\n\n.fltf-arrow-up-left-circle-24:before {\n    content: \"\\f1a2\";\n}\n\n.fltf-arrow-up-right-24:before {\n    content: \"\\f1a3\";\n}\n\n.fltf-arrow-upload-20:before {\n    content: \"\\f1a4\";\n}\n\n.fltf-arrow-upload-24:before {\n    content: \"\\f1a5\";\n}\n\n.fltf-arrows-bidirectional-24:before {\n    content: \"\\f1a6\";\n}\n\n.fltf-assignments-24:before {\n    content: \"\\f1a7\";\n}\n\n.fltf-attach-16:before {\n    content: \"\\f1a8\";\n}\n\n.fltf-attach-20:before {\n    content: \"\\f1a9\";\n}\n\n.fltf-attach-24:before {\n    content: \"\\f1aa\";\n}\n\n.fltf-attach-forward-20:before {\n    content: \"\\f1ab\";\n}\n\n.fltf-attach-forward-24:before {\n    content: \"\\f1ac\";\n}\n\n.fltf-attach-with-text-24:before {\n    content: \"\\f1ad\";\n}\n\n.fltf-autocorrect-24:before {\n    content: \"\\f1ae\";\n}\n\n.fltf-autosum-20:before {\n    content: \"\\f1af\";\n}\n\n.fltf-autosum-24:before {\n    content: \"\\f1b0\";\n}\n\n.fltf-backspace-20:before {\n    content: \"\\f1b1\";\n}\n\n.fltf-backspace-24:before {\n    content: \"\\f1b2\";\n}\n\n.fltf-backward-20:before {\n    content: \"\\f1b3\";\n}\n\n.fltf-backward-24:before {\n    content: \"\\f1b4\";\n}\n\n.fltf-badge-24:before {\n    content: \"\\f1b5\";\n}\n\n.fltf-balloon-20:before {\n    content: \"\\f1b6\";\n}\n\n.fltf-balloon-24:before {\n    content: \"\\f1b7\";\n}\n\n.fltf-bank-16:before {\n    content: \"\\f1b8\";\n}\n\n.fltf-bank-20:before {\n    content: \"\\f1b9\";\n}\n\n.fltf-bank-24:before {\n    content: \"\\f1ba\";\n}\n\n.fltf-battery-0-20:before {\n    content: \"\\f1bb\";\n}\n\n.fltf-battery-0-24:before {\n    content: \"\\f1bc\";\n}\n\n.fltf-battery-1-20:before {\n    content: \"\\f1bd\";\n}\n\n.fltf-battery-1-24:before {\n    content: \"\\f1be\";\n}\n\n.fltf-battery-2-20:before {\n    content: \"\\f1bf\";\n}\n\n.fltf-battery-2-24:before {\n    content: \"\\f1c0\";\n}\n\n.fltf-battery-3-20:before {\n    content: \"\\f1c1\";\n}\n\n.fltf-battery-3-24:before {\n    content: \"\\f1c2\";\n}\n\n.fltf-battery-4-20:before {\n    content: \"\\f1c3\";\n}\n\n.fltf-battery-4-24:before {\n    content: \"\\f1c4\";\n}\n\n.fltf-battery-5-20:before {\n    content: \"\\f1c5\";\n}\n\n.fltf-battery-5-24:before {\n    content: \"\\f1c6\";\n}\n\n.fltf-battery-6-20:before {\n    content: \"\\f1c7\";\n}\n\n.fltf-battery-6-24:before {\n    content: \"\\f1c8\";\n}\n\n.fltf-battery-7-20:before {\n    content: \"\\f1c9\";\n}\n\n.fltf-battery-7-24:before {\n    content: \"\\f1ca\";\n}\n\n.fltf-battery-8-20:before {\n    content: \"\\f1cb\";\n}\n\n.fltf-battery-8-24:before {\n    content: \"\\f1cc\";\n}\n\n.fltf-battery-9-20:before {\n    content: \"\\f1cd\";\n}\n\n.fltf-battery-9-24:before {\n    content: \"\\f1ce\";\n}\n\n.fltf-battery-charge-20:before {\n    content: \"\\f1cf\";\n}\n\n.fltf-battery-charge-24:before {\n    content: \"\\f1d0\";\n}\n\n.fltf-battery-full-20:before {\n    content: \"\\f1d1\";\n}\n\n.fltf-battery-full-24:before {\n    content: \"\\f1d2\";\n}\n\n.fltf-battery-saver-20:before {\n    content: \"\\f1d3\";\n}\n\n.fltf-battery-saver-24:before {\n    content: \"\\f1d4\";\n}\n\n.fltf-battery-warning-24:before {\n    content: \"\\f1d5\";\n}\n\n.fltf-beaker-16:before {\n    content: \"\\f1d6\";\n}\n\n.fltf-beaker-20:before {\n    content: \"\\f1d7\";\n}\n\n.fltf-beaker-24:before {\n    content: \"\\f1d8\";\n}\n\n.fltf-bed-20:before {\n    content: \"\\f1d9\";\n}\n\n.fltf-bed-24:before {\n    content: \"\\f1da\";\n}\n\n.fltf-block-16:before {\n    content: \"\\f1db\";\n}\n\n.fltf-block-20:before {\n    content: \"\\f1dc\";\n}\n\n.fltf-block-24:before {\n    content: \"\\f1dd\";\n}\n\n.fltf-bluetooth-20:before {\n    content: \"\\f1de\";\n}\n\n.fltf-bluetooth-24:before {\n    content: \"\\f1df\";\n}\n\n.fltf-bluetooth-connected-24:before {\n    content: \"\\f1e0\";\n}\n\n.fltf-bluetooth-disabled-24:before {\n    content: \"\\f1e1\";\n}\n\n.fltf-bluetooth-searching-24:before {\n    content: \"\\f1e2\";\n}\n\n.fltf-board-24:before {\n    content: \"\\f1e3\";\n}\n\n.fltf-book-formula-compatibility-24:before {\n    content: \"\\f1e4\";\n}\n\n.fltf-book-formula-database-24:before {\n    content: \"\\f1e5\";\n}\n\n.fltf-book-formula-date-24:before {\n    content: \"\\f1e6\";\n}\n\n.fltf-book-formula-engineering-24:before {\n    content: \"\\f1e7\";\n}\n\n.fltf-book-formula-financial-24:before {\n    content: \"\\f1e8\";\n}\n\n.fltf-book-formula-information-24:before {\n    content: \"\\f1e9\";\n}\n\n.fltf-book-formula-logical-24:before {\n    content: \"\\f1ea\";\n}\n\n.fltf-book-formula-lookup-24:before {\n    content: \"\\f1eb\";\n}\n\n.fltf-book-formula-math-24:before {\n    content: \"\\f1ec\";\n}\n\n.fltf-book-formula-recent-24:before {\n    content: \"\\f1ed\";\n}\n\n.fltf-book-formula-statistics-24:before {\n    content: \"\\f1ee\";\n}\n\n.fltf-book-formula-text-24:before {\n    content: \"\\f1ef\";\n}\n\n.fltf-book-globe-24:before {\n    content: \"\\f1f0\";\n}\n\n.fltf-book-number-16:before {\n    content: \"\\f1f1\";\n}\n\n.fltf-book-number-20:before {\n    content: \"\\f1f2\";\n}\n\n.fltf-book-number-24:before {\n    content: \"\\f1f3\";\n}\n\n.fltf-bookmark-16:before {\n    content: \"\\f1f4\";\n}\n\n.fltf-bookmark-20:before {\n    content: \"\\f1f5\";\n}\n\n.fltf-bookmark-24:before {\n    content: \"\\f1f6\";\n}\n\n.fltf-bookmark-28:before {\n    content: \"\\f1f7\";\n}\n\n.fltf-bookmark-off-24:before {\n    content: \"\\f1f8\";\n}\n\n.fltf-bot-24:before {\n    content: \"\\f1f9\";\n}\n\n.fltf-bot-add-24:before {\n    content: \"\\f1fa\";\n}\n\n.fltf-branch-24:before {\n    content: \"\\f1fb\";\n}\n\n.fltf-briefcase-20:before {\n    content: \"\\f1fc\";\n}\n\n.fltf-briefcase-24:before {\n    content: \"\\f1fd\";\n}\n\n.fltf-bring-to-front-20:before {\n    content: \"\\f1fe\";\n}\n\n.fltf-bring-to-front-24:before {\n    content: \"\\f1ff\";\n}\n\n.fltf-broad-activity-feed-24:before {\n    content: \"\\f200\";\n}\n\n.fltf-broom-20:before {\n    content: \"\\f201\";\n}\n\n.fltf-broom-24:before {\n    content: \"\\f202\";\n}\n\n.fltf-bug-report-24:before {\n    content: \"\\f203\";\n}\n\n.fltf-building-1-24:before {\n    content: \"\\f204\";\n}\n\n.fltf-building-24:before {\n    content: \"\\f205\";\n}\n\n.fltf-building-2-16:before {\n    content: \"\\f206\";\n}\n\n.fltf-building-2-20:before {\n    content: \"\\f207\";\n}\n\n.fltf-building-2-24:before {\n    content: \"\\f208\";\n}\n\n.fltf-building-retail-24:before {\n    content: \"\\f209\";\n}\n\n.fltf-calculator-20:before {\n    content: \"\\f20a\";\n}\n\n.fltf-calendar-20:before {\n    content: \"\\f20b\";\n}\n\n.fltf-calendar-24:before {\n    content: \"\\f20c\";\n}\n\n.fltf-calendar-28:before {\n    content: \"\\f20d\";\n}\n\n.fltf-calendar-3-day-20:before {\n    content: \"\\f20e\";\n}\n\n.fltf-calendar-3-day-24:before {\n    content: \"\\f20f\";\n}\n\n.fltf-calendar-3-day-28:before {\n    content: \"\\f210\";\n}\n\n.fltf-calendar-add-20:before {\n    content: \"\\f211\";\n}\n\n.fltf-calendar-add-24:before {\n    content: \"\\f212\";\n}\n\n.fltf-calendar-agenda-20:before {\n    content: \"\\f213\";\n}\n\n.fltf-calendar-agenda-24:before {\n    content: \"\\f214\";\n}\n\n.fltf-calendar-agenda-28:before {\n    content: \"\\f215\";\n}\n\n.fltf-calendar-arrow-right-20:before {\n    content: \"\\f216\";\n}\n\n.fltf-calendar-assistant-20:before {\n    content: \"\\f217\";\n}\n\n.fltf-calendar-assistant-24:before {\n    content: \"\\f218\";\n}\n\n.fltf-calendar-cancel-20:before {\n    content: \"\\f219\";\n}\n\n.fltf-calendar-cancel-24:before {\n    content: \"\\f21a\";\n}\n\n.fltf-calendar-checkmark-16:before {\n    content: \"\\f21b\";\n}\n\n.fltf-calendar-checkmark-20:before {\n    content: \"\\f21c\";\n}\n\n.fltf-calendar-clock-20:before {\n    content: \"\\f21d\";\n}\n\n.fltf-calendar-clock-24:before {\n    content: \"\\f21e\";\n}\n\n.fltf-calendar-date-20:before {\n    content: \"\\f21f\";\n}\n\n.fltf-calendar-date-24:before {\n    content: \"\\f220\";\n}\n\n.fltf-calendar-date-28:before {\n    content: \"\\f221\";\n}\n\n.fltf-calendar-day-20:before {\n    content: \"\\f222\";\n}\n\n.fltf-calendar-day-24:before {\n    content: \"\\f223\";\n}\n\n.fltf-calendar-day-28:before {\n    content: \"\\f224\";\n}\n\n.fltf-calendar-empty-16:before {\n    content: \"\\f225\";\n}\n\n.fltf-calendar-empty-20:before {\n    content: \"\\f226\";\n}\n\n.fltf-calendar-empty-24:before {\n    content: \"\\f227\";\n}\n\n.fltf-calendar-empty-28:before {\n    content: \"\\f228\";\n}\n\n.fltf-calendar-later-24:before {\n    content: \"\\f229\";\n}\n\n.fltf-calendar-month-20:before {\n    content: \"\\f22a\";\n}\n\n.fltf-calendar-month-24:before {\n    content: \"\\f22b\";\n}\n\n.fltf-calendar-month-28:before {\n    content: \"\\f22c\";\n}\n\n.fltf-calendar-multiple-20:before {\n    content: \"\\f22d\";\n}\n\n.fltf-calendar-multiple-24:before {\n    content: \"\\f22e\";\n}\n\n.fltf-calendar-overdue-24:before {\n    content: \"\\f22f\";\n}\n\n.fltf-calendar-person-20:before {\n    content: \"\\f230\";\n}\n\n.fltf-calendar-reply-16:before {\n    content: \"\\f231\";\n}\n\n.fltf-calendar-reply-20:before {\n    content: \"\\f232\";\n}\n\n.fltf-calendar-reply-24:before {\n    content: \"\\f233\";\n}\n\n.fltf-calendar-reply-28:before {\n    content: \"\\f234\";\n}\n\n.fltf-calendar-settings-20:before {\n    content: \"\\f235\";\n}\n\n.fltf-calendar-star-20:before {\n    content: \"\\f236\";\n}\n\n.fltf-calendar-star-24:before {\n    content: \"\\f237\";\n}\n\n.fltf-calendar-sync-16:before {\n    content: \"\\f238\";\n}\n\n.fltf-calendar-sync-20:before {\n    content: \"\\f239\";\n}\n\n.fltf-calendar-sync-24:before {\n    content: \"\\f23a\";\n}\n\n.fltf-calendar-today-16:before {\n    content: \"\\f23b\";\n}\n\n.fltf-calendar-today-20:before {\n    content: \"\\f23c\";\n}\n\n.fltf-calendar-today-24:before {\n    content: \"\\f23d\";\n}\n\n.fltf-calendar-today-28:before {\n    content: \"\\f23e\";\n}\n\n.fltf-calendar-week-numbers-24:before {\n    content: \"\\f23f\";\n}\n\n.fltf-calendar-week-start-20:before {\n    content: \"\\f240\";\n}\n\n.fltf-calendar-week-start-24:before {\n    content: \"\\f241\";\n}\n\n.fltf-calendar-week-start-28:before {\n    content: \"\\f242\";\n}\n\n.fltf-calendar-work-week-16:before {\n    content: \"\\f243\";\n}\n\n.fltf-calendar-work-week-20:before {\n    content: \"\\f244\";\n}\n\n.fltf-calendar-work-week-24:before {\n    content: \"\\f245\";\n}\n\n.fltf-call-add-24:before {\n    content: \"\\f246\";\n}\n\n.fltf-call-end-20:before {\n    content: \"\\f247\";\n}\n\n.fltf-call-end-24:before {\n    content: \"\\f248\";\n}\n\n.fltf-call-end-28:before {\n    content: \"\\f249\";\n}\n\n.fltf-call-forward-24:before {\n    content: \"\\f24a\";\n}\n\n.fltf-call-inbound-16:before {\n    content: \"\\f24b\";\n}\n\n.fltf-call-inbound-24:before {\n    content: \"\\f24c\";\n}\n\n.fltf-call-missed-16:before {\n    content: \"\\f24d\";\n}\n\n.fltf-call-missed-24:before {\n    content: \"\\f24e\";\n}\n\n.fltf-call-outbound-16:before {\n    content: \"\\f24f\";\n}\n\n.fltf-call-outbound-24:before {\n    content: \"\\f250\";\n}\n\n.fltf-call-park-24:before {\n    content: \"\\f251\";\n}\n\n.fltf-calligraphy-pen-20:before {\n    content: \"\\f252\";\n}\n\n.fltf-calligraphy-pen-24:before {\n    content: \"\\f253\";\n}\n\n.fltf-camera-20:before {\n    content: \"\\f254\";\n}\n\n.fltf-camera-24:before {\n    content: \"\\f255\";\n}\n\n.fltf-camera-28:before {\n    content: \"\\f256\";\n}\n\n.fltf-camera-add-20:before {\n    content: \"\\f257\";\n}\n\n.fltf-camera-add-24:before {\n    content: \"\\f258\";\n}\n\n.fltf-camera-add-48:before {\n    content: \"\\f259\";\n}\n\n.fltf-camera-switch-24:before {\n    content: \"\\f25a\";\n}\n\n.fltf-caret-12:before {\n    content: \"\\f25b\";\n}\n\n.fltf-caret-16:before {\n    content: \"\\f25c\";\n}\n\n.fltf-caret-20:before {\n    content: \"\\f25d\";\n}\n\n.fltf-caret-24:before {\n    content: \"\\f25e\";\n}\n\n.fltf-caret-down-12:before {\n    content: \"\\f25f\";\n}\n\n.fltf-caret-down-16:before {\n    content: \"\\f260\";\n}\n\n.fltf-caret-down-20:before {\n    content: \"\\f261\";\n}\n\n.fltf-caret-down-24:before {\n    content: \"\\f262\";\n}\n\n.fltf-caret-left-12:before {\n    content: \"\\f263\";\n}\n\n.fltf-caret-left-16:before {\n    content: \"\\f264\";\n}\n\n.fltf-caret-left-20:before {\n    content: \"\\f265\";\n}\n\n.fltf-caret-left-24:before {\n    content: \"\\f266\";\n}\n\n.fltf-caret-right-12:before {\n    content: \"\\f267\";\n}\n\n.fltf-caret-right-16:before {\n    content: \"\\f268\";\n}\n\n.fltf-caret-right-20:before {\n    content: \"\\f269\";\n}\n\n.fltf-caret-right-24:before {\n    content: \"\\f26a\";\n}\n\n.fltf-cart-24:before {\n    content: \"\\f26b\";\n}\n\n.fltf-cast-20:before {\n    content: \"\\f26c\";\n}\n\n.fltf-cast-24:before {\n    content: \"\\f26d\";\n}\n\n.fltf-cast-28:before {\n    content: \"\\f26e\";\n}\n\n.fltf-cellular-3g-24:before {\n    content: \"\\f26f\";\n}\n\n.fltf-cellular-4g-24:before {\n    content: \"\\f270\";\n}\n\n.fltf-cellular-data-1-20:before {\n    content: \"\\f271\";\n}\n\n.fltf-cellular-data-1-24:before {\n    content: \"\\f272\";\n}\n\n.fltf-cellular-data-2-20:before {\n    content: \"\\f273\";\n}\n\n.fltf-cellular-data-2-24:before {\n    content: \"\\f274\";\n}\n\n.fltf-cellular-data-3-20:before {\n    content: \"\\f275\";\n}\n\n.fltf-cellular-data-3-24:before {\n    content: \"\\f276\";\n}\n\n.fltf-cellular-data-4-20:before {\n    content: \"\\f277\";\n}\n\n.fltf-cellular-data-4-24:before {\n    content: \"\\f278\";\n}\n\n.fltf-cellular-data-5-20:before {\n    content: \"\\f279\";\n}\n\n.fltf-cellular-data-5-24:before {\n    content: \"\\f27a\";\n}\n\n.fltf-cellular-data-off-24:before {\n    content: \"\\f27b\";\n}\n\n.fltf-cellular-off-24:before {\n    content: \"\\f27c\";\n}\n\n.fltf-cellular-unavailable-24:before {\n    content: \"\\f27d\";\n}\n\n.fltf-certificate-20:before {\n    content: \"\\f27e\";\n}\n\n.fltf-certificate-24:before {\n    content: \"\\f27f\";\n}\n\n.fltf-channel-16:before {\n    content: \"\\f280\";\n}\n\n.fltf-channel-20:before {\n    content: \"\\f281\";\n}\n\n.fltf-channel-24:before {\n    content: \"\\f282\";\n}\n\n.fltf-channel-follow-24:before {\n    content: \"\\f283\";\n}\n\n.fltf-channel-notifications-24:before {\n    content: \"\\f284\";\n}\n\n.fltf-channel-unfollow-24:before {\n    content: \"\\f285\";\n}\n\n.fltf-chat-20:before {\n    content: \"\\f286\";\n}\n\n.fltf-chat-24:before {\n    content: \"\\f287\";\n}\n\n.fltf-chat-28:before {\n    content: \"\\f288\";\n}\n\n.fltf-chat-bubbles-question-24:before {\n    content: \"\\f289\";\n}\n\n.fltf-chat-help-24:before {\n    content: \"\\f28a\";\n}\n\n.fltf-chat-off-24:before {\n    content: \"\\f28b\";\n}\n\n.fltf-chat-warning-24:before {\n    content: \"\\f28c\";\n}\n\n.fltf-checkbox-checked-20:before {\n    content: \"\\f28d\";\n}\n\n.fltf-checkbox-checked-24:before {\n    content: \"\\f28e\";\n}\n\n.fltf-checkbox-unchecked-12:before {\n    content: \"\\f28f\";\n}\n\n.fltf-checkbox-unchecked-16:before {\n    content: \"\\f290\";\n}\n\n.fltf-checkbox-unchecked-20:before {\n    content: \"\\f291\";\n}\n\n.fltf-checkbox-unchecked-24:before {\n    content: \"\\f292\";\n}\n\n.fltf-checkmark-12:before {\n    content: \"\\f293\";\n}\n\n.fltf-checkmark-20:before {\n    content: \"\\f294\";\n}\n\n.fltf-checkmark-24:before {\n    content: \"\\f295\";\n}\n\n.fltf-checkmark-28:before {\n    content: \"\\f296\";\n}\n\n.fltf-checkmark-circle-16:before {\n    content: \"\\f297\";\n}\n\n.fltf-checkmark-circle-20:before {\n    content: \"\\f298\";\n}\n\n.fltf-checkmark-circle-24:before {\n    content: \"\\f299\";\n}\n\n.fltf-checkmark-circle-48:before {\n    content: \"\\f29a\";\n}\n\n.fltf-checkmark-lock-16:before {\n    content: \"\\f29b\";\n}\n\n.fltf-checkmark-lock-20:before {\n    content: \"\\f29c\";\n}\n\n.fltf-checkmark-lock-24:before {\n    content: \"\\f29d\";\n}\n\n.fltf-checkmark-square-24:before {\n    content: \"\\f29e\";\n}\n\n.fltf-checkmark-underline-circle-16:before {\n    content: \"\\f29f\";\n}\n\n.fltf-checkmark-underline-circle-20:before {\n    content: \"\\f2a0\";\n}\n\n.fltf-chevron-down-12:before {\n    content: \"\\f2a1\";\n}\n\n.fltf-chevron-down-16:before {\n    content: \"\\f2a2\";\n}\n\n.fltf-chevron-down-20:before {\n    content: \"\\f2a3\";\n}\n\n.fltf-chevron-down-24:before {\n    content: \"\\f2a4\";\n}\n\n.fltf-chevron-down-28:before {\n    content: \"\\f2a5\";\n}\n\n.fltf-chevron-down-48:before {\n    content: \"\\f2a6\";\n}\n\n.fltf-chevron-down-circle-24:before {\n    content: \"\\f2a7\";\n}\n\n.fltf-chevron-left-12:before {\n    content: \"\\f2a8\";\n}\n\n.fltf-chevron-left-16:before {\n    content: \"\\f2a9\";\n}\n\n.fltf-chevron-left-20:before {\n    content: \"\\f2aa\";\n}\n\n.fltf-chevron-left-24:before {\n    content: \"\\f2ab\";\n}\n\n.fltf-chevron-left-28:before {\n    content: \"\\f2ac\";\n}\n\n.fltf-chevron-left-48:before {\n    content: \"\\f2ad\";\n}\n\n.fltf-chevron-right-12:before {\n    content: \"\\f2ae\";\n}\n\n.fltf-chevron-right-16:before {\n    content: \"\\f2af\";\n}\n\n.fltf-chevron-right-20:before {\n    content: \"\\f2b0\";\n}\n\n.fltf-chevron-right-24:before {\n    content: \"\\f2b1\";\n}\n\n.fltf-chevron-right-28:before {\n    content: \"\\f2b2\";\n}\n\n.fltf-chevron-right-48:before {\n    content: \"\\f2b3\";\n}\n\n.fltf-chevron-up-12:before {\n    content: \"\\f2b4\";\n}\n\n.fltf-chevron-up-16:before {\n    content: \"\\f2b5\";\n}\n\n.fltf-chevron-up-20:before {\n    content: \"\\f2b6\";\n}\n\n.fltf-chevron-up-24:before {\n    content: \"\\f2b7\";\n}\n\n.fltf-chevron-up-28:before {\n    content: \"\\f2b8\";\n}\n\n.fltf-chevron-up-48:before {\n    content: \"\\f2b9\";\n}\n\n.fltf-circle-16:before {\n    content: \"\\f2ba\";\n}\n\n.fltf-circle-20:before {\n    content: \"\\f2bb\";\n}\n\n.fltf-circle-24:before {\n    content: \"\\f2bc\";\n}\n\n.fltf-circle-half-fill-20:before {\n    content: \"\\f2bd\";\n}\n\n.fltf-circle-half-fill-24:before {\n    content: \"\\f2be\";\n}\n\n.fltf-circle-line-24:before {\n    content: \"\\f2bf\";\n}\n\n.fltf-circle-small-24:before {\n    content: \"\\f2c0\";\n}\n\n.fltf-city-16:before {\n    content: \"\\f2c1\";\n}\n\n.fltf-city-20:before {\n    content: \"\\f2c2\";\n}\n\n.fltf-city-24:before {\n    content: \"\\f2c3\";\n}\n\n.fltf-class-24:before {\n    content: \"\\f2c4\";\n}\n\n.fltf-classification-16:before {\n    content: \"\\f2c5\";\n}\n\n.fltf-classification-20:before {\n    content: \"\\f2c6\";\n}\n\n.fltf-classification-24:before {\n    content: \"\\f2c7\";\n}\n\n.fltf-clear-formatting-24:before {\n    content: \"\\f2c8\";\n}\n\n.fltf-clipboard-20:before {\n    content: \"\\f2c9\";\n}\n\n.fltf-clipboard-24:before {\n    content: \"\\f2ca\";\n}\n\n.fltf-clipboard-code-16:before {\n    content: \"\\f2cb\";\n}\n\n.fltf-clipboard-code-20:before {\n    content: \"\\f2cc\";\n}\n\n.fltf-clipboard-code-24:before {\n    content: \"\\f2cd\";\n}\n\n.fltf-clipboard-letter-16:before {\n    content: \"\\f2ce\";\n}\n\n.fltf-clipboard-letter-20:before {\n    content: \"\\f2cf\";\n}\n\n.fltf-clipboard-letter-24:before {\n    content: \"\\f2d0\";\n}\n\n.fltf-clipboard-link-16:before {\n    content: \"\\f2d1\";\n}\n\n.fltf-clipboard-link-20:before {\n    content: \"\\f2d2\";\n}\n\n.fltf-clipboard-link-24:before {\n    content: \"\\f2d3\";\n}\n\n.fltf-clipboard-more-24:before {\n    content: \"\\f2d4\";\n}\n\n.fltf-clipboard-paste-20:before {\n    content: \"\\f2d5\";\n}\n\n.fltf-clipboard-paste-24:before {\n    content: \"\\f2d6\";\n}\n\n.fltf-clipboard-search-20:before {\n    content: \"\\f2d7\";\n}\n\n.fltf-clipboard-search-24:before {\n    content: \"\\f2d8\";\n}\n\n.fltf-clipboard-text-20:before {\n    content: \"\\f2d9\";\n}\n\n.fltf-clipboard-text-24:before {\n    content: \"\\f2da\";\n}\n\n.fltf-clock-12:before {\n    content: \"\\f2db\";\n}\n\n.fltf-clock-16:before {\n    content: \"\\f2dc\";\n}\n\n.fltf-clock-20:before {\n    content: \"\\f2dd\";\n}\n\n.fltf-clock-24:before {\n    content: \"\\f2de\";\n}\n\n.fltf-clock-28:before {\n    content: \"\\f2df\";\n}\n\n.fltf-clock-48:before {\n    content: \"\\f2e0\";\n}\n\n.fltf-clock-alarm-20:before {\n    content: \"\\f2e1\";\n}\n\n.fltf-clock-alarm-24:before {\n    content: \"\\f2e2\";\n}\n\n.fltf-closed-caption-24:before {\n    content: \"\\f2e3\";\n}\n\n.fltf-cloud-20:before {\n    content: \"\\f2e4\";\n}\n\n.fltf-cloud-24:before {\n    content: \"\\f2e5\";\n}\n\n.fltf-cloud-48:before {\n    content: \"\\f2e6\";\n}\n\n.fltf-cloud-backup-24:before {\n    content: \"\\f2e7\";\n}\n\n.fltf-cloud-backup-48:before {\n    content: \"\\f2e8\";\n}\n\n.fltf-cloud-download-24:before {\n    content: \"\\f2e9\";\n}\n\n.fltf-cloud-off-24:before {\n    content: \"\\f2ea\";\n}\n\n.fltf-cloud-off-48:before {\n    content: \"\\f2eb\";\n}\n\n.fltf-cloud-offline-24:before {\n    content: \"\\f2ec\";\n}\n\n.fltf-cloud-sync-complete-24:before {\n    content: \"\\f2ed\";\n}\n\n.fltf-cloud-sync-complete-48:before {\n    content: \"\\f2ee\";\n}\n\n.fltf-code-20:before {\n    content: \"\\f2ef\";\n}\n\n.fltf-code-24:before {\n    content: \"\\f2f0\";\n}\n\n.fltf-collections-20:before {\n    content: \"\\f2f1\";\n}\n\n.fltf-collections-24:before {\n    content: \"\\f2f2\";\n}\n\n.fltf-collections-add-20:before {\n    content: \"\\f2f3\";\n}\n\n.fltf-collections-add-24:before {\n    content: \"\\f2f4\";\n}\n\n.fltf-color-20:before {\n    content: \"\\f2f5\";\n}\n\n.fltf-color-24:before {\n    content: \"\\f2f6\";\n}\n\n.fltf-color-background-20:before {\n    content: \"\\f2f7\";\n}\n\n.fltf-color-background-24:before {\n    content: \"\\f2f8\";\n}\n\n.fltf-color-fill-20:before {\n    content: \"\\f2f9\";\n}\n\n.fltf-color-fill-24:before {\n    content: \"\\f2fa\";\n}\n\n.fltf-color-line-20:before {\n    content: \"\\f2fb\";\n}\n\n.fltf-color-line-24:before {\n    content: \"\\f2fc\";\n}\n\n.fltf-column-triple-24:before {\n    content: \"\\f2fd\";\n}\n\n.fltf-comment-16:before {\n    content: \"\\f2fe\";\n}\n\n.fltf-comment-20:before {\n    content: \"\\f2ff\";\n}\n\n.fltf-comment-24:before {\n    content: \"\\f300\";\n}\n\n.fltf-comment-add-24:before {\n    content: \"\\f301\";\n}\n\n.fltf-comment-delete-24:before {\n    content: \"\\f302\";\n}\n\n.fltf-comment-mention-16:before {\n    content: \"\\f303\";\n}\n\n.fltf-comment-mention-20:before {\n    content: \"\\f304\";\n}\n\n.fltf-comment-mention-24:before {\n    content: \"\\f305\";\n}\n\n.fltf-comment-multiple-16:before {\n    content: \"\\f306\";\n}\n\n.fltf-comment-multiple-20:before {\n    content: \"\\f307\";\n}\n\n.fltf-comment-multiple-24:before {\n    content: \"\\f308\";\n}\n\n.fltf-comment-next-24:before {\n    content: \"\\f309\";\n}\n\n.fltf-comment-previous-24:before {\n    content: \"\\f30a\";\n}\n\n.fltf-comment-resolve-24:before {\n    content: \"\\f30b\";\n}\n\n.fltf-communication-16:before {\n    content: \"\\f30c\";\n}\n\n.fltf-communication-20:before {\n    content: \"\\f30d\";\n}\n\n.fltf-communication-24:before {\n    content: \"\\f30e\";\n}\n\n.fltf-compass-northwest-16:before {\n    content: \"\\f30f\";\n}\n\n.fltf-compass-northwest-20:before {\n    content: \"\\f310\";\n}\n\n.fltf-compass-northwest-24:before {\n    content: \"\\f311\";\n}\n\n.fltf-compass-northwest-28:before {\n    content: \"\\f312\";\n}\n\n.fltf-compose-16:before {\n    content: \"\\f313\";\n}\n\n.fltf-compose-20:before {\n    content: \"\\f314\";\n}\n\n.fltf-compose-24:before {\n    content: \"\\f315\";\n}\n\n.fltf-compose-28:before {\n    content: \"\\f316\";\n}\n\n.fltf-conference-room-16:before {\n    content: \"\\f317\";\n}\n\n.fltf-conference-room-20:before {\n    content: \"\\f318\";\n}\n\n.fltf-conference-room-24:before {\n    content: \"\\f319\";\n}\n\n.fltf-conference-room-28:before {\n    content: \"\\f31a\";\n}\n\n.fltf-conference-room-48:before {\n    content: \"\\f31b\";\n}\n\n.fltf-connector-16:before {\n    content: \"\\f31c\";\n}\n\n.fltf-connector-20:before {\n    content: \"\\f31d\";\n}\n\n.fltf-connector-24:before {\n    content: \"\\f31e\";\n}\n\n.fltf-contact-card-20:before {\n    content: \"\\f31f\";\n}\n\n.fltf-contact-card-24:before {\n    content: \"\\f320\";\n}\n\n.fltf-contact-card-group-24:before {\n    content: \"\\f321\";\n}\n\n.fltf-contacts-24:before {\n    content: \"\\f322\";\n}\n\n.fltf-content-settings-16:before {\n    content: \"\\f323\";\n}\n\n.fltf-content-settings-20:before {\n    content: \"\\f324\";\n}\n\n.fltf-content-settings-24:before {\n    content: \"\\f325\";\n}\n\n.fltf-convert-to-table-24:before {\n    content: \"\\f326\";\n}\n\n.fltf-convert-to-text-24:before {\n    content: \"\\f327\";\n}\n\n.fltf-cookies-20:before {\n    content: \"\\f328\";\n}\n\n.fltf-cookies-24:before {\n    content: \"\\f329\";\n}\n\n.fltf-copy-16:before {\n    content: \"\\f32a\";\n}\n\n.fltf-copy-20:before {\n    content: \"\\f32b\";\n}\n\n.fltf-copy-24:before {\n    content: \"\\f32c\";\n}\n\n.fltf-copy-image-24:before {\n    content: \"\\f32d\";\n}\n\n.fltf-copy-link-24:before {\n    content: \"\\f32e\";\n}\n\n.fltf-copy-move-16:before {\n    content: \"\\f32f\";\n}\n\n.fltf-copy-move-24:before {\n    content: \"\\f330\";\n}\n\n.fltf-crop-24:before {\n    content: \"\\f331\";\n}\n\n.fltf-crop-interim-24:before {\n    content: \"\\f332\";\n}\n\n.fltf-crop-interim-off-24:before {\n    content: \"\\f333\";\n}\n\n.fltf-cube-16:before {\n    content: \"\\f334\";\n}\n\n.fltf-cube-20:before {\n    content: \"\\f335\";\n}\n\n.fltf-cube-24:before {\n    content: \"\\f336\";\n}\n\n.fltf-currency-16:before {\n    content: \"\\f337\";\n}\n\n.fltf-currency-20:before {\n    content: \"\\f338\";\n}\n\n.fltf-currency-24:before {\n    content: \"\\f339\";\n}\n\n.fltf-cut-20:before {\n    content: \"\\f33a\";\n}\n\n.fltf-cut-24:before {\n    content: \"\\f33b\";\n}\n\n.fltf-dark-theme-24:before {\n    content: \"\\f33c\";\n}\n\n.fltf-data-area-24:before {\n    content: \"\\f33d\";\n}\n\n.fltf-data-bar-horizontal-24:before {\n    content: \"\\f33e\";\n}\n\n.fltf-data-bar-vertical-20:before {\n    content: \"\\f33f\";\n}\n\n.fltf-data-bar-vertical-24:before {\n    content: \"\\f340\";\n}\n\n.fltf-data-funnel-24:before {\n    content: \"\\f341\";\n}\n\n.fltf-data-histogram-24:before {\n    content: \"\\f342\";\n}\n\n.fltf-data-line-24:before {\n    content: \"\\f343\";\n}\n\n.fltf-data-pie-20:before {\n    content: \"\\f344\";\n}\n\n.fltf-data-pie-24:before {\n    content: \"\\f345\";\n}\n\n.fltf-data-scatter-24:before {\n    content: \"\\f346\";\n}\n\n.fltf-data-sunburst-24:before {\n    content: \"\\f347\";\n}\n\n.fltf-data-treemap-24:before {\n    content: \"\\f348\";\n}\n\n.fltf-data-usage-24:before {\n    content: \"\\f349\";\n}\n\n.fltf-data-waterfall-24:before {\n    content: \"\\f34a\";\n}\n\n.fltf-data-whisker-24:before {\n    content: \"\\f34b\";\n}\n\n.fltf-delete-20:before {\n    content: \"\\f34c\";\n}\n\n.fltf-delete-24:before {\n    content: \"\\f34d\";\n}\n\n.fltf-delete-28:before {\n    content: \"\\f34e\";\n}\n\n.fltf-delete-48:before {\n    content: \"\\f34f\";\n}\n\n.fltf-delete-forever-24:before {\n    content: \"\\f350\";\n}\n\n.fltf-delete-forever-28:before {\n    content: \"\\f351\";\n}\n\n.fltf-delete-off-20:before {\n    content: \"\\f352\";\n}\n\n.fltf-delete-off-24:before {\n    content: \"\\f353\";\n}\n\n.fltf-dentist-24:before {\n    content: \"\\f354\";\n}\n\n.fltf-design-ideas-16:before {\n    content: \"\\f355\";\n}\n\n.fltf-design-ideas-20:before {\n    content: \"\\f356\";\n}\n\n.fltf-design-ideas-24:before {\n    content: \"\\f357\";\n}\n\n.fltf-desktop-16:before {\n    content: \"\\f358\";\n}\n\n.fltf-desktop-20:before {\n    content: \"\\f359\";\n}\n\n.fltf-desktop-24:before {\n    content: \"\\f35a\";\n}\n\n.fltf-desktop-28:before {\n    content: \"\\f35b\";\n}\n\n.fltf-developer-board-24:before {\n    content: \"\\f35c\";\n}\n\n.fltf-device-eq-24:before {\n    content: \"\\f35d\";\n}\n\n.fltf-dialpad-20:before {\n    content: \"\\f35e\";\n}\n\n.fltf-dialpad-24:before {\n    content: \"\\f35f\";\n}\n\n.fltf-dialpad-off-24:before {\n    content: \"\\f360\";\n}\n\n.fltf-dictionary-20:before {\n    content: \"\\f361\";\n}\n\n.fltf-dictionary-24:before {\n    content: \"\\f362\";\n}\n\n.fltf-dictionary-add-20:before {\n    content: \"\\f363\";\n}\n\n.fltf-dictionary-add-24:before {\n    content: \"\\f364\";\n}\n\n.fltf-directions-20:before {\n    content: \"\\f365\";\n}\n\n.fltf-directions-24:before {\n    content: \"\\f366\";\n}\n\n.fltf-dismiss-12:before {\n    content: \"\\f367\";\n}\n\n.fltf-dismiss-16:before {\n    content: \"\\f368\";\n}\n\n.fltf-dismiss-20:before {\n    content: \"\\f369\";\n}\n\n.fltf-dismiss-24:before {\n    content: \"\\f36a\";\n}\n\n.fltf-dismiss-28:before {\n    content: \"\\f36b\";\n}\n\n.fltf-dismiss-circle-16:before {\n    content: \"\\f36c\";\n}\n\n.fltf-dismiss-circle-20:before {\n    content: \"\\f36d\";\n}\n\n.fltf-dismiss-circle-24:before {\n    content: \"\\f36e\";\n}\n\n.fltf-dismiss-circle-48:before {\n    content: \"\\f36f\";\n}\n\n.fltf-divider-short-24:before {\n    content: \"\\f370\";\n}\n\n.fltf-divider-tall-24:before {\n    content: \"\\f371\";\n}\n\n.fltf-dock-24:before {\n    content: \"\\f372\";\n}\n\n.fltf-dock-left-16:before {\n    content: \"\\f373\";\n}\n\n.fltf-dock-left-20:before {\n    content: \"\\f374\";\n}\n\n.fltf-dock-left-24:before {\n    content: \"\\f375\";\n}\n\n.fltf-dock-row-24:before {\n    content: \"\\f376\";\n}\n\n.fltf-doctor-24:before {\n    content: \"\\f377\";\n}\n\n.fltf-document-20:before {\n    content: \"\\f378\";\n}\n\n.fltf-document-24:before {\n    content: \"\\f379\";\n}\n\n.fltf-document-28:before {\n    content: \"\\f37a\";\n}\n\n.fltf-document-autosave-24:before {\n    content: \"\\f37b\";\n}\n\n.fltf-document-briefcase-20:before {\n    content: \"\\f37c\";\n}\n\n.fltf-document-briefcase-24:before {\n    content: \"\\f37d\";\n}\n\n.fltf-document-catch-up-24:before {\n    content: \"\\f37e\";\n}\n\n.fltf-document-copy-16:before {\n    content: \"\\f37f\";\n}\n\n.fltf-document-copy-20:before {\n    content: \"\\f380\";\n}\n\n.fltf-document-copy-24:before {\n    content: \"\\f381\";\n}\n\n.fltf-document-copy-48:before {\n    content: \"\\f382\";\n}\n\n.fltf-document-dismiss-20:before {\n    content: \"\\f383\";\n}\n\n.fltf-document-dismiss-24:before {\n    content: \"\\f384\";\n}\n\n.fltf-document-edit-16:before {\n    content: \"\\f385\";\n}\n\n.fltf-document-edit-20:before {\n    content: \"\\f386\";\n}\n\n.fltf-document-edit-24:before {\n    content: \"\\f387\";\n}\n\n.fltf-document-endnote-20:before {\n    content: \"\\f388\";\n}\n\n.fltf-document-endnote-24:before {\n    content: \"\\f389\";\n}\n\n.fltf-document-error-16:before {\n    content: \"\\f38a\";\n}\n\n.fltf-document-error-20:before {\n    content: \"\\f38b\";\n}\n\n.fltf-document-error-24:before {\n    content: \"\\f38c\";\n}\n\n.fltf-document-footer-24:before {\n    content: \"\\f38d\";\n}\n\n.fltf-document-footer-remove-24:before {\n    content: \"\\f38e\";\n}\n\n.fltf-document-header-24:before {\n    content: \"\\f38f\";\n}\n\n.fltf-document-header-footer-20:before {\n    content: \"\\f390\";\n}\n\n.fltf-document-header-footer-24:before {\n    content: \"\\f391\";\n}\n\n.fltf-document-header-remove-24:before {\n    content: \"\\f392\";\n}\n\n.fltf-document-landscape-20:before {\n    content: \"\\f393\";\n}\n\n.fltf-document-landscape-24:before {\n    content: \"\\f394\";\n}\n\n.fltf-document-margins-20:before {\n    content: \"\\f395\";\n}\n\n.fltf-document-margins-24:before {\n    content: \"\\f396\";\n}\n\n.fltf-document-none-20:before {\n    content: \"\\f397\";\n}\n\n.fltf-document-none-24:before {\n    content: \"\\f398\";\n}\n\n.fltf-document-one-page-20:before {\n    content: \"\\f399\";\n}\n\n.fltf-document-one-page-24:before {\n    content: \"\\f39a\";\n}\n\n.fltf-document-page-24:before {\n    content: \"\\f39b\";\n}\n\n.fltf-document-page-bottom-center-20:before {\n    content: \"\\f39c\";\n}\n\n.fltf-document-page-bottom-center-24:before {\n    content: \"\\f39d\";\n}\n\n.fltf-document-page-bottom-left-20:before {\n    content: \"\\f39e\";\n}\n\n.fltf-document-page-bottom-left-24:before {\n    content: \"\\f39f\";\n}\n\n.fltf-document-page-bottom-right-20:before {\n    content: \"\\f3a0\";\n}\n\n.fltf-document-page-bottom-right-24:before {\n    content: \"\\f3a1\";\n}\n\n.fltf-document-page-break-24:before {\n    content: \"\\f3a2\";\n}\n\n.fltf-document-page-number-20:before {\n    content: \"\\f3a3\";\n}\n\n.fltf-document-page-number-24:before {\n    content: \"\\f3a4\";\n}\n\n.fltf-document-page-top-center-20:before {\n    content: \"\\f3a5\";\n}\n\n.fltf-document-page-top-center-24:before {\n    content: \"\\f3a6\";\n}\n\n.fltf-document-page-top-left-20:before {\n    content: \"\\f3a7\";\n}\n\n.fltf-document-page-top-left-24:before {\n    content: \"\\f3a8\";\n}\n\n.fltf-document-page-top-right-20:before {\n    content: \"\\f3a9\";\n}\n\n.fltf-document-page-top-right-24:before {\n    content: \"\\f3aa\";\n}\n\n.fltf-document-pdf-16:before {\n    content: \"\\f3ab\";\n}\n\n.fltf-document-pdf-20:before {\n    content: \"\\f3ac\";\n}\n\n.fltf-document-pdf-24:before {\n    content: \"\\f3ad\";\n}\n\n.fltf-document-search-20:before {\n    content: \"\\f3ae\";\n}\n\n.fltf-document-search-24:before {\n    content: \"\\f3af\";\n}\n\n.fltf-document-toolbox-20:before {\n    content: \"\\f3b0\";\n}\n\n.fltf-document-toolbox-24:before {\n    content: \"\\f3b1\";\n}\n\n.fltf-document-top-center-20:before {\n    content: \"\\f3b2\";\n}\n\n.fltf-document-top-left-20:before {\n    content: \"\\f3b3\";\n}\n\n.fltf-document-top-right-20:before {\n    content: \"\\f3b4\";\n}\n\n.fltf-document-unknown-16:before {\n    content: \"\\f3b5\";\n}\n\n.fltf-document-unknown-20:before {\n    content: \"\\f3b6\";\n}\n\n.fltf-document-unknown-24:before {\n    content: \"\\f3b7\";\n}\n\n.fltf-document-width-20:before {\n    content: \"\\f3b8\";\n}\n\n.fltf-document-width-24:before {\n    content: \"\\f3b9\";\n}\n\n.fltf-double-swipe-down-24:before {\n    content: \"\\f3ba\";\n}\n\n.fltf-double-swipe-up-24:before {\n    content: \"\\f3bb\";\n}\n\n.fltf-double-tap-swipe-down-24:before {\n    content: \"\\f3bc\";\n}\n\n.fltf-double-tap-swipe-up-24:before {\n    content: \"\\f3bd\";\n}\n\n.fltf-drafts-16:before {\n    content: \"\\f3be\";\n}\n\n.fltf-drafts-20:before {\n    content: \"\\f3bf\";\n}\n\n.fltf-drafts-24:before {\n    content: \"\\f3c0\";\n}\n\n.fltf-drag-24:before {\n    content: \"\\f3c1\";\n}\n\n.fltf-drink-24:before {\n    content: \"\\f3c2\";\n}\n\n.fltf-drink-beer-24:before {\n    content: \"\\f3c3\";\n}\n\n.fltf-drink-coffee-20:before {\n    content: \"\\f3c4\";\n}\n\n.fltf-drink-coffee-24:before {\n    content: \"\\f3c5\";\n}\n\n.fltf-drink-margarita-24:before {\n    content: \"\\f3c6\";\n}\n\n.fltf-drink-wine-24:before {\n    content: \"\\f3c7\";\n}\n\n.fltf-dual-screen-24:before {\n    content: \"\\f3c8\";\n}\n\n.fltf-dual-screen-add-24:before {\n    content: \"\\f3c9\";\n}\n\n.fltf-dual-screen-arrow-right-24:before {\n    content: \"\\f3ca\";\n}\n\n.fltf-dual-screen-clock-24:before {\n    content: \"\\f3cb\";\n}\n\n.fltf-dual-screen-desktop-24:before {\n    content: \"\\f3cc\";\n}\n\n.fltf-dual-screen-error-24:before {\n    content: \"\\f3cd\";\n}\n\n.fltf-dual-screen-group-24:before {\n    content: \"\\f3ce\";\n}\n\n.fltf-dual-screen-lock-24:before {\n    content: \"\\f3cf\";\n}\n\n.fltf-dual-screen-mirror-24:before {\n    content: \"\\f3d0\";\n}\n\n.fltf-dual-screen-pagination-24:before {\n    content: \"\\f3d1\";\n}\n\n.fltf-dual-screen-settings-24:before {\n    content: \"\\f3d2\";\n}\n\n.fltf-dual-screen-status-bar-24:before {\n    content: \"\\f3d3\";\n}\n\n.fltf-dual-screen-tablet-24:before {\n    content: \"\\f3d4\";\n}\n\n.fltf-dual-screen-update-24:before {\n    content: \"\\f3d5\";\n}\n\n.fltf-dual-screen-vertical-scroll-24:before {\n    content: \"\\f3d6\";\n}\n\n.fltf-dual-screen-vibrate-24:before {\n    content: \"\\f3d7\";\n}\n\n.fltf-earth-16:before {\n    content: \"\\f3d8\";\n}\n\n.fltf-earth-20:before {\n    content: \"\\f3d9\";\n}\n\n.fltf-earth-24:before {\n    content: \"\\f3da\";\n}\n\n.fltf-edit-16:before {\n    content: \"\\f3db\";\n}\n\n.fltf-edit-20:before {\n    content: \"\\f3dc\";\n}\n\n.fltf-edit-24:before {\n    content: \"\\f3dd\";\n}\n\n.fltf-emoji-16:before {\n    content: \"\\f3de\";\n}\n\n.fltf-emoji-20:before {\n    content: \"\\f3df\";\n}\n\n.fltf-emoji-24:before {\n    content: \"\\f3e0\";\n}\n\n.fltf-emoji-add-24:before {\n    content: \"\\f3e1\";\n}\n\n.fltf-emoji-angry-20:before {\n    content: \"\\f3e2\";\n}\n\n.fltf-emoji-angry-24:before {\n    content: \"\\f3e3\";\n}\n\n.fltf-emoji-laugh-20:before {\n    content: \"\\f3e4\";\n}\n\n.fltf-emoji-laugh-24:before {\n    content: \"\\f3e5\";\n}\n\n.fltf-emoji-meh-20:before {\n    content: \"\\f3e6\";\n}\n\n.fltf-emoji-meh-24:before {\n    content: \"\\f3e7\";\n}\n\n.fltf-emoji-sad-20:before {\n    content: \"\\f3e8\";\n}\n\n.fltf-emoji-sad-24:before {\n    content: \"\\f3e9\";\n}\n\n.fltf-emoji-surprise-20:before {\n    content: \"\\f3ea\";\n}\n\n.fltf-emoji-surprise-24:before {\n    content: \"\\f3eb\";\n}\n\n.fltf-erase-20:before {\n    content: \"\\f3ec\";\n}\n\n.fltf-erase-24:before {\n    content: \"\\f3ed\";\n}\n\n.fltf-eraser-tool-24:before {\n    content: \"\\f3ee\";\n}\n\n.fltf-error-circle-16:before {\n    content: \"\\f3ef\";\n}\n\n.fltf-error-circle-20:before {\n    content: \"\\f3f0\";\n}\n\n.fltf-error-circle-24:before {\n    content: \"\\f3f1\";\n}\n\n.fltf-export-24:before {\n    content: \"\\f3f2\";\n}\n\n.fltf-extended-dock-24:before {\n    content: \"\\f3f3\";\n}\n\n.fltf-extension-20:before {\n    content: \"\\f3f4\";\n}\n\n.fltf-extension-24:before {\n    content: \"\\f3f5\";\n}\n\n.fltf-eye-hide-20:before {\n    content: \"\\f3f6\";\n}\n\n.fltf-eye-hide-24:before {\n    content: \"\\f3f7\";\n}\n\n.fltf-eye-show-12:before {\n    content: \"\\f3f8\";\n}\n\n.fltf-eye-show-16:before {\n    content: \"\\f3f9\";\n}\n\n.fltf-eye-show-20:before {\n    content: \"\\f3fa\";\n}\n\n.fltf-eye-show-24:before {\n    content: \"\\f3fb\";\n}\n\n.fltf-fast-acceleration-24:before {\n    content: \"\\f3fc\";\n}\n\n.fltf-fast-forward-20:before {\n    content: \"\\f3fd\";\n}\n\n.fltf-fast-forward-24:before {\n    content: \"\\f3fe\";\n}\n\n.fltf-fast-mode-16:before {\n    content: \"\\f3ff\";\n}\n\n.fltf-fast-mode-20:before {\n    content: \"\\f400\";\n}\n\n.fltf-fast-mode-24:before {\n    content: \"\\f401\";\n}\n\n.fltf-fast-mode-28:before {\n    content: \"\\f402\";\n}\n\n.fltf-favorites-20:before {\n    content: \"\\f403\";\n}\n\n.fltf-favorites-24:before {\n    content: \"\\f404\";\n}\n\n.fltf-filter-20:before {\n    content: \"\\f405\";\n}\n\n.fltf-filter-24:before {\n    content: \"\\f406\";\n}\n\n.fltf-filter-28:before {\n    content: \"\\f407\";\n}\n\n.fltf-fingerprint-24:before {\n    content: \"\\f408\";\n}\n\n.fltf-flag-16:before {\n    content: \"\\f409\";\n}\n\n.fltf-flag-20:before {\n    content: \"\\f40a\";\n}\n\n.fltf-flag-24:before {\n    content: \"\\f40b\";\n}\n\n.fltf-flag-28:before {\n    content: \"\\f40c\";\n}\n\n.fltf-flag-48:before {\n    content: \"\\f40d\";\n}\n\n.fltf-flag-off-24:before {\n    content: \"\\f40e\";\n}\n\n.fltf-flag-off-28:before {\n    content: \"\\f40f\";\n}\n\n.fltf-flag-off-48:before {\n    content: \"\\f410\";\n}\n\n.fltf-flag-pride-16:before {\n    content: \"\\f411\";\n}\n\n.fltf-flag-pride-20:before {\n    content: \"\\f412\";\n}\n\n.fltf-flag-pride-24:before {\n    content: \"\\f413\";\n}\n\n.fltf-flag-pride-28:before {\n    content: \"\\f414\";\n}\n\n.fltf-flag-pride-48:before {\n    content: \"\\f415\";\n}\n\n.fltf-flash-auto-24:before {\n    content: \"\\f416\";\n}\n\n.fltf-flash-off-24:before {\n    content: \"\\f417\";\n}\n\n.fltf-flash-on-20:before {\n    content: \"\\f418\";\n}\n\n.fltf-flash-on-24:before {\n    content: \"\\f419\";\n}\n\n.fltf-flashlight-24:before {\n    content: \"\\f41a\";\n}\n\n.fltf-flashlight-off-24:before {\n    content: \"\\f41b\";\n}\n\n.fltf-folder-20:before {\n    content: \"\\f41c\";\n}\n\n.fltf-folder-24:before {\n    content: \"\\f41d\";\n}\n\n.fltf-folder-28:before {\n    content: \"\\f41e\";\n}\n\n.fltf-folder-48:before {\n    content: \"\\f41f\";\n}\n\n.fltf-folder-add-20:before {\n    content: \"\\f420\";\n}\n\n.fltf-folder-add-24:before {\n    content: \"\\f421\";\n}\n\n.fltf-folder-add-28:before {\n    content: \"\\f422\";\n}\n\n.fltf-folder-add-48:before {\n    content: \"\\f423\";\n}\n\n.fltf-folder-briefcase-20:before {\n    content: \"\\f424\";\n}\n\n.fltf-folder-junk-20:before {\n    content: \"\\f425\";\n}\n\n.fltf-folder-junk-24:before {\n    content: \"\\f426\";\n}\n\n.fltf-folder-junk-28:before {\n    content: \"\\f427\";\n}\n\n.fltf-folder-junk-48:before {\n    content: \"\\f428\";\n}\n\n.fltf-folder-link-20:before {\n    content: \"\\f429\";\n}\n\n.fltf-folder-link-24:before {\n    content: \"\\f42a\";\n}\n\n.fltf-folder-link-28:before {\n    content: \"\\f42b\";\n}\n\n.fltf-folder-link-48:before {\n    content: \"\\f42c\";\n}\n\n.fltf-folder-move-20:before {\n    content: \"\\f42d\";\n}\n\n.fltf-folder-move-24:before {\n    content: \"\\f42e\";\n}\n\n.fltf-folder-move-28:before {\n    content: \"\\f42f\";\n}\n\n.fltf-folder-move-48:before {\n    content: \"\\f430\";\n}\n\n.fltf-folder-open-16:before {\n    content: \"\\f431\";\n}\n\n.fltf-folder-open-20:before {\n    content: \"\\f432\";\n}\n\n.fltf-folder-open-24:before {\n    content: \"\\f433\";\n}\n\n.fltf-folder-open-vertical-20:before {\n    content: \"\\f434\";\n}\n\n.fltf-folder-public-16:before {\n    content: \"\\f435\";\n}\n\n.fltf-folder-public-20:before {\n    content: \"\\f436\";\n}\n\n.fltf-folder-public-24:before {\n    content: \"\\f437\";\n}\n\n.fltf-folder-zip-16:before {\n    content: \"\\f438\";\n}\n\n.fltf-folder-zip-20:before {\n    content: \"\\f439\";\n}\n\n.fltf-folder-zip-24:before {\n    content: \"\\f43a\";\n}\n\n.fltf-font-decrease-20:before {\n    content: \"\\f43b\";\n}\n\n.fltf-font-decrease-24:before {\n    content: \"\\f43c\";\n}\n\n.fltf-font-increase-20:before {\n    content: \"\\f43d\";\n}\n\n.fltf-font-increase-24:before {\n    content: \"\\f43e\";\n}\n\n.fltf-font-space-tracking-in-16:before {\n    content: \"\\f43f\";\n}\n\n.fltf-font-space-tracking-in-20:before {\n    content: \"\\f440\";\n}\n\n.fltf-font-space-tracking-in-24:before {\n    content: \"\\f441\";\n}\n\n.fltf-font-space-tracking-in-28:before {\n    content: \"\\f442\";\n}\n\n.fltf-font-space-tracking-out-16:before {\n    content: \"\\f443\";\n}\n\n.fltf-font-space-tracking-out-20:before {\n    content: \"\\f444\";\n}\n\n.fltf-font-space-tracking-out-24:before {\n    content: \"\\f445\";\n}\n\n.fltf-font-space-tracking-out-28:before {\n    content: \"\\f446\";\n}\n\n.fltf-food-20:before {\n    content: \"\\f447\";\n}\n\n.fltf-food-24:before {\n    content: \"\\f448\";\n}\n\n.fltf-food-cake-24:before {\n    content: \"\\f449\";\n}\n\n.fltf-food-egg-24:before {\n    content: \"\\f44a\";\n}\n\n.fltf-food-toast-24:before {\n    content: \"\\f44b\";\n}\n\n.fltf-form-new-24:before {\n    content: \"\\f44c\";\n}\n\n.fltf-form-new-28:before {\n    content: \"\\f44d\";\n}\n\n.fltf-form-new-48:before {\n    content: \"\\f44e\";\n}\n\n.fltf-forward-20:before {\n    content: \"\\f44f\";\n}\n\n.fltf-forward-24:before {\n    content: \"\\f450\";\n}\n\n.fltf-fps-240-24:before {\n    content: \"\\f451\";\n}\n\n.fltf-fps-960-24:before {\n    content: \"\\f452\";\n}\n\n.fltf-full-screen-zoom-24:before {\n    content: \"\\f453\";\n}\n\n.fltf-gallery-24:before {\n    content: \"\\f454\";\n}\n\n.fltf-games-24:before {\n    content: \"\\f455\";\n}\n\n.fltf-gesture-24:before {\n    content: \"\\f456\";\n}\n\n.fltf-gif-20:before {\n    content: \"\\f457\";\n}\n\n.fltf-gif-24:before {\n    content: \"\\f458\";\n}\n\n.fltf-gift-20:before {\n    content: \"\\f459\";\n}\n\n.fltf-gift-24:before {\n    content: \"\\f45a\";\n}\n\n.fltf-glance-24:before {\n    content: \"\\f45b\";\n}\n\n.fltf-glasses-24:before {\n    content: \"\\f45c\";\n}\n\n.fltf-glasses-off-24:before {\n    content: \"\\f45d\";\n}\n\n.fltf-globe-20:before {\n    content: \"\\f45e\";\n}\n\n.fltf-globe-24:before {\n    content: \"\\f45f\";\n}\n\n.fltf-globe-add-24:before {\n    content: \"\\f460\";\n}\n\n.fltf-globe-clock-24:before {\n    content: \"\\f461\";\n}\n\n.fltf-globe-desktop-24:before {\n    content: \"\\f462\";\n}\n\n.fltf-globe-location-24:before {\n    content: \"\\f463\";\n}\n\n.fltf-globe-search-24:before {\n    content: \"\\f464\";\n}\n\n.fltf-globe-video-24:before {\n    content: \"\\f465\";\n}\n\n.fltf-grid-20:before {\n    content: \"\\f466\";\n}\n\n.fltf-grid-24:before {\n    content: \"\\f467\";\n}\n\n.fltf-grid-28:before {\n    content: \"\\f468\";\n}\n\n.fltf-group-20:before {\n    content: \"\\f469\";\n}\n\n.fltf-group-24:before {\n    content: \"\\f46a\";\n}\n\n.fltf-group-list-24:before {\n    content: \"\\f46b\";\n}\n\n.fltf-guest-16:before {\n    content: \"\\f46c\";\n}\n\n.fltf-guest-20:before {\n    content: \"\\f46d\";\n}\n\n.fltf-guest-24:before {\n    content: \"\\f46e\";\n}\n\n.fltf-guest-28:before {\n    content: \"\\f46f\";\n}\n\n.fltf-guest-add-24:before {\n    content: \"\\f470\";\n}\n\n.fltf-hand-raise-24:before {\n    content: \"\\f471\";\n}\n\n.fltf-handshake-16:before {\n    content: \"\\f472\";\n}\n\n.fltf-handshake-20:before {\n    content: \"\\f473\";\n}\n\n.fltf-handshake-24:before {\n    content: \"\\f474\";\n}\n\n.fltf-hdr-24:before {\n    content: \"\\f475\";\n}\n\n.fltf-headphones-24:before {\n    content: \"\\f476\";\n}\n\n.fltf-headphones-28:before {\n    content: \"\\f477\";\n}\n\n.fltf-headset-24:before {\n    content: \"\\f478\";\n}\n\n.fltf-headset-28:before {\n    content: \"\\f479\";\n}\n\n.fltf-headset-vr-20:before {\n    content: \"\\f47a\";\n}\n\n.fltf-headset-vr-24:before {\n    content: \"\\f47b\";\n}\n\n.fltf-heart-16:before {\n    content: \"\\f47c\";\n}\n\n.fltf-heart-20:before {\n    content: \"\\f47d\";\n}\n\n.fltf-heart-24:before {\n    content: \"\\f47e\";\n}\n\n.fltf-highlight-16:before {\n    content: \"\\f47f\";\n}\n\n.fltf-highlight-20:before {\n    content: \"\\f480\";\n}\n\n.fltf-highlight-24:before {\n    content: \"\\f481\";\n}\n\n.fltf-highlight-accent-16:before {\n    content: \"\\f482\";\n}\n\n.fltf-highlight-accent-20:before {\n    content: \"\\f483\";\n}\n\n.fltf-highlight-accent-24:before {\n    content: \"\\f484\";\n}\n\n.fltf-history-20:before {\n    content: \"\\f485\";\n}\n\n.fltf-history-24:before {\n    content: \"\\f486\";\n}\n\n.fltf-home-20:before {\n    content: \"\\f487\";\n}\n\n.fltf-home-24:before {\n    content: \"\\f488\";\n}\n\n.fltf-home-28:before {\n    content: \"\\f489\";\n}\n\n.fltf-home-add-24:before {\n    content: \"\\f48a\";\n}\n\n.fltf-home-checkmark-24:before {\n    content: \"\\f48b\";\n}\n\n.fltf-icons-20:before {\n    content: \"\\f48c\";\n}\n\n.fltf-icons-24:before {\n    content: \"\\f48d\";\n}\n\n.fltf-image-16:before {\n    content: \"\\f48e\";\n}\n\n.fltf-image-20:before {\n    content: \"\\f48f\";\n}\n\n.fltf-image-24:before {\n    content: \"\\f490\";\n}\n\n.fltf-image-28:before {\n    content: \"\\f491\";\n}\n\n.fltf-image-48:before {\n    content: \"\\f492\";\n}\n\n.fltf-image-add-24:before {\n    content: \"\\f493\";\n}\n\n.fltf-image-alt-text-20:before {\n    content: \"\\f494\";\n}\n\n.fltf-image-alt-text-24:before {\n    content: \"\\f495\";\n}\n\n.fltf-image-copy-20:before {\n    content: \"\\f496\";\n}\n\n.fltf-image-copy-24:before {\n    content: \"\\f497\";\n}\n\n.fltf-image-copy-28:before {\n    content: \"\\f498\";\n}\n\n.fltf-image-edit-16:before {\n    content: \"\\f499\";\n}\n\n.fltf-image-edit-20:before {\n    content: \"\\f49a\";\n}\n\n.fltf-image-edit-24:before {\n    content: \"\\f49b\";\n}\n\n.fltf-image-library-20:before {\n    content: \"\\f49c\";\n}\n\n.fltf-image-library-24:before {\n    content: \"\\f49d\";\n}\n\n.fltf-image-library-28:before {\n    content: \"\\f49e\";\n}\n\n.fltf-image-off-24:before {\n    content: \"\\f49f\";\n}\n\n.fltf-image-search-20:before {\n    content: \"\\f4a0\";\n}\n\n.fltf-image-search-24:before {\n    content: \"\\f4a1\";\n}\n\n.fltf-immersive-reader-20:before {\n    content: \"\\f4a2\";\n}\n\n.fltf-immersive-reader-24:before {\n    content: \"\\f4a3\";\n}\n\n.fltf-important-12:before {\n    content: \"\\f4a4\";\n}\n\n.fltf-important-16:before {\n    content: \"\\f4a5\";\n}\n\n.fltf-important-20:before {\n    content: \"\\f4a6\";\n}\n\n.fltf-important-24:before {\n    content: \"\\f4a7\";\n}\n\n.fltf-incognito-24:before {\n    content: \"\\f4a8\";\n}\n\n.fltf-info-16:before {\n    content: \"\\f4a9\";\n}\n\n.fltf-info-20:before {\n    content: \"\\f4aa\";\n}\n\n.fltf-info-24:before {\n    content: \"\\f4ab\";\n}\n\n.fltf-info-28:before {\n    content: \"\\f4ac\";\n}\n\n.fltf-inking-tool-16:before {\n    content: \"\\f4ad\";\n}\n\n.fltf-inking-tool-20:before {\n    content: \"\\f4ae\";\n}\n\n.fltf-inking-tool-24:before {\n    content: \"\\f4af\";\n}\n\n.fltf-inking-tool-accent-16:before {\n    content: \"\\f4b0\";\n}\n\n.fltf-inking-tool-accent-20:before {\n    content: \"\\f4b1\";\n}\n\n.fltf-inking-tool-accent-24:before {\n    content: \"\\f4b2\";\n}\n\n.fltf-inprivate-account-16:before {\n    content: \"\\f4b3\";\n}\n\n.fltf-inprivate-account-20:before {\n    content: \"\\f4b4\";\n}\n\n.fltf-inprivate-account-24:before {\n    content: \"\\f4b5\";\n}\n\n.fltf-inprivate-account-28:before {\n    content: \"\\f4b6\";\n}\n\n.fltf-insert-20:before {\n    content: \"\\f4b7\";\n}\n\n.fltf-inspect-20:before {\n    content: \"\\f4b8\";\n}\n\n.fltf-inspect-24:before {\n    content: \"\\f4b9\";\n}\n\n.fltf-ios-arrow-left-24:before {\n    content: \"\\f4ba\";\n}\n\n.fltf-ios-chevron-24:before {\n    content: \"\\f4bb\";\n}\n\n.fltf-ios-chevron-right-20:before {\n    content: \"\\f4bc\";\n}\n\n.fltf-javascript-16:before {\n    content: \"\\f4bd\";\n}\n\n.fltf-javascript-20:before {\n    content: \"\\f4be\";\n}\n\n.fltf-javascript-24:before {\n    content: \"\\f4bf\";\n}\n\n.fltf-key-20:before {\n    content: \"\\f4c0\";\n}\n\n.fltf-key-24:before {\n    content: \"\\f4c1\";\n}\n\n.fltf-keyboard-20:before {\n    content: \"\\f4c2\";\n}\n\n.fltf-keyboard-24:before {\n    content: \"\\f4c3\";\n}\n\n.fltf-keyboard-dock-24:before {\n    content: \"\\f4c4\";\n}\n\n.fltf-keyboard-layout-float-24:before {\n    content: \"\\f4c5\";\n}\n\n.fltf-keyboard-layout-one-handed-left-24:before {\n    content: \"\\f4c6\";\n}\n\n.fltf-keyboard-layout-resize-24:before {\n    content: \"\\f4c7\";\n}\n\n.fltf-keyboard-layout-split-24:before {\n    content: \"\\f4c8\";\n}\n\n.fltf-keyboard-shift-24:before {\n    content: \"\\f4c9\";\n}\n\n.fltf-keyboard-shift-uppercase-24:before {\n    content: \"\\f4ca\";\n}\n\n.fltf-keyboard-tab-24:before {\n    content: \"\\f4cb\";\n}\n\n.fltf-laptop-16:before {\n    content: \"\\f4cc\";\n}\n\n.fltf-laptop-20:before {\n    content: \"\\f4cd\";\n}\n\n.fltf-laptop-24:before {\n    content: \"\\f4ce\";\n}\n\n.fltf-laptop-28:before {\n    content: \"\\f4cf\";\n}\n\n.fltf-large-16:before {\n    content: \"\\f4d0\";\n}\n\n.fltf-large-20:before {\n    content: \"\\f4d1\";\n}\n\n.fltf-large-24:before {\n    content: \"\\f4d2\";\n}\n\n.fltf-lasso-24:before {\n    content: \"\\f4d3\";\n}\n\n.fltf-launcher-settings-24:before {\n    content: \"\\f4d4\";\n}\n\n.fltf-layer-20:before {\n    content: \"\\f4d5\";\n}\n\n.fltf-layer-24:before {\n    content: \"\\f4d6\";\n}\n\n.fltf-leaf-16:before {\n    content: \"\\f4d7\";\n}\n\n.fltf-leaf-20:before {\n    content: \"\\f4d8\";\n}\n\n.fltf-leaf-24:before {\n    content: \"\\f4d9\";\n}\n\n.fltf-leaf-two-16:before {\n    content: \"\\f4da\";\n}\n\n.fltf-leaf-two-20:before {\n    content: \"\\f4db\";\n}\n\n.fltf-leaf-two-24:before {\n    content: \"\\f4dc\";\n}\n\n.fltf-library-24:before {\n    content: \"\\f4dd\";\n}\n\n.fltf-library-28:before {\n    content: \"\\f4de\";\n}\n\n.fltf-lightbulb-16:before {\n    content: \"\\f4df\";\n}\n\n.fltf-lightbulb-20:before {\n    content: \"\\f4e0\";\n}\n\n.fltf-lightbulb-24:before {\n    content: \"\\f4e1\";\n}\n\n.fltf-lightbulb-circle-24:before {\n    content: \"\\f4e2\";\n}\n\n.fltf-lightbulb-filament-16:before {\n    content: \"\\f4e3\";\n}\n\n.fltf-lightbulb-filament-20:before {\n    content: \"\\f4e4\";\n}\n\n.fltf-lightbulb-filament-24:before {\n    content: \"\\f4e5\";\n}\n\n.fltf-like-16:before {\n    content: \"\\f4e6\";\n}\n\n.fltf-likert-16:before {\n    content: \"\\f4e7\";\n}\n\n.fltf-likert-20:before {\n    content: \"\\f4e8\";\n}\n\n.fltf-likert-24:before {\n    content: \"\\f4e9\";\n}\n\n.fltf-line-horizontal-1-20:before {\n    content: \"\\f4ea\";\n}\n\n.fltf-line-horizontal-3-20:before {\n    content: \"\\f4eb\";\n}\n\n.fltf-line-horizontal-5-20:before {\n    content: \"\\f4ec\";\n}\n\n.fltf-link-16:before {\n    content: \"\\f4ed\";\n}\n\n.fltf-link-20:before {\n    content: \"\\f4ee\";\n}\n\n.fltf-link-24:before {\n    content: \"\\f4ef\";\n}\n\n.fltf-link-28:before {\n    content: \"\\f4f0\";\n}\n\n.fltf-link-48:before {\n    content: \"\\f4f1\";\n}\n\n.fltf-link-edit-16:before {\n    content: \"\\f4f2\";\n}\n\n.fltf-link-edit-20:before {\n    content: \"\\f4f3\";\n}\n\n.fltf-link-edit-24:before {\n    content: \"\\f4f4\";\n}\n\n.fltf-link-remove-20:before {\n    content: \"\\f4f5\";\n}\n\n.fltf-link-square-24:before {\n    content: \"\\f4f6\";\n}\n\n.fltf-list-20:before {\n    content: \"\\f4f7\";\n}\n\n.fltf-list-24:before {\n    content: \"\\f4f8\";\n}\n\n.fltf-list-28:before {\n    content: \"\\f4f9\";\n}\n\n.fltf-live-20:before {\n    content: \"\\f4fa\";\n}\n\n.fltf-live-24:before {\n    content: \"\\f4fb\";\n}\n\n.fltf-local-language-16:before {\n    content: \"\\f4fc\";\n}\n\n.fltf-local-language-20:before {\n    content: \"\\f4fd\";\n}\n\n.fltf-local-language-24:before {\n    content: \"\\f4fe\";\n}\n\n.fltf-local-language-28:before {\n    content: \"\\f4ff\";\n}\n\n.fltf-location-12:before {\n    content: \"\\f500\";\n}\n\n.fltf-location-16:before {\n    content: \"\\f501\";\n}\n\n.fltf-location-20:before {\n    content: \"\\f502\";\n}\n\n.fltf-location-24:before {\n    content: \"\\f503\";\n}\n\n.fltf-location-28:before {\n    content: \"\\f504\";\n}\n\n.fltf-location-live-20:before {\n    content: \"\\f505\";\n}\n\n.fltf-location-live-24:before {\n    content: \"\\f506\";\n}\n\n.fltf-location-not-found-24:before {\n    content: \"\\f507\";\n}\n\n.fltf-lock-12:before {\n    content: \"\\f508\";\n}\n\n.fltf-lock-16:before {\n    content: \"\\f509\";\n}\n\n.fltf-lock-20:before {\n    content: \"\\f50a\";\n}\n\n.fltf-lock-24:before {\n    content: \"\\f50b\";\n}\n\n.fltf-lock-shield-20:before {\n    content: \"\\f50c\";\n}\n\n.fltf-lock-shield-24:before {\n    content: \"\\f50d\";\n}\n\n.fltf-lock-shield-48:before {\n    content: \"\\f50e\";\n}\n\n.fltf-magic-wand-24:before {\n    content: \"\\f50f\";\n}\n\n.fltf-mail-20:before {\n    content: \"\\f510\";\n}\n\n.fltf-mail-24:before {\n    content: \"\\f511\";\n}\n\n.fltf-mail-28:before {\n    content: \"\\f512\";\n}\n\n.fltf-mail-48:before {\n    content: \"\\f513\";\n}\n\n.fltf-mail-add-24:before {\n    content: \"\\f514\";\n}\n\n.fltf-mail-all-20:before {\n    content: \"\\f515\";\n}\n\n.fltf-mail-all-24:before {\n    content: \"\\f516\";\n}\n\n.fltf-mail-all-accounts-24:before {\n    content: \"\\f517\";\n}\n\n.fltf-mail-all-read-20:before {\n    content: \"\\f518\";\n}\n\n.fltf-mail-all-unread-20:before {\n    content: \"\\f519\";\n}\n\n.fltf-mail-clock-20:before {\n    content: \"\\f51a\";\n}\n\n.fltf-mail-copy-20:before {\n    content: \"\\f51b\";\n}\n\n.fltf-mail-copy-24:before {\n    content: \"\\f51c\";\n}\n\n.fltf-mail-inbox-16:before {\n    content: \"\\f51d\";\n}\n\n.fltf-mail-inbox-20:before {\n    content: \"\\f51e\";\n}\n\n.fltf-mail-inbox-24:before {\n    content: \"\\f51f\";\n}\n\n.fltf-mail-inbox-28:before {\n    content: \"\\f520\";\n}\n\n.fltf-mail-inbox-add-16:before {\n    content: \"\\f521\";\n}\n\n.fltf-mail-inbox-add-20:before {\n    content: \"\\f522\";\n}\n\n.fltf-mail-inbox-add-24:before {\n    content: \"\\f523\";\n}\n\n.fltf-mail-inbox-add-28:before {\n    content: \"\\f524\";\n}\n\n.fltf-mail-inbox-dismiss-16:before {\n    content: \"\\f525\";\n}\n\n.fltf-mail-inbox-dismiss-20:before {\n    content: \"\\f526\";\n}\n\n.fltf-mail-inbox-dismiss-24:before {\n    content: \"\\f527\";\n}\n\n.fltf-mail-inbox-dismiss-28:before {\n    content: \"\\f528\";\n}\n\n.fltf-mail-move-to-focussed-24:before {\n    content: \"\\f529\";\n}\n\n.fltf-mail-outbox-24:before {\n    content: \"\\f52a\";\n}\n\n.fltf-mail-read-20:before {\n    content: \"\\f52b\";\n}\n\n.fltf-mail-read-24:before {\n    content: \"\\f52c\";\n}\n\n.fltf-mail-read-28:before {\n    content: \"\\f52d\";\n}\n\n.fltf-mail-read-48:before {\n    content: \"\\f52e\";\n}\n\n.fltf-mail-unread-16:before {\n    content: \"\\f52f\";\n}\n\n.fltf-mail-unread-20:before {\n    content: \"\\f530\";\n}\n\n.fltf-mail-unread-24:before {\n    content: \"\\f531\";\n}\n\n.fltf-mail-unread-28:before {\n    content: \"\\f532\";\n}\n\n.fltf-mail-unread-48:before {\n    content: \"\\f533\";\n}\n\n.fltf-mail-unsubscribe-24:before {\n    content: \"\\f534\";\n}\n\n.fltf-malware-detected-16:before {\n    content: \"\\f535\";\n}\n\n.fltf-malware-detected-24:before {\n    content: \"\\f536\";\n}\n\n.fltf-manufacturer-24:before {\n    content: \"\\f537\";\n}\n\n.fltf-map-24:before {\n    content: \"\\f538\";\n}\n\n.fltf-map-drive-16:before {\n    content: \"\\f539\";\n}\n\n.fltf-map-drive-20:before {\n    content: \"\\f53a\";\n}\n\n.fltf-map-drive-24:before {\n    content: \"\\f53b\";\n}\n\n.fltf-match-app-layout-24:before {\n    content: \"\\f53c\";\n}\n\n.fltf-maximize-16:before {\n    content: \"\\f53d\";\n}\n\n.fltf-meet-now-20:before {\n    content: \"\\f53e\";\n}\n\n.fltf-meet-now-24:before {\n    content: \"\\f53f\";\n}\n\n.fltf-megaphone-16:before {\n    content: \"\\f540\";\n}\n\n.fltf-megaphone-20:before {\n    content: \"\\f541\";\n}\n\n.fltf-megaphone-24:before {\n    content: \"\\f542\";\n}\n\n.fltf-megaphone-28:before {\n    content: \"\\f543\";\n}\n\n.fltf-megaphone-off-24:before {\n    content: \"\\f544\";\n}\n\n.fltf-mention-16:before {\n    content: \"\\f545\";\n}\n\n.fltf-mention-20:before {\n    content: \"\\f546\";\n}\n\n.fltf-mention-24:before {\n    content: \"\\f547\";\n}\n\n.fltf-merge-24:before {\n    content: \"\\f548\";\n}\n\n.fltf-mic-off-12:before {\n    content: \"\\f549\";\n}\n\n.fltf-mic-off-16:before {\n    content: \"\\f54a\";\n}\n\n.fltf-mic-off-24:before {\n    content: \"\\f54b\";\n}\n\n.fltf-mic-off-28:before {\n    content: \"\\f54c\";\n}\n\n.fltf-mic-on-16:before {\n    content: \"\\f54d\";\n}\n\n.fltf-mic-on-20:before {\n    content: \"\\f54e\";\n}\n\n.fltf-mic-on-24:before {\n    content: \"\\f54f\";\n}\n\n.fltf-mic-on-28:before {\n    content: \"\\f550\";\n}\n\n.fltf-mic-on-48:before {\n    content: \"\\f551\";\n}\n\n.fltf-mic-settings-24:before {\n    content: \"\\f552\";\n}\n\n.fltf-midi-20:before {\n    content: \"\\f553\";\n}\n\n.fltf-midi-24:before {\n    content: \"\\f554\";\n}\n\n.fltf-missing-metadata-16:before {\n    content: \"\\f555\";\n}\n\n.fltf-missing-metadata-24:before {\n    content: \"\\f556\";\n}\n\n.fltf-mobile-optimized-24:before {\n    content: \"\\f557\";\n}\n\n.fltf-money-16:before {\n    content: \"\\f558\";\n}\n\n.fltf-money-20:before {\n    content: \"\\f559\";\n}\n\n.fltf-money-24:before {\n    content: \"\\f55a\";\n}\n\n.fltf-more-16:before {\n    content: \"\\f55b\";\n}\n\n.fltf-more-20:before {\n    content: \"\\f55c\";\n}\n\n.fltf-more-24:before {\n    content: \"\\f55d\";\n}\n\n.fltf-more-28:before {\n    content: \"\\f55e\";\n}\n\n.fltf-more-48:before {\n    content: \"\\f55f\";\n}\n\n.fltf-more-vertical-20:before {\n    content: \"\\f560\";\n}\n\n.fltf-more-vertical-24:before {\n    content: \"\\f561\";\n}\n\n.fltf-more-vertical-28:before {\n    content: \"\\f562\";\n}\n\n.fltf-more-vertical-48:before {\n    content: \"\\f563\";\n}\n\n.fltf-movies-and-tv-24:before {\n    content: \"\\f564\";\n}\n\n.fltf-multiselect-20:before {\n    content: \"\\f565\";\n}\n\n.fltf-multiselect-24:before {\n    content: \"\\f566\";\n}\n\n.fltf-music-20:before {\n    content: \"\\f567\";\n}\n\n.fltf-music-24:before {\n    content: \"\\f568\";\n}\n\n.fltf-my-location-24:before {\n    content: \"\\f569\";\n}\n\n.fltf-navigation-20:before {\n    content: \"\\f56a\";\n}\n\n.fltf-navigation-24:before {\n    content: \"\\f56b\";\n}\n\n.fltf-network-check-24:before {\n    content: \"\\f56c\";\n}\n\n.fltf-new-16:before {\n    content: \"\\f56d\";\n}\n\n.fltf-new-24:before {\n    content: \"\\f56e\";\n}\n\n.fltf-news-20:before {\n    content: \"\\f56f\";\n}\n\n.fltf-news-24:before {\n    content: \"\\f570\";\n}\n\n.fltf-news-28:before {\n    content: \"\\f571\";\n}\n\n.fltf-next-16:before {\n    content: \"\\f572\";\n}\n\n.fltf-next-20:before {\n    content: \"\\f573\";\n}\n\n.fltf-next-24:before {\n    content: \"\\f574\";\n}\n\n.fltf-note-20:before {\n    content: \"\\f575\";\n}\n\n.fltf-note-24:before {\n    content: \"\\f576\";\n}\n\n.fltf-note-add-16:before {\n    content: \"\\f577\";\n}\n\n.fltf-note-add-20:before {\n    content: \"\\f578\";\n}\n\n.fltf-note-add-24:before {\n    content: \"\\f579\";\n}\n\n.fltf-notebook-24:before {\n    content: \"\\f57a\";\n}\n\n.fltf-notebook-error-24:before {\n    content: \"\\f57b\";\n}\n\n.fltf-notebook-lightning-24:before {\n    content: \"\\f57c\";\n}\n\n.fltf-notebook-question-mark-24:before {\n    content: \"\\f57d\";\n}\n\n.fltf-notebook-section-24:before {\n    content: \"\\f57e\";\n}\n\n.fltf-notebook-sync-24:before {\n    content: \"\\f57f\";\n}\n\n.fltf-notepad-20:before {\n    content: \"\\f580\";\n}\n\n.fltf-notepad-24:before {\n    content: \"\\f581\";\n}\n\n.fltf-notepad-28:before {\n    content: \"\\f582\";\n}\n\n.fltf-number-row-16:before {\n    content: \"\\f583\";\n}\n\n.fltf-number-row-20:before {\n    content: \"\\f584\";\n}\n\n.fltf-number-row-24:before {\n    content: \"\\f585\";\n}\n\n.fltf-number-symbol-16:before {\n    content: \"\\f586\";\n}\n\n.fltf-number-symbol-20:before {\n    content: \"\\f587\";\n}\n\n.fltf-number-symbol-24:before {\n    content: \"\\f588\";\n}\n\n.fltf-office-apps-24:before {\n    content: \"\\f589\";\n}\n\n.fltf-office-apps-28:before {\n    content: \"\\f58a\";\n}\n\n.fltf-open-16:before {\n    content: \"\\f58b\";\n}\n\n.fltf-open-20:before {\n    content: \"\\f58c\";\n}\n\n.fltf-open-24:before {\n    content: \"\\f58d\";\n}\n\n.fltf-open-folder-24:before {\n    content: \"\\f58e\";\n}\n\n.fltf-open-in-browser-24:before {\n    content: \"\\f58f\";\n}\n\n.fltf-options-16:before {\n    content: \"\\f590\";\n}\n\n.fltf-options-20:before {\n    content: \"\\f591\";\n}\n\n.fltf-options-24:before {\n    content: \"\\f592\";\n}\n\n.fltf-organization-20:before {\n    content: \"\\f593\";\n}\n\n.fltf-organization-24:before {\n    content: \"\\f594\";\n}\n\n.fltf-organization-28:before {\n    content: \"\\f595\";\n}\n\n.fltf-owner-24:before {\n    content: \"\\f596\";\n}\n\n.fltf-page-20:before {\n    content: \"\\f597\";\n}\n\n.fltf-page-fit-16:before {\n    content: \"\\f598\";\n}\n\n.fltf-page-fit-20:before {\n    content: \"\\f599\";\n}\n\n.fltf-page-fit-24:before {\n    content: \"\\f59a\";\n}\n\n.fltf-paint-brush-16:before {\n    content: \"\\f59b\";\n}\n\n.fltf-paint-brush-20:before {\n    content: \"\\f59c\";\n}\n\n.fltf-paint-brush-24:before {\n    content: \"\\f59d\";\n}\n\n.fltf-paint-bucket-16:before {\n    content: \"\\f59e\";\n}\n\n.fltf-paint-bucket-20:before {\n    content: \"\\f59f\";\n}\n\n.fltf-paint-bucket-24:before {\n    content: \"\\f5a0\";\n}\n\n.fltf-pair-24:before {\n    content: \"\\f5a1\";\n}\n\n.fltf-pane-close-16:before {\n    content: \"\\f5a2\";\n}\n\n.fltf-pane-close-20:before {\n    content: \"\\f5a3\";\n}\n\n.fltf-pane-close-24:before {\n    content: \"\\f5a4\";\n}\n\n.fltf-pane-open-16:before {\n    content: \"\\f5a5\";\n}\n\n.fltf-pane-open-20:before {\n    content: \"\\f5a6\";\n}\n\n.fltf-pane-open-24:before {\n    content: \"\\f5a7\";\n}\n\n.fltf-password-24:before {\n    content: \"\\f5a8\";\n}\n\n.fltf-patient-24:before {\n    content: \"\\f5a9\";\n}\n\n.fltf-pause-16:before {\n    content: \"\\f5aa\";\n}\n\n.fltf-pause-20:before {\n    content: \"\\f5ab\";\n}\n\n.fltf-pause-24:before {\n    content: \"\\f5ac\";\n}\n\n.fltf-pause-48:before {\n    content: \"\\f5ad\";\n}\n\n.fltf-payment-20:before {\n    content: \"\\f5ae\";\n}\n\n.fltf-payment-24:before {\n    content: \"\\f5af\";\n}\n\n.fltf-pen-settings-24:before {\n    content: \"\\f5b0\";\n}\n\n.fltf-people-16:before {\n    content: \"\\f5b1\";\n}\n\n.fltf-people-20:before {\n    content: \"\\f5b2\";\n}\n\n.fltf-people-24:before {\n    content: \"\\f5b3\";\n}\n\n.fltf-people-28:before {\n    content: \"\\f5b4\";\n}\n\n.fltf-people-add-16:before {\n    content: \"\\f5b5\";\n}\n\n.fltf-people-add-20:before {\n    content: \"\\f5b6\";\n}\n\n.fltf-people-add-24:before {\n    content: \"\\f5b7\";\n}\n\n.fltf-people-audience-24:before {\n    content: \"\\f5b8\";\n}\n\n.fltf-people-community-16:before {\n    content: \"\\f5b9\";\n}\n\n.fltf-people-community-20:before {\n    content: \"\\f5ba\";\n}\n\n.fltf-people-community-24:before {\n    content: \"\\f5bb\";\n}\n\n.fltf-people-community-28:before {\n    content: \"\\f5bc\";\n}\n\n.fltf-people-community-add-24:before {\n    content: \"\\f5bd\";\n}\n\n.fltf-people-prohibited-20:before {\n    content: \"\\f5be\";\n}\n\n.fltf-people-search-24:before {\n    content: \"\\f5bf\";\n}\n\n.fltf-people-settings-20:before {\n    content: \"\\f5c0\";\n}\n\n.fltf-people-team-16:before {\n    content: \"\\f5c1\";\n}\n\n.fltf-people-team-20:before {\n    content: \"\\f5c2\";\n}\n\n.fltf-people-team-24:before {\n    content: \"\\f5c3\";\n}\n\n.fltf-people-team-28:before {\n    content: \"\\f5c4\";\n}\n\n.fltf-person-12:before {\n    content: \"\\f5c5\";\n}\n\n.fltf-person-16:before {\n    content: \"\\f5c6\";\n}\n\n.fltf-person-20:before {\n    content: \"\\f5c7\";\n}\n\n.fltf-person-24:before {\n    content: \"\\f5c8\";\n}\n\n.fltf-person-28:before {\n    content: \"\\f5c9\";\n}\n\n.fltf-person-48:before {\n    content: \"\\f5ca\";\n}\n\n.fltf-person-accounts-24:before {\n    content: \"\\f5cb\";\n}\n\n.fltf-person-add-20:before {\n    content: \"\\f5cc\";\n}\n\n.fltf-person-add-24:before {\n    content: \"\\f5cd\";\n}\n\n.fltf-person-arrow-left-20:before {\n    content: \"\\f5ce\";\n}\n\n.fltf-person-arrow-left-24:before {\n    content: \"\\f5cf\";\n}\n\n.fltf-person-arrow-right-16:before {\n    content: \"\\f5d0\";\n}\n\n.fltf-person-arrow-right-20:before {\n    content: \"\\f5d1\";\n}\n\n.fltf-person-arrow-right-24:before {\n    content: \"\\f5d2\";\n}\n\n.fltf-person-available-16:before {\n    content: \"\\f5d3\";\n}\n\n.fltf-person-available-24:before {\n    content: \"\\f5d4\";\n}\n\n.fltf-person-block-24:before {\n    content: \"\\f5d5\";\n}\n\n.fltf-person-board-16:before {\n    content: \"\\f5d6\";\n}\n\n.fltf-person-board-20:before {\n    content: \"\\f5d7\";\n}\n\n.fltf-person-board-24:before {\n    content: \"\\f5d8\";\n}\n\n.fltf-person-call-24:before {\n    content: \"\\f5d9\";\n}\n\n.fltf-person-delete-16:before {\n    content: \"\\f5da\";\n}\n\n.fltf-person-delete-24:before {\n    content: \"\\f5db\";\n}\n\n.fltf-person-feedback-20:before {\n    content: \"\\f5dc\";\n}\n\n.fltf-person-feedback-24:before {\n    content: \"\\f5dd\";\n}\n\n.fltf-person-prohibited-20:before {\n    content: \"\\f5de\";\n}\n\n.fltf-person-question-mark-16:before {\n    content: \"\\f5df\";\n}\n\n.fltf-person-question-mark-20:before {\n    content: \"\\f5e0\";\n}\n\n.fltf-person-question-mark-24:before {\n    content: \"\\f5e1\";\n}\n\n.fltf-person-support-16:before {\n    content: \"\\f5e2\";\n}\n\n.fltf-person-support-20:before {\n    content: \"\\f5e3\";\n}\n\n.fltf-person-support-24:before {\n    content: \"\\f5e4\";\n}\n\n.fltf-person-swap-16:before {\n    content: \"\\f5e5\";\n}\n\n.fltf-person-swap-20:before {\n    content: \"\\f5e6\";\n}\n\n.fltf-person-swap-24:before {\n    content: \"\\f5e7\";\n}\n\n.fltf-person-voice-20:before {\n    content: \"\\f5e8\";\n}\n\n.fltf-person-voice-24:before {\n    content: \"\\f5e9\";\n}\n\n.fltf-phone-20:before {\n    content: \"\\f5ea\";\n}\n\n.fltf-phone-24:before {\n    content: \"\\f5eb\";\n}\n\n.fltf-phone-28:before {\n    content: \"\\f5ec\";\n}\n\n.fltf-phone-add-new-app-24:before {\n    content: \"\\f5ed\";\n}\n\n.fltf-phone-desktop-16:before {\n    content: \"\\f5ee\";\n}\n\n.fltf-phone-desktop-20:before {\n    content: \"\\f5ef\";\n}\n\n.fltf-phone-desktop-24:before {\n    content: \"\\f5f0\";\n}\n\n.fltf-phone-desktop-28:before {\n    content: \"\\f5f1\";\n}\n\n.fltf-phone-error-24:before {\n    content: \"\\f5f2\";\n}\n\n.fltf-phone-home-lock-24:before {\n    content: \"\\f5f3\";\n}\n\n.fltf-phone-laptop-20:before {\n    content: \"\\f5f4\";\n}\n\n.fltf-phone-laptop-24:before {\n    content: \"\\f5f5\";\n}\n\n.fltf-phone-link-setup-24:before {\n    content: \"\\f5f6\";\n}\n\n.fltf-phone-mobile-20:before {\n    content: \"\\f5f7\";\n}\n\n.fltf-phone-mobile-24:before {\n    content: \"\\f5f8\";\n}\n\n.fltf-phone-page-header-24:before {\n    content: \"\\f5f9\";\n}\n\n.fltf-phone-pagination-24:before {\n    content: \"\\f5fa\";\n}\n\n.fltf-phone-screen-time-24:before {\n    content: \"\\f5fb\";\n}\n\n.fltf-phone-shake-24:before {\n    content: \"\\f5fc\";\n}\n\n.fltf-phone-status-bar-24:before {\n    content: \"\\f5fd\";\n}\n\n.fltf-phone-tablet-20:before {\n    content: \"\\f5fe\";\n}\n\n.fltf-phone-tablet-24:before {\n    content: \"\\f5ff\";\n}\n\n.fltf-phone-to-pc-20:before {\n    content: \"\\f600\";\n}\n\n.fltf-phone-to-pc-24:before {\n    content: \"\\f601\";\n}\n\n.fltf-phone-update-24:before {\n    content: \"\\f602\";\n}\n\n.fltf-phone-vertical-scroll-24:before {\n    content: \"\\f603\";\n}\n\n.fltf-phone-vibrate-24:before {\n    content: \"\\f604\";\n}\n\n.fltf-photo-filter-24:before {\n    content: \"\\f605\";\n}\n\n.fltf-picture-in-picture-16:before {\n    content: \"\\f606\";\n}\n\n.fltf-picture-in-picture-20:before {\n    content: \"\\f607\";\n}\n\n.fltf-picture-in-picture-24:before {\n    content: \"\\f608\";\n}\n\n.fltf-pin-12:before {\n    content: \"\\f609\";\n}\n\n.fltf-pin-16:before {\n    content: \"\\f60a\";\n}\n\n.fltf-pin-20:before {\n    content: \"\\f60b\";\n}\n\n.fltf-pin-24:before {\n    content: \"\\f60c\";\n}\n\n.fltf-pin-off-20:before {\n    content: \"\\f60d\";\n}\n\n.fltf-pin-off-24:before {\n    content: \"\\f60e\";\n}\n\n.fltf-play-20:before {\n    content: \"\\f60f\";\n}\n\n.fltf-play-24:before {\n    content: \"\\f610\";\n}\n\n.fltf-play-48:before {\n    content: \"\\f611\";\n}\n\n.fltf-play-circle-24:before {\n    content: \"\\f612\";\n}\n\n.fltf-plug-disconnected-20:before {\n    content: \"\\f613\";\n}\n\n.fltf-plug-disconnected-24:before {\n    content: \"\\f614\";\n}\n\n.fltf-plug-disconnected-28:before {\n    content: \"\\f615\";\n}\n\n.fltf-point-scan-24:before {\n    content: \"\\f616\";\n}\n\n.fltf-poll-24:before {\n    content: \"\\f617\";\n}\n\n.fltf-power-20:before {\n    content: \"\\f618\";\n}\n\n.fltf-power-24:before {\n    content: \"\\f619\";\n}\n\n.fltf-power-28:before {\n    content: \"\\f61a\";\n}\n\n.fltf-predictions-24:before {\n    content: \"\\f61b\";\n}\n\n.fltf-premium-16:before {\n    content: \"\\f61c\";\n}\n\n.fltf-premium-20:before {\n    content: \"\\f61d\";\n}\n\n.fltf-premium-24:before {\n    content: \"\\f61e\";\n}\n\n.fltf-premium-28:before {\n    content: \"\\f61f\";\n}\n\n.fltf-presence-available-10:before {\n    content: \"\\f620\";\n}\n\n.fltf-presence-available-12:before {\n    content: \"\\f621\";\n}\n\n.fltf-presence-available-16:before {\n    content: \"\\f622\";\n}\n\n.fltf-presence-away-10:before {\n    content: \"\\f623\";\n}\n\n.fltf-presence-away-12:before {\n    content: \"\\f624\";\n}\n\n.fltf-presence-away-16:before {\n    content: \"\\f625\";\n}\n\n.fltf-presence-busy-10:before {\n    content: \"\\f626\";\n}\n\n.fltf-presence-busy-12:before {\n    content: \"\\f627\";\n}\n\n.fltf-presence-busy-16:before {\n    content: \"\\f628\";\n}\n\n.fltf-presence-dnd-10:before {\n    content: \"\\f629\";\n}\n\n.fltf-presence-dnd-12:before {\n    content: \"\\f62a\";\n}\n\n.fltf-presence-dnd-16:before {\n    content: \"\\f62b\";\n}\n\n.fltf-presenter-24:before {\n    content: \"\\f62c\";\n}\n\n.fltf-presenter-off-24:before {\n    content: \"\\f62d\";\n}\n\n.fltf-preview-link-16:before {\n    content: \"\\f62e\";\n}\n\n.fltf-preview-link-20:before {\n    content: \"\\f62f\";\n}\n\n.fltf-preview-link-24:before {\n    content: \"\\f630\";\n}\n\n.fltf-previous-16:before {\n    content: \"\\f631\";\n}\n\n.fltf-previous-20:before {\n    content: \"\\f632\";\n}\n\n.fltf-previous-24:before {\n    content: \"\\f633\";\n}\n\n.fltf-print-20:before {\n    content: \"\\f634\";\n}\n\n.fltf-print-24:before {\n    content: \"\\f635\";\n}\n\n.fltf-print-48:before {\n    content: \"\\f636\";\n}\n\n.fltf-prohibited-20:before {\n    content: \"\\f637\";\n}\n\n.fltf-prohibited-24:before {\n    content: \"\\f638\";\n}\n\n.fltf-prohibited-28:before {\n    content: \"\\f639\";\n}\n\n.fltf-prohibited-48:before {\n    content: \"\\f63a\";\n}\n\n.fltf-proofread-language-24:before {\n    content: \"\\f63b\";\n}\n\n.fltf-protocol-handler-16:before {\n    content: \"\\f63c\";\n}\n\n.fltf-protocol-handler-20:before {\n    content: \"\\f63d\";\n}\n\n.fltf-protocol-handler-24:before {\n    content: \"\\f63e\";\n}\n\n.fltf-qr-code-24:before {\n    content: \"\\f63f\";\n}\n\n.fltf-qr-code-28:before {\n    content: \"\\f640\";\n}\n\n.fltf-question-16:before {\n    content: \"\\f641\";\n}\n\n.fltf-question-20:before {\n    content: \"\\f642\";\n}\n\n.fltf-question-24:before {\n    content: \"\\f643\";\n}\n\n.fltf-question-28:before {\n    content: \"\\f644\";\n}\n\n.fltf-question-48:before {\n    content: \"\\f645\";\n}\n\n.fltf-question-circle-16:before {\n    content: \"\\f646\";\n}\n\n.fltf-question-circle-20:before {\n    content: \"\\f647\";\n}\n\n.fltf-question-circle-24:before {\n    content: \"\\f648\";\n}\n\n.fltf-question-circle-28:before {\n    content: \"\\f649\";\n}\n\n.fltf-question-circle-48:before {\n    content: \"\\f64a\";\n}\n\n.fltf-quiz-new-24:before {\n    content: \"\\f64b\";\n}\n\n.fltf-quiz-new-28:before {\n    content: \"\\f64c\";\n}\n\n.fltf-quiz-new-48:before {\n    content: \"\\f64d\";\n}\n\n.fltf-radio-button-20:before {\n    content: \"\\f64e\";\n}\n\n.fltf-radio-button-24:before {\n    content: \"\\f64f\";\n}\n\n.fltf-rating-mature-16:before {\n    content: \"\\f650\";\n}\n\n.fltf-rating-mature-20:before {\n    content: \"\\f651\";\n}\n\n.fltf-rating-mature-24:before {\n    content: \"\\f652\";\n}\n\n.fltf-re-order-16:before {\n    content: \"\\f653\";\n}\n\n.fltf-re-order-24:before {\n    content: \"\\f654\";\n}\n\n.fltf-re-order-dots-20:before {\n    content: \"\\f655\";\n}\n\n.fltf-re-order-dots-24:before {\n    content: \"\\f656\";\n}\n\n.fltf-read-aloud-20:before {\n    content: \"\\f657\";\n}\n\n.fltf-read-aloud-24:before {\n    content: \"\\f658\";\n}\n\n.fltf-read-only-16:before {\n    content: \"\\f659\";\n}\n\n.fltf-read-only-24:before {\n    content: \"\\f65a\";\n}\n\n.fltf-reading-list-16:before {\n    content: \"\\f65b\";\n}\n\n.fltf-reading-list-20:before {\n    content: \"\\f65c\";\n}\n\n.fltf-reading-list-24:before {\n    content: \"\\f65d\";\n}\n\n.fltf-reading-list-28:before {\n    content: \"\\f65e\";\n}\n\n.fltf-reading-list-add-16:before {\n    content: \"\\f65f\";\n}\n\n.fltf-reading-list-add-20:before {\n    content: \"\\f660\";\n}\n\n.fltf-reading-list-add-24:before {\n    content: \"\\f661\";\n}\n\n.fltf-reading-list-add-28:before {\n    content: \"\\f662\";\n}\n\n.fltf-reading-mode-20:before {\n    content: \"\\f663\";\n}\n\n.fltf-reading-mode-24:before {\n    content: \"\\f664\";\n}\n\n.fltf-reading-mode-mobile-20:before {\n    content: \"\\f665\";\n}\n\n.fltf-reading-mode-mobile-24:before {\n    content: \"\\f666\";\n}\n\n.fltf-reciept-20:before {\n    content: \"\\f667\";\n}\n\n.fltf-reciept-24:before {\n    content: \"\\f668\";\n}\n\n.fltf-recommended-24:before {\n    content: \"\\f669\";\n}\n\n.fltf-record-16:before {\n    content: \"\\f66a\";\n}\n\n.fltf-record-20:before {\n    content: \"\\f66b\";\n}\n\n.fltf-record-24:before {\n    content: \"\\f66c\";\n}\n\n.fltf-remove-12:before {\n    content: \"\\f66d\";\n}\n\n.fltf-remove-16:before {\n    content: \"\\f66e\";\n}\n\n.fltf-remove-20:before {\n    content: \"\\f66f\";\n}\n\n.fltf-remove-24:before {\n    content: \"\\f670\";\n}\n\n.fltf-remove-recent-24:before {\n    content: \"\\f671\";\n}\n\n.fltf-rename-16:before {\n    content: \"\\f672\";\n}\n\n.fltf-rename-20:before {\n    content: \"\\f673\";\n}\n\n.fltf-rename-24:before {\n    content: \"\\f674\";\n}\n\n.fltf-rename-28:before {\n    content: \"\\f675\";\n}\n\n.fltf-resize-20:before {\n    content: \"\\f676\";\n}\n\n.fltf-resize-image-24:before {\n    content: \"\\f677\";\n}\n\n.fltf-resize-table-24:before {\n    content: \"\\f678\";\n}\n\n.fltf-resize-video-24:before {\n    content: \"\\f679\";\n}\n\n.fltf-restore-16:before {\n    content: \"\\f67a\";\n}\n\n.fltf-reward-16:before {\n    content: \"\\f67b\";\n}\n\n.fltf-reward-20:before {\n    content: \"\\f67c\";\n}\n\n.fltf-reward-24:before {\n    content: \"\\f67d\";\n}\n\n.fltf-rewind-20:before {\n    content: \"\\f67e\";\n}\n\n.fltf-rewind-24:before {\n    content: \"\\f67f\";\n}\n\n.fltf-rocket-16:before {\n    content: \"\\f680\";\n}\n\n.fltf-rocket-20:before {\n    content: \"\\f681\";\n}\n\n.fltf-rocket-24:before {\n    content: \"\\f682\";\n}\n\n.fltf-router-24:before {\n    content: \"\\f683\";\n}\n\n.fltf-row-triple-24:before {\n    content: \"\\f684\";\n}\n\n.fltf-ruler-16:before {\n    content: \"\\f685\";\n}\n\n.fltf-ruler-20:before {\n    content: \"\\f686\";\n}\n\n.fltf-ruler-24:before {\n    content: \"\\f687\";\n}\n\n.fltf-run-24:before {\n    content: \"\\f688\";\n}\n\n.fltf-save-20:before {\n    content: \"\\f689\";\n}\n\n.fltf-save-24:before {\n    content: \"\\f68a\";\n}\n\n.fltf-save-as-20:before {\n    content: \"\\f68b\";\n}\n\n.fltf-save-as-24:before {\n    content: \"\\f68c\";\n}\n\n.fltf-save-copy-24:before {\n    content: \"\\f68d\";\n}\n\n.fltf-savings-16:before {\n    content: \"\\f68e\";\n}\n\n.fltf-savings-20:before {\n    content: \"\\f68f\";\n}\n\n.fltf-savings-24:before {\n    content: \"\\f690\";\n}\n\n.fltf-scale-fill-24:before {\n    content: \"\\f691\";\n}\n\n.fltf-scale-fit-16:before {\n    content: \"\\f692\";\n}\n\n.fltf-scale-fit-20:before {\n    content: \"\\f693\";\n}\n\n.fltf-scale-fit-24:before {\n    content: \"\\f694\";\n}\n\n.fltf-scan-24:before {\n    content: \"\\f695\";\n}\n\n.fltf-scratchpad-24:before {\n    content: \"\\f696\";\n}\n\n.fltf-screenshot-20:before {\n    content: \"\\f697\";\n}\n\n.fltf-screenshot-24:before {\n    content: \"\\f698\";\n}\n\n.fltf-search-20:before {\n    content: \"\\f699\";\n}\n\n.fltf-search-24:before {\n    content: \"\\f69a\";\n}\n\n.fltf-search-28:before {\n    content: \"\\f69b\";\n}\n\n.fltf-search-info-24:before {\n    content: \"\\f69c\";\n}\n\n.fltf-search-square-24:before {\n    content: \"\\f69d\";\n}\n\n.fltf-select-all-24:before {\n    content: \"\\f69e\";\n}\n\n.fltf-select-all-off-24:before {\n    content: \"\\f69f\";\n}\n\n.fltf-select-object-20:before {\n    content: \"\\f6a0\";\n}\n\n.fltf-select-object-24:before {\n    content: \"\\f6a1\";\n}\n\n.fltf-send-20:before {\n    content: \"\\f6a2\";\n}\n\n.fltf-send-24:before {\n    content: \"\\f6a3\";\n}\n\n.fltf-send-28:before {\n    content: \"\\f6a4\";\n}\n\n.fltf-send-clock-20:before {\n    content: \"\\f6a5\";\n}\n\n.fltf-send-copy-24:before {\n    content: \"\\f6a6\";\n}\n\n.fltf-send-logging-24:before {\n    content: \"\\f6a7\";\n}\n\n.fltf-send-to-back-20:before {\n    content: \"\\f6a8\";\n}\n\n.fltf-send-to-back-24:before {\n    content: \"\\f6a9\";\n}\n\n.fltf-serial-port-16:before {\n    content: \"\\f6aa\";\n}\n\n.fltf-serial-port-20:before {\n    content: \"\\f6ab\";\n}\n\n.fltf-serial-port-24:before {\n    content: \"\\f6ac\";\n}\n\n.fltf-service-bell-24:before {\n    content: \"\\f6ad\";\n}\n\n.fltf-set-top-stack-16:before {\n    content: \"\\f6ae\";\n}\n\n.fltf-set-top-stack-20:before {\n    content: \"\\f6af\";\n}\n\n.fltf-set-top-stack-24:before {\n    content: \"\\f6b0\";\n}\n\n.fltf-settings-16:before {\n    content: \"\\f6b1\";\n}\n\n.fltf-settings-20:before {\n    content: \"\\f6b2\";\n}\n\n.fltf-settings-24:before {\n    content: \"\\f6b3\";\n}\n\n.fltf-settings-28:before {\n    content: \"\\f6b4\";\n}\n\n.fltf-shapes-16:before {\n    content: \"\\f6b5\";\n}\n\n.fltf-shapes-20:before {\n    content: \"\\f6b6\";\n}\n\n.fltf-shapes-24:before {\n    content: \"\\f6b7\";\n}\n\n.fltf-share-20:before {\n    content: \"\\f6b8\";\n}\n\n.fltf-share-24:before {\n    content: \"\\f6b9\";\n}\n\n.fltf-share-android-20:before {\n    content: \"\\f6ba\";\n}\n\n.fltf-share-android-24:before {\n    content: \"\\f6bb\";\n}\n\n.fltf-share-close-tray-24:before {\n    content: \"\\f6bc\";\n}\n\n.fltf-share-desktop-24:before {\n    content: \"\\f6bd\";\n}\n\n.fltf-share-ios-20:before {\n    content: \"\\f6be\";\n}\n\n.fltf-share-ios-24:before {\n    content: \"\\f6bf\";\n}\n\n.fltf-share-ios-28:before {\n    content: \"\\f6c0\";\n}\n\n.fltf-share-ios-48:before {\n    content: \"\\f6c1\";\n}\n\n.fltf-share-screen-20:before {\n    content: \"\\f6c2\";\n}\n\n.fltf-share-screen-24:before {\n    content: \"\\f6c3\";\n}\n\n.fltf-share-screen-28:before {\n    content: \"\\f6c4\";\n}\n\n.fltf-share-stop-24:before {\n    content: \"\\f6c5\";\n}\n\n.fltf-share-stop-28:before {\n    content: \"\\f6c6\";\n}\n\n.fltf-shield-20:before {\n    content: \"\\f6c7\";\n}\n\n.fltf-shield-24:before {\n    content: \"\\f6c8\";\n}\n\n.fltf-shield-dismiss-20:before {\n    content: \"\\f6c9\";\n}\n\n.fltf-shield-dismiss-24:before {\n    content: \"\\f6ca\";\n}\n\n.fltf-shield-error-20:before {\n    content: \"\\f6cb\";\n}\n\n.fltf-shield-error-24:before {\n    content: \"\\f6cc\";\n}\n\n.fltf-shield-keyhole-16:before {\n    content: \"\\f6cd\";\n}\n\n.fltf-shield-keyhole-20:before {\n    content: \"\\f6ce\";\n}\n\n.fltf-shield-keyhole-24:before {\n    content: \"\\f6cf\";\n}\n\n.fltf-shield-prohibited-20:before {\n    content: \"\\f6d0\";\n}\n\n.fltf-shield-prohibited-24:before {\n    content: \"\\f6d1\";\n}\n\n.fltf-shifts-24:before {\n    content: \"\\f6d2\";\n}\n\n.fltf-shifts-24h-20:before {\n    content: \"\\f6d3\";\n}\n\n.fltf-shifts-24h-24:before {\n    content: \"\\f6d4\";\n}\n\n.fltf-shifts-28:before {\n    content: \"\\f6d5\";\n}\n\n.fltf-shifts-30-minutes-24:before {\n    content: \"\\f6d6\";\n}\n\n.fltf-shifts-activity-20:before {\n    content: \"\\f6d7\";\n}\n\n.fltf-shifts-activity-24:before {\n    content: \"\\f6d8\";\n}\n\n.fltf-shifts-add-24:before {\n    content: \"\\f6d9\";\n}\n\n.fltf-shifts-approve-24:before {\n    content: \"\\f6da\";\n}\n\n.fltf-shifts-availability-24:before {\n    content: \"\\f6db\";\n}\n\n.fltf-shifts-deny-24:before {\n    content: \"\\f6dc\";\n}\n\n.fltf-shifts-open-20:before {\n    content: \"\\f6dd\";\n}\n\n.fltf-shifts-open-24:before {\n    content: \"\\f6de\";\n}\n\n.fltf-shifts-pending-24:before {\n    content: \"\\f6df\";\n}\n\n.fltf-shifts-team-24:before {\n    content: \"\\f6e0\";\n}\n\n.fltf-ship-20:before {\n    content: \"\\f6e1\";\n}\n\n.fltf-ship-24:before {\n    content: \"\\f6e2\";\n}\n\n.fltf-sign-out-24:before {\n    content: \"\\f6e3\";\n}\n\n.fltf-signature-16:before {\n    content: \"\\f6e4\";\n}\n\n.fltf-signature-20:before {\n    content: \"\\f6e5\";\n}\n\n.fltf-signature-24:before {\n    content: \"\\f6e6\";\n}\n\n.fltf-signature-28:before {\n    content: \"\\f6e7\";\n}\n\n.fltf-signed-16:before {\n    content: \"\\f6e8\";\n}\n\n.fltf-signed-20:before {\n    content: \"\\f6e9\";\n}\n\n.fltf-signed-24:before {\n    content: \"\\f6ea\";\n}\n\n.fltf-sim-16:before {\n    content: \"\\f6eb\";\n}\n\n.fltf-sim-20:before {\n    content: \"\\f6ec\";\n}\n\n.fltf-sim-24:before {\n    content: \"\\f6ed\";\n}\n\n.fltf-sleep-24:before {\n    content: \"\\f6ee\";\n}\n\n.fltf-slide-add-24:before {\n    content: \"\\f6ef\";\n}\n\n.fltf-slide-design-24:before {\n    content: \"\\f6f0\";\n}\n\n.fltf-slide-hide-24:before {\n    content: \"\\f6f1\";\n}\n\n.fltf-slide-layout-20:before {\n    content: \"\\f6f2\";\n}\n\n.fltf-slide-layout-24:before {\n    content: \"\\f6f3\";\n}\n\n.fltf-slide-microphone-24:before {\n    content: \"\\f6f4\";\n}\n\n.fltf-slide-text-24:before {\n    content: \"\\f6f5\";\n}\n\n.fltf-slow-mode-16:before {\n    content: \"\\f6f6\";\n}\n\n.fltf-slow-mode-20:before {\n    content: \"\\f6f7\";\n}\n\n.fltf-slow-mode-24:before {\n    content: \"\\f6f8\";\n}\n\n.fltf-slow-mode-28:before {\n    content: \"\\f6f9\";\n}\n\n.fltf-small-16:before {\n    content: \"\\f6fa\";\n}\n\n.fltf-small-20:before {\n    content: \"\\f6fb\";\n}\n\n.fltf-small-24:before {\n    content: \"\\f6fc\";\n}\n\n.fltf-snooze-16:before {\n    content: \"\\f6fd\";\n}\n\n.fltf-snooze-24:before {\n    content: \"\\f6fe\";\n}\n\n.fltf-sound-source-24:before {\n    content: \"\\f6ff\";\n}\n\n.fltf-sound-source-28:before {\n    content: \"\\f700\";\n}\n\n.fltf-spacebar-24:before {\n    content: \"\\f701\";\n}\n\n.fltf-speaker-0-24:before {\n    content: \"\\f702\";\n}\n\n.fltf-speaker-16:before {\n    content: \"\\f703\";\n}\n\n.fltf-speaker-1-24:before {\n    content: \"\\f704\";\n}\n\n.fltf-speaker-20:before {\n    content: \"\\f705\";\n}\n\n.fltf-speaker-24:before {\n    content: \"\\f706\";\n}\n\n.fltf-speaker-28:before {\n    content: \"\\f707\";\n}\n\n.fltf-speaker-bluetooth-24:before {\n    content: \"\\f708\";\n}\n\n.fltf-speaker-edit-16:before {\n    content: \"\\f709\";\n}\n\n.fltf-speaker-edit-20:before {\n    content: \"\\f70a\";\n}\n\n.fltf-speaker-edit-24:before {\n    content: \"\\f70b\";\n}\n\n.fltf-speaker-none-20:before {\n    content: \"\\f70c\";\n}\n\n.fltf-speaker-none-24:before {\n    content: \"\\f70d\";\n}\n\n.fltf-speaker-none-28:before {\n    content: \"\\f70e\";\n}\n\n.fltf-speaker-off-24:before {\n    content: \"\\f70f\";\n}\n\n.fltf-speaker-off-28:before {\n    content: \"\\f710\";\n}\n\n.fltf-speaker-settings-24:before {\n    content: \"\\f711\";\n}\n\n.fltf-spinner-ios-20:before {\n    content: \"\\f712\";\n}\n\n.fltf-sports-16:before {\n    content: \"\\f713\";\n}\n\n.fltf-sports-20:before {\n    content: \"\\f714\";\n}\n\n.fltf-sports-24:before {\n    content: \"\\f715\";\n}\n\n.fltf-star-12:before {\n    content: \"\\f716\";\n}\n\n.fltf-star-16:before {\n    content: \"\\f717\";\n}\n\n.fltf-star-20:before {\n    content: \"\\f718\";\n}\n\n.fltf-star-24:before {\n    content: \"\\f719\";\n}\n\n.fltf-star-28:before {\n    content: \"\\f71a\";\n}\n\n.fltf-star-add-16:before {\n    content: \"\\f71b\";\n}\n\n.fltf-star-add-20:before {\n    content: \"\\f71c\";\n}\n\n.fltf-star-add-24:before {\n    content: \"\\f71d\";\n}\n\n.fltf-star-arrow-right-24:before {\n    content: \"\\f71e\";\n}\n\n.fltf-star-arrow-right-start-24:before {\n    content: \"\\f71f\";\n}\n\n.fltf-star-emphasis-24:before {\n    content: \"\\f720\";\n}\n\n.fltf-star-half-12:before {\n    content: \"\\f721\";\n}\n\n.fltf-star-half-16:before {\n    content: \"\\f722\";\n}\n\n.fltf-star-half-20:before {\n    content: \"\\f723\";\n}\n\n.fltf-star-half-24:before {\n    content: \"\\f724\";\n}\n\n.fltf-star-half-28:before {\n    content: \"\\f725\";\n}\n\n.fltf-star-off-12:before {\n    content: \"\\f726\";\n}\n\n.fltf-star-off-16:before {\n    content: \"\\f727\";\n}\n\n.fltf-star-off-20:before {\n    content: \"\\f728\";\n}\n\n.fltf-star-off-24:before {\n    content: \"\\f729\";\n}\n\n.fltf-star-off-28:before {\n    content: \"\\f72a\";\n}\n\n.fltf-star-one-quarter-12:before {\n    content: \"\\f72b\";\n}\n\n.fltf-star-one-quarter-16:before {\n    content: \"\\f72c\";\n}\n\n.fltf-star-one-quarter-20:before {\n    content: \"\\f72d\";\n}\n\n.fltf-star-one-quarter-24:before {\n    content: \"\\f72e\";\n}\n\n.fltf-star-one-quarter-28:before {\n    content: \"\\f72f\";\n}\n\n.fltf-star-prohibited-16:before {\n    content: \"\\f730\";\n}\n\n.fltf-star-prohibited-20:before {\n    content: \"\\f731\";\n}\n\n.fltf-star-prohibited-24:before {\n    content: \"\\f732\";\n}\n\n.fltf-star-settings-24:before {\n    content: \"\\f733\";\n}\n\n.fltf-star-three-quarter-12:before {\n    content: \"\\f734\";\n}\n\n.fltf-star-three-quarter-16:before {\n    content: \"\\f735\";\n}\n\n.fltf-star-three-quarter-20:before {\n    content: \"\\f736\";\n}\n\n.fltf-star-three-quarter-24:before {\n    content: \"\\f737\";\n}\n\n.fltf-star-three-quarter-28:before {\n    content: \"\\f738\";\n}\n\n.fltf-status-16:before {\n    content: \"\\f739\";\n}\n\n.fltf-status-20:before {\n    content: \"\\f73a\";\n}\n\n.fltf-status-24:before {\n    content: \"\\f73b\";\n}\n\n.fltf-stethoscope-20:before {\n    content: \"\\f73c\";\n}\n\n.fltf-stethoscope-24:before {\n    content: \"\\f73d\";\n}\n\n.fltf-sticker-20:before {\n    content: \"\\f73e\";\n}\n\n.fltf-sticker-24:before {\n    content: \"\\f73f\";\n}\n\n.fltf-sticker-add-24:before {\n    content: \"\\f740\";\n}\n\n.fltf-stop-16:before {\n    content: \"\\f741\";\n}\n\n.fltf-stop-20:before {\n    content: \"\\f742\";\n}\n\n.fltf-stop-24:before {\n    content: \"\\f743\";\n}\n\n.fltf-storage-24:before {\n    content: \"\\f744\";\n}\n\n.fltf-store-16:before {\n    content: \"\\f745\";\n}\n\n.fltf-store-20:before {\n    content: \"\\f746\";\n}\n\n.fltf-store-24:before {\n    content: \"\\f747\";\n}\n\n.fltf-store-microsoft-16:before {\n    content: \"\\f748\";\n}\n\n.fltf-store-microsoft-20:before {\n    content: \"\\f749\";\n}\n\n.fltf-store-microsoft-24:before {\n    content: \"\\f74a\";\n}\n\n.fltf-style-guide-24:before {\n    content: \"\\f74b\";\n}\n\n.fltf-sub-grid-24:before {\n    content: \"\\f74c\";\n}\n\n.fltf-subway-20:before {\n    content: \"\\f74d\";\n}\n\n.fltf-subway-24:before {\n    content: \"\\f74e\";\n}\n\n.fltf-suggestion-24:before {\n    content: \"\\f74f\";\n}\n\n.fltf-surface-earbuds-20:before {\n    content: \"\\f750\";\n}\n\n.fltf-surface-earbuds-24:before {\n    content: \"\\f751\";\n}\n\n.fltf-surface-hub-20:before {\n    content: \"\\f752\";\n}\n\n.fltf-surface-hub-24:before {\n    content: \"\\f753\";\n}\n\n.fltf-swipe-down-24:before {\n    content: \"\\f754\";\n}\n\n.fltf-swipe-right-24:before {\n    content: \"\\f755\";\n}\n\n.fltf-swipe-up-24:before {\n    content: \"\\f756\";\n}\n\n.fltf-symbols-24:before {\n    content: \"\\f757\";\n}\n\n.fltf-sync-off-16:before {\n    content: \"\\f758\";\n}\n\n.fltf-sync-off-20:before {\n    content: \"\\f759\";\n}\n\n.fltf-system-24:before {\n    content: \"\\f75a\";\n}\n\n.fltf-tab-16:before {\n    content: \"\\f75b\";\n}\n\n.fltf-tab-20:before {\n    content: \"\\f75c\";\n}\n\n.fltf-tab-24:before {\n    content: \"\\f75d\";\n}\n\n.fltf-tab-28:before {\n    content: \"\\f75e\";\n}\n\n.fltf-tab-desktop-20:before {\n    content: \"\\f75f\";\n}\n\n.fltf-tab-desktop-arrow-clockwise-16:before {\n    content: \"\\f760\";\n}\n\n.fltf-tab-desktop-arrow-clockwise-20:before {\n    content: \"\\f761\";\n}\n\n.fltf-tab-desktop-arrow-clockwise-24:before {\n    content: \"\\f762\";\n}\n\n.fltf-tab-desktop-clock-20:before {\n    content: \"\\f763\";\n}\n\n.fltf-tab-desktop-copy-20:before {\n    content: \"\\f764\";\n}\n\n.fltf-tab-desktop-image-16:before {\n    content: \"\\f765\";\n}\n\n.fltf-tab-desktop-image-20:before {\n    content: \"\\f766\";\n}\n\n.fltf-tab-desktop-image-24:before {\n    content: \"\\f767\";\n}\n\n.fltf-tab-desktop-multiple-20:before {\n    content: \"\\f768\";\n}\n\n.fltf-tab-desktop-new-page-20:before {\n    content: \"\\f769\";\n}\n\n.fltf-tab-in-private-16:before {\n    content: \"\\f76a\";\n}\n\n.fltf-tab-in-private-20:before {\n    content: \"\\f76b\";\n}\n\n.fltf-tab-in-private-24:before {\n    content: \"\\f76c\";\n}\n\n.fltf-tab-in-private-28:before {\n    content: \"\\f76d\";\n}\n\n.fltf-tab-inprivate-account-20:before {\n    content: \"\\f76e\";\n}\n\n.fltf-tab-inprivate-account-24:before {\n    content: \"\\f76f\";\n}\n\n.fltf-tab-new-20:before {\n    content: \"\\f770\";\n}\n\n.fltf-tab-new-24:before {\n    content: \"\\f771\";\n}\n\n.fltf-tab-sweep-24:before {\n    content: \"\\f772\";\n}\n\n.fltf-tab-tracking-prevention-20:before {\n    content: \"\\f773\";\n}\n\n.fltf-tab-tracking-prevention-24:before {\n    content: \"\\f774\";\n}\n\n.fltf-table-20:before {\n    content: \"\\f775\";\n}\n\n.fltf-table-24:before {\n    content: \"\\f776\";\n}\n\n.fltf-table-add-24:before {\n    content: \"\\f777\";\n}\n\n.fltf-table-cells-merge-20:before {\n    content: \"\\f778\";\n}\n\n.fltf-table-cells-merge-24:before {\n    content: \"\\f779\";\n}\n\n.fltf-table-cells-split-20:before {\n    content: \"\\f77a\";\n}\n\n.fltf-table-cells-split-24:before {\n    content: \"\\f77b\";\n}\n\n.fltf-table-column-delete-24:before {\n    content: \"\\f77c\";\n}\n\n.fltf-table-column-insert-24:before {\n    content: \"\\f77d\";\n}\n\n.fltf-table-column-resize-24:before {\n    content: \"\\f77e\";\n}\n\n.fltf-table-delete-24:before {\n    content: \"\\f77f\";\n}\n\n.fltf-table-edit-24:before {\n    content: \"\\f780\";\n}\n\n.fltf-table-freeze-24:before {\n    content: \"\\f781\";\n}\n\n.fltf-table-freeze-column-24:before {\n    content: \"\\f782\";\n}\n\n.fltf-table-freeze-row-24:before {\n    content: \"\\f783\";\n}\n\n.fltf-table-insert-down-24:before {\n    content: \"\\f784\";\n}\n\n.fltf-table-insert-left-24:before {\n    content: \"\\f785\";\n}\n\n.fltf-table-insert-right-24:before {\n    content: \"\\f786\";\n}\n\n.fltf-table-insert-up-24:before {\n    content: \"\\f787\";\n}\n\n.fltf-table-move-down-24:before {\n    content: \"\\f788\";\n}\n\n.fltf-table-move-left-24:before {\n    content: \"\\f789\";\n}\n\n.fltf-table-move-right-24:before {\n    content: \"\\f78a\";\n}\n\n.fltf-table-move-up-24:before {\n    content: \"\\f78b\";\n}\n\n.fltf-table-row-delete-24:before {\n    content: \"\\f78c\";\n}\n\n.fltf-table-row-insert-24:before {\n    content: \"\\f78d\";\n}\n\n.fltf-table-row-resize-24:before {\n    content: \"\\f78e\";\n}\n\n.fltf-table-settings-24:before {\n    content: \"\\f78f\";\n}\n\n.fltf-table-switch-24:before {\n    content: \"\\f790\";\n}\n\n.fltf-tablet-20:before {\n    content: \"\\f791\";\n}\n\n.fltf-tablet-24:before {\n    content: \"\\f792\";\n}\n\n.fltf-tabs-24:before {\n    content: \"\\f793\";\n}\n\n.fltf-tag-20:before {\n    content: \"\\f794\";\n}\n\n.fltf-tag-24:before {\n    content: \"\\f795\";\n}\n\n.fltf-tap-double-24:before {\n    content: \"\\f796\";\n}\n\n.fltf-tap-single-24:before {\n    content: \"\\f797\";\n}\n\n.fltf-target-16:before {\n    content: \"\\f798\";\n}\n\n.fltf-target-20:before {\n    content: \"\\f799\";\n}\n\n.fltf-target-24:before {\n    content: \"\\f79a\";\n}\n\n.fltf-target-edit-16:before {\n    content: \"\\f79b\";\n}\n\n.fltf-target-edit-20:before {\n    content: \"\\f79c\";\n}\n\n.fltf-target-edit-24:before {\n    content: \"\\f79d\";\n}\n\n.fltf-task-list-20:before {\n    content: \"\\f79e\";\n}\n\n.fltf-task-list-24:before {\n    content: \"\\f79f\";\n}\n\n.fltf-task-list-add-20:before {\n    content: \"\\f7a0\";\n}\n\n.fltf-task-list-add-24:before {\n    content: \"\\f7a1\";\n}\n\n.fltf-tasks-app-24:before {\n    content: \"\\f7a2\";\n}\n\n.fltf-tasks-app-28:before {\n    content: \"\\f7a3\";\n}\n\n.fltf-team-add-24:before {\n    content: \"\\f7a4\";\n}\n\n.fltf-team-delete-24:before {\n    content: \"\\f7a5\";\n}\n\n.fltf-teddy-24:before {\n    content: \"\\f7a6\";\n}\n\n.fltf-temperature-20:before {\n    content: \"\\f7a7\";\n}\n\n.fltf-temperature-24:before {\n    content: \"\\f7a8\";\n}\n\n.fltf-tent-24:before {\n    content: \"\\f7a9\";\n}\n\n.fltf-test-call-24:before {\n    content: \"\\f7aa\";\n}\n\n.fltf-text-24:before {\n    content: \"\\f7ab\";\n}\n\n.fltf-text-add-24:before {\n    content: \"\\f7ac\";\n}\n\n.fltf-text-add-space-after-20:before {\n    content: \"\\f7ad\";\n}\n\n.fltf-text-add-space-after-24:before {\n    content: \"\\f7ae\";\n}\n\n.fltf-text-add-space-before-20:before {\n    content: \"\\f7af\";\n}\n\n.fltf-text-add-space-before-24:before {\n    content: \"\\f7b0\";\n}\n\n.fltf-text-align-center-20:before {\n    content: \"\\f7b1\";\n}\n\n.fltf-text-align-center-24:before {\n    content: \"\\f7b2\";\n}\n\n.fltf-text-align-distributed-20:before {\n    content: \"\\f7b3\";\n}\n\n.fltf-text-align-distributed-24:before {\n    content: \"\\f7b4\";\n}\n\n.fltf-text-align-justify-20:before {\n    content: \"\\f7b5\";\n}\n\n.fltf-text-align-justify-24:before {\n    content: \"\\f7b6\";\n}\n\n.fltf-text-align-left-20:before {\n    content: \"\\f7b7\";\n}\n\n.fltf-text-align-left-24:before {\n    content: \"\\f7b8\";\n}\n\n.fltf-text-align-right-20:before {\n    content: \"\\f7b9\";\n}\n\n.fltf-text-align-right-24:before {\n    content: \"\\f7ba\";\n}\n\n.fltf-text-asterisk-20:before {\n    content: \"\\f7bb\";\n}\n\n.fltf-text-bold-20:before {\n    content: \"\\f7bc\";\n}\n\n.fltf-text-bold-24:before {\n    content: \"\\f7bd\";\n}\n\n.fltf-text-bullet-list-20:before {\n    content: \"\\f7be\";\n}\n\n.fltf-text-bullet-list-24:before {\n    content: \"\\f7bf\";\n}\n\n.fltf-text-bullet-list-add-24:before {\n    content: \"\\f7c0\";\n}\n\n.fltf-text-bullet-list-square-24:before {\n    content: \"\\f7c1\";\n}\n\n.fltf-text-bullet-list-square-warning-16:before {\n    content: \"\\f7c2\";\n}\n\n.fltf-text-bullet-list-square-warning-20:before {\n    content: \"\\f7c3\";\n}\n\n.fltf-text-bullet-list-square-warning-24:before {\n    content: \"\\f7c4\";\n}\n\n.fltf-text-bullet-list-tree-16:before {\n    content: \"\\f7c5\";\n}\n\n.fltf-text-bullet-list-tree-20:before {\n    content: \"\\f7c6\";\n}\n\n.fltf-text-bullet-list-tree-24:before {\n    content: \"\\f7c7\";\n}\n\n.fltf-text-change-accept-20:before {\n    content: \"\\f7c8\";\n}\n\n.fltf-text-change-accept-24:before {\n    content: \"\\f7c9\";\n}\n\n.fltf-text-change-case-20:before {\n    content: \"\\f7ca\";\n}\n\n.fltf-text-change-case-24:before {\n    content: \"\\f7cb\";\n}\n\n.fltf-text-change-next-20:before {\n    content: \"\\f7cc\";\n}\n\n.fltf-text-change-next-24:before {\n    content: \"\\f7cd\";\n}\n\n.fltf-text-change-previous-20:before {\n    content: \"\\f7ce\";\n}\n\n.fltf-text-change-previous-24:before {\n    content: \"\\f7cf\";\n}\n\n.fltf-text-change-reject-20:before {\n    content: \"\\f7d0\";\n}\n\n.fltf-text-change-reject-24:before {\n    content: \"\\f7d1\";\n}\n\n.fltf-text-change-settings-20:before {\n    content: \"\\f7d2\";\n}\n\n.fltf-text-change-settings-24:before {\n    content: \"\\f7d3\";\n}\n\n.fltf-text-clear-formatting-20:before {\n    content: \"\\f7d4\";\n}\n\n.fltf-text-clear-formatting-24:before {\n    content: \"\\f7d5\";\n}\n\n.fltf-text-collapse-24:before {\n    content: \"\\f7d6\";\n}\n\n.fltf-text-color-20:before {\n    content: \"\\f7d7\";\n}\n\n.fltf-text-color-24:before {\n    content: \"\\f7d8\";\n}\n\n.fltf-text-column-one-20:before {\n    content: \"\\f7d9\";\n}\n\n.fltf-text-column-one-24:before {\n    content: \"\\f7da\";\n}\n\n.fltf-text-column-three-20:before {\n    content: \"\\f7db\";\n}\n\n.fltf-text-column-three-24:before {\n    content: \"\\f7dc\";\n}\n\n.fltf-text-column-two-20:before {\n    content: \"\\f7dd\";\n}\n\n.fltf-text-column-two-24:before {\n    content: \"\\f7de\";\n}\n\n.fltf-text-column-two-left-20:before {\n    content: \"\\f7df\";\n}\n\n.fltf-text-column-two-left-24:before {\n    content: \"\\f7e0\";\n}\n\n.fltf-text-column-two-right-20:before {\n    content: \"\\f7e1\";\n}\n\n.fltf-text-column-two-right-24:before {\n    content: \"\\f7e2\";\n}\n\n.fltf-text-description-20:before {\n    content: \"\\f7e3\";\n}\n\n.fltf-text-description-24:before {\n    content: \"\\f7e4\";\n}\n\n.fltf-text-direction-20:before {\n    content: \"\\f7e5\";\n}\n\n.fltf-text-direction-24:before {\n    content: \"\\f7e6\";\n}\n\n.fltf-text-direction-horizontal-ltr-20:before {\n    content: \"\\f7e7\";\n}\n\n.fltf-text-direction-horizontal-ltr-24:before {\n    content: \"\\f7e8\";\n}\n\n.fltf-text-direction-rotate-270-20:before {\n    content: \"\\f7e9\";\n}\n\n.fltf-text-direction-rotate-270-24:before {\n    content: \"\\f7ea\";\n}\n\n.fltf-text-direction-rotate-270-ac-20:before {\n    content: \"\\f7eb\";\n}\n\n.fltf-text-direction-rotate-270-ac-24:before {\n    content: \"\\f7ec\";\n}\n\n.fltf-text-direction-rotate-90-20:before {\n    content: \"\\f7ed\";\n}\n\n.fltf-text-direction-rotate-90-24:before {\n    content: \"\\f7ee\";\n}\n\n.fltf-text-direction-vertical-20:before {\n    content: \"\\f7ef\";\n}\n\n.fltf-text-direction-vertical-24:before {\n    content: \"\\f7f0\";\n}\n\n.fltf-text-edit-style-20:before {\n    content: \"\\f7f1\";\n}\n\n.fltf-text-edit-style-24:before {\n    content: \"\\f7f2\";\n}\n\n.fltf-text-effects-20:before {\n    content: \"\\f7f3\";\n}\n\n.fltf-text-effects-24:before {\n    content: \"\\f7f4\";\n}\n\n.fltf-text-expand-24:before {\n    content: \"\\f7f5\";\n}\n\n.fltf-text-field-16:before {\n    content: \"\\f7f6\";\n}\n\n.fltf-text-field-20:before {\n    content: \"\\f7f7\";\n}\n\n.fltf-text-field-24:before {\n    content: \"\\f7f8\";\n}\n\n.fltf-text-first-line-20:before {\n    content: \"\\f7f9\";\n}\n\n.fltf-text-first-line-24:before {\n    content: \"\\f7fa\";\n}\n\n.fltf-text-font-16:before {\n    content: \"\\f7fb\";\n}\n\n.fltf-text-font-20:before {\n    content: \"\\f7fc\";\n}\n\n.fltf-text-font-24:before {\n    content: \"\\f7fd\";\n}\n\n.fltf-text-font-size-20:before {\n    content: \"\\f7fe\";\n}\n\n.fltf-text-font-size-24:before {\n    content: \"\\f7ff\";\n}\n\n.fltf-text-footnote-20:before {\n    content: \"\\f800\";\n}\n\n.fltf-text-footnote-24:before {\n    content: \"\\f801\";\n}\n\n.fltf-text-grammar-options-16:before {\n    content: \"\\f802\";\n}\n\n.fltf-text-grammar-options-20:before {\n    content: \"\\f803\";\n}\n\n.fltf-text-grammar-options-24:before {\n    content: \"\\f804\";\n}\n\n.fltf-text-hanging-20:before {\n    content: \"\\f805\";\n}\n\n.fltf-text-hanging-24:before {\n    content: \"\\f806\";\n}\n\n.fltf-text-header-1-20:before {\n    content: \"\\f807\";\n}\n\n.fltf-text-header-2-20:before {\n    content: \"\\f808\";\n}\n\n.fltf-text-header-3-20:before {\n    content: \"\\f809\";\n}\n\n.fltf-text-indent-decrease-24:before {\n    content: \"\\f80a\";\n}\n\n.fltf-text-indent-increase-24:before {\n    content: \"\\f80b\";\n}\n\n.fltf-text-italic-20:before {\n    content: \"\\f80c\";\n}\n\n.fltf-text-italic-24:before {\n    content: \"\\f80d\";\n}\n\n.fltf-text-line-spacing-20:before {\n    content: \"\\f80e\";\n}\n\n.fltf-text-line-spacing-24:before {\n    content: \"\\f80f\";\n}\n\n.fltf-text-number-format-20:before {\n    content: \"\\f810\";\n}\n\n.fltf-text-number-format-24:before {\n    content: \"\\f811\";\n}\n\n.fltf-text-number-list-ltr-20:before {\n    content: \"\\f812\";\n}\n\n.fltf-text-number-list-ltr-24:before {\n    content: \"\\f813\";\n}\n\n.fltf-text-number-list-rtl-24:before {\n    content: \"\\f814\";\n}\n\n.fltf-text-paragraph-settings-20:before {\n    content: \"\\f815\";\n}\n\n.fltf-text-paragraph-settings-24:before {\n    content: \"\\f816\";\n}\n\n.fltf-text-proofing-tools-20:before {\n    content: \"\\f817\";\n}\n\n.fltf-text-proofing-tools-24:before {\n    content: \"\\f818\";\n}\n\n.fltf-text-quote-20:before {\n    content: \"\\f819\";\n}\n\n.fltf-text-quote-24:before {\n    content: \"\\f81a\";\n}\n\n.fltf-text-sort-ascending-20:before {\n    content: \"\\f81b\";\n}\n\n.fltf-text-sort-descending-20:before {\n    content: \"\\f81c\";\n}\n\n.fltf-text-strikethrough-20:before {\n    content: \"\\f81d\";\n}\n\n.fltf-text-strikethrough-24:before {\n    content: \"\\f81e\";\n}\n\n.fltf-text-subscript-20:before {\n    content: \"\\f81f\";\n}\n\n.fltf-text-subscript-24:before {\n    content: \"\\f820\";\n}\n\n.fltf-text-superscript-20:before {\n    content: \"\\f821\";\n}\n\n.fltf-text-superscript-24:before {\n    content: \"\\f822\";\n}\n\n.fltf-text-underline-20:before {\n    content: \"\\f823\";\n}\n\n.fltf-text-underline-24:before {\n    content: \"\\f824\";\n}\n\n.fltf-text-word-count-20:before {\n    content: \"\\f825\";\n}\n\n.fltf-text-word-count-24:before {\n    content: \"\\f826\";\n}\n\n.fltf-text-wrap-24:before {\n    content: \"\\f827\";\n}\n\n.fltf-textbox-20:before {\n    content: \"\\f828\";\n}\n\n.fltf-textbox-24:before {\n    content: \"\\f829\";\n}\n\n.fltf-textbox-align-20:before {\n    content: \"\\f82a\";\n}\n\n.fltf-textbox-align-24:before {\n    content: \"\\f82b\";\n}\n\n.fltf-textbox-align-bottom-20:before {\n    content: \"\\f82c\";\n}\n\n.fltf-textbox-align-bottom-24:before {\n    content: \"\\f82d\";\n}\n\n.fltf-textbox-align-middle-20:before {\n    content: \"\\f82e\";\n}\n\n.fltf-textbox-align-middle-24:before {\n    content: \"\\f82f\";\n}\n\n.fltf-textbox-align-top-20:before {\n    content: \"\\f830\";\n}\n\n.fltf-textbox-align-top-24:before {\n    content: \"\\f831\";\n}\n\n.fltf-textbox-vertical-20:before {\n    content: \"\\f832\";\n}\n\n.fltf-textbox-vertical-24:before {\n    content: \"\\f833\";\n}\n\n.fltf-thinking-20:before {\n    content: \"\\f834\";\n}\n\n.fltf-thinking-24:before {\n    content: \"\\f835\";\n}\n\n.fltf-thumb-dislike-20:before {\n    content: \"\\f836\";\n}\n\n.fltf-thumb-dislike-24:before {\n    content: \"\\f837\";\n}\n\n.fltf-thumb-like-20:before {\n    content: \"\\f838\";\n}\n\n.fltf-thumb-like-24:before {\n    content: \"\\f839\";\n}\n\n.fltf-ticket-20:before {\n    content: \"\\f83a\";\n}\n\n.fltf-ticket-24:before {\n    content: \"\\f83b\";\n}\n\n.fltf-time-and-weather-24:before {\n    content: \"\\f83c\";\n}\n\n.fltf-time-picker-24:before {\n    content: \"\\f83d\";\n}\n\n.fltf-timeline-24:before {\n    content: \"\\f83e\";\n}\n\n.fltf-timer-10-24:before {\n    content: \"\\f83f\";\n}\n\n.fltf-timer-24:before {\n    content: \"\\f840\";\n}\n\n.fltf-timer-2-24:before {\n    content: \"\\f841\";\n}\n\n.fltf-timer-off-24:before {\n    content: \"\\f842\";\n}\n\n.fltf-toggle-right-16:before {\n    content: \"\\f843\";\n}\n\n.fltf-toggle-right-20:before {\n    content: \"\\f844\";\n}\n\n.fltf-toggle-right-24:before {\n    content: \"\\f845\";\n}\n\n.fltf-toolbox-16:before {\n    content: \"\\f846\";\n}\n\n.fltf-toolbox-20:before {\n    content: \"\\f847\";\n}\n\n.fltf-toolbox-24:before {\n    content: \"\\f848\";\n}\n\n.fltf-toolbox-28:before {\n    content: \"\\f849\";\n}\n\n.fltf-top-speed-24:before {\n    content: \"\\f84a\";\n}\n\n.fltf-translate-20:before {\n    content: \"\\f84b\";\n}\n\n.fltf-translate-24:before {\n    content: \"\\f84c\";\n}\n\n.fltf-trophy-16:before {\n    content: \"\\f84d\";\n}\n\n.fltf-trophy-20:before {\n    content: \"\\f84e\";\n}\n\n.fltf-trophy-24:before {\n    content: \"\\f84f\";\n}\n\n.fltf-uninstall-app-24:before {\n    content: \"\\f850\";\n}\n\n.fltf-unlock-20:before {\n    content: \"\\f851\";\n}\n\n.fltf-unlock-24:before {\n    content: \"\\f852\";\n}\n\n.fltf-unlock-28:before {\n    content: \"\\f853\";\n}\n\n.fltf-upload-24:before {\n    content: \"\\f854\";\n}\n\n.fltf-usb-port-20:before {\n    content: \"\\f855\";\n}\n\n.fltf-usb-port-24:before {\n    content: \"\\f856\";\n}\n\n.fltf-usb-stick-20:before {\n    content: \"\\f857\";\n}\n\n.fltf-usb-stick-24:before {\n    content: \"\\f858\";\n}\n\n.fltf-vault-16:before {\n    content: \"\\f859\";\n}\n\n.fltf-vault-20:before {\n    content: \"\\f85a\";\n}\n\n.fltf-vault-24:before {\n    content: \"\\f85b\";\n}\n\n.fltf-vehicle-bicycle-24:before {\n    content: \"\\f85c\";\n}\n\n.fltf-vehicle-bus-24:before {\n    content: \"\\f85d\";\n}\n\n.fltf-vehicle-cab-24:before {\n    content: \"\\f85e\";\n}\n\n.fltf-vehicle-car-16:before {\n    content: \"\\f85f\";\n}\n\n.fltf-vehicle-car-20:before {\n    content: \"\\f860\";\n}\n\n.fltf-vehicle-car-24:before {\n    content: \"\\f861\";\n}\n\n.fltf-vehicle-truck-24:before {\n    content: \"\\f862\";\n}\n\n.fltf-video-16:before {\n    content: \"\\f863\";\n}\n\n.fltf-video-20:before {\n    content: \"\\f864\";\n}\n\n.fltf-video-24:before {\n    content: \"\\f865\";\n}\n\n.fltf-video-28:before {\n    content: \"\\f866\";\n}\n\n.fltf-video-background-effect-24:before {\n    content: \"\\f867\";\n}\n\n.fltf-video-clip-24:before {\n    content: \"\\f868\";\n}\n\n.fltf-video-off-20:before {\n    content: \"\\f869\";\n}\n\n.fltf-video-off-24:before {\n    content: \"\\f86a\";\n}\n\n.fltf-video-off-28:before {\n    content: \"\\f86b\";\n}\n\n.fltf-video-person-24:before {\n    content: \"\\f86c\";\n}\n\n.fltf-video-person-off-24:before {\n    content: \"\\f86d\";\n}\n\n.fltf-video-person-star-24:before {\n    content: \"\\f86e\";\n}\n\n.fltf-video-play-pause-24:before {\n    content: \"\\f86f\";\n}\n\n.fltf-video-security-20:before {\n    content: \"\\f870\";\n}\n\n.fltf-video-security-24:before {\n    content: \"\\f871\";\n}\n\n.fltf-video-switch-24:before {\n    content: \"\\f872\";\n}\n\n.fltf-view-desktop-20:before {\n    content: \"\\f873\";\n}\n\n.fltf-view-desktop-24:before {\n    content: \"\\f874\";\n}\n\n.fltf-view-desktop-mobile-20:before {\n    content: \"\\f875\";\n}\n\n.fltf-view-desktop-mobile-24:before {\n    content: \"\\f876\";\n}\n\n.fltf-visual-search-16:before {\n    content: \"\\f877\";\n}\n\n.fltf-visual-search-20:before {\n    content: \"\\f878\";\n}\n\n.fltf-visual-search-24:before {\n    content: \"\\f879\";\n}\n\n.fltf-voicemail-16:before {\n    content: \"\\f87a\";\n}\n\n.fltf-voicemail-20:before {\n    content: \"\\f87b\";\n}\n\n.fltf-voicemail-24:before {\n    content: \"\\f87c\";\n}\n\n.fltf-walkie-talkie-24:before {\n    content: \"\\f87d\";\n}\n\n.fltf-walkie-talkie-28:before {\n    content: \"\\f87e\";\n}\n\n.fltf-wallpaper-24:before {\n    content: \"\\f87f\";\n}\n\n.fltf-warning-16:before {\n    content: \"\\f880\";\n}\n\n.fltf-warning-20:before {\n    content: \"\\f881\";\n}\n\n.fltf-warning-24:before {\n    content: \"\\f882\";\n}\n\n.fltf-weather-blowing-snow-20:before {\n    content: \"\\f883\";\n}\n\n.fltf-weather-blowing-snow-24:before {\n    content: \"\\f884\";\n}\n\n.fltf-weather-blowing-snow-48:before {\n    content: \"\\f885\";\n}\n\n.fltf-weather-cloudy-20:before {\n    content: \"\\f886\";\n}\n\n.fltf-weather-cloudy-24:before {\n    content: \"\\f887\";\n}\n\n.fltf-weather-cloudy-48:before {\n    content: \"\\f888\";\n}\n\n.fltf-weather-duststorm-20:before {\n    content: \"\\f889\";\n}\n\n.fltf-weather-duststorm-24:before {\n    content: \"\\f88a\";\n}\n\n.fltf-weather-duststorm-48:before {\n    content: \"\\f88b\";\n}\n\n.fltf-weather-fog-20:before {\n    content: \"\\f88c\";\n}\n\n.fltf-weather-fog-24:before {\n    content: \"\\f88d\";\n}\n\n.fltf-weather-fog-48:before {\n    content: \"\\f88e\";\n}\n\n.fltf-weather-hail-day-20:before {\n    content: \"\\f88f\";\n}\n\n.fltf-weather-hail-day-24:before {\n    content: \"\\f890\";\n}\n\n.fltf-weather-hail-day-48:before {\n    content: \"\\f891\";\n}\n\n.fltf-weather-hail-night-20:before {\n    content: \"\\f892\";\n}\n\n.fltf-weather-hail-night-24:before {\n    content: \"\\f893\";\n}\n\n.fltf-weather-hail-night-48:before {\n    content: \"\\f894\";\n}\n\n.fltf-weather-moon-20:before {\n    content: \"\\f895\";\n}\n\n.fltf-weather-moon-24:before {\n    content: \"\\f896\";\n}\n\n.fltf-weather-moon-48:before {\n    content: \"\\f897\";\n}\n\n.fltf-weather-partly-cloudy-day-20:before {\n    content: \"\\f898\";\n}\n\n.fltf-weather-partly-cloudy-day-24:before {\n    content: \"\\f899\";\n}\n\n.fltf-weather-partly-cloudy-day-48:before {\n    content: \"\\f89a\";\n}\n\n.fltf-weather-partly-cloudy-night-20:before {\n    content: \"\\f89b\";\n}\n\n.fltf-weather-partly-cloudy-night-24:before {\n    content: \"\\f89c\";\n}\n\n.fltf-weather-partly-cloudy-night-48:before {\n    content: \"\\f89d\";\n}\n\n.fltf-weather-rain-20:before {\n    content: \"\\f89e\";\n}\n\n.fltf-weather-rain-24:before {\n    content: \"\\f89f\";\n}\n\n.fltf-weather-rain-48:before {\n    content: \"\\f8a0\";\n}\n\n.fltf-weather-rain-showers-day-20:before {\n    content: \"\\f8a1\";\n}\n\n.fltf-weather-rain-showers-day-24:before {\n    content: \"\\f8a2\";\n}\n\n.fltf-weather-rain-showers-day-48:before {\n    content: \"\\f8a3\";\n}\n\n.fltf-weather-rain-showers-night-20:before {\n    content: \"\\f8a4\";\n}\n\n.fltf-weather-rain-showers-night-24:before {\n    content: \"\\f8a5\";\n}\n\n.fltf-weather-rain-showers-night-48:before {\n    content: \"\\f8a6\";\n}\n\n.fltf-weather-rain-snow-20:before {\n    content: \"\\f8a7\";\n}\n\n.fltf-weather-rain-snow-24:before {\n    content: \"\\f8a8\";\n}\n\n.fltf-weather-rain-snow-48:before {\n    content: \"\\f8a9\";\n}\n\n.fltf-weather-snow-20:before {\n    content: \"\\f8aa\";\n}\n\n.fltf-weather-snow-24:before {\n    content: \"\\f8ab\";\n}\n\n.fltf-weather-snow-48:before {\n    content: \"\\f8ac\";\n}\n\n.fltf-weather-snow-shower-day-20:before {\n    content: \"\\f8ad\";\n}\n\n.fltf-weather-snow-shower-day-24:before {\n    content: \"\\f8ae\";\n}\n\n.fltf-weather-snow-shower-day-48:before {\n    content: \"\\f8af\";\n}\n\n.fltf-weather-snow-shower-night-20:before {\n    content: \"\\f8b0\";\n}\n\n.fltf-weather-snow-shower-night-24:before {\n    content: \"\\f8b1\";\n}\n\n.fltf-weather-snow-shower-night-48:before {\n    content: \"\\f8b2\";\n}\n\n.fltf-weather-snowflake-20:before {\n    content: \"\\f8b3\";\n}\n\n.fltf-weather-snowflake-24:before {\n    content: \"\\f8b4\";\n}\n\n.fltf-weather-snowflake-48:before {\n    content: \"\\f8b5\";\n}\n\n.fltf-weather-squalls-20:before {\n    content: \"\\f8b6\";\n}\n\n.fltf-weather-squalls-24:before {\n    content: \"\\f8b7\";\n}\n\n.fltf-weather-squalls-48:before {\n    content: \"\\f8b8\";\n}\n\n.fltf-weather-sunny-20:before {\n    content: \"\\f8b9\";\n}\n\n.fltf-weather-sunny-24:before {\n    content: \"\\f8ba\";\n}\n\n.fltf-weather-sunny-48:before {\n    content: \"\\f8bb\";\n}\n\n.fltf-weather-thunderstorm-20:before {\n    content: \"\\f8bc\";\n}\n\n.fltf-weather-thunderstorm-24:before {\n    content: \"\\f8bd\";\n}\n\n.fltf-weather-thunderstorm-48:before {\n    content: \"\\f8be\";\n}\n\n.fltf-web-asset-24:before {\n    content: \"\\f8bf\";\n}\n\n.fltf-weekend-12:before {\n    content: \"\\f8c0\";\n}\n\n.fltf-weekend-24:before {\n    content: \"\\f8c1\";\n}\n\n.fltf-whiteboard-20:before {\n    content: \"\\f8c2\";\n}\n\n.fltf-whiteboard-24:before {\n    content: \"\\f8c3\";\n}\n\n.fltf-wifi-1-20:before {\n    content: \"\\f8c4\";\n}\n\n.fltf-wifi-1-24:before {\n    content: \"\\f8c5\";\n}\n\n.fltf-wifi-2-20:before {\n    content: \"\\f8c6\";\n}\n\n.fltf-wifi-2-24:before {\n    content: \"\\f8c7\";\n}\n\n.fltf-wifi-3-20:before {\n    content: \"\\f8c8\";\n}\n\n.fltf-wifi-3-24:before {\n    content: \"\\f8c9\";\n}\n\n.fltf-wifi-4-20:before {\n    content: \"\\f8ca\";\n}\n\n.fltf-wifi-4-24:before {\n    content: \"\\f8cb\";\n}\n\n.fltf-wifi-protected-24:before {\n    content: \"\\f8cc\";\n}\n\n.fltf-window-20:before {\n    content: \"\\f8cd\";\n}\n\n.fltf-window-ad-20:before {\n    content: \"\\f8ce\";\n}\n\n.fltf-window-dev-tools-16:before {\n    content: \"\\f8cf\";\n}\n\n.fltf-window-dev-tools-20:before {\n    content: \"\\f8d0\";\n}\n\n.fltf-window-dev-tools-24:before {\n    content: \"\\f8d1\";\n}\n\n.fltf-window-inprivate-20:before {\n    content: \"\\f8d2\";\n}\n\n.fltf-window-inprivate-account-20:before {\n    content: \"\\f8d3\";\n}\n\n.fltf-window-multiple-20:before {\n    content: \"\\f8d4\";\n}\n\n.fltf-window-new-20:before {\n    content: \"\\f8d5\";\n}\n\n.fltf-window-shield-16:before {\n    content: \"\\f8d6\";\n}\n\n.fltf-window-shield-20:before {\n    content: \"\\f8d7\";\n}\n\n.fltf-window-shield-24:before {\n    content: \"\\f8d8\";\n}\n\n.fltf-wrench-24:before {\n    content: \"\\f8d9\";\n}\n\n.fltf-xbox-console-20:before {\n    content: \"\\f8da\";\n}\n\n.fltf-xbox-console-24:before {\n    content: \"\\f8db\";\n}\n\n.fltf-zoom-in-20:before {\n    content: \"\\f8dc\";\n}\n\n.fltf-zoom-in-24:before {\n    content: \"\\f8dd\";\n}\n\n.fltf-zoom-out-20:before {\n    content: \"\\f8de\";\n}\n\n.fltf-zoom-out-24:before {\n    content: \"\\f8df\";\n}\n\n.fltf-mail-outbox-20:before {\n    content: \"\\f8e0\";\n}\n\n.fltf-calendar-checkmark-24:before {\n    content: \"\\f8e1\";\n}\n\n.fltf-add-square-24:before {\n    content: \"\\f8e2\";\n}\n\n.fltf-apps-list-20:before {\n    content: \"\\f8e3\";\n}\n\n.fltf-archive-16:before {\n    content: \"\\f8e4\";\n}\n\n.fltf-arrow-autofit-height-24:before {\n    content: \"\\f8e5\";\n}\n\n.fltf-arrow-autofit-width-24:before {\n    content: \"\\f8e6\";\n}\n\n.fltf-arrow-counterclockwise-28:before {\n    content: \"\\f8e7\";\n}\n\n.fltf-arrow-down-12:before {\n    content: \"\\f8e8\";\n}\n\n.fltf-arrow-down-left-16:before {\n    content: \"\\f8e9\";\n}\n\n.fltf-arrow-export-rtl-20:before {\n    content: \"\\f8ea\";\n}\n\n.fltf-arrow-fit-height-24:before {\n    content: \"\\f8eb\";\n}\n\n.fltf-arrow-fit-width-24:before {\n    content: \"\\f8ec\";\n}\n\n.fltf-arrow-hook-down-left-16:before {\n    content: \"\\f8ed\";\n}\n\n.fltf-arrow-hook-down-left-20:before {\n    content: \"\\f8ee\";\n}\n\n.fltf-arrow-hook-down-left-24:before {\n    content: \"\\f8ef\";\n}\n\n.fltf-arrow-hook-down-left-28:before {\n    content: \"\\f8f0\";\n}\n\n.fltf-arrow-hook-down-right-16:before {\n    content: \"\\f8f1\";\n}\n\n.fltf-arrow-hook-down-right-20:before {\n    content: \"\\f8f2\";\n}\n\n.fltf-arrow-hook-down-right-24:before {\n    content: \"\\f8f3\";\n}\n\n.fltf-arrow-hook-down-right-28:before {\n    content: \"\\f8f4\";\n}\n\n.fltf-arrow-hook-up-left-16:before {\n    content: \"\\f8f5\";\n}\n\n.fltf-arrow-hook-up-left-20:before {\n    content: \"\\f8f6\";\n}\n\n.fltf-arrow-hook-up-left-24:before {\n    content: \"\\f8f7\";\n}\n\n.fltf-arrow-hook-up-left-28:before {\n    content: \"\\f8f8\";\n}\n\n.fltf-arrow-hook-up-right-16:before {\n    content: \"\\f8f9\";\n}\n\n.fltf-arrow-hook-up-right-20:before {\n    content: \"\\f8fa\";\n}\n\n.fltf-arrow-hook-up-right-24:before {\n    content: \"\\f8fb\";\n}\n\n.fltf-arrow-hook-up-right-28:before {\n    content: \"\\f8fc\";\n}\n\n.fltf-arrow-move-20:before {\n    content: \"\\f8fd\";\n}\n\n.fltf-arrow-redo-32:before {\n    content: \"\\f8fe\";\n}\n\n.fltf-arrow-redo-48:before {\n    content: \"\\f8ff\";\n}\n\n.fltf-arrow-rotate-left-24:before {\n    content: \"\\f900\";\n}\n\n.fltf-arrow-rotate-right-20:before {\n    content: \"\\f901\";\n}\n\n.fltf-arrow-rotate-right-24:before {\n    content: \"\\f902\";\n}\n\n.fltf-arrow-up-right-16:before {\n    content: \"\\f903\";\n}\n\n.fltf-attach-arrow-right-20:before {\n    content: \"\\f904\";\n}\n\n.fltf-attach-arrow-right-24:before {\n    content: \"\\f905\";\n}\n\n.fltf-attach-text-24:before {\n    content: \"\\f906\";\n}\n\n.fltf-autofit-content-24:before {\n    content: \"\\f907\";\n}\n\n.fltf-backpack-12:before {\n    content: \"\\f908\";\n}\n\n.fltf-backpack-16:before {\n    content: \"\\f909\";\n}\n\n.fltf-backpack-20:before {\n    content: \"\\f90a\";\n}\n\n.fltf-backpack-24:before {\n    content: \"\\f90b\";\n}\n\n.fltf-backpack-28:before {\n    content: \"\\f90c\";\n}\n\n.fltf-backpack-48:before {\n    content: \"\\f90d\";\n}\n\n.fltf-balloon-16:before {\n    content: \"\\f90e\";\n}\n\n.fltf-bed-16:before {\n    content: \"\\f90f\";\n}\n\n.fltf-bluetooth-28:before {\n    content: \"\\f910\";\n}\n\n.fltf-blur-16:before {\n    content: \"\\f911\";\n}\n\n.fltf-blur-20:before {\n    content: \"\\f912\";\n}\n\n.fltf-blur-24:before {\n    content: \"\\f913\";\n}\n\n.fltf-blur-28:before {\n    content: \"\\f914\";\n}\n\n.fltf-book-20:before {\n    content: \"\\f915\";\n}\n\n.fltf-book-24:before {\n    content: \"\\f916\";\n}\n\n.fltf-book-add-20:before {\n    content: \"\\f917\";\n}\n\n.fltf-book-add-24:before {\n    content: \"\\f918\";\n}\n\n.fltf-book-clock-24:before {\n    content: \"\\f919\";\n}\n\n.fltf-book-coins-24:before {\n    content: \"\\f91a\";\n}\n\n.fltf-book-compass-24:before {\n    content: \"\\f91b\";\n}\n\n.fltf-book-database-24:before {\n    content: \"\\f91c\";\n}\n\n.fltf-book-exclamation-mark-24:before {\n    content: \"\\f91d\";\n}\n\n.fltf-book-information-24:before {\n    content: \"\\f91e\";\n}\n\n.fltf-book-letter-24:before {\n    content: \"\\f91f\";\n}\n\n.fltf-book-open-20:before {\n    content: \"\\f920\";\n}\n\n.fltf-book-open-24:before {\n    content: \"\\f921\";\n}\n\n.fltf-book-open-globe-24:before {\n    content: \"\\f922\";\n}\n\n.fltf-book-pulse-24:before {\n    content: \"\\f923\";\n}\n\n.fltf-book-question-mark-24:before {\n    content: \"\\f924\";\n}\n\n.fltf-book-search-24:before {\n    content: \"\\f925\";\n}\n\n.fltf-book-star-24:before {\n    content: \"\\f926\";\n}\n\n.fltf-book-theta-24:before {\n    content: \"\\f927\";\n}\n\n.fltf-border-all-24:before {\n    content: \"\\f928\";\n}\n\n.fltf-border-bottom-24:before {\n    content: \"\\f929\";\n}\n\n.fltf-border-bottom-double-24:before {\n    content: \"\\f92a\";\n}\n\n.fltf-border-bottom-thick-24:before {\n    content: \"\\f92b\";\n}\n\n.fltf-border-left-24:before {\n    content: \"\\f92c\";\n}\n\n.fltf-border-none-24:before {\n    content: \"\\f92d\";\n}\n\n.fltf-border-outside-24:before {\n    content: \"\\f92e\";\n}\n\n.fltf-border-outside-thick-24:before {\n    content: \"\\f92f\";\n}\n\n.fltf-border-right-24:before {\n    content: \"\\f930\";\n}\n\n.fltf-border-top-24:before {\n    content: \"\\f931\";\n}\n\n.fltf-border-top-bottom-24:before {\n    content: \"\\f932\";\n}\n\n.fltf-border-top-bottom-double-24:before {\n    content: \"\\f933\";\n}\n\n.fltf-border-top-bottom-thick-24:before {\n    content: \"\\f934\";\n}\n\n.fltf-briefcase-12:before {\n    content: \"\\f935\";\n}\n\n.fltf-briefcase-32:before {\n    content: \"\\f936\";\n}\n\n.fltf-briefcase-add-24:before {\n    content: \"\\f937\";\n}\n\n.fltf-briefcase-add-32:before {\n    content: \"\\f938\";\n}\n\n.fltf-bug-16:before {\n    content: \"\\f939\";\n}\n\n.fltf-bug-20:before {\n    content: \"\\f93a\";\n}\n\n.fltf-bug-24:before {\n    content: \"\\f93b\";\n}\n\n.fltf-building-bank-16:before {\n    content: \"\\f93c\";\n}\n\n.fltf-building-bank-20:before {\n    content: \"\\f93d\";\n}\n\n.fltf-building-bank-24:before {\n    content: \"\\f93e\";\n}\n\n.fltf-building-government-24:before {\n    content: \"\\f93f\";\n}\n\n.fltf-building-government-32:before {\n    content: \"\\f940\";\n}\n\n.fltf-building-multiple-24:before {\n    content: \"\\f941\";\n}\n\n.fltf-building-shop-16:before {\n    content: \"\\f942\";\n}\n\n.fltf-building-shop-20:before {\n    content: \"\\f943\";\n}\n\n.fltf-building-shop-24:before {\n    content: \"\\f944\";\n}\n\n.fltf-building-skyscraper-16:before {\n    content: \"\\f945\";\n}\n\n.fltf-building-skyscraper-20:before {\n    content: \"\\f946\";\n}\n\n.fltf-building-skyscraper-24:before {\n    content: \"\\f947\";\n}\n\n.fltf-calendar-cancel-16:before {\n    content: \"\\f948\";\n}\n\n.fltf-calendar-clock-16:before {\n    content: \"\\f949\";\n}\n\n.fltf-calendar-mention-20:before {\n    content: \"\\f94a\";\n}\n\n.fltf-calendar-person-24:before {\n    content: \"\\f94b\";\n}\n\n.fltf-calendar-question-mark-16:before {\n    content: \"\\f94c\";\n}\n\n.fltf-calendar-question-mark-20:before {\n    content: \"\\f94d\";\n}\n\n.fltf-calendar-question-mark-24:before {\n    content: \"\\f94e\";\n}\n\n.fltf-call-blocked-16:before {\n    content: \"\\f94f\";\n}\n\n.fltf-call-blocked-20:before {\n    content: \"\\f950\";\n}\n\n.fltf-call-blocked-24:before {\n    content: \"\\f951\";\n}\n\n.fltf-call-blocked-28:before {\n    content: \"\\f952\";\n}\n\n.fltf-call-blocked-48:before {\n    content: \"\\f953\";\n}\n\n.fltf-call-forward-16:before {\n    content: \"\\f954\";\n}\n\n.fltf-call-forward-20:before {\n    content: \"\\f955\";\n}\n\n.fltf-call-forward-28:before {\n    content: \"\\f956\";\n}\n\n.fltf-call-forward-48:before {\n    content: \"\\f957\";\n}\n\n.fltf-call-inbound-20:before {\n    content: \"\\f958\";\n}\n\n.fltf-call-inbound-28:before {\n    content: \"\\f959\";\n}\n\n.fltf-call-inbound-48:before {\n    content: \"\\f95a\";\n}\n\n.fltf-call-missed-28:before {\n    content: \"\\f95b\";\n}\n\n.fltf-call-missed-48:before {\n    content: \"\\f95c\";\n}\n\n.fltf-call-outbound-20:before {\n    content: \"\\f95d\";\n}\n\n.fltf-call-outbound-28:before {\n    content: \"\\f95e\";\n}\n\n.fltf-call-outbound-48:before {\n    content: \"\\f95f\";\n}\n\n.fltf-call-park-16:before {\n    content: \"\\f960\";\n}\n\n.fltf-call-park-20:before {\n    content: \"\\f961\";\n}\n\n.fltf-call-park-28:before {\n    content: \"\\f962\";\n}\n\n.fltf-call-park-48:before {\n    content: \"\\f963\";\n}\n\n.fltf-camera-edit-20:before {\n    content: \"\\f964\";\n}\n\n.fltf-caret-up-12:before {\n    content: \"\\f965\";\n}\n\n.fltf-caret-up-16:before {\n    content: \"\\f966\";\n}\n\n.fltf-caret-up-20:before {\n    content: \"\\f967\";\n}\n\n.fltf-caret-up-24:before {\n    content: \"\\f968\";\n}\n\n.fltf-cart-16:before {\n    content: \"\\f969\";\n}\n\n.fltf-cart-20:before {\n    content: \"\\f96a\";\n}\n\n.fltf-center-horizontally-24:before {\n    content: \"\\f96b\";\n}\n\n.fltf-center-vertically-24:before {\n    content: \"\\f96c\";\n}\n\n.fltf-channel-28:before {\n    content: \"\\f96d\";\n}\n\n.fltf-channel-48:before {\n    content: \"\\f96e\";\n}\n\n.fltf-channel-add-16:before {\n    content: \"\\f96f\";\n}\n\n.fltf-channel-add-20:before {\n    content: \"\\f970\";\n}\n\n.fltf-channel-add-24:before {\n    content: \"\\f971\";\n}\n\n.fltf-channel-add-28:before {\n    content: \"\\f972\";\n}\n\n.fltf-channel-add-48:before {\n    content: \"\\f973\";\n}\n\n.fltf-channel-alert-16:before {\n    content: \"\\f974\";\n}\n\n.fltf-channel-alert-20:before {\n    content: \"\\f975\";\n}\n\n.fltf-channel-alert-24:before {\n    content: \"\\f976\";\n}\n\n.fltf-channel-alert-28:before {\n    content: \"\\f977\";\n}\n\n.fltf-channel-alert-48:before {\n    content: \"\\f978\";\n}\n\n.fltf-channel-arrow-left-16:before {\n    content: \"\\f979\";\n}\n\n.fltf-channel-arrow-left-20:before {\n    content: \"\\f97a\";\n}\n\n.fltf-channel-arrow-left-24:before {\n    content: \"\\f97b\";\n}\n\n.fltf-channel-arrow-left-28:before {\n    content: \"\\f97c\";\n}\n\n.fltf-channel-arrow-left-48:before {\n    content: \"\\f97d\";\n}\n\n.fltf-channel-dismiss-16:before {\n    content: \"\\f97e\";\n}\n\n.fltf-channel-dismiss-20:before {\n    content: \"\\f97f\";\n}\n\n.fltf-channel-dismiss-24:before {\n    content: \"\\f980\";\n}\n\n.fltf-channel-dismiss-28:before {\n    content: \"\\f981\";\n}\n\n.fltf-channel-dismiss-48:before {\n    content: \"\\f982\";\n}\n\n.fltf-chat-16:before {\n    content: \"\\f983\";\n}\n\n.fltf-checkmark-16:before {\n    content: \"\\f984\";\n}\n\n.fltf-chevron-right-circle-24:before {\n    content: \"\\f985\";\n}\n\n.fltf-clipboard-paste-16:before {\n    content: \"\\f986\";\n}\n\n.fltf-clock-dismiss-24:before {\n    content: \"\\f987\";\n}\n\n.fltf-closed-caption-16:before {\n    content: \"\\f988\";\n}\n\n.fltf-closed-caption-20:before {\n    content: \"\\f989\";\n}\n\n.fltf-closed-caption-28:before {\n    content: \"\\f98a\";\n}\n\n.fltf-closed-caption-48:before {\n    content: \"\\f98b\";\n}\n\n.fltf-cloud-download-32:before {\n    content: \"\\f98c\";\n}\n\n.fltf-cloud-download-48:before {\n    content: \"\\f98d\";\n}\n\n.fltf-color-line-16:before {\n    content: \"\\f98e\";\n}\n\n.fltf-comment-12:before {\n    content: \"\\f98f\";\n}\n\n.fltf-comment-28:before {\n    content: \"\\f990\";\n}\n\n.fltf-comment-48:before {\n    content: \"\\f991\";\n}\n\n.fltf-comment-add-12:before {\n    content: \"\\f992\";\n}\n\n.fltf-comment-add-16:before {\n    content: \"\\f993\";\n}\n\n.fltf-comment-add-20:before {\n    content: \"\\f994\";\n}\n\n.fltf-comment-add-28:before {\n    content: \"\\f995\";\n}\n\n.fltf-comment-add-48:before {\n    content: \"\\f996\";\n}\n\n.fltf-comment-arrow-left-12:before {\n    content: \"\\f997\";\n}\n\n.fltf-comment-arrow-left-16:before {\n    content: \"\\f998\";\n}\n\n.fltf-comment-arrow-left-20:before {\n    content: \"\\f999\";\n}\n\n.fltf-comment-arrow-left-28:before {\n    content: \"\\f99a\";\n}\n\n.fltf-comment-arrow-left-48:before {\n    content: \"\\f99b\";\n}\n\n.fltf-comment-arrow-right-12:before {\n    content: \"\\f99c\";\n}\n\n.fltf-comment-arrow-right-16:before {\n    content: \"\\f99d\";\n}\n\n.fltf-comment-arrow-right-20:before {\n    content: \"\\f99e\";\n}\n\n.fltf-comment-arrow-right-28:before {\n    content: \"\\f99f\";\n}\n\n.fltf-comment-arrow-right-48:before {\n    content: \"\\f9a0\";\n}\n\n.fltf-comment-checkmark-12:before {\n    content: \"\\f9a1\";\n}\n\n.fltf-comment-checkmark-16:before {\n    content: \"\\f9a2\";\n}\n\n.fltf-comment-checkmark-20:before {\n    content: \"\\f9a3\";\n}\n\n.fltf-comment-checkmark-24:before {\n    content: \"\\f9a4\";\n}\n\n.fltf-comment-checkmark-28:before {\n    content: \"\\f9a5\";\n}\n\n.fltf-comment-checkmark-48:before {\n    content: \"\\f9a6\";\n}\n\n.fltf-comment-edit-20:before {\n    content: \"\\f9a7\";\n}\n\n.fltf-comment-edit-24:before {\n    content: \"\\f9a8\";\n}\n\n.fltf-comment-off-16:before {\n    content: \"\\f9a9\";\n}\n\n.fltf-comment-off-20:before {\n    content: \"\\f9aa\";\n}\n\n.fltf-comment-off-24:before {\n    content: \"\\f9ab\";\n}\n\n.fltf-comment-off-28:before {\n    content: \"\\f9ac\";\n}\n\n.fltf-comment-off-48:before {\n    content: \"\\f9ad\";\n}\n\n.fltf-contact-card-group-16:before {\n    content: \"\\f9ae\";\n}\n\n.fltf-contact-card-group-20:before {\n    content: \"\\f9af\";\n}\n\n.fltf-contact-card-group-28:before {\n    content: \"\\f9b0\";\n}\n\n.fltf-contact-card-group-48:before {\n    content: \"\\f9b1\";\n}\n\n.fltf-convert-range-24:before {\n    content: \"\\f9b2\";\n}\n\n.fltf-copy-add-24:before {\n    content: \"\\f9b3\";\n}\n\n.fltf-copy-select-20:before {\n    content: \"\\f9b4\";\n}\n\n.fltf-couch-12:before {\n    content: \"\\f9b5\";\n}\n\n.fltf-couch-24:before {\n    content: \"\\f9b6\";\n}\n\n.fltf-crop-20:before {\n    content: \"\\f9b7\";\n}\n\n.fltf-currency-dollar-rupee-16:before {\n    content: \"\\f9b8\";\n}\n\n.fltf-currency-dollar-rupee-20:before {\n    content: \"\\f9b9\";\n}\n\n.fltf-currency-dollar-rupee-24:before {\n    content: \"\\f9ba\";\n}\n\n.fltf-cursor-20:before {\n    content: \"\\f9bb\";\n}\n\n.fltf-cursor-24:before {\n    content: \"\\f9bc\";\n}\n\n.fltf-cursor-hover-16:before {\n    content: \"\\f9bd\";\n}\n\n.fltf-cursor-hover-20:before {\n    content: \"\\f9be\";\n}\n\n.fltf-cursor-hover-24:before {\n    content: \"\\f9bf\";\n}\n\n.fltf-cursor-hover-28:before {\n    content: \"\\f9c0\";\n}\n\n.fltf-cursor-hover-32:before {\n    content: \"\\f9c1\";\n}\n\n.fltf-cursor-hover-48:before {\n    content: \"\\f9c2\";\n}\n\n.fltf-cursor-hover-off-16:before {\n    content: \"\\f9c3\";\n}\n\n.fltf-cursor-hover-off-20:before {\n    content: \"\\f9c4\";\n}\n\n.fltf-cursor-hover-off-24:before {\n    content: \"\\f9c5\";\n}\n\n.fltf-cursor-hover-off-28:before {\n    content: \"\\f9c6\";\n}\n\n.fltf-cursor-hover-off-48:before {\n    content: \"\\f9c7\";\n}\n\n.fltf-data-bar-vertical-add-24:before {\n    content: \"\\f9c8\";\n}\n\n.fltf-data-usage-20:before {\n    content: \"\\f9c9\";\n}\n\n.fltf-decimal-arrow-left-24:before {\n    content: \"\\f9ca\";\n}\n\n.fltf-decimal-arrow-right-24:before {\n    content: \"\\f9cb\";\n}\n\n.fltf-delete-16:before {\n    content: \"\\f9cc\";\n}\n\n.fltf-dentist-12:before {\n    content: \"\\f9cd\";\n}\n\n.fltf-dentist-16:before {\n    content: \"\\f9ce\";\n}\n\n.fltf-dentist-20:before {\n    content: \"\\f9cf\";\n}\n\n.fltf-dentist-28:before {\n    content: \"\\f9d0\";\n}\n\n.fltf-dentist-48:before {\n    content: \"\\f9d1\";\n}\n\n.fltf-dismiss-circle-28:before {\n    content: \"\\f9d2\";\n}\n\n.fltf-dock-left-28:before {\n    content: \"\\f9d3\";\n}\n\n.fltf-dock-left-48:before {\n    content: \"\\f9d4\";\n}\n\n.fltf-dock-right-16:before {\n    content: \"\\f9d5\";\n}\n\n.fltf-dock-right-20:before {\n    content: \"\\f9d6\";\n}\n\n.fltf-dock-right-24:before {\n    content: \"\\f9d7\";\n}\n\n.fltf-dock-right-28:before {\n    content: \"\\f9d8\";\n}\n\n.fltf-dock-right-48:before {\n    content: \"\\f9d9\";\n}\n\n.fltf-doctor-12:before {\n    content: \"\\f9da\";\n}\n\n.fltf-doctor-16:before {\n    content: \"\\f9db\";\n}\n\n.fltf-doctor-20:before {\n    content: \"\\f9dc\";\n}\n\n.fltf-doctor-28:before {\n    content: \"\\f9dd\";\n}\n\n.fltf-doctor-48:before {\n    content: \"\\f9de\";\n}\n\n.fltf-document-16:before {\n    content: \"\\f9df\";\n}\n\n.fltf-document-48:before {\n    content: \"\\f9e0\";\n}\n\n.fltf-document-add-16:before {\n    content: \"\\f9e1\";\n}\n\n.fltf-document-add-20:before {\n    content: \"\\f9e2\";\n}\n\n.fltf-document-add-24:before {\n    content: \"\\f9e3\";\n}\n\n.fltf-document-add-28:before {\n    content: \"\\f9e4\";\n}\n\n.fltf-document-add-48:before {\n    content: \"\\f9e5\";\n}\n\n.fltf-document-arrow-left-16:before {\n    content: \"\\f9e6\";\n}\n\n.fltf-document-arrow-left-20:before {\n    content: \"\\f9e7\";\n}\n\n.fltf-document-arrow-left-24:before {\n    content: \"\\f9e8\";\n}\n\n.fltf-document-arrow-left-28:before {\n    content: \"\\f9e9\";\n}\n\n.fltf-document-arrow-left-48:before {\n    content: \"\\f9ea\";\n}\n\n.fltf-document-catch-up-16:before {\n    content: \"\\f9eb\";\n}\n\n.fltf-document-catch-up-20:before {\n    content: \"\\f9ec\";\n}\n\n.fltf-document-landscape-data-24:before {\n    content: \"\\f9ed\";\n}\n\n.fltf-document-landscape-split-20:before {\n    content: \"\\f9ee\";\n}\n\n.fltf-document-landscape-split-hint-20:before {\n    content: \"\\f9ef\";\n}\n\n.fltf-document-page-break-20:before {\n    content: \"\\f9f0\";\n}\n\n.fltf-drink-beer-16:before {\n    content: \"\\f9f1\";\n}\n\n.fltf-drink-beer-20:before {\n    content: \"\\f9f2\";\n}\n\n.fltf-drink-coffee-16:before {\n    content: \"\\f9f3\";\n}\n\n.fltf-drink-margarita-16:before {\n    content: \"\\f9f4\";\n}\n\n.fltf-drink-margarita-20:before {\n    content: \"\\f9f5\";\n}\n\n.fltf-drink-wine-16:before {\n    content: \"\\f9f6\";\n}\n\n.fltf-drink-wine-20:before {\n    content: \"\\f9f7\";\n}\n\n.fltf-dual-screen-span-24:before {\n    content: \"\\f9f8\";\n}\n\n.fltf-edit-32:before {\n    content: \"\\f9f9\";\n}\n\n.fltf-edit-off-16:before {\n    content: \"\\f9fa\";\n}\n\n.fltf-edit-off-24:before {\n    content: \"\\f9fb\";\n}\n\n.fltf-edit-settings-24:before {\n    content: \"\\f9fc\";\n}\n\n.fltf-emoji-add-16:before {\n    content: \"\\f9fd\";\n}\n\n.fltf-emoji-hand-24:before {\n    content: \"\\f9fe\";\n}\n\n.fltf-emoji-hand-28:before {\n    content: \"\\f9ff\";\n}\n\n.fltf-eraser-20:before {\n    content: \"\\fa00\";\n}\n\n.fltf-eraser-24:before {\n    content: \"\\fa01\";\n}\n\n.fltf-eraser-medium-24:before {\n    content: \"\\fa02\";\n}\n\n.fltf-eraser-segment-24:before {\n    content: \"\\fa03\";\n}\n\n.fltf-eraser-small-24:before {\n    content: \"\\fa04\";\n}\n\n.fltf-error-circle-12:before {\n    content: \"\\fa05\";\n}\n\n.fltf-eye-tracking-16:before {\n    content: \"\\fa06\";\n}\n\n.fltf-eye-tracking-20:before {\n    content: \"\\fa07\";\n}\n\n.fltf-eye-tracking-24:before {\n    content: \"\\fa08\";\n}\n\n.fltf-eye-tracking-off-16:before {\n    content: \"\\fa09\";\n}\n\n.fltf-eye-tracking-off-20:before {\n    content: \"\\fa0a\";\n}\n\n.fltf-eye-tracking-off-24:before {\n    content: \"\\fa0b\";\n}\n\n.fltf-f-stop-16:before {\n    content: \"\\fa0c\";\n}\n\n.fltf-f-stop-20:before {\n    content: \"\\fa0d\";\n}\n\n.fltf-f-stop-24:before {\n    content: \"\\fa0e\";\n}\n\n.fltf-f-stop-28:before {\n    content: \"\\fa0f\";\n}\n\n.fltf-fingerprint-48:before {\n    content: \"\\fa10\";\n}\n\n.fltf-fixed-width-24:before {\n    content: \"\\fa11\";\n}\n\n.fltf-flip-horizontal-24:before {\n    content: \"\\fa12\";\n}\n\n.fltf-flip-vertical-24:before {\n    content: \"\\fa13\";\n}\n\n.fltf-fluent-32:before {\n    content: \"\\fa14\";\n}\n\n.fltf-fluent-48:before {\n    content: \"\\fa15\";\n}\n\n.fltf-fluid-20:before {\n    content: \"\\fa16\";\n}\n\n.fltf-fluid-24:before {\n    content: \"\\fa17\";\n}\n\n.fltf-folder-move-16:before {\n    content: \"\\fa18\";\n}\n\n.fltf-food-egg-16:before {\n    content: \"\\fa19\";\n}\n\n.fltf-food-egg-20:before {\n    content: \"\\fa1a\";\n}\n\n.fltf-food-toast-16:before {\n    content: \"\\fa1b\";\n}\n\n.fltf-food-toast-20:before {\n    content: \"\\fa1c\";\n}\n\n.fltf-gavel-24:before {\n    content: \"\\fa1d\";\n}\n\n.fltf-gavel-32:before {\n    content: \"\\fa1e\";\n}\n\n.fltf-glasses-16:before {\n    content: \"\\fa1f\";\n}\n\n.fltf-glasses-20:before {\n    content: \"\\fa20\";\n}\n\n.fltf-glasses-28:before {\n    content: \"\\fa21\";\n}\n\n.fltf-glasses-48:before {\n    content: \"\\fa22\";\n}\n\n.fltf-glasses-off-16:before {\n    content: \"\\fa23\";\n}\n\n.fltf-glasses-off-20:before {\n    content: \"\\fa24\";\n}\n\n.fltf-glasses-off-28:before {\n    content: \"\\fa25\";\n}\n\n.fltf-glasses-off-48:before {\n    content: \"\\fa26\";\n}\n\n.fltf-globe-16:before {\n    content: \"\\fa27\";\n}\n\n.fltf-hand-left-20:before {\n    content: \"\\fa28\";\n}\n\n.fltf-hand-right-24:before {\n    content: \"\\fa29\";\n}\n\n.fltf-hand-right-28:before {\n    content: \"\\fa2a\";\n}\n\n.fltf-hat-graduation-16:before {\n    content: \"\\fa2b\";\n}\n\n.fltf-hat-graduation-20:before {\n    content: \"\\fa2c\";\n}\n\n.fltf-hat-graduation-24:before {\n    content: \"\\fa2d\";\n}\n\n.fltf-hd-16:before {\n    content: \"\\fa2e\";\n}\n\n.fltf-hd-20:before {\n    content: \"\\fa2f\";\n}\n\n.fltf-hd-24:before {\n    content: \"\\fa30\";\n}\n\n.fltf-headset-16:before {\n    content: \"\\fa31\";\n}\n\n.fltf-headset-20:before {\n    content: \"\\fa32\";\n}\n\n.fltf-headset-48:before {\n    content: \"\\fa33\";\n}\n\n.fltf-heart-pulse-24:before {\n    content: \"\\fa34\";\n}\n\n.fltf-heart-pulse-32:before {\n    content: \"\\fa35\";\n}\n\n.fltf-home-16:before {\n    content: \"\\fa36\";\n}\n\n.fltf-home-32:before {\n    content: \"\\fa37\";\n}\n\n.fltf-home-48:before {\n    content: \"\\fa38\";\n}\n\n.fltf-image-arrow-counterclockwise-24:before {\n    content: \"\\fa39\";\n}\n\n.fltf-info-shield-20:before {\n    content: \"\\fa3a\";\n}\n\n.fltf-key-multiple-20:before {\n    content: \"\\fa3b\";\n}\n\n.fltf-line-horizontal-5-error-20:before {\n    content: \"\\fa3c\";\n}\n\n.fltf-link-square-12:before {\n    content: \"\\fa3d\";\n}\n\n.fltf-link-square-16:before {\n    content: \"\\fa3e\";\n}\n\n.fltf-location-48:before {\n    content: \"\\fa3f\";\n}\n\n.fltf-location-off-16:before {\n    content: \"\\fa40\";\n}\n\n.fltf-location-off-20:before {\n    content: \"\\fa41\";\n}\n\n.fltf-location-off-24:before {\n    content: \"\\fa42\";\n}\n\n.fltf-location-off-28:before {\n    content: \"\\fa43\";\n}\n\n.fltf-location-off-48:before {\n    content: \"\\fa44\";\n}\n\n.fltf-lock-multiple-24:before {\n    content: \"\\fa45\";\n}\n\n.fltf-lottery-24:before {\n    content: \"\\fa46\";\n}\n\n.fltf-magic-wand-16:before {\n    content: \"\\fa47\";\n}\n\n.fltf-magic-wand-20:before {\n    content: \"\\fa48\";\n}\n\n.fltf-magic-wand-28:before {\n    content: \"\\fa49\";\n}\n\n.fltf-magic-wand-48:before {\n    content: \"\\fa4a\";\n}\n\n.fltf-mail-16:before {\n    content: \"\\fa4b\";\n}\n\n.fltf-mail-read-16:before {\n    content: \"\\fa4c\";\n}\n\n.fltf-math-format-linear-24:before {\n    content: \"\\fa4d\";\n}\n\n.fltf-math-format-professional-24:before {\n    content: \"\\fa4e\";\n}\n\n.fltf-math-formula-24:before {\n    content: \"\\fa4f\";\n}\n\n.fltf-maximize-20:before {\n    content: \"\\fa50\";\n}\n\n.fltf-maximize-24:before {\n    content: \"\\fa51\";\n}\n\n.fltf-maximize-28:before {\n    content: \"\\fa52\";\n}\n\n.fltf-maximize-48:before {\n    content: \"\\fa53\";\n}\n\n.fltf-meet-now-16:before {\n    content: \"\\fa54\";\n}\n\n.fltf-mic-off-20:before {\n    content: \"\\fa55\";\n}\n\n.fltf-mic-off-48:before {\n    content: \"\\fa56\";\n}\n\n.fltf-mic-prohibited-24:before {\n    content: \"\\fa57\";\n}\n\n.fltf-minimize-12:before {\n    content: \"\\fa58\";\n}\n\n.fltf-minimize-16:before {\n    content: \"\\fa59\";\n}\n\n.fltf-minimize-20:before {\n    content: \"\\fa5a\";\n}\n\n.fltf-minimize-24:before {\n    content: \"\\fa5b\";\n}\n\n.fltf-minimize-28:before {\n    content: \"\\fa5c\";\n}\n\n.fltf-minimize-48:before {\n    content: \"\\fa5d\";\n}\n\n.fltf-more-circle-20:before {\n    content: \"\\fa5e\";\n}\n\n.fltf-movies-and-tv-16:before {\n    content: \"\\fa5f\";\n}\n\n.fltf-movies-and-tv-20:before {\n    content: \"\\fa60\";\n}\n\n.fltf-music-note-20:before {\n    content: \"\\fa61\";\n}\n\n.fltf-music-note-24:before {\n    content: \"\\fa62\";\n}\n\n.fltf-music-notes-16:before {\n    content: \"\\fa63\";\n}\n\n.fltf-music-notes-24:before {\n    content: \"\\fa64\";\n}\n\n.fltf-navigation-unread-24:before {\n    content: \"\\fa65\";\n}\n\n.fltf-number-symbol-dismiss-24:before {\n    content: \"\\fa66\";\n}\n\n.fltf-open-28:before {\n    content: \"\\fa67\";\n}\n\n.fltf-open-48:before {\n    content: \"\\fa68\";\n}\n\n.fltf-open-folder-16:before {\n    content: \"\\fa69\";\n}\n\n.fltf-open-folder-20:before {\n    content: \"\\fa6a\";\n}\n\n.fltf-open-folder-28:before {\n    content: \"\\fa6b\";\n}\n\n.fltf-open-folder-48:before {\n    content: \"\\fa6c\";\n}\n\n.fltf-open-off-16:before {\n    content: \"\\fa6d\";\n}\n\n.fltf-open-off-20:before {\n    content: \"\\fa6e\";\n}\n\n.fltf-open-off-24:before {\n    content: \"\\fa6f\";\n}\n\n.fltf-open-off-28:before {\n    content: \"\\fa70\";\n}\n\n.fltf-open-off-48:before {\n    content: \"\\fa71\";\n}\n\n.fltf-paint-brush-arrow-down-24:before {\n    content: \"\\fa72\";\n}\n\n.fltf-paint-brush-arrow-up-24:before {\n    content: \"\\fa73\";\n}\n\n.fltf-pause-12:before {\n    content: \"\\fa74\";\n}\n\n.fltf-payment-16:before {\n    content: \"\\fa75\";\n}\n\n.fltf-payment-28:before {\n    content: \"\\fa76\";\n}\n\n.fltf-people-prohibited-16:before {\n    content: \"\\fa77\";\n}\n\n.fltf-people-swap-16:before {\n    content: \"\\fa78\";\n}\n\n.fltf-people-swap-20:before {\n    content: \"\\fa79\";\n}\n\n.fltf-people-swap-24:before {\n    content: \"\\fa7a\";\n}\n\n.fltf-people-swap-28:before {\n    content: \"\\fa7b\";\n}\n\n.fltf-people-team-add-20:before {\n    content: \"\\fa7c\";\n}\n\n.fltf-people-team-add-24:before {\n    content: \"\\fa7d\";\n}\n\n.fltf-people-team-dismiss-24:before {\n    content: \"\\fa7e\";\n}\n\n.fltf-person-available-20:before {\n    content: \"\\fa7f\";\n}\n\n.fltf-person-clock-16:before {\n    content: \"\\fa80\";\n}\n\n.fltf-person-clock-20:before {\n    content: \"\\fa81\";\n}\n\n.fltf-person-clock-24:before {\n    content: \"\\fa82\";\n}\n\n.fltf-person-delete-20:before {\n    content: \"\\fa83\";\n}\n\n.fltf-person-mail-16:before {\n    content: \"\\fa84\";\n}\n\n.fltf-person-mail-20:before {\n    content: \"\\fa85\";\n}\n\n.fltf-person-mail-24:before {\n    content: \"\\fa86\";\n}\n\n.fltf-person-mail-28:before {\n    content: \"\\fa87\";\n}\n\n.fltf-person-mail-48:before {\n    content: \"\\fa88\";\n}\n\n.fltf-person-prohibited-24:before {\n    content: \"\\fa89\";\n}\n\n.fltf-phone-16:before {\n    content: \"\\fa8a\";\n}\n\n.fltf-poll-20:before {\n    content: \"\\fa8b\";\n}\n\n.fltf-pulse-24:before {\n    content: \"\\fa8c\";\n}\n\n.fltf-qr-code-20:before {\n    content: \"\\fa8d\";\n}\n\n.fltf-real-estate-24:before {\n    content: \"\\fa8e\";\n}\n\n.fltf-ribbon-24:before {\n    content: \"\\fa8f\";\n}\n\n.fltf-ribbon-star-20:before {\n    content: \"\\fa90\";\n}\n\n.fltf-ribbon-star-24:before {\n    content: \"\\fa91\";\n}\n\n.fltf-run-16:before {\n    content: \"\\fa92\";\n}\n\n.fltf-run-20:before {\n    content: \"\\fa93\";\n}\n\n.fltf-scales-24:before {\n    content: \"\\fa94\";\n}\n\n.fltf-scales-32:before {\n    content: \"\\fa95\";\n}\n\n.fltf-search-shield-20:before {\n    content: \"\\fa96\";\n}\n\n.fltf-share-stop-16:before {\n    content: \"\\fa97\";\n}\n\n.fltf-share-stop-20:before {\n    content: \"\\fa98\";\n}\n\n.fltf-share-stop-48:before {\n    content: \"\\fa99\";\n}\n\n.fltf-shield-dismiss-shield-20:before {\n    content: \"\\fa9a\";\n}\n\n.fltf-shifts-day-20:before {\n    content: \"\\fa9b\";\n}\n\n.fltf-shifts-day-24:before {\n    content: \"\\fa9c\";\n}\n\n.fltf-sidebar-search-ltr-20:before {\n    content: \"\\fa9d\";\n}\n\n.fltf-sidebar-search-rtl-20:before {\n    content: \"\\fa9e\";\n}\n\n.fltf-sign-out-20:before {\n    content: \"\\fa9f\";\n}\n\n.fltf-slide-multiple-arrow-right-24:before {\n    content: \"\\faa0\";\n}\n\n.fltf-slide-search-24:before {\n    content: \"\\faa1\";\n}\n\n.fltf-slide-search-28:before {\n    content: \"\\faa2\";\n}\n\n.fltf-slide-size-24:before {\n    content: \"\\faa3\";\n}\n\n.fltf-slide-text-16:before {\n    content: \"\\faa4\";\n}\n\n.fltf-slide-text-20:before {\n    content: \"\\faa5\";\n}\n\n.fltf-slide-text-28:before {\n    content: \"\\faa6\";\n}\n\n.fltf-slide-text-48:before {\n    content: \"\\faa7\";\n}\n\n.fltf-speaker-0-16:before {\n    content: \"\\faa8\";\n}\n\n.fltf-speaker-0-20:before {\n    content: \"\\faa9\";\n}\n\n.fltf-speaker-0-28:before {\n    content: \"\\faaa\";\n}\n\n.fltf-speaker-0-48:before {\n    content: \"\\faab\";\n}\n\n.fltf-speaker-1-16:before {\n    content: \"\\faac\";\n}\n\n.fltf-speaker-1-20:before {\n    content: \"\\faad\";\n}\n\n.fltf-speaker-1-28:before {\n    content: \"\\faae\";\n}\n\n.fltf-speaker-1-48:before {\n    content: \"\\faaf\";\n}\n\n.fltf-speaker-48:before {\n    content: \"\\fab0\";\n}\n\n.fltf-speaker-bluetooth-28:before {\n    content: \"\\fab1\";\n}\n\n.fltf-speaker-none-16:before {\n    content: \"\\fab2\";\n}\n\n.fltf-speaker-none-48:before {\n    content: \"\\fab3\";\n}\n\n.fltf-speaker-off-16:before {\n    content: \"\\fab4\";\n}\n\n.fltf-speaker-off-20:before {\n    content: \"\\fab5\";\n}\n\n.fltf-speaker-off-48:before {\n    content: \"\\fab6\";\n}\n\n.fltf-speaker-usb-24:before {\n    content: \"\\fab7\";\n}\n\n.fltf-speaker-usb-28:before {\n    content: \"\\fab8\";\n}\n\n.fltf-sport-16:before {\n    content: \"\\fab9\";\n}\n\n.fltf-sport-20:before {\n    content: \"\\faba\";\n}\n\n.fltf-sport-24:before {\n    content: \"\\fabb\";\n}\n\n.fltf-sport-american-football-24:before {\n    content: \"\\fabc\";\n}\n\n.fltf-sport-baseball-24:before {\n    content: \"\\fabd\";\n}\n\n.fltf-sport-basketball-24:before {\n    content: \"\\fabe\";\n}\n\n.fltf-sport-hockey-24:before {\n    content: \"\\fabf\";\n}\n\n.fltf-star-edit-24:before {\n    content: \"\\fac0\";\n}\n\n.fltf-tab-desktop-arrow-left-20:before {\n    content: \"\\fac1\";\n}\n\n.fltf-tab-prohibited-24:before {\n    content: \"\\fac2\";\n}\n\n.fltf-table-16:before {\n    content: \"\\fac3\";\n}\n\n.fltf-table-28:before {\n    content: \"\\fac4\";\n}\n\n.fltf-table-48:before {\n    content: \"\\fac5\";\n}\n\n.fltf-table-simple-16:before {\n    content: \"\\fac6\";\n}\n\n.fltf-table-simple-20:before {\n    content: \"\\fac7\";\n}\n\n.fltf-table-simple-24:before {\n    content: \"\\fac8\";\n}\n\n.fltf-table-simple-28:before {\n    content: \"\\fac9\";\n}\n\n.fltf-table-simple-48:before {\n    content: \"\\faca\";\n}\n\n.fltf-tag-16:before {\n    content: \"\\facb\";\n}\n\n.fltf-tasks-app-20:before {\n    content: \"\\facc\";\n}\n\n.fltf-tent-12:before {\n    content: \"\\facd\";\n}\n\n.fltf-tent-16:before {\n    content: \"\\face\";\n}\n\n.fltf-tent-20:before {\n    content: \"\\facf\";\n}\n\n.fltf-tent-28:before {\n    content: \"\\fad0\";\n}\n\n.fltf-tent-48:before {\n    content: \"\\fad1\";\n}\n\n.fltf-text-bold-16:before {\n    content: \"\\fad2\";\n}\n\n.fltf-text-color-16:before {\n    content: \"\\fad3\";\n}\n\n.fltf-text-column-one-narrow-20:before {\n    content: \"\\fad4\";\n}\n\n.fltf-text-column-one-narrow-24:before {\n    content: \"\\fad5\";\n}\n\n.fltf-text-column-one-wide-20:before {\n    content: \"\\fad6\";\n}\n\n.fltf-text-column-one-wide-24:before {\n    content: \"\\fad7\";\n}\n\n.fltf-text-continuous-24:before {\n    content: \"\\fad8\";\n}\n\n.fltf-text-indent-decrease-20:before {\n    content: \"\\fad9\";\n}\n\n.fltf-text-indent-increase-20:before {\n    content: \"\\fada\";\n}\n\n.fltf-text-italic-16:before {\n    content: \"\\fadb\";\n}\n\n.fltf-text-strikethrough-16:before {\n    content: \"\\fadc\";\n}\n\n.fltf-text-underline-16:before {\n    content: \"\\fadd\";\n}\n\n.fltf-text-wrap-behind-20:before {\n    content: \"\\fade\";\n}\n\n.fltf-text-wrap-behind-24:before {\n    content: \"\\fadf\";\n}\n\n.fltf-text-wrap-front-20:before {\n    content: \"\\fae0\";\n}\n\n.fltf-text-wrap-front-24:before {\n    content: \"\\fae1\";\n}\n\n.fltf-text-wrap-line-20:before {\n    content: \"\\fae2\";\n}\n\n.fltf-text-wrap-line-24:before {\n    content: \"\\fae3\";\n}\n\n.fltf-text-wrap-square-20:before {\n    content: \"\\fae4\";\n}\n\n.fltf-text-wrap-square-24:before {\n    content: \"\\fae5\";\n}\n\n.fltf-text-wrap-through-20:before {\n    content: \"\\fae6\";\n}\n\n.fltf-text-wrap-through-24:before {\n    content: \"\\fae7\";\n}\n\n.fltf-text-wrap-tight-20:before {\n    content: \"\\fae8\";\n}\n\n.fltf-text-wrap-tight-24:before {\n    content: \"\\fae9\";\n}\n\n.fltf-text-wrap-top-bottom-20:before {\n    content: \"\\faea\";\n}\n\n.fltf-text-wrap-top-bottom-24:before {\n    content: \"\\faeb\";\n}\n\n.fltf-ticket-diagonal-16:before {\n    content: \"\\faec\";\n}\n\n.fltf-ticket-diagonal-20:before {\n    content: \"\\faed\";\n}\n\n.fltf-ticket-diagonal-24:before {\n    content: \"\\faee\";\n}\n\n.fltf-ticket-diagonal-28:before {\n    content: \"\\faef\";\n}\n\n.fltf-timer-16:before {\n    content: \"\\faf0\";\n}\n\n.fltf-timer-20:before {\n    content: \"\\faf1\";\n}\n\n.fltf-toggle-left-16:before {\n    content: \"\\faf2\";\n}\n\n.fltf-toggle-left-20:before {\n    content: \"\\faf3\";\n}\n\n.fltf-toggle-left-24:before {\n    content: \"\\faf4\";\n}\n\n.fltf-toggle-left-28:before {\n    content: \"\\faf5\";\n}\n\n.fltf-toggle-left-48:before {\n    content: \"\\faf6\";\n}\n\n.fltf-toggle-right-28:before {\n    content: \"\\faf7\";\n}\n\n.fltf-toggle-right-48:before {\n    content: \"\\faf8\";\n}\n\n.fltf-tv-16:before {\n    content: \"\\faf9\";\n}\n\n.fltf-tv-20:before {\n    content: \"\\fafa\";\n}\n\n.fltf-tv-24:before {\n    content: \"\\fafb\";\n}\n\n.fltf-tv-28:before {\n    content: \"\\fafc\";\n}\n\n.fltf-tv-48:before {\n    content: \"\\fafd\";\n}\n\n.fltf-vehicle-bicycle-16:before {\n    content: \"\\fafe\";\n}\n\n.fltf-vehicle-bicycle-20:before {\n    content: \"\\faff\";\n}\n\n.fltf-vehicle-bus-16:before {\n    content: \"\\fb00\";\n}\n\n.fltf-vehicle-bus-20:before {\n    content: \"\\fb01\";\n}\n\n.fltf-vehicle-car-28:before {\n    content: \"\\fb02\";\n}\n\n.fltf-vehicle-car-48:before {\n    content: \"\\fb03\";\n}\n\n.fltf-vehicle-ship-16:before {\n    content: \"\\fb04\";\n}\n\n.fltf-vehicle-ship-20:before {\n    content: \"\\fb05\";\n}\n\n.fltf-vehicle-ship-24:before {\n    content: \"\\fb06\";\n}\n\n.fltf-vehicle-subway-16:before {\n    content: \"\\fb07\";\n}\n\n.fltf-vehicle-subway-20:before {\n    content: \"\\fb08\";\n}\n\n.fltf-vehicle-subway-24:before {\n    content: \"\\fb09\";\n}\n\n.fltf-vehicle-truck-16:before {\n    content: \"\\fb0a\";\n}\n\n.fltf-vehicle-truck-20:before {\n    content: \"\\fb0b\";\n}\n\n.fltf-video-clip-20:before {\n    content: \"\\fb0c\";\n}\n\n.fltf-vote-20:before {\n    content: \"\\fb0d\";\n}\n\n.fltf-vote-24:before {\n    content: \"\\fb0e\";\n}\n\n.fltf-weather-drizzle-20:before {\n    content: \"\\fb0f\";\n}\n\n.fltf-weather-drizzle-24:before {\n    content: \"\\fb10\";\n}\n\n.fltf-weather-drizzle-48:before {\n    content: \"\\fb11\";\n}\n\n.fltf-weather-haze-20:before {\n    content: \"\\fb12\";\n}\n\n.fltf-weather-haze-24:before {\n    content: \"\\fb13\";\n}\n\n.fltf-weather-haze-48:before {\n    content: \"\\fb14\";\n}\n\n.fltf-weather-moon-16:before {\n    content: \"\\fb15\";\n}\n\n.fltf-weather-moon-28:before {\n    content: \"\\fb16\";\n}\n\n.fltf-weather-moon-off-16:before {\n    content: \"\\fb17\";\n}\n\n.fltf-weather-moon-off-20:before {\n    content: \"\\fb18\";\n}\n\n.fltf-weather-moon-off-24:before {\n    content: \"\\fb19\";\n}\n\n.fltf-weather-moon-off-28:before {\n    content: \"\\fb1a\";\n}\n\n.fltf-weather-moon-off-48:before {\n    content: \"\\fb1b\";\n}\n\n.fltf-weather-sunny-high-20:before {\n    content: \"\\fb1c\";\n}\n\n.fltf-weather-sunny-high-24:before {\n    content: \"\\fb1d\";\n}\n\n.fltf-weather-sunny-high-48:before {\n    content: \"\\fb1e\";\n}\n\n.fltf-weather-sunny-low-20:before {\n    content: \"\\fb1f\";\n}\n\n.fltf-weather-sunny-low-24:before {\n    content: \"\\fb20\";\n}\n\n.fltf-weather-sunny-low-48:before {\n    content: \"\\fb21\";\n}\n\n.fltf-window-horizontal-20:before {\n    content: \"\\fb22\";\n}\n\n.fltf-window-new-16:before {\n    content: \"\\fb23\";\n}\n\n.fltf-window-new-24:before {\n    content: \"\\fb24\";\n}\n\n.fltf-window-vertical-20:before {\n    content: \"\\fb25\";\n}\n\n.fltf-wrench-16:before {\n    content: \"\\fb26\";\n}\n\n.fltf-wrench-20:before {\n    content: \"\\fb27\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fluentui-pack/src/main/resources/META-INF/resources/fluentui/1.1.74/css/FluentSystemIcons-Regular.css",
    "content": "@font-face {\n    font-family: 'FluentSystemIcons-Regular';\n    src: url('../fonts/FluentSystemIcons-Regular.ttf') format('truetype');\n    font-weight: normal;\n    font-style: normal;\n    font-display: block;\n}\n\n.fltr:before {\n    /* use !important to prevent issues with browser extensions that change fonts */\n    font-family: 'FluentSystemIcons-Regular' !important;\n    speak: never;\n    font-style: normal;\n    font-weight: normal;\n    font-variant: normal;\n    text-transform: none;\n    line-height: 1;\n\n    /* Better Font Rendering =========== */\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n}\n\n/* Icons */\n.fltr-access-time-24:before {\n    content: \"\\f101\";\n}\n\n.fltr-accessibility-16:before {\n    content: \"\\f102\";\n}\n\n.fltr-accessibility-20:before {\n    content: \"\\f103\";\n}\n\n.fltr-accessibility-24:before {\n    content: \"\\f104\";\n}\n\n.fltr-accessibility-28:before {\n    content: \"\\f105\";\n}\n\n.fltr-activity-24:before {\n    content: \"\\f106\";\n}\n\n.fltr-add-12:before {\n    content: \"\\f107\";\n}\n\n.fltr-add-16:before {\n    content: \"\\f108\";\n}\n\n.fltr-add-20:before {\n    content: \"\\f109\";\n}\n\n.fltr-add-24:before {\n    content: \"\\f10a\";\n}\n\n.fltr-add-28:before {\n    content: \"\\f10b\";\n}\n\n.fltr-add-circle-20:before {\n    content: \"\\f10c\";\n}\n\n.fltr-add-circle-24:before {\n    content: \"\\f10d\";\n}\n\n.fltr-add-circle-28:before {\n    content: \"\\f10e\";\n}\n\n.fltr-airplane-20:before {\n    content: \"\\f10f\";\n}\n\n.fltr-airplane-24:before {\n    content: \"\\f110\";\n}\n\n.fltr-airplane-take-off-16:before {\n    content: \"\\f111\";\n}\n\n.fltr-airplane-take-off-20:before {\n    content: \"\\f112\";\n}\n\n.fltr-airplane-take-off-24:before {\n    content: \"\\f113\";\n}\n\n.fltr-alert-20:before {\n    content: \"\\f114\";\n}\n\n.fltr-alert-24:before {\n    content: \"\\f115\";\n}\n\n.fltr-alert-28:before {\n    content: \"\\f116\";\n}\n\n.fltr-alert-off-16:before {\n    content: \"\\f117\";\n}\n\n.fltr-alert-off-20:before {\n    content: \"\\f118\";\n}\n\n.fltr-alert-off-24:before {\n    content: \"\\f119\";\n}\n\n.fltr-alert-off-28:before {\n    content: \"\\f11a\";\n}\n\n.fltr-alert-on-24:before {\n    content: \"\\f11b\";\n}\n\n.fltr-alert-snooze-20:before {\n    content: \"\\f11c\";\n}\n\n.fltr-alert-snooze-24:before {\n    content: \"\\f11d\";\n}\n\n.fltr-alert-urgent-20:before {\n    content: \"\\f11e\";\n}\n\n.fltr-alert-urgent-24:before {\n    content: \"\\f11f\";\n}\n\n.fltr-animal-dog-20:before {\n    content: \"\\f120\";\n}\n\n.fltr-animal-dog-24:before {\n    content: \"\\f121\";\n}\n\n.fltr-app-folder-20:before {\n    content: \"\\f122\";\n}\n\n.fltr-app-folder-24:before {\n    content: \"\\f123\";\n}\n\n.fltr-app-generic-24:before {\n    content: \"\\f124\";\n}\n\n.fltr-app-recent-24:before {\n    content: \"\\f125\";\n}\n\n.fltr-app-span-16:before {\n    content: \"\\f126\";\n}\n\n.fltr-app-span-20:before {\n    content: \"\\f127\";\n}\n\n.fltr-app-span-24:before {\n    content: \"\\f128\";\n}\n\n.fltr-app-span-28:before {\n    content: \"\\f129\";\n}\n\n.fltr-app-store-24:before {\n    content: \"\\f12a\";\n}\n\n.fltr-app-title-24:before {\n    content: \"\\f12b\";\n}\n\n.fltr-app-unspan-16:before {\n    content: \"\\f12c\";\n}\n\n.fltr-app-unspan-20:before {\n    content: \"\\f12d\";\n}\n\n.fltr-app-unspan-24:before {\n    content: \"\\f12e\";\n}\n\n.fltr-app-unspan-28:before {\n    content: \"\\f12f\";\n}\n\n.fltr-approvals-app-24:before {\n    content: \"\\f130\";\n}\n\n.fltr-approvals-app-28:before {\n    content: \"\\f131\";\n}\n\n.fltr-apps-16:before {\n    content: \"\\f132\";\n}\n\n.fltr-apps-20:before {\n    content: \"\\f133\";\n}\n\n.fltr-apps-24:before {\n    content: \"\\f134\";\n}\n\n.fltr-apps-28:before {\n    content: \"\\f135\";\n}\n\n.fltr-apps-add-in-20:before {\n    content: \"\\f136\";\n}\n\n.fltr-apps-add-in-24:before {\n    content: \"\\f137\";\n}\n\n.fltr-apps-list-24:before {\n    content: \"\\f138\";\n}\n\n.fltr-archive-20:before {\n    content: \"\\f139\";\n}\n\n.fltr-archive-24:before {\n    content: \"\\f13a\";\n}\n\n.fltr-archive-28:before {\n    content: \"\\f13b\";\n}\n\n.fltr-archive-48:before {\n    content: \"\\f13c\";\n}\n\n.fltr-arrow-clockwise-20:before {\n    content: \"\\f13d\";\n}\n\n.fltr-arrow-clockwise-24:before {\n    content: \"\\f13e\";\n}\n\n.fltr-arrow-counterclockwise-20:before {\n    content: \"\\f13f\";\n}\n\n.fltr-arrow-counterclockwise-24:before {\n    content: \"\\f140\";\n}\n\n.fltr-arrow-curve-down-left-20:before {\n    content: \"\\f141\";\n}\n\n.fltr-arrow-curve-down-right-20:before {\n    content: \"\\f142\";\n}\n\n.fltr-arrow-curve-right-20:before {\n    content: \"\\f143\";\n}\n\n.fltr-arrow-curve-right-24:before {\n    content: \"\\f144\";\n}\n\n.fltr-arrow-curve-up-left-20:before {\n    content: \"\\f145\";\n}\n\n.fltr-arrow-curve-up-right-20:before {\n    content: \"\\f146\";\n}\n\n.fltr-arrow-down-16:before {\n    content: \"\\f147\";\n}\n\n.fltr-arrow-down-20:before {\n    content: \"\\f148\";\n}\n\n.fltr-arrow-down-24:before {\n    content: \"\\f149\";\n}\n\n.fltr-arrow-down-28:before {\n    content: \"\\f14a\";\n}\n\n.fltr-arrow-down-left-24:before {\n    content: \"\\f14b\";\n}\n\n.fltr-arrow-down-right-circle-16:before {\n    content: \"\\f14c\";\n}\n\n.fltr-arrow-down-right-circle-24:before {\n    content: \"\\f14d\";\n}\n\n.fltr-arrow-down-square-24:before {\n    content: \"\\f14e\";\n}\n\n.fltr-arrow-download-16:before {\n    content: \"\\f14f\";\n}\n\n.fltr-arrow-download-20:before {\n    content: \"\\f150\";\n}\n\n.fltr-arrow-download-24:before {\n    content: \"\\f151\";\n}\n\n.fltr-arrow-download-48:before {\n    content: \"\\f152\";\n}\n\n.fltr-arrow-enter-24:before {\n    content: \"\\f153\";\n}\n\n.fltr-arrow-expand-24:before {\n    content: \"\\f154\";\n}\n\n.fltr-arrow-export-20:before {\n    content: \"\\f155\";\n}\n\n.fltr-arrow-forward-16:before {\n    content: \"\\f156\";\n}\n\n.fltr-arrow-forward-20:before {\n    content: \"\\f157\";\n}\n\n.fltr-arrow-forward-24:before {\n    content: \"\\f158\";\n}\n\n.fltr-arrow-import-20:before {\n    content: \"\\f159\";\n}\n\n.fltr-arrow-import-24:before {\n    content: \"\\f15a\";\n}\n\n.fltr-arrow-left-20:before {\n    content: \"\\f15b\";\n}\n\n.fltr-arrow-left-24:before {\n    content: \"\\f15c\";\n}\n\n.fltr-arrow-left-28:before {\n    content: \"\\f15d\";\n}\n\n.fltr-arrow-maximize-16:before {\n    content: \"\\f15e\";\n}\n\n.fltr-arrow-maximize-20:before {\n    content: \"\\f15f\";\n}\n\n.fltr-arrow-maximize-24:before {\n    content: \"\\f160\";\n}\n\n.fltr-arrow-maximize-28:before {\n    content: \"\\f161\";\n}\n\n.fltr-arrow-maximize-vertical-20:before {\n    content: \"\\f162\";\n}\n\n.fltr-arrow-maximize-vertical-24:before {\n    content: \"\\f163\";\n}\n\n.fltr-arrow-minimize-16:before {\n    content: \"\\f164\";\n}\n\n.fltr-arrow-minimize-20:before {\n    content: \"\\f165\";\n}\n\n.fltr-arrow-minimize-24:before {\n    content: \"\\f166\";\n}\n\n.fltr-arrow-minimize-28:before {\n    content: \"\\f167\";\n}\n\n.fltr-arrow-minimize-vertical-24:before {\n    content: \"\\f168\";\n}\n\n.fltr-arrow-move-24:before {\n    content: \"\\f169\";\n}\n\n.fltr-arrow-next-20:before {\n    content: \"\\f16a\";\n}\n\n.fltr-arrow-next-24:before {\n    content: \"\\f16b\";\n}\n\n.fltr-arrow-previous-20:before {\n    content: \"\\f16c\";\n}\n\n.fltr-arrow-previous-24:before {\n    content: \"\\f16d\";\n}\n\n.fltr-arrow-redo-20:before {\n    content: \"\\f16e\";\n}\n\n.fltr-arrow-redo-24:before {\n    content: \"\\f16f\";\n}\n\n.fltr-arrow-repeat-all-16:before {\n    content: \"\\f170\";\n}\n\n.fltr-arrow-repeat-all-20:before {\n    content: \"\\f171\";\n}\n\n.fltr-arrow-repeat-all-24:before {\n    content: \"\\f172\";\n}\n\n.fltr-arrow-repeat-all-off-16:before {\n    content: \"\\f173\";\n}\n\n.fltr-arrow-repeat-all-off-20:before {\n    content: \"\\f174\";\n}\n\n.fltr-arrow-repeat-all-off-24:before {\n    content: \"\\f175\";\n}\n\n.fltr-arrow-reply-16:before {\n    content: \"\\f176\";\n}\n\n.fltr-arrow-reply-20:before {\n    content: \"\\f177\";\n}\n\n.fltr-arrow-reply-24:before {\n    content: \"\\f178\";\n}\n\n.fltr-arrow-reply-48:before {\n    content: \"\\f179\";\n}\n\n.fltr-arrow-reply-all-16:before {\n    content: \"\\f17a\";\n}\n\n.fltr-arrow-reply-all-20:before {\n    content: \"\\f17b\";\n}\n\n.fltr-arrow-reply-all-24:before {\n    content: \"\\f17c\";\n}\n\n.fltr-arrow-reply-all-48:before {\n    content: \"\\f17d\";\n}\n\n.fltr-arrow-reply-down-16:before {\n    content: \"\\f17e\";\n}\n\n.fltr-arrow-reply-down-20:before {\n    content: \"\\f17f\";\n}\n\n.fltr-arrow-reply-down-24:before {\n    content: \"\\f180\";\n}\n\n.fltr-arrow-right-20:before {\n    content: \"\\f181\";\n}\n\n.fltr-arrow-right-24:before {\n    content: \"\\f182\";\n}\n\n.fltr-arrow-right-28:before {\n    content: \"\\f183\";\n}\n\n.fltr-arrow-right-circle-24:before {\n    content: \"\\f184\";\n}\n\n.fltr-arrow-rotate-clockwise-20:before {\n    content: \"\\f185\";\n}\n\n.fltr-arrow-rotate-clockwise-24:before {\n    content: \"\\f186\";\n}\n\n.fltr-arrow-rotate-counterclockwise-20:before {\n    content: \"\\f187\";\n}\n\n.fltr-arrow-rotate-counterclockwise-24:before {\n    content: \"\\f188\";\n}\n\n.fltr-arrow-rotate-icon-24:before {\n    content: \"\\f189\";\n}\n\n.fltr-arrow-sort-20:before {\n    content: \"\\f18a\";\n}\n\n.fltr-arrow-sort-24:before {\n    content: \"\\f18b\";\n}\n\n.fltr-arrow-sort-28:before {\n    content: \"\\f18c\";\n}\n\n.fltr-arrow-swap-20:before {\n    content: \"\\f18d\";\n}\n\n.fltr-arrow-swap-24:before {\n    content: \"\\f18e\";\n}\n\n.fltr-arrow-sync-12:before {\n    content: \"\\f18f\";\n}\n\n.fltr-arrow-sync-20:before {\n    content: \"\\f190\";\n}\n\n.fltr-arrow-sync-24:before {\n    content: \"\\f191\";\n}\n\n.fltr-arrow-sync-circle-16:before {\n    content: \"\\f192\";\n}\n\n.fltr-arrow-sync-circle-20:before {\n    content: \"\\f193\";\n}\n\n.fltr-arrow-sync-circle-24:before {\n    content: \"\\f194\";\n}\n\n.fltr-arrow-sync-off-12:before {\n    content: \"\\f195\";\n}\n\n.fltr-arrow-trending-16:before {\n    content: \"\\f196\";\n}\n\n.fltr-arrow-trending-20:before {\n    content: \"\\f197\";\n}\n\n.fltr-arrow-trending-24:before {\n    content: \"\\f198\";\n}\n\n.fltr-arrow-undo-20:before {\n    content: \"\\f199\";\n}\n\n.fltr-arrow-undo-24:before {\n    content: \"\\f19a\";\n}\n\n.fltr-arrow-up-20:before {\n    content: \"\\f19b\";\n}\n\n.fltr-arrow-up-24:before {\n    content: \"\\f19c\";\n}\n\n.fltr-arrow-up-28:before {\n    content: \"\\f19d\";\n}\n\n.fltr-arrow-up-circle-16:before {\n    content: \"\\f19e\";\n}\n\n.fltr-arrow-up-circle-20:before {\n    content: \"\\f19f\";\n}\n\n.fltr-arrow-up-circle-24:before {\n    content: \"\\f1a0\";\n}\n\n.fltr-arrow-up-left-24:before {\n    content: \"\\f1a1\";\n}\n\n.fltr-arrow-up-left-circle-24:before {\n    content: \"\\f1a2\";\n}\n\n.fltr-arrow-up-right-24:before {\n    content: \"\\f1a3\";\n}\n\n.fltr-arrow-upload-20:before {\n    content: \"\\f1a4\";\n}\n\n.fltr-arrow-upload-24:before {\n    content: \"\\f1a5\";\n}\n\n.fltr-arrows-bidirectional-24:before {\n    content: \"\\f1a6\";\n}\n\n.fltr-assignments-24:before {\n    content: \"\\f1a7\";\n}\n\n.fltr-attach-16:before {\n    content: \"\\f1a8\";\n}\n\n.fltr-attach-20:before {\n    content: \"\\f1a9\";\n}\n\n.fltr-attach-24:before {\n    content: \"\\f1aa\";\n}\n\n.fltr-attach-forward-20:before {\n    content: \"\\f1ab\";\n}\n\n.fltr-attach-forward-24:before {\n    content: \"\\f1ac\";\n}\n\n.fltr-attach-with-text-24:before {\n    content: \"\\f1ad\";\n}\n\n.fltr-autocorrect-24:before {\n    content: \"\\f1ae\";\n}\n\n.fltr-autosum-20:before {\n    content: \"\\f1af\";\n}\n\n.fltr-autosum-24:before {\n    content: \"\\f1b0\";\n}\n\n.fltr-backspace-20:before {\n    content: \"\\f1b1\";\n}\n\n.fltr-backspace-24:before {\n    content: \"\\f1b2\";\n}\n\n.fltr-backward-20:before {\n    content: \"\\f1b3\";\n}\n\n.fltr-backward-24:before {\n    content: \"\\f1b4\";\n}\n\n.fltr-badge-24:before {\n    content: \"\\f1b5\";\n}\n\n.fltr-balloon-20:before {\n    content: \"\\f1b6\";\n}\n\n.fltr-balloon-24:before {\n    content: \"\\f1b7\";\n}\n\n.fltr-bank-16:before {\n    content: \"\\f1b8\";\n}\n\n.fltr-bank-20:before {\n    content: \"\\f1b9\";\n}\n\n.fltr-bank-24:before {\n    content: \"\\f1ba\";\n}\n\n.fltr-battery-0-20:before {\n    content: \"\\f1bb\";\n}\n\n.fltr-battery-0-24:before {\n    content: \"\\f1bc\";\n}\n\n.fltr-battery-1-20:before {\n    content: \"\\f1bd\";\n}\n\n.fltr-battery-1-24:before {\n    content: \"\\f1be\";\n}\n\n.fltr-battery-2-20:before {\n    content: \"\\f1bf\";\n}\n\n.fltr-battery-2-24:before {\n    content: \"\\f1c0\";\n}\n\n.fltr-battery-3-20:before {\n    content: \"\\f1c1\";\n}\n\n.fltr-battery-3-24:before {\n    content: \"\\f1c2\";\n}\n\n.fltr-battery-4-20:before {\n    content: \"\\f1c3\";\n}\n\n.fltr-battery-4-24:before {\n    content: \"\\f1c4\";\n}\n\n.fltr-battery-5-20:before {\n    content: \"\\f1c5\";\n}\n\n.fltr-battery-5-24:before {\n    content: \"\\f1c6\";\n}\n\n.fltr-battery-6-20:before {\n    content: \"\\f1c7\";\n}\n\n.fltr-battery-6-24:before {\n    content: \"\\f1c8\";\n}\n\n.fltr-battery-7-20:before {\n    content: \"\\f1c9\";\n}\n\n.fltr-battery-7-24:before {\n    content: \"\\f1ca\";\n}\n\n.fltr-battery-8-20:before {\n    content: \"\\f1cb\";\n}\n\n.fltr-battery-8-24:before {\n    content: \"\\f1cc\";\n}\n\n.fltr-battery-9-20:before {\n    content: \"\\f1cd\";\n}\n\n.fltr-battery-9-24:before {\n    content: \"\\f1ce\";\n}\n\n.fltr-battery-charge-20:before {\n    content: \"\\f1cf\";\n}\n\n.fltr-battery-charge-24:before {\n    content: \"\\f1d0\";\n}\n\n.fltr-battery-full-20:before {\n    content: \"\\f1d1\";\n}\n\n.fltr-battery-full-24:before {\n    content: \"\\f1d2\";\n}\n\n.fltr-battery-saver-20:before {\n    content: \"\\f1d3\";\n}\n\n.fltr-battery-saver-24:before {\n    content: \"\\f1d4\";\n}\n\n.fltr-battery-warning-24:before {\n    content: \"\\f1d5\";\n}\n\n.fltr-beaker-16:before {\n    content: \"\\f1d6\";\n}\n\n.fltr-beaker-20:before {\n    content: \"\\f1d7\";\n}\n\n.fltr-beaker-24:before {\n    content: \"\\f1d8\";\n}\n\n.fltr-bed-20:before {\n    content: \"\\f1d9\";\n}\n\n.fltr-bed-24:before {\n    content: \"\\f1da\";\n}\n\n.fltr-block-16:before {\n    content: \"\\f1db\";\n}\n\n.fltr-block-20:before {\n    content: \"\\f1dc\";\n}\n\n.fltr-block-24:before {\n    content: \"\\f1dd\";\n}\n\n.fltr-bluetooth-20:before {\n    content: \"\\f1de\";\n}\n\n.fltr-bluetooth-24:before {\n    content: \"\\f1df\";\n}\n\n.fltr-bluetooth-connected-24:before {\n    content: \"\\f1e0\";\n}\n\n.fltr-bluetooth-disabled-24:before {\n    content: \"\\f1e1\";\n}\n\n.fltr-bluetooth-searching-24:before {\n    content: \"\\f1e2\";\n}\n\n.fltr-board-24:before {\n    content: \"\\f1e3\";\n}\n\n.fltr-book-formula-compatibility-24:before {\n    content: \"\\f1e4\";\n}\n\n.fltr-book-formula-database-24:before {\n    content: \"\\f1e5\";\n}\n\n.fltr-book-formula-date-24:before {\n    content: \"\\f1e6\";\n}\n\n.fltr-book-formula-engineering-24:before {\n    content: \"\\f1e7\";\n}\n\n.fltr-book-formula-financial-24:before {\n    content: \"\\f1e8\";\n}\n\n.fltr-book-formula-information-24:before {\n    content: \"\\f1e9\";\n}\n\n.fltr-book-formula-logical-24:before {\n    content: \"\\f1ea\";\n}\n\n.fltr-book-formula-lookup-24:before {\n    content: \"\\f1eb\";\n}\n\n.fltr-book-formula-math-24:before {\n    content: \"\\f1ec\";\n}\n\n.fltr-book-formula-recent-24:before {\n    content: \"\\f1ed\";\n}\n\n.fltr-book-formula-statistics-24:before {\n    content: \"\\f1ee\";\n}\n\n.fltr-book-formula-text-24:before {\n    content: \"\\f1ef\";\n}\n\n.fltr-book-globe-24:before {\n    content: \"\\f1f0\";\n}\n\n.fltr-book-number-16:before {\n    content: \"\\f1f1\";\n}\n\n.fltr-book-number-20:before {\n    content: \"\\f1f2\";\n}\n\n.fltr-book-number-24:before {\n    content: \"\\f1f3\";\n}\n\n.fltr-bookmark-16:before {\n    content: \"\\f1f4\";\n}\n\n.fltr-bookmark-20:before {\n    content: \"\\f1f5\";\n}\n\n.fltr-bookmark-24:before {\n    content: \"\\f1f6\";\n}\n\n.fltr-bookmark-28:before {\n    content: \"\\f1f7\";\n}\n\n.fltr-bookmark-off-24:before {\n    content: \"\\f1f8\";\n}\n\n.fltr-bot-24:before {\n    content: \"\\f1f9\";\n}\n\n.fltr-bot-add-24:before {\n    content: \"\\f1fa\";\n}\n\n.fltr-branch-24:before {\n    content: \"\\f1fb\";\n}\n\n.fltr-briefcase-20:before {\n    content: \"\\f1fc\";\n}\n\n.fltr-briefcase-24:before {\n    content: \"\\f1fd\";\n}\n\n.fltr-bring-to-front-20:before {\n    content: \"\\f1fe\";\n}\n\n.fltr-bring-to-front-24:before {\n    content: \"\\f1ff\";\n}\n\n.fltr-broad-activity-feed-24:before {\n    content: \"\\f200\";\n}\n\n.fltr-broom-20:before {\n    content: \"\\f201\";\n}\n\n.fltr-broom-24:before {\n    content: \"\\f202\";\n}\n\n.fltr-bug-report-24:before {\n    content: \"\\f203\";\n}\n\n.fltr-building-1-24:before {\n    content: \"\\f204\";\n}\n\n.fltr-building-24:before {\n    content: \"\\f205\";\n}\n\n.fltr-building-2-16:before {\n    content: \"\\f206\";\n}\n\n.fltr-building-2-20:before {\n    content: \"\\f207\";\n}\n\n.fltr-building-2-24:before {\n    content: \"\\f208\";\n}\n\n.fltr-building-retail-24:before {\n    content: \"\\f209\";\n}\n\n.fltr-calculator-20:before {\n    content: \"\\f20a\";\n}\n\n.fltr-calendar-20:before {\n    content: \"\\f20b\";\n}\n\n.fltr-calendar-24:before {\n    content: \"\\f20c\";\n}\n\n.fltr-calendar-28:before {\n    content: \"\\f20d\";\n}\n\n.fltr-calendar-3-day-20:before {\n    content: \"\\f20e\";\n}\n\n.fltr-calendar-3-day-24:before {\n    content: \"\\f20f\";\n}\n\n.fltr-calendar-3-day-28:before {\n    content: \"\\f210\";\n}\n\n.fltr-calendar-add-20:before {\n    content: \"\\f211\";\n}\n\n.fltr-calendar-add-24:before {\n    content: \"\\f212\";\n}\n\n.fltr-calendar-agenda-20:before {\n    content: \"\\f213\";\n}\n\n.fltr-calendar-agenda-24:before {\n    content: \"\\f214\";\n}\n\n.fltr-calendar-agenda-28:before {\n    content: \"\\f215\";\n}\n\n.fltr-calendar-arrow-right-20:before {\n    content: \"\\f216\";\n}\n\n.fltr-calendar-assistant-20:before {\n    content: \"\\f217\";\n}\n\n.fltr-calendar-assistant-24:before {\n    content: \"\\f218\";\n}\n\n.fltr-calendar-cancel-20:before {\n    content: \"\\f219\";\n}\n\n.fltr-calendar-cancel-24:before {\n    content: \"\\f21a\";\n}\n\n.fltr-calendar-checkmark-16:before {\n    content: \"\\f21b\";\n}\n\n.fltr-calendar-checkmark-20:before {\n    content: \"\\f21c\";\n}\n\n.fltr-calendar-clock-20:before {\n    content: \"\\f21d\";\n}\n\n.fltr-calendar-clock-24:before {\n    content: \"\\f21e\";\n}\n\n.fltr-calendar-date-20:before {\n    content: \"\\f21f\";\n}\n\n.fltr-calendar-date-24:before {\n    content: \"\\f220\";\n}\n\n.fltr-calendar-date-28:before {\n    content: \"\\f221\";\n}\n\n.fltr-calendar-day-20:before {\n    content: \"\\f222\";\n}\n\n.fltr-calendar-day-24:before {\n    content: \"\\f223\";\n}\n\n.fltr-calendar-day-28:before {\n    content: \"\\f224\";\n}\n\n.fltr-calendar-empty-16:before {\n    content: \"\\f225\";\n}\n\n.fltr-calendar-empty-20:before {\n    content: \"\\f226\";\n}\n\n.fltr-calendar-empty-24:before {\n    content: \"\\f227\";\n}\n\n.fltr-calendar-empty-28:before {\n    content: \"\\f228\";\n}\n\n.fltr-calendar-later-24:before {\n    content: \"\\f229\";\n}\n\n.fltr-calendar-month-20:before {\n    content: \"\\f22a\";\n}\n\n.fltr-calendar-month-24:before {\n    content: \"\\f22b\";\n}\n\n.fltr-calendar-month-28:before {\n    content: \"\\f22c\";\n}\n\n.fltr-calendar-multiple-20:before {\n    content: \"\\f22d\";\n}\n\n.fltr-calendar-multiple-24:before {\n    content: \"\\f22e\";\n}\n\n.fltr-calendar-overdue-24:before {\n    content: \"\\f22f\";\n}\n\n.fltr-calendar-person-20:before {\n    content: \"\\f230\";\n}\n\n.fltr-calendar-reply-16:before {\n    content: \"\\f231\";\n}\n\n.fltr-calendar-reply-20:before {\n    content: \"\\f232\";\n}\n\n.fltr-calendar-reply-24:before {\n    content: \"\\f233\";\n}\n\n.fltr-calendar-reply-28:before {\n    content: \"\\f234\";\n}\n\n.fltr-calendar-settings-20:before {\n    content: \"\\f235\";\n}\n\n.fltr-calendar-star-20:before {\n    content: \"\\f236\";\n}\n\n.fltr-calendar-star-24:before {\n    content: \"\\f237\";\n}\n\n.fltr-calendar-sync-16:before {\n    content: \"\\f238\";\n}\n\n.fltr-calendar-sync-20:before {\n    content: \"\\f239\";\n}\n\n.fltr-calendar-sync-24:before {\n    content: \"\\f23a\";\n}\n\n.fltr-calendar-today-16:before {\n    content: \"\\f23b\";\n}\n\n.fltr-calendar-today-20:before {\n    content: \"\\f23c\";\n}\n\n.fltr-calendar-today-24:before {\n    content: \"\\f23d\";\n}\n\n.fltr-calendar-today-28:before {\n    content: \"\\f23e\";\n}\n\n.fltr-calendar-week-numbers-24:before {\n    content: \"\\f23f\";\n}\n\n.fltr-calendar-week-start-20:before {\n    content: \"\\f240\";\n}\n\n.fltr-calendar-week-start-24:before {\n    content: \"\\f241\";\n}\n\n.fltr-calendar-week-start-28:before {\n    content: \"\\f242\";\n}\n\n.fltr-calendar-work-week-16:before {\n    content: \"\\f243\";\n}\n\n.fltr-calendar-work-week-20:before {\n    content: \"\\f244\";\n}\n\n.fltr-calendar-work-week-24:before {\n    content: \"\\f245\";\n}\n\n.fltr-call-add-24:before {\n    content: \"\\f246\";\n}\n\n.fltr-call-end-20:before {\n    content: \"\\f247\";\n}\n\n.fltr-call-end-24:before {\n    content: \"\\f248\";\n}\n\n.fltr-call-end-28:before {\n    content: \"\\f249\";\n}\n\n.fltr-call-forward-24:before {\n    content: \"\\f24a\";\n}\n\n.fltr-call-inbound-16:before {\n    content: \"\\f24b\";\n}\n\n.fltr-call-inbound-24:before {\n    content: \"\\f24c\";\n}\n\n.fltr-call-missed-16:before {\n    content: \"\\f24d\";\n}\n\n.fltr-call-missed-24:before {\n    content: \"\\f24e\";\n}\n\n.fltr-call-outbound-16:before {\n    content: \"\\f24f\";\n}\n\n.fltr-call-outbound-24:before {\n    content: \"\\f250\";\n}\n\n.fltr-call-park-24:before {\n    content: \"\\f251\";\n}\n\n.fltr-calligraphy-pen-20:before {\n    content: \"\\f252\";\n}\n\n.fltr-calligraphy-pen-24:before {\n    content: \"\\f253\";\n}\n\n.fltr-camera-20:before {\n    content: \"\\f254\";\n}\n\n.fltr-camera-24:before {\n    content: \"\\f255\";\n}\n\n.fltr-camera-28:before {\n    content: \"\\f256\";\n}\n\n.fltr-camera-add-20:before {\n    content: \"\\f257\";\n}\n\n.fltr-camera-add-24:before {\n    content: \"\\f258\";\n}\n\n.fltr-camera-add-48:before {\n    content: \"\\f259\";\n}\n\n.fltr-camera-switch-24:before {\n    content: \"\\f25a\";\n}\n\n.fltr-caret-12:before {\n    content: \"\\f25b\";\n}\n\n.fltr-caret-16:before {\n    content: \"\\f25c\";\n}\n\n.fltr-caret-20:before {\n    content: \"\\f25d\";\n}\n\n.fltr-caret-24:before {\n    content: \"\\f25e\";\n}\n\n.fltr-caret-down-12:before {\n    content: \"\\f25f\";\n}\n\n.fltr-caret-down-16:before {\n    content: \"\\f260\";\n}\n\n.fltr-caret-down-20:before {\n    content: \"\\f261\";\n}\n\n.fltr-caret-down-24:before {\n    content: \"\\f262\";\n}\n\n.fltr-caret-left-12:before {\n    content: \"\\f263\";\n}\n\n.fltr-caret-left-16:before {\n    content: \"\\f264\";\n}\n\n.fltr-caret-left-20:before {\n    content: \"\\f265\";\n}\n\n.fltr-caret-left-24:before {\n    content: \"\\f266\";\n}\n\n.fltr-caret-right-12:before {\n    content: \"\\f267\";\n}\n\n.fltr-caret-right-16:before {\n    content: \"\\f268\";\n}\n\n.fltr-caret-right-20:before {\n    content: \"\\f269\";\n}\n\n.fltr-caret-right-24:before {\n    content: \"\\f26a\";\n}\n\n.fltr-cart-24:before {\n    content: \"\\f26b\";\n}\n\n.fltr-cast-20:before {\n    content: \"\\f26c\";\n}\n\n.fltr-cast-24:before {\n    content: \"\\f26d\";\n}\n\n.fltr-cast-28:before {\n    content: \"\\f26e\";\n}\n\n.fltr-cellular-3g-24:before {\n    content: \"\\f26f\";\n}\n\n.fltr-cellular-4g-24:before {\n    content: \"\\f270\";\n}\n\n.fltr-cellular-data-1-20:before {\n    content: \"\\f271\";\n}\n\n.fltr-cellular-data-1-24:before {\n    content: \"\\f272\";\n}\n\n.fltr-cellular-data-2-20:before {\n    content: \"\\f273\";\n}\n\n.fltr-cellular-data-2-24:before {\n    content: \"\\f274\";\n}\n\n.fltr-cellular-data-3-20:before {\n    content: \"\\f275\";\n}\n\n.fltr-cellular-data-3-24:before {\n    content: \"\\f276\";\n}\n\n.fltr-cellular-data-4-20:before {\n    content: \"\\f277\";\n}\n\n.fltr-cellular-data-4-24:before {\n    content: \"\\f278\";\n}\n\n.fltr-cellular-data-5-20:before {\n    content: \"\\f279\";\n}\n\n.fltr-cellular-data-5-24:before {\n    content: \"\\f27a\";\n}\n\n.fltr-cellular-data-off-24:before {\n    content: \"\\f27b\";\n}\n\n.fltr-cellular-off-24:before {\n    content: \"\\f27c\";\n}\n\n.fltr-cellular-unavailable-24:before {\n    content: \"\\f27d\";\n}\n\n.fltr-certificate-20:before {\n    content: \"\\f27e\";\n}\n\n.fltr-certificate-24:before {\n    content: \"\\f27f\";\n}\n\n.fltr-channel-16:before {\n    content: \"\\f280\";\n}\n\n.fltr-channel-20:before {\n    content: \"\\f281\";\n}\n\n.fltr-channel-24:before {\n    content: \"\\f282\";\n}\n\n.fltr-channel-follow-24:before {\n    content: \"\\f283\";\n}\n\n.fltr-channel-notifications-24:before {\n    content: \"\\f284\";\n}\n\n.fltr-channel-unfollow-24:before {\n    content: \"\\f285\";\n}\n\n.fltr-chat-20:before {\n    content: \"\\f286\";\n}\n\n.fltr-chat-24:before {\n    content: \"\\f287\";\n}\n\n.fltr-chat-28:before {\n    content: \"\\f288\";\n}\n\n.fltr-chat-bubbles-question-24:before {\n    content: \"\\f289\";\n}\n\n.fltr-chat-help-24:before {\n    content: \"\\f28a\";\n}\n\n.fltr-chat-off-24:before {\n    content: \"\\f28b\";\n}\n\n.fltr-chat-warning-24:before {\n    content: \"\\f28c\";\n}\n\n.fltr-checkbox-checked-20:before {\n    content: \"\\f28d\";\n}\n\n.fltr-checkbox-checked-24:before {\n    content: \"\\f28e\";\n}\n\n.fltr-checkbox-unchecked-12:before {\n    content: \"\\f28f\";\n}\n\n.fltr-checkbox-unchecked-16:before {\n    content: \"\\f290\";\n}\n\n.fltr-checkbox-unchecked-20:before {\n    content: \"\\f291\";\n}\n\n.fltr-checkbox-unchecked-24:before {\n    content: \"\\f292\";\n}\n\n.fltr-checkmark-12:before {\n    content: \"\\f293\";\n}\n\n.fltr-checkmark-20:before {\n    content: \"\\f294\";\n}\n\n.fltr-checkmark-24:before {\n    content: \"\\f295\";\n}\n\n.fltr-checkmark-28:before {\n    content: \"\\f296\";\n}\n\n.fltr-checkmark-circle-16:before {\n    content: \"\\f297\";\n}\n\n.fltr-checkmark-circle-20:before {\n    content: \"\\f298\";\n}\n\n.fltr-checkmark-circle-24:before {\n    content: \"\\f299\";\n}\n\n.fltr-checkmark-circle-48:before {\n    content: \"\\f29a\";\n}\n\n.fltr-checkmark-lock-16:before {\n    content: \"\\f29b\";\n}\n\n.fltr-checkmark-lock-20:before {\n    content: \"\\f29c\";\n}\n\n.fltr-checkmark-lock-24:before {\n    content: \"\\f29d\";\n}\n\n.fltr-checkmark-square-24:before {\n    content: \"\\f29e\";\n}\n\n.fltr-checkmark-underline-circle-16:before {\n    content: \"\\f29f\";\n}\n\n.fltr-checkmark-underline-circle-20:before {\n    content: \"\\f2a0\";\n}\n\n.fltr-chevron-down-12:before {\n    content: \"\\f2a1\";\n}\n\n.fltr-chevron-down-16:before {\n    content: \"\\f2a2\";\n}\n\n.fltr-chevron-down-20:before {\n    content: \"\\f2a3\";\n}\n\n.fltr-chevron-down-24:before {\n    content: \"\\f2a4\";\n}\n\n.fltr-chevron-down-28:before {\n    content: \"\\f2a5\";\n}\n\n.fltr-chevron-down-48:before {\n    content: \"\\f2a6\";\n}\n\n.fltr-chevron-down-circle-24:before {\n    content: \"\\f2a7\";\n}\n\n.fltr-chevron-left-12:before {\n    content: \"\\f2a8\";\n}\n\n.fltr-chevron-left-16:before {\n    content: \"\\f2a9\";\n}\n\n.fltr-chevron-left-20:before {\n    content: \"\\f2aa\";\n}\n\n.fltr-chevron-left-24:before {\n    content: \"\\f2ab\";\n}\n\n.fltr-chevron-left-28:before {\n    content: \"\\f2ac\";\n}\n\n.fltr-chevron-left-48:before {\n    content: \"\\f2ad\";\n}\n\n.fltr-chevron-right-12:before {\n    content: \"\\f2ae\";\n}\n\n.fltr-chevron-right-16:before {\n    content: \"\\f2af\";\n}\n\n.fltr-chevron-right-20:before {\n    content: \"\\f2b0\";\n}\n\n.fltr-chevron-right-24:before {\n    content: \"\\f2b1\";\n}\n\n.fltr-chevron-right-28:before {\n    content: \"\\f2b2\";\n}\n\n.fltr-chevron-right-48:before {\n    content: \"\\f2b3\";\n}\n\n.fltr-chevron-up-12:before {\n    content: \"\\f2b4\";\n}\n\n.fltr-chevron-up-16:before {\n    content: \"\\f2b5\";\n}\n\n.fltr-chevron-up-20:before {\n    content: \"\\f2b6\";\n}\n\n.fltr-chevron-up-24:before {\n    content: \"\\f2b7\";\n}\n\n.fltr-chevron-up-28:before {\n    content: \"\\f2b8\";\n}\n\n.fltr-chevron-up-48:before {\n    content: \"\\f2b9\";\n}\n\n.fltr-circle-16:before {\n    content: \"\\f2ba\";\n}\n\n.fltr-circle-20:before {\n    content: \"\\f2bb\";\n}\n\n.fltr-circle-24:before {\n    content: \"\\f2bc\";\n}\n\n.fltr-circle-half-fill-20:before {\n    content: \"\\f2bd\";\n}\n\n.fltr-circle-half-fill-24:before {\n    content: \"\\f2be\";\n}\n\n.fltr-circle-line-24:before {\n    content: \"\\f2bf\";\n}\n\n.fltr-circle-small-24:before {\n    content: \"\\f2c0\";\n}\n\n.fltr-city-16:before {\n    content: \"\\f2c1\";\n}\n\n.fltr-city-20:before {\n    content: \"\\f2c2\";\n}\n\n.fltr-city-24:before {\n    content: \"\\f2c3\";\n}\n\n.fltr-class-24:before {\n    content: \"\\f2c4\";\n}\n\n.fltr-classification-16:before {\n    content: \"\\f2c5\";\n}\n\n.fltr-classification-20:before {\n    content: \"\\f2c6\";\n}\n\n.fltr-classification-24:before {\n    content: \"\\f2c7\";\n}\n\n.fltr-clear-formatting-24:before {\n    content: \"\\f2c8\";\n}\n\n.fltr-clipboard-20:before {\n    content: \"\\f2c9\";\n}\n\n.fltr-clipboard-24:before {\n    content: \"\\f2ca\";\n}\n\n.fltr-clipboard-code-16:before {\n    content: \"\\f2cb\";\n}\n\n.fltr-clipboard-code-20:before {\n    content: \"\\f2cc\";\n}\n\n.fltr-clipboard-code-24:before {\n    content: \"\\f2cd\";\n}\n\n.fltr-clipboard-letter-16:before {\n    content: \"\\f2ce\";\n}\n\n.fltr-clipboard-letter-20:before {\n    content: \"\\f2cf\";\n}\n\n.fltr-clipboard-letter-24:before {\n    content: \"\\f2d0\";\n}\n\n.fltr-clipboard-link-16:before {\n    content: \"\\f2d1\";\n}\n\n.fltr-clipboard-link-20:before {\n    content: \"\\f2d2\";\n}\n\n.fltr-clipboard-link-24:before {\n    content: \"\\f2d3\";\n}\n\n.fltr-clipboard-more-24:before {\n    content: \"\\f2d4\";\n}\n\n.fltr-clipboard-paste-20:before {\n    content: \"\\f2d5\";\n}\n\n.fltr-clipboard-paste-24:before {\n    content: \"\\f2d6\";\n}\n\n.fltr-clipboard-search-20:before {\n    content: \"\\f2d7\";\n}\n\n.fltr-clipboard-search-24:before {\n    content: \"\\f2d8\";\n}\n\n.fltr-clipboard-text-20:before {\n    content: \"\\f2d9\";\n}\n\n.fltr-clipboard-text-24:before {\n    content: \"\\f2da\";\n}\n\n.fltr-clock-12:before {\n    content: \"\\f2db\";\n}\n\n.fltr-clock-16:before {\n    content: \"\\f2dc\";\n}\n\n.fltr-clock-20:before {\n    content: \"\\f2dd\";\n}\n\n.fltr-clock-24:before {\n    content: \"\\f2de\";\n}\n\n.fltr-clock-28:before {\n    content: \"\\f2df\";\n}\n\n.fltr-clock-48:before {\n    content: \"\\f2e0\";\n}\n\n.fltr-clock-alarm-20:before {\n    content: \"\\f2e1\";\n}\n\n.fltr-clock-alarm-24:before {\n    content: \"\\f2e2\";\n}\n\n.fltr-closed-caption-24:before {\n    content: \"\\f2e3\";\n}\n\n.fltr-cloud-20:before {\n    content: \"\\f2e4\";\n}\n\n.fltr-cloud-24:before {\n    content: \"\\f2e5\";\n}\n\n.fltr-cloud-48:before {\n    content: \"\\f2e6\";\n}\n\n.fltr-cloud-backup-24:before {\n    content: \"\\f2e7\";\n}\n\n.fltr-cloud-backup-48:before {\n    content: \"\\f2e8\";\n}\n\n.fltr-cloud-download-24:before {\n    content: \"\\f2e9\";\n}\n\n.fltr-cloud-off-24:before {\n    content: \"\\f2ea\";\n}\n\n.fltr-cloud-off-48:before {\n    content: \"\\f2eb\";\n}\n\n.fltr-cloud-offline-24:before {\n    content: \"\\f2ec\";\n}\n\n.fltr-cloud-sync-complete-24:before {\n    content: \"\\f2ed\";\n}\n\n.fltr-cloud-sync-complete-48:before {\n    content: \"\\f2ee\";\n}\n\n.fltr-code-20:before {\n    content: \"\\f2ef\";\n}\n\n.fltr-code-24:before {\n    content: \"\\f2f0\";\n}\n\n.fltr-collections-20:before {\n    content: \"\\f2f1\";\n}\n\n.fltr-collections-24:before {\n    content: \"\\f2f2\";\n}\n\n.fltr-collections-add-20:before {\n    content: \"\\f2f3\";\n}\n\n.fltr-collections-add-24:before {\n    content: \"\\f2f4\";\n}\n\n.fltr-color-20:before {\n    content: \"\\f2f5\";\n}\n\n.fltr-color-24:before {\n    content: \"\\f2f6\";\n}\n\n.fltr-color-background-20:before {\n    content: \"\\f2f7\";\n}\n\n.fltr-color-background-24:before {\n    content: \"\\f2f8\";\n}\n\n.fltr-color-fill-20:before {\n    content: \"\\f2f9\";\n}\n\n.fltr-color-fill-24:before {\n    content: \"\\f2fa\";\n}\n\n.fltr-color-line-20:before {\n    content: \"\\f2fb\";\n}\n\n.fltr-color-line-24:before {\n    content: \"\\f2fc\";\n}\n\n.fltr-column-triple-24:before {\n    content: \"\\f2fd\";\n}\n\n.fltr-comment-16:before {\n    content: \"\\f2fe\";\n}\n\n.fltr-comment-20:before {\n    content: \"\\f2ff\";\n}\n\n.fltr-comment-24:before {\n    content: \"\\f300\";\n}\n\n.fltr-comment-add-24:before {\n    content: \"\\f301\";\n}\n\n.fltr-comment-delete-24:before {\n    content: \"\\f302\";\n}\n\n.fltr-comment-mention-16:before {\n    content: \"\\f303\";\n}\n\n.fltr-comment-mention-20:before {\n    content: \"\\f304\";\n}\n\n.fltr-comment-mention-24:before {\n    content: \"\\f305\";\n}\n\n.fltr-comment-multiple-16:before {\n    content: \"\\f306\";\n}\n\n.fltr-comment-multiple-20:before {\n    content: \"\\f307\";\n}\n\n.fltr-comment-multiple-24:before {\n    content: \"\\f308\";\n}\n\n.fltr-comment-next-24:before {\n    content: \"\\f309\";\n}\n\n.fltr-comment-previous-24:before {\n    content: \"\\f30a\";\n}\n\n.fltr-comment-resolve-24:before {\n    content: \"\\f30b\";\n}\n\n.fltr-communication-16:before {\n    content: \"\\f30c\";\n}\n\n.fltr-communication-20:before {\n    content: \"\\f30d\";\n}\n\n.fltr-communication-24:before {\n    content: \"\\f30e\";\n}\n\n.fltr-compass-northwest-16:before {\n    content: \"\\f30f\";\n}\n\n.fltr-compass-northwest-20:before {\n    content: \"\\f310\";\n}\n\n.fltr-compass-northwest-24:before {\n    content: \"\\f311\";\n}\n\n.fltr-compass-northwest-28:before {\n    content: \"\\f312\";\n}\n\n.fltr-compose-16:before {\n    content: \"\\f313\";\n}\n\n.fltr-compose-20:before {\n    content: \"\\f314\";\n}\n\n.fltr-compose-24:before {\n    content: \"\\f315\";\n}\n\n.fltr-compose-28:before {\n    content: \"\\f316\";\n}\n\n.fltr-conference-room-16:before {\n    content: \"\\f317\";\n}\n\n.fltr-conference-room-20:before {\n    content: \"\\f318\";\n}\n\n.fltr-conference-room-24:before {\n    content: \"\\f319\";\n}\n\n.fltr-conference-room-28:before {\n    content: \"\\f31a\";\n}\n\n.fltr-conference-room-48:before {\n    content: \"\\f31b\";\n}\n\n.fltr-connector-16:before {\n    content: \"\\f31c\";\n}\n\n.fltr-connector-20:before {\n    content: \"\\f31d\";\n}\n\n.fltr-connector-24:before {\n    content: \"\\f31e\";\n}\n\n.fltr-contact-card-20:before {\n    content: \"\\f31f\";\n}\n\n.fltr-contact-card-24:before {\n    content: \"\\f320\";\n}\n\n.fltr-contact-card-group-24:before {\n    content: \"\\f321\";\n}\n\n.fltr-contacts-24:before {\n    content: \"\\f322\";\n}\n\n.fltr-content-settings-16:before {\n    content: \"\\f323\";\n}\n\n.fltr-content-settings-20:before {\n    content: \"\\f324\";\n}\n\n.fltr-content-settings-24:before {\n    content: \"\\f325\";\n}\n\n.fltr-convert-to-table-24:before {\n    content: \"\\f326\";\n}\n\n.fltr-convert-to-text-24:before {\n    content: \"\\f327\";\n}\n\n.fltr-cookies-20:before {\n    content: \"\\f328\";\n}\n\n.fltr-cookies-24:before {\n    content: \"\\f329\";\n}\n\n.fltr-copy-16:before {\n    content: \"\\f32a\";\n}\n\n.fltr-copy-20:before {\n    content: \"\\f32b\";\n}\n\n.fltr-copy-24:before {\n    content: \"\\f32c\";\n}\n\n.fltr-copy-image-24:before {\n    content: \"\\f32d\";\n}\n\n.fltr-copy-link-24:before {\n    content: \"\\f32e\";\n}\n\n.fltr-copy-move-16:before {\n    content: \"\\f32f\";\n}\n\n.fltr-copy-move-24:before {\n    content: \"\\f330\";\n}\n\n.fltr-crop-24:before {\n    content: \"\\f331\";\n}\n\n.fltr-crop-interim-24:before {\n    content: \"\\f332\";\n}\n\n.fltr-crop-interim-off-24:before {\n    content: \"\\f333\";\n}\n\n.fltr-cube-16:before {\n    content: \"\\f334\";\n}\n\n.fltr-cube-20:before {\n    content: \"\\f335\";\n}\n\n.fltr-cube-24:before {\n    content: \"\\f336\";\n}\n\n.fltr-currency-16:before {\n    content: \"\\f337\";\n}\n\n.fltr-currency-20:before {\n    content: \"\\f338\";\n}\n\n.fltr-currency-24:before {\n    content: \"\\f339\";\n}\n\n.fltr-cut-20:before {\n    content: \"\\f33a\";\n}\n\n.fltr-cut-24:before {\n    content: \"\\f33b\";\n}\n\n.fltr-dark-theme-24:before {\n    content: \"\\f33c\";\n}\n\n.fltr-data-area-24:before {\n    content: \"\\f33d\";\n}\n\n.fltr-data-bar-horizontal-24:before {\n    content: \"\\f33e\";\n}\n\n.fltr-data-bar-vertical-20:before {\n    content: \"\\f33f\";\n}\n\n.fltr-data-bar-vertical-24:before {\n    content: \"\\f340\";\n}\n\n.fltr-data-funnel-24:before {\n    content: \"\\f341\";\n}\n\n.fltr-data-histogram-24:before {\n    content: \"\\f342\";\n}\n\n.fltr-data-line-24:before {\n    content: \"\\f343\";\n}\n\n.fltr-data-pie-20:before {\n    content: \"\\f344\";\n}\n\n.fltr-data-pie-24:before {\n    content: \"\\f345\";\n}\n\n.fltr-data-scatter-24:before {\n    content: \"\\f346\";\n}\n\n.fltr-data-sunburst-24:before {\n    content: \"\\f347\";\n}\n\n.fltr-data-treemap-24:before {\n    content: \"\\f348\";\n}\n\n.fltr-data-usage-24:before {\n    content: \"\\f349\";\n}\n\n.fltr-data-waterfall-24:before {\n    content: \"\\f34a\";\n}\n\n.fltr-data-whisker-24:before {\n    content: \"\\f34b\";\n}\n\n.fltr-delete-20:before {\n    content: \"\\f34c\";\n}\n\n.fltr-delete-24:before {\n    content: \"\\f34d\";\n}\n\n.fltr-delete-28:before {\n    content: \"\\f34e\";\n}\n\n.fltr-delete-48:before {\n    content: \"\\f34f\";\n}\n\n.fltr-delete-forever-24:before {\n    content: \"\\f350\";\n}\n\n.fltr-delete-forever-28:before {\n    content: \"\\f351\";\n}\n\n.fltr-delete-off-20:before {\n    content: \"\\f352\";\n}\n\n.fltr-delete-off-24:before {\n    content: \"\\f353\";\n}\n\n.fltr-dentist-24:before {\n    content: \"\\f354\";\n}\n\n.fltr-design-ideas-16:before {\n    content: \"\\f355\";\n}\n\n.fltr-design-ideas-20:before {\n    content: \"\\f356\";\n}\n\n.fltr-design-ideas-24:before {\n    content: \"\\f357\";\n}\n\n.fltr-desktop-16:before {\n    content: \"\\f358\";\n}\n\n.fltr-desktop-20:before {\n    content: \"\\f359\";\n}\n\n.fltr-desktop-24:before {\n    content: \"\\f35a\";\n}\n\n.fltr-desktop-28:before {\n    content: \"\\f35b\";\n}\n\n.fltr-developer-board-24:before {\n    content: \"\\f35c\";\n}\n\n.fltr-device-eq-24:before {\n    content: \"\\f35d\";\n}\n\n.fltr-dialpad-20:before {\n    content: \"\\f35e\";\n}\n\n.fltr-dialpad-24:before {\n    content: \"\\f35f\";\n}\n\n.fltr-dialpad-off-24:before {\n    content: \"\\f360\";\n}\n\n.fltr-dictionary-20:before {\n    content: \"\\f361\";\n}\n\n.fltr-dictionary-24:before {\n    content: \"\\f362\";\n}\n\n.fltr-dictionary-add-20:before {\n    content: \"\\f363\";\n}\n\n.fltr-dictionary-add-24:before {\n    content: \"\\f364\";\n}\n\n.fltr-directions-20:before {\n    content: \"\\f365\";\n}\n\n.fltr-directions-24:before {\n    content: \"\\f366\";\n}\n\n.fltr-dismiss-12:before {\n    content: \"\\f367\";\n}\n\n.fltr-dismiss-16:before {\n    content: \"\\f368\";\n}\n\n.fltr-dismiss-20:before {\n    content: \"\\f369\";\n}\n\n.fltr-dismiss-24:before {\n    content: \"\\f36a\";\n}\n\n.fltr-dismiss-28:before {\n    content: \"\\f36b\";\n}\n\n.fltr-dismiss-circle-16:before {\n    content: \"\\f36c\";\n}\n\n.fltr-dismiss-circle-20:before {\n    content: \"\\f36d\";\n}\n\n.fltr-dismiss-circle-24:before {\n    content: \"\\f36e\";\n}\n\n.fltr-dismiss-circle-48:before {\n    content: \"\\f36f\";\n}\n\n.fltr-divider-short-24:before {\n    content: \"\\f370\";\n}\n\n.fltr-divider-tall-24:before {\n    content: \"\\f371\";\n}\n\n.fltr-dock-24:before {\n    content: \"\\f372\";\n}\n\n.fltr-dock-left-16:before {\n    content: \"\\f373\";\n}\n\n.fltr-dock-left-20:before {\n    content: \"\\f374\";\n}\n\n.fltr-dock-left-24:before {\n    content: \"\\f375\";\n}\n\n.fltr-dock-row-24:before {\n    content: \"\\f376\";\n}\n\n.fltr-doctor-24:before {\n    content: \"\\f377\";\n}\n\n.fltr-document-20:before {\n    content: \"\\f378\";\n}\n\n.fltr-document-24:before {\n    content: \"\\f379\";\n}\n\n.fltr-document-28:before {\n    content: \"\\f37a\";\n}\n\n.fltr-document-autosave-24:before {\n    content: \"\\f37b\";\n}\n\n.fltr-document-briefcase-20:before {\n    content: \"\\f37c\";\n}\n\n.fltr-document-briefcase-24:before {\n    content: \"\\f37d\";\n}\n\n.fltr-document-catch-up-24:before {\n    content: \"\\f37e\";\n}\n\n.fltr-document-copy-16:before {\n    content: \"\\f37f\";\n}\n\n.fltr-document-copy-20:before {\n    content: \"\\f380\";\n}\n\n.fltr-document-copy-24:before {\n    content: \"\\f381\";\n}\n\n.fltr-document-copy-48:before {\n    content: \"\\f382\";\n}\n\n.fltr-document-dismiss-20:before {\n    content: \"\\f383\";\n}\n\n.fltr-document-dismiss-24:before {\n    content: \"\\f384\";\n}\n\n.fltr-document-edit-16:before {\n    content: \"\\f385\";\n}\n\n.fltr-document-edit-20:before {\n    content: \"\\f386\";\n}\n\n.fltr-document-edit-24:before {\n    content: \"\\f387\";\n}\n\n.fltr-document-endnote-20:before {\n    content: \"\\f388\";\n}\n\n.fltr-document-endnote-24:before {\n    content: \"\\f389\";\n}\n\n.fltr-document-error-16:before {\n    content: \"\\f38a\";\n}\n\n.fltr-document-error-20:before {\n    content: \"\\f38b\";\n}\n\n.fltr-document-error-24:before {\n    content: \"\\f38c\";\n}\n\n.fltr-document-footer-24:before {\n    content: \"\\f38d\";\n}\n\n.fltr-document-footer-remove-24:before {\n    content: \"\\f38e\";\n}\n\n.fltr-document-header-24:before {\n    content: \"\\f38f\";\n}\n\n.fltr-document-header-footer-20:before {\n    content: \"\\f390\";\n}\n\n.fltr-document-header-footer-24:before {\n    content: \"\\f391\";\n}\n\n.fltr-document-header-remove-24:before {\n    content: \"\\f392\";\n}\n\n.fltr-document-landscape-20:before {\n    content: \"\\f393\";\n}\n\n.fltr-document-landscape-24:before {\n    content: \"\\f394\";\n}\n\n.fltr-document-margins-20:before {\n    content: \"\\f395\";\n}\n\n.fltr-document-margins-24:before {\n    content: \"\\f396\";\n}\n\n.fltr-document-none-20:before {\n    content: \"\\f397\";\n}\n\n.fltr-document-none-24:before {\n    content: \"\\f398\";\n}\n\n.fltr-document-one-page-20:before {\n    content: \"\\f399\";\n}\n\n.fltr-document-one-page-24:before {\n    content: \"\\f39a\";\n}\n\n.fltr-document-page-24:before {\n    content: \"\\f39b\";\n}\n\n.fltr-document-page-bottom-center-20:before {\n    content: \"\\f39c\";\n}\n\n.fltr-document-page-bottom-center-24:before {\n    content: \"\\f39d\";\n}\n\n.fltr-document-page-bottom-left-20:before {\n    content: \"\\f39e\";\n}\n\n.fltr-document-page-bottom-left-24:before {\n    content: \"\\f39f\";\n}\n\n.fltr-document-page-bottom-right-20:before {\n    content: \"\\f3a0\";\n}\n\n.fltr-document-page-bottom-right-24:before {\n    content: \"\\f3a1\";\n}\n\n.fltr-document-page-break-24:before {\n    content: \"\\f3a2\";\n}\n\n.fltr-document-page-number-20:before {\n    content: \"\\f3a3\";\n}\n\n.fltr-document-page-number-24:before {\n    content: \"\\f3a4\";\n}\n\n.fltr-document-page-top-center-20:before {\n    content: \"\\f3a5\";\n}\n\n.fltr-document-page-top-center-24:before {\n    content: \"\\f3a6\";\n}\n\n.fltr-document-page-top-left-20:before {\n    content: \"\\f3a7\";\n}\n\n.fltr-document-page-top-left-24:before {\n    content: \"\\f3a8\";\n}\n\n.fltr-document-page-top-right-20:before {\n    content: \"\\f3a9\";\n}\n\n.fltr-document-page-top-right-24:before {\n    content: \"\\f3aa\";\n}\n\n.fltr-document-pdf-16:before {\n    content: \"\\f3ab\";\n}\n\n.fltr-document-pdf-20:before {\n    content: \"\\f3ac\";\n}\n\n.fltr-document-pdf-24:before {\n    content: \"\\f3ad\";\n}\n\n.fltr-document-search-20:before {\n    content: \"\\f3ae\";\n}\n\n.fltr-document-search-24:before {\n    content: \"\\f3af\";\n}\n\n.fltr-document-toolbox-20:before {\n    content: \"\\f3b0\";\n}\n\n.fltr-document-toolbox-24:before {\n    content: \"\\f3b1\";\n}\n\n.fltr-document-top-center-20:before {\n    content: \"\\f3b2\";\n}\n\n.fltr-document-top-left-20:before {\n    content: \"\\f3b3\";\n}\n\n.fltr-document-top-right-20:before {\n    content: \"\\f3b4\";\n}\n\n.fltr-document-unknown-16:before {\n    content: \"\\f3b5\";\n}\n\n.fltr-document-unknown-20:before {\n    content: \"\\f3b6\";\n}\n\n.fltr-document-unknown-24:before {\n    content: \"\\f3b7\";\n}\n\n.fltr-document-width-20:before {\n    content: \"\\f3b8\";\n}\n\n.fltr-document-width-24:before {\n    content: \"\\f3b9\";\n}\n\n.fltr-double-swipe-down-24:before {\n    content: \"\\f3ba\";\n}\n\n.fltr-double-swipe-up-24:before {\n    content: \"\\f3bb\";\n}\n\n.fltr-double-tap-swipe-down-24:before {\n    content: \"\\f3bc\";\n}\n\n.fltr-double-tap-swipe-up-24:before {\n    content: \"\\f3bd\";\n}\n\n.fltr-drafts-16:before {\n    content: \"\\f3be\";\n}\n\n.fltr-drafts-20:before {\n    content: \"\\f3bf\";\n}\n\n.fltr-drafts-24:before {\n    content: \"\\f3c0\";\n}\n\n.fltr-drag-24:before {\n    content: \"\\f3c1\";\n}\n\n.fltr-drink-24:before {\n    content: \"\\f3c2\";\n}\n\n.fltr-drink-beer-24:before {\n    content: \"\\f3c3\";\n}\n\n.fltr-drink-coffee-20:before {\n    content: \"\\f3c4\";\n}\n\n.fltr-drink-coffee-24:before {\n    content: \"\\f3c5\";\n}\n\n.fltr-drink-margarita-24:before {\n    content: \"\\f3c6\";\n}\n\n.fltr-drink-wine-24:before {\n    content: \"\\f3c7\";\n}\n\n.fltr-dual-screen-24:before {\n    content: \"\\f3c8\";\n}\n\n.fltr-dual-screen-add-24:before {\n    content: \"\\f3c9\";\n}\n\n.fltr-dual-screen-arrow-right-24:before {\n    content: \"\\f3ca\";\n}\n\n.fltr-dual-screen-clock-24:before {\n    content: \"\\f3cb\";\n}\n\n.fltr-dual-screen-desktop-24:before {\n    content: \"\\f3cc\";\n}\n\n.fltr-dual-screen-error-24:before {\n    content: \"\\f3cd\";\n}\n\n.fltr-dual-screen-group-24:before {\n    content: \"\\f3ce\";\n}\n\n.fltr-dual-screen-header-24:before {\n    content: \"\\f3cf\";\n}\n\n.fltr-dual-screen-lock-24:before {\n    content: \"\\f3d0\";\n}\n\n.fltr-dual-screen-mirror-24:before {\n    content: \"\\f3d1\";\n}\n\n.fltr-dual-screen-pagination-24:before {\n    content: \"\\f3d2\";\n}\n\n.fltr-dual-screen-settings-24:before {\n    content: \"\\f3d3\";\n}\n\n.fltr-dual-screen-status-bar-24:before {\n    content: \"\\f3d4\";\n}\n\n.fltr-dual-screen-tablet-24:before {\n    content: \"\\f3d5\";\n}\n\n.fltr-dual-screen-update-24:before {\n    content: \"\\f3d6\";\n}\n\n.fltr-dual-screen-vertical-scroll-24:before {\n    content: \"\\f3d7\";\n}\n\n.fltr-dual-screen-vibrate-24:before {\n    content: \"\\f3d8\";\n}\n\n.fltr-earth-16:before {\n    content: \"\\f3d9\";\n}\n\n.fltr-earth-20:before {\n    content: \"\\f3da\";\n}\n\n.fltr-earth-24:before {\n    content: \"\\f3db\";\n}\n\n.fltr-edit-16:before {\n    content: \"\\f3dc\";\n}\n\n.fltr-edit-20:before {\n    content: \"\\f3dd\";\n}\n\n.fltr-edit-24:before {\n    content: \"\\f3de\";\n}\n\n.fltr-emoji-16:before {\n    content: \"\\f3df\";\n}\n\n.fltr-emoji-20:before {\n    content: \"\\f3e0\";\n}\n\n.fltr-emoji-24:before {\n    content: \"\\f3e1\";\n}\n\n.fltr-emoji-add-24:before {\n    content: \"\\f3e2\";\n}\n\n.fltr-emoji-angry-20:before {\n    content: \"\\f3e3\";\n}\n\n.fltr-emoji-angry-24:before {\n    content: \"\\f3e4\";\n}\n\n.fltr-emoji-laugh-20:before {\n    content: \"\\f3e5\";\n}\n\n.fltr-emoji-laugh-24:before {\n    content: \"\\f3e6\";\n}\n\n.fltr-emoji-meh-20:before {\n    content: \"\\f3e7\";\n}\n\n.fltr-emoji-meh-24:before {\n    content: \"\\f3e8\";\n}\n\n.fltr-emoji-sad-20:before {\n    content: \"\\f3e9\";\n}\n\n.fltr-emoji-sad-24:before {\n    content: \"\\f3ea\";\n}\n\n.fltr-emoji-surprise-20:before {\n    content: \"\\f3eb\";\n}\n\n.fltr-emoji-surprise-24:before {\n    content: \"\\f3ec\";\n}\n\n.fltr-erase-20:before {\n    content: \"\\f3ed\";\n}\n\n.fltr-erase-24:before {\n    content: \"\\f3ee\";\n}\n\n.fltr-eraser-tool-24:before {\n    content: \"\\f3ef\";\n}\n\n.fltr-error-circle-16:before {\n    content: \"\\f3f0\";\n}\n\n.fltr-error-circle-20:before {\n    content: \"\\f3f1\";\n}\n\n.fltr-error-circle-24:before {\n    content: \"\\f3f2\";\n}\n\n.fltr-export-24:before {\n    content: \"\\f3f3\";\n}\n\n.fltr-extended-dock-24:before {\n    content: \"\\f3f4\";\n}\n\n.fltr-extension-20:before {\n    content: \"\\f3f5\";\n}\n\n.fltr-extension-24:before {\n    content: \"\\f3f6\";\n}\n\n.fltr-eye-hide-20:before {\n    content: \"\\f3f7\";\n}\n\n.fltr-eye-hide-24:before {\n    content: \"\\f3f8\";\n}\n\n.fltr-eye-show-12:before {\n    content: \"\\f3f9\";\n}\n\n.fltr-eye-show-16:before {\n    content: \"\\f3fa\";\n}\n\n.fltr-eye-show-20:before {\n    content: \"\\f3fb\";\n}\n\n.fltr-eye-show-24:before {\n    content: \"\\f3fc\";\n}\n\n.fltr-fast-acceleration-24:before {\n    content: \"\\f3fd\";\n}\n\n.fltr-fast-forward-20:before {\n    content: \"\\f3fe\";\n}\n\n.fltr-fast-forward-24:before {\n    content: \"\\f3ff\";\n}\n\n.fltr-fast-mode-16:before {\n    content: \"\\f400\";\n}\n\n.fltr-fast-mode-20:before {\n    content: \"\\f401\";\n}\n\n.fltr-fast-mode-24:before {\n    content: \"\\f402\";\n}\n\n.fltr-fast-mode-28:before {\n    content: \"\\f403\";\n}\n\n.fltr-favorites-20:before {\n    content: \"\\f404\";\n}\n\n.fltr-favorites-24:before {\n    content: \"\\f405\";\n}\n\n.fltr-filter-20:before {\n    content: \"\\f406\";\n}\n\n.fltr-filter-24:before {\n    content: \"\\f407\";\n}\n\n.fltr-filter-28:before {\n    content: \"\\f408\";\n}\n\n.fltr-fingerprint-24:before {\n    content: \"\\f409\";\n}\n\n.fltr-flag-16:before {\n    content: \"\\f40a\";\n}\n\n.fltr-flag-20:before {\n    content: \"\\f40b\";\n}\n\n.fltr-flag-24:before {\n    content: \"\\f40c\";\n}\n\n.fltr-flag-28:before {\n    content: \"\\f40d\";\n}\n\n.fltr-flag-48:before {\n    content: \"\\f40e\";\n}\n\n.fltr-flag-off-24:before {\n    content: \"\\f40f\";\n}\n\n.fltr-flag-off-28:before {\n    content: \"\\f410\";\n}\n\n.fltr-flag-off-48:before {\n    content: \"\\f411\";\n}\n\n.fltr-flash-auto-24:before {\n    content: \"\\f412\";\n}\n\n.fltr-flash-off-24:before {\n    content: \"\\f413\";\n}\n\n.fltr-flash-on-20:before {\n    content: \"\\f414\";\n}\n\n.fltr-flash-on-24:before {\n    content: \"\\f415\";\n}\n\n.fltr-flashlight-24:before {\n    content: \"\\f416\";\n}\n\n.fltr-flashlight-off-24:before {\n    content: \"\\f417\";\n}\n\n.fltr-folder-20:before {\n    content: \"\\f418\";\n}\n\n.fltr-folder-24:before {\n    content: \"\\f419\";\n}\n\n.fltr-folder-28:before {\n    content: \"\\f41a\";\n}\n\n.fltr-folder-48:before {\n    content: \"\\f41b\";\n}\n\n.fltr-folder-add-20:before {\n    content: \"\\f41c\";\n}\n\n.fltr-folder-add-24:before {\n    content: \"\\f41d\";\n}\n\n.fltr-folder-add-28:before {\n    content: \"\\f41e\";\n}\n\n.fltr-folder-add-48:before {\n    content: \"\\f41f\";\n}\n\n.fltr-folder-briefcase-20:before {\n    content: \"\\f420\";\n}\n\n.fltr-folder-junk-20:before {\n    content: \"\\f421\";\n}\n\n.fltr-folder-junk-24:before {\n    content: \"\\f422\";\n}\n\n.fltr-folder-junk-28:before {\n    content: \"\\f423\";\n}\n\n.fltr-folder-junk-48:before {\n    content: \"\\f424\";\n}\n\n.fltr-folder-link-20:before {\n    content: \"\\f425\";\n}\n\n.fltr-folder-link-24:before {\n    content: \"\\f426\";\n}\n\n.fltr-folder-link-28:before {\n    content: \"\\f427\";\n}\n\n.fltr-folder-link-48:before {\n    content: \"\\f428\";\n}\n\n.fltr-folder-move-20:before {\n    content: \"\\f429\";\n}\n\n.fltr-folder-move-24:before {\n    content: \"\\f42a\";\n}\n\n.fltr-folder-move-28:before {\n    content: \"\\f42b\";\n}\n\n.fltr-folder-move-48:before {\n    content: \"\\f42c\";\n}\n\n.fltr-folder-open-16:before {\n    content: \"\\f42d\";\n}\n\n.fltr-folder-open-20:before {\n    content: \"\\f42e\";\n}\n\n.fltr-folder-open-24:before {\n    content: \"\\f42f\";\n}\n\n.fltr-folder-open-vertical-20:before {\n    content: \"\\f430\";\n}\n\n.fltr-folder-public-16:before {\n    content: \"\\f431\";\n}\n\n.fltr-folder-public-20:before {\n    content: \"\\f432\";\n}\n\n.fltr-folder-public-24:before {\n    content: \"\\f433\";\n}\n\n.fltr-folder-zip-16:before {\n    content: \"\\f434\";\n}\n\n.fltr-folder-zip-20:before {\n    content: \"\\f435\";\n}\n\n.fltr-folder-zip-24:before {\n    content: \"\\f436\";\n}\n\n.fltr-font-decrease-20:before {\n    content: \"\\f437\";\n}\n\n.fltr-font-decrease-24:before {\n    content: \"\\f438\";\n}\n\n.fltr-font-increase-20:before {\n    content: \"\\f439\";\n}\n\n.fltr-font-increase-24:before {\n    content: \"\\f43a\";\n}\n\n.fltr-font-space-tracking-in-16:before {\n    content: \"\\f43b\";\n}\n\n.fltr-font-space-tracking-in-20:before {\n    content: \"\\f43c\";\n}\n\n.fltr-font-space-tracking-in-24:before {\n    content: \"\\f43d\";\n}\n\n.fltr-font-space-tracking-in-28:before {\n    content: \"\\f43e\";\n}\n\n.fltr-font-space-tracking-out-16:before {\n    content: \"\\f43f\";\n}\n\n.fltr-font-space-tracking-out-20:before {\n    content: \"\\f440\";\n}\n\n.fltr-font-space-tracking-out-24:before {\n    content: \"\\f441\";\n}\n\n.fltr-font-space-tracking-out-28:before {\n    content: \"\\f442\";\n}\n\n.fltr-food-20:before {\n    content: \"\\f443\";\n}\n\n.fltr-food-24:before {\n    content: \"\\f444\";\n}\n\n.fltr-food-cake-24:before {\n    content: \"\\f445\";\n}\n\n.fltr-food-egg-24:before {\n    content: \"\\f446\";\n}\n\n.fltr-food-toast-24:before {\n    content: \"\\f447\";\n}\n\n.fltr-form-new-24:before {\n    content: \"\\f448\";\n}\n\n.fltr-form-new-28:before {\n    content: \"\\f449\";\n}\n\n.fltr-form-new-48:before {\n    content: \"\\f44a\";\n}\n\n.fltr-forward-20:before {\n    content: \"\\f44b\";\n}\n\n.fltr-forward-24:before {\n    content: \"\\f44c\";\n}\n\n.fltr-fps-240-24:before {\n    content: \"\\f44d\";\n}\n\n.fltr-fps-960-24:before {\n    content: \"\\f44e\";\n}\n\n.fltr-full-screen-zoom-24:before {\n    content: \"\\f44f\";\n}\n\n.fltr-gallery-24:before {\n    content: \"\\f450\";\n}\n\n.fltr-games-24:before {\n    content: \"\\f451\";\n}\n\n.fltr-gesture-24:before {\n    content: \"\\f452\";\n}\n\n.fltr-gif-20:before {\n    content: \"\\f453\";\n}\n\n.fltr-gif-24:before {\n    content: \"\\f454\";\n}\n\n.fltr-gift-20:before {\n    content: \"\\f455\";\n}\n\n.fltr-gift-24:before {\n    content: \"\\f456\";\n}\n\n.fltr-glance-24:before {\n    content: \"\\f457\";\n}\n\n.fltr-glasses-24:before {\n    content: \"\\f458\";\n}\n\n.fltr-glasses-off-24:before {\n    content: \"\\f459\";\n}\n\n.fltr-globe-20:before {\n    content: \"\\f45a\";\n}\n\n.fltr-globe-24:before {\n    content: \"\\f45b\";\n}\n\n.fltr-globe-add-24:before {\n    content: \"\\f45c\";\n}\n\n.fltr-globe-clock-24:before {\n    content: \"\\f45d\";\n}\n\n.fltr-globe-desktop-24:before {\n    content: \"\\f45e\";\n}\n\n.fltr-globe-location-24:before {\n    content: \"\\f45f\";\n}\n\n.fltr-globe-search-24:before {\n    content: \"\\f460\";\n}\n\n.fltr-globe-video-24:before {\n    content: \"\\f461\";\n}\n\n.fltr-grid-20:before {\n    content: \"\\f462\";\n}\n\n.fltr-grid-24:before {\n    content: \"\\f463\";\n}\n\n.fltr-grid-28:before {\n    content: \"\\f464\";\n}\n\n.fltr-group-20:before {\n    content: \"\\f465\";\n}\n\n.fltr-group-24:before {\n    content: \"\\f466\";\n}\n\n.fltr-group-list-24:before {\n    content: \"\\f467\";\n}\n\n.fltr-guest-16:before {\n    content: \"\\f468\";\n}\n\n.fltr-guest-20:before {\n    content: \"\\f469\";\n}\n\n.fltr-guest-24:before {\n    content: \"\\f46a\";\n}\n\n.fltr-guest-28:before {\n    content: \"\\f46b\";\n}\n\n.fltr-guest-add-24:before {\n    content: \"\\f46c\";\n}\n\n.fltr-hand-raise-24:before {\n    content: \"\\f46d\";\n}\n\n.fltr-handshake-16:before {\n    content: \"\\f46e\";\n}\n\n.fltr-handshake-20:before {\n    content: \"\\f46f\";\n}\n\n.fltr-handshake-24:before {\n    content: \"\\f470\";\n}\n\n.fltr-hdr-24:before {\n    content: \"\\f471\";\n}\n\n.fltr-headphones-24:before {\n    content: \"\\f472\";\n}\n\n.fltr-headphones-28:before {\n    content: \"\\f473\";\n}\n\n.fltr-headset-24:before {\n    content: \"\\f474\";\n}\n\n.fltr-headset-28:before {\n    content: \"\\f475\";\n}\n\n.fltr-headset-vr-20:before {\n    content: \"\\f476\";\n}\n\n.fltr-headset-vr-24:before {\n    content: \"\\f477\";\n}\n\n.fltr-heart-16:before {\n    content: \"\\f478\";\n}\n\n.fltr-heart-20:before {\n    content: \"\\f479\";\n}\n\n.fltr-heart-24:before {\n    content: \"\\f47a\";\n}\n\n.fltr-highlight-16:before {\n    content: \"\\f47b\";\n}\n\n.fltr-highlight-20:before {\n    content: \"\\f47c\";\n}\n\n.fltr-highlight-24:before {\n    content: \"\\f47d\";\n}\n\n.fltr-history-20:before {\n    content: \"\\f47e\";\n}\n\n.fltr-history-24:before {\n    content: \"\\f47f\";\n}\n\n.fltr-home-20:before {\n    content: \"\\f480\";\n}\n\n.fltr-home-24:before {\n    content: \"\\f481\";\n}\n\n.fltr-home-28:before {\n    content: \"\\f482\";\n}\n\n.fltr-home-add-24:before {\n    content: \"\\f483\";\n}\n\n.fltr-home-checkmark-24:before {\n    content: \"\\f484\";\n}\n\n.fltr-icons-20:before {\n    content: \"\\f485\";\n}\n\n.fltr-icons-24:before {\n    content: \"\\f486\";\n}\n\n.fltr-image-16:before {\n    content: \"\\f487\";\n}\n\n.fltr-image-20:before {\n    content: \"\\f488\";\n}\n\n.fltr-image-24:before {\n    content: \"\\f489\";\n}\n\n.fltr-image-28:before {\n    content: \"\\f48a\";\n}\n\n.fltr-image-48:before {\n    content: \"\\f48b\";\n}\n\n.fltr-image-add-24:before {\n    content: \"\\f48c\";\n}\n\n.fltr-image-alt-text-20:before {\n    content: \"\\f48d\";\n}\n\n.fltr-image-alt-text-24:before {\n    content: \"\\f48e\";\n}\n\n.fltr-image-copy-20:before {\n    content: \"\\f48f\";\n}\n\n.fltr-image-copy-24:before {\n    content: \"\\f490\";\n}\n\n.fltr-image-copy-28:before {\n    content: \"\\f491\";\n}\n\n.fltr-image-edit-16:before {\n    content: \"\\f492\";\n}\n\n.fltr-image-edit-20:before {\n    content: \"\\f493\";\n}\n\n.fltr-image-edit-24:before {\n    content: \"\\f494\";\n}\n\n.fltr-image-library-20:before {\n    content: \"\\f495\";\n}\n\n.fltr-image-library-24:before {\n    content: \"\\f496\";\n}\n\n.fltr-image-library-28:before {\n    content: \"\\f497\";\n}\n\n.fltr-image-off-24:before {\n    content: \"\\f498\";\n}\n\n.fltr-image-search-20:before {\n    content: \"\\f499\";\n}\n\n.fltr-image-search-24:before {\n    content: \"\\f49a\";\n}\n\n.fltr-immersive-reader-20:before {\n    content: \"\\f49b\";\n}\n\n.fltr-immersive-reader-24:before {\n    content: \"\\f49c\";\n}\n\n.fltr-important-12:before {\n    content: \"\\f49d\";\n}\n\n.fltr-important-16:before {\n    content: \"\\f49e\";\n}\n\n.fltr-important-20:before {\n    content: \"\\f49f\";\n}\n\n.fltr-important-24:before {\n    content: \"\\f4a0\";\n}\n\n.fltr-incognito-24:before {\n    content: \"\\f4a1\";\n}\n\n.fltr-info-16:before {\n    content: \"\\f4a2\";\n}\n\n.fltr-info-20:before {\n    content: \"\\f4a3\";\n}\n\n.fltr-info-24:before {\n    content: \"\\f4a4\";\n}\n\n.fltr-info-28:before {\n    content: \"\\f4a5\";\n}\n\n.fltr-inking-tool-16:before {\n    content: \"\\f4a6\";\n}\n\n.fltr-inking-tool-20:before {\n    content: \"\\f4a7\";\n}\n\n.fltr-inking-tool-24:before {\n    content: \"\\f4a8\";\n}\n\n.fltr-inprivate-account-16:before {\n    content: \"\\f4a9\";\n}\n\n.fltr-inprivate-account-20:before {\n    content: \"\\f4aa\";\n}\n\n.fltr-inprivate-account-24:before {\n    content: \"\\f4ab\";\n}\n\n.fltr-inprivate-account-28:before {\n    content: \"\\f4ac\";\n}\n\n.fltr-insert-20:before {\n    content: \"\\f4ad\";\n}\n\n.fltr-inspect-20:before {\n    content: \"\\f4ae\";\n}\n\n.fltr-inspect-24:before {\n    content: \"\\f4af\";\n}\n\n.fltr-ios-arrow-left-24:before {\n    content: \"\\f4b0\";\n}\n\n.fltr-ios-chevron-24:before {\n    content: \"\\f4b1\";\n}\n\n.fltr-ios-chevron-right-20:before {\n    content: \"\\f4b2\";\n}\n\n.fltr-javascript-16:before {\n    content: \"\\f4b3\";\n}\n\n.fltr-javascript-20:before {\n    content: \"\\f4b4\";\n}\n\n.fltr-javascript-24:before {\n    content: \"\\f4b5\";\n}\n\n.fltr-key-20:before {\n    content: \"\\f4b6\";\n}\n\n.fltr-key-24:before {\n    content: \"\\f4b7\";\n}\n\n.fltr-keyboard-20:before {\n    content: \"\\f4b8\";\n}\n\n.fltr-keyboard-24:before {\n    content: \"\\f4b9\";\n}\n\n.fltr-keyboard-dock-24:before {\n    content: \"\\f4ba\";\n}\n\n.fltr-keyboard-layout-float-24:before {\n    content: \"\\f4bb\";\n}\n\n.fltr-keyboard-layout-one-handed-left-24:before {\n    content: \"\\f4bc\";\n}\n\n.fltr-keyboard-layout-resize-24:before {\n    content: \"\\f4bd\";\n}\n\n.fltr-keyboard-layout-split-24:before {\n    content: \"\\f4be\";\n}\n\n.fltr-keyboard-shift-24:before {\n    content: \"\\f4bf\";\n}\n\n.fltr-keyboard-shift-uppercase-24:before {\n    content: \"\\f4c0\";\n}\n\n.fltr-keyboard-tab-24:before {\n    content: \"\\f4c1\";\n}\n\n.fltr-laptop-16:before {\n    content: \"\\f4c2\";\n}\n\n.fltr-laptop-20:before {\n    content: \"\\f4c3\";\n}\n\n.fltr-laptop-24:before {\n    content: \"\\f4c4\";\n}\n\n.fltr-laptop-28:before {\n    content: \"\\f4c5\";\n}\n\n.fltr-large-16:before {\n    content: \"\\f4c6\";\n}\n\n.fltr-large-20:before {\n    content: \"\\f4c7\";\n}\n\n.fltr-large-24:before {\n    content: \"\\f4c8\";\n}\n\n.fltr-lasso-24:before {\n    content: \"\\f4c9\";\n}\n\n.fltr-launcher-settings-24:before {\n    content: \"\\f4ca\";\n}\n\n.fltr-layer-20:before {\n    content: \"\\f4cb\";\n}\n\n.fltr-layer-24:before {\n    content: \"\\f4cc\";\n}\n\n.fltr-leaf-16:before {\n    content: \"\\f4cd\";\n}\n\n.fltr-leaf-20:before {\n    content: \"\\f4ce\";\n}\n\n.fltr-leaf-24:before {\n    content: \"\\f4cf\";\n}\n\n.fltr-leaf-two-16:before {\n    content: \"\\f4d0\";\n}\n\n.fltr-leaf-two-20:before {\n    content: \"\\f4d1\";\n}\n\n.fltr-leaf-two-24:before {\n    content: \"\\f4d2\";\n}\n\n.fltr-library-24:before {\n    content: \"\\f4d3\";\n}\n\n.fltr-library-28:before {\n    content: \"\\f4d4\";\n}\n\n.fltr-lightbulb-16:before {\n    content: \"\\f4d5\";\n}\n\n.fltr-lightbulb-20:before {\n    content: \"\\f4d6\";\n}\n\n.fltr-lightbulb-24:before {\n    content: \"\\f4d7\";\n}\n\n.fltr-lightbulb-circle-24:before {\n    content: \"\\f4d8\";\n}\n\n.fltr-lightbulb-filament-16:before {\n    content: \"\\f4d9\";\n}\n\n.fltr-lightbulb-filament-20:before {\n    content: \"\\f4da\";\n}\n\n.fltr-lightbulb-filament-24:before {\n    content: \"\\f4db\";\n}\n\n.fltr-like-16:before {\n    content: \"\\f4dc\";\n}\n\n.fltr-likert-16:before {\n    content: \"\\f4dd\";\n}\n\n.fltr-likert-20:before {\n    content: \"\\f4de\";\n}\n\n.fltr-likert-24:before {\n    content: \"\\f4df\";\n}\n\n.fltr-line-horizontal-1-20:before {\n    content: \"\\f4e0\";\n}\n\n.fltr-line-horizontal-3-20:before {\n    content: \"\\f4e1\";\n}\n\n.fltr-line-horizontal-5-20:before {\n    content: \"\\f4e2\";\n}\n\n.fltr-link-16:before {\n    content: \"\\f4e3\";\n}\n\n.fltr-link-20:before {\n    content: \"\\f4e4\";\n}\n\n.fltr-link-24:before {\n    content: \"\\f4e5\";\n}\n\n.fltr-link-28:before {\n    content: \"\\f4e6\";\n}\n\n.fltr-link-48:before {\n    content: \"\\f4e7\";\n}\n\n.fltr-link-edit-16:before {\n    content: \"\\f4e8\";\n}\n\n.fltr-link-edit-20:before {\n    content: \"\\f4e9\";\n}\n\n.fltr-link-edit-24:before {\n    content: \"\\f4ea\";\n}\n\n.fltr-link-remove-20:before {\n    content: \"\\f4eb\";\n}\n\n.fltr-link-square-24:before {\n    content: \"\\f4ec\";\n}\n\n.fltr-list-20:before {\n    content: \"\\f4ed\";\n}\n\n.fltr-list-24:before {\n    content: \"\\f4ee\";\n}\n\n.fltr-list-28:before {\n    content: \"\\f4ef\";\n}\n\n.fltr-live-20:before {\n    content: \"\\f4f0\";\n}\n\n.fltr-live-24:before {\n    content: \"\\f4f1\";\n}\n\n.fltr-local-language-16:before {\n    content: \"\\f4f2\";\n}\n\n.fltr-local-language-20:before {\n    content: \"\\f4f3\";\n}\n\n.fltr-local-language-24:before {\n    content: \"\\f4f4\";\n}\n\n.fltr-local-language-28:before {\n    content: \"\\f4f5\";\n}\n\n.fltr-location-12:before {\n    content: \"\\f4f6\";\n}\n\n.fltr-location-16:before {\n    content: \"\\f4f7\";\n}\n\n.fltr-location-20:before {\n    content: \"\\f4f8\";\n}\n\n.fltr-location-24:before {\n    content: \"\\f4f9\";\n}\n\n.fltr-location-28:before {\n    content: \"\\f4fa\";\n}\n\n.fltr-location-live-20:before {\n    content: \"\\f4fb\";\n}\n\n.fltr-location-live-24:before {\n    content: \"\\f4fc\";\n}\n\n.fltr-location-not-found-24:before {\n    content: \"\\f4fd\";\n}\n\n.fltr-lock-12:before {\n    content: \"\\f4fe\";\n}\n\n.fltr-lock-16:before {\n    content: \"\\f4ff\";\n}\n\n.fltr-lock-20:before {\n    content: \"\\f500\";\n}\n\n.fltr-lock-24:before {\n    content: \"\\f501\";\n}\n\n.fltr-lock-shield-20:before {\n    content: \"\\f502\";\n}\n\n.fltr-lock-shield-24:before {\n    content: \"\\f503\";\n}\n\n.fltr-lock-shield-48:before {\n    content: \"\\f504\";\n}\n\n.fltr-magic-wand-24:before {\n    content: \"\\f505\";\n}\n\n.fltr-mail-20:before {\n    content: \"\\f506\";\n}\n\n.fltr-mail-24:before {\n    content: \"\\f507\";\n}\n\n.fltr-mail-28:before {\n    content: \"\\f508\";\n}\n\n.fltr-mail-48:before {\n    content: \"\\f509\";\n}\n\n.fltr-mail-add-24:before {\n    content: \"\\f50a\";\n}\n\n.fltr-mail-all-20:before {\n    content: \"\\f50b\";\n}\n\n.fltr-mail-all-24:before {\n    content: \"\\f50c\";\n}\n\n.fltr-mail-all-accounts-24:before {\n    content: \"\\f50d\";\n}\n\n.fltr-mail-all-read-20:before {\n    content: \"\\f50e\";\n}\n\n.fltr-mail-all-unread-20:before {\n    content: \"\\f50f\";\n}\n\n.fltr-mail-clock-20:before {\n    content: \"\\f510\";\n}\n\n.fltr-mail-copy-20:before {\n    content: \"\\f511\";\n}\n\n.fltr-mail-copy-24:before {\n    content: \"\\f512\";\n}\n\n.fltr-mail-inbox-16:before {\n    content: \"\\f513\";\n}\n\n.fltr-mail-inbox-20:before {\n    content: \"\\f514\";\n}\n\n.fltr-mail-inbox-24:before {\n    content: \"\\f515\";\n}\n\n.fltr-mail-inbox-28:before {\n    content: \"\\f516\";\n}\n\n.fltr-mail-inbox-add-16:before {\n    content: \"\\f517\";\n}\n\n.fltr-mail-inbox-add-20:before {\n    content: \"\\f518\";\n}\n\n.fltr-mail-inbox-add-24:before {\n    content: \"\\f519\";\n}\n\n.fltr-mail-inbox-add-28:before {\n    content: \"\\f51a\";\n}\n\n.fltr-mail-inbox-dismiss-16:before {\n    content: \"\\f51b\";\n}\n\n.fltr-mail-inbox-dismiss-20:before {\n    content: \"\\f51c\";\n}\n\n.fltr-mail-inbox-dismiss-24:before {\n    content: \"\\f51d\";\n}\n\n.fltr-mail-inbox-dismiss-28:before {\n    content: \"\\f51e\";\n}\n\n.fltr-mail-move-to-focussed-24:before {\n    content: \"\\f51f\";\n}\n\n.fltr-mail-outbox-24:before {\n    content: \"\\f520\";\n}\n\n.fltr-mail-read-20:before {\n    content: \"\\f521\";\n}\n\n.fltr-mail-read-24:before {\n    content: \"\\f522\";\n}\n\n.fltr-mail-read-28:before {\n    content: \"\\f523\";\n}\n\n.fltr-mail-read-48:before {\n    content: \"\\f524\";\n}\n\n.fltr-mail-unread-16:before {\n    content: \"\\f525\";\n}\n\n.fltr-mail-unread-20:before {\n    content: \"\\f526\";\n}\n\n.fltr-mail-unread-24:before {\n    content: \"\\f527\";\n}\n\n.fltr-mail-unread-28:before {\n    content: \"\\f528\";\n}\n\n.fltr-mail-unread-48:before {\n    content: \"\\f529\";\n}\n\n.fltr-mail-unsubscribe-24:before {\n    content: \"\\f52a\";\n}\n\n.fltr-malware-detected-16:before {\n    content: \"\\f52b\";\n}\n\n.fltr-malware-detected-24:before {\n    content: \"\\f52c\";\n}\n\n.fltr-manufacturer-24:before {\n    content: \"\\f52d\";\n}\n\n.fltr-map-24:before {\n    content: \"\\f52e\";\n}\n\n.fltr-map-drive-16:before {\n    content: \"\\f52f\";\n}\n\n.fltr-map-drive-20:before {\n    content: \"\\f530\";\n}\n\n.fltr-map-drive-24:before {\n    content: \"\\f531\";\n}\n\n.fltr-match-app-layout-24:before {\n    content: \"\\f532\";\n}\n\n.fltr-maximize-16:before {\n    content: \"\\f533\";\n}\n\n.fltr-meet-now-20:before {\n    content: \"\\f534\";\n}\n\n.fltr-meet-now-24:before {\n    content: \"\\f535\";\n}\n\n.fltr-megaphone-16:before {\n    content: \"\\f536\";\n}\n\n.fltr-megaphone-20:before {\n    content: \"\\f537\";\n}\n\n.fltr-megaphone-24:before {\n    content: \"\\f538\";\n}\n\n.fltr-megaphone-28:before {\n    content: \"\\f539\";\n}\n\n.fltr-megaphone-off-24:before {\n    content: \"\\f53a\";\n}\n\n.fltr-mention-16:before {\n    content: \"\\f53b\";\n}\n\n.fltr-mention-20:before {\n    content: \"\\f53c\";\n}\n\n.fltr-mention-24:before {\n    content: \"\\f53d\";\n}\n\n.fltr-merge-24:before {\n    content: \"\\f53e\";\n}\n\n.fltr-mic-off-12:before {\n    content: \"\\f53f\";\n}\n\n.fltr-mic-off-16:before {\n    content: \"\\f540\";\n}\n\n.fltr-mic-off-24:before {\n    content: \"\\f541\";\n}\n\n.fltr-mic-off-28:before {\n    content: \"\\f542\";\n}\n\n.fltr-mic-on-16:before {\n    content: \"\\f543\";\n}\n\n.fltr-mic-on-20:before {\n    content: \"\\f544\";\n}\n\n.fltr-mic-on-24:before {\n    content: \"\\f545\";\n}\n\n.fltr-mic-on-28:before {\n    content: \"\\f546\";\n}\n\n.fltr-mic-on-48:before {\n    content: \"\\f547\";\n}\n\n.fltr-mic-settings-24:before {\n    content: \"\\f548\";\n}\n\n.fltr-midi-20:before {\n    content: \"\\f549\";\n}\n\n.fltr-midi-24:before {\n    content: \"\\f54a\";\n}\n\n.fltr-missing-metadata-16:before {\n    content: \"\\f54b\";\n}\n\n.fltr-missing-metadata-24:before {\n    content: \"\\f54c\";\n}\n\n.fltr-mobile-optimized-24:before {\n    content: \"\\f54d\";\n}\n\n.fltr-money-16:before {\n    content: \"\\f54e\";\n}\n\n.fltr-money-20:before {\n    content: \"\\f54f\";\n}\n\n.fltr-money-24:before {\n    content: \"\\f550\";\n}\n\n.fltr-more-16:before {\n    content: \"\\f551\";\n}\n\n.fltr-more-20:before {\n    content: \"\\f552\";\n}\n\n.fltr-more-24:before {\n    content: \"\\f553\";\n}\n\n.fltr-more-28:before {\n    content: \"\\f554\";\n}\n\n.fltr-more-48:before {\n    content: \"\\f555\";\n}\n\n.fltr-more-vertical-20:before {\n    content: \"\\f556\";\n}\n\n.fltr-more-vertical-24:before {\n    content: \"\\f557\";\n}\n\n.fltr-more-vertical-28:before {\n    content: \"\\f558\";\n}\n\n.fltr-more-vertical-48:before {\n    content: \"\\f559\";\n}\n\n.fltr-movies-and-tv-24:before {\n    content: \"\\f55a\";\n}\n\n.fltr-multiselect-20:before {\n    content: \"\\f55b\";\n}\n\n.fltr-multiselect-24:before {\n    content: \"\\f55c\";\n}\n\n.fltr-music-20:before {\n    content: \"\\f55d\";\n}\n\n.fltr-music-24:before {\n    content: \"\\f55e\";\n}\n\n.fltr-my-location-24:before {\n    content: \"\\f55f\";\n}\n\n.fltr-navigation-20:before {\n    content: \"\\f560\";\n}\n\n.fltr-navigation-24:before {\n    content: \"\\f561\";\n}\n\n.fltr-network-check-24:before {\n    content: \"\\f562\";\n}\n\n.fltr-new-16:before {\n    content: \"\\f563\";\n}\n\n.fltr-new-24:before {\n    content: \"\\f564\";\n}\n\n.fltr-news-20:before {\n    content: \"\\f565\";\n}\n\n.fltr-news-24:before {\n    content: \"\\f566\";\n}\n\n.fltr-news-28:before {\n    content: \"\\f567\";\n}\n\n.fltr-next-16:before {\n    content: \"\\f568\";\n}\n\n.fltr-next-20:before {\n    content: \"\\f569\";\n}\n\n.fltr-next-24:before {\n    content: \"\\f56a\";\n}\n\n.fltr-note-20:before {\n    content: \"\\f56b\";\n}\n\n.fltr-note-24:before {\n    content: \"\\f56c\";\n}\n\n.fltr-note-add-16:before {\n    content: \"\\f56d\";\n}\n\n.fltr-note-add-20:before {\n    content: \"\\f56e\";\n}\n\n.fltr-note-add-24:before {\n    content: \"\\f56f\";\n}\n\n.fltr-notebook-24:before {\n    content: \"\\f570\";\n}\n\n.fltr-notebook-error-24:before {\n    content: \"\\f571\";\n}\n\n.fltr-notebook-lightning-24:before {\n    content: \"\\f572\";\n}\n\n.fltr-notebook-question-mark-24:before {\n    content: \"\\f573\";\n}\n\n.fltr-notebook-section-24:before {\n    content: \"\\f574\";\n}\n\n.fltr-notebook-sync-24:before {\n    content: \"\\f575\";\n}\n\n.fltr-notepad-20:before {\n    content: \"\\f576\";\n}\n\n.fltr-notepad-24:before {\n    content: \"\\f577\";\n}\n\n.fltr-notepad-28:before {\n    content: \"\\f578\";\n}\n\n.fltr-number-row-16:before {\n    content: \"\\f579\";\n}\n\n.fltr-number-row-20:before {\n    content: \"\\f57a\";\n}\n\n.fltr-number-row-24:before {\n    content: \"\\f57b\";\n}\n\n.fltr-number-symbol-16:before {\n    content: \"\\f57c\";\n}\n\n.fltr-number-symbol-20:before {\n    content: \"\\f57d\";\n}\n\n.fltr-number-symbol-24:before {\n    content: \"\\f57e\";\n}\n\n.fltr-office-apps-24:before {\n    content: \"\\f57f\";\n}\n\n.fltr-office-apps-28:before {\n    content: \"\\f580\";\n}\n\n.fltr-open-16:before {\n    content: \"\\f581\";\n}\n\n.fltr-open-20:before {\n    content: \"\\f582\";\n}\n\n.fltr-open-24:before {\n    content: \"\\f583\";\n}\n\n.fltr-open-folder-24:before {\n    content: \"\\f584\";\n}\n\n.fltr-open-in-browser-24:before {\n    content: \"\\f585\";\n}\n\n.fltr-options-16:before {\n    content: \"\\f586\";\n}\n\n.fltr-options-20:before {\n    content: \"\\f587\";\n}\n\n.fltr-options-24:before {\n    content: \"\\f588\";\n}\n\n.fltr-organization-20:before {\n    content: \"\\f589\";\n}\n\n.fltr-organization-24:before {\n    content: \"\\f58a\";\n}\n\n.fltr-organization-28:before {\n    content: \"\\f58b\";\n}\n\n.fltr-owner-24:before {\n    content: \"\\f58c\";\n}\n\n.fltr-page-20:before {\n    content: \"\\f58d\";\n}\n\n.fltr-page-fit-16:before {\n    content: \"\\f58e\";\n}\n\n.fltr-page-fit-20:before {\n    content: \"\\f58f\";\n}\n\n.fltr-page-fit-24:before {\n    content: \"\\f590\";\n}\n\n.fltr-paint-brush-16:before {\n    content: \"\\f591\";\n}\n\n.fltr-paint-brush-20:before {\n    content: \"\\f592\";\n}\n\n.fltr-paint-brush-24:before {\n    content: \"\\f593\";\n}\n\n.fltr-paint-bucket-16:before {\n    content: \"\\f594\";\n}\n\n.fltr-paint-bucket-20:before {\n    content: \"\\f595\";\n}\n\n.fltr-paint-bucket-24:before {\n    content: \"\\f596\";\n}\n\n.fltr-pair-24:before {\n    content: \"\\f597\";\n}\n\n.fltr-pane-close-16:before {\n    content: \"\\f598\";\n}\n\n.fltr-pane-close-20:before {\n    content: \"\\f599\";\n}\n\n.fltr-pane-close-24:before {\n    content: \"\\f59a\";\n}\n\n.fltr-pane-open-16:before {\n    content: \"\\f59b\";\n}\n\n.fltr-pane-open-20:before {\n    content: \"\\f59c\";\n}\n\n.fltr-pane-open-24:before {\n    content: \"\\f59d\";\n}\n\n.fltr-password-24:before {\n    content: \"\\f59e\";\n}\n\n.fltr-patient-24:before {\n    content: \"\\f59f\";\n}\n\n.fltr-pause-16:before {\n    content: \"\\f5a0\";\n}\n\n.fltr-pause-20:before {\n    content: \"\\f5a1\";\n}\n\n.fltr-pause-24:before {\n    content: \"\\f5a2\";\n}\n\n.fltr-pause-48:before {\n    content: \"\\f5a3\";\n}\n\n.fltr-payment-20:before {\n    content: \"\\f5a4\";\n}\n\n.fltr-payment-24:before {\n    content: \"\\f5a5\";\n}\n\n.fltr-pen-settings-24:before {\n    content: \"\\f5a6\";\n}\n\n.fltr-people-16:before {\n    content: \"\\f5a7\";\n}\n\n.fltr-people-20:before {\n    content: \"\\f5a8\";\n}\n\n.fltr-people-24:before {\n    content: \"\\f5a9\";\n}\n\n.fltr-people-28:before {\n    content: \"\\f5aa\";\n}\n\n.fltr-people-add-16:before {\n    content: \"\\f5ab\";\n}\n\n.fltr-people-add-20:before {\n    content: \"\\f5ac\";\n}\n\n.fltr-people-add-24:before {\n    content: \"\\f5ad\";\n}\n\n.fltr-people-audience-24:before {\n    content: \"\\f5ae\";\n}\n\n.fltr-people-community-16:before {\n    content: \"\\f5af\";\n}\n\n.fltr-people-community-20:before {\n    content: \"\\f5b0\";\n}\n\n.fltr-people-community-24:before {\n    content: \"\\f5b1\";\n}\n\n.fltr-people-community-28:before {\n    content: \"\\f5b2\";\n}\n\n.fltr-people-community-add-24:before {\n    content: \"\\f5b3\";\n}\n\n.fltr-people-prohibited-20:before {\n    content: \"\\f5b4\";\n}\n\n.fltr-people-search-24:before {\n    content: \"\\f5b5\";\n}\n\n.fltr-people-settings-20:before {\n    content: \"\\f5b6\";\n}\n\n.fltr-people-team-16:before {\n    content: \"\\f5b7\";\n}\n\n.fltr-people-team-20:before {\n    content: \"\\f5b8\";\n}\n\n.fltr-people-team-24:before {\n    content: \"\\f5b9\";\n}\n\n.fltr-people-team-28:before {\n    content: \"\\f5ba\";\n}\n\n.fltr-person-12:before {\n    content: \"\\f5bb\";\n}\n\n.fltr-person-16:before {\n    content: \"\\f5bc\";\n}\n\n.fltr-person-20:before {\n    content: \"\\f5bd\";\n}\n\n.fltr-person-24:before {\n    content: \"\\f5be\";\n}\n\n.fltr-person-28:before {\n    content: \"\\f5bf\";\n}\n\n.fltr-person-48:before {\n    content: \"\\f5c0\";\n}\n\n.fltr-person-accounts-24:before {\n    content: \"\\f5c1\";\n}\n\n.fltr-person-add-20:before {\n    content: \"\\f5c2\";\n}\n\n.fltr-person-add-24:before {\n    content: \"\\f5c3\";\n}\n\n.fltr-person-arrow-left-20:before {\n    content: \"\\f5c4\";\n}\n\n.fltr-person-arrow-left-24:before {\n    content: \"\\f5c5\";\n}\n\n.fltr-person-arrow-right-16:before {\n    content: \"\\f5c6\";\n}\n\n.fltr-person-arrow-right-20:before {\n    content: \"\\f5c7\";\n}\n\n.fltr-person-arrow-right-24:before {\n    content: \"\\f5c8\";\n}\n\n.fltr-person-available-16:before {\n    content: \"\\f5c9\";\n}\n\n.fltr-person-available-24:before {\n    content: \"\\f5ca\";\n}\n\n.fltr-person-block-24:before {\n    content: \"\\f5cb\";\n}\n\n.fltr-person-board-16:before {\n    content: \"\\f5cc\";\n}\n\n.fltr-person-board-20:before {\n    content: \"\\f5cd\";\n}\n\n.fltr-person-board-24:before {\n    content: \"\\f5ce\";\n}\n\n.fltr-person-call-24:before {\n    content: \"\\f5cf\";\n}\n\n.fltr-person-delete-16:before {\n    content: \"\\f5d0\";\n}\n\n.fltr-person-delete-24:before {\n    content: \"\\f5d1\";\n}\n\n.fltr-person-feedback-20:before {\n    content: \"\\f5d2\";\n}\n\n.fltr-person-feedback-24:before {\n    content: \"\\f5d3\";\n}\n\n.fltr-person-prohibited-20:before {\n    content: \"\\f5d4\";\n}\n\n.fltr-person-question-mark-16:before {\n    content: \"\\f5d5\";\n}\n\n.fltr-person-question-mark-20:before {\n    content: \"\\f5d6\";\n}\n\n.fltr-person-question-mark-24:before {\n    content: \"\\f5d7\";\n}\n\n.fltr-person-support-16:before {\n    content: \"\\f5d8\";\n}\n\n.fltr-person-support-20:before {\n    content: \"\\f5d9\";\n}\n\n.fltr-person-support-24:before {\n    content: \"\\f5da\";\n}\n\n.fltr-person-swap-16:before {\n    content: \"\\f5db\";\n}\n\n.fltr-person-swap-20:before {\n    content: \"\\f5dc\";\n}\n\n.fltr-person-swap-24:before {\n    content: \"\\f5dd\";\n}\n\n.fltr-person-voice-20:before {\n    content: \"\\f5de\";\n}\n\n.fltr-person-voice-24:before {\n    content: \"\\f5df\";\n}\n\n.fltr-phone-20:before {\n    content: \"\\f5e0\";\n}\n\n.fltr-phone-24:before {\n    content: \"\\f5e1\";\n}\n\n.fltr-phone-28:before {\n    content: \"\\f5e2\";\n}\n\n.fltr-phone-add-new-app-24:before {\n    content: \"\\f5e3\";\n}\n\n.fltr-phone-desktop-16:before {\n    content: \"\\f5e4\";\n}\n\n.fltr-phone-desktop-20:before {\n    content: \"\\f5e5\";\n}\n\n.fltr-phone-desktop-24:before {\n    content: \"\\f5e6\";\n}\n\n.fltr-phone-desktop-28:before {\n    content: \"\\f5e7\";\n}\n\n.fltr-phone-error-24:before {\n    content: \"\\f5e8\";\n}\n\n.fltr-phone-home-lock-24:before {\n    content: \"\\f5e9\";\n}\n\n.fltr-phone-laptop-20:before {\n    content: \"\\f5ea\";\n}\n\n.fltr-phone-laptop-24:before {\n    content: \"\\f5eb\";\n}\n\n.fltr-phone-link-setup-24:before {\n    content: \"\\f5ec\";\n}\n\n.fltr-phone-mobile-20:before {\n    content: \"\\f5ed\";\n}\n\n.fltr-phone-mobile-24:before {\n    content: \"\\f5ee\";\n}\n\n.fltr-phone-page-header-24:before {\n    content: \"\\f5ef\";\n}\n\n.fltr-phone-pagination-24:before {\n    content: \"\\f5f0\";\n}\n\n.fltr-phone-screen-time-24:before {\n    content: \"\\f5f1\";\n}\n\n.fltr-phone-shake-24:before {\n    content: \"\\f5f2\";\n}\n\n.fltr-phone-status-bar-24:before {\n    content: \"\\f5f3\";\n}\n\n.fltr-phone-tablet-20:before {\n    content: \"\\f5f4\";\n}\n\n.fltr-phone-tablet-24:before {\n    content: \"\\f5f5\";\n}\n\n.fltr-phone-to-pc-20:before {\n    content: \"\\f5f6\";\n}\n\n.fltr-phone-to-pc-24:before {\n    content: \"\\f5f7\";\n}\n\n.fltr-phone-update-24:before {\n    content: \"\\f5f8\";\n}\n\n.fltr-phone-vertical-scroll-24:before {\n    content: \"\\f5f9\";\n}\n\n.fltr-phone-vibrate-24:before {\n    content: \"\\f5fa\";\n}\n\n.fltr-photo-filter-24:before {\n    content: \"\\f5fb\";\n}\n\n.fltr-picture-in-picture-16:before {\n    content: \"\\f5fc\";\n}\n\n.fltr-picture-in-picture-20:before {\n    content: \"\\f5fd\";\n}\n\n.fltr-picture-in-picture-24:before {\n    content: \"\\f5fe\";\n}\n\n.fltr-pin-12:before {\n    content: \"\\f5ff\";\n}\n\n.fltr-pin-16:before {\n    content: \"\\f600\";\n}\n\n.fltr-pin-20:before {\n    content: \"\\f601\";\n}\n\n.fltr-pin-24:before {\n    content: \"\\f602\";\n}\n\n.fltr-pin-off-20:before {\n    content: \"\\f603\";\n}\n\n.fltr-pin-off-24:before {\n    content: \"\\f604\";\n}\n\n.fltr-play-20:before {\n    content: \"\\f605\";\n}\n\n.fltr-play-24:before {\n    content: \"\\f606\";\n}\n\n.fltr-play-48:before {\n    content: \"\\f607\";\n}\n\n.fltr-play-circle-24:before {\n    content: \"\\f608\";\n}\n\n.fltr-plug-disconnected-20:before {\n    content: \"\\f609\";\n}\n\n.fltr-plug-disconnected-24:before {\n    content: \"\\f60a\";\n}\n\n.fltr-plug-disconnected-28:before {\n    content: \"\\f60b\";\n}\n\n.fltr-point-scan-24:before {\n    content: \"\\f60c\";\n}\n\n.fltr-poll-24:before {\n    content: \"\\f60d\";\n}\n\n.fltr-power-20:before {\n    content: \"\\f60e\";\n}\n\n.fltr-power-24:before {\n    content: \"\\f60f\";\n}\n\n.fltr-power-28:before {\n    content: \"\\f610\";\n}\n\n.fltr-predictions-24:before {\n    content: \"\\f611\";\n}\n\n.fltr-premium-16:before {\n    content: \"\\f612\";\n}\n\n.fltr-premium-20:before {\n    content: \"\\f613\";\n}\n\n.fltr-premium-24:before {\n    content: \"\\f614\";\n}\n\n.fltr-premium-28:before {\n    content: \"\\f615\";\n}\n\n.fltr-presence-blocked-10:before {\n    content: \"\\f616\";\n}\n\n.fltr-presence-blocked-12:before {\n    content: \"\\f617\";\n}\n\n.fltr-presence-blocked-16:before {\n    content: \"\\f618\";\n}\n\n.fltr-presence-offline-10:before {\n    content: \"\\f619\";\n}\n\n.fltr-presence-offline-12:before {\n    content: \"\\f61a\";\n}\n\n.fltr-presence-offline-16:before {\n    content: \"\\f61b\";\n}\n\n.fltr-presence-oof-10:before {\n    content: \"\\f61c\";\n}\n\n.fltr-presence-oof-12:before {\n    content: \"\\f61d\";\n}\n\n.fltr-presence-oof-16:before {\n    content: \"\\f61e\";\n}\n\n.fltr-presence-unknown-10:before {\n    content: \"\\f61f\";\n}\n\n.fltr-presence-unknown-12:before {\n    content: \"\\f620\";\n}\n\n.fltr-presence-unknown-16:before {\n    content: \"\\f621\";\n}\n\n.fltr-presenter-24:before {\n    content: \"\\f622\";\n}\n\n.fltr-presenter-off-24:before {\n    content: \"\\f623\";\n}\n\n.fltr-preview-link-16:before {\n    content: \"\\f624\";\n}\n\n.fltr-preview-link-20:before {\n    content: \"\\f625\";\n}\n\n.fltr-preview-link-24:before {\n    content: \"\\f626\";\n}\n\n.fltr-previous-16:before {\n    content: \"\\f627\";\n}\n\n.fltr-previous-20:before {\n    content: \"\\f628\";\n}\n\n.fltr-previous-24:before {\n    content: \"\\f629\";\n}\n\n.fltr-print-20:before {\n    content: \"\\f62a\";\n}\n\n.fltr-print-24:before {\n    content: \"\\f62b\";\n}\n\n.fltr-print-48:before {\n    content: \"\\f62c\";\n}\n\n.fltr-prohibited-20:before {\n    content: \"\\f62d\";\n}\n\n.fltr-prohibited-24:before {\n    content: \"\\f62e\";\n}\n\n.fltr-prohibited-28:before {\n    content: \"\\f62f\";\n}\n\n.fltr-prohibited-48:before {\n    content: \"\\f630\";\n}\n\n.fltr-proofread-language-24:before {\n    content: \"\\f631\";\n}\n\n.fltr-protocol-handler-16:before {\n    content: \"\\f632\";\n}\n\n.fltr-protocol-handler-20:before {\n    content: \"\\f633\";\n}\n\n.fltr-protocol-handler-24:before {\n    content: \"\\f634\";\n}\n\n.fltr-qr-code-24:before {\n    content: \"\\f635\";\n}\n\n.fltr-qr-code-28:before {\n    content: \"\\f636\";\n}\n\n.fltr-question-16:before {\n    content: \"\\f637\";\n}\n\n.fltr-question-20:before {\n    content: \"\\f638\";\n}\n\n.fltr-question-24:before {\n    content: \"\\f639\";\n}\n\n.fltr-question-28:before {\n    content: \"\\f63a\";\n}\n\n.fltr-question-48:before {\n    content: \"\\f63b\";\n}\n\n.fltr-question-circle-16:before {\n    content: \"\\f63c\";\n}\n\n.fltr-question-circle-20:before {\n    content: \"\\f63d\";\n}\n\n.fltr-question-circle-24:before {\n    content: \"\\f63e\";\n}\n\n.fltr-question-circle-28:before {\n    content: \"\\f63f\";\n}\n\n.fltr-question-circle-48:before {\n    content: \"\\f640\";\n}\n\n.fltr-quiz-new-24:before {\n    content: \"\\f641\";\n}\n\n.fltr-quiz-new-28:before {\n    content: \"\\f642\";\n}\n\n.fltr-quiz-new-48:before {\n    content: \"\\f643\";\n}\n\n.fltr-radio-button-20:before {\n    content: \"\\f644\";\n}\n\n.fltr-radio-button-24:before {\n    content: \"\\f645\";\n}\n\n.fltr-rating-mature-16:before {\n    content: \"\\f646\";\n}\n\n.fltr-rating-mature-20:before {\n    content: \"\\f647\";\n}\n\n.fltr-rating-mature-24:before {\n    content: \"\\f648\";\n}\n\n.fltr-re-order-16:before {\n    content: \"\\f649\";\n}\n\n.fltr-re-order-24:before {\n    content: \"\\f64a\";\n}\n\n.fltr-re-order-dots-20:before {\n    content: \"\\f64b\";\n}\n\n.fltr-re-order-dots-24:before {\n    content: \"\\f64c\";\n}\n\n.fltr-read-aloud-20:before {\n    content: \"\\f64d\";\n}\n\n.fltr-read-aloud-24:before {\n    content: \"\\f64e\";\n}\n\n.fltr-read-only-16:before {\n    content: \"\\f64f\";\n}\n\n.fltr-read-only-24:before {\n    content: \"\\f650\";\n}\n\n.fltr-reading-list-16:before {\n    content: \"\\f651\";\n}\n\n.fltr-reading-list-20:before {\n    content: \"\\f652\";\n}\n\n.fltr-reading-list-24:before {\n    content: \"\\f653\";\n}\n\n.fltr-reading-list-28:before {\n    content: \"\\f654\";\n}\n\n.fltr-reading-list-add-16:before {\n    content: \"\\f655\";\n}\n\n.fltr-reading-list-add-20:before {\n    content: \"\\f656\";\n}\n\n.fltr-reading-list-add-24:before {\n    content: \"\\f657\";\n}\n\n.fltr-reading-list-add-28:before {\n    content: \"\\f658\";\n}\n\n.fltr-reading-mode-20:before {\n    content: \"\\f659\";\n}\n\n.fltr-reading-mode-24:before {\n    content: \"\\f65a\";\n}\n\n.fltr-reading-mode-mobile-20:before {\n    content: \"\\f65b\";\n}\n\n.fltr-reading-mode-mobile-24:before {\n    content: \"\\f65c\";\n}\n\n.fltr-reciept-20:before {\n    content: \"\\f65d\";\n}\n\n.fltr-reciept-24:before {\n    content: \"\\f65e\";\n}\n\n.fltr-recommended-24:before {\n    content: \"\\f65f\";\n}\n\n.fltr-record-16:before {\n    content: \"\\f660\";\n}\n\n.fltr-record-20:before {\n    content: \"\\f661\";\n}\n\n.fltr-record-24:before {\n    content: \"\\f662\";\n}\n\n.fltr-remove-12:before {\n    content: \"\\f663\";\n}\n\n.fltr-remove-16:before {\n    content: \"\\f664\";\n}\n\n.fltr-remove-20:before {\n    content: \"\\f665\";\n}\n\n.fltr-remove-24:before {\n    content: \"\\f666\";\n}\n\n.fltr-remove-recent-24:before {\n    content: \"\\f667\";\n}\n\n.fltr-rename-16:before {\n    content: \"\\f668\";\n}\n\n.fltr-rename-20:before {\n    content: \"\\f669\";\n}\n\n.fltr-rename-24:before {\n    content: \"\\f66a\";\n}\n\n.fltr-rename-28:before {\n    content: \"\\f66b\";\n}\n\n.fltr-resize-20:before {\n    content: \"\\f66c\";\n}\n\n.fltr-resize-image-24:before {\n    content: \"\\f66d\";\n}\n\n.fltr-resize-table-24:before {\n    content: \"\\f66e\";\n}\n\n.fltr-resize-video-24:before {\n    content: \"\\f66f\";\n}\n\n.fltr-restore-16:before {\n    content: \"\\f670\";\n}\n\n.fltr-reward-16:before {\n    content: \"\\f671\";\n}\n\n.fltr-reward-20:before {\n    content: \"\\f672\";\n}\n\n.fltr-reward-24:before {\n    content: \"\\f673\";\n}\n\n.fltr-rewind-20:before {\n    content: \"\\f674\";\n}\n\n.fltr-rewind-24:before {\n    content: \"\\f675\";\n}\n\n.fltr-rocket-16:before {\n    content: \"\\f676\";\n}\n\n.fltr-rocket-20:before {\n    content: \"\\f677\";\n}\n\n.fltr-rocket-24:before {\n    content: \"\\f678\";\n}\n\n.fltr-router-24:before {\n    content: \"\\f679\";\n}\n\n.fltr-row-triple-24:before {\n    content: \"\\f67a\";\n}\n\n.fltr-ruler-16:before {\n    content: \"\\f67b\";\n}\n\n.fltr-ruler-20:before {\n    content: \"\\f67c\";\n}\n\n.fltr-ruler-24:before {\n    content: \"\\f67d\";\n}\n\n.fltr-run-24:before {\n    content: \"\\f67e\";\n}\n\n.fltr-save-20:before {\n    content: \"\\f67f\";\n}\n\n.fltr-save-24:before {\n    content: \"\\f680\";\n}\n\n.fltr-save-as-20:before {\n    content: \"\\f681\";\n}\n\n.fltr-save-as-24:before {\n    content: \"\\f682\";\n}\n\n.fltr-save-copy-24:before {\n    content: \"\\f683\";\n}\n\n.fltr-savings-16:before {\n    content: \"\\f684\";\n}\n\n.fltr-savings-20:before {\n    content: \"\\f685\";\n}\n\n.fltr-savings-24:before {\n    content: \"\\f686\";\n}\n\n.fltr-scale-fill-24:before {\n    content: \"\\f687\";\n}\n\n.fltr-scale-fit-16:before {\n    content: \"\\f688\";\n}\n\n.fltr-scale-fit-20:before {\n    content: \"\\f689\";\n}\n\n.fltr-scale-fit-24:before {\n    content: \"\\f68a\";\n}\n\n.fltr-scan-24:before {\n    content: \"\\f68b\";\n}\n\n.fltr-scratchpad-24:before {\n    content: \"\\f68c\";\n}\n\n.fltr-screenshot-20:before {\n    content: \"\\f68d\";\n}\n\n.fltr-screenshot-24:before {\n    content: \"\\f68e\";\n}\n\n.fltr-search-20:before {\n    content: \"\\f68f\";\n}\n\n.fltr-search-24:before {\n    content: \"\\f690\";\n}\n\n.fltr-search-28:before {\n    content: \"\\f691\";\n}\n\n.fltr-search-info-20:before {\n    content: \"\\f692\";\n}\n\n.fltr-search-info-24:before {\n    content: \"\\f693\";\n}\n\n.fltr-search-square-24:before {\n    content: \"\\f694\";\n}\n\n.fltr-select-all-24:before {\n    content: \"\\f695\";\n}\n\n.fltr-select-all-off-24:before {\n    content: \"\\f696\";\n}\n\n.fltr-select-object-20:before {\n    content: \"\\f697\";\n}\n\n.fltr-select-object-24:before {\n    content: \"\\f698\";\n}\n\n.fltr-send-20:before {\n    content: \"\\f699\";\n}\n\n.fltr-send-24:before {\n    content: \"\\f69a\";\n}\n\n.fltr-send-28:before {\n    content: \"\\f69b\";\n}\n\n.fltr-send-clock-20:before {\n    content: \"\\f69c\";\n}\n\n.fltr-send-copy-24:before {\n    content: \"\\f69d\";\n}\n\n.fltr-send-logging-24:before {\n    content: \"\\f69e\";\n}\n\n.fltr-send-to-back-20:before {\n    content: \"\\f69f\";\n}\n\n.fltr-send-to-back-24:before {\n    content: \"\\f6a0\";\n}\n\n.fltr-serial-port-16:before {\n    content: \"\\f6a1\";\n}\n\n.fltr-serial-port-20:before {\n    content: \"\\f6a2\";\n}\n\n.fltr-serial-port-24:before {\n    content: \"\\f6a3\";\n}\n\n.fltr-service-bell-24:before {\n    content: \"\\f6a4\";\n}\n\n.fltr-set-top-stack-16:before {\n    content: \"\\f6a5\";\n}\n\n.fltr-set-top-stack-20:before {\n    content: \"\\f6a6\";\n}\n\n.fltr-set-top-stack-24:before {\n    content: \"\\f6a7\";\n}\n\n.fltr-settings-16:before {\n    content: \"\\f6a8\";\n}\n\n.fltr-settings-20:before {\n    content: \"\\f6a9\";\n}\n\n.fltr-settings-24:before {\n    content: \"\\f6aa\";\n}\n\n.fltr-settings-28:before {\n    content: \"\\f6ab\";\n}\n\n.fltr-shapes-16:before {\n    content: \"\\f6ac\";\n}\n\n.fltr-shapes-20:before {\n    content: \"\\f6ad\";\n}\n\n.fltr-shapes-24:before {\n    content: \"\\f6ae\";\n}\n\n.fltr-share-20:before {\n    content: \"\\f6af\";\n}\n\n.fltr-share-24:before {\n    content: \"\\f6b0\";\n}\n\n.fltr-share-android-20:before {\n    content: \"\\f6b1\";\n}\n\n.fltr-share-android-24:before {\n    content: \"\\f6b2\";\n}\n\n.fltr-share-close-tray-24:before {\n    content: \"\\f6b3\";\n}\n\n.fltr-share-desktop-24:before {\n    content: \"\\f6b4\";\n}\n\n.fltr-share-ios-20:before {\n    content: \"\\f6b5\";\n}\n\n.fltr-share-ios-24:before {\n    content: \"\\f6b6\";\n}\n\n.fltr-share-ios-28:before {\n    content: \"\\f6b7\";\n}\n\n.fltr-share-ios-48:before {\n    content: \"\\f6b8\";\n}\n\n.fltr-share-screen-20:before {\n    content: \"\\f6b9\";\n}\n\n.fltr-share-screen-24:before {\n    content: \"\\f6ba\";\n}\n\n.fltr-share-screen-28:before {\n    content: \"\\f6bb\";\n}\n\n.fltr-share-stop-24:before {\n    content: \"\\f6bc\";\n}\n\n.fltr-share-stop-28:before {\n    content: \"\\f6bd\";\n}\n\n.fltr-shield-20:before {\n    content: \"\\f6be\";\n}\n\n.fltr-shield-24:before {\n    content: \"\\f6bf\";\n}\n\n.fltr-shield-dismiss-20:before {\n    content: \"\\f6c0\";\n}\n\n.fltr-shield-dismiss-24:before {\n    content: \"\\f6c1\";\n}\n\n.fltr-shield-error-20:before {\n    content: \"\\f6c2\";\n}\n\n.fltr-shield-error-24:before {\n    content: \"\\f6c3\";\n}\n\n.fltr-shield-keyhole-16:before {\n    content: \"\\f6c4\";\n}\n\n.fltr-shield-keyhole-20:before {\n    content: \"\\f6c5\";\n}\n\n.fltr-shield-keyhole-24:before {\n    content: \"\\f6c6\";\n}\n\n.fltr-shield-prohibited-20:before {\n    content: \"\\f6c7\";\n}\n\n.fltr-shield-prohibited-24:before {\n    content: \"\\f6c8\";\n}\n\n.fltr-shifts-24:before {\n    content: \"\\f6c9\";\n}\n\n.fltr-shifts-24h-20:before {\n    content: \"\\f6ca\";\n}\n\n.fltr-shifts-24h-24:before {\n    content: \"\\f6cb\";\n}\n\n.fltr-shifts-28:before {\n    content: \"\\f6cc\";\n}\n\n.fltr-shifts-30-minutes-24:before {\n    content: \"\\f6cd\";\n}\n\n.fltr-shifts-activity-20:before {\n    content: \"\\f6ce\";\n}\n\n.fltr-shifts-activity-24:before {\n    content: \"\\f6cf\";\n}\n\n.fltr-shifts-add-24:before {\n    content: \"\\f6d0\";\n}\n\n.fltr-shifts-approve-24:before {\n    content: \"\\f6d1\";\n}\n\n.fltr-shifts-availability-24:before {\n    content: \"\\f6d2\";\n}\n\n.fltr-shifts-deny-24:before {\n    content: \"\\f6d3\";\n}\n\n.fltr-shifts-open-20:before {\n    content: \"\\f6d4\";\n}\n\n.fltr-shifts-open-24:before {\n    content: \"\\f6d5\";\n}\n\n.fltr-shifts-pending-24:before {\n    content: \"\\f6d6\";\n}\n\n.fltr-shifts-team-24:before {\n    content: \"\\f6d7\";\n}\n\n.fltr-ship-20:before {\n    content: \"\\f6d8\";\n}\n\n.fltr-ship-24:before {\n    content: \"\\f6d9\";\n}\n\n.fltr-sign-out-24:before {\n    content: \"\\f6da\";\n}\n\n.fltr-signature-16:before {\n    content: \"\\f6db\";\n}\n\n.fltr-signature-20:before {\n    content: \"\\f6dc\";\n}\n\n.fltr-signature-24:before {\n    content: \"\\f6dd\";\n}\n\n.fltr-signature-28:before {\n    content: \"\\f6de\";\n}\n\n.fltr-signed-16:before {\n    content: \"\\f6df\";\n}\n\n.fltr-signed-20:before {\n    content: \"\\f6e0\";\n}\n\n.fltr-signed-24:before {\n    content: \"\\f6e1\";\n}\n\n.fltr-sim-16:before {\n    content: \"\\f6e2\";\n}\n\n.fltr-sim-20:before {\n    content: \"\\f6e3\";\n}\n\n.fltr-sim-24:before {\n    content: \"\\f6e4\";\n}\n\n.fltr-sleep-24:before {\n    content: \"\\f6e5\";\n}\n\n.fltr-slide-add-24:before {\n    content: \"\\f6e6\";\n}\n\n.fltr-slide-design-24:before {\n    content: \"\\f6e7\";\n}\n\n.fltr-slide-hide-24:before {\n    content: \"\\f6e8\";\n}\n\n.fltr-slide-layout-20:before {\n    content: \"\\f6e9\";\n}\n\n.fltr-slide-layout-24:before {\n    content: \"\\f6ea\";\n}\n\n.fltr-slide-microphone-24:before {\n    content: \"\\f6eb\";\n}\n\n.fltr-slide-text-24:before {\n    content: \"\\f6ec\";\n}\n\n.fltr-slow-mode-16:before {\n    content: \"\\f6ed\";\n}\n\n.fltr-slow-mode-20:before {\n    content: \"\\f6ee\";\n}\n\n.fltr-slow-mode-24:before {\n    content: \"\\f6ef\";\n}\n\n.fltr-slow-mode-28:before {\n    content: \"\\f6f0\";\n}\n\n.fltr-small-16:before {\n    content: \"\\f6f1\";\n}\n\n.fltr-small-20:before {\n    content: \"\\f6f2\";\n}\n\n.fltr-small-24:before {\n    content: \"\\f6f3\";\n}\n\n.fltr-snooze-16:before {\n    content: \"\\f6f4\";\n}\n\n.fltr-snooze-24:before {\n    content: \"\\f6f5\";\n}\n\n.fltr-sound-source-24:before {\n    content: \"\\f6f6\";\n}\n\n.fltr-sound-source-28:before {\n    content: \"\\f6f7\";\n}\n\n.fltr-spacebar-24:before {\n    content: \"\\f6f8\";\n}\n\n.fltr-speaker-0-24:before {\n    content: \"\\f6f9\";\n}\n\n.fltr-speaker-16:before {\n    content: \"\\f6fa\";\n}\n\n.fltr-speaker-1-24:before {\n    content: \"\\f6fb\";\n}\n\n.fltr-speaker-20:before {\n    content: \"\\f6fc\";\n}\n\n.fltr-speaker-24:before {\n    content: \"\\f6fd\";\n}\n\n.fltr-speaker-28:before {\n    content: \"\\f6fe\";\n}\n\n.fltr-speaker-bluetooth-24:before {\n    content: \"\\f6ff\";\n}\n\n.fltr-speaker-edit-16:before {\n    content: \"\\f700\";\n}\n\n.fltr-speaker-edit-20:before {\n    content: \"\\f701\";\n}\n\n.fltr-speaker-edit-24:before {\n    content: \"\\f702\";\n}\n\n.fltr-speaker-none-20:before {\n    content: \"\\f703\";\n}\n\n.fltr-speaker-none-24:before {\n    content: \"\\f704\";\n}\n\n.fltr-speaker-none-28:before {\n    content: \"\\f705\";\n}\n\n.fltr-speaker-off-24:before {\n    content: \"\\f706\";\n}\n\n.fltr-speaker-off-28:before {\n    content: \"\\f707\";\n}\n\n.fltr-speaker-settings-24:before {\n    content: \"\\f708\";\n}\n\n.fltr-spinner-ios-20:before {\n    content: \"\\f709\";\n}\n\n.fltr-sports-16:before {\n    content: \"\\f70a\";\n}\n\n.fltr-sports-20:before {\n    content: \"\\f70b\";\n}\n\n.fltr-sports-24:before {\n    content: \"\\f70c\";\n}\n\n.fltr-star-12:before {\n    content: \"\\f70d\";\n}\n\n.fltr-star-16:before {\n    content: \"\\f70e\";\n}\n\n.fltr-star-20:before {\n    content: \"\\f70f\";\n}\n\n.fltr-star-24:before {\n    content: \"\\f710\";\n}\n\n.fltr-star-28:before {\n    content: \"\\f711\";\n}\n\n.fltr-star-add-16:before {\n    content: \"\\f712\";\n}\n\n.fltr-star-add-20:before {\n    content: \"\\f713\";\n}\n\n.fltr-star-add-24:before {\n    content: \"\\f714\";\n}\n\n.fltr-star-arrow-right-24:before {\n    content: \"\\f715\";\n}\n\n.fltr-star-arrow-right-start-24:before {\n    content: \"\\f716\";\n}\n\n.fltr-star-emphasis-24:before {\n    content: \"\\f717\";\n}\n\n.fltr-star-off-12:before {\n    content: \"\\f718\";\n}\n\n.fltr-star-off-16:before {\n    content: \"\\f719\";\n}\n\n.fltr-star-off-20:before {\n    content: \"\\f71a\";\n}\n\n.fltr-star-off-24:before {\n    content: \"\\f71b\";\n}\n\n.fltr-star-off-28:before {\n    content: \"\\f71c\";\n}\n\n.fltr-star-prohibited-16:before {\n    content: \"\\f71d\";\n}\n\n.fltr-star-prohibited-20:before {\n    content: \"\\f71e\";\n}\n\n.fltr-star-prohibited-24:before {\n    content: \"\\f71f\";\n}\n\n.fltr-star-settings-24:before {\n    content: \"\\f720\";\n}\n\n.fltr-status-16:before {\n    content: \"\\f721\";\n}\n\n.fltr-status-20:before {\n    content: \"\\f722\";\n}\n\n.fltr-status-24:before {\n    content: \"\\f723\";\n}\n\n.fltr-stethoscope-20:before {\n    content: \"\\f724\";\n}\n\n.fltr-stethoscope-24:before {\n    content: \"\\f725\";\n}\n\n.fltr-sticker-20:before {\n    content: \"\\f726\";\n}\n\n.fltr-sticker-24:before {\n    content: \"\\f727\";\n}\n\n.fltr-sticker-add-24:before {\n    content: \"\\f728\";\n}\n\n.fltr-stop-16:before {\n    content: \"\\f729\";\n}\n\n.fltr-stop-20:before {\n    content: \"\\f72a\";\n}\n\n.fltr-stop-24:before {\n    content: \"\\f72b\";\n}\n\n.fltr-storage-24:before {\n    content: \"\\f72c\";\n}\n\n.fltr-store-16:before {\n    content: \"\\f72d\";\n}\n\n.fltr-store-20:before {\n    content: \"\\f72e\";\n}\n\n.fltr-store-24:before {\n    content: \"\\f72f\";\n}\n\n.fltr-store-microsoft-16:before {\n    content: \"\\f730\";\n}\n\n.fltr-store-microsoft-20:before {\n    content: \"\\f731\";\n}\n\n.fltr-store-microsoft-24:before {\n    content: \"\\f732\";\n}\n\n.fltr-style-guide-24:before {\n    content: \"\\f733\";\n}\n\n.fltr-sub-grid-24:before {\n    content: \"\\f734\";\n}\n\n.fltr-subway-20:before {\n    content: \"\\f735\";\n}\n\n.fltr-subway-24:before {\n    content: \"\\f736\";\n}\n\n.fltr-suggestion-24:before {\n    content: \"\\f737\";\n}\n\n.fltr-surface-earbuds-20:before {\n    content: \"\\f738\";\n}\n\n.fltr-surface-earbuds-24:before {\n    content: \"\\f739\";\n}\n\n.fltr-surface-hub-20:before {\n    content: \"\\f73a\";\n}\n\n.fltr-surface-hub-24:before {\n    content: \"\\f73b\";\n}\n\n.fltr-swipe-down-24:before {\n    content: \"\\f73c\";\n}\n\n.fltr-swipe-right-24:before {\n    content: \"\\f73d\";\n}\n\n.fltr-swipe-up-24:before {\n    content: \"\\f73e\";\n}\n\n.fltr-symbols-24:before {\n    content: \"\\f73f\";\n}\n\n.fltr-sync-off-16:before {\n    content: \"\\f740\";\n}\n\n.fltr-sync-off-20:before {\n    content: \"\\f741\";\n}\n\n.fltr-system-24:before {\n    content: \"\\f742\";\n}\n\n.fltr-tab-16:before {\n    content: \"\\f743\";\n}\n\n.fltr-tab-20:before {\n    content: \"\\f744\";\n}\n\n.fltr-tab-24:before {\n    content: \"\\f745\";\n}\n\n.fltr-tab-28:before {\n    content: \"\\f746\";\n}\n\n.fltr-tab-desktop-20:before {\n    content: \"\\f747\";\n}\n\n.fltr-tab-desktop-arrow-clockwise-16:before {\n    content: \"\\f748\";\n}\n\n.fltr-tab-desktop-arrow-clockwise-20:before {\n    content: \"\\f749\";\n}\n\n.fltr-tab-desktop-arrow-clockwise-24:before {\n    content: \"\\f74a\";\n}\n\n.fltr-tab-desktop-clock-20:before {\n    content: \"\\f74b\";\n}\n\n.fltr-tab-desktop-copy-20:before {\n    content: \"\\f74c\";\n}\n\n.fltr-tab-desktop-image-16:before {\n    content: \"\\f74d\";\n}\n\n.fltr-tab-desktop-image-20:before {\n    content: \"\\f74e\";\n}\n\n.fltr-tab-desktop-image-24:before {\n    content: \"\\f74f\";\n}\n\n.fltr-tab-desktop-multiple-20:before {\n    content: \"\\f750\";\n}\n\n.fltr-tab-desktop-new-page-20:before {\n    content: \"\\f751\";\n}\n\n.fltr-tab-in-private-16:before {\n    content: \"\\f752\";\n}\n\n.fltr-tab-in-private-20:before {\n    content: \"\\f753\";\n}\n\n.fltr-tab-in-private-24:before {\n    content: \"\\f754\";\n}\n\n.fltr-tab-in-private-28:before {\n    content: \"\\f755\";\n}\n\n.fltr-tab-inprivate-account-20:before {\n    content: \"\\f756\";\n}\n\n.fltr-tab-inprivate-account-24:before {\n    content: \"\\f757\";\n}\n\n.fltr-tab-new-20:before {\n    content: \"\\f758\";\n}\n\n.fltr-tab-new-24:before {\n    content: \"\\f759\";\n}\n\n.fltr-tab-sweep-24:before {\n    content: \"\\f75a\";\n}\n\n.fltr-tab-tracking-prevention-20:before {\n    content: \"\\f75b\";\n}\n\n.fltr-tab-tracking-prevention-24:before {\n    content: \"\\f75c\";\n}\n\n.fltr-table-20:before {\n    content: \"\\f75d\";\n}\n\n.fltr-table-24:before {\n    content: \"\\f75e\";\n}\n\n.fltr-table-add-24:before {\n    content: \"\\f75f\";\n}\n\n.fltr-table-cells-merge-20:before {\n    content: \"\\f760\";\n}\n\n.fltr-table-cells-merge-24:before {\n    content: \"\\f761\";\n}\n\n.fltr-table-cells-split-20:before {\n    content: \"\\f762\";\n}\n\n.fltr-table-cells-split-24:before {\n    content: \"\\f763\";\n}\n\n.fltr-table-column-delete-24:before {\n    content: \"\\f764\";\n}\n\n.fltr-table-column-insert-24:before {\n    content: \"\\f765\";\n}\n\n.fltr-table-column-resize-24:before {\n    content: \"\\f766\";\n}\n\n.fltr-table-delete-24:before {\n    content: \"\\f767\";\n}\n\n.fltr-table-edit-24:before {\n    content: \"\\f768\";\n}\n\n.fltr-table-freeze-24:before {\n    content: \"\\f769\";\n}\n\n.fltr-table-freeze-column-24:before {\n    content: \"\\f76a\";\n}\n\n.fltr-table-freeze-row-24:before {\n    content: \"\\f76b\";\n}\n\n.fltr-table-insert-down-24:before {\n    content: \"\\f76c\";\n}\n\n.fltr-table-insert-left-24:before {\n    content: \"\\f76d\";\n}\n\n.fltr-table-insert-right-24:before {\n    content: \"\\f76e\";\n}\n\n.fltr-table-insert-up-24:before {\n    content: \"\\f76f\";\n}\n\n.fltr-table-move-down-24:before {\n    content: \"\\f770\";\n}\n\n.fltr-table-move-left-24:before {\n    content: \"\\f771\";\n}\n\n.fltr-table-move-right-24:before {\n    content: \"\\f772\";\n}\n\n.fltr-table-move-up-24:before {\n    content: \"\\f773\";\n}\n\n.fltr-table-row-delete-24:before {\n    content: \"\\f774\";\n}\n\n.fltr-table-row-insert-24:before {\n    content: \"\\f775\";\n}\n\n.fltr-table-row-resize-24:before {\n    content: \"\\f776\";\n}\n\n.fltr-table-settings-24:before {\n    content: \"\\f777\";\n}\n\n.fltr-table-switch-24:before {\n    content: \"\\f778\";\n}\n\n.fltr-tablet-20:before {\n    content: \"\\f779\";\n}\n\n.fltr-tablet-24:before {\n    content: \"\\f77a\";\n}\n\n.fltr-tabs-24:before {\n    content: \"\\f77b\";\n}\n\n.fltr-tag-20:before {\n    content: \"\\f77c\";\n}\n\n.fltr-tag-24:before {\n    content: \"\\f77d\";\n}\n\n.fltr-tap-double-24:before {\n    content: \"\\f77e\";\n}\n\n.fltr-tap-single-24:before {\n    content: \"\\f77f\";\n}\n\n.fltr-target-16:before {\n    content: \"\\f780\";\n}\n\n.fltr-target-20:before {\n    content: \"\\f781\";\n}\n\n.fltr-target-24:before {\n    content: \"\\f782\";\n}\n\n.fltr-target-edit-16:before {\n    content: \"\\f783\";\n}\n\n.fltr-target-edit-20:before {\n    content: \"\\f784\";\n}\n\n.fltr-target-edit-24:before {\n    content: \"\\f785\";\n}\n\n.fltr-task-list-20:before {\n    content: \"\\f786\";\n}\n\n.fltr-task-list-24:before {\n    content: \"\\f787\";\n}\n\n.fltr-task-list-add-20:before {\n    content: \"\\f788\";\n}\n\n.fltr-task-list-add-24:before {\n    content: \"\\f789\";\n}\n\n.fltr-tasks-app-24:before {\n    content: \"\\f78a\";\n}\n\n.fltr-tasks-app-28:before {\n    content: \"\\f78b\";\n}\n\n.fltr-team-add-24:before {\n    content: \"\\f78c\";\n}\n\n.fltr-team-delete-24:before {\n    content: \"\\f78d\";\n}\n\n.fltr-teddy-24:before {\n    content: \"\\f78e\";\n}\n\n.fltr-temperature-20:before {\n    content: \"\\f78f\";\n}\n\n.fltr-temperature-24:before {\n    content: \"\\f790\";\n}\n\n.fltr-tent-24:before {\n    content: \"\\f791\";\n}\n\n.fltr-test-call-24:before {\n    content: \"\\f792\";\n}\n\n.fltr-text-24:before {\n    content: \"\\f793\";\n}\n\n.fltr-text-add-24:before {\n    content: \"\\f794\";\n}\n\n.fltr-text-add-space-after-20:before {\n    content: \"\\f795\";\n}\n\n.fltr-text-add-space-after-24:before {\n    content: \"\\f796\";\n}\n\n.fltr-text-add-space-before-20:before {\n    content: \"\\f797\";\n}\n\n.fltr-text-add-space-before-24:before {\n    content: \"\\f798\";\n}\n\n.fltr-text-align-center-20:before {\n    content: \"\\f799\";\n}\n\n.fltr-text-align-center-24:before {\n    content: \"\\f79a\";\n}\n\n.fltr-text-align-distributed-20:before {\n    content: \"\\f79b\";\n}\n\n.fltr-text-align-distributed-24:before {\n    content: \"\\f79c\";\n}\n\n.fltr-text-align-justify-20:before {\n    content: \"\\f79d\";\n}\n\n.fltr-text-align-justify-24:before {\n    content: \"\\f79e\";\n}\n\n.fltr-text-align-left-20:before {\n    content: \"\\f79f\";\n}\n\n.fltr-text-align-left-24:before {\n    content: \"\\f7a0\";\n}\n\n.fltr-text-align-right-20:before {\n    content: \"\\f7a1\";\n}\n\n.fltr-text-align-right-24:before {\n    content: \"\\f7a2\";\n}\n\n.fltr-text-asterisk-20:before {\n    content: \"\\f7a3\";\n}\n\n.fltr-text-bold-20:before {\n    content: \"\\f7a4\";\n}\n\n.fltr-text-bold-24:before {\n    content: \"\\f7a5\";\n}\n\n.fltr-text-bullet-list-20:before {\n    content: \"\\f7a6\";\n}\n\n.fltr-text-bullet-list-24:before {\n    content: \"\\f7a7\";\n}\n\n.fltr-text-bullet-list-add-24:before {\n    content: \"\\f7a8\";\n}\n\n.fltr-text-bullet-list-square-24:before {\n    content: \"\\f7a9\";\n}\n\n.fltr-text-bullet-list-square-warning-16:before {\n    content: \"\\f7aa\";\n}\n\n.fltr-text-bullet-list-square-warning-20:before {\n    content: \"\\f7ab\";\n}\n\n.fltr-text-bullet-list-square-warning-24:before {\n    content: \"\\f7ac\";\n}\n\n.fltr-text-bullet-list-tree-16:before {\n    content: \"\\f7ad\";\n}\n\n.fltr-text-bullet-list-tree-20:before {\n    content: \"\\f7ae\";\n}\n\n.fltr-text-bullet-list-tree-24:before {\n    content: \"\\f7af\";\n}\n\n.fltr-text-change-accept-20:before {\n    content: \"\\f7b0\";\n}\n\n.fltr-text-change-accept-24:before {\n    content: \"\\f7b1\";\n}\n\n.fltr-text-change-case-20:before {\n    content: \"\\f7b2\";\n}\n\n.fltr-text-change-case-24:before {\n    content: \"\\f7b3\";\n}\n\n.fltr-text-change-next-20:before {\n    content: \"\\f7b4\";\n}\n\n.fltr-text-change-next-24:before {\n    content: \"\\f7b5\";\n}\n\n.fltr-text-change-previous-20:before {\n    content: \"\\f7b6\";\n}\n\n.fltr-text-change-previous-24:before {\n    content: \"\\f7b7\";\n}\n\n.fltr-text-change-reject-20:before {\n    content: \"\\f7b8\";\n}\n\n.fltr-text-change-reject-24:before {\n    content: \"\\f7b9\";\n}\n\n.fltr-text-change-settings-20:before {\n    content: \"\\f7ba\";\n}\n\n.fltr-text-change-settings-24:before {\n    content: \"\\f7bb\";\n}\n\n.fltr-text-clear-formatting-20:before {\n    content: \"\\f7bc\";\n}\n\n.fltr-text-clear-formatting-24:before {\n    content: \"\\f7bd\";\n}\n\n.fltr-text-collapse-24:before {\n    content: \"\\f7be\";\n}\n\n.fltr-text-color-20:before {\n    content: \"\\f7bf\";\n}\n\n.fltr-text-color-24:before {\n    content: \"\\f7c0\";\n}\n\n.fltr-text-column-one-20:before {\n    content: \"\\f7c1\";\n}\n\n.fltr-text-column-one-24:before {\n    content: \"\\f7c2\";\n}\n\n.fltr-text-column-three-20:before {\n    content: \"\\f7c3\";\n}\n\n.fltr-text-column-three-24:before {\n    content: \"\\f7c4\";\n}\n\n.fltr-text-column-two-20:before {\n    content: \"\\f7c5\";\n}\n\n.fltr-text-column-two-24:before {\n    content: \"\\f7c6\";\n}\n\n.fltr-text-column-two-left-20:before {\n    content: \"\\f7c7\";\n}\n\n.fltr-text-column-two-left-24:before {\n    content: \"\\f7c8\";\n}\n\n.fltr-text-column-two-right-20:before {\n    content: \"\\f7c9\";\n}\n\n.fltr-text-column-two-right-24:before {\n    content: \"\\f7ca\";\n}\n\n.fltr-text-description-20:before {\n    content: \"\\f7cb\";\n}\n\n.fltr-text-description-24:before {\n    content: \"\\f7cc\";\n}\n\n.fltr-text-direction-20:before {\n    content: \"\\f7cd\";\n}\n\n.fltr-text-direction-24:before {\n    content: \"\\f7ce\";\n}\n\n.fltr-text-direction-horizontal-ltr-20:before {\n    content: \"\\f7cf\";\n}\n\n.fltr-text-direction-horizontal-ltr-24:before {\n    content: \"\\f7d0\";\n}\n\n.fltr-text-direction-rotate-270-20:before {\n    content: \"\\f7d1\";\n}\n\n.fltr-text-direction-rotate-270-24:before {\n    content: \"\\f7d2\";\n}\n\n.fltr-text-direction-rotate-270-ac-20:before {\n    content: \"\\f7d3\";\n}\n\n.fltr-text-direction-rotate-270-ac-24:before {\n    content: \"\\f7d4\";\n}\n\n.fltr-text-direction-rotate-90-20:before {\n    content: \"\\f7d5\";\n}\n\n.fltr-text-direction-rotate-90-24:before {\n    content: \"\\f7d6\";\n}\n\n.fltr-text-direction-vertical-20:before {\n    content: \"\\f7d7\";\n}\n\n.fltr-text-direction-vertical-24:before {\n    content: \"\\f7d8\";\n}\n\n.fltr-text-edit-style-20:before {\n    content: \"\\f7d9\";\n}\n\n.fltr-text-edit-style-24:before {\n    content: \"\\f7da\";\n}\n\n.fltr-text-effects-20:before {\n    content: \"\\f7db\";\n}\n\n.fltr-text-effects-24:before {\n    content: \"\\f7dc\";\n}\n\n.fltr-text-expand-24:before {\n    content: \"\\f7dd\";\n}\n\n.fltr-text-field-16:before {\n    content: \"\\f7de\";\n}\n\n.fltr-text-field-20:before {\n    content: \"\\f7df\";\n}\n\n.fltr-text-field-24:before {\n    content: \"\\f7e0\";\n}\n\n.fltr-text-first-line-20:before {\n    content: \"\\f7e1\";\n}\n\n.fltr-text-first-line-24:before {\n    content: \"\\f7e2\";\n}\n\n.fltr-text-font-16:before {\n    content: \"\\f7e3\";\n}\n\n.fltr-text-font-20:before {\n    content: \"\\f7e4\";\n}\n\n.fltr-text-font-24:before {\n    content: \"\\f7e5\";\n}\n\n.fltr-text-font-size-20:before {\n    content: \"\\f7e6\";\n}\n\n.fltr-text-font-size-24:before {\n    content: \"\\f7e7\";\n}\n\n.fltr-text-footnote-20:before {\n    content: \"\\f7e8\";\n}\n\n.fltr-text-footnote-24:before {\n    content: \"\\f7e9\";\n}\n\n.fltr-text-grammar-options-16:before {\n    content: \"\\f7ea\";\n}\n\n.fltr-text-grammar-options-20:before {\n    content: \"\\f7eb\";\n}\n\n.fltr-text-grammar-options-24:before {\n    content: \"\\f7ec\";\n}\n\n.fltr-text-hanging-20:before {\n    content: \"\\f7ed\";\n}\n\n.fltr-text-hanging-24:before {\n    content: \"\\f7ee\";\n}\n\n.fltr-text-header-1-20:before {\n    content: \"\\f7ef\";\n}\n\n.fltr-text-header-2-20:before {\n    content: \"\\f7f0\";\n}\n\n.fltr-text-header-3-20:before {\n    content: \"\\f7f1\";\n}\n\n.fltr-text-indent-decrease-24:before {\n    content: \"\\f7f2\";\n}\n\n.fltr-text-indent-increase-24:before {\n    content: \"\\f7f3\";\n}\n\n.fltr-text-italic-20:before {\n    content: \"\\f7f4\";\n}\n\n.fltr-text-italic-24:before {\n    content: \"\\f7f5\";\n}\n\n.fltr-text-line-spacing-20:before {\n    content: \"\\f7f6\";\n}\n\n.fltr-text-line-spacing-24:before {\n    content: \"\\f7f7\";\n}\n\n.fltr-text-number-format-24:before {\n    content: \"\\f7f8\";\n}\n\n.fltr-text-number-list-ltr-20:before {\n    content: \"\\f7f9\";\n}\n\n.fltr-text-number-list-ltr-24:before {\n    content: \"\\f7fa\";\n}\n\n.fltr-text-number-list-rtl-24:before {\n    content: \"\\f7fb\";\n}\n\n.fltr-text-paragraph-settings-20:before {\n    content: \"\\f7fc\";\n}\n\n.fltr-text-paragraph-settings-24:before {\n    content: \"\\f7fd\";\n}\n\n.fltr-text-proofing-tools-20:before {\n    content: \"\\f7fe\";\n}\n\n.fltr-text-proofing-tools-24:before {\n    content: \"\\f7ff\";\n}\n\n.fltr-text-quote-20:before {\n    content: \"\\f800\";\n}\n\n.fltr-text-quote-24:before {\n    content: \"\\f801\";\n}\n\n.fltr-text-sort-ascending-20:before {\n    content: \"\\f802\";\n}\n\n.fltr-text-sort-descending-20:before {\n    content: \"\\f803\";\n}\n\n.fltr-text-strikethrough-20:before {\n    content: \"\\f804\";\n}\n\n.fltr-text-strikethrough-24:before {\n    content: \"\\f805\";\n}\n\n.fltr-text-subscript-20:before {\n    content: \"\\f806\";\n}\n\n.fltr-text-subscript-24:before {\n    content: \"\\f807\";\n}\n\n.fltr-text-superscript-20:before {\n    content: \"\\f808\";\n}\n\n.fltr-text-superscript-24:before {\n    content: \"\\f809\";\n}\n\n.fltr-text-underline-20:before {\n    content: \"\\f80a\";\n}\n\n.fltr-text-underline-24:before {\n    content: \"\\f80b\";\n}\n\n.fltr-text-word-count-20:before {\n    content: \"\\f80c\";\n}\n\n.fltr-text-word-count-24:before {\n    content: \"\\f80d\";\n}\n\n.fltr-text-wrap-24:before {\n    content: \"\\f80e\";\n}\n\n.fltr-textbox-20:before {\n    content: \"\\f80f\";\n}\n\n.fltr-textbox-24:before {\n    content: \"\\f810\";\n}\n\n.fltr-textbox-align-20:before {\n    content: \"\\f811\";\n}\n\n.fltr-textbox-align-24:before {\n    content: \"\\f812\";\n}\n\n.fltr-textbox-align-bottom-20:before {\n    content: \"\\f813\";\n}\n\n.fltr-textbox-align-bottom-24:before {\n    content: \"\\f814\";\n}\n\n.fltr-textbox-align-middle-20:before {\n    content: \"\\f815\";\n}\n\n.fltr-textbox-align-middle-24:before {\n    content: \"\\f816\";\n}\n\n.fltr-textbox-align-top-20:before {\n    content: \"\\f817\";\n}\n\n.fltr-textbox-align-top-24:before {\n    content: \"\\f818\";\n}\n\n.fltr-textbox-vertical-20:before {\n    content: \"\\f819\";\n}\n\n.fltr-textbox-vertical-24:before {\n    content: \"\\f81a\";\n}\n\n.fltr-thinking-20:before {\n    content: \"\\f81b\";\n}\n\n.fltr-thinking-24:before {\n    content: \"\\f81c\";\n}\n\n.fltr-thumb-dislike-20:before {\n    content: \"\\f81d\";\n}\n\n.fltr-thumb-dislike-24:before {\n    content: \"\\f81e\";\n}\n\n.fltr-thumb-like-20:before {\n    content: \"\\f81f\";\n}\n\n.fltr-thumb-like-24:before {\n    content: \"\\f820\";\n}\n\n.fltr-ticket-20:before {\n    content: \"\\f821\";\n}\n\n.fltr-ticket-24:before {\n    content: \"\\f822\";\n}\n\n.fltr-time-and-weather-24:before {\n    content: \"\\f823\";\n}\n\n.fltr-time-picker-24:before {\n    content: \"\\f824\";\n}\n\n.fltr-timeline-24:before {\n    content: \"\\f825\";\n}\n\n.fltr-timer-10-24:before {\n    content: \"\\f826\";\n}\n\n.fltr-timer-24:before {\n    content: \"\\f827\";\n}\n\n.fltr-timer-2-24:before {\n    content: \"\\f828\";\n}\n\n.fltr-timer-off-24:before {\n    content: \"\\f829\";\n}\n\n.fltr-toggle-right-16:before {\n    content: \"\\f82a\";\n}\n\n.fltr-toggle-right-20:before {\n    content: \"\\f82b\";\n}\n\n.fltr-toggle-right-24:before {\n    content: \"\\f82c\";\n}\n\n.fltr-toolbox-16:before {\n    content: \"\\f82d\";\n}\n\n.fltr-toolbox-20:before {\n    content: \"\\f82e\";\n}\n\n.fltr-toolbox-24:before {\n    content: \"\\f82f\";\n}\n\n.fltr-toolbox-28:before {\n    content: \"\\f830\";\n}\n\n.fltr-top-speed-24:before {\n    content: \"\\f831\";\n}\n\n.fltr-translate-16:before {\n    content: \"\\f832\";\n}\n\n.fltr-translate-20:before {\n    content: \"\\f833\";\n}\n\n.fltr-translate-24:before {\n    content: \"\\f834\";\n}\n\n.fltr-trophy-16:before {\n    content: \"\\f835\";\n}\n\n.fltr-trophy-20:before {\n    content: \"\\f836\";\n}\n\n.fltr-trophy-24:before {\n    content: \"\\f837\";\n}\n\n.fltr-uninstall-app-24:before {\n    content: \"\\f838\";\n}\n\n.fltr-unlock-20:before {\n    content: \"\\f839\";\n}\n\n.fltr-unlock-24:before {\n    content: \"\\f83a\";\n}\n\n.fltr-unlock-28:before {\n    content: \"\\f83b\";\n}\n\n.fltr-upload-24:before {\n    content: \"\\f83c\";\n}\n\n.fltr-usb-port-20:before {\n    content: \"\\f83d\";\n}\n\n.fltr-usb-port-24:before {\n    content: \"\\f83e\";\n}\n\n.fltr-usb-stick-20:before {\n    content: \"\\f83f\";\n}\n\n.fltr-usb-stick-24:before {\n    content: \"\\f840\";\n}\n\n.fltr-vault-16:before {\n    content: \"\\f841\";\n}\n\n.fltr-vault-20:before {\n    content: \"\\f842\";\n}\n\n.fltr-vault-24:before {\n    content: \"\\f843\";\n}\n\n.fltr-vehicle-bicycle-24:before {\n    content: \"\\f844\";\n}\n\n.fltr-vehicle-bus-24:before {\n    content: \"\\f845\";\n}\n\n.fltr-vehicle-cab-24:before {\n    content: \"\\f846\";\n}\n\n.fltr-vehicle-car-16:before {\n    content: \"\\f847\";\n}\n\n.fltr-vehicle-car-20:before {\n    content: \"\\f848\";\n}\n\n.fltr-vehicle-car-24:before {\n    content: \"\\f849\";\n}\n\n.fltr-vehicle-truck-24:before {\n    content: \"\\f84a\";\n}\n\n.fltr-video-16:before {\n    content: \"\\f84b\";\n}\n\n.fltr-video-20:before {\n    content: \"\\f84c\";\n}\n\n.fltr-video-24:before {\n    content: \"\\f84d\";\n}\n\n.fltr-video-28:before {\n    content: \"\\f84e\";\n}\n\n.fltr-video-background-effect-24:before {\n    content: \"\\f84f\";\n}\n\n.fltr-video-clip-24:before {\n    content: \"\\f850\";\n}\n\n.fltr-video-off-20:before {\n    content: \"\\f851\";\n}\n\n.fltr-video-off-24:before {\n    content: \"\\f852\";\n}\n\n.fltr-video-off-28:before {\n    content: \"\\f853\";\n}\n\n.fltr-video-person-24:before {\n    content: \"\\f854\";\n}\n\n.fltr-video-person-off-24:before {\n    content: \"\\f855\";\n}\n\n.fltr-video-person-star-24:before {\n    content: \"\\f856\";\n}\n\n.fltr-video-play-pause-24:before {\n    content: \"\\f857\";\n}\n\n.fltr-video-security-20:before {\n    content: \"\\f858\";\n}\n\n.fltr-video-security-24:before {\n    content: \"\\f859\";\n}\n\n.fltr-video-switch-24:before {\n    content: \"\\f85a\";\n}\n\n.fltr-view-desktop-20:before {\n    content: \"\\f85b\";\n}\n\n.fltr-view-desktop-24:before {\n    content: \"\\f85c\";\n}\n\n.fltr-view-desktop-mobile-20:before {\n    content: \"\\f85d\";\n}\n\n.fltr-view-desktop-mobile-24:before {\n    content: \"\\f85e\";\n}\n\n.fltr-visual-search-16:before {\n    content: \"\\f85f\";\n}\n\n.fltr-visual-search-20:before {\n    content: \"\\f860\";\n}\n\n.fltr-visual-search-24:before {\n    content: \"\\f861\";\n}\n\n.fltr-voicemail-16:before {\n    content: \"\\f862\";\n}\n\n.fltr-voicemail-20:before {\n    content: \"\\f863\";\n}\n\n.fltr-voicemail-24:before {\n    content: \"\\f864\";\n}\n\n.fltr-walkie-talkie-24:before {\n    content: \"\\f865\";\n}\n\n.fltr-walkie-talkie-28:before {\n    content: \"\\f866\";\n}\n\n.fltr-wallpaper-24:before {\n    content: \"\\f867\";\n}\n\n.fltr-warning-16:before {\n    content: \"\\f868\";\n}\n\n.fltr-warning-20:before {\n    content: \"\\f869\";\n}\n\n.fltr-warning-24:before {\n    content: \"\\f86a\";\n}\n\n.fltr-weather-blowing-snow-20:before {\n    content: \"\\f86b\";\n}\n\n.fltr-weather-blowing-snow-24:before {\n    content: \"\\f86c\";\n}\n\n.fltr-weather-blowing-snow-48:before {\n    content: \"\\f86d\";\n}\n\n.fltr-weather-cloudy-20:before {\n    content: \"\\f86e\";\n}\n\n.fltr-weather-cloudy-24:before {\n    content: \"\\f86f\";\n}\n\n.fltr-weather-cloudy-48:before {\n    content: \"\\f870\";\n}\n\n.fltr-weather-duststorm-20:before {\n    content: \"\\f871\";\n}\n\n.fltr-weather-duststorm-24:before {\n    content: \"\\f872\";\n}\n\n.fltr-weather-duststorm-48:before {\n    content: \"\\f873\";\n}\n\n.fltr-weather-fog-20:before {\n    content: \"\\f874\";\n}\n\n.fltr-weather-fog-24:before {\n    content: \"\\f875\";\n}\n\n.fltr-weather-fog-48:before {\n    content: \"\\f876\";\n}\n\n.fltr-weather-hail-day-20:before {\n    content: \"\\f877\";\n}\n\n.fltr-weather-hail-day-24:before {\n    content: \"\\f878\";\n}\n\n.fltr-weather-hail-day-48:before {\n    content: \"\\f879\";\n}\n\n.fltr-weather-hail-night-20:before {\n    content: \"\\f87a\";\n}\n\n.fltr-weather-hail-night-24:before {\n    content: \"\\f87b\";\n}\n\n.fltr-weather-hail-night-48:before {\n    content: \"\\f87c\";\n}\n\n.fltr-weather-moon-20:before {\n    content: \"\\f87d\";\n}\n\n.fltr-weather-moon-24:before {\n    content: \"\\f87e\";\n}\n\n.fltr-weather-moon-48:before {\n    content: \"\\f87f\";\n}\n\n.fltr-weather-partly-cloudy-day-20:before {\n    content: \"\\f880\";\n}\n\n.fltr-weather-partly-cloudy-day-24:before {\n    content: \"\\f881\";\n}\n\n.fltr-weather-partly-cloudy-day-48:before {\n    content: \"\\f882\";\n}\n\n.fltr-weather-partly-cloudy-night-20:before {\n    content: \"\\f883\";\n}\n\n.fltr-weather-partly-cloudy-night-24:before {\n    content: \"\\f884\";\n}\n\n.fltr-weather-partly-cloudy-night-48:before {\n    content: \"\\f885\";\n}\n\n.fltr-weather-rain-20:before {\n    content: \"\\f886\";\n}\n\n.fltr-weather-rain-24:before {\n    content: \"\\f887\";\n}\n\n.fltr-weather-rain-48:before {\n    content: \"\\f888\";\n}\n\n.fltr-weather-rain-showers-day-20:before {\n    content: \"\\f889\";\n}\n\n.fltr-weather-rain-showers-day-24:before {\n    content: \"\\f88a\";\n}\n\n.fltr-weather-rain-showers-day-48:before {\n    content: \"\\f88b\";\n}\n\n.fltr-weather-rain-showers-night-20:before {\n    content: \"\\f88c\";\n}\n\n.fltr-weather-rain-showers-night-24:before {\n    content: \"\\f88d\";\n}\n\n.fltr-weather-rain-showers-night-48:before {\n    content: \"\\f88e\";\n}\n\n.fltr-weather-rain-snow-20:before {\n    content: \"\\f88f\";\n}\n\n.fltr-weather-rain-snow-24:before {\n    content: \"\\f890\";\n}\n\n.fltr-weather-rain-snow-48:before {\n    content: \"\\f891\";\n}\n\n.fltr-weather-snow-20:before {\n    content: \"\\f892\";\n}\n\n.fltr-weather-snow-24:before {\n    content: \"\\f893\";\n}\n\n.fltr-weather-snow-48:before {\n    content: \"\\f894\";\n}\n\n.fltr-weather-snow-shower-day-20:before {\n    content: \"\\f895\";\n}\n\n.fltr-weather-snow-shower-day-24:before {\n    content: \"\\f896\";\n}\n\n.fltr-weather-snow-shower-day-48:before {\n    content: \"\\f897\";\n}\n\n.fltr-weather-snow-shower-night-20:before {\n    content: \"\\f898\";\n}\n\n.fltr-weather-snow-shower-night-24:before {\n    content: \"\\f899\";\n}\n\n.fltr-weather-snow-shower-night-48:before {\n    content: \"\\f89a\";\n}\n\n.fltr-weather-snowflake-20:before {\n    content: \"\\f89b\";\n}\n\n.fltr-weather-snowflake-24:before {\n    content: \"\\f89c\";\n}\n\n.fltr-weather-snowflake-48:before {\n    content: \"\\f89d\";\n}\n\n.fltr-weather-squalls-20:before {\n    content: \"\\f89e\";\n}\n\n.fltr-weather-squalls-24:before {\n    content: \"\\f89f\";\n}\n\n.fltr-weather-squalls-48:before {\n    content: \"\\f8a0\";\n}\n\n.fltr-weather-sunny-20:before {\n    content: \"\\f8a1\";\n}\n\n.fltr-weather-sunny-24:before {\n    content: \"\\f8a2\";\n}\n\n.fltr-weather-sunny-48:before {\n    content: \"\\f8a3\";\n}\n\n.fltr-weather-thunderstorm-20:before {\n    content: \"\\f8a4\";\n}\n\n.fltr-weather-thunderstorm-24:before {\n    content: \"\\f8a5\";\n}\n\n.fltr-weather-thunderstorm-48:before {\n    content: \"\\f8a6\";\n}\n\n.fltr-web-asset-24:before {\n    content: \"\\f8a7\";\n}\n\n.fltr-weekend-12:before {\n    content: \"\\f8a8\";\n}\n\n.fltr-weekend-24:before {\n    content: \"\\f8a9\";\n}\n\n.fltr-whiteboard-20:before {\n    content: \"\\f8aa\";\n}\n\n.fltr-whiteboard-24:before {\n    content: \"\\f8ab\";\n}\n\n.fltr-wifi-1-20:before {\n    content: \"\\f8ac\";\n}\n\n.fltr-wifi-1-24:before {\n    content: \"\\f8ad\";\n}\n\n.fltr-wifi-2-20:before {\n    content: \"\\f8ae\";\n}\n\n.fltr-wifi-2-24:before {\n    content: \"\\f8af\";\n}\n\n.fltr-wifi-3-20:before {\n    content: \"\\f8b0\";\n}\n\n.fltr-wifi-3-24:before {\n    content: \"\\f8b1\";\n}\n\n.fltr-wifi-4-20:before {\n    content: \"\\f8b2\";\n}\n\n.fltr-wifi-4-24:before {\n    content: \"\\f8b3\";\n}\n\n.fltr-wifi-protected-24:before {\n    content: \"\\f8b4\";\n}\n\n.fltr-window-20:before {\n    content: \"\\f8b5\";\n}\n\n.fltr-window-ad-20:before {\n    content: \"\\f8b6\";\n}\n\n.fltr-window-dev-tools-16:before {\n    content: \"\\f8b7\";\n}\n\n.fltr-window-dev-tools-20:before {\n    content: \"\\f8b8\";\n}\n\n.fltr-window-dev-tools-24:before {\n    content: \"\\f8b9\";\n}\n\n.fltr-window-inprivate-20:before {\n    content: \"\\f8ba\";\n}\n\n.fltr-window-inprivate-account-20:before {\n    content: \"\\f8bb\";\n}\n\n.fltr-window-multiple-20:before {\n    content: \"\\f8bc\";\n}\n\n.fltr-window-new-20:before {\n    content: \"\\f8bd\";\n}\n\n.fltr-window-shield-16:before {\n    content: \"\\f8be\";\n}\n\n.fltr-window-shield-20:before {\n    content: \"\\f8bf\";\n}\n\n.fltr-window-shield-24:before {\n    content: \"\\f8c0\";\n}\n\n.fltr-wrench-24:before {\n    content: \"\\f8c1\";\n}\n\n.fltr-xbox-console-20:before {\n    content: \"\\f8c2\";\n}\n\n.fltr-xbox-console-24:before {\n    content: \"\\f8c3\";\n}\n\n.fltr-zoom-in-20:before {\n    content: \"\\f8c4\";\n}\n\n.fltr-zoom-in-24:before {\n    content: \"\\f8c5\";\n}\n\n.fltr-zoom-out-20:before {\n    content: \"\\f8c6\";\n}\n\n.fltr-zoom-out-24:before {\n    content: \"\\f8c7\";\n}\n\n.fltr-mail-outbox-20:before {\n    content: \"\\f8c8\";\n}\n\n.fltr-calendar-checkmark-24:before {\n    content: \"\\f8c9\";\n}\n\n.fltr-add-square-24:before {\n    content: \"\\f8ca\";\n}\n\n.fltr-apps-list-20:before {\n    content: \"\\f8cb\";\n}\n\n.fltr-archive-16:before {\n    content: \"\\f8cc\";\n}\n\n.fltr-arrow-autofit-height-24:before {\n    content: \"\\f8cd\";\n}\n\n.fltr-arrow-autofit-width-24:before {\n    content: \"\\f8ce\";\n}\n\n.fltr-arrow-counterclockwise-28:before {\n    content: \"\\f8cf\";\n}\n\n.fltr-arrow-down-12:before {\n    content: \"\\f8d0\";\n}\n\n.fltr-arrow-down-left-16:before {\n    content: \"\\f8d1\";\n}\n\n.fltr-arrow-export-rtl-20:before {\n    content: \"\\f8d2\";\n}\n\n.fltr-arrow-fit-height-24:before {\n    content: \"\\f8d3\";\n}\n\n.fltr-arrow-fit-width-24:before {\n    content: \"\\f8d4\";\n}\n\n.fltr-arrow-hook-down-left-16:before {\n    content: \"\\f8d5\";\n}\n\n.fltr-arrow-hook-down-left-20:before {\n    content: \"\\f8d6\";\n}\n\n.fltr-arrow-hook-down-left-24:before {\n    content: \"\\f8d7\";\n}\n\n.fltr-arrow-hook-down-left-28:before {\n    content: \"\\f8d8\";\n}\n\n.fltr-arrow-hook-down-right-16:before {\n    content: \"\\f8d9\";\n}\n\n.fltr-arrow-hook-down-right-20:before {\n    content: \"\\f8da\";\n}\n\n.fltr-arrow-hook-down-right-24:before {\n    content: \"\\f8db\";\n}\n\n.fltr-arrow-hook-down-right-28:before {\n    content: \"\\f8dc\";\n}\n\n.fltr-arrow-hook-up-left-16:before {\n    content: \"\\f8dd\";\n}\n\n.fltr-arrow-hook-up-left-20:before {\n    content: \"\\f8de\";\n}\n\n.fltr-arrow-hook-up-left-24:before {\n    content: \"\\f8df\";\n}\n\n.fltr-arrow-hook-up-left-28:before {\n    content: \"\\f8e0\";\n}\n\n.fltr-arrow-hook-up-right-16:before {\n    content: \"\\f8e1\";\n}\n\n.fltr-arrow-hook-up-right-20:before {\n    content: \"\\f8e2\";\n}\n\n.fltr-arrow-hook-up-right-24:before {\n    content: \"\\f8e3\";\n}\n\n.fltr-arrow-hook-up-right-28:before {\n    content: \"\\f8e4\";\n}\n\n.fltr-arrow-move-20:before {\n    content: \"\\f8e5\";\n}\n\n.fltr-arrow-redo-32:before {\n    content: \"\\f8e6\";\n}\n\n.fltr-arrow-redo-48:before {\n    content: \"\\f8e7\";\n}\n\n.fltr-arrow-rotate-left-24:before {\n    content: \"\\f8e8\";\n}\n\n.fltr-arrow-rotate-right-20:before {\n    content: \"\\f8e9\";\n}\n\n.fltr-arrow-rotate-right-24:before {\n    content: \"\\f8ea\";\n}\n\n.fltr-arrow-up-right-16:before {\n    content: \"\\f8eb\";\n}\n\n.fltr-attach-arrow-right-20:before {\n    content: \"\\f8ec\";\n}\n\n.fltr-attach-arrow-right-24:before {\n    content: \"\\f8ed\";\n}\n\n.fltr-attach-text-24:before {\n    content: \"\\f8ee\";\n}\n\n.fltr-autofit-content-24:before {\n    content: \"\\f8ef\";\n}\n\n.fltr-backpack-12:before {\n    content: \"\\f8f0\";\n}\n\n.fltr-backpack-16:before {\n    content: \"\\f8f1\";\n}\n\n.fltr-backpack-20:before {\n    content: \"\\f8f2\";\n}\n\n.fltr-backpack-24:before {\n    content: \"\\f8f3\";\n}\n\n.fltr-backpack-28:before {\n    content: \"\\f8f4\";\n}\n\n.fltr-backpack-48:before {\n    content: \"\\f8f5\";\n}\n\n.fltr-balloon-16:before {\n    content: \"\\f8f6\";\n}\n\n.fltr-bed-16:before {\n    content: \"\\f8f7\";\n}\n\n.fltr-bluetooth-28:before {\n    content: \"\\f8f8\";\n}\n\n.fltr-blur-16:before {\n    content: \"\\f8f9\";\n}\n\n.fltr-blur-20:before {\n    content: \"\\f8fa\";\n}\n\n.fltr-blur-24:before {\n    content: \"\\f8fb\";\n}\n\n.fltr-blur-28:before {\n    content: \"\\f8fc\";\n}\n\n.fltr-book-20:before {\n    content: \"\\f8fd\";\n}\n\n.fltr-book-24:before {\n    content: \"\\f8fe\";\n}\n\n.fltr-book-add-20:before {\n    content: \"\\f8ff\";\n}\n\n.fltr-book-add-24:before {\n    content: \"\\f900\";\n}\n\n.fltr-book-clock-24:before {\n    content: \"\\f901\";\n}\n\n.fltr-book-coins-24:before {\n    content: \"\\f902\";\n}\n\n.fltr-book-compass-24:before {\n    content: \"\\f903\";\n}\n\n.fltr-book-database-24:before {\n    content: \"\\f904\";\n}\n\n.fltr-book-exclamation-mark-24:before {\n    content: \"\\f905\";\n}\n\n.fltr-book-information-24:before {\n    content: \"\\f906\";\n}\n\n.fltr-book-letter-24:before {\n    content: \"\\f907\";\n}\n\n.fltr-book-open-20:before {\n    content: \"\\f908\";\n}\n\n.fltr-book-open-24:before {\n    content: \"\\f909\";\n}\n\n.fltr-book-open-globe-24:before {\n    content: \"\\f90a\";\n}\n\n.fltr-book-pulse-24:before {\n    content: \"\\f90b\";\n}\n\n.fltr-book-question-mark-24:before {\n    content: \"\\f90c\";\n}\n\n.fltr-book-search-24:before {\n    content: \"\\f90d\";\n}\n\n.fltr-book-star-24:before {\n    content: \"\\f90e\";\n}\n\n.fltr-book-theta-24:before {\n    content: \"\\f90f\";\n}\n\n.fltr-border-all-24:before {\n    content: \"\\f910\";\n}\n\n.fltr-border-bottom-24:before {\n    content: \"\\f911\";\n}\n\n.fltr-border-bottom-double-24:before {\n    content: \"\\f912\";\n}\n\n.fltr-border-bottom-thick-24:before {\n    content: \"\\f913\";\n}\n\n.fltr-border-left-24:before {\n    content: \"\\f914\";\n}\n\n.fltr-border-none-24:before {\n    content: \"\\f915\";\n}\n\n.fltr-border-outside-24:before {\n    content: \"\\f916\";\n}\n\n.fltr-border-outside-thick-24:before {\n    content: \"\\f917\";\n}\n\n.fltr-border-right-24:before {\n    content: \"\\f918\";\n}\n\n.fltr-border-top-24:before {\n    content: \"\\f919\";\n}\n\n.fltr-border-top-bottom-24:before {\n    content: \"\\f91a\";\n}\n\n.fltr-border-top-bottom-double-24:before {\n    content: \"\\f91b\";\n}\n\n.fltr-border-top-bottom-thick-24:before {\n    content: \"\\f91c\";\n}\n\n.fltr-briefcase-12:before {\n    content: \"\\f91d\";\n}\n\n.fltr-briefcase-32:before {\n    content: \"\\f91e\";\n}\n\n.fltr-briefcase-add-24:before {\n    content: \"\\f91f\";\n}\n\n.fltr-briefcase-add-32:before {\n    content: \"\\f920\";\n}\n\n.fltr-bug-16:before {\n    content: \"\\f921\";\n}\n\n.fltr-bug-20:before {\n    content: \"\\f922\";\n}\n\n.fltr-bug-24:before {\n    content: \"\\f923\";\n}\n\n.fltr-building-bank-16:before {\n    content: \"\\f924\";\n}\n\n.fltr-building-bank-20:before {\n    content: \"\\f925\";\n}\n\n.fltr-building-bank-24:before {\n    content: \"\\f926\";\n}\n\n.fltr-building-government-24:before {\n    content: \"\\f927\";\n}\n\n.fltr-building-government-32:before {\n    content: \"\\f928\";\n}\n\n.fltr-building-multiple-24:before {\n    content: \"\\f929\";\n}\n\n.fltr-building-shop-16:before {\n    content: \"\\f92a\";\n}\n\n.fltr-building-shop-20:before {\n    content: \"\\f92b\";\n}\n\n.fltr-building-shop-24:before {\n    content: \"\\f92c\";\n}\n\n.fltr-building-skyscraper-16:before {\n    content: \"\\f92d\";\n}\n\n.fltr-building-skyscraper-20:before {\n    content: \"\\f92e\";\n}\n\n.fltr-building-skyscraper-24:before {\n    content: \"\\f92f\";\n}\n\n.fltr-calendar-cancel-16:before {\n    content: \"\\f930\";\n}\n\n.fltr-calendar-clock-16:before {\n    content: \"\\f931\";\n}\n\n.fltr-calendar-mention-20:before {\n    content: \"\\f932\";\n}\n\n.fltr-calendar-person-24:before {\n    content: \"\\f933\";\n}\n\n.fltr-calendar-question-mark-16:before {\n    content: \"\\f934\";\n}\n\n.fltr-calendar-question-mark-20:before {\n    content: \"\\f935\";\n}\n\n.fltr-calendar-question-mark-24:before {\n    content: \"\\f936\";\n}\n\n.fltr-call-blocked-16:before {\n    content: \"\\f937\";\n}\n\n.fltr-call-blocked-20:before {\n    content: \"\\f938\";\n}\n\n.fltr-call-blocked-24:before {\n    content: \"\\f939\";\n}\n\n.fltr-call-blocked-28:before {\n    content: \"\\f93a\";\n}\n\n.fltr-call-blocked-48:before {\n    content: \"\\f93b\";\n}\n\n.fltr-call-forward-16:before {\n    content: \"\\f93c\";\n}\n\n.fltr-call-forward-20:before {\n    content: \"\\f93d\";\n}\n\n.fltr-call-forward-28:before {\n    content: \"\\f93e\";\n}\n\n.fltr-call-forward-48:before {\n    content: \"\\f93f\";\n}\n\n.fltr-call-inbound-20:before {\n    content: \"\\f940\";\n}\n\n.fltr-call-inbound-28:before {\n    content: \"\\f941\";\n}\n\n.fltr-call-inbound-48:before {\n    content: \"\\f942\";\n}\n\n.fltr-call-missed-28:before {\n    content: \"\\f943\";\n}\n\n.fltr-call-missed-48:before {\n    content: \"\\f944\";\n}\n\n.fltr-call-outbound-20:before {\n    content: \"\\f945\";\n}\n\n.fltr-call-outbound-28:before {\n    content: \"\\f946\";\n}\n\n.fltr-call-outbound-48:before {\n    content: \"\\f947\";\n}\n\n.fltr-call-park-16:before {\n    content: \"\\f948\";\n}\n\n.fltr-call-park-20:before {\n    content: \"\\f949\";\n}\n\n.fltr-call-park-28:before {\n    content: \"\\f94a\";\n}\n\n.fltr-call-park-48:before {\n    content: \"\\f94b\";\n}\n\n.fltr-camera-edit-20:before {\n    content: \"\\f94c\";\n}\n\n.fltr-caret-up-12:before {\n    content: \"\\f94d\";\n}\n\n.fltr-caret-up-16:before {\n    content: \"\\f94e\";\n}\n\n.fltr-caret-up-20:before {\n    content: \"\\f94f\";\n}\n\n.fltr-caret-up-24:before {\n    content: \"\\f950\";\n}\n\n.fltr-cart-16:before {\n    content: \"\\f951\";\n}\n\n.fltr-cart-20:before {\n    content: \"\\f952\";\n}\n\n.fltr-center-horizontally-24:before {\n    content: \"\\f953\";\n}\n\n.fltr-center-vertically-24:before {\n    content: \"\\f954\";\n}\n\n.fltr-channel-28:before {\n    content: \"\\f955\";\n}\n\n.fltr-channel-48:before {\n    content: \"\\f956\";\n}\n\n.fltr-channel-add-16:before {\n    content: \"\\f957\";\n}\n\n.fltr-channel-add-20:before {\n    content: \"\\f958\";\n}\n\n.fltr-channel-add-24:before {\n    content: \"\\f959\";\n}\n\n.fltr-channel-add-28:before {\n    content: \"\\f95a\";\n}\n\n.fltr-channel-add-48:before {\n    content: \"\\f95b\";\n}\n\n.fltr-channel-alert-16:before {\n    content: \"\\f95c\";\n}\n\n.fltr-channel-alert-20:before {\n    content: \"\\f95d\";\n}\n\n.fltr-channel-alert-24:before {\n    content: \"\\f95e\";\n}\n\n.fltr-channel-alert-28:before {\n    content: \"\\f95f\";\n}\n\n.fltr-channel-alert-48:before {\n    content: \"\\f960\";\n}\n\n.fltr-channel-arrow-left-16:before {\n    content: \"\\f961\";\n}\n\n.fltr-channel-arrow-left-20:before {\n    content: \"\\f962\";\n}\n\n.fltr-channel-arrow-left-24:before {\n    content: \"\\f963\";\n}\n\n.fltr-channel-arrow-left-28:before {\n    content: \"\\f964\";\n}\n\n.fltr-channel-arrow-left-48:before {\n    content: \"\\f965\";\n}\n\n.fltr-channel-dismiss-16:before {\n    content: \"\\f966\";\n}\n\n.fltr-channel-dismiss-20:before {\n    content: \"\\f967\";\n}\n\n.fltr-channel-dismiss-24:before {\n    content: \"\\f968\";\n}\n\n.fltr-channel-dismiss-28:before {\n    content: \"\\f969\";\n}\n\n.fltr-channel-dismiss-48:before {\n    content: \"\\f96a\";\n}\n\n.fltr-chat-16:before {\n    content: \"\\f96b\";\n}\n\n.fltr-checkmark-16:before {\n    content: \"\\f96c\";\n}\n\n.fltr-chevron-right-circle-24:before {\n    content: \"\\f96d\";\n}\n\n.fltr-clipboard-paste-16:before {\n    content: \"\\f96e\";\n}\n\n.fltr-clock-dismiss-24:before {\n    content: \"\\f96f\";\n}\n\n.fltr-closed-caption-16:before {\n    content: \"\\f970\";\n}\n\n.fltr-closed-caption-20:before {\n    content: \"\\f971\";\n}\n\n.fltr-closed-caption-28:before {\n    content: \"\\f972\";\n}\n\n.fltr-closed-caption-48:before {\n    content: \"\\f973\";\n}\n\n.fltr-cloud-download-32:before {\n    content: \"\\f974\";\n}\n\n.fltr-cloud-download-48:before {\n    content: \"\\f975\";\n}\n\n.fltr-color-background-accent-20:before {\n    content: \"\\f976\";\n}\n\n.fltr-color-background-accent-24:before {\n    content: \"\\f977\";\n}\n\n.fltr-color-fill-accent-20:before {\n    content: \"\\f978\";\n}\n\n.fltr-color-fill-accent-24:before {\n    content: \"\\f979\";\n}\n\n.fltr-color-line-16:before {\n    content: \"\\f97a\";\n}\n\n.fltr-color-line-accent-16:before {\n    content: \"\\f97b\";\n}\n\n.fltr-color-line-accent-20:before {\n    content: \"\\f97c\";\n}\n\n.fltr-color-line-accent-24:before {\n    content: \"\\f97d\";\n}\n\n.fltr-comment-12:before {\n    content: \"\\f97e\";\n}\n\n.fltr-comment-28:before {\n    content: \"\\f97f\";\n}\n\n.fltr-comment-48:before {\n    content: \"\\f980\";\n}\n\n.fltr-comment-add-12:before {\n    content: \"\\f981\";\n}\n\n.fltr-comment-add-16:before {\n    content: \"\\f982\";\n}\n\n.fltr-comment-add-20:before {\n    content: \"\\f983\";\n}\n\n.fltr-comment-add-28:before {\n    content: \"\\f984\";\n}\n\n.fltr-comment-add-48:before {\n    content: \"\\f985\";\n}\n\n.fltr-comment-arrow-left-12:before {\n    content: \"\\f986\";\n}\n\n.fltr-comment-arrow-left-16:before {\n    content: \"\\f987\";\n}\n\n.fltr-comment-arrow-left-20:before {\n    content: \"\\f988\";\n}\n\n.fltr-comment-arrow-left-28:before {\n    content: \"\\f989\";\n}\n\n.fltr-comment-arrow-left-48:before {\n    content: \"\\f98a\";\n}\n\n.fltr-comment-arrow-right-12:before {\n    content: \"\\f98b\";\n}\n\n.fltr-comment-arrow-right-16:before {\n    content: \"\\f98c\";\n}\n\n.fltr-comment-arrow-right-20:before {\n    content: \"\\f98d\";\n}\n\n.fltr-comment-arrow-right-28:before {\n    content: \"\\f98e\";\n}\n\n.fltr-comment-arrow-right-48:before {\n    content: \"\\f98f\";\n}\n\n.fltr-comment-checkmark-12:before {\n    content: \"\\f990\";\n}\n\n.fltr-comment-checkmark-16:before {\n    content: \"\\f991\";\n}\n\n.fltr-comment-checkmark-20:before {\n    content: \"\\f992\";\n}\n\n.fltr-comment-checkmark-24:before {\n    content: \"\\f993\";\n}\n\n.fltr-comment-checkmark-28:before {\n    content: \"\\f994\";\n}\n\n.fltr-comment-checkmark-48:before {\n    content: \"\\f995\";\n}\n\n.fltr-comment-edit-20:before {\n    content: \"\\f996\";\n}\n\n.fltr-comment-edit-24:before {\n    content: \"\\f997\";\n}\n\n.fltr-comment-off-16:before {\n    content: \"\\f998\";\n}\n\n.fltr-comment-off-20:before {\n    content: \"\\f999\";\n}\n\n.fltr-comment-off-24:before {\n    content: \"\\f99a\";\n}\n\n.fltr-comment-off-28:before {\n    content: \"\\f99b\";\n}\n\n.fltr-comment-off-48:before {\n    content: \"\\f99c\";\n}\n\n.fltr-contact-card-group-16:before {\n    content: \"\\f99d\";\n}\n\n.fltr-contact-card-group-20:before {\n    content: \"\\f99e\";\n}\n\n.fltr-contact-card-group-28:before {\n    content: \"\\f99f\";\n}\n\n.fltr-contact-card-group-48:before {\n    content: \"\\f9a0\";\n}\n\n.fltr-convert-range-24:before {\n    content: \"\\f9a1\";\n}\n\n.fltr-copy-add-24:before {\n    content: \"\\f9a2\";\n}\n\n.fltr-copy-select-20:before {\n    content: \"\\f9a3\";\n}\n\n.fltr-couch-12:before {\n    content: \"\\f9a4\";\n}\n\n.fltr-couch-24:before {\n    content: \"\\f9a5\";\n}\n\n.fltr-crop-20:before {\n    content: \"\\f9a6\";\n}\n\n.fltr-currency-dollar-rupee-16:before {\n    content: \"\\f9a7\";\n}\n\n.fltr-currency-dollar-rupee-20:before {\n    content: \"\\f9a8\";\n}\n\n.fltr-currency-dollar-rupee-24:before {\n    content: \"\\f9a9\";\n}\n\n.fltr-cursor-20:before {\n    content: \"\\f9aa\";\n}\n\n.fltr-cursor-24:before {\n    content: \"\\f9ab\";\n}\n\n.fltr-cursor-hover-16:before {\n    content: \"\\f9ac\";\n}\n\n.fltr-cursor-hover-20:before {\n    content: \"\\f9ad\";\n}\n\n.fltr-cursor-hover-24:before {\n    content: \"\\f9ae\";\n}\n\n.fltr-cursor-hover-28:before {\n    content: \"\\f9af\";\n}\n\n.fltr-cursor-hover-32:before {\n    content: \"\\f9b0\";\n}\n\n.fltr-cursor-hover-48:before {\n    content: \"\\f9b1\";\n}\n\n.fltr-cursor-hover-off-16:before {\n    content: \"\\f9b2\";\n}\n\n.fltr-cursor-hover-off-20:before {\n    content: \"\\f9b3\";\n}\n\n.fltr-cursor-hover-off-24:before {\n    content: \"\\f9b4\";\n}\n\n.fltr-cursor-hover-off-28:before {\n    content: \"\\f9b5\";\n}\n\n.fltr-cursor-hover-off-48:before {\n    content: \"\\f9b6\";\n}\n\n.fltr-data-bar-vertical-add-24:before {\n    content: \"\\f9b7\";\n}\n\n.fltr-data-usage-20:before {\n    content: \"\\f9b8\";\n}\n\n.fltr-decimal-arrow-left-24:before {\n    content: \"\\f9b9\";\n}\n\n.fltr-decimal-arrow-right-24:before {\n    content: \"\\f9ba\";\n}\n\n.fltr-delete-16:before {\n    content: \"\\f9bb\";\n}\n\n.fltr-dentist-12:before {\n    content: \"\\f9bc\";\n}\n\n.fltr-dentist-16:before {\n    content: \"\\f9bd\";\n}\n\n.fltr-dentist-20:before {\n    content: \"\\f9be\";\n}\n\n.fltr-dentist-28:before {\n    content: \"\\f9bf\";\n}\n\n.fltr-dentist-48:before {\n    content: \"\\f9c0\";\n}\n\n.fltr-dismiss-circle-28:before {\n    content: \"\\f9c1\";\n}\n\n.fltr-dock-left-28:before {\n    content: \"\\f9c2\";\n}\n\n.fltr-dock-left-48:before {\n    content: \"\\f9c3\";\n}\n\n.fltr-dock-right-16:before {\n    content: \"\\f9c4\";\n}\n\n.fltr-dock-right-20:before {\n    content: \"\\f9c5\";\n}\n\n.fltr-dock-right-24:before {\n    content: \"\\f9c6\";\n}\n\n.fltr-dock-right-28:before {\n    content: \"\\f9c7\";\n}\n\n.fltr-dock-right-48:before {\n    content: \"\\f9c8\";\n}\n\n.fltr-doctor-12:before {\n    content: \"\\f9c9\";\n}\n\n.fltr-doctor-16:before {\n    content: \"\\f9ca\";\n}\n\n.fltr-doctor-20:before {\n    content: \"\\f9cb\";\n}\n\n.fltr-doctor-28:before {\n    content: \"\\f9cc\";\n}\n\n.fltr-doctor-48:before {\n    content: \"\\f9cd\";\n}\n\n.fltr-document-16:before {\n    content: \"\\f9ce\";\n}\n\n.fltr-document-48:before {\n    content: \"\\f9cf\";\n}\n\n.fltr-document-add-16:before {\n    content: \"\\f9d0\";\n}\n\n.fltr-document-add-20:before {\n    content: \"\\f9d1\";\n}\n\n.fltr-document-add-24:before {\n    content: \"\\f9d2\";\n}\n\n.fltr-document-add-28:before {\n    content: \"\\f9d3\";\n}\n\n.fltr-document-add-48:before {\n    content: \"\\f9d4\";\n}\n\n.fltr-document-arrow-left-16:before {\n    content: \"\\f9d5\";\n}\n\n.fltr-document-arrow-left-20:before {\n    content: \"\\f9d6\";\n}\n\n.fltr-document-arrow-left-24:before {\n    content: \"\\f9d7\";\n}\n\n.fltr-document-arrow-left-28:before {\n    content: \"\\f9d8\";\n}\n\n.fltr-document-arrow-left-48:before {\n    content: \"\\f9d9\";\n}\n\n.fltr-document-catch-up-16:before {\n    content: \"\\f9da\";\n}\n\n.fltr-document-catch-up-20:before {\n    content: \"\\f9db\";\n}\n\n.fltr-document-landscape-data-24:before {\n    content: \"\\f9dc\";\n}\n\n.fltr-document-landscape-split-20:before {\n    content: \"\\f9dd\";\n}\n\n.fltr-document-landscape-split-hint-20:before {\n    content: \"\\f9de\";\n}\n\n.fltr-document-page-break-20:before {\n    content: \"\\f9df\";\n}\n\n.fltr-drink-beer-16:before {\n    content: \"\\f9e0\";\n}\n\n.fltr-drink-beer-20:before {\n    content: \"\\f9e1\";\n}\n\n.fltr-drink-coffee-16:before {\n    content: \"\\f9e2\";\n}\n\n.fltr-drink-margarita-16:before {\n    content: \"\\f9e3\";\n}\n\n.fltr-drink-margarita-20:before {\n    content: \"\\f9e4\";\n}\n\n.fltr-drink-wine-16:before {\n    content: \"\\f9e5\";\n}\n\n.fltr-drink-wine-20:before {\n    content: \"\\f9e6\";\n}\n\n.fltr-dual-screen-span-24:before {\n    content: \"\\f9e7\";\n}\n\n.fltr-edit-32:before {\n    content: \"\\f9e8\";\n}\n\n.fltr-edit-off-16:before {\n    content: \"\\f9e9\";\n}\n\n.fltr-edit-off-24:before {\n    content: \"\\f9ea\";\n}\n\n.fltr-edit-settings-24:before {\n    content: \"\\f9eb\";\n}\n\n.fltr-emoji-add-16:before {\n    content: \"\\f9ec\";\n}\n\n.fltr-emoji-hand-24:before {\n    content: \"\\f9ed\";\n}\n\n.fltr-emoji-hand-28:before {\n    content: \"\\f9ee\";\n}\n\n.fltr-eraser-20:before {\n    content: \"\\f9ef\";\n}\n\n.fltr-eraser-24:before {\n    content: \"\\f9f0\";\n}\n\n.fltr-eraser-medium-24:before {\n    content: \"\\f9f1\";\n}\n\n.fltr-eraser-segment-24:before {\n    content: \"\\f9f2\";\n}\n\n.fltr-eraser-small-24:before {\n    content: \"\\f9f3\";\n}\n\n.fltr-error-circle-12:before {\n    content: \"\\f9f4\";\n}\n\n.fltr-eye-tracking-16:before {\n    content: \"\\f9f5\";\n}\n\n.fltr-eye-tracking-20:before {\n    content: \"\\f9f6\";\n}\n\n.fltr-eye-tracking-24:before {\n    content: \"\\f9f7\";\n}\n\n.fltr-eye-tracking-off-16:before {\n    content: \"\\f9f8\";\n}\n\n.fltr-eye-tracking-off-20:before {\n    content: \"\\f9f9\";\n}\n\n.fltr-eye-tracking-off-24:before {\n    content: \"\\f9fa\";\n}\n\n.fltr-f-stop-16:before {\n    content: \"\\f9fb\";\n}\n\n.fltr-f-stop-20:before {\n    content: \"\\f9fc\";\n}\n\n.fltr-f-stop-24:before {\n    content: \"\\f9fd\";\n}\n\n.fltr-f-stop-28:before {\n    content: \"\\f9fe\";\n}\n\n.fltr-fingerprint-48:before {\n    content: \"\\f9ff\";\n}\n\n.fltr-fixed-width-24:before {\n    content: \"\\fa00\";\n}\n\n.fltr-flip-horizontal-24:before {\n    content: \"\\fa01\";\n}\n\n.fltr-flip-vertical-24:before {\n    content: \"\\fa02\";\n}\n\n.fltr-fluent-32:before {\n    content: \"\\fa03\";\n}\n\n.fltr-fluent-48:before {\n    content: \"\\fa04\";\n}\n\n.fltr-fluid-20:before {\n    content: \"\\fa05\";\n}\n\n.fltr-fluid-24:before {\n    content: \"\\fa06\";\n}\n\n.fltr-folder-move-16:before {\n    content: \"\\fa07\";\n}\n\n.fltr-food-egg-16:before {\n    content: \"\\fa08\";\n}\n\n.fltr-food-egg-20:before {\n    content: \"\\fa09\";\n}\n\n.fltr-food-toast-16:before {\n    content: \"\\fa0a\";\n}\n\n.fltr-food-toast-20:before {\n    content: \"\\fa0b\";\n}\n\n.fltr-gavel-24:before {\n    content: \"\\fa0c\";\n}\n\n.fltr-gavel-32:before {\n    content: \"\\fa0d\";\n}\n\n.fltr-glasses-16:before {\n    content: \"\\fa0e\";\n}\n\n.fltr-glasses-20:before {\n    content: \"\\fa0f\";\n}\n\n.fltr-glasses-28:before {\n    content: \"\\fa10\";\n}\n\n.fltr-glasses-48:before {\n    content: \"\\fa11\";\n}\n\n.fltr-glasses-off-16:before {\n    content: \"\\fa12\";\n}\n\n.fltr-glasses-off-20:before {\n    content: \"\\fa13\";\n}\n\n.fltr-glasses-off-28:before {\n    content: \"\\fa14\";\n}\n\n.fltr-glasses-off-48:before {\n    content: \"\\fa15\";\n}\n\n.fltr-globe-16:before {\n    content: \"\\fa16\";\n}\n\n.fltr-hand-left-20:before {\n    content: \"\\fa17\";\n}\n\n.fltr-hand-right-24:before {\n    content: \"\\fa18\";\n}\n\n.fltr-hand-right-28:before {\n    content: \"\\fa19\";\n}\n\n.fltr-hat-graduation-16:before {\n    content: \"\\fa1a\";\n}\n\n.fltr-hat-graduation-20:before {\n    content: \"\\fa1b\";\n}\n\n.fltr-hat-graduation-24:before {\n    content: \"\\fa1c\";\n}\n\n.fltr-hd-16:before {\n    content: \"\\fa1d\";\n}\n\n.fltr-hd-20:before {\n    content: \"\\fa1e\";\n}\n\n.fltr-hd-24:before {\n    content: \"\\fa1f\";\n}\n\n.fltr-headset-16:before {\n    content: \"\\fa20\";\n}\n\n.fltr-headset-20:before {\n    content: \"\\fa21\";\n}\n\n.fltr-headset-48:before {\n    content: \"\\fa22\";\n}\n\n.fltr-heart-pulse-24:before {\n    content: \"\\fa23\";\n}\n\n.fltr-heart-pulse-32:before {\n    content: \"\\fa24\";\n}\n\n.fltr-home-16:before {\n    content: \"\\fa25\";\n}\n\n.fltr-home-32:before {\n    content: \"\\fa26\";\n}\n\n.fltr-home-48:before {\n    content: \"\\fa27\";\n}\n\n.fltr-image-arrow-counterclockwise-24:before {\n    content: \"\\fa28\";\n}\n\n.fltr-info-shield-20:before {\n    content: \"\\fa29\";\n}\n\n.fltr-key-multiple-20:before {\n    content: \"\\fa2a\";\n}\n\n.fltr-line-horizontal-5-error-20:before {\n    content: \"\\fa2b\";\n}\n\n.fltr-link-square-12:before {\n    content: \"\\fa2c\";\n}\n\n.fltr-link-square-16:before {\n    content: \"\\fa2d\";\n}\n\n.fltr-location-48:before {\n    content: \"\\fa2e\";\n}\n\n.fltr-location-off-16:before {\n    content: \"\\fa2f\";\n}\n\n.fltr-location-off-20:before {\n    content: \"\\fa30\";\n}\n\n.fltr-location-off-24:before {\n    content: \"\\fa31\";\n}\n\n.fltr-location-off-28:before {\n    content: \"\\fa32\";\n}\n\n.fltr-location-off-48:before {\n    content: \"\\fa33\";\n}\n\n.fltr-lock-multiple-24:before {\n    content: \"\\fa34\";\n}\n\n.fltr-lottery-24:before {\n    content: \"\\fa35\";\n}\n\n.fltr-magic-wand-16:before {\n    content: \"\\fa36\";\n}\n\n.fltr-magic-wand-20:before {\n    content: \"\\fa37\";\n}\n\n.fltr-magic-wand-28:before {\n    content: \"\\fa38\";\n}\n\n.fltr-magic-wand-48:before {\n    content: \"\\fa39\";\n}\n\n.fltr-mail-16:before {\n    content: \"\\fa3a\";\n}\n\n.fltr-mail-read-16:before {\n    content: \"\\fa3b\";\n}\n\n.fltr-math-format-linear-24:before {\n    content: \"\\fa3c\";\n}\n\n.fltr-math-format-professional-24:before {\n    content: \"\\fa3d\";\n}\n\n.fltr-math-formula-24:before {\n    content: \"\\fa3e\";\n}\n\n.fltr-maximize-20:before {\n    content: \"\\fa3f\";\n}\n\n.fltr-maximize-24:before {\n    content: \"\\fa40\";\n}\n\n.fltr-maximize-28:before {\n    content: \"\\fa41\";\n}\n\n.fltr-maximize-48:before {\n    content: \"\\fa42\";\n}\n\n.fltr-meet-now-16:before {\n    content: \"\\fa43\";\n}\n\n.fltr-mic-off-20:before {\n    content: \"\\fa44\";\n}\n\n.fltr-mic-off-48:before {\n    content: \"\\fa45\";\n}\n\n.fltr-mic-prohibited-24:before {\n    content: \"\\fa46\";\n}\n\n.fltr-minimize-12:before {\n    content: \"\\fa47\";\n}\n\n.fltr-minimize-16:before {\n    content: \"\\fa48\";\n}\n\n.fltr-minimize-20:before {\n    content: \"\\fa49\";\n}\n\n.fltr-minimize-24:before {\n    content: \"\\fa4a\";\n}\n\n.fltr-minimize-28:before {\n    content: \"\\fa4b\";\n}\n\n.fltr-minimize-48:before {\n    content: \"\\fa4c\";\n}\n\n.fltr-more-circle-20:before {\n    content: \"\\fa4d\";\n}\n\n.fltr-movies-and-tv-16:before {\n    content: \"\\fa4e\";\n}\n\n.fltr-movies-and-tv-20:before {\n    content: \"\\fa4f\";\n}\n\n.fltr-music-note-20:before {\n    content: \"\\fa50\";\n}\n\n.fltr-music-note-24:before {\n    content: \"\\fa51\";\n}\n\n.fltr-music-notes-16:before {\n    content: \"\\fa52\";\n}\n\n.fltr-music-notes-24:before {\n    content: \"\\fa53\";\n}\n\n.fltr-navigation-unread-24:before {\n    content: \"\\fa54\";\n}\n\n.fltr-number-symbol-dismiss-24:before {\n    content: \"\\fa55\";\n}\n\n.fltr-open-28:before {\n    content: \"\\fa56\";\n}\n\n.fltr-open-48:before {\n    content: \"\\fa57\";\n}\n\n.fltr-open-folder-16:before {\n    content: \"\\fa58\";\n}\n\n.fltr-open-folder-20:before {\n    content: \"\\fa59\";\n}\n\n.fltr-open-folder-28:before {\n    content: \"\\fa5a\";\n}\n\n.fltr-open-folder-48:before {\n    content: \"\\fa5b\";\n}\n\n.fltr-open-off-16:before {\n    content: \"\\fa5c\";\n}\n\n.fltr-open-off-20:before {\n    content: \"\\fa5d\";\n}\n\n.fltr-open-off-24:before {\n    content: \"\\fa5e\";\n}\n\n.fltr-open-off-28:before {\n    content: \"\\fa5f\";\n}\n\n.fltr-open-off-48:before {\n    content: \"\\fa60\";\n}\n\n.fltr-paint-brush-arrow-down-24:before {\n    content: \"\\fa61\";\n}\n\n.fltr-paint-brush-arrow-up-24:before {\n    content: \"\\fa62\";\n}\n\n.fltr-pause-12:before {\n    content: \"\\fa63\";\n}\n\n.fltr-payment-16:before {\n    content: \"\\fa64\";\n}\n\n.fltr-payment-28:before {\n    content: \"\\fa65\";\n}\n\n.fltr-people-prohibited-16:before {\n    content: \"\\fa66\";\n}\n\n.fltr-people-swap-16:before {\n    content: \"\\fa67\";\n}\n\n.fltr-people-swap-20:before {\n    content: \"\\fa68\";\n}\n\n.fltr-people-swap-24:before {\n    content: \"\\fa69\";\n}\n\n.fltr-people-swap-28:before {\n    content: \"\\fa6a\";\n}\n\n.fltr-people-team-add-20:before {\n    content: \"\\fa6b\";\n}\n\n.fltr-people-team-add-24:before {\n    content: \"\\fa6c\";\n}\n\n.fltr-people-team-dismiss-24:before {\n    content: \"\\fa6d\";\n}\n\n.fltr-person-available-20:before {\n    content: \"\\fa6e\";\n}\n\n.fltr-person-clock-16:before {\n    content: \"\\fa6f\";\n}\n\n.fltr-person-clock-20:before {\n    content: \"\\fa70\";\n}\n\n.fltr-person-clock-24:before {\n    content: \"\\fa71\";\n}\n\n.fltr-person-delete-20:before {\n    content: \"\\fa72\";\n}\n\n.fltr-person-mail-16:before {\n    content: \"\\fa73\";\n}\n\n.fltr-person-mail-20:before {\n    content: \"\\fa74\";\n}\n\n.fltr-person-mail-24:before {\n    content: \"\\fa75\";\n}\n\n.fltr-person-mail-28:before {\n    content: \"\\fa76\";\n}\n\n.fltr-person-mail-48:before {\n    content: \"\\fa77\";\n}\n\n.fltr-person-prohibited-24:before {\n    content: \"\\fa78\";\n}\n\n.fltr-phone-16:before {\n    content: \"\\fa79\";\n}\n\n.fltr-poll-20:before {\n    content: \"\\fa7a\";\n}\n\n.fltr-presence-available-10:before {\n    content: \"\\fa7b\";\n}\n\n.fltr-presence-available-12:before {\n    content: \"\\fa7c\";\n}\n\n.fltr-presence-available-16:before {\n    content: \"\\fa7d\";\n}\n\n.fltr-presence-dnd-10:before {\n    content: \"\\fa7e\";\n}\n\n.fltr-presence-dnd-12:before {\n    content: \"\\fa7f\";\n}\n\n.fltr-presence-dnd-16:before {\n    content: \"\\fa80\";\n}\n\n.fltr-pulse-24:before {\n    content: \"\\fa81\";\n}\n\n.fltr-qr-code-20:before {\n    content: \"\\fa82\";\n}\n\n.fltr-real-estate-24:before {\n    content: \"\\fa83\";\n}\n\n.fltr-ribbon-24:before {\n    content: \"\\fa84\";\n}\n\n.fltr-ribbon-star-20:before {\n    content: \"\\fa85\";\n}\n\n.fltr-ribbon-star-24:before {\n    content: \"\\fa86\";\n}\n\n.fltr-run-16:before {\n    content: \"\\fa87\";\n}\n\n.fltr-run-20:before {\n    content: \"\\fa88\";\n}\n\n.fltr-scales-24:before {\n    content: \"\\fa89\";\n}\n\n.fltr-scales-32:before {\n    content: \"\\fa8a\";\n}\n\n.fltr-search-shield-20:before {\n    content: \"\\fa8b\";\n}\n\n.fltr-share-stop-16:before {\n    content: \"\\fa8c\";\n}\n\n.fltr-share-stop-20:before {\n    content: \"\\fa8d\";\n}\n\n.fltr-share-stop-48:before {\n    content: \"\\fa8e\";\n}\n\n.fltr-shield-dismiss-shield-20:before {\n    content: \"\\fa8f\";\n}\n\n.fltr-shifts-day-20:before {\n    content: \"\\fa90\";\n}\n\n.fltr-shifts-day-24:before {\n    content: \"\\fa91\";\n}\n\n.fltr-sidebar-search-ltr-20:before {\n    content: \"\\fa92\";\n}\n\n.fltr-sidebar-search-rtl-20:before {\n    content: \"\\fa93\";\n}\n\n.fltr-sign-out-20:before {\n    content: \"\\fa94\";\n}\n\n.fltr-slide-multiple-arrow-right-24:before {\n    content: \"\\fa95\";\n}\n\n.fltr-slide-search-24:before {\n    content: \"\\fa96\";\n}\n\n.fltr-slide-search-28:before {\n    content: \"\\fa97\";\n}\n\n.fltr-slide-size-24:before {\n    content: \"\\fa98\";\n}\n\n.fltr-slide-text-16:before {\n    content: \"\\fa99\";\n}\n\n.fltr-slide-text-20:before {\n    content: \"\\fa9a\";\n}\n\n.fltr-slide-text-28:before {\n    content: \"\\fa9b\";\n}\n\n.fltr-slide-text-48:before {\n    content: \"\\fa9c\";\n}\n\n.fltr-speaker-0-16:before {\n    content: \"\\fa9d\";\n}\n\n.fltr-speaker-0-20:before {\n    content: \"\\fa9e\";\n}\n\n.fltr-speaker-0-28:before {\n    content: \"\\fa9f\";\n}\n\n.fltr-speaker-0-48:before {\n    content: \"\\faa0\";\n}\n\n.fltr-speaker-1-16:before {\n    content: \"\\faa1\";\n}\n\n.fltr-speaker-1-20:before {\n    content: \"\\faa2\";\n}\n\n.fltr-speaker-1-28:before {\n    content: \"\\faa3\";\n}\n\n.fltr-speaker-1-48:before {\n    content: \"\\faa4\";\n}\n\n.fltr-speaker-48:before {\n    content: \"\\faa5\";\n}\n\n.fltr-speaker-bluetooth-28:before {\n    content: \"\\faa6\";\n}\n\n.fltr-speaker-none-16:before {\n    content: \"\\faa7\";\n}\n\n.fltr-speaker-none-48:before {\n    content: \"\\faa8\";\n}\n\n.fltr-speaker-off-16:before {\n    content: \"\\faa9\";\n}\n\n.fltr-speaker-off-20:before {\n    content: \"\\faaa\";\n}\n\n.fltr-speaker-off-48:before {\n    content: \"\\faab\";\n}\n\n.fltr-speaker-usb-24:before {\n    content: \"\\faac\";\n}\n\n.fltr-speaker-usb-28:before {\n    content: \"\\faad\";\n}\n\n.fltr-sport-16:before {\n    content: \"\\faae\";\n}\n\n.fltr-sport-20:before {\n    content: \"\\faaf\";\n}\n\n.fltr-sport-24:before {\n    content: \"\\fab0\";\n}\n\n.fltr-sport-american-football-24:before {\n    content: \"\\fab1\";\n}\n\n.fltr-sport-baseball-24:before {\n    content: \"\\fab2\";\n}\n\n.fltr-sport-basketball-24:before {\n    content: \"\\fab3\";\n}\n\n.fltr-sport-hockey-24:before {\n    content: \"\\fab4\";\n}\n\n.fltr-star-edit-24:before {\n    content: \"\\fab5\";\n}\n\n.fltr-tab-desktop-arrow-left-20:before {\n    content: \"\\fab6\";\n}\n\n.fltr-tab-prohibited-24:before {\n    content: \"\\fab7\";\n}\n\n.fltr-table-16:before {\n    content: \"\\fab8\";\n}\n\n.fltr-table-28:before {\n    content: \"\\fab9\";\n}\n\n.fltr-table-48:before {\n    content: \"\\faba\";\n}\n\n.fltr-table-simple-16:before {\n    content: \"\\fabb\";\n}\n\n.fltr-table-simple-20:before {\n    content: \"\\fabc\";\n}\n\n.fltr-table-simple-24:before {\n    content: \"\\fabd\";\n}\n\n.fltr-table-simple-28:before {\n    content: \"\\fabe\";\n}\n\n.fltr-table-simple-48:before {\n    content: \"\\fabf\";\n}\n\n.fltr-tag-16:before {\n    content: \"\\fac0\";\n}\n\n.fltr-tasks-app-20:before {\n    content: \"\\fac1\";\n}\n\n.fltr-tent-12:before {\n    content: \"\\fac2\";\n}\n\n.fltr-tent-16:before {\n    content: \"\\fac3\";\n}\n\n.fltr-tent-20:before {\n    content: \"\\fac4\";\n}\n\n.fltr-tent-28:before {\n    content: \"\\fac5\";\n}\n\n.fltr-tent-48:before {\n    content: \"\\fac6\";\n}\n\n.fltr-text-bold-16:before {\n    content: \"\\fac7\";\n}\n\n.fltr-text-color-16:before {\n    content: \"\\fac8\";\n}\n\n.fltr-text-color-accent-16:before {\n    content: \"\\fac9\";\n}\n\n.fltr-text-color-accent-20:before {\n    content: \"\\faca\";\n}\n\n.fltr-text-color-accent-24:before {\n    content: \"\\facb\";\n}\n\n.fltr-text-column-one-narrow-20:before {\n    content: \"\\facc\";\n}\n\n.fltr-text-column-one-narrow-24:before {\n    content: \"\\facd\";\n}\n\n.fltr-text-column-one-wide-20:before {\n    content: \"\\face\";\n}\n\n.fltr-text-column-one-wide-24:before {\n    content: \"\\facf\";\n}\n\n.fltr-text-continuous-24:before {\n    content: \"\\fad0\";\n}\n\n.fltr-text-indent-decrease-20:before {\n    content: \"\\fad1\";\n}\n\n.fltr-text-indent-increase-20:before {\n    content: \"\\fad2\";\n}\n\n.fltr-text-italic-16:before {\n    content: \"\\fad3\";\n}\n\n.fltr-text-strikethrough-16:before {\n    content: \"\\fad4\";\n}\n\n.fltr-text-underline-16:before {\n    content: \"\\fad5\";\n}\n\n.fltr-text-wrap-behind-20:before {\n    content: \"\\fad6\";\n}\n\n.fltr-text-wrap-behind-24:before {\n    content: \"\\fad7\";\n}\n\n.fltr-text-wrap-front-20:before {\n    content: \"\\fad8\";\n}\n\n.fltr-text-wrap-front-24:before {\n    content: \"\\fad9\";\n}\n\n.fltr-text-wrap-line-20:before {\n    content: \"\\fada\";\n}\n\n.fltr-text-wrap-line-24:before {\n    content: \"\\fadb\";\n}\n\n.fltr-text-wrap-square-20:before {\n    content: \"\\fadc\";\n}\n\n.fltr-text-wrap-square-24:before {\n    content: \"\\fadd\";\n}\n\n.fltr-text-wrap-through-20:before {\n    content: \"\\fade\";\n}\n\n.fltr-text-wrap-through-24:before {\n    content: \"\\fadf\";\n}\n\n.fltr-text-wrap-tight-20:before {\n    content: \"\\fae0\";\n}\n\n.fltr-text-wrap-tight-24:before {\n    content: \"\\fae1\";\n}\n\n.fltr-text-wrap-top-bottom-20:before {\n    content: \"\\fae2\";\n}\n\n.fltr-text-wrap-top-bottom-24:before {\n    content: \"\\fae3\";\n}\n\n.fltr-ticket-diagonal-16:before {\n    content: \"\\fae4\";\n}\n\n.fltr-ticket-diagonal-20:before {\n    content: \"\\fae5\";\n}\n\n.fltr-ticket-diagonal-24:before {\n    content: \"\\fae6\";\n}\n\n.fltr-ticket-diagonal-28:before {\n    content: \"\\fae7\";\n}\n\n.fltr-timer-16:before {\n    content: \"\\fae8\";\n}\n\n.fltr-timer-20:before {\n    content: \"\\fae9\";\n}\n\n.fltr-toggle-left-16:before {\n    content: \"\\faea\";\n}\n\n.fltr-toggle-left-20:before {\n    content: \"\\faeb\";\n}\n\n.fltr-toggle-left-24:before {\n    content: \"\\faec\";\n}\n\n.fltr-toggle-left-28:before {\n    content: \"\\faed\";\n}\n\n.fltr-toggle-left-48:before {\n    content: \"\\faee\";\n}\n\n.fltr-toggle-right-28:before {\n    content: \"\\faef\";\n}\n\n.fltr-toggle-right-48:before {\n    content: \"\\faf0\";\n}\n\n.fltr-tv-16:before {\n    content: \"\\faf1\";\n}\n\n.fltr-tv-20:before {\n    content: \"\\faf2\";\n}\n\n.fltr-tv-24:before {\n    content: \"\\faf3\";\n}\n\n.fltr-tv-28:before {\n    content: \"\\faf4\";\n}\n\n.fltr-tv-48:before {\n    content: \"\\faf5\";\n}\n\n.fltr-vehicle-bicycle-16:before {\n    content: \"\\faf6\";\n}\n\n.fltr-vehicle-bicycle-20:before {\n    content: \"\\faf7\";\n}\n\n.fltr-vehicle-bus-16:before {\n    content: \"\\faf8\";\n}\n\n.fltr-vehicle-bus-20:before {\n    content: \"\\faf9\";\n}\n\n.fltr-vehicle-car-28:before {\n    content: \"\\fafa\";\n}\n\n.fltr-vehicle-car-48:before {\n    content: \"\\fafb\";\n}\n\n.fltr-vehicle-ship-16:before {\n    content: \"\\fafc\";\n}\n\n.fltr-vehicle-ship-20:before {\n    content: \"\\fafd\";\n}\n\n.fltr-vehicle-ship-24:before {\n    content: \"\\fafe\";\n}\n\n.fltr-vehicle-subway-16:before {\n    content: \"\\faff\";\n}\n\n.fltr-vehicle-subway-20:before {\n    content: \"\\fb00\";\n}\n\n.fltr-vehicle-subway-24:before {\n    content: \"\\fb01\";\n}\n\n.fltr-vehicle-truck-16:before {\n    content: \"\\fb02\";\n}\n\n.fltr-vehicle-truck-20:before {\n    content: \"\\fb03\";\n}\n\n.fltr-video-clip-20:before {\n    content: \"\\fb04\";\n}\n\n.fltr-vote-20:before {\n    content: \"\\fb05\";\n}\n\n.fltr-vote-24:before {\n    content: \"\\fb06\";\n}\n\n.fltr-weather-drizzle-20:before {\n    content: \"\\fb07\";\n}\n\n.fltr-weather-drizzle-24:before {\n    content: \"\\fb08\";\n}\n\n.fltr-weather-drizzle-48:before {\n    content: \"\\fb09\";\n}\n\n.fltr-weather-haze-20:before {\n    content: \"\\fb0a\";\n}\n\n.fltr-weather-haze-24:before {\n    content: \"\\fb0b\";\n}\n\n.fltr-weather-haze-48:before {\n    content: \"\\fb0c\";\n}\n\n.fltr-weather-moon-16:before {\n    content: \"\\fb0d\";\n}\n\n.fltr-weather-moon-28:before {\n    content: \"\\fb0e\";\n}\n\n.fltr-weather-moon-off-16:before {\n    content: \"\\fb0f\";\n}\n\n.fltr-weather-moon-off-20:before {\n    content: \"\\fb10\";\n}\n\n.fltr-weather-moon-off-24:before {\n    content: \"\\fb11\";\n}\n\n.fltr-weather-moon-off-28:before {\n    content: \"\\fb12\";\n}\n\n.fltr-weather-moon-off-48:before {\n    content: \"\\fb13\";\n}\n\n.fltr-weather-sunny-high-20:before {\n    content: \"\\fb14\";\n}\n\n.fltr-weather-sunny-high-24:before {\n    content: \"\\fb15\";\n}\n\n.fltr-weather-sunny-high-48:before {\n    content: \"\\fb16\";\n}\n\n.fltr-weather-sunny-low-20:before {\n    content: \"\\fb17\";\n}\n\n.fltr-weather-sunny-low-24:before {\n    content: \"\\fb18\";\n}\n\n.fltr-weather-sunny-low-48:before {\n    content: \"\\fb19\";\n}\n\n.fltr-window-horizontal-20:before {\n    content: \"\\fb1a\";\n}\n\n.fltr-window-new-16:before {\n    content: \"\\fb1b\";\n}\n\n.fltr-window-new-24:before {\n    content: \"\\fb1c\";\n}\n\n.fltr-window-vertical-20:before {\n    content: \"\\fb1d\";\n}\n\n.fltr-wrench-16:before {\n    content: \"\\fb1e\";\n}\n\n.fltr-wrench-20:before {\n    content: \"\\fb1f\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome-pack/ikonli-fontawesome-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.fontawesome {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.fontawesome;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.fontawesome.FontAwesomeIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.fontawesome.FontAwesomeIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-fontawesome-pack/src/main/java/org/kordamp/ikonli/fontawesome/FontAwesome.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum FontAwesome implements Ikon {\n    // last is f2e0\n    ADDRESS_BOOK(\"fa-address-book\", '\\uf2b9'),\n    ADDRESS_BOOK_O(\"fa-address-book-o\", '\\uf2ba'),\n    ADDRESS_CARD(\"fa-address-card\", '\\uf2bb'),\n    ADDRESS_CARD_O(\"fa-address-card-o\", '\\uf2bc'),\n    ADJUST(\"fa-adjust\", '\\uf042'),\n    ADN(\"fa-adn\", '\\uf170'),\n    ALIGN_CENTER(\"fa-align-center\", '\\uf037'),\n    ALIGN_JUSTIFY(\"fa-align-justify\", '\\uf039'),\n    ALIGN_LEFT(\"fa-align-left\", '\\uf036'),\n    ALIGN_RIGHT(\"fa-align-right\", '\\uf038'),\n    AMAZON(\"fa-amazon\", '\\uf270'),\n    AMBULANCE(\"fa-ambulance\", '\\uf0f9'),\n    AMERICAN_SIGN_LANGUAGE_INTERPRETING(\"fa-american-sign-language-interpreting\", '\\uf2a3'),\n    ANCHOR(\"fa-anchor\", '\\uf13d'),\n    ANDROID(\"fa-android\", '\\uf17b'),\n    ANGELLIST(\"fa-angellist\", '\\uf209'),\n    ANGLE_DOUBLE_DOWN(\"fa-angle-double-down\", '\\uf103'),\n    ANGLE_DOUBLE_LEFT(\"fa-angle-double-left\", '\\uf100'),\n    ANGLE_DOUBLE_RIGHT(\"fa-angle-double-right\", '\\uf101'),\n    ANGLE_DOUBLE_UP(\"fa-angle-double-up\", '\\uf102'),\n    ANGLE_DOWN(\"fa-angle-down\", '\\uf107'),\n    ANGLE_LEFT(\"fa-angle-left\", '\\uf104'),\n    ANGLE_RIGHT(\"fa-angle-right\", '\\uf105'),\n    ANGLE_UP(\"fa-angle-up\", '\\uf106'),\n    APPLE(\"fa-apple\", '\\uf179'),\n    ARCHIVE(\"fa-archive\", '\\uf187'),\n    AREA_CHART(\"fa-area-chart\", '\\uf1fe'),\n    ARROWS(\"fa-arrows\", '\\uf047'),\n    ARROWS_ALT(\"fa-arrows-alt\", '\\uf0b2'),\n    ARROWS_H(\"fa-arrows-h\", '\\uf07e'),\n    ARROWS_V(\"fa-arrows-v\", '\\uf07d'),\n    ARROW_CIRCLE_DOWN(\"fa-arrow-circle-down\", '\\uf0ab'),\n    ARROW_CIRCLE_LEFT(\"fa-arrow-circle-left\", '\\uf0a8'),\n    ARROW_CIRCLE_O_DOWN(\"fa-arrow-circle-o-down\", '\\uf01a'),\n    ARROW_CIRCLE_O_LEFT(\"fa-arrow-circle-o-left\", '\\uf190'),\n    ARROW_CIRCLE_O_RIGHT(\"fa-arrow-circle-o-right\", '\\uf18e'),\n    ARROW_CIRCLE_O_UP(\"fa-arrow-circle-o-up\", '\\uf01b'),\n    ARROW_CIRCLE_RIGHT(\"fa-arrow-circle-right\", '\\uf0a9'),\n    ARROW_CIRCLE_UP(\"fa-arrow-circle-up\", '\\uf0aa'),\n    ARROW_DOWN(\"fa-arrow-down\", '\\uf063'),\n    ARROW_LEFT(\"fa-arrow-left\", '\\uf060'),\n    ARROW_RIGHT(\"fa-arrow-right\", '\\uf061'),\n    ARROW_UP(\"fa-arrow-up\", '\\uf062'),\n    ASL_INTERPRETING(\"fa-asl-interpreting\", '\\uf2a3'),\n    ASSISTIVE_LISTENING_SYSTEMS(\"fa-assistive-listening-systems\", '\\uf2a2'),\n    ASTERISK(\"fa-asterisk\", '\\uf069'),\n    AT(\"fa-at\", '\\uf1fa'),\n    AUDIO_DESCRIPTION(\"fa-audio-description\", '\\uf29e'),\n    AUTOMOBILE(\"fa-automobile\", '\\uf1b9'),\n    BACKWARD(\"fa-backward\", '\\uf04a'),\n    BALANCE_SCALE(\"fa-balance-scale\", '\\uf24e'),\n    BAN(\"fa-ban\", '\\uf05e'),\n    BANDCAMP(\"fa-bandcamp\", '\\uf2d5'),\n    BANK(\"fa-bank\", '\\uf19c'),\n    BARCODE(\"fa-barcode\", '\\uf02a'),\n    BARS(\"fa-bars\", '\\uf0c9'),\n    BAR_CHART(\"fa-bar-chart\", '\\uf080'),\n    BAR_CHART_O(\"fa-bar-chart-o\", '\\uf080'),\n    BATH(\"fa-bath\", '\\uf2cd'),\n    BATHTUB(\"fa-bathtub\", '\\uf2cd'),\n    BATTERY_0(\"fa-battery-0\", '\\uf244'),\n    BATTERY_1(\"fa-battery-1\", '\\uf243'),\n    BATTERY_2(\"fa-battery-2\", '\\uf242'),\n    BATTERY_3(\"fa-battery-3\", '\\uf241'),\n    BATTERY_4(\"fa-battery-4\", '\\uf240'),\n    BATTERY_EMPTY(\"fa-battery-empty\", '\\uf244'),\n    BATTERY_FULL(\"fa-battery-full\", '\\uf240'),\n    BATTERY_HALF(\"fa-battery-half\", '\\uf242'),\n    BATTERY_QUARTER(\"fa-battery-quarter\", '\\uf243'),\n    BATTERY_THREE_QUARTERS(\"fa-battery-three-quarters\", '\\uf241'),\n    BED(\"fa-bed\", '\\uf236'),\n    BEER(\"fa-beer\", '\\uf0fc'),\n    BEHANCE(\"fa-behance\", '\\uf1b4'),\n    BEHANCE_SQUARE(\"fa-behance-square\", '\\uf1b5'),\n    BELL(\"fa-bell\", '\\uf0f3'),\n    BELL_O(\"fa-bell-o\", '\\uf0a2'),\n    BELL_SLASH(\"fa-bell-slash\", '\\uf1f6'),\n    BELL_SLASH_O(\"fa-bell-slash-o\", '\\uf1f7'),\n    BICYCLE(\"fa-bicycle\", '\\uf206'),\n    BINOCULARS(\"fa-binoculars\", '\\uf1e5'),\n    BIRTHDAY_CAKE(\"fa-birthday-cake\", '\\uf1fd'),\n    BITBUCKET(\"fa-bitbucket\", '\\uf171'),\n    BITBUCKET_SQUARE(\"fa-bitbucket-square\", '\\uf172'),\n    BITCOIN(\"fa-bitcoin\", '\\uf15a'),\n    BLACK_TIE(\"fa-black-tie\", '\\uf27e'),\n    BLIND(\"fa-blind\", '\\uf29d'),\n    BLUETOOTH(\"fa-bluetooth\", '\\uf293'),\n    BLUETOOTH_B(\"fa-bluetooth-b\", '\\uf294'),\n    BOLD(\"fa-bold\", '\\uf032'),\n    BOLT(\"fa-bolt\", '\\uf0e7'),\n    BOMB(\"fa-bomb\", '\\uf1e2'),\n    BOOK(\"fa-book\", '\\uf02d'),\n    BOOKMARK(\"fa-bookmark\", '\\uf02e'),\n    BOOKMARK_O(\"fa-bookmark-o\", '\\uf097'),\n    BRAILLE(\"fa-braille\", '\\uf2a1'),\n    BRIEFCASE(\"fa-briefcase\", '\\uf0b1'),\n    BTC(\"fa-btc\", '\\uf15a'),\n    BUG(\"fa-bug\", '\\uf188'),\n    BUILDING(\"fa-building\", '\\uf1ad'),\n    BUILDING_O(\"fa-building-o\", '\\uf0f7'),\n    BULLHORN(\"fa-bullhorn\", '\\uf0a1'),\n    BULLSEYE(\"fa-bullseye\", '\\uf140'),\n    BUS(\"fa-bus\", '\\uf207'),\n    BUYSELLADS(\"fa-buysellads\", '\\uf20d'),\n    CAB(\"fa-cab\", '\\uf1ba'),\n    CALCULATOR(\"fa-calculator\", '\\uf1ec'),\n    CALENDAR(\"fa-calendar\", '\\uf073'),\n    CALENDAR_CHECK_O(\"fa-calendar-check-o\", '\\uf274'),\n    CALENDAR_MINUS_O(\"fa-calendar-minus-o\", '\\uf272'),\n    CALENDAR_O(\"fa-calendar-o\", '\\uf133'),\n    CALENDAR_PLUS_O(\"fa-calendar-plus-o\", '\\uf271'),\n    CALENDAR_TIMES_O(\"fa-calendar-times-o\", '\\uf273'),\n    CAMERA(\"fa-camera\", '\\uf030'),\n    CAMERA_RETRO(\"fa-camera-retro\", '\\uf083'),\n    CAR(\"fa-car\", '\\uf1b9'),\n    CARET_DOWN(\"fa-caret-down\", '\\uf0d7'),\n    CARET_LEFT(\"fa-caret-left\", '\\uf0d9'),\n    CARET_RIGHT(\"fa-caret-right\", '\\uf0da'),\n    CARET_SQUARE_O_DOWN(\"fa-caret-square-o-down\", '\\uf150'),\n    CARET_SQUARE_O_LEFT(\"fa-caret-square-o-left\", '\\uf191'),\n    CARET_SQUARE_O_RIGHT(\"fa-caret-square-o-right\", '\\uf152'),\n    CARET_SQUARE_O_UP(\"fa-caret-square-o-up\", '\\uf151'),\n    CARET_UP(\"fa-caret-up\", '\\uf0d8'),\n    CART_ARROW_DOWN(\"fa-cart-arrow-down\", '\\uf218'),\n    CART_PLUS(\"fa-cart-plus\", '\\uf217'),\n    CC(\"fa-cc\", '\\uf20a'),\n    CC_AMEX(\"fa-cc-amex\", '\\uf1f3'),\n    CC_DINERS_CLUB(\"fa-cc-diners-club\", '\\uf24c'),\n    CC_DISCOVER(\"fa-cc-discover\", '\\uf1f2'),\n    CC_JCB(\"fa-cc-jcb\", '\\uf24b'),\n    CC_MASTERCARD(\"fa-cc-mastercard\", '\\uf1f1'),\n    CC_PAYPAL(\"fa-cc-paypal\", '\\uf1f4'),\n    CC_STRIPE(\"fa-cc-stripe\", '\\uf1f5'),\n    CC_VISA(\"fa-cc-visa\", '\\uf1f0'),\n    CERTIFICATE(\"fa-certificate\", '\\uf0a3'),\n    CHAIN(\"fa-chain\", '\\uf0c1'),\n    CHAIN_BROKEN(\"fa-chain-broken\", '\\uf127'),\n    CHECK(\"fa-check\", '\\uf00c'),\n    CHECK_CIRCLE(\"fa-check-circle\", '\\uf058'),\n    CHECK_CIRCLE_O(\"fa-check-circle-o\", '\\uf05d'),\n    CHECK_SQUARE(\"fa-check-square\", '\\uf14a'),\n    CHECK_SQUARE_O(\"fa-check-square-o\", '\\uf046'),\n    CHEVRON_CIRCLE_DOWN(\"fa-chevron-circle-down\", '\\uf13a'),\n    CHEVRON_CIRCLE_LEFT(\"fa-chevron-circle-left\", '\\uf137'),\n    CHEVRON_CIRCLE_RIGHT(\"fa-chevron-circle-right\", '\\uf138'),\n    CHEVRON_CIRCLE_UP(\"fa-chevron-circle-up\", '\\uf139'),\n    CHEVRON_DOWN(\"fa-chevron-down\", '\\uf078'),\n    CHEVRON_LEFT(\"fa-chevron-left\", '\\uf053'),\n    CHEVRON_RIGHT(\"fa-chevron-right\", '\\uf054'),\n    CHEVRON_UP(\"fa-chevron-up\", '\\uf077'),\n    CHILD(\"fa-child\", '\\uf1ae'),\n    CHROME(\"fa-chrome\", '\\uf268'),\n    CIRCLE(\"fa-circle\", '\\uf111'),\n    CIRCLE_O(\"fa-circle-o\", '\\uf10c'),\n    CIRCLE_O_NOTCH(\"fa-circle-o-notch\", '\\uf1ce'),\n    CIRCLE_THIN(\"fa-circle-thin\", '\\uf1db'),\n    CLIPBOARD(\"fa-clipboard\", '\\uf0ea'),\n    CLOCK_O(\"fa-clock-o\", '\\uf017'),\n    CLONE(\"fa-clone\", '\\uf24d'),\n    CLOSE(\"fa-close\", '\\uf00d'),\n    CLOUD(\"fa-cloud\", '\\uf0c2'),\n    CLOUD_DOWNLOAD(\"fa-cloud-download\", '\\uf0ed'),\n    CLOUD_UPLOAD(\"fa-cloud-upload\", '\\uf0ee'),\n    CNY(\"fa-cny\", '\\uf157'),\n    CODE(\"fa-code\", '\\uf121'),\n    CODEPEN(\"fa-codepen\", '\\uf1cb'),\n    CODE_FORK(\"fa-code-fork\", '\\uf126'),\n    CODIEPIE(\"fa-codiepie\", '\\uf284'),\n    COFFEE(\"fa-coffee\", '\\uf0f4'),\n    COG(\"fa-cog\", '\\uf013'),\n    COGS(\"fa-cogs\", '\\uf085'),\n    COLUMNS(\"fa-columns\", '\\uf0db'),\n    COMMENT(\"fa-comment\", '\\uf075'),\n    COMMENTING(\"fa-commenting\", '\\uf27a'),\n    COMMENTING_O(\"fa-commenting-o\", '\\uf27b'),\n    COMMENTS(\"fa-comments\", '\\uf086'),\n    COMMENTS_O(\"fa-comments-o\", '\\uf0e6'),\n    COMMENT_O(\"fa-comment-o\", '\\uf0e5'),\n    COMPASS(\"fa-compass\", '\\uf14e'),\n    COMPRESS(\"fa-compress\", '\\uf066'),\n    CONNECTDEVELOP(\"fa-connectdevelop\", '\\uf20e'),\n    CONTAO(\"fa-contao\", '\\uf26d'),\n    COPY(\"fa-copy\", '\\uf0c5'),\n    COPYRIGHT(\"fa-copyright\", '\\uf1f9'),\n    CREATIVE_COMMONS(\"fa-creative-commons\", '\\uf25e'),\n    CREDIT_CARD(\"fa-credit-card\", '\\uf09d'),\n    CREDIT_CARD_ALT(\"fa-credit-card-alt\", '\\uf283'),\n    CROP(\"fa-crop\", '\\uf125'),\n    CROSSHAIRS(\"fa-crosshairs\", '\\uf05b'),\n    CSS3(\"fa-css3\", '\\uf13c'),\n    CUBE(\"fa-cube\", '\\uf1b2'),\n    CUBES(\"fa-cubes\", '\\uf1b3'),\n    CUT(\"fa-cut\", '\\uf0c4'),\n    CUTLERY(\"fa-cutlery\", '\\uf0f5'),\n    DASHBOARD(\"fa-dashboard\", '\\uf0e4'),\n    DASHCUBE(\"fa-dashcube\", '\\uf210'),\n    DATABASE(\"fa-database\", '\\uf1c0'),\n    DEAF(\"fa-deaf\", '\\uf2a4'),\n    DEAFNESS(\"fa-deafness\", '\\uf2a4'),\n    DEDENT(\"fa-dedent\", '\\uf03b'),\n    DELICIOUS(\"fa-delicious\", '\\uf1a5'),\n    DESKTOP(\"fa-desktop\", '\\uf108'),\n    DEVIANTART(\"fa-deviantart\", '\\uf1bd'),\n    DIAMOND(\"fa-diamond\", '\\uf219'),\n    DIGG(\"fa-digg\", '\\uf1a6'),\n    DOLLAR(\"fa-dollar\", '\\uf155'),\n    DOT_CIRCLE_O(\"fa-dot-circle-o\", '\\uf192'),\n    DOWNLOAD(\"fa-download\", '\\uf019'),\n    DRIBBBLE(\"fa-dribbble\", '\\uf17d'),\n    DRIVERS_LICENSE(\"fa-drivers-license\", '\\uf2c2'),\n    DRIVERS_LICENSE_O(\"fa-drivers-license-o\", '\\uf2c3'),\n    DROPBOX(\"fa-dropbox\", '\\uf16b'),\n    DRUPAL(\"fa-drupal\", '\\uf1a9'),\n    EDGE(\"fa-edge\", '\\uf282'),\n    EDIT(\"fa-edit\", '\\uf044'),\n    EERCAST(\"fa-eercast\", '\\uf2da'),\n    EJECT(\"fa-eject\", '\\uf052'),\n    ELLIPSIS_H(\"fa-ellipsis-h\", '\\uf141'),\n    ELLIPSIS_V(\"fa-ellipsis-v\", '\\uf142'),\n    EMPIRE(\"fa-empire\", '\\uf1d1'),\n    ENVELOPE(\"fa-envelope\", '\\uf0e0'),\n    ENVELOPE_O(\"fa-envelope-o\", '\\uf003'),\n    ENVELOPE_OPEN(\"fa-envelope-open\", '\\uf2b6'),\n    ENVELOPE_OPEN_O(\"fa-envelope-open-o\", '\\uf2b7'),\n    ENVELOPE_SQUARE(\"fa-envelope-square\", '\\uf199'),\n    ENVIRA(\"fa-envira\", '\\uf299'),\n    ERASER(\"fa-eraser\", '\\uf12d'),\n    ETSY(\"fa-etsy\", '\\uf2d7'),\n    EUR(\"fa-eur\", '\\uf153'),\n    EURO(\"fa-euro\", '\\uf153'),\n    EXCHANGE(\"fa-exchange\", '\\uf0ec'),\n    EXCLAMATION(\"fa-exclamation\", '\\uf12a'),\n    EXCLAMATION_CIRCLE(\"fa-exclamation-circle\", '\\uf06a'),\n    EXCLAMATION_TRIANGLE(\"fa-exclamation-triangle\", '\\uf071'),\n    EXPAND(\"fa-expand\", '\\uf065'),\n    EXPEDITEDSSL(\"fa-expeditedssl\", '\\uf23e'),\n    EXTERNAL_LINK(\"fa-external-link\", '\\uf08e'),\n    EXTERNAL_LINK_SQUARE(\"fa-external-link-square\", '\\uf14c'),\n    EYE(\"fa-eye\", '\\uf06e'),\n    EYEDROPPER(\"fa-eyedropper\", '\\uf1fb'),\n    EYE_SLASH(\"fa-eye-slash\", '\\uf070'),\n    FA(\"fa-fa\", '\\uf2b4'),\n    FACEBOOK(\"fa-facebook\", '\\uf09a'),\n    FACEBOOK_F(\"fa-facebook-f\", '\\uf09a'),\n    FACEBOOK_OFFICIAL(\"fa-facebook-official\", '\\uf230'),\n    FACEBOOK_SQUARE(\"fa-facebook-square\", '\\uf082'),\n    FAST_BACKWARD(\"fa-fast-backward\", '\\uf049'),\n    FAST_FORWARD(\"fa-fast-forward\", '\\uf050'),\n    FAX(\"fa-fax\", '\\uf1ac'),\n    FA_500PX(\"fa-500px\", '\\uf26e'),\n    FEMALE(\"fa-female\", '\\uf182'),\n    FIGHTER_JET(\"fa-fighter-jet\", '\\uf0fb'),\n    FILE(\"fa-file\", '\\uf15b'),\n    FILES_O(\"fa-files-o\", '\\uf0c5'),\n    FILE_ARCHIVE_O(\"fa-file-archive-o\", '\\uf1c6'),\n    FILE_AUDIO_O(\"fa-file-audio-o\", '\\uf1c7'),\n    FILE_CODE_O(\"fa-file-code-o\", '\\uf1c9'),\n    FILE_EXCEL_O(\"fa-file-excel-o\", '\\uf1c3'),\n    FILE_IMAGE_O(\"fa-file-image-o\", '\\uf1c5'),\n    FILE_MOVIE_O(\"fa-file-movie-o\", '\\uf1c8'),\n    FILE_O(\"fa-file-o\", '\\uf016'),\n    FILE_PDF_O(\"fa-file-pdf-o\", '\\uf1c1'),\n    FILE_PHOTO_O(\"fa-file-photo-o\", '\\uf1c5'),\n    FILE_PICTURE_O(\"fa-file-picture-o\", '\\uf1c5'),\n    FILE_POWERPOINT_O(\"fa-file-powerpoint-o\", '\\uf1c4'),\n    FILE_SOUND_O(\"fa-file-sound-o\", '\\uf1c7'),\n    FILE_TEXT(\"fa-file-text\", '\\uf15c'),\n    FILE_TEXT_O(\"fa-file-text-o\", '\\uf0f6'),\n    FILE_VIDEO_O(\"fa-file-video-o\", '\\uf1c8'),\n    FILE_WORD_O(\"fa-file-word-o\", '\\uf1c2'),\n    FILE_ZIP_O(\"fa-file-zip-o\", '\\uf1c6'),\n    FILM(\"fa-film\", '\\uf008'),\n    FILTER(\"fa-filter\", '\\uf0b0'),\n    FIRE(\"fa-fire\", '\\uf06d'),\n    FIREFOX(\"fa-firefox\", '\\uf269'),\n    FIRE_EXTINGUISHER(\"fa-fire-extinguisher\", '\\uf134'),\n    FIRST_ORDER(\"fa-first-order\", '\\uf2b0'),\n    FLAG(\"fa-flag\", '\\uf024'),\n    FLAG_CHECKERED(\"fa-flag-checkered\", '\\uf11e'),\n    FLAG_O(\"fa-flag-o\", '\\uf11d'),\n    FLASH(\"fa-flash\", '\\uf0e7'),\n    FLASK(\"fa-flask\", '\\uf0c3'),\n    FLICKR(\"fa-flickr\", '\\uf16e'),\n    FLOPPY_O(\"fa-floppy-o\", '\\uf0c7'),\n    FOLDER(\"fa-folder\", '\\uf07b'),\n    FOLDER_O(\"fa-folder-o\", '\\uf114'),\n    FOLDER_OPEN(\"fa-folder-open\", '\\uf07c'),\n    FOLDER_OPEN_O(\"fa-folder-open-o\", '\\uf115'),\n    FONT(\"fa-font\", '\\uf031'),\n    FONTICONS(\"fa-fonticons\", '\\uf280'),\n    FONT_AWESOME(\"fa-font-awesome\", '\\uf2b4'),\n    FORT_AWESOME(\"fa-fort-awesome\", '\\uf286'),\n    FORUMBEE(\"fa-forumbee\", '\\uf211'),\n    FORWARD(\"fa-forward\", '\\uf04e'),\n    FOURSQUARE(\"fa-foursquare\", '\\uf180'),\n    FREE_CODE_CAMP(\"fa-free-code-camp\", '\\uf2c5'),\n    FROWN_O(\"fa-frown-o\", '\\uf119'),\n    FUTBOL_O(\"fa-futbol-o\", '\\uf1e3'),\n    GAMEPAD(\"fa-gamepad\", '\\uf11b'),\n    GAVEL(\"fa-gavel\", '\\uf0e3'),\n    GBP(\"fa-gbp\", '\\uf154'),\n    GE(\"fa-ge\", '\\uf1d1'),\n    GEAR(\"fa-gear\", '\\uf013'),\n    GEARS(\"fa-gears\", '\\uf085'),\n    GENDERLESS(\"fa-genderless\", '\\uf1db'),\n    GET_POCKET(\"fa-get-pocket\", '\\uf265'),\n    GG(\"fa-gg\", '\\uf260'),\n    GG_CIRCLE(\"fa-gg-circle\", '\\uf261'),\n    GIFT(\"fa-gift\", '\\uf06b'),\n    GIT(\"fa-git\", '\\uf1d3'),\n    GITHUB(\"fa-github\", '\\uf09b'),\n    GITHUB_ALT(\"fa-github-alt\", '\\uf113'),\n    GITHUB_SQUARE(\"fa-github-square\", '\\uf092'),\n    GITLAB(\"fa-gitlab\", '\\uf296'),\n    GITTIP(\"fa-gittip\", '\\uf184'),\n    GIT_SQUARE(\"fa-git-square\", '\\uf1d2'),\n    GLASS(\"fa-glass\", '\\uf000'),\n    GLIDE(\"fa-glide\", '\\uf2a5'),\n    GLIDE_G(\"fa-glide-g\", '\\uf2a6'),\n    GLOBE(\"fa-globe\", '\\uf0ac'),\n    GOOGLE(\"fa-google\", '\\uf1a0'),\n    GOOGLE_PLUS(\"fa-google-plus\", '\\uf0d5'),\n    GOOGLE_PLUST_CIRCLE(\"fa-google-plus-circle\", '\\uf2b3'),\n    GOOGLE_PLUST_OFFICIAL(\"fa-google-plus-official\", '\\uf2b3'),\n    GOOGLE_PLUS_SQUARE(\"fa-google-plus-square\", '\\uf0d4'),\n    GOOGLE_WALLET(\"fa-google-wallet\", '\\uf1ee'),\n    GRADUATION_CAP(\"fa-graduation-cap\", '\\uf19d'),\n    GRATIPAY(\"fa-gratipay\", '\\uf184'),\n    GRAV(\"fa-grav\", '\\uf2d6'),\n    GROUP(\"fa-group\", '\\uf0c0'),\n    HACKER_NEWS(\"fa-hacker-news\", '\\uf1d4'),\n    HANDSHAKE_O(\"fa-handshake-o\", '\\uf2b5'),\n    HAND_GRAB_O(\"fa-hand-grab-o\", '\\uf255'),\n    HAND_LIZARD_O(\"fa-hand-lizard-o\", '\\uf258'),\n    HAND_O_DOWN(\"fa-hand-o-down\", '\\uf0a7'),\n    HAND_O_LEFT(\"fa-hand-o-left\", '\\uf0a5'),\n    HAND_O_RIGHT(\"fa-hand-o-right\", '\\uf0a4'),\n    HAND_O_UP(\"fa-hand-o-up\", '\\uf0a6'),\n    HAND_PAPER_O(\"fa-hand-paper-o\", '\\uf256'),\n    HAND_PEACE_O(\"fa-hand-peace-o\", '\\uf25b'),\n    HAND_POINTER_O(\"fa-hand-pointer-o\", '\\uf25a'),\n    HAND_ROCK_O(\"fa-hand-rock-o\", '\\uf255'),\n    HAND_SCISSORS_O(\"fa-hand-scissors-o\", '\\uf257'),\n    HAND_SPOCK_O(\"fa-hand-spock-o\", '\\uf259'),\n    HAND_STOP_O(\"fa-hand-stop-o\", '\\uf256'),\n    HARD_OF_HEARING(\"fa-hard-of-hearing\", '\\uf2a4'),\n    HASHTAG(\"fa-hashtag\", '\\uf292'),\n    HDD_O(\"fa-hdd-o\", '\\uf0a0'),\n    HEADER(\"fa-header\", '\\uf1dc'),\n    HEADPHONES(\"fa-headphones\", '\\uf025'),\n    HEART(\"fa-heart\", '\\uf004'),\n    HEARTBEAT(\"fa-heartbeat\", '\\uf21e'),\n    HEART_O(\"fa-heart-o\", '\\uf08a'),\n    HISTORY(\"fa-history\", '\\uf1da'),\n    HOME(\"fa-home\", '\\uf015'),\n    HOSPITAL_O(\"fa-hospital-o\", '\\uf0f8'),\n    HOTEL(\"fa-hotel\", '\\uf236'),\n    HOURGLASS(\"fa-hourglass\", '\\uf254'),\n    HOURGLASS_1(\"fa-hourglass-1\", '\\uf251'),\n    HOURGLASS_2(\"fa-hourglass-2\", '\\uf252'),\n    HOURGLASS_3(\"fa-hourglass-3\", '\\uf253'),\n    HOURGLASS_END(\"fa-hourglass-end\", '\\uf253'),\n    HOURGLASS_HALF(\"fa-hourglass-half\", '\\uf252'),\n    HOURGLASS_O(\"fa-hourglass-o\", '\\uf250'),\n    HOURGLASS_START(\"fa-hourglass-start\", '\\uf251'),\n    HOUZZ(\"fa-houzz\", '\\uf27c'),\n    HTML5(\"fa-html5\", '\\uf13b'),\n    H_SQUARE(\"fa-h-square\", '\\uf0fd'),\n    ID_BADGE(\"fa-id-badge\", '\\uf2c1'),\n    ID_CARD(\"fa-id-card\", '\\uf2c2'),\n    ID_CARD_O(\"fa-id-card-o\", '\\uf2c3'),\n    ILS(\"fa-ils\", '\\uf20b'),\n    IMAGE(\"fa-image\", '\\uf03e'),\n    IMDB(\"fa-imdb\", '\\uf2d8'),\n    INBOX(\"fa-inbox\", '\\uf01c'),\n    INDENT(\"fa-indent\", '\\uf03c'),\n    INDUSTRY(\"fa-industry\", '\\uf275'),\n    INFO(\"fa-info\", '\\uf129'),\n    INFO_CIRCLE(\"fa-info-circle\", '\\uf05a'),\n    INR(\"fa-inr\", '\\uf156'),\n    INSTAGRAM(\"fa-instagram\", '\\uf16d'),\n    INSTITUTION(\"fa-institution\", '\\uf19c'),\n    INTERNET_EXPLORER(\"fa-internet-explorer\", '\\uf26b'),\n    IOXHOST(\"fa-ioxhost\", '\\uf208'),\n    ITALIC(\"fa-italic\", '\\uf033'),\n    I_CURSOR(\"fa-i-cursor\", '\\uf246'),\n    JOOMLA(\"fa-joomla\", '\\uf1aa'),\n    JPY(\"fa-jpy\", '\\uf157'),\n    JSFIDDLE(\"fa-jsfiddle\", '\\uf1cc'),\n    KEY(\"fa-key\", '\\uf084'),\n    KEYBOARD_O(\"fa-keyboard-o\", '\\uf11c'),\n    KRW(\"fa-krw\", '\\uf159'),\n    LANGUAGE(\"fa-language\", '\\uf1ab'),\n    LAPTOP(\"fa-laptop\", '\\uf109'),\n    LASTFM(\"fa-lastfm\", '\\uf202'),\n    LASTFM_SQUARE(\"fa-lastfm-square\", '\\uf203'),\n    LEAF(\"fa-leaf\", '\\uf06c'),\n    LEANPUB(\"fa-leanpub\", '\\uf212'),\n    LEGAL(\"fa-legal\", '\\uf0e3'),\n    LEMON_O(\"fa-lemon-o\", '\\uf094'),\n    LEVEL_DOWN(\"fa-level-down\", '\\uf149'),\n    LEVEL_UP(\"fa-level-up\", '\\uf148'),\n    LIFE_BOUY(\"fa-life-bouy\", '\\uf1cd'),\n    LIFE_BUOY(\"fa-life-buoy\", '\\uf1cd'),\n    LIFE_RING(\"fa-life-ring\", '\\uf1cd'),\n    LIFE_SAVER(\"fa-life-saver\", '\\uf1cd'),\n    LIGHTBULB_O(\"fa-lightbulb-o\", '\\uf0eb'),\n    LINE_CHART(\"fa-line-chart\", '\\uf201'),\n    LINK(\"fa-link\", '\\uf0c1'),\n    LINKEDIN(\"fa-linkedin\", '\\uf0e1'),\n    LINKEDIN_SQUARE(\"fa-linkedin-square\", '\\uf08c'),\n    LINODE(\"fa-linode\", '\\uf2b8'),\n    LINUX(\"fa-linux\", '\\uf17c'),\n    LIST(\"fa-list\", '\\uf03a'),\n    LIST_ALT(\"fa-list-alt\", '\\uf022'),\n    LIST_OL(\"fa-list-ol\", '\\uf0cb'),\n    LIST_UL(\"fa-list-ul\", '\\uf0ca'),\n    LOCATION_ARROW(\"fa-location-arrow\", '\\uf124'),\n    LOCK(\"fa-lock\", '\\uf023'),\n    LONG_ARROW_DOWN(\"fa-long-arrow-down\", '\\uf175'),\n    LONG_ARROW_LEFT(\"fa-long-arrow-left\", '\\uf177'),\n    LONG_ARROW_RIGHT(\"fa-long-arrow-right\", '\\uf178'),\n    LONG_ARROW_UP(\"fa-long-arrow-up\", '\\uf176'),\n    LOW_VISION(\"fa-low-vision\", '\\uf2a8'),\n    MAGIC(\"fa-magic\", '\\uf0d0'),\n    MAGNET(\"fa-magnet\", '\\uf076'),\n    MAIL_FORWARD(\"fa-mail-forward\", '\\uf064'),\n    MAIL_REPLY(\"fa-mail-reply\", '\\uf112'),\n    MAIL_REPLY_ALL(\"fa-mail-reply-all\", '\\uf122'),\n    MALE(\"fa-male\", '\\uf183'),\n    MAP(\"fa-map\", '\\uf279'),\n    MAP_MARKER(\"fa-map-marker\", '\\uf041'),\n    MAP_O(\"fa-map-o\", '\\uf278'),\n    MAP_PIN(\"fa-map-pin\", '\\uf276'),\n    MAP_SIGNS(\"fa-map-signs\", '\\uf277'),\n    MARS(\"fa-mars\", '\\uf222'),\n    MARS_DOUBLE(\"fa-mars-double\", '\\uf227'),\n    MARS_STROKE(\"fa-mars-stroke\", '\\uf229'),\n    MARS_STROKE_H(\"fa-mars-stroke-h\", '\\uf22b'),\n    MARS_STROKE_V(\"fa-mars-stroke-v\", '\\uf22a'),\n    MAXCDN(\"fa-maxcdn\", '\\uf136'),\n    MEANPATH(\"fa-meanpath\", '\\uf20c'),\n    MEDIUM(\"fa-medium\", '\\uf23a'),\n    MEDKIT(\"fa-medkit\", '\\uf0fa'),\n    MEETUP(\"fa-meetup\", '\\uf2e0'),\n    MEH_O(\"fa-meh-o\", '\\uf11a'),\n    MERCURY(\"fa-mercury\", '\\uf223'),\n    MICROCHIP(\"fa-microchip\", '\\uf2db'),\n    MICROPHONE(\"fa-microphone\", '\\uf130'),\n    MICROPHONE_SLASH(\"fa-microphone-slash\", '\\uf131'),\n    MINUS(\"fa-minus\", '\\uf068'),\n    MINUS_CIRCLE(\"fa-minus-circle\", '\\uf056'),\n    MINUS_SQUARE(\"fa-minus-square\", '\\uf146'),\n    MINUS_SQUARE_O(\"fa-minus-square-o\", '\\uf147'),\n    MIXCLOUD(\"fa-mixcloud\", '\\uf289'),\n    MOBILE(\"fa-mobile\", '\\uf10b'),\n    MOBILE_PHONE(\"fa-mobile-phone\", '\\uf10b'),\n    MODX(\"fa-modx\", '\\uf285'),\n    MONEY(\"fa-money\", '\\uf0d6'),\n    MOON_O(\"fa-moon-o\", '\\uf186'),\n    MORTAR_BOARD(\"fa-mortar-board\", '\\uf19d'),\n    MOTORCYCLE(\"fa-motorcycle\", '\\uf21c'),\n    MOUSE_POINTER(\"fa-mouse-pointer\", '\\uf245'),\n    MUSIC(\"fa-music\", '\\uf001'),\n    NAVICON(\"fa-navicon\", '\\uf0c9'),\n    NEUTER(\"fa-neuter\", '\\uf22c'),\n    NEWSPAPER_O(\"fa-newspaper-o\", '\\uf1ea'),\n    OBJECT_GROUP(\"fa-object-group\", '\\uf247'),\n    OBJECT_UNGROUP(\"fa-object-ungroup\", '\\uf248'),\n    ODNOKLASSNIKI(\"fa-odnoklassniki\", '\\uf263'),\n    ODNOKLASSNIKI_SQUARE(\"fa-odnoklassniki-square\", '\\uf264'),\n    OPENCART(\"fa-opencart\", '\\uf23d'),\n    OPENID(\"fa-openid\", '\\uf19b'),\n    OPERA(\"fa-opera\", '\\uf26a'),\n    OPTIN_MONSTER(\"fa-optin-monster\", '\\uf23c'),\n    OUTDENT(\"fa-outdent\", '\\uf03b'),\n    PAGELINES(\"fa-pagelines\", '\\uf18c'),\n    PAINT_BRUSH(\"fa-paint-brush\", '\\uf1fc'),\n    PAPERCLIP(\"fa-paperclip\", '\\uf0c6'),\n    PAPER_PLANE(\"fa-paper-plane\", '\\uf1d8'),\n    PAPER_PLANE_O(\"fa-paper-plane-o\", '\\uf1d9'),\n    PARAGRAPH(\"fa-paragraph\", '\\uf1dd'),\n    PASTE(\"fa-paste\", '\\uf0ea'),\n    PAUSE(\"fa-pause\", '\\uf04c'),\n    PAUSE_CIRCLE(\"fa-pause-circle\", '\\uf28b'),\n    PAUSE_CIRCLE_O(\"fa-pause-circle-o\", '\\uf28c'),\n    PAW(\"fa-paw\", '\\uf1b0'),\n    PAYPAL(\"fa-paypal\", '\\uf1ed'),\n    PENCIL(\"fa-pencil\", '\\uf040'),\n    PENCIL_SQUARE(\"fa-pencil-square\", '\\uf14b'),\n    PENCIL_SQUARE_O(\"fa-pencil-square-o\", '\\uf044'),\n    PERCENT(\"fa-percent\", '\\uf295'),\n    PHONE(\"fa-phone\", '\\uf095'),\n    PHONE_SQUARE(\"fa-phone-square\", '\\uf098'),\n    PHOTO(\"fa-photo\", '\\uf03e'),\n    PICTURE_O(\"fa-picture-o\", '\\uf03e'),\n    PIED_PIPER(\"fa-pied-piper\", '\\uf2ae'),\n    PIED_PIPER_ALT(\"fa-pied-piper-alt\", '\\uf1a8'),\n    PIED_PIPER_PP(\"fa-pied-piper-pp\", '\\uf1a7'),\n    PIE_CHART(\"fa-pie-chart\", '\\uf200'),\n    PINTEREST(\"fa-pinterest\", '\\uf0d2'),\n    PINTEREST_P(\"fa-pinterest-p\", '\\uf231'),\n    PINTEREST_SQUARE(\"fa-pinterest-square\", '\\uf0d3'),\n    PLANE(\"fa-plane\", '\\uf072'),\n    PLAY(\"fa-play\", '\\uf04b'),\n    PLAY_CIRCLE(\"fa-play-circle\", '\\uf144'),\n    PLAY_CIRCLE_O(\"fa-play-circle-o\", '\\uf01d'),\n    PLUG(\"fa-plug\", '\\uf1e6'),\n    PLUS(\"fa-plus\", '\\uf067'),\n    PLUS_CIRCLE(\"fa-plus-circle\", '\\uf055'),\n    PLUS_SQUARE(\"fa-plus-square\", '\\uf0fe'),\n    PLUS_SQUARE_O(\"fa-plus-square-o\", '\\uf196'),\n    PODCAST(\"fa-podcast\", '\\uf2ce'),\n    POWER_OFF(\"fa-power-off\", '\\uf011'),\n    PRINT(\"fa-print\", '\\uf02f'),\n    PRODUCT_HUNT(\"fa-product-hunt\", '\\uf288'),\n    PUZZLE_PIECE(\"fa-puzzle-piece\", '\\uf12e'),\n    QQ(\"fa-qq\", '\\uf1d6'),\n    QRCODE(\"fa-qrcode\", '\\uf029'),\n    QUESTION(\"fa-question\", '\\uf128'),\n    QUESTION_CIRCLE(\"fa-question-circle\", '\\uf059'),\n    QUESTION_CIRCLE_O(\"fa-question-circle-o\", '\\uf29c'),\n    QUORA(\"fa-quora\", '\\uf2c4'),\n    QUOTE_LEFT(\"fa-quote-left\", '\\uf10d'),\n    QUOTE_RIGHT(\"fa-quote-right\", '\\uf10e'),\n    RA(\"fa-ra\", '\\uf1d0'),\n    RANDOM(\"fa-random\", '\\uf074'),\n    RAVELRY(\"fa-ravelry\", '\\uf2d9'),\n    REBEL(\"fa-rebel\", '\\uf1d0'),\n    RECYCLE(\"fa-recycle\", '\\uf1b8'),\n    REDDIT(\"fa-reddit\", '\\uf1a1'),\n    REDDIT_ALIEN(\"fa-reddit-alien\", '\\uf281'),\n    REDDIT_SQUARE(\"fa-reddit-square\", '\\uf1a2'),\n    REFRESH(\"fa-refresh\", '\\uf021'),\n    REGISTERED(\"fa-registered\", '\\uf25d'),\n    REMOVE(\"fa-remove\", '\\uf00d'),\n    RENREN(\"fa-renren\", '\\uf18b'),\n    REORDER(\"fa-reorder\", '\\uf0c9'),\n    REPEAT(\"fa-repeat\", '\\uf01e'),\n    REPLY(\"fa-reply\", '\\uf112'),\n    REPLY_ALL(\"fa-reply-all\", '\\uf122'),\n    RESISTANCE(\"fa-resistance\", '\\uf1d0'),\n    RETWEET(\"fa-retweet\", '\\uf079'),\n    RMB(\"fa-rmb\", '\\uf157'),\n    ROAD(\"fa-road\", '\\uf018'),\n    ROCKET(\"fa-rocket\", '\\uf135'),\n    ROTATE_LEFT(\"fa-rotate-left\", '\\uf0e2'),\n    ROTATE_RIGHT(\"fa-rotate-right\", '\\uf01e'),\n    ROUBLE(\"fa-rouble\", '\\uf158'),\n    RSS(\"fa-rss\", '\\uf09e'),\n    RSS_SQUARE(\"fa-rss-square\", '\\uf143'),\n    RUB(\"fa-rub\", '\\uf158'),\n    RUBLE(\"fa-ruble\", '\\uf158'),\n    RUPEE(\"fa-rupee\", '\\uf156'),\n    S15(\"fa-s15\", '\\uf2cd'),\n    SAFARI(\"fa-safari\", '\\uf267'),\n    SAVE(\"fa-save\", '\\uf0c7'),\n    SCISSORS(\"fa-scissors\", '\\uf0c4'),\n    SCRIBD(\"fa-scribd\", '\\uf28a'),\n    SEARCH(\"fa-search\", '\\uf002'),\n    SEARCH_MINUS(\"fa-search-minus\", '\\uf010'),\n    SEARCH_PLUS(\"fa-search-plus\", '\\uf00e'),\n    SELLSY(\"fa-sellsy\", '\\uf213'),\n    SEND(\"fa-send\", '\\uf1d8'),\n    SEND_O(\"fa-send-o\", '\\uf1d9'),\n    SERVER(\"fa-server\", '\\uf233'),\n    SHARE(\"fa-share\", '\\uf064'),\n    SHARE_ALT(\"fa-share-alt\", '\\uf1e0'),\n    SHARE_ALT_SQUARE(\"fa-share-alt-square\", '\\uf1e1'),\n    SHARE_SQUARE(\"fa-share-square\", '\\uf14d'),\n    SHARE_SQUARE_O(\"fa-share-square-o\", '\\uf045'),\n    SHEKEL(\"fa-shekel\", '\\uf20b'),\n    SHEQEL(\"fa-sheqel\", '\\uf20b'),\n    SHIELD(\"fa-shield\", '\\uf132'),\n    SHIP(\"fa-ship\", '\\uf21a'),\n    SHIRTSINBULK(\"fa-shirtsinbulk\", '\\uf214'),\n    SHOPPING_BAG(\"fa-shopping-bag\", '\\uf290'),\n    SHOPPING_BASKET(\"fa-shopping-basket\", '\\uf291'),\n    SHOPPING_CART(\"fa-shopping-cart\", '\\uf07a'),\n    SHOWER(\"fa-shower\", '\\uf2cc'),\n    SIGNAL(\"fa-signal\", '\\uf012'),\n    SIGNING(\"fa-signing\", '\\uf2a7'),\n    SIGN_IN(\"fa-sign-in\", '\\uf090'),\n    SIGN_LANGUAGE(\"fa-sign-language\", '\\uf2a7'),\n    SIGN_OUT(\"fa-sign-out\", '\\uf08b'),\n    SIMPLYBUILT(\"fa-simplybuilt\", '\\uf215'),\n    SITEMAP(\"fa-sitemap\", '\\uf0e8'),\n    SKYATLAS(\"fa-skyatlas\", '\\uf216'),\n    SKYPE(\"fa-skype\", '\\uf17e'),\n    SLACK(\"fa-slack\", '\\uf198'),\n    SLIDERS(\"fa-sliders\", '\\uf1de'),\n    SLIDESHARE(\"fa-slideshare\", '\\uf1e7'),\n    SMILE_O(\"fa-smile-o\", '\\uf118'),\n    SNAPCHAT(\"fa-snapchat\", '\\uf2ab'),\n    SNAPCHAT_GHOST(\"fa-snapchat-ghost\", '\\uf2ac'),\n    SNAPCHAT_SQUARE(\"fa-snapchat-square\", '\\uf2ad'),\n    SNOWFLAKE_O(\"fa-snowflake-o\", '\\uf2dc'),\n    SOCCER_BALL_O(\"fa-soccer-ball-o\", '\\uf1e3'),\n    SORT(\"fa-sort\", '\\uf0dc'),\n    SORT_ALPHA_ASC(\"fa-sort-alpha-asc\", '\\uf15d'),\n    SORT_ALPHA_DESC(\"fa-sort-alpha-desc\", '\\uf15e'),\n    SORT_AMOUNT_ASC(\"fa-sort-amount-asc\", '\\uf160'),\n    SORT_AMOUNT_DESC(\"fa-sort-amount-desc\", '\\uf161'),\n    SORT_ASC(\"fa-sort-asc\", '\\uf0de'),\n    SORT_DESC(\"fa-sort-desc\", '\\uf0dd'),\n    SORT_DOWN(\"fa-sort-down\", '\\uf0dd'),\n    SORT_NUMERIC_ASC(\"fa-sort-numeric-asc\", '\\uf162'),\n    SORT_NUMERIC_DESC(\"fa-sort-numeric-desc\", '\\uf163'),\n    SORT_UP(\"fa-sort-up\", '\\uf0de'),\n    SOUNDCLOUD(\"fa-soundcloud\", '\\uf1be'),\n    SPACE_SHUTTLE(\"fa-space-shuttle\", '\\uf197'),\n    SPINNER(\"fa-spinner\", '\\uf110'),\n    SPOON(\"fa-spoon\", '\\uf1b1'),\n    SPOTIFY(\"fa-spotify\", '\\uf1bc'),\n    SQUARE(\"fa-square\", '\\uf0c8'),\n    SQUARE_O(\"fa-square-o\", '\\uf096'),\n    STACK_EXCHANGE(\"fa-stack-exchange\", '\\uf18d'),\n    STACK_OVERFLOW(\"fa-stack-overflow\", '\\uf16c'),\n    STAR(\"fa-star\", '\\uf005'),\n    STAR_HALF(\"fa-star-half\", '\\uf089'),\n    STAR_HALF_EMPTY(\"fa-star-half-empty\", '\\uf123'),\n    STAR_HALF_FULL(\"fa-star-half-full\", '\\uf123'),\n    STAR_HALF_O(\"fa-star-half-o\", '\\uf123'),\n    STAR_O(\"fa-star-o\", '\\uf006'),\n    STEAM(\"fa-steam\", '\\uf1b6'),\n    STEAM_SQUARE(\"fa-steam-square\", '\\uf1b7'),\n    STEP_BACKWARD(\"fa-step-backward\", '\\uf048'),\n    STEP_FORWARD(\"fa-step-forward\", '\\uf051'),\n    STETHOSCOPE(\"fa-stethoscope\", '\\uf0f1'),\n    STICKY_NOTE(\"fa-sticky-note\", '\\uf249'),\n    STICKY_NOTE_O(\"fa-sticky-note-o\", '\\uf24a'),\n    STOP(\"fa-stop\", '\\uf04d'),\n    STOP_CIRCLE(\"fa-stop-circle\", '\\uf28d'),\n    STOP_CIRCLE_O(\"fa-stop-circle-o\", '\\uf28e'),\n    STREET_VIEW(\"fa-street-view\", '\\uf21d'),\n    STRIKETHROUGH(\"fa-strikethrough\", '\\uf0cc'),\n    STUMBLEUPON(\"fa-stumbleupon\", '\\uf1a4'),\n    STUMBLEUPON_CIRCLE(\"fa-stumbleupon-circle\", '\\uf1a3'),\n    SUBSCRIPT(\"fa-subscript\", '\\uf12c'),\n    SUBWAY(\"fa-subway\", '\\uf239'),\n    SUITCASE(\"fa-suitcase\", '\\uf0f2'),\n    SUN_O(\"fa-sun-o\", '\\uf185'),\n    SUPERPOWERS(\"fa-superpowers\", '\\uf2dd'),\n    SUPERSCRIPT(\"fa-superscript\", '\\uf12b'),\n    SUPPORT(\"fa-support\", '\\uf1cd'),\n    TABLE(\"fa-table\", '\\uf0ce'),\n    TABLET(\"fa-tablet\", '\\uf10a'),\n    TACHOMETER(\"fa-tachometer\", '\\uf0e4'),\n    TAG(\"fa-tag\", '\\uf02b'),\n    TAGS(\"fa-tags\", '\\uf02c'),\n    TASKS(\"fa-tasks\", '\\uf0ae'),\n    TAXI(\"fa-taxi\", '\\uf1ba'),\n    TELEGRAM(\"fa-telegram\", '\\uf2c6'),\n    TELEVISION(\"fa-television\", '\\uf26c'),\n    TENCENT_WEIBO(\"fa-tencent-weibo\", '\\uf1d5'),\n    TERMINAL(\"fa-terminal\", '\\uf120'),\n    TEXT_HEIGHT(\"fa-text-height\", '\\uf034'),\n    TEXT_WIDTH(\"fa-text-width\", '\\uf035'),\n    TH(\"fa-th\", '\\uf00a'),\n    THEMEISLE(\"fa-themeisle\", '\\uf2b2'),\n    THERMOMETER(\"fa-thermometer\", '\\uf2c7'),\n    THERMOMETER_0(\"fa-thermometer-0\", '\\uf2cb'),\n    THERMOMETER_1(\"fa-thermometer-1\", '\\uf2ca'),\n    THERMOMETER_2(\"fa-thermometer-2\", '\\uf2c9'),\n    THERMOMETER_3(\"fa-thermometer-3\", '\\uf2c8'),\n    THERMOMETER_4(\"fa-thermometer-4\", '\\uf2c7'),\n    THERMOMETER_EMPTY(\"fa-thermometer-empty\", '\\uf2cb'),\n    THERMOMETER_FULL(\"fa-thermometer-full\", '\\uf2c7'),\n    THERMOMETER_HALF(\"fa-thermometer-half\", '\\uf2c9'),\n    THERMOMETER_QUARTER(\"fa-thermometer-quarter\", '\\uf2ca'),\n    THERMOMETER_THREE_QUARTERS(\"fa-thermometer-three-quarters\", '\\uf2c8'),\n    THUMBS_DOWN(\"fa-thumbs-down\", '\\uf165'),\n    THUMBS_O_DOWN(\"fa-thumbs-o-down\", '\\uf088'),\n    THUMBS_O_UP(\"fa-thumbs-o-up\", '\\uf087'),\n    THUMBS_UP(\"fa-thumbs-up\", '\\uf164'),\n    THUMB_TACK(\"fa-thumb-tack\", '\\uf08d'),\n    TH_LARGE(\"fa-th-large\", '\\uf009'),\n    TH_LIST(\"fa-th-list\", '\\uf00b'),\n    TICKET(\"fa-ticket\", '\\uf145'),\n    TIMES(\"fa-times\", '\\uf00d'),\n    TIMES_CIRCLE(\"fa-times-circle\", '\\uf057'),\n    TIMES_CIRCLE_O(\"fa-times-circle-o\", '\\uf05c'),\n    TIMES_RECTANGLE(\"fa-times-rectangle:\", '\\uf2d3'),\n    TIMES_RECTANGLE_O(\"fa-times-rectangle-o\", '\\uf2d4'),\n    TINT(\"fa-tint\", '\\uf043'),\n    TOGGLE_DOWN(\"fa-toggle-down\", '\\uf150'),\n    TOGGLE_LEFT(\"fa-toggle-left\", '\\uf191'),\n    TOGGLE_OFF(\"fa-toggle-off\", '\\uf204'),\n    TOGGLE_ON(\"fa-toggle-on\", '\\uf205'),\n    TOGGLE_RIGHT(\"fa-toggle-right\", '\\uf152'),\n    TOGGLE_UP(\"fa-toggle-up\", '\\uf151'),\n    TRADEMARK(\"fa-trademark\", '\\uf25c'),\n    TRAIN(\"fa-train\", '\\uf238'),\n    TRANSGENDER(\"fa-transgender\", '\\uf224'),\n    TRANSGENDER_ALT(\"fa-transgender-alt\", '\\uf225'),\n    TRASH(\"fa-trash\", '\\uf1f8'),\n    TRASH_O(\"fa-trash-o\", '\\uf014'),\n    TREE(\"fa-tree\", '\\uf1bb'),\n    TRELLO(\"fa-trello\", '\\uf181'),\n    TRIPADVISOR(\"fa-tripadvisor\", '\\uf262'),\n    TROPHY(\"fa-trophy\", '\\uf091'),\n    TRUCK(\"fa-truck\", '\\uf0d1'),\n    TRY(\"fa-try\", '\\uf195'),\n    TTY(\"fa-tty\", '\\uf1e4'),\n    TUMBLR(\"fa-tumblr\", '\\uf173'),\n    TUMBLR_SQUARE(\"fa-tumblr-square\", '\\uf174'),\n    TURKISH_LIRA(\"fa-turkish-lira\", '\\uf195'),\n    TV(\"fa-tv\", '\\uf26c'),\n    TWITCH(\"fa-twitch\", '\\uf1e8'),\n    TWITTER(\"fa-twitter\", '\\uf099'),\n    TWITTER_SQUARE(\"fa-twitter-square\", '\\uf081'),\n    UMBRELLA(\"fa-umbrella\", '\\uf0e9'),\n    UNDERLINE(\"fa-underline\", '\\uf0cd'),\n    UNDO(\"fa-undo\", '\\uf0e2'),\n    UNIVERSAL_ACCESS(\"fa-universal-access\", '\\uf29a'),\n    UNIVERSITY(\"fa-university\", '\\uf19c'),\n    UNLINK(\"fa-unlink\", '\\uf127'),\n    UNLOCK(\"fa-unlock\", '\\uf09c'),\n    UNLOCK_ALT(\"fa-unlock-alt\", '\\uf13e'),\n    UNSORTED(\"fa-unsorted\", '\\uf0dc'),\n    UPLOAD(\"fa-upload\", '\\uf093'),\n    USB(\"fa-usb\", '\\uf287'),\n    USD(\"fa-usd\", '\\uf155'),\n    USER(\"fa-user\", '\\uf007'),\n    USERS(\"fa-users\", '\\uf0c0'),\n    USER_CIRCLE(\"fa-user-circle\", '\\uf2bd'),\n    USER_CIRCLE_O(\"fa-user-circle-o\", '\\uf2be'),\n    USER_MD(\"fa-user-md\", '\\uf0f0'),\n    USER_O(\"fa-user-o\", '\\uf2c0'),\n    USER_PLUS(\"fa-user-plus\", '\\uf234'),\n    USER_SECRET(\"fa-user-secret\", '\\uf21b'),\n    USER_TIMES(\"fa-user-times\", '\\uf235'),\n    VCARD(\"fa-vcard\", '\\uf2bb'),\n    VCARD_O(\"fa-vcard-o\", '\\uf2bc'),\n    VENUS(\"fa-venus\", '\\uf221'),\n    VENUS_DOUBLE(\"fa-venus-double\", '\\uf226'),\n    VENUS_MARS(\"fa-venus-mars\", '\\uf228'),\n    VIACOIN(\"fa-viacoin\", '\\uf237'),\n    VIADEO(\"fa-viadeo\", '\\uf2a9'),\n    VIADEO_SQUARE(\"fa-viadeo-square\", '\\uf2aa'),\n    VIDEO_CAMERA(\"fa-video-camera\", '\\uf03d'),\n    VIMEO(\"fa-vimeo\", '\\uf27d'),\n    VIMEO_SQUARE(\"fa-vimeo-square\", '\\uf194'),\n    VINE(\"fa-vine\", '\\uf1ca'),\n    VK(\"fa-vk\", '\\uf189'),\n    VOLUME_CONTROL_PHONE(\"fa-volume-control-phone\", '\\uf2a0'),\n    VOLUME_DOWN(\"fa-volume-down\", '\\uf027'),\n    VOLUME_OFF(\"fa-volume-off\", '\\uf026'),\n    VOLUME_UP(\"fa-volume-up\", '\\uf028'),\n    WARNING(\"fa-warning\", '\\uf071'),\n    WECHAT(\"fa-wechat\", '\\uf1d7'),\n    WEIBO(\"fa-weibo\", '\\uf18a'),\n    WEIXIN(\"fa-weixin\", '\\uf1d7'),\n    WHATSAPP(\"fa-whatsapp\", '\\uf232'),\n    WHEELCHAIR(\"fa-wheelchair\", '\\uf193'),\n    WHEELCHAIR_ALT(\"fa-wheelchair-alt\", '\\uf29b'),\n    WIFI(\"fa-wifi\", '\\uf1eb'),\n    WIKIPEDIA_W(\"fa-wikipedia-w\", '\\uf266'),\n    WINDOWS(\"fa-windows\", '\\uf17a'),\n    WINDOW_CLOSE(\"fa-window-close\", '\\uf2d3'),\n    WINDOW_CLOSE_O(\"fa-window-close-o\", '\\uf2d4'),\n    WINDOW_MAXIMIZE(\"fa-window-maximize\", '\\uf2d0'),\n    WINDOW_MINIMIZE(\"fa-window-minimize\", '\\uf2d1'),\n    WINDOW_RESTORE(\"fa-window-restore\", '\\uf2d2'),\n    WON(\"fa-won\", '\\uf159'),\n    WORDPRESS(\"fa-wordpress\", '\\uf19a'),\n    WPBEGINNER(\"fa-wpbeginner\", '\\uf297'),\n    WPEXPLORER(\"fa-wpexplorer\", '\\uf2de'),\n    WPFORMS(\"fa-wpforms\", '\\uf298'),\n    WRENCH(\"fa-wrench\", '\\uf0ad'),\n    XING(\"fa-xing\", '\\uf168'),\n    XING_SQUARE(\"fa-xing-square\", '\\uf169'),\n    YAHOO(\"fa-yahoo\", '\\uf19e'),\n    YC(\"fa-yc\", '\\uf23b'),\n    YELP(\"fa-yelp\", '\\uf1e9'),\n    YEN(\"fa-yen\", '\\uf157'),\n    YOAST(\"fa-yoast\", '\\uf2b1'),\n    YOUTUBE(\"fa-youtube\", '\\uf167'),\n    YOUTUBE_PLAY(\"fa-youtube-play\", '\\uf16a'),\n    YOUTUBE_SQUARE(\"fa-youtube-square\", '\\uf166'),\n    Y_COMBINATOR(\"fa-y-combinator\", '\\uf23b');\n\n    public static FontAwesome findByDescription(String description) {\n        for (FontAwesome font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    FontAwesome(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fontawesome-pack/src/main/java/org/kordamp/ikonli/fontawesome/FontAwesomeIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FontAwesomeIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fontawesome/4.7.0/fonts/fontawesome-webfont.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"fa-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return FontAwesome.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"FontAwesome\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fontawesome-pack/src/main/java/org/kordamp/ikonli/fontawesome/FontAwesomeIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class FontAwesomeIkonProvider implements IkonProvider<FontAwesome> {\n    @Override\n    public Class<FontAwesome> getIkon() {\n        return FontAwesome.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fontawesome-pack/src/main/resources/META-INF/resources/fontawesome/4.7.0/css/font-awesome.css",
    "content": "/*!\n *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome\n *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n/* FONT PATH\n * -------------------------- */\n@font-face {\n  font-family: 'FontAwesome';\n  src: url('../fonts/fontawesome-webfont.eot?v=4.7.0');\n  src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n.fa {\n  display: inline-block;\n  font: normal normal normal 14px/1 FontAwesome;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n/* makes the font 33% larger relative to the icon container */\n.fa-lg {\n  font-size: 1.33333333em;\n  line-height: 0.75em;\n  vertical-align: -15%;\n}\n.fa-2x {\n  font-size: 2em;\n}\n.fa-3x {\n  font-size: 3em;\n}\n.fa-4x {\n  font-size: 4em;\n}\n.fa-5x {\n  font-size: 5em;\n}\n.fa-fw {\n  width: 1.28571429em;\n  text-align: center;\n}\n.fa-ul {\n  padding-left: 0;\n  margin-left: 2.14285714em;\n  list-style-type: none;\n}\n.fa-ul > li {\n  position: relative;\n}\n.fa-li {\n  position: absolute;\n  left: -2.14285714em;\n  width: 2.14285714em;\n  top: 0.14285714em;\n  text-align: center;\n}\n.fa-li.fa-lg {\n  left: -1.85714286em;\n}\n.fa-border {\n  padding: .2em .25em .15em;\n  border: solid 0.08em #eeeeee;\n  border-radius: .1em;\n}\n.fa-pull-left {\n  float: left;\n}\n.fa-pull-right {\n  float: right;\n}\n.fa.fa-pull-left {\n  margin-right: .3em;\n}\n.fa.fa-pull-right {\n  margin-left: .3em;\n}\n/* Deprecated as of 4.4.0 */\n.pull-right {\n  float: right;\n}\n.pull-left {\n  float: left;\n}\n.fa.pull-left {\n  margin-right: .3em;\n}\n.fa.pull-right {\n  margin-left: .3em;\n}\n.fa-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n  animation: fa-spin 2s infinite linear;\n}\n.fa-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n  animation: fa-spin 1s infinite steps(8);\n}\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n    transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n    transform: rotate(359deg);\n  }\n}\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n    transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n    transform: rotate(359deg);\n  }\n}\n.fa-rotate-90 {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n  -webkit-transform: rotate(90deg);\n  -ms-transform: rotate(90deg);\n  transform: rotate(90deg);\n}\n.fa-rotate-180 {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n  -webkit-transform: rotate(180deg);\n  -ms-transform: rotate(180deg);\n  transform: rotate(180deg);\n}\n.fa-rotate-270 {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n  -webkit-transform: rotate(270deg);\n  -ms-transform: rotate(270deg);\n  transform: rotate(270deg);\n}\n.fa-flip-horizontal {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n  -webkit-transform: scale(-1, 1);\n  -ms-transform: scale(-1, 1);\n  transform: scale(-1, 1);\n}\n.fa-flip-vertical {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n  -webkit-transform: scale(1, -1);\n  -ms-transform: scale(1, -1);\n  transform: scale(1, -1);\n}\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical {\n  filter: none;\n}\n.fa-stack {\n  position: relative;\n  display: inline-block;\n  width: 2em;\n  height: 2em;\n  line-height: 2em;\n  vertical-align: middle;\n}\n.fa-stack-1x,\n.fa-stack-2x {\n  position: absolute;\n  left: 0;\n  width: 100%;\n  text-align: center;\n}\n.fa-stack-1x {\n  line-height: inherit;\n}\n.fa-stack-2x {\n  font-size: 2em;\n}\n.fa-inverse {\n  color: #ffffff;\n}\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\n   readers do not read off random characters that represent icons */\n.fa-glass:before {\n  content: \"\\f000\";\n}\n.fa-music:before {\n  content: \"\\f001\";\n}\n.fa-search:before {\n  content: \"\\f002\";\n}\n.fa-envelope-o:before {\n  content: \"\\f003\";\n}\n.fa-heart:before {\n  content: \"\\f004\";\n}\n.fa-star:before {\n  content: \"\\f005\";\n}\n.fa-star-o:before {\n  content: \"\\f006\";\n}\n.fa-user:before {\n  content: \"\\f007\";\n}\n.fa-film:before {\n  content: \"\\f008\";\n}\n.fa-th-large:before {\n  content: \"\\f009\";\n}\n.fa-th:before {\n  content: \"\\f00a\";\n}\n.fa-th-list:before {\n  content: \"\\f00b\";\n}\n.fa-check:before {\n  content: \"\\f00c\";\n}\n.fa-remove:before,\n.fa-close:before,\n.fa-times:before {\n  content: \"\\f00d\";\n}\n.fa-search-plus:before {\n  content: \"\\f00e\";\n}\n.fa-search-minus:before {\n  content: \"\\f010\";\n}\n.fa-power-off:before {\n  content: \"\\f011\";\n}\n.fa-signal:before {\n  content: \"\\f012\";\n}\n.fa-gear:before,\n.fa-cog:before {\n  content: \"\\f013\";\n}\n.fa-trash-o:before {\n  content: \"\\f014\";\n}\n.fa-home:before {\n  content: \"\\f015\";\n}\n.fa-file-o:before {\n  content: \"\\f016\";\n}\n.fa-clock-o:before {\n  content: \"\\f017\";\n}\n.fa-road:before {\n  content: \"\\f018\";\n}\n.fa-download:before {\n  content: \"\\f019\";\n}\n.fa-arrow-circle-o-down:before {\n  content: \"\\f01a\";\n}\n.fa-arrow-circle-o-up:before {\n  content: \"\\f01b\";\n}\n.fa-inbox:before {\n  content: \"\\f01c\";\n}\n.fa-play-circle-o:before {\n  content: \"\\f01d\";\n}\n.fa-rotate-right:before,\n.fa-repeat:before {\n  content: \"\\f01e\";\n}\n.fa-refresh:before {\n  content: \"\\f021\";\n}\n.fa-list-alt:before {\n  content: \"\\f022\";\n}\n.fa-lock:before {\n  content: \"\\f023\";\n}\n.fa-flag:before {\n  content: \"\\f024\";\n}\n.fa-headphones:before {\n  content: \"\\f025\";\n}\n.fa-volume-off:before {\n  content: \"\\f026\";\n}\n.fa-volume-down:before {\n  content: \"\\f027\";\n}\n.fa-volume-up:before {\n  content: \"\\f028\";\n}\n.fa-qrcode:before {\n  content: \"\\f029\";\n}\n.fa-barcode:before {\n  content: \"\\f02a\";\n}\n.fa-tag:before {\n  content: \"\\f02b\";\n}\n.fa-tags:before {\n  content: \"\\f02c\";\n}\n.fa-book:before {\n  content: \"\\f02d\";\n}\n.fa-bookmark:before {\n  content: \"\\f02e\";\n}\n.fa-print:before {\n  content: \"\\f02f\";\n}\n.fa-camera:before {\n  content: \"\\f030\";\n}\n.fa-font:before {\n  content: \"\\f031\";\n}\n.fa-bold:before {\n  content: \"\\f032\";\n}\n.fa-italic:before {\n  content: \"\\f033\";\n}\n.fa-text-height:before {\n  content: \"\\f034\";\n}\n.fa-text-width:before {\n  content: \"\\f035\";\n}\n.fa-align-left:before {\n  content: \"\\f036\";\n}\n.fa-align-center:before {\n  content: \"\\f037\";\n}\n.fa-align-right:before {\n  content: \"\\f038\";\n}\n.fa-align-justify:before {\n  content: \"\\f039\";\n}\n.fa-list:before {\n  content: \"\\f03a\";\n}\n.fa-dedent:before,\n.fa-outdent:before {\n  content: \"\\f03b\";\n}\n.fa-indent:before {\n  content: \"\\f03c\";\n}\n.fa-video-camera:before {\n  content: \"\\f03d\";\n}\n.fa-photo:before,\n.fa-image:before,\n.fa-picture-o:before {\n  content: \"\\f03e\";\n}\n.fa-pencil:before {\n  content: \"\\f040\";\n}\n.fa-map-marker:before {\n  content: \"\\f041\";\n}\n.fa-adjust:before {\n  content: \"\\f042\";\n}\n.fa-tint:before {\n  content: \"\\f043\";\n}\n.fa-edit:before,\n.fa-pencil-square-o:before {\n  content: \"\\f044\";\n}\n.fa-share-square-o:before {\n  content: \"\\f045\";\n}\n.fa-check-square-o:before {\n  content: \"\\f046\";\n}\n.fa-arrows:before {\n  content: \"\\f047\";\n}\n.fa-step-backward:before {\n  content: \"\\f048\";\n}\n.fa-fast-backward:before {\n  content: \"\\f049\";\n}\n.fa-backward:before {\n  content: \"\\f04a\";\n}\n.fa-play:before {\n  content: \"\\f04b\";\n}\n.fa-pause:before {\n  content: \"\\f04c\";\n}\n.fa-stop:before {\n  content: \"\\f04d\";\n}\n.fa-forward:before {\n  content: \"\\f04e\";\n}\n.fa-fast-forward:before {\n  content: \"\\f050\";\n}\n.fa-step-forward:before {\n  content: \"\\f051\";\n}\n.fa-eject:before {\n  content: \"\\f052\";\n}\n.fa-chevron-left:before {\n  content: \"\\f053\";\n}\n.fa-chevron-right:before {\n  content: \"\\f054\";\n}\n.fa-plus-circle:before {\n  content: \"\\f055\";\n}\n.fa-minus-circle:before {\n  content: \"\\f056\";\n}\n.fa-times-circle:before {\n  content: \"\\f057\";\n}\n.fa-check-circle:before {\n  content: \"\\f058\";\n}\n.fa-question-circle:before {\n  content: \"\\f059\";\n}\n.fa-info-circle:before {\n  content: \"\\f05a\";\n}\n.fa-crosshairs:before {\n  content: \"\\f05b\";\n}\n.fa-times-circle-o:before {\n  content: \"\\f05c\";\n}\n.fa-check-circle-o:before {\n  content: \"\\f05d\";\n}\n.fa-ban:before {\n  content: \"\\f05e\";\n}\n.fa-arrow-left:before {\n  content: \"\\f060\";\n}\n.fa-arrow-right:before {\n  content: \"\\f061\";\n}\n.fa-arrow-up:before {\n  content: \"\\f062\";\n}\n.fa-arrow-down:before {\n  content: \"\\f063\";\n}\n.fa-mail-forward:before,\n.fa-share:before {\n  content: \"\\f064\";\n}\n.fa-expand:before {\n  content: \"\\f065\";\n}\n.fa-compress:before {\n  content: \"\\f066\";\n}\n.fa-plus:before {\n  content: \"\\f067\";\n}\n.fa-minus:before {\n  content: \"\\f068\";\n}\n.fa-asterisk:before {\n  content: \"\\f069\";\n}\n.fa-exclamation-circle:before {\n  content: \"\\f06a\";\n}\n.fa-gift:before {\n  content: \"\\f06b\";\n}\n.fa-leaf:before {\n  content: \"\\f06c\";\n}\n.fa-fire:before {\n  content: \"\\f06d\";\n}\n.fa-eye:before {\n  content: \"\\f06e\";\n}\n.fa-eye-slash:before {\n  content: \"\\f070\";\n}\n.fa-warning:before,\n.fa-exclamation-triangle:before {\n  content: \"\\f071\";\n}\n.fa-plane:before {\n  content: \"\\f072\";\n}\n.fa-calendar:before {\n  content: \"\\f073\";\n}\n.fa-random:before {\n  content: \"\\f074\";\n}\n.fa-comment:before {\n  content: \"\\f075\";\n}\n.fa-magnet:before {\n  content: \"\\f076\";\n}\n.fa-chevron-up:before {\n  content: \"\\f077\";\n}\n.fa-chevron-down:before {\n  content: \"\\f078\";\n}\n.fa-retweet:before {\n  content: \"\\f079\";\n}\n.fa-shopping-cart:before {\n  content: \"\\f07a\";\n}\n.fa-folder:before {\n  content: \"\\f07b\";\n}\n.fa-folder-open:before {\n  content: \"\\f07c\";\n}\n.fa-arrows-v:before {\n  content: \"\\f07d\";\n}\n.fa-arrows-h:before {\n  content: \"\\f07e\";\n}\n.fa-bar-chart-o:before,\n.fa-bar-chart:before {\n  content: \"\\f080\";\n}\n.fa-twitter-square:before {\n  content: \"\\f081\";\n}\n.fa-facebook-square:before {\n  content: \"\\f082\";\n}\n.fa-camera-retro:before {\n  content: \"\\f083\";\n}\n.fa-key:before {\n  content: \"\\f084\";\n}\n.fa-gears:before,\n.fa-cogs:before {\n  content: \"\\f085\";\n}\n.fa-comments:before {\n  content: \"\\f086\";\n}\n.fa-thumbs-o-up:before {\n  content: \"\\f087\";\n}\n.fa-thumbs-o-down:before {\n  content: \"\\f088\";\n}\n.fa-star-half:before {\n  content: \"\\f089\";\n}\n.fa-heart-o:before {\n  content: \"\\f08a\";\n}\n.fa-sign-out:before {\n  content: \"\\f08b\";\n}\n.fa-linkedin-square:before {\n  content: \"\\f08c\";\n}\n.fa-thumb-tack:before {\n  content: \"\\f08d\";\n}\n.fa-external-link:before {\n  content: \"\\f08e\";\n}\n.fa-sign-in:before {\n  content: \"\\f090\";\n}\n.fa-trophy:before {\n  content: \"\\f091\";\n}\n.fa-github-square:before {\n  content: \"\\f092\";\n}\n.fa-upload:before {\n  content: \"\\f093\";\n}\n.fa-lemon-o:before {\n  content: \"\\f094\";\n}\n.fa-phone:before {\n  content: \"\\f095\";\n}\n.fa-square-o:before {\n  content: \"\\f096\";\n}\n.fa-bookmark-o:before {\n  content: \"\\f097\";\n}\n.fa-phone-square:before {\n  content: \"\\f098\";\n}\n.fa-twitter:before {\n  content: \"\\f099\";\n}\n.fa-facebook-f:before,\n.fa-facebook:before {\n  content: \"\\f09a\";\n}\n.fa-github:before {\n  content: \"\\f09b\";\n}\n.fa-unlock:before {\n  content: \"\\f09c\";\n}\n.fa-credit-card:before {\n  content: \"\\f09d\";\n}\n.fa-feed:before,\n.fa-rss:before {\n  content: \"\\f09e\";\n}\n.fa-hdd-o:before {\n  content: \"\\f0a0\";\n}\n.fa-bullhorn:before {\n  content: \"\\f0a1\";\n}\n.fa-bell:before {\n  content: \"\\f0f3\";\n}\n.fa-certificate:before {\n  content: \"\\f0a3\";\n}\n.fa-hand-o-right:before {\n  content: \"\\f0a4\";\n}\n.fa-hand-o-left:before {\n  content: \"\\f0a5\";\n}\n.fa-hand-o-up:before {\n  content: \"\\f0a6\";\n}\n.fa-hand-o-down:before {\n  content: \"\\f0a7\";\n}\n.fa-arrow-circle-left:before {\n  content: \"\\f0a8\";\n}\n.fa-arrow-circle-right:before {\n  content: \"\\f0a9\";\n}\n.fa-arrow-circle-up:before {\n  content: \"\\f0aa\";\n}\n.fa-arrow-circle-down:before {\n  content: \"\\f0ab\";\n}\n.fa-globe:before {\n  content: \"\\f0ac\";\n}\n.fa-wrench:before {\n  content: \"\\f0ad\";\n}\n.fa-tasks:before {\n  content: \"\\f0ae\";\n}\n.fa-filter:before {\n  content: \"\\f0b0\";\n}\n.fa-briefcase:before {\n  content: \"\\f0b1\";\n}\n.fa-arrows-alt:before {\n  content: \"\\f0b2\";\n}\n.fa-group:before,\n.fa-users:before {\n  content: \"\\f0c0\";\n}\n.fa-chain:before,\n.fa-link:before {\n  content: \"\\f0c1\";\n}\n.fa-cloud:before {\n  content: \"\\f0c2\";\n}\n.fa-flask:before {\n  content: \"\\f0c3\";\n}\n.fa-cut:before,\n.fa-scissors:before {\n  content: \"\\f0c4\";\n}\n.fa-copy:before,\n.fa-files-o:before {\n  content: \"\\f0c5\";\n}\n.fa-paperclip:before {\n  content: \"\\f0c6\";\n}\n.fa-save:before,\n.fa-floppy-o:before {\n  content: \"\\f0c7\";\n}\n.fa-square:before {\n  content: \"\\f0c8\";\n}\n.fa-navicon:before,\n.fa-reorder:before,\n.fa-bars:before {\n  content: \"\\f0c9\";\n}\n.fa-list-ul:before {\n  content: \"\\f0ca\";\n}\n.fa-list-ol:before {\n  content: \"\\f0cb\";\n}\n.fa-strikethrough:before {\n  content: \"\\f0cc\";\n}\n.fa-underline:before {\n  content: \"\\f0cd\";\n}\n.fa-table:before {\n  content: \"\\f0ce\";\n}\n.fa-magic:before {\n  content: \"\\f0d0\";\n}\n.fa-truck:before {\n  content: \"\\f0d1\";\n}\n.fa-pinterest:before {\n  content: \"\\f0d2\";\n}\n.fa-pinterest-square:before {\n  content: \"\\f0d3\";\n}\n.fa-google-plus-square:before {\n  content: \"\\f0d4\";\n}\n.fa-google-plus:before {\n  content: \"\\f0d5\";\n}\n.fa-money:before {\n  content: \"\\f0d6\";\n}\n.fa-caret-down:before {\n  content: \"\\f0d7\";\n}\n.fa-caret-up:before {\n  content: \"\\f0d8\";\n}\n.fa-caret-left:before {\n  content: \"\\f0d9\";\n}\n.fa-caret-right:before {\n  content: \"\\f0da\";\n}\n.fa-columns:before {\n  content: \"\\f0db\";\n}\n.fa-unsorted:before,\n.fa-sort:before {\n  content: \"\\f0dc\";\n}\n.fa-sort-down:before,\n.fa-sort-desc:before {\n  content: \"\\f0dd\";\n}\n.fa-sort-up:before,\n.fa-sort-asc:before {\n  content: \"\\f0de\";\n}\n.fa-envelope:before {\n  content: \"\\f0e0\";\n}\n.fa-linkedin:before {\n  content: \"\\f0e1\";\n}\n.fa-rotate-left:before,\n.fa-undo:before {\n  content: \"\\f0e2\";\n}\n.fa-legal:before,\n.fa-gavel:before {\n  content: \"\\f0e3\";\n}\n.fa-dashboard:before,\n.fa-tachometer:before {\n  content: \"\\f0e4\";\n}\n.fa-comment-o:before {\n  content: \"\\f0e5\";\n}\n.fa-comments-o:before {\n  content: \"\\f0e6\";\n}\n.fa-flash:before,\n.fa-bolt:before {\n  content: \"\\f0e7\";\n}\n.fa-sitemap:before {\n  content: \"\\f0e8\";\n}\n.fa-umbrella:before {\n  content: \"\\f0e9\";\n}\n.fa-paste:before,\n.fa-clipboard:before {\n  content: \"\\f0ea\";\n}\n.fa-lightbulb-o:before {\n  content: \"\\f0eb\";\n}\n.fa-exchange:before {\n  content: \"\\f0ec\";\n}\n.fa-cloud-download:before {\n  content: \"\\f0ed\";\n}\n.fa-cloud-upload:before {\n  content: \"\\f0ee\";\n}\n.fa-user-md:before {\n  content: \"\\f0f0\";\n}\n.fa-stethoscope:before {\n  content: \"\\f0f1\";\n}\n.fa-suitcase:before {\n  content: \"\\f0f2\";\n}\n.fa-bell-o:before {\n  content: \"\\f0a2\";\n}\n.fa-coffee:before {\n  content: \"\\f0f4\";\n}\n.fa-cutlery:before {\n  content: \"\\f0f5\";\n}\n.fa-file-text-o:before {\n  content: \"\\f0f6\";\n}\n.fa-building-o:before {\n  content: \"\\f0f7\";\n}\n.fa-hospital-o:before {\n  content: \"\\f0f8\";\n}\n.fa-ambulance:before {\n  content: \"\\f0f9\";\n}\n.fa-medkit:before {\n  content: \"\\f0fa\";\n}\n.fa-fighter-jet:before {\n  content: \"\\f0fb\";\n}\n.fa-beer:before {\n  content: \"\\f0fc\";\n}\n.fa-h-square:before {\n  content: \"\\f0fd\";\n}\n.fa-plus-square:before {\n  content: \"\\f0fe\";\n}\n.fa-angle-double-left:before {\n  content: \"\\f100\";\n}\n.fa-angle-double-right:before {\n  content: \"\\f101\";\n}\n.fa-angle-double-up:before {\n  content: \"\\f102\";\n}\n.fa-angle-double-down:before {\n  content: \"\\f103\";\n}\n.fa-angle-left:before {\n  content: \"\\f104\";\n}\n.fa-angle-right:before {\n  content: \"\\f105\";\n}\n.fa-angle-up:before {\n  content: \"\\f106\";\n}\n.fa-angle-down:before {\n  content: \"\\f107\";\n}\n.fa-desktop:before {\n  content: \"\\f108\";\n}\n.fa-laptop:before {\n  content: \"\\f109\";\n}\n.fa-tablet:before {\n  content: \"\\f10a\";\n}\n.fa-mobile-phone:before,\n.fa-mobile:before {\n  content: \"\\f10b\";\n}\n.fa-circle-o:before {\n  content: \"\\f10c\";\n}\n.fa-quote-left:before {\n  content: \"\\f10d\";\n}\n.fa-quote-right:before {\n  content: \"\\f10e\";\n}\n.fa-spinner:before {\n  content: \"\\f110\";\n}\n.fa-circle:before {\n  content: \"\\f111\";\n}\n.fa-mail-reply:before,\n.fa-reply:before {\n  content: \"\\f112\";\n}\n.fa-github-alt:before {\n  content: \"\\f113\";\n}\n.fa-folder-o:before {\n  content: \"\\f114\";\n}\n.fa-folder-open-o:before {\n  content: \"\\f115\";\n}\n.fa-smile-o:before {\n  content: \"\\f118\";\n}\n.fa-frown-o:before {\n  content: \"\\f119\";\n}\n.fa-meh-o:before {\n  content: \"\\f11a\";\n}\n.fa-gamepad:before {\n  content: \"\\f11b\";\n}\n.fa-keyboard-o:before {\n  content: \"\\f11c\";\n}\n.fa-flag-o:before {\n  content: \"\\f11d\";\n}\n.fa-flag-checkered:before {\n  content: \"\\f11e\";\n}\n.fa-terminal:before {\n  content: \"\\f120\";\n}\n.fa-code:before {\n  content: \"\\f121\";\n}\n.fa-mail-reply-all:before,\n.fa-reply-all:before {\n  content: \"\\f122\";\n}\n.fa-star-half-empty:before,\n.fa-star-half-full:before,\n.fa-star-half-o:before {\n  content: \"\\f123\";\n}\n.fa-location-arrow:before {\n  content: \"\\f124\";\n}\n.fa-crop:before {\n  content: \"\\f125\";\n}\n.fa-code-fork:before {\n  content: \"\\f126\";\n}\n.fa-unlink:before,\n.fa-chain-broken:before {\n  content: \"\\f127\";\n}\n.fa-question:before {\n  content: \"\\f128\";\n}\n.fa-info:before {\n  content: \"\\f129\";\n}\n.fa-exclamation:before {\n  content: \"\\f12a\";\n}\n.fa-superscript:before {\n  content: \"\\f12b\";\n}\n.fa-subscript:before {\n  content: \"\\f12c\";\n}\n.fa-eraser:before {\n  content: \"\\f12d\";\n}\n.fa-puzzle-piece:before {\n  content: \"\\f12e\";\n}\n.fa-microphone:before {\n  content: \"\\f130\";\n}\n.fa-microphone-slash:before {\n  content: \"\\f131\";\n}\n.fa-shield:before {\n  content: \"\\f132\";\n}\n.fa-calendar-o:before {\n  content: \"\\f133\";\n}\n.fa-fire-extinguisher:before {\n  content: \"\\f134\";\n}\n.fa-rocket:before {\n  content: \"\\f135\";\n}\n.fa-maxcdn:before {\n  content: \"\\f136\";\n}\n.fa-chevron-circle-left:before {\n  content: \"\\f137\";\n}\n.fa-chevron-circle-right:before {\n  content: \"\\f138\";\n}\n.fa-chevron-circle-up:before {\n  content: \"\\f139\";\n}\n.fa-chevron-circle-down:before {\n  content: \"\\f13a\";\n}\n.fa-html5:before {\n  content: \"\\f13b\";\n}\n.fa-css3:before {\n  content: \"\\f13c\";\n}\n.fa-anchor:before {\n  content: \"\\f13d\";\n}\n.fa-unlock-alt:before {\n  content: \"\\f13e\";\n}\n.fa-bullseye:before {\n  content: \"\\f140\";\n}\n.fa-ellipsis-h:before {\n  content: \"\\f141\";\n}\n.fa-ellipsis-v:before {\n  content: \"\\f142\";\n}\n.fa-rss-square:before {\n  content: \"\\f143\";\n}\n.fa-play-circle:before {\n  content: \"\\f144\";\n}\n.fa-ticket:before {\n  content: \"\\f145\";\n}\n.fa-minus-square:before {\n  content: \"\\f146\";\n}\n.fa-minus-square-o:before {\n  content: \"\\f147\";\n}\n.fa-level-up:before {\n  content: \"\\f148\";\n}\n.fa-level-down:before {\n  content: \"\\f149\";\n}\n.fa-check-square:before {\n  content: \"\\f14a\";\n}\n.fa-pencil-square:before {\n  content: \"\\f14b\";\n}\n.fa-external-link-square:before {\n  content: \"\\f14c\";\n}\n.fa-share-square:before {\n  content: \"\\f14d\";\n}\n.fa-compass:before {\n  content: \"\\f14e\";\n}\n.fa-toggle-down:before,\n.fa-caret-square-o-down:before {\n  content: \"\\f150\";\n}\n.fa-toggle-up:before,\n.fa-caret-square-o-up:before {\n  content: \"\\f151\";\n}\n.fa-toggle-right:before,\n.fa-caret-square-o-right:before {\n  content: \"\\f152\";\n}\n.fa-euro:before,\n.fa-eur:before {\n  content: \"\\f153\";\n}\n.fa-gbp:before {\n  content: \"\\f154\";\n}\n.fa-dollar:before,\n.fa-usd:before {\n  content: \"\\f155\";\n}\n.fa-rupee:before,\n.fa-inr:before {\n  content: \"\\f156\";\n}\n.fa-cny:before,\n.fa-rmb:before,\n.fa-yen:before,\n.fa-jpy:before {\n  content: \"\\f157\";\n}\n.fa-ruble:before,\n.fa-rouble:before,\n.fa-rub:before {\n  content: \"\\f158\";\n}\n.fa-won:before,\n.fa-krw:before {\n  content: \"\\f159\";\n}\n.fa-bitcoin:before,\n.fa-btc:before {\n  content: \"\\f15a\";\n}\n.fa-file:before {\n  content: \"\\f15b\";\n}\n.fa-file-text:before {\n  content: \"\\f15c\";\n}\n.fa-sort-alpha-asc:before {\n  content: \"\\f15d\";\n}\n.fa-sort-alpha-desc:before {\n  content: \"\\f15e\";\n}\n.fa-sort-amount-asc:before {\n  content: \"\\f160\";\n}\n.fa-sort-amount-desc:before {\n  content: \"\\f161\";\n}\n.fa-sort-numeric-asc:before {\n  content: \"\\f162\";\n}\n.fa-sort-numeric-desc:before {\n  content: \"\\f163\";\n}\n.fa-thumbs-up:before {\n  content: \"\\f164\";\n}\n.fa-thumbs-down:before {\n  content: \"\\f165\";\n}\n.fa-youtube-square:before {\n  content: \"\\f166\";\n}\n.fa-youtube:before {\n  content: \"\\f167\";\n}\n.fa-xing:before {\n  content: \"\\f168\";\n}\n.fa-xing-square:before {\n  content: \"\\f169\";\n}\n.fa-youtube-play:before {\n  content: \"\\f16a\";\n}\n.fa-dropbox:before {\n  content: \"\\f16b\";\n}\n.fa-stack-overflow:before {\n  content: \"\\f16c\";\n}\n.fa-instagram:before {\n  content: \"\\f16d\";\n}\n.fa-flickr:before {\n  content: \"\\f16e\";\n}\n.fa-adn:before {\n  content: \"\\f170\";\n}\n.fa-bitbucket:before {\n  content: \"\\f171\";\n}\n.fa-bitbucket-square:before {\n  content: \"\\f172\";\n}\n.fa-tumblr:before {\n  content: \"\\f173\";\n}\n.fa-tumblr-square:before {\n  content: \"\\f174\";\n}\n.fa-long-arrow-down:before {\n  content: \"\\f175\";\n}\n.fa-long-arrow-up:before {\n  content: \"\\f176\";\n}\n.fa-long-arrow-left:before {\n  content: \"\\f177\";\n}\n.fa-long-arrow-right:before {\n  content: \"\\f178\";\n}\n.fa-apple:before {\n  content: \"\\f179\";\n}\n.fa-windows:before {\n  content: \"\\f17a\";\n}\n.fa-android:before {\n  content: \"\\f17b\";\n}\n.fa-linux:before {\n  content: \"\\f17c\";\n}\n.fa-dribbble:before {\n  content: \"\\f17d\";\n}\n.fa-skype:before {\n  content: \"\\f17e\";\n}\n.fa-foursquare:before {\n  content: \"\\f180\";\n}\n.fa-trello:before {\n  content: \"\\f181\";\n}\n.fa-female:before {\n  content: \"\\f182\";\n}\n.fa-male:before {\n  content: \"\\f183\";\n}\n.fa-gittip:before,\n.fa-gratipay:before {\n  content: \"\\f184\";\n}\n.fa-sun-o:before {\n  content: \"\\f185\";\n}\n.fa-moon-o:before {\n  content: \"\\f186\";\n}\n.fa-archive:before {\n  content: \"\\f187\";\n}\n.fa-bug:before {\n  content: \"\\f188\";\n}\n.fa-vk:before {\n  content: \"\\f189\";\n}\n.fa-weibo:before {\n  content: \"\\f18a\";\n}\n.fa-renren:before {\n  content: \"\\f18b\";\n}\n.fa-pagelines:before {\n  content: \"\\f18c\";\n}\n.fa-stack-exchange:before {\n  content: \"\\f18d\";\n}\n.fa-arrow-circle-o-right:before {\n  content: \"\\f18e\";\n}\n.fa-arrow-circle-o-left:before {\n  content: \"\\f190\";\n}\n.fa-toggle-left:before,\n.fa-caret-square-o-left:before {\n  content: \"\\f191\";\n}\n.fa-dot-circle-o:before {\n  content: \"\\f192\";\n}\n.fa-wheelchair:before {\n  content: \"\\f193\";\n}\n.fa-vimeo-square:before {\n  content: \"\\f194\";\n}\n.fa-turkish-lira:before,\n.fa-try:before {\n  content: \"\\f195\";\n}\n.fa-plus-square-o:before {\n  content: \"\\f196\";\n}\n.fa-space-shuttle:before {\n  content: \"\\f197\";\n}\n.fa-slack:before {\n  content: \"\\f198\";\n}\n.fa-envelope-square:before {\n  content: \"\\f199\";\n}\n.fa-wordpress:before {\n  content: \"\\f19a\";\n}\n.fa-openid:before {\n  content: \"\\f19b\";\n}\n.fa-institution:before,\n.fa-bank:before,\n.fa-university:before {\n  content: \"\\f19c\";\n}\n.fa-mortar-board:before,\n.fa-graduation-cap:before {\n  content: \"\\f19d\";\n}\n.fa-yahoo:before {\n  content: \"\\f19e\";\n}\n.fa-google:before {\n  content: \"\\f1a0\";\n}\n.fa-reddit:before {\n  content: \"\\f1a1\";\n}\n.fa-reddit-square:before {\n  content: \"\\f1a2\";\n}\n.fa-stumbleupon-circle:before {\n  content: \"\\f1a3\";\n}\n.fa-stumbleupon:before {\n  content: \"\\f1a4\";\n}\n.fa-delicious:before {\n  content: \"\\f1a5\";\n}\n.fa-digg:before {\n  content: \"\\f1a6\";\n}\n.fa-pied-piper-pp:before {\n  content: \"\\f1a7\";\n}\n.fa-pied-piper-alt:before {\n  content: \"\\f1a8\";\n}\n.fa-drupal:before {\n  content: \"\\f1a9\";\n}\n.fa-joomla:before {\n  content: \"\\f1aa\";\n}\n.fa-language:before {\n  content: \"\\f1ab\";\n}\n.fa-fax:before {\n  content: \"\\f1ac\";\n}\n.fa-building:before {\n  content: \"\\f1ad\";\n}\n.fa-child:before {\n  content: \"\\f1ae\";\n}\n.fa-paw:before {\n  content: \"\\f1b0\";\n}\n.fa-spoon:before {\n  content: \"\\f1b1\";\n}\n.fa-cube:before {\n  content: \"\\f1b2\";\n}\n.fa-cubes:before {\n  content: \"\\f1b3\";\n}\n.fa-behance:before {\n  content: \"\\f1b4\";\n}\n.fa-behance-square:before {\n  content: \"\\f1b5\";\n}\n.fa-steam:before {\n  content: \"\\f1b6\";\n}\n.fa-steam-square:before {\n  content: \"\\f1b7\";\n}\n.fa-recycle:before {\n  content: \"\\f1b8\";\n}\n.fa-automobile:before,\n.fa-car:before {\n  content: \"\\f1b9\";\n}\n.fa-cab:before,\n.fa-taxi:before {\n  content: \"\\f1ba\";\n}\n.fa-tree:before {\n  content: \"\\f1bb\";\n}\n.fa-spotify:before {\n  content: \"\\f1bc\";\n}\n.fa-deviantart:before {\n  content: \"\\f1bd\";\n}\n.fa-soundcloud:before {\n  content: \"\\f1be\";\n}\n.fa-database:before {\n  content: \"\\f1c0\";\n}\n.fa-file-pdf-o:before {\n  content: \"\\f1c1\";\n}\n.fa-file-word-o:before {\n  content: \"\\f1c2\";\n}\n.fa-file-excel-o:before {\n  content: \"\\f1c3\";\n}\n.fa-file-powerpoint-o:before {\n  content: \"\\f1c4\";\n}\n.fa-file-photo-o:before,\n.fa-file-picture-o:before,\n.fa-file-image-o:before {\n  content: \"\\f1c5\";\n}\n.fa-file-zip-o:before,\n.fa-file-archive-o:before {\n  content: \"\\f1c6\";\n}\n.fa-file-sound-o:before,\n.fa-file-audio-o:before {\n  content: \"\\f1c7\";\n}\n.fa-file-movie-o:before,\n.fa-file-video-o:before {\n  content: \"\\f1c8\";\n}\n.fa-file-code-o:before {\n  content: \"\\f1c9\";\n}\n.fa-vine:before {\n  content: \"\\f1ca\";\n}\n.fa-codepen:before {\n  content: \"\\f1cb\";\n}\n.fa-jsfiddle:before {\n  content: \"\\f1cc\";\n}\n.fa-life-bouy:before,\n.fa-life-buoy:before,\n.fa-life-saver:before,\n.fa-support:before,\n.fa-life-ring:before {\n  content: \"\\f1cd\";\n}\n.fa-circle-o-notch:before {\n  content: \"\\f1ce\";\n}\n.fa-ra:before,\n.fa-resistance:before,\n.fa-rebel:before {\n  content: \"\\f1d0\";\n}\n.fa-ge:before,\n.fa-empire:before {\n  content: \"\\f1d1\";\n}\n.fa-git-square:before {\n  content: \"\\f1d2\";\n}\n.fa-git:before {\n  content: \"\\f1d3\";\n}\n.fa-y-combinator-square:before,\n.fa-yc-square:before,\n.fa-hacker-news:before {\n  content: \"\\f1d4\";\n}\n.fa-tencent-weibo:before {\n  content: \"\\f1d5\";\n}\n.fa-qq:before {\n  content: \"\\f1d6\";\n}\n.fa-wechat:before,\n.fa-weixin:before {\n  content: \"\\f1d7\";\n}\n.fa-send:before,\n.fa-paper-plane:before {\n  content: \"\\f1d8\";\n}\n.fa-send-o:before,\n.fa-paper-plane-o:before {\n  content: \"\\f1d9\";\n}\n.fa-history:before {\n  content: \"\\f1da\";\n}\n.fa-circle-thin:before {\n  content: \"\\f1db\";\n}\n.fa-header:before {\n  content: \"\\f1dc\";\n}\n.fa-paragraph:before {\n  content: \"\\f1dd\";\n}\n.fa-sliders:before {\n  content: \"\\f1de\";\n}\n.fa-share-alt:before {\n  content: \"\\f1e0\";\n}\n.fa-share-alt-square:before {\n  content: \"\\f1e1\";\n}\n.fa-bomb:before {\n  content: \"\\f1e2\";\n}\n.fa-soccer-ball-o:before,\n.fa-futbol-o:before {\n  content: \"\\f1e3\";\n}\n.fa-tty:before {\n  content: \"\\f1e4\";\n}\n.fa-binoculars:before {\n  content: \"\\f1e5\";\n}\n.fa-plug:before {\n  content: \"\\f1e6\";\n}\n.fa-slideshare:before {\n  content: \"\\f1e7\";\n}\n.fa-twitch:before {\n  content: \"\\f1e8\";\n}\n.fa-yelp:before {\n  content: \"\\f1e9\";\n}\n.fa-newspaper-o:before {\n  content: \"\\f1ea\";\n}\n.fa-wifi:before {\n  content: \"\\f1eb\";\n}\n.fa-calculator:before {\n  content: \"\\f1ec\";\n}\n.fa-paypal:before {\n  content: \"\\f1ed\";\n}\n.fa-google-wallet:before {\n  content: \"\\f1ee\";\n}\n.fa-cc-visa:before {\n  content: \"\\f1f0\";\n}\n.fa-cc-mastercard:before {\n  content: \"\\f1f1\";\n}\n.fa-cc-discover:before {\n  content: \"\\f1f2\";\n}\n.fa-cc-amex:before {\n  content: \"\\f1f3\";\n}\n.fa-cc-paypal:before {\n  content: \"\\f1f4\";\n}\n.fa-cc-stripe:before {\n  content: \"\\f1f5\";\n}\n.fa-bell-slash:before {\n  content: \"\\f1f6\";\n}\n.fa-bell-slash-o:before {\n  content: \"\\f1f7\";\n}\n.fa-trash:before {\n  content: \"\\f1f8\";\n}\n.fa-copyright:before {\n  content: \"\\f1f9\";\n}\n.fa-at:before {\n  content: \"\\f1fa\";\n}\n.fa-eyedropper:before {\n  content: \"\\f1fb\";\n}\n.fa-paint-brush:before {\n  content: \"\\f1fc\";\n}\n.fa-birthday-cake:before {\n  content: \"\\f1fd\";\n}\n.fa-area-chart:before {\n  content: \"\\f1fe\";\n}\n.fa-pie-chart:before {\n  content: \"\\f200\";\n}\n.fa-line-chart:before {\n  content: \"\\f201\";\n}\n.fa-lastfm:before {\n  content: \"\\f202\";\n}\n.fa-lastfm-square:before {\n  content: \"\\f203\";\n}\n.fa-toggle-off:before {\n  content: \"\\f204\";\n}\n.fa-toggle-on:before {\n  content: \"\\f205\";\n}\n.fa-bicycle:before {\n  content: \"\\f206\";\n}\n.fa-bus:before {\n  content: \"\\f207\";\n}\n.fa-ioxhost:before {\n  content: \"\\f208\";\n}\n.fa-angellist:before {\n  content: \"\\f209\";\n}\n.fa-cc:before {\n  content: \"\\f20a\";\n}\n.fa-shekel:before,\n.fa-sheqel:before,\n.fa-ils:before {\n  content: \"\\f20b\";\n}\n.fa-meanpath:before {\n  content: \"\\f20c\";\n}\n.fa-buysellads:before {\n  content: \"\\f20d\";\n}\n.fa-connectdevelop:before {\n  content: \"\\f20e\";\n}\n.fa-dashcube:before {\n  content: \"\\f210\";\n}\n.fa-forumbee:before {\n  content: \"\\f211\";\n}\n.fa-leanpub:before {\n  content: \"\\f212\";\n}\n.fa-sellsy:before {\n  content: \"\\f213\";\n}\n.fa-shirtsinbulk:before {\n  content: \"\\f214\";\n}\n.fa-simplybuilt:before {\n  content: \"\\f215\";\n}\n.fa-skyatlas:before {\n  content: \"\\f216\";\n}\n.fa-cart-plus:before {\n  content: \"\\f217\";\n}\n.fa-cart-arrow-down:before {\n  content: \"\\f218\";\n}\n.fa-diamond:before {\n  content: \"\\f219\";\n}\n.fa-ship:before {\n  content: \"\\f21a\";\n}\n.fa-user-secret:before {\n  content: \"\\f21b\";\n}\n.fa-motorcycle:before {\n  content: \"\\f21c\";\n}\n.fa-street-view:before {\n  content: \"\\f21d\";\n}\n.fa-heartbeat:before {\n  content: \"\\f21e\";\n}\n.fa-venus:before {\n  content: \"\\f221\";\n}\n.fa-mars:before {\n  content: \"\\f222\";\n}\n.fa-mercury:before {\n  content: \"\\f223\";\n}\n.fa-intersex:before,\n.fa-transgender:before {\n  content: \"\\f224\";\n}\n.fa-transgender-alt:before {\n  content: \"\\f225\";\n}\n.fa-venus-double:before {\n  content: \"\\f226\";\n}\n.fa-mars-double:before {\n  content: \"\\f227\";\n}\n.fa-venus-mars:before {\n  content: \"\\f228\";\n}\n.fa-mars-stroke:before {\n  content: \"\\f229\";\n}\n.fa-mars-stroke-v:before {\n  content: \"\\f22a\";\n}\n.fa-mars-stroke-h:before {\n  content: \"\\f22b\";\n}\n.fa-neuter:before {\n  content: \"\\f22c\";\n}\n.fa-genderless:before {\n  content: \"\\f22d\";\n}\n.fa-facebook-official:before {\n  content: \"\\f230\";\n}\n.fa-pinterest-p:before {\n  content: \"\\f231\";\n}\n.fa-whatsapp:before {\n  content: \"\\f232\";\n}\n.fa-server:before {\n  content: \"\\f233\";\n}\n.fa-user-plus:before {\n  content: \"\\f234\";\n}\n.fa-user-times:before {\n  content: \"\\f235\";\n}\n.fa-hotel:before,\n.fa-bed:before {\n  content: \"\\f236\";\n}\n.fa-viacoin:before {\n  content: \"\\f237\";\n}\n.fa-train:before {\n  content: \"\\f238\";\n}\n.fa-subway:before {\n  content: \"\\f239\";\n}\n.fa-medium:before {\n  content: \"\\f23a\";\n}\n.fa-yc:before,\n.fa-y-combinator:before {\n  content: \"\\f23b\";\n}\n.fa-optin-monster:before {\n  content: \"\\f23c\";\n}\n.fa-opencart:before {\n  content: \"\\f23d\";\n}\n.fa-expeditedssl:before {\n  content: \"\\f23e\";\n}\n.fa-battery-4:before,\n.fa-battery:before,\n.fa-battery-full:before {\n  content: \"\\f240\";\n}\n.fa-battery-3:before,\n.fa-battery-three-quarters:before {\n  content: \"\\f241\";\n}\n.fa-battery-2:before,\n.fa-battery-half:before {\n  content: \"\\f242\";\n}\n.fa-battery-1:before,\n.fa-battery-quarter:before {\n  content: \"\\f243\";\n}\n.fa-battery-0:before,\n.fa-battery-empty:before {\n  content: \"\\f244\";\n}\n.fa-mouse-pointer:before {\n  content: \"\\f245\";\n}\n.fa-i-cursor:before {\n  content: \"\\f246\";\n}\n.fa-object-group:before {\n  content: \"\\f247\";\n}\n.fa-object-ungroup:before {\n  content: \"\\f248\";\n}\n.fa-sticky-note:before {\n  content: \"\\f249\";\n}\n.fa-sticky-note-o:before {\n  content: \"\\f24a\";\n}\n.fa-cc-jcb:before {\n  content: \"\\f24b\";\n}\n.fa-cc-diners-club:before {\n  content: \"\\f24c\";\n}\n.fa-clone:before {\n  content: \"\\f24d\";\n}\n.fa-balance-scale:before {\n  content: \"\\f24e\";\n}\n.fa-hourglass-o:before {\n  content: \"\\f250\";\n}\n.fa-hourglass-1:before,\n.fa-hourglass-start:before {\n  content: \"\\f251\";\n}\n.fa-hourglass-2:before,\n.fa-hourglass-half:before {\n  content: \"\\f252\";\n}\n.fa-hourglass-3:before,\n.fa-hourglass-end:before {\n  content: \"\\f253\";\n}\n.fa-hourglass:before {\n  content: \"\\f254\";\n}\n.fa-hand-grab-o:before,\n.fa-hand-rock-o:before {\n  content: \"\\f255\";\n}\n.fa-hand-stop-o:before,\n.fa-hand-paper-o:before {\n  content: \"\\f256\";\n}\n.fa-hand-scissors-o:before {\n  content: \"\\f257\";\n}\n.fa-hand-lizard-o:before {\n  content: \"\\f258\";\n}\n.fa-hand-spock-o:before {\n  content: \"\\f259\";\n}\n.fa-hand-pointer-o:before {\n  content: \"\\f25a\";\n}\n.fa-hand-peace-o:before {\n  content: \"\\f25b\";\n}\n.fa-trademark:before {\n  content: \"\\f25c\";\n}\n.fa-registered:before {\n  content: \"\\f25d\";\n}\n.fa-creative-commons:before {\n  content: \"\\f25e\";\n}\n.fa-gg:before {\n  content: \"\\f260\";\n}\n.fa-gg-circle:before {\n  content: \"\\f261\";\n}\n.fa-tripadvisor:before {\n  content: \"\\f262\";\n}\n.fa-odnoklassniki:before {\n  content: \"\\f263\";\n}\n.fa-odnoklassniki-square:before {\n  content: \"\\f264\";\n}\n.fa-get-pocket:before {\n  content: \"\\f265\";\n}\n.fa-wikipedia-w:before {\n  content: \"\\f266\";\n}\n.fa-safari:before {\n  content: \"\\f267\";\n}\n.fa-chrome:before {\n  content: \"\\f268\";\n}\n.fa-firefox:before {\n  content: \"\\f269\";\n}\n.fa-opera:before {\n  content: \"\\f26a\";\n}\n.fa-internet-explorer:before {\n  content: \"\\f26b\";\n}\n.fa-tv:before,\n.fa-television:before {\n  content: \"\\f26c\";\n}\n.fa-contao:before {\n  content: \"\\f26d\";\n}\n.fa-500px:before {\n  content: \"\\f26e\";\n}\n.fa-amazon:before {\n  content: \"\\f270\";\n}\n.fa-calendar-plus-o:before {\n  content: \"\\f271\";\n}\n.fa-calendar-minus-o:before {\n  content: \"\\f272\";\n}\n.fa-calendar-times-o:before {\n  content: \"\\f273\";\n}\n.fa-calendar-check-o:before {\n  content: \"\\f274\";\n}\n.fa-industry:before {\n  content: \"\\f275\";\n}\n.fa-map-pin:before {\n  content: \"\\f276\";\n}\n.fa-map-signs:before {\n  content: \"\\f277\";\n}\n.fa-map-o:before {\n  content: \"\\f278\";\n}\n.fa-map:before {\n  content: \"\\f279\";\n}\n.fa-commenting:before {\n  content: \"\\f27a\";\n}\n.fa-commenting-o:before {\n  content: \"\\f27b\";\n}\n.fa-houzz:before {\n  content: \"\\f27c\";\n}\n.fa-vimeo:before {\n  content: \"\\f27d\";\n}\n.fa-black-tie:before {\n  content: \"\\f27e\";\n}\n.fa-fonticons:before {\n  content: \"\\f280\";\n}\n.fa-reddit-alien:before {\n  content: \"\\f281\";\n}\n.fa-edge:before {\n  content: \"\\f282\";\n}\n.fa-credit-card-alt:before {\n  content: \"\\f283\";\n}\n.fa-codiepie:before {\n  content: \"\\f284\";\n}\n.fa-modx:before {\n  content: \"\\f285\";\n}\n.fa-fort-awesome:before {\n  content: \"\\f286\";\n}\n.fa-usb:before {\n  content: \"\\f287\";\n}\n.fa-product-hunt:before {\n  content: \"\\f288\";\n}\n.fa-mixcloud:before {\n  content: \"\\f289\";\n}\n.fa-scribd:before {\n  content: \"\\f28a\";\n}\n.fa-pause-circle:before {\n  content: \"\\f28b\";\n}\n.fa-pause-circle-o:before {\n  content: \"\\f28c\";\n}\n.fa-stop-circle:before {\n  content: \"\\f28d\";\n}\n.fa-stop-circle-o:before {\n  content: \"\\f28e\";\n}\n.fa-shopping-bag:before {\n  content: \"\\f290\";\n}\n.fa-shopping-basket:before {\n  content: \"\\f291\";\n}\n.fa-hashtag:before {\n  content: \"\\f292\";\n}\n.fa-bluetooth:before {\n  content: \"\\f293\";\n}\n.fa-bluetooth-b:before {\n  content: \"\\f294\";\n}\n.fa-percent:before {\n  content: \"\\f295\";\n}\n.fa-gitlab:before {\n  content: \"\\f296\";\n}\n.fa-wpbeginner:before {\n  content: \"\\f297\";\n}\n.fa-wpforms:before {\n  content: \"\\f298\";\n}\n.fa-envira:before {\n  content: \"\\f299\";\n}\n.fa-universal-access:before {\n  content: \"\\f29a\";\n}\n.fa-wheelchair-alt:before {\n  content: \"\\f29b\";\n}\n.fa-question-circle-o:before {\n  content: \"\\f29c\";\n}\n.fa-blind:before {\n  content: \"\\f29d\";\n}\n.fa-audio-description:before {\n  content: \"\\f29e\";\n}\n.fa-volume-control-phone:before {\n  content: \"\\f2a0\";\n}\n.fa-braille:before {\n  content: \"\\f2a1\";\n}\n.fa-assistive-listening-systems:before {\n  content: \"\\f2a2\";\n}\n.fa-asl-interpreting:before,\n.fa-american-sign-language-interpreting:before {\n  content: \"\\f2a3\";\n}\n.fa-deafness:before,\n.fa-hard-of-hearing:before,\n.fa-deaf:before {\n  content: \"\\f2a4\";\n}\n.fa-glide:before {\n  content: \"\\f2a5\";\n}\n.fa-glide-g:before {\n  content: \"\\f2a6\";\n}\n.fa-signing:before,\n.fa-sign-language:before {\n  content: \"\\f2a7\";\n}\n.fa-low-vision:before {\n  content: \"\\f2a8\";\n}\n.fa-viadeo:before {\n  content: \"\\f2a9\";\n}\n.fa-viadeo-square:before {\n  content: \"\\f2aa\";\n}\n.fa-snapchat:before {\n  content: \"\\f2ab\";\n}\n.fa-snapchat-ghost:before {\n  content: \"\\f2ac\";\n}\n.fa-snapchat-square:before {\n  content: \"\\f2ad\";\n}\n.fa-pied-piper:before {\n  content: \"\\f2ae\";\n}\n.fa-first-order:before {\n  content: \"\\f2b0\";\n}\n.fa-yoast:before {\n  content: \"\\f2b1\";\n}\n.fa-themeisle:before {\n  content: \"\\f2b2\";\n}\n.fa-google-plus-circle:before,\n.fa-google-plus-official:before {\n  content: \"\\f2b3\";\n}\n.fa-fa:before,\n.fa-font-awesome:before {\n  content: \"\\f2b4\";\n}\n.fa-handshake-o:before {\n  content: \"\\f2b5\";\n}\n.fa-envelope-open:before {\n  content: \"\\f2b6\";\n}\n.fa-envelope-open-o:before {\n  content: \"\\f2b7\";\n}\n.fa-linode:before {\n  content: \"\\f2b8\";\n}\n.fa-address-book:before {\n  content: \"\\f2b9\";\n}\n.fa-address-book-o:before {\n  content: \"\\f2ba\";\n}\n.fa-vcard:before,\n.fa-address-card:before {\n  content: \"\\f2bb\";\n}\n.fa-vcard-o:before,\n.fa-address-card-o:before {\n  content: \"\\f2bc\";\n}\n.fa-user-circle:before {\n  content: \"\\f2bd\";\n}\n.fa-user-circle-o:before {\n  content: \"\\f2be\";\n}\n.fa-user-o:before {\n  content: \"\\f2c0\";\n}\n.fa-id-badge:before {\n  content: \"\\f2c1\";\n}\n.fa-drivers-license:before,\n.fa-id-card:before {\n  content: \"\\f2c2\";\n}\n.fa-drivers-license-o:before,\n.fa-id-card-o:before {\n  content: \"\\f2c3\";\n}\n.fa-quora:before {\n  content: \"\\f2c4\";\n}\n.fa-free-code-camp:before {\n  content: \"\\f2c5\";\n}\n.fa-telegram:before {\n  content: \"\\f2c6\";\n}\n.fa-thermometer-4:before,\n.fa-thermometer:before,\n.fa-thermometer-full:before {\n  content: \"\\f2c7\";\n}\n.fa-thermometer-3:before,\n.fa-thermometer-three-quarters:before {\n  content: \"\\f2c8\";\n}\n.fa-thermometer-2:before,\n.fa-thermometer-half:before {\n  content: \"\\f2c9\";\n}\n.fa-thermometer-1:before,\n.fa-thermometer-quarter:before {\n  content: \"\\f2ca\";\n}\n.fa-thermometer-0:before,\n.fa-thermometer-empty:before {\n  content: \"\\f2cb\";\n}\n.fa-shower:before {\n  content: \"\\f2cc\";\n}\n.fa-bathtub:before,\n.fa-s15:before,\n.fa-bath:before {\n  content: \"\\f2cd\";\n}\n.fa-podcast:before {\n  content: \"\\f2ce\";\n}\n.fa-window-maximize:before {\n  content: \"\\f2d0\";\n}\n.fa-window-minimize:before {\n  content: \"\\f2d1\";\n}\n.fa-window-restore:before {\n  content: \"\\f2d2\";\n}\n.fa-times-rectangle:before,\n.fa-window-close:before {\n  content: \"\\f2d3\";\n}\n.fa-times-rectangle-o:before,\n.fa-window-close-o:before {\n  content: \"\\f2d4\";\n}\n.fa-bandcamp:before {\n  content: \"\\f2d5\";\n}\n.fa-grav:before {\n  content: \"\\f2d6\";\n}\n.fa-etsy:before {\n  content: \"\\f2d7\";\n}\n.fa-imdb:before {\n  content: \"\\f2d8\";\n}\n.fa-ravelry:before {\n  content: \"\\f2d9\";\n}\n.fa-eercast:before {\n  content: \"\\f2da\";\n}\n.fa-microchip:before {\n  content: \"\\f2db\";\n}\n.fa-snowflake-o:before {\n  content: \"\\f2dc\";\n}\n.fa-superpowers:before {\n  content: \"\\f2dd\";\n}\n.fa-wpexplorer:before {\n  content: \"\\f2de\";\n}\n.fa-meetup:before {\n  content: \"\\f2e0\";\n}\n.sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n  position: static;\n  width: auto;\n  height: auto;\n  margin: 0;\n  overflow: visible;\n  clip: auto;\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/ikonli-fontawesome5-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.fontawesome5 {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.fontawesome5;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.fontawesome5.FontAwesomeBrandsIkonHandler,\n            org.kordamp.ikonli.fontawesome5.FontAwesomeRegularIkonHandler,\n            org.kordamp.ikonli.fontawesome5.FontAwesomeSolidIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.fontawesome5.FontAwesomeBrandsIkonProvider,\n            org.kordamp.ikonli.fontawesome5.FontAwesomeRegularIkonProvider,\n            org.kordamp.ikonli.fontawesome5.FontAwesomeSolidIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/java/org/kordamp/ikonli/fontawesome5/FontAwesomeBrands.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome5;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum FontAwesomeBrands implements Ikon {\n    ACCESSIBLE_ICON(\"fab-accessible-icon\", '\\uf368'),\n    ACCUSOFT(\"fab-accusoft\", '\\uf369'),\n    ACQUISITIONS_INCORPORATED(\"fab-acquisitions-incorporated\", '\\uf6af'),\n    ADN(\"fab-adn\", '\\uf170'),\n    ADVERSAL(\"fab-adversal\", '\\uf36a'),\n    AFFILIATETHEME(\"fab-affiliatetheme\", '\\uf36b'),\n    AIRBNB(\"fab-airbnb\", '\\uf834'),\n    ALGOLIA(\"fab-algolia\", '\\uf36c'),\n    ALIPAY(\"fab-alipay\", '\\uf642'),\n    AMAZON(\"fab-amazon\", '\\uf270'),\n    AMAZON_PAY(\"fab-amazon-pay\", '\\uf42c'),\n    AMILIA(\"fab-amilia\", '\\uf36d'),\n    ANDROID(\"fab-android\", '\\uf17b'),\n    ANGELLIST(\"fab-angellist\", '\\uf209'),\n    ANGRYCREATIVE(\"fab-angrycreative\", '\\uf36e'),\n    ANGULAR(\"fab-angular\", '\\uf420'),\n    APPER(\"fab-apper\", '\\uf371'),\n    APPLE(\"fab-apple\", '\\uf179'),\n    APPLE_PAY(\"fab-apple-pay\", '\\uf415'),\n    APP_STORE(\"fab-app-store\", '\\uf36f'),\n    APP_STORE_IOS(\"fab-app-store-ios\", '\\uf370'),\n    ARTSTATION(\"fab-artstation\", '\\uf77a'),\n    ASYMMETRIK(\"fab-asymmetrik\", '\\uf372'),\n    ATLASSIAN(\"fab-atlassian\", '\\uf77b'),\n    AUDIBLE(\"fab-audible\", '\\uf373'),\n    AUTOPREFIXER(\"fab-autoprefixer\", '\\uf41c'),\n    AVIANEX(\"fab-avianex\", '\\uf374'),\n    AVIATO(\"fab-aviato\", '\\uf421'),\n    AWS(\"fab-aws\", '\\uf375'),\n    BANDCAMP(\"fab-bandcamp\", '\\uf2d5'),\n    BATTLE_NET(\"fab-battle-net\", '\\uf835'),\n    BEHANCE(\"fab-behance\", '\\uf1b4'),\n    BEHANCE_SQUARE(\"fab-behance-square\", '\\uf1b5'),\n    BIMOBJECT(\"fab-bimobject\", '\\uf378'),\n    BITBUCKET(\"fab-bitbucket\", '\\uf171'),\n    BITCOIN(\"fab-bitcoin\", '\\uf379'),\n    BITY(\"fab-bity\", '\\uf37a'),\n    BLACKBERRY(\"fab-blackberry\", '\\uf37b'),\n    BLACK_TIE(\"fab-black-tie\", '\\uf27e'),\n    BLOGGER(\"fab-blogger\", '\\uf37c'),\n    BLOGGER_B(\"fab-blogger-b\", '\\uf37d'),\n    BLUETOOTH(\"fab-bluetooth\", '\\uf293'),\n    BLUETOOTH_B(\"fab-bluetooth-b\", '\\uf294'),\n    BOOTSTRAP(\"fab-bootstrap\", '\\uf836'),\n    BTC(\"fab-btc\", '\\uf15a'),\n    BUFFER(\"fab-buffer\", '\\uf837'),\n    BUROMOBELEXPERTE(\"fab-buromobelexperte\", '\\uf37f'),\n    BUYSELLADS(\"fab-buysellads\", '\\uf20d'),\n    BUY_N_LARGE(\"fab-buy-n-large\", '\\uf8a6'),\n    CANADIAN_MAPLE_LEAF(\"fab-canadian-maple-leaf\", '\\uf785'),\n    CC_AMAZON_PAY(\"fab-cc-amazon-pay\", '\\uf42d'),\n    CC_AMEX(\"fab-cc-amex\", '\\uf1f3'),\n    CC_APPLE_PAY(\"fab-cc-apple-pay\", '\\uf416'),\n    CC_DINERS_CLUB(\"fab-cc-diners-club\", '\\uf24c'),\n    CC_DISCOVER(\"fab-cc-discover\", '\\uf1f2'),\n    CC_JCB(\"fab-cc-jcb\", '\\uf24b'),\n    CC_MASTERCARD(\"fab-cc-mastercard\", '\\uf1f1'),\n    CC_PAYPAL(\"fab-cc-paypal\", '\\uf1f4'),\n    CC_STRIPE(\"fab-cc-stripe\", '\\uf1f5'),\n    CC_VISA(\"fab-cc-visa\", '\\uf1f0'),\n    CENTERCODE(\"fab-centercode\", '\\uf380'),\n    CENTOS(\"fab-centos\", '\\uf789'),\n    CHROME(\"fab-chrome\", '\\uf268'),\n    CHROMECAST(\"fab-chromecast\", '\\uf838'),\n    CLOUDFARE(\"fab-cloudfare\", '\\ue07d'),\n    CLOUDSCALE(\"fab-cloudscale\", '\\uf383'),\n    CLOUDSMITH(\"fab-cloudsmith\", '\\uf384'),\n    CLOUDVERSIFY(\"fab-cloudversify\", '\\uf385'),\n    CODEPEN(\"fab-codepen\", '\\uf1cb'),\n    CODIEPIE(\"fab-codiepie\", '\\uf284'),\n    CONFLUENCE(\"fab-confluence\", '\\uf78d'),\n    CONNECTDEVELOP(\"fab-connectdevelop\", '\\uf20e'),\n    CONTAO(\"fab-contao\", '\\uf26d'),\n    COTTON_BUREAU(\"fab-cotton-bureau\", '\\uf89e'),\n    CPANEL(\"fab-cpanel\", '\\uf388'),\n    CREATIVE_COMMONS(\"fab-creative-commons\", '\\uf25e'),\n    CREATIVE_COMMONS_BY(\"fab-creative-commons-by\", '\\uf4e7'),\n    CREATIVE_COMMONS_NC(\"fab-creative-commons-nc\", '\\uf4e8'),\n    CREATIVE_COMMONS_NC_EU(\"fab-creative-commons-nc-eu\", '\\uf4e9'),\n    CREATIVE_COMMONS_NC_JP(\"fab-creative-commons-nc-jp\", '\\uf4ea'),\n    CREATIVE_COMMONS_ND(\"fab-creative-commons-nd\", '\\uf4eb'),\n    CREATIVE_COMMONS_PD(\"fab-creative-commons-pd\", '\\uf4ec'),\n    CREATIVE_COMMONS_PD_ALT(\"fab-creative-commons-pd-alt\", '\\uf4ed'),\n    CREATIVE_COMMONS_REMIX(\"fab-creative-commons-remix\", '\\uf4ee'),\n    CREATIVE_COMMONS_SA(\"fab-creative-commons-sa\", '\\uf4ef'),\n    CREATIVE_COMMONS_SAMPLING(\"fab-creative-commons-sampling\", '\\uf4f0'),\n    CREATIVE_COMMONS_SAMPLING_PLUS(\"fab-creative-commons-sampling-plus\", '\\uf4f1'),\n    CREATIVE_COMMONS_SHARE(\"fab-creative-commons-share\", '\\uf4f2'),\n    CREATIVE_COMMONS_ZERO(\"fab-creative-commons-zero\", '\\uf4f3'),\n    CRITICAL_ROLE(\"fab-critical-role\", '\\uf6c9'),\n    CSS3(\"fab-css3\", '\\uf13c'),\n    CSS3_ALT(\"fab-css3-alt\", '\\uf38b'),\n    CUTTLEFISH(\"fab-cuttlefish\", '\\uf38c'),\n    DAILYMOTION(\"fab-dailymotion\", '\\ue052'),\n    DASHCUBE(\"fab-dashcube\", '\\uf210'),\n    DEEZER(\"fab-deezer\", '\\ue077'),\n    DELICIOUS(\"fab-delicious\", '\\uf1a5'),\n    DEPLOYDOG(\"fab-deploydog\", '\\uf38e'),\n    DESKPRO(\"fab-deskpro\", '\\uf38f'),\n    DEV(\"fab-dev\", '\\uf6cc'),\n    DEVIANTART(\"fab-deviantart\", '\\uf1bd'),\n    DHL(\"fab-dhl\", '\\uf790'),\n    DIASPORA(\"fab-diaspora\", '\\uf791'),\n    DIGG(\"fab-digg\", '\\uf1a6'),\n    DIGITAL_OCEAN(\"fab-digital-ocean\", '\\uf391'),\n    DISCORD(\"fab-discord\", '\\uf392'),\n    DISCOURSE(\"fab-discourse\", '\\uf393'),\n    DOCHUB(\"fab-dochub\", '\\uf394'),\n    DOCKER(\"fab-docker\", '\\uf395'),\n    DRAFT2DIGITAL(\"fab-draft2digital\", '\\uf396'),\n    DRIBBBLE(\"fab-dribbble\", '\\uf17d'),\n    DRIBBBLE_SQUARE(\"fab-dribbble-square\", '\\uf397'),\n    DROPBOX(\"fab-dropbox\", '\\uf16b'),\n    DRUPAL(\"fab-drupal\", '\\uf1a9'),\n    DYALOG(\"fab-dyalog\", '\\uf399'),\n    D_AND_D(\"fab-d-and-d\", '\\uf38d'),\n    D_AND_D_BEYOND(\"fab-d-and-d-beyond\", '\\uf6ca'),\n    EARLYBIRDS(\"fab-earlybirds\", '\\uf39a'),\n    EBAY(\"fab-ebay\", '\\uf4f4'),\n    EDGE(\"fab-edge\", '\\uf282'),\n    EDGE_LEGACY(\"fab-edge-legacy\", '\\ue078'),\n    ELEMENTOR(\"fab-elementor\", '\\uf430'),\n    ELLO(\"fab-ello\", '\\uf5f1'),\n    EMBER(\"fab-ember\", '\\uf423'),\n    EMPIRE(\"fab-empire\", '\\uf1d1'),\n    ENVIRA(\"fab-envira\", '\\uf299'),\n    ERLANG(\"fab-erlang\", '\\uf39d'),\n    ETHEREUM(\"fab-ethereum\", '\\uf42e'),\n    ETSY(\"fab-etsy\", '\\uf2d7'),\n    EVERNOTE(\"fab-evernote\", '\\uf839'),\n    EXPEDITEDSSL(\"fab-expeditedssl\", '\\uf23e'),\n    FAB_500PX(\"fab-500px\", '\\uf26e'),\n    FACEBOOK(\"fab-facebook\", '\\uf09a'),\n    FACEBOOK_F(\"fab-facebook-f\", '\\uf39e'),\n    FACEBOOK_MESSENGER(\"fab-facebook-messenger\", '\\uf39f'),\n    FACEBOOK_SQUARE(\"fab-facebook-square\", '\\uf082'),\n    FANTASY_FLIGHT_GAMES(\"fab-fantasy-flight-games\", '\\uf6dc'),\n    FEDEX(\"fab-fedex\", '\\uf797'),\n    FEDORA(\"fab-fedora\", '\\uf798'),\n    FIGMA(\"fab-figma\", '\\uf799'),\n    FIREFOX(\"fab-firefox\", '\\uf269'),\n    FIREFOX_BROWSER(\"fab-firefox-browser\", '\\ue007'),\n    FIRSTDRAFT(\"fab-firstdraft\", '\\uf3a1'),\n    FIRST_ORDER(\"fab-first-order\", '\\uf2b0'),\n    FIRST_ORDER_ALT(\"fab-first-order-alt\", '\\uf50a'),\n    FLICKR(\"fab-flickr\", '\\uf16e'),\n    FLIPBOARD(\"fab-flipboard\", '\\uf44d'),\n    FLY(\"fab-fly\", '\\uf417'),\n    FONTICONS(\"fab-fonticons\", '\\uf280'),\n    FONTICONS_FI(\"fab-fonticons-fi\", '\\uf3a2'),\n    FONT_AWESOME(\"fab-font-awesome\", '\\uf2b4'),\n    FONT_AWESOME_ALT(\"fab-font-awesome-alt\", '\\uf35c'),\n    FONT_AWESOME_FLAG(\"fab-font-awesome-flag\", '\\uf425'),\n    FORT_AWESOME(\"fab-fort-awesome\", '\\uf286'),\n    FORT_AWESOME_ALT(\"fab-fort-awesome-alt\", '\\uf3a3'),\n    FORUMBEE(\"fab-forumbee\", '\\uf211'),\n    FOURSQUARE(\"fab-foursquare\", '\\uf180'),\n    FREEBSD(\"fab-freebsd\", '\\uf3a4'),\n    FREE_CODE_CAMP(\"fab-free-code-camp\", '\\uf2c5'),\n    FULCRUM(\"fab-fulcrum\", '\\uf50b'),\n    GALACTIC_REPUBLIC(\"fab-galactic-republic\", '\\uf50c'),\n    GALACTIC_SENATE(\"fab-galactic-senate\", '\\uf50d'),\n    GET_POCKET(\"fab-get-pocket\", '\\uf265'),\n    GG(\"fab-gg\", '\\uf260'),\n    GG_CIRCLE(\"fab-gg-circle\", '\\uf261'),\n    GIT(\"fab-git\", '\\uf1d3'),\n    GITHUB(\"fab-github\", '\\uf09b'),\n    GITHUB_ALT(\"fab-github-alt\", '\\uf113'),\n    GITHUB_SQUARE(\"fab-github-square\", '\\uf092'),\n    GITKRAKEN(\"fab-gitkraken\", '\\uf3a6'),\n    GITLAB(\"fab-gitlab\", '\\uf296'),\n    GITTER(\"fab-gitter\", '\\uf426'),\n    GIT_ALT(\"fab-git-alt\", '\\uf841'),\n    GIT_SQUARE(\"fab-git-square\", '\\uf1d2'),\n    GLIDE(\"fab-glide\", '\\uf2a5'),\n    GLIDE_G(\"fab-glide-g\", '\\uf2a6'),\n    GOFORE(\"fab-gofore\", '\\uf3a7'),\n    GOODREADS(\"fab-goodreads\", '\\uf3a8'),\n    GOODREADS_G(\"fab-goodreads-g\", '\\uf3a9'),\n    GOOGLE(\"fab-google\", '\\uf1a0'),\n    GOOGLE_DRIVE(\"fab-google-drive\", '\\uf3aa'),\n    GOOGLE_PAY(\"fab-google-pay\", '\\ue079'),\n    GOOGLE_PLAY(\"fab-google-play\", '\\uf3ab'),\n    GOOGLE_PLUS(\"fab-google-plus\", '\\uf2b3'),\n    GOOGLE_PLUS_G(\"fab-google-plus-g\", '\\uf0d5'),\n    GOOGLE_PLUS_SQUARE(\"fab-google-plus-square\", '\\uf0d4'),\n    GOOGLE_WALLET(\"fab-google-wallet\", '\\uf1ee'),\n    GRATIPAY(\"fab-gratipay\", '\\uf184'),\n    GRAV(\"fab-grav\", '\\uf2d6'),\n    GRIPFIRE(\"fab-gripfire\", '\\uf3ac'),\n    GRUNT(\"fab-grunt\", '\\uf3ad'),\n    GUILDED(\"fab-guilded\", '\\ue07e'),\n    GULP(\"fab-gulp\", '\\uf3ae'),\n    HACKERRANK(\"fab-hackerrank\", '\\uf5f7'),\n    HACKER_NEWS(\"fab-hacker-news\", '\\uf1d4'),\n    HACKER_NEWS_SQUARE(\"fab-hacker-news-square\", '\\uf3af'),\n    HIPS(\"fab-hips\", '\\uf452'),\n    HIRE_A_HELPER(\"fab-hire-a-helper\", '\\uf3b0'),\n    HIVE(\"fab-hive\", '\\ue07f'),\n    HOOLI(\"fab-hooli\", '\\uf427'),\n    HORNBILL(\"fab-hornbill\", '\\uf592'),\n    HOTJAR(\"fab-hotjar\", '\\uf3b1'),\n    HOUZZ(\"fab-houzz\", '\\uf27c'),\n    HTML5(\"fab-html5\", '\\uf13b'),\n    HUBSPOT(\"fab-hubspot\", '\\uf3b2'),\n    IDEAL(\"fab-ideal\", '\\ue013'),\n    IMDB(\"fab-imdb\", '\\uf2d8'),\n    INNOSOFT(\"fab-innosoft\", '\\ue080'),\n    INSTAGRAM(\"fab-instagram\", '\\uf16d'),\n    INSTAGRAM_SQUARE(\"fab-instagram-square\", '\\ue055'),\n    INSTALOD(\"fab-instalod\", '\\ue081'),\n    INTERCOM(\"fab-intercom\", '\\uf7af'),\n    INTERNET_EXPLORER(\"fab-internet-explorer\", '\\uf26b'),\n    INVISION(\"fab-invision\", '\\uf7b0'),\n    IOXHOST(\"fab-ioxhost\", '\\uf208'),\n    ITCH_IO(\"fab-itch-io\", '\\uf83a'),\n    ITUNES(\"fab-itunes\", '\\uf3b4'),\n    ITUNES_NOTE(\"fab-itunes-note\", '\\uf3b5'),\n    JAVA(\"fab-java\", '\\uf4e4'),\n    JEDI_ORDER(\"fab-jedi-order\", '\\uf50e'),\n    JENKINS(\"fab-jenkins\", '\\uf3b6'),\n    JIRA(\"fab-jira\", '\\uf7b1'),\n    JOGET(\"fab-joget\", '\\uf3b7'),\n    JOOMLA(\"fab-joomla\", '\\uf1aa'),\n    JS(\"fab-js\", '\\uf3b8'),\n    JSFIDDLE(\"fab-jsfiddle\", '\\uf1cc'),\n    JS_SQUARE(\"fab-js-square\", '\\uf3b9'),\n    KAGGLE(\"fab-kaggle\", '\\uf5fa'),\n    KEYBASE(\"fab-keybase\", '\\uf4f5'),\n    KEYCDN(\"fab-keycdn\", '\\uf3ba'),\n    KICKSTARTER(\"fab-kickstarter\", '\\uf3bb'),\n    KICKSTARTER_K(\"fab-kickstarter-k\", '\\uf3bc'),\n    KORVUE(\"fab-korvue\", '\\uf42f'),\n    LARAVEL(\"fab-laravel\", '\\uf3bd'),\n    LASTFM(\"fab-lastfm\", '\\uf202'),\n    LASTFM_SQUARE(\"fab-lastfm-square\", '\\uf203'),\n    LEANPUB(\"fab-leanpub\", '\\uf212'),\n    LESS(\"fab-less\", '\\uf41d'),\n    LINE(\"fab-line\", '\\uf3c0'),\n    LINKEDIN(\"fab-linkedin\", '\\uf08c'),\n    LINKEDIN_IN(\"fab-linkedin-in\", '\\uf0e1'),\n    LINODE(\"fab-linode\", '\\uf2b8'),\n    LINUX(\"fab-linux\", '\\uf17c'),\n    LYFT(\"fab-lyft\", '\\uf3c3'),\n    MAGENTO(\"fab-magento\", '\\uf3c4'),\n    MAILCHIMP(\"fab-mailchimp\", '\\uf59e'),\n    MANDALORIAN(\"fab-mandalorian\", '\\uf50f'),\n    MARKDOWN(\"fab-markdown\", '\\uf60f'),\n    MASTODON(\"fab-mastodon\", '\\uf4f6'),\n    MAXCDN(\"fab-maxcdn\", '\\uf136'),\n    MDB(\"fab-mdb\", '\\uf8ca'),\n    MEDAPPS(\"fab-medapps\", '\\uf3c6'),\n    MEDIUM(\"fab-medium\", '\\uf23a'),\n    MEDIUM_M(\"fab-medium-m\", '\\uf3c7'),\n    MEDRT(\"fab-medrt\", '\\uf3c8'),\n    MEETUP(\"fab-meetup\", '\\uf2e0'),\n    MEGAPORT(\"fab-megaport\", '\\uf5a3'),\n    MENDELEY(\"fab-mendeley\", '\\uf7b3'),\n    MICROBLOG(\"fab-microblog\", '\\ue01a'),\n    MICROSOFT(\"fab-microsoft\", '\\uf3ca'),\n    MIX(\"fab-mix\", '\\uf3cb'),\n    MIXCLOUD(\"fab-mixcloud\", '\\uf289'),\n    MIXER(\"fab-mixer\", '\\ue056'),\n    MIZUNI(\"fab-mizuni\", '\\uf3cc'),\n    MODX(\"fab-modx\", '\\uf285'),\n    MONERO(\"fab-monero\", '\\uf3d0'),\n    NAPSTER(\"fab-napster\", '\\uf3d2'),\n    NEOS(\"fab-neos\", '\\uf612'),\n    NIMBLR(\"fab-nimblr\", '\\uf5a8'),\n    NODE(\"fab-node\", '\\uf419'),\n    NODE_JS(\"fab-node-js\", '\\uf3d3'),\n    NPM(\"fab-npm\", '\\uf3d4'),\n    NS8(\"fab-ns8\", '\\uf3d5'),\n    NUTRITIONIX(\"fab-nutritionix\", '\\uf3d6'),\n    OCTOPUS_DEPLOY(\"fab-octopus-deploy\", '\\ue082'),\n    ODNOKLASSNIKI(\"fab-odnoklassniki\", '\\uf263'),\n    ODNOKLASSNIKI_SQUARE(\"fab-odnoklassniki-square\", '\\uf264'),\n    OLD_REPUBLIC(\"fab-old-republic\", '\\uf510'),\n    OPENCART(\"fab-opencart\", '\\uf23d'),\n    OPENID(\"fab-openid\", '\\uf19b'),\n    OPERA(\"fab-opera\", '\\uf26a'),\n    OPTIN_MONSTER(\"fab-optin-monster\", '\\uf23c'),\n    ORCID(\"fab-orcid\", '\\uf8d2'),\n    OSI(\"fab-osi\", '\\uf41a'),\n    PAGE4(\"fab-page4\", '\\uf3d7'),\n    PAGELINES(\"fab-pagelines\", '\\uf18c'),\n    PALFED(\"fab-palfed\", '\\uf3d8'),\n    PATREON(\"fab-patreon\", '\\uf3d9'),\n    PAYPAL(\"fab-paypal\", '\\uf1ed'),\n    PENNY_ARCADE(\"fab-penny-arcade\", '\\uf704'),\n    PERBYTE(\"fab-perbyte\", '\\ue083'),\n    PERISCOPE(\"fab-periscope\", '\\uf3da'),\n    PHABRICATOR(\"fab-phabricator\", '\\uf3db'),\n    PHOENIX_FRAMEWORK(\"fab-phoenix-framework\", '\\uf3dc'),\n    PHOENIX_SQUADRON(\"fab-phoenix-squadron\", '\\uf511'),\n    PHP(\"fab-php\", '\\uf457'),\n    PIED_PIPER(\"fab-pied-piper\", '\\uf2ae'),\n    PIED_PIPER_ALT(\"fab-pied-piper-alt\", '\\uf1a8'),\n    PIED_PIPER_HAT(\"fab-pied-piper-hat\", '\\uf4e5'),\n    PIED_PIPER_PP(\"fab-pied-piper-pp\", '\\uf1a7'),\n    PIED_PIPER_SQUARE(\"fab-pied-piper-square\", '\\ue01e'),\n    PINTEREST(\"fab-pinterest\", '\\uf0d2'),\n    PINTEREST_P(\"fab-pinterest-p\", '\\uf231'),\n    PINTEREST_SQUARE(\"fab-pinterest-square\", '\\uf0d3'),\n    PLAYSTATION(\"fab-playstation\", '\\uf3df'),\n    PRODUCT_HUNT(\"fab-product-hunt\", '\\uf288'),\n    PUSHED(\"fab-pushed\", '\\uf3e1'),\n    PYTHON(\"fab-python\", '\\uf3e2'),\n    QQ(\"fab-qq\", '\\uf1d6'),\n    QUINSCAPE(\"fab-quinscape\", '\\uf459'),\n    QUORA(\"fab-quora\", '\\uf2c4'),\n    RASPBERRY_PI(\"fab-raspberry-pi\", '\\uf7bb'),\n    RAVELRY(\"fab-ravelry\", '\\uf2d9'),\n    REACT(\"fab-react\", '\\uf41b'),\n    REACTEUROPE(\"fab-reacteurope\", '\\uf75d'),\n    README(\"fab-readme\", '\\uf4d5'),\n    REBEL(\"fab-rebel\", '\\uf1d0'),\n    REDDIT(\"fab-reddit\", '\\uf1a1'),\n    REDDIT_ALIEN(\"fab-reddit-alien\", '\\uf281'),\n    REDDIT_SQUARE(\"fab-reddit-square\", '\\uf1a2'),\n    REDHAT(\"fab-redhat\", '\\uf7bc'),\n    RED_RIVER(\"fab-red-river\", '\\uf3e3'),\n    RENREN(\"fab-renren\", '\\uf18b'),\n    REPLYD(\"fab-replyd\", '\\uf3e6'),\n    RESEARCHGATE(\"fab-researchgate\", '\\uf4f8'),\n    RESOLVING(\"fab-resolving\", '\\uf3e7'),\n    REV(\"fab-rev\", '\\uf5b2'),\n    ROCKETCHAT(\"fab-rocketchat\", '\\uf3e8'),\n    ROCKRMS(\"fab-rockrms\", '\\uf3e9'),\n    RUST(\"fab-rust\", '\\ue07a'),\n    R_PROJECT(\"fab-r-project\", '\\uf4f7'),\n    SAFARI(\"fab-safari\", '\\uf267'),\n    SALESFORCE(\"fab-salesforce\", '\\uf83b'),\n    SASS(\"fab-sass\", '\\uf41e'),\n    SCHLIX(\"fab-schlix\", '\\uf3ea'),\n    SCRIBD(\"fab-scribd\", '\\uf28a'),\n    SEARCHENGIN(\"fab-searchengin\", '\\uf3eb'),\n    SELLCAST(\"fab-sellcast\", '\\uf2da'),\n    SELLSY(\"fab-sellsy\", '\\uf213'),\n    SERVICESTACK(\"fab-servicestack\", '\\uf3ec'),\n    SHIRTSINBULK(\"fab-shirtsinbulk\", '\\uf214'),\n    SHOPIFY(\"fab-shopify\", '\\ue057'),\n    SHOPWARE(\"fab-shopware\", '\\uf5b5'),\n    SIMPLYBUILT(\"fab-simplybuilt\", '\\uf215'),\n    SISTRIX(\"fab-sistrix\", '\\uf3ee'),\n    SITH(\"fab-sith\", '\\uf512'),\n    SKETCH(\"fab-sketch\", '\\uf7c6'),\n    SKYATLAS(\"fab-skyatlas\", '\\uf216'),\n    SKYPE(\"fab-skype\", '\\uf17e'),\n    SLACK(\"fab-slack\", '\\uf198'),\n    SLACK_HASH(\"fab-slack-hash\", '\\uf3ef'),\n    SLIDESHARE(\"fab-slideshare\", '\\uf1e7'),\n    SNAPCHAT(\"fab-snapchat\", '\\uf2ab'),\n    SNAPCHAT_GHOST(\"fab-snapchat-ghost\", '\\uf2ac'),\n    SNAPCHAT_SQUARE(\"fab-snapchat-square\", '\\uf2ad'),\n    SOUNDCLOUD(\"fab-soundcloud\", '\\uf1be'),\n    SOURCETREE(\"fab-sourcetree\", '\\uf7d3'),\n    SPEAKAP(\"fab-speakap\", '\\uf3f3'),\n    SPEAKER_DECK(\"fab-speaker-deck\", '\\uf83c'),\n    SPOTIFY(\"fab-spotify\", '\\uf1bc'),\n    SQUARESPACE(\"fab-squarespace\", '\\uf5be'),\n    STACKPATH(\"fab-stackpath\", '\\uf842'),\n    STACK_EXCHANGE(\"fab-stack-exchange\", '\\uf18d'),\n    STACK_OVERFLOW(\"fab-stack-overflow\", '\\uf16c'),\n    STAYLINKED(\"fab-staylinked\", '\\uf3f5'),\n    STEAM(\"fab-steam\", '\\uf1b6'),\n    STEAM_SQUARE(\"fab-steam-square\", '\\uf1b7'),\n    STEAM_SYMBOL(\"fab-steam-symbol\", '\\uf3f6'),\n    STICKER_MULE(\"fab-sticker-mule\", '\\uf3f7'),\n    STRAVA(\"fab-strava\", '\\uf428'),\n    STRIPE(\"fab-stripe\", '\\uf429'),\n    STRIPE_S(\"fab-stripe-s\", '\\uf42a'),\n    STUDIOVINARI(\"fab-studiovinari\", '\\uf3f8'),\n    STUMBLEUPON(\"fab-stumbleupon\", '\\uf1a4'),\n    STUMBLEUPON_CIRCLE(\"fab-stumbleupon-circle\", '\\uf1a3'),\n    SUPERPOWERS(\"fab-superpowers\", '\\uf2dd'),\n    SUPPLE(\"fab-supple\", '\\uf3f9'),\n    SUSE(\"fab-suse\", '\\uf7d6'),\n    SWIFT(\"fab-swift\", '\\uf8e1'),\n    SYMFONY(\"fab-symfony\", '\\uf83d'),\n    TEAMSPEAK(\"fab-teamspeak\", '\\uf4f9'),\n    TELEGRAM(\"fab-telegram\", '\\uf2c6'),\n    TELEGRAM_PLANE(\"fab-telegram-plane\", '\\uf3fe'),\n    TENCENT_WEIBO(\"fab-tencent-weibo\", '\\uf1d5'),\n    THEMECO(\"fab-themeco\", '\\uf5c6'),\n    THEMEISLE(\"fab-themeisle\", '\\uf2b2'),\n    THE_RED_YETI(\"fab-the-red-yeti\", '\\uf69d'),\n    THINK_PEAKS(\"fab-think-peaks\", '\\uf731'),\n    TIKTOK(\"fab-tiktok\", '\\ue07b'),\n    TRADE_FEDERATION(\"fab-trade-federation\", '\\uf513'),\n    TRELLO(\"fab-trello\", '\\uf181'),\n    TRIPADVISOR(\"fab-tripadvisor\", '\\uf262'),\n    TUMBLR(\"fab-tumblr\", '\\uf173'),\n    TUMBLR_SQUARE(\"fab-tumblr-square\", '\\uf174'),\n    TWITCH(\"fab-twitch\", '\\uf1e8'),\n    TWITTER(\"fab-twitter\", '\\uf099'),\n    TWITTER_SQUARE(\"fab-twitter-square\", '\\uf081'),\n    TYPO3(\"fab-typo3\", '\\uf42b'),\n    UBER(\"fab-uber\", '\\uf402'),\n    UBUNTU(\"fab-ubuntu\", '\\uf7df'),\n    UIKIT(\"fab-uikit\", '\\uf403'),\n    UMBRACO(\"fab-umbraco\", '\\uf8e8'),\n    UNCHARTED(\"fab-uncharted\", '\\ue084'),\n    UNIREGISTRY(\"fab-uniregistry\", '\\uf404'),\n    UNITY(\"fab-unity\", '\\ue049'),\n    UNSPLASH(\"fab-unsplash\", '\\ue07c'),\n    UNTAPPD(\"fab-untappd\", '\\uf405'),\n    UPS(\"fab-ups\", '\\uf7e0'),\n    USB(\"fab-usb\", '\\uf287'),\n    USPS(\"fab-usps\", '\\uf7e1'),\n    USSUNNAH(\"fab-ussunnah\", '\\uf407'),\n    VAADIN(\"fab-vaadin\", '\\uf408'),\n    VIACOIN(\"fab-viacoin\", '\\uf237'),\n    VIADEO(\"fab-viadeo\", '\\uf2a9'),\n    VIADEO_SQUARE(\"fab-viadeo-square\", '\\uf2aa'),\n    VIBER(\"fab-viber\", '\\uf409'),\n    VIMEO(\"fab-vimeo\", '\\uf40a'),\n    VIMEO_SQUARE(\"fab-vimeo-square\", '\\uf194'),\n    VIMEO_V(\"fab-vimeo-v\", '\\uf27d'),\n    VINE(\"fab-vine\", '\\uf1ca'),\n    VK(\"fab-vk\", '\\uf189'),\n    VNV(\"fab-vnv\", '\\uf40b'),\n    VUEJS(\"fab-vuejs\", '\\uf41f'),\n    WATCHAMN_MONITORING(\"fab-watchman-monitoring\", '\\ue087'),\n    WAZE(\"fab-waze\", '\\uf83f'),\n    WEEBLY(\"fab-weebly\", '\\uf5cc'),\n    WEIBO(\"fab-weibo\", '\\uf18a'),\n    WEIXIN(\"fab-weixin\", '\\uf1d7'),\n    WHATSAPP(\"fab-whatsapp\", '\\uf232'),\n    WHATSAPP_SQUARE(\"fab-whatsapp-square\", '\\uf40c'),\n    WHMCS(\"fab-whmcs\", '\\uf40d'),\n    WIKIPEDIA_W(\"fab-wikipedia-w\", '\\uf266'),\n    WINDOWS(\"fab-windows\", '\\uf17a'),\n    WIX(\"fab-wix\", '\\uf5cf'),\n    WIZARDS_OF_THE_COAST(\"fab-wizards-of-the-coast\", '\\uf730'),\n    WODU(\"fab-wodu\", '\\ue088'),\n    WOLF_PACK_BATTALION(\"fab-wolf-pack-battalion\", '\\uf514'),\n    WORDPRESS(\"fab-wordpress\", '\\uf19a'),\n    WORDPRESS_SIMPLE(\"fab-wordpress-simple\", '\\uf411'),\n    WPBEGINNER(\"fab-wpbeginner\", '\\uf297'),\n    WPEXPLORER(\"fab-wpexplorer\", '\\uf2de'),\n    WPFORMS(\"fab-wpforms\", '\\uf298'),\n    WPRESSR(\"fab-wpressr\", '\\uf3e4'),\n    XBOX(\"fab-xbox\", '\\uf412'),\n    XING(\"fab-xing\", '\\uf168'),\n    XING_SQUARE(\"fab-xing-square\", '\\uf169'),\n    YAHOO(\"fab-yahoo\", '\\uf19e'),\n    YAMMER(\"fab-yammer\", '\\uf840'),\n    YANDEX(\"fab-yandex\", '\\uf413'),\n    YANDEX_INTERNATIONAL(\"fab-yandex-international\", '\\uf414'),\n    YARN(\"fab-yarn\", '\\uf7e3'),\n    YELP(\"fab-yelp\", '\\uf1e9'),\n    YOAST(\"fab-yoast\", '\\uf2b1'),\n    YOUTUBE(\"fab-youtube\", '\\uf167'),\n    YOUTUBE_SQUARE(\"fab-youtube-square\", '\\uf431'),\n    Y_COMBINATOR(\"fab-y-combinator\", '\\uf23b'),\n    ZHIHU(\"fab-zhihu\", '\\uf63f');\n\n    public static FontAwesomeBrands findByDescription(String description) {\n        for (FontAwesomeBrands font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    FontAwesomeBrands(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/java/org/kordamp/ikonli/fontawesome5/FontAwesomeBrandsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome5;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FontAwesomeBrandsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fontawesome5/5.15.3/fonts/fa-brands-400.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"fab-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return FontAwesomeBrands.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Font Awesome 5 Brands Regular\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/java/org/kordamp/ikonli/fontawesome5/FontAwesomeBrandsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome5;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class FontAwesomeBrandsIkonProvider implements IkonProvider<FontAwesomeBrands> {\n    @Override\n    public Class<FontAwesomeBrands> getIkon() {\n        return FontAwesomeBrands.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/java/org/kordamp/ikonli/fontawesome5/FontAwesomeRegular.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome5;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum FontAwesomeRegular implements Ikon {\n    ADDRESS_BOOK(\"far-address-book\", '\\uf2b9'),\n    ADDRESS_CARD(\"far-address-card\", '\\uf2bb'),\n    ANGRY(\"far-angry\", '\\uf556'),\n    ARROW_ALT_CIRCLE_DOWN(\"far-arrow-alt-circle-down\", '\\uf358'),\n    ARROW_ALT_CIRCLE_LEFT(\"far-arrow-alt-circle-left\", '\\uf359'),\n    ARROW_ALT_CIRCLE_RIGHT(\"far-arrow-alt-circle-right\", '\\uf35a'),\n    ARROW_ALT_CIRCLE_UP(\"far-arrow-alt-circle-up\", '\\uf35b'),\n    BELL(\"far-bell\", '\\uf0f3'),\n    BELL_SLASH(\"far-bell-slash\", '\\uf1f6'),\n    BOOKMARK(\"far-bookmark\", '\\uf02e'),\n    BUILDING(\"far-building\", '\\uf1ad'),\n    CALENDAR(\"far-calendar\", '\\uf133'),\n    CALENDAR_ALT(\"far-calendar-alt\", '\\uf073'),\n    CALENDAR_CHECK(\"far-calendar-check\", '\\uf274'),\n    CALENDAR_MINUS(\"far-calendar-minus\", '\\uf272'),\n    CALENDAR_PLUS(\"far-calendar-plus\", '\\uf271'),\n    CALENDAR_TIMES(\"far-calendar-times\", '\\uf273'),\n    CARET_SQUARE_DOWN(\"far-caret-square-down\", '\\uf150'),\n    CARET_SQUARE_LEFT(\"far-caret-square-left\", '\\uf191'),\n    CARET_SQUARE_RIGHT(\"far-caret-square-right\", '\\uf152'),\n    CARET_SQUARE_UP(\"far-caret-square-up\", '\\uf151'),\n    CHART_BAR(\"far-chart-bar\", '\\uf080'),\n    CHECK_CIRCLE(\"far-check-circle\", '\\uf058'),\n    CHECK_SQUARE(\"far-check-square\", '\\uf14a'),\n    CIRCLE(\"far-circle\", '\\uf111'),\n    CLIPBOARD(\"far-clipboard\", '\\uf328'),\n    CLOCK(\"far-clock\", '\\uf017'),\n    CLONE(\"far-clone\", '\\uf24d'),\n    CLOSED_CAPTIONING(\"far-closed-captioning\", '\\uf20a'),\n    COMMENT(\"far-comment\", '\\uf075'),\n    COMMENTS(\"far-comments\", '\\uf086'),\n    COMMENT_ALT(\"far-comment-alt\", '\\uf27a'),\n    COMMENT_DOTS(\"far-comment-dots\", '\\uf4ad'),\n    COMPASS(\"far-compass\", '\\uf14e'),\n    COPY(\"far-copy\", '\\uf0c5'),\n    COPYRIGHT(\"far-copyright\", '\\uf1f9'),\n    CREDIT_CARD(\"far-credit-card\", '\\uf09d'),\n    DIZZY(\"far-dizzy\", '\\uf567'),\n    DOT_CIRCLE(\"far-dot-circle\", '\\uf192'),\n    EDIT(\"far-edit\", '\\uf044'),\n    ENVELOPE(\"far-envelope\", '\\uf0e0'),\n    ENVELOPE_OPEN(\"far-envelope-open\", '\\uf2b6'),\n    EYE(\"far-eye\", '\\uf06e'),\n    EYE_SLASH(\"far-eye-slash\", '\\uf070'),\n    FILE(\"far-file\", '\\uf15b'),\n    FILE_ALT(\"far-file-alt\", '\\uf15c'),\n    FILE_ARCHIVE(\"far-file-archive\", '\\uf1c6'),\n    FILE_AUDIO(\"far-file-audio\", '\\uf1c7'),\n    FILE_CODE(\"far-file-code\", '\\uf1c9'),\n    FILE_EXCEL(\"far-file-excel\", '\\uf1c3'),\n    FILE_IMAGE(\"far-file-image\", '\\uf1c5'),\n    FILE_PDF(\"far-file-pdf\", '\\uf1c1'),\n    FILE_POWERPOINT(\"far-file-powerpoint\", '\\uf1c4'),\n    FILE_VIDEO(\"far-file-video\", '\\uf1c8'),\n    FILE_WORD(\"far-file-word\", '\\uf1c2'),\n    FLAG(\"far-flag\", '\\uf024'),\n    FLUSHED(\"far-flushed\", '\\uf579'),\n    FOLDER(\"far-folder\", '\\uf07b'),\n    FOLDER_OPEN(\"far-folder-open\", '\\uf07c'),\n    FROWN(\"far-frown\", '\\uf119'),\n    FROWN_OPEN(\"far-frown-open\", '\\uf57a'),\n    FUTBOL(\"far-futbol\", '\\uf1e3'),\n    GEM(\"far-gem\", '\\uf3a5'),\n    GRIMACE(\"far-grimace\", '\\uf57f'),\n    GRIN(\"far-grin\", '\\uf580'),\n    GRIN_ALT(\"far-grin-alt\", '\\uf581'),\n    GRIN_BEAM(\"far-grin-beam\", '\\uf582'),\n    GRIN_BEAM_SWEAT(\"far-grin-beam-sweat\", '\\uf583'),\n    GRIN_HEARTS(\"far-grin-hearts\", '\\uf584'),\n    GRIN_SQUINT(\"far-grin-squint\", '\\uf585'),\n    GRIN_SQUINT_TEARS(\"far-grin-squint-tears\", '\\uf586'),\n    GRIN_STARS(\"far-grin-stars\", '\\uf587'),\n    GRIN_TEARS(\"far-grin-tears\", '\\uf588'),\n    GRIN_TONGUE(\"far-grin-tongue\", '\\uf589'),\n    GRIN_TONGUE_SQUINT(\"far-grin-tongue-squint\", '\\uf58a'),\n    GRIN_TONGUE_WINK(\"far-grin-tongue-wink\", '\\uf58b'),\n    GRIN_WINK(\"far-grin-wink\", '\\uf58c'),\n    HANDSHAKE(\"far-handshake\", '\\uf2b5'),\n    HAND_LIZARD(\"far-hand-lizard\", '\\uf258'),\n    HAND_PAPER(\"far-hand-paper\", '\\uf256'),\n    HAND_PEACE(\"far-hand-peace\", '\\uf25b'),\n    HAND_POINTER(\"far-hand-pointer\", '\\uf25a'),\n    HAND_POINT_DOWN(\"far-hand-point-down\", '\\uf0a7'),\n    HAND_POINT_LEFT(\"far-hand-point-left\", '\\uf0a5'),\n    HAND_POINT_RIGHT(\"far-hand-point-right\", '\\uf0a4'),\n    HAND_POINT_UP(\"far-hand-point-up\", '\\uf0a6'),\n    HAND_ROCK(\"far-hand-rock\", '\\uf255'),\n    HAND_SCISSORS(\"far-hand-scissors\", '\\uf257'),\n    HAND_SPOCK(\"far-hand-spock\", '\\uf259'),\n    HDD(\"far-hdd\", '\\uf0a0'),\n    HEART(\"far-heart\", '\\uf004'),\n    HOSPITAL(\"far-hospital\", '\\uf0f8'),\n    HOURGLASS(\"far-hourglass\", '\\uf254'),\n    ID_BADGE(\"far-id-badge\", '\\uf2c1'),\n    ID_CARD(\"far-id-card\", '\\uf2c2'),\n    IMAGE(\"far-image\", '\\uf03e'),\n    IMAGES(\"far-images\", '\\uf302'),\n    KEYBOARD(\"far-keyboard\", '\\uf11c'),\n    KISS(\"far-kiss\", '\\uf596'),\n    KISS_BEAM(\"far-kiss-beam\", '\\uf597'),\n    KISS_WINK_HEART(\"far-kiss-wink-heart\", '\\uf598'),\n    LAUGH(\"far-laugh\", '\\uf599'),\n    LAUGH_BEAM(\"far-laugh-beam\", '\\uf59a'),\n    LAUGH_SQUINT(\"far-laugh-squint\", '\\uf59b'),\n    LAUGH_WINK(\"far-laugh-wink\", '\\uf59c'),\n    LEMON(\"far-lemon\", '\\uf094'),\n    LIFE_RING(\"far-life-ring\", '\\uf1cd'),\n    LIGHTBULB(\"far-lightbulb\", '\\uf0eb'),\n    LIST_ALT(\"far-list-alt\", '\\uf022'),\n    MAP(\"far-map\", '\\uf279'),\n    MEH(\"far-meh\", '\\uf11a'),\n    MEH_BLANK(\"far-meh-blank\", '\\uf5a4'),\n    MEH_ROLLING_EYES(\"far-meh-rolling-eyes\", '\\uf5a5'),\n    MINUS_SQUARE(\"far-minus-square\", '\\uf146'),\n    MONEY_BILL_ALT(\"far-money-bill-alt\", '\\uf3d1'),\n    MOON(\"far-moon\", '\\uf186'),\n    NEWSPAPER(\"far-newspaper\", '\\uf1ea'),\n    OBJECT_GROUP(\"far-object-group\", '\\uf247'),\n    OBJECT_UNGROUP(\"far-object-ungroup\", '\\uf248'),\n    PAPER_PLANE(\"far-paper-plane\", '\\uf1d8'),\n    PAUSE_CIRCLE(\"far-pause-circle\", '\\uf28b'),\n    PLAY_CIRCLE(\"far-play-circle\", '\\uf144'),\n    PLUS_SQUARE(\"far-plus-square\", '\\uf0fe'),\n    QUESTION_CIRCLE(\"far-question-circle\", '\\uf059'),\n    REGISTERED(\"far-registered\", '\\uf25d'),\n    SAD_CRY(\"far-sad-cry\", '\\uf5b3'),\n    SAD_TEAR(\"far-sad-tear\", '\\uf5b4'),\n    SAVE(\"far-save\", '\\uf0c7'),\n    SHARE_SQUARE(\"far-share-square\", '\\uf14d'),\n    SMILE(\"far-smile\", '\\uf118'),\n    SMILE_BEAM(\"far-smile-beam\", '\\uf5b8'),\n    SMILE_WINK(\"far-smile-wink\", '\\uf4da'),\n    SNOWFLAKE(\"far-snowflake\", '\\uf2dc'),\n    SQUARE(\"far-square\", '\\uf0c8'),\n    STAR(\"far-star\", '\\uf005'),\n    STAR_HALF(\"far-star-half\", '\\uf089'),\n    STICKY_NOTE(\"far-sticky-note\", '\\uf249'),\n    STOP_CIRCLE(\"far-stop-circle\", '\\uf28d'),\n    SUN(\"far-sun\", '\\uf185'),\n    SURPRISE(\"far-surprise\", '\\uf5c2'),\n    THUMBS_DOWN(\"far-thumbs-down\", '\\uf165'),\n    THUMBS_UP(\"far-thumbs-up\", '\\uf164'),\n    TIMES_CIRCLE(\"far-times-circle\", '\\uf057'),\n    TIRED(\"far-tired\", '\\uf5c8'),\n    TRASH_ALT(\"far-trash-alt\", '\\uf2ed'),\n    USER(\"far-user\", '\\uf007'),\n    USER_CIRCLE(\"far-user-circle\", '\\uf2bd'),\n    WINDOW_CLOSE(\"far-window-close\", '\\uf410'),\n    WINDOW_MAXIMIZE(\"far-window-maximize\", '\\uf2d0'),\n    WINDOW_MINIMIZE(\"far-window-minimize\", '\\uf2d1'),\n    WINDOW_RESTORE(\"far-window-restore\", '\\uf2d2');\n\n    public static FontAwesomeRegular findByDescription(String description) {\n        for (FontAwesomeRegular font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    FontAwesomeRegular(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/java/org/kordamp/ikonli/fontawesome5/FontAwesomeRegularIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome5;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FontAwesomeRegularIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fontawesome5/5.15.3/fonts/fa-regular-400.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"far-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return FontAwesomeRegular.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Font Awesome 5 Free Regular\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/java/org/kordamp/ikonli/fontawesome5/FontAwesomeRegularIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome5;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class FontAwesomeRegularIkonProvider implements IkonProvider<FontAwesomeRegular> {\n    @Override\n    public Class<FontAwesomeRegular> getIkon() {\n        return FontAwesomeRegular.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/java/org/kordamp/ikonli/fontawesome5/FontAwesomeSolid.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome5;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum FontAwesomeSolid implements Ikon {\n    AD(\"fas-ad\", '\\uf641'),\n    ADDRESS_BOOK(\"fas-address-book\", '\\uf2b9'),\n    ADDRESS_CARD(\"fas-address-card\", '\\uf2bb'),\n    ADJUST(\"fas-adjust\", '\\uf042'),\n    AIR_FRESHENER(\"fas-air-freshener\", '\\uf5d0'),\n    ALIGN_CENTER(\"fas-align-center\", '\\uf037'),\n    ALIGN_JUSTIFY(\"fas-align-justify\", '\\uf039'),\n    ALIGN_LEFT(\"fas-align-left\", '\\uf036'),\n    ALIGN_RIGHT(\"fas-align-right\", '\\uf038'),\n    ALLERGIES(\"fas-allergies\", '\\uf461'),\n    AMBULANCE(\"fas-ambulance\", '\\uf0f9'),\n    AMERICAN_SIGN_LANGUAGE_INTERPRETING(\"fas-american-sign-language-interpreting\", '\\uf2a3'),\n    ANCHOR(\"fas-anchor\", '\\uf13d'),\n    ANGLE_DOUBLE_DOWN(\"fas-angle-double-down\", '\\uf103'),\n    ANGLE_DOUBLE_LEFT(\"fas-angle-double-left\", '\\uf100'),\n    ANGLE_DOUBLE_RIGHT(\"fas-angle-double-right\", '\\uf101'),\n    ANGLE_DOUBLE_UP(\"fas-angle-double-up\", '\\uf102'),\n    ANGLE_DOWN(\"fas-angle-down\", '\\uf107'),\n    ANGLE_LEFT(\"fas-angle-left\", '\\uf104'),\n    ANGLE_RIGHT(\"fas-angle-right\", '\\uf105'),\n    ANGLE_UP(\"fas-angle-up\", '\\uf106'),\n    ANGRY(\"fas-angry\", '\\uf556'),\n    ANKH(\"fas-ankh\", '\\uf644'),\n    APPLE_ALT(\"fas-apple-alt\", '\\uf5d1'),\n    ARCHIVE(\"fas-archive\", '\\uf187'),\n    ARCHWAY(\"fas-archway\", '\\uf557'),\n    ARROWS_ALT(\"fas-arrows-alt\", '\\uf0b2'),\n    ARROWS_ALT_H(\"fas-arrows-alt-h\", '\\uf337'),\n    ARROWS_ALT_V(\"fas-arrows-alt-v\", '\\uf338'),\n    ARROW_ALT_CIRCLE_DOWN(\"fas-arrow-alt-circle-down\", '\\uf358'),\n    ARROW_ALT_CIRCLE_LEFT(\"fas-arrow-alt-circle-left\", '\\uf359'),\n    ARROW_ALT_CIRCLE_RIGHT(\"fas-arrow-alt-circle-right\", '\\uf35a'),\n    ARROW_ALT_CIRCLE_UP(\"fas-arrow-alt-circle-up\", '\\uf35b'),\n    ARROW_CIRCLE_DOWN(\"fas-arrow-circle-down\", '\\uf0ab'),\n    ARROW_CIRCLE_LEFT(\"fas-arrow-circle-left\", '\\uf0a8'),\n    ARROW_CIRCLE_RIGHT(\"fas-arrow-circle-right\", '\\uf0a9'),\n    ARROW_CIRCLE_UP(\"fas-arrow-circle-up\", '\\uf0aa'),\n    ARROW_DOWN(\"fas-arrow-down\", '\\uf063'),\n    ARROW_LEFT(\"fas-arrow-left\", '\\uf060'),\n    ARROW_RIGHT(\"fas-arrow-right\", '\\uf061'),\n    ARROW_UP(\"fas-arrow-up\", '\\uf062'),\n    ASSISTIVE_LISTENING_SYSTEMS(\"fas-assistive-listening-systems\", '\\uf2a2'),\n    ASTERISK(\"fas-asterisk\", '\\uf069'),\n    AT(\"fas-at\", '\\uf1fa'),\n    ATLAS(\"fas-atlas\", '\\uf558'),\n    ATOM(\"fas-atom\", '\\uf5d2'),\n    AUDIO_DESCRIPTION(\"fas-audio-description\", '\\uf29e'),\n    AWARD(\"fas-award\", '\\uf559'),\n    BABY(\"fas-baby\", '\\uf77c'),\n    BABY_CARRIAGE(\"fas-baby-carriage\", '\\uf77d'),\n    BACKSPACE(\"fas-backspace\", '\\uf55a'),\n    BACKWARD(\"fas-backward\", '\\uf04a'),\n    BACON(\"fas-bacon\", '\\uf7e5'),\n    BACTERIA(\"fas-bacteria\", '\\ue059'),\n    BACTERIUM(\"fas-bacterium\", '\\ue05a'),\n    BAHAI(\"fas-bahai\", '\\uf666'),\n    BALANCE_SCALE(\"fas-balance-scale\", '\\uf24e'),\n    BALANCE_SCALE_LEFT(\"fas-balance-scale-left\", '\\uf515'),\n    BALANCE_SCALE_RIGHT(\"fas-balance-scale-right\", '\\uf516'),\n    BAN(\"fas-ban\", '\\uf05e'),\n    BAND_AID(\"fas-band-aid\", '\\uf462'),\n    BARCODE(\"fas-barcode\", '\\uf02a'),\n    BARS(\"fas-bars\", '\\uf0c9'),\n    BASEBALL_BALL(\"fas-baseball-ball\", '\\uf433'),\n    BASKETBALL_BALL(\"fas-basketball-ball\", '\\uf434'),\n    BATH(\"fas-bath\", '\\uf2cd'),\n    BATTERY_EMPTY(\"fas-battery-empty\", '\\uf244'),\n    BATTERY_FULL(\"fas-battery-full\", '\\uf240'),\n    BATTERY_HALF(\"fas-battery-half\", '\\uf242'),\n    BATTERY_QUARTER(\"fas-battery-quarter\", '\\uf243'),\n    BATTERY_THREE_QUARTERS(\"fas-battery-three-quarters\", '\\uf241'),\n    BED(\"fas-bed\", '\\uf236'),\n    BEER(\"fas-beer\", '\\uf0fc'),\n    BELL(\"fas-bell\", '\\uf0f3'),\n    BELL_SLASH(\"fas-bell-slash\", '\\uf1f6'),\n    BEZIER_CURVE(\"fas-bezier-curve\", '\\uf55b'),\n    BIBLE(\"fas-bible\", '\\uf647'),\n    BICYCLE(\"fas-bicycle\", '\\uf206'),\n    BIKING(\"fas-biking\", '\\uf84a'),\n    BINOCULARS(\"fas-binoculars\", '\\uf1e5'),\n    BIOHAZARD(\"fas-biohazard\", '\\uf780'),\n    BIRTHDAY_CAKE(\"fas-birthday-cake\", '\\uf1fd'),\n    BLENDER(\"fas-blender\", '\\uf517'),\n    BLENDER_PHONE(\"fas-blender-phone\", '\\uf6b6'),\n    BLIND(\"fas-blind\", '\\uf29d'),\n    BLOG(\"fas-blog\", '\\uf781'),\n    BOLD(\"fas-bold\", '\\uf032'),\n    BOLT(\"fas-bolt\", '\\uf0e7'),\n    BOMB(\"fas-bomb\", '\\uf1e2'),\n    BONE(\"fas-bone\", '\\uf5d7'),\n    BONG(\"fas-bong\", '\\uf55c'),\n    BOOK(\"fas-book\", '\\uf02d'),\n    BOOKMARK(\"fas-bookmark\", '\\uf02e'),\n    BOOK_DEAD(\"fas-book-dead\", '\\uf6b7'),\n    BOOK_MEDICAL(\"fas-book-medical\", '\\uf7e6'),\n    BOOK_OPEN(\"fas-book-open\", '\\uf518'),\n    BOOK_READER(\"fas-book-reader\", '\\uf5da'),\n    BORDER_ALL(\"fas-border-all\", '\\uf84c'),\n    BORDER_NONE(\"fas-border-none\", '\\uf850'),\n    BORDER_STYLE(\"fas-border-style\", '\\uf853'),\n    BOWLING_BALL(\"fas-bowling-ball\", '\\uf436'),\n    BOX(\"fas-box\", '\\uf466'),\n    BOXES(\"fas-boxes\", '\\uf468'),\n    BOX_OPEN(\"fas-box-open\", '\\uf49e'),\n    BOX_TISSUE(\"fas-box-tissue\", '\\ue05b'),\n    BRAILLE(\"fas-braille\", '\\uf2a1'),\n    BRAIN(\"fas-brain\", '\\uf5dc'),\n    BREAD_SLICE(\"fas-bread-slice\", '\\uf7ec'),\n    BRIEFCASE(\"fas-briefcase\", '\\uf0b1'),\n    BRIEFCASE_MEDICAL(\"fas-briefcase-medical\", '\\uf469'),\n    BROADCAST_TOWER(\"fas-broadcast-tower\", '\\uf519'),\n    BROOM(\"fas-broom\", '\\uf51a'),\n    BRUSH(\"fas-brush\", '\\uf55d'),\n    BUG(\"fas-bug\", '\\uf188'),\n    BUILDING(\"fas-building\", '\\uf1ad'),\n    BULLHORN(\"fas-bullhorn\", '\\uf0a1'),\n    BULLSEYE(\"fas-bullseye\", '\\uf140'),\n    BURN(\"fas-burn\", '\\uf46a'),\n    BUS(\"fas-bus\", '\\uf207'),\n    BUSINESS_TIME(\"fas-business-time\", '\\uf64a'),\n    BUS_ALT(\"fas-bus-alt\", '\\uf55e'),\n    CALCULATOR(\"fas-calculator\", '\\uf1ec'),\n    CALENDAR(\"fas-calendar\", '\\uf133'),\n    CALENDAR_ALT(\"fas-calendar-alt\", '\\uf073'),\n    CALENDAR_CHECK(\"fas-calendar-check\", '\\uf274'),\n    CALENDAR_DAY(\"fas-calendar-day\", '\\uf783'),\n    CALENDAR_MINUS(\"fas-calendar-minus\", '\\uf272'),\n    CALENDAR_PLUS(\"fas-calendar-plus\", '\\uf271'),\n    CALENDAR_TIMES(\"fas-calendar-times\", '\\uf273'),\n    CALENDAR_WEEK(\"fas-calendar-week\", '\\uf784'),\n    CAMERA(\"fas-camera\", '\\uf030'),\n    CAMERA_RETRO(\"fas-camera-retro\", '\\uf083'),\n    CAMPGROUND(\"fas-campground\", '\\uf6bb'),\n    CANDY_CANE(\"fas-candy-cane\", '\\uf786'),\n    CANNABIS(\"fas-cannabis\", '\\uf55f'),\n    CAPSULES(\"fas-capsules\", '\\uf46b'),\n    CAR(\"fas-car\", '\\uf1b9'),\n    CARAVAN(\"fas-caravan\", '\\uf8ff'),\n    CARET_DOWN(\"fas-caret-down\", '\\uf0d7'),\n    CARET_LEFT(\"fas-caret-left\", '\\uf0d9'),\n    CARET_RIGHT(\"fas-caret-right\", '\\uf0da'),\n    CARET_SQUARE_DOWN(\"fas-caret-square-down\", '\\uf150'),\n    CARET_SQUARE_LEFT(\"fas-caret-square-left\", '\\uf191'),\n    CARET_SQUARE_RIGHT(\"fas-caret-square-right\", '\\uf152'),\n    CARET_SQUARE_UP(\"fas-caret-square-up\", '\\uf151'),\n    CARET_UP(\"fas-caret-up\", '\\uf0d8'),\n    CARROT(\"fas-carrot\", '\\uf787'),\n    CART_ARROW_DOWN(\"fas-cart-arrow-down\", '\\uf218'),\n    CART_PLUS(\"fas-cart-plus\", '\\uf217'),\n    CAR_ALT(\"fas-car-alt\", '\\uf5de'),\n    CAR_BATTERY(\"fas-car-battery\", '\\uf5df'),\n    CAR_CRASH(\"fas-car-crash\", '\\uf5e1'),\n    CAR_SIDE(\"fas-car-side\", '\\uf5e4'),\n    CASH_REGISTER(\"fas-cash-register\", '\\uf788'),\n    CAT(\"fas-cat\", '\\uf6be'),\n    CERTIFICATE(\"fas-certificate\", '\\uf0a3'),\n    CHAIR(\"fas-chair\", '\\uf6c0'),\n    CHALKBOARD(\"fas-chalkboard\", '\\uf51b'),\n    CHALKBOARD_TEACHER(\"fas-chalkboard-teacher\", '\\uf51c'),\n    CHARGING_STATION(\"fas-charging-station\", '\\uf5e7'),\n    CHART_AREA(\"fas-chart-area\", '\\uf1fe'),\n    CHART_BAR(\"fas-chart-bar\", '\\uf080'),\n    CHART_LINE(\"fas-chart-line\", '\\uf201'),\n    CHART_PIE(\"fas-chart-pie\", '\\uf200'),\n    CHECK(\"fas-check\", '\\uf00c'),\n    CHECK_CIRCLE(\"fas-check-circle\", '\\uf058'),\n    CHECK_DOUBLE(\"fas-check-double\", '\\uf560'),\n    CHECK_SQUARE(\"fas-check-square\", '\\uf14a'),\n    CHEESE(\"fas-cheese\", '\\uf7ef'),\n    CHESS(\"fas-chess\", '\\uf439'),\n    CHESS_BISHOP(\"fas-chess-bishop\", '\\uf43a'),\n    CHESS_BOARD(\"fas-chess-board\", '\\uf43c'),\n    CHESS_KING(\"fas-chess-king\", '\\uf43f'),\n    CHESS_KNIGHT(\"fas-chess-knight\", '\\uf441'),\n    CHESS_PAWN(\"fas-chess-pawn\", '\\uf443'),\n    CHESS_QUEEN(\"fas-chess-queen\", '\\uf445'),\n    CHESS_ROOK(\"fas-chess-rook\", '\\uf447'),\n    CHEVRON_CIRCLE_DOWN(\"fas-chevron-circle-down\", '\\uf13a'),\n    CHEVRON_CIRCLE_LEFT(\"fas-chevron-circle-left\", '\\uf137'),\n    CHEVRON_CIRCLE_RIGHT(\"fas-chevron-circle-right\", '\\uf138'),\n    CHEVRON_CIRCLE_UP(\"fas-chevron-circle-up\", '\\uf139'),\n    CHEVRON_DOWN(\"fas-chevron-down\", '\\uf078'),\n    CHEVRON_LEFT(\"fas-chevron-left\", '\\uf053'),\n    CHEVRON_RIGHT(\"fas-chevron-right\", '\\uf054'),\n    CHEVRON_UP(\"fas-chevron-up\", '\\uf077'),\n    CHILD(\"fas-child\", '\\uf1ae'),\n    CHURCH(\"fas-church\", '\\uf51d'),\n    CIRCLE(\"fas-circle\", '\\uf111'),\n    CIRCLE_NOTCH(\"fas-circle-notch\", '\\uf1ce'),\n    CITY(\"fas-city\", '\\uf64f'),\n    CLINIC_MEDICAL(\"fas-clinic-medical\", '\\uf7f2'),\n    CLIPBOARD(\"fas-clipboard\", '\\uf328'),\n    CLIPBOARD_CHECK(\"fas-clipboard-check\", '\\uf46c'),\n    CLIPBOARD_LIST(\"fas-clipboard-list\", '\\uf46d'),\n    CLOCK(\"fas-clock\", '\\uf017'),\n    CLONE(\"fas-clone\", '\\uf24d'),\n    CLOSED_CAPTIONING(\"fas-closed-captioning\", '\\uf20a'),\n    CLOUD(\"fas-cloud\", '\\uf0c2'),\n    CLOUD_DOWNLOAD_ALT(\"fas-cloud-download-alt\", '\\uf381'),\n    CLOUD_MEATBALL(\"fas-cloud-meatball\", '\\uf73b'),\n    CLOUD_MOON(\"fas-cloud-moon\", '\\uf6c3'),\n    CLOUD_MOON_RAIN(\"fas-cloud-moon-rain\", '\\uf73c'),\n    CLOUD_RAIN(\"fas-cloud-rain\", '\\uf73d'),\n    CLOUD_SHOWERS_HEAVY(\"fas-cloud-showers-heavy\", '\\uf740'),\n    CLOUD_SUN(\"fas-cloud-sun\", '\\uf6c4'),\n    CLOUD_SUN_RAIN(\"fas-cloud-sun-rain\", '\\uf743'),\n    CLOUD_UPLOAD_ALT(\"fas-cloud-upload-alt\", '\\uf382'),\n    COCKTAIL(\"fas-cocktail\", '\\uf561'),\n    CODE(\"fas-code\", '\\uf121'),\n    CODE_BRANCH(\"fas-code-branch\", '\\uf126'),\n    COFFEE(\"fas-coffee\", '\\uf0f4'),\n    COG(\"fas-cog\", '\\uf013'),\n    COGS(\"fas-cogs\", '\\uf085'),\n    COINS(\"fas-coins\", '\\uf51e'),\n    COLUMNS(\"fas-columns\", '\\uf0db'),\n    COMMENT(\"fas-comment\", '\\uf075'),\n    COMMENTS(\"fas-comments\", '\\uf086'),\n    COMMENTS_DOLLAR(\"fas-comments-dollar\", '\\uf653'),\n    COMMENT_ALT(\"fas-comment-alt\", '\\uf27a'),\n    COMMENT_DOLLAR(\"fas-comment-dollar\", '\\uf651'),\n    COMMENT_DOTS(\"fas-comment-dots\", '\\uf4ad'),\n    COMMENT_MEDICAL(\"fas-comment-medical\", '\\uf7f5'),\n    COMMENT_SLASH(\"fas-comment-slash\", '\\uf4b3'),\n    COMPACT_DISC(\"fas-compact-disc\", '\\uf51f'),\n    COMPASS(\"fas-compass\", '\\uf14e'),\n    COMPRESS(\"fas-compress\", '\\uf066'),\n    COMPRESS_ALT(\"fas-compress-alt\", '\\uf422'),\n    COMPRESS_ARROWS_ALT(\"fas-compress-arrows-alt\", '\\uf78c'),\n    CONCIERGE_BELL(\"fas-concierge-bell\", '\\uf562'),\n    COOKIE(\"fas-cookie\", '\\uf563'),\n    COOKIE_BITE(\"fas-cookie-bite\", '\\uf564'),\n    COPY(\"fas-copy\", '\\uf0c5'),\n    COPYRIGHT(\"fas-copyright\", '\\uf1f9'),\n    COUCH(\"fas-couch\", '\\uf4b8'),\n    CREDIT_CARD(\"fas-credit-card\", '\\uf09d'),\n    CROP(\"fas-crop\", '\\uf125'),\n    CROP_ALT(\"fas-crop-alt\", '\\uf565'),\n    CROSS(\"fas-cross\", '\\uf654'),\n    CROSSHAIRS(\"fas-crosshairs\", '\\uf05b'),\n    CROW(\"fas-crow\", '\\uf520'),\n    CROWN(\"fas-crown\", '\\uf521'),\n    CRUTCH(\"fas-crutch\", '\\uf7f7'),\n    CUBE(\"fas-cube\", '\\uf1b2'),\n    CUBES(\"fas-cubes\", '\\uf1b3'),\n    CUT(\"fas-cut\", '\\uf0c4'),\n    DATABASE(\"fas-database\", '\\uf1c0'),\n    DEAF(\"fas-deaf\", '\\uf2a4'),\n    DEMOCRAT(\"fas-democrat\", '\\uf747'),\n    DESKTOP(\"fas-desktop\", '\\uf108'),\n    DHARMACHAKRA(\"fas-dharmachakra\", '\\uf655'),\n    DIAGNOSES(\"fas-diagnoses\", '\\uf470'),\n    DICE(\"fas-dice\", '\\uf522'),\n    DICE_D20(\"fas-dice-d20\", '\\uf6cf'),\n    DICE_D6(\"fas-dice-d6\", '\\uf6d1'),\n    DICE_FIVE(\"fas-dice-five\", '\\uf523'),\n    DICE_FOUR(\"fas-dice-four\", '\\uf524'),\n    DICE_ONE(\"fas-dice-one\", '\\uf525'),\n    DICE_SIX(\"fas-dice-six\", '\\uf526'),\n    DICE_THREE(\"fas-dice-three\", '\\uf527'),\n    DICE_TWO(\"fas-dice-two\", '\\uf528'),\n    DIGITAL_TACHOGRAPH(\"fas-digital-tachograph\", '\\uf566'),\n    DIRECTIONS(\"fas-directions\", '\\uf5eb'),\n    DISEASE(\"fas-disease\", '\\uf7fa'),\n    DIVIDE(\"fas-divide\", '\\uf529'),\n    DIZZY(\"fas-dizzy\", '\\uf567'),\n    DNA(\"fas-dna\", '\\uf471'),\n    DOG(\"fas-dog\", '\\uf6d3'),\n    DOLLAR_SIGN(\"fas-dollar-sign\", '\\uf155'),\n    DOLLY(\"fas-dolly\", '\\uf472'),\n    DOLLY_FLATBED(\"fas-dolly-flatbed\", '\\uf474'),\n    DONATE(\"fas-donate\", '\\uf4b9'),\n    DOOR_CLOSED(\"fas-door-closed\", '\\uf52a'),\n    DOOR_OPEN(\"fas-door-open\", '\\uf52b'),\n    DOT_CIRCLE(\"fas-dot-circle\", '\\uf192'),\n    DOVE(\"fas-dove\", '\\uf4ba'),\n    DOWNLOAD(\"fas-download\", '\\uf019'),\n    DRAFTING_COMPASS(\"fas-drafting-compass\", '\\uf568'),\n    DRAGON(\"fas-dragon\", '\\uf6d5'),\n    DRAW_POLYGON(\"fas-draw-polygon\", '\\uf5ee'),\n    DRUM(\"fas-drum\", '\\uf569'),\n    DRUMSTICK_BITE(\"fas-drumstick-bite\", '\\uf6d7'),\n    DRUM_STEELPAN(\"fas-drum-steelpan\", '\\uf56a'),\n    DUMBBELL(\"fas-dumbbell\", '\\uf44b'),\n    DUMPSTER(\"fas-dumpster\", '\\uf793'),\n    DUMPSTER_FIRE(\"fas-dumpster-fire\", '\\uf794'),\n    DUNGEON(\"fas-dungeon\", '\\uf6d9'),\n    EDIT(\"fas-edit\", '\\uf044'),\n    EGG(\"fas-egg\", '\\uf7fb'),\n    EJECT(\"fas-eject\", '\\uf052'),\n    ELLIPSIS_H(\"fas-ellipsis-h\", '\\uf141'),\n    ELLIPSIS_V(\"fas-ellipsis-v\", '\\uf142'),\n    ENVELOPE(\"fas-envelope\", '\\uf0e0'),\n    ENVELOPE_OPEN(\"fas-envelope-open\", '\\uf2b6'),\n    ENVELOPE_OPEN_TEXT(\"fas-envelope-open-text\", '\\uf658'),\n    ENVELOPE_SQUARE(\"fas-envelope-square\", '\\uf199'),\n    EQUALS(\"fas-equals\", '\\uf52c'),\n    ERASER(\"fas-eraser\", '\\uf12d'),\n    ETHERNET(\"fas-ethernet\", '\\uf796'),\n    EURO_SIGN(\"fas-euro-sign\", '\\uf153'),\n    EXCHANGE_ALT(\"fas-exchange-alt\", '\\uf362'),\n    EXCLAMATION(\"fas-exclamation\", '\\uf12a'),\n    EXCLAMATION_CIRCLE(\"fas-exclamation-circle\", '\\uf06a'),\n    EXCLAMATION_TRIANGLE(\"fas-exclamation-triangle\", '\\uf071'),\n    EXPAND(\"fas-expand\", '\\uf065'),\n    EXPAND_ALT(\"fas-expand-alt\", '\\uf424'),\n    EXPAND_ARROWS_ALT(\"fas-expand-arrows-alt\", '\\uf31e'),\n    EXTERNAL_LINK_ALT(\"fas-external-link-alt\", '\\uf35d'),\n    EXTERNAL_LINK_SQUARE_ALT(\"fas-external-link-square-alt\", '\\uf360'),\n    EYE(\"fas-eye\", '\\uf06e'),\n    EYE_DROPPER(\"fas-eye-dropper\", '\\uf1fb'),\n    EYE_SLASH(\"fas-eye-slash\", '\\uf070'),\n    FAN(\"fas-fan\", '\\uf863'),\n    FAST_BACKWARD(\"fas-fast-backward\", '\\uf049'),\n    FAST_FORWARD(\"fas-fast-forward\", '\\uf050'),\n    FAUCET(\"fas-faucet\", '\\ue005'),\n    FAX(\"fas-fax\", '\\uf1ac'),\n    FEATHER(\"fas-feather\", '\\uf52d'),\n    FEATHER_ALT(\"fas-feather-alt\", '\\uf56b'),\n    FEMALE(\"fas-female\", '\\uf182'),\n    FIGHTER_JET(\"fas-fighter-jet\", '\\uf0fb'),\n    FILE(\"fas-file\", '\\uf15b'),\n    FILE_ALT(\"fas-file-alt\", '\\uf15c'),\n    FILE_ARCHIVE(\"fas-file-archive\", '\\uf1c6'),\n    FILE_AUDIO(\"fas-file-audio\", '\\uf1c7'),\n    FILE_CODE(\"fas-file-code\", '\\uf1c9'),\n    FILE_CONTRACT(\"fas-file-contract\", '\\uf56c'),\n    FILE_CSV(\"fas-file-csv\", '\\uf6dd'),\n    FILE_DOWNLOAD(\"fas-file-download\", '\\uf56d'),\n    FILE_EXCEL(\"fas-file-excel\", '\\uf1c3'),\n    FILE_EXPORT(\"fas-file-export\", '\\uf56e'),\n    FILE_IMAGE(\"fas-file-image\", '\\uf1c5'),\n    FILE_IMPORT(\"fas-file-import\", '\\uf56f'),\n    FILE_INVOICE(\"fas-file-invoice\", '\\uf570'),\n    FILE_INVOICE_DOLLAR(\"fas-file-invoice-dollar\", '\\uf571'),\n    FILE_MEDICAL(\"fas-file-medical\", '\\uf477'),\n    FILE_MEDICAL_ALT(\"fas-file-medical-alt\", '\\uf478'),\n    FILE_PDF(\"fas-file-pdf\", '\\uf1c1'),\n    FILE_POWERPOINT(\"fas-file-powerpoint\", '\\uf1c4'),\n    FILE_PRESCRIPTION(\"fas-file-prescription\", '\\uf572'),\n    FILE_SIGNATURE(\"fas-file-signature\", '\\uf573'),\n    FILE_UPLOAD(\"fas-file-upload\", '\\uf574'),\n    FILE_VIDEO(\"fas-file-video\", '\\uf1c8'),\n    FILE_WORD(\"fas-file-word\", '\\uf1c2'),\n    FILL(\"fas-fill\", '\\uf575'),\n    FILL_DRIP(\"fas-fill-drip\", '\\uf576'),\n    FILM(\"fas-film\", '\\uf008'),\n    FILTER(\"fas-filter\", '\\uf0b0'),\n    FINGERPRINT(\"fas-fingerprint\", '\\uf577'),\n    FIRE(\"fas-fire\", '\\uf06d'),\n    FIRE_ALT(\"fas-fire-alt\", '\\uf7e4'),\n    FIRE_EXTINGUISHER(\"fas-fire-extinguisher\", '\\uf134'),\n    FIRST_AID(\"fas-first-aid\", '\\uf479'),\n    FISH(\"fas-fish\", '\\uf578'),\n    FIST_RAISED(\"fas-fist-raised\", '\\uf6de'),\n    FLAG(\"fas-flag\", '\\uf024'),\n    FLAG_CHECKERED(\"fas-flag-checkered\", '\\uf11e'),\n    FLAG_USA(\"fas-flag-usa\", '\\uf74d'),\n    FLASK(\"fas-flask\", '\\uf0c3'),\n    FLUSHED(\"fas-flushed\", '\\uf579'),\n    FOLDER(\"fas-folder\", '\\uf07b'),\n    FOLDER_MINUS(\"fas-folder-minus\", '\\uf65d'),\n    FOLDER_OPEN(\"fas-folder-open\", '\\uf07c'),\n    FOLDER_PLUS(\"fas-folder-plus\", '\\uf65e'),\n    FONT(\"fas-font\", '\\uf031'),\n    FOOTBALL_BALL(\"fas-football-ball\", '\\uf44e'),\n    FORWARD(\"fas-forward\", '\\uf04e'),\n    FROG(\"fas-frog\", '\\uf52e'),\n    FROWN(\"fas-frown\", '\\uf119'),\n    FROWN_OPEN(\"fas-frown-open\", '\\uf57a'),\n    FUNNEL_DOLLAR(\"fas-funnel-dollar\", '\\uf662'),\n    FUTBOL(\"fas-futbol\", '\\uf1e3'),\n    GAMEPAD(\"fas-gamepad\", '\\uf11b'),\n    GAS_PUMP(\"fas-gas-pump\", '\\uf52f'),\n    GAVEL(\"fas-gavel\", '\\uf0e3'),\n    GEM(\"fas-gem\", '\\uf3a5'),\n    GENDERLESS(\"fas-genderless\", '\\uf22d'),\n    GHOST(\"fas-ghost\", '\\uf6e2'),\n    GIFT(\"fas-gift\", '\\uf06b'),\n    GIFTS(\"fas-gifts\", '\\uf79c'),\n    GLASSES(\"fas-glasses\", '\\uf530'),\n    GLASS_CHEERS(\"fas-glass-cheers\", '\\uf79f'),\n    GLASS_MARTINI(\"fas-glass-martini\", '\\uf000'),\n    GLASS_MARTINI_ALT(\"fas-glass-martini-alt\", '\\uf57b'),\n    GLASS_WHISKEY(\"fas-glass-whiskey\", '\\uf7a0'),\n    GLOBE(\"fas-globe\", '\\uf0ac'),\n    GLOBE_AFRICA(\"fas-globe-africa\", '\\uf57c'),\n    GLOBE_AMERICAS(\"fas-globe-americas\", '\\uf57d'),\n    GLOBE_ASIA(\"fas-globe-asia\", '\\uf57e'),\n    GLOBE_EUROPE(\"fas-globe-europe\", '\\uf7a2'),\n    GOLF_BALL(\"fas-golf-ball\", '\\uf450'),\n    GOPURAM(\"fas-gopuram\", '\\uf664'),\n    GRADUATION_CAP(\"fas-graduation-cap\", '\\uf19d'),\n    GREATER_THAN(\"fas-greater-than\", '\\uf531'),\n    GREATER_THAN_EQUAL(\"fas-greater-than-equal\", '\\uf532'),\n    GRIMACE(\"fas-grimace\", '\\uf57f'),\n    GRIN(\"fas-grin\", '\\uf580'),\n    GRIN_ALT(\"fas-grin-alt\", '\\uf581'),\n    GRIN_BEAM(\"fas-grin-beam\", '\\uf582'),\n    GRIN_BEAM_SWEAT(\"fas-grin-beam-sweat\", '\\uf583'),\n    GRIN_HEARTS(\"fas-grin-hearts\", '\\uf584'),\n    GRIN_SQUINT(\"fas-grin-squint\", '\\uf585'),\n    GRIN_SQUINT_TEARS(\"fas-grin-squint-tears\", '\\uf586'),\n    GRIN_STARS(\"fas-grin-stars\", '\\uf587'),\n    GRIN_TEARS(\"fas-grin-tears\", '\\uf588'),\n    GRIN_TONGUE(\"fas-grin-tongue\", '\\uf589'),\n    GRIN_TONGUE_SQUINT(\"fas-grin-tongue-squint\", '\\uf58a'),\n    GRIN_TONGUE_WINK(\"fas-grin-tongue-wink\", '\\uf58b'),\n    GRIN_WINK(\"fas-grin-wink\", '\\uf58c'),\n    GRIP_HORIZONTAL(\"fas-grip-horizontal\", '\\uf58d'),\n    GRIP_LINES(\"fas-grip-lines\", '\\uf7a4'),\n    GRIP_LINES_VERTICAL(\"fas-grip-lines-vertical\", '\\uf7a5'),\n    GRIP_VERTICAL(\"fas-grip-vertical\", '\\uf58e'),\n    GUITAR(\"fas-guitar\", '\\uf7a6'),\n    HAMBURGER(\"fas-hamburger\", '\\uf805'),\n    HAMMER(\"fas-hammer\", '\\uf6e3'),\n    HAMSA(\"fas-hamsa\", '\\uf665'),\n    HANDS(\"fas-hands\", '\\uf4c2'),\n    HANDSHAKE(\"fas-handshake\", '\\uf2b5'),\n    HANDSHAKE_ALT_SLASH(\"fas-handshake-alt-slash\", '\\ue05f'),\n    HANDSHAKE_SLASH(\"fas-handshake-slash\", '\\ue060'),\n    HANDS_HELPING(\"fas-hands-helping\", '\\uf4c4'),\n    HANDS_WASH(\"fas-hands-wash\", '\\ue05e'),\n    HAND_HOLDING(\"fas-hand-holding\", '\\uf4bd'),\n    HAND_HOLDING_HEART(\"fas-hand-holding-heart\", '\\uf4be'),\n    HAND_HOLDING_MEDICAL(\"fas-hand-holding-medical\", '\\ue05c'),\n    HAND_HOLDING_USD(\"fas-hand-holding-usd\", '\\uf4c0'),\n    HAND_HOLDING_WATER(\"fas-hand-holding-water\", '\\uf4c1'),\n    HAND_LIZARD(\"fas-hand-lizard\", '\\uf258'),\n    HAND_MIDDLE_FINGER(\"fas-hand-middle-finger\", '\\uf806'),\n    HAND_PAPER(\"fas-hand-paper\", '\\uf256'),\n    HAND_PEACE(\"fas-hand-peace\", '\\uf25b'),\n    HAND_POINTER(\"fas-hand-pointer\", '\\uf25a'),\n    HAND_POINT_DOWN(\"fas-hand-point-down\", '\\uf0a7'),\n    HAND_POINT_LEFT(\"fas-hand-point-left\", '\\uf0a5'),\n    HAND_POINT_RIGHT(\"fas-hand-point-right\", '\\uf0a4'),\n    HAND_POINT_UP(\"fas-hand-point-up\", '\\uf0a6'),\n    HAND_ROCK(\"fas-hand-rock\", '\\uf255'),\n    HAND_SCISSORS(\"fas-hand-scissors\", '\\uf257'),\n    HAND_SPARKLES(\"fas-hand-sparkles\", '\\ue05d'),\n    HAND_SPOCK(\"fas-hand-spock\", '\\uf259'),\n    HANUKIAH(\"fas-hanukiah\", '\\uf6e6'),\n    HARD_HAT(\"fas-hard-hat\", '\\uf807'),\n    HASHTAG(\"fas-hashtag\", '\\uf292'),\n    HAT_COWBOY(\"fas-hat-cowboy\", '\\uf8c0'),\n    HAT_COWBOY_SIDE(\"fas-hat-cowboy-side\", '\\uf8c1'),\n    HAT_WIZARD(\"fas-hat-wizard\", '\\uf6e8'),\n    HDD(\"fas-hdd\", '\\uf0a0'),\n    HEADING(\"fas-heading\", '\\uf1dc'),\n    HEADPHONES(\"fas-headphones\", '\\uf025'),\n    HEADPHONES_ALT(\"fas-headphones-alt\", '\\uf58f'),\n    HEADSET(\"fas-headset\", '\\uf590'),\n    HEAD_SIDE_COUGH(\"fas-head-side-cough\", '\\ue061'),\n    HEAD_SIDE_COUGH_SLASH(\"fas-head-side-cough-slash\", '\\ue062'),\n    HEAD_SIDE_MASK(\"fas-head-side-mask\", '\\ue063'),\n    HEAD_SIDE_VIRUS(\"fas-head-side-virus\", '\\ue064'),\n    HEART(\"fas-heart\", '\\uf004'),\n    HEARTBEAT(\"fas-heartbeat\", '\\uf21e'),\n    HEART_BROKEN(\"fas-heart-broken\", '\\uf7a9'),\n    HELICOPTER(\"fas-helicopter\", '\\uf533'),\n    HIGHLIGHTER(\"fas-highlighter\", '\\uf591'),\n    HIKING(\"fas-hiking\", '\\uf6ec'),\n    HIPPO(\"fas-hippo\", '\\uf6ed'),\n    HISTORY(\"fas-history\", '\\uf1da'),\n    HOCKEY_PUCK(\"fas-hockey-puck\", '\\uf453'),\n    HOLLY_BERRY(\"fas-holly-berry\", '\\uf7aa'),\n    HOME(\"fas-home\", '\\uf015'),\n    HORSE(\"fas-horse\", '\\uf6f0'),\n    HORSE_HEAD(\"fas-horse-head\", '\\uf7ab'),\n    HOSPITAL(\"fas-hospital\", '\\uf0f8'),\n    HOSPITAL_ALT(\"fas-hospital-alt\", '\\uf47d'),\n    HOSPITAL_SYMBOL(\"fas-hospital-symbol\", '\\uf47e'),\n    HOSPITAL_USER(\"fas-hospital-user\", '\\uf80d'),\n    HOTDOG(\"fas-hotdog\", '\\uf80f'),\n    HOTEL(\"fas-hotel\", '\\uf594'),\n    HOT_TUB(\"fas-hot-tub\", '\\uf593'),\n    HOURGLASS(\"fas-hourglass\", '\\uf254'),\n    HOURGLASS_END(\"fas-hourglass-end\", '\\uf253'),\n    HOURGLASS_HALF(\"fas-hourglass-half\", '\\uf252'),\n    HOURGLASS_START(\"fas-hourglass-start\", '\\uf251'),\n    HOUSE_DAMAGE(\"fas-house-damage\", '\\uf6f1'),\n    HOUSE_USER(\"fas-house-user\", '\\ue065'),\n    HRYVNIA(\"fas-hryvnia\", '\\uf6f2'),\n    H_SQUARE(\"fas-h-square\", '\\uf0fd'),\n    ICE_CREAM(\"fas-ice-cream\", '\\uf810'),\n    ICICLES(\"fas-icicles\", '\\uf7ad'),\n    ICONS(\"fas-icons\", '\\uf86d'),\n    ID_BADGE(\"fas-id-badge\", '\\uf2c1'),\n    ID_CARD(\"fas-id-card\", '\\uf2c2'),\n    ID_CARD_ALT(\"fas-id-card-alt\", '\\uf47f'),\n    IGLOO(\"fas-igloo\", '\\uf7ae'),\n    IMAGE(\"fas-image\", '\\uf03e'),\n    IMAGES(\"fas-images\", '\\uf302'),\n    INBOX(\"fas-inbox\", '\\uf01c'),\n    INDENT(\"fas-indent\", '\\uf03c'),\n    INDUSTRY(\"fas-industry\", '\\uf275'),\n    INFINITY(\"fas-infinity\", '\\uf534'),\n    INFO(\"fas-info\", '\\uf129'),\n    INFO_CIRCLE(\"fas-info-circle\", '\\uf05a'),\n    ITALIC(\"fas-italic\", '\\uf033'),\n    I_CURSOR(\"fas-i-cursor\", '\\uf246'),\n    JEDI(\"fas-jedi\", '\\uf669'),\n    JOINT(\"fas-joint\", '\\uf595'),\n    JOURNAL_WHILLS(\"fas-journal-whills\", '\\uf66a'),\n    KAABA(\"fas-kaaba\", '\\uf66b'),\n    KEY(\"fas-key\", '\\uf084'),\n    KEYBOARD(\"fas-keyboard\", '\\uf11c'),\n    KHANDA(\"fas-khanda\", '\\uf66d'),\n    KISS(\"fas-kiss\", '\\uf596'),\n    KISS_BEAM(\"fas-kiss-beam\", '\\uf597'),\n    KISS_WINK_HEART(\"fas-kiss-wink-heart\", '\\uf598'),\n    KIWI_BIRD(\"fas-kiwi-bird\", '\\uf535'),\n    LANDMARK(\"fas-landmark\", '\\uf66f'),\n    LANGUAGE(\"fas-language\", '\\uf1ab'),\n    LAPTOP(\"fas-laptop\", '\\uf109'),\n    LAPTOP_CODE(\"fas-laptop-code\", '\\uf5fc'),\n    LAPTOP_HOUSE(\"fas-laptop-house\", '\\ue066'),\n    LAPTOP_MEDICAL(\"fas-laptop-medical\", '\\uf812'),\n    LAUGH(\"fas-laugh\", '\\uf599'),\n    LAUGH_BEAM(\"fas-laugh-beam\", '\\uf59a'),\n    LAUGH_SQUINT(\"fas-laugh-squint\", '\\uf59b'),\n    LAUGH_WINK(\"fas-laugh-wink\", '\\uf59c'),\n    LAYER_GROUP(\"fas-layer-group\", '\\uf5fd'),\n    LEAF(\"fas-leaf\", '\\uf06c'),\n    LEMON(\"fas-lemon\", '\\uf094'),\n    LESS_THAN(\"fas-less-than\", '\\uf536'),\n    LESS_THAN_EQUAL(\"fas-less-than-equal\", '\\uf537'),\n    LEVEL_DOWN_ALT(\"fas-level-down-alt\", '\\uf3be'),\n    LEVEL_UP_ALT(\"fas-level-up-alt\", '\\uf3bf'),\n    LIFE_RING(\"fas-life-ring\", '\\uf1cd'),\n    LIGHTBULB(\"fas-lightbulb\", '\\uf0eb'),\n    LINK(\"fas-link\", '\\uf0c1'),\n    LIRA_SIGN(\"fas-lira-sign\", '\\uf195'),\n    LIST(\"fas-list\", '\\uf03a'),\n    LIST_ALT(\"fas-list-alt\", '\\uf022'),\n    LIST_OL(\"fas-list-ol\", '\\uf0cb'),\n    LIST_UL(\"fas-list-ul\", '\\uf0ca'),\n    LOCATION_ARROW(\"fas-location-arrow\", '\\uf124'),\n    LOCK(\"fas-lock\", '\\uf023'),\n    LOCK_OPEN(\"fas-lock-open\", '\\uf3c1'),\n    LONG_ARROW_ALT_DOWN(\"fas-long-arrow-alt-down\", '\\uf309'),\n    LONG_ARROW_ALT_LEFT(\"fas-long-arrow-alt-left\", '\\uf30a'),\n    LONG_ARROW_ALT_RIGHT(\"fas-long-arrow-alt-right\", '\\uf30b'),\n    LONG_ARROW_ALT_UP(\"fas-long-arrow-alt-up\", '\\uf30c'),\n    LOW_VISION(\"fas-low-vision\", '\\uf2a8'),\n    LUGGAGE_CART(\"fas-luggage-cart\", '\\uf59d'),\n    LUNGS(\"fas-lungs\", '\\uf604'),\n    LUNGS_VIRUS(\"fas-lungs-virus\", '\\ue067'),\n    MAGIC(\"fas-magic\", '\\uf0d0'),\n    MAGNET(\"fas-magnet\", '\\uf076'),\n    MAIL_BULK(\"fas-mail-bulk\", '\\uf674'),\n    MALE(\"fas-male\", '\\uf183'),\n    MAP(\"fas-map\", '\\uf279'),\n    MAP_MARKED(\"fas-map-marked\", '\\uf59f'),\n    MAP_MARKED_ALT(\"fas-map-marked-alt\", '\\uf5a0'),\n    MAP_MARKER(\"fas-map-marker\", '\\uf041'),\n    MAP_MARKER_ALT(\"fas-map-marker-alt\", '\\uf3c5'),\n    MAP_PIN(\"fas-map-pin\", '\\uf276'),\n    MAP_SIGNS(\"fas-map-signs\", '\\uf277'),\n    MARKER(\"fas-marker\", '\\uf5a1'),\n    MARS(\"fas-mars\", '\\uf222'),\n    MARS_DOUBLE(\"fas-mars-double\", '\\uf227'),\n    MARS_STROKE(\"fas-mars-stroke\", '\\uf229'),\n    MARS_STROKE_H(\"fas-mars-stroke-h\", '\\uf22b'),\n    MARS_STROKE_V(\"fas-mars-stroke-v\", '\\uf22a'),\n    MASK(\"fas-mask\", '\\uf6fa'),\n    MEDAL(\"fas-medal\", '\\uf5a2'),\n    MEDKIT(\"fas-medkit\", '\\uf0fa'),\n    MEH(\"fas-meh\", '\\uf11a'),\n    MEH_BLANK(\"fas-meh-blank\", '\\uf5a4'),\n    MEH_ROLLING_EYES(\"fas-meh-rolling-eyes\", '\\uf5a5'),\n    MEMORY(\"fas-memory\", '\\uf538'),\n    MENORAH(\"fas-menorah\", '\\uf676'),\n    MERCURY(\"fas-mercury\", '\\uf223'),\n    METEOR(\"fas-meteor\", '\\uf753'),\n    MICROCHIP(\"fas-microchip\", '\\uf2db'),\n    MICROPHONE(\"fas-microphone\", '\\uf130'),\n    MICROPHONE_ALT(\"fas-microphone-alt\", '\\uf3c9'),\n    MICROPHONE_ALT_SLASH(\"fas-microphone-alt-slash\", '\\uf539'),\n    MICROPHONE_SLASH(\"fas-microphone-slash\", '\\uf131'),\n    MICROSCOPE(\"fas-microscope\", '\\uf610'),\n    MINUS(\"fas-minus\", '\\uf068'),\n    MINUS_CIRCLE(\"fas-minus-circle\", '\\uf056'),\n    MINUS_SQUARE(\"fas-minus-square\", '\\uf146'),\n    MITTEN(\"fas-mitten\", '\\uf7b5'),\n    MOBILE(\"fas-mobile\", '\\uf10b'),\n    MOBILE_ALT(\"fas-mobile-alt\", '\\uf3cd'),\n    MONEY_BILL(\"fas-money-bill\", '\\uf0d6'),\n    MONEY_BILL_ALT(\"fas-money-bill-alt\", '\\uf3d1'),\n    MONEY_BILL_WAVE(\"fas-money-bill-wave\", '\\uf53a'),\n    MONEY_BILL_WAVE_ALT(\"fas-money-bill-wave-alt\", '\\uf53b'),\n    MONEY_CHECK(\"fas-money-check\", '\\uf53c'),\n    MONEY_CHECK_ALT(\"fas-money-check-alt\", '\\uf53d'),\n    MONUMENT(\"fas-monument\", '\\uf5a6'),\n    MOON(\"fas-moon\", '\\uf186'),\n    MORTAR_PESTLE(\"fas-mortar-pestle\", '\\uf5a7'),\n    MOSQUE(\"fas-mosque\", '\\uf678'),\n    MOTORCYCLE(\"fas-motorcycle\", '\\uf21c'),\n    MOUNTAIN(\"fas-mountain\", '\\uf6fc'),\n    MOUSE(\"fas-mouse\", '\\uf8cc'),\n    MOUSE_POINTER(\"fas-mouse-pointer\", '\\uf245'),\n    MUG_HOT(\"fas-mug-hot\", '\\uf7b6'),\n    MUSIC(\"fas-music\", '\\uf001'),\n    NETWORK_WIRED(\"fas-network-wired\", '\\uf6ff'),\n    NEUTER(\"fas-neuter\", '\\uf22c'),\n    NEWSPAPER(\"fas-newspaper\", '\\uf1ea'),\n    NOTES_MEDICAL(\"fas-notes-medical\", '\\uf481'),\n    NOT_EQUAL(\"fas-not-equal\", '\\uf53e'),\n    OBJECT_GROUP(\"fas-object-group\", '\\uf247'),\n    OBJECT_UNGROUP(\"fas-object-ungroup\", '\\uf248'),\n    OIL_CAN(\"fas-oil-can\", '\\uf613'),\n    OM(\"fas-om\", '\\uf679'),\n    OTTER(\"fas-otter\", '\\uf700'),\n    OUTDENT(\"fas-outdent\", '\\uf03b'),\n    PAGER(\"fas-pager\", '\\uf815'),\n    PAINT_BRUSH(\"fas-paint-brush\", '\\uf1fc'),\n    PAINT_ROLLER(\"fas-paint-roller\", '\\uf5aa'),\n    PALETTE(\"fas-palette\", '\\uf53f'),\n    PALLET(\"fas-pallet\", '\\uf482'),\n    PAPERCLIP(\"fas-paperclip\", '\\uf0c6'),\n    PAPER_PLANE(\"fas-paper-plane\", '\\uf1d8'),\n    PARACHUTE_BOX(\"fas-parachute-box\", '\\uf4cd'),\n    PARAGRAPH(\"fas-paragraph\", '\\uf1dd'),\n    PARKING(\"fas-parking\", '\\uf540'),\n    PASSPORT(\"fas-passport\", '\\uf5ab'),\n    PASTAFARIANISM(\"fas-pastafarianism\", '\\uf67b'),\n    PASTE(\"fas-paste\", '\\uf0ea'),\n    PAUSE(\"fas-pause\", '\\uf04c'),\n    PAUSE_CIRCLE(\"fas-pause-circle\", '\\uf28b'),\n    PAW(\"fas-paw\", '\\uf1b0'),\n    PEACE(\"fas-peace\", '\\uf67c'),\n    PEN(\"fas-pen\", '\\uf304'),\n    PENCIL_ALT(\"fas-pencil-alt\", '\\uf303'),\n    PENCIL_RULER(\"fas-pencil-ruler\", '\\uf5ae'),\n    PEN_ALT(\"fas-pen-alt\", '\\uf305'),\n    PEN_FANCY(\"fas-pen-fancy\", '\\uf5ac'),\n    PEN_NIB(\"fas-pen-nib\", '\\uf5ad'),\n    PEN_SQUARE(\"fas-pen-square\", '\\uf14b'),\n    PEOPLE_ARROWS(\"fas-people-arrows\", '\\ue068'),\n    PEOPLE_CARRY(\"fas-people-carry\", '\\uf4ce'),\n    PEPPER_HOT(\"fas-pepper-hot\", '\\uf816'),\n    PERCENT(\"fas-percent\", '\\uf295'),\n    PERCENTAGE(\"fas-percentage\", '\\uf541'),\n    PERSON_BOOTH(\"fas-person-booth\", '\\uf756'),\n    PHONE(\"fas-phone\", '\\uf095'),\n    PHONE_ALT(\"fas-phone-alt\", '\\uf879'),\n    PHONE_SLASH(\"fas-phone-slash\", '\\uf3dd'),\n    PHONE_SQUARE(\"fas-phone-square\", '\\uf098'),\n    PHONE_SQUARE_ALT(\"fas-phone-square-alt\", '\\uf87b'),\n    PHONE_VOLUME(\"fas-phone-volume\", '\\uf2a0'),\n    PHOTO_VIDEO(\"fas-photo-video\", '\\uf87c'),\n    PIGGY_BANK(\"fas-piggy-bank\", '\\uf4d3'),\n    PILLS(\"fas-pills\", '\\uf484'),\n    PIZZA_SLICE(\"fas-pizza-slice\", '\\uf818'),\n    PLACE_OF_WORSHIP(\"fas-place-of-worship\", '\\uf67f'),\n    PLANE(\"fas-plane\", '\\uf072'),\n    PLANE_ARRIVAL(\"fas-plane-arrival\", '\\uf5af'),\n    PLANE_DEPARTURE(\"fas-plane-departure\", '\\uf5b0'),\n    PLANE_SLASH(\"fas-plane-slash\", '\\ue069'),\n    PLAY(\"fas-play\", '\\uf04b'),\n    PLAY_CIRCLE(\"fas-play-circle\", '\\uf144'),\n    PLUG(\"fas-plug\", '\\uf1e6'),\n    PLUS(\"fas-plus\", '\\uf067'),\n    PLUS_CIRCLE(\"fas-plus-circle\", '\\uf055'),\n    PLUS_SQUARE(\"fas-plus-square\", '\\uf0fe'),\n    PODCAST(\"fas-podcast\", '\\uf2ce'),\n    POLL(\"fas-poll\", '\\uf681'),\n    POLL_H(\"fas-poll-h\", '\\uf682'),\n    POO(\"fas-poo\", '\\uf2fe'),\n    POOP(\"fas-poop\", '\\uf619'),\n    POO_STORM(\"fas-poo-storm\", '\\uf75a'),\n    PORTRAIT(\"fas-portrait\", '\\uf3e0'),\n    POUND_SIGN(\"fas-pound-sign\", '\\uf154'),\n    POWER_OFF(\"fas-power-off\", '\\uf011'),\n    PRAY(\"fas-pray\", '\\uf683'),\n    PRAYING_HANDS(\"fas-praying-hands\", '\\uf684'),\n    PRESCRIPTION(\"fas-prescription\", '\\uf5b1'),\n    PRESCRIPTION_BOTTLE(\"fas-prescription-bottle\", '\\uf485'),\n    PRESCRIPTION_BOTTLE_ALT(\"fas-prescription-bottle-alt\", '\\uf486'),\n    PRINT(\"fas-print\", '\\uf02f'),\n    PROCEDURES(\"fas-procedures\", '\\uf487'),\n    PROJECT_DIAGRAM(\"fas-project-diagram\", '\\uf542'),\n    PUMP_MEDICAL(\"fas-pump-medical\", '\\ue06a'),\n    PUMP_SOAP(\"fas-pump-soap\", '\\ue06b'),\n    PUZZLE_PIECE(\"fas-puzzle-piece\", '\\uf12e'),\n    QRCODE(\"fas-qrcode\", '\\uf029'),\n    QUESTION(\"fas-question\", '\\uf128'),\n    QUESTION_CIRCLE(\"fas-question-circle\", '\\uf059'),\n    QUIDDITCH(\"fas-quidditch\", '\\uf458'),\n    QUOTE_LEFT(\"fas-quote-left\", '\\uf10d'),\n    QUOTE_RIGHT(\"fas-quote-right\", '\\uf10e'),\n    QURAN(\"fas-quran\", '\\uf687'),\n    RADIATION(\"fas-radiation\", '\\uf7b9'),\n    RADIATION_ALT(\"fas-radiation-alt\", '\\uf7ba'),\n    RAINBOW(\"fas-rainbow\", '\\uf75b'),\n    RANDOM(\"fas-random\", '\\uf074'),\n    RECEIPT(\"fas-receipt\", '\\uf543'),\n    RECORD_VINYL(\"fas-record-vinyl\", '\\uf8d9'),\n    RECYCLE(\"fas-recycle\", '\\uf1b8'),\n    REDO(\"fas-redo\", '\\uf01e'),\n    REDO_ALT(\"fas-redo-alt\", '\\uf2f9'),\n    REGISTERED(\"fas-registered\", '\\uf25d'),\n    REMOVE_FORMAT(\"fas-remove-format\", '\\uf87d'),\n    REPLY(\"fas-reply\", '\\uf3e5'),\n    REPLY_ALL(\"fas-reply-all\", '\\uf122'),\n    REPUBLICAN(\"fas-republican\", '\\uf75e'),\n    RESTROOM(\"fas-restroom\", '\\uf7bd'),\n    RETWEET(\"fas-retweet\", '\\uf079'),\n    RIBBON(\"fas-ribbon\", '\\uf4d6'),\n    RING(\"fas-ring\", '\\uf70b'),\n    ROAD(\"fas-road\", '\\uf018'),\n    ROBOT(\"fas-robot\", '\\uf544'),\n    ROCKET(\"fas-rocket\", '\\uf135'),\n    ROUTE(\"fas-route\", '\\uf4d7'),\n    RSS(\"fas-rss\", '\\uf09e'),\n    RSS_SQUARE(\"fas-rss-square\", '\\uf143'),\n    RUBLE_SIGN(\"fas-ruble-sign\", '\\uf158'),\n    RULER(\"fas-ruler\", '\\uf545'),\n    RULER_COMBINED(\"fas-ruler-combined\", '\\uf546'),\n    RULER_HORIZONTAL(\"fas-ruler-horizontal\", '\\uf547'),\n    RULER_VERTICAL(\"fas-ruler-vertical\", '\\uf548'),\n    RUNNING(\"fas-running\", '\\uf70c'),\n    RUPEE_SIGN(\"fas-rupee-sign\", '\\uf156'),\n    SAD_CRY(\"fas-sad-cry\", '\\uf5b3'),\n    SAD_TEAR(\"fas-sad-tear\", '\\uf5b4'),\n    SATELLITE(\"fas-satellite\", '\\uf7bf'),\n    SATELLITE_DISH(\"fas-satellite-dish\", '\\uf7c0'),\n    SAVE(\"fas-save\", '\\uf0c7'),\n    SCHOOL(\"fas-school\", '\\uf549'),\n    SCREWDRIVER(\"fas-screwdriver\", '\\uf54a'),\n    SCROLL(\"fas-scroll\", '\\uf70e'),\n    SD_CARD(\"fas-sd-card\", '\\uf7c2'),\n    SEARCH(\"fas-search\", '\\uf002'),\n    SEARCH_DOLLAR(\"fas-search-dollar\", '\\uf688'),\n    SEARCH_LOCATION(\"fas-search-location\", '\\uf689'),\n    SEARCH_MINUS(\"fas-search-minus\", '\\uf010'),\n    SEARCH_PLUS(\"fas-search-plus\", '\\uf00e'),\n    SEEDLING(\"fas-seedling\", '\\uf4d8'),\n    SERVER(\"fas-server\", '\\uf233'),\n    SHAPES(\"fas-shapes\", '\\uf61f'),\n    SHARE(\"fas-share\", '\\uf064'),\n    SHARE_ALT(\"fas-share-alt\", '\\uf1e0'),\n    SHARE_ALT_SQUARE(\"fas-share-alt-square\", '\\uf1e1'),\n    SHARE_SQUARE(\"fas-share-square\", '\\uf14d'),\n    SHEKEL_SIGN(\"fas-shekel-sign\", '\\uf20b'),\n    SHIELD_ALT(\"fas-shield-alt\", '\\uf3ed'),\n    SHIELD_VIRUS(\"fas-shield-virus\", '\\ue06c'),\n    SHIP(\"fas-ship\", '\\uf21a'),\n    SHIPPING_FAST(\"fas-shipping-fast\", '\\uf48b'),\n    SHOE_PRINTS(\"fas-shoe-prints\", '\\uf54b'),\n    SHOPPING_BAG(\"fas-shopping-bag\", '\\uf290'),\n    SHOPPING_BASKET(\"fas-shopping-basket\", '\\uf291'),\n    SHOPPING_CART(\"fas-shopping-cart\", '\\uf07a'),\n    SHOWER(\"fas-shower\", '\\uf2cc'),\n    SHUTTLE_VAN(\"fas-shuttle-van\", '\\uf5b6'),\n    SIGN(\"fas-sign\", '\\uf4d9'),\n    SIGNAL(\"fas-signal\", '\\uf012'),\n    SIGNATURE(\"fas-signature\", '\\uf5b7'),\n    SIGN_IN_ALT(\"fas-sign-in-alt\", '\\uf2f6'),\n    SIGN_LANGUAGE(\"fas-sign-language\", '\\uf2a7'),\n    SIGN_OUT_ALT(\"fas-sign-out-alt\", '\\uf2f5'),\n    SIM_CARD(\"fas-sim-card\", '\\uf7c4'),\n    SINK(\"fas-sink\", '\\ue06d'),\n    SITEMAP(\"fas-sitemap\", '\\uf0e8'),\n    SKATING(\"fas-skating\", '\\uf7c5'),\n    SKIING(\"fas-skiing\", '\\uf7c9'),\n    SKIING_NORDIC(\"fas-skiing-nordic\", '\\uf7ca'),\n    SKULL(\"fas-skull\", '\\uf54c'),\n    SKULL_CROSSBONES(\"fas-skull-crossbones\", '\\uf714'),\n    SLASH(\"fas-slash\", '\\uf715'),\n    SLEIGH(\"fas-sleigh\", '\\uf7cc'),\n    SLIDERS_H(\"fas-sliders-h\", '\\uf1de'),\n    SMILE(\"fas-smile\", '\\uf118'),\n    SMILE_BEAM(\"fas-smile-beam\", '\\uf5b8'),\n    SMILE_WINK(\"fas-smile-wink\", '\\uf4da'),\n    SMOG(\"fas-smog\", '\\uf75f'),\n    SMOKING(\"fas-smoking\", '\\uf48d'),\n    SMOKING_BAN(\"fas-smoking-ban\", '\\uf54d'),\n    SMS(\"fas-sms\", '\\uf7cd'),\n    SNOWBOARDING(\"fas-snowboarding\", '\\uf7ce'),\n    SNOWFLAKE(\"fas-snowflake\", '\\uf2dc'),\n    SNOWMAN(\"fas-snowman\", '\\uf7d0'),\n    SNOWPLOW(\"fas-snowplow\", '\\uf7d2'),\n    SOAP(\"fas-soap\", '\\ue06e'),\n    SOCKS(\"fas-socks\", '\\uf696'),\n    SOLAR_PANEL(\"fas-solar-panel\", '\\uf5ba'),\n    SORT(\"fas-sort\", '\\uf0dc'),\n    SORT_ALPHA_DOWN(\"fas-sort-alpha-down\", '\\uf15d'),\n    SORT_ALPHA_DOWN_ALT(\"fas-sort-alpha-down-alt\", '\\uf881'),\n    SORT_ALPHA_UP(\"fas-sort-alpha-up\", '\\uf15e'),\n    SORT_ALPHA_UP_ALT(\"fas-sort-alpha-up-alt\", '\\uf882'),\n    SORT_AMOUNT_DOWN(\"fas-sort-amount-down\", '\\uf160'),\n    SORT_AMOUNT_DOWN_ALT(\"fas-sort-amount-down-alt\", '\\uf884'),\n    SORT_AMOUNT_UP(\"fas-sort-amount-up\", '\\uf161'),\n    SORT_AMOUNT_UP_ALT(\"fas-sort-amount-up-alt\", '\\uf885'),\n    SORT_DOWN(\"fas-sort-down\", '\\uf0dd'),\n    SORT_NUMERIC_DOWN(\"fas-sort-numeric-down\", '\\uf162'),\n    SORT_NUMERIC_DOWN_ALT(\"fas-sort-numeric-down-alt\", '\\uf886'),\n    SORT_NUMERIC_UP(\"fas-sort-numeric-up\", '\\uf163'),\n    SORT_NUMERIC_UP_ALT(\"fas-sort-numeric-up-alt\", '\\uf887'),\n    SORT_UP(\"fas-sort-up\", '\\uf0de'),\n    SPA(\"fas-spa\", '\\uf5bb'),\n    SPACE_SHUTTLE(\"fas-space-shuttle\", '\\uf197'),\n    SPELL_CHECK(\"fas-spell-check\", '\\uf891'),\n    SPIDER(\"fas-spider\", '\\uf717'),\n    SPINNER(\"fas-spinner\", '\\uf110'),\n    SPLOTCH(\"fas-splotch\", '\\uf5bc'),\n    SPRAY_CAN(\"fas-spray-can\", '\\uf5bd'),\n    SQUARE(\"fas-square\", '\\uf0c8'),\n    SQUARE_FULL(\"fas-square-full\", '\\uf45c'),\n    SQUARE_ROOT_ALT(\"fas-square-root-alt\", '\\uf698'),\n    STAMP(\"fas-stamp\", '\\uf5bf'),\n    STAR(\"fas-star\", '\\uf005'),\n    STAR_AND_CRESCENT(\"fas-star-and-crescent\", '\\uf699'),\n    STAR_HALF(\"fas-star-half\", '\\uf089'),\n    STAR_HALF_ALT(\"fas-star-half-alt\", '\\uf5c0'),\n    STAR_OF_DAVID(\"fas-star-of-david\", '\\uf69a'),\n    STAR_OF_LIFE(\"fas-star-of-life\", '\\uf621'),\n    STEP_BACKWARD(\"fas-step-backward\", '\\uf048'),\n    STEP_FORWARD(\"fas-step-forward\", '\\uf051'),\n    STETHOSCOPE(\"fas-stethoscope\", '\\uf0f1'),\n    STICKY_NOTE(\"fas-sticky-note\", '\\uf249'),\n    STOP(\"fas-stop\", '\\uf04d'),\n    STOPWATCH(\"fas-stopwatch\", '\\uf2f2'),\n    STOPWATCH_20(\"fas-stopwatch-20\", '\\ue06f'),\n    STOP_CIRCLE(\"fas-stop-circle\", '\\uf28d'),\n    STORE(\"fas-store\", '\\uf54e'),\n    STORE_ALT(\"fas-store-alt\", '\\uf54f'),\n    STORE_ALT_SLASH(\"fas-store-alt-slash\", '\\ue070'),\n    STORE_SLASH(\"fas-store-slash\", '\\ue071'),\n    STREAM(\"fas-stream\", '\\uf550'),\n    STREET_VIEW(\"fas-street-view\", '\\uf21d'),\n    STRIKETHROUGH(\"fas-strikethrough\", '\\uf0cc'),\n    STROOPWAFEL(\"fas-stroopwafel\", '\\uf551'),\n    SUBSCRIPT(\"fas-subscript\", '\\uf12c'),\n    SUBWAY(\"fas-subway\", '\\uf239'),\n    SUITCASE(\"fas-suitcase\", '\\uf0f2'),\n    SUITCASE_ROLLING(\"fas-suitcase-rolling\", '\\uf5c1'),\n    SUN(\"fas-sun\", '\\uf185'),\n    SUPERSCRIPT(\"fas-superscript\", '\\uf12b'),\n    SURPRISE(\"fas-surprise\", '\\uf5c2'),\n    SWATCHBOOK(\"fas-swatchbook\", '\\uf5c3'),\n    SWIMMER(\"fas-swimmer\", '\\uf5c4'),\n    SWIMMING_POOL(\"fas-swimming-pool\", '\\uf5c5'),\n    SYNAGOGUE(\"fas-synagogue\", '\\uf69b'),\n    SYNC(\"fas-sync\", '\\uf021'),\n    SYNC_ALT(\"fas-sync-alt\", '\\uf2f1'),\n    SYRINGE(\"fas-syringe\", '\\uf48e'),\n    TABLE(\"fas-table\", '\\uf0ce'),\n    TABLET(\"fas-tablet\", '\\uf10a'),\n    TABLETS(\"fas-tablets\", '\\uf490'),\n    TABLET_ALT(\"fas-tablet-alt\", '\\uf3fa'),\n    TABLE_TENNIS(\"fas-table-tennis\", '\\uf45d'),\n    TACHOMETER_ALT(\"fas-tachometer-alt\", '\\uf3fd'),\n    TAG(\"fas-tag\", '\\uf02b'),\n    TAGS(\"fas-tags\", '\\uf02c'),\n    TAPE(\"fas-tape\", '\\uf4db'),\n    TASKS(\"fas-tasks\", '\\uf0ae'),\n    TAXI(\"fas-taxi\", '\\uf1ba'),\n    TEETH(\"fas-teeth\", '\\uf62e'),\n    TEETH_OPEN(\"fas-teeth-open\", '\\uf62f'),\n    TEMPERATURE_HIGH(\"fas-temperature-high\", '\\uf769'),\n    TEMPERATURE_LOW(\"fas-temperature-low\", '\\uf76b'),\n    TENGE(\"fas-tenge\", '\\uf7d7'),\n    TERMINAL(\"fas-terminal\", '\\uf120'),\n    TEXT_HEIGHT(\"fas-text-height\", '\\uf034'),\n    TEXT_WIDTH(\"fas-text-width\", '\\uf035'),\n    TH(\"fas-th\", '\\uf00a'),\n    THEATER_MASKS(\"fas-theater-masks\", '\\uf630'),\n    THERMOMETER(\"fas-thermometer\", '\\uf491'),\n    THERMOMETER_EMPTY(\"fas-thermometer-empty\", '\\uf2cb'),\n    THERMOMETER_FULL(\"fas-thermometer-full\", '\\uf2c7'),\n    THERMOMETER_HALF(\"fas-thermometer-half\", '\\uf2c9'),\n    THERMOMETER_QUARTER(\"fas-thermometer-quarter\", '\\uf2ca'),\n    THERMOMETER_THREE_QUARTERS(\"fas-thermometer-three-quarters\", '\\uf2c8'),\n    THUMBS_DOWN(\"fas-thumbs-down\", '\\uf165'),\n    THUMBS_UP(\"fas-thumbs-up\", '\\uf164'),\n    THUMBTACK(\"fas-thumbtack\", '\\uf08d'),\n    TH_LARGE(\"fas-th-large\", '\\uf009'),\n    TH_LIST(\"fas-th-list\", '\\uf00b'),\n    TICKET_ALT(\"fas-ticket-alt\", '\\uf3ff'),\n    TIMES(\"fas-times\", '\\uf00d'),\n    TIMES_CIRCLE(\"fas-times-circle\", '\\uf057'),\n    TINT(\"fas-tint\", '\\uf043'),\n    TINT_SLASH(\"fas-tint-slash\", '\\uf5c7'),\n    TIRED(\"fas-tired\", '\\uf5c8'),\n    TOGGLE_OFF(\"fas-toggle-off\", '\\uf204'),\n    TOGGLE_ON(\"fas-toggle-on\", '\\uf205'),\n    TOILET(\"fas-toilet\", '\\uf7d8'),\n    TOILET_PAPER(\"fas-toilet-paper\", '\\uf71e'),\n    TOILET_PAPER_SLASH(\"fas-toilet-paper-slash\", '\\ue072'),\n    TOOLBOX(\"fas-toolbox\", '\\uf552'),\n    TOOLS(\"fas-tools\", '\\uf7d9'),\n    TOOTH(\"fas-tooth\", '\\uf5c9'),\n    TORAH(\"fas-torah\", '\\uf6a0'),\n    TORII_GATE(\"fas-torii-gate\", '\\uf6a1'),\n    TRACTOR(\"fas-tractor\", '\\uf722'),\n    TRADEMARK(\"fas-trademark\", '\\uf25c'),\n    TRAFFIC_LIGHT(\"fas-traffic-light\", '\\uf637'),\n    TRAILER(\"fas-trailer\", '\\ue041'),\n    TRAIN(\"fas-train\", '\\uf238'),\n    TRAM(\"fas-tram\", '\\uf7da'),\n    TRANSGENDER(\"fas-transgender\", '\\uf224'),\n    TRANSGENDER_ALT(\"fas-transgender-alt\", '\\uf225'),\n    TRASH(\"fas-trash\", '\\uf1f8'),\n    TRASH_ALT(\"fas-trash-alt\", '\\uf2ed'),\n    TRASH_RESTORE(\"fas-trash-restore\", '\\uf829'),\n    TRASH_RESTORE_ALT(\"fas-trash-restore-alt\", '\\uf82a'),\n    TREE(\"fas-tree\", '\\uf1bb'),\n    TROPHY(\"fas-trophy\", '\\uf091'),\n    TRUCK(\"fas-truck\", '\\uf0d1'),\n    TRUCK_LOADING(\"fas-truck-loading\", '\\uf4de'),\n    TRUCK_MONSTER(\"fas-truck-monster\", '\\uf63b'),\n    TRUCK_MOVING(\"fas-truck-moving\", '\\uf4df'),\n    TRUCK_PICKUP(\"fas-truck-pickup\", '\\uf63c'),\n    TSHIRT(\"fas-tshirt\", '\\uf553'),\n    TTY(\"fas-tty\", '\\uf1e4'),\n    TV(\"fas-tv\", '\\uf26c'),\n    UMBRELLA(\"fas-umbrella\", '\\uf0e9'),\n    UMBRELLA_BEACH(\"fas-umbrella-beach\", '\\uf5ca'),\n    UNDERLINE(\"fas-underline\", '\\uf0cd'),\n    UNDO(\"fas-undo\", '\\uf0e2'),\n    UNDO_ALT(\"fas-undo-alt\", '\\uf2ea'),\n    UNIVERSAL_ACCESS(\"fas-universal-access\", '\\uf29a'),\n    UNIVERSITY(\"fas-university\", '\\uf19c'),\n    UNLINK(\"fas-unlink\", '\\uf127'),\n    UNLOCK(\"fas-unlock\", '\\uf09c'),\n    UNLOCK_ALT(\"fas-unlock-alt\", '\\uf13e'),\n    UPLOAD(\"fas-upload\", '\\uf093'),\n    USER(\"fas-user\", '\\uf007'),\n    USERS(\"fas-users\", '\\uf0c0'),\n    USERS_COG(\"fas-users-cog\", '\\uf509'),\n    USERS_SLASH(\"fas-users-slash\", '\\ue073'),\n    USER_ALT(\"fas-user-alt\", '\\uf406'),\n    USER_ALT_SLASH(\"fas-user-alt-slash\", '\\uf4fa'),\n    USER_ASTRONAUT(\"fas-user-astronaut\", '\\uf4fb'),\n    USER_CHECK(\"fas-user-check\", '\\uf4fc'),\n    USER_CIRCLE(\"fas-user-circle\", '\\uf2bd'),\n    USER_CLOCK(\"fas-user-clock\", '\\uf4fd'),\n    USER_COG(\"fas-user-cog\", '\\uf4fe'),\n    USER_EDIT(\"fas-user-edit\", '\\uf4ff'),\n    USER_FRIENDS(\"fas-user-friends\", '\\uf500'),\n    USER_GRADUATE(\"fas-user-graduate\", '\\uf501'),\n    USER_INJURED(\"fas-user-injured\", '\\uf728'),\n    USER_LOCK(\"fas-user-lock\", '\\uf502'),\n    USER_MD(\"fas-user-md\", '\\uf0f0'),\n    USER_MINUS(\"fas-user-minus\", '\\uf503'),\n    USER_NINJA(\"fas-user-ninja\", '\\uf504'),\n    USER_NURSE(\"fas-user-nurse\", '\\uf82f'),\n    USER_PLUS(\"fas-user-plus\", '\\uf234'),\n    USER_SECRET(\"fas-user-secret\", '\\uf21b'),\n    USER_SHIELD(\"fas-user-shield\", '\\uf505'),\n    USER_SLASH(\"fas-user-slash\", '\\uf506'),\n    USER_TAG(\"fas-user-tag\", '\\uf507'),\n    USER_TIE(\"fas-user-tie\", '\\uf508'),\n    USER_TIMES(\"fas-user-times\", '\\uf235'),\n    UTENSILS(\"fas-utensils\", '\\uf2e7'),\n    UTENSIL_SPOON(\"fas-utensil-spoon\", '\\uf2e5'),\n    VECTOR_SQUARE(\"fas-vector-square\", '\\uf5cb'),\n    VENUS(\"fas-venus\", '\\uf221'),\n    VENUS_DOUBLE(\"fas-venus-double\", '\\uf226'),\n    VENUS_MARS(\"fas-venus-mars\", '\\uf228'),\n    VEST(\"fas-vest\", '\\ue085'),\n    VEST_PATCHES(\"fas-vest-patches\", '\\ue086'),\n    VIAL(\"fas-vial\", '\\uf492'),\n    VIALS(\"fas-vials\", '\\uf493'),\n    VIDEO(\"fas-video\", '\\uf03d'),\n    VIDEO_SLASH(\"fas-video-slash\", '\\uf4e2'),\n    VIHARA(\"fas-vihara\", '\\uf6a7'),\n    VIRUS(\"fas-virus\", '\\ue074'),\n    VIRUSES(\"fas-viruses\", '\\ue076'),\n    VIRUS_SLASH(\"fas-virus-slash\", '\\ue075'),\n    VOICEMAIL(\"fas-voicemail\", '\\uf897'),\n    VOLLEYBALL_BALL(\"fas-volleyball-ball\", '\\uf45f'),\n    VOLUME_DOWN(\"fas-volume-down\", '\\uf027'),\n    VOLUME_MUTE(\"fas-volume-mute\", '\\uf6a9'),\n    VOLUME_OFF(\"fas-volume-off\", '\\uf026'),\n    VOLUME_UP(\"fas-volume-up\", '\\uf028'),\n    VOTE_YEA(\"fas-vote-yea\", '\\uf772'),\n    VR_CARDBOARD(\"fas-vr-cardboard\", '\\uf729'),\n    WALKING(\"fas-walking\", '\\uf554'),\n    WALLET(\"fas-wallet\", '\\uf555'),\n    WAREHOUSE(\"fas-warehouse\", '\\uf494'),\n    WATER(\"fas-water\", '\\uf773'),\n    WAVE_SQUARE(\"fas-wave-square\", '\\uf83e'),\n    WEIGHT(\"fas-weight\", '\\uf496'),\n    WEIGHT_HANGING(\"fas-weight-hanging\", '\\uf5cd'),\n    WHEELCHAIR(\"fas-wheelchair\", '\\uf193'),\n    WIFI(\"fas-wifi\", '\\uf1eb'),\n    WIND(\"fas-wind\", '\\uf72e'),\n    WINDOW_CLOSE(\"fas-window-close\", '\\uf410'),\n    WINDOW_MAXIMIZE(\"fas-window-maximize\", '\\uf2d0'),\n    WINDOW_MINIMIZE(\"fas-window-minimize\", '\\uf2d1'),\n    WINDOW_RESTORE(\"fas-window-restore\", '\\uf2d2'),\n    WINE_BOTTLE(\"fas-wine-bottle\", '\\uf72f'),\n    WINE_GLASS(\"fas-wine-glass\", '\\uf4e3'),\n    WINE_GLASS_ALT(\"fas-wine-glass-alt\", '\\uf5ce'),\n    WON_SIGN(\"fas-won-sign\", '\\uf159'),\n    WRENCH(\"fas-wrench\", '\\uf0ad'),\n    X_RAY(\"fas-x-ray\", '\\uf497'),\n    YEN_SIGN(\"fas-yen-sign\", '\\uf157'),\n    YIN_YANG(\"fas-yin-yang\", '\\uf6ad');\n\n    public static FontAwesomeSolid findByDescription(String description) {\n        for (FontAwesomeSolid font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    FontAwesomeSolid(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/java/org/kordamp/ikonli/fontawesome5/FontAwesomeSolidIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome5;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FontAwesomeSolidIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fontawesome5/5.15.3/fonts/fa-solid-900.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"fas-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return FontAwesomeSolid.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Font Awesome 5 Free Solid\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/java/org/kordamp/ikonli/fontawesome5/FontAwesomeSolidIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome5;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class FontAwesomeSolidIkonProvider implements IkonProvider<FontAwesomeSolid> {\n    @Override\n    public Class<FontAwesomeSolid> getIkon() {\n        return FontAwesomeSolid.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/resources/META-INF/resources/fontawesome5/5.15.3/css/fa-brands.css",
    "content": "/*!\n * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */\n@font-face {\n  font-family: 'Font Awesome 5 Brands';\n  font-style: normal;\n  font-weight: 400;\n  font-display: block;\n  src: url(\"../fonts/fa-brands-400.eot\");\n  src: url(\"../fonts/fa-brands-400.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.woff\") format(\"woff\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\"), url(\"../fonts/fa-brands-400.svg#fontawesome\") format(\"svg\"); }\n\n.fab {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/resources/META-INF/resources/fontawesome5/5.15.3/css/fa-regular.css",
    "content": "/*!\n * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */\n@font-face {\n  font-family: 'Font Awesome 5 Free';\n  font-style: normal;\n  font-weight: 400;\n  font-display: block;\n  src: url(\"../fonts/fa-regular-400.eot\");\n  src: url(\"../fonts/fa-regular-400.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.woff\") format(\"woff\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\"), url(\"../fonts/fa-regular-400.svg#fontawesome\") format(\"svg\"); }\n\n.far {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/resources/META-INF/resources/fontawesome5/5.15.3/css/fa-solid.css",
    "content": "/*!\n * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */\n@font-face {\n  font-family: 'Font Awesome 5 Free';\n  font-style: normal;\n  font-weight: 900;\n  font-display: block;\n  src: url(\"../fonts/fa-solid-900.eot\");\n  src: url(\"../fonts/fa-solid-900.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.woff\") format(\"woff\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\"), url(\"../fonts/fa-solid-900.svg#fontawesome\") format(\"svg\"); }\n\n.fa,\n.fas {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 900; }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/resources/META-INF/resources/fontawesome5/5.15.3/css/fontawesome-all.css",
    "content": "/*!\n * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */\n.fa,\n.fas,\n.far,\n.fal,\n.fad,\n.fab {\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n  display: inline-block;\n  font-style: normal;\n  font-variant: normal;\n  text-rendering: auto;\n  line-height: 1; }\n\n.fa-lg {\n  font-size: 1.33333em;\n  line-height: 0.75em;\n  vertical-align: -.0667em; }\n\n.fa-xs {\n  font-size: .75em; }\n\n.fa-sm {\n  font-size: .875em; }\n\n.fa-1x {\n  font-size: 1em; }\n\n.fa-2x {\n  font-size: 2em; }\n\n.fa-3x {\n  font-size: 3em; }\n\n.fa-4x {\n  font-size: 4em; }\n\n.fa-5x {\n  font-size: 5em; }\n\n.fa-6x {\n  font-size: 6em; }\n\n.fa-7x {\n  font-size: 7em; }\n\n.fa-8x {\n  font-size: 8em; }\n\n.fa-9x {\n  font-size: 9em; }\n\n.fa-10x {\n  font-size: 10em; }\n\n.fa-fw {\n  text-align: center;\n  width: 1.25em; }\n\n.fa-ul {\n  list-style-type: none;\n  margin-left: 2.5em;\n  padding-left: 0; }\n  .fa-ul > li {\n    position: relative; }\n\n.fa-li {\n  left: -2em;\n  position: absolute;\n  text-align: center;\n  width: 2em;\n  line-height: inherit; }\n\n.fa-border {\n  border: solid 0.08em #eee;\n  border-radius: .1em;\n  padding: .2em .25em .15em; }\n\n.fa-pull-left {\n  float: left; }\n\n.fa-pull-right {\n  float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n  margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n  margin-left: .3em; }\n\n.fa-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n          animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n  -webkit-transform: rotate(90deg);\n          transform: rotate(90deg); }\n\n.fa-rotate-180 {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n  -webkit-transform: rotate(180deg);\n          transform: rotate(180deg); }\n\n.fa-rotate-270 {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n  -webkit-transform: rotate(270deg);\n          transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n  -webkit-transform: scale(-1, 1);\n          transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n  -webkit-transform: scale(1, -1);\n          transform: scale(1, -1); }\n\n.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n  -webkit-transform: scale(-1, -1);\n          transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical,\n:root .fa-flip-both {\n  -webkit-filter: none;\n          filter: none; }\n\n.fa-stack {\n  display: inline-block;\n  height: 2em;\n  line-height: 2em;\n  position: relative;\n  vertical-align: middle;\n  width: 2.5em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n  left: 0;\n  position: absolute;\n  text-align: center;\n  width: 100%; }\n\n.fa-stack-1x {\n  line-height: inherit; }\n\n.fa-stack-2x {\n  font-size: 2em; }\n\n.fa-inverse {\n  color: #fff; }\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\nreaders do not read off random characters that represent icons */\n.fa-500px:before {\n  content: \"\\f26e\"; }\n\n.fa-accessible-icon:before {\n  content: \"\\f368\"; }\n\n.fa-accusoft:before {\n  content: \"\\f369\"; }\n\n.fa-acquisitions-incorporated:before {\n  content: \"\\f6af\"; }\n\n.fa-ad:before {\n  content: \"\\f641\"; }\n\n.fa-address-book:before {\n  content: \"\\f2b9\"; }\n\n.fa-address-card:before {\n  content: \"\\f2bb\"; }\n\n.fa-adjust:before {\n  content: \"\\f042\"; }\n\n.fa-adn:before {\n  content: \"\\f170\"; }\n\n.fa-adversal:before {\n  content: \"\\f36a\"; }\n\n.fa-affiliatetheme:before {\n  content: \"\\f36b\"; }\n\n.fa-air-freshener:before {\n  content: \"\\f5d0\"; }\n\n.fa-airbnb:before {\n  content: \"\\f834\"; }\n\n.fa-algolia:before {\n  content: \"\\f36c\"; }\n\n.fa-align-center:before {\n  content: \"\\f037\"; }\n\n.fa-align-justify:before {\n  content: \"\\f039\"; }\n\n.fa-align-left:before {\n  content: \"\\f036\"; }\n\n.fa-align-right:before {\n  content: \"\\f038\"; }\n\n.fa-alipay:before {\n  content: \"\\f642\"; }\n\n.fa-allergies:before {\n  content: \"\\f461\"; }\n\n.fa-amazon:before {\n  content: \"\\f270\"; }\n\n.fa-amazon-pay:before {\n  content: \"\\f42c\"; }\n\n.fa-ambulance:before {\n  content: \"\\f0f9\"; }\n\n.fa-american-sign-language-interpreting:before {\n  content: \"\\f2a3\"; }\n\n.fa-amilia:before {\n  content: \"\\f36d\"; }\n\n.fa-anchor:before {\n  content: \"\\f13d\"; }\n\n.fa-android:before {\n  content: \"\\f17b\"; }\n\n.fa-angellist:before {\n  content: \"\\f209\"; }\n\n.fa-angle-double-down:before {\n  content: \"\\f103\"; }\n\n.fa-angle-double-left:before {\n  content: \"\\f100\"; }\n\n.fa-angle-double-right:before {\n  content: \"\\f101\"; }\n\n.fa-angle-double-up:before {\n  content: \"\\f102\"; }\n\n.fa-angle-down:before {\n  content: \"\\f107\"; }\n\n.fa-angle-left:before {\n  content: \"\\f104\"; }\n\n.fa-angle-right:before {\n  content: \"\\f105\"; }\n\n.fa-angle-up:before {\n  content: \"\\f106\"; }\n\n.fa-angry:before {\n  content: \"\\f556\"; }\n\n.fa-angrycreative:before {\n  content: \"\\f36e\"; }\n\n.fa-angular:before {\n  content: \"\\f420\"; }\n\n.fa-ankh:before {\n  content: \"\\f644\"; }\n\n.fa-app-store:before {\n  content: \"\\f36f\"; }\n\n.fa-app-store-ios:before {\n  content: \"\\f370\"; }\n\n.fa-apper:before {\n  content: \"\\f371\"; }\n\n.fa-apple:before {\n  content: \"\\f179\"; }\n\n.fa-apple-alt:before {\n  content: \"\\f5d1\"; }\n\n.fa-apple-pay:before {\n  content: \"\\f415\"; }\n\n.fa-archive:before {\n  content: \"\\f187\"; }\n\n.fa-archway:before {\n  content: \"\\f557\"; }\n\n.fa-arrow-alt-circle-down:before {\n  content: \"\\f358\"; }\n\n.fa-arrow-alt-circle-left:before {\n  content: \"\\f359\"; }\n\n.fa-arrow-alt-circle-right:before {\n  content: \"\\f35a\"; }\n\n.fa-arrow-alt-circle-up:before {\n  content: \"\\f35b\"; }\n\n.fa-arrow-circle-down:before {\n  content: \"\\f0ab\"; }\n\n.fa-arrow-circle-left:before {\n  content: \"\\f0a8\"; }\n\n.fa-arrow-circle-right:before {\n  content: \"\\f0a9\"; }\n\n.fa-arrow-circle-up:before {\n  content: \"\\f0aa\"; }\n\n.fa-arrow-down:before {\n  content: \"\\f063\"; }\n\n.fa-arrow-left:before {\n  content: \"\\f060\"; }\n\n.fa-arrow-right:before {\n  content: \"\\f061\"; }\n\n.fa-arrow-up:before {\n  content: \"\\f062\"; }\n\n.fa-arrows-alt:before {\n  content: \"\\f0b2\"; }\n\n.fa-arrows-alt-h:before {\n  content: \"\\f337\"; }\n\n.fa-arrows-alt-v:before {\n  content: \"\\f338\"; }\n\n.fa-artstation:before {\n  content: \"\\f77a\"; }\n\n.fa-assistive-listening-systems:before {\n  content: \"\\f2a2\"; }\n\n.fa-asterisk:before {\n  content: \"\\f069\"; }\n\n.fa-asymmetrik:before {\n  content: \"\\f372\"; }\n\n.fa-at:before {\n  content: \"\\f1fa\"; }\n\n.fa-atlas:before {\n  content: \"\\f558\"; }\n\n.fa-atlassian:before {\n  content: \"\\f77b\"; }\n\n.fa-atom:before {\n  content: \"\\f5d2\"; }\n\n.fa-audible:before {\n  content: \"\\f373\"; }\n\n.fa-audio-description:before {\n  content: \"\\f29e\"; }\n\n.fa-autoprefixer:before {\n  content: \"\\f41c\"; }\n\n.fa-avianex:before {\n  content: \"\\f374\"; }\n\n.fa-aviato:before {\n  content: \"\\f421\"; }\n\n.fa-award:before {\n  content: \"\\f559\"; }\n\n.fa-aws:before {\n  content: \"\\f375\"; }\n\n.fa-baby:before {\n  content: \"\\f77c\"; }\n\n.fa-baby-carriage:before {\n  content: \"\\f77d\"; }\n\n.fa-backspace:before {\n  content: \"\\f55a\"; }\n\n.fa-backward:before {\n  content: \"\\f04a\"; }\n\n.fa-bacon:before {\n  content: \"\\f7e5\"; }\n\n.fa-bacteria:before {\n  content: \"\\e059\"; }\n\n.fa-bacterium:before {\n  content: \"\\e05a\"; }\n\n.fa-bahai:before {\n  content: \"\\f666\"; }\n\n.fa-balance-scale:before {\n  content: \"\\f24e\"; }\n\n.fa-balance-scale-left:before {\n  content: \"\\f515\"; }\n\n.fa-balance-scale-right:before {\n  content: \"\\f516\"; }\n\n.fa-ban:before {\n  content: \"\\f05e\"; }\n\n.fa-band-aid:before {\n  content: \"\\f462\"; }\n\n.fa-bandcamp:before {\n  content: \"\\f2d5\"; }\n\n.fa-barcode:before {\n  content: \"\\f02a\"; }\n\n.fa-bars:before {\n  content: \"\\f0c9\"; }\n\n.fa-baseball-ball:before {\n  content: \"\\f433\"; }\n\n.fa-basketball-ball:before {\n  content: \"\\f434\"; }\n\n.fa-bath:before {\n  content: \"\\f2cd\"; }\n\n.fa-battery-empty:before {\n  content: \"\\f244\"; }\n\n.fa-battery-full:before {\n  content: \"\\f240\"; }\n\n.fa-battery-half:before {\n  content: \"\\f242\"; }\n\n.fa-battery-quarter:before {\n  content: \"\\f243\"; }\n\n.fa-battery-three-quarters:before {\n  content: \"\\f241\"; }\n\n.fa-battle-net:before {\n  content: \"\\f835\"; }\n\n.fa-bed:before {\n  content: \"\\f236\"; }\n\n.fa-beer:before {\n  content: \"\\f0fc\"; }\n\n.fa-behance:before {\n  content: \"\\f1b4\"; }\n\n.fa-behance-square:before {\n  content: \"\\f1b5\"; }\n\n.fa-bell:before {\n  content: \"\\f0f3\"; }\n\n.fa-bell-slash:before {\n  content: \"\\f1f6\"; }\n\n.fa-bezier-curve:before {\n  content: \"\\f55b\"; }\n\n.fa-bible:before {\n  content: \"\\f647\"; }\n\n.fa-bicycle:before {\n  content: \"\\f206\"; }\n\n.fa-biking:before {\n  content: \"\\f84a\"; }\n\n.fa-bimobject:before {\n  content: \"\\f378\"; }\n\n.fa-binoculars:before {\n  content: \"\\f1e5\"; }\n\n.fa-biohazard:before {\n  content: \"\\f780\"; }\n\n.fa-birthday-cake:before {\n  content: \"\\f1fd\"; }\n\n.fa-bitbucket:before {\n  content: \"\\f171\"; }\n\n.fa-bitcoin:before {\n  content: \"\\f379\"; }\n\n.fa-bity:before {\n  content: \"\\f37a\"; }\n\n.fa-black-tie:before {\n  content: \"\\f27e\"; }\n\n.fa-blackberry:before {\n  content: \"\\f37b\"; }\n\n.fa-blender:before {\n  content: \"\\f517\"; }\n\n.fa-blender-phone:before {\n  content: \"\\f6b6\"; }\n\n.fa-blind:before {\n  content: \"\\f29d\"; }\n\n.fa-blog:before {\n  content: \"\\f781\"; }\n\n.fa-blogger:before {\n  content: \"\\f37c\"; }\n\n.fa-blogger-b:before {\n  content: \"\\f37d\"; }\n\n.fa-bluetooth:before {\n  content: \"\\f293\"; }\n\n.fa-bluetooth-b:before {\n  content: \"\\f294\"; }\n\n.fa-bold:before {\n  content: \"\\f032\"; }\n\n.fa-bolt:before {\n  content: \"\\f0e7\"; }\n\n.fa-bomb:before {\n  content: \"\\f1e2\"; }\n\n.fa-bone:before {\n  content: \"\\f5d7\"; }\n\n.fa-bong:before {\n  content: \"\\f55c\"; }\n\n.fa-book:before {\n  content: \"\\f02d\"; }\n\n.fa-book-dead:before {\n  content: \"\\f6b7\"; }\n\n.fa-book-medical:before {\n  content: \"\\f7e6\"; }\n\n.fa-book-open:before {\n  content: \"\\f518\"; }\n\n.fa-book-reader:before {\n  content: \"\\f5da\"; }\n\n.fa-bookmark:before {\n  content: \"\\f02e\"; }\n\n.fa-bootstrap:before {\n  content: \"\\f836\"; }\n\n.fa-border-all:before {\n  content: \"\\f84c\"; }\n\n.fa-border-none:before {\n  content: \"\\f850\"; }\n\n.fa-border-style:before {\n  content: \"\\f853\"; }\n\n.fa-bowling-ball:before {\n  content: \"\\f436\"; }\n\n.fa-box:before {\n  content: \"\\f466\"; }\n\n.fa-box-open:before {\n  content: \"\\f49e\"; }\n\n.fa-box-tissue:before {\n  content: \"\\e05b\"; }\n\n.fa-boxes:before {\n  content: \"\\f468\"; }\n\n.fa-braille:before {\n  content: \"\\f2a1\"; }\n\n.fa-brain:before {\n  content: \"\\f5dc\"; }\n\n.fa-bread-slice:before {\n  content: \"\\f7ec\"; }\n\n.fa-briefcase:before {\n  content: \"\\f0b1\"; }\n\n.fa-briefcase-medical:before {\n  content: \"\\f469\"; }\n\n.fa-broadcast-tower:before {\n  content: \"\\f519\"; }\n\n.fa-broom:before {\n  content: \"\\f51a\"; }\n\n.fa-brush:before {\n  content: \"\\f55d\"; }\n\n.fa-btc:before {\n  content: \"\\f15a\"; }\n\n.fa-buffer:before {\n  content: \"\\f837\"; }\n\n.fa-bug:before {\n  content: \"\\f188\"; }\n\n.fa-building:before {\n  content: \"\\f1ad\"; }\n\n.fa-bullhorn:before {\n  content: \"\\f0a1\"; }\n\n.fa-bullseye:before {\n  content: \"\\f140\"; }\n\n.fa-burn:before {\n  content: \"\\f46a\"; }\n\n.fa-buromobelexperte:before {\n  content: \"\\f37f\"; }\n\n.fa-bus:before {\n  content: \"\\f207\"; }\n\n.fa-bus-alt:before {\n  content: \"\\f55e\"; }\n\n.fa-business-time:before {\n  content: \"\\f64a\"; }\n\n.fa-buy-n-large:before {\n  content: \"\\f8a6\"; }\n\n.fa-buysellads:before {\n  content: \"\\f20d\"; }\n\n.fa-calculator:before {\n  content: \"\\f1ec\"; }\n\n.fa-calendar:before {\n  content: \"\\f133\"; }\n\n.fa-calendar-alt:before {\n  content: \"\\f073\"; }\n\n.fa-calendar-check:before {\n  content: \"\\f274\"; }\n\n.fa-calendar-day:before {\n  content: \"\\f783\"; }\n\n.fa-calendar-minus:before {\n  content: \"\\f272\"; }\n\n.fa-calendar-plus:before {\n  content: \"\\f271\"; }\n\n.fa-calendar-times:before {\n  content: \"\\f273\"; }\n\n.fa-calendar-week:before {\n  content: \"\\f784\"; }\n\n.fa-camera:before {\n  content: \"\\f030\"; }\n\n.fa-camera-retro:before {\n  content: \"\\f083\"; }\n\n.fa-campground:before {\n  content: \"\\f6bb\"; }\n\n.fa-canadian-maple-leaf:before {\n  content: \"\\f785\"; }\n\n.fa-candy-cane:before {\n  content: \"\\f786\"; }\n\n.fa-cannabis:before {\n  content: \"\\f55f\"; }\n\n.fa-capsules:before {\n  content: \"\\f46b\"; }\n\n.fa-car:before {\n  content: \"\\f1b9\"; }\n\n.fa-car-alt:before {\n  content: \"\\f5de\"; }\n\n.fa-car-battery:before {\n  content: \"\\f5df\"; }\n\n.fa-car-crash:before {\n  content: \"\\f5e1\"; }\n\n.fa-car-side:before {\n  content: \"\\f5e4\"; }\n\n.fa-caravan:before {\n  content: \"\\f8ff\"; }\n\n.fa-caret-down:before {\n  content: \"\\f0d7\"; }\n\n.fa-caret-left:before {\n  content: \"\\f0d9\"; }\n\n.fa-caret-right:before {\n  content: \"\\f0da\"; }\n\n.fa-caret-square-down:before {\n  content: \"\\f150\"; }\n\n.fa-caret-square-left:before {\n  content: \"\\f191\"; }\n\n.fa-caret-square-right:before {\n  content: \"\\f152\"; }\n\n.fa-caret-square-up:before {\n  content: \"\\f151\"; }\n\n.fa-caret-up:before {\n  content: \"\\f0d8\"; }\n\n.fa-carrot:before {\n  content: \"\\f787\"; }\n\n.fa-cart-arrow-down:before {\n  content: \"\\f218\"; }\n\n.fa-cart-plus:before {\n  content: \"\\f217\"; }\n\n.fa-cash-register:before {\n  content: \"\\f788\"; }\n\n.fa-cat:before {\n  content: \"\\f6be\"; }\n\n.fa-cc-amazon-pay:before {\n  content: \"\\f42d\"; }\n\n.fa-cc-amex:before {\n  content: \"\\f1f3\"; }\n\n.fa-cc-apple-pay:before {\n  content: \"\\f416\"; }\n\n.fa-cc-diners-club:before {\n  content: \"\\f24c\"; }\n\n.fa-cc-discover:before {\n  content: \"\\f1f2\"; }\n\n.fa-cc-jcb:before {\n  content: \"\\f24b\"; }\n\n.fa-cc-mastercard:before {\n  content: \"\\f1f1\"; }\n\n.fa-cc-paypal:before {\n  content: \"\\f1f4\"; }\n\n.fa-cc-stripe:before {\n  content: \"\\f1f5\"; }\n\n.fa-cc-visa:before {\n  content: \"\\f1f0\"; }\n\n.fa-centercode:before {\n  content: \"\\f380\"; }\n\n.fa-centos:before {\n  content: \"\\f789\"; }\n\n.fa-certificate:before {\n  content: \"\\f0a3\"; }\n\n.fa-chair:before {\n  content: \"\\f6c0\"; }\n\n.fa-chalkboard:before {\n  content: \"\\f51b\"; }\n\n.fa-chalkboard-teacher:before {\n  content: \"\\f51c\"; }\n\n.fa-charging-station:before {\n  content: \"\\f5e7\"; }\n\n.fa-chart-area:before {\n  content: \"\\f1fe\"; }\n\n.fa-chart-bar:before {\n  content: \"\\f080\"; }\n\n.fa-chart-line:before {\n  content: \"\\f201\"; }\n\n.fa-chart-pie:before {\n  content: \"\\f200\"; }\n\n.fa-check:before {\n  content: \"\\f00c\"; }\n\n.fa-check-circle:before {\n  content: \"\\f058\"; }\n\n.fa-check-double:before {\n  content: \"\\f560\"; }\n\n.fa-check-square:before {\n  content: \"\\f14a\"; }\n\n.fa-cheese:before {\n  content: \"\\f7ef\"; }\n\n.fa-chess:before {\n  content: \"\\f439\"; }\n\n.fa-chess-bishop:before {\n  content: \"\\f43a\"; }\n\n.fa-chess-board:before {\n  content: \"\\f43c\"; }\n\n.fa-chess-king:before {\n  content: \"\\f43f\"; }\n\n.fa-chess-knight:before {\n  content: \"\\f441\"; }\n\n.fa-chess-pawn:before {\n  content: \"\\f443\"; }\n\n.fa-chess-queen:before {\n  content: \"\\f445\"; }\n\n.fa-chess-rook:before {\n  content: \"\\f447\"; }\n\n.fa-chevron-circle-down:before {\n  content: \"\\f13a\"; }\n\n.fa-chevron-circle-left:before {\n  content: \"\\f137\"; }\n\n.fa-chevron-circle-right:before {\n  content: \"\\f138\"; }\n\n.fa-chevron-circle-up:before {\n  content: \"\\f139\"; }\n\n.fa-chevron-down:before {\n  content: \"\\f078\"; }\n\n.fa-chevron-left:before {\n  content: \"\\f053\"; }\n\n.fa-chevron-right:before {\n  content: \"\\f054\"; }\n\n.fa-chevron-up:before {\n  content: \"\\f077\"; }\n\n.fa-child:before {\n  content: \"\\f1ae\"; }\n\n.fa-chrome:before {\n  content: \"\\f268\"; }\n\n.fa-chromecast:before {\n  content: \"\\f838\"; }\n\n.fa-church:before {\n  content: \"\\f51d\"; }\n\n.fa-circle:before {\n  content: \"\\f111\"; }\n\n.fa-circle-notch:before {\n  content: \"\\f1ce\"; }\n\n.fa-city:before {\n  content: \"\\f64f\"; }\n\n.fa-clinic-medical:before {\n  content: \"\\f7f2\"; }\n\n.fa-clipboard:before {\n  content: \"\\f328\"; }\n\n.fa-clipboard-check:before {\n  content: \"\\f46c\"; }\n\n.fa-clipboard-list:before {\n  content: \"\\f46d\"; }\n\n.fa-clock:before {\n  content: \"\\f017\"; }\n\n.fa-clone:before {\n  content: \"\\f24d\"; }\n\n.fa-closed-captioning:before {\n  content: \"\\f20a\"; }\n\n.fa-cloud:before {\n  content: \"\\f0c2\"; }\n\n.fa-cloud-download-alt:before {\n  content: \"\\f381\"; }\n\n.fa-cloud-meatball:before {\n  content: \"\\f73b\"; }\n\n.fa-cloud-moon:before {\n  content: \"\\f6c3\"; }\n\n.fa-cloud-moon-rain:before {\n  content: \"\\f73c\"; }\n\n.fa-cloud-rain:before {\n  content: \"\\f73d\"; }\n\n.fa-cloud-showers-heavy:before {\n  content: \"\\f740\"; }\n\n.fa-cloud-sun:before {\n  content: \"\\f6c4\"; }\n\n.fa-cloud-sun-rain:before {\n  content: \"\\f743\"; }\n\n.fa-cloud-upload-alt:before {\n  content: \"\\f382\"; }\n\n.fa-cloudflare:before {\n  content: \"\\e07d\"; }\n\n.fa-cloudscale:before {\n  content: \"\\f383\"; }\n\n.fa-cloudsmith:before {\n  content: \"\\f384\"; }\n\n.fa-cloudversify:before {\n  content: \"\\f385\"; }\n\n.fa-cocktail:before {\n  content: \"\\f561\"; }\n\n.fa-code:before {\n  content: \"\\f121\"; }\n\n.fa-code-branch:before {\n  content: \"\\f126\"; }\n\n.fa-codepen:before {\n  content: \"\\f1cb\"; }\n\n.fa-codiepie:before {\n  content: \"\\f284\"; }\n\n.fa-coffee:before {\n  content: \"\\f0f4\"; }\n\n.fa-cog:before {\n  content: \"\\f013\"; }\n\n.fa-cogs:before {\n  content: \"\\f085\"; }\n\n.fa-coins:before {\n  content: \"\\f51e\"; }\n\n.fa-columns:before {\n  content: \"\\f0db\"; }\n\n.fa-comment:before {\n  content: \"\\f075\"; }\n\n.fa-comment-alt:before {\n  content: \"\\f27a\"; }\n\n.fa-comment-dollar:before {\n  content: \"\\f651\"; }\n\n.fa-comment-dots:before {\n  content: \"\\f4ad\"; }\n\n.fa-comment-medical:before {\n  content: \"\\f7f5\"; }\n\n.fa-comment-slash:before {\n  content: \"\\f4b3\"; }\n\n.fa-comments:before {\n  content: \"\\f086\"; }\n\n.fa-comments-dollar:before {\n  content: \"\\f653\"; }\n\n.fa-compact-disc:before {\n  content: \"\\f51f\"; }\n\n.fa-compass:before {\n  content: \"\\f14e\"; }\n\n.fa-compress:before {\n  content: \"\\f066\"; }\n\n.fa-compress-alt:before {\n  content: \"\\f422\"; }\n\n.fa-compress-arrows-alt:before {\n  content: \"\\f78c\"; }\n\n.fa-concierge-bell:before {\n  content: \"\\f562\"; }\n\n.fa-confluence:before {\n  content: \"\\f78d\"; }\n\n.fa-connectdevelop:before {\n  content: \"\\f20e\"; }\n\n.fa-contao:before {\n  content: \"\\f26d\"; }\n\n.fa-cookie:before {\n  content: \"\\f563\"; }\n\n.fa-cookie-bite:before {\n  content: \"\\f564\"; }\n\n.fa-copy:before {\n  content: \"\\f0c5\"; }\n\n.fa-copyright:before {\n  content: \"\\f1f9\"; }\n\n.fa-cotton-bureau:before {\n  content: \"\\f89e\"; }\n\n.fa-couch:before {\n  content: \"\\f4b8\"; }\n\n.fa-cpanel:before {\n  content: \"\\f388\"; }\n\n.fa-creative-commons:before {\n  content: \"\\f25e\"; }\n\n.fa-creative-commons-by:before {\n  content: \"\\f4e7\"; }\n\n.fa-creative-commons-nc:before {\n  content: \"\\f4e8\"; }\n\n.fa-creative-commons-nc-eu:before {\n  content: \"\\f4e9\"; }\n\n.fa-creative-commons-nc-jp:before {\n  content: \"\\f4ea\"; }\n\n.fa-creative-commons-nd:before {\n  content: \"\\f4eb\"; }\n\n.fa-creative-commons-pd:before {\n  content: \"\\f4ec\"; }\n\n.fa-creative-commons-pd-alt:before {\n  content: \"\\f4ed\"; }\n\n.fa-creative-commons-remix:before {\n  content: \"\\f4ee\"; }\n\n.fa-creative-commons-sa:before {\n  content: \"\\f4ef\"; }\n\n.fa-creative-commons-sampling:before {\n  content: \"\\f4f0\"; }\n\n.fa-creative-commons-sampling-plus:before {\n  content: \"\\f4f1\"; }\n\n.fa-creative-commons-share:before {\n  content: \"\\f4f2\"; }\n\n.fa-creative-commons-zero:before {\n  content: \"\\f4f3\"; }\n\n.fa-credit-card:before {\n  content: \"\\f09d\"; }\n\n.fa-critical-role:before {\n  content: \"\\f6c9\"; }\n\n.fa-crop:before {\n  content: \"\\f125\"; }\n\n.fa-crop-alt:before {\n  content: \"\\f565\"; }\n\n.fa-cross:before {\n  content: \"\\f654\"; }\n\n.fa-crosshairs:before {\n  content: \"\\f05b\"; }\n\n.fa-crow:before {\n  content: \"\\f520\"; }\n\n.fa-crown:before {\n  content: \"\\f521\"; }\n\n.fa-crutch:before {\n  content: \"\\f7f7\"; }\n\n.fa-css3:before {\n  content: \"\\f13c\"; }\n\n.fa-css3-alt:before {\n  content: \"\\f38b\"; }\n\n.fa-cube:before {\n  content: \"\\f1b2\"; }\n\n.fa-cubes:before {\n  content: \"\\f1b3\"; }\n\n.fa-cut:before {\n  content: \"\\f0c4\"; }\n\n.fa-cuttlefish:before {\n  content: \"\\f38c\"; }\n\n.fa-d-and-d:before {\n  content: \"\\f38d\"; }\n\n.fa-d-and-d-beyond:before {\n  content: \"\\f6ca\"; }\n\n.fa-dailymotion:before {\n  content: \"\\e052\"; }\n\n.fa-dashcube:before {\n  content: \"\\f210\"; }\n\n.fa-database:before {\n  content: \"\\f1c0\"; }\n\n.fa-deaf:before {\n  content: \"\\f2a4\"; }\n\n.fa-deezer:before {\n  content: \"\\e077\"; }\n\n.fa-delicious:before {\n  content: \"\\f1a5\"; }\n\n.fa-democrat:before {\n  content: \"\\f747\"; }\n\n.fa-deploydog:before {\n  content: \"\\f38e\"; }\n\n.fa-deskpro:before {\n  content: \"\\f38f\"; }\n\n.fa-desktop:before {\n  content: \"\\f108\"; }\n\n.fa-dev:before {\n  content: \"\\f6cc\"; }\n\n.fa-deviantart:before {\n  content: \"\\f1bd\"; }\n\n.fa-dharmachakra:before {\n  content: \"\\f655\"; }\n\n.fa-dhl:before {\n  content: \"\\f790\"; }\n\n.fa-diagnoses:before {\n  content: \"\\f470\"; }\n\n.fa-diaspora:before {\n  content: \"\\f791\"; }\n\n.fa-dice:before {\n  content: \"\\f522\"; }\n\n.fa-dice-d20:before {\n  content: \"\\f6cf\"; }\n\n.fa-dice-d6:before {\n  content: \"\\f6d1\"; }\n\n.fa-dice-five:before {\n  content: \"\\f523\"; }\n\n.fa-dice-four:before {\n  content: \"\\f524\"; }\n\n.fa-dice-one:before {\n  content: \"\\f525\"; }\n\n.fa-dice-six:before {\n  content: \"\\f526\"; }\n\n.fa-dice-three:before {\n  content: \"\\f527\"; }\n\n.fa-dice-two:before {\n  content: \"\\f528\"; }\n\n.fa-digg:before {\n  content: \"\\f1a6\"; }\n\n.fa-digital-ocean:before {\n  content: \"\\f391\"; }\n\n.fa-digital-tachograph:before {\n  content: \"\\f566\"; }\n\n.fa-directions:before {\n  content: \"\\f5eb\"; }\n\n.fa-discord:before {\n  content: \"\\f392\"; }\n\n.fa-discourse:before {\n  content: \"\\f393\"; }\n\n.fa-disease:before {\n  content: \"\\f7fa\"; }\n\n.fa-divide:before {\n  content: \"\\f529\"; }\n\n.fa-dizzy:before {\n  content: \"\\f567\"; }\n\n.fa-dna:before {\n  content: \"\\f471\"; }\n\n.fa-dochub:before {\n  content: \"\\f394\"; }\n\n.fa-docker:before {\n  content: \"\\f395\"; }\n\n.fa-dog:before {\n  content: \"\\f6d3\"; }\n\n.fa-dollar-sign:before {\n  content: \"\\f155\"; }\n\n.fa-dolly:before {\n  content: \"\\f472\"; }\n\n.fa-dolly-flatbed:before {\n  content: \"\\f474\"; }\n\n.fa-donate:before {\n  content: \"\\f4b9\"; }\n\n.fa-door-closed:before {\n  content: \"\\f52a\"; }\n\n.fa-door-open:before {\n  content: \"\\f52b\"; }\n\n.fa-dot-circle:before {\n  content: \"\\f192\"; }\n\n.fa-dove:before {\n  content: \"\\f4ba\"; }\n\n.fa-download:before {\n  content: \"\\f019\"; }\n\n.fa-draft2digital:before {\n  content: \"\\f396\"; }\n\n.fa-drafting-compass:before {\n  content: \"\\f568\"; }\n\n.fa-dragon:before {\n  content: \"\\f6d5\"; }\n\n.fa-draw-polygon:before {\n  content: \"\\f5ee\"; }\n\n.fa-dribbble:before {\n  content: \"\\f17d\"; }\n\n.fa-dribbble-square:before {\n  content: \"\\f397\"; }\n\n.fa-dropbox:before {\n  content: \"\\f16b\"; }\n\n.fa-drum:before {\n  content: \"\\f569\"; }\n\n.fa-drum-steelpan:before {\n  content: \"\\f56a\"; }\n\n.fa-drumstick-bite:before {\n  content: \"\\f6d7\"; }\n\n.fa-drupal:before {\n  content: \"\\f1a9\"; }\n\n.fa-dumbbell:before {\n  content: \"\\f44b\"; }\n\n.fa-dumpster:before {\n  content: \"\\f793\"; }\n\n.fa-dumpster-fire:before {\n  content: \"\\f794\"; }\n\n.fa-dungeon:before {\n  content: \"\\f6d9\"; }\n\n.fa-dyalog:before {\n  content: \"\\f399\"; }\n\n.fa-earlybirds:before {\n  content: \"\\f39a\"; }\n\n.fa-ebay:before {\n  content: \"\\f4f4\"; }\n\n.fa-edge:before {\n  content: \"\\f282\"; }\n\n.fa-edge-legacy:before {\n  content: \"\\e078\"; }\n\n.fa-edit:before {\n  content: \"\\f044\"; }\n\n.fa-egg:before {\n  content: \"\\f7fb\"; }\n\n.fa-eject:before {\n  content: \"\\f052\"; }\n\n.fa-elementor:before {\n  content: \"\\f430\"; }\n\n.fa-ellipsis-h:before {\n  content: \"\\f141\"; }\n\n.fa-ellipsis-v:before {\n  content: \"\\f142\"; }\n\n.fa-ello:before {\n  content: \"\\f5f1\"; }\n\n.fa-ember:before {\n  content: \"\\f423\"; }\n\n.fa-empire:before {\n  content: \"\\f1d1\"; }\n\n.fa-envelope:before {\n  content: \"\\f0e0\"; }\n\n.fa-envelope-open:before {\n  content: \"\\f2b6\"; }\n\n.fa-envelope-open-text:before {\n  content: \"\\f658\"; }\n\n.fa-envelope-square:before {\n  content: \"\\f199\"; }\n\n.fa-envira:before {\n  content: \"\\f299\"; }\n\n.fa-equals:before {\n  content: \"\\f52c\"; }\n\n.fa-eraser:before {\n  content: \"\\f12d\"; }\n\n.fa-erlang:before {\n  content: \"\\f39d\"; }\n\n.fa-ethereum:before {\n  content: \"\\f42e\"; }\n\n.fa-ethernet:before {\n  content: \"\\f796\"; }\n\n.fa-etsy:before {\n  content: \"\\f2d7\"; }\n\n.fa-euro-sign:before {\n  content: \"\\f153\"; }\n\n.fa-evernote:before {\n  content: \"\\f839\"; }\n\n.fa-exchange-alt:before {\n  content: \"\\f362\"; }\n\n.fa-exclamation:before {\n  content: \"\\f12a\"; }\n\n.fa-exclamation-circle:before {\n  content: \"\\f06a\"; }\n\n.fa-exclamation-triangle:before {\n  content: \"\\f071\"; }\n\n.fa-expand:before {\n  content: \"\\f065\"; }\n\n.fa-expand-alt:before {\n  content: \"\\f424\"; }\n\n.fa-expand-arrows-alt:before {\n  content: \"\\f31e\"; }\n\n.fa-expeditedssl:before {\n  content: \"\\f23e\"; }\n\n.fa-external-link-alt:before {\n  content: \"\\f35d\"; }\n\n.fa-external-link-square-alt:before {\n  content: \"\\f360\"; }\n\n.fa-eye:before {\n  content: \"\\f06e\"; }\n\n.fa-eye-dropper:before {\n  content: \"\\f1fb\"; }\n\n.fa-eye-slash:before {\n  content: \"\\f070\"; }\n\n.fa-facebook:before {\n  content: \"\\f09a\"; }\n\n.fa-facebook-f:before {\n  content: \"\\f39e\"; }\n\n.fa-facebook-messenger:before {\n  content: \"\\f39f\"; }\n\n.fa-facebook-square:before {\n  content: \"\\f082\"; }\n\n.fa-fan:before {\n  content: \"\\f863\"; }\n\n.fa-fantasy-flight-games:before {\n  content: \"\\f6dc\"; }\n\n.fa-fast-backward:before {\n  content: \"\\f049\"; }\n\n.fa-fast-forward:before {\n  content: \"\\f050\"; }\n\n.fa-faucet:before {\n  content: \"\\e005\"; }\n\n.fa-fax:before {\n  content: \"\\f1ac\"; }\n\n.fa-feather:before {\n  content: \"\\f52d\"; }\n\n.fa-feather-alt:before {\n  content: \"\\f56b\"; }\n\n.fa-fedex:before {\n  content: \"\\f797\"; }\n\n.fa-fedora:before {\n  content: \"\\f798\"; }\n\n.fa-female:before {\n  content: \"\\f182\"; }\n\n.fa-fighter-jet:before {\n  content: \"\\f0fb\"; }\n\n.fa-figma:before {\n  content: \"\\f799\"; }\n\n.fa-file:before {\n  content: \"\\f15b\"; }\n\n.fa-file-alt:before {\n  content: \"\\f15c\"; }\n\n.fa-file-archive:before {\n  content: \"\\f1c6\"; }\n\n.fa-file-audio:before {\n  content: \"\\f1c7\"; }\n\n.fa-file-code:before {\n  content: \"\\f1c9\"; }\n\n.fa-file-contract:before {\n  content: \"\\f56c\"; }\n\n.fa-file-csv:before {\n  content: \"\\f6dd\"; }\n\n.fa-file-download:before {\n  content: \"\\f56d\"; }\n\n.fa-file-excel:before {\n  content: \"\\f1c3\"; }\n\n.fa-file-export:before {\n  content: \"\\f56e\"; }\n\n.fa-file-image:before {\n  content: \"\\f1c5\"; }\n\n.fa-file-import:before {\n  content: \"\\f56f\"; }\n\n.fa-file-invoice:before {\n  content: \"\\f570\"; }\n\n.fa-file-invoice-dollar:before {\n  content: \"\\f571\"; }\n\n.fa-file-medical:before {\n  content: \"\\f477\"; }\n\n.fa-file-medical-alt:before {\n  content: \"\\f478\"; }\n\n.fa-file-pdf:before {\n  content: \"\\f1c1\"; }\n\n.fa-file-powerpoint:before {\n  content: \"\\f1c4\"; }\n\n.fa-file-prescription:before {\n  content: \"\\f572\"; }\n\n.fa-file-signature:before {\n  content: \"\\f573\"; }\n\n.fa-file-upload:before {\n  content: \"\\f574\"; }\n\n.fa-file-video:before {\n  content: \"\\f1c8\"; }\n\n.fa-file-word:before {\n  content: \"\\f1c2\"; }\n\n.fa-fill:before {\n  content: \"\\f575\"; }\n\n.fa-fill-drip:before {\n  content: \"\\f576\"; }\n\n.fa-film:before {\n  content: \"\\f008\"; }\n\n.fa-filter:before {\n  content: \"\\f0b0\"; }\n\n.fa-fingerprint:before {\n  content: \"\\f577\"; }\n\n.fa-fire:before {\n  content: \"\\f06d\"; }\n\n.fa-fire-alt:before {\n  content: \"\\f7e4\"; }\n\n.fa-fire-extinguisher:before {\n  content: \"\\f134\"; }\n\n.fa-firefox:before {\n  content: \"\\f269\"; }\n\n.fa-firefox-browser:before {\n  content: \"\\e007\"; }\n\n.fa-first-aid:before {\n  content: \"\\f479\"; }\n\n.fa-first-order:before {\n  content: \"\\f2b0\"; }\n\n.fa-first-order-alt:before {\n  content: \"\\f50a\"; }\n\n.fa-firstdraft:before {\n  content: \"\\f3a1\"; }\n\n.fa-fish:before {\n  content: \"\\f578\"; }\n\n.fa-fist-raised:before {\n  content: \"\\f6de\"; }\n\n.fa-flag:before {\n  content: \"\\f024\"; }\n\n.fa-flag-checkered:before {\n  content: \"\\f11e\"; }\n\n.fa-flag-usa:before {\n  content: \"\\f74d\"; }\n\n.fa-flask:before {\n  content: \"\\f0c3\"; }\n\n.fa-flickr:before {\n  content: \"\\f16e\"; }\n\n.fa-flipboard:before {\n  content: \"\\f44d\"; }\n\n.fa-flushed:before {\n  content: \"\\f579\"; }\n\n.fa-fly:before {\n  content: \"\\f417\"; }\n\n.fa-folder:before {\n  content: \"\\f07b\"; }\n\n.fa-folder-minus:before {\n  content: \"\\f65d\"; }\n\n.fa-folder-open:before {\n  content: \"\\f07c\"; }\n\n.fa-folder-plus:before {\n  content: \"\\f65e\"; }\n\n.fa-font:before {\n  content: \"\\f031\"; }\n\n.fa-font-awesome:before {\n  content: \"\\f2b4\"; }\n\n.fa-font-awesome-alt:before {\n  content: \"\\f35c\"; }\n\n.fa-font-awesome-flag:before {\n  content: \"\\f425\"; }\n\n.fa-font-awesome-logo-full:before {\n  content: \"\\f4e6\"; }\n\n.fa-fonticons:before {\n  content: \"\\f280\"; }\n\n.fa-fonticons-fi:before {\n  content: \"\\f3a2\"; }\n\n.fa-football-ball:before {\n  content: \"\\f44e\"; }\n\n.fa-fort-awesome:before {\n  content: \"\\f286\"; }\n\n.fa-fort-awesome-alt:before {\n  content: \"\\f3a3\"; }\n\n.fa-forumbee:before {\n  content: \"\\f211\"; }\n\n.fa-forward:before {\n  content: \"\\f04e\"; }\n\n.fa-foursquare:before {\n  content: \"\\f180\"; }\n\n.fa-free-code-camp:before {\n  content: \"\\f2c5\"; }\n\n.fa-freebsd:before {\n  content: \"\\f3a4\"; }\n\n.fa-frog:before {\n  content: \"\\f52e\"; }\n\n.fa-frown:before {\n  content: \"\\f119\"; }\n\n.fa-frown-open:before {\n  content: \"\\f57a\"; }\n\n.fa-fulcrum:before {\n  content: \"\\f50b\"; }\n\n.fa-funnel-dollar:before {\n  content: \"\\f662\"; }\n\n.fa-futbol:before {\n  content: \"\\f1e3\"; }\n\n.fa-galactic-republic:before {\n  content: \"\\f50c\"; }\n\n.fa-galactic-senate:before {\n  content: \"\\f50d\"; }\n\n.fa-gamepad:before {\n  content: \"\\f11b\"; }\n\n.fa-gas-pump:before {\n  content: \"\\f52f\"; }\n\n.fa-gavel:before {\n  content: \"\\f0e3\"; }\n\n.fa-gem:before {\n  content: \"\\f3a5\"; }\n\n.fa-genderless:before {\n  content: \"\\f22d\"; }\n\n.fa-get-pocket:before {\n  content: \"\\f265\"; }\n\n.fa-gg:before {\n  content: \"\\f260\"; }\n\n.fa-gg-circle:before {\n  content: \"\\f261\"; }\n\n.fa-ghost:before {\n  content: \"\\f6e2\"; }\n\n.fa-gift:before {\n  content: \"\\f06b\"; }\n\n.fa-gifts:before {\n  content: \"\\f79c\"; }\n\n.fa-git:before {\n  content: \"\\f1d3\"; }\n\n.fa-git-alt:before {\n  content: \"\\f841\"; }\n\n.fa-git-square:before {\n  content: \"\\f1d2\"; }\n\n.fa-github:before {\n  content: \"\\f09b\"; }\n\n.fa-github-alt:before {\n  content: \"\\f113\"; }\n\n.fa-github-square:before {\n  content: \"\\f092\"; }\n\n.fa-gitkraken:before {\n  content: \"\\f3a6\"; }\n\n.fa-gitlab:before {\n  content: \"\\f296\"; }\n\n.fa-gitter:before {\n  content: \"\\f426\"; }\n\n.fa-glass-cheers:before {\n  content: \"\\f79f\"; }\n\n.fa-glass-martini:before {\n  content: \"\\f000\"; }\n\n.fa-glass-martini-alt:before {\n  content: \"\\f57b\"; }\n\n.fa-glass-whiskey:before {\n  content: \"\\f7a0\"; }\n\n.fa-glasses:before {\n  content: \"\\f530\"; }\n\n.fa-glide:before {\n  content: \"\\f2a5\"; }\n\n.fa-glide-g:before {\n  content: \"\\f2a6\"; }\n\n.fa-globe:before {\n  content: \"\\f0ac\"; }\n\n.fa-globe-africa:before {\n  content: \"\\f57c\"; }\n\n.fa-globe-americas:before {\n  content: \"\\f57d\"; }\n\n.fa-globe-asia:before {\n  content: \"\\f57e\"; }\n\n.fa-globe-europe:before {\n  content: \"\\f7a2\"; }\n\n.fa-gofore:before {\n  content: \"\\f3a7\"; }\n\n.fa-golf-ball:before {\n  content: \"\\f450\"; }\n\n.fa-goodreads:before {\n  content: \"\\f3a8\"; }\n\n.fa-goodreads-g:before {\n  content: \"\\f3a9\"; }\n\n.fa-google:before {\n  content: \"\\f1a0\"; }\n\n.fa-google-drive:before {\n  content: \"\\f3aa\"; }\n\n.fa-google-pay:before {\n  content: \"\\e079\"; }\n\n.fa-google-play:before {\n  content: \"\\f3ab\"; }\n\n.fa-google-plus:before {\n  content: \"\\f2b3\"; }\n\n.fa-google-plus-g:before {\n  content: \"\\f0d5\"; }\n\n.fa-google-plus-square:before {\n  content: \"\\f0d4\"; }\n\n.fa-google-wallet:before {\n  content: \"\\f1ee\"; }\n\n.fa-gopuram:before {\n  content: \"\\f664\"; }\n\n.fa-graduation-cap:before {\n  content: \"\\f19d\"; }\n\n.fa-gratipay:before {\n  content: \"\\f184\"; }\n\n.fa-grav:before {\n  content: \"\\f2d6\"; }\n\n.fa-greater-than:before {\n  content: \"\\f531\"; }\n\n.fa-greater-than-equal:before {\n  content: \"\\f532\"; }\n\n.fa-grimace:before {\n  content: \"\\f57f\"; }\n\n.fa-grin:before {\n  content: \"\\f580\"; }\n\n.fa-grin-alt:before {\n  content: \"\\f581\"; }\n\n.fa-grin-beam:before {\n  content: \"\\f582\"; }\n\n.fa-grin-beam-sweat:before {\n  content: \"\\f583\"; }\n\n.fa-grin-hearts:before {\n  content: \"\\f584\"; }\n\n.fa-grin-squint:before {\n  content: \"\\f585\"; }\n\n.fa-grin-squint-tears:before {\n  content: \"\\f586\"; }\n\n.fa-grin-stars:before {\n  content: \"\\f587\"; }\n\n.fa-grin-tears:before {\n  content: \"\\f588\"; }\n\n.fa-grin-tongue:before {\n  content: \"\\f589\"; }\n\n.fa-grin-tongue-squint:before {\n  content: \"\\f58a\"; }\n\n.fa-grin-tongue-wink:before {\n  content: \"\\f58b\"; }\n\n.fa-grin-wink:before {\n  content: \"\\f58c\"; }\n\n.fa-grip-horizontal:before {\n  content: \"\\f58d\"; }\n\n.fa-grip-lines:before {\n  content: \"\\f7a4\"; }\n\n.fa-grip-lines-vertical:before {\n  content: \"\\f7a5\"; }\n\n.fa-grip-vertical:before {\n  content: \"\\f58e\"; }\n\n.fa-gripfire:before {\n  content: \"\\f3ac\"; }\n\n.fa-grunt:before {\n  content: \"\\f3ad\"; }\n\n.fa-guilded:before {\n  content: \"\\e07e\"; }\n\n.fa-guitar:before {\n  content: \"\\f7a6\"; }\n\n.fa-gulp:before {\n  content: \"\\f3ae\"; }\n\n.fa-h-square:before {\n  content: \"\\f0fd\"; }\n\n.fa-hacker-news:before {\n  content: \"\\f1d4\"; }\n\n.fa-hacker-news-square:before {\n  content: \"\\f3af\"; }\n\n.fa-hackerrank:before {\n  content: \"\\f5f7\"; }\n\n.fa-hamburger:before {\n  content: \"\\f805\"; }\n\n.fa-hammer:before {\n  content: \"\\f6e3\"; }\n\n.fa-hamsa:before {\n  content: \"\\f665\"; }\n\n.fa-hand-holding:before {\n  content: \"\\f4bd\"; }\n\n.fa-hand-holding-heart:before {\n  content: \"\\f4be\"; }\n\n.fa-hand-holding-medical:before {\n  content: \"\\e05c\"; }\n\n.fa-hand-holding-usd:before {\n  content: \"\\f4c0\"; }\n\n.fa-hand-holding-water:before {\n  content: \"\\f4c1\"; }\n\n.fa-hand-lizard:before {\n  content: \"\\f258\"; }\n\n.fa-hand-middle-finger:before {\n  content: \"\\f806\"; }\n\n.fa-hand-paper:before {\n  content: \"\\f256\"; }\n\n.fa-hand-peace:before {\n  content: \"\\f25b\"; }\n\n.fa-hand-point-down:before {\n  content: \"\\f0a7\"; }\n\n.fa-hand-point-left:before {\n  content: \"\\f0a5\"; }\n\n.fa-hand-point-right:before {\n  content: \"\\f0a4\"; }\n\n.fa-hand-point-up:before {\n  content: \"\\f0a6\"; }\n\n.fa-hand-pointer:before {\n  content: \"\\f25a\"; }\n\n.fa-hand-rock:before {\n  content: \"\\f255\"; }\n\n.fa-hand-scissors:before {\n  content: \"\\f257\"; }\n\n.fa-hand-sparkles:before {\n  content: \"\\e05d\"; }\n\n.fa-hand-spock:before {\n  content: \"\\f259\"; }\n\n.fa-hands:before {\n  content: \"\\f4c2\"; }\n\n.fa-hands-helping:before {\n  content: \"\\f4c4\"; }\n\n.fa-hands-wash:before {\n  content: \"\\e05e\"; }\n\n.fa-handshake:before {\n  content: \"\\f2b5\"; }\n\n.fa-handshake-alt-slash:before {\n  content: \"\\e05f\"; }\n\n.fa-handshake-slash:before {\n  content: \"\\e060\"; }\n\n.fa-hanukiah:before {\n  content: \"\\f6e6\"; }\n\n.fa-hard-hat:before {\n  content: \"\\f807\"; }\n\n.fa-hashtag:before {\n  content: \"\\f292\"; }\n\n.fa-hat-cowboy:before {\n  content: \"\\f8c0\"; }\n\n.fa-hat-cowboy-side:before {\n  content: \"\\f8c1\"; }\n\n.fa-hat-wizard:before {\n  content: \"\\f6e8\"; }\n\n.fa-hdd:before {\n  content: \"\\f0a0\"; }\n\n.fa-head-side-cough:before {\n  content: \"\\e061\"; }\n\n.fa-head-side-cough-slash:before {\n  content: \"\\e062\"; }\n\n.fa-head-side-mask:before {\n  content: \"\\e063\"; }\n\n.fa-head-side-virus:before {\n  content: \"\\e064\"; }\n\n.fa-heading:before {\n  content: \"\\f1dc\"; }\n\n.fa-headphones:before {\n  content: \"\\f025\"; }\n\n.fa-headphones-alt:before {\n  content: \"\\f58f\"; }\n\n.fa-headset:before {\n  content: \"\\f590\"; }\n\n.fa-heart:before {\n  content: \"\\f004\"; }\n\n.fa-heart-broken:before {\n  content: \"\\f7a9\"; }\n\n.fa-heartbeat:before {\n  content: \"\\f21e\"; }\n\n.fa-helicopter:before {\n  content: \"\\f533\"; }\n\n.fa-highlighter:before {\n  content: \"\\f591\"; }\n\n.fa-hiking:before {\n  content: \"\\f6ec\"; }\n\n.fa-hippo:before {\n  content: \"\\f6ed\"; }\n\n.fa-hips:before {\n  content: \"\\f452\"; }\n\n.fa-hire-a-helper:before {\n  content: \"\\f3b0\"; }\n\n.fa-history:before {\n  content: \"\\f1da\"; }\n\n.fa-hive:before {\n  content: \"\\e07f\"; }\n\n.fa-hockey-puck:before {\n  content: \"\\f453\"; }\n\n.fa-holly-berry:before {\n  content: \"\\f7aa\"; }\n\n.fa-home:before {\n  content: \"\\f015\"; }\n\n.fa-hooli:before {\n  content: \"\\f427\"; }\n\n.fa-hornbill:before {\n  content: \"\\f592\"; }\n\n.fa-horse:before {\n  content: \"\\f6f0\"; }\n\n.fa-horse-head:before {\n  content: \"\\f7ab\"; }\n\n.fa-hospital:before {\n  content: \"\\f0f8\"; }\n\n.fa-hospital-alt:before {\n  content: \"\\f47d\"; }\n\n.fa-hospital-symbol:before {\n  content: \"\\f47e\"; }\n\n.fa-hospital-user:before {\n  content: \"\\f80d\"; }\n\n.fa-hot-tub:before {\n  content: \"\\f593\"; }\n\n.fa-hotdog:before {\n  content: \"\\f80f\"; }\n\n.fa-hotel:before {\n  content: \"\\f594\"; }\n\n.fa-hotjar:before {\n  content: \"\\f3b1\"; }\n\n.fa-hourglass:before {\n  content: \"\\f254\"; }\n\n.fa-hourglass-end:before {\n  content: \"\\f253\"; }\n\n.fa-hourglass-half:before {\n  content: \"\\f252\"; }\n\n.fa-hourglass-start:before {\n  content: \"\\f251\"; }\n\n.fa-house-damage:before {\n  content: \"\\f6f1\"; }\n\n.fa-house-user:before {\n  content: \"\\e065\"; }\n\n.fa-houzz:before {\n  content: \"\\f27c\"; }\n\n.fa-hryvnia:before {\n  content: \"\\f6f2\"; }\n\n.fa-html5:before {\n  content: \"\\f13b\"; }\n\n.fa-hubspot:before {\n  content: \"\\f3b2\"; }\n\n.fa-i-cursor:before {\n  content: \"\\f246\"; }\n\n.fa-ice-cream:before {\n  content: \"\\f810\"; }\n\n.fa-icicles:before {\n  content: \"\\f7ad\"; }\n\n.fa-icons:before {\n  content: \"\\f86d\"; }\n\n.fa-id-badge:before {\n  content: \"\\f2c1\"; }\n\n.fa-id-card:before {\n  content: \"\\f2c2\"; }\n\n.fa-id-card-alt:before {\n  content: \"\\f47f\"; }\n\n.fa-ideal:before {\n  content: \"\\e013\"; }\n\n.fa-igloo:before {\n  content: \"\\f7ae\"; }\n\n.fa-image:before {\n  content: \"\\f03e\"; }\n\n.fa-images:before {\n  content: \"\\f302\"; }\n\n.fa-imdb:before {\n  content: \"\\f2d8\"; }\n\n.fa-inbox:before {\n  content: \"\\f01c\"; }\n\n.fa-indent:before {\n  content: \"\\f03c\"; }\n\n.fa-industry:before {\n  content: \"\\f275\"; }\n\n.fa-infinity:before {\n  content: \"\\f534\"; }\n\n.fa-info:before {\n  content: \"\\f129\"; }\n\n.fa-info-circle:before {\n  content: \"\\f05a\"; }\n\n.fa-innosoft:before {\n  content: \"\\e080\"; }\n\n.fa-instagram:before {\n  content: \"\\f16d\"; }\n\n.fa-instagram-square:before {\n  content: \"\\e055\"; }\n\n.fa-instalod:before {\n  content: \"\\e081\"; }\n\n.fa-intercom:before {\n  content: \"\\f7af\"; }\n\n.fa-internet-explorer:before {\n  content: \"\\f26b\"; }\n\n.fa-invision:before {\n  content: \"\\f7b0\"; }\n\n.fa-ioxhost:before {\n  content: \"\\f208\"; }\n\n.fa-italic:before {\n  content: \"\\f033\"; }\n\n.fa-itch-io:before {\n  content: \"\\f83a\"; }\n\n.fa-itunes:before {\n  content: \"\\f3b4\"; }\n\n.fa-itunes-note:before {\n  content: \"\\f3b5\"; }\n\n.fa-java:before {\n  content: \"\\f4e4\"; }\n\n.fa-jedi:before {\n  content: \"\\f669\"; }\n\n.fa-jedi-order:before {\n  content: \"\\f50e\"; }\n\n.fa-jenkins:before {\n  content: \"\\f3b6\"; }\n\n.fa-jira:before {\n  content: \"\\f7b1\"; }\n\n.fa-joget:before {\n  content: \"\\f3b7\"; }\n\n.fa-joint:before {\n  content: \"\\f595\"; }\n\n.fa-joomla:before {\n  content: \"\\f1aa\"; }\n\n.fa-journal-whills:before {\n  content: \"\\f66a\"; }\n\n.fa-js:before {\n  content: \"\\f3b8\"; }\n\n.fa-js-square:before {\n  content: \"\\f3b9\"; }\n\n.fa-jsfiddle:before {\n  content: \"\\f1cc\"; }\n\n.fa-kaaba:before {\n  content: \"\\f66b\"; }\n\n.fa-kaggle:before {\n  content: \"\\f5fa\"; }\n\n.fa-key:before {\n  content: \"\\f084\"; }\n\n.fa-keybase:before {\n  content: \"\\f4f5\"; }\n\n.fa-keyboard:before {\n  content: \"\\f11c\"; }\n\n.fa-keycdn:before {\n  content: \"\\f3ba\"; }\n\n.fa-khanda:before {\n  content: \"\\f66d\"; }\n\n.fa-kickstarter:before {\n  content: \"\\f3bb\"; }\n\n.fa-kickstarter-k:before {\n  content: \"\\f3bc\"; }\n\n.fa-kiss:before {\n  content: \"\\f596\"; }\n\n.fa-kiss-beam:before {\n  content: \"\\f597\"; }\n\n.fa-kiss-wink-heart:before {\n  content: \"\\f598\"; }\n\n.fa-kiwi-bird:before {\n  content: \"\\f535\"; }\n\n.fa-korvue:before {\n  content: \"\\f42f\"; }\n\n.fa-landmark:before {\n  content: \"\\f66f\"; }\n\n.fa-language:before {\n  content: \"\\f1ab\"; }\n\n.fa-laptop:before {\n  content: \"\\f109\"; }\n\n.fa-laptop-code:before {\n  content: \"\\f5fc\"; }\n\n.fa-laptop-house:before {\n  content: \"\\e066\"; }\n\n.fa-laptop-medical:before {\n  content: \"\\f812\"; }\n\n.fa-laravel:before {\n  content: \"\\f3bd\"; }\n\n.fa-lastfm:before {\n  content: \"\\f202\"; }\n\n.fa-lastfm-square:before {\n  content: \"\\f203\"; }\n\n.fa-laugh:before {\n  content: \"\\f599\"; }\n\n.fa-laugh-beam:before {\n  content: \"\\f59a\"; }\n\n.fa-laugh-squint:before {\n  content: \"\\f59b\"; }\n\n.fa-laugh-wink:before {\n  content: \"\\f59c\"; }\n\n.fa-layer-group:before {\n  content: \"\\f5fd\"; }\n\n.fa-leaf:before {\n  content: \"\\f06c\"; }\n\n.fa-leanpub:before {\n  content: \"\\f212\"; }\n\n.fa-lemon:before {\n  content: \"\\f094\"; }\n\n.fa-less:before {\n  content: \"\\f41d\"; }\n\n.fa-less-than:before {\n  content: \"\\f536\"; }\n\n.fa-less-than-equal:before {\n  content: \"\\f537\"; }\n\n.fa-level-down-alt:before {\n  content: \"\\f3be\"; }\n\n.fa-level-up-alt:before {\n  content: \"\\f3bf\"; }\n\n.fa-life-ring:before {\n  content: \"\\f1cd\"; }\n\n.fa-lightbulb:before {\n  content: \"\\f0eb\"; }\n\n.fa-line:before {\n  content: \"\\f3c0\"; }\n\n.fa-link:before {\n  content: \"\\f0c1\"; }\n\n.fa-linkedin:before {\n  content: \"\\f08c\"; }\n\n.fa-linkedin-in:before {\n  content: \"\\f0e1\"; }\n\n.fa-linode:before {\n  content: \"\\f2b8\"; }\n\n.fa-linux:before {\n  content: \"\\f17c\"; }\n\n.fa-lira-sign:before {\n  content: \"\\f195\"; }\n\n.fa-list:before {\n  content: \"\\f03a\"; }\n\n.fa-list-alt:before {\n  content: \"\\f022\"; }\n\n.fa-list-ol:before {\n  content: \"\\f0cb\"; }\n\n.fa-list-ul:before {\n  content: \"\\f0ca\"; }\n\n.fa-location-arrow:before {\n  content: \"\\f124\"; }\n\n.fa-lock:before {\n  content: \"\\f023\"; }\n\n.fa-lock-open:before {\n  content: \"\\f3c1\"; }\n\n.fa-long-arrow-alt-down:before {\n  content: \"\\f309\"; }\n\n.fa-long-arrow-alt-left:before {\n  content: \"\\f30a\"; }\n\n.fa-long-arrow-alt-right:before {\n  content: \"\\f30b\"; }\n\n.fa-long-arrow-alt-up:before {\n  content: \"\\f30c\"; }\n\n.fa-low-vision:before {\n  content: \"\\f2a8\"; }\n\n.fa-luggage-cart:before {\n  content: \"\\f59d\"; }\n\n.fa-lungs:before {\n  content: \"\\f604\"; }\n\n.fa-lungs-virus:before {\n  content: \"\\e067\"; }\n\n.fa-lyft:before {\n  content: \"\\f3c3\"; }\n\n.fa-magento:before {\n  content: \"\\f3c4\"; }\n\n.fa-magic:before {\n  content: \"\\f0d0\"; }\n\n.fa-magnet:before {\n  content: \"\\f076\"; }\n\n.fa-mail-bulk:before {\n  content: \"\\f674\"; }\n\n.fa-mailchimp:before {\n  content: \"\\f59e\"; }\n\n.fa-male:before {\n  content: \"\\f183\"; }\n\n.fa-mandalorian:before {\n  content: \"\\f50f\"; }\n\n.fa-map:before {\n  content: \"\\f279\"; }\n\n.fa-map-marked:before {\n  content: \"\\f59f\"; }\n\n.fa-map-marked-alt:before {\n  content: \"\\f5a0\"; }\n\n.fa-map-marker:before {\n  content: \"\\f041\"; }\n\n.fa-map-marker-alt:before {\n  content: \"\\f3c5\"; }\n\n.fa-map-pin:before {\n  content: \"\\f276\"; }\n\n.fa-map-signs:before {\n  content: \"\\f277\"; }\n\n.fa-markdown:before {\n  content: \"\\f60f\"; }\n\n.fa-marker:before {\n  content: \"\\f5a1\"; }\n\n.fa-mars:before {\n  content: \"\\f222\"; }\n\n.fa-mars-double:before {\n  content: \"\\f227\"; }\n\n.fa-mars-stroke:before {\n  content: \"\\f229\"; }\n\n.fa-mars-stroke-h:before {\n  content: \"\\f22b\"; }\n\n.fa-mars-stroke-v:before {\n  content: \"\\f22a\"; }\n\n.fa-mask:before {\n  content: \"\\f6fa\"; }\n\n.fa-mastodon:before {\n  content: \"\\f4f6\"; }\n\n.fa-maxcdn:before {\n  content: \"\\f136\"; }\n\n.fa-mdb:before {\n  content: \"\\f8ca\"; }\n\n.fa-medal:before {\n  content: \"\\f5a2\"; }\n\n.fa-medapps:before {\n  content: \"\\f3c6\"; }\n\n.fa-medium:before {\n  content: \"\\f23a\"; }\n\n.fa-medium-m:before {\n  content: \"\\f3c7\"; }\n\n.fa-medkit:before {\n  content: \"\\f0fa\"; }\n\n.fa-medrt:before {\n  content: \"\\f3c8\"; }\n\n.fa-meetup:before {\n  content: \"\\f2e0\"; }\n\n.fa-megaport:before {\n  content: \"\\f5a3\"; }\n\n.fa-meh:before {\n  content: \"\\f11a\"; }\n\n.fa-meh-blank:before {\n  content: \"\\f5a4\"; }\n\n.fa-meh-rolling-eyes:before {\n  content: \"\\f5a5\"; }\n\n.fa-memory:before {\n  content: \"\\f538\"; }\n\n.fa-mendeley:before {\n  content: \"\\f7b3\"; }\n\n.fa-menorah:before {\n  content: \"\\f676\"; }\n\n.fa-mercury:before {\n  content: \"\\f223\"; }\n\n.fa-meteor:before {\n  content: \"\\f753\"; }\n\n.fa-microblog:before {\n  content: \"\\e01a\"; }\n\n.fa-microchip:before {\n  content: \"\\f2db\"; }\n\n.fa-microphone:before {\n  content: \"\\f130\"; }\n\n.fa-microphone-alt:before {\n  content: \"\\f3c9\"; }\n\n.fa-microphone-alt-slash:before {\n  content: \"\\f539\"; }\n\n.fa-microphone-slash:before {\n  content: \"\\f131\"; }\n\n.fa-microscope:before {\n  content: \"\\f610\"; }\n\n.fa-microsoft:before {\n  content: \"\\f3ca\"; }\n\n.fa-minus:before {\n  content: \"\\f068\"; }\n\n.fa-minus-circle:before {\n  content: \"\\f056\"; }\n\n.fa-minus-square:before {\n  content: \"\\f146\"; }\n\n.fa-mitten:before {\n  content: \"\\f7b5\"; }\n\n.fa-mix:before {\n  content: \"\\f3cb\"; }\n\n.fa-mixcloud:before {\n  content: \"\\f289\"; }\n\n.fa-mixer:before {\n  content: \"\\e056\"; }\n\n.fa-mizuni:before {\n  content: \"\\f3cc\"; }\n\n.fa-mobile:before {\n  content: \"\\f10b\"; }\n\n.fa-mobile-alt:before {\n  content: \"\\f3cd\"; }\n\n.fa-modx:before {\n  content: \"\\f285\"; }\n\n.fa-monero:before {\n  content: \"\\f3d0\"; }\n\n.fa-money-bill:before {\n  content: \"\\f0d6\"; }\n\n.fa-money-bill-alt:before {\n  content: \"\\f3d1\"; }\n\n.fa-money-bill-wave:before {\n  content: \"\\f53a\"; }\n\n.fa-money-bill-wave-alt:before {\n  content: \"\\f53b\"; }\n\n.fa-money-check:before {\n  content: \"\\f53c\"; }\n\n.fa-money-check-alt:before {\n  content: \"\\f53d\"; }\n\n.fa-monument:before {\n  content: \"\\f5a6\"; }\n\n.fa-moon:before {\n  content: \"\\f186\"; }\n\n.fa-mortar-pestle:before {\n  content: \"\\f5a7\"; }\n\n.fa-mosque:before {\n  content: \"\\f678\"; }\n\n.fa-motorcycle:before {\n  content: \"\\f21c\"; }\n\n.fa-mountain:before {\n  content: \"\\f6fc\"; }\n\n.fa-mouse:before {\n  content: \"\\f8cc\"; }\n\n.fa-mouse-pointer:before {\n  content: \"\\f245\"; }\n\n.fa-mug-hot:before {\n  content: \"\\f7b6\"; }\n\n.fa-music:before {\n  content: \"\\f001\"; }\n\n.fa-napster:before {\n  content: \"\\f3d2\"; }\n\n.fa-neos:before {\n  content: \"\\f612\"; }\n\n.fa-network-wired:before {\n  content: \"\\f6ff\"; }\n\n.fa-neuter:before {\n  content: \"\\f22c\"; }\n\n.fa-newspaper:before {\n  content: \"\\f1ea\"; }\n\n.fa-nimblr:before {\n  content: \"\\f5a8\"; }\n\n.fa-node:before {\n  content: \"\\f419\"; }\n\n.fa-node-js:before {\n  content: \"\\f3d3\"; }\n\n.fa-not-equal:before {\n  content: \"\\f53e\"; }\n\n.fa-notes-medical:before {\n  content: \"\\f481\"; }\n\n.fa-npm:before {\n  content: \"\\f3d4\"; }\n\n.fa-ns8:before {\n  content: \"\\f3d5\"; }\n\n.fa-nutritionix:before {\n  content: \"\\f3d6\"; }\n\n.fa-object-group:before {\n  content: \"\\f247\"; }\n\n.fa-object-ungroup:before {\n  content: \"\\f248\"; }\n\n.fa-octopus-deploy:before {\n  content: \"\\e082\"; }\n\n.fa-odnoklassniki:before {\n  content: \"\\f263\"; }\n\n.fa-odnoklassniki-square:before {\n  content: \"\\f264\"; }\n\n.fa-oil-can:before {\n  content: \"\\f613\"; }\n\n.fa-old-republic:before {\n  content: \"\\f510\"; }\n\n.fa-om:before {\n  content: \"\\f679\"; }\n\n.fa-opencart:before {\n  content: \"\\f23d\"; }\n\n.fa-openid:before {\n  content: \"\\f19b\"; }\n\n.fa-opera:before {\n  content: \"\\f26a\"; }\n\n.fa-optin-monster:before {\n  content: \"\\f23c\"; }\n\n.fa-orcid:before {\n  content: \"\\f8d2\"; }\n\n.fa-osi:before {\n  content: \"\\f41a\"; }\n\n.fa-otter:before {\n  content: \"\\f700\"; }\n\n.fa-outdent:before {\n  content: \"\\f03b\"; }\n\n.fa-page4:before {\n  content: \"\\f3d7\"; }\n\n.fa-pagelines:before {\n  content: \"\\f18c\"; }\n\n.fa-pager:before {\n  content: \"\\f815\"; }\n\n.fa-paint-brush:before {\n  content: \"\\f1fc\"; }\n\n.fa-paint-roller:before {\n  content: \"\\f5aa\"; }\n\n.fa-palette:before {\n  content: \"\\f53f\"; }\n\n.fa-palfed:before {\n  content: \"\\f3d8\"; }\n\n.fa-pallet:before {\n  content: \"\\f482\"; }\n\n.fa-paper-plane:before {\n  content: \"\\f1d8\"; }\n\n.fa-paperclip:before {\n  content: \"\\f0c6\"; }\n\n.fa-parachute-box:before {\n  content: \"\\f4cd\"; }\n\n.fa-paragraph:before {\n  content: \"\\f1dd\"; }\n\n.fa-parking:before {\n  content: \"\\f540\"; }\n\n.fa-passport:before {\n  content: \"\\f5ab\"; }\n\n.fa-pastafarianism:before {\n  content: \"\\f67b\"; }\n\n.fa-paste:before {\n  content: \"\\f0ea\"; }\n\n.fa-patreon:before {\n  content: \"\\f3d9\"; }\n\n.fa-pause:before {\n  content: \"\\f04c\"; }\n\n.fa-pause-circle:before {\n  content: \"\\f28b\"; }\n\n.fa-paw:before {\n  content: \"\\f1b0\"; }\n\n.fa-paypal:before {\n  content: \"\\f1ed\"; }\n\n.fa-peace:before {\n  content: \"\\f67c\"; }\n\n.fa-pen:before {\n  content: \"\\f304\"; }\n\n.fa-pen-alt:before {\n  content: \"\\f305\"; }\n\n.fa-pen-fancy:before {\n  content: \"\\f5ac\"; }\n\n.fa-pen-nib:before {\n  content: \"\\f5ad\"; }\n\n.fa-pen-square:before {\n  content: \"\\f14b\"; }\n\n.fa-pencil-alt:before {\n  content: \"\\f303\"; }\n\n.fa-pencil-ruler:before {\n  content: \"\\f5ae\"; }\n\n.fa-penny-arcade:before {\n  content: \"\\f704\"; }\n\n.fa-people-arrows:before {\n  content: \"\\e068\"; }\n\n.fa-people-carry:before {\n  content: \"\\f4ce\"; }\n\n.fa-pepper-hot:before {\n  content: \"\\f816\"; }\n\n.fa-perbyte:before {\n  content: \"\\e083\"; }\n\n.fa-percent:before {\n  content: \"\\f295\"; }\n\n.fa-percentage:before {\n  content: \"\\f541\"; }\n\n.fa-periscope:before {\n  content: \"\\f3da\"; }\n\n.fa-person-booth:before {\n  content: \"\\f756\"; }\n\n.fa-phabricator:before {\n  content: \"\\f3db\"; }\n\n.fa-phoenix-framework:before {\n  content: \"\\f3dc\"; }\n\n.fa-phoenix-squadron:before {\n  content: \"\\f511\"; }\n\n.fa-phone:before {\n  content: \"\\f095\"; }\n\n.fa-phone-alt:before {\n  content: \"\\f879\"; }\n\n.fa-phone-slash:before {\n  content: \"\\f3dd\"; }\n\n.fa-phone-square:before {\n  content: \"\\f098\"; }\n\n.fa-phone-square-alt:before {\n  content: \"\\f87b\"; }\n\n.fa-phone-volume:before {\n  content: \"\\f2a0\"; }\n\n.fa-photo-video:before {\n  content: \"\\f87c\"; }\n\n.fa-php:before {\n  content: \"\\f457\"; }\n\n.fa-pied-piper:before {\n  content: \"\\f2ae\"; }\n\n.fa-pied-piper-alt:before {\n  content: \"\\f1a8\"; }\n\n.fa-pied-piper-hat:before {\n  content: \"\\f4e5\"; }\n\n.fa-pied-piper-pp:before {\n  content: \"\\f1a7\"; }\n\n.fa-pied-piper-square:before {\n  content: \"\\e01e\"; }\n\n.fa-piggy-bank:before {\n  content: \"\\f4d3\"; }\n\n.fa-pills:before {\n  content: \"\\f484\"; }\n\n.fa-pinterest:before {\n  content: \"\\f0d2\"; }\n\n.fa-pinterest-p:before {\n  content: \"\\f231\"; }\n\n.fa-pinterest-square:before {\n  content: \"\\f0d3\"; }\n\n.fa-pizza-slice:before {\n  content: \"\\f818\"; }\n\n.fa-place-of-worship:before {\n  content: \"\\f67f\"; }\n\n.fa-plane:before {\n  content: \"\\f072\"; }\n\n.fa-plane-arrival:before {\n  content: \"\\f5af\"; }\n\n.fa-plane-departure:before {\n  content: \"\\f5b0\"; }\n\n.fa-plane-slash:before {\n  content: \"\\e069\"; }\n\n.fa-play:before {\n  content: \"\\f04b\"; }\n\n.fa-play-circle:before {\n  content: \"\\f144\"; }\n\n.fa-playstation:before {\n  content: \"\\f3df\"; }\n\n.fa-plug:before {\n  content: \"\\f1e6\"; }\n\n.fa-plus:before {\n  content: \"\\f067\"; }\n\n.fa-plus-circle:before {\n  content: \"\\f055\"; }\n\n.fa-plus-square:before {\n  content: \"\\f0fe\"; }\n\n.fa-podcast:before {\n  content: \"\\f2ce\"; }\n\n.fa-poll:before {\n  content: \"\\f681\"; }\n\n.fa-poll-h:before {\n  content: \"\\f682\"; }\n\n.fa-poo:before {\n  content: \"\\f2fe\"; }\n\n.fa-poo-storm:before {\n  content: \"\\f75a\"; }\n\n.fa-poop:before {\n  content: \"\\f619\"; }\n\n.fa-portrait:before {\n  content: \"\\f3e0\"; }\n\n.fa-pound-sign:before {\n  content: \"\\f154\"; }\n\n.fa-power-off:before {\n  content: \"\\f011\"; }\n\n.fa-pray:before {\n  content: \"\\f683\"; }\n\n.fa-praying-hands:before {\n  content: \"\\f684\"; }\n\n.fa-prescription:before {\n  content: \"\\f5b1\"; }\n\n.fa-prescription-bottle:before {\n  content: \"\\f485\"; }\n\n.fa-prescription-bottle-alt:before {\n  content: \"\\f486\"; }\n\n.fa-print:before {\n  content: \"\\f02f\"; }\n\n.fa-procedures:before {\n  content: \"\\f487\"; }\n\n.fa-product-hunt:before {\n  content: \"\\f288\"; }\n\n.fa-project-diagram:before {\n  content: \"\\f542\"; }\n\n.fa-pump-medical:before {\n  content: \"\\e06a\"; }\n\n.fa-pump-soap:before {\n  content: \"\\e06b\"; }\n\n.fa-pushed:before {\n  content: \"\\f3e1\"; }\n\n.fa-puzzle-piece:before {\n  content: \"\\f12e\"; }\n\n.fa-python:before {\n  content: \"\\f3e2\"; }\n\n.fa-qq:before {\n  content: \"\\f1d6\"; }\n\n.fa-qrcode:before {\n  content: \"\\f029\"; }\n\n.fa-question:before {\n  content: \"\\f128\"; }\n\n.fa-question-circle:before {\n  content: \"\\f059\"; }\n\n.fa-quidditch:before {\n  content: \"\\f458\"; }\n\n.fa-quinscape:before {\n  content: \"\\f459\"; }\n\n.fa-quora:before {\n  content: \"\\f2c4\"; }\n\n.fa-quote-left:before {\n  content: \"\\f10d\"; }\n\n.fa-quote-right:before {\n  content: \"\\f10e\"; }\n\n.fa-quran:before {\n  content: \"\\f687\"; }\n\n.fa-r-project:before {\n  content: \"\\f4f7\"; }\n\n.fa-radiation:before {\n  content: \"\\f7b9\"; }\n\n.fa-radiation-alt:before {\n  content: \"\\f7ba\"; }\n\n.fa-rainbow:before {\n  content: \"\\f75b\"; }\n\n.fa-random:before {\n  content: \"\\f074\"; }\n\n.fa-raspberry-pi:before {\n  content: \"\\f7bb\"; }\n\n.fa-ravelry:before {\n  content: \"\\f2d9\"; }\n\n.fa-react:before {\n  content: \"\\f41b\"; }\n\n.fa-reacteurope:before {\n  content: \"\\f75d\"; }\n\n.fa-readme:before {\n  content: \"\\f4d5\"; }\n\n.fa-rebel:before {\n  content: \"\\f1d0\"; }\n\n.fa-receipt:before {\n  content: \"\\f543\"; }\n\n.fa-record-vinyl:before {\n  content: \"\\f8d9\"; }\n\n.fa-recycle:before {\n  content: \"\\f1b8\"; }\n\n.fa-red-river:before {\n  content: \"\\f3e3\"; }\n\n.fa-reddit:before {\n  content: \"\\f1a1\"; }\n\n.fa-reddit-alien:before {\n  content: \"\\f281\"; }\n\n.fa-reddit-square:before {\n  content: \"\\f1a2\"; }\n\n.fa-redhat:before {\n  content: \"\\f7bc\"; }\n\n.fa-redo:before {\n  content: \"\\f01e\"; }\n\n.fa-redo-alt:before {\n  content: \"\\f2f9\"; }\n\n.fa-registered:before {\n  content: \"\\f25d\"; }\n\n.fa-remove-format:before {\n  content: \"\\f87d\"; }\n\n.fa-renren:before {\n  content: \"\\f18b\"; }\n\n.fa-reply:before {\n  content: \"\\f3e5\"; }\n\n.fa-reply-all:before {\n  content: \"\\f122\"; }\n\n.fa-replyd:before {\n  content: \"\\f3e6\"; }\n\n.fa-republican:before {\n  content: \"\\f75e\"; }\n\n.fa-researchgate:before {\n  content: \"\\f4f8\"; }\n\n.fa-resolving:before {\n  content: \"\\f3e7\"; }\n\n.fa-restroom:before {\n  content: \"\\f7bd\"; }\n\n.fa-retweet:before {\n  content: \"\\f079\"; }\n\n.fa-rev:before {\n  content: \"\\f5b2\"; }\n\n.fa-ribbon:before {\n  content: \"\\f4d6\"; }\n\n.fa-ring:before {\n  content: \"\\f70b\"; }\n\n.fa-road:before {\n  content: \"\\f018\"; }\n\n.fa-robot:before {\n  content: \"\\f544\"; }\n\n.fa-rocket:before {\n  content: \"\\f135\"; }\n\n.fa-rocketchat:before {\n  content: \"\\f3e8\"; }\n\n.fa-rockrms:before {\n  content: \"\\f3e9\"; }\n\n.fa-route:before {\n  content: \"\\f4d7\"; }\n\n.fa-rss:before {\n  content: \"\\f09e\"; }\n\n.fa-rss-square:before {\n  content: \"\\f143\"; }\n\n.fa-ruble-sign:before {\n  content: \"\\f158\"; }\n\n.fa-ruler:before {\n  content: \"\\f545\"; }\n\n.fa-ruler-combined:before {\n  content: \"\\f546\"; }\n\n.fa-ruler-horizontal:before {\n  content: \"\\f547\"; }\n\n.fa-ruler-vertical:before {\n  content: \"\\f548\"; }\n\n.fa-running:before {\n  content: \"\\f70c\"; }\n\n.fa-rupee-sign:before {\n  content: \"\\f156\"; }\n\n.fa-rust:before {\n  content: \"\\e07a\"; }\n\n.fa-sad-cry:before {\n  content: \"\\f5b3\"; }\n\n.fa-sad-tear:before {\n  content: \"\\f5b4\"; }\n\n.fa-safari:before {\n  content: \"\\f267\"; }\n\n.fa-salesforce:before {\n  content: \"\\f83b\"; }\n\n.fa-sass:before {\n  content: \"\\f41e\"; }\n\n.fa-satellite:before {\n  content: \"\\f7bf\"; }\n\n.fa-satellite-dish:before {\n  content: \"\\f7c0\"; }\n\n.fa-save:before {\n  content: \"\\f0c7\"; }\n\n.fa-schlix:before {\n  content: \"\\f3ea\"; }\n\n.fa-school:before {\n  content: \"\\f549\"; }\n\n.fa-screwdriver:before {\n  content: \"\\f54a\"; }\n\n.fa-scribd:before {\n  content: \"\\f28a\"; }\n\n.fa-scroll:before {\n  content: \"\\f70e\"; }\n\n.fa-sd-card:before {\n  content: \"\\f7c2\"; }\n\n.fa-search:before {\n  content: \"\\f002\"; }\n\n.fa-search-dollar:before {\n  content: \"\\f688\"; }\n\n.fa-search-location:before {\n  content: \"\\f689\"; }\n\n.fa-search-minus:before {\n  content: \"\\f010\"; }\n\n.fa-search-plus:before {\n  content: \"\\f00e\"; }\n\n.fa-searchengin:before {\n  content: \"\\f3eb\"; }\n\n.fa-seedling:before {\n  content: \"\\f4d8\"; }\n\n.fa-sellcast:before {\n  content: \"\\f2da\"; }\n\n.fa-sellsy:before {\n  content: \"\\f213\"; }\n\n.fa-server:before {\n  content: \"\\f233\"; }\n\n.fa-servicestack:before {\n  content: \"\\f3ec\"; }\n\n.fa-shapes:before {\n  content: \"\\f61f\"; }\n\n.fa-share:before {\n  content: \"\\f064\"; }\n\n.fa-share-alt:before {\n  content: \"\\f1e0\"; }\n\n.fa-share-alt-square:before {\n  content: \"\\f1e1\"; }\n\n.fa-share-square:before {\n  content: \"\\f14d\"; }\n\n.fa-shekel-sign:before {\n  content: \"\\f20b\"; }\n\n.fa-shield-alt:before {\n  content: \"\\f3ed\"; }\n\n.fa-shield-virus:before {\n  content: \"\\e06c\"; }\n\n.fa-ship:before {\n  content: \"\\f21a\"; }\n\n.fa-shipping-fast:before {\n  content: \"\\f48b\"; }\n\n.fa-shirtsinbulk:before {\n  content: \"\\f214\"; }\n\n.fa-shoe-prints:before {\n  content: \"\\f54b\"; }\n\n.fa-shopify:before {\n  content: \"\\e057\"; }\n\n.fa-shopping-bag:before {\n  content: \"\\f290\"; }\n\n.fa-shopping-basket:before {\n  content: \"\\f291\"; }\n\n.fa-shopping-cart:before {\n  content: \"\\f07a\"; }\n\n.fa-shopware:before {\n  content: \"\\f5b5\"; }\n\n.fa-shower:before {\n  content: \"\\f2cc\"; }\n\n.fa-shuttle-van:before {\n  content: \"\\f5b6\"; }\n\n.fa-sign:before {\n  content: \"\\f4d9\"; }\n\n.fa-sign-in-alt:before {\n  content: \"\\f2f6\"; }\n\n.fa-sign-language:before {\n  content: \"\\f2a7\"; }\n\n.fa-sign-out-alt:before {\n  content: \"\\f2f5\"; }\n\n.fa-signal:before {\n  content: \"\\f012\"; }\n\n.fa-signature:before {\n  content: \"\\f5b7\"; }\n\n.fa-sim-card:before {\n  content: \"\\f7c4\"; }\n\n.fa-simplybuilt:before {\n  content: \"\\f215\"; }\n\n.fa-sink:before {\n  content: \"\\e06d\"; }\n\n.fa-sistrix:before {\n  content: \"\\f3ee\"; }\n\n.fa-sitemap:before {\n  content: \"\\f0e8\"; }\n\n.fa-sith:before {\n  content: \"\\f512\"; }\n\n.fa-skating:before {\n  content: \"\\f7c5\"; }\n\n.fa-sketch:before {\n  content: \"\\f7c6\"; }\n\n.fa-skiing:before {\n  content: \"\\f7c9\"; }\n\n.fa-skiing-nordic:before {\n  content: \"\\f7ca\"; }\n\n.fa-skull:before {\n  content: \"\\f54c\"; }\n\n.fa-skull-crossbones:before {\n  content: \"\\f714\"; }\n\n.fa-skyatlas:before {\n  content: \"\\f216\"; }\n\n.fa-skype:before {\n  content: \"\\f17e\"; }\n\n.fa-slack:before {\n  content: \"\\f198\"; }\n\n.fa-slack-hash:before {\n  content: \"\\f3ef\"; }\n\n.fa-slash:before {\n  content: \"\\f715\"; }\n\n.fa-sleigh:before {\n  content: \"\\f7cc\"; }\n\n.fa-sliders-h:before {\n  content: \"\\f1de\"; }\n\n.fa-slideshare:before {\n  content: \"\\f1e7\"; }\n\n.fa-smile:before {\n  content: \"\\f118\"; }\n\n.fa-smile-beam:before {\n  content: \"\\f5b8\"; }\n\n.fa-smile-wink:before {\n  content: \"\\f4da\"; }\n\n.fa-smog:before {\n  content: \"\\f75f\"; }\n\n.fa-smoking:before {\n  content: \"\\f48d\"; }\n\n.fa-smoking-ban:before {\n  content: \"\\f54d\"; }\n\n.fa-sms:before {\n  content: \"\\f7cd\"; }\n\n.fa-snapchat:before {\n  content: \"\\f2ab\"; }\n\n.fa-snapchat-ghost:before {\n  content: \"\\f2ac\"; }\n\n.fa-snapchat-square:before {\n  content: \"\\f2ad\"; }\n\n.fa-snowboarding:before {\n  content: \"\\f7ce\"; }\n\n.fa-snowflake:before {\n  content: \"\\f2dc\"; }\n\n.fa-snowman:before {\n  content: \"\\f7d0\"; }\n\n.fa-snowplow:before {\n  content: \"\\f7d2\"; }\n\n.fa-soap:before {\n  content: \"\\e06e\"; }\n\n.fa-socks:before {\n  content: \"\\f696\"; }\n\n.fa-solar-panel:before {\n  content: \"\\f5ba\"; }\n\n.fa-sort:before {\n  content: \"\\f0dc\"; }\n\n.fa-sort-alpha-down:before {\n  content: \"\\f15d\"; }\n\n.fa-sort-alpha-down-alt:before {\n  content: \"\\f881\"; }\n\n.fa-sort-alpha-up:before {\n  content: \"\\f15e\"; }\n\n.fa-sort-alpha-up-alt:before {\n  content: \"\\f882\"; }\n\n.fa-sort-amount-down:before {\n  content: \"\\f160\"; }\n\n.fa-sort-amount-down-alt:before {\n  content: \"\\f884\"; }\n\n.fa-sort-amount-up:before {\n  content: \"\\f161\"; }\n\n.fa-sort-amount-up-alt:before {\n  content: \"\\f885\"; }\n\n.fa-sort-down:before {\n  content: \"\\f0dd\"; }\n\n.fa-sort-numeric-down:before {\n  content: \"\\f162\"; }\n\n.fa-sort-numeric-down-alt:before {\n  content: \"\\f886\"; }\n\n.fa-sort-numeric-up:before {\n  content: \"\\f163\"; }\n\n.fa-sort-numeric-up-alt:before {\n  content: \"\\f887\"; }\n\n.fa-sort-up:before {\n  content: \"\\f0de\"; }\n\n.fa-soundcloud:before {\n  content: \"\\f1be\"; }\n\n.fa-sourcetree:before {\n  content: \"\\f7d3\"; }\n\n.fa-spa:before {\n  content: \"\\f5bb\"; }\n\n.fa-space-shuttle:before {\n  content: \"\\f197\"; }\n\n.fa-speakap:before {\n  content: \"\\f3f3\"; }\n\n.fa-speaker-deck:before {\n  content: \"\\f83c\"; }\n\n.fa-spell-check:before {\n  content: \"\\f891\"; }\n\n.fa-spider:before {\n  content: \"\\f717\"; }\n\n.fa-spinner:before {\n  content: \"\\f110\"; }\n\n.fa-splotch:before {\n  content: \"\\f5bc\"; }\n\n.fa-spotify:before {\n  content: \"\\f1bc\"; }\n\n.fa-spray-can:before {\n  content: \"\\f5bd\"; }\n\n.fa-square:before {\n  content: \"\\f0c8\"; }\n\n.fa-square-full:before {\n  content: \"\\f45c\"; }\n\n.fa-square-root-alt:before {\n  content: \"\\f698\"; }\n\n.fa-squarespace:before {\n  content: \"\\f5be\"; }\n\n.fa-stack-exchange:before {\n  content: \"\\f18d\"; }\n\n.fa-stack-overflow:before {\n  content: \"\\f16c\"; }\n\n.fa-stackpath:before {\n  content: \"\\f842\"; }\n\n.fa-stamp:before {\n  content: \"\\f5bf\"; }\n\n.fa-star:before {\n  content: \"\\f005\"; }\n\n.fa-star-and-crescent:before {\n  content: \"\\f699\"; }\n\n.fa-star-half:before {\n  content: \"\\f089\"; }\n\n.fa-star-half-alt:before {\n  content: \"\\f5c0\"; }\n\n.fa-star-of-david:before {\n  content: \"\\f69a\"; }\n\n.fa-star-of-life:before {\n  content: \"\\f621\"; }\n\n.fa-staylinked:before {\n  content: \"\\f3f5\"; }\n\n.fa-steam:before {\n  content: \"\\f1b6\"; }\n\n.fa-steam-square:before {\n  content: \"\\f1b7\"; }\n\n.fa-steam-symbol:before {\n  content: \"\\f3f6\"; }\n\n.fa-step-backward:before {\n  content: \"\\f048\"; }\n\n.fa-step-forward:before {\n  content: \"\\f051\"; }\n\n.fa-stethoscope:before {\n  content: \"\\f0f1\"; }\n\n.fa-sticker-mule:before {\n  content: \"\\f3f7\"; }\n\n.fa-sticky-note:before {\n  content: \"\\f249\"; }\n\n.fa-stop:before {\n  content: \"\\f04d\"; }\n\n.fa-stop-circle:before {\n  content: \"\\f28d\"; }\n\n.fa-stopwatch:before {\n  content: \"\\f2f2\"; }\n\n.fa-stopwatch-20:before {\n  content: \"\\e06f\"; }\n\n.fa-store:before {\n  content: \"\\f54e\"; }\n\n.fa-store-alt:before {\n  content: \"\\f54f\"; }\n\n.fa-store-alt-slash:before {\n  content: \"\\e070\"; }\n\n.fa-store-slash:before {\n  content: \"\\e071\"; }\n\n.fa-strava:before {\n  content: \"\\f428\"; }\n\n.fa-stream:before {\n  content: \"\\f550\"; }\n\n.fa-street-view:before {\n  content: \"\\f21d\"; }\n\n.fa-strikethrough:before {\n  content: \"\\f0cc\"; }\n\n.fa-stripe:before {\n  content: \"\\f429\"; }\n\n.fa-stripe-s:before {\n  content: \"\\f42a\"; }\n\n.fa-stroopwafel:before {\n  content: \"\\f551\"; }\n\n.fa-studiovinari:before {\n  content: \"\\f3f8\"; }\n\n.fa-stumbleupon:before {\n  content: \"\\f1a4\"; }\n\n.fa-stumbleupon-circle:before {\n  content: \"\\f1a3\"; }\n\n.fa-subscript:before {\n  content: \"\\f12c\"; }\n\n.fa-subway:before {\n  content: \"\\f239\"; }\n\n.fa-suitcase:before {\n  content: \"\\f0f2\"; }\n\n.fa-suitcase-rolling:before {\n  content: \"\\f5c1\"; }\n\n.fa-sun:before {\n  content: \"\\f185\"; }\n\n.fa-superpowers:before {\n  content: \"\\f2dd\"; }\n\n.fa-superscript:before {\n  content: \"\\f12b\"; }\n\n.fa-supple:before {\n  content: \"\\f3f9\"; }\n\n.fa-surprise:before {\n  content: \"\\f5c2\"; }\n\n.fa-suse:before {\n  content: \"\\f7d6\"; }\n\n.fa-swatchbook:before {\n  content: \"\\f5c3\"; }\n\n.fa-swift:before {\n  content: \"\\f8e1\"; }\n\n.fa-swimmer:before {\n  content: \"\\f5c4\"; }\n\n.fa-swimming-pool:before {\n  content: \"\\f5c5\"; }\n\n.fa-symfony:before {\n  content: \"\\f83d\"; }\n\n.fa-synagogue:before {\n  content: \"\\f69b\"; }\n\n.fa-sync:before {\n  content: \"\\f021\"; }\n\n.fa-sync-alt:before {\n  content: \"\\f2f1\"; }\n\n.fa-syringe:before {\n  content: \"\\f48e\"; }\n\n.fa-table:before {\n  content: \"\\f0ce\"; }\n\n.fa-table-tennis:before {\n  content: \"\\f45d\"; }\n\n.fa-tablet:before {\n  content: \"\\f10a\"; }\n\n.fa-tablet-alt:before {\n  content: \"\\f3fa\"; }\n\n.fa-tablets:before {\n  content: \"\\f490\"; }\n\n.fa-tachometer-alt:before {\n  content: \"\\f3fd\"; }\n\n.fa-tag:before {\n  content: \"\\f02b\"; }\n\n.fa-tags:before {\n  content: \"\\f02c\"; }\n\n.fa-tape:before {\n  content: \"\\f4db\"; }\n\n.fa-tasks:before {\n  content: \"\\f0ae\"; }\n\n.fa-taxi:before {\n  content: \"\\f1ba\"; }\n\n.fa-teamspeak:before {\n  content: \"\\f4f9\"; }\n\n.fa-teeth:before {\n  content: \"\\f62e\"; }\n\n.fa-teeth-open:before {\n  content: \"\\f62f\"; }\n\n.fa-telegram:before {\n  content: \"\\f2c6\"; }\n\n.fa-telegram-plane:before {\n  content: \"\\f3fe\"; }\n\n.fa-temperature-high:before {\n  content: \"\\f769\"; }\n\n.fa-temperature-low:before {\n  content: \"\\f76b\"; }\n\n.fa-tencent-weibo:before {\n  content: \"\\f1d5\"; }\n\n.fa-tenge:before {\n  content: \"\\f7d7\"; }\n\n.fa-terminal:before {\n  content: \"\\f120\"; }\n\n.fa-text-height:before {\n  content: \"\\f034\"; }\n\n.fa-text-width:before {\n  content: \"\\f035\"; }\n\n.fa-th:before {\n  content: \"\\f00a\"; }\n\n.fa-th-large:before {\n  content: \"\\f009\"; }\n\n.fa-th-list:before {\n  content: \"\\f00b\"; }\n\n.fa-the-red-yeti:before {\n  content: \"\\f69d\"; }\n\n.fa-theater-masks:before {\n  content: \"\\f630\"; }\n\n.fa-themeco:before {\n  content: \"\\f5c6\"; }\n\n.fa-themeisle:before {\n  content: \"\\f2b2\"; }\n\n.fa-thermometer:before {\n  content: \"\\f491\"; }\n\n.fa-thermometer-empty:before {\n  content: \"\\f2cb\"; }\n\n.fa-thermometer-full:before {\n  content: \"\\f2c7\"; }\n\n.fa-thermometer-half:before {\n  content: \"\\f2c9\"; }\n\n.fa-thermometer-quarter:before {\n  content: \"\\f2ca\"; }\n\n.fa-thermometer-three-quarters:before {\n  content: \"\\f2c8\"; }\n\n.fa-think-peaks:before {\n  content: \"\\f731\"; }\n\n.fa-thumbs-down:before {\n  content: \"\\f165\"; }\n\n.fa-thumbs-up:before {\n  content: \"\\f164\"; }\n\n.fa-thumbtack:before {\n  content: \"\\f08d\"; }\n\n.fa-ticket-alt:before {\n  content: \"\\f3ff\"; }\n\n.fa-tiktok:before {\n  content: \"\\e07b\"; }\n\n.fa-times:before {\n  content: \"\\f00d\"; }\n\n.fa-times-circle:before {\n  content: \"\\f057\"; }\n\n.fa-tint:before {\n  content: \"\\f043\"; }\n\n.fa-tint-slash:before {\n  content: \"\\f5c7\"; }\n\n.fa-tired:before {\n  content: \"\\f5c8\"; }\n\n.fa-toggle-off:before {\n  content: \"\\f204\"; }\n\n.fa-toggle-on:before {\n  content: \"\\f205\"; }\n\n.fa-toilet:before {\n  content: \"\\f7d8\"; }\n\n.fa-toilet-paper:before {\n  content: \"\\f71e\"; }\n\n.fa-toilet-paper-slash:before {\n  content: \"\\e072\"; }\n\n.fa-toolbox:before {\n  content: \"\\f552\"; }\n\n.fa-tools:before {\n  content: \"\\f7d9\"; }\n\n.fa-tooth:before {\n  content: \"\\f5c9\"; }\n\n.fa-torah:before {\n  content: \"\\f6a0\"; }\n\n.fa-torii-gate:before {\n  content: \"\\f6a1\"; }\n\n.fa-tractor:before {\n  content: \"\\f722\"; }\n\n.fa-trade-federation:before {\n  content: \"\\f513\"; }\n\n.fa-trademark:before {\n  content: \"\\f25c\"; }\n\n.fa-traffic-light:before {\n  content: \"\\f637\"; }\n\n.fa-trailer:before {\n  content: \"\\e041\"; }\n\n.fa-train:before {\n  content: \"\\f238\"; }\n\n.fa-tram:before {\n  content: \"\\f7da\"; }\n\n.fa-transgender:before {\n  content: \"\\f224\"; }\n\n.fa-transgender-alt:before {\n  content: \"\\f225\"; }\n\n.fa-trash:before {\n  content: \"\\f1f8\"; }\n\n.fa-trash-alt:before {\n  content: \"\\f2ed\"; }\n\n.fa-trash-restore:before {\n  content: \"\\f829\"; }\n\n.fa-trash-restore-alt:before {\n  content: \"\\f82a\"; }\n\n.fa-tree:before {\n  content: \"\\f1bb\"; }\n\n.fa-trello:before {\n  content: \"\\f181\"; }\n\n.fa-tripadvisor:before {\n  content: \"\\f262\"; }\n\n.fa-trophy:before {\n  content: \"\\f091\"; }\n\n.fa-truck:before {\n  content: \"\\f0d1\"; }\n\n.fa-truck-loading:before {\n  content: \"\\f4de\"; }\n\n.fa-truck-monster:before {\n  content: \"\\f63b\"; }\n\n.fa-truck-moving:before {\n  content: \"\\f4df\"; }\n\n.fa-truck-pickup:before {\n  content: \"\\f63c\"; }\n\n.fa-tshirt:before {\n  content: \"\\f553\"; }\n\n.fa-tty:before {\n  content: \"\\f1e4\"; }\n\n.fa-tumblr:before {\n  content: \"\\f173\"; }\n\n.fa-tumblr-square:before {\n  content: \"\\f174\"; }\n\n.fa-tv:before {\n  content: \"\\f26c\"; }\n\n.fa-twitch:before {\n  content: \"\\f1e8\"; }\n\n.fa-twitter:before {\n  content: \"\\f099\"; }\n\n.fa-twitter-square:before {\n  content: \"\\f081\"; }\n\n.fa-typo3:before {\n  content: \"\\f42b\"; }\n\n.fa-uber:before {\n  content: \"\\f402\"; }\n\n.fa-ubuntu:before {\n  content: \"\\f7df\"; }\n\n.fa-uikit:before {\n  content: \"\\f403\"; }\n\n.fa-umbraco:before {\n  content: \"\\f8e8\"; }\n\n.fa-umbrella:before {\n  content: \"\\f0e9\"; }\n\n.fa-umbrella-beach:before {\n  content: \"\\f5ca\"; }\n\n.fa-uncharted:before {\n  content: \"\\e084\"; }\n\n.fa-underline:before {\n  content: \"\\f0cd\"; }\n\n.fa-undo:before {\n  content: \"\\f0e2\"; }\n\n.fa-undo-alt:before {\n  content: \"\\f2ea\"; }\n\n.fa-uniregistry:before {\n  content: \"\\f404\"; }\n\n.fa-unity:before {\n  content: \"\\e049\"; }\n\n.fa-universal-access:before {\n  content: \"\\f29a\"; }\n\n.fa-university:before {\n  content: \"\\f19c\"; }\n\n.fa-unlink:before {\n  content: \"\\f127\"; }\n\n.fa-unlock:before {\n  content: \"\\f09c\"; }\n\n.fa-unlock-alt:before {\n  content: \"\\f13e\"; }\n\n.fa-unsplash:before {\n  content: \"\\e07c\"; }\n\n.fa-untappd:before {\n  content: \"\\f405\"; }\n\n.fa-upload:before {\n  content: \"\\f093\"; }\n\n.fa-ups:before {\n  content: \"\\f7e0\"; }\n\n.fa-usb:before {\n  content: \"\\f287\"; }\n\n.fa-user:before {\n  content: \"\\f007\"; }\n\n.fa-user-alt:before {\n  content: \"\\f406\"; }\n\n.fa-user-alt-slash:before {\n  content: \"\\f4fa\"; }\n\n.fa-user-astronaut:before {\n  content: \"\\f4fb\"; }\n\n.fa-user-check:before {\n  content: \"\\f4fc\"; }\n\n.fa-user-circle:before {\n  content: \"\\f2bd\"; }\n\n.fa-user-clock:before {\n  content: \"\\f4fd\"; }\n\n.fa-user-cog:before {\n  content: \"\\f4fe\"; }\n\n.fa-user-edit:before {\n  content: \"\\f4ff\"; }\n\n.fa-user-friends:before {\n  content: \"\\f500\"; }\n\n.fa-user-graduate:before {\n  content: \"\\f501\"; }\n\n.fa-user-injured:before {\n  content: \"\\f728\"; }\n\n.fa-user-lock:before {\n  content: \"\\f502\"; }\n\n.fa-user-md:before {\n  content: \"\\f0f0\"; }\n\n.fa-user-minus:before {\n  content: \"\\f503\"; }\n\n.fa-user-ninja:before {\n  content: \"\\f504\"; }\n\n.fa-user-nurse:before {\n  content: \"\\f82f\"; }\n\n.fa-user-plus:before {\n  content: \"\\f234\"; }\n\n.fa-user-secret:before {\n  content: \"\\f21b\"; }\n\n.fa-user-shield:before {\n  content: \"\\f505\"; }\n\n.fa-user-slash:before {\n  content: \"\\f506\"; }\n\n.fa-user-tag:before {\n  content: \"\\f507\"; }\n\n.fa-user-tie:before {\n  content: \"\\f508\"; }\n\n.fa-user-times:before {\n  content: \"\\f235\"; }\n\n.fa-users:before {\n  content: \"\\f0c0\"; }\n\n.fa-users-cog:before {\n  content: \"\\f509\"; }\n\n.fa-users-slash:before {\n  content: \"\\e073\"; }\n\n.fa-usps:before {\n  content: \"\\f7e1\"; }\n\n.fa-ussunnah:before {\n  content: \"\\f407\"; }\n\n.fa-utensil-spoon:before {\n  content: \"\\f2e5\"; }\n\n.fa-utensils:before {\n  content: \"\\f2e7\"; }\n\n.fa-vaadin:before {\n  content: \"\\f408\"; }\n\n.fa-vector-square:before {\n  content: \"\\f5cb\"; }\n\n.fa-venus:before {\n  content: \"\\f221\"; }\n\n.fa-venus-double:before {\n  content: \"\\f226\"; }\n\n.fa-venus-mars:before {\n  content: \"\\f228\"; }\n\n.fa-vest:before {\n  content: \"\\e085\"; }\n\n.fa-vest-patches:before {\n  content: \"\\e086\"; }\n\n.fa-viacoin:before {\n  content: \"\\f237\"; }\n\n.fa-viadeo:before {\n  content: \"\\f2a9\"; }\n\n.fa-viadeo-square:before {\n  content: \"\\f2aa\"; }\n\n.fa-vial:before {\n  content: \"\\f492\"; }\n\n.fa-vials:before {\n  content: \"\\f493\"; }\n\n.fa-viber:before {\n  content: \"\\f409\"; }\n\n.fa-video:before {\n  content: \"\\f03d\"; }\n\n.fa-video-slash:before {\n  content: \"\\f4e2\"; }\n\n.fa-vihara:before {\n  content: \"\\f6a7\"; }\n\n.fa-vimeo:before {\n  content: \"\\f40a\"; }\n\n.fa-vimeo-square:before {\n  content: \"\\f194\"; }\n\n.fa-vimeo-v:before {\n  content: \"\\f27d\"; }\n\n.fa-vine:before {\n  content: \"\\f1ca\"; }\n\n.fa-virus:before {\n  content: \"\\e074\"; }\n\n.fa-virus-slash:before {\n  content: \"\\e075\"; }\n\n.fa-viruses:before {\n  content: \"\\e076\"; }\n\n.fa-vk:before {\n  content: \"\\f189\"; }\n\n.fa-vnv:before {\n  content: \"\\f40b\"; }\n\n.fa-voicemail:before {\n  content: \"\\f897\"; }\n\n.fa-volleyball-ball:before {\n  content: \"\\f45f\"; }\n\n.fa-volume-down:before {\n  content: \"\\f027\"; }\n\n.fa-volume-mute:before {\n  content: \"\\f6a9\"; }\n\n.fa-volume-off:before {\n  content: \"\\f026\"; }\n\n.fa-volume-up:before {\n  content: \"\\f028\"; }\n\n.fa-vote-yea:before {\n  content: \"\\f772\"; }\n\n.fa-vr-cardboard:before {\n  content: \"\\f729\"; }\n\n.fa-vuejs:before {\n  content: \"\\f41f\"; }\n\n.fa-walking:before {\n  content: \"\\f554\"; }\n\n.fa-wallet:before {\n  content: \"\\f555\"; }\n\n.fa-warehouse:before {\n  content: \"\\f494\"; }\n\n.fa-watchman-monitoring:before {\n  content: \"\\e087\"; }\n\n.fa-water:before {\n  content: \"\\f773\"; }\n\n.fa-wave-square:before {\n  content: \"\\f83e\"; }\n\n.fa-waze:before {\n  content: \"\\f83f\"; }\n\n.fa-weebly:before {\n  content: \"\\f5cc\"; }\n\n.fa-weibo:before {\n  content: \"\\f18a\"; }\n\n.fa-weight:before {\n  content: \"\\f496\"; }\n\n.fa-weight-hanging:before {\n  content: \"\\f5cd\"; }\n\n.fa-weixin:before {\n  content: \"\\f1d7\"; }\n\n.fa-whatsapp:before {\n  content: \"\\f232\"; }\n\n.fa-whatsapp-square:before {\n  content: \"\\f40c\"; }\n\n.fa-wheelchair:before {\n  content: \"\\f193\"; }\n\n.fa-whmcs:before {\n  content: \"\\f40d\"; }\n\n.fa-wifi:before {\n  content: \"\\f1eb\"; }\n\n.fa-wikipedia-w:before {\n  content: \"\\f266\"; }\n\n.fa-wind:before {\n  content: \"\\f72e\"; }\n\n.fa-window-close:before {\n  content: \"\\f410\"; }\n\n.fa-window-maximize:before {\n  content: \"\\f2d0\"; }\n\n.fa-window-minimize:before {\n  content: \"\\f2d1\"; }\n\n.fa-window-restore:before {\n  content: \"\\f2d2\"; }\n\n.fa-windows:before {\n  content: \"\\f17a\"; }\n\n.fa-wine-bottle:before {\n  content: \"\\f72f\"; }\n\n.fa-wine-glass:before {\n  content: \"\\f4e3\"; }\n\n.fa-wine-glass-alt:before {\n  content: \"\\f5ce\"; }\n\n.fa-wix:before {\n  content: \"\\f5cf\"; }\n\n.fa-wizards-of-the-coast:before {\n  content: \"\\f730\"; }\n\n.fa-wodu:before {\n  content: \"\\e088\"; }\n\n.fa-wolf-pack-battalion:before {\n  content: \"\\f514\"; }\n\n.fa-won-sign:before {\n  content: \"\\f159\"; }\n\n.fa-wordpress:before {\n  content: \"\\f19a\"; }\n\n.fa-wordpress-simple:before {\n  content: \"\\f411\"; }\n\n.fa-wpbeginner:before {\n  content: \"\\f297\"; }\n\n.fa-wpexplorer:before {\n  content: \"\\f2de\"; }\n\n.fa-wpforms:before {\n  content: \"\\f298\"; }\n\n.fa-wpressr:before {\n  content: \"\\f3e4\"; }\n\n.fa-wrench:before {\n  content: \"\\f0ad\"; }\n\n.fa-x-ray:before {\n  content: \"\\f497\"; }\n\n.fa-xbox:before {\n  content: \"\\f412\"; }\n\n.fa-xing:before {\n  content: \"\\f168\"; }\n\n.fa-xing-square:before {\n  content: \"\\f169\"; }\n\n.fa-y-combinator:before {\n  content: \"\\f23b\"; }\n\n.fa-yahoo:before {\n  content: \"\\f19e\"; }\n\n.fa-yammer:before {\n  content: \"\\f840\"; }\n\n.fa-yandex:before {\n  content: \"\\f413\"; }\n\n.fa-yandex-international:before {\n  content: \"\\f414\"; }\n\n.fa-yarn:before {\n  content: \"\\f7e3\"; }\n\n.fa-yelp:before {\n  content: \"\\f1e9\"; }\n\n.fa-yen-sign:before {\n  content: \"\\f157\"; }\n\n.fa-yin-yang:before {\n  content: \"\\f6ad\"; }\n\n.fa-yoast:before {\n  content: \"\\f2b1\"; }\n\n.fa-youtube:before {\n  content: \"\\f167\"; }\n\n.fa-youtube-square:before {\n  content: \"\\f431\"; }\n\n.fa-zhihu:before {\n  content: \"\\f63f\"; }\n\n.sr-only {\n  border: 0;\n  clip: rect(0, 0, 0, 0);\n  height: 1px;\n  margin: -1px;\n  overflow: hidden;\n  padding: 0;\n  position: absolute;\n  width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n  clip: auto;\n  height: auto;\n  margin: 0;\n  overflow: visible;\n  position: static;\n  width: auto; }\n@font-face {\n  font-family: 'Font Awesome 5 Brands';\n  font-style: normal;\n  font-weight: 400;\n  font-display: block;\n  src: url(\"../fonts/fa-brands-400.eot\");\n  src: url(\"../fonts/fa-brands-400.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.woff\") format(\"woff\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\"), url(\"../fonts/fa-brands-400.svg#fontawesome\") format(\"svg\"); }\n\n.fab {\n  font-family: 'Font Awesome 5 Brands';\n  font-weight: 400; }\n@font-face {\n  font-family: 'Font Awesome 5 Free';\n  font-style: normal;\n  font-weight: 400;\n  font-display: block;\n  src: url(\"../fonts/fa-regular-400.eot\");\n  src: url(\"../fonts/fa-regular-400.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.woff\") format(\"woff\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\"), url(\"../fonts/fa-regular-400.svg#fontawesome\") format(\"svg\"); }\n\n.far {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 400; }\n@font-face {\n  font-family: 'Font Awesome 5 Free';\n  font-style: normal;\n  font-weight: 900;\n  font-display: block;\n  src: url(\"../fonts/fa-solid-900.eot\");\n  src: url(\"../fonts/fa-solid-900.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.woff\") format(\"woff\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\"), url(\"../fonts/fa-solid-900.svg#fontawesome\") format(\"svg\"); }\n\n.fa,\n.fas {\n  font-family: 'Font Awesome 5 Free';\n  font-weight: 900; }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome5-pack/src/main/resources/META-INF/resources/fontawesome5/5.15.3/css/fontawesome.css",
    "content": "/*!\n * Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n */\n.fa,\n.fas,\n.far,\n.fal,\n.fad,\n.fab {\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n  display: inline-block;\n  font-style: normal;\n  font-variant: normal;\n  text-rendering: auto;\n  line-height: 1; }\n\n.fa-lg {\n  font-size: 1.33333em;\n  line-height: 0.75em;\n  vertical-align: -.0667em; }\n\n.fa-xs {\n  font-size: .75em; }\n\n.fa-sm {\n  font-size: .875em; }\n\n.fa-1x {\n  font-size: 1em; }\n\n.fa-2x {\n  font-size: 2em; }\n\n.fa-3x {\n  font-size: 3em; }\n\n.fa-4x {\n  font-size: 4em; }\n\n.fa-5x {\n  font-size: 5em; }\n\n.fa-6x {\n  font-size: 6em; }\n\n.fa-7x {\n  font-size: 7em; }\n\n.fa-8x {\n  font-size: 8em; }\n\n.fa-9x {\n  font-size: 9em; }\n\n.fa-10x {\n  font-size: 10em; }\n\n.fa-fw {\n  text-align: center;\n  width: 1.25em; }\n\n.fa-ul {\n  list-style-type: none;\n  margin-left: 2.5em;\n  padding-left: 0; }\n  .fa-ul > li {\n    position: relative; }\n\n.fa-li {\n  left: -2em;\n  position: absolute;\n  text-align: center;\n  width: 2em;\n  line-height: inherit; }\n\n.fa-border {\n  border: solid 0.08em #eee;\n  border-radius: .1em;\n  padding: .2em .25em .15em; }\n\n.fa-pull-left {\n  float: left; }\n\n.fa-pull-right {\n  float: right; }\n\n.fa.fa-pull-left,\n.fas.fa-pull-left,\n.far.fa-pull-left,\n.fal.fa-pull-left,\n.fab.fa-pull-left {\n  margin-right: .3em; }\n\n.fa.fa-pull-right,\n.fas.fa-pull-right,\n.far.fa-pull-right,\n.fal.fa-pull-right,\n.fab.fa-pull-right {\n  margin-left: .3em; }\n\n.fa-spin {\n  -webkit-animation: fa-spin 2s infinite linear;\n          animation: fa-spin 2s infinite linear; }\n\n.fa-pulse {\n  -webkit-animation: fa-spin 1s infinite steps(8);\n          animation: fa-spin 1s infinite steps(8); }\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n  -webkit-transform: rotate(90deg);\n          transform: rotate(90deg); }\n\n.fa-rotate-180 {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n  -webkit-transform: rotate(180deg);\n          transform: rotate(180deg); }\n\n.fa-rotate-270 {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n  -webkit-transform: rotate(270deg);\n          transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n  -webkit-transform: scale(-1, 1);\n          transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n  -webkit-transform: scale(1, -1);\n          transform: scale(1, -1); }\n\n.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {\n  -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n  -webkit-transform: scale(-1, -1);\n          transform: scale(-1, -1); }\n\n:root .fa-rotate-90,\n:root .fa-rotate-180,\n:root .fa-rotate-270,\n:root .fa-flip-horizontal,\n:root .fa-flip-vertical,\n:root .fa-flip-both {\n  -webkit-filter: none;\n          filter: none; }\n\n.fa-stack {\n  display: inline-block;\n  height: 2em;\n  line-height: 2em;\n  position: relative;\n  vertical-align: middle;\n  width: 2.5em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n  left: 0;\n  position: absolute;\n  text-align: center;\n  width: 100%; }\n\n.fa-stack-1x {\n  line-height: inherit; }\n\n.fa-stack-2x {\n  font-size: 2em; }\n\n.fa-inverse {\n  color: #fff; }\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\nreaders do not read off random characters that represent icons */\n.fa-500px:before {\n  content: \"\\f26e\"; }\n\n.fa-accessible-icon:before {\n  content: \"\\f368\"; }\n\n.fa-accusoft:before {\n  content: \"\\f369\"; }\n\n.fa-acquisitions-incorporated:before {\n  content: \"\\f6af\"; }\n\n.fa-ad:before {\n  content: \"\\f641\"; }\n\n.fa-address-book:before {\n  content: \"\\f2b9\"; }\n\n.fa-address-card:before {\n  content: \"\\f2bb\"; }\n\n.fa-adjust:before {\n  content: \"\\f042\"; }\n\n.fa-adn:before {\n  content: \"\\f170\"; }\n\n.fa-adversal:before {\n  content: \"\\f36a\"; }\n\n.fa-affiliatetheme:before {\n  content: \"\\f36b\"; }\n\n.fa-air-freshener:before {\n  content: \"\\f5d0\"; }\n\n.fa-airbnb:before {\n  content: \"\\f834\"; }\n\n.fa-algolia:before {\n  content: \"\\f36c\"; }\n\n.fa-align-center:before {\n  content: \"\\f037\"; }\n\n.fa-align-justify:before {\n  content: \"\\f039\"; }\n\n.fa-align-left:before {\n  content: \"\\f036\"; }\n\n.fa-align-right:before {\n  content: \"\\f038\"; }\n\n.fa-alipay:before {\n  content: \"\\f642\"; }\n\n.fa-allergies:before {\n  content: \"\\f461\"; }\n\n.fa-amazon:before {\n  content: \"\\f270\"; }\n\n.fa-amazon-pay:before {\n  content: \"\\f42c\"; }\n\n.fa-ambulance:before {\n  content: \"\\f0f9\"; }\n\n.fa-american-sign-language-interpreting:before {\n  content: \"\\f2a3\"; }\n\n.fa-amilia:before {\n  content: \"\\f36d\"; }\n\n.fa-anchor:before {\n  content: \"\\f13d\"; }\n\n.fa-android:before {\n  content: \"\\f17b\"; }\n\n.fa-angellist:before {\n  content: \"\\f209\"; }\n\n.fa-angle-double-down:before {\n  content: \"\\f103\"; }\n\n.fa-angle-double-left:before {\n  content: \"\\f100\"; }\n\n.fa-angle-double-right:before {\n  content: \"\\f101\"; }\n\n.fa-angle-double-up:before {\n  content: \"\\f102\"; }\n\n.fa-angle-down:before {\n  content: \"\\f107\"; }\n\n.fa-angle-left:before {\n  content: \"\\f104\"; }\n\n.fa-angle-right:before {\n  content: \"\\f105\"; }\n\n.fa-angle-up:before {\n  content: \"\\f106\"; }\n\n.fa-angry:before {\n  content: \"\\f556\"; }\n\n.fa-angrycreative:before {\n  content: \"\\f36e\"; }\n\n.fa-angular:before {\n  content: \"\\f420\"; }\n\n.fa-ankh:before {\n  content: \"\\f644\"; }\n\n.fa-app-store:before {\n  content: \"\\f36f\"; }\n\n.fa-app-store-ios:before {\n  content: \"\\f370\"; }\n\n.fa-apper:before {\n  content: \"\\f371\"; }\n\n.fa-apple:before {\n  content: \"\\f179\"; }\n\n.fa-apple-alt:before {\n  content: \"\\f5d1\"; }\n\n.fa-apple-pay:before {\n  content: \"\\f415\"; }\n\n.fa-archive:before {\n  content: \"\\f187\"; }\n\n.fa-archway:before {\n  content: \"\\f557\"; }\n\n.fa-arrow-alt-circle-down:before {\n  content: \"\\f358\"; }\n\n.fa-arrow-alt-circle-left:before {\n  content: \"\\f359\"; }\n\n.fa-arrow-alt-circle-right:before {\n  content: \"\\f35a\"; }\n\n.fa-arrow-alt-circle-up:before {\n  content: \"\\f35b\"; }\n\n.fa-arrow-circle-down:before {\n  content: \"\\f0ab\"; }\n\n.fa-arrow-circle-left:before {\n  content: \"\\f0a8\"; }\n\n.fa-arrow-circle-right:before {\n  content: \"\\f0a9\"; }\n\n.fa-arrow-circle-up:before {\n  content: \"\\f0aa\"; }\n\n.fa-arrow-down:before {\n  content: \"\\f063\"; }\n\n.fa-arrow-left:before {\n  content: \"\\f060\"; }\n\n.fa-arrow-right:before {\n  content: \"\\f061\"; }\n\n.fa-arrow-up:before {\n  content: \"\\f062\"; }\n\n.fa-arrows-alt:before {\n  content: \"\\f0b2\"; }\n\n.fa-arrows-alt-h:before {\n  content: \"\\f337\"; }\n\n.fa-arrows-alt-v:before {\n  content: \"\\f338\"; }\n\n.fa-artstation:before {\n  content: \"\\f77a\"; }\n\n.fa-assistive-listening-systems:before {\n  content: \"\\f2a2\"; }\n\n.fa-asterisk:before {\n  content: \"\\f069\"; }\n\n.fa-asymmetrik:before {\n  content: \"\\f372\"; }\n\n.fa-at:before {\n  content: \"\\f1fa\"; }\n\n.fa-atlas:before {\n  content: \"\\f558\"; }\n\n.fa-atlassian:before {\n  content: \"\\f77b\"; }\n\n.fa-atom:before {\n  content: \"\\f5d2\"; }\n\n.fa-audible:before {\n  content: \"\\f373\"; }\n\n.fa-audio-description:before {\n  content: \"\\f29e\"; }\n\n.fa-autoprefixer:before {\n  content: \"\\f41c\"; }\n\n.fa-avianex:before {\n  content: \"\\f374\"; }\n\n.fa-aviato:before {\n  content: \"\\f421\"; }\n\n.fa-award:before {\n  content: \"\\f559\"; }\n\n.fa-aws:before {\n  content: \"\\f375\"; }\n\n.fa-baby:before {\n  content: \"\\f77c\"; }\n\n.fa-baby-carriage:before {\n  content: \"\\f77d\"; }\n\n.fa-backspace:before {\n  content: \"\\f55a\"; }\n\n.fa-backward:before {\n  content: \"\\f04a\"; }\n\n.fa-bacon:before {\n  content: \"\\f7e5\"; }\n\n.fa-bacteria:before {\n  content: \"\\e059\"; }\n\n.fa-bacterium:before {\n  content: \"\\e05a\"; }\n\n.fa-bahai:before {\n  content: \"\\f666\"; }\n\n.fa-balance-scale:before {\n  content: \"\\f24e\"; }\n\n.fa-balance-scale-left:before {\n  content: \"\\f515\"; }\n\n.fa-balance-scale-right:before {\n  content: \"\\f516\"; }\n\n.fa-ban:before {\n  content: \"\\f05e\"; }\n\n.fa-band-aid:before {\n  content: \"\\f462\"; }\n\n.fa-bandcamp:before {\n  content: \"\\f2d5\"; }\n\n.fa-barcode:before {\n  content: \"\\f02a\"; }\n\n.fa-bars:before {\n  content: \"\\f0c9\"; }\n\n.fa-baseball-ball:before {\n  content: \"\\f433\"; }\n\n.fa-basketball-ball:before {\n  content: \"\\f434\"; }\n\n.fa-bath:before {\n  content: \"\\f2cd\"; }\n\n.fa-battery-empty:before {\n  content: \"\\f244\"; }\n\n.fa-battery-full:before {\n  content: \"\\f240\"; }\n\n.fa-battery-half:before {\n  content: \"\\f242\"; }\n\n.fa-battery-quarter:before {\n  content: \"\\f243\"; }\n\n.fa-battery-three-quarters:before {\n  content: \"\\f241\"; }\n\n.fa-battle-net:before {\n  content: \"\\f835\"; }\n\n.fa-bed:before {\n  content: \"\\f236\"; }\n\n.fa-beer:before {\n  content: \"\\f0fc\"; }\n\n.fa-behance:before {\n  content: \"\\f1b4\"; }\n\n.fa-behance-square:before {\n  content: \"\\f1b5\"; }\n\n.fa-bell:before {\n  content: \"\\f0f3\"; }\n\n.fa-bell-slash:before {\n  content: \"\\f1f6\"; }\n\n.fa-bezier-curve:before {\n  content: \"\\f55b\"; }\n\n.fa-bible:before {\n  content: \"\\f647\"; }\n\n.fa-bicycle:before {\n  content: \"\\f206\"; }\n\n.fa-biking:before {\n  content: \"\\f84a\"; }\n\n.fa-bimobject:before {\n  content: \"\\f378\"; }\n\n.fa-binoculars:before {\n  content: \"\\f1e5\"; }\n\n.fa-biohazard:before {\n  content: \"\\f780\"; }\n\n.fa-birthday-cake:before {\n  content: \"\\f1fd\"; }\n\n.fa-bitbucket:before {\n  content: \"\\f171\"; }\n\n.fa-bitcoin:before {\n  content: \"\\f379\"; }\n\n.fa-bity:before {\n  content: \"\\f37a\"; }\n\n.fa-black-tie:before {\n  content: \"\\f27e\"; }\n\n.fa-blackberry:before {\n  content: \"\\f37b\"; }\n\n.fa-blender:before {\n  content: \"\\f517\"; }\n\n.fa-blender-phone:before {\n  content: \"\\f6b6\"; }\n\n.fa-blind:before {\n  content: \"\\f29d\"; }\n\n.fa-blog:before {\n  content: \"\\f781\"; }\n\n.fa-blogger:before {\n  content: \"\\f37c\"; }\n\n.fa-blogger-b:before {\n  content: \"\\f37d\"; }\n\n.fa-bluetooth:before {\n  content: \"\\f293\"; }\n\n.fa-bluetooth-b:before {\n  content: \"\\f294\"; }\n\n.fa-bold:before {\n  content: \"\\f032\"; }\n\n.fa-bolt:before {\n  content: \"\\f0e7\"; }\n\n.fa-bomb:before {\n  content: \"\\f1e2\"; }\n\n.fa-bone:before {\n  content: \"\\f5d7\"; }\n\n.fa-bong:before {\n  content: \"\\f55c\"; }\n\n.fa-book:before {\n  content: \"\\f02d\"; }\n\n.fa-book-dead:before {\n  content: \"\\f6b7\"; }\n\n.fa-book-medical:before {\n  content: \"\\f7e6\"; }\n\n.fa-book-open:before {\n  content: \"\\f518\"; }\n\n.fa-book-reader:before {\n  content: \"\\f5da\"; }\n\n.fa-bookmark:before {\n  content: \"\\f02e\"; }\n\n.fa-bootstrap:before {\n  content: \"\\f836\"; }\n\n.fa-border-all:before {\n  content: \"\\f84c\"; }\n\n.fa-border-none:before {\n  content: \"\\f850\"; }\n\n.fa-border-style:before {\n  content: \"\\f853\"; }\n\n.fa-bowling-ball:before {\n  content: \"\\f436\"; }\n\n.fa-box:before {\n  content: \"\\f466\"; }\n\n.fa-box-open:before {\n  content: \"\\f49e\"; }\n\n.fa-box-tissue:before {\n  content: \"\\e05b\"; }\n\n.fa-boxes:before {\n  content: \"\\f468\"; }\n\n.fa-braille:before {\n  content: \"\\f2a1\"; }\n\n.fa-brain:before {\n  content: \"\\f5dc\"; }\n\n.fa-bread-slice:before {\n  content: \"\\f7ec\"; }\n\n.fa-briefcase:before {\n  content: \"\\f0b1\"; }\n\n.fa-briefcase-medical:before {\n  content: \"\\f469\"; }\n\n.fa-broadcast-tower:before {\n  content: \"\\f519\"; }\n\n.fa-broom:before {\n  content: \"\\f51a\"; }\n\n.fa-brush:before {\n  content: \"\\f55d\"; }\n\n.fa-btc:before {\n  content: \"\\f15a\"; }\n\n.fa-buffer:before {\n  content: \"\\f837\"; }\n\n.fa-bug:before {\n  content: \"\\f188\"; }\n\n.fa-building:before {\n  content: \"\\f1ad\"; }\n\n.fa-bullhorn:before {\n  content: \"\\f0a1\"; }\n\n.fa-bullseye:before {\n  content: \"\\f140\"; }\n\n.fa-burn:before {\n  content: \"\\f46a\"; }\n\n.fa-buromobelexperte:before {\n  content: \"\\f37f\"; }\n\n.fa-bus:before {\n  content: \"\\f207\"; }\n\n.fa-bus-alt:before {\n  content: \"\\f55e\"; }\n\n.fa-business-time:before {\n  content: \"\\f64a\"; }\n\n.fa-buy-n-large:before {\n  content: \"\\f8a6\"; }\n\n.fa-buysellads:before {\n  content: \"\\f20d\"; }\n\n.fa-calculator:before {\n  content: \"\\f1ec\"; }\n\n.fa-calendar:before {\n  content: \"\\f133\"; }\n\n.fa-calendar-alt:before {\n  content: \"\\f073\"; }\n\n.fa-calendar-check:before {\n  content: \"\\f274\"; }\n\n.fa-calendar-day:before {\n  content: \"\\f783\"; }\n\n.fa-calendar-minus:before {\n  content: \"\\f272\"; }\n\n.fa-calendar-plus:before {\n  content: \"\\f271\"; }\n\n.fa-calendar-times:before {\n  content: \"\\f273\"; }\n\n.fa-calendar-week:before {\n  content: \"\\f784\"; }\n\n.fa-camera:before {\n  content: \"\\f030\"; }\n\n.fa-camera-retro:before {\n  content: \"\\f083\"; }\n\n.fa-campground:before {\n  content: \"\\f6bb\"; }\n\n.fa-canadian-maple-leaf:before {\n  content: \"\\f785\"; }\n\n.fa-candy-cane:before {\n  content: \"\\f786\"; }\n\n.fa-cannabis:before {\n  content: \"\\f55f\"; }\n\n.fa-capsules:before {\n  content: \"\\f46b\"; }\n\n.fa-car:before {\n  content: \"\\f1b9\"; }\n\n.fa-car-alt:before {\n  content: \"\\f5de\"; }\n\n.fa-car-battery:before {\n  content: \"\\f5df\"; }\n\n.fa-car-crash:before {\n  content: \"\\f5e1\"; }\n\n.fa-car-side:before {\n  content: \"\\f5e4\"; }\n\n.fa-caravan:before {\n  content: \"\\f8ff\"; }\n\n.fa-caret-down:before {\n  content: \"\\f0d7\"; }\n\n.fa-caret-left:before {\n  content: \"\\f0d9\"; }\n\n.fa-caret-right:before {\n  content: \"\\f0da\"; }\n\n.fa-caret-square-down:before {\n  content: \"\\f150\"; }\n\n.fa-caret-square-left:before {\n  content: \"\\f191\"; }\n\n.fa-caret-square-right:before {\n  content: \"\\f152\"; }\n\n.fa-caret-square-up:before {\n  content: \"\\f151\"; }\n\n.fa-caret-up:before {\n  content: \"\\f0d8\"; }\n\n.fa-carrot:before {\n  content: \"\\f787\"; }\n\n.fa-cart-arrow-down:before {\n  content: \"\\f218\"; }\n\n.fa-cart-plus:before {\n  content: \"\\f217\"; }\n\n.fa-cash-register:before {\n  content: \"\\f788\"; }\n\n.fa-cat:before {\n  content: \"\\f6be\"; }\n\n.fa-cc-amazon-pay:before {\n  content: \"\\f42d\"; }\n\n.fa-cc-amex:before {\n  content: \"\\f1f3\"; }\n\n.fa-cc-apple-pay:before {\n  content: \"\\f416\"; }\n\n.fa-cc-diners-club:before {\n  content: \"\\f24c\"; }\n\n.fa-cc-discover:before {\n  content: \"\\f1f2\"; }\n\n.fa-cc-jcb:before {\n  content: \"\\f24b\"; }\n\n.fa-cc-mastercard:before {\n  content: \"\\f1f1\"; }\n\n.fa-cc-paypal:before {\n  content: \"\\f1f4\"; }\n\n.fa-cc-stripe:before {\n  content: \"\\f1f5\"; }\n\n.fa-cc-visa:before {\n  content: \"\\f1f0\"; }\n\n.fa-centercode:before {\n  content: \"\\f380\"; }\n\n.fa-centos:before {\n  content: \"\\f789\"; }\n\n.fa-certificate:before {\n  content: \"\\f0a3\"; }\n\n.fa-chair:before {\n  content: \"\\f6c0\"; }\n\n.fa-chalkboard:before {\n  content: \"\\f51b\"; }\n\n.fa-chalkboard-teacher:before {\n  content: \"\\f51c\"; }\n\n.fa-charging-station:before {\n  content: \"\\f5e7\"; }\n\n.fa-chart-area:before {\n  content: \"\\f1fe\"; }\n\n.fa-chart-bar:before {\n  content: \"\\f080\"; }\n\n.fa-chart-line:before {\n  content: \"\\f201\"; }\n\n.fa-chart-pie:before {\n  content: \"\\f200\"; }\n\n.fa-check:before {\n  content: \"\\f00c\"; }\n\n.fa-check-circle:before {\n  content: \"\\f058\"; }\n\n.fa-check-double:before {\n  content: \"\\f560\"; }\n\n.fa-check-square:before {\n  content: \"\\f14a\"; }\n\n.fa-cheese:before {\n  content: \"\\f7ef\"; }\n\n.fa-chess:before {\n  content: \"\\f439\"; }\n\n.fa-chess-bishop:before {\n  content: \"\\f43a\"; }\n\n.fa-chess-board:before {\n  content: \"\\f43c\"; }\n\n.fa-chess-king:before {\n  content: \"\\f43f\"; }\n\n.fa-chess-knight:before {\n  content: \"\\f441\"; }\n\n.fa-chess-pawn:before {\n  content: \"\\f443\"; }\n\n.fa-chess-queen:before {\n  content: \"\\f445\"; }\n\n.fa-chess-rook:before {\n  content: \"\\f447\"; }\n\n.fa-chevron-circle-down:before {\n  content: \"\\f13a\"; }\n\n.fa-chevron-circle-left:before {\n  content: \"\\f137\"; }\n\n.fa-chevron-circle-right:before {\n  content: \"\\f138\"; }\n\n.fa-chevron-circle-up:before {\n  content: \"\\f139\"; }\n\n.fa-chevron-down:before {\n  content: \"\\f078\"; }\n\n.fa-chevron-left:before {\n  content: \"\\f053\"; }\n\n.fa-chevron-right:before {\n  content: \"\\f054\"; }\n\n.fa-chevron-up:before {\n  content: \"\\f077\"; }\n\n.fa-child:before {\n  content: \"\\f1ae\"; }\n\n.fa-chrome:before {\n  content: \"\\f268\"; }\n\n.fa-chromecast:before {\n  content: \"\\f838\"; }\n\n.fa-church:before {\n  content: \"\\f51d\"; }\n\n.fa-circle:before {\n  content: \"\\f111\"; }\n\n.fa-circle-notch:before {\n  content: \"\\f1ce\"; }\n\n.fa-city:before {\n  content: \"\\f64f\"; }\n\n.fa-clinic-medical:before {\n  content: \"\\f7f2\"; }\n\n.fa-clipboard:before {\n  content: \"\\f328\"; }\n\n.fa-clipboard-check:before {\n  content: \"\\f46c\"; }\n\n.fa-clipboard-list:before {\n  content: \"\\f46d\"; }\n\n.fa-clock:before {\n  content: \"\\f017\"; }\n\n.fa-clone:before {\n  content: \"\\f24d\"; }\n\n.fa-closed-captioning:before {\n  content: \"\\f20a\"; }\n\n.fa-cloud:before {\n  content: \"\\f0c2\"; }\n\n.fa-cloud-download-alt:before {\n  content: \"\\f381\"; }\n\n.fa-cloud-meatball:before {\n  content: \"\\f73b\"; }\n\n.fa-cloud-moon:before {\n  content: \"\\f6c3\"; }\n\n.fa-cloud-moon-rain:before {\n  content: \"\\f73c\"; }\n\n.fa-cloud-rain:before {\n  content: \"\\f73d\"; }\n\n.fa-cloud-showers-heavy:before {\n  content: \"\\f740\"; }\n\n.fa-cloud-sun:before {\n  content: \"\\f6c4\"; }\n\n.fa-cloud-sun-rain:before {\n  content: \"\\f743\"; }\n\n.fa-cloud-upload-alt:before {\n  content: \"\\f382\"; }\n\n.fa-cloudflare:before {\n  content: \"\\e07d\"; }\n\n.fa-cloudscale:before {\n  content: \"\\f383\"; }\n\n.fa-cloudsmith:before {\n  content: \"\\f384\"; }\n\n.fa-cloudversify:before {\n  content: \"\\f385\"; }\n\n.fa-cocktail:before {\n  content: \"\\f561\"; }\n\n.fa-code:before {\n  content: \"\\f121\"; }\n\n.fa-code-branch:before {\n  content: \"\\f126\"; }\n\n.fa-codepen:before {\n  content: \"\\f1cb\"; }\n\n.fa-codiepie:before {\n  content: \"\\f284\"; }\n\n.fa-coffee:before {\n  content: \"\\f0f4\"; }\n\n.fa-cog:before {\n  content: \"\\f013\"; }\n\n.fa-cogs:before {\n  content: \"\\f085\"; }\n\n.fa-coins:before {\n  content: \"\\f51e\"; }\n\n.fa-columns:before {\n  content: \"\\f0db\"; }\n\n.fa-comment:before {\n  content: \"\\f075\"; }\n\n.fa-comment-alt:before {\n  content: \"\\f27a\"; }\n\n.fa-comment-dollar:before {\n  content: \"\\f651\"; }\n\n.fa-comment-dots:before {\n  content: \"\\f4ad\"; }\n\n.fa-comment-medical:before {\n  content: \"\\f7f5\"; }\n\n.fa-comment-slash:before {\n  content: \"\\f4b3\"; }\n\n.fa-comments:before {\n  content: \"\\f086\"; }\n\n.fa-comments-dollar:before {\n  content: \"\\f653\"; }\n\n.fa-compact-disc:before {\n  content: \"\\f51f\"; }\n\n.fa-compass:before {\n  content: \"\\f14e\"; }\n\n.fa-compress:before {\n  content: \"\\f066\"; }\n\n.fa-compress-alt:before {\n  content: \"\\f422\"; }\n\n.fa-compress-arrows-alt:before {\n  content: \"\\f78c\"; }\n\n.fa-concierge-bell:before {\n  content: \"\\f562\"; }\n\n.fa-confluence:before {\n  content: \"\\f78d\"; }\n\n.fa-connectdevelop:before {\n  content: \"\\f20e\"; }\n\n.fa-contao:before {\n  content: \"\\f26d\"; }\n\n.fa-cookie:before {\n  content: \"\\f563\"; }\n\n.fa-cookie-bite:before {\n  content: \"\\f564\"; }\n\n.fa-copy:before {\n  content: \"\\f0c5\"; }\n\n.fa-copyright:before {\n  content: \"\\f1f9\"; }\n\n.fa-cotton-bureau:before {\n  content: \"\\f89e\"; }\n\n.fa-couch:before {\n  content: \"\\f4b8\"; }\n\n.fa-cpanel:before {\n  content: \"\\f388\"; }\n\n.fa-creative-commons:before {\n  content: \"\\f25e\"; }\n\n.fa-creative-commons-by:before {\n  content: \"\\f4e7\"; }\n\n.fa-creative-commons-nc:before {\n  content: \"\\f4e8\"; }\n\n.fa-creative-commons-nc-eu:before {\n  content: \"\\f4e9\"; }\n\n.fa-creative-commons-nc-jp:before {\n  content: \"\\f4ea\"; }\n\n.fa-creative-commons-nd:before {\n  content: \"\\f4eb\"; }\n\n.fa-creative-commons-pd:before {\n  content: \"\\f4ec\"; }\n\n.fa-creative-commons-pd-alt:before {\n  content: \"\\f4ed\"; }\n\n.fa-creative-commons-remix:before {\n  content: \"\\f4ee\"; }\n\n.fa-creative-commons-sa:before {\n  content: \"\\f4ef\"; }\n\n.fa-creative-commons-sampling:before {\n  content: \"\\f4f0\"; }\n\n.fa-creative-commons-sampling-plus:before {\n  content: \"\\f4f1\"; }\n\n.fa-creative-commons-share:before {\n  content: \"\\f4f2\"; }\n\n.fa-creative-commons-zero:before {\n  content: \"\\f4f3\"; }\n\n.fa-credit-card:before {\n  content: \"\\f09d\"; }\n\n.fa-critical-role:before {\n  content: \"\\f6c9\"; }\n\n.fa-crop:before {\n  content: \"\\f125\"; }\n\n.fa-crop-alt:before {\n  content: \"\\f565\"; }\n\n.fa-cross:before {\n  content: \"\\f654\"; }\n\n.fa-crosshairs:before {\n  content: \"\\f05b\"; }\n\n.fa-crow:before {\n  content: \"\\f520\"; }\n\n.fa-crown:before {\n  content: \"\\f521\"; }\n\n.fa-crutch:before {\n  content: \"\\f7f7\"; }\n\n.fa-css3:before {\n  content: \"\\f13c\"; }\n\n.fa-css3-alt:before {\n  content: \"\\f38b\"; }\n\n.fa-cube:before {\n  content: \"\\f1b2\"; }\n\n.fa-cubes:before {\n  content: \"\\f1b3\"; }\n\n.fa-cut:before {\n  content: \"\\f0c4\"; }\n\n.fa-cuttlefish:before {\n  content: \"\\f38c\"; }\n\n.fa-d-and-d:before {\n  content: \"\\f38d\"; }\n\n.fa-d-and-d-beyond:before {\n  content: \"\\f6ca\"; }\n\n.fa-dailymotion:before {\n  content: \"\\e052\"; }\n\n.fa-dashcube:before {\n  content: \"\\f210\"; }\n\n.fa-database:before {\n  content: \"\\f1c0\"; }\n\n.fa-deaf:before {\n  content: \"\\f2a4\"; }\n\n.fa-deezer:before {\n  content: \"\\e077\"; }\n\n.fa-delicious:before {\n  content: \"\\f1a5\"; }\n\n.fa-democrat:before {\n  content: \"\\f747\"; }\n\n.fa-deploydog:before {\n  content: \"\\f38e\"; }\n\n.fa-deskpro:before {\n  content: \"\\f38f\"; }\n\n.fa-desktop:before {\n  content: \"\\f108\"; }\n\n.fa-dev:before {\n  content: \"\\f6cc\"; }\n\n.fa-deviantart:before {\n  content: \"\\f1bd\"; }\n\n.fa-dharmachakra:before {\n  content: \"\\f655\"; }\n\n.fa-dhl:before {\n  content: \"\\f790\"; }\n\n.fa-diagnoses:before {\n  content: \"\\f470\"; }\n\n.fa-diaspora:before {\n  content: \"\\f791\"; }\n\n.fa-dice:before {\n  content: \"\\f522\"; }\n\n.fa-dice-d20:before {\n  content: \"\\f6cf\"; }\n\n.fa-dice-d6:before {\n  content: \"\\f6d1\"; }\n\n.fa-dice-five:before {\n  content: \"\\f523\"; }\n\n.fa-dice-four:before {\n  content: \"\\f524\"; }\n\n.fa-dice-one:before {\n  content: \"\\f525\"; }\n\n.fa-dice-six:before {\n  content: \"\\f526\"; }\n\n.fa-dice-three:before {\n  content: \"\\f527\"; }\n\n.fa-dice-two:before {\n  content: \"\\f528\"; }\n\n.fa-digg:before {\n  content: \"\\f1a6\"; }\n\n.fa-digital-ocean:before {\n  content: \"\\f391\"; }\n\n.fa-digital-tachograph:before {\n  content: \"\\f566\"; }\n\n.fa-directions:before {\n  content: \"\\f5eb\"; }\n\n.fa-discord:before {\n  content: \"\\f392\"; }\n\n.fa-discourse:before {\n  content: \"\\f393\"; }\n\n.fa-disease:before {\n  content: \"\\f7fa\"; }\n\n.fa-divide:before {\n  content: \"\\f529\"; }\n\n.fa-dizzy:before {\n  content: \"\\f567\"; }\n\n.fa-dna:before {\n  content: \"\\f471\"; }\n\n.fa-dochub:before {\n  content: \"\\f394\"; }\n\n.fa-docker:before {\n  content: \"\\f395\"; }\n\n.fa-dog:before {\n  content: \"\\f6d3\"; }\n\n.fa-dollar-sign:before {\n  content: \"\\f155\"; }\n\n.fa-dolly:before {\n  content: \"\\f472\"; }\n\n.fa-dolly-flatbed:before {\n  content: \"\\f474\"; }\n\n.fa-donate:before {\n  content: \"\\f4b9\"; }\n\n.fa-door-closed:before {\n  content: \"\\f52a\"; }\n\n.fa-door-open:before {\n  content: \"\\f52b\"; }\n\n.fa-dot-circle:before {\n  content: \"\\f192\"; }\n\n.fa-dove:before {\n  content: \"\\f4ba\"; }\n\n.fa-download:before {\n  content: \"\\f019\"; }\n\n.fa-draft2digital:before {\n  content: \"\\f396\"; }\n\n.fa-drafting-compass:before {\n  content: \"\\f568\"; }\n\n.fa-dragon:before {\n  content: \"\\f6d5\"; }\n\n.fa-draw-polygon:before {\n  content: \"\\f5ee\"; }\n\n.fa-dribbble:before {\n  content: \"\\f17d\"; }\n\n.fa-dribbble-square:before {\n  content: \"\\f397\"; }\n\n.fa-dropbox:before {\n  content: \"\\f16b\"; }\n\n.fa-drum:before {\n  content: \"\\f569\"; }\n\n.fa-drum-steelpan:before {\n  content: \"\\f56a\"; }\n\n.fa-drumstick-bite:before {\n  content: \"\\f6d7\"; }\n\n.fa-drupal:before {\n  content: \"\\f1a9\"; }\n\n.fa-dumbbell:before {\n  content: \"\\f44b\"; }\n\n.fa-dumpster:before {\n  content: \"\\f793\"; }\n\n.fa-dumpster-fire:before {\n  content: \"\\f794\"; }\n\n.fa-dungeon:before {\n  content: \"\\f6d9\"; }\n\n.fa-dyalog:before {\n  content: \"\\f399\"; }\n\n.fa-earlybirds:before {\n  content: \"\\f39a\"; }\n\n.fa-ebay:before {\n  content: \"\\f4f4\"; }\n\n.fa-edge:before {\n  content: \"\\f282\"; }\n\n.fa-edge-legacy:before {\n  content: \"\\e078\"; }\n\n.fa-edit:before {\n  content: \"\\f044\"; }\n\n.fa-egg:before {\n  content: \"\\f7fb\"; }\n\n.fa-eject:before {\n  content: \"\\f052\"; }\n\n.fa-elementor:before {\n  content: \"\\f430\"; }\n\n.fa-ellipsis-h:before {\n  content: \"\\f141\"; }\n\n.fa-ellipsis-v:before {\n  content: \"\\f142\"; }\n\n.fa-ello:before {\n  content: \"\\f5f1\"; }\n\n.fa-ember:before {\n  content: \"\\f423\"; }\n\n.fa-empire:before {\n  content: \"\\f1d1\"; }\n\n.fa-envelope:before {\n  content: \"\\f0e0\"; }\n\n.fa-envelope-open:before {\n  content: \"\\f2b6\"; }\n\n.fa-envelope-open-text:before {\n  content: \"\\f658\"; }\n\n.fa-envelope-square:before {\n  content: \"\\f199\"; }\n\n.fa-envira:before {\n  content: \"\\f299\"; }\n\n.fa-equals:before {\n  content: \"\\f52c\"; }\n\n.fa-eraser:before {\n  content: \"\\f12d\"; }\n\n.fa-erlang:before {\n  content: \"\\f39d\"; }\n\n.fa-ethereum:before {\n  content: \"\\f42e\"; }\n\n.fa-ethernet:before {\n  content: \"\\f796\"; }\n\n.fa-etsy:before {\n  content: \"\\f2d7\"; }\n\n.fa-euro-sign:before {\n  content: \"\\f153\"; }\n\n.fa-evernote:before {\n  content: \"\\f839\"; }\n\n.fa-exchange-alt:before {\n  content: \"\\f362\"; }\n\n.fa-exclamation:before {\n  content: \"\\f12a\"; }\n\n.fa-exclamation-circle:before {\n  content: \"\\f06a\"; }\n\n.fa-exclamation-triangle:before {\n  content: \"\\f071\"; }\n\n.fa-expand:before {\n  content: \"\\f065\"; }\n\n.fa-expand-alt:before {\n  content: \"\\f424\"; }\n\n.fa-expand-arrows-alt:before {\n  content: \"\\f31e\"; }\n\n.fa-expeditedssl:before {\n  content: \"\\f23e\"; }\n\n.fa-external-link-alt:before {\n  content: \"\\f35d\"; }\n\n.fa-external-link-square-alt:before {\n  content: \"\\f360\"; }\n\n.fa-eye:before {\n  content: \"\\f06e\"; }\n\n.fa-eye-dropper:before {\n  content: \"\\f1fb\"; }\n\n.fa-eye-slash:before {\n  content: \"\\f070\"; }\n\n.fa-facebook:before {\n  content: \"\\f09a\"; }\n\n.fa-facebook-f:before {\n  content: \"\\f39e\"; }\n\n.fa-facebook-messenger:before {\n  content: \"\\f39f\"; }\n\n.fa-facebook-square:before {\n  content: \"\\f082\"; }\n\n.fa-fan:before {\n  content: \"\\f863\"; }\n\n.fa-fantasy-flight-games:before {\n  content: \"\\f6dc\"; }\n\n.fa-fast-backward:before {\n  content: \"\\f049\"; }\n\n.fa-fast-forward:before {\n  content: \"\\f050\"; }\n\n.fa-faucet:before {\n  content: \"\\e005\"; }\n\n.fa-fax:before {\n  content: \"\\f1ac\"; }\n\n.fa-feather:before {\n  content: \"\\f52d\"; }\n\n.fa-feather-alt:before {\n  content: \"\\f56b\"; }\n\n.fa-fedex:before {\n  content: \"\\f797\"; }\n\n.fa-fedora:before {\n  content: \"\\f798\"; }\n\n.fa-female:before {\n  content: \"\\f182\"; }\n\n.fa-fighter-jet:before {\n  content: \"\\f0fb\"; }\n\n.fa-figma:before {\n  content: \"\\f799\"; }\n\n.fa-file:before {\n  content: \"\\f15b\"; }\n\n.fa-file-alt:before {\n  content: \"\\f15c\"; }\n\n.fa-file-archive:before {\n  content: \"\\f1c6\"; }\n\n.fa-file-audio:before {\n  content: \"\\f1c7\"; }\n\n.fa-file-code:before {\n  content: \"\\f1c9\"; }\n\n.fa-file-contract:before {\n  content: \"\\f56c\"; }\n\n.fa-file-csv:before {\n  content: \"\\f6dd\"; }\n\n.fa-file-download:before {\n  content: \"\\f56d\"; }\n\n.fa-file-excel:before {\n  content: \"\\f1c3\"; }\n\n.fa-file-export:before {\n  content: \"\\f56e\"; }\n\n.fa-file-image:before {\n  content: \"\\f1c5\"; }\n\n.fa-file-import:before {\n  content: \"\\f56f\"; }\n\n.fa-file-invoice:before {\n  content: \"\\f570\"; }\n\n.fa-file-invoice-dollar:before {\n  content: \"\\f571\"; }\n\n.fa-file-medical:before {\n  content: \"\\f477\"; }\n\n.fa-file-medical-alt:before {\n  content: \"\\f478\"; }\n\n.fa-file-pdf:before {\n  content: \"\\f1c1\"; }\n\n.fa-file-powerpoint:before {\n  content: \"\\f1c4\"; }\n\n.fa-file-prescription:before {\n  content: \"\\f572\"; }\n\n.fa-file-signature:before {\n  content: \"\\f573\"; }\n\n.fa-file-upload:before {\n  content: \"\\f574\"; }\n\n.fa-file-video:before {\n  content: \"\\f1c8\"; }\n\n.fa-file-word:before {\n  content: \"\\f1c2\"; }\n\n.fa-fill:before {\n  content: \"\\f575\"; }\n\n.fa-fill-drip:before {\n  content: \"\\f576\"; }\n\n.fa-film:before {\n  content: \"\\f008\"; }\n\n.fa-filter:before {\n  content: \"\\f0b0\"; }\n\n.fa-fingerprint:before {\n  content: \"\\f577\"; }\n\n.fa-fire:before {\n  content: \"\\f06d\"; }\n\n.fa-fire-alt:before {\n  content: \"\\f7e4\"; }\n\n.fa-fire-extinguisher:before {\n  content: \"\\f134\"; }\n\n.fa-firefox:before {\n  content: \"\\f269\"; }\n\n.fa-firefox-browser:before {\n  content: \"\\e007\"; }\n\n.fa-first-aid:before {\n  content: \"\\f479\"; }\n\n.fa-first-order:before {\n  content: \"\\f2b0\"; }\n\n.fa-first-order-alt:before {\n  content: \"\\f50a\"; }\n\n.fa-firstdraft:before {\n  content: \"\\f3a1\"; }\n\n.fa-fish:before {\n  content: \"\\f578\"; }\n\n.fa-fist-raised:before {\n  content: \"\\f6de\"; }\n\n.fa-flag:before {\n  content: \"\\f024\"; }\n\n.fa-flag-checkered:before {\n  content: \"\\f11e\"; }\n\n.fa-flag-usa:before {\n  content: \"\\f74d\"; }\n\n.fa-flask:before {\n  content: \"\\f0c3\"; }\n\n.fa-flickr:before {\n  content: \"\\f16e\"; }\n\n.fa-flipboard:before {\n  content: \"\\f44d\"; }\n\n.fa-flushed:before {\n  content: \"\\f579\"; }\n\n.fa-fly:before {\n  content: \"\\f417\"; }\n\n.fa-folder:before {\n  content: \"\\f07b\"; }\n\n.fa-folder-minus:before {\n  content: \"\\f65d\"; }\n\n.fa-folder-open:before {\n  content: \"\\f07c\"; }\n\n.fa-folder-plus:before {\n  content: \"\\f65e\"; }\n\n.fa-font:before {\n  content: \"\\f031\"; }\n\n.fa-font-awesome:before {\n  content: \"\\f2b4\"; }\n\n.fa-font-awesome-alt:before {\n  content: \"\\f35c\"; }\n\n.fa-font-awesome-flag:before {\n  content: \"\\f425\"; }\n\n.fa-font-awesome-logo-full:before {\n  content: \"\\f4e6\"; }\n\n.fa-fonticons:before {\n  content: \"\\f280\"; }\n\n.fa-fonticons-fi:before {\n  content: \"\\f3a2\"; }\n\n.fa-football-ball:before {\n  content: \"\\f44e\"; }\n\n.fa-fort-awesome:before {\n  content: \"\\f286\"; }\n\n.fa-fort-awesome-alt:before {\n  content: \"\\f3a3\"; }\n\n.fa-forumbee:before {\n  content: \"\\f211\"; }\n\n.fa-forward:before {\n  content: \"\\f04e\"; }\n\n.fa-foursquare:before {\n  content: \"\\f180\"; }\n\n.fa-free-code-camp:before {\n  content: \"\\f2c5\"; }\n\n.fa-freebsd:before {\n  content: \"\\f3a4\"; }\n\n.fa-frog:before {\n  content: \"\\f52e\"; }\n\n.fa-frown:before {\n  content: \"\\f119\"; }\n\n.fa-frown-open:before {\n  content: \"\\f57a\"; }\n\n.fa-fulcrum:before {\n  content: \"\\f50b\"; }\n\n.fa-funnel-dollar:before {\n  content: \"\\f662\"; }\n\n.fa-futbol:before {\n  content: \"\\f1e3\"; }\n\n.fa-galactic-republic:before {\n  content: \"\\f50c\"; }\n\n.fa-galactic-senate:before {\n  content: \"\\f50d\"; }\n\n.fa-gamepad:before {\n  content: \"\\f11b\"; }\n\n.fa-gas-pump:before {\n  content: \"\\f52f\"; }\n\n.fa-gavel:before {\n  content: \"\\f0e3\"; }\n\n.fa-gem:before {\n  content: \"\\f3a5\"; }\n\n.fa-genderless:before {\n  content: \"\\f22d\"; }\n\n.fa-get-pocket:before {\n  content: \"\\f265\"; }\n\n.fa-gg:before {\n  content: \"\\f260\"; }\n\n.fa-gg-circle:before {\n  content: \"\\f261\"; }\n\n.fa-ghost:before {\n  content: \"\\f6e2\"; }\n\n.fa-gift:before {\n  content: \"\\f06b\"; }\n\n.fa-gifts:before {\n  content: \"\\f79c\"; }\n\n.fa-git:before {\n  content: \"\\f1d3\"; }\n\n.fa-git-alt:before {\n  content: \"\\f841\"; }\n\n.fa-git-square:before {\n  content: \"\\f1d2\"; }\n\n.fa-github:before {\n  content: \"\\f09b\"; }\n\n.fa-github-alt:before {\n  content: \"\\f113\"; }\n\n.fa-github-square:before {\n  content: \"\\f092\"; }\n\n.fa-gitkraken:before {\n  content: \"\\f3a6\"; }\n\n.fa-gitlab:before {\n  content: \"\\f296\"; }\n\n.fa-gitter:before {\n  content: \"\\f426\"; }\n\n.fa-glass-cheers:before {\n  content: \"\\f79f\"; }\n\n.fa-glass-martini:before {\n  content: \"\\f000\"; }\n\n.fa-glass-martini-alt:before {\n  content: \"\\f57b\"; }\n\n.fa-glass-whiskey:before {\n  content: \"\\f7a0\"; }\n\n.fa-glasses:before {\n  content: \"\\f530\"; }\n\n.fa-glide:before {\n  content: \"\\f2a5\"; }\n\n.fa-glide-g:before {\n  content: \"\\f2a6\"; }\n\n.fa-globe:before {\n  content: \"\\f0ac\"; }\n\n.fa-globe-africa:before {\n  content: \"\\f57c\"; }\n\n.fa-globe-americas:before {\n  content: \"\\f57d\"; }\n\n.fa-globe-asia:before {\n  content: \"\\f57e\"; }\n\n.fa-globe-europe:before {\n  content: \"\\f7a2\"; }\n\n.fa-gofore:before {\n  content: \"\\f3a7\"; }\n\n.fa-golf-ball:before {\n  content: \"\\f450\"; }\n\n.fa-goodreads:before {\n  content: \"\\f3a8\"; }\n\n.fa-goodreads-g:before {\n  content: \"\\f3a9\"; }\n\n.fa-google:before {\n  content: \"\\f1a0\"; }\n\n.fa-google-drive:before {\n  content: \"\\f3aa\"; }\n\n.fa-google-pay:before {\n  content: \"\\e079\"; }\n\n.fa-google-play:before {\n  content: \"\\f3ab\"; }\n\n.fa-google-plus:before {\n  content: \"\\f2b3\"; }\n\n.fa-google-plus-g:before {\n  content: \"\\f0d5\"; }\n\n.fa-google-plus-square:before {\n  content: \"\\f0d4\"; }\n\n.fa-google-wallet:before {\n  content: \"\\f1ee\"; }\n\n.fa-gopuram:before {\n  content: \"\\f664\"; }\n\n.fa-graduation-cap:before {\n  content: \"\\f19d\"; }\n\n.fa-gratipay:before {\n  content: \"\\f184\"; }\n\n.fa-grav:before {\n  content: \"\\f2d6\"; }\n\n.fa-greater-than:before {\n  content: \"\\f531\"; }\n\n.fa-greater-than-equal:before {\n  content: \"\\f532\"; }\n\n.fa-grimace:before {\n  content: \"\\f57f\"; }\n\n.fa-grin:before {\n  content: \"\\f580\"; }\n\n.fa-grin-alt:before {\n  content: \"\\f581\"; }\n\n.fa-grin-beam:before {\n  content: \"\\f582\"; }\n\n.fa-grin-beam-sweat:before {\n  content: \"\\f583\"; }\n\n.fa-grin-hearts:before {\n  content: \"\\f584\"; }\n\n.fa-grin-squint:before {\n  content: \"\\f585\"; }\n\n.fa-grin-squint-tears:before {\n  content: \"\\f586\"; }\n\n.fa-grin-stars:before {\n  content: \"\\f587\"; }\n\n.fa-grin-tears:before {\n  content: \"\\f588\"; }\n\n.fa-grin-tongue:before {\n  content: \"\\f589\"; }\n\n.fa-grin-tongue-squint:before {\n  content: \"\\f58a\"; }\n\n.fa-grin-tongue-wink:before {\n  content: \"\\f58b\"; }\n\n.fa-grin-wink:before {\n  content: \"\\f58c\"; }\n\n.fa-grip-horizontal:before {\n  content: \"\\f58d\"; }\n\n.fa-grip-lines:before {\n  content: \"\\f7a4\"; }\n\n.fa-grip-lines-vertical:before {\n  content: \"\\f7a5\"; }\n\n.fa-grip-vertical:before {\n  content: \"\\f58e\"; }\n\n.fa-gripfire:before {\n  content: \"\\f3ac\"; }\n\n.fa-grunt:before {\n  content: \"\\f3ad\"; }\n\n.fa-guilded:before {\n  content: \"\\e07e\"; }\n\n.fa-guitar:before {\n  content: \"\\f7a6\"; }\n\n.fa-gulp:before {\n  content: \"\\f3ae\"; }\n\n.fa-h-square:before {\n  content: \"\\f0fd\"; }\n\n.fa-hacker-news:before {\n  content: \"\\f1d4\"; }\n\n.fa-hacker-news-square:before {\n  content: \"\\f3af\"; }\n\n.fa-hackerrank:before {\n  content: \"\\f5f7\"; }\n\n.fa-hamburger:before {\n  content: \"\\f805\"; }\n\n.fa-hammer:before {\n  content: \"\\f6e3\"; }\n\n.fa-hamsa:before {\n  content: \"\\f665\"; }\n\n.fa-hand-holding:before {\n  content: \"\\f4bd\"; }\n\n.fa-hand-holding-heart:before {\n  content: \"\\f4be\"; }\n\n.fa-hand-holding-medical:before {\n  content: \"\\e05c\"; }\n\n.fa-hand-holding-usd:before {\n  content: \"\\f4c0\"; }\n\n.fa-hand-holding-water:before {\n  content: \"\\f4c1\"; }\n\n.fa-hand-lizard:before {\n  content: \"\\f258\"; }\n\n.fa-hand-middle-finger:before {\n  content: \"\\f806\"; }\n\n.fa-hand-paper:before {\n  content: \"\\f256\"; }\n\n.fa-hand-peace:before {\n  content: \"\\f25b\"; }\n\n.fa-hand-point-down:before {\n  content: \"\\f0a7\"; }\n\n.fa-hand-point-left:before {\n  content: \"\\f0a5\"; }\n\n.fa-hand-point-right:before {\n  content: \"\\f0a4\"; }\n\n.fa-hand-point-up:before {\n  content: \"\\f0a6\"; }\n\n.fa-hand-pointer:before {\n  content: \"\\f25a\"; }\n\n.fa-hand-rock:before {\n  content: \"\\f255\"; }\n\n.fa-hand-scissors:before {\n  content: \"\\f257\"; }\n\n.fa-hand-sparkles:before {\n  content: \"\\e05d\"; }\n\n.fa-hand-spock:before {\n  content: \"\\f259\"; }\n\n.fa-hands:before {\n  content: \"\\f4c2\"; }\n\n.fa-hands-helping:before {\n  content: \"\\f4c4\"; }\n\n.fa-hands-wash:before {\n  content: \"\\e05e\"; }\n\n.fa-handshake:before {\n  content: \"\\f2b5\"; }\n\n.fa-handshake-alt-slash:before {\n  content: \"\\e05f\"; }\n\n.fa-handshake-slash:before {\n  content: \"\\e060\"; }\n\n.fa-hanukiah:before {\n  content: \"\\f6e6\"; }\n\n.fa-hard-hat:before {\n  content: \"\\f807\"; }\n\n.fa-hashtag:before {\n  content: \"\\f292\"; }\n\n.fa-hat-cowboy:before {\n  content: \"\\f8c0\"; }\n\n.fa-hat-cowboy-side:before {\n  content: \"\\f8c1\"; }\n\n.fa-hat-wizard:before {\n  content: \"\\f6e8\"; }\n\n.fa-hdd:before {\n  content: \"\\f0a0\"; }\n\n.fa-head-side-cough:before {\n  content: \"\\e061\"; }\n\n.fa-head-side-cough-slash:before {\n  content: \"\\e062\"; }\n\n.fa-head-side-mask:before {\n  content: \"\\e063\"; }\n\n.fa-head-side-virus:before {\n  content: \"\\e064\"; }\n\n.fa-heading:before {\n  content: \"\\f1dc\"; }\n\n.fa-headphones:before {\n  content: \"\\f025\"; }\n\n.fa-headphones-alt:before {\n  content: \"\\f58f\"; }\n\n.fa-headset:before {\n  content: \"\\f590\"; }\n\n.fa-heart:before {\n  content: \"\\f004\"; }\n\n.fa-heart-broken:before {\n  content: \"\\f7a9\"; }\n\n.fa-heartbeat:before {\n  content: \"\\f21e\"; }\n\n.fa-helicopter:before {\n  content: \"\\f533\"; }\n\n.fa-highlighter:before {\n  content: \"\\f591\"; }\n\n.fa-hiking:before {\n  content: \"\\f6ec\"; }\n\n.fa-hippo:before {\n  content: \"\\f6ed\"; }\n\n.fa-hips:before {\n  content: \"\\f452\"; }\n\n.fa-hire-a-helper:before {\n  content: \"\\f3b0\"; }\n\n.fa-history:before {\n  content: \"\\f1da\"; }\n\n.fa-hive:before {\n  content: \"\\e07f\"; }\n\n.fa-hockey-puck:before {\n  content: \"\\f453\"; }\n\n.fa-holly-berry:before {\n  content: \"\\f7aa\"; }\n\n.fa-home:before {\n  content: \"\\f015\"; }\n\n.fa-hooli:before {\n  content: \"\\f427\"; }\n\n.fa-hornbill:before {\n  content: \"\\f592\"; }\n\n.fa-horse:before {\n  content: \"\\f6f0\"; }\n\n.fa-horse-head:before {\n  content: \"\\f7ab\"; }\n\n.fa-hospital:before {\n  content: \"\\f0f8\"; }\n\n.fa-hospital-alt:before {\n  content: \"\\f47d\"; }\n\n.fa-hospital-symbol:before {\n  content: \"\\f47e\"; }\n\n.fa-hospital-user:before {\n  content: \"\\f80d\"; }\n\n.fa-hot-tub:before {\n  content: \"\\f593\"; }\n\n.fa-hotdog:before {\n  content: \"\\f80f\"; }\n\n.fa-hotel:before {\n  content: \"\\f594\"; }\n\n.fa-hotjar:before {\n  content: \"\\f3b1\"; }\n\n.fa-hourglass:before {\n  content: \"\\f254\"; }\n\n.fa-hourglass-end:before {\n  content: \"\\f253\"; }\n\n.fa-hourglass-half:before {\n  content: \"\\f252\"; }\n\n.fa-hourglass-start:before {\n  content: \"\\f251\"; }\n\n.fa-house-damage:before {\n  content: \"\\f6f1\"; }\n\n.fa-house-user:before {\n  content: \"\\e065\"; }\n\n.fa-houzz:before {\n  content: \"\\f27c\"; }\n\n.fa-hryvnia:before {\n  content: \"\\f6f2\"; }\n\n.fa-html5:before {\n  content: \"\\f13b\"; }\n\n.fa-hubspot:before {\n  content: \"\\f3b2\"; }\n\n.fa-i-cursor:before {\n  content: \"\\f246\"; }\n\n.fa-ice-cream:before {\n  content: \"\\f810\"; }\n\n.fa-icicles:before {\n  content: \"\\f7ad\"; }\n\n.fa-icons:before {\n  content: \"\\f86d\"; }\n\n.fa-id-badge:before {\n  content: \"\\f2c1\"; }\n\n.fa-id-card:before {\n  content: \"\\f2c2\"; }\n\n.fa-id-card-alt:before {\n  content: \"\\f47f\"; }\n\n.fa-ideal:before {\n  content: \"\\e013\"; }\n\n.fa-igloo:before {\n  content: \"\\f7ae\"; }\n\n.fa-image:before {\n  content: \"\\f03e\"; }\n\n.fa-images:before {\n  content: \"\\f302\"; }\n\n.fa-imdb:before {\n  content: \"\\f2d8\"; }\n\n.fa-inbox:before {\n  content: \"\\f01c\"; }\n\n.fa-indent:before {\n  content: \"\\f03c\"; }\n\n.fa-industry:before {\n  content: \"\\f275\"; }\n\n.fa-infinity:before {\n  content: \"\\f534\"; }\n\n.fa-info:before {\n  content: \"\\f129\"; }\n\n.fa-info-circle:before {\n  content: \"\\f05a\"; }\n\n.fa-innosoft:before {\n  content: \"\\e080\"; }\n\n.fa-instagram:before {\n  content: \"\\f16d\"; }\n\n.fa-instagram-square:before {\n  content: \"\\e055\"; }\n\n.fa-instalod:before {\n  content: \"\\e081\"; }\n\n.fa-intercom:before {\n  content: \"\\f7af\"; }\n\n.fa-internet-explorer:before {\n  content: \"\\f26b\"; }\n\n.fa-invision:before {\n  content: \"\\f7b0\"; }\n\n.fa-ioxhost:before {\n  content: \"\\f208\"; }\n\n.fa-italic:before {\n  content: \"\\f033\"; }\n\n.fa-itch-io:before {\n  content: \"\\f83a\"; }\n\n.fa-itunes:before {\n  content: \"\\f3b4\"; }\n\n.fa-itunes-note:before {\n  content: \"\\f3b5\"; }\n\n.fa-java:before {\n  content: \"\\f4e4\"; }\n\n.fa-jedi:before {\n  content: \"\\f669\"; }\n\n.fa-jedi-order:before {\n  content: \"\\f50e\"; }\n\n.fa-jenkins:before {\n  content: \"\\f3b6\"; }\n\n.fa-jira:before {\n  content: \"\\f7b1\"; }\n\n.fa-joget:before {\n  content: \"\\f3b7\"; }\n\n.fa-joint:before {\n  content: \"\\f595\"; }\n\n.fa-joomla:before {\n  content: \"\\f1aa\"; }\n\n.fa-journal-whills:before {\n  content: \"\\f66a\"; }\n\n.fa-js:before {\n  content: \"\\f3b8\"; }\n\n.fa-js-square:before {\n  content: \"\\f3b9\"; }\n\n.fa-jsfiddle:before {\n  content: \"\\f1cc\"; }\n\n.fa-kaaba:before {\n  content: \"\\f66b\"; }\n\n.fa-kaggle:before {\n  content: \"\\f5fa\"; }\n\n.fa-key:before {\n  content: \"\\f084\"; }\n\n.fa-keybase:before {\n  content: \"\\f4f5\"; }\n\n.fa-keyboard:before {\n  content: \"\\f11c\"; }\n\n.fa-keycdn:before {\n  content: \"\\f3ba\"; }\n\n.fa-khanda:before {\n  content: \"\\f66d\"; }\n\n.fa-kickstarter:before {\n  content: \"\\f3bb\"; }\n\n.fa-kickstarter-k:before {\n  content: \"\\f3bc\"; }\n\n.fa-kiss:before {\n  content: \"\\f596\"; }\n\n.fa-kiss-beam:before {\n  content: \"\\f597\"; }\n\n.fa-kiss-wink-heart:before {\n  content: \"\\f598\"; }\n\n.fa-kiwi-bird:before {\n  content: \"\\f535\"; }\n\n.fa-korvue:before {\n  content: \"\\f42f\"; }\n\n.fa-landmark:before {\n  content: \"\\f66f\"; }\n\n.fa-language:before {\n  content: \"\\f1ab\"; }\n\n.fa-laptop:before {\n  content: \"\\f109\"; }\n\n.fa-laptop-code:before {\n  content: \"\\f5fc\"; }\n\n.fa-laptop-house:before {\n  content: \"\\e066\"; }\n\n.fa-laptop-medical:before {\n  content: \"\\f812\"; }\n\n.fa-laravel:before {\n  content: \"\\f3bd\"; }\n\n.fa-lastfm:before {\n  content: \"\\f202\"; }\n\n.fa-lastfm-square:before {\n  content: \"\\f203\"; }\n\n.fa-laugh:before {\n  content: \"\\f599\"; }\n\n.fa-laugh-beam:before {\n  content: \"\\f59a\"; }\n\n.fa-laugh-squint:before {\n  content: \"\\f59b\"; }\n\n.fa-laugh-wink:before {\n  content: \"\\f59c\"; }\n\n.fa-layer-group:before {\n  content: \"\\f5fd\"; }\n\n.fa-leaf:before {\n  content: \"\\f06c\"; }\n\n.fa-leanpub:before {\n  content: \"\\f212\"; }\n\n.fa-lemon:before {\n  content: \"\\f094\"; }\n\n.fa-less:before {\n  content: \"\\f41d\"; }\n\n.fa-less-than:before {\n  content: \"\\f536\"; }\n\n.fa-less-than-equal:before {\n  content: \"\\f537\"; }\n\n.fa-level-down-alt:before {\n  content: \"\\f3be\"; }\n\n.fa-level-up-alt:before {\n  content: \"\\f3bf\"; }\n\n.fa-life-ring:before {\n  content: \"\\f1cd\"; }\n\n.fa-lightbulb:before {\n  content: \"\\f0eb\"; }\n\n.fa-line:before {\n  content: \"\\f3c0\"; }\n\n.fa-link:before {\n  content: \"\\f0c1\"; }\n\n.fa-linkedin:before {\n  content: \"\\f08c\"; }\n\n.fa-linkedin-in:before {\n  content: \"\\f0e1\"; }\n\n.fa-linode:before {\n  content: \"\\f2b8\"; }\n\n.fa-linux:before {\n  content: \"\\f17c\"; }\n\n.fa-lira-sign:before {\n  content: \"\\f195\"; }\n\n.fa-list:before {\n  content: \"\\f03a\"; }\n\n.fa-list-alt:before {\n  content: \"\\f022\"; }\n\n.fa-list-ol:before {\n  content: \"\\f0cb\"; }\n\n.fa-list-ul:before {\n  content: \"\\f0ca\"; }\n\n.fa-location-arrow:before {\n  content: \"\\f124\"; }\n\n.fa-lock:before {\n  content: \"\\f023\"; }\n\n.fa-lock-open:before {\n  content: \"\\f3c1\"; }\n\n.fa-long-arrow-alt-down:before {\n  content: \"\\f309\"; }\n\n.fa-long-arrow-alt-left:before {\n  content: \"\\f30a\"; }\n\n.fa-long-arrow-alt-right:before {\n  content: \"\\f30b\"; }\n\n.fa-long-arrow-alt-up:before {\n  content: \"\\f30c\"; }\n\n.fa-low-vision:before {\n  content: \"\\f2a8\"; }\n\n.fa-luggage-cart:before {\n  content: \"\\f59d\"; }\n\n.fa-lungs:before {\n  content: \"\\f604\"; }\n\n.fa-lungs-virus:before {\n  content: \"\\e067\"; }\n\n.fa-lyft:before {\n  content: \"\\f3c3\"; }\n\n.fa-magento:before {\n  content: \"\\f3c4\"; }\n\n.fa-magic:before {\n  content: \"\\f0d0\"; }\n\n.fa-magnet:before {\n  content: \"\\f076\"; }\n\n.fa-mail-bulk:before {\n  content: \"\\f674\"; }\n\n.fa-mailchimp:before {\n  content: \"\\f59e\"; }\n\n.fa-male:before {\n  content: \"\\f183\"; }\n\n.fa-mandalorian:before {\n  content: \"\\f50f\"; }\n\n.fa-map:before {\n  content: \"\\f279\"; }\n\n.fa-map-marked:before {\n  content: \"\\f59f\"; }\n\n.fa-map-marked-alt:before {\n  content: \"\\f5a0\"; }\n\n.fa-map-marker:before {\n  content: \"\\f041\"; }\n\n.fa-map-marker-alt:before {\n  content: \"\\f3c5\"; }\n\n.fa-map-pin:before {\n  content: \"\\f276\"; }\n\n.fa-map-signs:before {\n  content: \"\\f277\"; }\n\n.fa-markdown:before {\n  content: \"\\f60f\"; }\n\n.fa-marker:before {\n  content: \"\\f5a1\"; }\n\n.fa-mars:before {\n  content: \"\\f222\"; }\n\n.fa-mars-double:before {\n  content: \"\\f227\"; }\n\n.fa-mars-stroke:before {\n  content: \"\\f229\"; }\n\n.fa-mars-stroke-h:before {\n  content: \"\\f22b\"; }\n\n.fa-mars-stroke-v:before {\n  content: \"\\f22a\"; }\n\n.fa-mask:before {\n  content: \"\\f6fa\"; }\n\n.fa-mastodon:before {\n  content: \"\\f4f6\"; }\n\n.fa-maxcdn:before {\n  content: \"\\f136\"; }\n\n.fa-mdb:before {\n  content: \"\\f8ca\"; }\n\n.fa-medal:before {\n  content: \"\\f5a2\"; }\n\n.fa-medapps:before {\n  content: \"\\f3c6\"; }\n\n.fa-medium:before {\n  content: \"\\f23a\"; }\n\n.fa-medium-m:before {\n  content: \"\\f3c7\"; }\n\n.fa-medkit:before {\n  content: \"\\f0fa\"; }\n\n.fa-medrt:before {\n  content: \"\\f3c8\"; }\n\n.fa-meetup:before {\n  content: \"\\f2e0\"; }\n\n.fa-megaport:before {\n  content: \"\\f5a3\"; }\n\n.fa-meh:before {\n  content: \"\\f11a\"; }\n\n.fa-meh-blank:before {\n  content: \"\\f5a4\"; }\n\n.fa-meh-rolling-eyes:before {\n  content: \"\\f5a5\"; }\n\n.fa-memory:before {\n  content: \"\\f538\"; }\n\n.fa-mendeley:before {\n  content: \"\\f7b3\"; }\n\n.fa-menorah:before {\n  content: \"\\f676\"; }\n\n.fa-mercury:before {\n  content: \"\\f223\"; }\n\n.fa-meteor:before {\n  content: \"\\f753\"; }\n\n.fa-microblog:before {\n  content: \"\\e01a\"; }\n\n.fa-microchip:before {\n  content: \"\\f2db\"; }\n\n.fa-microphone:before {\n  content: \"\\f130\"; }\n\n.fa-microphone-alt:before {\n  content: \"\\f3c9\"; }\n\n.fa-microphone-alt-slash:before {\n  content: \"\\f539\"; }\n\n.fa-microphone-slash:before {\n  content: \"\\f131\"; }\n\n.fa-microscope:before {\n  content: \"\\f610\"; }\n\n.fa-microsoft:before {\n  content: \"\\f3ca\"; }\n\n.fa-minus:before {\n  content: \"\\f068\"; }\n\n.fa-minus-circle:before {\n  content: \"\\f056\"; }\n\n.fa-minus-square:before {\n  content: \"\\f146\"; }\n\n.fa-mitten:before {\n  content: \"\\f7b5\"; }\n\n.fa-mix:before {\n  content: \"\\f3cb\"; }\n\n.fa-mixcloud:before {\n  content: \"\\f289\"; }\n\n.fa-mixer:before {\n  content: \"\\e056\"; }\n\n.fa-mizuni:before {\n  content: \"\\f3cc\"; }\n\n.fa-mobile:before {\n  content: \"\\f10b\"; }\n\n.fa-mobile-alt:before {\n  content: \"\\f3cd\"; }\n\n.fa-modx:before {\n  content: \"\\f285\"; }\n\n.fa-monero:before {\n  content: \"\\f3d0\"; }\n\n.fa-money-bill:before {\n  content: \"\\f0d6\"; }\n\n.fa-money-bill-alt:before {\n  content: \"\\f3d1\"; }\n\n.fa-money-bill-wave:before {\n  content: \"\\f53a\"; }\n\n.fa-money-bill-wave-alt:before {\n  content: \"\\f53b\"; }\n\n.fa-money-check:before {\n  content: \"\\f53c\"; }\n\n.fa-money-check-alt:before {\n  content: \"\\f53d\"; }\n\n.fa-monument:before {\n  content: \"\\f5a6\"; }\n\n.fa-moon:before {\n  content: \"\\f186\"; }\n\n.fa-mortar-pestle:before {\n  content: \"\\f5a7\"; }\n\n.fa-mosque:before {\n  content: \"\\f678\"; }\n\n.fa-motorcycle:before {\n  content: \"\\f21c\"; }\n\n.fa-mountain:before {\n  content: \"\\f6fc\"; }\n\n.fa-mouse:before {\n  content: \"\\f8cc\"; }\n\n.fa-mouse-pointer:before {\n  content: \"\\f245\"; }\n\n.fa-mug-hot:before {\n  content: \"\\f7b6\"; }\n\n.fa-music:before {\n  content: \"\\f001\"; }\n\n.fa-napster:before {\n  content: \"\\f3d2\"; }\n\n.fa-neos:before {\n  content: \"\\f612\"; }\n\n.fa-network-wired:before {\n  content: \"\\f6ff\"; }\n\n.fa-neuter:before {\n  content: \"\\f22c\"; }\n\n.fa-newspaper:before {\n  content: \"\\f1ea\"; }\n\n.fa-nimblr:before {\n  content: \"\\f5a8\"; }\n\n.fa-node:before {\n  content: \"\\f419\"; }\n\n.fa-node-js:before {\n  content: \"\\f3d3\"; }\n\n.fa-not-equal:before {\n  content: \"\\f53e\"; }\n\n.fa-notes-medical:before {\n  content: \"\\f481\"; }\n\n.fa-npm:before {\n  content: \"\\f3d4\"; }\n\n.fa-ns8:before {\n  content: \"\\f3d5\"; }\n\n.fa-nutritionix:before {\n  content: \"\\f3d6\"; }\n\n.fa-object-group:before {\n  content: \"\\f247\"; }\n\n.fa-object-ungroup:before {\n  content: \"\\f248\"; }\n\n.fa-octopus-deploy:before {\n  content: \"\\e082\"; }\n\n.fa-odnoklassniki:before {\n  content: \"\\f263\"; }\n\n.fa-odnoklassniki-square:before {\n  content: \"\\f264\"; }\n\n.fa-oil-can:before {\n  content: \"\\f613\"; }\n\n.fa-old-republic:before {\n  content: \"\\f510\"; }\n\n.fa-om:before {\n  content: \"\\f679\"; }\n\n.fa-opencart:before {\n  content: \"\\f23d\"; }\n\n.fa-openid:before {\n  content: \"\\f19b\"; }\n\n.fa-opera:before {\n  content: \"\\f26a\"; }\n\n.fa-optin-monster:before {\n  content: \"\\f23c\"; }\n\n.fa-orcid:before {\n  content: \"\\f8d2\"; }\n\n.fa-osi:before {\n  content: \"\\f41a\"; }\n\n.fa-otter:before {\n  content: \"\\f700\"; }\n\n.fa-outdent:before {\n  content: \"\\f03b\"; }\n\n.fa-page4:before {\n  content: \"\\f3d7\"; }\n\n.fa-pagelines:before {\n  content: \"\\f18c\"; }\n\n.fa-pager:before {\n  content: \"\\f815\"; }\n\n.fa-paint-brush:before {\n  content: \"\\f1fc\"; }\n\n.fa-paint-roller:before {\n  content: \"\\f5aa\"; }\n\n.fa-palette:before {\n  content: \"\\f53f\"; }\n\n.fa-palfed:before {\n  content: \"\\f3d8\"; }\n\n.fa-pallet:before {\n  content: \"\\f482\"; }\n\n.fa-paper-plane:before {\n  content: \"\\f1d8\"; }\n\n.fa-paperclip:before {\n  content: \"\\f0c6\"; }\n\n.fa-parachute-box:before {\n  content: \"\\f4cd\"; }\n\n.fa-paragraph:before {\n  content: \"\\f1dd\"; }\n\n.fa-parking:before {\n  content: \"\\f540\"; }\n\n.fa-passport:before {\n  content: \"\\f5ab\"; }\n\n.fa-pastafarianism:before {\n  content: \"\\f67b\"; }\n\n.fa-paste:before {\n  content: \"\\f0ea\"; }\n\n.fa-patreon:before {\n  content: \"\\f3d9\"; }\n\n.fa-pause:before {\n  content: \"\\f04c\"; }\n\n.fa-pause-circle:before {\n  content: \"\\f28b\"; }\n\n.fa-paw:before {\n  content: \"\\f1b0\"; }\n\n.fa-paypal:before {\n  content: \"\\f1ed\"; }\n\n.fa-peace:before {\n  content: \"\\f67c\"; }\n\n.fa-pen:before {\n  content: \"\\f304\"; }\n\n.fa-pen-alt:before {\n  content: \"\\f305\"; }\n\n.fa-pen-fancy:before {\n  content: \"\\f5ac\"; }\n\n.fa-pen-nib:before {\n  content: \"\\f5ad\"; }\n\n.fa-pen-square:before {\n  content: \"\\f14b\"; }\n\n.fa-pencil-alt:before {\n  content: \"\\f303\"; }\n\n.fa-pencil-ruler:before {\n  content: \"\\f5ae\"; }\n\n.fa-penny-arcade:before {\n  content: \"\\f704\"; }\n\n.fa-people-arrows:before {\n  content: \"\\e068\"; }\n\n.fa-people-carry:before {\n  content: \"\\f4ce\"; }\n\n.fa-pepper-hot:before {\n  content: \"\\f816\"; }\n\n.fa-perbyte:before {\n  content: \"\\e083\"; }\n\n.fa-percent:before {\n  content: \"\\f295\"; }\n\n.fa-percentage:before {\n  content: \"\\f541\"; }\n\n.fa-periscope:before {\n  content: \"\\f3da\"; }\n\n.fa-person-booth:before {\n  content: \"\\f756\"; }\n\n.fa-phabricator:before {\n  content: \"\\f3db\"; }\n\n.fa-phoenix-framework:before {\n  content: \"\\f3dc\"; }\n\n.fa-phoenix-squadron:before {\n  content: \"\\f511\"; }\n\n.fa-phone:before {\n  content: \"\\f095\"; }\n\n.fa-phone-alt:before {\n  content: \"\\f879\"; }\n\n.fa-phone-slash:before {\n  content: \"\\f3dd\"; }\n\n.fa-phone-square:before {\n  content: \"\\f098\"; }\n\n.fa-phone-square-alt:before {\n  content: \"\\f87b\"; }\n\n.fa-phone-volume:before {\n  content: \"\\f2a0\"; }\n\n.fa-photo-video:before {\n  content: \"\\f87c\"; }\n\n.fa-php:before {\n  content: \"\\f457\"; }\n\n.fa-pied-piper:before {\n  content: \"\\f2ae\"; }\n\n.fa-pied-piper-alt:before {\n  content: \"\\f1a8\"; }\n\n.fa-pied-piper-hat:before {\n  content: \"\\f4e5\"; }\n\n.fa-pied-piper-pp:before {\n  content: \"\\f1a7\"; }\n\n.fa-pied-piper-square:before {\n  content: \"\\e01e\"; }\n\n.fa-piggy-bank:before {\n  content: \"\\f4d3\"; }\n\n.fa-pills:before {\n  content: \"\\f484\"; }\n\n.fa-pinterest:before {\n  content: \"\\f0d2\"; }\n\n.fa-pinterest-p:before {\n  content: \"\\f231\"; }\n\n.fa-pinterest-square:before {\n  content: \"\\f0d3\"; }\n\n.fa-pizza-slice:before {\n  content: \"\\f818\"; }\n\n.fa-place-of-worship:before {\n  content: \"\\f67f\"; }\n\n.fa-plane:before {\n  content: \"\\f072\"; }\n\n.fa-plane-arrival:before {\n  content: \"\\f5af\"; }\n\n.fa-plane-departure:before {\n  content: \"\\f5b0\"; }\n\n.fa-plane-slash:before {\n  content: \"\\e069\"; }\n\n.fa-play:before {\n  content: \"\\f04b\"; }\n\n.fa-play-circle:before {\n  content: \"\\f144\"; }\n\n.fa-playstation:before {\n  content: \"\\f3df\"; }\n\n.fa-plug:before {\n  content: \"\\f1e6\"; }\n\n.fa-plus:before {\n  content: \"\\f067\"; }\n\n.fa-plus-circle:before {\n  content: \"\\f055\"; }\n\n.fa-plus-square:before {\n  content: \"\\f0fe\"; }\n\n.fa-podcast:before {\n  content: \"\\f2ce\"; }\n\n.fa-poll:before {\n  content: \"\\f681\"; }\n\n.fa-poll-h:before {\n  content: \"\\f682\"; }\n\n.fa-poo:before {\n  content: \"\\f2fe\"; }\n\n.fa-poo-storm:before {\n  content: \"\\f75a\"; }\n\n.fa-poop:before {\n  content: \"\\f619\"; }\n\n.fa-portrait:before {\n  content: \"\\f3e0\"; }\n\n.fa-pound-sign:before {\n  content: \"\\f154\"; }\n\n.fa-power-off:before {\n  content: \"\\f011\"; }\n\n.fa-pray:before {\n  content: \"\\f683\"; }\n\n.fa-praying-hands:before {\n  content: \"\\f684\"; }\n\n.fa-prescription:before {\n  content: \"\\f5b1\"; }\n\n.fa-prescription-bottle:before {\n  content: \"\\f485\"; }\n\n.fa-prescription-bottle-alt:before {\n  content: \"\\f486\"; }\n\n.fa-print:before {\n  content: \"\\f02f\"; }\n\n.fa-procedures:before {\n  content: \"\\f487\"; }\n\n.fa-product-hunt:before {\n  content: \"\\f288\"; }\n\n.fa-project-diagram:before {\n  content: \"\\f542\"; }\n\n.fa-pump-medical:before {\n  content: \"\\e06a\"; }\n\n.fa-pump-soap:before {\n  content: \"\\e06b\"; }\n\n.fa-pushed:before {\n  content: \"\\f3e1\"; }\n\n.fa-puzzle-piece:before {\n  content: \"\\f12e\"; }\n\n.fa-python:before {\n  content: \"\\f3e2\"; }\n\n.fa-qq:before {\n  content: \"\\f1d6\"; }\n\n.fa-qrcode:before {\n  content: \"\\f029\"; }\n\n.fa-question:before {\n  content: \"\\f128\"; }\n\n.fa-question-circle:before {\n  content: \"\\f059\"; }\n\n.fa-quidditch:before {\n  content: \"\\f458\"; }\n\n.fa-quinscape:before {\n  content: \"\\f459\"; }\n\n.fa-quora:before {\n  content: \"\\f2c4\"; }\n\n.fa-quote-left:before {\n  content: \"\\f10d\"; }\n\n.fa-quote-right:before {\n  content: \"\\f10e\"; }\n\n.fa-quran:before {\n  content: \"\\f687\"; }\n\n.fa-r-project:before {\n  content: \"\\f4f7\"; }\n\n.fa-radiation:before {\n  content: \"\\f7b9\"; }\n\n.fa-radiation-alt:before {\n  content: \"\\f7ba\"; }\n\n.fa-rainbow:before {\n  content: \"\\f75b\"; }\n\n.fa-random:before {\n  content: \"\\f074\"; }\n\n.fa-raspberry-pi:before {\n  content: \"\\f7bb\"; }\n\n.fa-ravelry:before {\n  content: \"\\f2d9\"; }\n\n.fa-react:before {\n  content: \"\\f41b\"; }\n\n.fa-reacteurope:before {\n  content: \"\\f75d\"; }\n\n.fa-readme:before {\n  content: \"\\f4d5\"; }\n\n.fa-rebel:before {\n  content: \"\\f1d0\"; }\n\n.fa-receipt:before {\n  content: \"\\f543\"; }\n\n.fa-record-vinyl:before {\n  content: \"\\f8d9\"; }\n\n.fa-recycle:before {\n  content: \"\\f1b8\"; }\n\n.fa-red-river:before {\n  content: \"\\f3e3\"; }\n\n.fa-reddit:before {\n  content: \"\\f1a1\"; }\n\n.fa-reddit-alien:before {\n  content: \"\\f281\"; }\n\n.fa-reddit-square:before {\n  content: \"\\f1a2\"; }\n\n.fa-redhat:before {\n  content: \"\\f7bc\"; }\n\n.fa-redo:before {\n  content: \"\\f01e\"; }\n\n.fa-redo-alt:before {\n  content: \"\\f2f9\"; }\n\n.fa-registered:before {\n  content: \"\\f25d\"; }\n\n.fa-remove-format:before {\n  content: \"\\f87d\"; }\n\n.fa-renren:before {\n  content: \"\\f18b\"; }\n\n.fa-reply:before {\n  content: \"\\f3e5\"; }\n\n.fa-reply-all:before {\n  content: \"\\f122\"; }\n\n.fa-replyd:before {\n  content: \"\\f3e6\"; }\n\n.fa-republican:before {\n  content: \"\\f75e\"; }\n\n.fa-researchgate:before {\n  content: \"\\f4f8\"; }\n\n.fa-resolving:before {\n  content: \"\\f3e7\"; }\n\n.fa-restroom:before {\n  content: \"\\f7bd\"; }\n\n.fa-retweet:before {\n  content: \"\\f079\"; }\n\n.fa-rev:before {\n  content: \"\\f5b2\"; }\n\n.fa-ribbon:before {\n  content: \"\\f4d6\"; }\n\n.fa-ring:before {\n  content: \"\\f70b\"; }\n\n.fa-road:before {\n  content: \"\\f018\"; }\n\n.fa-robot:before {\n  content: \"\\f544\"; }\n\n.fa-rocket:before {\n  content: \"\\f135\"; }\n\n.fa-rocketchat:before {\n  content: \"\\f3e8\"; }\n\n.fa-rockrms:before {\n  content: \"\\f3e9\"; }\n\n.fa-route:before {\n  content: \"\\f4d7\"; }\n\n.fa-rss:before {\n  content: \"\\f09e\"; }\n\n.fa-rss-square:before {\n  content: \"\\f143\"; }\n\n.fa-ruble-sign:before {\n  content: \"\\f158\"; }\n\n.fa-ruler:before {\n  content: \"\\f545\"; }\n\n.fa-ruler-combined:before {\n  content: \"\\f546\"; }\n\n.fa-ruler-horizontal:before {\n  content: \"\\f547\"; }\n\n.fa-ruler-vertical:before {\n  content: \"\\f548\"; }\n\n.fa-running:before {\n  content: \"\\f70c\"; }\n\n.fa-rupee-sign:before {\n  content: \"\\f156\"; }\n\n.fa-rust:before {\n  content: \"\\e07a\"; }\n\n.fa-sad-cry:before {\n  content: \"\\f5b3\"; }\n\n.fa-sad-tear:before {\n  content: \"\\f5b4\"; }\n\n.fa-safari:before {\n  content: \"\\f267\"; }\n\n.fa-salesforce:before {\n  content: \"\\f83b\"; }\n\n.fa-sass:before {\n  content: \"\\f41e\"; }\n\n.fa-satellite:before {\n  content: \"\\f7bf\"; }\n\n.fa-satellite-dish:before {\n  content: \"\\f7c0\"; }\n\n.fa-save:before {\n  content: \"\\f0c7\"; }\n\n.fa-schlix:before {\n  content: \"\\f3ea\"; }\n\n.fa-school:before {\n  content: \"\\f549\"; }\n\n.fa-screwdriver:before {\n  content: \"\\f54a\"; }\n\n.fa-scribd:before {\n  content: \"\\f28a\"; }\n\n.fa-scroll:before {\n  content: \"\\f70e\"; }\n\n.fa-sd-card:before {\n  content: \"\\f7c2\"; }\n\n.fa-search:before {\n  content: \"\\f002\"; }\n\n.fa-search-dollar:before {\n  content: \"\\f688\"; }\n\n.fa-search-location:before {\n  content: \"\\f689\"; }\n\n.fa-search-minus:before {\n  content: \"\\f010\"; }\n\n.fa-search-plus:before {\n  content: \"\\f00e\"; }\n\n.fa-searchengin:before {\n  content: \"\\f3eb\"; }\n\n.fa-seedling:before {\n  content: \"\\f4d8\"; }\n\n.fa-sellcast:before {\n  content: \"\\f2da\"; }\n\n.fa-sellsy:before {\n  content: \"\\f213\"; }\n\n.fa-server:before {\n  content: \"\\f233\"; }\n\n.fa-servicestack:before {\n  content: \"\\f3ec\"; }\n\n.fa-shapes:before {\n  content: \"\\f61f\"; }\n\n.fa-share:before {\n  content: \"\\f064\"; }\n\n.fa-share-alt:before {\n  content: \"\\f1e0\"; }\n\n.fa-share-alt-square:before {\n  content: \"\\f1e1\"; }\n\n.fa-share-square:before {\n  content: \"\\f14d\"; }\n\n.fa-shekel-sign:before {\n  content: \"\\f20b\"; }\n\n.fa-shield-alt:before {\n  content: \"\\f3ed\"; }\n\n.fa-shield-virus:before {\n  content: \"\\e06c\"; }\n\n.fa-ship:before {\n  content: \"\\f21a\"; }\n\n.fa-shipping-fast:before {\n  content: \"\\f48b\"; }\n\n.fa-shirtsinbulk:before {\n  content: \"\\f214\"; }\n\n.fa-shoe-prints:before {\n  content: \"\\f54b\"; }\n\n.fa-shopify:before {\n  content: \"\\e057\"; }\n\n.fa-shopping-bag:before {\n  content: \"\\f290\"; }\n\n.fa-shopping-basket:before {\n  content: \"\\f291\"; }\n\n.fa-shopping-cart:before {\n  content: \"\\f07a\"; }\n\n.fa-shopware:before {\n  content: \"\\f5b5\"; }\n\n.fa-shower:before {\n  content: \"\\f2cc\"; }\n\n.fa-shuttle-van:before {\n  content: \"\\f5b6\"; }\n\n.fa-sign:before {\n  content: \"\\f4d9\"; }\n\n.fa-sign-in-alt:before {\n  content: \"\\f2f6\"; }\n\n.fa-sign-language:before {\n  content: \"\\f2a7\"; }\n\n.fa-sign-out-alt:before {\n  content: \"\\f2f5\"; }\n\n.fa-signal:before {\n  content: \"\\f012\"; }\n\n.fa-signature:before {\n  content: \"\\f5b7\"; }\n\n.fa-sim-card:before {\n  content: \"\\f7c4\"; }\n\n.fa-simplybuilt:before {\n  content: \"\\f215\"; }\n\n.fa-sink:before {\n  content: \"\\e06d\"; }\n\n.fa-sistrix:before {\n  content: \"\\f3ee\"; }\n\n.fa-sitemap:before {\n  content: \"\\f0e8\"; }\n\n.fa-sith:before {\n  content: \"\\f512\"; }\n\n.fa-skating:before {\n  content: \"\\f7c5\"; }\n\n.fa-sketch:before {\n  content: \"\\f7c6\"; }\n\n.fa-skiing:before {\n  content: \"\\f7c9\"; }\n\n.fa-skiing-nordic:before {\n  content: \"\\f7ca\"; }\n\n.fa-skull:before {\n  content: \"\\f54c\"; }\n\n.fa-skull-crossbones:before {\n  content: \"\\f714\"; }\n\n.fa-skyatlas:before {\n  content: \"\\f216\"; }\n\n.fa-skype:before {\n  content: \"\\f17e\"; }\n\n.fa-slack:before {\n  content: \"\\f198\"; }\n\n.fa-slack-hash:before {\n  content: \"\\f3ef\"; }\n\n.fa-slash:before {\n  content: \"\\f715\"; }\n\n.fa-sleigh:before {\n  content: \"\\f7cc\"; }\n\n.fa-sliders-h:before {\n  content: \"\\f1de\"; }\n\n.fa-slideshare:before {\n  content: \"\\f1e7\"; }\n\n.fa-smile:before {\n  content: \"\\f118\"; }\n\n.fa-smile-beam:before {\n  content: \"\\f5b8\"; }\n\n.fa-smile-wink:before {\n  content: \"\\f4da\"; }\n\n.fa-smog:before {\n  content: \"\\f75f\"; }\n\n.fa-smoking:before {\n  content: \"\\f48d\"; }\n\n.fa-smoking-ban:before {\n  content: \"\\f54d\"; }\n\n.fa-sms:before {\n  content: \"\\f7cd\"; }\n\n.fa-snapchat:before {\n  content: \"\\f2ab\"; }\n\n.fa-snapchat-ghost:before {\n  content: \"\\f2ac\"; }\n\n.fa-snapchat-square:before {\n  content: \"\\f2ad\"; }\n\n.fa-snowboarding:before {\n  content: \"\\f7ce\"; }\n\n.fa-snowflake:before {\n  content: \"\\f2dc\"; }\n\n.fa-snowman:before {\n  content: \"\\f7d0\"; }\n\n.fa-snowplow:before {\n  content: \"\\f7d2\"; }\n\n.fa-soap:before {\n  content: \"\\e06e\"; }\n\n.fa-socks:before {\n  content: \"\\f696\"; }\n\n.fa-solar-panel:before {\n  content: \"\\f5ba\"; }\n\n.fa-sort:before {\n  content: \"\\f0dc\"; }\n\n.fa-sort-alpha-down:before {\n  content: \"\\f15d\"; }\n\n.fa-sort-alpha-down-alt:before {\n  content: \"\\f881\"; }\n\n.fa-sort-alpha-up:before {\n  content: \"\\f15e\"; }\n\n.fa-sort-alpha-up-alt:before {\n  content: \"\\f882\"; }\n\n.fa-sort-amount-down:before {\n  content: \"\\f160\"; }\n\n.fa-sort-amount-down-alt:before {\n  content: \"\\f884\"; }\n\n.fa-sort-amount-up:before {\n  content: \"\\f161\"; }\n\n.fa-sort-amount-up-alt:before {\n  content: \"\\f885\"; }\n\n.fa-sort-down:before {\n  content: \"\\f0dd\"; }\n\n.fa-sort-numeric-down:before {\n  content: \"\\f162\"; }\n\n.fa-sort-numeric-down-alt:before {\n  content: \"\\f886\"; }\n\n.fa-sort-numeric-up:before {\n  content: \"\\f163\"; }\n\n.fa-sort-numeric-up-alt:before {\n  content: \"\\f887\"; }\n\n.fa-sort-up:before {\n  content: \"\\f0de\"; }\n\n.fa-soundcloud:before {\n  content: \"\\f1be\"; }\n\n.fa-sourcetree:before {\n  content: \"\\f7d3\"; }\n\n.fa-spa:before {\n  content: \"\\f5bb\"; }\n\n.fa-space-shuttle:before {\n  content: \"\\f197\"; }\n\n.fa-speakap:before {\n  content: \"\\f3f3\"; }\n\n.fa-speaker-deck:before {\n  content: \"\\f83c\"; }\n\n.fa-spell-check:before {\n  content: \"\\f891\"; }\n\n.fa-spider:before {\n  content: \"\\f717\"; }\n\n.fa-spinner:before {\n  content: \"\\f110\"; }\n\n.fa-splotch:before {\n  content: \"\\f5bc\"; }\n\n.fa-spotify:before {\n  content: \"\\f1bc\"; }\n\n.fa-spray-can:before {\n  content: \"\\f5bd\"; }\n\n.fa-square:before {\n  content: \"\\f0c8\"; }\n\n.fa-square-full:before {\n  content: \"\\f45c\"; }\n\n.fa-square-root-alt:before {\n  content: \"\\f698\"; }\n\n.fa-squarespace:before {\n  content: \"\\f5be\"; }\n\n.fa-stack-exchange:before {\n  content: \"\\f18d\"; }\n\n.fa-stack-overflow:before {\n  content: \"\\f16c\"; }\n\n.fa-stackpath:before {\n  content: \"\\f842\"; }\n\n.fa-stamp:before {\n  content: \"\\f5bf\"; }\n\n.fa-star:before {\n  content: \"\\f005\"; }\n\n.fa-star-and-crescent:before {\n  content: \"\\f699\"; }\n\n.fa-star-half:before {\n  content: \"\\f089\"; }\n\n.fa-star-half-alt:before {\n  content: \"\\f5c0\"; }\n\n.fa-star-of-david:before {\n  content: \"\\f69a\"; }\n\n.fa-star-of-life:before {\n  content: \"\\f621\"; }\n\n.fa-staylinked:before {\n  content: \"\\f3f5\"; }\n\n.fa-steam:before {\n  content: \"\\f1b6\"; }\n\n.fa-steam-square:before {\n  content: \"\\f1b7\"; }\n\n.fa-steam-symbol:before {\n  content: \"\\f3f6\"; }\n\n.fa-step-backward:before {\n  content: \"\\f048\"; }\n\n.fa-step-forward:before {\n  content: \"\\f051\"; }\n\n.fa-stethoscope:before {\n  content: \"\\f0f1\"; }\n\n.fa-sticker-mule:before {\n  content: \"\\f3f7\"; }\n\n.fa-sticky-note:before {\n  content: \"\\f249\"; }\n\n.fa-stop:before {\n  content: \"\\f04d\"; }\n\n.fa-stop-circle:before {\n  content: \"\\f28d\"; }\n\n.fa-stopwatch:before {\n  content: \"\\f2f2\"; }\n\n.fa-stopwatch-20:before {\n  content: \"\\e06f\"; }\n\n.fa-store:before {\n  content: \"\\f54e\"; }\n\n.fa-store-alt:before {\n  content: \"\\f54f\"; }\n\n.fa-store-alt-slash:before {\n  content: \"\\e070\"; }\n\n.fa-store-slash:before {\n  content: \"\\e071\"; }\n\n.fa-strava:before {\n  content: \"\\f428\"; }\n\n.fa-stream:before {\n  content: \"\\f550\"; }\n\n.fa-street-view:before {\n  content: \"\\f21d\"; }\n\n.fa-strikethrough:before {\n  content: \"\\f0cc\"; }\n\n.fa-stripe:before {\n  content: \"\\f429\"; }\n\n.fa-stripe-s:before {\n  content: \"\\f42a\"; }\n\n.fa-stroopwafel:before {\n  content: \"\\f551\"; }\n\n.fa-studiovinari:before {\n  content: \"\\f3f8\"; }\n\n.fa-stumbleupon:before {\n  content: \"\\f1a4\"; }\n\n.fa-stumbleupon-circle:before {\n  content: \"\\f1a3\"; }\n\n.fa-subscript:before {\n  content: \"\\f12c\"; }\n\n.fa-subway:before {\n  content: \"\\f239\"; }\n\n.fa-suitcase:before {\n  content: \"\\f0f2\"; }\n\n.fa-suitcase-rolling:before {\n  content: \"\\f5c1\"; }\n\n.fa-sun:before {\n  content: \"\\f185\"; }\n\n.fa-superpowers:before {\n  content: \"\\f2dd\"; }\n\n.fa-superscript:before {\n  content: \"\\f12b\"; }\n\n.fa-supple:before {\n  content: \"\\f3f9\"; }\n\n.fa-surprise:before {\n  content: \"\\f5c2\"; }\n\n.fa-suse:before {\n  content: \"\\f7d6\"; }\n\n.fa-swatchbook:before {\n  content: \"\\f5c3\"; }\n\n.fa-swift:before {\n  content: \"\\f8e1\"; }\n\n.fa-swimmer:before {\n  content: \"\\f5c4\"; }\n\n.fa-swimming-pool:before {\n  content: \"\\f5c5\"; }\n\n.fa-symfony:before {\n  content: \"\\f83d\"; }\n\n.fa-synagogue:before {\n  content: \"\\f69b\"; }\n\n.fa-sync:before {\n  content: \"\\f021\"; }\n\n.fa-sync-alt:before {\n  content: \"\\f2f1\"; }\n\n.fa-syringe:before {\n  content: \"\\f48e\"; }\n\n.fa-table:before {\n  content: \"\\f0ce\"; }\n\n.fa-table-tennis:before {\n  content: \"\\f45d\"; }\n\n.fa-tablet:before {\n  content: \"\\f10a\"; }\n\n.fa-tablet-alt:before {\n  content: \"\\f3fa\"; }\n\n.fa-tablets:before {\n  content: \"\\f490\"; }\n\n.fa-tachometer-alt:before {\n  content: \"\\f3fd\"; }\n\n.fa-tag:before {\n  content: \"\\f02b\"; }\n\n.fa-tags:before {\n  content: \"\\f02c\"; }\n\n.fa-tape:before {\n  content: \"\\f4db\"; }\n\n.fa-tasks:before {\n  content: \"\\f0ae\"; }\n\n.fa-taxi:before {\n  content: \"\\f1ba\"; }\n\n.fa-teamspeak:before {\n  content: \"\\f4f9\"; }\n\n.fa-teeth:before {\n  content: \"\\f62e\"; }\n\n.fa-teeth-open:before {\n  content: \"\\f62f\"; }\n\n.fa-telegram:before {\n  content: \"\\f2c6\"; }\n\n.fa-telegram-plane:before {\n  content: \"\\f3fe\"; }\n\n.fa-temperature-high:before {\n  content: \"\\f769\"; }\n\n.fa-temperature-low:before {\n  content: \"\\f76b\"; }\n\n.fa-tencent-weibo:before {\n  content: \"\\f1d5\"; }\n\n.fa-tenge:before {\n  content: \"\\f7d7\"; }\n\n.fa-terminal:before {\n  content: \"\\f120\"; }\n\n.fa-text-height:before {\n  content: \"\\f034\"; }\n\n.fa-text-width:before {\n  content: \"\\f035\"; }\n\n.fa-th:before {\n  content: \"\\f00a\"; }\n\n.fa-th-large:before {\n  content: \"\\f009\"; }\n\n.fa-th-list:before {\n  content: \"\\f00b\"; }\n\n.fa-the-red-yeti:before {\n  content: \"\\f69d\"; }\n\n.fa-theater-masks:before {\n  content: \"\\f630\"; }\n\n.fa-themeco:before {\n  content: \"\\f5c6\"; }\n\n.fa-themeisle:before {\n  content: \"\\f2b2\"; }\n\n.fa-thermometer:before {\n  content: \"\\f491\"; }\n\n.fa-thermometer-empty:before {\n  content: \"\\f2cb\"; }\n\n.fa-thermometer-full:before {\n  content: \"\\f2c7\"; }\n\n.fa-thermometer-half:before {\n  content: \"\\f2c9\"; }\n\n.fa-thermometer-quarter:before {\n  content: \"\\f2ca\"; }\n\n.fa-thermometer-three-quarters:before {\n  content: \"\\f2c8\"; }\n\n.fa-think-peaks:before {\n  content: \"\\f731\"; }\n\n.fa-thumbs-down:before {\n  content: \"\\f165\"; }\n\n.fa-thumbs-up:before {\n  content: \"\\f164\"; }\n\n.fa-thumbtack:before {\n  content: \"\\f08d\"; }\n\n.fa-ticket-alt:before {\n  content: \"\\f3ff\"; }\n\n.fa-tiktok:before {\n  content: \"\\e07b\"; }\n\n.fa-times:before {\n  content: \"\\f00d\"; }\n\n.fa-times-circle:before {\n  content: \"\\f057\"; }\n\n.fa-tint:before {\n  content: \"\\f043\"; }\n\n.fa-tint-slash:before {\n  content: \"\\f5c7\"; }\n\n.fa-tired:before {\n  content: \"\\f5c8\"; }\n\n.fa-toggle-off:before {\n  content: \"\\f204\"; }\n\n.fa-toggle-on:before {\n  content: \"\\f205\"; }\n\n.fa-toilet:before {\n  content: \"\\f7d8\"; }\n\n.fa-toilet-paper:before {\n  content: \"\\f71e\"; }\n\n.fa-toilet-paper-slash:before {\n  content: \"\\e072\"; }\n\n.fa-toolbox:before {\n  content: \"\\f552\"; }\n\n.fa-tools:before {\n  content: \"\\f7d9\"; }\n\n.fa-tooth:before {\n  content: \"\\f5c9\"; }\n\n.fa-torah:before {\n  content: \"\\f6a0\"; }\n\n.fa-torii-gate:before {\n  content: \"\\f6a1\"; }\n\n.fa-tractor:before {\n  content: \"\\f722\"; }\n\n.fa-trade-federation:before {\n  content: \"\\f513\"; }\n\n.fa-trademark:before {\n  content: \"\\f25c\"; }\n\n.fa-traffic-light:before {\n  content: \"\\f637\"; }\n\n.fa-trailer:before {\n  content: \"\\e041\"; }\n\n.fa-train:before {\n  content: \"\\f238\"; }\n\n.fa-tram:before {\n  content: \"\\f7da\"; }\n\n.fa-transgender:before {\n  content: \"\\f224\"; }\n\n.fa-transgender-alt:before {\n  content: \"\\f225\"; }\n\n.fa-trash:before {\n  content: \"\\f1f8\"; }\n\n.fa-trash-alt:before {\n  content: \"\\f2ed\"; }\n\n.fa-trash-restore:before {\n  content: \"\\f829\"; }\n\n.fa-trash-restore-alt:before {\n  content: \"\\f82a\"; }\n\n.fa-tree:before {\n  content: \"\\f1bb\"; }\n\n.fa-trello:before {\n  content: \"\\f181\"; }\n\n.fa-tripadvisor:before {\n  content: \"\\f262\"; }\n\n.fa-trophy:before {\n  content: \"\\f091\"; }\n\n.fa-truck:before {\n  content: \"\\f0d1\"; }\n\n.fa-truck-loading:before {\n  content: \"\\f4de\"; }\n\n.fa-truck-monster:before {\n  content: \"\\f63b\"; }\n\n.fa-truck-moving:before {\n  content: \"\\f4df\"; }\n\n.fa-truck-pickup:before {\n  content: \"\\f63c\"; }\n\n.fa-tshirt:before {\n  content: \"\\f553\"; }\n\n.fa-tty:before {\n  content: \"\\f1e4\"; }\n\n.fa-tumblr:before {\n  content: \"\\f173\"; }\n\n.fa-tumblr-square:before {\n  content: \"\\f174\"; }\n\n.fa-tv:before {\n  content: \"\\f26c\"; }\n\n.fa-twitch:before {\n  content: \"\\f1e8\"; }\n\n.fa-twitter:before {\n  content: \"\\f099\"; }\n\n.fa-twitter-square:before {\n  content: \"\\f081\"; }\n\n.fa-typo3:before {\n  content: \"\\f42b\"; }\n\n.fa-uber:before {\n  content: \"\\f402\"; }\n\n.fa-ubuntu:before {\n  content: \"\\f7df\"; }\n\n.fa-uikit:before {\n  content: \"\\f403\"; }\n\n.fa-umbraco:before {\n  content: \"\\f8e8\"; }\n\n.fa-umbrella:before {\n  content: \"\\f0e9\"; }\n\n.fa-umbrella-beach:before {\n  content: \"\\f5ca\"; }\n\n.fa-uncharted:before {\n  content: \"\\e084\"; }\n\n.fa-underline:before {\n  content: \"\\f0cd\"; }\n\n.fa-undo:before {\n  content: \"\\f0e2\"; }\n\n.fa-undo-alt:before {\n  content: \"\\f2ea\"; }\n\n.fa-uniregistry:before {\n  content: \"\\f404\"; }\n\n.fa-unity:before {\n  content: \"\\e049\"; }\n\n.fa-universal-access:before {\n  content: \"\\f29a\"; }\n\n.fa-university:before {\n  content: \"\\f19c\"; }\n\n.fa-unlink:before {\n  content: \"\\f127\"; }\n\n.fa-unlock:before {\n  content: \"\\f09c\"; }\n\n.fa-unlock-alt:before {\n  content: \"\\f13e\"; }\n\n.fa-unsplash:before {\n  content: \"\\e07c\"; }\n\n.fa-untappd:before {\n  content: \"\\f405\"; }\n\n.fa-upload:before {\n  content: \"\\f093\"; }\n\n.fa-ups:before {\n  content: \"\\f7e0\"; }\n\n.fa-usb:before {\n  content: \"\\f287\"; }\n\n.fa-user:before {\n  content: \"\\f007\"; }\n\n.fa-user-alt:before {\n  content: \"\\f406\"; }\n\n.fa-user-alt-slash:before {\n  content: \"\\f4fa\"; }\n\n.fa-user-astronaut:before {\n  content: \"\\f4fb\"; }\n\n.fa-user-check:before {\n  content: \"\\f4fc\"; }\n\n.fa-user-circle:before {\n  content: \"\\f2bd\"; }\n\n.fa-user-clock:before {\n  content: \"\\f4fd\"; }\n\n.fa-user-cog:before {\n  content: \"\\f4fe\"; }\n\n.fa-user-edit:before {\n  content: \"\\f4ff\"; }\n\n.fa-user-friends:before {\n  content: \"\\f500\"; }\n\n.fa-user-graduate:before {\n  content: \"\\f501\"; }\n\n.fa-user-injured:before {\n  content: \"\\f728\"; }\n\n.fa-user-lock:before {\n  content: \"\\f502\"; }\n\n.fa-user-md:before {\n  content: \"\\f0f0\"; }\n\n.fa-user-minus:before {\n  content: \"\\f503\"; }\n\n.fa-user-ninja:before {\n  content: \"\\f504\"; }\n\n.fa-user-nurse:before {\n  content: \"\\f82f\"; }\n\n.fa-user-plus:before {\n  content: \"\\f234\"; }\n\n.fa-user-secret:before {\n  content: \"\\f21b\"; }\n\n.fa-user-shield:before {\n  content: \"\\f505\"; }\n\n.fa-user-slash:before {\n  content: \"\\f506\"; }\n\n.fa-user-tag:before {\n  content: \"\\f507\"; }\n\n.fa-user-tie:before {\n  content: \"\\f508\"; }\n\n.fa-user-times:before {\n  content: \"\\f235\"; }\n\n.fa-users:before {\n  content: \"\\f0c0\"; }\n\n.fa-users-cog:before {\n  content: \"\\f509\"; }\n\n.fa-users-slash:before {\n  content: \"\\e073\"; }\n\n.fa-usps:before {\n  content: \"\\f7e1\"; }\n\n.fa-ussunnah:before {\n  content: \"\\f407\"; }\n\n.fa-utensil-spoon:before {\n  content: \"\\f2e5\"; }\n\n.fa-utensils:before {\n  content: \"\\f2e7\"; }\n\n.fa-vaadin:before {\n  content: \"\\f408\"; }\n\n.fa-vector-square:before {\n  content: \"\\f5cb\"; }\n\n.fa-venus:before {\n  content: \"\\f221\"; }\n\n.fa-venus-double:before {\n  content: \"\\f226\"; }\n\n.fa-venus-mars:before {\n  content: \"\\f228\"; }\n\n.fa-vest:before {\n  content: \"\\e085\"; }\n\n.fa-vest-patches:before {\n  content: \"\\e086\"; }\n\n.fa-viacoin:before {\n  content: \"\\f237\"; }\n\n.fa-viadeo:before {\n  content: \"\\f2a9\"; }\n\n.fa-viadeo-square:before {\n  content: \"\\f2aa\"; }\n\n.fa-vial:before {\n  content: \"\\f492\"; }\n\n.fa-vials:before {\n  content: \"\\f493\"; }\n\n.fa-viber:before {\n  content: \"\\f409\"; }\n\n.fa-video:before {\n  content: \"\\f03d\"; }\n\n.fa-video-slash:before {\n  content: \"\\f4e2\"; }\n\n.fa-vihara:before {\n  content: \"\\f6a7\"; }\n\n.fa-vimeo:before {\n  content: \"\\f40a\"; }\n\n.fa-vimeo-square:before {\n  content: \"\\f194\"; }\n\n.fa-vimeo-v:before {\n  content: \"\\f27d\"; }\n\n.fa-vine:before {\n  content: \"\\f1ca\"; }\n\n.fa-virus:before {\n  content: \"\\e074\"; }\n\n.fa-virus-slash:before {\n  content: \"\\e075\"; }\n\n.fa-viruses:before {\n  content: \"\\e076\"; }\n\n.fa-vk:before {\n  content: \"\\f189\"; }\n\n.fa-vnv:before {\n  content: \"\\f40b\"; }\n\n.fa-voicemail:before {\n  content: \"\\f897\"; }\n\n.fa-volleyball-ball:before {\n  content: \"\\f45f\"; }\n\n.fa-volume-down:before {\n  content: \"\\f027\"; }\n\n.fa-volume-mute:before {\n  content: \"\\f6a9\"; }\n\n.fa-volume-off:before {\n  content: \"\\f026\"; }\n\n.fa-volume-up:before {\n  content: \"\\f028\"; }\n\n.fa-vote-yea:before {\n  content: \"\\f772\"; }\n\n.fa-vr-cardboard:before {\n  content: \"\\f729\"; }\n\n.fa-vuejs:before {\n  content: \"\\f41f\"; }\n\n.fa-walking:before {\n  content: \"\\f554\"; }\n\n.fa-wallet:before {\n  content: \"\\f555\"; }\n\n.fa-warehouse:before {\n  content: \"\\f494\"; }\n\n.fa-watchman-monitoring:before {\n  content: \"\\e087\"; }\n\n.fa-water:before {\n  content: \"\\f773\"; }\n\n.fa-wave-square:before {\n  content: \"\\f83e\"; }\n\n.fa-waze:before {\n  content: \"\\f83f\"; }\n\n.fa-weebly:before {\n  content: \"\\f5cc\"; }\n\n.fa-weibo:before {\n  content: \"\\f18a\"; }\n\n.fa-weight:before {\n  content: \"\\f496\"; }\n\n.fa-weight-hanging:before {\n  content: \"\\f5cd\"; }\n\n.fa-weixin:before {\n  content: \"\\f1d7\"; }\n\n.fa-whatsapp:before {\n  content: \"\\f232\"; }\n\n.fa-whatsapp-square:before {\n  content: \"\\f40c\"; }\n\n.fa-wheelchair:before {\n  content: \"\\f193\"; }\n\n.fa-whmcs:before {\n  content: \"\\f40d\"; }\n\n.fa-wifi:before {\n  content: \"\\f1eb\"; }\n\n.fa-wikipedia-w:before {\n  content: \"\\f266\"; }\n\n.fa-wind:before {\n  content: \"\\f72e\"; }\n\n.fa-window-close:before {\n  content: \"\\f410\"; }\n\n.fa-window-maximize:before {\n  content: \"\\f2d0\"; }\n\n.fa-window-minimize:before {\n  content: \"\\f2d1\"; }\n\n.fa-window-restore:before {\n  content: \"\\f2d2\"; }\n\n.fa-windows:before {\n  content: \"\\f17a\"; }\n\n.fa-wine-bottle:before {\n  content: \"\\f72f\"; }\n\n.fa-wine-glass:before {\n  content: \"\\f4e3\"; }\n\n.fa-wine-glass-alt:before {\n  content: \"\\f5ce\"; }\n\n.fa-wix:before {\n  content: \"\\f5cf\"; }\n\n.fa-wizards-of-the-coast:before {\n  content: \"\\f730\"; }\n\n.fa-wodu:before {\n  content: \"\\e088\"; }\n\n.fa-wolf-pack-battalion:before {\n  content: \"\\f514\"; }\n\n.fa-won-sign:before {\n  content: \"\\f159\"; }\n\n.fa-wordpress:before {\n  content: \"\\f19a\"; }\n\n.fa-wordpress-simple:before {\n  content: \"\\f411\"; }\n\n.fa-wpbeginner:before {\n  content: \"\\f297\"; }\n\n.fa-wpexplorer:before {\n  content: \"\\f2de\"; }\n\n.fa-wpforms:before {\n  content: \"\\f298\"; }\n\n.fa-wpressr:before {\n  content: \"\\f3e4\"; }\n\n.fa-wrench:before {\n  content: \"\\f0ad\"; }\n\n.fa-x-ray:before {\n  content: \"\\f497\"; }\n\n.fa-xbox:before {\n  content: \"\\f412\"; }\n\n.fa-xing:before {\n  content: \"\\f168\"; }\n\n.fa-xing-square:before {\n  content: \"\\f169\"; }\n\n.fa-y-combinator:before {\n  content: \"\\f23b\"; }\n\n.fa-yahoo:before {\n  content: \"\\f19e\"; }\n\n.fa-yammer:before {\n  content: \"\\f840\"; }\n\n.fa-yandex:before {\n  content: \"\\f413\"; }\n\n.fa-yandex-international:before {\n  content: \"\\f414\"; }\n\n.fa-yarn:before {\n  content: \"\\f7e3\"; }\n\n.fa-yelp:before {\n  content: \"\\f1e9\"; }\n\n.fa-yen-sign:before {\n  content: \"\\f157\"; }\n\n.fa-yin-yang:before {\n  content: \"\\f6ad\"; }\n\n.fa-yoast:before {\n  content: \"\\f2b1\"; }\n\n.fa-youtube:before {\n  content: \"\\f167\"; }\n\n.fa-youtube-square:before {\n  content: \"\\f431\"; }\n\n.fa-zhihu:before {\n  content: \"\\f63f\"; }\n\n.sr-only {\n  border: 0;\n  clip: rect(0, 0, 0, 0);\n  height: 1px;\n  margin: -1px;\n  overflow: hidden;\n  padding: 0;\n  position: absolute;\n  width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n  clip: auto;\n  height: auto;\n  margin: 0;\n  overflow: visible;\n  position: static;\n  width: auto; }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/ikonli-fontawesome6-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.fontawesome6 {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.fontawesome6;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.fontawesome6.FontAwesomeBrandsIkonHandler,\n            org.kordamp.ikonli.fontawesome6.FontAwesomeRegularIkonHandler,\n            org.kordamp.ikonli.fontawesome6.FontAwesomeSolidIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.fontawesome6.FontAwesomeBrandsIkonProvider,\n            org.kordamp.ikonli.fontawesome6.FontAwesomeRegularIkonProvider,\n            org.kordamp.ikonli.fontawesome6.FontAwesomeSolidIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/java/org/kordamp/ikonli/fontawesome6/FontAwesomeBrands.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome6;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum FontAwesomeBrands implements Ikon {\n    ACCESSIBLE_ICON(\"fab-accessible-icon\", '\\uf368'),\n    ACCUSOFT(\"fab-accusoft\", '\\uf369'),\n    ACQUISITIONS_INCORPORATED(\"fab-acquisitions-incorporated\", '\\uf6af'),\n    ADN(\"fab-adn\", '\\uf170'),\n    ADVERSAL(\"fab-adversal\", '\\uf36a'),\n    AFFILIATETHEME(\"fab-affiliatetheme\", '\\uf36b'),\n    AIRBNB(\"fab-airbnb\", '\\uf834'),\n    ALGOLIA(\"fab-algolia\", '\\uf36c'),\n    ALIPAY(\"fab-alipay\", '\\uf642'),\n    AMAZON(\"fab-amazon\", '\\uf270'),\n    AMAZON_PAY(\"fab-amazon-pay\", '\\uf42c'),\n    AMILIA(\"fab-amilia\", '\\uf36d'),\n    ANDROID(\"fab-android\", '\\uf17b'),\n    ANGELLIST(\"fab-angellist\", '\\uf209'),\n    ANGRYCREATIVE(\"fab-angrycreative\", '\\uf36e'),\n    ANGULAR(\"fab-angular\", '\\uf420'),\n    APPER(\"fab-apper\", '\\uf371'),\n    APPLE(\"fab-apple\", '\\uf179'),\n    APPLE_PAY(\"fab-apple-pay\", '\\uf415'),\n    APP_STORE(\"fab-app-store\", '\\uf36f'),\n    APP_STORE_IOS(\"fab-app-store-ios\", '\\uf370'),\n    ARTSTATION(\"fab-artstation\", '\\uf77a'),\n    ASYMMETRIK(\"fab-asymmetrik\", '\\uf372'),\n    ATLASSIAN(\"fab-atlassian\", '\\uf77b'),\n    AUDIBLE(\"fab-audible\", '\\uf373'),\n    AUTOPREFIXER(\"fab-autoprefixer\", '\\uf41c'),\n    AVIANEX(\"fab-avianex\", '\\uf374'),\n    AVIATO(\"fab-aviato\", '\\uf421'),\n    AWS(\"fab-aws\", '\\uf375'),\n    BANDCAMP(\"fab-bandcamp\", '\\uf2d5'),\n    BATTLE_NET(\"fab-battle-net\", '\\uf835'),\n    BEHANCE(\"fab-behance\", '\\uf1b4'),\n    BEHANCE_SQUARE(\"fab-behance-square\", '\\uf1b5'),\n    BIMOBJECT(\"fab-bimobject\", '\\uf378'),\n    BITBUCKET(\"fab-bitbucket\", '\\uf171'),\n    BITCOIN(\"fab-bitcoin\", '\\uf379'),\n    BITY(\"fab-bity\", '\\uf37a'),\n    BLACKBERRY(\"fab-blackberry\", '\\uf37b'),\n    BLACK_TIE(\"fab-black-tie\", '\\uf27e'),\n    BLOGGER(\"fab-blogger\", '\\uf37c'),\n    BLOGGER_B(\"fab-blogger-b\", '\\uf37d'),\n    BLUETOOTH(\"fab-bluetooth\", '\\uf293'),\n    BLUETOOTH_B(\"fab-bluetooth-b\", '\\uf294'),\n    BOOTSTRAP(\"fab-bootstrap\", '\\uf836'),\n    BTC(\"fab-btc\", '\\uf15a'),\n    BUFFER(\"fab-buffer\", '\\uf837'),\n    BUROMOBELEXPERTE(\"fab-buromobelexperte\", '\\uf37f'),\n    BUYSELLADS(\"fab-buysellads\", '\\uf20d'),\n    BUY_N_LARGE(\"fab-buy-n-large\", '\\uf8a6'),\n    CANADIAN_MAPLE_LEAF(\"fab-canadian-maple-leaf\", '\\uf785'),\n    CC_AMAZON_PAY(\"fab-cc-amazon-pay\", '\\uf42d'),\n    CC_AMEX(\"fab-cc-amex\", '\\uf1f3'),\n    CC_APPLE_PAY(\"fab-cc-apple-pay\", '\\uf416'),\n    CC_DINERS_CLUB(\"fab-cc-diners-club\", '\\uf24c'),\n    CC_DISCOVER(\"fab-cc-discover\", '\\uf1f2'),\n    CC_JCB(\"fab-cc-jcb\", '\\uf24b'),\n    CC_MASTERCARD(\"fab-cc-mastercard\", '\\uf1f1'),\n    CC_PAYPAL(\"fab-cc-paypal\", '\\uf1f4'),\n    CC_STRIPE(\"fab-cc-stripe\", '\\uf1f5'),\n    CC_VISA(\"fab-cc-visa\", '\\uf1f0'),\n    CENTERCODE(\"fab-centercode\", '\\uf380'),\n    CENTOS(\"fab-centos\", '\\uf789'),\n    CHROME(\"fab-chrome\", '\\uf268'),\n    CHROMECAST(\"fab-chromecast\", '\\uf838'),\n    CLOUDFARE(\"fab-cloudfare\", '\\ue07d'),\n    CLOUDSCALE(\"fab-cloudscale\", '\\uf383'),\n    CLOUDSMITH(\"fab-cloudsmith\", '\\uf384'),\n    CLOUDVERSIFY(\"fab-cloudversify\", '\\uf385'),\n    CODEPEN(\"fab-codepen\", '\\uf1cb'),\n    CODIEPIE(\"fab-codiepie\", '\\uf284'),\n    CONFLUENCE(\"fab-confluence\", '\\uf78d'),\n    CONNECTDEVELOP(\"fab-connectdevelop\", '\\uf20e'),\n    CONTAO(\"fab-contao\", '\\uf26d'),\n    COTTON_BUREAU(\"fab-cotton-bureau\", '\\uf89e'),\n    CPANEL(\"fab-cpanel\", '\\uf388'),\n    CREATIVE_COMMONS(\"fab-creative-commons\", '\\uf25e'),\n    CREATIVE_COMMONS_BY(\"fab-creative-commons-by\", '\\uf4e7'),\n    CREATIVE_COMMONS_NC(\"fab-creative-commons-nc\", '\\uf4e8'),\n    CREATIVE_COMMONS_NC_EU(\"fab-creative-commons-nc-eu\", '\\uf4e9'),\n    CREATIVE_COMMONS_NC_JP(\"fab-creative-commons-nc-jp\", '\\uf4ea'),\n    CREATIVE_COMMONS_ND(\"fab-creative-commons-nd\", '\\uf4eb'),\n    CREATIVE_COMMONS_PD(\"fab-creative-commons-pd\", '\\uf4ec'),\n    CREATIVE_COMMONS_PD_ALT(\"fab-creative-commons-pd-alt\", '\\uf4ed'),\n    CREATIVE_COMMONS_REMIX(\"fab-creative-commons-remix\", '\\uf4ee'),\n    CREATIVE_COMMONS_SA(\"fab-creative-commons-sa\", '\\uf4ef'),\n    CREATIVE_COMMONS_SAMPLING(\"fab-creative-commons-sampling\", '\\uf4f0'),\n    CREATIVE_COMMONS_SAMPLING_PLUS(\"fab-creative-commons-sampling-plus\", '\\uf4f1'),\n    CREATIVE_COMMONS_SHARE(\"fab-creative-commons-share\", '\\uf4f2'),\n    CREATIVE_COMMONS_ZERO(\"fab-creative-commons-zero\", '\\uf4f3'),\n    CRITICAL_ROLE(\"fab-critical-role\", '\\uf6c9'),\n    CSS3(\"fab-css3\", '\\uf13c'),\n    CSS3_ALT(\"fab-css3-alt\", '\\uf38b'),\n    CUTTLEFISH(\"fab-cuttlefish\", '\\uf38c'),\n    DAILYMOTION(\"fab-dailymotion\", '\\ue052'),\n    DASHCUBE(\"fab-dashcube\", '\\uf210'),\n    DEEZER(\"fab-deezer\", '\\ue077'),\n    DELICIOUS(\"fab-delicious\", '\\uf1a5'),\n    DEPLOYDOG(\"fab-deploydog\", '\\uf38e'),\n    DESKPRO(\"fab-deskpro\", '\\uf38f'),\n    DEV(\"fab-dev\", '\\uf6cc'),\n    DEVIANTART(\"fab-deviantart\", '\\uf1bd'),\n    DHL(\"fab-dhl\", '\\uf790'),\n    DIASPORA(\"fab-diaspora\", '\\uf791'),\n    DIGG(\"fab-digg\", '\\uf1a6'),\n    DIGITAL_OCEAN(\"fab-digital-ocean\", '\\uf391'),\n    DISCORD(\"fab-discord\", '\\uf392'),\n    DISCOURSE(\"fab-discourse\", '\\uf393'),\n    DOCHUB(\"fab-dochub\", '\\uf394'),\n    DOCKER(\"fab-docker\", '\\uf395'),\n    DRAFT2DIGITAL(\"fab-draft2digital\", '\\uf396'),\n    DRIBBBLE(\"fab-dribbble\", '\\uf17d'),\n    DRIBBBLE_SQUARE(\"fab-dribbble-square\", '\\uf397'),\n    DROPBOX(\"fab-dropbox\", '\\uf16b'),\n    DRUPAL(\"fab-drupal\", '\\uf1a9'),\n    DYALOG(\"fab-dyalog\", '\\uf399'),\n    D_AND_D(\"fab-d-and-d\", '\\uf38d'),\n    D_AND_D_BEYOND(\"fab-d-and-d-beyond\", '\\uf6ca'),\n    EARLYBIRDS(\"fab-earlybirds\", '\\uf39a'),\n    EBAY(\"fab-ebay\", '\\uf4f4'),\n    EDGE(\"fab-edge\", '\\uf282'),\n    EDGE_LEGACY(\"fab-edge-legacy\", '\\ue078'),\n    ELEMENTOR(\"fab-elementor\", '\\uf430'),\n    ELLO(\"fab-ello\", '\\uf5f1'),\n    EMBER(\"fab-ember\", '\\uf423'),\n    EMPIRE(\"fab-empire\", '\\uf1d1'),\n    ENVIRA(\"fab-envira\", '\\uf299'),\n    ERLANG(\"fab-erlang\", '\\uf39d'),\n    ETHEREUM(\"fab-ethereum\", '\\uf42e'),\n    ETSY(\"fab-etsy\", '\\uf2d7'),\n    EVERNOTE(\"fab-evernote\", '\\uf839'),\n    EXPEDITEDSSL(\"fab-expeditedssl\", '\\uf23e'),\n    FAB_500PX(\"fab-500px\", '\\uf26e'),\n    FACEBOOK(\"fab-facebook\", '\\uf09a'),\n    FACEBOOK_F(\"fab-facebook-f\", '\\uf39e'),\n    FACEBOOK_MESSENGER(\"fab-facebook-messenger\", '\\uf39f'),\n    FACEBOOK_SQUARE(\"fab-facebook-square\", '\\uf082'),\n    FANTASY_FLIGHT_GAMES(\"fab-fantasy-flight-games\", '\\uf6dc'),\n    FEDEX(\"fab-fedex\", '\\uf797'),\n    FEDORA(\"fab-fedora\", '\\uf798'),\n    FIGMA(\"fab-figma\", '\\uf799'),\n    FIREFOX(\"fab-firefox\", '\\uf269'),\n    FIREFOX_BROWSER(\"fab-firefox-browser\", '\\ue007'),\n    FIRSTDRAFT(\"fab-firstdraft\", '\\uf3a1'),\n    FIRST_ORDER(\"fab-first-order\", '\\uf2b0'),\n    FIRST_ORDER_ALT(\"fab-first-order-alt\", '\\uf50a'),\n    FLICKR(\"fab-flickr\", '\\uf16e'),\n    FLIPBOARD(\"fab-flipboard\", '\\uf44d'),\n    FLY(\"fab-fly\", '\\uf417'),\n    FONTICONS(\"fab-fonticons\", '\\uf280'),\n    FONTICONS_FI(\"fab-fonticons-fi\", '\\uf3a2'),\n    FONT_AWESOME(\"fab-font-awesome\", '\\uf2b4'),\n    FONT_AWESOME_ALT(\"fab-font-awesome-alt\", '\\uf35c'),\n    FONT_AWESOME_FLAG(\"fab-font-awesome-flag\", '\\uf425'),\n    FORT_AWESOME(\"fab-fort-awesome\", '\\uf286'),\n    FORT_AWESOME_ALT(\"fab-fort-awesome-alt\", '\\uf3a3'),\n    FORUMBEE(\"fab-forumbee\", '\\uf211'),\n    FOURSQUARE(\"fab-foursquare\", '\\uf180'),\n    FREEBSD(\"fab-freebsd\", '\\uf3a4'),\n    FREE_CODE_CAMP(\"fab-free-code-camp\", '\\uf2c5'),\n    FULCRUM(\"fab-fulcrum\", '\\uf50b'),\n    GALACTIC_REPUBLIC(\"fab-galactic-republic\", '\\uf50c'),\n    GALACTIC_SENATE(\"fab-galactic-senate\", '\\uf50d'),\n    GET_POCKET(\"fab-get-pocket\", '\\uf265'),\n    GG(\"fab-gg\", '\\uf260'),\n    GG_CIRCLE(\"fab-gg-circle\", '\\uf261'),\n    GIT(\"fab-git\", '\\uf1d3'),\n    GITHUB(\"fab-github\", '\\uf09b'),\n    GITHUB_ALT(\"fab-github-alt\", '\\uf113'),\n    GITHUB_SQUARE(\"fab-github-square\", '\\uf092'),\n    GITKRAKEN(\"fab-gitkraken\", '\\uf3a6'),\n    GITLAB(\"fab-gitlab\", '\\uf296'),\n    GITTER(\"fab-gitter\", '\\uf426'),\n    GIT_ALT(\"fab-git-alt\", '\\uf841'),\n    GIT_SQUARE(\"fab-git-square\", '\\uf1d2'),\n    GLIDE(\"fab-glide\", '\\uf2a5'),\n    GLIDE_G(\"fab-glide-g\", '\\uf2a6'),\n    GOFORE(\"fab-gofore\", '\\uf3a7'),\n    GOODREADS(\"fab-goodreads\", '\\uf3a8'),\n    GOODREADS_G(\"fab-goodreads-g\", '\\uf3a9'),\n    GOOGLE(\"fab-google\", '\\uf1a0'),\n    GOOGLE_DRIVE(\"fab-google-drive\", '\\uf3aa'),\n    GOOGLE_PAY(\"fab-google-pay\", '\\ue079'),\n    GOOGLE_PLAY(\"fab-google-play\", '\\uf3ab'),\n    GOOGLE_PLUS(\"fab-google-plus\", '\\uf2b3'),\n    GOOGLE_PLUS_G(\"fab-google-plus-g\", '\\uf0d5'),\n    GOOGLE_PLUS_SQUARE(\"fab-google-plus-square\", '\\uf0d4'),\n    GOOGLE_WALLET(\"fab-google-wallet\", '\\uf1ee'),\n    GRATIPAY(\"fab-gratipay\", '\\uf184'),\n    GRAV(\"fab-grav\", '\\uf2d6'),\n    GRIPFIRE(\"fab-gripfire\", '\\uf3ac'),\n    GRUNT(\"fab-grunt\", '\\uf3ad'),\n    GUILDED(\"fab-guilded\", '\\ue07e'),\n    GULP(\"fab-gulp\", '\\uf3ae'),\n    HACKERRANK(\"fab-hackerrank\", '\\uf5f7'),\n    HACKER_NEWS(\"fab-hacker-news\", '\\uf1d4'),\n    HACKER_NEWS_SQUARE(\"fab-hacker-news-square\", '\\uf3af'),\n    HIPS(\"fab-hips\", '\\uf452'),\n    HIRE_A_HELPER(\"fab-hire-a-helper\", '\\uf3b0'),\n    HIVE(\"fab-hive\", '\\ue07f'),\n    HOOLI(\"fab-hooli\", '\\uf427'),\n    HORNBILL(\"fab-hornbill\", '\\uf592'),\n    HOTJAR(\"fab-hotjar\", '\\uf3b1'),\n    HOUZZ(\"fab-houzz\", '\\uf27c'),\n    HTML5(\"fab-html5\", '\\uf13b'),\n    HUBSPOT(\"fab-hubspot\", '\\uf3b2'),\n    IDEAL(\"fab-ideal\", '\\ue013'),\n    IMDB(\"fab-imdb\", '\\uf2d8'),\n    INNOSOFT(\"fab-innosoft\", '\\ue080'),\n    INSTAGRAM(\"fab-instagram\", '\\uf16d'),\n    INSTAGRAM_SQUARE(\"fab-instagram-square\", '\\ue055'),\n    INSTALOD(\"fab-instalod\", '\\ue081'),\n    INTERCOM(\"fab-intercom\", '\\uf7af'),\n    INTERNET_EXPLORER(\"fab-internet-explorer\", '\\uf26b'),\n    INVISION(\"fab-invision\", '\\uf7b0'),\n    IOXHOST(\"fab-ioxhost\", '\\uf208'),\n    ITCH_IO(\"fab-itch-io\", '\\uf83a'),\n    ITUNES(\"fab-itunes\", '\\uf3b4'),\n    ITUNES_NOTE(\"fab-itunes-note\", '\\uf3b5'),\n    JAVA(\"fab-java\", '\\uf4e4'),\n    JEDI_ORDER(\"fab-jedi-order\", '\\uf50e'),\n    JENKINS(\"fab-jenkins\", '\\uf3b6'),\n    JIRA(\"fab-jira\", '\\uf7b1'),\n    JOGET(\"fab-joget\", '\\uf3b7'),\n    JOOMLA(\"fab-joomla\", '\\uf1aa'),\n    JS(\"fab-js\", '\\uf3b8'),\n    JSFIDDLE(\"fab-jsfiddle\", '\\uf1cc'),\n    JS_SQUARE(\"fab-js-square\", '\\uf3b9'),\n    KAGGLE(\"fab-kaggle\", '\\uf5fa'),\n    KEYBASE(\"fab-keybase\", '\\uf4f5'),\n    KEYCDN(\"fab-keycdn\", '\\uf3ba'),\n    KICKSTARTER(\"fab-kickstarter\", '\\uf3bb'),\n    KICKSTARTER_K(\"fab-kickstarter-k\", '\\uf3bc'),\n    KORVUE(\"fab-korvue\", '\\uf42f'),\n    LARAVEL(\"fab-laravel\", '\\uf3bd'),\n    LASTFM(\"fab-lastfm\", '\\uf202'),\n    LASTFM_SQUARE(\"fab-lastfm-square\", '\\uf203'),\n    LEANPUB(\"fab-leanpub\", '\\uf212'),\n    LESS(\"fab-less\", '\\uf41d'),\n    LINE(\"fab-line\", '\\uf3c0'),\n    LINKEDIN(\"fab-linkedin\", '\\uf08c'),\n    LINKEDIN_IN(\"fab-linkedin-in\", '\\uf0e1'),\n    LINODE(\"fab-linode\", '\\uf2b8'),\n    LINUX(\"fab-linux\", '\\uf17c'),\n    LYFT(\"fab-lyft\", '\\uf3c3'),\n    MAGENTO(\"fab-magento\", '\\uf3c4'),\n    MAILCHIMP(\"fab-mailchimp\", '\\uf59e'),\n    MANDALORIAN(\"fab-mandalorian\", '\\uf50f'),\n    MARKDOWN(\"fab-markdown\", '\\uf60f'),\n    MASTODON(\"fab-mastodon\", '\\uf4f6'),\n    MAXCDN(\"fab-maxcdn\", '\\uf136'),\n    MDB(\"fab-mdb\", '\\uf8ca'),\n    MEDAPPS(\"fab-medapps\", '\\uf3c6'),\n    MEDIUM(\"fab-medium\", '\\uf23a'),\n    MEDIUM_M(\"fab-medium-m\", '\\uf3c7'),\n    MEDRT(\"fab-medrt\", '\\uf3c8'),\n    MEETUP(\"fab-meetup\", '\\uf2e0'),\n    MEGAPORT(\"fab-megaport\", '\\uf5a3'),\n    MENDELEY(\"fab-mendeley\", '\\uf7b3'),\n    MICROBLOG(\"fab-microblog\", '\\ue01a'),\n    MICROSOFT(\"fab-microsoft\", '\\uf3ca'),\n    MIX(\"fab-mix\", '\\uf3cb'),\n    MIXCLOUD(\"fab-mixcloud\", '\\uf289'),\n    MIXER(\"fab-mixer\", '\\ue056'),\n    MIZUNI(\"fab-mizuni\", '\\uf3cc'),\n    MODX(\"fab-modx\", '\\uf285'),\n    MONERO(\"fab-monero\", '\\uf3d0'),\n    NAPSTER(\"fab-napster\", '\\uf3d2'),\n    NEOS(\"fab-neos\", '\\uf612'),\n    NIMBLR(\"fab-nimblr\", '\\uf5a8'),\n    NODE(\"fab-node\", '\\uf419'),\n    NODE_JS(\"fab-node-js\", '\\uf3d3'),\n    NPM(\"fab-npm\", '\\uf3d4'),\n    NS8(\"fab-ns8\", '\\uf3d5'),\n    NUTRITIONIX(\"fab-nutritionix\", '\\uf3d6'),\n    OCTOPUS_DEPLOY(\"fab-octopus-deploy\", '\\ue082'),\n    ODNOKLASSNIKI(\"fab-odnoklassniki\", '\\uf263'),\n    ODNOKLASSNIKI_SQUARE(\"fab-odnoklassniki-square\", '\\uf264'),\n    OLD_REPUBLIC(\"fab-old-republic\", '\\uf510'),\n    OPENCART(\"fab-opencart\", '\\uf23d'),\n    OPENID(\"fab-openid\", '\\uf19b'),\n    OPERA(\"fab-opera\", '\\uf26a'),\n    OPTIN_MONSTER(\"fab-optin-monster\", '\\uf23c'),\n    ORCID(\"fab-orcid\", '\\uf8d2'),\n    OSI(\"fab-osi\", '\\uf41a'),\n    PAGE4(\"fab-page4\", '\\uf3d7'),\n    PAGELINES(\"fab-pagelines\", '\\uf18c'),\n    PALFED(\"fab-palfed\", '\\uf3d8'),\n    PATREON(\"fab-patreon\", '\\uf3d9'),\n    PAYPAL(\"fab-paypal\", '\\uf1ed'),\n    PENNY_ARCADE(\"fab-penny-arcade\", '\\uf704'),\n    PERBYTE(\"fab-perbyte\", '\\ue083'),\n    PERISCOPE(\"fab-periscope\", '\\uf3da'),\n    PHABRICATOR(\"fab-phabricator\", '\\uf3db'),\n    PHOENIX_FRAMEWORK(\"fab-phoenix-framework\", '\\uf3dc'),\n    PHOENIX_SQUADRON(\"fab-phoenix-squadron\", '\\uf511'),\n    PHP(\"fab-php\", '\\uf457'),\n    PIED_PIPER(\"fab-pied-piper\", '\\uf2ae'),\n    PIED_PIPER_ALT(\"fab-pied-piper-alt\", '\\uf1a8'),\n    PIED_PIPER_HAT(\"fab-pied-piper-hat\", '\\uf4e5'),\n    PIED_PIPER_PP(\"fab-pied-piper-pp\", '\\uf1a7'),\n    PIED_PIPER_SQUARE(\"fab-pied-piper-square\", '\\ue01e'),\n    PINTEREST(\"fab-pinterest\", '\\uf0d2'),\n    PINTEREST_P(\"fab-pinterest-p\", '\\uf231'),\n    PINTEREST_SQUARE(\"fab-pinterest-square\", '\\uf0d3'),\n    PLAYSTATION(\"fab-playstation\", '\\uf3df'),\n    PRODUCT_HUNT(\"fab-product-hunt\", '\\uf288'),\n    PUSHED(\"fab-pushed\", '\\uf3e1'),\n    PYTHON(\"fab-python\", '\\uf3e2'),\n    QQ(\"fab-qq\", '\\uf1d6'),\n    QUINSCAPE(\"fab-quinscape\", '\\uf459'),\n    QUORA(\"fab-quora\", '\\uf2c4'),\n    RASPBERRY_PI(\"fab-raspberry-pi\", '\\uf7bb'),\n    RAVELRY(\"fab-ravelry\", '\\uf2d9'),\n    REACT(\"fab-react\", '\\uf41b'),\n    REACTEUROPE(\"fab-reacteurope\", '\\uf75d'),\n    README(\"fab-readme\", '\\uf4d5'),\n    REBEL(\"fab-rebel\", '\\uf1d0'),\n    REDDIT(\"fab-reddit\", '\\uf1a1'),\n    REDDIT_ALIEN(\"fab-reddit-alien\", '\\uf281'),\n    REDDIT_SQUARE(\"fab-reddit-square\", '\\uf1a2'),\n    REDHAT(\"fab-redhat\", '\\uf7bc'),\n    RED_RIVER(\"fab-red-river\", '\\uf3e3'),\n    RENREN(\"fab-renren\", '\\uf18b'),\n    REPLYD(\"fab-replyd\", '\\uf3e6'),\n    RESEARCHGATE(\"fab-researchgate\", '\\uf4f8'),\n    RESOLVING(\"fab-resolving\", '\\uf3e7'),\n    REV(\"fab-rev\", '\\uf5b2'),\n    ROCKETCHAT(\"fab-rocketchat\", '\\uf3e8'),\n    ROCKRMS(\"fab-rockrms\", '\\uf3e9'),\n    RUST(\"fab-rust\", '\\ue07a'),\n    R_PROJECT(\"fab-r-project\", '\\uf4f7'),\n    SAFARI(\"fab-safari\", '\\uf267'),\n    SALESFORCE(\"fab-salesforce\", '\\uf83b'),\n    SASS(\"fab-sass\", '\\uf41e'),\n    SCHLIX(\"fab-schlix\", '\\uf3ea'),\n    SCRIBD(\"fab-scribd\", '\\uf28a'),\n    SEARCHENGIN(\"fab-searchengin\", '\\uf3eb'),\n    SELLCAST(\"fab-sellcast\", '\\uf2da'),\n    SELLSY(\"fab-sellsy\", '\\uf213'),\n    SERVICESTACK(\"fab-servicestack\", '\\uf3ec'),\n    SHIRTSINBULK(\"fab-shirtsinbulk\", '\\uf214'),\n    SHOPIFY(\"fab-shopify\", '\\ue057'),\n    SHOPWARE(\"fab-shopware\", '\\uf5b5'),\n    SIMPLYBUILT(\"fab-simplybuilt\", '\\uf215'),\n    SISTRIX(\"fab-sistrix\", '\\uf3ee'),\n    SITH(\"fab-sith\", '\\uf512'),\n    SKETCH(\"fab-sketch\", '\\uf7c6'),\n    SKYATLAS(\"fab-skyatlas\", '\\uf216'),\n    SKYPE(\"fab-skype\", '\\uf17e'),\n    SLACK(\"fab-slack\", '\\uf198'),\n    SLACK_HASH(\"fab-slack-hash\", '\\uf3ef'),\n    SLIDESHARE(\"fab-slideshare\", '\\uf1e7'),\n    SNAPCHAT(\"fab-snapchat\", '\\uf2ab'),\n    SNAPCHAT_GHOST(\"fab-snapchat-ghost\", '\\uf2ac'),\n    SNAPCHAT_SQUARE(\"fab-snapchat-square\", '\\uf2ad'),\n    SOUNDCLOUD(\"fab-soundcloud\", '\\uf1be'),\n    SOURCETREE(\"fab-sourcetree\", '\\uf7d3'),\n    SPEAKAP(\"fab-speakap\", '\\uf3f3'),\n    SPEAKER_DECK(\"fab-speaker-deck\", '\\uf83c'),\n    SPOTIFY(\"fab-spotify\", '\\uf1bc'),\n    SQUARESPACE(\"fab-squarespace\", '\\uf5be'),\n    STACKPATH(\"fab-stackpath\", '\\uf842'),\n    STACK_EXCHANGE(\"fab-stack-exchange\", '\\uf18d'),\n    STACK_OVERFLOW(\"fab-stack-overflow\", '\\uf16c'),\n    STAYLINKED(\"fab-staylinked\", '\\uf3f5'),\n    STEAM(\"fab-steam\", '\\uf1b6'),\n    STEAM_SQUARE(\"fab-steam-square\", '\\uf1b7'),\n    STEAM_SYMBOL(\"fab-steam-symbol\", '\\uf3f6'),\n    STICKER_MULE(\"fab-sticker-mule\", '\\uf3f7'),\n    STRAVA(\"fab-strava\", '\\uf428'),\n    STRIPE(\"fab-stripe\", '\\uf429'),\n    STRIPE_S(\"fab-stripe-s\", '\\uf42a'),\n    STUDIOVINARI(\"fab-studiovinari\", '\\uf3f8'),\n    STUMBLEUPON(\"fab-stumbleupon\", '\\uf1a4'),\n    STUMBLEUPON_CIRCLE(\"fab-stumbleupon-circle\", '\\uf1a3'),\n    SUPERPOWERS(\"fab-superpowers\", '\\uf2dd'),\n    SUPPLE(\"fab-supple\", '\\uf3f9'),\n    SUSE(\"fab-suse\", '\\uf7d6'),\n    SWIFT(\"fab-swift\", '\\uf8e1'),\n    SYMFONY(\"fab-symfony\", '\\uf83d'),\n    TEAMSPEAK(\"fab-teamspeak\", '\\uf4f9'),\n    TELEGRAM(\"fab-telegram\", '\\uf2c6'),\n    TELEGRAM_PLANE(\"fab-telegram-plane\", '\\uf3fe'),\n    TENCENT_WEIBO(\"fab-tencent-weibo\", '\\uf1d5'),\n    THEMECO(\"fab-themeco\", '\\uf5c6'),\n    THEMEISLE(\"fab-themeisle\", '\\uf2b2'),\n    THE_RED_YETI(\"fab-the-red-yeti\", '\\uf69d'),\n    THINK_PEAKS(\"fab-think-peaks\", '\\uf731'),\n    TIKTOK(\"fab-tiktok\", '\\ue07b'),\n    TRADE_FEDERATION(\"fab-trade-federation\", '\\uf513'),\n    TRELLO(\"fab-trello\", '\\uf181'),\n    TRIPADVISOR(\"fab-tripadvisor\", '\\uf262'),\n    TUMBLR(\"fab-tumblr\", '\\uf173'),\n    TUMBLR_SQUARE(\"fab-tumblr-square\", '\\uf174'),\n    TWITCH(\"fab-twitch\", '\\uf1e8'),\n    TWITTER(\"fab-twitter\", '\\uf099'),\n    TWITTER_SQUARE(\"fab-twitter-square\", '\\uf081'),\n    TYPO3(\"fab-typo3\", '\\uf42b'),\n    UBER(\"fab-uber\", '\\uf402'),\n    UBUNTU(\"fab-ubuntu\", '\\uf7df'),\n    UIKIT(\"fab-uikit\", '\\uf403'),\n    UMBRACO(\"fab-umbraco\", '\\uf8e8'),\n    UNCHARTED(\"fab-uncharted\", '\\ue084'),\n    UNIREGISTRY(\"fab-uniregistry\", '\\uf404'),\n    UNITY(\"fab-unity\", '\\ue049'),\n    UNSPLASH(\"fab-unsplash\", '\\ue07c'),\n    UNTAPPD(\"fab-untappd\", '\\uf405'),\n    UPS(\"fab-ups\", '\\uf7e0'),\n    USB(\"fab-usb\", '\\uf287'),\n    USPS(\"fab-usps\", '\\uf7e1'),\n    USSUNNAH(\"fab-ussunnah\", '\\uf407'),\n    VAADIN(\"fab-vaadin\", '\\uf408'),\n    VIACOIN(\"fab-viacoin\", '\\uf237'),\n    VIADEO(\"fab-viadeo\", '\\uf2a9'),\n    VIADEO_SQUARE(\"fab-viadeo-square\", '\\uf2aa'),\n    VIBER(\"fab-viber\", '\\uf409'),\n    VIMEO(\"fab-vimeo\", '\\uf40a'),\n    VIMEO_SQUARE(\"fab-vimeo-square\", '\\uf194'),\n    VIMEO_V(\"fab-vimeo-v\", '\\uf27d'),\n    VINE(\"fab-vine\", '\\uf1ca'),\n    VK(\"fab-vk\", '\\uf189'),\n    VNV(\"fab-vnv\", '\\uf40b'),\n    VUEJS(\"fab-vuejs\", '\\uf41f'),\n    WATCHAMN_MONITORING(\"fab-watchman-monitoring\", '\\ue087'),\n    WAZE(\"fab-waze\", '\\uf83f'),\n    WEEBLY(\"fab-weebly\", '\\uf5cc'),\n    WEIBO(\"fab-weibo\", '\\uf18a'),\n    WEIXIN(\"fab-weixin\", '\\uf1d7'),\n    WHATSAPP(\"fab-whatsapp\", '\\uf232'),\n    WHATSAPP_SQUARE(\"fab-whatsapp-square\", '\\uf40c'),\n    WHMCS(\"fab-whmcs\", '\\uf40d'),\n    WIKIPEDIA_W(\"fab-wikipedia-w\", '\\uf266'),\n    WINDOWS(\"fab-windows\", '\\uf17a'),\n    WIX(\"fab-wix\", '\\uf5cf'),\n    WIZARDS_OF_THE_COAST(\"fab-wizards-of-the-coast\", '\\uf730'),\n    WODU(\"fab-wodu\", '\\ue088'),\n    WOLF_PACK_BATTALION(\"fab-wolf-pack-battalion\", '\\uf514'),\n    WORDPRESS(\"fab-wordpress\", '\\uf19a'),\n    WORDPRESS_SIMPLE(\"fab-wordpress-simple\", '\\uf411'),\n    WPBEGINNER(\"fab-wpbeginner\", '\\uf297'),\n    WPEXPLORER(\"fab-wpexplorer\", '\\uf2de'),\n    WPFORMS(\"fab-wpforms\", '\\uf298'),\n    WPRESSR(\"fab-wpressr\", '\\uf3e4'),\n    XBOX(\"fab-xbox\", '\\uf412'),\n    XING(\"fab-xing\", '\\uf168'),\n    XING_SQUARE(\"fab-xing-square\", '\\uf169'),\n    YAHOO(\"fab-yahoo\", '\\uf19e'),\n    YAMMER(\"fab-yammer\", '\\uf840'),\n    YANDEX(\"fab-yandex\", '\\uf413'),\n    YANDEX_INTERNATIONAL(\"fab-yandex-international\", '\\uf414'),\n    YARN(\"fab-yarn\", '\\uf7e3'),\n    YELP(\"fab-yelp\", '\\uf1e9'),\n    YOAST(\"fab-yoast\", '\\uf2b1'),\n    YOUTUBE(\"fab-youtube\", '\\uf167'),\n    YOUTUBE_SQUARE(\"fab-youtube-square\", '\\uf431'),\n    Y_COMBINATOR(\"fab-y-combinator\", '\\uf23b'),\n    ZHIHU(\"fab-zhihu\", '\\uf63f');\n\n    public static FontAwesomeBrands findByDescription(String description) {\n        for (FontAwesomeBrands font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    FontAwesomeBrands(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/java/org/kordamp/ikonli/fontawesome6/FontAwesomeBrandsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome6;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FontAwesomeBrandsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fontawesome6/6.5.2/fonts/fa-brands-400.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"fab-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return FontAwesomeBrands.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Font Awesome 6 Brands Regular\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/java/org/kordamp/ikonli/fontawesome6/FontAwesomeBrandsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome6;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class FontAwesomeBrandsIkonProvider implements IkonProvider<FontAwesomeBrands> {\n    @Override\n    public Class<FontAwesomeBrands> getIkon() {\n        return FontAwesomeBrands.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/java/org/kordamp/ikonli/fontawesome6/FontAwesomeRegular.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome6;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum FontAwesomeRegular implements Ikon {\n    ADDRESS_BOOK(\"far-address-book\", '\\uf2b9'),\n    ADDRESS_CARD(\"far-address-card\", '\\uf2bb'),\n    ANGRY(\"far-angry\", '\\uf556'),\n    ARROW_ALT_CIRCLE_DOWN(\"far-arrow-alt-circle-down\", '\\uf358'),\n    ARROW_ALT_CIRCLE_LEFT(\"far-arrow-alt-circle-left\", '\\uf359'),\n    ARROW_ALT_CIRCLE_RIGHT(\"far-arrow-alt-circle-right\", '\\uf35a'),\n    ARROW_ALT_CIRCLE_UP(\"far-arrow-alt-circle-up\", '\\uf35b'),\n    BELL(\"far-bell\", '\\uf0f3'),\n    BELL_SLASH(\"far-bell-slash\", '\\uf1f6'),\n    BOOKMARK(\"far-bookmark\", '\\uf02e'),\n    BUILDING(\"far-building\", '\\uf1ad'),\n    CALENDAR(\"far-calendar\", '\\uf133'),\n    CALENDAR_ALT(\"far-calendar-alt\", '\\uf073'),\n    CALENDAR_CHECK(\"far-calendar-check\", '\\uf274'),\n    CALENDAR_MINUS(\"far-calendar-minus\", '\\uf272'),\n    CALENDAR_PLUS(\"far-calendar-plus\", '\\uf271'),\n    CALENDAR_TIMES(\"far-calendar-times\", '\\uf273'),\n    CARET_SQUARE_DOWN(\"far-caret-square-down\", '\\uf150'),\n    CARET_SQUARE_LEFT(\"far-caret-square-left\", '\\uf191'),\n    CARET_SQUARE_RIGHT(\"far-caret-square-right\", '\\uf152'),\n    CARET_SQUARE_UP(\"far-caret-square-up\", '\\uf151'),\n    CHART_BAR(\"far-chart-bar\", '\\uf080'),\n    CHECK_CIRCLE(\"far-check-circle\", '\\uf058'),\n    CHECK_SQUARE(\"far-check-square\", '\\uf14a'),\n    CIRCLE(\"far-circle\", '\\uf111'),\n    CLIPBOARD(\"far-clipboard\", '\\uf328'),\n    CLOCK(\"far-clock\", '\\uf017'),\n    CLONE(\"far-clone\", '\\uf24d'),\n    CLOSED_CAPTIONING(\"far-closed-captioning\", '\\uf20a'),\n    COMMENT(\"far-comment\", '\\uf075'),\n    COMMENTS(\"far-comments\", '\\uf086'),\n    COMMENT_ALT(\"far-comment-alt\", '\\uf27a'),\n    COMMENT_DOTS(\"far-comment-dots\", '\\uf4ad'),\n    COMPASS(\"far-compass\", '\\uf14e'),\n    COPY(\"far-copy\", '\\uf0c5'),\n    COPYRIGHT(\"far-copyright\", '\\uf1f9'),\n    CREDIT_CARD(\"far-credit-card\", '\\uf09d'),\n    DIZZY(\"far-dizzy\", '\\uf567'),\n    DOT_CIRCLE(\"far-dot-circle\", '\\uf192'),\n    EDIT(\"far-edit\", '\\uf044'),\n    ENVELOPE(\"far-envelope\", '\\uf0e0'),\n    ENVELOPE_OPEN(\"far-envelope-open\", '\\uf2b6'),\n    EYE(\"far-eye\", '\\uf06e'),\n    EYE_SLASH(\"far-eye-slash\", '\\uf070'),\n    FILE(\"far-file\", '\\uf15b'),\n    FILE_ALT(\"far-file-alt\", '\\uf15c'),\n    FILE_ARCHIVE(\"far-file-archive\", '\\uf1c6'),\n    FILE_AUDIO(\"far-file-audio\", '\\uf1c7'),\n    FILE_CODE(\"far-file-code\", '\\uf1c9'),\n    FILE_EXCEL(\"far-file-excel\", '\\uf1c3'),\n    FILE_IMAGE(\"far-file-image\", '\\uf1c5'),\n    FILE_PDF(\"far-file-pdf\", '\\uf1c1'),\n    FILE_POWERPOINT(\"far-file-powerpoint\", '\\uf1c4'),\n    FILE_VIDEO(\"far-file-video\", '\\uf1c8'),\n    FILE_WORD(\"far-file-word\", '\\uf1c2'),\n    FLAG(\"far-flag\", '\\uf024'),\n    FLUSHED(\"far-flushed\", '\\uf579'),\n    FOLDER(\"far-folder\", '\\uf07b'),\n    FOLDER_OPEN(\"far-folder-open\", '\\uf07c'),\n    FROWN(\"far-frown\", '\\uf119'),\n    FROWN_OPEN(\"far-frown-open\", '\\uf57a'),\n    FUTBOL(\"far-futbol\", '\\uf1e3'),\n    GEM(\"far-gem\", '\\uf3a5'),\n    GRIMACE(\"far-grimace\", '\\uf57f'),\n    GRIN(\"far-grin\", '\\uf580'),\n    GRIN_ALT(\"far-grin-alt\", '\\uf581'),\n    GRIN_BEAM(\"far-grin-beam\", '\\uf582'),\n    GRIN_BEAM_SWEAT(\"far-grin-beam-sweat\", '\\uf583'),\n    GRIN_HEARTS(\"far-grin-hearts\", '\\uf584'),\n    GRIN_SQUINT(\"far-grin-squint\", '\\uf585'),\n    GRIN_SQUINT_TEARS(\"far-grin-squint-tears\", '\\uf586'),\n    GRIN_STARS(\"far-grin-stars\", '\\uf587'),\n    GRIN_TEARS(\"far-grin-tears\", '\\uf588'),\n    GRIN_TONGUE(\"far-grin-tongue\", '\\uf589'),\n    GRIN_TONGUE_SQUINT(\"far-grin-tongue-squint\", '\\uf58a'),\n    GRIN_TONGUE_WINK(\"far-grin-tongue-wink\", '\\uf58b'),\n    GRIN_WINK(\"far-grin-wink\", '\\uf58c'),\n    HANDSHAKE(\"far-handshake\", '\\uf2b5'),\n    HAND_LIZARD(\"far-hand-lizard\", '\\uf258'),\n    HAND_PAPER(\"far-hand-paper\", '\\uf256'),\n    HAND_PEACE(\"far-hand-peace\", '\\uf25b'),\n    HAND_POINTER(\"far-hand-pointer\", '\\uf25a'),\n    HAND_POINT_DOWN(\"far-hand-point-down\", '\\uf0a7'),\n    HAND_POINT_LEFT(\"far-hand-point-left\", '\\uf0a5'),\n    HAND_POINT_RIGHT(\"far-hand-point-right\", '\\uf0a4'),\n    HAND_POINT_UP(\"far-hand-point-up\", '\\uf0a6'),\n    HAND_ROCK(\"far-hand-rock\", '\\uf255'),\n    HAND_SCISSORS(\"far-hand-scissors\", '\\uf257'),\n    HAND_SPOCK(\"far-hand-spock\", '\\uf259'),\n    HDD(\"far-hdd\", '\\uf0a0'),\n    HEART(\"far-heart\", '\\uf004'),\n    HOSPITAL(\"far-hospital\", '\\uf0f8'),\n    HOURGLASS(\"far-hourglass\", '\\uf254'),\n    ID_BADGE(\"far-id-badge\", '\\uf2c1'),\n    ID_CARD(\"far-id-card\", '\\uf2c2'),\n    IMAGE(\"far-image\", '\\uf03e'),\n    IMAGES(\"far-images\", '\\uf302'),\n    KEYBOARD(\"far-keyboard\", '\\uf11c'),\n    KISS(\"far-kiss\", '\\uf596'),\n    KISS_BEAM(\"far-kiss-beam\", '\\uf597'),\n    KISS_WINK_HEART(\"far-kiss-wink-heart\", '\\uf598'),\n    LAUGH(\"far-laugh\", '\\uf599'),\n    LAUGH_BEAM(\"far-laugh-beam\", '\\uf59a'),\n    LAUGH_SQUINT(\"far-laugh-squint\", '\\uf59b'),\n    LAUGH_WINK(\"far-laugh-wink\", '\\uf59c'),\n    LEMON(\"far-lemon\", '\\uf094'),\n    LIFE_RING(\"far-life-ring\", '\\uf1cd'),\n    LIGHTBULB(\"far-lightbulb\", '\\uf0eb'),\n    LIST_ALT(\"far-list-alt\", '\\uf022'),\n    MAP(\"far-map\", '\\uf279'),\n    MEH(\"far-meh\", '\\uf11a'),\n    MEH_BLANK(\"far-meh-blank\", '\\uf5a4'),\n    MEH_ROLLING_EYES(\"far-meh-rolling-eyes\", '\\uf5a5'),\n    MINUS_SQUARE(\"far-minus-square\", '\\uf146'),\n    MONEY_BILL_ALT(\"far-money-bill-alt\", '\\uf3d1'),\n    MOON(\"far-moon\", '\\uf186'),\n    NEWSPAPER(\"far-newspaper\", '\\uf1ea'),\n    OBJECT_GROUP(\"far-object-group\", '\\uf247'),\n    OBJECT_UNGROUP(\"far-object-ungroup\", '\\uf248'),\n    PAPER_PLANE(\"far-paper-plane\", '\\uf1d8'),\n    PAUSE_CIRCLE(\"far-pause-circle\", '\\uf28b'),\n    PLAY_CIRCLE(\"far-play-circle\", '\\uf144'),\n    PLUS_SQUARE(\"far-plus-square\", '\\uf0fe'),\n    QUESTION_CIRCLE(\"far-question-circle\", '\\uf059'),\n    REGISTERED(\"far-registered\", '\\uf25d'),\n    SAD_CRY(\"far-sad-cry\", '\\uf5b3'),\n    SAD_TEAR(\"far-sad-tear\", '\\uf5b4'),\n    SAVE(\"far-save\", '\\uf0c7'),\n    SHARE_SQUARE(\"far-share-square\", '\\uf14d'),\n    SMILE(\"far-smile\", '\\uf118'),\n    SMILE_BEAM(\"far-smile-beam\", '\\uf5b8'),\n    SMILE_WINK(\"far-smile-wink\", '\\uf4da'),\n    SNOWFLAKE(\"far-snowflake\", '\\uf2dc'),\n    SQUARE(\"far-square\", '\\uf0c8'),\n    STAR(\"far-star\", '\\uf005'),\n    STAR_HALF(\"far-star-half\", '\\uf089'),\n    STICKY_NOTE(\"far-sticky-note\", '\\uf249'),\n    STOP_CIRCLE(\"far-stop-circle\", '\\uf28d'),\n    SUN(\"far-sun\", '\\uf185'),\n    SURPRISE(\"far-surprise\", '\\uf5c2'),\n    THUMBS_DOWN(\"far-thumbs-down\", '\\uf165'),\n    THUMBS_UP(\"far-thumbs-up\", '\\uf164'),\n    TIMES_CIRCLE(\"far-times-circle\", '\\uf057'),\n    TIRED(\"far-tired\", '\\uf5c8'),\n    TRASH_ALT(\"far-trash-alt\", '\\uf2ed'),\n    USER(\"far-user\", '\\uf007'),\n    USER_CIRCLE(\"far-user-circle\", '\\uf2bd'),\n    WINDOW_CLOSE(\"far-window-close\", '\\uf410'),\n    WINDOW_MAXIMIZE(\"far-window-maximize\", '\\uf2d0'),\n    WINDOW_MINIMIZE(\"far-window-minimize\", '\\uf2d1'),\n    WINDOW_RESTORE(\"far-window-restore\", '\\uf2d2');\n\n    public static FontAwesomeRegular findByDescription(String description) {\n        for (FontAwesomeRegular font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    FontAwesomeRegular(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/java/org/kordamp/ikonli/fontawesome6/FontAwesomeRegularIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome6;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FontAwesomeRegularIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fontawesome6/6.5.2/fonts/fa-regular-400.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"far-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return FontAwesomeRegular.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Font Awesome 6 Free Regular\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/java/org/kordamp/ikonli/fontawesome6/FontAwesomeRegularIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome6;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class FontAwesomeRegularIkonProvider implements IkonProvider<FontAwesomeRegular> {\n    @Override\n    public Class<FontAwesomeRegular> getIkon() {\n        return FontAwesomeRegular.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/java/org/kordamp/ikonli/fontawesome6/FontAwesomeSolid.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome6;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum FontAwesomeSolid implements Ikon {\n    AD(\"fas-ad\", '\\uf641'),\n    ADDRESS_BOOK(\"fas-address-book\", '\\uf2b9'),\n    ADDRESS_CARD(\"fas-address-card\", '\\uf2bb'),\n    ADJUST(\"fas-adjust\", '\\uf042'),\n    AIR_FRESHENER(\"fas-air-freshener\", '\\uf5d0'),\n    ALIGN_CENTER(\"fas-align-center\", '\\uf037'),\n    ALIGN_JUSTIFY(\"fas-align-justify\", '\\uf039'),\n    ALIGN_LEFT(\"fas-align-left\", '\\uf036'),\n    ALIGN_RIGHT(\"fas-align-right\", '\\uf038'),\n    ALLERGIES(\"fas-allergies\", '\\uf461'),\n    AMBULANCE(\"fas-ambulance\", '\\uf0f9'),\n    AMERICAN_SIGN_LANGUAGE_INTERPRETING(\"fas-american-sign-language-interpreting\", '\\uf2a3'),\n    ANCHOR(\"fas-anchor\", '\\uf13d'),\n    ANGLE_DOUBLE_DOWN(\"fas-angle-double-down\", '\\uf103'),\n    ANGLE_DOUBLE_LEFT(\"fas-angle-double-left\", '\\uf100'),\n    ANGLE_DOUBLE_RIGHT(\"fas-angle-double-right\", '\\uf101'),\n    ANGLE_DOUBLE_UP(\"fas-angle-double-up\", '\\uf102'),\n    ANGLE_DOWN(\"fas-angle-down\", '\\uf107'),\n    ANGLE_LEFT(\"fas-angle-left\", '\\uf104'),\n    ANGLE_RIGHT(\"fas-angle-right\", '\\uf105'),\n    ANGLE_UP(\"fas-angle-up\", '\\uf106'),\n    ANGRY(\"fas-angry\", '\\uf556'),\n    ANKH(\"fas-ankh\", '\\uf644'),\n    APPLE_ALT(\"fas-apple-alt\", '\\uf5d1'),\n    ARCHIVE(\"fas-archive\", '\\uf187'),\n    ARCHWAY(\"fas-archway\", '\\uf557'),\n    ARROWS_ALT(\"fas-arrows-alt\", '\\uf0b2'),\n    ARROWS_ALT_H(\"fas-arrows-alt-h\", '\\uf337'),\n    ARROWS_ALT_V(\"fas-arrows-alt-v\", '\\uf338'),\n    ARROW_ALT_CIRCLE_DOWN(\"fas-arrow-alt-circle-down\", '\\uf358'),\n    ARROW_ALT_CIRCLE_LEFT(\"fas-arrow-alt-circle-left\", '\\uf359'),\n    ARROW_ALT_CIRCLE_RIGHT(\"fas-arrow-alt-circle-right\", '\\uf35a'),\n    ARROW_ALT_CIRCLE_UP(\"fas-arrow-alt-circle-up\", '\\uf35b'),\n    ARROW_CIRCLE_DOWN(\"fas-arrow-circle-down\", '\\uf0ab'),\n    ARROW_CIRCLE_LEFT(\"fas-arrow-circle-left\", '\\uf0a8'),\n    ARROW_CIRCLE_RIGHT(\"fas-arrow-circle-right\", '\\uf0a9'),\n    ARROW_CIRCLE_UP(\"fas-arrow-circle-up\", '\\uf0aa'),\n    ARROW_DOWN(\"fas-arrow-down\", '\\uf063'),\n    ARROW_LEFT(\"fas-arrow-left\", '\\uf060'),\n    ARROW_RIGHT(\"fas-arrow-right\", '\\uf061'),\n    ARROW_UP(\"fas-arrow-up\", '\\uf062'),\n    ASSISTIVE_LISTENING_SYSTEMS(\"fas-assistive-listening-systems\", '\\uf2a2'),\n    ASTERISK(\"fas-asterisk\", '\\uf069'),\n    AT(\"fas-at\", '\\uf1fa'),\n    ATLAS(\"fas-atlas\", '\\uf558'),\n    ATOM(\"fas-atom\", '\\uf5d2'),\n    AUDIO_DESCRIPTION(\"fas-audio-description\", '\\uf29e'),\n    AWARD(\"fas-award\", '\\uf559'),\n    BABY(\"fas-baby\", '\\uf77c'),\n    BABY_CARRIAGE(\"fas-baby-carriage\", '\\uf77d'),\n    BACKSPACE(\"fas-backspace\", '\\uf55a'),\n    BACKWARD(\"fas-backward\", '\\uf04a'),\n    BACON(\"fas-bacon\", '\\uf7e5'),\n    BACTERIA(\"fas-bacteria\", '\\ue059'),\n    BACTERIUM(\"fas-bacterium\", '\\ue05a'),\n    BAHAI(\"fas-bahai\", '\\uf666'),\n    BALANCE_SCALE(\"fas-balance-scale\", '\\uf24e'),\n    BALANCE_SCALE_LEFT(\"fas-balance-scale-left\", '\\uf515'),\n    BALANCE_SCALE_RIGHT(\"fas-balance-scale-right\", '\\uf516'),\n    BAN(\"fas-ban\", '\\uf05e'),\n    BAND_AID(\"fas-band-aid\", '\\uf462'),\n    BARCODE(\"fas-barcode\", '\\uf02a'),\n    BARS(\"fas-bars\", '\\uf0c9'),\n    BASEBALL_BALL(\"fas-baseball-ball\", '\\uf433'),\n    BASKETBALL_BALL(\"fas-basketball-ball\", '\\uf434'),\n    BATH(\"fas-bath\", '\\uf2cd'),\n    BATTERY_EMPTY(\"fas-battery-empty\", '\\uf244'),\n    BATTERY_FULL(\"fas-battery-full\", '\\uf240'),\n    BATTERY_HALF(\"fas-battery-half\", '\\uf242'),\n    BATTERY_QUARTER(\"fas-battery-quarter\", '\\uf243'),\n    BATTERY_THREE_QUARTERS(\"fas-battery-three-quarters\", '\\uf241'),\n    BED(\"fas-bed\", '\\uf236'),\n    BEER(\"fas-beer\", '\\uf0fc'),\n    BELL(\"fas-bell\", '\\uf0f3'),\n    BELL_SLASH(\"fas-bell-slash\", '\\uf1f6'),\n    BEZIER_CURVE(\"fas-bezier-curve\", '\\uf55b'),\n    BIBLE(\"fas-bible\", '\\uf647'),\n    BICYCLE(\"fas-bicycle\", '\\uf206'),\n    BIKING(\"fas-biking\", '\\uf84a'),\n    BINOCULARS(\"fas-binoculars\", '\\uf1e5'),\n    BIOHAZARD(\"fas-biohazard\", '\\uf780'),\n    BIRTHDAY_CAKE(\"fas-birthday-cake\", '\\uf1fd'),\n    BLENDER(\"fas-blender\", '\\uf517'),\n    BLENDER_PHONE(\"fas-blender-phone\", '\\uf6b6'),\n    BLIND(\"fas-blind\", '\\uf29d'),\n    BLOG(\"fas-blog\", '\\uf781'),\n    BOLD(\"fas-bold\", '\\uf032'),\n    BOLT(\"fas-bolt\", '\\uf0e7'),\n    BOMB(\"fas-bomb\", '\\uf1e2'),\n    BONE(\"fas-bone\", '\\uf5d7'),\n    BONG(\"fas-bong\", '\\uf55c'),\n    BOOK(\"fas-book\", '\\uf02d'),\n    BOOKMARK(\"fas-bookmark\", '\\uf02e'),\n    BOOK_DEAD(\"fas-book-dead\", '\\uf6b7'),\n    BOOK_MEDICAL(\"fas-book-medical\", '\\uf7e6'),\n    BOOK_OPEN(\"fas-book-open\", '\\uf518'),\n    BOOK_READER(\"fas-book-reader\", '\\uf5da'),\n    BORDER_ALL(\"fas-border-all\", '\\uf84c'),\n    BORDER_NONE(\"fas-border-none\", '\\uf850'),\n    BORDER_STYLE(\"fas-border-style\", '\\uf853'),\n    BOWLING_BALL(\"fas-bowling-ball\", '\\uf436'),\n    BOX(\"fas-box\", '\\uf466'),\n    BOXES(\"fas-boxes\", '\\uf468'),\n    BOX_OPEN(\"fas-box-open\", '\\uf49e'),\n    BOX_TISSUE(\"fas-box-tissue\", '\\ue05b'),\n    BRAILLE(\"fas-braille\", '\\uf2a1'),\n    BRAIN(\"fas-brain\", '\\uf5dc'),\n    BREAD_SLICE(\"fas-bread-slice\", '\\uf7ec'),\n    BRIEFCASE(\"fas-briefcase\", '\\uf0b1'),\n    BRIEFCASE_MEDICAL(\"fas-briefcase-medical\", '\\uf469'),\n    BROADCAST_TOWER(\"fas-broadcast-tower\", '\\uf519'),\n    BROOM(\"fas-broom\", '\\uf51a'),\n    BRUSH(\"fas-brush\", '\\uf55d'),\n    BUG(\"fas-bug\", '\\uf188'),\n    BUILDING(\"fas-building\", '\\uf1ad'),\n    BULLHORN(\"fas-bullhorn\", '\\uf0a1'),\n    BULLSEYE(\"fas-bullseye\", '\\uf140'),\n    BURN(\"fas-burn\", '\\uf46a'),\n    BUS(\"fas-bus\", '\\uf207'),\n    BUSINESS_TIME(\"fas-business-time\", '\\uf64a'),\n    BUS_ALT(\"fas-bus-alt\", '\\uf55e'),\n    CALCULATOR(\"fas-calculator\", '\\uf1ec'),\n    CALENDAR(\"fas-calendar\", '\\uf133'),\n    CALENDAR_ALT(\"fas-calendar-alt\", '\\uf073'),\n    CALENDAR_CHECK(\"fas-calendar-check\", '\\uf274'),\n    CALENDAR_DAY(\"fas-calendar-day\", '\\uf783'),\n    CALENDAR_MINUS(\"fas-calendar-minus\", '\\uf272'),\n    CALENDAR_PLUS(\"fas-calendar-plus\", '\\uf271'),\n    CALENDAR_TIMES(\"fas-calendar-times\", '\\uf273'),\n    CALENDAR_WEEK(\"fas-calendar-week\", '\\uf784'),\n    CAMERA(\"fas-camera\", '\\uf030'),\n    CAMERA_RETRO(\"fas-camera-retro\", '\\uf083'),\n    CAMPGROUND(\"fas-campground\", '\\uf6bb'),\n    CANDY_CANE(\"fas-candy-cane\", '\\uf786'),\n    CANNABIS(\"fas-cannabis\", '\\uf55f'),\n    CAPSULES(\"fas-capsules\", '\\uf46b'),\n    CAR(\"fas-car\", '\\uf1b9'),\n    CARAVAN(\"fas-caravan\", '\\uf8ff'),\n    CARET_DOWN(\"fas-caret-down\", '\\uf0d7'),\n    CARET_LEFT(\"fas-caret-left\", '\\uf0d9'),\n    CARET_RIGHT(\"fas-caret-right\", '\\uf0da'),\n    CARET_SQUARE_DOWN(\"fas-caret-square-down\", '\\uf150'),\n    CARET_SQUARE_LEFT(\"fas-caret-square-left\", '\\uf191'),\n    CARET_SQUARE_RIGHT(\"fas-caret-square-right\", '\\uf152'),\n    CARET_SQUARE_UP(\"fas-caret-square-up\", '\\uf151'),\n    CARET_UP(\"fas-caret-up\", '\\uf0d8'),\n    CARROT(\"fas-carrot\", '\\uf787'),\n    CART_ARROW_DOWN(\"fas-cart-arrow-down\", '\\uf218'),\n    CART_PLUS(\"fas-cart-plus\", '\\uf217'),\n    CAR_ALT(\"fas-car-alt\", '\\uf5de'),\n    CAR_BATTERY(\"fas-car-battery\", '\\uf5df'),\n    CAR_CRASH(\"fas-car-crash\", '\\uf5e1'),\n    CAR_SIDE(\"fas-car-side\", '\\uf5e4'),\n    CASH_REGISTER(\"fas-cash-register\", '\\uf788'),\n    CAT(\"fas-cat\", '\\uf6be'),\n    CERTIFICATE(\"fas-certificate\", '\\uf0a3'),\n    CHAIR(\"fas-chair\", '\\uf6c0'),\n    CHALKBOARD(\"fas-chalkboard\", '\\uf51b'),\n    CHALKBOARD_TEACHER(\"fas-chalkboard-teacher\", '\\uf51c'),\n    CHARGING_STATION(\"fas-charging-station\", '\\uf5e7'),\n    CHART_AREA(\"fas-chart-area\", '\\uf1fe'),\n    CHART_BAR(\"fas-chart-bar\", '\\uf080'),\n    CHART_LINE(\"fas-chart-line\", '\\uf201'),\n    CHART_PIE(\"fas-chart-pie\", '\\uf200'),\n    CHECK(\"fas-check\", '\\uf00c'),\n    CHECK_CIRCLE(\"fas-check-circle\", '\\uf058'),\n    CHECK_DOUBLE(\"fas-check-double\", '\\uf560'),\n    CHECK_SQUARE(\"fas-check-square\", '\\uf14a'),\n    CHEESE(\"fas-cheese\", '\\uf7ef'),\n    CHESS(\"fas-chess\", '\\uf439'),\n    CHESS_BISHOP(\"fas-chess-bishop\", '\\uf43a'),\n    CHESS_BOARD(\"fas-chess-board\", '\\uf43c'),\n    CHESS_KING(\"fas-chess-king\", '\\uf43f'),\n    CHESS_KNIGHT(\"fas-chess-knight\", '\\uf441'),\n    CHESS_PAWN(\"fas-chess-pawn\", '\\uf443'),\n    CHESS_QUEEN(\"fas-chess-queen\", '\\uf445'),\n    CHESS_ROOK(\"fas-chess-rook\", '\\uf447'),\n    CHEVRON_CIRCLE_DOWN(\"fas-chevron-circle-down\", '\\uf13a'),\n    CHEVRON_CIRCLE_LEFT(\"fas-chevron-circle-left\", '\\uf137'),\n    CHEVRON_CIRCLE_RIGHT(\"fas-chevron-circle-right\", '\\uf138'),\n    CHEVRON_CIRCLE_UP(\"fas-chevron-circle-up\", '\\uf139'),\n    CHEVRON_DOWN(\"fas-chevron-down\", '\\uf078'),\n    CHEVRON_LEFT(\"fas-chevron-left\", '\\uf053'),\n    CHEVRON_RIGHT(\"fas-chevron-right\", '\\uf054'),\n    CHEVRON_UP(\"fas-chevron-up\", '\\uf077'),\n    CHILD(\"fas-child\", '\\uf1ae'),\n    CHURCH(\"fas-church\", '\\uf51d'),\n    CIRCLE(\"fas-circle\", '\\uf111'),\n    CIRCLE_NOTCH(\"fas-circle-notch\", '\\uf1ce'),\n    CITY(\"fas-city\", '\\uf64f'),\n    CLINIC_MEDICAL(\"fas-clinic-medical\", '\\uf7f2'),\n    CLIPBOARD(\"fas-clipboard\", '\\uf328'),\n    CLIPBOARD_CHECK(\"fas-clipboard-check\", '\\uf46c'),\n    CLIPBOARD_LIST(\"fas-clipboard-list\", '\\uf46d'),\n    CLOCK(\"fas-clock\", '\\uf017'),\n    CLONE(\"fas-clone\", '\\uf24d'),\n    CLOSED_CAPTIONING(\"fas-closed-captioning\", '\\uf20a'),\n    CLOUD(\"fas-cloud\", '\\uf0c2'),\n    CLOUD_DOWNLOAD_ALT(\"fas-cloud-download-alt\", '\\uf381'),\n    CLOUD_MEATBALL(\"fas-cloud-meatball\", '\\uf73b'),\n    CLOUD_MOON(\"fas-cloud-moon\", '\\uf6c3'),\n    CLOUD_MOON_RAIN(\"fas-cloud-moon-rain\", '\\uf73c'),\n    CLOUD_RAIN(\"fas-cloud-rain\", '\\uf73d'),\n    CLOUD_SHOWERS_HEAVY(\"fas-cloud-showers-heavy\", '\\uf740'),\n    CLOUD_SUN(\"fas-cloud-sun\", '\\uf6c4'),\n    CLOUD_SUN_RAIN(\"fas-cloud-sun-rain\", '\\uf743'),\n    CLOUD_UPLOAD_ALT(\"fas-cloud-upload-alt\", '\\uf382'),\n    COCKTAIL(\"fas-cocktail\", '\\uf561'),\n    CODE(\"fas-code\", '\\uf121'),\n    CODE_BRANCH(\"fas-code-branch\", '\\uf126'),\n    COFFEE(\"fas-coffee\", '\\uf0f4'),\n    COG(\"fas-cog\", '\\uf013'),\n    COGS(\"fas-cogs\", '\\uf085'),\n    COINS(\"fas-coins\", '\\uf51e'),\n    COLUMNS(\"fas-columns\", '\\uf0db'),\n    COMMENT(\"fas-comment\", '\\uf075'),\n    COMMENTS(\"fas-comments\", '\\uf086'),\n    COMMENTS_DOLLAR(\"fas-comments-dollar\", '\\uf653'),\n    COMMENT_ALT(\"fas-comment-alt\", '\\uf27a'),\n    COMMENT_DOLLAR(\"fas-comment-dollar\", '\\uf651'),\n    COMMENT_DOTS(\"fas-comment-dots\", '\\uf4ad'),\n    COMMENT_MEDICAL(\"fas-comment-medical\", '\\uf7f5'),\n    COMMENT_SLASH(\"fas-comment-slash\", '\\uf4b3'),\n    COMPACT_DISC(\"fas-compact-disc\", '\\uf51f'),\n    COMPASS(\"fas-compass\", '\\uf14e'),\n    COMPRESS(\"fas-compress\", '\\uf066'),\n    COMPRESS_ALT(\"fas-compress-alt\", '\\uf422'),\n    COMPRESS_ARROWS_ALT(\"fas-compress-arrows-alt\", '\\uf78c'),\n    CONCIERGE_BELL(\"fas-concierge-bell\", '\\uf562'),\n    COOKIE(\"fas-cookie\", '\\uf563'),\n    COOKIE_BITE(\"fas-cookie-bite\", '\\uf564'),\n    COPY(\"fas-copy\", '\\uf0c5'),\n    COPYRIGHT(\"fas-copyright\", '\\uf1f9'),\n    COUCH(\"fas-couch\", '\\uf4b8'),\n    CREDIT_CARD(\"fas-credit-card\", '\\uf09d'),\n    CROP(\"fas-crop\", '\\uf125'),\n    CROP_ALT(\"fas-crop-alt\", '\\uf565'),\n    CROSS(\"fas-cross\", '\\uf654'),\n    CROSSHAIRS(\"fas-crosshairs\", '\\uf05b'),\n    CROW(\"fas-crow\", '\\uf520'),\n    CROWN(\"fas-crown\", '\\uf521'),\n    CRUTCH(\"fas-crutch\", '\\uf7f7'),\n    CUBE(\"fas-cube\", '\\uf1b2'),\n    CUBES(\"fas-cubes\", '\\uf1b3'),\n    CUT(\"fas-cut\", '\\uf0c4'),\n    DATABASE(\"fas-database\", '\\uf1c0'),\n    DEAF(\"fas-deaf\", '\\uf2a4'),\n    DEMOCRAT(\"fas-democrat\", '\\uf747'),\n    DESKTOP(\"fas-desktop\", '\\uf108'),\n    DHARMACHAKRA(\"fas-dharmachakra\", '\\uf655'),\n    DIAGNOSES(\"fas-diagnoses\", '\\uf470'),\n    DICE(\"fas-dice\", '\\uf522'),\n    DICE_D20(\"fas-dice-d20\", '\\uf6cf'),\n    DICE_D6(\"fas-dice-d6\", '\\uf6d1'),\n    DICE_FIVE(\"fas-dice-five\", '\\uf523'),\n    DICE_FOUR(\"fas-dice-four\", '\\uf524'),\n    DICE_ONE(\"fas-dice-one\", '\\uf525'),\n    DICE_SIX(\"fas-dice-six\", '\\uf526'),\n    DICE_THREE(\"fas-dice-three\", '\\uf527'),\n    DICE_TWO(\"fas-dice-two\", '\\uf528'),\n    DIGITAL_TACHOGRAPH(\"fas-digital-tachograph\", '\\uf566'),\n    DIRECTIONS(\"fas-directions\", '\\uf5eb'),\n    DISEASE(\"fas-disease\", '\\uf7fa'),\n    DIVIDE(\"fas-divide\", '\\uf529'),\n    DIZZY(\"fas-dizzy\", '\\uf567'),\n    DNA(\"fas-dna\", '\\uf471'),\n    DOG(\"fas-dog\", '\\uf6d3'),\n    DOLLAR_SIGN(\"fas-dollar-sign\", '\\uf155'),\n    DOLLY(\"fas-dolly\", '\\uf472'),\n    DOLLY_FLATBED(\"fas-dolly-flatbed\", '\\uf474'),\n    DONATE(\"fas-donate\", '\\uf4b9'),\n    DOOR_CLOSED(\"fas-door-closed\", '\\uf52a'),\n    DOOR_OPEN(\"fas-door-open\", '\\uf52b'),\n    DOT_CIRCLE(\"fas-dot-circle\", '\\uf192'),\n    DOVE(\"fas-dove\", '\\uf4ba'),\n    DOWNLOAD(\"fas-download\", '\\uf019'),\n    DRAFTING_COMPASS(\"fas-drafting-compass\", '\\uf568'),\n    DRAGON(\"fas-dragon\", '\\uf6d5'),\n    DRAW_POLYGON(\"fas-draw-polygon\", '\\uf5ee'),\n    DRUM(\"fas-drum\", '\\uf569'),\n    DRUMSTICK_BITE(\"fas-drumstick-bite\", '\\uf6d7'),\n    DRUM_STEELPAN(\"fas-drum-steelpan\", '\\uf56a'),\n    DUMBBELL(\"fas-dumbbell\", '\\uf44b'),\n    DUMPSTER(\"fas-dumpster\", '\\uf793'),\n    DUMPSTER_FIRE(\"fas-dumpster-fire\", '\\uf794'),\n    DUNGEON(\"fas-dungeon\", '\\uf6d9'),\n    EDIT(\"fas-edit\", '\\uf044'),\n    EGG(\"fas-egg\", '\\uf7fb'),\n    EJECT(\"fas-eject\", '\\uf052'),\n    ELLIPSIS_H(\"fas-ellipsis-h\", '\\uf141'),\n    ELLIPSIS_V(\"fas-ellipsis-v\", '\\uf142'),\n    ENVELOPE(\"fas-envelope\", '\\uf0e0'),\n    ENVELOPE_OPEN(\"fas-envelope-open\", '\\uf2b6'),\n    ENVELOPE_OPEN_TEXT(\"fas-envelope-open-text\", '\\uf658'),\n    ENVELOPE_SQUARE(\"fas-envelope-square\", '\\uf199'),\n    EQUALS(\"fas-equals\", '\\uf52c'),\n    ERASER(\"fas-eraser\", '\\uf12d'),\n    ETHERNET(\"fas-ethernet\", '\\uf796'),\n    EURO_SIGN(\"fas-euro-sign\", '\\uf153'),\n    EXCHANGE_ALT(\"fas-exchange-alt\", '\\uf362'),\n    EXCLAMATION(\"fas-exclamation\", '\\uf12a'),\n    EXCLAMATION_CIRCLE(\"fas-exclamation-circle\", '\\uf06a'),\n    EXCLAMATION_TRIANGLE(\"fas-exclamation-triangle\", '\\uf071'),\n    EXPAND(\"fas-expand\", '\\uf065'),\n    EXPAND_ALT(\"fas-expand-alt\", '\\uf424'),\n    EXPAND_ARROWS_ALT(\"fas-expand-arrows-alt\", '\\uf31e'),\n    EXTERNAL_LINK_ALT(\"fas-external-link-alt\", '\\uf35d'),\n    EXTERNAL_LINK_SQUARE_ALT(\"fas-external-link-square-alt\", '\\uf360'),\n    EYE(\"fas-eye\", '\\uf06e'),\n    EYE_DROPPER(\"fas-eye-dropper\", '\\uf1fb'),\n    EYE_SLASH(\"fas-eye-slash\", '\\uf070'),\n    FAN(\"fas-fan\", '\\uf863'),\n    FAST_BACKWARD(\"fas-fast-backward\", '\\uf049'),\n    FAST_FORWARD(\"fas-fast-forward\", '\\uf050'),\n    FAUCET(\"fas-faucet\", '\\ue005'),\n    FAX(\"fas-fax\", '\\uf1ac'),\n    FEATHER(\"fas-feather\", '\\uf52d'),\n    FEATHER_ALT(\"fas-feather-alt\", '\\uf56b'),\n    FEMALE(\"fas-female\", '\\uf182'),\n    FIGHTER_JET(\"fas-fighter-jet\", '\\uf0fb'),\n    FILE(\"fas-file\", '\\uf15b'),\n    FILE_ALT(\"fas-file-alt\", '\\uf15c'),\n    FILE_ARCHIVE(\"fas-file-archive\", '\\uf1c6'),\n    FILE_AUDIO(\"fas-file-audio\", '\\uf1c7'),\n    FILE_CODE(\"fas-file-code\", '\\uf1c9'),\n    FILE_CONTRACT(\"fas-file-contract\", '\\uf56c'),\n    FILE_CSV(\"fas-file-csv\", '\\uf6dd'),\n    FILE_DOWNLOAD(\"fas-file-download\", '\\uf56d'),\n    FILE_EXCEL(\"fas-file-excel\", '\\uf1c3'),\n    FILE_EXPORT(\"fas-file-export\", '\\uf56e'),\n    FILE_IMAGE(\"fas-file-image\", '\\uf1c5'),\n    FILE_IMPORT(\"fas-file-import\", '\\uf56f'),\n    FILE_INVOICE(\"fas-file-invoice\", '\\uf570'),\n    FILE_INVOICE_DOLLAR(\"fas-file-invoice-dollar\", '\\uf571'),\n    FILE_MEDICAL(\"fas-file-medical\", '\\uf477'),\n    FILE_MEDICAL_ALT(\"fas-file-medical-alt\", '\\uf478'),\n    FILE_PDF(\"fas-file-pdf\", '\\uf1c1'),\n    FILE_POWERPOINT(\"fas-file-powerpoint\", '\\uf1c4'),\n    FILE_PRESCRIPTION(\"fas-file-prescription\", '\\uf572'),\n    FILE_SIGNATURE(\"fas-file-signature\", '\\uf573'),\n    FILE_UPLOAD(\"fas-file-upload\", '\\uf574'),\n    FILE_VIDEO(\"fas-file-video\", '\\uf1c8'),\n    FILE_WORD(\"fas-file-word\", '\\uf1c2'),\n    FILL(\"fas-fill\", '\\uf575'),\n    FILL_DRIP(\"fas-fill-drip\", '\\uf576'),\n    FILM(\"fas-film\", '\\uf008'),\n    FILTER(\"fas-filter\", '\\uf0b0'),\n    FINGERPRINT(\"fas-fingerprint\", '\\uf577'),\n    FIRE(\"fas-fire\", '\\uf06d'),\n    FIRE_ALT(\"fas-fire-alt\", '\\uf7e4'),\n    FIRE_EXTINGUISHER(\"fas-fire-extinguisher\", '\\uf134'),\n    FIRST_AID(\"fas-first-aid\", '\\uf479'),\n    FISH(\"fas-fish\", '\\uf578'),\n    FIST_RAISED(\"fas-fist-raised\", '\\uf6de'),\n    FLAG(\"fas-flag\", '\\uf024'),\n    FLAG_CHECKERED(\"fas-flag-checkered\", '\\uf11e'),\n    FLAG_USA(\"fas-flag-usa\", '\\uf74d'),\n    FLASK(\"fas-flask\", '\\uf0c3'),\n    FLUSHED(\"fas-flushed\", '\\uf579'),\n    FOLDER(\"fas-folder\", '\\uf07b'),\n    FOLDER_MINUS(\"fas-folder-minus\", '\\uf65d'),\n    FOLDER_OPEN(\"fas-folder-open\", '\\uf07c'),\n    FOLDER_PLUS(\"fas-folder-plus\", '\\uf65e'),\n    FONT(\"fas-font\", '\\uf031'),\n    FOOTBALL_BALL(\"fas-football-ball\", '\\uf44e'),\n    FORWARD(\"fas-forward\", '\\uf04e'),\n    FROG(\"fas-frog\", '\\uf52e'),\n    FROWN(\"fas-frown\", '\\uf119'),\n    FROWN_OPEN(\"fas-frown-open\", '\\uf57a'),\n    FUNNEL_DOLLAR(\"fas-funnel-dollar\", '\\uf662'),\n    FUTBOL(\"fas-futbol\", '\\uf1e3'),\n    GAMEPAD(\"fas-gamepad\", '\\uf11b'),\n    GAS_PUMP(\"fas-gas-pump\", '\\uf52f'),\n    GAVEL(\"fas-gavel\", '\\uf0e3'),\n    GEM(\"fas-gem\", '\\uf3a5'),\n    GENDERLESS(\"fas-genderless\", '\\uf22d'),\n    GHOST(\"fas-ghost\", '\\uf6e2'),\n    GIFT(\"fas-gift\", '\\uf06b'),\n    GIFTS(\"fas-gifts\", '\\uf79c'),\n    GLASSES(\"fas-glasses\", '\\uf530'),\n    GLASS_CHEERS(\"fas-glass-cheers\", '\\uf79f'),\n    GLASS_MARTINI(\"fas-glass-martini\", '\\uf000'),\n    GLASS_MARTINI_ALT(\"fas-glass-martini-alt\", '\\uf57b'),\n    GLASS_WHISKEY(\"fas-glass-whiskey\", '\\uf7a0'),\n    GLOBE(\"fas-globe\", '\\uf0ac'),\n    GLOBE_AFRICA(\"fas-globe-africa\", '\\uf57c'),\n    GLOBE_AMERICAS(\"fas-globe-americas\", '\\uf57d'),\n    GLOBE_ASIA(\"fas-globe-asia\", '\\uf57e'),\n    GLOBE_EUROPE(\"fas-globe-europe\", '\\uf7a2'),\n    GOLF_BALL(\"fas-golf-ball\", '\\uf450'),\n    GOPURAM(\"fas-gopuram\", '\\uf664'),\n    GRADUATION_CAP(\"fas-graduation-cap\", '\\uf19d'),\n    GREATER_THAN(\"fas-greater-than\", '\\uf531'),\n    GREATER_THAN_EQUAL(\"fas-greater-than-equal\", '\\uf532'),\n    GRIMACE(\"fas-grimace\", '\\uf57f'),\n    GRIN(\"fas-grin\", '\\uf580'),\n    GRIN_ALT(\"fas-grin-alt\", '\\uf581'),\n    GRIN_BEAM(\"fas-grin-beam\", '\\uf582'),\n    GRIN_BEAM_SWEAT(\"fas-grin-beam-sweat\", '\\uf583'),\n    GRIN_HEARTS(\"fas-grin-hearts\", '\\uf584'),\n    GRIN_SQUINT(\"fas-grin-squint\", '\\uf585'),\n    GRIN_SQUINT_TEARS(\"fas-grin-squint-tears\", '\\uf586'),\n    GRIN_STARS(\"fas-grin-stars\", '\\uf587'),\n    GRIN_TEARS(\"fas-grin-tears\", '\\uf588'),\n    GRIN_TONGUE(\"fas-grin-tongue\", '\\uf589'),\n    GRIN_TONGUE_SQUINT(\"fas-grin-tongue-squint\", '\\uf58a'),\n    GRIN_TONGUE_WINK(\"fas-grin-tongue-wink\", '\\uf58b'),\n    GRIN_WINK(\"fas-grin-wink\", '\\uf58c'),\n    GRIP_HORIZONTAL(\"fas-grip-horizontal\", '\\uf58d'),\n    GRIP_LINES(\"fas-grip-lines\", '\\uf7a4'),\n    GRIP_LINES_VERTICAL(\"fas-grip-lines-vertical\", '\\uf7a5'),\n    GRIP_VERTICAL(\"fas-grip-vertical\", '\\uf58e'),\n    GUITAR(\"fas-guitar\", '\\uf7a6'),\n    HAMBURGER(\"fas-hamburger\", '\\uf805'),\n    HAMMER(\"fas-hammer\", '\\uf6e3'),\n    HAMSA(\"fas-hamsa\", '\\uf665'),\n    HANDS(\"fas-hands\", '\\uf4c2'),\n    HANDSHAKE(\"fas-handshake\", '\\uf2b5'),\n    HANDSHAKE_ALT_SLASH(\"fas-handshake-alt-slash\", '\\ue05f'),\n    HANDSHAKE_SLASH(\"fas-handshake-slash\", '\\ue060'),\n    HANDS_HELPING(\"fas-hands-helping\", '\\uf4c4'),\n    HANDS_WASH(\"fas-hands-wash\", '\\ue05e'),\n    HAND_HOLDING(\"fas-hand-holding\", '\\uf4bd'),\n    HAND_HOLDING_HEART(\"fas-hand-holding-heart\", '\\uf4be'),\n    HAND_HOLDING_MEDICAL(\"fas-hand-holding-medical\", '\\ue05c'),\n    HAND_HOLDING_USD(\"fas-hand-holding-usd\", '\\uf4c0'),\n    HAND_HOLDING_WATER(\"fas-hand-holding-water\", '\\uf4c1'),\n    HAND_LIZARD(\"fas-hand-lizard\", '\\uf258'),\n    HAND_MIDDLE_FINGER(\"fas-hand-middle-finger\", '\\uf806'),\n    HAND_PAPER(\"fas-hand-paper\", '\\uf256'),\n    HAND_PEACE(\"fas-hand-peace\", '\\uf25b'),\n    HAND_POINTER(\"fas-hand-pointer\", '\\uf25a'),\n    HAND_POINT_DOWN(\"fas-hand-point-down\", '\\uf0a7'),\n    HAND_POINT_LEFT(\"fas-hand-point-left\", '\\uf0a5'),\n    HAND_POINT_RIGHT(\"fas-hand-point-right\", '\\uf0a4'),\n    HAND_POINT_UP(\"fas-hand-point-up\", '\\uf0a6'),\n    HAND_ROCK(\"fas-hand-rock\", '\\uf255'),\n    HAND_SCISSORS(\"fas-hand-scissors\", '\\uf257'),\n    HAND_SPARKLES(\"fas-hand-sparkles\", '\\ue05d'),\n    HAND_SPOCK(\"fas-hand-spock\", '\\uf259'),\n    HANUKIAH(\"fas-hanukiah\", '\\uf6e6'),\n    HARD_HAT(\"fas-hard-hat\", '\\uf807'),\n    HASHTAG(\"fas-hashtag\", '\\uf292'),\n    HAT_COWBOY(\"fas-hat-cowboy\", '\\uf8c0'),\n    HAT_COWBOY_SIDE(\"fas-hat-cowboy-side\", '\\uf8c1'),\n    HAT_WIZARD(\"fas-hat-wizard\", '\\uf6e8'),\n    HDD(\"fas-hdd\", '\\uf0a0'),\n    HEADING(\"fas-heading\", '\\uf1dc'),\n    HEADPHONES(\"fas-headphones\", '\\uf025'),\n    HEADPHONES_ALT(\"fas-headphones-alt\", '\\uf58f'),\n    HEADSET(\"fas-headset\", '\\uf590'),\n    HEAD_SIDE_COUGH(\"fas-head-side-cough\", '\\ue061'),\n    HEAD_SIDE_COUGH_SLASH(\"fas-head-side-cough-slash\", '\\ue062'),\n    HEAD_SIDE_MASK(\"fas-head-side-mask\", '\\ue063'),\n    HEAD_SIDE_VIRUS(\"fas-head-side-virus\", '\\ue064'),\n    HEART(\"fas-heart\", '\\uf004'),\n    HEARTBEAT(\"fas-heartbeat\", '\\uf21e'),\n    HEART_BROKEN(\"fas-heart-broken\", '\\uf7a9'),\n    HELICOPTER(\"fas-helicopter\", '\\uf533'),\n    HIGHLIGHTER(\"fas-highlighter\", '\\uf591'),\n    HIKING(\"fas-hiking\", '\\uf6ec'),\n    HIPPO(\"fas-hippo\", '\\uf6ed'),\n    HISTORY(\"fas-history\", '\\uf1da'),\n    HOCKEY_PUCK(\"fas-hockey-puck\", '\\uf453'),\n    HOLLY_BERRY(\"fas-holly-berry\", '\\uf7aa'),\n    HOME(\"fas-home\", '\\uf015'),\n    HORSE(\"fas-horse\", '\\uf6f0'),\n    HORSE_HEAD(\"fas-horse-head\", '\\uf7ab'),\n    HOSPITAL(\"fas-hospital\", '\\uf0f8'),\n    HOSPITAL_ALT(\"fas-hospital-alt\", '\\uf47d'),\n    HOSPITAL_SYMBOL(\"fas-hospital-symbol\", '\\uf47e'),\n    HOSPITAL_USER(\"fas-hospital-user\", '\\uf80d'),\n    HOTDOG(\"fas-hotdog\", '\\uf80f'),\n    HOTEL(\"fas-hotel\", '\\uf594'),\n    HOT_TUB(\"fas-hot-tub\", '\\uf593'),\n    HOURGLASS(\"fas-hourglass\", '\\uf254'),\n    HOURGLASS_END(\"fas-hourglass-end\", '\\uf253'),\n    HOURGLASS_HALF(\"fas-hourglass-half\", '\\uf252'),\n    HOURGLASS_START(\"fas-hourglass-start\", '\\uf251'),\n    HOUSE_DAMAGE(\"fas-house-damage\", '\\uf6f1'),\n    HOUSE_USER(\"fas-house-user\", '\\ue065'),\n    HRYVNIA(\"fas-hryvnia\", '\\uf6f2'),\n    H_SQUARE(\"fas-h-square\", '\\uf0fd'),\n    ICE_CREAM(\"fas-ice-cream\", '\\uf810'),\n    ICICLES(\"fas-icicles\", '\\uf7ad'),\n    ICONS(\"fas-icons\", '\\uf86d'),\n    ID_BADGE(\"fas-id-badge\", '\\uf2c1'),\n    ID_CARD(\"fas-id-card\", '\\uf2c2'),\n    ID_CARD_ALT(\"fas-id-card-alt\", '\\uf47f'),\n    IGLOO(\"fas-igloo\", '\\uf7ae'),\n    IMAGE(\"fas-image\", '\\uf03e'),\n    IMAGES(\"fas-images\", '\\uf302'),\n    INBOX(\"fas-inbox\", '\\uf01c'),\n    INDENT(\"fas-indent\", '\\uf03c'),\n    INDUSTRY(\"fas-industry\", '\\uf275'),\n    INFINITY(\"fas-infinity\", '\\uf534'),\n    INFO(\"fas-info\", '\\uf129'),\n    INFO_CIRCLE(\"fas-info-circle\", '\\uf05a'),\n    ITALIC(\"fas-italic\", '\\uf033'),\n    I_CURSOR(\"fas-i-cursor\", '\\uf246'),\n    JEDI(\"fas-jedi\", '\\uf669'),\n    JOINT(\"fas-joint\", '\\uf595'),\n    JOURNAL_WHILLS(\"fas-journal-whills\", '\\uf66a'),\n    KAABA(\"fas-kaaba\", '\\uf66b'),\n    KEY(\"fas-key\", '\\uf084'),\n    KEYBOARD(\"fas-keyboard\", '\\uf11c'),\n    KHANDA(\"fas-khanda\", '\\uf66d'),\n    KISS(\"fas-kiss\", '\\uf596'),\n    KISS_BEAM(\"fas-kiss-beam\", '\\uf597'),\n    KISS_WINK_HEART(\"fas-kiss-wink-heart\", '\\uf598'),\n    KIWI_BIRD(\"fas-kiwi-bird\", '\\uf535'),\n    LANDMARK(\"fas-landmark\", '\\uf66f'),\n    LANGUAGE(\"fas-language\", '\\uf1ab'),\n    LAPTOP(\"fas-laptop\", '\\uf109'),\n    LAPTOP_CODE(\"fas-laptop-code\", '\\uf5fc'),\n    LAPTOP_HOUSE(\"fas-laptop-house\", '\\ue066'),\n    LAPTOP_MEDICAL(\"fas-laptop-medical\", '\\uf812'),\n    LAUGH(\"fas-laugh\", '\\uf599'),\n    LAUGH_BEAM(\"fas-laugh-beam\", '\\uf59a'),\n    LAUGH_SQUINT(\"fas-laugh-squint\", '\\uf59b'),\n    LAUGH_WINK(\"fas-laugh-wink\", '\\uf59c'),\n    LAYER_GROUP(\"fas-layer-group\", '\\uf5fd'),\n    LEAF(\"fas-leaf\", '\\uf06c'),\n    LEMON(\"fas-lemon\", '\\uf094'),\n    LESS_THAN(\"fas-less-than\", '\\uf536'),\n    LESS_THAN_EQUAL(\"fas-less-than-equal\", '\\uf537'),\n    LEVEL_DOWN_ALT(\"fas-level-down-alt\", '\\uf3be'),\n    LEVEL_UP_ALT(\"fas-level-up-alt\", '\\uf3bf'),\n    LIFE_RING(\"fas-life-ring\", '\\uf1cd'),\n    LIGHTBULB(\"fas-lightbulb\", '\\uf0eb'),\n    LINK(\"fas-link\", '\\uf0c1'),\n    LIRA_SIGN(\"fas-lira-sign\", '\\uf195'),\n    LIST(\"fas-list\", '\\uf03a'),\n    LIST_ALT(\"fas-list-alt\", '\\uf022'),\n    LIST_OL(\"fas-list-ol\", '\\uf0cb'),\n    LIST_UL(\"fas-list-ul\", '\\uf0ca'),\n    LOCATION_ARROW(\"fas-location-arrow\", '\\uf124'),\n    LOCK(\"fas-lock\", '\\uf023'),\n    LOCK_OPEN(\"fas-lock-open\", '\\uf3c1'),\n    LONG_ARROW_ALT_DOWN(\"fas-long-arrow-alt-down\", '\\uf309'),\n    LONG_ARROW_ALT_LEFT(\"fas-long-arrow-alt-left\", '\\uf30a'),\n    LONG_ARROW_ALT_RIGHT(\"fas-long-arrow-alt-right\", '\\uf30b'),\n    LONG_ARROW_ALT_UP(\"fas-long-arrow-alt-up\", '\\uf30c'),\n    LOW_VISION(\"fas-low-vision\", '\\uf2a8'),\n    LUGGAGE_CART(\"fas-luggage-cart\", '\\uf59d'),\n    LUNGS(\"fas-lungs\", '\\uf604'),\n    LUNGS_VIRUS(\"fas-lungs-virus\", '\\ue067'),\n    MAGIC(\"fas-magic\", '\\uf0d0'),\n    MAGNET(\"fas-magnet\", '\\uf076'),\n    MAIL_BULK(\"fas-mail-bulk\", '\\uf674'),\n    MALE(\"fas-male\", '\\uf183'),\n    MAP(\"fas-map\", '\\uf279'),\n    MAP_MARKED(\"fas-map-marked\", '\\uf59f'),\n    MAP_MARKED_ALT(\"fas-map-marked-alt\", '\\uf5a0'),\n    MAP_MARKER(\"fas-map-marker\", '\\uf041'),\n    MAP_MARKER_ALT(\"fas-map-marker-alt\", '\\uf3c5'),\n    MAP_PIN(\"fas-map-pin\", '\\uf276'),\n    MAP_SIGNS(\"fas-map-signs\", '\\uf277'),\n    MARKER(\"fas-marker\", '\\uf5a1'),\n    MARS(\"fas-mars\", '\\uf222'),\n    MARS_DOUBLE(\"fas-mars-double\", '\\uf227'),\n    MARS_STROKE(\"fas-mars-stroke\", '\\uf229'),\n    MARS_STROKE_H(\"fas-mars-stroke-h\", '\\uf22b'),\n    MARS_STROKE_V(\"fas-mars-stroke-v\", '\\uf22a'),\n    MASK(\"fas-mask\", '\\uf6fa'),\n    MEDAL(\"fas-medal\", '\\uf5a2'),\n    MEDKIT(\"fas-medkit\", '\\uf0fa'),\n    MEH(\"fas-meh\", '\\uf11a'),\n    MEH_BLANK(\"fas-meh-blank\", '\\uf5a4'),\n    MEH_ROLLING_EYES(\"fas-meh-rolling-eyes\", '\\uf5a5'),\n    MEMORY(\"fas-memory\", '\\uf538'),\n    MENORAH(\"fas-menorah\", '\\uf676'),\n    MERCURY(\"fas-mercury\", '\\uf223'),\n    METEOR(\"fas-meteor\", '\\uf753'),\n    MICROCHIP(\"fas-microchip\", '\\uf2db'),\n    MICROPHONE(\"fas-microphone\", '\\uf130'),\n    MICROPHONE_ALT(\"fas-microphone-alt\", '\\uf3c9'),\n    MICROPHONE_ALT_SLASH(\"fas-microphone-alt-slash\", '\\uf539'),\n    MICROPHONE_SLASH(\"fas-microphone-slash\", '\\uf131'),\n    MICROSCOPE(\"fas-microscope\", '\\uf610'),\n    MINUS(\"fas-minus\", '\\uf068'),\n    MINUS_CIRCLE(\"fas-minus-circle\", '\\uf056'),\n    MINUS_SQUARE(\"fas-minus-square\", '\\uf146'),\n    MITTEN(\"fas-mitten\", '\\uf7b5'),\n    MOBILE(\"fas-mobile\", '\\uf10b'),\n    MOBILE_ALT(\"fas-mobile-alt\", '\\uf3cd'),\n    MONEY_BILL(\"fas-money-bill\", '\\uf0d6'),\n    MONEY_BILL_ALT(\"fas-money-bill-alt\", '\\uf3d1'),\n    MONEY_BILL_WAVE(\"fas-money-bill-wave\", '\\uf53a'),\n    MONEY_BILL_WAVE_ALT(\"fas-money-bill-wave-alt\", '\\uf53b'),\n    MONEY_CHECK(\"fas-money-check\", '\\uf53c'),\n    MONEY_CHECK_ALT(\"fas-money-check-alt\", '\\uf53d'),\n    MONUMENT(\"fas-monument\", '\\uf5a6'),\n    MOON(\"fas-moon\", '\\uf186'),\n    MORTAR_PESTLE(\"fas-mortar-pestle\", '\\uf5a7'),\n    MOSQUE(\"fas-mosque\", '\\uf678'),\n    MOTORCYCLE(\"fas-motorcycle\", '\\uf21c'),\n    MOUNTAIN(\"fas-mountain\", '\\uf6fc'),\n    MOUSE(\"fas-mouse\", '\\uf8cc'),\n    MOUSE_POINTER(\"fas-mouse-pointer\", '\\uf245'),\n    MUG_HOT(\"fas-mug-hot\", '\\uf7b6'),\n    MUSIC(\"fas-music\", '\\uf001'),\n    NETWORK_WIRED(\"fas-network-wired\", '\\uf6ff'),\n    NEUTER(\"fas-neuter\", '\\uf22c'),\n    NEWSPAPER(\"fas-newspaper\", '\\uf1ea'),\n    NOTES_MEDICAL(\"fas-notes-medical\", '\\uf481'),\n    NOT_EQUAL(\"fas-not-equal\", '\\uf53e'),\n    OBJECT_GROUP(\"fas-object-group\", '\\uf247'),\n    OBJECT_UNGROUP(\"fas-object-ungroup\", '\\uf248'),\n    OIL_CAN(\"fas-oil-can\", '\\uf613'),\n    OM(\"fas-om\", '\\uf679'),\n    OTTER(\"fas-otter\", '\\uf700'),\n    OUTDENT(\"fas-outdent\", '\\uf03b'),\n    PAGER(\"fas-pager\", '\\uf815'),\n    PAINT_BRUSH(\"fas-paint-brush\", '\\uf1fc'),\n    PAINT_ROLLER(\"fas-paint-roller\", '\\uf5aa'),\n    PALETTE(\"fas-palette\", '\\uf53f'),\n    PALLET(\"fas-pallet\", '\\uf482'),\n    PAPERCLIP(\"fas-paperclip\", '\\uf0c6'),\n    PAPER_PLANE(\"fas-paper-plane\", '\\uf1d8'),\n    PARACHUTE_BOX(\"fas-parachute-box\", '\\uf4cd'),\n    PARAGRAPH(\"fas-paragraph\", '\\uf1dd'),\n    PARKING(\"fas-parking\", '\\uf540'),\n    PASSPORT(\"fas-passport\", '\\uf5ab'),\n    PASTAFARIANISM(\"fas-pastafarianism\", '\\uf67b'),\n    PASTE(\"fas-paste\", '\\uf0ea'),\n    PAUSE(\"fas-pause\", '\\uf04c'),\n    PAUSE_CIRCLE(\"fas-pause-circle\", '\\uf28b'),\n    PAW(\"fas-paw\", '\\uf1b0'),\n    PEACE(\"fas-peace\", '\\uf67c'),\n    PEN(\"fas-pen\", '\\uf304'),\n    PENCIL_ALT(\"fas-pencil-alt\", '\\uf303'),\n    PENCIL_RULER(\"fas-pencil-ruler\", '\\uf5ae'),\n    PEN_ALT(\"fas-pen-alt\", '\\uf305'),\n    PEN_FANCY(\"fas-pen-fancy\", '\\uf5ac'),\n    PEN_NIB(\"fas-pen-nib\", '\\uf5ad'),\n    PEN_SQUARE(\"fas-pen-square\", '\\uf14b'),\n    PEOPLE_ARROWS(\"fas-people-arrows\", '\\ue068'),\n    PEOPLE_CARRY(\"fas-people-carry\", '\\uf4ce'),\n    PEPPER_HOT(\"fas-pepper-hot\", '\\uf816'),\n    PERCENT(\"fas-percent\", '\\uf295'),\n    PERCENTAGE(\"fas-percentage\", '\\uf541'),\n    PERSON_BOOTH(\"fas-person-booth\", '\\uf756'),\n    PHONE(\"fas-phone\", '\\uf095'),\n    PHONE_ALT(\"fas-phone-alt\", '\\uf879'),\n    PHONE_SLASH(\"fas-phone-slash\", '\\uf3dd'),\n    PHONE_SQUARE(\"fas-phone-square\", '\\uf098'),\n    PHONE_SQUARE_ALT(\"fas-phone-square-alt\", '\\uf87b'),\n    PHONE_VOLUME(\"fas-phone-volume\", '\\uf2a0'),\n    PHOTO_VIDEO(\"fas-photo-video\", '\\uf87c'),\n    PIGGY_BANK(\"fas-piggy-bank\", '\\uf4d3'),\n    PILLS(\"fas-pills\", '\\uf484'),\n    PIZZA_SLICE(\"fas-pizza-slice\", '\\uf818'),\n    PLACE_OF_WORSHIP(\"fas-place-of-worship\", '\\uf67f'),\n    PLANE(\"fas-plane\", '\\uf072'),\n    PLANE_ARRIVAL(\"fas-plane-arrival\", '\\uf5af'),\n    PLANE_DEPARTURE(\"fas-plane-departure\", '\\uf5b0'),\n    PLANE_SLASH(\"fas-plane-slash\", '\\ue069'),\n    PLAY(\"fas-play\", '\\uf04b'),\n    PLAY_CIRCLE(\"fas-play-circle\", '\\uf144'),\n    PLUG(\"fas-plug\", '\\uf1e6'),\n    PLUS(\"fas-plus\", '\\uf067'),\n    PLUS_CIRCLE(\"fas-plus-circle\", '\\uf055'),\n    PLUS_SQUARE(\"fas-plus-square\", '\\uf0fe'),\n    PODCAST(\"fas-podcast\", '\\uf2ce'),\n    POLL(\"fas-poll\", '\\uf681'),\n    POLL_H(\"fas-poll-h\", '\\uf682'),\n    POO(\"fas-poo\", '\\uf2fe'),\n    POOP(\"fas-poop\", '\\uf619'),\n    POO_STORM(\"fas-poo-storm\", '\\uf75a'),\n    PORTRAIT(\"fas-portrait\", '\\uf3e0'),\n    POUND_SIGN(\"fas-pound-sign\", '\\uf154'),\n    POWER_OFF(\"fas-power-off\", '\\uf011'),\n    PRAY(\"fas-pray\", '\\uf683'),\n    PRAYING_HANDS(\"fas-praying-hands\", '\\uf684'),\n    PRESCRIPTION(\"fas-prescription\", '\\uf5b1'),\n    PRESCRIPTION_BOTTLE(\"fas-prescription-bottle\", '\\uf485'),\n    PRESCRIPTION_BOTTLE_ALT(\"fas-prescription-bottle-alt\", '\\uf486'),\n    PRINT(\"fas-print\", '\\uf02f'),\n    PROCEDURES(\"fas-procedures\", '\\uf487'),\n    PROJECT_DIAGRAM(\"fas-project-diagram\", '\\uf542'),\n    PUMP_MEDICAL(\"fas-pump-medical\", '\\ue06a'),\n    PUMP_SOAP(\"fas-pump-soap\", '\\ue06b'),\n    PUZZLE_PIECE(\"fas-puzzle-piece\", '\\uf12e'),\n    QRCODE(\"fas-qrcode\", '\\uf029'),\n    QUESTION(\"fas-question\", '\\uf128'),\n    QUESTION_CIRCLE(\"fas-question-circle\", '\\uf059'),\n    QUIDDITCH(\"fas-quidditch\", '\\uf458'),\n    QUOTE_LEFT(\"fas-quote-left\", '\\uf10d'),\n    QUOTE_RIGHT(\"fas-quote-right\", '\\uf10e'),\n    QURAN(\"fas-quran\", '\\uf687'),\n    RADIATION(\"fas-radiation\", '\\uf7b9'),\n    RADIATION_ALT(\"fas-radiation-alt\", '\\uf7ba'),\n    RAINBOW(\"fas-rainbow\", '\\uf75b'),\n    RANDOM(\"fas-random\", '\\uf074'),\n    RECEIPT(\"fas-receipt\", '\\uf543'),\n    RECORD_VINYL(\"fas-record-vinyl\", '\\uf8d9'),\n    RECYCLE(\"fas-recycle\", '\\uf1b8'),\n    REDO(\"fas-redo\", '\\uf01e'),\n    REDO_ALT(\"fas-redo-alt\", '\\uf2f9'),\n    REGISTERED(\"fas-registered\", '\\uf25d'),\n    REMOVE_FORMAT(\"fas-remove-format\", '\\uf87d'),\n    REPLY(\"fas-reply\", '\\uf3e5'),\n    REPLY_ALL(\"fas-reply-all\", '\\uf122'),\n    REPUBLICAN(\"fas-republican\", '\\uf75e'),\n    RESTROOM(\"fas-restroom\", '\\uf7bd'),\n    RETWEET(\"fas-retweet\", '\\uf079'),\n    RIBBON(\"fas-ribbon\", '\\uf4d6'),\n    RING(\"fas-ring\", '\\uf70b'),\n    ROAD(\"fas-road\", '\\uf018'),\n    ROBOT(\"fas-robot\", '\\uf544'),\n    ROCKET(\"fas-rocket\", '\\uf135'),\n    ROUTE(\"fas-route\", '\\uf4d7'),\n    RSS(\"fas-rss\", '\\uf09e'),\n    RSS_SQUARE(\"fas-rss-square\", '\\uf143'),\n    RUBLE_SIGN(\"fas-ruble-sign\", '\\uf158'),\n    RULER(\"fas-ruler\", '\\uf545'),\n    RULER_COMBINED(\"fas-ruler-combined\", '\\uf546'),\n    RULER_HORIZONTAL(\"fas-ruler-horizontal\", '\\uf547'),\n    RULER_VERTICAL(\"fas-ruler-vertical\", '\\uf548'),\n    RUNNING(\"fas-running\", '\\uf70c'),\n    RUPEE_SIGN(\"fas-rupee-sign\", '\\uf156'),\n    SAD_CRY(\"fas-sad-cry\", '\\uf5b3'),\n    SAD_TEAR(\"fas-sad-tear\", '\\uf5b4'),\n    SATELLITE(\"fas-satellite\", '\\uf7bf'),\n    SATELLITE_DISH(\"fas-satellite-dish\", '\\uf7c0'),\n    SAVE(\"fas-save\", '\\uf0c7'),\n    SCHOOL(\"fas-school\", '\\uf549'),\n    SCREWDRIVER(\"fas-screwdriver\", '\\uf54a'),\n    SCROLL(\"fas-scroll\", '\\uf70e'),\n    SD_CARD(\"fas-sd-card\", '\\uf7c2'),\n    SEARCH(\"fas-search\", '\\uf002'),\n    SEARCH_DOLLAR(\"fas-search-dollar\", '\\uf688'),\n    SEARCH_LOCATION(\"fas-search-location\", '\\uf689'),\n    SEARCH_MINUS(\"fas-search-minus\", '\\uf010'),\n    SEARCH_PLUS(\"fas-search-plus\", '\\uf00e'),\n    SEEDLING(\"fas-seedling\", '\\uf4d8'),\n    SERVER(\"fas-server\", '\\uf233'),\n    SHAPES(\"fas-shapes\", '\\uf61f'),\n    SHARE(\"fas-share\", '\\uf064'),\n    SHARE_ALT(\"fas-share-alt\", '\\uf1e0'),\n    SHARE_ALT_SQUARE(\"fas-share-alt-square\", '\\uf1e1'),\n    SHARE_SQUARE(\"fas-share-square\", '\\uf14d'),\n    SHEKEL_SIGN(\"fas-shekel-sign\", '\\uf20b'),\n    SHIELD_ALT(\"fas-shield-alt\", '\\uf3ed'),\n    SHIELD_VIRUS(\"fas-shield-virus\", '\\ue06c'),\n    SHIP(\"fas-ship\", '\\uf21a'),\n    SHIPPING_FAST(\"fas-shipping-fast\", '\\uf48b'),\n    SHOE_PRINTS(\"fas-shoe-prints\", '\\uf54b'),\n    SHOPPING_BAG(\"fas-shopping-bag\", '\\uf290'),\n    SHOPPING_BASKET(\"fas-shopping-basket\", '\\uf291'),\n    SHOPPING_CART(\"fas-shopping-cart\", '\\uf07a'),\n    SHOWER(\"fas-shower\", '\\uf2cc'),\n    SHUTTLE_VAN(\"fas-shuttle-van\", '\\uf5b6'),\n    SIGN(\"fas-sign\", '\\uf4d9'),\n    SIGNAL(\"fas-signal\", '\\uf012'),\n    SIGNATURE(\"fas-signature\", '\\uf5b7'),\n    SIGN_IN_ALT(\"fas-sign-in-alt\", '\\uf2f6'),\n    SIGN_LANGUAGE(\"fas-sign-language\", '\\uf2a7'),\n    SIGN_OUT_ALT(\"fas-sign-out-alt\", '\\uf2f5'),\n    SIM_CARD(\"fas-sim-card\", '\\uf7c4'),\n    SINK(\"fas-sink\", '\\ue06d'),\n    SITEMAP(\"fas-sitemap\", '\\uf0e8'),\n    SKATING(\"fas-skating\", '\\uf7c5'),\n    SKIING(\"fas-skiing\", '\\uf7c9'),\n    SKIING_NORDIC(\"fas-skiing-nordic\", '\\uf7ca'),\n    SKULL(\"fas-skull\", '\\uf54c'),\n    SKULL_CROSSBONES(\"fas-skull-crossbones\", '\\uf714'),\n    SLASH(\"fas-slash\", '\\uf715'),\n    SLEIGH(\"fas-sleigh\", '\\uf7cc'),\n    SLIDERS_H(\"fas-sliders-h\", '\\uf1de'),\n    SMILE(\"fas-smile\", '\\uf118'),\n    SMILE_BEAM(\"fas-smile-beam\", '\\uf5b8'),\n    SMILE_WINK(\"fas-smile-wink\", '\\uf4da'),\n    SMOG(\"fas-smog\", '\\uf75f'),\n    SMOKING(\"fas-smoking\", '\\uf48d'),\n    SMOKING_BAN(\"fas-smoking-ban\", '\\uf54d'),\n    SMS(\"fas-sms\", '\\uf7cd'),\n    SNOWBOARDING(\"fas-snowboarding\", '\\uf7ce'),\n    SNOWFLAKE(\"fas-snowflake\", '\\uf2dc'),\n    SNOWMAN(\"fas-snowman\", '\\uf7d0'),\n    SNOWPLOW(\"fas-snowplow\", '\\uf7d2'),\n    SOAP(\"fas-soap\", '\\ue06e'),\n    SOCKS(\"fas-socks\", '\\uf696'),\n    SOLAR_PANEL(\"fas-solar-panel\", '\\uf5ba'),\n    SORT(\"fas-sort\", '\\uf0dc'),\n    SORT_ALPHA_DOWN(\"fas-sort-alpha-down\", '\\uf15d'),\n    SORT_ALPHA_DOWN_ALT(\"fas-sort-alpha-down-alt\", '\\uf881'),\n    SORT_ALPHA_UP(\"fas-sort-alpha-up\", '\\uf15e'),\n    SORT_ALPHA_UP_ALT(\"fas-sort-alpha-up-alt\", '\\uf882'),\n    SORT_AMOUNT_DOWN(\"fas-sort-amount-down\", '\\uf160'),\n    SORT_AMOUNT_DOWN_ALT(\"fas-sort-amount-down-alt\", '\\uf884'),\n    SORT_AMOUNT_UP(\"fas-sort-amount-up\", '\\uf161'),\n    SORT_AMOUNT_UP_ALT(\"fas-sort-amount-up-alt\", '\\uf885'),\n    SORT_DOWN(\"fas-sort-down\", '\\uf0dd'),\n    SORT_NUMERIC_DOWN(\"fas-sort-numeric-down\", '\\uf162'),\n    SORT_NUMERIC_DOWN_ALT(\"fas-sort-numeric-down-alt\", '\\uf886'),\n    SORT_NUMERIC_UP(\"fas-sort-numeric-up\", '\\uf163'),\n    SORT_NUMERIC_UP_ALT(\"fas-sort-numeric-up-alt\", '\\uf887'),\n    SORT_UP(\"fas-sort-up\", '\\uf0de'),\n    SPA(\"fas-spa\", '\\uf5bb'),\n    SPACE_SHUTTLE(\"fas-space-shuttle\", '\\uf197'),\n    SPELL_CHECK(\"fas-spell-check\", '\\uf891'),\n    SPIDER(\"fas-spider\", '\\uf717'),\n    SPINNER(\"fas-spinner\", '\\uf110'),\n    SPLOTCH(\"fas-splotch\", '\\uf5bc'),\n    SPRAY_CAN(\"fas-spray-can\", '\\uf5bd'),\n    SQUARE(\"fas-square\", '\\uf0c8'),\n    SQUARE_FULL(\"fas-square-full\", '\\uf45c'),\n    SQUARE_ROOT_ALT(\"fas-square-root-alt\", '\\uf698'),\n    STAMP(\"fas-stamp\", '\\uf5bf'),\n    STAR(\"fas-star\", '\\uf005'),\n    STAR_AND_CRESCENT(\"fas-star-and-crescent\", '\\uf699'),\n    STAR_HALF(\"fas-star-half\", '\\uf089'),\n    STAR_HALF_ALT(\"fas-star-half-alt\", '\\uf5c0'),\n    STAR_OF_DAVID(\"fas-star-of-david\", '\\uf69a'),\n    STAR_OF_LIFE(\"fas-star-of-life\", '\\uf621'),\n    STEP_BACKWARD(\"fas-step-backward\", '\\uf048'),\n    STEP_FORWARD(\"fas-step-forward\", '\\uf051'),\n    STETHOSCOPE(\"fas-stethoscope\", '\\uf0f1'),\n    STICKY_NOTE(\"fas-sticky-note\", '\\uf249'),\n    STOP(\"fas-stop\", '\\uf04d'),\n    STOPWATCH(\"fas-stopwatch\", '\\uf2f2'),\n    STOPWATCH_20(\"fas-stopwatch-20\", '\\ue06f'),\n    STOP_CIRCLE(\"fas-stop-circle\", '\\uf28d'),\n    STORE(\"fas-store\", '\\uf54e'),\n    STORE_ALT(\"fas-store-alt\", '\\uf54f'),\n    STORE_ALT_SLASH(\"fas-store-alt-slash\", '\\ue070'),\n    STORE_SLASH(\"fas-store-slash\", '\\ue071'),\n    STREAM(\"fas-stream\", '\\uf550'),\n    STREET_VIEW(\"fas-street-view\", '\\uf21d'),\n    STRIKETHROUGH(\"fas-strikethrough\", '\\uf0cc'),\n    STROOPWAFEL(\"fas-stroopwafel\", '\\uf551'),\n    SUBSCRIPT(\"fas-subscript\", '\\uf12c'),\n    SUBWAY(\"fas-subway\", '\\uf239'),\n    SUITCASE(\"fas-suitcase\", '\\uf0f2'),\n    SUITCASE_ROLLING(\"fas-suitcase-rolling\", '\\uf5c1'),\n    SUN(\"fas-sun\", '\\uf185'),\n    SUPERSCRIPT(\"fas-superscript\", '\\uf12b'),\n    SURPRISE(\"fas-surprise\", '\\uf5c2'),\n    SWATCHBOOK(\"fas-swatchbook\", '\\uf5c3'),\n    SWIMMER(\"fas-swimmer\", '\\uf5c4'),\n    SWIMMING_POOL(\"fas-swimming-pool\", '\\uf5c5'),\n    SYNAGOGUE(\"fas-synagogue\", '\\uf69b'),\n    SYNC(\"fas-sync\", '\\uf021'),\n    SYNC_ALT(\"fas-sync-alt\", '\\uf2f1'),\n    SYRINGE(\"fas-syringe\", '\\uf48e'),\n    TABLE(\"fas-table\", '\\uf0ce'),\n    TABLET(\"fas-tablet\", '\\uf10a'),\n    TABLETS(\"fas-tablets\", '\\uf490'),\n    TABLET_ALT(\"fas-tablet-alt\", '\\uf3fa'),\n    TABLE_TENNIS(\"fas-table-tennis\", '\\uf45d'),\n    TACHOMETER_ALT(\"fas-tachometer-alt\", '\\uf3fd'),\n    TAG(\"fas-tag\", '\\uf02b'),\n    TAGS(\"fas-tags\", '\\uf02c'),\n    TAPE(\"fas-tape\", '\\uf4db'),\n    TASKS(\"fas-tasks\", '\\uf0ae'),\n    TAXI(\"fas-taxi\", '\\uf1ba'),\n    TEETH(\"fas-teeth\", '\\uf62e'),\n    TEETH_OPEN(\"fas-teeth-open\", '\\uf62f'),\n    TEMPERATURE_HIGH(\"fas-temperature-high\", '\\uf769'),\n    TEMPERATURE_LOW(\"fas-temperature-low\", '\\uf76b'),\n    TENGE(\"fas-tenge\", '\\uf7d7'),\n    TERMINAL(\"fas-terminal\", '\\uf120'),\n    TEXT_HEIGHT(\"fas-text-height\", '\\uf034'),\n    TEXT_WIDTH(\"fas-text-width\", '\\uf035'),\n    TH(\"fas-th\", '\\uf00a'),\n    THEATER_MASKS(\"fas-theater-masks\", '\\uf630'),\n    THERMOMETER(\"fas-thermometer\", '\\uf491'),\n    THERMOMETER_EMPTY(\"fas-thermometer-empty\", '\\uf2cb'),\n    THERMOMETER_FULL(\"fas-thermometer-full\", '\\uf2c7'),\n    THERMOMETER_HALF(\"fas-thermometer-half\", '\\uf2c9'),\n    THERMOMETER_QUARTER(\"fas-thermometer-quarter\", '\\uf2ca'),\n    THERMOMETER_THREE_QUARTERS(\"fas-thermometer-three-quarters\", '\\uf2c8'),\n    THUMBS_DOWN(\"fas-thumbs-down\", '\\uf165'),\n    THUMBS_UP(\"fas-thumbs-up\", '\\uf164'),\n    THUMBTACK(\"fas-thumbtack\", '\\uf08d'),\n    TH_LARGE(\"fas-th-large\", '\\uf009'),\n    TH_LIST(\"fas-th-list\", '\\uf00b'),\n    TICKET_ALT(\"fas-ticket-alt\", '\\uf3ff'),\n    TIMES(\"fas-times\", '\\uf00d'),\n    TIMES_CIRCLE(\"fas-times-circle\", '\\uf057'),\n    TINT(\"fas-tint\", '\\uf043'),\n    TINT_SLASH(\"fas-tint-slash\", '\\uf5c7'),\n    TIRED(\"fas-tired\", '\\uf5c8'),\n    TOGGLE_OFF(\"fas-toggle-off\", '\\uf204'),\n    TOGGLE_ON(\"fas-toggle-on\", '\\uf205'),\n    TOILET(\"fas-toilet\", '\\uf7d8'),\n    TOILET_PAPER(\"fas-toilet-paper\", '\\uf71e'),\n    TOILET_PAPER_SLASH(\"fas-toilet-paper-slash\", '\\ue072'),\n    TOOLBOX(\"fas-toolbox\", '\\uf552'),\n    TOOLS(\"fas-tools\", '\\uf7d9'),\n    TOOTH(\"fas-tooth\", '\\uf5c9'),\n    TORAH(\"fas-torah\", '\\uf6a0'),\n    TORII_GATE(\"fas-torii-gate\", '\\uf6a1'),\n    TRACTOR(\"fas-tractor\", '\\uf722'),\n    TRADEMARK(\"fas-trademark\", '\\uf25c'),\n    TRAFFIC_LIGHT(\"fas-traffic-light\", '\\uf637'),\n    TRAILER(\"fas-trailer\", '\\ue041'),\n    TRAIN(\"fas-train\", '\\uf238'),\n    TRAM(\"fas-tram\", '\\uf7da'),\n    TRANSGENDER(\"fas-transgender\", '\\uf224'),\n    TRANSGENDER_ALT(\"fas-transgender-alt\", '\\uf225'),\n    TRASH(\"fas-trash\", '\\uf1f8'),\n    TRASH_ALT(\"fas-trash-alt\", '\\uf2ed'),\n    TRASH_RESTORE(\"fas-trash-restore\", '\\uf829'),\n    TRASH_RESTORE_ALT(\"fas-trash-restore-alt\", '\\uf82a'),\n    TREE(\"fas-tree\", '\\uf1bb'),\n    TROPHY(\"fas-trophy\", '\\uf091'),\n    TRUCK(\"fas-truck\", '\\uf0d1'),\n    TRUCK_LOADING(\"fas-truck-loading\", '\\uf4de'),\n    TRUCK_MONSTER(\"fas-truck-monster\", '\\uf63b'),\n    TRUCK_MOVING(\"fas-truck-moving\", '\\uf4df'),\n    TRUCK_PICKUP(\"fas-truck-pickup\", '\\uf63c'),\n    TSHIRT(\"fas-tshirt\", '\\uf553'),\n    TTY(\"fas-tty\", '\\uf1e4'),\n    TV(\"fas-tv\", '\\uf26c'),\n    UMBRELLA(\"fas-umbrella\", '\\uf0e9'),\n    UMBRELLA_BEACH(\"fas-umbrella-beach\", '\\uf5ca'),\n    UNDERLINE(\"fas-underline\", '\\uf0cd'),\n    UNDO(\"fas-undo\", '\\uf0e2'),\n    UNDO_ALT(\"fas-undo-alt\", '\\uf2ea'),\n    UNIVERSAL_ACCESS(\"fas-universal-access\", '\\uf29a'),\n    UNIVERSITY(\"fas-university\", '\\uf19c'),\n    UNLINK(\"fas-unlink\", '\\uf127'),\n    UNLOCK(\"fas-unlock\", '\\uf09c'),\n    UNLOCK_ALT(\"fas-unlock-alt\", '\\uf13e'),\n    UPLOAD(\"fas-upload\", '\\uf093'),\n    USER(\"fas-user\", '\\uf007'),\n    USERS(\"fas-users\", '\\uf0c0'),\n    USERS_COG(\"fas-users-cog\", '\\uf509'),\n    USERS_SLASH(\"fas-users-slash\", '\\ue073'),\n    USER_ALT(\"fas-user-alt\", '\\uf406'),\n    USER_ALT_SLASH(\"fas-user-alt-slash\", '\\uf4fa'),\n    USER_ASTRONAUT(\"fas-user-astronaut\", '\\uf4fb'),\n    USER_CHECK(\"fas-user-check\", '\\uf4fc'),\n    USER_CIRCLE(\"fas-user-circle\", '\\uf2bd'),\n    USER_CLOCK(\"fas-user-clock\", '\\uf4fd'),\n    USER_COG(\"fas-user-cog\", '\\uf4fe'),\n    USER_EDIT(\"fas-user-edit\", '\\uf4ff'),\n    USER_FRIENDS(\"fas-user-friends\", '\\uf500'),\n    USER_GRADUATE(\"fas-user-graduate\", '\\uf501'),\n    USER_INJURED(\"fas-user-injured\", '\\uf728'),\n    USER_LOCK(\"fas-user-lock\", '\\uf502'),\n    USER_MD(\"fas-user-md\", '\\uf0f0'),\n    USER_MINUS(\"fas-user-minus\", '\\uf503'),\n    USER_NINJA(\"fas-user-ninja\", '\\uf504'),\n    USER_NURSE(\"fas-user-nurse\", '\\uf82f'),\n    USER_PLUS(\"fas-user-plus\", '\\uf234'),\n    USER_SECRET(\"fas-user-secret\", '\\uf21b'),\n    USER_SHIELD(\"fas-user-shield\", '\\uf505'),\n    USER_SLASH(\"fas-user-slash\", '\\uf506'),\n    USER_TAG(\"fas-user-tag\", '\\uf507'),\n    USER_TIE(\"fas-user-tie\", '\\uf508'),\n    USER_TIMES(\"fas-user-times\", '\\uf235'),\n    UTENSILS(\"fas-utensils\", '\\uf2e7'),\n    UTENSIL_SPOON(\"fas-utensil-spoon\", '\\uf2e5'),\n    VECTOR_SQUARE(\"fas-vector-square\", '\\uf5cb'),\n    VENUS(\"fas-venus\", '\\uf221'),\n    VENUS_DOUBLE(\"fas-venus-double\", '\\uf226'),\n    VENUS_MARS(\"fas-venus-mars\", '\\uf228'),\n    VEST(\"fas-vest\", '\\ue085'),\n    VEST_PATCHES(\"fas-vest-patches\", '\\ue086'),\n    VIAL(\"fas-vial\", '\\uf492'),\n    VIALS(\"fas-vials\", '\\uf493'),\n    VIDEO(\"fas-video\", '\\uf03d'),\n    VIDEO_SLASH(\"fas-video-slash\", '\\uf4e2'),\n    VIHARA(\"fas-vihara\", '\\uf6a7'),\n    VIRUS(\"fas-virus\", '\\ue074'),\n    VIRUSES(\"fas-viruses\", '\\ue076'),\n    VIRUS_SLASH(\"fas-virus-slash\", '\\ue075'),\n    VOICEMAIL(\"fas-voicemail\", '\\uf897'),\n    VOLLEYBALL_BALL(\"fas-volleyball-ball\", '\\uf45f'),\n    VOLUME_DOWN(\"fas-volume-down\", '\\uf027'),\n    VOLUME_MUTE(\"fas-volume-mute\", '\\uf6a9'),\n    VOLUME_OFF(\"fas-volume-off\", '\\uf026'),\n    VOLUME_UP(\"fas-volume-up\", '\\uf028'),\n    VOTE_YEA(\"fas-vote-yea\", '\\uf772'),\n    VR_CARDBOARD(\"fas-vr-cardboard\", '\\uf729'),\n    WALKING(\"fas-walking\", '\\uf554'),\n    WALLET(\"fas-wallet\", '\\uf555'),\n    WAREHOUSE(\"fas-warehouse\", '\\uf494'),\n    WATER(\"fas-water\", '\\uf773'),\n    WAVE_SQUARE(\"fas-wave-square\", '\\uf83e'),\n    WEIGHT(\"fas-weight\", '\\uf496'),\n    WEIGHT_HANGING(\"fas-weight-hanging\", '\\uf5cd'),\n    WHEELCHAIR(\"fas-wheelchair\", '\\uf193'),\n    WIFI(\"fas-wifi\", '\\uf1eb'),\n    WIND(\"fas-wind\", '\\uf72e'),\n    WINDOW_CLOSE(\"fas-window-close\", '\\uf410'),\n    WINDOW_MAXIMIZE(\"fas-window-maximize\", '\\uf2d0'),\n    WINDOW_MINIMIZE(\"fas-window-minimize\", '\\uf2d1'),\n    WINDOW_RESTORE(\"fas-window-restore\", '\\uf2d2'),\n    WINE_BOTTLE(\"fas-wine-bottle\", '\\uf72f'),\n    WINE_GLASS(\"fas-wine-glass\", '\\uf4e3'),\n    WINE_GLASS_ALT(\"fas-wine-glass-alt\", '\\uf5ce'),\n    WON_SIGN(\"fas-won-sign\", '\\uf159'),\n    WRENCH(\"fas-wrench\", '\\uf0ad'),\n    X_RAY(\"fas-x-ray\", '\\uf497'),\n    YEN_SIGN(\"fas-yen-sign\", '\\uf157'),\n    YIN_YANG(\"fas-yin-yang\", '\\uf6ad');\n\n    public static FontAwesomeSolid findByDescription(String description) {\n        for (FontAwesomeSolid font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    FontAwesomeSolid(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/java/org/kordamp/ikonli/fontawesome6/FontAwesomeSolidIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome6;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FontAwesomeSolidIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fontawesome6/6.5.2/fonts/fa-solid-900.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"fas-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return FontAwesomeSolid.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Font Awesome 6 Free Solid\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/java/org/kordamp/ikonli/fontawesome6/FontAwesomeSolidIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontawesome6;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class FontAwesomeSolidIkonProvider implements IkonProvider<FontAwesomeSolid> {\n    @Override\n    public Class<FontAwesomeSolid> getIkon() {\n        return FontAwesomeSolid.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/resources/META-INF/resources/fontawesome6/6.5.2/css/all.css",
    "content": "/*!\n * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n * Copyright 2024 Fonticons, Inc.\n */\n.fa {\n  font-family: var(--fa-style-family, \"Font Awesome 6 Free\");\n  font-weight: var(--fa-style, 900); }\n\n.fa,\n.fa-classic,\n.fa-sharp,\n.fas,\n.fa-solid,\n.far,\n.fa-regular,\n.fab,\n.fa-brands {\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n  display: var(--fa-display, inline-block);\n  font-style: normal;\n  font-variant: normal;\n  line-height: 1;\n  text-rendering: auto; }\n\n.fas,\n.fa-classic,\n.fa-solid,\n.far,\n.fa-regular {\n  font-family: 'Font Awesome 6 Free'; }\n\n.fab,\n.fa-brands {\n  font-family: 'Font Awesome 6 Brands'; }\n\n.fa-1x {\n  font-size: 1em; }\n\n.fa-2x {\n  font-size: 2em; }\n\n.fa-3x {\n  font-size: 3em; }\n\n.fa-4x {\n  font-size: 4em; }\n\n.fa-5x {\n  font-size: 5em; }\n\n.fa-6x {\n  font-size: 6em; }\n\n.fa-7x {\n  font-size: 7em; }\n\n.fa-8x {\n  font-size: 8em; }\n\n.fa-9x {\n  font-size: 9em; }\n\n.fa-10x {\n  font-size: 10em; }\n\n.fa-2xs {\n  font-size: 0.625em;\n  line-height: 0.1em;\n  vertical-align: 0.225em; }\n\n.fa-xs {\n  font-size: 0.75em;\n  line-height: 0.08333em;\n  vertical-align: 0.125em; }\n\n.fa-sm {\n  font-size: 0.875em;\n  line-height: 0.07143em;\n  vertical-align: 0.05357em; }\n\n.fa-lg {\n  font-size: 1.25em;\n  line-height: 0.05em;\n  vertical-align: -0.075em; }\n\n.fa-xl {\n  font-size: 1.5em;\n  line-height: 0.04167em;\n  vertical-align: -0.125em; }\n\n.fa-2xl {\n  font-size: 2em;\n  line-height: 0.03125em;\n  vertical-align: -0.1875em; }\n\n.fa-fw {\n  text-align: center;\n  width: 1.25em; }\n\n.fa-ul {\n  list-style-type: none;\n  margin-left: var(--fa-li-margin, 2.5em);\n  padding-left: 0; }\n  .fa-ul > li {\n    position: relative; }\n\n.fa-li {\n  left: calc(var(--fa-li-width, 2em) * -1);\n  position: absolute;\n  text-align: center;\n  width: var(--fa-li-width, 2em);\n  line-height: inherit; }\n\n.fa-border {\n  border-color: var(--fa-border-color, #eee);\n  border-radius: var(--fa-border-radius, 0.1em);\n  border-style: var(--fa-border-style, solid);\n  border-width: var(--fa-border-width, 0.08em);\n  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); }\n\n.fa-pull-left {\n  float: left;\n  margin-right: var(--fa-pull-margin, 0.3em); }\n\n.fa-pull-right {\n  float: right;\n  margin-left: var(--fa-pull-margin, 0.3em); }\n\n.fa-beat {\n  -webkit-animation-name: fa-beat;\n          animation-name: fa-beat;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n          animation-timing-function: var(--fa-animation-timing, ease-in-out); }\n\n.fa-bounce {\n  -webkit-animation-name: fa-bounce;\n          animation-name: fa-bounce;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); }\n\n.fa-fade {\n  -webkit-animation-name: fa-fade;\n          animation-name: fa-fade;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }\n\n.fa-beat-fade {\n  -webkit-animation-name: fa-beat-fade;\n          animation-name: fa-beat-fade;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }\n\n.fa-flip {\n  -webkit-animation-name: fa-flip;\n          animation-name: fa-flip;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n          animation-timing-function: var(--fa-animation-timing, ease-in-out); }\n\n.fa-shake {\n  -webkit-animation-name: fa-shake;\n          animation-name: fa-shake;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n          animation-timing-function: var(--fa-animation-timing, linear); }\n\n.fa-spin {\n  -webkit-animation-name: fa-spin;\n          animation-name: fa-spin;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 2s);\n          animation-duration: var(--fa-animation-duration, 2s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n          animation-timing-function: var(--fa-animation-timing, linear); }\n\n.fa-spin-reverse {\n  --fa-animation-direction: reverse; }\n\n.fa-pulse,\n.fa-spin-pulse {\n  -webkit-animation-name: fa-spin;\n          animation-name: fa-spin;\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n          animation-timing-function: var(--fa-animation-timing, steps(8)); }\n\n@media (prefers-reduced-motion: reduce) {\n  .fa-beat,\n  .fa-bounce,\n  .fa-fade,\n  .fa-beat-fade,\n  .fa-flip,\n  .fa-pulse,\n  .fa-shake,\n  .fa-spin,\n  .fa-spin-pulse {\n    -webkit-animation-delay: -1ms;\n            animation-delay: -1ms;\n    -webkit-animation-duration: 1ms;\n            animation-duration: 1ms;\n    -webkit-animation-iteration-count: 1;\n            animation-iteration-count: 1;\n    -webkit-transition-delay: 0s;\n            transition-delay: 0s;\n    -webkit-transition-duration: 0s;\n            transition-duration: 0s; } }\n\n@-webkit-keyframes fa-beat {\n  0%, 90% {\n    -webkit-transform: scale(1);\n            transform: scale(1); }\n  45% {\n    -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n            transform: scale(var(--fa-beat-scale, 1.25)); } }\n\n@keyframes fa-beat {\n  0%, 90% {\n    -webkit-transform: scale(1);\n            transform: scale(1); }\n  45% {\n    -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n            transform: scale(var(--fa-beat-scale, 1.25)); } }\n\n@-webkit-keyframes fa-bounce {\n  0% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); }\n  10% {\n    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }\n  30% {\n    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }\n  50% {\n    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }\n  57% {\n    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }\n  64% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); }\n  100% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); } }\n\n@keyframes fa-bounce {\n  0% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); }\n  10% {\n    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }\n  30% {\n    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }\n  50% {\n    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }\n  57% {\n    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }\n  64% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); }\n  100% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); } }\n\n@-webkit-keyframes fa-fade {\n  50% {\n    opacity: var(--fa-fade-opacity, 0.4); } }\n\n@keyframes fa-fade {\n  50% {\n    opacity: var(--fa-fade-opacity, 0.4); } }\n\n@-webkit-keyframes fa-beat-fade {\n  0%, 100% {\n    opacity: var(--fa-beat-fade-opacity, 0.4);\n    -webkit-transform: scale(1);\n            transform: scale(1); }\n  50% {\n    opacity: 1;\n    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n            transform: scale(var(--fa-beat-fade-scale, 1.125)); } }\n\n@keyframes fa-beat-fade {\n  0%, 100% {\n    opacity: var(--fa-beat-fade-opacity, 0.4);\n    -webkit-transform: scale(1);\n            transform: scale(1); }\n  50% {\n    opacity: 1;\n    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n            transform: scale(var(--fa-beat-fade-scale, 1.125)); } }\n\n@-webkit-keyframes fa-flip {\n  50% {\n    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }\n\n@keyframes fa-flip {\n  50% {\n    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }\n\n@-webkit-keyframes fa-shake {\n  0% {\n    -webkit-transform: rotate(-15deg);\n            transform: rotate(-15deg); }\n  4% {\n    -webkit-transform: rotate(15deg);\n            transform: rotate(15deg); }\n  8%, 24% {\n    -webkit-transform: rotate(-18deg);\n            transform: rotate(-18deg); }\n  12%, 28% {\n    -webkit-transform: rotate(18deg);\n            transform: rotate(18deg); }\n  16% {\n    -webkit-transform: rotate(-22deg);\n            transform: rotate(-22deg); }\n  20% {\n    -webkit-transform: rotate(22deg);\n            transform: rotate(22deg); }\n  32% {\n    -webkit-transform: rotate(-12deg);\n            transform: rotate(-12deg); }\n  36% {\n    -webkit-transform: rotate(12deg);\n            transform: rotate(12deg); }\n  40%, 100% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); } }\n\n@keyframes fa-shake {\n  0% {\n    -webkit-transform: rotate(-15deg);\n            transform: rotate(-15deg); }\n  4% {\n    -webkit-transform: rotate(15deg);\n            transform: rotate(15deg); }\n  8%, 24% {\n    -webkit-transform: rotate(-18deg);\n            transform: rotate(-18deg); }\n  12%, 28% {\n    -webkit-transform: rotate(18deg);\n            transform: rotate(18deg); }\n  16% {\n    -webkit-transform: rotate(-22deg);\n            transform: rotate(-22deg); }\n  20% {\n    -webkit-transform: rotate(22deg);\n            transform: rotate(22deg); }\n  32% {\n    -webkit-transform: rotate(-12deg);\n            transform: rotate(-12deg); }\n  36% {\n    -webkit-transform: rotate(12deg);\n            transform: rotate(12deg); }\n  40%, 100% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); } }\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n  -webkit-transform: rotate(90deg);\n          transform: rotate(90deg); }\n\n.fa-rotate-180 {\n  -webkit-transform: rotate(180deg);\n          transform: rotate(180deg); }\n\n.fa-rotate-270 {\n  -webkit-transform: rotate(270deg);\n          transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n  -webkit-transform: scale(-1, 1);\n          transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n  -webkit-transform: scale(1, -1);\n          transform: scale(1, -1); }\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n  -webkit-transform: scale(-1, -1);\n          transform: scale(-1, -1); }\n\n.fa-rotate-by {\n  -webkit-transform: rotate(var(--fa-rotate-angle, 0));\n          transform: rotate(var(--fa-rotate-angle, 0)); }\n\n.fa-stack {\n  display: inline-block;\n  height: 2em;\n  line-height: 2em;\n  position: relative;\n  vertical-align: middle;\n  width: 2.5em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n  left: 0;\n  position: absolute;\n  text-align: center;\n  width: 100%;\n  z-index: var(--fa-stack-z-index, auto); }\n\n.fa-stack-1x {\n  line-height: inherit; }\n\n.fa-stack-2x {\n  font-size: 2em; }\n\n.fa-inverse {\n  color: var(--fa-inverse, #fff); }\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\nreaders do not read off random characters that represent icons */\n\n.fa-0::before {\n  content: \"\\30\"; }\n\n.fa-1::before {\n  content: \"\\31\"; }\n\n.fa-2::before {\n  content: \"\\32\"; }\n\n.fa-3::before {\n  content: \"\\33\"; }\n\n.fa-4::before {\n  content: \"\\34\"; }\n\n.fa-5::before {\n  content: \"\\35\"; }\n\n.fa-6::before {\n  content: \"\\36\"; }\n\n.fa-7::before {\n  content: \"\\37\"; }\n\n.fa-8::before {\n  content: \"\\38\"; }\n\n.fa-9::before {\n  content: \"\\39\"; }\n\n.fa-fill-drip::before {\n  content: \"\\f576\"; }\n\n.fa-arrows-to-circle::before {\n  content: \"\\e4bd\"; }\n\n.fa-circle-chevron-right::before {\n  content: \"\\f138\"; }\n\n.fa-chevron-circle-right::before {\n  content: \"\\f138\"; }\n\n.fa-at::before {\n  content: \"\\40\"; }\n\n.fa-trash-can::before {\n  content: \"\\f2ed\"; }\n\n.fa-trash-alt::before {\n  content: \"\\f2ed\"; }\n\n.fa-text-height::before {\n  content: \"\\f034\"; }\n\n.fa-user-xmark::before {\n  content: \"\\f235\"; }\n\n.fa-user-times::before {\n  content: \"\\f235\"; }\n\n.fa-stethoscope::before {\n  content: \"\\f0f1\"; }\n\n.fa-message::before {\n  content: \"\\f27a\"; }\n\n.fa-comment-alt::before {\n  content: \"\\f27a\"; }\n\n.fa-info::before {\n  content: \"\\f129\"; }\n\n.fa-down-left-and-up-right-to-center::before {\n  content: \"\\f422\"; }\n\n.fa-compress-alt::before {\n  content: \"\\f422\"; }\n\n.fa-explosion::before {\n  content: \"\\e4e9\"; }\n\n.fa-file-lines::before {\n  content: \"\\f15c\"; }\n\n.fa-file-alt::before {\n  content: \"\\f15c\"; }\n\n.fa-file-text::before {\n  content: \"\\f15c\"; }\n\n.fa-wave-square::before {\n  content: \"\\f83e\"; }\n\n.fa-ring::before {\n  content: \"\\f70b\"; }\n\n.fa-building-un::before {\n  content: \"\\e4d9\"; }\n\n.fa-dice-three::before {\n  content: \"\\f527\"; }\n\n.fa-calendar-days::before {\n  content: \"\\f073\"; }\n\n.fa-calendar-alt::before {\n  content: \"\\f073\"; }\n\n.fa-anchor-circle-check::before {\n  content: \"\\e4aa\"; }\n\n.fa-building-circle-arrow-right::before {\n  content: \"\\e4d1\"; }\n\n.fa-volleyball::before {\n  content: \"\\f45f\"; }\n\n.fa-volleyball-ball::before {\n  content: \"\\f45f\"; }\n\n.fa-arrows-up-to-line::before {\n  content: \"\\e4c2\"; }\n\n.fa-sort-down::before {\n  content: \"\\f0dd\"; }\n\n.fa-sort-desc::before {\n  content: \"\\f0dd\"; }\n\n.fa-circle-minus::before {\n  content: \"\\f056\"; }\n\n.fa-minus-circle::before {\n  content: \"\\f056\"; }\n\n.fa-door-open::before {\n  content: \"\\f52b\"; }\n\n.fa-right-from-bracket::before {\n  content: \"\\f2f5\"; }\n\n.fa-sign-out-alt::before {\n  content: \"\\f2f5\"; }\n\n.fa-atom::before {\n  content: \"\\f5d2\"; }\n\n.fa-soap::before {\n  content: \"\\e06e\"; }\n\n.fa-icons::before {\n  content: \"\\f86d\"; }\n\n.fa-heart-music-camera-bolt::before {\n  content: \"\\f86d\"; }\n\n.fa-microphone-lines-slash::before {\n  content: \"\\f539\"; }\n\n.fa-microphone-alt-slash::before {\n  content: \"\\f539\"; }\n\n.fa-bridge-circle-check::before {\n  content: \"\\e4c9\"; }\n\n.fa-pump-medical::before {\n  content: \"\\e06a\"; }\n\n.fa-fingerprint::before {\n  content: \"\\f577\"; }\n\n.fa-hand-point-right::before {\n  content: \"\\f0a4\"; }\n\n.fa-magnifying-glass-location::before {\n  content: \"\\f689\"; }\n\n.fa-search-location::before {\n  content: \"\\f689\"; }\n\n.fa-forward-step::before {\n  content: \"\\f051\"; }\n\n.fa-step-forward::before {\n  content: \"\\f051\"; }\n\n.fa-face-smile-beam::before {\n  content: \"\\f5b8\"; }\n\n.fa-smile-beam::before {\n  content: \"\\f5b8\"; }\n\n.fa-flag-checkered::before {\n  content: \"\\f11e\"; }\n\n.fa-football::before {\n  content: \"\\f44e\"; }\n\n.fa-football-ball::before {\n  content: \"\\f44e\"; }\n\n.fa-school-circle-exclamation::before {\n  content: \"\\e56c\"; }\n\n.fa-crop::before {\n  content: \"\\f125\"; }\n\n.fa-angles-down::before {\n  content: \"\\f103\"; }\n\n.fa-angle-double-down::before {\n  content: \"\\f103\"; }\n\n.fa-users-rectangle::before {\n  content: \"\\e594\"; }\n\n.fa-people-roof::before {\n  content: \"\\e537\"; }\n\n.fa-people-line::before {\n  content: \"\\e534\"; }\n\n.fa-beer-mug-empty::before {\n  content: \"\\f0fc\"; }\n\n.fa-beer::before {\n  content: \"\\f0fc\"; }\n\n.fa-diagram-predecessor::before {\n  content: \"\\e477\"; }\n\n.fa-arrow-up-long::before {\n  content: \"\\f176\"; }\n\n.fa-long-arrow-up::before {\n  content: \"\\f176\"; }\n\n.fa-fire-flame-simple::before {\n  content: \"\\f46a\"; }\n\n.fa-burn::before {\n  content: \"\\f46a\"; }\n\n.fa-person::before {\n  content: \"\\f183\"; }\n\n.fa-male::before {\n  content: \"\\f183\"; }\n\n.fa-laptop::before {\n  content: \"\\f109\"; }\n\n.fa-file-csv::before {\n  content: \"\\f6dd\"; }\n\n.fa-menorah::before {\n  content: \"\\f676\"; }\n\n.fa-truck-plane::before {\n  content: \"\\e58f\"; }\n\n.fa-record-vinyl::before {\n  content: \"\\f8d9\"; }\n\n.fa-face-grin-stars::before {\n  content: \"\\f587\"; }\n\n.fa-grin-stars::before {\n  content: \"\\f587\"; }\n\n.fa-bong::before {\n  content: \"\\f55c\"; }\n\n.fa-spaghetti-monster-flying::before {\n  content: \"\\f67b\"; }\n\n.fa-pastafarianism::before {\n  content: \"\\f67b\"; }\n\n.fa-arrow-down-up-across-line::before {\n  content: \"\\e4af\"; }\n\n.fa-spoon::before {\n  content: \"\\f2e5\"; }\n\n.fa-utensil-spoon::before {\n  content: \"\\f2e5\"; }\n\n.fa-jar-wheat::before {\n  content: \"\\e517\"; }\n\n.fa-envelopes-bulk::before {\n  content: \"\\f674\"; }\n\n.fa-mail-bulk::before {\n  content: \"\\f674\"; }\n\n.fa-file-circle-exclamation::before {\n  content: \"\\e4eb\"; }\n\n.fa-circle-h::before {\n  content: \"\\f47e\"; }\n\n.fa-hospital-symbol::before {\n  content: \"\\f47e\"; }\n\n.fa-pager::before {\n  content: \"\\f815\"; }\n\n.fa-address-book::before {\n  content: \"\\f2b9\"; }\n\n.fa-contact-book::before {\n  content: \"\\f2b9\"; }\n\n.fa-strikethrough::before {\n  content: \"\\f0cc\"; }\n\n.fa-k::before {\n  content: \"\\4b\"; }\n\n.fa-landmark-flag::before {\n  content: \"\\e51c\"; }\n\n.fa-pencil::before {\n  content: \"\\f303\"; }\n\n.fa-pencil-alt::before {\n  content: \"\\f303\"; }\n\n.fa-backward::before {\n  content: \"\\f04a\"; }\n\n.fa-caret-right::before {\n  content: \"\\f0da\"; }\n\n.fa-comments::before {\n  content: \"\\f086\"; }\n\n.fa-paste::before {\n  content: \"\\f0ea\"; }\n\n.fa-file-clipboard::before {\n  content: \"\\f0ea\"; }\n\n.fa-code-pull-request::before {\n  content: \"\\e13c\"; }\n\n.fa-clipboard-list::before {\n  content: \"\\f46d\"; }\n\n.fa-truck-ramp-box::before {\n  content: \"\\f4de\"; }\n\n.fa-truck-loading::before {\n  content: \"\\f4de\"; }\n\n.fa-user-check::before {\n  content: \"\\f4fc\"; }\n\n.fa-vial-virus::before {\n  content: \"\\e597\"; }\n\n.fa-sheet-plastic::before {\n  content: \"\\e571\"; }\n\n.fa-blog::before {\n  content: \"\\f781\"; }\n\n.fa-user-ninja::before {\n  content: \"\\f504\"; }\n\n.fa-person-arrow-up-from-line::before {\n  content: \"\\e539\"; }\n\n.fa-scroll-torah::before {\n  content: \"\\f6a0\"; }\n\n.fa-torah::before {\n  content: \"\\f6a0\"; }\n\n.fa-broom-ball::before {\n  content: \"\\f458\"; }\n\n.fa-quidditch::before {\n  content: \"\\f458\"; }\n\n.fa-quidditch-broom-ball::before {\n  content: \"\\f458\"; }\n\n.fa-toggle-off::before {\n  content: \"\\f204\"; }\n\n.fa-box-archive::before {\n  content: \"\\f187\"; }\n\n.fa-archive::before {\n  content: \"\\f187\"; }\n\n.fa-person-drowning::before {\n  content: \"\\e545\"; }\n\n.fa-arrow-down-9-1::before {\n  content: \"\\f886\"; }\n\n.fa-sort-numeric-desc::before {\n  content: \"\\f886\"; }\n\n.fa-sort-numeric-down-alt::before {\n  content: \"\\f886\"; }\n\n.fa-face-grin-tongue-squint::before {\n  content: \"\\f58a\"; }\n\n.fa-grin-tongue-squint::before {\n  content: \"\\f58a\"; }\n\n.fa-spray-can::before {\n  content: \"\\f5bd\"; }\n\n.fa-truck-monster::before {\n  content: \"\\f63b\"; }\n\n.fa-w::before {\n  content: \"\\57\"; }\n\n.fa-earth-africa::before {\n  content: \"\\f57c\"; }\n\n.fa-globe-africa::before {\n  content: \"\\f57c\"; }\n\n.fa-rainbow::before {\n  content: \"\\f75b\"; }\n\n.fa-circle-notch::before {\n  content: \"\\f1ce\"; }\n\n.fa-tablet-screen-button::before {\n  content: \"\\f3fa\"; }\n\n.fa-tablet-alt::before {\n  content: \"\\f3fa\"; }\n\n.fa-paw::before {\n  content: \"\\f1b0\"; }\n\n.fa-cloud::before {\n  content: \"\\f0c2\"; }\n\n.fa-trowel-bricks::before {\n  content: \"\\e58a\"; }\n\n.fa-face-flushed::before {\n  content: \"\\f579\"; }\n\n.fa-flushed::before {\n  content: \"\\f579\"; }\n\n.fa-hospital-user::before {\n  content: \"\\f80d\"; }\n\n.fa-tent-arrow-left-right::before {\n  content: \"\\e57f\"; }\n\n.fa-gavel::before {\n  content: \"\\f0e3\"; }\n\n.fa-legal::before {\n  content: \"\\f0e3\"; }\n\n.fa-binoculars::before {\n  content: \"\\f1e5\"; }\n\n.fa-microphone-slash::before {\n  content: \"\\f131\"; }\n\n.fa-box-tissue::before {\n  content: \"\\e05b\"; }\n\n.fa-motorcycle::before {\n  content: \"\\f21c\"; }\n\n.fa-bell-concierge::before {\n  content: \"\\f562\"; }\n\n.fa-concierge-bell::before {\n  content: \"\\f562\"; }\n\n.fa-pen-ruler::before {\n  content: \"\\f5ae\"; }\n\n.fa-pencil-ruler::before {\n  content: \"\\f5ae\"; }\n\n.fa-people-arrows::before {\n  content: \"\\e068\"; }\n\n.fa-people-arrows-left-right::before {\n  content: \"\\e068\"; }\n\n.fa-mars-and-venus-burst::before {\n  content: \"\\e523\"; }\n\n.fa-square-caret-right::before {\n  content: \"\\f152\"; }\n\n.fa-caret-square-right::before {\n  content: \"\\f152\"; }\n\n.fa-scissors::before {\n  content: \"\\f0c4\"; }\n\n.fa-cut::before {\n  content: \"\\f0c4\"; }\n\n.fa-sun-plant-wilt::before {\n  content: \"\\e57a\"; }\n\n.fa-toilets-portable::before {\n  content: \"\\e584\"; }\n\n.fa-hockey-puck::before {\n  content: \"\\f453\"; }\n\n.fa-table::before {\n  content: \"\\f0ce\"; }\n\n.fa-magnifying-glass-arrow-right::before {\n  content: \"\\e521\"; }\n\n.fa-tachograph-digital::before {\n  content: \"\\f566\"; }\n\n.fa-digital-tachograph::before {\n  content: \"\\f566\"; }\n\n.fa-users-slash::before {\n  content: \"\\e073\"; }\n\n.fa-clover::before {\n  content: \"\\e139\"; }\n\n.fa-reply::before {\n  content: \"\\f3e5\"; }\n\n.fa-mail-reply::before {\n  content: \"\\f3e5\"; }\n\n.fa-star-and-crescent::before {\n  content: \"\\f699\"; }\n\n.fa-house-fire::before {\n  content: \"\\e50c\"; }\n\n.fa-square-minus::before {\n  content: \"\\f146\"; }\n\n.fa-minus-square::before {\n  content: \"\\f146\"; }\n\n.fa-helicopter::before {\n  content: \"\\f533\"; }\n\n.fa-compass::before {\n  content: \"\\f14e\"; }\n\n.fa-square-caret-down::before {\n  content: \"\\f150\"; }\n\n.fa-caret-square-down::before {\n  content: \"\\f150\"; }\n\n.fa-file-circle-question::before {\n  content: \"\\e4ef\"; }\n\n.fa-laptop-code::before {\n  content: \"\\f5fc\"; }\n\n.fa-swatchbook::before {\n  content: \"\\f5c3\"; }\n\n.fa-prescription-bottle::before {\n  content: \"\\f485\"; }\n\n.fa-bars::before {\n  content: \"\\f0c9\"; }\n\n.fa-navicon::before {\n  content: \"\\f0c9\"; }\n\n.fa-people-group::before {\n  content: \"\\e533\"; }\n\n.fa-hourglass-end::before {\n  content: \"\\f253\"; }\n\n.fa-hourglass-3::before {\n  content: \"\\f253\"; }\n\n.fa-heart-crack::before {\n  content: \"\\f7a9\"; }\n\n.fa-heart-broken::before {\n  content: \"\\f7a9\"; }\n\n.fa-square-up-right::before {\n  content: \"\\f360\"; }\n\n.fa-external-link-square-alt::before {\n  content: \"\\f360\"; }\n\n.fa-face-kiss-beam::before {\n  content: \"\\f597\"; }\n\n.fa-kiss-beam::before {\n  content: \"\\f597\"; }\n\n.fa-film::before {\n  content: \"\\f008\"; }\n\n.fa-ruler-horizontal::before {\n  content: \"\\f547\"; }\n\n.fa-people-robbery::before {\n  content: \"\\e536\"; }\n\n.fa-lightbulb::before {\n  content: \"\\f0eb\"; }\n\n.fa-caret-left::before {\n  content: \"\\f0d9\"; }\n\n.fa-circle-exclamation::before {\n  content: \"\\f06a\"; }\n\n.fa-exclamation-circle::before {\n  content: \"\\f06a\"; }\n\n.fa-school-circle-xmark::before {\n  content: \"\\e56d\"; }\n\n.fa-arrow-right-from-bracket::before {\n  content: \"\\f08b\"; }\n\n.fa-sign-out::before {\n  content: \"\\f08b\"; }\n\n.fa-circle-chevron-down::before {\n  content: \"\\f13a\"; }\n\n.fa-chevron-circle-down::before {\n  content: \"\\f13a\"; }\n\n.fa-unlock-keyhole::before {\n  content: \"\\f13e\"; }\n\n.fa-unlock-alt::before {\n  content: \"\\f13e\"; }\n\n.fa-cloud-showers-heavy::before {\n  content: \"\\f740\"; }\n\n.fa-headphones-simple::before {\n  content: \"\\f58f\"; }\n\n.fa-headphones-alt::before {\n  content: \"\\f58f\"; }\n\n.fa-sitemap::before {\n  content: \"\\f0e8\"; }\n\n.fa-circle-dollar-to-slot::before {\n  content: \"\\f4b9\"; }\n\n.fa-donate::before {\n  content: \"\\f4b9\"; }\n\n.fa-memory::before {\n  content: \"\\f538\"; }\n\n.fa-road-spikes::before {\n  content: \"\\e568\"; }\n\n.fa-fire-burner::before {\n  content: \"\\e4f1\"; }\n\n.fa-flag::before {\n  content: \"\\f024\"; }\n\n.fa-hanukiah::before {\n  content: \"\\f6e6\"; }\n\n.fa-feather::before {\n  content: \"\\f52d\"; }\n\n.fa-volume-low::before {\n  content: \"\\f027\"; }\n\n.fa-volume-down::before {\n  content: \"\\f027\"; }\n\n.fa-comment-slash::before {\n  content: \"\\f4b3\"; }\n\n.fa-cloud-sun-rain::before {\n  content: \"\\f743\"; }\n\n.fa-compress::before {\n  content: \"\\f066\"; }\n\n.fa-wheat-awn::before {\n  content: \"\\e2cd\"; }\n\n.fa-wheat-alt::before {\n  content: \"\\e2cd\"; }\n\n.fa-ankh::before {\n  content: \"\\f644\"; }\n\n.fa-hands-holding-child::before {\n  content: \"\\e4fa\"; }\n\n.fa-asterisk::before {\n  content: \"\\2a\"; }\n\n.fa-square-check::before {\n  content: \"\\f14a\"; }\n\n.fa-check-square::before {\n  content: \"\\f14a\"; }\n\n.fa-peseta-sign::before {\n  content: \"\\e221\"; }\n\n.fa-heading::before {\n  content: \"\\f1dc\"; }\n\n.fa-header::before {\n  content: \"\\f1dc\"; }\n\n.fa-ghost::before {\n  content: \"\\f6e2\"; }\n\n.fa-list::before {\n  content: \"\\f03a\"; }\n\n.fa-list-squares::before {\n  content: \"\\f03a\"; }\n\n.fa-square-phone-flip::before {\n  content: \"\\f87b\"; }\n\n.fa-phone-square-alt::before {\n  content: \"\\f87b\"; }\n\n.fa-cart-plus::before {\n  content: \"\\f217\"; }\n\n.fa-gamepad::before {\n  content: \"\\f11b\"; }\n\n.fa-circle-dot::before {\n  content: \"\\f192\"; }\n\n.fa-dot-circle::before {\n  content: \"\\f192\"; }\n\n.fa-face-dizzy::before {\n  content: \"\\f567\"; }\n\n.fa-dizzy::before {\n  content: \"\\f567\"; }\n\n.fa-egg::before {\n  content: \"\\f7fb\"; }\n\n.fa-house-medical-circle-xmark::before {\n  content: \"\\e513\"; }\n\n.fa-campground::before {\n  content: \"\\f6bb\"; }\n\n.fa-folder-plus::before {\n  content: \"\\f65e\"; }\n\n.fa-futbol::before {\n  content: \"\\f1e3\"; }\n\n.fa-futbol-ball::before {\n  content: \"\\f1e3\"; }\n\n.fa-soccer-ball::before {\n  content: \"\\f1e3\"; }\n\n.fa-paintbrush::before {\n  content: \"\\f1fc\"; }\n\n.fa-paint-brush::before {\n  content: \"\\f1fc\"; }\n\n.fa-lock::before {\n  content: \"\\f023\"; }\n\n.fa-gas-pump::before {\n  content: \"\\f52f\"; }\n\n.fa-hot-tub-person::before {\n  content: \"\\f593\"; }\n\n.fa-hot-tub::before {\n  content: \"\\f593\"; }\n\n.fa-map-location::before {\n  content: \"\\f59f\"; }\n\n.fa-map-marked::before {\n  content: \"\\f59f\"; }\n\n.fa-house-flood-water::before {\n  content: \"\\e50e\"; }\n\n.fa-tree::before {\n  content: \"\\f1bb\"; }\n\n.fa-bridge-lock::before {\n  content: \"\\e4cc\"; }\n\n.fa-sack-dollar::before {\n  content: \"\\f81d\"; }\n\n.fa-pen-to-square::before {\n  content: \"\\f044\"; }\n\n.fa-edit::before {\n  content: \"\\f044\"; }\n\n.fa-car-side::before {\n  content: \"\\f5e4\"; }\n\n.fa-share-nodes::before {\n  content: \"\\f1e0\"; }\n\n.fa-share-alt::before {\n  content: \"\\f1e0\"; }\n\n.fa-heart-circle-minus::before {\n  content: \"\\e4ff\"; }\n\n.fa-hourglass-half::before {\n  content: \"\\f252\"; }\n\n.fa-hourglass-2::before {\n  content: \"\\f252\"; }\n\n.fa-microscope::before {\n  content: \"\\f610\"; }\n\n.fa-sink::before {\n  content: \"\\e06d\"; }\n\n.fa-bag-shopping::before {\n  content: \"\\f290\"; }\n\n.fa-shopping-bag::before {\n  content: \"\\f290\"; }\n\n.fa-arrow-down-z-a::before {\n  content: \"\\f881\"; }\n\n.fa-sort-alpha-desc::before {\n  content: \"\\f881\"; }\n\n.fa-sort-alpha-down-alt::before {\n  content: \"\\f881\"; }\n\n.fa-mitten::before {\n  content: \"\\f7b5\"; }\n\n.fa-person-rays::before {\n  content: \"\\e54d\"; }\n\n.fa-users::before {\n  content: \"\\f0c0\"; }\n\n.fa-eye-slash::before {\n  content: \"\\f070\"; }\n\n.fa-flask-vial::before {\n  content: \"\\e4f3\"; }\n\n.fa-hand::before {\n  content: \"\\f256\"; }\n\n.fa-hand-paper::before {\n  content: \"\\f256\"; }\n\n.fa-om::before {\n  content: \"\\f679\"; }\n\n.fa-worm::before {\n  content: \"\\e599\"; }\n\n.fa-house-circle-xmark::before {\n  content: \"\\e50b\"; }\n\n.fa-plug::before {\n  content: \"\\f1e6\"; }\n\n.fa-chevron-up::before {\n  content: \"\\f077\"; }\n\n.fa-hand-spock::before {\n  content: \"\\f259\"; }\n\n.fa-stopwatch::before {\n  content: \"\\f2f2\"; }\n\n.fa-face-kiss::before {\n  content: \"\\f596\"; }\n\n.fa-kiss::before {\n  content: \"\\f596\"; }\n\n.fa-bridge-circle-xmark::before {\n  content: \"\\e4cb\"; }\n\n.fa-face-grin-tongue::before {\n  content: \"\\f589\"; }\n\n.fa-grin-tongue::before {\n  content: \"\\f589\"; }\n\n.fa-chess-bishop::before {\n  content: \"\\f43a\"; }\n\n.fa-face-grin-wink::before {\n  content: \"\\f58c\"; }\n\n.fa-grin-wink::before {\n  content: \"\\f58c\"; }\n\n.fa-ear-deaf::before {\n  content: \"\\f2a4\"; }\n\n.fa-deaf::before {\n  content: \"\\f2a4\"; }\n\n.fa-deafness::before {\n  content: \"\\f2a4\"; }\n\n.fa-hard-of-hearing::before {\n  content: \"\\f2a4\"; }\n\n.fa-road-circle-check::before {\n  content: \"\\e564\"; }\n\n.fa-dice-five::before {\n  content: \"\\f523\"; }\n\n.fa-square-rss::before {\n  content: \"\\f143\"; }\n\n.fa-rss-square::before {\n  content: \"\\f143\"; }\n\n.fa-land-mine-on::before {\n  content: \"\\e51b\"; }\n\n.fa-i-cursor::before {\n  content: \"\\f246\"; }\n\n.fa-stamp::before {\n  content: \"\\f5bf\"; }\n\n.fa-stairs::before {\n  content: \"\\e289\"; }\n\n.fa-i::before {\n  content: \"\\49\"; }\n\n.fa-hryvnia-sign::before {\n  content: \"\\f6f2\"; }\n\n.fa-hryvnia::before {\n  content: \"\\f6f2\"; }\n\n.fa-pills::before {\n  content: \"\\f484\"; }\n\n.fa-face-grin-wide::before {\n  content: \"\\f581\"; }\n\n.fa-grin-alt::before {\n  content: \"\\f581\"; }\n\n.fa-tooth::before {\n  content: \"\\f5c9\"; }\n\n.fa-v::before {\n  content: \"\\56\"; }\n\n.fa-bangladeshi-taka-sign::before {\n  content: \"\\e2e6\"; }\n\n.fa-bicycle::before {\n  content: \"\\f206\"; }\n\n.fa-staff-snake::before {\n  content: \"\\e579\"; }\n\n.fa-rod-asclepius::before {\n  content: \"\\e579\"; }\n\n.fa-rod-snake::before {\n  content: \"\\e579\"; }\n\n.fa-staff-aesculapius::before {\n  content: \"\\e579\"; }\n\n.fa-head-side-cough-slash::before {\n  content: \"\\e062\"; }\n\n.fa-truck-medical::before {\n  content: \"\\f0f9\"; }\n\n.fa-ambulance::before {\n  content: \"\\f0f9\"; }\n\n.fa-wheat-awn-circle-exclamation::before {\n  content: \"\\e598\"; }\n\n.fa-snowman::before {\n  content: \"\\f7d0\"; }\n\n.fa-mortar-pestle::before {\n  content: \"\\f5a7\"; }\n\n.fa-road-barrier::before {\n  content: \"\\e562\"; }\n\n.fa-school::before {\n  content: \"\\f549\"; }\n\n.fa-igloo::before {\n  content: \"\\f7ae\"; }\n\n.fa-joint::before {\n  content: \"\\f595\"; }\n\n.fa-angle-right::before {\n  content: \"\\f105\"; }\n\n.fa-horse::before {\n  content: \"\\f6f0\"; }\n\n.fa-q::before {\n  content: \"\\51\"; }\n\n.fa-g::before {\n  content: \"\\47\"; }\n\n.fa-notes-medical::before {\n  content: \"\\f481\"; }\n\n.fa-temperature-half::before {\n  content: \"\\f2c9\"; }\n\n.fa-temperature-2::before {\n  content: \"\\f2c9\"; }\n\n.fa-thermometer-2::before {\n  content: \"\\f2c9\"; }\n\n.fa-thermometer-half::before {\n  content: \"\\f2c9\"; }\n\n.fa-dong-sign::before {\n  content: \"\\e169\"; }\n\n.fa-capsules::before {\n  content: \"\\f46b\"; }\n\n.fa-poo-storm::before {\n  content: \"\\f75a\"; }\n\n.fa-poo-bolt::before {\n  content: \"\\f75a\"; }\n\n.fa-face-frown-open::before {\n  content: \"\\f57a\"; }\n\n.fa-frown-open::before {\n  content: \"\\f57a\"; }\n\n.fa-hand-point-up::before {\n  content: \"\\f0a6\"; }\n\n.fa-money-bill::before {\n  content: \"\\f0d6\"; }\n\n.fa-bookmark::before {\n  content: \"\\f02e\"; }\n\n.fa-align-justify::before {\n  content: \"\\f039\"; }\n\n.fa-umbrella-beach::before {\n  content: \"\\f5ca\"; }\n\n.fa-helmet-un::before {\n  content: \"\\e503\"; }\n\n.fa-bullseye::before {\n  content: \"\\f140\"; }\n\n.fa-bacon::before {\n  content: \"\\f7e5\"; }\n\n.fa-hand-point-down::before {\n  content: \"\\f0a7\"; }\n\n.fa-arrow-up-from-bracket::before {\n  content: \"\\e09a\"; }\n\n.fa-folder::before {\n  content: \"\\f07b\"; }\n\n.fa-folder-blank::before {\n  content: \"\\f07b\"; }\n\n.fa-file-waveform::before {\n  content: \"\\f478\"; }\n\n.fa-file-medical-alt::before {\n  content: \"\\f478\"; }\n\n.fa-radiation::before {\n  content: \"\\f7b9\"; }\n\n.fa-chart-simple::before {\n  content: \"\\e473\"; }\n\n.fa-mars-stroke::before {\n  content: \"\\f229\"; }\n\n.fa-vial::before {\n  content: \"\\f492\"; }\n\n.fa-gauge::before {\n  content: \"\\f624\"; }\n\n.fa-dashboard::before {\n  content: \"\\f624\"; }\n\n.fa-gauge-med::before {\n  content: \"\\f624\"; }\n\n.fa-tachometer-alt-average::before {\n  content: \"\\f624\"; }\n\n.fa-wand-magic-sparkles::before {\n  content: \"\\e2ca\"; }\n\n.fa-magic-wand-sparkles::before {\n  content: \"\\e2ca\"; }\n\n.fa-e::before {\n  content: \"\\45\"; }\n\n.fa-pen-clip::before {\n  content: \"\\f305\"; }\n\n.fa-pen-alt::before {\n  content: \"\\f305\"; }\n\n.fa-bridge-circle-exclamation::before {\n  content: \"\\e4ca\"; }\n\n.fa-user::before {\n  content: \"\\f007\"; }\n\n.fa-school-circle-check::before {\n  content: \"\\e56b\"; }\n\n.fa-dumpster::before {\n  content: \"\\f793\"; }\n\n.fa-van-shuttle::before {\n  content: \"\\f5b6\"; }\n\n.fa-shuttle-van::before {\n  content: \"\\f5b6\"; }\n\n.fa-building-user::before {\n  content: \"\\e4da\"; }\n\n.fa-square-caret-left::before {\n  content: \"\\f191\"; }\n\n.fa-caret-square-left::before {\n  content: \"\\f191\"; }\n\n.fa-highlighter::before {\n  content: \"\\f591\"; }\n\n.fa-key::before {\n  content: \"\\f084\"; }\n\n.fa-bullhorn::before {\n  content: \"\\f0a1\"; }\n\n.fa-globe::before {\n  content: \"\\f0ac\"; }\n\n.fa-synagogue::before {\n  content: \"\\f69b\"; }\n\n.fa-person-half-dress::before {\n  content: \"\\e548\"; }\n\n.fa-road-bridge::before {\n  content: \"\\e563\"; }\n\n.fa-location-arrow::before {\n  content: \"\\f124\"; }\n\n.fa-c::before {\n  content: \"\\43\"; }\n\n.fa-tablet-button::before {\n  content: \"\\f10a\"; }\n\n.fa-building-lock::before {\n  content: \"\\e4d6\"; }\n\n.fa-pizza-slice::before {\n  content: \"\\f818\"; }\n\n.fa-money-bill-wave::before {\n  content: \"\\f53a\"; }\n\n.fa-chart-area::before {\n  content: \"\\f1fe\"; }\n\n.fa-area-chart::before {\n  content: \"\\f1fe\"; }\n\n.fa-house-flag::before {\n  content: \"\\e50d\"; }\n\n.fa-person-circle-minus::before {\n  content: \"\\e540\"; }\n\n.fa-ban::before {\n  content: \"\\f05e\"; }\n\n.fa-cancel::before {\n  content: \"\\f05e\"; }\n\n.fa-camera-rotate::before {\n  content: \"\\e0d8\"; }\n\n.fa-spray-can-sparkles::before {\n  content: \"\\f5d0\"; }\n\n.fa-air-freshener::before {\n  content: \"\\f5d0\"; }\n\n.fa-star::before {\n  content: \"\\f005\"; }\n\n.fa-repeat::before {\n  content: \"\\f363\"; }\n\n.fa-cross::before {\n  content: \"\\f654\"; }\n\n.fa-box::before {\n  content: \"\\f466\"; }\n\n.fa-venus-mars::before {\n  content: \"\\f228\"; }\n\n.fa-arrow-pointer::before {\n  content: \"\\f245\"; }\n\n.fa-mouse-pointer::before {\n  content: \"\\f245\"; }\n\n.fa-maximize::before {\n  content: \"\\f31e\"; }\n\n.fa-expand-arrows-alt::before {\n  content: \"\\f31e\"; }\n\n.fa-charging-station::before {\n  content: \"\\f5e7\"; }\n\n.fa-shapes::before {\n  content: \"\\f61f\"; }\n\n.fa-triangle-circle-square::before {\n  content: \"\\f61f\"; }\n\n.fa-shuffle::before {\n  content: \"\\f074\"; }\n\n.fa-random::before {\n  content: \"\\f074\"; }\n\n.fa-person-running::before {\n  content: \"\\f70c\"; }\n\n.fa-running::before {\n  content: \"\\f70c\"; }\n\n.fa-mobile-retro::before {\n  content: \"\\e527\"; }\n\n.fa-grip-lines-vertical::before {\n  content: \"\\f7a5\"; }\n\n.fa-spider::before {\n  content: \"\\f717\"; }\n\n.fa-hands-bound::before {\n  content: \"\\e4f9\"; }\n\n.fa-file-invoice-dollar::before {\n  content: \"\\f571\"; }\n\n.fa-plane-circle-exclamation::before {\n  content: \"\\e556\"; }\n\n.fa-x-ray::before {\n  content: \"\\f497\"; }\n\n.fa-spell-check::before {\n  content: \"\\f891\"; }\n\n.fa-slash::before {\n  content: \"\\f715\"; }\n\n.fa-computer-mouse::before {\n  content: \"\\f8cc\"; }\n\n.fa-mouse::before {\n  content: \"\\f8cc\"; }\n\n.fa-arrow-right-to-bracket::before {\n  content: \"\\f090\"; }\n\n.fa-sign-in::before {\n  content: \"\\f090\"; }\n\n.fa-shop-slash::before {\n  content: \"\\e070\"; }\n\n.fa-store-alt-slash::before {\n  content: \"\\e070\"; }\n\n.fa-server::before {\n  content: \"\\f233\"; }\n\n.fa-virus-covid-slash::before {\n  content: \"\\e4a9\"; }\n\n.fa-shop-lock::before {\n  content: \"\\e4a5\"; }\n\n.fa-hourglass-start::before {\n  content: \"\\f251\"; }\n\n.fa-hourglass-1::before {\n  content: \"\\f251\"; }\n\n.fa-blender-phone::before {\n  content: \"\\f6b6\"; }\n\n.fa-building-wheat::before {\n  content: \"\\e4db\"; }\n\n.fa-person-breastfeeding::before {\n  content: \"\\e53a\"; }\n\n.fa-right-to-bracket::before {\n  content: \"\\f2f6\"; }\n\n.fa-sign-in-alt::before {\n  content: \"\\f2f6\"; }\n\n.fa-venus::before {\n  content: \"\\f221\"; }\n\n.fa-passport::before {\n  content: \"\\f5ab\"; }\n\n.fa-heart-pulse::before {\n  content: \"\\f21e\"; }\n\n.fa-heartbeat::before {\n  content: \"\\f21e\"; }\n\n.fa-people-carry-box::before {\n  content: \"\\f4ce\"; }\n\n.fa-people-carry::before {\n  content: \"\\f4ce\"; }\n\n.fa-temperature-high::before {\n  content: \"\\f769\"; }\n\n.fa-microchip::before {\n  content: \"\\f2db\"; }\n\n.fa-crown::before {\n  content: \"\\f521\"; }\n\n.fa-weight-hanging::before {\n  content: \"\\f5cd\"; }\n\n.fa-xmarks-lines::before {\n  content: \"\\e59a\"; }\n\n.fa-file-prescription::before {\n  content: \"\\f572\"; }\n\n.fa-weight-scale::before {\n  content: \"\\f496\"; }\n\n.fa-weight::before {\n  content: \"\\f496\"; }\n\n.fa-user-group::before {\n  content: \"\\f500\"; }\n\n.fa-user-friends::before {\n  content: \"\\f500\"; }\n\n.fa-arrow-up-a-z::before {\n  content: \"\\f15e\"; }\n\n.fa-sort-alpha-up::before {\n  content: \"\\f15e\"; }\n\n.fa-chess-knight::before {\n  content: \"\\f441\"; }\n\n.fa-face-laugh-squint::before {\n  content: \"\\f59b\"; }\n\n.fa-laugh-squint::before {\n  content: \"\\f59b\"; }\n\n.fa-wheelchair::before {\n  content: \"\\f193\"; }\n\n.fa-circle-arrow-up::before {\n  content: \"\\f0aa\"; }\n\n.fa-arrow-circle-up::before {\n  content: \"\\f0aa\"; }\n\n.fa-toggle-on::before {\n  content: \"\\f205\"; }\n\n.fa-person-walking::before {\n  content: \"\\f554\"; }\n\n.fa-walking::before {\n  content: \"\\f554\"; }\n\n.fa-l::before {\n  content: \"\\4c\"; }\n\n.fa-fire::before {\n  content: \"\\f06d\"; }\n\n.fa-bed-pulse::before {\n  content: \"\\f487\"; }\n\n.fa-procedures::before {\n  content: \"\\f487\"; }\n\n.fa-shuttle-space::before {\n  content: \"\\f197\"; }\n\n.fa-space-shuttle::before {\n  content: \"\\f197\"; }\n\n.fa-face-laugh::before {\n  content: \"\\f599\"; }\n\n.fa-laugh::before {\n  content: \"\\f599\"; }\n\n.fa-folder-open::before {\n  content: \"\\f07c\"; }\n\n.fa-heart-circle-plus::before {\n  content: \"\\e500\"; }\n\n.fa-code-fork::before {\n  content: \"\\e13b\"; }\n\n.fa-city::before {\n  content: \"\\f64f\"; }\n\n.fa-microphone-lines::before {\n  content: \"\\f3c9\"; }\n\n.fa-microphone-alt::before {\n  content: \"\\f3c9\"; }\n\n.fa-pepper-hot::before {\n  content: \"\\f816\"; }\n\n.fa-unlock::before {\n  content: \"\\f09c\"; }\n\n.fa-colon-sign::before {\n  content: \"\\e140\"; }\n\n.fa-headset::before {\n  content: \"\\f590\"; }\n\n.fa-store-slash::before {\n  content: \"\\e071\"; }\n\n.fa-road-circle-xmark::before {\n  content: \"\\e566\"; }\n\n.fa-user-minus::before {\n  content: \"\\f503\"; }\n\n.fa-mars-stroke-up::before {\n  content: \"\\f22a\"; }\n\n.fa-mars-stroke-v::before {\n  content: \"\\f22a\"; }\n\n.fa-champagne-glasses::before {\n  content: \"\\f79f\"; }\n\n.fa-glass-cheers::before {\n  content: \"\\f79f\"; }\n\n.fa-clipboard::before {\n  content: \"\\f328\"; }\n\n.fa-house-circle-exclamation::before {\n  content: \"\\e50a\"; }\n\n.fa-file-arrow-up::before {\n  content: \"\\f574\"; }\n\n.fa-file-upload::before {\n  content: \"\\f574\"; }\n\n.fa-wifi::before {\n  content: \"\\f1eb\"; }\n\n.fa-wifi-3::before {\n  content: \"\\f1eb\"; }\n\n.fa-wifi-strong::before {\n  content: \"\\f1eb\"; }\n\n.fa-bath::before {\n  content: \"\\f2cd\"; }\n\n.fa-bathtub::before {\n  content: \"\\f2cd\"; }\n\n.fa-underline::before {\n  content: \"\\f0cd\"; }\n\n.fa-user-pen::before {\n  content: \"\\f4ff\"; }\n\n.fa-user-edit::before {\n  content: \"\\f4ff\"; }\n\n.fa-signature::before {\n  content: \"\\f5b7\"; }\n\n.fa-stroopwafel::before {\n  content: \"\\f551\"; }\n\n.fa-bold::before {\n  content: \"\\f032\"; }\n\n.fa-anchor-lock::before {\n  content: \"\\e4ad\"; }\n\n.fa-building-ngo::before {\n  content: \"\\e4d7\"; }\n\n.fa-manat-sign::before {\n  content: \"\\e1d5\"; }\n\n.fa-not-equal::before {\n  content: \"\\f53e\"; }\n\n.fa-border-top-left::before {\n  content: \"\\f853\"; }\n\n.fa-border-style::before {\n  content: \"\\f853\"; }\n\n.fa-map-location-dot::before {\n  content: \"\\f5a0\"; }\n\n.fa-map-marked-alt::before {\n  content: \"\\f5a0\"; }\n\n.fa-jedi::before {\n  content: \"\\f669\"; }\n\n.fa-square-poll-vertical::before {\n  content: \"\\f681\"; }\n\n.fa-poll::before {\n  content: \"\\f681\"; }\n\n.fa-mug-hot::before {\n  content: \"\\f7b6\"; }\n\n.fa-car-battery::before {\n  content: \"\\f5df\"; }\n\n.fa-battery-car::before {\n  content: \"\\f5df\"; }\n\n.fa-gift::before {\n  content: \"\\f06b\"; }\n\n.fa-dice-two::before {\n  content: \"\\f528\"; }\n\n.fa-chess-queen::before {\n  content: \"\\f445\"; }\n\n.fa-glasses::before {\n  content: \"\\f530\"; }\n\n.fa-chess-board::before {\n  content: \"\\f43c\"; }\n\n.fa-building-circle-check::before {\n  content: \"\\e4d2\"; }\n\n.fa-person-chalkboard::before {\n  content: \"\\e53d\"; }\n\n.fa-mars-stroke-right::before {\n  content: \"\\f22b\"; }\n\n.fa-mars-stroke-h::before {\n  content: \"\\f22b\"; }\n\n.fa-hand-back-fist::before {\n  content: \"\\f255\"; }\n\n.fa-hand-rock::before {\n  content: \"\\f255\"; }\n\n.fa-square-caret-up::before {\n  content: \"\\f151\"; }\n\n.fa-caret-square-up::before {\n  content: \"\\f151\"; }\n\n.fa-cloud-showers-water::before {\n  content: \"\\e4e4\"; }\n\n.fa-chart-bar::before {\n  content: \"\\f080\"; }\n\n.fa-bar-chart::before {\n  content: \"\\f080\"; }\n\n.fa-hands-bubbles::before {\n  content: \"\\e05e\"; }\n\n.fa-hands-wash::before {\n  content: \"\\e05e\"; }\n\n.fa-less-than-equal::before {\n  content: \"\\f537\"; }\n\n.fa-train::before {\n  content: \"\\f238\"; }\n\n.fa-eye-low-vision::before {\n  content: \"\\f2a8\"; }\n\n.fa-low-vision::before {\n  content: \"\\f2a8\"; }\n\n.fa-crow::before {\n  content: \"\\f520\"; }\n\n.fa-sailboat::before {\n  content: \"\\e445\"; }\n\n.fa-window-restore::before {\n  content: \"\\f2d2\"; }\n\n.fa-square-plus::before {\n  content: \"\\f0fe\"; }\n\n.fa-plus-square::before {\n  content: \"\\f0fe\"; }\n\n.fa-torii-gate::before {\n  content: \"\\f6a1\"; }\n\n.fa-frog::before {\n  content: \"\\f52e\"; }\n\n.fa-bucket::before {\n  content: \"\\e4cf\"; }\n\n.fa-image::before {\n  content: \"\\f03e\"; }\n\n.fa-microphone::before {\n  content: \"\\f130\"; }\n\n.fa-cow::before {\n  content: \"\\f6c8\"; }\n\n.fa-caret-up::before {\n  content: \"\\f0d8\"; }\n\n.fa-screwdriver::before {\n  content: \"\\f54a\"; }\n\n.fa-folder-closed::before {\n  content: \"\\e185\"; }\n\n.fa-house-tsunami::before {\n  content: \"\\e515\"; }\n\n.fa-square-nfi::before {\n  content: \"\\e576\"; }\n\n.fa-arrow-up-from-ground-water::before {\n  content: \"\\e4b5\"; }\n\n.fa-martini-glass::before {\n  content: \"\\f57b\"; }\n\n.fa-glass-martini-alt::before {\n  content: \"\\f57b\"; }\n\n.fa-rotate-left::before {\n  content: \"\\f2ea\"; }\n\n.fa-rotate-back::before {\n  content: \"\\f2ea\"; }\n\n.fa-rotate-backward::before {\n  content: \"\\f2ea\"; }\n\n.fa-undo-alt::before {\n  content: \"\\f2ea\"; }\n\n.fa-table-columns::before {\n  content: \"\\f0db\"; }\n\n.fa-columns::before {\n  content: \"\\f0db\"; }\n\n.fa-lemon::before {\n  content: \"\\f094\"; }\n\n.fa-head-side-mask::before {\n  content: \"\\e063\"; }\n\n.fa-handshake::before {\n  content: \"\\f2b5\"; }\n\n.fa-gem::before {\n  content: \"\\f3a5\"; }\n\n.fa-dolly::before {\n  content: \"\\f472\"; }\n\n.fa-dolly-box::before {\n  content: \"\\f472\"; }\n\n.fa-smoking::before {\n  content: \"\\f48d\"; }\n\n.fa-minimize::before {\n  content: \"\\f78c\"; }\n\n.fa-compress-arrows-alt::before {\n  content: \"\\f78c\"; }\n\n.fa-monument::before {\n  content: \"\\f5a6\"; }\n\n.fa-snowplow::before {\n  content: \"\\f7d2\"; }\n\n.fa-angles-right::before {\n  content: \"\\f101\"; }\n\n.fa-angle-double-right::before {\n  content: \"\\f101\"; }\n\n.fa-cannabis::before {\n  content: \"\\f55f\"; }\n\n.fa-circle-play::before {\n  content: \"\\f144\"; }\n\n.fa-play-circle::before {\n  content: \"\\f144\"; }\n\n.fa-tablets::before {\n  content: \"\\f490\"; }\n\n.fa-ethernet::before {\n  content: \"\\f796\"; }\n\n.fa-euro-sign::before {\n  content: \"\\f153\"; }\n\n.fa-eur::before {\n  content: \"\\f153\"; }\n\n.fa-euro::before {\n  content: \"\\f153\"; }\n\n.fa-chair::before {\n  content: \"\\f6c0\"; }\n\n.fa-circle-check::before {\n  content: \"\\f058\"; }\n\n.fa-check-circle::before {\n  content: \"\\f058\"; }\n\n.fa-circle-stop::before {\n  content: \"\\f28d\"; }\n\n.fa-stop-circle::before {\n  content: \"\\f28d\"; }\n\n.fa-compass-drafting::before {\n  content: \"\\f568\"; }\n\n.fa-drafting-compass::before {\n  content: \"\\f568\"; }\n\n.fa-plate-wheat::before {\n  content: \"\\e55a\"; }\n\n.fa-icicles::before {\n  content: \"\\f7ad\"; }\n\n.fa-person-shelter::before {\n  content: \"\\e54f\"; }\n\n.fa-neuter::before {\n  content: \"\\f22c\"; }\n\n.fa-id-badge::before {\n  content: \"\\f2c1\"; }\n\n.fa-marker::before {\n  content: \"\\f5a1\"; }\n\n.fa-face-laugh-beam::before {\n  content: \"\\f59a\"; }\n\n.fa-laugh-beam::before {\n  content: \"\\f59a\"; }\n\n.fa-helicopter-symbol::before {\n  content: \"\\e502\"; }\n\n.fa-universal-access::before {\n  content: \"\\f29a\"; }\n\n.fa-circle-chevron-up::before {\n  content: \"\\f139\"; }\n\n.fa-chevron-circle-up::before {\n  content: \"\\f139\"; }\n\n.fa-lari-sign::before {\n  content: \"\\e1c8\"; }\n\n.fa-volcano::before {\n  content: \"\\f770\"; }\n\n.fa-person-walking-dashed-line-arrow-right::before {\n  content: \"\\e553\"; }\n\n.fa-sterling-sign::before {\n  content: \"\\f154\"; }\n\n.fa-gbp::before {\n  content: \"\\f154\"; }\n\n.fa-pound-sign::before {\n  content: \"\\f154\"; }\n\n.fa-viruses::before {\n  content: \"\\e076\"; }\n\n.fa-square-person-confined::before {\n  content: \"\\e577\"; }\n\n.fa-user-tie::before {\n  content: \"\\f508\"; }\n\n.fa-arrow-down-long::before {\n  content: \"\\f175\"; }\n\n.fa-long-arrow-down::before {\n  content: \"\\f175\"; }\n\n.fa-tent-arrow-down-to-line::before {\n  content: \"\\e57e\"; }\n\n.fa-certificate::before {\n  content: \"\\f0a3\"; }\n\n.fa-reply-all::before {\n  content: \"\\f122\"; }\n\n.fa-mail-reply-all::before {\n  content: \"\\f122\"; }\n\n.fa-suitcase::before {\n  content: \"\\f0f2\"; }\n\n.fa-person-skating::before {\n  content: \"\\f7c5\"; }\n\n.fa-skating::before {\n  content: \"\\f7c5\"; }\n\n.fa-filter-circle-dollar::before {\n  content: \"\\f662\"; }\n\n.fa-funnel-dollar::before {\n  content: \"\\f662\"; }\n\n.fa-camera-retro::before {\n  content: \"\\f083\"; }\n\n.fa-circle-arrow-down::before {\n  content: \"\\f0ab\"; }\n\n.fa-arrow-circle-down::before {\n  content: \"\\f0ab\"; }\n\n.fa-file-import::before {\n  content: \"\\f56f\"; }\n\n.fa-arrow-right-to-file::before {\n  content: \"\\f56f\"; }\n\n.fa-square-arrow-up-right::before {\n  content: \"\\f14c\"; }\n\n.fa-external-link-square::before {\n  content: \"\\f14c\"; }\n\n.fa-box-open::before {\n  content: \"\\f49e\"; }\n\n.fa-scroll::before {\n  content: \"\\f70e\"; }\n\n.fa-spa::before {\n  content: \"\\f5bb\"; }\n\n.fa-location-pin-lock::before {\n  content: \"\\e51f\"; }\n\n.fa-pause::before {\n  content: \"\\f04c\"; }\n\n.fa-hill-avalanche::before {\n  content: \"\\e507\"; }\n\n.fa-temperature-empty::before {\n  content: \"\\f2cb\"; }\n\n.fa-temperature-0::before {\n  content: \"\\f2cb\"; }\n\n.fa-thermometer-0::before {\n  content: \"\\f2cb\"; }\n\n.fa-thermometer-empty::before {\n  content: \"\\f2cb\"; }\n\n.fa-bomb::before {\n  content: \"\\f1e2\"; }\n\n.fa-registered::before {\n  content: \"\\f25d\"; }\n\n.fa-address-card::before {\n  content: \"\\f2bb\"; }\n\n.fa-contact-card::before {\n  content: \"\\f2bb\"; }\n\n.fa-vcard::before {\n  content: \"\\f2bb\"; }\n\n.fa-scale-unbalanced-flip::before {\n  content: \"\\f516\"; }\n\n.fa-balance-scale-right::before {\n  content: \"\\f516\"; }\n\n.fa-subscript::before {\n  content: \"\\f12c\"; }\n\n.fa-diamond-turn-right::before {\n  content: \"\\f5eb\"; }\n\n.fa-directions::before {\n  content: \"\\f5eb\"; }\n\n.fa-burst::before {\n  content: \"\\e4dc\"; }\n\n.fa-house-laptop::before {\n  content: \"\\e066\"; }\n\n.fa-laptop-house::before {\n  content: \"\\e066\"; }\n\n.fa-face-tired::before {\n  content: \"\\f5c8\"; }\n\n.fa-tired::before {\n  content: \"\\f5c8\"; }\n\n.fa-money-bills::before {\n  content: \"\\e1f3\"; }\n\n.fa-smog::before {\n  content: \"\\f75f\"; }\n\n.fa-crutch::before {\n  content: \"\\f7f7\"; }\n\n.fa-cloud-arrow-up::before {\n  content: \"\\f0ee\"; }\n\n.fa-cloud-upload::before {\n  content: \"\\f0ee\"; }\n\n.fa-cloud-upload-alt::before {\n  content: \"\\f0ee\"; }\n\n.fa-palette::before {\n  content: \"\\f53f\"; }\n\n.fa-arrows-turn-right::before {\n  content: \"\\e4c0\"; }\n\n.fa-vest::before {\n  content: \"\\e085\"; }\n\n.fa-ferry::before {\n  content: \"\\e4ea\"; }\n\n.fa-arrows-down-to-people::before {\n  content: \"\\e4b9\"; }\n\n.fa-seedling::before {\n  content: \"\\f4d8\"; }\n\n.fa-sprout::before {\n  content: \"\\f4d8\"; }\n\n.fa-left-right::before {\n  content: \"\\f337\"; }\n\n.fa-arrows-alt-h::before {\n  content: \"\\f337\"; }\n\n.fa-boxes-packing::before {\n  content: \"\\e4c7\"; }\n\n.fa-circle-arrow-left::before {\n  content: \"\\f0a8\"; }\n\n.fa-arrow-circle-left::before {\n  content: \"\\f0a8\"; }\n\n.fa-group-arrows-rotate::before {\n  content: \"\\e4f6\"; }\n\n.fa-bowl-food::before {\n  content: \"\\e4c6\"; }\n\n.fa-candy-cane::before {\n  content: \"\\f786\"; }\n\n.fa-arrow-down-wide-short::before {\n  content: \"\\f160\"; }\n\n.fa-sort-amount-asc::before {\n  content: \"\\f160\"; }\n\n.fa-sort-amount-down::before {\n  content: \"\\f160\"; }\n\n.fa-cloud-bolt::before {\n  content: \"\\f76c\"; }\n\n.fa-thunderstorm::before {\n  content: \"\\f76c\"; }\n\n.fa-text-slash::before {\n  content: \"\\f87d\"; }\n\n.fa-remove-format::before {\n  content: \"\\f87d\"; }\n\n.fa-face-smile-wink::before {\n  content: \"\\f4da\"; }\n\n.fa-smile-wink::before {\n  content: \"\\f4da\"; }\n\n.fa-file-word::before {\n  content: \"\\f1c2\"; }\n\n.fa-file-powerpoint::before {\n  content: \"\\f1c4\"; }\n\n.fa-arrows-left-right::before {\n  content: \"\\f07e\"; }\n\n.fa-arrows-h::before {\n  content: \"\\f07e\"; }\n\n.fa-house-lock::before {\n  content: \"\\e510\"; }\n\n.fa-cloud-arrow-down::before {\n  content: \"\\f0ed\"; }\n\n.fa-cloud-download::before {\n  content: \"\\f0ed\"; }\n\n.fa-cloud-download-alt::before {\n  content: \"\\f0ed\"; }\n\n.fa-children::before {\n  content: \"\\e4e1\"; }\n\n.fa-chalkboard::before {\n  content: \"\\f51b\"; }\n\n.fa-blackboard::before {\n  content: \"\\f51b\"; }\n\n.fa-user-large-slash::before {\n  content: \"\\f4fa\"; }\n\n.fa-user-alt-slash::before {\n  content: \"\\f4fa\"; }\n\n.fa-envelope-open::before {\n  content: \"\\f2b6\"; }\n\n.fa-handshake-simple-slash::before {\n  content: \"\\e05f\"; }\n\n.fa-handshake-alt-slash::before {\n  content: \"\\e05f\"; }\n\n.fa-mattress-pillow::before {\n  content: \"\\e525\"; }\n\n.fa-guarani-sign::before {\n  content: \"\\e19a\"; }\n\n.fa-arrows-rotate::before {\n  content: \"\\f021\"; }\n\n.fa-refresh::before {\n  content: \"\\f021\"; }\n\n.fa-sync::before {\n  content: \"\\f021\"; }\n\n.fa-fire-extinguisher::before {\n  content: \"\\f134\"; }\n\n.fa-cruzeiro-sign::before {\n  content: \"\\e152\"; }\n\n.fa-greater-than-equal::before {\n  content: \"\\f532\"; }\n\n.fa-shield-halved::before {\n  content: \"\\f3ed\"; }\n\n.fa-shield-alt::before {\n  content: \"\\f3ed\"; }\n\n.fa-book-atlas::before {\n  content: \"\\f558\"; }\n\n.fa-atlas::before {\n  content: \"\\f558\"; }\n\n.fa-virus::before {\n  content: \"\\e074\"; }\n\n.fa-envelope-circle-check::before {\n  content: \"\\e4e8\"; }\n\n.fa-layer-group::before {\n  content: \"\\f5fd\"; }\n\n.fa-arrows-to-dot::before {\n  content: \"\\e4be\"; }\n\n.fa-archway::before {\n  content: \"\\f557\"; }\n\n.fa-heart-circle-check::before {\n  content: \"\\e4fd\"; }\n\n.fa-house-chimney-crack::before {\n  content: \"\\f6f1\"; }\n\n.fa-house-damage::before {\n  content: \"\\f6f1\"; }\n\n.fa-file-zipper::before {\n  content: \"\\f1c6\"; }\n\n.fa-file-archive::before {\n  content: \"\\f1c6\"; }\n\n.fa-square::before {\n  content: \"\\f0c8\"; }\n\n.fa-martini-glass-empty::before {\n  content: \"\\f000\"; }\n\n.fa-glass-martini::before {\n  content: \"\\f000\"; }\n\n.fa-couch::before {\n  content: \"\\f4b8\"; }\n\n.fa-cedi-sign::before {\n  content: \"\\e0df\"; }\n\n.fa-italic::before {\n  content: \"\\f033\"; }\n\n.fa-table-cells-column-lock::before {\n  content: \"\\e678\"; }\n\n.fa-church::before {\n  content: \"\\f51d\"; }\n\n.fa-comments-dollar::before {\n  content: \"\\f653\"; }\n\n.fa-democrat::before {\n  content: \"\\f747\"; }\n\n.fa-z::before {\n  content: \"\\5a\"; }\n\n.fa-person-skiing::before {\n  content: \"\\f7c9\"; }\n\n.fa-skiing::before {\n  content: \"\\f7c9\"; }\n\n.fa-road-lock::before {\n  content: \"\\e567\"; }\n\n.fa-a::before {\n  content: \"\\41\"; }\n\n.fa-temperature-arrow-down::before {\n  content: \"\\e03f\"; }\n\n.fa-temperature-down::before {\n  content: \"\\e03f\"; }\n\n.fa-feather-pointed::before {\n  content: \"\\f56b\"; }\n\n.fa-feather-alt::before {\n  content: \"\\f56b\"; }\n\n.fa-p::before {\n  content: \"\\50\"; }\n\n.fa-snowflake::before {\n  content: \"\\f2dc\"; }\n\n.fa-newspaper::before {\n  content: \"\\f1ea\"; }\n\n.fa-rectangle-ad::before {\n  content: \"\\f641\"; }\n\n.fa-ad::before {\n  content: \"\\f641\"; }\n\n.fa-circle-arrow-right::before {\n  content: \"\\f0a9\"; }\n\n.fa-arrow-circle-right::before {\n  content: \"\\f0a9\"; }\n\n.fa-filter-circle-xmark::before {\n  content: \"\\e17b\"; }\n\n.fa-locust::before {\n  content: \"\\e520\"; }\n\n.fa-sort::before {\n  content: \"\\f0dc\"; }\n\n.fa-unsorted::before {\n  content: \"\\f0dc\"; }\n\n.fa-list-ol::before {\n  content: \"\\f0cb\"; }\n\n.fa-list-1-2::before {\n  content: \"\\f0cb\"; }\n\n.fa-list-numeric::before {\n  content: \"\\f0cb\"; }\n\n.fa-person-dress-burst::before {\n  content: \"\\e544\"; }\n\n.fa-money-check-dollar::before {\n  content: \"\\f53d\"; }\n\n.fa-money-check-alt::before {\n  content: \"\\f53d\"; }\n\n.fa-vector-square::before {\n  content: \"\\f5cb\"; }\n\n.fa-bread-slice::before {\n  content: \"\\f7ec\"; }\n\n.fa-language::before {\n  content: \"\\f1ab\"; }\n\n.fa-face-kiss-wink-heart::before {\n  content: \"\\f598\"; }\n\n.fa-kiss-wink-heart::before {\n  content: \"\\f598\"; }\n\n.fa-filter::before {\n  content: \"\\f0b0\"; }\n\n.fa-question::before {\n  content: \"\\3f\"; }\n\n.fa-file-signature::before {\n  content: \"\\f573\"; }\n\n.fa-up-down-left-right::before {\n  content: \"\\f0b2\"; }\n\n.fa-arrows-alt::before {\n  content: \"\\f0b2\"; }\n\n.fa-house-chimney-user::before {\n  content: \"\\e065\"; }\n\n.fa-hand-holding-heart::before {\n  content: \"\\f4be\"; }\n\n.fa-puzzle-piece::before {\n  content: \"\\f12e\"; }\n\n.fa-money-check::before {\n  content: \"\\f53c\"; }\n\n.fa-star-half-stroke::before {\n  content: \"\\f5c0\"; }\n\n.fa-star-half-alt::before {\n  content: \"\\f5c0\"; }\n\n.fa-code::before {\n  content: \"\\f121\"; }\n\n.fa-whiskey-glass::before {\n  content: \"\\f7a0\"; }\n\n.fa-glass-whiskey::before {\n  content: \"\\f7a0\"; }\n\n.fa-building-circle-exclamation::before {\n  content: \"\\e4d3\"; }\n\n.fa-magnifying-glass-chart::before {\n  content: \"\\e522\"; }\n\n.fa-arrow-up-right-from-square::before {\n  content: \"\\f08e\"; }\n\n.fa-external-link::before {\n  content: \"\\f08e\"; }\n\n.fa-cubes-stacked::before {\n  content: \"\\e4e6\"; }\n\n.fa-won-sign::before {\n  content: \"\\f159\"; }\n\n.fa-krw::before {\n  content: \"\\f159\"; }\n\n.fa-won::before {\n  content: \"\\f159\"; }\n\n.fa-virus-covid::before {\n  content: \"\\e4a8\"; }\n\n.fa-austral-sign::before {\n  content: \"\\e0a9\"; }\n\n.fa-f::before {\n  content: \"\\46\"; }\n\n.fa-leaf::before {\n  content: \"\\f06c\"; }\n\n.fa-road::before {\n  content: \"\\f018\"; }\n\n.fa-taxi::before {\n  content: \"\\f1ba\"; }\n\n.fa-cab::before {\n  content: \"\\f1ba\"; }\n\n.fa-person-circle-plus::before {\n  content: \"\\e541\"; }\n\n.fa-chart-pie::before {\n  content: \"\\f200\"; }\n\n.fa-pie-chart::before {\n  content: \"\\f200\"; }\n\n.fa-bolt-lightning::before {\n  content: \"\\e0b7\"; }\n\n.fa-sack-xmark::before {\n  content: \"\\e56a\"; }\n\n.fa-file-excel::before {\n  content: \"\\f1c3\"; }\n\n.fa-file-contract::before {\n  content: \"\\f56c\"; }\n\n.fa-fish-fins::before {\n  content: \"\\e4f2\"; }\n\n.fa-building-flag::before {\n  content: \"\\e4d5\"; }\n\n.fa-face-grin-beam::before {\n  content: \"\\f582\"; }\n\n.fa-grin-beam::before {\n  content: \"\\f582\"; }\n\n.fa-object-ungroup::before {\n  content: \"\\f248\"; }\n\n.fa-poop::before {\n  content: \"\\f619\"; }\n\n.fa-location-pin::before {\n  content: \"\\f041\"; }\n\n.fa-map-marker::before {\n  content: \"\\f041\"; }\n\n.fa-kaaba::before {\n  content: \"\\f66b\"; }\n\n.fa-toilet-paper::before {\n  content: \"\\f71e\"; }\n\n.fa-helmet-safety::before {\n  content: \"\\f807\"; }\n\n.fa-hard-hat::before {\n  content: \"\\f807\"; }\n\n.fa-hat-hard::before {\n  content: \"\\f807\"; }\n\n.fa-eject::before {\n  content: \"\\f052\"; }\n\n.fa-circle-right::before {\n  content: \"\\f35a\"; }\n\n.fa-arrow-alt-circle-right::before {\n  content: \"\\f35a\"; }\n\n.fa-plane-circle-check::before {\n  content: \"\\e555\"; }\n\n.fa-face-rolling-eyes::before {\n  content: \"\\f5a5\"; }\n\n.fa-meh-rolling-eyes::before {\n  content: \"\\f5a5\"; }\n\n.fa-object-group::before {\n  content: \"\\f247\"; }\n\n.fa-chart-line::before {\n  content: \"\\f201\"; }\n\n.fa-line-chart::before {\n  content: \"\\f201\"; }\n\n.fa-mask-ventilator::before {\n  content: \"\\e524\"; }\n\n.fa-arrow-right::before {\n  content: \"\\f061\"; }\n\n.fa-signs-post::before {\n  content: \"\\f277\"; }\n\n.fa-map-signs::before {\n  content: \"\\f277\"; }\n\n.fa-cash-register::before {\n  content: \"\\f788\"; }\n\n.fa-person-circle-question::before {\n  content: \"\\e542\"; }\n\n.fa-h::before {\n  content: \"\\48\"; }\n\n.fa-tarp::before {\n  content: \"\\e57b\"; }\n\n.fa-screwdriver-wrench::before {\n  content: \"\\f7d9\"; }\n\n.fa-tools::before {\n  content: \"\\f7d9\"; }\n\n.fa-arrows-to-eye::before {\n  content: \"\\e4bf\"; }\n\n.fa-plug-circle-bolt::before {\n  content: \"\\e55b\"; }\n\n.fa-heart::before {\n  content: \"\\f004\"; }\n\n.fa-mars-and-venus::before {\n  content: \"\\f224\"; }\n\n.fa-house-user::before {\n  content: \"\\e1b0\"; }\n\n.fa-home-user::before {\n  content: \"\\e1b0\"; }\n\n.fa-dumpster-fire::before {\n  content: \"\\f794\"; }\n\n.fa-house-crack::before {\n  content: \"\\e3b1\"; }\n\n.fa-martini-glass-citrus::before {\n  content: \"\\f561\"; }\n\n.fa-cocktail::before {\n  content: \"\\f561\"; }\n\n.fa-face-surprise::before {\n  content: \"\\f5c2\"; }\n\n.fa-surprise::before {\n  content: \"\\f5c2\"; }\n\n.fa-bottle-water::before {\n  content: \"\\e4c5\"; }\n\n.fa-circle-pause::before {\n  content: \"\\f28b\"; }\n\n.fa-pause-circle::before {\n  content: \"\\f28b\"; }\n\n.fa-toilet-paper-slash::before {\n  content: \"\\e072\"; }\n\n.fa-apple-whole::before {\n  content: \"\\f5d1\"; }\n\n.fa-apple-alt::before {\n  content: \"\\f5d1\"; }\n\n.fa-kitchen-set::before {\n  content: \"\\e51a\"; }\n\n.fa-r::before {\n  content: \"\\52\"; }\n\n.fa-temperature-quarter::before {\n  content: \"\\f2ca\"; }\n\n.fa-temperature-1::before {\n  content: \"\\f2ca\"; }\n\n.fa-thermometer-1::before {\n  content: \"\\f2ca\"; }\n\n.fa-thermometer-quarter::before {\n  content: \"\\f2ca\"; }\n\n.fa-cube::before {\n  content: \"\\f1b2\"; }\n\n.fa-bitcoin-sign::before {\n  content: \"\\e0b4\"; }\n\n.fa-shield-dog::before {\n  content: \"\\e573\"; }\n\n.fa-solar-panel::before {\n  content: \"\\f5ba\"; }\n\n.fa-lock-open::before {\n  content: \"\\f3c1\"; }\n\n.fa-elevator::before {\n  content: \"\\e16d\"; }\n\n.fa-money-bill-transfer::before {\n  content: \"\\e528\"; }\n\n.fa-money-bill-trend-up::before {\n  content: \"\\e529\"; }\n\n.fa-house-flood-water-circle-arrow-right::before {\n  content: \"\\e50f\"; }\n\n.fa-square-poll-horizontal::before {\n  content: \"\\f682\"; }\n\n.fa-poll-h::before {\n  content: \"\\f682\"; }\n\n.fa-circle::before {\n  content: \"\\f111\"; }\n\n.fa-backward-fast::before {\n  content: \"\\f049\"; }\n\n.fa-fast-backward::before {\n  content: \"\\f049\"; }\n\n.fa-recycle::before {\n  content: \"\\f1b8\"; }\n\n.fa-user-astronaut::before {\n  content: \"\\f4fb\"; }\n\n.fa-plane-slash::before {\n  content: \"\\e069\"; }\n\n.fa-trademark::before {\n  content: \"\\f25c\"; }\n\n.fa-basketball::before {\n  content: \"\\f434\"; }\n\n.fa-basketball-ball::before {\n  content: \"\\f434\"; }\n\n.fa-satellite-dish::before {\n  content: \"\\f7c0\"; }\n\n.fa-circle-up::before {\n  content: \"\\f35b\"; }\n\n.fa-arrow-alt-circle-up::before {\n  content: \"\\f35b\"; }\n\n.fa-mobile-screen-button::before {\n  content: \"\\f3cd\"; }\n\n.fa-mobile-alt::before {\n  content: \"\\f3cd\"; }\n\n.fa-volume-high::before {\n  content: \"\\f028\"; }\n\n.fa-volume-up::before {\n  content: \"\\f028\"; }\n\n.fa-users-rays::before {\n  content: \"\\e593\"; }\n\n.fa-wallet::before {\n  content: \"\\f555\"; }\n\n.fa-clipboard-check::before {\n  content: \"\\f46c\"; }\n\n.fa-file-audio::before {\n  content: \"\\f1c7\"; }\n\n.fa-burger::before {\n  content: \"\\f805\"; }\n\n.fa-hamburger::before {\n  content: \"\\f805\"; }\n\n.fa-wrench::before {\n  content: \"\\f0ad\"; }\n\n.fa-bugs::before {\n  content: \"\\e4d0\"; }\n\n.fa-rupee-sign::before {\n  content: \"\\f156\"; }\n\n.fa-rupee::before {\n  content: \"\\f156\"; }\n\n.fa-file-image::before {\n  content: \"\\f1c5\"; }\n\n.fa-circle-question::before {\n  content: \"\\f059\"; }\n\n.fa-question-circle::before {\n  content: \"\\f059\"; }\n\n.fa-plane-departure::before {\n  content: \"\\f5b0\"; }\n\n.fa-handshake-slash::before {\n  content: \"\\e060\"; }\n\n.fa-book-bookmark::before {\n  content: \"\\e0bb\"; }\n\n.fa-code-branch::before {\n  content: \"\\f126\"; }\n\n.fa-hat-cowboy::before {\n  content: \"\\f8c0\"; }\n\n.fa-bridge::before {\n  content: \"\\e4c8\"; }\n\n.fa-phone-flip::before {\n  content: \"\\f879\"; }\n\n.fa-phone-alt::before {\n  content: \"\\f879\"; }\n\n.fa-truck-front::before {\n  content: \"\\e2b7\"; }\n\n.fa-cat::before {\n  content: \"\\f6be\"; }\n\n.fa-anchor-circle-exclamation::before {\n  content: \"\\e4ab\"; }\n\n.fa-truck-field::before {\n  content: \"\\e58d\"; }\n\n.fa-route::before {\n  content: \"\\f4d7\"; }\n\n.fa-clipboard-question::before {\n  content: \"\\e4e3\"; }\n\n.fa-panorama::before {\n  content: \"\\e209\"; }\n\n.fa-comment-medical::before {\n  content: \"\\f7f5\"; }\n\n.fa-teeth-open::before {\n  content: \"\\f62f\"; }\n\n.fa-file-circle-minus::before {\n  content: \"\\e4ed\"; }\n\n.fa-tags::before {\n  content: \"\\f02c\"; }\n\n.fa-wine-glass::before {\n  content: \"\\f4e3\"; }\n\n.fa-forward-fast::before {\n  content: \"\\f050\"; }\n\n.fa-fast-forward::before {\n  content: \"\\f050\"; }\n\n.fa-face-meh-blank::before {\n  content: \"\\f5a4\"; }\n\n.fa-meh-blank::before {\n  content: \"\\f5a4\"; }\n\n.fa-square-parking::before {\n  content: \"\\f540\"; }\n\n.fa-parking::before {\n  content: \"\\f540\"; }\n\n.fa-house-signal::before {\n  content: \"\\e012\"; }\n\n.fa-bars-progress::before {\n  content: \"\\f828\"; }\n\n.fa-tasks-alt::before {\n  content: \"\\f828\"; }\n\n.fa-faucet-drip::before {\n  content: \"\\e006\"; }\n\n.fa-cart-flatbed::before {\n  content: \"\\f474\"; }\n\n.fa-dolly-flatbed::before {\n  content: \"\\f474\"; }\n\n.fa-ban-smoking::before {\n  content: \"\\f54d\"; }\n\n.fa-smoking-ban::before {\n  content: \"\\f54d\"; }\n\n.fa-terminal::before {\n  content: \"\\f120\"; }\n\n.fa-mobile-button::before {\n  content: \"\\f10b\"; }\n\n.fa-house-medical-flag::before {\n  content: \"\\e514\"; }\n\n.fa-basket-shopping::before {\n  content: \"\\f291\"; }\n\n.fa-shopping-basket::before {\n  content: \"\\f291\"; }\n\n.fa-tape::before {\n  content: \"\\f4db\"; }\n\n.fa-bus-simple::before {\n  content: \"\\f55e\"; }\n\n.fa-bus-alt::before {\n  content: \"\\f55e\"; }\n\n.fa-eye::before {\n  content: \"\\f06e\"; }\n\n.fa-face-sad-cry::before {\n  content: \"\\f5b3\"; }\n\n.fa-sad-cry::before {\n  content: \"\\f5b3\"; }\n\n.fa-audio-description::before {\n  content: \"\\f29e\"; }\n\n.fa-person-military-to-person::before {\n  content: \"\\e54c\"; }\n\n.fa-file-shield::before {\n  content: \"\\e4f0\"; }\n\n.fa-user-slash::before {\n  content: \"\\f506\"; }\n\n.fa-pen::before {\n  content: \"\\f304\"; }\n\n.fa-tower-observation::before {\n  content: \"\\e586\"; }\n\n.fa-file-code::before {\n  content: \"\\f1c9\"; }\n\n.fa-signal::before {\n  content: \"\\f012\"; }\n\n.fa-signal-5::before {\n  content: \"\\f012\"; }\n\n.fa-signal-perfect::before {\n  content: \"\\f012\"; }\n\n.fa-bus::before {\n  content: \"\\f207\"; }\n\n.fa-heart-circle-xmark::before {\n  content: \"\\e501\"; }\n\n.fa-house-chimney::before {\n  content: \"\\e3af\"; }\n\n.fa-home-lg::before {\n  content: \"\\e3af\"; }\n\n.fa-window-maximize::before {\n  content: \"\\f2d0\"; }\n\n.fa-face-frown::before {\n  content: \"\\f119\"; }\n\n.fa-frown::before {\n  content: \"\\f119\"; }\n\n.fa-prescription::before {\n  content: \"\\f5b1\"; }\n\n.fa-shop::before {\n  content: \"\\f54f\"; }\n\n.fa-store-alt::before {\n  content: \"\\f54f\"; }\n\n.fa-floppy-disk::before {\n  content: \"\\f0c7\"; }\n\n.fa-save::before {\n  content: \"\\f0c7\"; }\n\n.fa-vihara::before {\n  content: \"\\f6a7\"; }\n\n.fa-scale-unbalanced::before {\n  content: \"\\f515\"; }\n\n.fa-balance-scale-left::before {\n  content: \"\\f515\"; }\n\n.fa-sort-up::before {\n  content: \"\\f0de\"; }\n\n.fa-sort-asc::before {\n  content: \"\\f0de\"; }\n\n.fa-comment-dots::before {\n  content: \"\\f4ad\"; }\n\n.fa-commenting::before {\n  content: \"\\f4ad\"; }\n\n.fa-plant-wilt::before {\n  content: \"\\e5aa\"; }\n\n.fa-diamond::before {\n  content: \"\\f219\"; }\n\n.fa-face-grin-squint::before {\n  content: \"\\f585\"; }\n\n.fa-grin-squint::before {\n  content: \"\\f585\"; }\n\n.fa-hand-holding-dollar::before {\n  content: \"\\f4c0\"; }\n\n.fa-hand-holding-usd::before {\n  content: \"\\f4c0\"; }\n\n.fa-bacterium::before {\n  content: \"\\e05a\"; }\n\n.fa-hand-pointer::before {\n  content: \"\\f25a\"; }\n\n.fa-drum-steelpan::before {\n  content: \"\\f56a\"; }\n\n.fa-hand-scissors::before {\n  content: \"\\f257\"; }\n\n.fa-hands-praying::before {\n  content: \"\\f684\"; }\n\n.fa-praying-hands::before {\n  content: \"\\f684\"; }\n\n.fa-arrow-rotate-right::before {\n  content: \"\\f01e\"; }\n\n.fa-arrow-right-rotate::before {\n  content: \"\\f01e\"; }\n\n.fa-arrow-rotate-forward::before {\n  content: \"\\f01e\"; }\n\n.fa-redo::before {\n  content: \"\\f01e\"; }\n\n.fa-biohazard::before {\n  content: \"\\f780\"; }\n\n.fa-location-crosshairs::before {\n  content: \"\\f601\"; }\n\n.fa-location::before {\n  content: \"\\f601\"; }\n\n.fa-mars-double::before {\n  content: \"\\f227\"; }\n\n.fa-child-dress::before {\n  content: \"\\e59c\"; }\n\n.fa-users-between-lines::before {\n  content: \"\\e591\"; }\n\n.fa-lungs-virus::before {\n  content: \"\\e067\"; }\n\n.fa-face-grin-tears::before {\n  content: \"\\f588\"; }\n\n.fa-grin-tears::before {\n  content: \"\\f588\"; }\n\n.fa-phone::before {\n  content: \"\\f095\"; }\n\n.fa-calendar-xmark::before {\n  content: \"\\f273\"; }\n\n.fa-calendar-times::before {\n  content: \"\\f273\"; }\n\n.fa-child-reaching::before {\n  content: \"\\e59d\"; }\n\n.fa-head-side-virus::before {\n  content: \"\\e064\"; }\n\n.fa-user-gear::before {\n  content: \"\\f4fe\"; }\n\n.fa-user-cog::before {\n  content: \"\\f4fe\"; }\n\n.fa-arrow-up-1-9::before {\n  content: \"\\f163\"; }\n\n.fa-sort-numeric-up::before {\n  content: \"\\f163\"; }\n\n.fa-door-closed::before {\n  content: \"\\f52a\"; }\n\n.fa-shield-virus::before {\n  content: \"\\e06c\"; }\n\n.fa-dice-six::before {\n  content: \"\\f526\"; }\n\n.fa-mosquito-net::before {\n  content: \"\\e52c\"; }\n\n.fa-bridge-water::before {\n  content: \"\\e4ce\"; }\n\n.fa-person-booth::before {\n  content: \"\\f756\"; }\n\n.fa-text-width::before {\n  content: \"\\f035\"; }\n\n.fa-hat-wizard::before {\n  content: \"\\f6e8\"; }\n\n.fa-pen-fancy::before {\n  content: \"\\f5ac\"; }\n\n.fa-person-digging::before {\n  content: \"\\f85e\"; }\n\n.fa-digging::before {\n  content: \"\\f85e\"; }\n\n.fa-trash::before {\n  content: \"\\f1f8\"; }\n\n.fa-gauge-simple::before {\n  content: \"\\f629\"; }\n\n.fa-gauge-simple-med::before {\n  content: \"\\f629\"; }\n\n.fa-tachometer-average::before {\n  content: \"\\f629\"; }\n\n.fa-book-medical::before {\n  content: \"\\f7e6\"; }\n\n.fa-poo::before {\n  content: \"\\f2fe\"; }\n\n.fa-quote-right::before {\n  content: \"\\f10e\"; }\n\n.fa-quote-right-alt::before {\n  content: \"\\f10e\"; }\n\n.fa-shirt::before {\n  content: \"\\f553\"; }\n\n.fa-t-shirt::before {\n  content: \"\\f553\"; }\n\n.fa-tshirt::before {\n  content: \"\\f553\"; }\n\n.fa-cubes::before {\n  content: \"\\f1b3\"; }\n\n.fa-divide::before {\n  content: \"\\f529\"; }\n\n.fa-tenge-sign::before {\n  content: \"\\f7d7\"; }\n\n.fa-tenge::before {\n  content: \"\\f7d7\"; }\n\n.fa-headphones::before {\n  content: \"\\f025\"; }\n\n.fa-hands-holding::before {\n  content: \"\\f4c2\"; }\n\n.fa-hands-clapping::before {\n  content: \"\\e1a8\"; }\n\n.fa-republican::before {\n  content: \"\\f75e\"; }\n\n.fa-arrow-left::before {\n  content: \"\\f060\"; }\n\n.fa-person-circle-xmark::before {\n  content: \"\\e543\"; }\n\n.fa-ruler::before {\n  content: \"\\f545\"; }\n\n.fa-align-left::before {\n  content: \"\\f036\"; }\n\n.fa-dice-d6::before {\n  content: \"\\f6d1\"; }\n\n.fa-restroom::before {\n  content: \"\\f7bd\"; }\n\n.fa-j::before {\n  content: \"\\4a\"; }\n\n.fa-users-viewfinder::before {\n  content: \"\\e595\"; }\n\n.fa-file-video::before {\n  content: \"\\f1c8\"; }\n\n.fa-up-right-from-square::before {\n  content: \"\\f35d\"; }\n\n.fa-external-link-alt::before {\n  content: \"\\f35d\"; }\n\n.fa-table-cells::before {\n  content: \"\\f00a\"; }\n\n.fa-th::before {\n  content: \"\\f00a\"; }\n\n.fa-file-pdf::before {\n  content: \"\\f1c1\"; }\n\n.fa-book-bible::before {\n  content: \"\\f647\"; }\n\n.fa-bible::before {\n  content: \"\\f647\"; }\n\n.fa-o::before {\n  content: \"\\4f\"; }\n\n.fa-suitcase-medical::before {\n  content: \"\\f0fa\"; }\n\n.fa-medkit::before {\n  content: \"\\f0fa\"; }\n\n.fa-user-secret::before {\n  content: \"\\f21b\"; }\n\n.fa-otter::before {\n  content: \"\\f700\"; }\n\n.fa-person-dress::before {\n  content: \"\\f182\"; }\n\n.fa-female::before {\n  content: \"\\f182\"; }\n\n.fa-comment-dollar::before {\n  content: \"\\f651\"; }\n\n.fa-business-time::before {\n  content: \"\\f64a\"; }\n\n.fa-briefcase-clock::before {\n  content: \"\\f64a\"; }\n\n.fa-table-cells-large::before {\n  content: \"\\f009\"; }\n\n.fa-th-large::before {\n  content: \"\\f009\"; }\n\n.fa-book-tanakh::before {\n  content: \"\\f827\"; }\n\n.fa-tanakh::before {\n  content: \"\\f827\"; }\n\n.fa-phone-volume::before {\n  content: \"\\f2a0\"; }\n\n.fa-volume-control-phone::before {\n  content: \"\\f2a0\"; }\n\n.fa-hat-cowboy-side::before {\n  content: \"\\f8c1\"; }\n\n.fa-clipboard-user::before {\n  content: \"\\f7f3\"; }\n\n.fa-child::before {\n  content: \"\\f1ae\"; }\n\n.fa-lira-sign::before {\n  content: \"\\f195\"; }\n\n.fa-satellite::before {\n  content: \"\\f7bf\"; }\n\n.fa-plane-lock::before {\n  content: \"\\e558\"; }\n\n.fa-tag::before {\n  content: \"\\f02b\"; }\n\n.fa-comment::before {\n  content: \"\\f075\"; }\n\n.fa-cake-candles::before {\n  content: \"\\f1fd\"; }\n\n.fa-birthday-cake::before {\n  content: \"\\f1fd\"; }\n\n.fa-cake::before {\n  content: \"\\f1fd\"; }\n\n.fa-envelope::before {\n  content: \"\\f0e0\"; }\n\n.fa-angles-up::before {\n  content: \"\\f102\"; }\n\n.fa-angle-double-up::before {\n  content: \"\\f102\"; }\n\n.fa-paperclip::before {\n  content: \"\\f0c6\"; }\n\n.fa-arrow-right-to-city::before {\n  content: \"\\e4b3\"; }\n\n.fa-ribbon::before {\n  content: \"\\f4d6\"; }\n\n.fa-lungs::before {\n  content: \"\\f604\"; }\n\n.fa-arrow-up-9-1::before {\n  content: \"\\f887\"; }\n\n.fa-sort-numeric-up-alt::before {\n  content: \"\\f887\"; }\n\n.fa-litecoin-sign::before {\n  content: \"\\e1d3\"; }\n\n.fa-border-none::before {\n  content: \"\\f850\"; }\n\n.fa-circle-nodes::before {\n  content: \"\\e4e2\"; }\n\n.fa-parachute-box::before {\n  content: \"\\f4cd\"; }\n\n.fa-indent::before {\n  content: \"\\f03c\"; }\n\n.fa-truck-field-un::before {\n  content: \"\\e58e\"; }\n\n.fa-hourglass::before {\n  content: \"\\f254\"; }\n\n.fa-hourglass-empty::before {\n  content: \"\\f254\"; }\n\n.fa-mountain::before {\n  content: \"\\f6fc\"; }\n\n.fa-user-doctor::before {\n  content: \"\\f0f0\"; }\n\n.fa-user-md::before {\n  content: \"\\f0f0\"; }\n\n.fa-circle-info::before {\n  content: \"\\f05a\"; }\n\n.fa-info-circle::before {\n  content: \"\\f05a\"; }\n\n.fa-cloud-meatball::before {\n  content: \"\\f73b\"; }\n\n.fa-camera::before {\n  content: \"\\f030\"; }\n\n.fa-camera-alt::before {\n  content: \"\\f030\"; }\n\n.fa-square-virus::before {\n  content: \"\\e578\"; }\n\n.fa-meteor::before {\n  content: \"\\f753\"; }\n\n.fa-car-on::before {\n  content: \"\\e4dd\"; }\n\n.fa-sleigh::before {\n  content: \"\\f7cc\"; }\n\n.fa-arrow-down-1-9::before {\n  content: \"\\f162\"; }\n\n.fa-sort-numeric-asc::before {\n  content: \"\\f162\"; }\n\n.fa-sort-numeric-down::before {\n  content: \"\\f162\"; }\n\n.fa-hand-holding-droplet::before {\n  content: \"\\f4c1\"; }\n\n.fa-hand-holding-water::before {\n  content: \"\\f4c1\"; }\n\n.fa-water::before {\n  content: \"\\f773\"; }\n\n.fa-calendar-check::before {\n  content: \"\\f274\"; }\n\n.fa-braille::before {\n  content: \"\\f2a1\"; }\n\n.fa-prescription-bottle-medical::before {\n  content: \"\\f486\"; }\n\n.fa-prescription-bottle-alt::before {\n  content: \"\\f486\"; }\n\n.fa-landmark::before {\n  content: \"\\f66f\"; }\n\n.fa-truck::before {\n  content: \"\\f0d1\"; }\n\n.fa-crosshairs::before {\n  content: \"\\f05b\"; }\n\n.fa-person-cane::before {\n  content: \"\\e53c\"; }\n\n.fa-tent::before {\n  content: \"\\e57d\"; }\n\n.fa-vest-patches::before {\n  content: \"\\e086\"; }\n\n.fa-check-double::before {\n  content: \"\\f560\"; }\n\n.fa-arrow-down-a-z::before {\n  content: \"\\f15d\"; }\n\n.fa-sort-alpha-asc::before {\n  content: \"\\f15d\"; }\n\n.fa-sort-alpha-down::before {\n  content: \"\\f15d\"; }\n\n.fa-money-bill-wheat::before {\n  content: \"\\e52a\"; }\n\n.fa-cookie::before {\n  content: \"\\f563\"; }\n\n.fa-arrow-rotate-left::before {\n  content: \"\\f0e2\"; }\n\n.fa-arrow-left-rotate::before {\n  content: \"\\f0e2\"; }\n\n.fa-arrow-rotate-back::before {\n  content: \"\\f0e2\"; }\n\n.fa-arrow-rotate-backward::before {\n  content: \"\\f0e2\"; }\n\n.fa-undo::before {\n  content: \"\\f0e2\"; }\n\n.fa-hard-drive::before {\n  content: \"\\f0a0\"; }\n\n.fa-hdd::before {\n  content: \"\\f0a0\"; }\n\n.fa-face-grin-squint-tears::before {\n  content: \"\\f586\"; }\n\n.fa-grin-squint-tears::before {\n  content: \"\\f586\"; }\n\n.fa-dumbbell::before {\n  content: \"\\f44b\"; }\n\n.fa-rectangle-list::before {\n  content: \"\\f022\"; }\n\n.fa-list-alt::before {\n  content: \"\\f022\"; }\n\n.fa-tarp-droplet::before {\n  content: \"\\e57c\"; }\n\n.fa-house-medical-circle-check::before {\n  content: \"\\e511\"; }\n\n.fa-person-skiing-nordic::before {\n  content: \"\\f7ca\"; }\n\n.fa-skiing-nordic::before {\n  content: \"\\f7ca\"; }\n\n.fa-calendar-plus::before {\n  content: \"\\f271\"; }\n\n.fa-plane-arrival::before {\n  content: \"\\f5af\"; }\n\n.fa-circle-left::before {\n  content: \"\\f359\"; }\n\n.fa-arrow-alt-circle-left::before {\n  content: \"\\f359\"; }\n\n.fa-train-subway::before {\n  content: \"\\f239\"; }\n\n.fa-subway::before {\n  content: \"\\f239\"; }\n\n.fa-chart-gantt::before {\n  content: \"\\e0e4\"; }\n\n.fa-indian-rupee-sign::before {\n  content: \"\\e1bc\"; }\n\n.fa-indian-rupee::before {\n  content: \"\\e1bc\"; }\n\n.fa-inr::before {\n  content: \"\\e1bc\"; }\n\n.fa-crop-simple::before {\n  content: \"\\f565\"; }\n\n.fa-crop-alt::before {\n  content: \"\\f565\"; }\n\n.fa-money-bill-1::before {\n  content: \"\\f3d1\"; }\n\n.fa-money-bill-alt::before {\n  content: \"\\f3d1\"; }\n\n.fa-left-long::before {\n  content: \"\\f30a\"; }\n\n.fa-long-arrow-alt-left::before {\n  content: \"\\f30a\"; }\n\n.fa-dna::before {\n  content: \"\\f471\"; }\n\n.fa-virus-slash::before {\n  content: \"\\e075\"; }\n\n.fa-minus::before {\n  content: \"\\f068\"; }\n\n.fa-subtract::before {\n  content: \"\\f068\"; }\n\n.fa-chess::before {\n  content: \"\\f439\"; }\n\n.fa-arrow-left-long::before {\n  content: \"\\f177\"; }\n\n.fa-long-arrow-left::before {\n  content: \"\\f177\"; }\n\n.fa-plug-circle-check::before {\n  content: \"\\e55c\"; }\n\n.fa-street-view::before {\n  content: \"\\f21d\"; }\n\n.fa-franc-sign::before {\n  content: \"\\e18f\"; }\n\n.fa-volume-off::before {\n  content: \"\\f026\"; }\n\n.fa-hands-asl-interpreting::before {\n  content: \"\\f2a3\"; }\n\n.fa-american-sign-language-interpreting::before {\n  content: \"\\f2a3\"; }\n\n.fa-asl-interpreting::before {\n  content: \"\\f2a3\"; }\n\n.fa-hands-american-sign-language-interpreting::before {\n  content: \"\\f2a3\"; }\n\n.fa-gear::before {\n  content: \"\\f013\"; }\n\n.fa-cog::before {\n  content: \"\\f013\"; }\n\n.fa-droplet-slash::before {\n  content: \"\\f5c7\"; }\n\n.fa-tint-slash::before {\n  content: \"\\f5c7\"; }\n\n.fa-mosque::before {\n  content: \"\\f678\"; }\n\n.fa-mosquito::before {\n  content: \"\\e52b\"; }\n\n.fa-star-of-david::before {\n  content: \"\\f69a\"; }\n\n.fa-person-military-rifle::before {\n  content: \"\\e54b\"; }\n\n.fa-cart-shopping::before {\n  content: \"\\f07a\"; }\n\n.fa-shopping-cart::before {\n  content: \"\\f07a\"; }\n\n.fa-vials::before {\n  content: \"\\f493\"; }\n\n.fa-plug-circle-plus::before {\n  content: \"\\e55f\"; }\n\n.fa-place-of-worship::before {\n  content: \"\\f67f\"; }\n\n.fa-grip-vertical::before {\n  content: \"\\f58e\"; }\n\n.fa-arrow-turn-up::before {\n  content: \"\\f148\"; }\n\n.fa-level-up::before {\n  content: \"\\f148\"; }\n\n.fa-u::before {\n  content: \"\\55\"; }\n\n.fa-square-root-variable::before {\n  content: \"\\f698\"; }\n\n.fa-square-root-alt::before {\n  content: \"\\f698\"; }\n\n.fa-clock::before {\n  content: \"\\f017\"; }\n\n.fa-clock-four::before {\n  content: \"\\f017\"; }\n\n.fa-backward-step::before {\n  content: \"\\f048\"; }\n\n.fa-step-backward::before {\n  content: \"\\f048\"; }\n\n.fa-pallet::before {\n  content: \"\\f482\"; }\n\n.fa-faucet::before {\n  content: \"\\e005\"; }\n\n.fa-baseball-bat-ball::before {\n  content: \"\\f432\"; }\n\n.fa-s::before {\n  content: \"\\53\"; }\n\n.fa-timeline::before {\n  content: \"\\e29c\"; }\n\n.fa-keyboard::before {\n  content: \"\\f11c\"; }\n\n.fa-caret-down::before {\n  content: \"\\f0d7\"; }\n\n.fa-house-chimney-medical::before {\n  content: \"\\f7f2\"; }\n\n.fa-clinic-medical::before {\n  content: \"\\f7f2\"; }\n\n.fa-temperature-three-quarters::before {\n  content: \"\\f2c8\"; }\n\n.fa-temperature-3::before {\n  content: \"\\f2c8\"; }\n\n.fa-thermometer-3::before {\n  content: \"\\f2c8\"; }\n\n.fa-thermometer-three-quarters::before {\n  content: \"\\f2c8\"; }\n\n.fa-mobile-screen::before {\n  content: \"\\f3cf\"; }\n\n.fa-mobile-android-alt::before {\n  content: \"\\f3cf\"; }\n\n.fa-plane-up::before {\n  content: \"\\e22d\"; }\n\n.fa-piggy-bank::before {\n  content: \"\\f4d3\"; }\n\n.fa-battery-half::before {\n  content: \"\\f242\"; }\n\n.fa-battery-3::before {\n  content: \"\\f242\"; }\n\n.fa-mountain-city::before {\n  content: \"\\e52e\"; }\n\n.fa-coins::before {\n  content: \"\\f51e\"; }\n\n.fa-khanda::before {\n  content: \"\\f66d\"; }\n\n.fa-sliders::before {\n  content: \"\\f1de\"; }\n\n.fa-sliders-h::before {\n  content: \"\\f1de\"; }\n\n.fa-folder-tree::before {\n  content: \"\\f802\"; }\n\n.fa-network-wired::before {\n  content: \"\\f6ff\"; }\n\n.fa-map-pin::before {\n  content: \"\\f276\"; }\n\n.fa-hamsa::before {\n  content: \"\\f665\"; }\n\n.fa-cent-sign::before {\n  content: \"\\e3f5\"; }\n\n.fa-flask::before {\n  content: \"\\f0c3\"; }\n\n.fa-person-pregnant::before {\n  content: \"\\e31e\"; }\n\n.fa-wand-sparkles::before {\n  content: \"\\f72b\"; }\n\n.fa-ellipsis-vertical::before {\n  content: \"\\f142\"; }\n\n.fa-ellipsis-v::before {\n  content: \"\\f142\"; }\n\n.fa-ticket::before {\n  content: \"\\f145\"; }\n\n.fa-power-off::before {\n  content: \"\\f011\"; }\n\n.fa-right-long::before {\n  content: \"\\f30b\"; }\n\n.fa-long-arrow-alt-right::before {\n  content: \"\\f30b\"; }\n\n.fa-flag-usa::before {\n  content: \"\\f74d\"; }\n\n.fa-laptop-file::before {\n  content: \"\\e51d\"; }\n\n.fa-tty::before {\n  content: \"\\f1e4\"; }\n\n.fa-teletype::before {\n  content: \"\\f1e4\"; }\n\n.fa-diagram-next::before {\n  content: \"\\e476\"; }\n\n.fa-person-rifle::before {\n  content: \"\\e54e\"; }\n\n.fa-house-medical-circle-exclamation::before {\n  content: \"\\e512\"; }\n\n.fa-closed-captioning::before {\n  content: \"\\f20a\"; }\n\n.fa-person-hiking::before {\n  content: \"\\f6ec\"; }\n\n.fa-hiking::before {\n  content: \"\\f6ec\"; }\n\n.fa-venus-double::before {\n  content: \"\\f226\"; }\n\n.fa-images::before {\n  content: \"\\f302\"; }\n\n.fa-calculator::before {\n  content: \"\\f1ec\"; }\n\n.fa-people-pulling::before {\n  content: \"\\e535\"; }\n\n.fa-n::before {\n  content: \"\\4e\"; }\n\n.fa-cable-car::before {\n  content: \"\\f7da\"; }\n\n.fa-tram::before {\n  content: \"\\f7da\"; }\n\n.fa-cloud-rain::before {\n  content: \"\\f73d\"; }\n\n.fa-building-circle-xmark::before {\n  content: \"\\e4d4\"; }\n\n.fa-ship::before {\n  content: \"\\f21a\"; }\n\n.fa-arrows-down-to-line::before {\n  content: \"\\e4b8\"; }\n\n.fa-download::before {\n  content: \"\\f019\"; }\n\n.fa-face-grin::before {\n  content: \"\\f580\"; }\n\n.fa-grin::before {\n  content: \"\\f580\"; }\n\n.fa-delete-left::before {\n  content: \"\\f55a\"; }\n\n.fa-backspace::before {\n  content: \"\\f55a\"; }\n\n.fa-eye-dropper::before {\n  content: \"\\f1fb\"; }\n\n.fa-eye-dropper-empty::before {\n  content: \"\\f1fb\"; }\n\n.fa-eyedropper::before {\n  content: \"\\f1fb\"; }\n\n.fa-file-circle-check::before {\n  content: \"\\e5a0\"; }\n\n.fa-forward::before {\n  content: \"\\f04e\"; }\n\n.fa-mobile::before {\n  content: \"\\f3ce\"; }\n\n.fa-mobile-android::before {\n  content: \"\\f3ce\"; }\n\n.fa-mobile-phone::before {\n  content: \"\\f3ce\"; }\n\n.fa-face-meh::before {\n  content: \"\\f11a\"; }\n\n.fa-meh::before {\n  content: \"\\f11a\"; }\n\n.fa-align-center::before {\n  content: \"\\f037\"; }\n\n.fa-book-skull::before {\n  content: \"\\f6b7\"; }\n\n.fa-book-dead::before {\n  content: \"\\f6b7\"; }\n\n.fa-id-card::before {\n  content: \"\\f2c2\"; }\n\n.fa-drivers-license::before {\n  content: \"\\f2c2\"; }\n\n.fa-outdent::before {\n  content: \"\\f03b\"; }\n\n.fa-dedent::before {\n  content: \"\\f03b\"; }\n\n.fa-heart-circle-exclamation::before {\n  content: \"\\e4fe\"; }\n\n.fa-house::before {\n  content: \"\\f015\"; }\n\n.fa-home::before {\n  content: \"\\f015\"; }\n\n.fa-home-alt::before {\n  content: \"\\f015\"; }\n\n.fa-home-lg-alt::before {\n  content: \"\\f015\"; }\n\n.fa-calendar-week::before {\n  content: \"\\f784\"; }\n\n.fa-laptop-medical::before {\n  content: \"\\f812\"; }\n\n.fa-b::before {\n  content: \"\\42\"; }\n\n.fa-file-medical::before {\n  content: \"\\f477\"; }\n\n.fa-dice-one::before {\n  content: \"\\f525\"; }\n\n.fa-kiwi-bird::before {\n  content: \"\\f535\"; }\n\n.fa-arrow-right-arrow-left::before {\n  content: \"\\f0ec\"; }\n\n.fa-exchange::before {\n  content: \"\\f0ec\"; }\n\n.fa-rotate-right::before {\n  content: \"\\f2f9\"; }\n\n.fa-redo-alt::before {\n  content: \"\\f2f9\"; }\n\n.fa-rotate-forward::before {\n  content: \"\\f2f9\"; }\n\n.fa-utensils::before {\n  content: \"\\f2e7\"; }\n\n.fa-cutlery::before {\n  content: \"\\f2e7\"; }\n\n.fa-arrow-up-wide-short::before {\n  content: \"\\f161\"; }\n\n.fa-sort-amount-up::before {\n  content: \"\\f161\"; }\n\n.fa-mill-sign::before {\n  content: \"\\e1ed\"; }\n\n.fa-bowl-rice::before {\n  content: \"\\e2eb\"; }\n\n.fa-skull::before {\n  content: \"\\f54c\"; }\n\n.fa-tower-broadcast::before {\n  content: \"\\f519\"; }\n\n.fa-broadcast-tower::before {\n  content: \"\\f519\"; }\n\n.fa-truck-pickup::before {\n  content: \"\\f63c\"; }\n\n.fa-up-long::before {\n  content: \"\\f30c\"; }\n\n.fa-long-arrow-alt-up::before {\n  content: \"\\f30c\"; }\n\n.fa-stop::before {\n  content: \"\\f04d\"; }\n\n.fa-code-merge::before {\n  content: \"\\f387\"; }\n\n.fa-upload::before {\n  content: \"\\f093\"; }\n\n.fa-hurricane::before {\n  content: \"\\f751\"; }\n\n.fa-mound::before {\n  content: \"\\e52d\"; }\n\n.fa-toilet-portable::before {\n  content: \"\\e583\"; }\n\n.fa-compact-disc::before {\n  content: \"\\f51f\"; }\n\n.fa-file-arrow-down::before {\n  content: \"\\f56d\"; }\n\n.fa-file-download::before {\n  content: \"\\f56d\"; }\n\n.fa-caravan::before {\n  content: \"\\f8ff\"; }\n\n.fa-shield-cat::before {\n  content: \"\\e572\"; }\n\n.fa-bolt::before {\n  content: \"\\f0e7\"; }\n\n.fa-zap::before {\n  content: \"\\f0e7\"; }\n\n.fa-glass-water::before {\n  content: \"\\e4f4\"; }\n\n.fa-oil-well::before {\n  content: \"\\e532\"; }\n\n.fa-vault::before {\n  content: \"\\e2c5\"; }\n\n.fa-mars::before {\n  content: \"\\f222\"; }\n\n.fa-toilet::before {\n  content: \"\\f7d8\"; }\n\n.fa-plane-circle-xmark::before {\n  content: \"\\e557\"; }\n\n.fa-yen-sign::before {\n  content: \"\\f157\"; }\n\n.fa-cny::before {\n  content: \"\\f157\"; }\n\n.fa-jpy::before {\n  content: \"\\f157\"; }\n\n.fa-rmb::before {\n  content: \"\\f157\"; }\n\n.fa-yen::before {\n  content: \"\\f157\"; }\n\n.fa-ruble-sign::before {\n  content: \"\\f158\"; }\n\n.fa-rouble::before {\n  content: \"\\f158\"; }\n\n.fa-rub::before {\n  content: \"\\f158\"; }\n\n.fa-ruble::before {\n  content: \"\\f158\"; }\n\n.fa-sun::before {\n  content: \"\\f185\"; }\n\n.fa-guitar::before {\n  content: \"\\f7a6\"; }\n\n.fa-face-laugh-wink::before {\n  content: \"\\f59c\"; }\n\n.fa-laugh-wink::before {\n  content: \"\\f59c\"; }\n\n.fa-horse-head::before {\n  content: \"\\f7ab\"; }\n\n.fa-bore-hole::before {\n  content: \"\\e4c3\"; }\n\n.fa-industry::before {\n  content: \"\\f275\"; }\n\n.fa-circle-down::before {\n  content: \"\\f358\"; }\n\n.fa-arrow-alt-circle-down::before {\n  content: \"\\f358\"; }\n\n.fa-arrows-turn-to-dots::before {\n  content: \"\\e4c1\"; }\n\n.fa-florin-sign::before {\n  content: \"\\e184\"; }\n\n.fa-arrow-down-short-wide::before {\n  content: \"\\f884\"; }\n\n.fa-sort-amount-desc::before {\n  content: \"\\f884\"; }\n\n.fa-sort-amount-down-alt::before {\n  content: \"\\f884\"; }\n\n.fa-less-than::before {\n  content: \"\\3c\"; }\n\n.fa-angle-down::before {\n  content: \"\\f107\"; }\n\n.fa-car-tunnel::before {\n  content: \"\\e4de\"; }\n\n.fa-head-side-cough::before {\n  content: \"\\e061\"; }\n\n.fa-grip-lines::before {\n  content: \"\\f7a4\"; }\n\n.fa-thumbs-down::before {\n  content: \"\\f165\"; }\n\n.fa-user-lock::before {\n  content: \"\\f502\"; }\n\n.fa-arrow-right-long::before {\n  content: \"\\f178\"; }\n\n.fa-long-arrow-right::before {\n  content: \"\\f178\"; }\n\n.fa-anchor-circle-xmark::before {\n  content: \"\\e4ac\"; }\n\n.fa-ellipsis::before {\n  content: \"\\f141\"; }\n\n.fa-ellipsis-h::before {\n  content: \"\\f141\"; }\n\n.fa-chess-pawn::before {\n  content: \"\\f443\"; }\n\n.fa-kit-medical::before {\n  content: \"\\f479\"; }\n\n.fa-first-aid::before {\n  content: \"\\f479\"; }\n\n.fa-person-through-window::before {\n  content: \"\\e5a9\"; }\n\n.fa-toolbox::before {\n  content: \"\\f552\"; }\n\n.fa-hands-holding-circle::before {\n  content: \"\\e4fb\"; }\n\n.fa-bug::before {\n  content: \"\\f188\"; }\n\n.fa-credit-card::before {\n  content: \"\\f09d\"; }\n\n.fa-credit-card-alt::before {\n  content: \"\\f09d\"; }\n\n.fa-car::before {\n  content: \"\\f1b9\"; }\n\n.fa-automobile::before {\n  content: \"\\f1b9\"; }\n\n.fa-hand-holding-hand::before {\n  content: \"\\e4f7\"; }\n\n.fa-book-open-reader::before {\n  content: \"\\f5da\"; }\n\n.fa-book-reader::before {\n  content: \"\\f5da\"; }\n\n.fa-mountain-sun::before {\n  content: \"\\e52f\"; }\n\n.fa-arrows-left-right-to-line::before {\n  content: \"\\e4ba\"; }\n\n.fa-dice-d20::before {\n  content: \"\\f6cf\"; }\n\n.fa-truck-droplet::before {\n  content: \"\\e58c\"; }\n\n.fa-file-circle-xmark::before {\n  content: \"\\e5a1\"; }\n\n.fa-temperature-arrow-up::before {\n  content: \"\\e040\"; }\n\n.fa-temperature-up::before {\n  content: \"\\e040\"; }\n\n.fa-medal::before {\n  content: \"\\f5a2\"; }\n\n.fa-bed::before {\n  content: \"\\f236\"; }\n\n.fa-square-h::before {\n  content: \"\\f0fd\"; }\n\n.fa-h-square::before {\n  content: \"\\f0fd\"; }\n\n.fa-podcast::before {\n  content: \"\\f2ce\"; }\n\n.fa-temperature-full::before {\n  content: \"\\f2c7\"; }\n\n.fa-temperature-4::before {\n  content: \"\\f2c7\"; }\n\n.fa-thermometer-4::before {\n  content: \"\\f2c7\"; }\n\n.fa-thermometer-full::before {\n  content: \"\\f2c7\"; }\n\n.fa-bell::before {\n  content: \"\\f0f3\"; }\n\n.fa-superscript::before {\n  content: \"\\f12b\"; }\n\n.fa-plug-circle-xmark::before {\n  content: \"\\e560\"; }\n\n.fa-star-of-life::before {\n  content: \"\\f621\"; }\n\n.fa-phone-slash::before {\n  content: \"\\f3dd\"; }\n\n.fa-paint-roller::before {\n  content: \"\\f5aa\"; }\n\n.fa-handshake-angle::before {\n  content: \"\\f4c4\"; }\n\n.fa-hands-helping::before {\n  content: \"\\f4c4\"; }\n\n.fa-location-dot::before {\n  content: \"\\f3c5\"; }\n\n.fa-map-marker-alt::before {\n  content: \"\\f3c5\"; }\n\n.fa-file::before {\n  content: \"\\f15b\"; }\n\n.fa-greater-than::before {\n  content: \"\\3e\"; }\n\n.fa-person-swimming::before {\n  content: \"\\f5c4\"; }\n\n.fa-swimmer::before {\n  content: \"\\f5c4\"; }\n\n.fa-arrow-down::before {\n  content: \"\\f063\"; }\n\n.fa-droplet::before {\n  content: \"\\f043\"; }\n\n.fa-tint::before {\n  content: \"\\f043\"; }\n\n.fa-eraser::before {\n  content: \"\\f12d\"; }\n\n.fa-earth-americas::before {\n  content: \"\\f57d\"; }\n\n.fa-earth::before {\n  content: \"\\f57d\"; }\n\n.fa-earth-america::before {\n  content: \"\\f57d\"; }\n\n.fa-globe-americas::before {\n  content: \"\\f57d\"; }\n\n.fa-person-burst::before {\n  content: \"\\e53b\"; }\n\n.fa-dove::before {\n  content: \"\\f4ba\"; }\n\n.fa-battery-empty::before {\n  content: \"\\f244\"; }\n\n.fa-battery-0::before {\n  content: \"\\f244\"; }\n\n.fa-socks::before {\n  content: \"\\f696\"; }\n\n.fa-inbox::before {\n  content: \"\\f01c\"; }\n\n.fa-section::before {\n  content: \"\\e447\"; }\n\n.fa-gauge-high::before {\n  content: \"\\f625\"; }\n\n.fa-tachometer-alt::before {\n  content: \"\\f625\"; }\n\n.fa-tachometer-alt-fast::before {\n  content: \"\\f625\"; }\n\n.fa-envelope-open-text::before {\n  content: \"\\f658\"; }\n\n.fa-hospital::before {\n  content: \"\\f0f8\"; }\n\n.fa-hospital-alt::before {\n  content: \"\\f0f8\"; }\n\n.fa-hospital-wide::before {\n  content: \"\\f0f8\"; }\n\n.fa-wine-bottle::before {\n  content: \"\\f72f\"; }\n\n.fa-chess-rook::before {\n  content: \"\\f447\"; }\n\n.fa-bars-staggered::before {\n  content: \"\\f550\"; }\n\n.fa-reorder::before {\n  content: \"\\f550\"; }\n\n.fa-stream::before {\n  content: \"\\f550\"; }\n\n.fa-dharmachakra::before {\n  content: \"\\f655\"; }\n\n.fa-hotdog::before {\n  content: \"\\f80f\"; }\n\n.fa-person-walking-with-cane::before {\n  content: \"\\f29d\"; }\n\n.fa-blind::before {\n  content: \"\\f29d\"; }\n\n.fa-drum::before {\n  content: \"\\f569\"; }\n\n.fa-ice-cream::before {\n  content: \"\\f810\"; }\n\n.fa-heart-circle-bolt::before {\n  content: \"\\e4fc\"; }\n\n.fa-fax::before {\n  content: \"\\f1ac\"; }\n\n.fa-paragraph::before {\n  content: \"\\f1dd\"; }\n\n.fa-check-to-slot::before {\n  content: \"\\f772\"; }\n\n.fa-vote-yea::before {\n  content: \"\\f772\"; }\n\n.fa-star-half::before {\n  content: \"\\f089\"; }\n\n.fa-boxes-stacked::before {\n  content: \"\\f468\"; }\n\n.fa-boxes::before {\n  content: \"\\f468\"; }\n\n.fa-boxes-alt::before {\n  content: \"\\f468\"; }\n\n.fa-link::before {\n  content: \"\\f0c1\"; }\n\n.fa-chain::before {\n  content: \"\\f0c1\"; }\n\n.fa-ear-listen::before {\n  content: \"\\f2a2\"; }\n\n.fa-assistive-listening-systems::before {\n  content: \"\\f2a2\"; }\n\n.fa-tree-city::before {\n  content: \"\\e587\"; }\n\n.fa-play::before {\n  content: \"\\f04b\"; }\n\n.fa-font::before {\n  content: \"\\f031\"; }\n\n.fa-table-cells-row-lock::before {\n  content: \"\\e67a\"; }\n\n.fa-rupiah-sign::before {\n  content: \"\\e23d\"; }\n\n.fa-magnifying-glass::before {\n  content: \"\\f002\"; }\n\n.fa-search::before {\n  content: \"\\f002\"; }\n\n.fa-table-tennis-paddle-ball::before {\n  content: \"\\f45d\"; }\n\n.fa-ping-pong-paddle-ball::before {\n  content: \"\\f45d\"; }\n\n.fa-table-tennis::before {\n  content: \"\\f45d\"; }\n\n.fa-person-dots-from-line::before {\n  content: \"\\f470\"; }\n\n.fa-diagnoses::before {\n  content: \"\\f470\"; }\n\n.fa-trash-can-arrow-up::before {\n  content: \"\\f82a\"; }\n\n.fa-trash-restore-alt::before {\n  content: \"\\f82a\"; }\n\n.fa-naira-sign::before {\n  content: \"\\e1f6\"; }\n\n.fa-cart-arrow-down::before {\n  content: \"\\f218\"; }\n\n.fa-walkie-talkie::before {\n  content: \"\\f8ef\"; }\n\n.fa-file-pen::before {\n  content: \"\\f31c\"; }\n\n.fa-file-edit::before {\n  content: \"\\f31c\"; }\n\n.fa-receipt::before {\n  content: \"\\f543\"; }\n\n.fa-square-pen::before {\n  content: \"\\f14b\"; }\n\n.fa-pen-square::before {\n  content: \"\\f14b\"; }\n\n.fa-pencil-square::before {\n  content: \"\\f14b\"; }\n\n.fa-suitcase-rolling::before {\n  content: \"\\f5c1\"; }\n\n.fa-person-circle-exclamation::before {\n  content: \"\\e53f\"; }\n\n.fa-chevron-down::before {\n  content: \"\\f078\"; }\n\n.fa-battery-full::before {\n  content: \"\\f240\"; }\n\n.fa-battery::before {\n  content: \"\\f240\"; }\n\n.fa-battery-5::before {\n  content: \"\\f240\"; }\n\n.fa-skull-crossbones::before {\n  content: \"\\f714\"; }\n\n.fa-code-compare::before {\n  content: \"\\e13a\"; }\n\n.fa-list-ul::before {\n  content: \"\\f0ca\"; }\n\n.fa-list-dots::before {\n  content: \"\\f0ca\"; }\n\n.fa-school-lock::before {\n  content: \"\\e56f\"; }\n\n.fa-tower-cell::before {\n  content: \"\\e585\"; }\n\n.fa-down-long::before {\n  content: \"\\f309\"; }\n\n.fa-long-arrow-alt-down::before {\n  content: \"\\f309\"; }\n\n.fa-ranking-star::before {\n  content: \"\\e561\"; }\n\n.fa-chess-king::before {\n  content: \"\\f43f\"; }\n\n.fa-person-harassing::before {\n  content: \"\\e549\"; }\n\n.fa-brazilian-real-sign::before {\n  content: \"\\e46c\"; }\n\n.fa-landmark-dome::before {\n  content: \"\\f752\"; }\n\n.fa-landmark-alt::before {\n  content: \"\\f752\"; }\n\n.fa-arrow-up::before {\n  content: \"\\f062\"; }\n\n.fa-tv::before {\n  content: \"\\f26c\"; }\n\n.fa-television::before {\n  content: \"\\f26c\"; }\n\n.fa-tv-alt::before {\n  content: \"\\f26c\"; }\n\n.fa-shrimp::before {\n  content: \"\\e448\"; }\n\n.fa-list-check::before {\n  content: \"\\f0ae\"; }\n\n.fa-tasks::before {\n  content: \"\\f0ae\"; }\n\n.fa-jug-detergent::before {\n  content: \"\\e519\"; }\n\n.fa-circle-user::before {\n  content: \"\\f2bd\"; }\n\n.fa-user-circle::before {\n  content: \"\\f2bd\"; }\n\n.fa-user-shield::before {\n  content: \"\\f505\"; }\n\n.fa-wind::before {\n  content: \"\\f72e\"; }\n\n.fa-car-burst::before {\n  content: \"\\f5e1\"; }\n\n.fa-car-crash::before {\n  content: \"\\f5e1\"; }\n\n.fa-y::before {\n  content: \"\\59\"; }\n\n.fa-person-snowboarding::before {\n  content: \"\\f7ce\"; }\n\n.fa-snowboarding::before {\n  content: \"\\f7ce\"; }\n\n.fa-truck-fast::before {\n  content: \"\\f48b\"; }\n\n.fa-shipping-fast::before {\n  content: \"\\f48b\"; }\n\n.fa-fish::before {\n  content: \"\\f578\"; }\n\n.fa-user-graduate::before {\n  content: \"\\f501\"; }\n\n.fa-circle-half-stroke::before {\n  content: \"\\f042\"; }\n\n.fa-adjust::before {\n  content: \"\\f042\"; }\n\n.fa-clapperboard::before {\n  content: \"\\e131\"; }\n\n.fa-circle-radiation::before {\n  content: \"\\f7ba\"; }\n\n.fa-radiation-alt::before {\n  content: \"\\f7ba\"; }\n\n.fa-baseball::before {\n  content: \"\\f433\"; }\n\n.fa-baseball-ball::before {\n  content: \"\\f433\"; }\n\n.fa-jet-fighter-up::before {\n  content: \"\\e518\"; }\n\n.fa-diagram-project::before {\n  content: \"\\f542\"; }\n\n.fa-project-diagram::before {\n  content: \"\\f542\"; }\n\n.fa-copy::before {\n  content: \"\\f0c5\"; }\n\n.fa-volume-xmark::before {\n  content: \"\\f6a9\"; }\n\n.fa-volume-mute::before {\n  content: \"\\f6a9\"; }\n\n.fa-volume-times::before {\n  content: \"\\f6a9\"; }\n\n.fa-hand-sparkles::before {\n  content: \"\\e05d\"; }\n\n.fa-grip::before {\n  content: \"\\f58d\"; }\n\n.fa-grip-horizontal::before {\n  content: \"\\f58d\"; }\n\n.fa-share-from-square::before {\n  content: \"\\f14d\"; }\n\n.fa-share-square::before {\n  content: \"\\f14d\"; }\n\n.fa-child-combatant::before {\n  content: \"\\e4e0\"; }\n\n.fa-child-rifle::before {\n  content: \"\\e4e0\"; }\n\n.fa-gun::before {\n  content: \"\\e19b\"; }\n\n.fa-square-phone::before {\n  content: \"\\f098\"; }\n\n.fa-phone-square::before {\n  content: \"\\f098\"; }\n\n.fa-plus::before {\n  content: \"\\2b\"; }\n\n.fa-add::before {\n  content: \"\\2b\"; }\n\n.fa-expand::before {\n  content: \"\\f065\"; }\n\n.fa-computer::before {\n  content: \"\\e4e5\"; }\n\n.fa-xmark::before {\n  content: \"\\f00d\"; }\n\n.fa-close::before {\n  content: \"\\f00d\"; }\n\n.fa-multiply::before {\n  content: \"\\f00d\"; }\n\n.fa-remove::before {\n  content: \"\\f00d\"; }\n\n.fa-times::before {\n  content: \"\\f00d\"; }\n\n.fa-arrows-up-down-left-right::before {\n  content: \"\\f047\"; }\n\n.fa-arrows::before {\n  content: \"\\f047\"; }\n\n.fa-chalkboard-user::before {\n  content: \"\\f51c\"; }\n\n.fa-chalkboard-teacher::before {\n  content: \"\\f51c\"; }\n\n.fa-peso-sign::before {\n  content: \"\\e222\"; }\n\n.fa-building-shield::before {\n  content: \"\\e4d8\"; }\n\n.fa-baby::before {\n  content: \"\\f77c\"; }\n\n.fa-users-line::before {\n  content: \"\\e592\"; }\n\n.fa-quote-left::before {\n  content: \"\\f10d\"; }\n\n.fa-quote-left-alt::before {\n  content: \"\\f10d\"; }\n\n.fa-tractor::before {\n  content: \"\\f722\"; }\n\n.fa-trash-arrow-up::before {\n  content: \"\\f829\"; }\n\n.fa-trash-restore::before {\n  content: \"\\f829\"; }\n\n.fa-arrow-down-up-lock::before {\n  content: \"\\e4b0\"; }\n\n.fa-lines-leaning::before {\n  content: \"\\e51e\"; }\n\n.fa-ruler-combined::before {\n  content: \"\\f546\"; }\n\n.fa-copyright::before {\n  content: \"\\f1f9\"; }\n\n.fa-equals::before {\n  content: \"\\3d\"; }\n\n.fa-blender::before {\n  content: \"\\f517\"; }\n\n.fa-teeth::before {\n  content: \"\\f62e\"; }\n\n.fa-shekel-sign::before {\n  content: \"\\f20b\"; }\n\n.fa-ils::before {\n  content: \"\\f20b\"; }\n\n.fa-shekel::before {\n  content: \"\\f20b\"; }\n\n.fa-sheqel::before {\n  content: \"\\f20b\"; }\n\n.fa-sheqel-sign::before {\n  content: \"\\f20b\"; }\n\n.fa-map::before {\n  content: \"\\f279\"; }\n\n.fa-rocket::before {\n  content: \"\\f135\"; }\n\n.fa-photo-film::before {\n  content: \"\\f87c\"; }\n\n.fa-photo-video::before {\n  content: \"\\f87c\"; }\n\n.fa-folder-minus::before {\n  content: \"\\f65d\"; }\n\n.fa-store::before {\n  content: \"\\f54e\"; }\n\n.fa-arrow-trend-up::before {\n  content: \"\\e098\"; }\n\n.fa-plug-circle-minus::before {\n  content: \"\\e55e\"; }\n\n.fa-sign-hanging::before {\n  content: \"\\f4d9\"; }\n\n.fa-sign::before {\n  content: \"\\f4d9\"; }\n\n.fa-bezier-curve::before {\n  content: \"\\f55b\"; }\n\n.fa-bell-slash::before {\n  content: \"\\f1f6\"; }\n\n.fa-tablet::before {\n  content: \"\\f3fb\"; }\n\n.fa-tablet-android::before {\n  content: \"\\f3fb\"; }\n\n.fa-school-flag::before {\n  content: \"\\e56e\"; }\n\n.fa-fill::before {\n  content: \"\\f575\"; }\n\n.fa-angle-up::before {\n  content: \"\\f106\"; }\n\n.fa-drumstick-bite::before {\n  content: \"\\f6d7\"; }\n\n.fa-holly-berry::before {\n  content: \"\\f7aa\"; }\n\n.fa-chevron-left::before {\n  content: \"\\f053\"; }\n\n.fa-bacteria::before {\n  content: \"\\e059\"; }\n\n.fa-hand-lizard::before {\n  content: \"\\f258\"; }\n\n.fa-notdef::before {\n  content: \"\\e1fe\"; }\n\n.fa-disease::before {\n  content: \"\\f7fa\"; }\n\n.fa-briefcase-medical::before {\n  content: \"\\f469\"; }\n\n.fa-genderless::before {\n  content: \"\\f22d\"; }\n\n.fa-chevron-right::before {\n  content: \"\\f054\"; }\n\n.fa-retweet::before {\n  content: \"\\f079\"; }\n\n.fa-car-rear::before {\n  content: \"\\f5de\"; }\n\n.fa-car-alt::before {\n  content: \"\\f5de\"; }\n\n.fa-pump-soap::before {\n  content: \"\\e06b\"; }\n\n.fa-video-slash::before {\n  content: \"\\f4e2\"; }\n\n.fa-battery-quarter::before {\n  content: \"\\f243\"; }\n\n.fa-battery-2::before {\n  content: \"\\f243\"; }\n\n.fa-radio::before {\n  content: \"\\f8d7\"; }\n\n.fa-baby-carriage::before {\n  content: \"\\f77d\"; }\n\n.fa-carriage-baby::before {\n  content: \"\\f77d\"; }\n\n.fa-traffic-light::before {\n  content: \"\\f637\"; }\n\n.fa-thermometer::before {\n  content: \"\\f491\"; }\n\n.fa-vr-cardboard::before {\n  content: \"\\f729\"; }\n\n.fa-hand-middle-finger::before {\n  content: \"\\f806\"; }\n\n.fa-percent::before {\n  content: \"\\25\"; }\n\n.fa-percentage::before {\n  content: \"\\25\"; }\n\n.fa-truck-moving::before {\n  content: \"\\f4df\"; }\n\n.fa-glass-water-droplet::before {\n  content: \"\\e4f5\"; }\n\n.fa-display::before {\n  content: \"\\e163\"; }\n\n.fa-face-smile::before {\n  content: \"\\f118\"; }\n\n.fa-smile::before {\n  content: \"\\f118\"; }\n\n.fa-thumbtack::before {\n  content: \"\\f08d\"; }\n\n.fa-thumb-tack::before {\n  content: \"\\f08d\"; }\n\n.fa-trophy::before {\n  content: \"\\f091\"; }\n\n.fa-person-praying::before {\n  content: \"\\f683\"; }\n\n.fa-pray::before {\n  content: \"\\f683\"; }\n\n.fa-hammer::before {\n  content: \"\\f6e3\"; }\n\n.fa-hand-peace::before {\n  content: \"\\f25b\"; }\n\n.fa-rotate::before {\n  content: \"\\f2f1\"; }\n\n.fa-sync-alt::before {\n  content: \"\\f2f1\"; }\n\n.fa-spinner::before {\n  content: \"\\f110\"; }\n\n.fa-robot::before {\n  content: \"\\f544\"; }\n\n.fa-peace::before {\n  content: \"\\f67c\"; }\n\n.fa-gears::before {\n  content: \"\\f085\"; }\n\n.fa-cogs::before {\n  content: \"\\f085\"; }\n\n.fa-warehouse::before {\n  content: \"\\f494\"; }\n\n.fa-arrow-up-right-dots::before {\n  content: \"\\e4b7\"; }\n\n.fa-splotch::before {\n  content: \"\\f5bc\"; }\n\n.fa-face-grin-hearts::before {\n  content: \"\\f584\"; }\n\n.fa-grin-hearts::before {\n  content: \"\\f584\"; }\n\n.fa-dice-four::before {\n  content: \"\\f524\"; }\n\n.fa-sim-card::before {\n  content: \"\\f7c4\"; }\n\n.fa-transgender::before {\n  content: \"\\f225\"; }\n\n.fa-transgender-alt::before {\n  content: \"\\f225\"; }\n\n.fa-mercury::before {\n  content: \"\\f223\"; }\n\n.fa-arrow-turn-down::before {\n  content: \"\\f149\"; }\n\n.fa-level-down::before {\n  content: \"\\f149\"; }\n\n.fa-person-falling-burst::before {\n  content: \"\\e547\"; }\n\n.fa-award::before {\n  content: \"\\f559\"; }\n\n.fa-ticket-simple::before {\n  content: \"\\f3ff\"; }\n\n.fa-ticket-alt::before {\n  content: \"\\f3ff\"; }\n\n.fa-building::before {\n  content: \"\\f1ad\"; }\n\n.fa-angles-left::before {\n  content: \"\\f100\"; }\n\n.fa-angle-double-left::before {\n  content: \"\\f100\"; }\n\n.fa-qrcode::before {\n  content: \"\\f029\"; }\n\n.fa-clock-rotate-left::before {\n  content: \"\\f1da\"; }\n\n.fa-history::before {\n  content: \"\\f1da\"; }\n\n.fa-face-grin-beam-sweat::before {\n  content: \"\\f583\"; }\n\n.fa-grin-beam-sweat::before {\n  content: \"\\f583\"; }\n\n.fa-file-export::before {\n  content: \"\\f56e\"; }\n\n.fa-arrow-right-from-file::before {\n  content: \"\\f56e\"; }\n\n.fa-shield::before {\n  content: \"\\f132\"; }\n\n.fa-shield-blank::before {\n  content: \"\\f132\"; }\n\n.fa-arrow-up-short-wide::before {\n  content: \"\\f885\"; }\n\n.fa-sort-amount-up-alt::before {\n  content: \"\\f885\"; }\n\n.fa-house-medical::before {\n  content: \"\\e3b2\"; }\n\n.fa-golf-ball-tee::before {\n  content: \"\\f450\"; }\n\n.fa-golf-ball::before {\n  content: \"\\f450\"; }\n\n.fa-circle-chevron-left::before {\n  content: \"\\f137\"; }\n\n.fa-chevron-circle-left::before {\n  content: \"\\f137\"; }\n\n.fa-house-chimney-window::before {\n  content: \"\\e00d\"; }\n\n.fa-pen-nib::before {\n  content: \"\\f5ad\"; }\n\n.fa-tent-arrow-turn-left::before {\n  content: \"\\e580\"; }\n\n.fa-tents::before {\n  content: \"\\e582\"; }\n\n.fa-wand-magic::before {\n  content: \"\\f0d0\"; }\n\n.fa-magic::before {\n  content: \"\\f0d0\"; }\n\n.fa-dog::before {\n  content: \"\\f6d3\"; }\n\n.fa-carrot::before {\n  content: \"\\f787\"; }\n\n.fa-moon::before {\n  content: \"\\f186\"; }\n\n.fa-wine-glass-empty::before {\n  content: \"\\f5ce\"; }\n\n.fa-wine-glass-alt::before {\n  content: \"\\f5ce\"; }\n\n.fa-cheese::before {\n  content: \"\\f7ef\"; }\n\n.fa-yin-yang::before {\n  content: \"\\f6ad\"; }\n\n.fa-music::before {\n  content: \"\\f001\"; }\n\n.fa-code-commit::before {\n  content: \"\\f386\"; }\n\n.fa-temperature-low::before {\n  content: \"\\f76b\"; }\n\n.fa-person-biking::before {\n  content: \"\\f84a\"; }\n\n.fa-biking::before {\n  content: \"\\f84a\"; }\n\n.fa-broom::before {\n  content: \"\\f51a\"; }\n\n.fa-shield-heart::before {\n  content: \"\\e574\"; }\n\n.fa-gopuram::before {\n  content: \"\\f664\"; }\n\n.fa-earth-oceania::before {\n  content: \"\\e47b\"; }\n\n.fa-globe-oceania::before {\n  content: \"\\e47b\"; }\n\n.fa-square-xmark::before {\n  content: \"\\f2d3\"; }\n\n.fa-times-square::before {\n  content: \"\\f2d3\"; }\n\n.fa-xmark-square::before {\n  content: \"\\f2d3\"; }\n\n.fa-hashtag::before {\n  content: \"\\23\"; }\n\n.fa-up-right-and-down-left-from-center::before {\n  content: \"\\f424\"; }\n\n.fa-expand-alt::before {\n  content: \"\\f424\"; }\n\n.fa-oil-can::before {\n  content: \"\\f613\"; }\n\n.fa-t::before {\n  content: \"\\54\"; }\n\n.fa-hippo::before {\n  content: \"\\f6ed\"; }\n\n.fa-chart-column::before {\n  content: \"\\e0e3\"; }\n\n.fa-infinity::before {\n  content: \"\\f534\"; }\n\n.fa-vial-circle-check::before {\n  content: \"\\e596\"; }\n\n.fa-person-arrow-down-to-line::before {\n  content: \"\\e538\"; }\n\n.fa-voicemail::before {\n  content: \"\\f897\"; }\n\n.fa-fan::before {\n  content: \"\\f863\"; }\n\n.fa-person-walking-luggage::before {\n  content: \"\\e554\"; }\n\n.fa-up-down::before {\n  content: \"\\f338\"; }\n\n.fa-arrows-alt-v::before {\n  content: \"\\f338\"; }\n\n.fa-cloud-moon-rain::before {\n  content: \"\\f73c\"; }\n\n.fa-calendar::before {\n  content: \"\\f133\"; }\n\n.fa-trailer::before {\n  content: \"\\e041\"; }\n\n.fa-bahai::before {\n  content: \"\\f666\"; }\n\n.fa-haykal::before {\n  content: \"\\f666\"; }\n\n.fa-sd-card::before {\n  content: \"\\f7c2\"; }\n\n.fa-dragon::before {\n  content: \"\\f6d5\"; }\n\n.fa-shoe-prints::before {\n  content: \"\\f54b\"; }\n\n.fa-circle-plus::before {\n  content: \"\\f055\"; }\n\n.fa-plus-circle::before {\n  content: \"\\f055\"; }\n\n.fa-face-grin-tongue-wink::before {\n  content: \"\\f58b\"; }\n\n.fa-grin-tongue-wink::before {\n  content: \"\\f58b\"; }\n\n.fa-hand-holding::before {\n  content: \"\\f4bd\"; }\n\n.fa-plug-circle-exclamation::before {\n  content: \"\\e55d\"; }\n\n.fa-link-slash::before {\n  content: \"\\f127\"; }\n\n.fa-chain-broken::before {\n  content: \"\\f127\"; }\n\n.fa-chain-slash::before {\n  content: \"\\f127\"; }\n\n.fa-unlink::before {\n  content: \"\\f127\"; }\n\n.fa-clone::before {\n  content: \"\\f24d\"; }\n\n.fa-person-walking-arrow-loop-left::before {\n  content: \"\\e551\"; }\n\n.fa-arrow-up-z-a::before {\n  content: \"\\f882\"; }\n\n.fa-sort-alpha-up-alt::before {\n  content: \"\\f882\"; }\n\n.fa-fire-flame-curved::before {\n  content: \"\\f7e4\"; }\n\n.fa-fire-alt::before {\n  content: \"\\f7e4\"; }\n\n.fa-tornado::before {\n  content: \"\\f76f\"; }\n\n.fa-file-circle-plus::before {\n  content: \"\\e494\"; }\n\n.fa-book-quran::before {\n  content: \"\\f687\"; }\n\n.fa-quran::before {\n  content: \"\\f687\"; }\n\n.fa-anchor::before {\n  content: \"\\f13d\"; }\n\n.fa-border-all::before {\n  content: \"\\f84c\"; }\n\n.fa-face-angry::before {\n  content: \"\\f556\"; }\n\n.fa-angry::before {\n  content: \"\\f556\"; }\n\n.fa-cookie-bite::before {\n  content: \"\\f564\"; }\n\n.fa-arrow-trend-down::before {\n  content: \"\\e097\"; }\n\n.fa-rss::before {\n  content: \"\\f09e\"; }\n\n.fa-feed::before {\n  content: \"\\f09e\"; }\n\n.fa-draw-polygon::before {\n  content: \"\\f5ee\"; }\n\n.fa-scale-balanced::before {\n  content: \"\\f24e\"; }\n\n.fa-balance-scale::before {\n  content: \"\\f24e\"; }\n\n.fa-gauge-simple-high::before {\n  content: \"\\f62a\"; }\n\n.fa-tachometer::before {\n  content: \"\\f62a\"; }\n\n.fa-tachometer-fast::before {\n  content: \"\\f62a\"; }\n\n.fa-shower::before {\n  content: \"\\f2cc\"; }\n\n.fa-desktop::before {\n  content: \"\\f390\"; }\n\n.fa-desktop-alt::before {\n  content: \"\\f390\"; }\n\n.fa-m::before {\n  content: \"\\4d\"; }\n\n.fa-table-list::before {\n  content: \"\\f00b\"; }\n\n.fa-th-list::before {\n  content: \"\\f00b\"; }\n\n.fa-comment-sms::before {\n  content: \"\\f7cd\"; }\n\n.fa-sms::before {\n  content: \"\\f7cd\"; }\n\n.fa-book::before {\n  content: \"\\f02d\"; }\n\n.fa-user-plus::before {\n  content: \"\\f234\"; }\n\n.fa-check::before {\n  content: \"\\f00c\"; }\n\n.fa-battery-three-quarters::before {\n  content: \"\\f241\"; }\n\n.fa-battery-4::before {\n  content: \"\\f241\"; }\n\n.fa-house-circle-check::before {\n  content: \"\\e509\"; }\n\n.fa-angle-left::before {\n  content: \"\\f104\"; }\n\n.fa-diagram-successor::before {\n  content: \"\\e47a\"; }\n\n.fa-truck-arrow-right::before {\n  content: \"\\e58b\"; }\n\n.fa-arrows-split-up-and-left::before {\n  content: \"\\e4bc\"; }\n\n.fa-hand-fist::before {\n  content: \"\\f6de\"; }\n\n.fa-fist-raised::before {\n  content: \"\\f6de\"; }\n\n.fa-cloud-moon::before {\n  content: \"\\f6c3\"; }\n\n.fa-briefcase::before {\n  content: \"\\f0b1\"; }\n\n.fa-person-falling::before {\n  content: \"\\e546\"; }\n\n.fa-image-portrait::before {\n  content: \"\\f3e0\"; }\n\n.fa-portrait::before {\n  content: \"\\f3e0\"; }\n\n.fa-user-tag::before {\n  content: \"\\f507\"; }\n\n.fa-rug::before {\n  content: \"\\e569\"; }\n\n.fa-earth-europe::before {\n  content: \"\\f7a2\"; }\n\n.fa-globe-europe::before {\n  content: \"\\f7a2\"; }\n\n.fa-cart-flatbed-suitcase::before {\n  content: \"\\f59d\"; }\n\n.fa-luggage-cart::before {\n  content: \"\\f59d\"; }\n\n.fa-rectangle-xmark::before {\n  content: \"\\f410\"; }\n\n.fa-rectangle-times::before {\n  content: \"\\f410\"; }\n\n.fa-times-rectangle::before {\n  content: \"\\f410\"; }\n\n.fa-window-close::before {\n  content: \"\\f410\"; }\n\n.fa-baht-sign::before {\n  content: \"\\e0ac\"; }\n\n.fa-book-open::before {\n  content: \"\\f518\"; }\n\n.fa-book-journal-whills::before {\n  content: \"\\f66a\"; }\n\n.fa-journal-whills::before {\n  content: \"\\f66a\"; }\n\n.fa-handcuffs::before {\n  content: \"\\e4f8\"; }\n\n.fa-triangle-exclamation::before {\n  content: \"\\f071\"; }\n\n.fa-exclamation-triangle::before {\n  content: \"\\f071\"; }\n\n.fa-warning::before {\n  content: \"\\f071\"; }\n\n.fa-database::before {\n  content: \"\\f1c0\"; }\n\n.fa-share::before {\n  content: \"\\f064\"; }\n\n.fa-mail-forward::before {\n  content: \"\\f064\"; }\n\n.fa-bottle-droplet::before {\n  content: \"\\e4c4\"; }\n\n.fa-mask-face::before {\n  content: \"\\e1d7\"; }\n\n.fa-hill-rockslide::before {\n  content: \"\\e508\"; }\n\n.fa-right-left::before {\n  content: \"\\f362\"; }\n\n.fa-exchange-alt::before {\n  content: \"\\f362\"; }\n\n.fa-paper-plane::before {\n  content: \"\\f1d8\"; }\n\n.fa-road-circle-exclamation::before {\n  content: \"\\e565\"; }\n\n.fa-dungeon::before {\n  content: \"\\f6d9\"; }\n\n.fa-align-right::before {\n  content: \"\\f038\"; }\n\n.fa-money-bill-1-wave::before {\n  content: \"\\f53b\"; }\n\n.fa-money-bill-wave-alt::before {\n  content: \"\\f53b\"; }\n\n.fa-life-ring::before {\n  content: \"\\f1cd\"; }\n\n.fa-hands::before {\n  content: \"\\f2a7\"; }\n\n.fa-sign-language::before {\n  content: \"\\f2a7\"; }\n\n.fa-signing::before {\n  content: \"\\f2a7\"; }\n\n.fa-calendar-day::before {\n  content: \"\\f783\"; }\n\n.fa-water-ladder::before {\n  content: \"\\f5c5\"; }\n\n.fa-ladder-water::before {\n  content: \"\\f5c5\"; }\n\n.fa-swimming-pool::before {\n  content: \"\\f5c5\"; }\n\n.fa-arrows-up-down::before {\n  content: \"\\f07d\"; }\n\n.fa-arrows-v::before {\n  content: \"\\f07d\"; }\n\n.fa-face-grimace::before {\n  content: \"\\f57f\"; }\n\n.fa-grimace::before {\n  content: \"\\f57f\"; }\n\n.fa-wheelchair-move::before {\n  content: \"\\e2ce\"; }\n\n.fa-wheelchair-alt::before {\n  content: \"\\e2ce\"; }\n\n.fa-turn-down::before {\n  content: \"\\f3be\"; }\n\n.fa-level-down-alt::before {\n  content: \"\\f3be\"; }\n\n.fa-person-walking-arrow-right::before {\n  content: \"\\e552\"; }\n\n.fa-square-envelope::before {\n  content: \"\\f199\"; }\n\n.fa-envelope-square::before {\n  content: \"\\f199\"; }\n\n.fa-dice::before {\n  content: \"\\f522\"; }\n\n.fa-bowling-ball::before {\n  content: \"\\f436\"; }\n\n.fa-brain::before {\n  content: \"\\f5dc\"; }\n\n.fa-bandage::before {\n  content: \"\\f462\"; }\n\n.fa-band-aid::before {\n  content: \"\\f462\"; }\n\n.fa-calendar-minus::before {\n  content: \"\\f272\"; }\n\n.fa-circle-xmark::before {\n  content: \"\\f057\"; }\n\n.fa-times-circle::before {\n  content: \"\\f057\"; }\n\n.fa-xmark-circle::before {\n  content: \"\\f057\"; }\n\n.fa-gifts::before {\n  content: \"\\f79c\"; }\n\n.fa-hotel::before {\n  content: \"\\f594\"; }\n\n.fa-earth-asia::before {\n  content: \"\\f57e\"; }\n\n.fa-globe-asia::before {\n  content: \"\\f57e\"; }\n\n.fa-id-card-clip::before {\n  content: \"\\f47f\"; }\n\n.fa-id-card-alt::before {\n  content: \"\\f47f\"; }\n\n.fa-magnifying-glass-plus::before {\n  content: \"\\f00e\"; }\n\n.fa-search-plus::before {\n  content: \"\\f00e\"; }\n\n.fa-thumbs-up::before {\n  content: \"\\f164\"; }\n\n.fa-user-clock::before {\n  content: \"\\f4fd\"; }\n\n.fa-hand-dots::before {\n  content: \"\\f461\"; }\n\n.fa-allergies::before {\n  content: \"\\f461\"; }\n\n.fa-file-invoice::before {\n  content: \"\\f570\"; }\n\n.fa-window-minimize::before {\n  content: \"\\f2d1\"; }\n\n.fa-mug-saucer::before {\n  content: \"\\f0f4\"; }\n\n.fa-coffee::before {\n  content: \"\\f0f4\"; }\n\n.fa-brush::before {\n  content: \"\\f55d\"; }\n\n.fa-mask::before {\n  content: \"\\f6fa\"; }\n\n.fa-magnifying-glass-minus::before {\n  content: \"\\f010\"; }\n\n.fa-search-minus::before {\n  content: \"\\f010\"; }\n\n.fa-ruler-vertical::before {\n  content: \"\\f548\"; }\n\n.fa-user-large::before {\n  content: \"\\f406\"; }\n\n.fa-user-alt::before {\n  content: \"\\f406\"; }\n\n.fa-train-tram::before {\n  content: \"\\e5b4\"; }\n\n.fa-user-nurse::before {\n  content: \"\\f82f\"; }\n\n.fa-syringe::before {\n  content: \"\\f48e\"; }\n\n.fa-cloud-sun::before {\n  content: \"\\f6c4\"; }\n\n.fa-stopwatch-20::before {\n  content: \"\\e06f\"; }\n\n.fa-square-full::before {\n  content: \"\\f45c\"; }\n\n.fa-magnet::before {\n  content: \"\\f076\"; }\n\n.fa-jar::before {\n  content: \"\\e516\"; }\n\n.fa-note-sticky::before {\n  content: \"\\f249\"; }\n\n.fa-sticky-note::before {\n  content: \"\\f249\"; }\n\n.fa-bug-slash::before {\n  content: \"\\e490\"; }\n\n.fa-arrow-up-from-water-pump::before {\n  content: \"\\e4b6\"; }\n\n.fa-bone::before {\n  content: \"\\f5d7\"; }\n\n.fa-user-injured::before {\n  content: \"\\f728\"; }\n\n.fa-face-sad-tear::before {\n  content: \"\\f5b4\"; }\n\n.fa-sad-tear::before {\n  content: \"\\f5b4\"; }\n\n.fa-plane::before {\n  content: \"\\f072\"; }\n\n.fa-tent-arrows-down::before {\n  content: \"\\e581\"; }\n\n.fa-exclamation::before {\n  content: \"\\21\"; }\n\n.fa-arrows-spin::before {\n  content: \"\\e4bb\"; }\n\n.fa-print::before {\n  content: \"\\f02f\"; }\n\n.fa-turkish-lira-sign::before {\n  content: \"\\e2bb\"; }\n\n.fa-try::before {\n  content: \"\\e2bb\"; }\n\n.fa-turkish-lira::before {\n  content: \"\\e2bb\"; }\n\n.fa-dollar-sign::before {\n  content: \"\\24\"; }\n\n.fa-dollar::before {\n  content: \"\\24\"; }\n\n.fa-usd::before {\n  content: \"\\24\"; }\n\n.fa-x::before {\n  content: \"\\58\"; }\n\n.fa-magnifying-glass-dollar::before {\n  content: \"\\f688\"; }\n\n.fa-search-dollar::before {\n  content: \"\\f688\"; }\n\n.fa-users-gear::before {\n  content: \"\\f509\"; }\n\n.fa-users-cog::before {\n  content: \"\\f509\"; }\n\n.fa-person-military-pointing::before {\n  content: \"\\e54a\"; }\n\n.fa-building-columns::before {\n  content: \"\\f19c\"; }\n\n.fa-bank::before {\n  content: \"\\f19c\"; }\n\n.fa-institution::before {\n  content: \"\\f19c\"; }\n\n.fa-museum::before {\n  content: \"\\f19c\"; }\n\n.fa-university::before {\n  content: \"\\f19c\"; }\n\n.fa-umbrella::before {\n  content: \"\\f0e9\"; }\n\n.fa-trowel::before {\n  content: \"\\e589\"; }\n\n.fa-d::before {\n  content: \"\\44\"; }\n\n.fa-stapler::before {\n  content: \"\\e5af\"; }\n\n.fa-masks-theater::before {\n  content: \"\\f630\"; }\n\n.fa-theater-masks::before {\n  content: \"\\f630\"; }\n\n.fa-kip-sign::before {\n  content: \"\\e1c4\"; }\n\n.fa-hand-point-left::before {\n  content: \"\\f0a5\"; }\n\n.fa-handshake-simple::before {\n  content: \"\\f4c6\"; }\n\n.fa-handshake-alt::before {\n  content: \"\\f4c6\"; }\n\n.fa-jet-fighter::before {\n  content: \"\\f0fb\"; }\n\n.fa-fighter-jet::before {\n  content: \"\\f0fb\"; }\n\n.fa-square-share-nodes::before {\n  content: \"\\f1e1\"; }\n\n.fa-share-alt-square::before {\n  content: \"\\f1e1\"; }\n\n.fa-barcode::before {\n  content: \"\\f02a\"; }\n\n.fa-plus-minus::before {\n  content: \"\\e43c\"; }\n\n.fa-video::before {\n  content: \"\\f03d\"; }\n\n.fa-video-camera::before {\n  content: \"\\f03d\"; }\n\n.fa-graduation-cap::before {\n  content: \"\\f19d\"; }\n\n.fa-mortar-board::before {\n  content: \"\\f19d\"; }\n\n.fa-hand-holding-medical::before {\n  content: \"\\e05c\"; }\n\n.fa-person-circle-check::before {\n  content: \"\\e53e\"; }\n\n.fa-turn-up::before {\n  content: \"\\f3bf\"; }\n\n.fa-level-up-alt::before {\n  content: \"\\f3bf\"; }\n\n.sr-only,\n.fa-sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  white-space: nowrap;\n  border-width: 0; }\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  white-space: nowrap;\n  border-width: 0; }\n:root, :host {\n  --fa-style-family-brands: 'Font Awesome 6 Brands';\n  --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; }\n\n@font-face {\n  font-family: 'Font Awesome 6 Brands';\n  font-style: normal;\n  font-weight: 400;\n  font-display: block;\n  src: url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\"); }\n\n.fab,\n.fa-brands {\n  font-weight: 400; }\n\n.fa-monero:before {\n  content: \"\\f3d0\"; }\n\n.fa-hooli:before {\n  content: \"\\f427\"; }\n\n.fa-yelp:before {\n  content: \"\\f1e9\"; }\n\n.fa-cc-visa:before {\n  content: \"\\f1f0\"; }\n\n.fa-lastfm:before {\n  content: \"\\f202\"; }\n\n.fa-shopware:before {\n  content: \"\\f5b5\"; }\n\n.fa-creative-commons-nc:before {\n  content: \"\\f4e8\"; }\n\n.fa-aws:before {\n  content: \"\\f375\"; }\n\n.fa-redhat:before {\n  content: \"\\f7bc\"; }\n\n.fa-yoast:before {\n  content: \"\\f2b1\"; }\n\n.fa-cloudflare:before {\n  content: \"\\e07d\"; }\n\n.fa-ups:before {\n  content: \"\\f7e0\"; }\n\n.fa-pixiv:before {\n  content: \"\\e640\"; }\n\n.fa-wpexplorer:before {\n  content: \"\\f2de\"; }\n\n.fa-dyalog:before {\n  content: \"\\f399\"; }\n\n.fa-bity:before {\n  content: \"\\f37a\"; }\n\n.fa-stackpath:before {\n  content: \"\\f842\"; }\n\n.fa-buysellads:before {\n  content: \"\\f20d\"; }\n\n.fa-first-order:before {\n  content: \"\\f2b0\"; }\n\n.fa-modx:before {\n  content: \"\\f285\"; }\n\n.fa-guilded:before {\n  content: \"\\e07e\"; }\n\n.fa-vnv:before {\n  content: \"\\f40b\"; }\n\n.fa-square-js:before {\n  content: \"\\f3b9\"; }\n\n.fa-js-square:before {\n  content: \"\\f3b9\"; }\n\n.fa-microsoft:before {\n  content: \"\\f3ca\"; }\n\n.fa-qq:before {\n  content: \"\\f1d6\"; }\n\n.fa-orcid:before {\n  content: \"\\f8d2\"; }\n\n.fa-java:before {\n  content: \"\\f4e4\"; }\n\n.fa-invision:before {\n  content: \"\\f7b0\"; }\n\n.fa-creative-commons-pd-alt:before {\n  content: \"\\f4ed\"; }\n\n.fa-centercode:before {\n  content: \"\\f380\"; }\n\n.fa-glide-g:before {\n  content: \"\\f2a6\"; }\n\n.fa-drupal:before {\n  content: \"\\f1a9\"; }\n\n.fa-jxl:before {\n  content: \"\\e67b\"; }\n\n.fa-hire-a-helper:before {\n  content: \"\\f3b0\"; }\n\n.fa-creative-commons-by:before {\n  content: \"\\f4e7\"; }\n\n.fa-unity:before {\n  content: \"\\e049\"; }\n\n.fa-whmcs:before {\n  content: \"\\f40d\"; }\n\n.fa-rocketchat:before {\n  content: \"\\f3e8\"; }\n\n.fa-vk:before {\n  content: \"\\f189\"; }\n\n.fa-untappd:before {\n  content: \"\\f405\"; }\n\n.fa-mailchimp:before {\n  content: \"\\f59e\"; }\n\n.fa-css3-alt:before {\n  content: \"\\f38b\"; }\n\n.fa-square-reddit:before {\n  content: \"\\f1a2\"; }\n\n.fa-reddit-square:before {\n  content: \"\\f1a2\"; }\n\n.fa-vimeo-v:before {\n  content: \"\\f27d\"; }\n\n.fa-contao:before {\n  content: \"\\f26d\"; }\n\n.fa-square-font-awesome:before {\n  content: \"\\e5ad\"; }\n\n.fa-deskpro:before {\n  content: \"\\f38f\"; }\n\n.fa-brave:before {\n  content: \"\\e63c\"; }\n\n.fa-sistrix:before {\n  content: \"\\f3ee\"; }\n\n.fa-square-instagram:before {\n  content: \"\\e055\"; }\n\n.fa-instagram-square:before {\n  content: \"\\e055\"; }\n\n.fa-battle-net:before {\n  content: \"\\f835\"; }\n\n.fa-the-red-yeti:before {\n  content: \"\\f69d\"; }\n\n.fa-square-hacker-news:before {\n  content: \"\\f3af\"; }\n\n.fa-hacker-news-square:before {\n  content: \"\\f3af\"; }\n\n.fa-edge:before {\n  content: \"\\f282\"; }\n\n.fa-threads:before {\n  content: \"\\e618\"; }\n\n.fa-napster:before {\n  content: \"\\f3d2\"; }\n\n.fa-square-snapchat:before {\n  content: \"\\f2ad\"; }\n\n.fa-snapchat-square:before {\n  content: \"\\f2ad\"; }\n\n.fa-google-plus-g:before {\n  content: \"\\f0d5\"; }\n\n.fa-artstation:before {\n  content: \"\\f77a\"; }\n\n.fa-markdown:before {\n  content: \"\\f60f\"; }\n\n.fa-sourcetree:before {\n  content: \"\\f7d3\"; }\n\n.fa-google-plus:before {\n  content: \"\\f2b3\"; }\n\n.fa-diaspora:before {\n  content: \"\\f791\"; }\n\n.fa-foursquare:before {\n  content: \"\\f180\"; }\n\n.fa-stack-overflow:before {\n  content: \"\\f16c\"; }\n\n.fa-github-alt:before {\n  content: \"\\f113\"; }\n\n.fa-phoenix-squadron:before {\n  content: \"\\f511\"; }\n\n.fa-pagelines:before {\n  content: \"\\f18c\"; }\n\n.fa-algolia:before {\n  content: \"\\f36c\"; }\n\n.fa-red-river:before {\n  content: \"\\f3e3\"; }\n\n.fa-creative-commons-sa:before {\n  content: \"\\f4ef\"; }\n\n.fa-safari:before {\n  content: \"\\f267\"; }\n\n.fa-google:before {\n  content: \"\\f1a0\"; }\n\n.fa-square-font-awesome-stroke:before {\n  content: \"\\f35c\"; }\n\n.fa-font-awesome-alt:before {\n  content: \"\\f35c\"; }\n\n.fa-atlassian:before {\n  content: \"\\f77b\"; }\n\n.fa-linkedin-in:before {\n  content: \"\\f0e1\"; }\n\n.fa-digital-ocean:before {\n  content: \"\\f391\"; }\n\n.fa-nimblr:before {\n  content: \"\\f5a8\"; }\n\n.fa-chromecast:before {\n  content: \"\\f838\"; }\n\n.fa-evernote:before {\n  content: \"\\f839\"; }\n\n.fa-hacker-news:before {\n  content: \"\\f1d4\"; }\n\n.fa-creative-commons-sampling:before {\n  content: \"\\f4f0\"; }\n\n.fa-adversal:before {\n  content: \"\\f36a\"; }\n\n.fa-creative-commons:before {\n  content: \"\\f25e\"; }\n\n.fa-watchman-monitoring:before {\n  content: \"\\e087\"; }\n\n.fa-fonticons:before {\n  content: \"\\f280\"; }\n\n.fa-weixin:before {\n  content: \"\\f1d7\"; }\n\n.fa-shirtsinbulk:before {\n  content: \"\\f214\"; }\n\n.fa-codepen:before {\n  content: \"\\f1cb\"; }\n\n.fa-git-alt:before {\n  content: \"\\f841\"; }\n\n.fa-lyft:before {\n  content: \"\\f3c3\"; }\n\n.fa-rev:before {\n  content: \"\\f5b2\"; }\n\n.fa-windows:before {\n  content: \"\\f17a\"; }\n\n.fa-wizards-of-the-coast:before {\n  content: \"\\f730\"; }\n\n.fa-square-viadeo:before {\n  content: \"\\f2aa\"; }\n\n.fa-viadeo-square:before {\n  content: \"\\f2aa\"; }\n\n.fa-meetup:before {\n  content: \"\\f2e0\"; }\n\n.fa-centos:before {\n  content: \"\\f789\"; }\n\n.fa-adn:before {\n  content: \"\\f170\"; }\n\n.fa-cloudsmith:before {\n  content: \"\\f384\"; }\n\n.fa-opensuse:before {\n  content: \"\\e62b\"; }\n\n.fa-pied-piper-alt:before {\n  content: \"\\f1a8\"; }\n\n.fa-square-dribbble:before {\n  content: \"\\f397\"; }\n\n.fa-dribbble-square:before {\n  content: \"\\f397\"; }\n\n.fa-codiepie:before {\n  content: \"\\f284\"; }\n\n.fa-node:before {\n  content: \"\\f419\"; }\n\n.fa-mix:before {\n  content: \"\\f3cb\"; }\n\n.fa-steam:before {\n  content: \"\\f1b6\"; }\n\n.fa-cc-apple-pay:before {\n  content: \"\\f416\"; }\n\n.fa-scribd:before {\n  content: \"\\f28a\"; }\n\n.fa-debian:before {\n  content: \"\\e60b\"; }\n\n.fa-openid:before {\n  content: \"\\f19b\"; }\n\n.fa-instalod:before {\n  content: \"\\e081\"; }\n\n.fa-expeditedssl:before {\n  content: \"\\f23e\"; }\n\n.fa-sellcast:before {\n  content: \"\\f2da\"; }\n\n.fa-square-twitter:before {\n  content: \"\\f081\"; }\n\n.fa-twitter-square:before {\n  content: \"\\f081\"; }\n\n.fa-r-project:before {\n  content: \"\\f4f7\"; }\n\n.fa-delicious:before {\n  content: \"\\f1a5\"; }\n\n.fa-freebsd:before {\n  content: \"\\f3a4\"; }\n\n.fa-vuejs:before {\n  content: \"\\f41f\"; }\n\n.fa-accusoft:before {\n  content: \"\\f369\"; }\n\n.fa-ioxhost:before {\n  content: \"\\f208\"; }\n\n.fa-fonticons-fi:before {\n  content: \"\\f3a2\"; }\n\n.fa-app-store:before {\n  content: \"\\f36f\"; }\n\n.fa-cc-mastercard:before {\n  content: \"\\f1f1\"; }\n\n.fa-itunes-note:before {\n  content: \"\\f3b5\"; }\n\n.fa-golang:before {\n  content: \"\\e40f\"; }\n\n.fa-kickstarter:before {\n  content: \"\\f3bb\"; }\n\n.fa-square-kickstarter:before {\n  content: \"\\f3bb\"; }\n\n.fa-grav:before {\n  content: \"\\f2d6\"; }\n\n.fa-weibo:before {\n  content: \"\\f18a\"; }\n\n.fa-uncharted:before {\n  content: \"\\e084\"; }\n\n.fa-firstdraft:before {\n  content: \"\\f3a1\"; }\n\n.fa-square-youtube:before {\n  content: \"\\f431\"; }\n\n.fa-youtube-square:before {\n  content: \"\\f431\"; }\n\n.fa-wikipedia-w:before {\n  content: \"\\f266\"; }\n\n.fa-wpressr:before {\n  content: \"\\f3e4\"; }\n\n.fa-rendact:before {\n  content: \"\\f3e4\"; }\n\n.fa-angellist:before {\n  content: \"\\f209\"; }\n\n.fa-galactic-republic:before {\n  content: \"\\f50c\"; }\n\n.fa-nfc-directional:before {\n  content: \"\\e530\"; }\n\n.fa-skype:before {\n  content: \"\\f17e\"; }\n\n.fa-joget:before {\n  content: \"\\f3b7\"; }\n\n.fa-fedora:before {\n  content: \"\\f798\"; }\n\n.fa-stripe-s:before {\n  content: \"\\f42a\"; }\n\n.fa-meta:before {\n  content: \"\\e49b\"; }\n\n.fa-laravel:before {\n  content: \"\\f3bd\"; }\n\n.fa-hotjar:before {\n  content: \"\\f3b1\"; }\n\n.fa-bluetooth-b:before {\n  content: \"\\f294\"; }\n\n.fa-square-letterboxd:before {\n  content: \"\\e62e\"; }\n\n.fa-sticker-mule:before {\n  content: \"\\f3f7\"; }\n\n.fa-creative-commons-zero:before {\n  content: \"\\f4f3\"; }\n\n.fa-hips:before {\n  content: \"\\f452\"; }\n\n.fa-behance:before {\n  content: \"\\f1b4\"; }\n\n.fa-reddit:before {\n  content: \"\\f1a1\"; }\n\n.fa-discord:before {\n  content: \"\\f392\"; }\n\n.fa-chrome:before {\n  content: \"\\f268\"; }\n\n.fa-app-store-ios:before {\n  content: \"\\f370\"; }\n\n.fa-cc-discover:before {\n  content: \"\\f1f2\"; }\n\n.fa-wpbeginner:before {\n  content: \"\\f297\"; }\n\n.fa-confluence:before {\n  content: \"\\f78d\"; }\n\n.fa-shoelace:before {\n  content: \"\\e60c\"; }\n\n.fa-mdb:before {\n  content: \"\\f8ca\"; }\n\n.fa-dochub:before {\n  content: \"\\f394\"; }\n\n.fa-accessible-icon:before {\n  content: \"\\f368\"; }\n\n.fa-ebay:before {\n  content: \"\\f4f4\"; }\n\n.fa-amazon:before {\n  content: \"\\f270\"; }\n\n.fa-unsplash:before {\n  content: \"\\e07c\"; }\n\n.fa-yarn:before {\n  content: \"\\f7e3\"; }\n\n.fa-square-steam:before {\n  content: \"\\f1b7\"; }\n\n.fa-steam-square:before {\n  content: \"\\f1b7\"; }\n\n.fa-500px:before {\n  content: \"\\f26e\"; }\n\n.fa-square-vimeo:before {\n  content: \"\\f194\"; }\n\n.fa-vimeo-square:before {\n  content: \"\\f194\"; }\n\n.fa-asymmetrik:before {\n  content: \"\\f372\"; }\n\n.fa-font-awesome:before {\n  content: \"\\f2b4\"; }\n\n.fa-font-awesome-flag:before {\n  content: \"\\f2b4\"; }\n\n.fa-font-awesome-logo-full:before {\n  content: \"\\f2b4\"; }\n\n.fa-gratipay:before {\n  content: \"\\f184\"; }\n\n.fa-apple:before {\n  content: \"\\f179\"; }\n\n.fa-hive:before {\n  content: \"\\e07f\"; }\n\n.fa-gitkraken:before {\n  content: \"\\f3a6\"; }\n\n.fa-keybase:before {\n  content: \"\\f4f5\"; }\n\n.fa-apple-pay:before {\n  content: \"\\f415\"; }\n\n.fa-padlet:before {\n  content: \"\\e4a0\"; }\n\n.fa-amazon-pay:before {\n  content: \"\\f42c\"; }\n\n.fa-square-github:before {\n  content: \"\\f092\"; }\n\n.fa-github-square:before {\n  content: \"\\f092\"; }\n\n.fa-stumbleupon:before {\n  content: \"\\f1a4\"; }\n\n.fa-fedex:before {\n  content: \"\\f797\"; }\n\n.fa-phoenix-framework:before {\n  content: \"\\f3dc\"; }\n\n.fa-shopify:before {\n  content: \"\\e057\"; }\n\n.fa-neos:before {\n  content: \"\\f612\"; }\n\n.fa-square-threads:before {\n  content: \"\\e619\"; }\n\n.fa-hackerrank:before {\n  content: \"\\f5f7\"; }\n\n.fa-researchgate:before {\n  content: \"\\f4f8\"; }\n\n.fa-swift:before {\n  content: \"\\f8e1\"; }\n\n.fa-angular:before {\n  content: \"\\f420\"; }\n\n.fa-speakap:before {\n  content: \"\\f3f3\"; }\n\n.fa-angrycreative:before {\n  content: \"\\f36e\"; }\n\n.fa-y-combinator:before {\n  content: \"\\f23b\"; }\n\n.fa-empire:before {\n  content: \"\\f1d1\"; }\n\n.fa-envira:before {\n  content: \"\\f299\"; }\n\n.fa-google-scholar:before {\n  content: \"\\e63b\"; }\n\n.fa-square-gitlab:before {\n  content: \"\\e5ae\"; }\n\n.fa-gitlab-square:before {\n  content: \"\\e5ae\"; }\n\n.fa-studiovinari:before {\n  content: \"\\f3f8\"; }\n\n.fa-pied-piper:before {\n  content: \"\\f2ae\"; }\n\n.fa-wordpress:before {\n  content: \"\\f19a\"; }\n\n.fa-product-hunt:before {\n  content: \"\\f288\"; }\n\n.fa-firefox:before {\n  content: \"\\f269\"; }\n\n.fa-linode:before {\n  content: \"\\f2b8\"; }\n\n.fa-goodreads:before {\n  content: \"\\f3a8\"; }\n\n.fa-square-odnoklassniki:before {\n  content: \"\\f264\"; }\n\n.fa-odnoklassniki-square:before {\n  content: \"\\f264\"; }\n\n.fa-jsfiddle:before {\n  content: \"\\f1cc\"; }\n\n.fa-sith:before {\n  content: \"\\f512\"; }\n\n.fa-themeisle:before {\n  content: \"\\f2b2\"; }\n\n.fa-page4:before {\n  content: \"\\f3d7\"; }\n\n.fa-hashnode:before {\n  content: \"\\e499\"; }\n\n.fa-react:before {\n  content: \"\\f41b\"; }\n\n.fa-cc-paypal:before {\n  content: \"\\f1f4\"; }\n\n.fa-squarespace:before {\n  content: \"\\f5be\"; }\n\n.fa-cc-stripe:before {\n  content: \"\\f1f5\"; }\n\n.fa-creative-commons-share:before {\n  content: \"\\f4f2\"; }\n\n.fa-bitcoin:before {\n  content: \"\\f379\"; }\n\n.fa-keycdn:before {\n  content: \"\\f3ba\"; }\n\n.fa-opera:before {\n  content: \"\\f26a\"; }\n\n.fa-itch-io:before {\n  content: \"\\f83a\"; }\n\n.fa-umbraco:before {\n  content: \"\\f8e8\"; }\n\n.fa-galactic-senate:before {\n  content: \"\\f50d\"; }\n\n.fa-ubuntu:before {\n  content: \"\\f7df\"; }\n\n.fa-draft2digital:before {\n  content: \"\\f396\"; }\n\n.fa-stripe:before {\n  content: \"\\f429\"; }\n\n.fa-houzz:before {\n  content: \"\\f27c\"; }\n\n.fa-gg:before {\n  content: \"\\f260\"; }\n\n.fa-dhl:before {\n  content: \"\\f790\"; }\n\n.fa-square-pinterest:before {\n  content: \"\\f0d3\"; }\n\n.fa-pinterest-square:before {\n  content: \"\\f0d3\"; }\n\n.fa-xing:before {\n  content: \"\\f168\"; }\n\n.fa-blackberry:before {\n  content: \"\\f37b\"; }\n\n.fa-creative-commons-pd:before {\n  content: \"\\f4ec\"; }\n\n.fa-playstation:before {\n  content: \"\\f3df\"; }\n\n.fa-quinscape:before {\n  content: \"\\f459\"; }\n\n.fa-less:before {\n  content: \"\\f41d\"; }\n\n.fa-blogger-b:before {\n  content: \"\\f37d\"; }\n\n.fa-opencart:before {\n  content: \"\\f23d\"; }\n\n.fa-vine:before {\n  content: \"\\f1ca\"; }\n\n.fa-signal-messenger:before {\n  content: \"\\e663\"; }\n\n.fa-paypal:before {\n  content: \"\\f1ed\"; }\n\n.fa-gitlab:before {\n  content: \"\\f296\"; }\n\n.fa-typo3:before {\n  content: \"\\f42b\"; }\n\n.fa-reddit-alien:before {\n  content: \"\\f281\"; }\n\n.fa-yahoo:before {\n  content: \"\\f19e\"; }\n\n.fa-dailymotion:before {\n  content: \"\\e052\"; }\n\n.fa-affiliatetheme:before {\n  content: \"\\f36b\"; }\n\n.fa-pied-piper-pp:before {\n  content: \"\\f1a7\"; }\n\n.fa-bootstrap:before {\n  content: \"\\f836\"; }\n\n.fa-odnoklassniki:before {\n  content: \"\\f263\"; }\n\n.fa-nfc-symbol:before {\n  content: \"\\e531\"; }\n\n.fa-mintbit:before {\n  content: \"\\e62f\"; }\n\n.fa-ethereum:before {\n  content: \"\\f42e\"; }\n\n.fa-speaker-deck:before {\n  content: \"\\f83c\"; }\n\n.fa-creative-commons-nc-eu:before {\n  content: \"\\f4e9\"; }\n\n.fa-patreon:before {\n  content: \"\\f3d9\"; }\n\n.fa-avianex:before {\n  content: \"\\f374\"; }\n\n.fa-ello:before {\n  content: \"\\f5f1\"; }\n\n.fa-gofore:before {\n  content: \"\\f3a7\"; }\n\n.fa-bimobject:before {\n  content: \"\\f378\"; }\n\n.fa-brave-reverse:before {\n  content: \"\\e63d\"; }\n\n.fa-facebook-f:before {\n  content: \"\\f39e\"; }\n\n.fa-square-google-plus:before {\n  content: \"\\f0d4\"; }\n\n.fa-google-plus-square:before {\n  content: \"\\f0d4\"; }\n\n.fa-web-awesome:before {\n  content: \"\\e682\"; }\n\n.fa-mandalorian:before {\n  content: \"\\f50f\"; }\n\n.fa-first-order-alt:before {\n  content: \"\\f50a\"; }\n\n.fa-osi:before {\n  content: \"\\f41a\"; }\n\n.fa-google-wallet:before {\n  content: \"\\f1ee\"; }\n\n.fa-d-and-d-beyond:before {\n  content: \"\\f6ca\"; }\n\n.fa-periscope:before {\n  content: \"\\f3da\"; }\n\n.fa-fulcrum:before {\n  content: \"\\f50b\"; }\n\n.fa-cloudscale:before {\n  content: \"\\f383\"; }\n\n.fa-forumbee:before {\n  content: \"\\f211\"; }\n\n.fa-mizuni:before {\n  content: \"\\f3cc\"; }\n\n.fa-schlix:before {\n  content: \"\\f3ea\"; }\n\n.fa-square-xing:before {\n  content: \"\\f169\"; }\n\n.fa-xing-square:before {\n  content: \"\\f169\"; }\n\n.fa-bandcamp:before {\n  content: \"\\f2d5\"; }\n\n.fa-wpforms:before {\n  content: \"\\f298\"; }\n\n.fa-cloudversify:before {\n  content: \"\\f385\"; }\n\n.fa-usps:before {\n  content: \"\\f7e1\"; }\n\n.fa-megaport:before {\n  content: \"\\f5a3\"; }\n\n.fa-magento:before {\n  content: \"\\f3c4\"; }\n\n.fa-spotify:before {\n  content: \"\\f1bc\"; }\n\n.fa-optin-monster:before {\n  content: \"\\f23c\"; }\n\n.fa-fly:before {\n  content: \"\\f417\"; }\n\n.fa-aviato:before {\n  content: \"\\f421\"; }\n\n.fa-itunes:before {\n  content: \"\\f3b4\"; }\n\n.fa-cuttlefish:before {\n  content: \"\\f38c\"; }\n\n.fa-blogger:before {\n  content: \"\\f37c\"; }\n\n.fa-flickr:before {\n  content: \"\\f16e\"; }\n\n.fa-viber:before {\n  content: \"\\f409\"; }\n\n.fa-soundcloud:before {\n  content: \"\\f1be\"; }\n\n.fa-digg:before {\n  content: \"\\f1a6\"; }\n\n.fa-tencent-weibo:before {\n  content: \"\\f1d5\"; }\n\n.fa-letterboxd:before {\n  content: \"\\e62d\"; }\n\n.fa-symfony:before {\n  content: \"\\f83d\"; }\n\n.fa-maxcdn:before {\n  content: \"\\f136\"; }\n\n.fa-etsy:before {\n  content: \"\\f2d7\"; }\n\n.fa-facebook-messenger:before {\n  content: \"\\f39f\"; }\n\n.fa-audible:before {\n  content: \"\\f373\"; }\n\n.fa-think-peaks:before {\n  content: \"\\f731\"; }\n\n.fa-bilibili:before {\n  content: \"\\e3d9\"; }\n\n.fa-erlang:before {\n  content: \"\\f39d\"; }\n\n.fa-x-twitter:before {\n  content: \"\\e61b\"; }\n\n.fa-cotton-bureau:before {\n  content: \"\\f89e\"; }\n\n.fa-dashcube:before {\n  content: \"\\f210\"; }\n\n.fa-42-group:before {\n  content: \"\\e080\"; }\n\n.fa-innosoft:before {\n  content: \"\\e080\"; }\n\n.fa-stack-exchange:before {\n  content: \"\\f18d\"; }\n\n.fa-elementor:before {\n  content: \"\\f430\"; }\n\n.fa-square-pied-piper:before {\n  content: \"\\e01e\"; }\n\n.fa-pied-piper-square:before {\n  content: \"\\e01e\"; }\n\n.fa-creative-commons-nd:before {\n  content: \"\\f4eb\"; }\n\n.fa-palfed:before {\n  content: \"\\f3d8\"; }\n\n.fa-superpowers:before {\n  content: \"\\f2dd\"; }\n\n.fa-resolving:before {\n  content: \"\\f3e7\"; }\n\n.fa-xbox:before {\n  content: \"\\f412\"; }\n\n.fa-square-web-awesome-stroke:before {\n  content: \"\\e684\"; }\n\n.fa-searchengin:before {\n  content: \"\\f3eb\"; }\n\n.fa-tiktok:before {\n  content: \"\\e07b\"; }\n\n.fa-square-facebook:before {\n  content: \"\\f082\"; }\n\n.fa-facebook-square:before {\n  content: \"\\f082\"; }\n\n.fa-renren:before {\n  content: \"\\f18b\"; }\n\n.fa-linux:before {\n  content: \"\\f17c\"; }\n\n.fa-glide:before {\n  content: \"\\f2a5\"; }\n\n.fa-linkedin:before {\n  content: \"\\f08c\"; }\n\n.fa-hubspot:before {\n  content: \"\\f3b2\"; }\n\n.fa-deploydog:before {\n  content: \"\\f38e\"; }\n\n.fa-twitch:before {\n  content: \"\\f1e8\"; }\n\n.fa-ravelry:before {\n  content: \"\\f2d9\"; }\n\n.fa-mixer:before {\n  content: \"\\e056\"; }\n\n.fa-square-lastfm:before {\n  content: \"\\f203\"; }\n\n.fa-lastfm-square:before {\n  content: \"\\f203\"; }\n\n.fa-vimeo:before {\n  content: \"\\f40a\"; }\n\n.fa-mendeley:before {\n  content: \"\\f7b3\"; }\n\n.fa-uniregistry:before {\n  content: \"\\f404\"; }\n\n.fa-figma:before {\n  content: \"\\f799\"; }\n\n.fa-creative-commons-remix:before {\n  content: \"\\f4ee\"; }\n\n.fa-cc-amazon-pay:before {\n  content: \"\\f42d\"; }\n\n.fa-dropbox:before {\n  content: \"\\f16b\"; }\n\n.fa-instagram:before {\n  content: \"\\f16d\"; }\n\n.fa-cmplid:before {\n  content: \"\\e360\"; }\n\n.fa-upwork:before {\n  content: \"\\e641\"; }\n\n.fa-facebook:before {\n  content: \"\\f09a\"; }\n\n.fa-gripfire:before {\n  content: \"\\f3ac\"; }\n\n.fa-jedi-order:before {\n  content: \"\\f50e\"; }\n\n.fa-uikit:before {\n  content: \"\\f403\"; }\n\n.fa-fort-awesome-alt:before {\n  content: \"\\f3a3\"; }\n\n.fa-phabricator:before {\n  content: \"\\f3db\"; }\n\n.fa-ussunnah:before {\n  content: \"\\f407\"; }\n\n.fa-earlybirds:before {\n  content: \"\\f39a\"; }\n\n.fa-trade-federation:before {\n  content: \"\\f513\"; }\n\n.fa-autoprefixer:before {\n  content: \"\\f41c\"; }\n\n.fa-whatsapp:before {\n  content: \"\\f232\"; }\n\n.fa-square-upwork:before {\n  content: \"\\e67c\"; }\n\n.fa-slideshare:before {\n  content: \"\\f1e7\"; }\n\n.fa-google-play:before {\n  content: \"\\f3ab\"; }\n\n.fa-viadeo:before {\n  content: \"\\f2a9\"; }\n\n.fa-line:before {\n  content: \"\\f3c0\"; }\n\n.fa-google-drive:before {\n  content: \"\\f3aa\"; }\n\n.fa-servicestack:before {\n  content: \"\\f3ec\"; }\n\n.fa-simplybuilt:before {\n  content: \"\\f215\"; }\n\n.fa-bitbucket:before {\n  content: \"\\f171\"; }\n\n.fa-imdb:before {\n  content: \"\\f2d8\"; }\n\n.fa-deezer:before {\n  content: \"\\e077\"; }\n\n.fa-raspberry-pi:before {\n  content: \"\\f7bb\"; }\n\n.fa-jira:before {\n  content: \"\\f7b1\"; }\n\n.fa-docker:before {\n  content: \"\\f395\"; }\n\n.fa-screenpal:before {\n  content: \"\\e570\"; }\n\n.fa-bluetooth:before {\n  content: \"\\f293\"; }\n\n.fa-gitter:before {\n  content: \"\\f426\"; }\n\n.fa-d-and-d:before {\n  content: \"\\f38d\"; }\n\n.fa-microblog:before {\n  content: \"\\e01a\"; }\n\n.fa-cc-diners-club:before {\n  content: \"\\f24c\"; }\n\n.fa-gg-circle:before {\n  content: \"\\f261\"; }\n\n.fa-pied-piper-hat:before {\n  content: \"\\f4e5\"; }\n\n.fa-kickstarter-k:before {\n  content: \"\\f3bc\"; }\n\n.fa-yandex:before {\n  content: \"\\f413\"; }\n\n.fa-readme:before {\n  content: \"\\f4d5\"; }\n\n.fa-html5:before {\n  content: \"\\f13b\"; }\n\n.fa-sellsy:before {\n  content: \"\\f213\"; }\n\n.fa-square-web-awesome:before {\n  content: \"\\e683\"; }\n\n.fa-sass:before {\n  content: \"\\f41e\"; }\n\n.fa-wirsindhandwerk:before {\n  content: \"\\e2d0\"; }\n\n.fa-wsh:before {\n  content: \"\\e2d0\"; }\n\n.fa-buromobelexperte:before {\n  content: \"\\f37f\"; }\n\n.fa-salesforce:before {\n  content: \"\\f83b\"; }\n\n.fa-octopus-deploy:before {\n  content: \"\\e082\"; }\n\n.fa-medapps:before {\n  content: \"\\f3c6\"; }\n\n.fa-ns8:before {\n  content: \"\\f3d5\"; }\n\n.fa-pinterest-p:before {\n  content: \"\\f231\"; }\n\n.fa-apper:before {\n  content: \"\\f371\"; }\n\n.fa-fort-awesome:before {\n  content: \"\\f286\"; }\n\n.fa-waze:before {\n  content: \"\\f83f\"; }\n\n.fa-bluesky:before {\n  content: \"\\e671\"; }\n\n.fa-cc-jcb:before {\n  content: \"\\f24b\"; }\n\n.fa-snapchat:before {\n  content: \"\\f2ab\"; }\n\n.fa-snapchat-ghost:before {\n  content: \"\\f2ab\"; }\n\n.fa-fantasy-flight-games:before {\n  content: \"\\f6dc\"; }\n\n.fa-rust:before {\n  content: \"\\e07a\"; }\n\n.fa-wix:before {\n  content: \"\\f5cf\"; }\n\n.fa-square-behance:before {\n  content: \"\\f1b5\"; }\n\n.fa-behance-square:before {\n  content: \"\\f1b5\"; }\n\n.fa-supple:before {\n  content: \"\\f3f9\"; }\n\n.fa-webflow:before {\n  content: \"\\e65c\"; }\n\n.fa-rebel:before {\n  content: \"\\f1d0\"; }\n\n.fa-css3:before {\n  content: \"\\f13c\"; }\n\n.fa-staylinked:before {\n  content: \"\\f3f5\"; }\n\n.fa-kaggle:before {\n  content: \"\\f5fa\"; }\n\n.fa-space-awesome:before {\n  content: \"\\e5ac\"; }\n\n.fa-deviantart:before {\n  content: \"\\f1bd\"; }\n\n.fa-cpanel:before {\n  content: \"\\f388\"; }\n\n.fa-goodreads-g:before {\n  content: \"\\f3a9\"; }\n\n.fa-square-git:before {\n  content: \"\\f1d2\"; }\n\n.fa-git-square:before {\n  content: \"\\f1d2\"; }\n\n.fa-square-tumblr:before {\n  content: \"\\f174\"; }\n\n.fa-tumblr-square:before {\n  content: \"\\f174\"; }\n\n.fa-trello:before {\n  content: \"\\f181\"; }\n\n.fa-creative-commons-nc-jp:before {\n  content: \"\\f4ea\"; }\n\n.fa-get-pocket:before {\n  content: \"\\f265\"; }\n\n.fa-perbyte:before {\n  content: \"\\e083\"; }\n\n.fa-grunt:before {\n  content: \"\\f3ad\"; }\n\n.fa-weebly:before {\n  content: \"\\f5cc\"; }\n\n.fa-connectdevelop:before {\n  content: \"\\f20e\"; }\n\n.fa-leanpub:before {\n  content: \"\\f212\"; }\n\n.fa-black-tie:before {\n  content: \"\\f27e\"; }\n\n.fa-themeco:before {\n  content: \"\\f5c6\"; }\n\n.fa-python:before {\n  content: \"\\f3e2\"; }\n\n.fa-android:before {\n  content: \"\\f17b\"; }\n\n.fa-bots:before {\n  content: \"\\e340\"; }\n\n.fa-free-code-camp:before {\n  content: \"\\f2c5\"; }\n\n.fa-hornbill:before {\n  content: \"\\f592\"; }\n\n.fa-js:before {\n  content: \"\\f3b8\"; }\n\n.fa-ideal:before {\n  content: \"\\e013\"; }\n\n.fa-git:before {\n  content: \"\\f1d3\"; }\n\n.fa-dev:before {\n  content: \"\\f6cc\"; }\n\n.fa-sketch:before {\n  content: \"\\f7c6\"; }\n\n.fa-yandex-international:before {\n  content: \"\\f414\"; }\n\n.fa-cc-amex:before {\n  content: \"\\f1f3\"; }\n\n.fa-uber:before {\n  content: \"\\f402\"; }\n\n.fa-github:before {\n  content: \"\\f09b\"; }\n\n.fa-php:before {\n  content: \"\\f457\"; }\n\n.fa-alipay:before {\n  content: \"\\f642\"; }\n\n.fa-youtube:before {\n  content: \"\\f167\"; }\n\n.fa-skyatlas:before {\n  content: \"\\f216\"; }\n\n.fa-firefox-browser:before {\n  content: \"\\e007\"; }\n\n.fa-replyd:before {\n  content: \"\\f3e6\"; }\n\n.fa-suse:before {\n  content: \"\\f7d6\"; }\n\n.fa-jenkins:before {\n  content: \"\\f3b6\"; }\n\n.fa-twitter:before {\n  content: \"\\f099\"; }\n\n.fa-rockrms:before {\n  content: \"\\f3e9\"; }\n\n.fa-pinterest:before {\n  content: \"\\f0d2\"; }\n\n.fa-buffer:before {\n  content: \"\\f837\"; }\n\n.fa-npm:before {\n  content: \"\\f3d4\"; }\n\n.fa-yammer:before {\n  content: \"\\f840\"; }\n\n.fa-btc:before {\n  content: \"\\f15a\"; }\n\n.fa-dribbble:before {\n  content: \"\\f17d\"; }\n\n.fa-stumbleupon-circle:before {\n  content: \"\\f1a3\"; }\n\n.fa-internet-explorer:before {\n  content: \"\\f26b\"; }\n\n.fa-stubber:before {\n  content: \"\\e5c7\"; }\n\n.fa-telegram:before {\n  content: \"\\f2c6\"; }\n\n.fa-telegram-plane:before {\n  content: \"\\f2c6\"; }\n\n.fa-old-republic:before {\n  content: \"\\f510\"; }\n\n.fa-odysee:before {\n  content: \"\\e5c6\"; }\n\n.fa-square-whatsapp:before {\n  content: \"\\f40c\"; }\n\n.fa-whatsapp-square:before {\n  content: \"\\f40c\"; }\n\n.fa-node-js:before {\n  content: \"\\f3d3\"; }\n\n.fa-edge-legacy:before {\n  content: \"\\e078\"; }\n\n.fa-slack:before {\n  content: \"\\f198\"; }\n\n.fa-slack-hash:before {\n  content: \"\\f198\"; }\n\n.fa-medrt:before {\n  content: \"\\f3c8\"; }\n\n.fa-usb:before {\n  content: \"\\f287\"; }\n\n.fa-tumblr:before {\n  content: \"\\f173\"; }\n\n.fa-vaadin:before {\n  content: \"\\f408\"; }\n\n.fa-quora:before {\n  content: \"\\f2c4\"; }\n\n.fa-square-x-twitter:before {\n  content: \"\\e61a\"; }\n\n.fa-reacteurope:before {\n  content: \"\\f75d\"; }\n\n.fa-medium:before {\n  content: \"\\f23a\"; }\n\n.fa-medium-m:before {\n  content: \"\\f23a\"; }\n\n.fa-amilia:before {\n  content: \"\\f36d\"; }\n\n.fa-mixcloud:before {\n  content: \"\\f289\"; }\n\n.fa-flipboard:before {\n  content: \"\\f44d\"; }\n\n.fa-viacoin:before {\n  content: \"\\f237\"; }\n\n.fa-critical-role:before {\n  content: \"\\f6c9\"; }\n\n.fa-sitrox:before {\n  content: \"\\e44a\"; }\n\n.fa-discourse:before {\n  content: \"\\f393\"; }\n\n.fa-joomla:before {\n  content: \"\\f1aa\"; }\n\n.fa-mastodon:before {\n  content: \"\\f4f6\"; }\n\n.fa-airbnb:before {\n  content: \"\\f834\"; }\n\n.fa-wolf-pack-battalion:before {\n  content: \"\\f514\"; }\n\n.fa-buy-n-large:before {\n  content: \"\\f8a6\"; }\n\n.fa-gulp:before {\n  content: \"\\f3ae\"; }\n\n.fa-creative-commons-sampling-plus:before {\n  content: \"\\f4f1\"; }\n\n.fa-strava:before {\n  content: \"\\f428\"; }\n\n.fa-ember:before {\n  content: \"\\f423\"; }\n\n.fa-canadian-maple-leaf:before {\n  content: \"\\f785\"; }\n\n.fa-teamspeak:before {\n  content: \"\\f4f9\"; }\n\n.fa-pushed:before {\n  content: \"\\f3e1\"; }\n\n.fa-wordpress-simple:before {\n  content: \"\\f411\"; }\n\n.fa-nutritionix:before {\n  content: \"\\f3d6\"; }\n\n.fa-wodu:before {\n  content: \"\\e088\"; }\n\n.fa-google-pay:before {\n  content: \"\\e079\"; }\n\n.fa-intercom:before {\n  content: \"\\f7af\"; }\n\n.fa-zhihu:before {\n  content: \"\\f63f\"; }\n\n.fa-korvue:before {\n  content: \"\\f42f\"; }\n\n.fa-pix:before {\n  content: \"\\e43a\"; }\n\n.fa-steam-symbol:before {\n  content: \"\\f3f6\"; }\n:root, :host {\n  --fa-style-family-classic: 'Font Awesome 6 Free';\n  --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; }\n\n@font-face {\n  font-family: 'Font Awesome 6 Free';\n  font-style: normal;\n  font-weight: 400;\n  font-display: block;\n  src: url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\"); }\n\n.far,\n.fa-regular {\n  font-weight: 400; }\n:root, :host {\n  --fa-style-family-classic: 'Font Awesome 6 Free';\n  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; }\n\n@font-face {\n  font-family: 'Font Awesome 6 Free';\n  font-style: normal;\n  font-weight: 900;\n  font-display: block;\n  src: url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\"); }\n\n.fas,\n.fa-solid {\n  font-weight: 900; }\n@font-face {\n  font-family: 'Font Awesome 5 Brands';\n  font-display: block;\n  font-weight: 400;\n  src: url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\"); }\n\n@font-face {\n  font-family: 'Font Awesome 5 Free';\n  font-display: block;\n  font-weight: 900;\n  src: url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\"); }\n\n@font-face {\n  font-family: 'Font Awesome 5 Free';\n  font-display: block;\n  font-weight: 400;\n  src: url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\"); }\n@font-face {\n  font-family: 'FontAwesome';\n  font-display: block;\n  src: url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\"); }\n\n@font-face {\n  font-family: 'FontAwesome';\n  font-display: block;\n  src: url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\"); }\n\n@font-face {\n  font-family: 'FontAwesome';\n  font-display: block;\n  src: url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\");\n  unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; }\n\n@font-face {\n  font-family: 'FontAwesome';\n  font-display: block;\n  src: url(\"../fonts/fa-v4compatibility.woff2\") format(\"woff2\"), url(\"../fonts/fa-v4compatibility.ttf\") format(\"truetype\");\n  unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A; }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/resources/META-INF/resources/fontawesome6/6.5.2/css/brands.css",
    "content": "/*!\n * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n * Copyright 2024 Fonticons, Inc.\n */\n:root, :host {\n  --fa-style-family-brands: 'Font Awesome 6 Brands';\n  --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; }\n\n@font-face {\n  font-family: 'Font Awesome 6 Brands';\n  font-style: normal;\n  font-weight: 400;\n  font-display: block;\n  src: url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\"); }\n\n.fab,\n.fa-brands {\n  font-weight: 400; }\n\n.fa-monero:before {\n  content: \"\\f3d0\"; }\n\n.fa-hooli:before {\n  content: \"\\f427\"; }\n\n.fa-yelp:before {\n  content: \"\\f1e9\"; }\n\n.fa-cc-visa:before {\n  content: \"\\f1f0\"; }\n\n.fa-lastfm:before {\n  content: \"\\f202\"; }\n\n.fa-shopware:before {\n  content: \"\\f5b5\"; }\n\n.fa-creative-commons-nc:before {\n  content: \"\\f4e8\"; }\n\n.fa-aws:before {\n  content: \"\\f375\"; }\n\n.fa-redhat:before {\n  content: \"\\f7bc\"; }\n\n.fa-yoast:before {\n  content: \"\\f2b1\"; }\n\n.fa-cloudflare:before {\n  content: \"\\e07d\"; }\n\n.fa-ups:before {\n  content: \"\\f7e0\"; }\n\n.fa-pixiv:before {\n  content: \"\\e640\"; }\n\n.fa-wpexplorer:before {\n  content: \"\\f2de\"; }\n\n.fa-dyalog:before {\n  content: \"\\f399\"; }\n\n.fa-bity:before {\n  content: \"\\f37a\"; }\n\n.fa-stackpath:before {\n  content: \"\\f842\"; }\n\n.fa-buysellads:before {\n  content: \"\\f20d\"; }\n\n.fa-first-order:before {\n  content: \"\\f2b0\"; }\n\n.fa-modx:before {\n  content: \"\\f285\"; }\n\n.fa-guilded:before {\n  content: \"\\e07e\"; }\n\n.fa-vnv:before {\n  content: \"\\f40b\"; }\n\n.fa-square-js:before {\n  content: \"\\f3b9\"; }\n\n.fa-js-square:before {\n  content: \"\\f3b9\"; }\n\n.fa-microsoft:before {\n  content: \"\\f3ca\"; }\n\n.fa-qq:before {\n  content: \"\\f1d6\"; }\n\n.fa-orcid:before {\n  content: \"\\f8d2\"; }\n\n.fa-java:before {\n  content: \"\\f4e4\"; }\n\n.fa-invision:before {\n  content: \"\\f7b0\"; }\n\n.fa-creative-commons-pd-alt:before {\n  content: \"\\f4ed\"; }\n\n.fa-centercode:before {\n  content: \"\\f380\"; }\n\n.fa-glide-g:before {\n  content: \"\\f2a6\"; }\n\n.fa-drupal:before {\n  content: \"\\f1a9\"; }\n\n.fa-jxl:before {\n  content: \"\\e67b\"; }\n\n.fa-hire-a-helper:before {\n  content: \"\\f3b0\"; }\n\n.fa-creative-commons-by:before {\n  content: \"\\f4e7\"; }\n\n.fa-unity:before {\n  content: \"\\e049\"; }\n\n.fa-whmcs:before {\n  content: \"\\f40d\"; }\n\n.fa-rocketchat:before {\n  content: \"\\f3e8\"; }\n\n.fa-vk:before {\n  content: \"\\f189\"; }\n\n.fa-untappd:before {\n  content: \"\\f405\"; }\n\n.fa-mailchimp:before {\n  content: \"\\f59e\"; }\n\n.fa-css3-alt:before {\n  content: \"\\f38b\"; }\n\n.fa-square-reddit:before {\n  content: \"\\f1a2\"; }\n\n.fa-reddit-square:before {\n  content: \"\\f1a2\"; }\n\n.fa-vimeo-v:before {\n  content: \"\\f27d\"; }\n\n.fa-contao:before {\n  content: \"\\f26d\"; }\n\n.fa-square-font-awesome:before {\n  content: \"\\e5ad\"; }\n\n.fa-deskpro:before {\n  content: \"\\f38f\"; }\n\n.fa-brave:before {\n  content: \"\\e63c\"; }\n\n.fa-sistrix:before {\n  content: \"\\f3ee\"; }\n\n.fa-square-instagram:before {\n  content: \"\\e055\"; }\n\n.fa-instagram-square:before {\n  content: \"\\e055\"; }\n\n.fa-battle-net:before {\n  content: \"\\f835\"; }\n\n.fa-the-red-yeti:before {\n  content: \"\\f69d\"; }\n\n.fa-square-hacker-news:before {\n  content: \"\\f3af\"; }\n\n.fa-hacker-news-square:before {\n  content: \"\\f3af\"; }\n\n.fa-edge:before {\n  content: \"\\f282\"; }\n\n.fa-threads:before {\n  content: \"\\e618\"; }\n\n.fa-napster:before {\n  content: \"\\f3d2\"; }\n\n.fa-square-snapchat:before {\n  content: \"\\f2ad\"; }\n\n.fa-snapchat-square:before {\n  content: \"\\f2ad\"; }\n\n.fa-google-plus-g:before {\n  content: \"\\f0d5\"; }\n\n.fa-artstation:before {\n  content: \"\\f77a\"; }\n\n.fa-markdown:before {\n  content: \"\\f60f\"; }\n\n.fa-sourcetree:before {\n  content: \"\\f7d3\"; }\n\n.fa-google-plus:before {\n  content: \"\\f2b3\"; }\n\n.fa-diaspora:before {\n  content: \"\\f791\"; }\n\n.fa-foursquare:before {\n  content: \"\\f180\"; }\n\n.fa-stack-overflow:before {\n  content: \"\\f16c\"; }\n\n.fa-github-alt:before {\n  content: \"\\f113\"; }\n\n.fa-phoenix-squadron:before {\n  content: \"\\f511\"; }\n\n.fa-pagelines:before {\n  content: \"\\f18c\"; }\n\n.fa-algolia:before {\n  content: \"\\f36c\"; }\n\n.fa-red-river:before {\n  content: \"\\f3e3\"; }\n\n.fa-creative-commons-sa:before {\n  content: \"\\f4ef\"; }\n\n.fa-safari:before {\n  content: \"\\f267\"; }\n\n.fa-google:before {\n  content: \"\\f1a0\"; }\n\n.fa-square-font-awesome-stroke:before {\n  content: \"\\f35c\"; }\n\n.fa-font-awesome-alt:before {\n  content: \"\\f35c\"; }\n\n.fa-atlassian:before {\n  content: \"\\f77b\"; }\n\n.fa-linkedin-in:before {\n  content: \"\\f0e1\"; }\n\n.fa-digital-ocean:before {\n  content: \"\\f391\"; }\n\n.fa-nimblr:before {\n  content: \"\\f5a8\"; }\n\n.fa-chromecast:before {\n  content: \"\\f838\"; }\n\n.fa-evernote:before {\n  content: \"\\f839\"; }\n\n.fa-hacker-news:before {\n  content: \"\\f1d4\"; }\n\n.fa-creative-commons-sampling:before {\n  content: \"\\f4f0\"; }\n\n.fa-adversal:before {\n  content: \"\\f36a\"; }\n\n.fa-creative-commons:before {\n  content: \"\\f25e\"; }\n\n.fa-watchman-monitoring:before {\n  content: \"\\e087\"; }\n\n.fa-fonticons:before {\n  content: \"\\f280\"; }\n\n.fa-weixin:before {\n  content: \"\\f1d7\"; }\n\n.fa-shirtsinbulk:before {\n  content: \"\\f214\"; }\n\n.fa-codepen:before {\n  content: \"\\f1cb\"; }\n\n.fa-git-alt:before {\n  content: \"\\f841\"; }\n\n.fa-lyft:before {\n  content: \"\\f3c3\"; }\n\n.fa-rev:before {\n  content: \"\\f5b2\"; }\n\n.fa-windows:before {\n  content: \"\\f17a\"; }\n\n.fa-wizards-of-the-coast:before {\n  content: \"\\f730\"; }\n\n.fa-square-viadeo:before {\n  content: \"\\f2aa\"; }\n\n.fa-viadeo-square:before {\n  content: \"\\f2aa\"; }\n\n.fa-meetup:before {\n  content: \"\\f2e0\"; }\n\n.fa-centos:before {\n  content: \"\\f789\"; }\n\n.fa-adn:before {\n  content: \"\\f170\"; }\n\n.fa-cloudsmith:before {\n  content: \"\\f384\"; }\n\n.fa-opensuse:before {\n  content: \"\\e62b\"; }\n\n.fa-pied-piper-alt:before {\n  content: \"\\f1a8\"; }\n\n.fa-square-dribbble:before {\n  content: \"\\f397\"; }\n\n.fa-dribbble-square:before {\n  content: \"\\f397\"; }\n\n.fa-codiepie:before {\n  content: \"\\f284\"; }\n\n.fa-node:before {\n  content: \"\\f419\"; }\n\n.fa-mix:before {\n  content: \"\\f3cb\"; }\n\n.fa-steam:before {\n  content: \"\\f1b6\"; }\n\n.fa-cc-apple-pay:before {\n  content: \"\\f416\"; }\n\n.fa-scribd:before {\n  content: \"\\f28a\"; }\n\n.fa-debian:before {\n  content: \"\\e60b\"; }\n\n.fa-openid:before {\n  content: \"\\f19b\"; }\n\n.fa-instalod:before {\n  content: \"\\e081\"; }\n\n.fa-expeditedssl:before {\n  content: \"\\f23e\"; }\n\n.fa-sellcast:before {\n  content: \"\\f2da\"; }\n\n.fa-square-twitter:before {\n  content: \"\\f081\"; }\n\n.fa-twitter-square:before {\n  content: \"\\f081\"; }\n\n.fa-r-project:before {\n  content: \"\\f4f7\"; }\n\n.fa-delicious:before {\n  content: \"\\f1a5\"; }\n\n.fa-freebsd:before {\n  content: \"\\f3a4\"; }\n\n.fa-vuejs:before {\n  content: \"\\f41f\"; }\n\n.fa-accusoft:before {\n  content: \"\\f369\"; }\n\n.fa-ioxhost:before {\n  content: \"\\f208\"; }\n\n.fa-fonticons-fi:before {\n  content: \"\\f3a2\"; }\n\n.fa-app-store:before {\n  content: \"\\f36f\"; }\n\n.fa-cc-mastercard:before {\n  content: \"\\f1f1\"; }\n\n.fa-itunes-note:before {\n  content: \"\\f3b5\"; }\n\n.fa-golang:before {\n  content: \"\\e40f\"; }\n\n.fa-kickstarter:before {\n  content: \"\\f3bb\"; }\n\n.fa-square-kickstarter:before {\n  content: \"\\f3bb\"; }\n\n.fa-grav:before {\n  content: \"\\f2d6\"; }\n\n.fa-weibo:before {\n  content: \"\\f18a\"; }\n\n.fa-uncharted:before {\n  content: \"\\e084\"; }\n\n.fa-firstdraft:before {\n  content: \"\\f3a1\"; }\n\n.fa-square-youtube:before {\n  content: \"\\f431\"; }\n\n.fa-youtube-square:before {\n  content: \"\\f431\"; }\n\n.fa-wikipedia-w:before {\n  content: \"\\f266\"; }\n\n.fa-wpressr:before {\n  content: \"\\f3e4\"; }\n\n.fa-rendact:before {\n  content: \"\\f3e4\"; }\n\n.fa-angellist:before {\n  content: \"\\f209\"; }\n\n.fa-galactic-republic:before {\n  content: \"\\f50c\"; }\n\n.fa-nfc-directional:before {\n  content: \"\\e530\"; }\n\n.fa-skype:before {\n  content: \"\\f17e\"; }\n\n.fa-joget:before {\n  content: \"\\f3b7\"; }\n\n.fa-fedora:before {\n  content: \"\\f798\"; }\n\n.fa-stripe-s:before {\n  content: \"\\f42a\"; }\n\n.fa-meta:before {\n  content: \"\\e49b\"; }\n\n.fa-laravel:before {\n  content: \"\\f3bd\"; }\n\n.fa-hotjar:before {\n  content: \"\\f3b1\"; }\n\n.fa-bluetooth-b:before {\n  content: \"\\f294\"; }\n\n.fa-square-letterboxd:before {\n  content: \"\\e62e\"; }\n\n.fa-sticker-mule:before {\n  content: \"\\f3f7\"; }\n\n.fa-creative-commons-zero:before {\n  content: \"\\f4f3\"; }\n\n.fa-hips:before {\n  content: \"\\f452\"; }\n\n.fa-behance:before {\n  content: \"\\f1b4\"; }\n\n.fa-reddit:before {\n  content: \"\\f1a1\"; }\n\n.fa-discord:before {\n  content: \"\\f392\"; }\n\n.fa-chrome:before {\n  content: \"\\f268\"; }\n\n.fa-app-store-ios:before {\n  content: \"\\f370\"; }\n\n.fa-cc-discover:before {\n  content: \"\\f1f2\"; }\n\n.fa-wpbeginner:before {\n  content: \"\\f297\"; }\n\n.fa-confluence:before {\n  content: \"\\f78d\"; }\n\n.fa-shoelace:before {\n  content: \"\\e60c\"; }\n\n.fa-mdb:before {\n  content: \"\\f8ca\"; }\n\n.fa-dochub:before {\n  content: \"\\f394\"; }\n\n.fa-accessible-icon:before {\n  content: \"\\f368\"; }\n\n.fa-ebay:before {\n  content: \"\\f4f4\"; }\n\n.fa-amazon:before {\n  content: \"\\f270\"; }\n\n.fa-unsplash:before {\n  content: \"\\e07c\"; }\n\n.fa-yarn:before {\n  content: \"\\f7e3\"; }\n\n.fa-square-steam:before {\n  content: \"\\f1b7\"; }\n\n.fa-steam-square:before {\n  content: \"\\f1b7\"; }\n\n.fa-500px:before {\n  content: \"\\f26e\"; }\n\n.fa-square-vimeo:before {\n  content: \"\\f194\"; }\n\n.fa-vimeo-square:before {\n  content: \"\\f194\"; }\n\n.fa-asymmetrik:before {\n  content: \"\\f372\"; }\n\n.fa-font-awesome:before {\n  content: \"\\f2b4\"; }\n\n.fa-font-awesome-flag:before {\n  content: \"\\f2b4\"; }\n\n.fa-font-awesome-logo-full:before {\n  content: \"\\f2b4\"; }\n\n.fa-gratipay:before {\n  content: \"\\f184\"; }\n\n.fa-apple:before {\n  content: \"\\f179\"; }\n\n.fa-hive:before {\n  content: \"\\e07f\"; }\n\n.fa-gitkraken:before {\n  content: \"\\f3a6\"; }\n\n.fa-keybase:before {\n  content: \"\\f4f5\"; }\n\n.fa-apple-pay:before {\n  content: \"\\f415\"; }\n\n.fa-padlet:before {\n  content: \"\\e4a0\"; }\n\n.fa-amazon-pay:before {\n  content: \"\\f42c\"; }\n\n.fa-square-github:before {\n  content: \"\\f092\"; }\n\n.fa-github-square:before {\n  content: \"\\f092\"; }\n\n.fa-stumbleupon:before {\n  content: \"\\f1a4\"; }\n\n.fa-fedex:before {\n  content: \"\\f797\"; }\n\n.fa-phoenix-framework:before {\n  content: \"\\f3dc\"; }\n\n.fa-shopify:before {\n  content: \"\\e057\"; }\n\n.fa-neos:before {\n  content: \"\\f612\"; }\n\n.fa-square-threads:before {\n  content: \"\\e619\"; }\n\n.fa-hackerrank:before {\n  content: \"\\f5f7\"; }\n\n.fa-researchgate:before {\n  content: \"\\f4f8\"; }\n\n.fa-swift:before {\n  content: \"\\f8e1\"; }\n\n.fa-angular:before {\n  content: \"\\f420\"; }\n\n.fa-speakap:before {\n  content: \"\\f3f3\"; }\n\n.fa-angrycreative:before {\n  content: \"\\f36e\"; }\n\n.fa-y-combinator:before {\n  content: \"\\f23b\"; }\n\n.fa-empire:before {\n  content: \"\\f1d1\"; }\n\n.fa-envira:before {\n  content: \"\\f299\"; }\n\n.fa-google-scholar:before {\n  content: \"\\e63b\"; }\n\n.fa-square-gitlab:before {\n  content: \"\\e5ae\"; }\n\n.fa-gitlab-square:before {\n  content: \"\\e5ae\"; }\n\n.fa-studiovinari:before {\n  content: \"\\f3f8\"; }\n\n.fa-pied-piper:before {\n  content: \"\\f2ae\"; }\n\n.fa-wordpress:before {\n  content: \"\\f19a\"; }\n\n.fa-product-hunt:before {\n  content: \"\\f288\"; }\n\n.fa-firefox:before {\n  content: \"\\f269\"; }\n\n.fa-linode:before {\n  content: \"\\f2b8\"; }\n\n.fa-goodreads:before {\n  content: \"\\f3a8\"; }\n\n.fa-square-odnoklassniki:before {\n  content: \"\\f264\"; }\n\n.fa-odnoklassniki-square:before {\n  content: \"\\f264\"; }\n\n.fa-jsfiddle:before {\n  content: \"\\f1cc\"; }\n\n.fa-sith:before {\n  content: \"\\f512\"; }\n\n.fa-themeisle:before {\n  content: \"\\f2b2\"; }\n\n.fa-page4:before {\n  content: \"\\f3d7\"; }\n\n.fa-hashnode:before {\n  content: \"\\e499\"; }\n\n.fa-react:before {\n  content: \"\\f41b\"; }\n\n.fa-cc-paypal:before {\n  content: \"\\f1f4\"; }\n\n.fa-squarespace:before {\n  content: \"\\f5be\"; }\n\n.fa-cc-stripe:before {\n  content: \"\\f1f5\"; }\n\n.fa-creative-commons-share:before {\n  content: \"\\f4f2\"; }\n\n.fa-bitcoin:before {\n  content: \"\\f379\"; }\n\n.fa-keycdn:before {\n  content: \"\\f3ba\"; }\n\n.fa-opera:before {\n  content: \"\\f26a\"; }\n\n.fa-itch-io:before {\n  content: \"\\f83a\"; }\n\n.fa-umbraco:before {\n  content: \"\\f8e8\"; }\n\n.fa-galactic-senate:before {\n  content: \"\\f50d\"; }\n\n.fa-ubuntu:before {\n  content: \"\\f7df\"; }\n\n.fa-draft2digital:before {\n  content: \"\\f396\"; }\n\n.fa-stripe:before {\n  content: \"\\f429\"; }\n\n.fa-houzz:before {\n  content: \"\\f27c\"; }\n\n.fa-gg:before {\n  content: \"\\f260\"; }\n\n.fa-dhl:before {\n  content: \"\\f790\"; }\n\n.fa-square-pinterest:before {\n  content: \"\\f0d3\"; }\n\n.fa-pinterest-square:before {\n  content: \"\\f0d3\"; }\n\n.fa-xing:before {\n  content: \"\\f168\"; }\n\n.fa-blackberry:before {\n  content: \"\\f37b\"; }\n\n.fa-creative-commons-pd:before {\n  content: \"\\f4ec\"; }\n\n.fa-playstation:before {\n  content: \"\\f3df\"; }\n\n.fa-quinscape:before {\n  content: \"\\f459\"; }\n\n.fa-less:before {\n  content: \"\\f41d\"; }\n\n.fa-blogger-b:before {\n  content: \"\\f37d\"; }\n\n.fa-opencart:before {\n  content: \"\\f23d\"; }\n\n.fa-vine:before {\n  content: \"\\f1ca\"; }\n\n.fa-signal-messenger:before {\n  content: \"\\e663\"; }\n\n.fa-paypal:before {\n  content: \"\\f1ed\"; }\n\n.fa-gitlab:before {\n  content: \"\\f296\"; }\n\n.fa-typo3:before {\n  content: \"\\f42b\"; }\n\n.fa-reddit-alien:before {\n  content: \"\\f281\"; }\n\n.fa-yahoo:before {\n  content: \"\\f19e\"; }\n\n.fa-dailymotion:before {\n  content: \"\\e052\"; }\n\n.fa-affiliatetheme:before {\n  content: \"\\f36b\"; }\n\n.fa-pied-piper-pp:before {\n  content: \"\\f1a7\"; }\n\n.fa-bootstrap:before {\n  content: \"\\f836\"; }\n\n.fa-odnoklassniki:before {\n  content: \"\\f263\"; }\n\n.fa-nfc-symbol:before {\n  content: \"\\e531\"; }\n\n.fa-mintbit:before {\n  content: \"\\e62f\"; }\n\n.fa-ethereum:before {\n  content: \"\\f42e\"; }\n\n.fa-speaker-deck:before {\n  content: \"\\f83c\"; }\n\n.fa-creative-commons-nc-eu:before {\n  content: \"\\f4e9\"; }\n\n.fa-patreon:before {\n  content: \"\\f3d9\"; }\n\n.fa-avianex:before {\n  content: \"\\f374\"; }\n\n.fa-ello:before {\n  content: \"\\f5f1\"; }\n\n.fa-gofore:before {\n  content: \"\\f3a7\"; }\n\n.fa-bimobject:before {\n  content: \"\\f378\"; }\n\n.fa-brave-reverse:before {\n  content: \"\\e63d\"; }\n\n.fa-facebook-f:before {\n  content: \"\\f39e\"; }\n\n.fa-square-google-plus:before {\n  content: \"\\f0d4\"; }\n\n.fa-google-plus-square:before {\n  content: \"\\f0d4\"; }\n\n.fa-web-awesome:before {\n  content: \"\\e682\"; }\n\n.fa-mandalorian:before {\n  content: \"\\f50f\"; }\n\n.fa-first-order-alt:before {\n  content: \"\\f50a\"; }\n\n.fa-osi:before {\n  content: \"\\f41a\"; }\n\n.fa-google-wallet:before {\n  content: \"\\f1ee\"; }\n\n.fa-d-and-d-beyond:before {\n  content: \"\\f6ca\"; }\n\n.fa-periscope:before {\n  content: \"\\f3da\"; }\n\n.fa-fulcrum:before {\n  content: \"\\f50b\"; }\n\n.fa-cloudscale:before {\n  content: \"\\f383\"; }\n\n.fa-forumbee:before {\n  content: \"\\f211\"; }\n\n.fa-mizuni:before {\n  content: \"\\f3cc\"; }\n\n.fa-schlix:before {\n  content: \"\\f3ea\"; }\n\n.fa-square-xing:before {\n  content: \"\\f169\"; }\n\n.fa-xing-square:before {\n  content: \"\\f169\"; }\n\n.fa-bandcamp:before {\n  content: \"\\f2d5\"; }\n\n.fa-wpforms:before {\n  content: \"\\f298\"; }\n\n.fa-cloudversify:before {\n  content: \"\\f385\"; }\n\n.fa-usps:before {\n  content: \"\\f7e1\"; }\n\n.fa-megaport:before {\n  content: \"\\f5a3\"; }\n\n.fa-magento:before {\n  content: \"\\f3c4\"; }\n\n.fa-spotify:before {\n  content: \"\\f1bc\"; }\n\n.fa-optin-monster:before {\n  content: \"\\f23c\"; }\n\n.fa-fly:before {\n  content: \"\\f417\"; }\n\n.fa-aviato:before {\n  content: \"\\f421\"; }\n\n.fa-itunes:before {\n  content: \"\\f3b4\"; }\n\n.fa-cuttlefish:before {\n  content: \"\\f38c\"; }\n\n.fa-blogger:before {\n  content: \"\\f37c\"; }\n\n.fa-flickr:before {\n  content: \"\\f16e\"; }\n\n.fa-viber:before {\n  content: \"\\f409\"; }\n\n.fa-soundcloud:before {\n  content: \"\\f1be\"; }\n\n.fa-digg:before {\n  content: \"\\f1a6\"; }\n\n.fa-tencent-weibo:before {\n  content: \"\\f1d5\"; }\n\n.fa-letterboxd:before {\n  content: \"\\e62d\"; }\n\n.fa-symfony:before {\n  content: \"\\f83d\"; }\n\n.fa-maxcdn:before {\n  content: \"\\f136\"; }\n\n.fa-etsy:before {\n  content: \"\\f2d7\"; }\n\n.fa-facebook-messenger:before {\n  content: \"\\f39f\"; }\n\n.fa-audible:before {\n  content: \"\\f373\"; }\n\n.fa-think-peaks:before {\n  content: \"\\f731\"; }\n\n.fa-bilibili:before {\n  content: \"\\e3d9\"; }\n\n.fa-erlang:before {\n  content: \"\\f39d\"; }\n\n.fa-x-twitter:before {\n  content: \"\\e61b\"; }\n\n.fa-cotton-bureau:before {\n  content: \"\\f89e\"; }\n\n.fa-dashcube:before {\n  content: \"\\f210\"; }\n\n.fa-42-group:before {\n  content: \"\\e080\"; }\n\n.fa-innosoft:before {\n  content: \"\\e080\"; }\n\n.fa-stack-exchange:before {\n  content: \"\\f18d\"; }\n\n.fa-elementor:before {\n  content: \"\\f430\"; }\n\n.fa-square-pied-piper:before {\n  content: \"\\e01e\"; }\n\n.fa-pied-piper-square:before {\n  content: \"\\e01e\"; }\n\n.fa-creative-commons-nd:before {\n  content: \"\\f4eb\"; }\n\n.fa-palfed:before {\n  content: \"\\f3d8\"; }\n\n.fa-superpowers:before {\n  content: \"\\f2dd\"; }\n\n.fa-resolving:before {\n  content: \"\\f3e7\"; }\n\n.fa-xbox:before {\n  content: \"\\f412\"; }\n\n.fa-square-web-awesome-stroke:before {\n  content: \"\\e684\"; }\n\n.fa-searchengin:before {\n  content: \"\\f3eb\"; }\n\n.fa-tiktok:before {\n  content: \"\\e07b\"; }\n\n.fa-square-facebook:before {\n  content: \"\\f082\"; }\n\n.fa-facebook-square:before {\n  content: \"\\f082\"; }\n\n.fa-renren:before {\n  content: \"\\f18b\"; }\n\n.fa-linux:before {\n  content: \"\\f17c\"; }\n\n.fa-glide:before {\n  content: \"\\f2a5\"; }\n\n.fa-linkedin:before {\n  content: \"\\f08c\"; }\n\n.fa-hubspot:before {\n  content: \"\\f3b2\"; }\n\n.fa-deploydog:before {\n  content: \"\\f38e\"; }\n\n.fa-twitch:before {\n  content: \"\\f1e8\"; }\n\n.fa-ravelry:before {\n  content: \"\\f2d9\"; }\n\n.fa-mixer:before {\n  content: \"\\e056\"; }\n\n.fa-square-lastfm:before {\n  content: \"\\f203\"; }\n\n.fa-lastfm-square:before {\n  content: \"\\f203\"; }\n\n.fa-vimeo:before {\n  content: \"\\f40a\"; }\n\n.fa-mendeley:before {\n  content: \"\\f7b3\"; }\n\n.fa-uniregistry:before {\n  content: \"\\f404\"; }\n\n.fa-figma:before {\n  content: \"\\f799\"; }\n\n.fa-creative-commons-remix:before {\n  content: \"\\f4ee\"; }\n\n.fa-cc-amazon-pay:before {\n  content: \"\\f42d\"; }\n\n.fa-dropbox:before {\n  content: \"\\f16b\"; }\n\n.fa-instagram:before {\n  content: \"\\f16d\"; }\n\n.fa-cmplid:before {\n  content: \"\\e360\"; }\n\n.fa-upwork:before {\n  content: \"\\e641\"; }\n\n.fa-facebook:before {\n  content: \"\\f09a\"; }\n\n.fa-gripfire:before {\n  content: \"\\f3ac\"; }\n\n.fa-jedi-order:before {\n  content: \"\\f50e\"; }\n\n.fa-uikit:before {\n  content: \"\\f403\"; }\n\n.fa-fort-awesome-alt:before {\n  content: \"\\f3a3\"; }\n\n.fa-phabricator:before {\n  content: \"\\f3db\"; }\n\n.fa-ussunnah:before {\n  content: \"\\f407\"; }\n\n.fa-earlybirds:before {\n  content: \"\\f39a\"; }\n\n.fa-trade-federation:before {\n  content: \"\\f513\"; }\n\n.fa-autoprefixer:before {\n  content: \"\\f41c\"; }\n\n.fa-whatsapp:before {\n  content: \"\\f232\"; }\n\n.fa-square-upwork:before {\n  content: \"\\e67c\"; }\n\n.fa-slideshare:before {\n  content: \"\\f1e7\"; }\n\n.fa-google-play:before {\n  content: \"\\f3ab\"; }\n\n.fa-viadeo:before {\n  content: \"\\f2a9\"; }\n\n.fa-line:before {\n  content: \"\\f3c0\"; }\n\n.fa-google-drive:before {\n  content: \"\\f3aa\"; }\n\n.fa-servicestack:before {\n  content: \"\\f3ec\"; }\n\n.fa-simplybuilt:before {\n  content: \"\\f215\"; }\n\n.fa-bitbucket:before {\n  content: \"\\f171\"; }\n\n.fa-imdb:before {\n  content: \"\\f2d8\"; }\n\n.fa-deezer:before {\n  content: \"\\e077\"; }\n\n.fa-raspberry-pi:before {\n  content: \"\\f7bb\"; }\n\n.fa-jira:before {\n  content: \"\\f7b1\"; }\n\n.fa-docker:before {\n  content: \"\\f395\"; }\n\n.fa-screenpal:before {\n  content: \"\\e570\"; }\n\n.fa-bluetooth:before {\n  content: \"\\f293\"; }\n\n.fa-gitter:before {\n  content: \"\\f426\"; }\n\n.fa-d-and-d:before {\n  content: \"\\f38d\"; }\n\n.fa-microblog:before {\n  content: \"\\e01a\"; }\n\n.fa-cc-diners-club:before {\n  content: \"\\f24c\"; }\n\n.fa-gg-circle:before {\n  content: \"\\f261\"; }\n\n.fa-pied-piper-hat:before {\n  content: \"\\f4e5\"; }\n\n.fa-kickstarter-k:before {\n  content: \"\\f3bc\"; }\n\n.fa-yandex:before {\n  content: \"\\f413\"; }\n\n.fa-readme:before {\n  content: \"\\f4d5\"; }\n\n.fa-html5:before {\n  content: \"\\f13b\"; }\n\n.fa-sellsy:before {\n  content: \"\\f213\"; }\n\n.fa-square-web-awesome:before {\n  content: \"\\e683\"; }\n\n.fa-sass:before {\n  content: \"\\f41e\"; }\n\n.fa-wirsindhandwerk:before {\n  content: \"\\e2d0\"; }\n\n.fa-wsh:before {\n  content: \"\\e2d0\"; }\n\n.fa-buromobelexperte:before {\n  content: \"\\f37f\"; }\n\n.fa-salesforce:before {\n  content: \"\\f83b\"; }\n\n.fa-octopus-deploy:before {\n  content: \"\\e082\"; }\n\n.fa-medapps:before {\n  content: \"\\f3c6\"; }\n\n.fa-ns8:before {\n  content: \"\\f3d5\"; }\n\n.fa-pinterest-p:before {\n  content: \"\\f231\"; }\n\n.fa-apper:before {\n  content: \"\\f371\"; }\n\n.fa-fort-awesome:before {\n  content: \"\\f286\"; }\n\n.fa-waze:before {\n  content: \"\\f83f\"; }\n\n.fa-bluesky:before {\n  content: \"\\e671\"; }\n\n.fa-cc-jcb:before {\n  content: \"\\f24b\"; }\n\n.fa-snapchat:before {\n  content: \"\\f2ab\"; }\n\n.fa-snapchat-ghost:before {\n  content: \"\\f2ab\"; }\n\n.fa-fantasy-flight-games:before {\n  content: \"\\f6dc\"; }\n\n.fa-rust:before {\n  content: \"\\e07a\"; }\n\n.fa-wix:before {\n  content: \"\\f5cf\"; }\n\n.fa-square-behance:before {\n  content: \"\\f1b5\"; }\n\n.fa-behance-square:before {\n  content: \"\\f1b5\"; }\n\n.fa-supple:before {\n  content: \"\\f3f9\"; }\n\n.fa-webflow:before {\n  content: \"\\e65c\"; }\n\n.fa-rebel:before {\n  content: \"\\f1d0\"; }\n\n.fa-css3:before {\n  content: \"\\f13c\"; }\n\n.fa-staylinked:before {\n  content: \"\\f3f5\"; }\n\n.fa-kaggle:before {\n  content: \"\\f5fa\"; }\n\n.fa-space-awesome:before {\n  content: \"\\e5ac\"; }\n\n.fa-deviantart:before {\n  content: \"\\f1bd\"; }\n\n.fa-cpanel:before {\n  content: \"\\f388\"; }\n\n.fa-goodreads-g:before {\n  content: \"\\f3a9\"; }\n\n.fa-square-git:before {\n  content: \"\\f1d2\"; }\n\n.fa-git-square:before {\n  content: \"\\f1d2\"; }\n\n.fa-square-tumblr:before {\n  content: \"\\f174\"; }\n\n.fa-tumblr-square:before {\n  content: \"\\f174\"; }\n\n.fa-trello:before {\n  content: \"\\f181\"; }\n\n.fa-creative-commons-nc-jp:before {\n  content: \"\\f4ea\"; }\n\n.fa-get-pocket:before {\n  content: \"\\f265\"; }\n\n.fa-perbyte:before {\n  content: \"\\e083\"; }\n\n.fa-grunt:before {\n  content: \"\\f3ad\"; }\n\n.fa-weebly:before {\n  content: \"\\f5cc\"; }\n\n.fa-connectdevelop:before {\n  content: \"\\f20e\"; }\n\n.fa-leanpub:before {\n  content: \"\\f212\"; }\n\n.fa-black-tie:before {\n  content: \"\\f27e\"; }\n\n.fa-themeco:before {\n  content: \"\\f5c6\"; }\n\n.fa-python:before {\n  content: \"\\f3e2\"; }\n\n.fa-android:before {\n  content: \"\\f17b\"; }\n\n.fa-bots:before {\n  content: \"\\e340\"; }\n\n.fa-free-code-camp:before {\n  content: \"\\f2c5\"; }\n\n.fa-hornbill:before {\n  content: \"\\f592\"; }\n\n.fa-js:before {\n  content: \"\\f3b8\"; }\n\n.fa-ideal:before {\n  content: \"\\e013\"; }\n\n.fa-git:before {\n  content: \"\\f1d3\"; }\n\n.fa-dev:before {\n  content: \"\\f6cc\"; }\n\n.fa-sketch:before {\n  content: \"\\f7c6\"; }\n\n.fa-yandex-international:before {\n  content: \"\\f414\"; }\n\n.fa-cc-amex:before {\n  content: \"\\f1f3\"; }\n\n.fa-uber:before {\n  content: \"\\f402\"; }\n\n.fa-github:before {\n  content: \"\\f09b\"; }\n\n.fa-php:before {\n  content: \"\\f457\"; }\n\n.fa-alipay:before {\n  content: \"\\f642\"; }\n\n.fa-youtube:before {\n  content: \"\\f167\"; }\n\n.fa-skyatlas:before {\n  content: \"\\f216\"; }\n\n.fa-firefox-browser:before {\n  content: \"\\e007\"; }\n\n.fa-replyd:before {\n  content: \"\\f3e6\"; }\n\n.fa-suse:before {\n  content: \"\\f7d6\"; }\n\n.fa-jenkins:before {\n  content: \"\\f3b6\"; }\n\n.fa-twitter:before {\n  content: \"\\f099\"; }\n\n.fa-rockrms:before {\n  content: \"\\f3e9\"; }\n\n.fa-pinterest:before {\n  content: \"\\f0d2\"; }\n\n.fa-buffer:before {\n  content: \"\\f837\"; }\n\n.fa-npm:before {\n  content: \"\\f3d4\"; }\n\n.fa-yammer:before {\n  content: \"\\f840\"; }\n\n.fa-btc:before {\n  content: \"\\f15a\"; }\n\n.fa-dribbble:before {\n  content: \"\\f17d\"; }\n\n.fa-stumbleupon-circle:before {\n  content: \"\\f1a3\"; }\n\n.fa-internet-explorer:before {\n  content: \"\\f26b\"; }\n\n.fa-stubber:before {\n  content: \"\\e5c7\"; }\n\n.fa-telegram:before {\n  content: \"\\f2c6\"; }\n\n.fa-telegram-plane:before {\n  content: \"\\f2c6\"; }\n\n.fa-old-republic:before {\n  content: \"\\f510\"; }\n\n.fa-odysee:before {\n  content: \"\\e5c6\"; }\n\n.fa-square-whatsapp:before {\n  content: \"\\f40c\"; }\n\n.fa-whatsapp-square:before {\n  content: \"\\f40c\"; }\n\n.fa-node-js:before {\n  content: \"\\f3d3\"; }\n\n.fa-edge-legacy:before {\n  content: \"\\e078\"; }\n\n.fa-slack:before {\n  content: \"\\f198\"; }\n\n.fa-slack-hash:before {\n  content: \"\\f198\"; }\n\n.fa-medrt:before {\n  content: \"\\f3c8\"; }\n\n.fa-usb:before {\n  content: \"\\f287\"; }\n\n.fa-tumblr:before {\n  content: \"\\f173\"; }\n\n.fa-vaadin:before {\n  content: \"\\f408\"; }\n\n.fa-quora:before {\n  content: \"\\f2c4\"; }\n\n.fa-square-x-twitter:before {\n  content: \"\\e61a\"; }\n\n.fa-reacteurope:before {\n  content: \"\\f75d\"; }\n\n.fa-medium:before {\n  content: \"\\f23a\"; }\n\n.fa-medium-m:before {\n  content: \"\\f23a\"; }\n\n.fa-amilia:before {\n  content: \"\\f36d\"; }\n\n.fa-mixcloud:before {\n  content: \"\\f289\"; }\n\n.fa-flipboard:before {\n  content: \"\\f44d\"; }\n\n.fa-viacoin:before {\n  content: \"\\f237\"; }\n\n.fa-critical-role:before {\n  content: \"\\f6c9\"; }\n\n.fa-sitrox:before {\n  content: \"\\e44a\"; }\n\n.fa-discourse:before {\n  content: \"\\f393\"; }\n\n.fa-joomla:before {\n  content: \"\\f1aa\"; }\n\n.fa-mastodon:before {\n  content: \"\\f4f6\"; }\n\n.fa-airbnb:before {\n  content: \"\\f834\"; }\n\n.fa-wolf-pack-battalion:before {\n  content: \"\\f514\"; }\n\n.fa-buy-n-large:before {\n  content: \"\\f8a6\"; }\n\n.fa-gulp:before {\n  content: \"\\f3ae\"; }\n\n.fa-creative-commons-sampling-plus:before {\n  content: \"\\f4f1\"; }\n\n.fa-strava:before {\n  content: \"\\f428\"; }\n\n.fa-ember:before {\n  content: \"\\f423\"; }\n\n.fa-canadian-maple-leaf:before {\n  content: \"\\f785\"; }\n\n.fa-teamspeak:before {\n  content: \"\\f4f9\"; }\n\n.fa-pushed:before {\n  content: \"\\f3e1\"; }\n\n.fa-wordpress-simple:before {\n  content: \"\\f411\"; }\n\n.fa-nutritionix:before {\n  content: \"\\f3d6\"; }\n\n.fa-wodu:before {\n  content: \"\\e088\"; }\n\n.fa-google-pay:before {\n  content: \"\\e079\"; }\n\n.fa-intercom:before {\n  content: \"\\f7af\"; }\n\n.fa-zhihu:before {\n  content: \"\\f63f\"; }\n\n.fa-korvue:before {\n  content: \"\\f42f\"; }\n\n.fa-pix:before {\n  content: \"\\e43a\"; }\n\n.fa-steam-symbol:before {\n  content: \"\\f3f6\"; }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/resources/META-INF/resources/fontawesome6/6.5.2/css/fontawesome.css",
    "content": "/*!\n * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n * Copyright 2024 Fonticons, Inc.\n */\n.fa {\n  font-family: var(--fa-style-family, \"Font Awesome 6 Free\");\n  font-weight: var(--fa-style, 900); }\n\n.fa,\n.fa-classic,\n.fa-sharp,\n.fas,\n.fa-solid,\n.far,\n.fa-regular,\n.fab,\n.fa-brands {\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n  display: var(--fa-display, inline-block);\n  font-style: normal;\n  font-variant: normal;\n  line-height: 1;\n  text-rendering: auto; }\n\n.fas,\n.fa-classic,\n.fa-solid,\n.far,\n.fa-regular {\n  font-family: 'Font Awesome 6 Free'; }\n\n.fab,\n.fa-brands {\n  font-family: 'Font Awesome 6 Brands'; }\n\n.fa-1x {\n  font-size: 1em; }\n\n.fa-2x {\n  font-size: 2em; }\n\n.fa-3x {\n  font-size: 3em; }\n\n.fa-4x {\n  font-size: 4em; }\n\n.fa-5x {\n  font-size: 5em; }\n\n.fa-6x {\n  font-size: 6em; }\n\n.fa-7x {\n  font-size: 7em; }\n\n.fa-8x {\n  font-size: 8em; }\n\n.fa-9x {\n  font-size: 9em; }\n\n.fa-10x {\n  font-size: 10em; }\n\n.fa-2xs {\n  font-size: 0.625em;\n  line-height: 0.1em;\n  vertical-align: 0.225em; }\n\n.fa-xs {\n  font-size: 0.75em;\n  line-height: 0.08333em;\n  vertical-align: 0.125em; }\n\n.fa-sm {\n  font-size: 0.875em;\n  line-height: 0.07143em;\n  vertical-align: 0.05357em; }\n\n.fa-lg {\n  font-size: 1.25em;\n  line-height: 0.05em;\n  vertical-align: -0.075em; }\n\n.fa-xl {\n  font-size: 1.5em;\n  line-height: 0.04167em;\n  vertical-align: -0.125em; }\n\n.fa-2xl {\n  font-size: 2em;\n  line-height: 0.03125em;\n  vertical-align: -0.1875em; }\n\n.fa-fw {\n  text-align: center;\n  width: 1.25em; }\n\n.fa-ul {\n  list-style-type: none;\n  margin-left: var(--fa-li-margin, 2.5em);\n  padding-left: 0; }\n  .fa-ul > li {\n    position: relative; }\n\n.fa-li {\n  left: calc(var(--fa-li-width, 2em) * -1);\n  position: absolute;\n  text-align: center;\n  width: var(--fa-li-width, 2em);\n  line-height: inherit; }\n\n.fa-border {\n  border-color: var(--fa-border-color, #eee);\n  border-radius: var(--fa-border-radius, 0.1em);\n  border-style: var(--fa-border-style, solid);\n  border-width: var(--fa-border-width, 0.08em);\n  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); }\n\n.fa-pull-left {\n  float: left;\n  margin-right: var(--fa-pull-margin, 0.3em); }\n\n.fa-pull-right {\n  float: right;\n  margin-left: var(--fa-pull-margin, 0.3em); }\n\n.fa-beat {\n  -webkit-animation-name: fa-beat;\n          animation-name: fa-beat;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n          animation-timing-function: var(--fa-animation-timing, ease-in-out); }\n\n.fa-bounce {\n  -webkit-animation-name: fa-bounce;\n          animation-name: fa-bounce;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); }\n\n.fa-fade {\n  -webkit-animation-name: fa-fade;\n          animation-name: fa-fade;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }\n\n.fa-beat-fade {\n  -webkit-animation-name: fa-beat-fade;\n          animation-name: fa-beat-fade;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }\n\n.fa-flip {\n  -webkit-animation-name: fa-flip;\n          animation-name: fa-flip;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n          animation-timing-function: var(--fa-animation-timing, ease-in-out); }\n\n.fa-shake {\n  -webkit-animation-name: fa-shake;\n          animation-name: fa-shake;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n          animation-timing-function: var(--fa-animation-timing, linear); }\n\n.fa-spin {\n  -webkit-animation-name: fa-spin;\n          animation-name: fa-spin;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 2s);\n          animation-duration: var(--fa-animation-duration, 2s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n          animation-timing-function: var(--fa-animation-timing, linear); }\n\n.fa-spin-reverse {\n  --fa-animation-direction: reverse; }\n\n.fa-pulse,\n.fa-spin-pulse {\n  -webkit-animation-name: fa-spin;\n          animation-name: fa-spin;\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n          animation-timing-function: var(--fa-animation-timing, steps(8)); }\n\n@media (prefers-reduced-motion: reduce) {\n  .fa-beat,\n  .fa-bounce,\n  .fa-fade,\n  .fa-beat-fade,\n  .fa-flip,\n  .fa-pulse,\n  .fa-shake,\n  .fa-spin,\n  .fa-spin-pulse {\n    -webkit-animation-delay: -1ms;\n            animation-delay: -1ms;\n    -webkit-animation-duration: 1ms;\n            animation-duration: 1ms;\n    -webkit-animation-iteration-count: 1;\n            animation-iteration-count: 1;\n    -webkit-transition-delay: 0s;\n            transition-delay: 0s;\n    -webkit-transition-duration: 0s;\n            transition-duration: 0s; } }\n\n@-webkit-keyframes fa-beat {\n  0%, 90% {\n    -webkit-transform: scale(1);\n            transform: scale(1); }\n  45% {\n    -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n            transform: scale(var(--fa-beat-scale, 1.25)); } }\n\n@keyframes fa-beat {\n  0%, 90% {\n    -webkit-transform: scale(1);\n            transform: scale(1); }\n  45% {\n    -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n            transform: scale(var(--fa-beat-scale, 1.25)); } }\n\n@-webkit-keyframes fa-bounce {\n  0% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); }\n  10% {\n    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }\n  30% {\n    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }\n  50% {\n    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }\n  57% {\n    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }\n  64% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); }\n  100% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); } }\n\n@keyframes fa-bounce {\n  0% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); }\n  10% {\n    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }\n  30% {\n    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }\n  50% {\n    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }\n  57% {\n    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }\n  64% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); }\n  100% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); } }\n\n@-webkit-keyframes fa-fade {\n  50% {\n    opacity: var(--fa-fade-opacity, 0.4); } }\n\n@keyframes fa-fade {\n  50% {\n    opacity: var(--fa-fade-opacity, 0.4); } }\n\n@-webkit-keyframes fa-beat-fade {\n  0%, 100% {\n    opacity: var(--fa-beat-fade-opacity, 0.4);\n    -webkit-transform: scale(1);\n            transform: scale(1); }\n  50% {\n    opacity: 1;\n    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n            transform: scale(var(--fa-beat-fade-scale, 1.125)); } }\n\n@keyframes fa-beat-fade {\n  0%, 100% {\n    opacity: var(--fa-beat-fade-opacity, 0.4);\n    -webkit-transform: scale(1);\n            transform: scale(1); }\n  50% {\n    opacity: 1;\n    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n            transform: scale(var(--fa-beat-fade-scale, 1.125)); } }\n\n@-webkit-keyframes fa-flip {\n  50% {\n    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }\n\n@keyframes fa-flip {\n  50% {\n    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }\n\n@-webkit-keyframes fa-shake {\n  0% {\n    -webkit-transform: rotate(-15deg);\n            transform: rotate(-15deg); }\n  4% {\n    -webkit-transform: rotate(15deg);\n            transform: rotate(15deg); }\n  8%, 24% {\n    -webkit-transform: rotate(-18deg);\n            transform: rotate(-18deg); }\n  12%, 28% {\n    -webkit-transform: rotate(18deg);\n            transform: rotate(18deg); }\n  16% {\n    -webkit-transform: rotate(-22deg);\n            transform: rotate(-22deg); }\n  20% {\n    -webkit-transform: rotate(22deg);\n            transform: rotate(22deg); }\n  32% {\n    -webkit-transform: rotate(-12deg);\n            transform: rotate(-12deg); }\n  36% {\n    -webkit-transform: rotate(12deg);\n            transform: rotate(12deg); }\n  40%, 100% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); } }\n\n@keyframes fa-shake {\n  0% {\n    -webkit-transform: rotate(-15deg);\n            transform: rotate(-15deg); }\n  4% {\n    -webkit-transform: rotate(15deg);\n            transform: rotate(15deg); }\n  8%, 24% {\n    -webkit-transform: rotate(-18deg);\n            transform: rotate(-18deg); }\n  12%, 28% {\n    -webkit-transform: rotate(18deg);\n            transform: rotate(18deg); }\n  16% {\n    -webkit-transform: rotate(-22deg);\n            transform: rotate(-22deg); }\n  20% {\n    -webkit-transform: rotate(22deg);\n            transform: rotate(22deg); }\n  32% {\n    -webkit-transform: rotate(-12deg);\n            transform: rotate(-12deg); }\n  36% {\n    -webkit-transform: rotate(12deg);\n            transform: rotate(12deg); }\n  40%, 100% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); } }\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n  -webkit-transform: rotate(90deg);\n          transform: rotate(90deg); }\n\n.fa-rotate-180 {\n  -webkit-transform: rotate(180deg);\n          transform: rotate(180deg); }\n\n.fa-rotate-270 {\n  -webkit-transform: rotate(270deg);\n          transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n  -webkit-transform: scale(-1, 1);\n          transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n  -webkit-transform: scale(1, -1);\n          transform: scale(1, -1); }\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n  -webkit-transform: scale(-1, -1);\n          transform: scale(-1, -1); }\n\n.fa-rotate-by {\n  -webkit-transform: rotate(var(--fa-rotate-angle, 0));\n          transform: rotate(var(--fa-rotate-angle, 0)); }\n\n.fa-stack {\n  display: inline-block;\n  height: 2em;\n  line-height: 2em;\n  position: relative;\n  vertical-align: middle;\n  width: 2.5em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n  left: 0;\n  position: absolute;\n  text-align: center;\n  width: 100%;\n  z-index: var(--fa-stack-z-index, auto); }\n\n.fa-stack-1x {\n  line-height: inherit; }\n\n.fa-stack-2x {\n  font-size: 2em; }\n\n.fa-inverse {\n  color: var(--fa-inverse, #fff); }\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\nreaders do not read off random characters that represent icons */\n\n.fa-0::before {\n  content: \"\\30\"; }\n\n.fa-1::before {\n  content: \"\\31\"; }\n\n.fa-2::before {\n  content: \"\\32\"; }\n\n.fa-3::before {\n  content: \"\\33\"; }\n\n.fa-4::before {\n  content: \"\\34\"; }\n\n.fa-5::before {\n  content: \"\\35\"; }\n\n.fa-6::before {\n  content: \"\\36\"; }\n\n.fa-7::before {\n  content: \"\\37\"; }\n\n.fa-8::before {\n  content: \"\\38\"; }\n\n.fa-9::before {\n  content: \"\\39\"; }\n\n.fa-fill-drip::before {\n  content: \"\\f576\"; }\n\n.fa-arrows-to-circle::before {\n  content: \"\\e4bd\"; }\n\n.fa-circle-chevron-right::before {\n  content: \"\\f138\"; }\n\n.fa-chevron-circle-right::before {\n  content: \"\\f138\"; }\n\n.fa-at::before {\n  content: \"\\40\"; }\n\n.fa-trash-can::before {\n  content: \"\\f2ed\"; }\n\n.fa-trash-alt::before {\n  content: \"\\f2ed\"; }\n\n.fa-text-height::before {\n  content: \"\\f034\"; }\n\n.fa-user-xmark::before {\n  content: \"\\f235\"; }\n\n.fa-user-times::before {\n  content: \"\\f235\"; }\n\n.fa-stethoscope::before {\n  content: \"\\f0f1\"; }\n\n.fa-message::before {\n  content: \"\\f27a\"; }\n\n.fa-comment-alt::before {\n  content: \"\\f27a\"; }\n\n.fa-info::before {\n  content: \"\\f129\"; }\n\n.fa-down-left-and-up-right-to-center::before {\n  content: \"\\f422\"; }\n\n.fa-compress-alt::before {\n  content: \"\\f422\"; }\n\n.fa-explosion::before {\n  content: \"\\e4e9\"; }\n\n.fa-file-lines::before {\n  content: \"\\f15c\"; }\n\n.fa-file-alt::before {\n  content: \"\\f15c\"; }\n\n.fa-file-text::before {\n  content: \"\\f15c\"; }\n\n.fa-wave-square::before {\n  content: \"\\f83e\"; }\n\n.fa-ring::before {\n  content: \"\\f70b\"; }\n\n.fa-building-un::before {\n  content: \"\\e4d9\"; }\n\n.fa-dice-three::before {\n  content: \"\\f527\"; }\n\n.fa-calendar-days::before {\n  content: \"\\f073\"; }\n\n.fa-calendar-alt::before {\n  content: \"\\f073\"; }\n\n.fa-anchor-circle-check::before {\n  content: \"\\e4aa\"; }\n\n.fa-building-circle-arrow-right::before {\n  content: \"\\e4d1\"; }\n\n.fa-volleyball::before {\n  content: \"\\f45f\"; }\n\n.fa-volleyball-ball::before {\n  content: \"\\f45f\"; }\n\n.fa-arrows-up-to-line::before {\n  content: \"\\e4c2\"; }\n\n.fa-sort-down::before {\n  content: \"\\f0dd\"; }\n\n.fa-sort-desc::before {\n  content: \"\\f0dd\"; }\n\n.fa-circle-minus::before {\n  content: \"\\f056\"; }\n\n.fa-minus-circle::before {\n  content: \"\\f056\"; }\n\n.fa-door-open::before {\n  content: \"\\f52b\"; }\n\n.fa-right-from-bracket::before {\n  content: \"\\f2f5\"; }\n\n.fa-sign-out-alt::before {\n  content: \"\\f2f5\"; }\n\n.fa-atom::before {\n  content: \"\\f5d2\"; }\n\n.fa-soap::before {\n  content: \"\\e06e\"; }\n\n.fa-icons::before {\n  content: \"\\f86d\"; }\n\n.fa-heart-music-camera-bolt::before {\n  content: \"\\f86d\"; }\n\n.fa-microphone-lines-slash::before {\n  content: \"\\f539\"; }\n\n.fa-microphone-alt-slash::before {\n  content: \"\\f539\"; }\n\n.fa-bridge-circle-check::before {\n  content: \"\\e4c9\"; }\n\n.fa-pump-medical::before {\n  content: \"\\e06a\"; }\n\n.fa-fingerprint::before {\n  content: \"\\f577\"; }\n\n.fa-hand-point-right::before {\n  content: \"\\f0a4\"; }\n\n.fa-magnifying-glass-location::before {\n  content: \"\\f689\"; }\n\n.fa-search-location::before {\n  content: \"\\f689\"; }\n\n.fa-forward-step::before {\n  content: \"\\f051\"; }\n\n.fa-step-forward::before {\n  content: \"\\f051\"; }\n\n.fa-face-smile-beam::before {\n  content: \"\\f5b8\"; }\n\n.fa-smile-beam::before {\n  content: \"\\f5b8\"; }\n\n.fa-flag-checkered::before {\n  content: \"\\f11e\"; }\n\n.fa-football::before {\n  content: \"\\f44e\"; }\n\n.fa-football-ball::before {\n  content: \"\\f44e\"; }\n\n.fa-school-circle-exclamation::before {\n  content: \"\\e56c\"; }\n\n.fa-crop::before {\n  content: \"\\f125\"; }\n\n.fa-angles-down::before {\n  content: \"\\f103\"; }\n\n.fa-angle-double-down::before {\n  content: \"\\f103\"; }\n\n.fa-users-rectangle::before {\n  content: \"\\e594\"; }\n\n.fa-people-roof::before {\n  content: \"\\e537\"; }\n\n.fa-people-line::before {\n  content: \"\\e534\"; }\n\n.fa-beer-mug-empty::before {\n  content: \"\\f0fc\"; }\n\n.fa-beer::before {\n  content: \"\\f0fc\"; }\n\n.fa-diagram-predecessor::before {\n  content: \"\\e477\"; }\n\n.fa-arrow-up-long::before {\n  content: \"\\f176\"; }\n\n.fa-long-arrow-up::before {\n  content: \"\\f176\"; }\n\n.fa-fire-flame-simple::before {\n  content: \"\\f46a\"; }\n\n.fa-burn::before {\n  content: \"\\f46a\"; }\n\n.fa-person::before {\n  content: \"\\f183\"; }\n\n.fa-male::before {\n  content: \"\\f183\"; }\n\n.fa-laptop::before {\n  content: \"\\f109\"; }\n\n.fa-file-csv::before {\n  content: \"\\f6dd\"; }\n\n.fa-menorah::before {\n  content: \"\\f676\"; }\n\n.fa-truck-plane::before {\n  content: \"\\e58f\"; }\n\n.fa-record-vinyl::before {\n  content: \"\\f8d9\"; }\n\n.fa-face-grin-stars::before {\n  content: \"\\f587\"; }\n\n.fa-grin-stars::before {\n  content: \"\\f587\"; }\n\n.fa-bong::before {\n  content: \"\\f55c\"; }\n\n.fa-spaghetti-monster-flying::before {\n  content: \"\\f67b\"; }\n\n.fa-pastafarianism::before {\n  content: \"\\f67b\"; }\n\n.fa-arrow-down-up-across-line::before {\n  content: \"\\e4af\"; }\n\n.fa-spoon::before {\n  content: \"\\f2e5\"; }\n\n.fa-utensil-spoon::before {\n  content: \"\\f2e5\"; }\n\n.fa-jar-wheat::before {\n  content: \"\\e517\"; }\n\n.fa-envelopes-bulk::before {\n  content: \"\\f674\"; }\n\n.fa-mail-bulk::before {\n  content: \"\\f674\"; }\n\n.fa-file-circle-exclamation::before {\n  content: \"\\e4eb\"; }\n\n.fa-circle-h::before {\n  content: \"\\f47e\"; }\n\n.fa-hospital-symbol::before {\n  content: \"\\f47e\"; }\n\n.fa-pager::before {\n  content: \"\\f815\"; }\n\n.fa-address-book::before {\n  content: \"\\f2b9\"; }\n\n.fa-contact-book::before {\n  content: \"\\f2b9\"; }\n\n.fa-strikethrough::before {\n  content: \"\\f0cc\"; }\n\n.fa-k::before {\n  content: \"\\4b\"; }\n\n.fa-landmark-flag::before {\n  content: \"\\e51c\"; }\n\n.fa-pencil::before {\n  content: \"\\f303\"; }\n\n.fa-pencil-alt::before {\n  content: \"\\f303\"; }\n\n.fa-backward::before {\n  content: \"\\f04a\"; }\n\n.fa-caret-right::before {\n  content: \"\\f0da\"; }\n\n.fa-comments::before {\n  content: \"\\f086\"; }\n\n.fa-paste::before {\n  content: \"\\f0ea\"; }\n\n.fa-file-clipboard::before {\n  content: \"\\f0ea\"; }\n\n.fa-code-pull-request::before {\n  content: \"\\e13c\"; }\n\n.fa-clipboard-list::before {\n  content: \"\\f46d\"; }\n\n.fa-truck-ramp-box::before {\n  content: \"\\f4de\"; }\n\n.fa-truck-loading::before {\n  content: \"\\f4de\"; }\n\n.fa-user-check::before {\n  content: \"\\f4fc\"; }\n\n.fa-vial-virus::before {\n  content: \"\\e597\"; }\n\n.fa-sheet-plastic::before {\n  content: \"\\e571\"; }\n\n.fa-blog::before {\n  content: \"\\f781\"; }\n\n.fa-user-ninja::before {\n  content: \"\\f504\"; }\n\n.fa-person-arrow-up-from-line::before {\n  content: \"\\e539\"; }\n\n.fa-scroll-torah::before {\n  content: \"\\f6a0\"; }\n\n.fa-torah::before {\n  content: \"\\f6a0\"; }\n\n.fa-broom-ball::before {\n  content: \"\\f458\"; }\n\n.fa-quidditch::before {\n  content: \"\\f458\"; }\n\n.fa-quidditch-broom-ball::before {\n  content: \"\\f458\"; }\n\n.fa-toggle-off::before {\n  content: \"\\f204\"; }\n\n.fa-box-archive::before {\n  content: \"\\f187\"; }\n\n.fa-archive::before {\n  content: \"\\f187\"; }\n\n.fa-person-drowning::before {\n  content: \"\\e545\"; }\n\n.fa-arrow-down-9-1::before {\n  content: \"\\f886\"; }\n\n.fa-sort-numeric-desc::before {\n  content: \"\\f886\"; }\n\n.fa-sort-numeric-down-alt::before {\n  content: \"\\f886\"; }\n\n.fa-face-grin-tongue-squint::before {\n  content: \"\\f58a\"; }\n\n.fa-grin-tongue-squint::before {\n  content: \"\\f58a\"; }\n\n.fa-spray-can::before {\n  content: \"\\f5bd\"; }\n\n.fa-truck-monster::before {\n  content: \"\\f63b\"; }\n\n.fa-w::before {\n  content: \"\\57\"; }\n\n.fa-earth-africa::before {\n  content: \"\\f57c\"; }\n\n.fa-globe-africa::before {\n  content: \"\\f57c\"; }\n\n.fa-rainbow::before {\n  content: \"\\f75b\"; }\n\n.fa-circle-notch::before {\n  content: \"\\f1ce\"; }\n\n.fa-tablet-screen-button::before {\n  content: \"\\f3fa\"; }\n\n.fa-tablet-alt::before {\n  content: \"\\f3fa\"; }\n\n.fa-paw::before {\n  content: \"\\f1b0\"; }\n\n.fa-cloud::before {\n  content: \"\\f0c2\"; }\n\n.fa-trowel-bricks::before {\n  content: \"\\e58a\"; }\n\n.fa-face-flushed::before {\n  content: \"\\f579\"; }\n\n.fa-flushed::before {\n  content: \"\\f579\"; }\n\n.fa-hospital-user::before {\n  content: \"\\f80d\"; }\n\n.fa-tent-arrow-left-right::before {\n  content: \"\\e57f\"; }\n\n.fa-gavel::before {\n  content: \"\\f0e3\"; }\n\n.fa-legal::before {\n  content: \"\\f0e3\"; }\n\n.fa-binoculars::before {\n  content: \"\\f1e5\"; }\n\n.fa-microphone-slash::before {\n  content: \"\\f131\"; }\n\n.fa-box-tissue::before {\n  content: \"\\e05b\"; }\n\n.fa-motorcycle::before {\n  content: \"\\f21c\"; }\n\n.fa-bell-concierge::before {\n  content: \"\\f562\"; }\n\n.fa-concierge-bell::before {\n  content: \"\\f562\"; }\n\n.fa-pen-ruler::before {\n  content: \"\\f5ae\"; }\n\n.fa-pencil-ruler::before {\n  content: \"\\f5ae\"; }\n\n.fa-people-arrows::before {\n  content: \"\\e068\"; }\n\n.fa-people-arrows-left-right::before {\n  content: \"\\e068\"; }\n\n.fa-mars-and-venus-burst::before {\n  content: \"\\e523\"; }\n\n.fa-square-caret-right::before {\n  content: \"\\f152\"; }\n\n.fa-caret-square-right::before {\n  content: \"\\f152\"; }\n\n.fa-scissors::before {\n  content: \"\\f0c4\"; }\n\n.fa-cut::before {\n  content: \"\\f0c4\"; }\n\n.fa-sun-plant-wilt::before {\n  content: \"\\e57a\"; }\n\n.fa-toilets-portable::before {\n  content: \"\\e584\"; }\n\n.fa-hockey-puck::before {\n  content: \"\\f453\"; }\n\n.fa-table::before {\n  content: \"\\f0ce\"; }\n\n.fa-magnifying-glass-arrow-right::before {\n  content: \"\\e521\"; }\n\n.fa-tachograph-digital::before {\n  content: \"\\f566\"; }\n\n.fa-digital-tachograph::before {\n  content: \"\\f566\"; }\n\n.fa-users-slash::before {\n  content: \"\\e073\"; }\n\n.fa-clover::before {\n  content: \"\\e139\"; }\n\n.fa-reply::before {\n  content: \"\\f3e5\"; }\n\n.fa-mail-reply::before {\n  content: \"\\f3e5\"; }\n\n.fa-star-and-crescent::before {\n  content: \"\\f699\"; }\n\n.fa-house-fire::before {\n  content: \"\\e50c\"; }\n\n.fa-square-minus::before {\n  content: \"\\f146\"; }\n\n.fa-minus-square::before {\n  content: \"\\f146\"; }\n\n.fa-helicopter::before {\n  content: \"\\f533\"; }\n\n.fa-compass::before {\n  content: \"\\f14e\"; }\n\n.fa-square-caret-down::before {\n  content: \"\\f150\"; }\n\n.fa-caret-square-down::before {\n  content: \"\\f150\"; }\n\n.fa-file-circle-question::before {\n  content: \"\\e4ef\"; }\n\n.fa-laptop-code::before {\n  content: \"\\f5fc\"; }\n\n.fa-swatchbook::before {\n  content: \"\\f5c3\"; }\n\n.fa-prescription-bottle::before {\n  content: \"\\f485\"; }\n\n.fa-bars::before {\n  content: \"\\f0c9\"; }\n\n.fa-navicon::before {\n  content: \"\\f0c9\"; }\n\n.fa-people-group::before {\n  content: \"\\e533\"; }\n\n.fa-hourglass-end::before {\n  content: \"\\f253\"; }\n\n.fa-hourglass-3::before {\n  content: \"\\f253\"; }\n\n.fa-heart-crack::before {\n  content: \"\\f7a9\"; }\n\n.fa-heart-broken::before {\n  content: \"\\f7a9\"; }\n\n.fa-square-up-right::before {\n  content: \"\\f360\"; }\n\n.fa-external-link-square-alt::before {\n  content: \"\\f360\"; }\n\n.fa-face-kiss-beam::before {\n  content: \"\\f597\"; }\n\n.fa-kiss-beam::before {\n  content: \"\\f597\"; }\n\n.fa-film::before {\n  content: \"\\f008\"; }\n\n.fa-ruler-horizontal::before {\n  content: \"\\f547\"; }\n\n.fa-people-robbery::before {\n  content: \"\\e536\"; }\n\n.fa-lightbulb::before {\n  content: \"\\f0eb\"; }\n\n.fa-caret-left::before {\n  content: \"\\f0d9\"; }\n\n.fa-circle-exclamation::before {\n  content: \"\\f06a\"; }\n\n.fa-exclamation-circle::before {\n  content: \"\\f06a\"; }\n\n.fa-school-circle-xmark::before {\n  content: \"\\e56d\"; }\n\n.fa-arrow-right-from-bracket::before {\n  content: \"\\f08b\"; }\n\n.fa-sign-out::before {\n  content: \"\\f08b\"; }\n\n.fa-circle-chevron-down::before {\n  content: \"\\f13a\"; }\n\n.fa-chevron-circle-down::before {\n  content: \"\\f13a\"; }\n\n.fa-unlock-keyhole::before {\n  content: \"\\f13e\"; }\n\n.fa-unlock-alt::before {\n  content: \"\\f13e\"; }\n\n.fa-cloud-showers-heavy::before {\n  content: \"\\f740\"; }\n\n.fa-headphones-simple::before {\n  content: \"\\f58f\"; }\n\n.fa-headphones-alt::before {\n  content: \"\\f58f\"; }\n\n.fa-sitemap::before {\n  content: \"\\f0e8\"; }\n\n.fa-circle-dollar-to-slot::before {\n  content: \"\\f4b9\"; }\n\n.fa-donate::before {\n  content: \"\\f4b9\"; }\n\n.fa-memory::before {\n  content: \"\\f538\"; }\n\n.fa-road-spikes::before {\n  content: \"\\e568\"; }\n\n.fa-fire-burner::before {\n  content: \"\\e4f1\"; }\n\n.fa-flag::before {\n  content: \"\\f024\"; }\n\n.fa-hanukiah::before {\n  content: \"\\f6e6\"; }\n\n.fa-feather::before {\n  content: \"\\f52d\"; }\n\n.fa-volume-low::before {\n  content: \"\\f027\"; }\n\n.fa-volume-down::before {\n  content: \"\\f027\"; }\n\n.fa-comment-slash::before {\n  content: \"\\f4b3\"; }\n\n.fa-cloud-sun-rain::before {\n  content: \"\\f743\"; }\n\n.fa-compress::before {\n  content: \"\\f066\"; }\n\n.fa-wheat-awn::before {\n  content: \"\\e2cd\"; }\n\n.fa-wheat-alt::before {\n  content: \"\\e2cd\"; }\n\n.fa-ankh::before {\n  content: \"\\f644\"; }\n\n.fa-hands-holding-child::before {\n  content: \"\\e4fa\"; }\n\n.fa-asterisk::before {\n  content: \"\\2a\"; }\n\n.fa-square-check::before {\n  content: \"\\f14a\"; }\n\n.fa-check-square::before {\n  content: \"\\f14a\"; }\n\n.fa-peseta-sign::before {\n  content: \"\\e221\"; }\n\n.fa-heading::before {\n  content: \"\\f1dc\"; }\n\n.fa-header::before {\n  content: \"\\f1dc\"; }\n\n.fa-ghost::before {\n  content: \"\\f6e2\"; }\n\n.fa-list::before {\n  content: \"\\f03a\"; }\n\n.fa-list-squares::before {\n  content: \"\\f03a\"; }\n\n.fa-square-phone-flip::before {\n  content: \"\\f87b\"; }\n\n.fa-phone-square-alt::before {\n  content: \"\\f87b\"; }\n\n.fa-cart-plus::before {\n  content: \"\\f217\"; }\n\n.fa-gamepad::before {\n  content: \"\\f11b\"; }\n\n.fa-circle-dot::before {\n  content: \"\\f192\"; }\n\n.fa-dot-circle::before {\n  content: \"\\f192\"; }\n\n.fa-face-dizzy::before {\n  content: \"\\f567\"; }\n\n.fa-dizzy::before {\n  content: \"\\f567\"; }\n\n.fa-egg::before {\n  content: \"\\f7fb\"; }\n\n.fa-house-medical-circle-xmark::before {\n  content: \"\\e513\"; }\n\n.fa-campground::before {\n  content: \"\\f6bb\"; }\n\n.fa-folder-plus::before {\n  content: \"\\f65e\"; }\n\n.fa-futbol::before {\n  content: \"\\f1e3\"; }\n\n.fa-futbol-ball::before {\n  content: \"\\f1e3\"; }\n\n.fa-soccer-ball::before {\n  content: \"\\f1e3\"; }\n\n.fa-paintbrush::before {\n  content: \"\\f1fc\"; }\n\n.fa-paint-brush::before {\n  content: \"\\f1fc\"; }\n\n.fa-lock::before {\n  content: \"\\f023\"; }\n\n.fa-gas-pump::before {\n  content: \"\\f52f\"; }\n\n.fa-hot-tub-person::before {\n  content: \"\\f593\"; }\n\n.fa-hot-tub::before {\n  content: \"\\f593\"; }\n\n.fa-map-location::before {\n  content: \"\\f59f\"; }\n\n.fa-map-marked::before {\n  content: \"\\f59f\"; }\n\n.fa-house-flood-water::before {\n  content: \"\\e50e\"; }\n\n.fa-tree::before {\n  content: \"\\f1bb\"; }\n\n.fa-bridge-lock::before {\n  content: \"\\e4cc\"; }\n\n.fa-sack-dollar::before {\n  content: \"\\f81d\"; }\n\n.fa-pen-to-square::before {\n  content: \"\\f044\"; }\n\n.fa-edit::before {\n  content: \"\\f044\"; }\n\n.fa-car-side::before {\n  content: \"\\f5e4\"; }\n\n.fa-share-nodes::before {\n  content: \"\\f1e0\"; }\n\n.fa-share-alt::before {\n  content: \"\\f1e0\"; }\n\n.fa-heart-circle-minus::before {\n  content: \"\\e4ff\"; }\n\n.fa-hourglass-half::before {\n  content: \"\\f252\"; }\n\n.fa-hourglass-2::before {\n  content: \"\\f252\"; }\n\n.fa-microscope::before {\n  content: \"\\f610\"; }\n\n.fa-sink::before {\n  content: \"\\e06d\"; }\n\n.fa-bag-shopping::before {\n  content: \"\\f290\"; }\n\n.fa-shopping-bag::before {\n  content: \"\\f290\"; }\n\n.fa-arrow-down-z-a::before {\n  content: \"\\f881\"; }\n\n.fa-sort-alpha-desc::before {\n  content: \"\\f881\"; }\n\n.fa-sort-alpha-down-alt::before {\n  content: \"\\f881\"; }\n\n.fa-mitten::before {\n  content: \"\\f7b5\"; }\n\n.fa-person-rays::before {\n  content: \"\\e54d\"; }\n\n.fa-users::before {\n  content: \"\\f0c0\"; }\n\n.fa-eye-slash::before {\n  content: \"\\f070\"; }\n\n.fa-flask-vial::before {\n  content: \"\\e4f3\"; }\n\n.fa-hand::before {\n  content: \"\\f256\"; }\n\n.fa-hand-paper::before {\n  content: \"\\f256\"; }\n\n.fa-om::before {\n  content: \"\\f679\"; }\n\n.fa-worm::before {\n  content: \"\\e599\"; }\n\n.fa-house-circle-xmark::before {\n  content: \"\\e50b\"; }\n\n.fa-plug::before {\n  content: \"\\f1e6\"; }\n\n.fa-chevron-up::before {\n  content: \"\\f077\"; }\n\n.fa-hand-spock::before {\n  content: \"\\f259\"; }\n\n.fa-stopwatch::before {\n  content: \"\\f2f2\"; }\n\n.fa-face-kiss::before {\n  content: \"\\f596\"; }\n\n.fa-kiss::before {\n  content: \"\\f596\"; }\n\n.fa-bridge-circle-xmark::before {\n  content: \"\\e4cb\"; }\n\n.fa-face-grin-tongue::before {\n  content: \"\\f589\"; }\n\n.fa-grin-tongue::before {\n  content: \"\\f589\"; }\n\n.fa-chess-bishop::before {\n  content: \"\\f43a\"; }\n\n.fa-face-grin-wink::before {\n  content: \"\\f58c\"; }\n\n.fa-grin-wink::before {\n  content: \"\\f58c\"; }\n\n.fa-ear-deaf::before {\n  content: \"\\f2a4\"; }\n\n.fa-deaf::before {\n  content: \"\\f2a4\"; }\n\n.fa-deafness::before {\n  content: \"\\f2a4\"; }\n\n.fa-hard-of-hearing::before {\n  content: \"\\f2a4\"; }\n\n.fa-road-circle-check::before {\n  content: \"\\e564\"; }\n\n.fa-dice-five::before {\n  content: \"\\f523\"; }\n\n.fa-square-rss::before {\n  content: \"\\f143\"; }\n\n.fa-rss-square::before {\n  content: \"\\f143\"; }\n\n.fa-land-mine-on::before {\n  content: \"\\e51b\"; }\n\n.fa-i-cursor::before {\n  content: \"\\f246\"; }\n\n.fa-stamp::before {\n  content: \"\\f5bf\"; }\n\n.fa-stairs::before {\n  content: \"\\e289\"; }\n\n.fa-i::before {\n  content: \"\\49\"; }\n\n.fa-hryvnia-sign::before {\n  content: \"\\f6f2\"; }\n\n.fa-hryvnia::before {\n  content: \"\\f6f2\"; }\n\n.fa-pills::before {\n  content: \"\\f484\"; }\n\n.fa-face-grin-wide::before {\n  content: \"\\f581\"; }\n\n.fa-grin-alt::before {\n  content: \"\\f581\"; }\n\n.fa-tooth::before {\n  content: \"\\f5c9\"; }\n\n.fa-v::before {\n  content: \"\\56\"; }\n\n.fa-bangladeshi-taka-sign::before {\n  content: \"\\e2e6\"; }\n\n.fa-bicycle::before {\n  content: \"\\f206\"; }\n\n.fa-staff-snake::before {\n  content: \"\\e579\"; }\n\n.fa-rod-asclepius::before {\n  content: \"\\e579\"; }\n\n.fa-rod-snake::before {\n  content: \"\\e579\"; }\n\n.fa-staff-aesculapius::before {\n  content: \"\\e579\"; }\n\n.fa-head-side-cough-slash::before {\n  content: \"\\e062\"; }\n\n.fa-truck-medical::before {\n  content: \"\\f0f9\"; }\n\n.fa-ambulance::before {\n  content: \"\\f0f9\"; }\n\n.fa-wheat-awn-circle-exclamation::before {\n  content: \"\\e598\"; }\n\n.fa-snowman::before {\n  content: \"\\f7d0\"; }\n\n.fa-mortar-pestle::before {\n  content: \"\\f5a7\"; }\n\n.fa-road-barrier::before {\n  content: \"\\e562\"; }\n\n.fa-school::before {\n  content: \"\\f549\"; }\n\n.fa-igloo::before {\n  content: \"\\f7ae\"; }\n\n.fa-joint::before {\n  content: \"\\f595\"; }\n\n.fa-angle-right::before {\n  content: \"\\f105\"; }\n\n.fa-horse::before {\n  content: \"\\f6f0\"; }\n\n.fa-q::before {\n  content: \"\\51\"; }\n\n.fa-g::before {\n  content: \"\\47\"; }\n\n.fa-notes-medical::before {\n  content: \"\\f481\"; }\n\n.fa-temperature-half::before {\n  content: \"\\f2c9\"; }\n\n.fa-temperature-2::before {\n  content: \"\\f2c9\"; }\n\n.fa-thermometer-2::before {\n  content: \"\\f2c9\"; }\n\n.fa-thermometer-half::before {\n  content: \"\\f2c9\"; }\n\n.fa-dong-sign::before {\n  content: \"\\e169\"; }\n\n.fa-capsules::before {\n  content: \"\\f46b\"; }\n\n.fa-poo-storm::before {\n  content: \"\\f75a\"; }\n\n.fa-poo-bolt::before {\n  content: \"\\f75a\"; }\n\n.fa-face-frown-open::before {\n  content: \"\\f57a\"; }\n\n.fa-frown-open::before {\n  content: \"\\f57a\"; }\n\n.fa-hand-point-up::before {\n  content: \"\\f0a6\"; }\n\n.fa-money-bill::before {\n  content: \"\\f0d6\"; }\n\n.fa-bookmark::before {\n  content: \"\\f02e\"; }\n\n.fa-align-justify::before {\n  content: \"\\f039\"; }\n\n.fa-umbrella-beach::before {\n  content: \"\\f5ca\"; }\n\n.fa-helmet-un::before {\n  content: \"\\e503\"; }\n\n.fa-bullseye::before {\n  content: \"\\f140\"; }\n\n.fa-bacon::before {\n  content: \"\\f7e5\"; }\n\n.fa-hand-point-down::before {\n  content: \"\\f0a7\"; }\n\n.fa-arrow-up-from-bracket::before {\n  content: \"\\e09a\"; }\n\n.fa-folder::before {\n  content: \"\\f07b\"; }\n\n.fa-folder-blank::before {\n  content: \"\\f07b\"; }\n\n.fa-file-waveform::before {\n  content: \"\\f478\"; }\n\n.fa-file-medical-alt::before {\n  content: \"\\f478\"; }\n\n.fa-radiation::before {\n  content: \"\\f7b9\"; }\n\n.fa-chart-simple::before {\n  content: \"\\e473\"; }\n\n.fa-mars-stroke::before {\n  content: \"\\f229\"; }\n\n.fa-vial::before {\n  content: \"\\f492\"; }\n\n.fa-gauge::before {\n  content: \"\\f624\"; }\n\n.fa-dashboard::before {\n  content: \"\\f624\"; }\n\n.fa-gauge-med::before {\n  content: \"\\f624\"; }\n\n.fa-tachometer-alt-average::before {\n  content: \"\\f624\"; }\n\n.fa-wand-magic-sparkles::before {\n  content: \"\\e2ca\"; }\n\n.fa-magic-wand-sparkles::before {\n  content: \"\\e2ca\"; }\n\n.fa-e::before {\n  content: \"\\45\"; }\n\n.fa-pen-clip::before {\n  content: \"\\f305\"; }\n\n.fa-pen-alt::before {\n  content: \"\\f305\"; }\n\n.fa-bridge-circle-exclamation::before {\n  content: \"\\e4ca\"; }\n\n.fa-user::before {\n  content: \"\\f007\"; }\n\n.fa-school-circle-check::before {\n  content: \"\\e56b\"; }\n\n.fa-dumpster::before {\n  content: \"\\f793\"; }\n\n.fa-van-shuttle::before {\n  content: \"\\f5b6\"; }\n\n.fa-shuttle-van::before {\n  content: \"\\f5b6\"; }\n\n.fa-building-user::before {\n  content: \"\\e4da\"; }\n\n.fa-square-caret-left::before {\n  content: \"\\f191\"; }\n\n.fa-caret-square-left::before {\n  content: \"\\f191\"; }\n\n.fa-highlighter::before {\n  content: \"\\f591\"; }\n\n.fa-key::before {\n  content: \"\\f084\"; }\n\n.fa-bullhorn::before {\n  content: \"\\f0a1\"; }\n\n.fa-globe::before {\n  content: \"\\f0ac\"; }\n\n.fa-synagogue::before {\n  content: \"\\f69b\"; }\n\n.fa-person-half-dress::before {\n  content: \"\\e548\"; }\n\n.fa-road-bridge::before {\n  content: \"\\e563\"; }\n\n.fa-location-arrow::before {\n  content: \"\\f124\"; }\n\n.fa-c::before {\n  content: \"\\43\"; }\n\n.fa-tablet-button::before {\n  content: \"\\f10a\"; }\n\n.fa-building-lock::before {\n  content: \"\\e4d6\"; }\n\n.fa-pizza-slice::before {\n  content: \"\\f818\"; }\n\n.fa-money-bill-wave::before {\n  content: \"\\f53a\"; }\n\n.fa-chart-area::before {\n  content: \"\\f1fe\"; }\n\n.fa-area-chart::before {\n  content: \"\\f1fe\"; }\n\n.fa-house-flag::before {\n  content: \"\\e50d\"; }\n\n.fa-person-circle-minus::before {\n  content: \"\\e540\"; }\n\n.fa-ban::before {\n  content: \"\\f05e\"; }\n\n.fa-cancel::before {\n  content: \"\\f05e\"; }\n\n.fa-camera-rotate::before {\n  content: \"\\e0d8\"; }\n\n.fa-spray-can-sparkles::before {\n  content: \"\\f5d0\"; }\n\n.fa-air-freshener::before {\n  content: \"\\f5d0\"; }\n\n.fa-star::before {\n  content: \"\\f005\"; }\n\n.fa-repeat::before {\n  content: \"\\f363\"; }\n\n.fa-cross::before {\n  content: \"\\f654\"; }\n\n.fa-box::before {\n  content: \"\\f466\"; }\n\n.fa-venus-mars::before {\n  content: \"\\f228\"; }\n\n.fa-arrow-pointer::before {\n  content: \"\\f245\"; }\n\n.fa-mouse-pointer::before {\n  content: \"\\f245\"; }\n\n.fa-maximize::before {\n  content: \"\\f31e\"; }\n\n.fa-expand-arrows-alt::before {\n  content: \"\\f31e\"; }\n\n.fa-charging-station::before {\n  content: \"\\f5e7\"; }\n\n.fa-shapes::before {\n  content: \"\\f61f\"; }\n\n.fa-triangle-circle-square::before {\n  content: \"\\f61f\"; }\n\n.fa-shuffle::before {\n  content: \"\\f074\"; }\n\n.fa-random::before {\n  content: \"\\f074\"; }\n\n.fa-person-running::before {\n  content: \"\\f70c\"; }\n\n.fa-running::before {\n  content: \"\\f70c\"; }\n\n.fa-mobile-retro::before {\n  content: \"\\e527\"; }\n\n.fa-grip-lines-vertical::before {\n  content: \"\\f7a5\"; }\n\n.fa-spider::before {\n  content: \"\\f717\"; }\n\n.fa-hands-bound::before {\n  content: \"\\e4f9\"; }\n\n.fa-file-invoice-dollar::before {\n  content: \"\\f571\"; }\n\n.fa-plane-circle-exclamation::before {\n  content: \"\\e556\"; }\n\n.fa-x-ray::before {\n  content: \"\\f497\"; }\n\n.fa-spell-check::before {\n  content: \"\\f891\"; }\n\n.fa-slash::before {\n  content: \"\\f715\"; }\n\n.fa-computer-mouse::before {\n  content: \"\\f8cc\"; }\n\n.fa-mouse::before {\n  content: \"\\f8cc\"; }\n\n.fa-arrow-right-to-bracket::before {\n  content: \"\\f090\"; }\n\n.fa-sign-in::before {\n  content: \"\\f090\"; }\n\n.fa-shop-slash::before {\n  content: \"\\e070\"; }\n\n.fa-store-alt-slash::before {\n  content: \"\\e070\"; }\n\n.fa-server::before {\n  content: \"\\f233\"; }\n\n.fa-virus-covid-slash::before {\n  content: \"\\e4a9\"; }\n\n.fa-shop-lock::before {\n  content: \"\\e4a5\"; }\n\n.fa-hourglass-start::before {\n  content: \"\\f251\"; }\n\n.fa-hourglass-1::before {\n  content: \"\\f251\"; }\n\n.fa-blender-phone::before {\n  content: \"\\f6b6\"; }\n\n.fa-building-wheat::before {\n  content: \"\\e4db\"; }\n\n.fa-person-breastfeeding::before {\n  content: \"\\e53a\"; }\n\n.fa-right-to-bracket::before {\n  content: \"\\f2f6\"; }\n\n.fa-sign-in-alt::before {\n  content: \"\\f2f6\"; }\n\n.fa-venus::before {\n  content: \"\\f221\"; }\n\n.fa-passport::before {\n  content: \"\\f5ab\"; }\n\n.fa-heart-pulse::before {\n  content: \"\\f21e\"; }\n\n.fa-heartbeat::before {\n  content: \"\\f21e\"; }\n\n.fa-people-carry-box::before {\n  content: \"\\f4ce\"; }\n\n.fa-people-carry::before {\n  content: \"\\f4ce\"; }\n\n.fa-temperature-high::before {\n  content: \"\\f769\"; }\n\n.fa-microchip::before {\n  content: \"\\f2db\"; }\n\n.fa-crown::before {\n  content: \"\\f521\"; }\n\n.fa-weight-hanging::before {\n  content: \"\\f5cd\"; }\n\n.fa-xmarks-lines::before {\n  content: \"\\e59a\"; }\n\n.fa-file-prescription::before {\n  content: \"\\f572\"; }\n\n.fa-weight-scale::before {\n  content: \"\\f496\"; }\n\n.fa-weight::before {\n  content: \"\\f496\"; }\n\n.fa-user-group::before {\n  content: \"\\f500\"; }\n\n.fa-user-friends::before {\n  content: \"\\f500\"; }\n\n.fa-arrow-up-a-z::before {\n  content: \"\\f15e\"; }\n\n.fa-sort-alpha-up::before {\n  content: \"\\f15e\"; }\n\n.fa-chess-knight::before {\n  content: \"\\f441\"; }\n\n.fa-face-laugh-squint::before {\n  content: \"\\f59b\"; }\n\n.fa-laugh-squint::before {\n  content: \"\\f59b\"; }\n\n.fa-wheelchair::before {\n  content: \"\\f193\"; }\n\n.fa-circle-arrow-up::before {\n  content: \"\\f0aa\"; }\n\n.fa-arrow-circle-up::before {\n  content: \"\\f0aa\"; }\n\n.fa-toggle-on::before {\n  content: \"\\f205\"; }\n\n.fa-person-walking::before {\n  content: \"\\f554\"; }\n\n.fa-walking::before {\n  content: \"\\f554\"; }\n\n.fa-l::before {\n  content: \"\\4c\"; }\n\n.fa-fire::before {\n  content: \"\\f06d\"; }\n\n.fa-bed-pulse::before {\n  content: \"\\f487\"; }\n\n.fa-procedures::before {\n  content: \"\\f487\"; }\n\n.fa-shuttle-space::before {\n  content: \"\\f197\"; }\n\n.fa-space-shuttle::before {\n  content: \"\\f197\"; }\n\n.fa-face-laugh::before {\n  content: \"\\f599\"; }\n\n.fa-laugh::before {\n  content: \"\\f599\"; }\n\n.fa-folder-open::before {\n  content: \"\\f07c\"; }\n\n.fa-heart-circle-plus::before {\n  content: \"\\e500\"; }\n\n.fa-code-fork::before {\n  content: \"\\e13b\"; }\n\n.fa-city::before {\n  content: \"\\f64f\"; }\n\n.fa-microphone-lines::before {\n  content: \"\\f3c9\"; }\n\n.fa-microphone-alt::before {\n  content: \"\\f3c9\"; }\n\n.fa-pepper-hot::before {\n  content: \"\\f816\"; }\n\n.fa-unlock::before {\n  content: \"\\f09c\"; }\n\n.fa-colon-sign::before {\n  content: \"\\e140\"; }\n\n.fa-headset::before {\n  content: \"\\f590\"; }\n\n.fa-store-slash::before {\n  content: \"\\e071\"; }\n\n.fa-road-circle-xmark::before {\n  content: \"\\e566\"; }\n\n.fa-user-minus::before {\n  content: \"\\f503\"; }\n\n.fa-mars-stroke-up::before {\n  content: \"\\f22a\"; }\n\n.fa-mars-stroke-v::before {\n  content: \"\\f22a\"; }\n\n.fa-champagne-glasses::before {\n  content: \"\\f79f\"; }\n\n.fa-glass-cheers::before {\n  content: \"\\f79f\"; }\n\n.fa-clipboard::before {\n  content: \"\\f328\"; }\n\n.fa-house-circle-exclamation::before {\n  content: \"\\e50a\"; }\n\n.fa-file-arrow-up::before {\n  content: \"\\f574\"; }\n\n.fa-file-upload::before {\n  content: \"\\f574\"; }\n\n.fa-wifi::before {\n  content: \"\\f1eb\"; }\n\n.fa-wifi-3::before {\n  content: \"\\f1eb\"; }\n\n.fa-wifi-strong::before {\n  content: \"\\f1eb\"; }\n\n.fa-bath::before {\n  content: \"\\f2cd\"; }\n\n.fa-bathtub::before {\n  content: \"\\f2cd\"; }\n\n.fa-underline::before {\n  content: \"\\f0cd\"; }\n\n.fa-user-pen::before {\n  content: \"\\f4ff\"; }\n\n.fa-user-edit::before {\n  content: \"\\f4ff\"; }\n\n.fa-signature::before {\n  content: \"\\f5b7\"; }\n\n.fa-stroopwafel::before {\n  content: \"\\f551\"; }\n\n.fa-bold::before {\n  content: \"\\f032\"; }\n\n.fa-anchor-lock::before {\n  content: \"\\e4ad\"; }\n\n.fa-building-ngo::before {\n  content: \"\\e4d7\"; }\n\n.fa-manat-sign::before {\n  content: \"\\e1d5\"; }\n\n.fa-not-equal::before {\n  content: \"\\f53e\"; }\n\n.fa-border-top-left::before {\n  content: \"\\f853\"; }\n\n.fa-border-style::before {\n  content: \"\\f853\"; }\n\n.fa-map-location-dot::before {\n  content: \"\\f5a0\"; }\n\n.fa-map-marked-alt::before {\n  content: \"\\f5a0\"; }\n\n.fa-jedi::before {\n  content: \"\\f669\"; }\n\n.fa-square-poll-vertical::before {\n  content: \"\\f681\"; }\n\n.fa-poll::before {\n  content: \"\\f681\"; }\n\n.fa-mug-hot::before {\n  content: \"\\f7b6\"; }\n\n.fa-car-battery::before {\n  content: \"\\f5df\"; }\n\n.fa-battery-car::before {\n  content: \"\\f5df\"; }\n\n.fa-gift::before {\n  content: \"\\f06b\"; }\n\n.fa-dice-two::before {\n  content: \"\\f528\"; }\n\n.fa-chess-queen::before {\n  content: \"\\f445\"; }\n\n.fa-glasses::before {\n  content: \"\\f530\"; }\n\n.fa-chess-board::before {\n  content: \"\\f43c\"; }\n\n.fa-building-circle-check::before {\n  content: \"\\e4d2\"; }\n\n.fa-person-chalkboard::before {\n  content: \"\\e53d\"; }\n\n.fa-mars-stroke-right::before {\n  content: \"\\f22b\"; }\n\n.fa-mars-stroke-h::before {\n  content: \"\\f22b\"; }\n\n.fa-hand-back-fist::before {\n  content: \"\\f255\"; }\n\n.fa-hand-rock::before {\n  content: \"\\f255\"; }\n\n.fa-square-caret-up::before {\n  content: \"\\f151\"; }\n\n.fa-caret-square-up::before {\n  content: \"\\f151\"; }\n\n.fa-cloud-showers-water::before {\n  content: \"\\e4e4\"; }\n\n.fa-chart-bar::before {\n  content: \"\\f080\"; }\n\n.fa-bar-chart::before {\n  content: \"\\f080\"; }\n\n.fa-hands-bubbles::before {\n  content: \"\\e05e\"; }\n\n.fa-hands-wash::before {\n  content: \"\\e05e\"; }\n\n.fa-less-than-equal::before {\n  content: \"\\f537\"; }\n\n.fa-train::before {\n  content: \"\\f238\"; }\n\n.fa-eye-low-vision::before {\n  content: \"\\f2a8\"; }\n\n.fa-low-vision::before {\n  content: \"\\f2a8\"; }\n\n.fa-crow::before {\n  content: \"\\f520\"; }\n\n.fa-sailboat::before {\n  content: \"\\e445\"; }\n\n.fa-window-restore::before {\n  content: \"\\f2d2\"; }\n\n.fa-square-plus::before {\n  content: \"\\f0fe\"; }\n\n.fa-plus-square::before {\n  content: \"\\f0fe\"; }\n\n.fa-torii-gate::before {\n  content: \"\\f6a1\"; }\n\n.fa-frog::before {\n  content: \"\\f52e\"; }\n\n.fa-bucket::before {\n  content: \"\\e4cf\"; }\n\n.fa-image::before {\n  content: \"\\f03e\"; }\n\n.fa-microphone::before {\n  content: \"\\f130\"; }\n\n.fa-cow::before {\n  content: \"\\f6c8\"; }\n\n.fa-caret-up::before {\n  content: \"\\f0d8\"; }\n\n.fa-screwdriver::before {\n  content: \"\\f54a\"; }\n\n.fa-folder-closed::before {\n  content: \"\\e185\"; }\n\n.fa-house-tsunami::before {\n  content: \"\\e515\"; }\n\n.fa-square-nfi::before {\n  content: \"\\e576\"; }\n\n.fa-arrow-up-from-ground-water::before {\n  content: \"\\e4b5\"; }\n\n.fa-martini-glass::before {\n  content: \"\\f57b\"; }\n\n.fa-glass-martini-alt::before {\n  content: \"\\f57b\"; }\n\n.fa-rotate-left::before {\n  content: \"\\f2ea\"; }\n\n.fa-rotate-back::before {\n  content: \"\\f2ea\"; }\n\n.fa-rotate-backward::before {\n  content: \"\\f2ea\"; }\n\n.fa-undo-alt::before {\n  content: \"\\f2ea\"; }\n\n.fa-table-columns::before {\n  content: \"\\f0db\"; }\n\n.fa-columns::before {\n  content: \"\\f0db\"; }\n\n.fa-lemon::before {\n  content: \"\\f094\"; }\n\n.fa-head-side-mask::before {\n  content: \"\\e063\"; }\n\n.fa-handshake::before {\n  content: \"\\f2b5\"; }\n\n.fa-gem::before {\n  content: \"\\f3a5\"; }\n\n.fa-dolly::before {\n  content: \"\\f472\"; }\n\n.fa-dolly-box::before {\n  content: \"\\f472\"; }\n\n.fa-smoking::before {\n  content: \"\\f48d\"; }\n\n.fa-minimize::before {\n  content: \"\\f78c\"; }\n\n.fa-compress-arrows-alt::before {\n  content: \"\\f78c\"; }\n\n.fa-monument::before {\n  content: \"\\f5a6\"; }\n\n.fa-snowplow::before {\n  content: \"\\f7d2\"; }\n\n.fa-angles-right::before {\n  content: \"\\f101\"; }\n\n.fa-angle-double-right::before {\n  content: \"\\f101\"; }\n\n.fa-cannabis::before {\n  content: \"\\f55f\"; }\n\n.fa-circle-play::before {\n  content: \"\\f144\"; }\n\n.fa-play-circle::before {\n  content: \"\\f144\"; }\n\n.fa-tablets::before {\n  content: \"\\f490\"; }\n\n.fa-ethernet::before {\n  content: \"\\f796\"; }\n\n.fa-euro-sign::before {\n  content: \"\\f153\"; }\n\n.fa-eur::before {\n  content: \"\\f153\"; }\n\n.fa-euro::before {\n  content: \"\\f153\"; }\n\n.fa-chair::before {\n  content: \"\\f6c0\"; }\n\n.fa-circle-check::before {\n  content: \"\\f058\"; }\n\n.fa-check-circle::before {\n  content: \"\\f058\"; }\n\n.fa-circle-stop::before {\n  content: \"\\f28d\"; }\n\n.fa-stop-circle::before {\n  content: \"\\f28d\"; }\n\n.fa-compass-drafting::before {\n  content: \"\\f568\"; }\n\n.fa-drafting-compass::before {\n  content: \"\\f568\"; }\n\n.fa-plate-wheat::before {\n  content: \"\\e55a\"; }\n\n.fa-icicles::before {\n  content: \"\\f7ad\"; }\n\n.fa-person-shelter::before {\n  content: \"\\e54f\"; }\n\n.fa-neuter::before {\n  content: \"\\f22c\"; }\n\n.fa-id-badge::before {\n  content: \"\\f2c1\"; }\n\n.fa-marker::before {\n  content: \"\\f5a1\"; }\n\n.fa-face-laugh-beam::before {\n  content: \"\\f59a\"; }\n\n.fa-laugh-beam::before {\n  content: \"\\f59a\"; }\n\n.fa-helicopter-symbol::before {\n  content: \"\\e502\"; }\n\n.fa-universal-access::before {\n  content: \"\\f29a\"; }\n\n.fa-circle-chevron-up::before {\n  content: \"\\f139\"; }\n\n.fa-chevron-circle-up::before {\n  content: \"\\f139\"; }\n\n.fa-lari-sign::before {\n  content: \"\\e1c8\"; }\n\n.fa-volcano::before {\n  content: \"\\f770\"; }\n\n.fa-person-walking-dashed-line-arrow-right::before {\n  content: \"\\e553\"; }\n\n.fa-sterling-sign::before {\n  content: \"\\f154\"; }\n\n.fa-gbp::before {\n  content: \"\\f154\"; }\n\n.fa-pound-sign::before {\n  content: \"\\f154\"; }\n\n.fa-viruses::before {\n  content: \"\\e076\"; }\n\n.fa-square-person-confined::before {\n  content: \"\\e577\"; }\n\n.fa-user-tie::before {\n  content: \"\\f508\"; }\n\n.fa-arrow-down-long::before {\n  content: \"\\f175\"; }\n\n.fa-long-arrow-down::before {\n  content: \"\\f175\"; }\n\n.fa-tent-arrow-down-to-line::before {\n  content: \"\\e57e\"; }\n\n.fa-certificate::before {\n  content: \"\\f0a3\"; }\n\n.fa-reply-all::before {\n  content: \"\\f122\"; }\n\n.fa-mail-reply-all::before {\n  content: \"\\f122\"; }\n\n.fa-suitcase::before {\n  content: \"\\f0f2\"; }\n\n.fa-person-skating::before {\n  content: \"\\f7c5\"; }\n\n.fa-skating::before {\n  content: \"\\f7c5\"; }\n\n.fa-filter-circle-dollar::before {\n  content: \"\\f662\"; }\n\n.fa-funnel-dollar::before {\n  content: \"\\f662\"; }\n\n.fa-camera-retro::before {\n  content: \"\\f083\"; }\n\n.fa-circle-arrow-down::before {\n  content: \"\\f0ab\"; }\n\n.fa-arrow-circle-down::before {\n  content: \"\\f0ab\"; }\n\n.fa-file-import::before {\n  content: \"\\f56f\"; }\n\n.fa-arrow-right-to-file::before {\n  content: \"\\f56f\"; }\n\n.fa-square-arrow-up-right::before {\n  content: \"\\f14c\"; }\n\n.fa-external-link-square::before {\n  content: \"\\f14c\"; }\n\n.fa-box-open::before {\n  content: \"\\f49e\"; }\n\n.fa-scroll::before {\n  content: \"\\f70e\"; }\n\n.fa-spa::before {\n  content: \"\\f5bb\"; }\n\n.fa-location-pin-lock::before {\n  content: \"\\e51f\"; }\n\n.fa-pause::before {\n  content: \"\\f04c\"; }\n\n.fa-hill-avalanche::before {\n  content: \"\\e507\"; }\n\n.fa-temperature-empty::before {\n  content: \"\\f2cb\"; }\n\n.fa-temperature-0::before {\n  content: \"\\f2cb\"; }\n\n.fa-thermometer-0::before {\n  content: \"\\f2cb\"; }\n\n.fa-thermometer-empty::before {\n  content: \"\\f2cb\"; }\n\n.fa-bomb::before {\n  content: \"\\f1e2\"; }\n\n.fa-registered::before {\n  content: \"\\f25d\"; }\n\n.fa-address-card::before {\n  content: \"\\f2bb\"; }\n\n.fa-contact-card::before {\n  content: \"\\f2bb\"; }\n\n.fa-vcard::before {\n  content: \"\\f2bb\"; }\n\n.fa-scale-unbalanced-flip::before {\n  content: \"\\f516\"; }\n\n.fa-balance-scale-right::before {\n  content: \"\\f516\"; }\n\n.fa-subscript::before {\n  content: \"\\f12c\"; }\n\n.fa-diamond-turn-right::before {\n  content: \"\\f5eb\"; }\n\n.fa-directions::before {\n  content: \"\\f5eb\"; }\n\n.fa-burst::before {\n  content: \"\\e4dc\"; }\n\n.fa-house-laptop::before {\n  content: \"\\e066\"; }\n\n.fa-laptop-house::before {\n  content: \"\\e066\"; }\n\n.fa-face-tired::before {\n  content: \"\\f5c8\"; }\n\n.fa-tired::before {\n  content: \"\\f5c8\"; }\n\n.fa-money-bills::before {\n  content: \"\\e1f3\"; }\n\n.fa-smog::before {\n  content: \"\\f75f\"; }\n\n.fa-crutch::before {\n  content: \"\\f7f7\"; }\n\n.fa-cloud-arrow-up::before {\n  content: \"\\f0ee\"; }\n\n.fa-cloud-upload::before {\n  content: \"\\f0ee\"; }\n\n.fa-cloud-upload-alt::before {\n  content: \"\\f0ee\"; }\n\n.fa-palette::before {\n  content: \"\\f53f\"; }\n\n.fa-arrows-turn-right::before {\n  content: \"\\e4c0\"; }\n\n.fa-vest::before {\n  content: \"\\e085\"; }\n\n.fa-ferry::before {\n  content: \"\\e4ea\"; }\n\n.fa-arrows-down-to-people::before {\n  content: \"\\e4b9\"; }\n\n.fa-seedling::before {\n  content: \"\\f4d8\"; }\n\n.fa-sprout::before {\n  content: \"\\f4d8\"; }\n\n.fa-left-right::before {\n  content: \"\\f337\"; }\n\n.fa-arrows-alt-h::before {\n  content: \"\\f337\"; }\n\n.fa-boxes-packing::before {\n  content: \"\\e4c7\"; }\n\n.fa-circle-arrow-left::before {\n  content: \"\\f0a8\"; }\n\n.fa-arrow-circle-left::before {\n  content: \"\\f0a8\"; }\n\n.fa-group-arrows-rotate::before {\n  content: \"\\e4f6\"; }\n\n.fa-bowl-food::before {\n  content: \"\\e4c6\"; }\n\n.fa-candy-cane::before {\n  content: \"\\f786\"; }\n\n.fa-arrow-down-wide-short::before {\n  content: \"\\f160\"; }\n\n.fa-sort-amount-asc::before {\n  content: \"\\f160\"; }\n\n.fa-sort-amount-down::before {\n  content: \"\\f160\"; }\n\n.fa-cloud-bolt::before {\n  content: \"\\f76c\"; }\n\n.fa-thunderstorm::before {\n  content: \"\\f76c\"; }\n\n.fa-text-slash::before {\n  content: \"\\f87d\"; }\n\n.fa-remove-format::before {\n  content: \"\\f87d\"; }\n\n.fa-face-smile-wink::before {\n  content: \"\\f4da\"; }\n\n.fa-smile-wink::before {\n  content: \"\\f4da\"; }\n\n.fa-file-word::before {\n  content: \"\\f1c2\"; }\n\n.fa-file-powerpoint::before {\n  content: \"\\f1c4\"; }\n\n.fa-arrows-left-right::before {\n  content: \"\\f07e\"; }\n\n.fa-arrows-h::before {\n  content: \"\\f07e\"; }\n\n.fa-house-lock::before {\n  content: \"\\e510\"; }\n\n.fa-cloud-arrow-down::before {\n  content: \"\\f0ed\"; }\n\n.fa-cloud-download::before {\n  content: \"\\f0ed\"; }\n\n.fa-cloud-download-alt::before {\n  content: \"\\f0ed\"; }\n\n.fa-children::before {\n  content: \"\\e4e1\"; }\n\n.fa-chalkboard::before {\n  content: \"\\f51b\"; }\n\n.fa-blackboard::before {\n  content: \"\\f51b\"; }\n\n.fa-user-large-slash::before {\n  content: \"\\f4fa\"; }\n\n.fa-user-alt-slash::before {\n  content: \"\\f4fa\"; }\n\n.fa-envelope-open::before {\n  content: \"\\f2b6\"; }\n\n.fa-handshake-simple-slash::before {\n  content: \"\\e05f\"; }\n\n.fa-handshake-alt-slash::before {\n  content: \"\\e05f\"; }\n\n.fa-mattress-pillow::before {\n  content: \"\\e525\"; }\n\n.fa-guarani-sign::before {\n  content: \"\\e19a\"; }\n\n.fa-arrows-rotate::before {\n  content: \"\\f021\"; }\n\n.fa-refresh::before {\n  content: \"\\f021\"; }\n\n.fa-sync::before {\n  content: \"\\f021\"; }\n\n.fa-fire-extinguisher::before {\n  content: \"\\f134\"; }\n\n.fa-cruzeiro-sign::before {\n  content: \"\\e152\"; }\n\n.fa-greater-than-equal::before {\n  content: \"\\f532\"; }\n\n.fa-shield-halved::before {\n  content: \"\\f3ed\"; }\n\n.fa-shield-alt::before {\n  content: \"\\f3ed\"; }\n\n.fa-book-atlas::before {\n  content: \"\\f558\"; }\n\n.fa-atlas::before {\n  content: \"\\f558\"; }\n\n.fa-virus::before {\n  content: \"\\e074\"; }\n\n.fa-envelope-circle-check::before {\n  content: \"\\e4e8\"; }\n\n.fa-layer-group::before {\n  content: \"\\f5fd\"; }\n\n.fa-arrows-to-dot::before {\n  content: \"\\e4be\"; }\n\n.fa-archway::before {\n  content: \"\\f557\"; }\n\n.fa-heart-circle-check::before {\n  content: \"\\e4fd\"; }\n\n.fa-house-chimney-crack::before {\n  content: \"\\f6f1\"; }\n\n.fa-house-damage::before {\n  content: \"\\f6f1\"; }\n\n.fa-file-zipper::before {\n  content: \"\\f1c6\"; }\n\n.fa-file-archive::before {\n  content: \"\\f1c6\"; }\n\n.fa-square::before {\n  content: \"\\f0c8\"; }\n\n.fa-martini-glass-empty::before {\n  content: \"\\f000\"; }\n\n.fa-glass-martini::before {\n  content: \"\\f000\"; }\n\n.fa-couch::before {\n  content: \"\\f4b8\"; }\n\n.fa-cedi-sign::before {\n  content: \"\\e0df\"; }\n\n.fa-italic::before {\n  content: \"\\f033\"; }\n\n.fa-table-cells-column-lock::before {\n  content: \"\\e678\"; }\n\n.fa-church::before {\n  content: \"\\f51d\"; }\n\n.fa-comments-dollar::before {\n  content: \"\\f653\"; }\n\n.fa-democrat::before {\n  content: \"\\f747\"; }\n\n.fa-z::before {\n  content: \"\\5a\"; }\n\n.fa-person-skiing::before {\n  content: \"\\f7c9\"; }\n\n.fa-skiing::before {\n  content: \"\\f7c9\"; }\n\n.fa-road-lock::before {\n  content: \"\\e567\"; }\n\n.fa-a::before {\n  content: \"\\41\"; }\n\n.fa-temperature-arrow-down::before {\n  content: \"\\e03f\"; }\n\n.fa-temperature-down::before {\n  content: \"\\e03f\"; }\n\n.fa-feather-pointed::before {\n  content: \"\\f56b\"; }\n\n.fa-feather-alt::before {\n  content: \"\\f56b\"; }\n\n.fa-p::before {\n  content: \"\\50\"; }\n\n.fa-snowflake::before {\n  content: \"\\f2dc\"; }\n\n.fa-newspaper::before {\n  content: \"\\f1ea\"; }\n\n.fa-rectangle-ad::before {\n  content: \"\\f641\"; }\n\n.fa-ad::before {\n  content: \"\\f641\"; }\n\n.fa-circle-arrow-right::before {\n  content: \"\\f0a9\"; }\n\n.fa-arrow-circle-right::before {\n  content: \"\\f0a9\"; }\n\n.fa-filter-circle-xmark::before {\n  content: \"\\e17b\"; }\n\n.fa-locust::before {\n  content: \"\\e520\"; }\n\n.fa-sort::before {\n  content: \"\\f0dc\"; }\n\n.fa-unsorted::before {\n  content: \"\\f0dc\"; }\n\n.fa-list-ol::before {\n  content: \"\\f0cb\"; }\n\n.fa-list-1-2::before {\n  content: \"\\f0cb\"; }\n\n.fa-list-numeric::before {\n  content: \"\\f0cb\"; }\n\n.fa-person-dress-burst::before {\n  content: \"\\e544\"; }\n\n.fa-money-check-dollar::before {\n  content: \"\\f53d\"; }\n\n.fa-money-check-alt::before {\n  content: \"\\f53d\"; }\n\n.fa-vector-square::before {\n  content: \"\\f5cb\"; }\n\n.fa-bread-slice::before {\n  content: \"\\f7ec\"; }\n\n.fa-language::before {\n  content: \"\\f1ab\"; }\n\n.fa-face-kiss-wink-heart::before {\n  content: \"\\f598\"; }\n\n.fa-kiss-wink-heart::before {\n  content: \"\\f598\"; }\n\n.fa-filter::before {\n  content: \"\\f0b0\"; }\n\n.fa-question::before {\n  content: \"\\3f\"; }\n\n.fa-file-signature::before {\n  content: \"\\f573\"; }\n\n.fa-up-down-left-right::before {\n  content: \"\\f0b2\"; }\n\n.fa-arrows-alt::before {\n  content: \"\\f0b2\"; }\n\n.fa-house-chimney-user::before {\n  content: \"\\e065\"; }\n\n.fa-hand-holding-heart::before {\n  content: \"\\f4be\"; }\n\n.fa-puzzle-piece::before {\n  content: \"\\f12e\"; }\n\n.fa-money-check::before {\n  content: \"\\f53c\"; }\n\n.fa-star-half-stroke::before {\n  content: \"\\f5c0\"; }\n\n.fa-star-half-alt::before {\n  content: \"\\f5c0\"; }\n\n.fa-code::before {\n  content: \"\\f121\"; }\n\n.fa-whiskey-glass::before {\n  content: \"\\f7a0\"; }\n\n.fa-glass-whiskey::before {\n  content: \"\\f7a0\"; }\n\n.fa-building-circle-exclamation::before {\n  content: \"\\e4d3\"; }\n\n.fa-magnifying-glass-chart::before {\n  content: \"\\e522\"; }\n\n.fa-arrow-up-right-from-square::before {\n  content: \"\\f08e\"; }\n\n.fa-external-link::before {\n  content: \"\\f08e\"; }\n\n.fa-cubes-stacked::before {\n  content: \"\\e4e6\"; }\n\n.fa-won-sign::before {\n  content: \"\\f159\"; }\n\n.fa-krw::before {\n  content: \"\\f159\"; }\n\n.fa-won::before {\n  content: \"\\f159\"; }\n\n.fa-virus-covid::before {\n  content: \"\\e4a8\"; }\n\n.fa-austral-sign::before {\n  content: \"\\e0a9\"; }\n\n.fa-f::before {\n  content: \"\\46\"; }\n\n.fa-leaf::before {\n  content: \"\\f06c\"; }\n\n.fa-road::before {\n  content: \"\\f018\"; }\n\n.fa-taxi::before {\n  content: \"\\f1ba\"; }\n\n.fa-cab::before {\n  content: \"\\f1ba\"; }\n\n.fa-person-circle-plus::before {\n  content: \"\\e541\"; }\n\n.fa-chart-pie::before {\n  content: \"\\f200\"; }\n\n.fa-pie-chart::before {\n  content: \"\\f200\"; }\n\n.fa-bolt-lightning::before {\n  content: \"\\e0b7\"; }\n\n.fa-sack-xmark::before {\n  content: \"\\e56a\"; }\n\n.fa-file-excel::before {\n  content: \"\\f1c3\"; }\n\n.fa-file-contract::before {\n  content: \"\\f56c\"; }\n\n.fa-fish-fins::before {\n  content: \"\\e4f2\"; }\n\n.fa-building-flag::before {\n  content: \"\\e4d5\"; }\n\n.fa-face-grin-beam::before {\n  content: \"\\f582\"; }\n\n.fa-grin-beam::before {\n  content: \"\\f582\"; }\n\n.fa-object-ungroup::before {\n  content: \"\\f248\"; }\n\n.fa-poop::before {\n  content: \"\\f619\"; }\n\n.fa-location-pin::before {\n  content: \"\\f041\"; }\n\n.fa-map-marker::before {\n  content: \"\\f041\"; }\n\n.fa-kaaba::before {\n  content: \"\\f66b\"; }\n\n.fa-toilet-paper::before {\n  content: \"\\f71e\"; }\n\n.fa-helmet-safety::before {\n  content: \"\\f807\"; }\n\n.fa-hard-hat::before {\n  content: \"\\f807\"; }\n\n.fa-hat-hard::before {\n  content: \"\\f807\"; }\n\n.fa-eject::before {\n  content: \"\\f052\"; }\n\n.fa-circle-right::before {\n  content: \"\\f35a\"; }\n\n.fa-arrow-alt-circle-right::before {\n  content: \"\\f35a\"; }\n\n.fa-plane-circle-check::before {\n  content: \"\\e555\"; }\n\n.fa-face-rolling-eyes::before {\n  content: \"\\f5a5\"; }\n\n.fa-meh-rolling-eyes::before {\n  content: \"\\f5a5\"; }\n\n.fa-object-group::before {\n  content: \"\\f247\"; }\n\n.fa-chart-line::before {\n  content: \"\\f201\"; }\n\n.fa-line-chart::before {\n  content: \"\\f201\"; }\n\n.fa-mask-ventilator::before {\n  content: \"\\e524\"; }\n\n.fa-arrow-right::before {\n  content: \"\\f061\"; }\n\n.fa-signs-post::before {\n  content: \"\\f277\"; }\n\n.fa-map-signs::before {\n  content: \"\\f277\"; }\n\n.fa-cash-register::before {\n  content: \"\\f788\"; }\n\n.fa-person-circle-question::before {\n  content: \"\\e542\"; }\n\n.fa-h::before {\n  content: \"\\48\"; }\n\n.fa-tarp::before {\n  content: \"\\e57b\"; }\n\n.fa-screwdriver-wrench::before {\n  content: \"\\f7d9\"; }\n\n.fa-tools::before {\n  content: \"\\f7d9\"; }\n\n.fa-arrows-to-eye::before {\n  content: \"\\e4bf\"; }\n\n.fa-plug-circle-bolt::before {\n  content: \"\\e55b\"; }\n\n.fa-heart::before {\n  content: \"\\f004\"; }\n\n.fa-mars-and-venus::before {\n  content: \"\\f224\"; }\n\n.fa-house-user::before {\n  content: \"\\e1b0\"; }\n\n.fa-home-user::before {\n  content: \"\\e1b0\"; }\n\n.fa-dumpster-fire::before {\n  content: \"\\f794\"; }\n\n.fa-house-crack::before {\n  content: \"\\e3b1\"; }\n\n.fa-martini-glass-citrus::before {\n  content: \"\\f561\"; }\n\n.fa-cocktail::before {\n  content: \"\\f561\"; }\n\n.fa-face-surprise::before {\n  content: \"\\f5c2\"; }\n\n.fa-surprise::before {\n  content: \"\\f5c2\"; }\n\n.fa-bottle-water::before {\n  content: \"\\e4c5\"; }\n\n.fa-circle-pause::before {\n  content: \"\\f28b\"; }\n\n.fa-pause-circle::before {\n  content: \"\\f28b\"; }\n\n.fa-toilet-paper-slash::before {\n  content: \"\\e072\"; }\n\n.fa-apple-whole::before {\n  content: \"\\f5d1\"; }\n\n.fa-apple-alt::before {\n  content: \"\\f5d1\"; }\n\n.fa-kitchen-set::before {\n  content: \"\\e51a\"; }\n\n.fa-r::before {\n  content: \"\\52\"; }\n\n.fa-temperature-quarter::before {\n  content: \"\\f2ca\"; }\n\n.fa-temperature-1::before {\n  content: \"\\f2ca\"; }\n\n.fa-thermometer-1::before {\n  content: \"\\f2ca\"; }\n\n.fa-thermometer-quarter::before {\n  content: \"\\f2ca\"; }\n\n.fa-cube::before {\n  content: \"\\f1b2\"; }\n\n.fa-bitcoin-sign::before {\n  content: \"\\e0b4\"; }\n\n.fa-shield-dog::before {\n  content: \"\\e573\"; }\n\n.fa-solar-panel::before {\n  content: \"\\f5ba\"; }\n\n.fa-lock-open::before {\n  content: \"\\f3c1\"; }\n\n.fa-elevator::before {\n  content: \"\\e16d\"; }\n\n.fa-money-bill-transfer::before {\n  content: \"\\e528\"; }\n\n.fa-money-bill-trend-up::before {\n  content: \"\\e529\"; }\n\n.fa-house-flood-water-circle-arrow-right::before {\n  content: \"\\e50f\"; }\n\n.fa-square-poll-horizontal::before {\n  content: \"\\f682\"; }\n\n.fa-poll-h::before {\n  content: \"\\f682\"; }\n\n.fa-circle::before {\n  content: \"\\f111\"; }\n\n.fa-backward-fast::before {\n  content: \"\\f049\"; }\n\n.fa-fast-backward::before {\n  content: \"\\f049\"; }\n\n.fa-recycle::before {\n  content: \"\\f1b8\"; }\n\n.fa-user-astronaut::before {\n  content: \"\\f4fb\"; }\n\n.fa-plane-slash::before {\n  content: \"\\e069\"; }\n\n.fa-trademark::before {\n  content: \"\\f25c\"; }\n\n.fa-basketball::before {\n  content: \"\\f434\"; }\n\n.fa-basketball-ball::before {\n  content: \"\\f434\"; }\n\n.fa-satellite-dish::before {\n  content: \"\\f7c0\"; }\n\n.fa-circle-up::before {\n  content: \"\\f35b\"; }\n\n.fa-arrow-alt-circle-up::before {\n  content: \"\\f35b\"; }\n\n.fa-mobile-screen-button::before {\n  content: \"\\f3cd\"; }\n\n.fa-mobile-alt::before {\n  content: \"\\f3cd\"; }\n\n.fa-volume-high::before {\n  content: \"\\f028\"; }\n\n.fa-volume-up::before {\n  content: \"\\f028\"; }\n\n.fa-users-rays::before {\n  content: \"\\e593\"; }\n\n.fa-wallet::before {\n  content: \"\\f555\"; }\n\n.fa-clipboard-check::before {\n  content: \"\\f46c\"; }\n\n.fa-file-audio::before {\n  content: \"\\f1c7\"; }\n\n.fa-burger::before {\n  content: \"\\f805\"; }\n\n.fa-hamburger::before {\n  content: \"\\f805\"; }\n\n.fa-wrench::before {\n  content: \"\\f0ad\"; }\n\n.fa-bugs::before {\n  content: \"\\e4d0\"; }\n\n.fa-rupee-sign::before {\n  content: \"\\f156\"; }\n\n.fa-rupee::before {\n  content: \"\\f156\"; }\n\n.fa-file-image::before {\n  content: \"\\f1c5\"; }\n\n.fa-circle-question::before {\n  content: \"\\f059\"; }\n\n.fa-question-circle::before {\n  content: \"\\f059\"; }\n\n.fa-plane-departure::before {\n  content: \"\\f5b0\"; }\n\n.fa-handshake-slash::before {\n  content: \"\\e060\"; }\n\n.fa-book-bookmark::before {\n  content: \"\\e0bb\"; }\n\n.fa-code-branch::before {\n  content: \"\\f126\"; }\n\n.fa-hat-cowboy::before {\n  content: \"\\f8c0\"; }\n\n.fa-bridge::before {\n  content: \"\\e4c8\"; }\n\n.fa-phone-flip::before {\n  content: \"\\f879\"; }\n\n.fa-phone-alt::before {\n  content: \"\\f879\"; }\n\n.fa-truck-front::before {\n  content: \"\\e2b7\"; }\n\n.fa-cat::before {\n  content: \"\\f6be\"; }\n\n.fa-anchor-circle-exclamation::before {\n  content: \"\\e4ab\"; }\n\n.fa-truck-field::before {\n  content: \"\\e58d\"; }\n\n.fa-route::before {\n  content: \"\\f4d7\"; }\n\n.fa-clipboard-question::before {\n  content: \"\\e4e3\"; }\n\n.fa-panorama::before {\n  content: \"\\e209\"; }\n\n.fa-comment-medical::before {\n  content: \"\\f7f5\"; }\n\n.fa-teeth-open::before {\n  content: \"\\f62f\"; }\n\n.fa-file-circle-minus::before {\n  content: \"\\e4ed\"; }\n\n.fa-tags::before {\n  content: \"\\f02c\"; }\n\n.fa-wine-glass::before {\n  content: \"\\f4e3\"; }\n\n.fa-forward-fast::before {\n  content: \"\\f050\"; }\n\n.fa-fast-forward::before {\n  content: \"\\f050\"; }\n\n.fa-face-meh-blank::before {\n  content: \"\\f5a4\"; }\n\n.fa-meh-blank::before {\n  content: \"\\f5a4\"; }\n\n.fa-square-parking::before {\n  content: \"\\f540\"; }\n\n.fa-parking::before {\n  content: \"\\f540\"; }\n\n.fa-house-signal::before {\n  content: \"\\e012\"; }\n\n.fa-bars-progress::before {\n  content: \"\\f828\"; }\n\n.fa-tasks-alt::before {\n  content: \"\\f828\"; }\n\n.fa-faucet-drip::before {\n  content: \"\\e006\"; }\n\n.fa-cart-flatbed::before {\n  content: \"\\f474\"; }\n\n.fa-dolly-flatbed::before {\n  content: \"\\f474\"; }\n\n.fa-ban-smoking::before {\n  content: \"\\f54d\"; }\n\n.fa-smoking-ban::before {\n  content: \"\\f54d\"; }\n\n.fa-terminal::before {\n  content: \"\\f120\"; }\n\n.fa-mobile-button::before {\n  content: \"\\f10b\"; }\n\n.fa-house-medical-flag::before {\n  content: \"\\e514\"; }\n\n.fa-basket-shopping::before {\n  content: \"\\f291\"; }\n\n.fa-shopping-basket::before {\n  content: \"\\f291\"; }\n\n.fa-tape::before {\n  content: \"\\f4db\"; }\n\n.fa-bus-simple::before {\n  content: \"\\f55e\"; }\n\n.fa-bus-alt::before {\n  content: \"\\f55e\"; }\n\n.fa-eye::before {\n  content: \"\\f06e\"; }\n\n.fa-face-sad-cry::before {\n  content: \"\\f5b3\"; }\n\n.fa-sad-cry::before {\n  content: \"\\f5b3\"; }\n\n.fa-audio-description::before {\n  content: \"\\f29e\"; }\n\n.fa-person-military-to-person::before {\n  content: \"\\e54c\"; }\n\n.fa-file-shield::before {\n  content: \"\\e4f0\"; }\n\n.fa-user-slash::before {\n  content: \"\\f506\"; }\n\n.fa-pen::before {\n  content: \"\\f304\"; }\n\n.fa-tower-observation::before {\n  content: \"\\e586\"; }\n\n.fa-file-code::before {\n  content: \"\\f1c9\"; }\n\n.fa-signal::before {\n  content: \"\\f012\"; }\n\n.fa-signal-5::before {\n  content: \"\\f012\"; }\n\n.fa-signal-perfect::before {\n  content: \"\\f012\"; }\n\n.fa-bus::before {\n  content: \"\\f207\"; }\n\n.fa-heart-circle-xmark::before {\n  content: \"\\e501\"; }\n\n.fa-house-chimney::before {\n  content: \"\\e3af\"; }\n\n.fa-home-lg::before {\n  content: \"\\e3af\"; }\n\n.fa-window-maximize::before {\n  content: \"\\f2d0\"; }\n\n.fa-face-frown::before {\n  content: \"\\f119\"; }\n\n.fa-frown::before {\n  content: \"\\f119\"; }\n\n.fa-prescription::before {\n  content: \"\\f5b1\"; }\n\n.fa-shop::before {\n  content: \"\\f54f\"; }\n\n.fa-store-alt::before {\n  content: \"\\f54f\"; }\n\n.fa-floppy-disk::before {\n  content: \"\\f0c7\"; }\n\n.fa-save::before {\n  content: \"\\f0c7\"; }\n\n.fa-vihara::before {\n  content: \"\\f6a7\"; }\n\n.fa-scale-unbalanced::before {\n  content: \"\\f515\"; }\n\n.fa-balance-scale-left::before {\n  content: \"\\f515\"; }\n\n.fa-sort-up::before {\n  content: \"\\f0de\"; }\n\n.fa-sort-asc::before {\n  content: \"\\f0de\"; }\n\n.fa-comment-dots::before {\n  content: \"\\f4ad\"; }\n\n.fa-commenting::before {\n  content: \"\\f4ad\"; }\n\n.fa-plant-wilt::before {\n  content: \"\\e5aa\"; }\n\n.fa-diamond::before {\n  content: \"\\f219\"; }\n\n.fa-face-grin-squint::before {\n  content: \"\\f585\"; }\n\n.fa-grin-squint::before {\n  content: \"\\f585\"; }\n\n.fa-hand-holding-dollar::before {\n  content: \"\\f4c0\"; }\n\n.fa-hand-holding-usd::before {\n  content: \"\\f4c0\"; }\n\n.fa-bacterium::before {\n  content: \"\\e05a\"; }\n\n.fa-hand-pointer::before {\n  content: \"\\f25a\"; }\n\n.fa-drum-steelpan::before {\n  content: \"\\f56a\"; }\n\n.fa-hand-scissors::before {\n  content: \"\\f257\"; }\n\n.fa-hands-praying::before {\n  content: \"\\f684\"; }\n\n.fa-praying-hands::before {\n  content: \"\\f684\"; }\n\n.fa-arrow-rotate-right::before {\n  content: \"\\f01e\"; }\n\n.fa-arrow-right-rotate::before {\n  content: \"\\f01e\"; }\n\n.fa-arrow-rotate-forward::before {\n  content: \"\\f01e\"; }\n\n.fa-redo::before {\n  content: \"\\f01e\"; }\n\n.fa-biohazard::before {\n  content: \"\\f780\"; }\n\n.fa-location-crosshairs::before {\n  content: \"\\f601\"; }\n\n.fa-location::before {\n  content: \"\\f601\"; }\n\n.fa-mars-double::before {\n  content: \"\\f227\"; }\n\n.fa-child-dress::before {\n  content: \"\\e59c\"; }\n\n.fa-users-between-lines::before {\n  content: \"\\e591\"; }\n\n.fa-lungs-virus::before {\n  content: \"\\e067\"; }\n\n.fa-face-grin-tears::before {\n  content: \"\\f588\"; }\n\n.fa-grin-tears::before {\n  content: \"\\f588\"; }\n\n.fa-phone::before {\n  content: \"\\f095\"; }\n\n.fa-calendar-xmark::before {\n  content: \"\\f273\"; }\n\n.fa-calendar-times::before {\n  content: \"\\f273\"; }\n\n.fa-child-reaching::before {\n  content: \"\\e59d\"; }\n\n.fa-head-side-virus::before {\n  content: \"\\e064\"; }\n\n.fa-user-gear::before {\n  content: \"\\f4fe\"; }\n\n.fa-user-cog::before {\n  content: \"\\f4fe\"; }\n\n.fa-arrow-up-1-9::before {\n  content: \"\\f163\"; }\n\n.fa-sort-numeric-up::before {\n  content: \"\\f163\"; }\n\n.fa-door-closed::before {\n  content: \"\\f52a\"; }\n\n.fa-shield-virus::before {\n  content: \"\\e06c\"; }\n\n.fa-dice-six::before {\n  content: \"\\f526\"; }\n\n.fa-mosquito-net::before {\n  content: \"\\e52c\"; }\n\n.fa-bridge-water::before {\n  content: \"\\e4ce\"; }\n\n.fa-person-booth::before {\n  content: \"\\f756\"; }\n\n.fa-text-width::before {\n  content: \"\\f035\"; }\n\n.fa-hat-wizard::before {\n  content: \"\\f6e8\"; }\n\n.fa-pen-fancy::before {\n  content: \"\\f5ac\"; }\n\n.fa-person-digging::before {\n  content: \"\\f85e\"; }\n\n.fa-digging::before {\n  content: \"\\f85e\"; }\n\n.fa-trash::before {\n  content: \"\\f1f8\"; }\n\n.fa-gauge-simple::before {\n  content: \"\\f629\"; }\n\n.fa-gauge-simple-med::before {\n  content: \"\\f629\"; }\n\n.fa-tachometer-average::before {\n  content: \"\\f629\"; }\n\n.fa-book-medical::before {\n  content: \"\\f7e6\"; }\n\n.fa-poo::before {\n  content: \"\\f2fe\"; }\n\n.fa-quote-right::before {\n  content: \"\\f10e\"; }\n\n.fa-quote-right-alt::before {\n  content: \"\\f10e\"; }\n\n.fa-shirt::before {\n  content: \"\\f553\"; }\n\n.fa-t-shirt::before {\n  content: \"\\f553\"; }\n\n.fa-tshirt::before {\n  content: \"\\f553\"; }\n\n.fa-cubes::before {\n  content: \"\\f1b3\"; }\n\n.fa-divide::before {\n  content: \"\\f529\"; }\n\n.fa-tenge-sign::before {\n  content: \"\\f7d7\"; }\n\n.fa-tenge::before {\n  content: \"\\f7d7\"; }\n\n.fa-headphones::before {\n  content: \"\\f025\"; }\n\n.fa-hands-holding::before {\n  content: \"\\f4c2\"; }\n\n.fa-hands-clapping::before {\n  content: \"\\e1a8\"; }\n\n.fa-republican::before {\n  content: \"\\f75e\"; }\n\n.fa-arrow-left::before {\n  content: \"\\f060\"; }\n\n.fa-person-circle-xmark::before {\n  content: \"\\e543\"; }\n\n.fa-ruler::before {\n  content: \"\\f545\"; }\n\n.fa-align-left::before {\n  content: \"\\f036\"; }\n\n.fa-dice-d6::before {\n  content: \"\\f6d1\"; }\n\n.fa-restroom::before {\n  content: \"\\f7bd\"; }\n\n.fa-j::before {\n  content: \"\\4a\"; }\n\n.fa-users-viewfinder::before {\n  content: \"\\e595\"; }\n\n.fa-file-video::before {\n  content: \"\\f1c8\"; }\n\n.fa-up-right-from-square::before {\n  content: \"\\f35d\"; }\n\n.fa-external-link-alt::before {\n  content: \"\\f35d\"; }\n\n.fa-table-cells::before {\n  content: \"\\f00a\"; }\n\n.fa-th::before {\n  content: \"\\f00a\"; }\n\n.fa-file-pdf::before {\n  content: \"\\f1c1\"; }\n\n.fa-book-bible::before {\n  content: \"\\f647\"; }\n\n.fa-bible::before {\n  content: \"\\f647\"; }\n\n.fa-o::before {\n  content: \"\\4f\"; }\n\n.fa-suitcase-medical::before {\n  content: \"\\f0fa\"; }\n\n.fa-medkit::before {\n  content: \"\\f0fa\"; }\n\n.fa-user-secret::before {\n  content: \"\\f21b\"; }\n\n.fa-otter::before {\n  content: \"\\f700\"; }\n\n.fa-person-dress::before {\n  content: \"\\f182\"; }\n\n.fa-female::before {\n  content: \"\\f182\"; }\n\n.fa-comment-dollar::before {\n  content: \"\\f651\"; }\n\n.fa-business-time::before {\n  content: \"\\f64a\"; }\n\n.fa-briefcase-clock::before {\n  content: \"\\f64a\"; }\n\n.fa-table-cells-large::before {\n  content: \"\\f009\"; }\n\n.fa-th-large::before {\n  content: \"\\f009\"; }\n\n.fa-book-tanakh::before {\n  content: \"\\f827\"; }\n\n.fa-tanakh::before {\n  content: \"\\f827\"; }\n\n.fa-phone-volume::before {\n  content: \"\\f2a0\"; }\n\n.fa-volume-control-phone::before {\n  content: \"\\f2a0\"; }\n\n.fa-hat-cowboy-side::before {\n  content: \"\\f8c1\"; }\n\n.fa-clipboard-user::before {\n  content: \"\\f7f3\"; }\n\n.fa-child::before {\n  content: \"\\f1ae\"; }\n\n.fa-lira-sign::before {\n  content: \"\\f195\"; }\n\n.fa-satellite::before {\n  content: \"\\f7bf\"; }\n\n.fa-plane-lock::before {\n  content: \"\\e558\"; }\n\n.fa-tag::before {\n  content: \"\\f02b\"; }\n\n.fa-comment::before {\n  content: \"\\f075\"; }\n\n.fa-cake-candles::before {\n  content: \"\\f1fd\"; }\n\n.fa-birthday-cake::before {\n  content: \"\\f1fd\"; }\n\n.fa-cake::before {\n  content: \"\\f1fd\"; }\n\n.fa-envelope::before {\n  content: \"\\f0e0\"; }\n\n.fa-angles-up::before {\n  content: \"\\f102\"; }\n\n.fa-angle-double-up::before {\n  content: \"\\f102\"; }\n\n.fa-paperclip::before {\n  content: \"\\f0c6\"; }\n\n.fa-arrow-right-to-city::before {\n  content: \"\\e4b3\"; }\n\n.fa-ribbon::before {\n  content: \"\\f4d6\"; }\n\n.fa-lungs::before {\n  content: \"\\f604\"; }\n\n.fa-arrow-up-9-1::before {\n  content: \"\\f887\"; }\n\n.fa-sort-numeric-up-alt::before {\n  content: \"\\f887\"; }\n\n.fa-litecoin-sign::before {\n  content: \"\\e1d3\"; }\n\n.fa-border-none::before {\n  content: \"\\f850\"; }\n\n.fa-circle-nodes::before {\n  content: \"\\e4e2\"; }\n\n.fa-parachute-box::before {\n  content: \"\\f4cd\"; }\n\n.fa-indent::before {\n  content: \"\\f03c\"; }\n\n.fa-truck-field-un::before {\n  content: \"\\e58e\"; }\n\n.fa-hourglass::before {\n  content: \"\\f254\"; }\n\n.fa-hourglass-empty::before {\n  content: \"\\f254\"; }\n\n.fa-mountain::before {\n  content: \"\\f6fc\"; }\n\n.fa-user-doctor::before {\n  content: \"\\f0f0\"; }\n\n.fa-user-md::before {\n  content: \"\\f0f0\"; }\n\n.fa-circle-info::before {\n  content: \"\\f05a\"; }\n\n.fa-info-circle::before {\n  content: \"\\f05a\"; }\n\n.fa-cloud-meatball::before {\n  content: \"\\f73b\"; }\n\n.fa-camera::before {\n  content: \"\\f030\"; }\n\n.fa-camera-alt::before {\n  content: \"\\f030\"; }\n\n.fa-square-virus::before {\n  content: \"\\e578\"; }\n\n.fa-meteor::before {\n  content: \"\\f753\"; }\n\n.fa-car-on::before {\n  content: \"\\e4dd\"; }\n\n.fa-sleigh::before {\n  content: \"\\f7cc\"; }\n\n.fa-arrow-down-1-9::before {\n  content: \"\\f162\"; }\n\n.fa-sort-numeric-asc::before {\n  content: \"\\f162\"; }\n\n.fa-sort-numeric-down::before {\n  content: \"\\f162\"; }\n\n.fa-hand-holding-droplet::before {\n  content: \"\\f4c1\"; }\n\n.fa-hand-holding-water::before {\n  content: \"\\f4c1\"; }\n\n.fa-water::before {\n  content: \"\\f773\"; }\n\n.fa-calendar-check::before {\n  content: \"\\f274\"; }\n\n.fa-braille::before {\n  content: \"\\f2a1\"; }\n\n.fa-prescription-bottle-medical::before {\n  content: \"\\f486\"; }\n\n.fa-prescription-bottle-alt::before {\n  content: \"\\f486\"; }\n\n.fa-landmark::before {\n  content: \"\\f66f\"; }\n\n.fa-truck::before {\n  content: \"\\f0d1\"; }\n\n.fa-crosshairs::before {\n  content: \"\\f05b\"; }\n\n.fa-person-cane::before {\n  content: \"\\e53c\"; }\n\n.fa-tent::before {\n  content: \"\\e57d\"; }\n\n.fa-vest-patches::before {\n  content: \"\\e086\"; }\n\n.fa-check-double::before {\n  content: \"\\f560\"; }\n\n.fa-arrow-down-a-z::before {\n  content: \"\\f15d\"; }\n\n.fa-sort-alpha-asc::before {\n  content: \"\\f15d\"; }\n\n.fa-sort-alpha-down::before {\n  content: \"\\f15d\"; }\n\n.fa-money-bill-wheat::before {\n  content: \"\\e52a\"; }\n\n.fa-cookie::before {\n  content: \"\\f563\"; }\n\n.fa-arrow-rotate-left::before {\n  content: \"\\f0e2\"; }\n\n.fa-arrow-left-rotate::before {\n  content: \"\\f0e2\"; }\n\n.fa-arrow-rotate-back::before {\n  content: \"\\f0e2\"; }\n\n.fa-arrow-rotate-backward::before {\n  content: \"\\f0e2\"; }\n\n.fa-undo::before {\n  content: \"\\f0e2\"; }\n\n.fa-hard-drive::before {\n  content: \"\\f0a0\"; }\n\n.fa-hdd::before {\n  content: \"\\f0a0\"; }\n\n.fa-face-grin-squint-tears::before {\n  content: \"\\f586\"; }\n\n.fa-grin-squint-tears::before {\n  content: \"\\f586\"; }\n\n.fa-dumbbell::before {\n  content: \"\\f44b\"; }\n\n.fa-rectangle-list::before {\n  content: \"\\f022\"; }\n\n.fa-list-alt::before {\n  content: \"\\f022\"; }\n\n.fa-tarp-droplet::before {\n  content: \"\\e57c\"; }\n\n.fa-house-medical-circle-check::before {\n  content: \"\\e511\"; }\n\n.fa-person-skiing-nordic::before {\n  content: \"\\f7ca\"; }\n\n.fa-skiing-nordic::before {\n  content: \"\\f7ca\"; }\n\n.fa-calendar-plus::before {\n  content: \"\\f271\"; }\n\n.fa-plane-arrival::before {\n  content: \"\\f5af\"; }\n\n.fa-circle-left::before {\n  content: \"\\f359\"; }\n\n.fa-arrow-alt-circle-left::before {\n  content: \"\\f359\"; }\n\n.fa-train-subway::before {\n  content: \"\\f239\"; }\n\n.fa-subway::before {\n  content: \"\\f239\"; }\n\n.fa-chart-gantt::before {\n  content: \"\\e0e4\"; }\n\n.fa-indian-rupee-sign::before {\n  content: \"\\e1bc\"; }\n\n.fa-indian-rupee::before {\n  content: \"\\e1bc\"; }\n\n.fa-inr::before {\n  content: \"\\e1bc\"; }\n\n.fa-crop-simple::before {\n  content: \"\\f565\"; }\n\n.fa-crop-alt::before {\n  content: \"\\f565\"; }\n\n.fa-money-bill-1::before {\n  content: \"\\f3d1\"; }\n\n.fa-money-bill-alt::before {\n  content: \"\\f3d1\"; }\n\n.fa-left-long::before {\n  content: \"\\f30a\"; }\n\n.fa-long-arrow-alt-left::before {\n  content: \"\\f30a\"; }\n\n.fa-dna::before {\n  content: \"\\f471\"; }\n\n.fa-virus-slash::before {\n  content: \"\\e075\"; }\n\n.fa-minus::before {\n  content: \"\\f068\"; }\n\n.fa-subtract::before {\n  content: \"\\f068\"; }\n\n.fa-chess::before {\n  content: \"\\f439\"; }\n\n.fa-arrow-left-long::before {\n  content: \"\\f177\"; }\n\n.fa-long-arrow-left::before {\n  content: \"\\f177\"; }\n\n.fa-plug-circle-check::before {\n  content: \"\\e55c\"; }\n\n.fa-street-view::before {\n  content: \"\\f21d\"; }\n\n.fa-franc-sign::before {\n  content: \"\\e18f\"; }\n\n.fa-volume-off::before {\n  content: \"\\f026\"; }\n\n.fa-hands-asl-interpreting::before {\n  content: \"\\f2a3\"; }\n\n.fa-american-sign-language-interpreting::before {\n  content: \"\\f2a3\"; }\n\n.fa-asl-interpreting::before {\n  content: \"\\f2a3\"; }\n\n.fa-hands-american-sign-language-interpreting::before {\n  content: \"\\f2a3\"; }\n\n.fa-gear::before {\n  content: \"\\f013\"; }\n\n.fa-cog::before {\n  content: \"\\f013\"; }\n\n.fa-droplet-slash::before {\n  content: \"\\f5c7\"; }\n\n.fa-tint-slash::before {\n  content: \"\\f5c7\"; }\n\n.fa-mosque::before {\n  content: \"\\f678\"; }\n\n.fa-mosquito::before {\n  content: \"\\e52b\"; }\n\n.fa-star-of-david::before {\n  content: \"\\f69a\"; }\n\n.fa-person-military-rifle::before {\n  content: \"\\e54b\"; }\n\n.fa-cart-shopping::before {\n  content: \"\\f07a\"; }\n\n.fa-shopping-cart::before {\n  content: \"\\f07a\"; }\n\n.fa-vials::before {\n  content: \"\\f493\"; }\n\n.fa-plug-circle-plus::before {\n  content: \"\\e55f\"; }\n\n.fa-place-of-worship::before {\n  content: \"\\f67f\"; }\n\n.fa-grip-vertical::before {\n  content: \"\\f58e\"; }\n\n.fa-arrow-turn-up::before {\n  content: \"\\f148\"; }\n\n.fa-level-up::before {\n  content: \"\\f148\"; }\n\n.fa-u::before {\n  content: \"\\55\"; }\n\n.fa-square-root-variable::before {\n  content: \"\\f698\"; }\n\n.fa-square-root-alt::before {\n  content: \"\\f698\"; }\n\n.fa-clock::before {\n  content: \"\\f017\"; }\n\n.fa-clock-four::before {\n  content: \"\\f017\"; }\n\n.fa-backward-step::before {\n  content: \"\\f048\"; }\n\n.fa-step-backward::before {\n  content: \"\\f048\"; }\n\n.fa-pallet::before {\n  content: \"\\f482\"; }\n\n.fa-faucet::before {\n  content: \"\\e005\"; }\n\n.fa-baseball-bat-ball::before {\n  content: \"\\f432\"; }\n\n.fa-s::before {\n  content: \"\\53\"; }\n\n.fa-timeline::before {\n  content: \"\\e29c\"; }\n\n.fa-keyboard::before {\n  content: \"\\f11c\"; }\n\n.fa-caret-down::before {\n  content: \"\\f0d7\"; }\n\n.fa-house-chimney-medical::before {\n  content: \"\\f7f2\"; }\n\n.fa-clinic-medical::before {\n  content: \"\\f7f2\"; }\n\n.fa-temperature-three-quarters::before {\n  content: \"\\f2c8\"; }\n\n.fa-temperature-3::before {\n  content: \"\\f2c8\"; }\n\n.fa-thermometer-3::before {\n  content: \"\\f2c8\"; }\n\n.fa-thermometer-three-quarters::before {\n  content: \"\\f2c8\"; }\n\n.fa-mobile-screen::before {\n  content: \"\\f3cf\"; }\n\n.fa-mobile-android-alt::before {\n  content: \"\\f3cf\"; }\n\n.fa-plane-up::before {\n  content: \"\\e22d\"; }\n\n.fa-piggy-bank::before {\n  content: \"\\f4d3\"; }\n\n.fa-battery-half::before {\n  content: \"\\f242\"; }\n\n.fa-battery-3::before {\n  content: \"\\f242\"; }\n\n.fa-mountain-city::before {\n  content: \"\\e52e\"; }\n\n.fa-coins::before {\n  content: \"\\f51e\"; }\n\n.fa-khanda::before {\n  content: \"\\f66d\"; }\n\n.fa-sliders::before {\n  content: \"\\f1de\"; }\n\n.fa-sliders-h::before {\n  content: \"\\f1de\"; }\n\n.fa-folder-tree::before {\n  content: \"\\f802\"; }\n\n.fa-network-wired::before {\n  content: \"\\f6ff\"; }\n\n.fa-map-pin::before {\n  content: \"\\f276\"; }\n\n.fa-hamsa::before {\n  content: \"\\f665\"; }\n\n.fa-cent-sign::before {\n  content: \"\\e3f5\"; }\n\n.fa-flask::before {\n  content: \"\\f0c3\"; }\n\n.fa-person-pregnant::before {\n  content: \"\\e31e\"; }\n\n.fa-wand-sparkles::before {\n  content: \"\\f72b\"; }\n\n.fa-ellipsis-vertical::before {\n  content: \"\\f142\"; }\n\n.fa-ellipsis-v::before {\n  content: \"\\f142\"; }\n\n.fa-ticket::before {\n  content: \"\\f145\"; }\n\n.fa-power-off::before {\n  content: \"\\f011\"; }\n\n.fa-right-long::before {\n  content: \"\\f30b\"; }\n\n.fa-long-arrow-alt-right::before {\n  content: \"\\f30b\"; }\n\n.fa-flag-usa::before {\n  content: \"\\f74d\"; }\n\n.fa-laptop-file::before {\n  content: \"\\e51d\"; }\n\n.fa-tty::before {\n  content: \"\\f1e4\"; }\n\n.fa-teletype::before {\n  content: \"\\f1e4\"; }\n\n.fa-diagram-next::before {\n  content: \"\\e476\"; }\n\n.fa-person-rifle::before {\n  content: \"\\e54e\"; }\n\n.fa-house-medical-circle-exclamation::before {\n  content: \"\\e512\"; }\n\n.fa-closed-captioning::before {\n  content: \"\\f20a\"; }\n\n.fa-person-hiking::before {\n  content: \"\\f6ec\"; }\n\n.fa-hiking::before {\n  content: \"\\f6ec\"; }\n\n.fa-venus-double::before {\n  content: \"\\f226\"; }\n\n.fa-images::before {\n  content: \"\\f302\"; }\n\n.fa-calculator::before {\n  content: \"\\f1ec\"; }\n\n.fa-people-pulling::before {\n  content: \"\\e535\"; }\n\n.fa-n::before {\n  content: \"\\4e\"; }\n\n.fa-cable-car::before {\n  content: \"\\f7da\"; }\n\n.fa-tram::before {\n  content: \"\\f7da\"; }\n\n.fa-cloud-rain::before {\n  content: \"\\f73d\"; }\n\n.fa-building-circle-xmark::before {\n  content: \"\\e4d4\"; }\n\n.fa-ship::before {\n  content: \"\\f21a\"; }\n\n.fa-arrows-down-to-line::before {\n  content: \"\\e4b8\"; }\n\n.fa-download::before {\n  content: \"\\f019\"; }\n\n.fa-face-grin::before {\n  content: \"\\f580\"; }\n\n.fa-grin::before {\n  content: \"\\f580\"; }\n\n.fa-delete-left::before {\n  content: \"\\f55a\"; }\n\n.fa-backspace::before {\n  content: \"\\f55a\"; }\n\n.fa-eye-dropper::before {\n  content: \"\\f1fb\"; }\n\n.fa-eye-dropper-empty::before {\n  content: \"\\f1fb\"; }\n\n.fa-eyedropper::before {\n  content: \"\\f1fb\"; }\n\n.fa-file-circle-check::before {\n  content: \"\\e5a0\"; }\n\n.fa-forward::before {\n  content: \"\\f04e\"; }\n\n.fa-mobile::before {\n  content: \"\\f3ce\"; }\n\n.fa-mobile-android::before {\n  content: \"\\f3ce\"; }\n\n.fa-mobile-phone::before {\n  content: \"\\f3ce\"; }\n\n.fa-face-meh::before {\n  content: \"\\f11a\"; }\n\n.fa-meh::before {\n  content: \"\\f11a\"; }\n\n.fa-align-center::before {\n  content: \"\\f037\"; }\n\n.fa-book-skull::before {\n  content: \"\\f6b7\"; }\n\n.fa-book-dead::before {\n  content: \"\\f6b7\"; }\n\n.fa-id-card::before {\n  content: \"\\f2c2\"; }\n\n.fa-drivers-license::before {\n  content: \"\\f2c2\"; }\n\n.fa-outdent::before {\n  content: \"\\f03b\"; }\n\n.fa-dedent::before {\n  content: \"\\f03b\"; }\n\n.fa-heart-circle-exclamation::before {\n  content: \"\\e4fe\"; }\n\n.fa-house::before {\n  content: \"\\f015\"; }\n\n.fa-home::before {\n  content: \"\\f015\"; }\n\n.fa-home-alt::before {\n  content: \"\\f015\"; }\n\n.fa-home-lg-alt::before {\n  content: \"\\f015\"; }\n\n.fa-calendar-week::before {\n  content: \"\\f784\"; }\n\n.fa-laptop-medical::before {\n  content: \"\\f812\"; }\n\n.fa-b::before {\n  content: \"\\42\"; }\n\n.fa-file-medical::before {\n  content: \"\\f477\"; }\n\n.fa-dice-one::before {\n  content: \"\\f525\"; }\n\n.fa-kiwi-bird::before {\n  content: \"\\f535\"; }\n\n.fa-arrow-right-arrow-left::before {\n  content: \"\\f0ec\"; }\n\n.fa-exchange::before {\n  content: \"\\f0ec\"; }\n\n.fa-rotate-right::before {\n  content: \"\\f2f9\"; }\n\n.fa-redo-alt::before {\n  content: \"\\f2f9\"; }\n\n.fa-rotate-forward::before {\n  content: \"\\f2f9\"; }\n\n.fa-utensils::before {\n  content: \"\\f2e7\"; }\n\n.fa-cutlery::before {\n  content: \"\\f2e7\"; }\n\n.fa-arrow-up-wide-short::before {\n  content: \"\\f161\"; }\n\n.fa-sort-amount-up::before {\n  content: \"\\f161\"; }\n\n.fa-mill-sign::before {\n  content: \"\\e1ed\"; }\n\n.fa-bowl-rice::before {\n  content: \"\\e2eb\"; }\n\n.fa-skull::before {\n  content: \"\\f54c\"; }\n\n.fa-tower-broadcast::before {\n  content: \"\\f519\"; }\n\n.fa-broadcast-tower::before {\n  content: \"\\f519\"; }\n\n.fa-truck-pickup::before {\n  content: \"\\f63c\"; }\n\n.fa-up-long::before {\n  content: \"\\f30c\"; }\n\n.fa-long-arrow-alt-up::before {\n  content: \"\\f30c\"; }\n\n.fa-stop::before {\n  content: \"\\f04d\"; }\n\n.fa-code-merge::before {\n  content: \"\\f387\"; }\n\n.fa-upload::before {\n  content: \"\\f093\"; }\n\n.fa-hurricane::before {\n  content: \"\\f751\"; }\n\n.fa-mound::before {\n  content: \"\\e52d\"; }\n\n.fa-toilet-portable::before {\n  content: \"\\e583\"; }\n\n.fa-compact-disc::before {\n  content: \"\\f51f\"; }\n\n.fa-file-arrow-down::before {\n  content: \"\\f56d\"; }\n\n.fa-file-download::before {\n  content: \"\\f56d\"; }\n\n.fa-caravan::before {\n  content: \"\\f8ff\"; }\n\n.fa-shield-cat::before {\n  content: \"\\e572\"; }\n\n.fa-bolt::before {\n  content: \"\\f0e7\"; }\n\n.fa-zap::before {\n  content: \"\\f0e7\"; }\n\n.fa-glass-water::before {\n  content: \"\\e4f4\"; }\n\n.fa-oil-well::before {\n  content: \"\\e532\"; }\n\n.fa-vault::before {\n  content: \"\\e2c5\"; }\n\n.fa-mars::before {\n  content: \"\\f222\"; }\n\n.fa-toilet::before {\n  content: \"\\f7d8\"; }\n\n.fa-plane-circle-xmark::before {\n  content: \"\\e557\"; }\n\n.fa-yen-sign::before {\n  content: \"\\f157\"; }\n\n.fa-cny::before {\n  content: \"\\f157\"; }\n\n.fa-jpy::before {\n  content: \"\\f157\"; }\n\n.fa-rmb::before {\n  content: \"\\f157\"; }\n\n.fa-yen::before {\n  content: \"\\f157\"; }\n\n.fa-ruble-sign::before {\n  content: \"\\f158\"; }\n\n.fa-rouble::before {\n  content: \"\\f158\"; }\n\n.fa-rub::before {\n  content: \"\\f158\"; }\n\n.fa-ruble::before {\n  content: \"\\f158\"; }\n\n.fa-sun::before {\n  content: \"\\f185\"; }\n\n.fa-guitar::before {\n  content: \"\\f7a6\"; }\n\n.fa-face-laugh-wink::before {\n  content: \"\\f59c\"; }\n\n.fa-laugh-wink::before {\n  content: \"\\f59c\"; }\n\n.fa-horse-head::before {\n  content: \"\\f7ab\"; }\n\n.fa-bore-hole::before {\n  content: \"\\e4c3\"; }\n\n.fa-industry::before {\n  content: \"\\f275\"; }\n\n.fa-circle-down::before {\n  content: \"\\f358\"; }\n\n.fa-arrow-alt-circle-down::before {\n  content: \"\\f358\"; }\n\n.fa-arrows-turn-to-dots::before {\n  content: \"\\e4c1\"; }\n\n.fa-florin-sign::before {\n  content: \"\\e184\"; }\n\n.fa-arrow-down-short-wide::before {\n  content: \"\\f884\"; }\n\n.fa-sort-amount-desc::before {\n  content: \"\\f884\"; }\n\n.fa-sort-amount-down-alt::before {\n  content: \"\\f884\"; }\n\n.fa-less-than::before {\n  content: \"\\3c\"; }\n\n.fa-angle-down::before {\n  content: \"\\f107\"; }\n\n.fa-car-tunnel::before {\n  content: \"\\e4de\"; }\n\n.fa-head-side-cough::before {\n  content: \"\\e061\"; }\n\n.fa-grip-lines::before {\n  content: \"\\f7a4\"; }\n\n.fa-thumbs-down::before {\n  content: \"\\f165\"; }\n\n.fa-user-lock::before {\n  content: \"\\f502\"; }\n\n.fa-arrow-right-long::before {\n  content: \"\\f178\"; }\n\n.fa-long-arrow-right::before {\n  content: \"\\f178\"; }\n\n.fa-anchor-circle-xmark::before {\n  content: \"\\e4ac\"; }\n\n.fa-ellipsis::before {\n  content: \"\\f141\"; }\n\n.fa-ellipsis-h::before {\n  content: \"\\f141\"; }\n\n.fa-chess-pawn::before {\n  content: \"\\f443\"; }\n\n.fa-kit-medical::before {\n  content: \"\\f479\"; }\n\n.fa-first-aid::before {\n  content: \"\\f479\"; }\n\n.fa-person-through-window::before {\n  content: \"\\e5a9\"; }\n\n.fa-toolbox::before {\n  content: \"\\f552\"; }\n\n.fa-hands-holding-circle::before {\n  content: \"\\e4fb\"; }\n\n.fa-bug::before {\n  content: \"\\f188\"; }\n\n.fa-credit-card::before {\n  content: \"\\f09d\"; }\n\n.fa-credit-card-alt::before {\n  content: \"\\f09d\"; }\n\n.fa-car::before {\n  content: \"\\f1b9\"; }\n\n.fa-automobile::before {\n  content: \"\\f1b9\"; }\n\n.fa-hand-holding-hand::before {\n  content: \"\\e4f7\"; }\n\n.fa-book-open-reader::before {\n  content: \"\\f5da\"; }\n\n.fa-book-reader::before {\n  content: \"\\f5da\"; }\n\n.fa-mountain-sun::before {\n  content: \"\\e52f\"; }\n\n.fa-arrows-left-right-to-line::before {\n  content: \"\\e4ba\"; }\n\n.fa-dice-d20::before {\n  content: \"\\f6cf\"; }\n\n.fa-truck-droplet::before {\n  content: \"\\e58c\"; }\n\n.fa-file-circle-xmark::before {\n  content: \"\\e5a1\"; }\n\n.fa-temperature-arrow-up::before {\n  content: \"\\e040\"; }\n\n.fa-temperature-up::before {\n  content: \"\\e040\"; }\n\n.fa-medal::before {\n  content: \"\\f5a2\"; }\n\n.fa-bed::before {\n  content: \"\\f236\"; }\n\n.fa-square-h::before {\n  content: \"\\f0fd\"; }\n\n.fa-h-square::before {\n  content: \"\\f0fd\"; }\n\n.fa-podcast::before {\n  content: \"\\f2ce\"; }\n\n.fa-temperature-full::before {\n  content: \"\\f2c7\"; }\n\n.fa-temperature-4::before {\n  content: \"\\f2c7\"; }\n\n.fa-thermometer-4::before {\n  content: \"\\f2c7\"; }\n\n.fa-thermometer-full::before {\n  content: \"\\f2c7\"; }\n\n.fa-bell::before {\n  content: \"\\f0f3\"; }\n\n.fa-superscript::before {\n  content: \"\\f12b\"; }\n\n.fa-plug-circle-xmark::before {\n  content: \"\\e560\"; }\n\n.fa-star-of-life::before {\n  content: \"\\f621\"; }\n\n.fa-phone-slash::before {\n  content: \"\\f3dd\"; }\n\n.fa-paint-roller::before {\n  content: \"\\f5aa\"; }\n\n.fa-handshake-angle::before {\n  content: \"\\f4c4\"; }\n\n.fa-hands-helping::before {\n  content: \"\\f4c4\"; }\n\n.fa-location-dot::before {\n  content: \"\\f3c5\"; }\n\n.fa-map-marker-alt::before {\n  content: \"\\f3c5\"; }\n\n.fa-file::before {\n  content: \"\\f15b\"; }\n\n.fa-greater-than::before {\n  content: \"\\3e\"; }\n\n.fa-person-swimming::before {\n  content: \"\\f5c4\"; }\n\n.fa-swimmer::before {\n  content: \"\\f5c4\"; }\n\n.fa-arrow-down::before {\n  content: \"\\f063\"; }\n\n.fa-droplet::before {\n  content: \"\\f043\"; }\n\n.fa-tint::before {\n  content: \"\\f043\"; }\n\n.fa-eraser::before {\n  content: \"\\f12d\"; }\n\n.fa-earth-americas::before {\n  content: \"\\f57d\"; }\n\n.fa-earth::before {\n  content: \"\\f57d\"; }\n\n.fa-earth-america::before {\n  content: \"\\f57d\"; }\n\n.fa-globe-americas::before {\n  content: \"\\f57d\"; }\n\n.fa-person-burst::before {\n  content: \"\\e53b\"; }\n\n.fa-dove::before {\n  content: \"\\f4ba\"; }\n\n.fa-battery-empty::before {\n  content: \"\\f244\"; }\n\n.fa-battery-0::before {\n  content: \"\\f244\"; }\n\n.fa-socks::before {\n  content: \"\\f696\"; }\n\n.fa-inbox::before {\n  content: \"\\f01c\"; }\n\n.fa-section::before {\n  content: \"\\e447\"; }\n\n.fa-gauge-high::before {\n  content: \"\\f625\"; }\n\n.fa-tachometer-alt::before {\n  content: \"\\f625\"; }\n\n.fa-tachometer-alt-fast::before {\n  content: \"\\f625\"; }\n\n.fa-envelope-open-text::before {\n  content: \"\\f658\"; }\n\n.fa-hospital::before {\n  content: \"\\f0f8\"; }\n\n.fa-hospital-alt::before {\n  content: \"\\f0f8\"; }\n\n.fa-hospital-wide::before {\n  content: \"\\f0f8\"; }\n\n.fa-wine-bottle::before {\n  content: \"\\f72f\"; }\n\n.fa-chess-rook::before {\n  content: \"\\f447\"; }\n\n.fa-bars-staggered::before {\n  content: \"\\f550\"; }\n\n.fa-reorder::before {\n  content: \"\\f550\"; }\n\n.fa-stream::before {\n  content: \"\\f550\"; }\n\n.fa-dharmachakra::before {\n  content: \"\\f655\"; }\n\n.fa-hotdog::before {\n  content: \"\\f80f\"; }\n\n.fa-person-walking-with-cane::before {\n  content: \"\\f29d\"; }\n\n.fa-blind::before {\n  content: \"\\f29d\"; }\n\n.fa-drum::before {\n  content: \"\\f569\"; }\n\n.fa-ice-cream::before {\n  content: \"\\f810\"; }\n\n.fa-heart-circle-bolt::before {\n  content: \"\\e4fc\"; }\n\n.fa-fax::before {\n  content: \"\\f1ac\"; }\n\n.fa-paragraph::before {\n  content: \"\\f1dd\"; }\n\n.fa-check-to-slot::before {\n  content: \"\\f772\"; }\n\n.fa-vote-yea::before {\n  content: \"\\f772\"; }\n\n.fa-star-half::before {\n  content: \"\\f089\"; }\n\n.fa-boxes-stacked::before {\n  content: \"\\f468\"; }\n\n.fa-boxes::before {\n  content: \"\\f468\"; }\n\n.fa-boxes-alt::before {\n  content: \"\\f468\"; }\n\n.fa-link::before {\n  content: \"\\f0c1\"; }\n\n.fa-chain::before {\n  content: \"\\f0c1\"; }\n\n.fa-ear-listen::before {\n  content: \"\\f2a2\"; }\n\n.fa-assistive-listening-systems::before {\n  content: \"\\f2a2\"; }\n\n.fa-tree-city::before {\n  content: \"\\e587\"; }\n\n.fa-play::before {\n  content: \"\\f04b\"; }\n\n.fa-font::before {\n  content: \"\\f031\"; }\n\n.fa-table-cells-row-lock::before {\n  content: \"\\e67a\"; }\n\n.fa-rupiah-sign::before {\n  content: \"\\e23d\"; }\n\n.fa-magnifying-glass::before {\n  content: \"\\f002\"; }\n\n.fa-search::before {\n  content: \"\\f002\"; }\n\n.fa-table-tennis-paddle-ball::before {\n  content: \"\\f45d\"; }\n\n.fa-ping-pong-paddle-ball::before {\n  content: \"\\f45d\"; }\n\n.fa-table-tennis::before {\n  content: \"\\f45d\"; }\n\n.fa-person-dots-from-line::before {\n  content: \"\\f470\"; }\n\n.fa-diagnoses::before {\n  content: \"\\f470\"; }\n\n.fa-trash-can-arrow-up::before {\n  content: \"\\f82a\"; }\n\n.fa-trash-restore-alt::before {\n  content: \"\\f82a\"; }\n\n.fa-naira-sign::before {\n  content: \"\\e1f6\"; }\n\n.fa-cart-arrow-down::before {\n  content: \"\\f218\"; }\n\n.fa-walkie-talkie::before {\n  content: \"\\f8ef\"; }\n\n.fa-file-pen::before {\n  content: \"\\f31c\"; }\n\n.fa-file-edit::before {\n  content: \"\\f31c\"; }\n\n.fa-receipt::before {\n  content: \"\\f543\"; }\n\n.fa-square-pen::before {\n  content: \"\\f14b\"; }\n\n.fa-pen-square::before {\n  content: \"\\f14b\"; }\n\n.fa-pencil-square::before {\n  content: \"\\f14b\"; }\n\n.fa-suitcase-rolling::before {\n  content: \"\\f5c1\"; }\n\n.fa-person-circle-exclamation::before {\n  content: \"\\e53f\"; }\n\n.fa-chevron-down::before {\n  content: \"\\f078\"; }\n\n.fa-battery-full::before {\n  content: \"\\f240\"; }\n\n.fa-battery::before {\n  content: \"\\f240\"; }\n\n.fa-battery-5::before {\n  content: \"\\f240\"; }\n\n.fa-skull-crossbones::before {\n  content: \"\\f714\"; }\n\n.fa-code-compare::before {\n  content: \"\\e13a\"; }\n\n.fa-list-ul::before {\n  content: \"\\f0ca\"; }\n\n.fa-list-dots::before {\n  content: \"\\f0ca\"; }\n\n.fa-school-lock::before {\n  content: \"\\e56f\"; }\n\n.fa-tower-cell::before {\n  content: \"\\e585\"; }\n\n.fa-down-long::before {\n  content: \"\\f309\"; }\n\n.fa-long-arrow-alt-down::before {\n  content: \"\\f309\"; }\n\n.fa-ranking-star::before {\n  content: \"\\e561\"; }\n\n.fa-chess-king::before {\n  content: \"\\f43f\"; }\n\n.fa-person-harassing::before {\n  content: \"\\e549\"; }\n\n.fa-brazilian-real-sign::before {\n  content: \"\\e46c\"; }\n\n.fa-landmark-dome::before {\n  content: \"\\f752\"; }\n\n.fa-landmark-alt::before {\n  content: \"\\f752\"; }\n\n.fa-arrow-up::before {\n  content: \"\\f062\"; }\n\n.fa-tv::before {\n  content: \"\\f26c\"; }\n\n.fa-television::before {\n  content: \"\\f26c\"; }\n\n.fa-tv-alt::before {\n  content: \"\\f26c\"; }\n\n.fa-shrimp::before {\n  content: \"\\e448\"; }\n\n.fa-list-check::before {\n  content: \"\\f0ae\"; }\n\n.fa-tasks::before {\n  content: \"\\f0ae\"; }\n\n.fa-jug-detergent::before {\n  content: \"\\e519\"; }\n\n.fa-circle-user::before {\n  content: \"\\f2bd\"; }\n\n.fa-user-circle::before {\n  content: \"\\f2bd\"; }\n\n.fa-user-shield::before {\n  content: \"\\f505\"; }\n\n.fa-wind::before {\n  content: \"\\f72e\"; }\n\n.fa-car-burst::before {\n  content: \"\\f5e1\"; }\n\n.fa-car-crash::before {\n  content: \"\\f5e1\"; }\n\n.fa-y::before {\n  content: \"\\59\"; }\n\n.fa-person-snowboarding::before {\n  content: \"\\f7ce\"; }\n\n.fa-snowboarding::before {\n  content: \"\\f7ce\"; }\n\n.fa-truck-fast::before {\n  content: \"\\f48b\"; }\n\n.fa-shipping-fast::before {\n  content: \"\\f48b\"; }\n\n.fa-fish::before {\n  content: \"\\f578\"; }\n\n.fa-user-graduate::before {\n  content: \"\\f501\"; }\n\n.fa-circle-half-stroke::before {\n  content: \"\\f042\"; }\n\n.fa-adjust::before {\n  content: \"\\f042\"; }\n\n.fa-clapperboard::before {\n  content: \"\\e131\"; }\n\n.fa-circle-radiation::before {\n  content: \"\\f7ba\"; }\n\n.fa-radiation-alt::before {\n  content: \"\\f7ba\"; }\n\n.fa-baseball::before {\n  content: \"\\f433\"; }\n\n.fa-baseball-ball::before {\n  content: \"\\f433\"; }\n\n.fa-jet-fighter-up::before {\n  content: \"\\e518\"; }\n\n.fa-diagram-project::before {\n  content: \"\\f542\"; }\n\n.fa-project-diagram::before {\n  content: \"\\f542\"; }\n\n.fa-copy::before {\n  content: \"\\f0c5\"; }\n\n.fa-volume-xmark::before {\n  content: \"\\f6a9\"; }\n\n.fa-volume-mute::before {\n  content: \"\\f6a9\"; }\n\n.fa-volume-times::before {\n  content: \"\\f6a9\"; }\n\n.fa-hand-sparkles::before {\n  content: \"\\e05d\"; }\n\n.fa-grip::before {\n  content: \"\\f58d\"; }\n\n.fa-grip-horizontal::before {\n  content: \"\\f58d\"; }\n\n.fa-share-from-square::before {\n  content: \"\\f14d\"; }\n\n.fa-share-square::before {\n  content: \"\\f14d\"; }\n\n.fa-child-combatant::before {\n  content: \"\\e4e0\"; }\n\n.fa-child-rifle::before {\n  content: \"\\e4e0\"; }\n\n.fa-gun::before {\n  content: \"\\e19b\"; }\n\n.fa-square-phone::before {\n  content: \"\\f098\"; }\n\n.fa-phone-square::before {\n  content: \"\\f098\"; }\n\n.fa-plus::before {\n  content: \"\\2b\"; }\n\n.fa-add::before {\n  content: \"\\2b\"; }\n\n.fa-expand::before {\n  content: \"\\f065\"; }\n\n.fa-computer::before {\n  content: \"\\e4e5\"; }\n\n.fa-xmark::before {\n  content: \"\\f00d\"; }\n\n.fa-close::before {\n  content: \"\\f00d\"; }\n\n.fa-multiply::before {\n  content: \"\\f00d\"; }\n\n.fa-remove::before {\n  content: \"\\f00d\"; }\n\n.fa-times::before {\n  content: \"\\f00d\"; }\n\n.fa-arrows-up-down-left-right::before {\n  content: \"\\f047\"; }\n\n.fa-arrows::before {\n  content: \"\\f047\"; }\n\n.fa-chalkboard-user::before {\n  content: \"\\f51c\"; }\n\n.fa-chalkboard-teacher::before {\n  content: \"\\f51c\"; }\n\n.fa-peso-sign::before {\n  content: \"\\e222\"; }\n\n.fa-building-shield::before {\n  content: \"\\e4d8\"; }\n\n.fa-baby::before {\n  content: \"\\f77c\"; }\n\n.fa-users-line::before {\n  content: \"\\e592\"; }\n\n.fa-quote-left::before {\n  content: \"\\f10d\"; }\n\n.fa-quote-left-alt::before {\n  content: \"\\f10d\"; }\n\n.fa-tractor::before {\n  content: \"\\f722\"; }\n\n.fa-trash-arrow-up::before {\n  content: \"\\f829\"; }\n\n.fa-trash-restore::before {\n  content: \"\\f829\"; }\n\n.fa-arrow-down-up-lock::before {\n  content: \"\\e4b0\"; }\n\n.fa-lines-leaning::before {\n  content: \"\\e51e\"; }\n\n.fa-ruler-combined::before {\n  content: \"\\f546\"; }\n\n.fa-copyright::before {\n  content: \"\\f1f9\"; }\n\n.fa-equals::before {\n  content: \"\\3d\"; }\n\n.fa-blender::before {\n  content: \"\\f517\"; }\n\n.fa-teeth::before {\n  content: \"\\f62e\"; }\n\n.fa-shekel-sign::before {\n  content: \"\\f20b\"; }\n\n.fa-ils::before {\n  content: \"\\f20b\"; }\n\n.fa-shekel::before {\n  content: \"\\f20b\"; }\n\n.fa-sheqel::before {\n  content: \"\\f20b\"; }\n\n.fa-sheqel-sign::before {\n  content: \"\\f20b\"; }\n\n.fa-map::before {\n  content: \"\\f279\"; }\n\n.fa-rocket::before {\n  content: \"\\f135\"; }\n\n.fa-photo-film::before {\n  content: \"\\f87c\"; }\n\n.fa-photo-video::before {\n  content: \"\\f87c\"; }\n\n.fa-folder-minus::before {\n  content: \"\\f65d\"; }\n\n.fa-store::before {\n  content: \"\\f54e\"; }\n\n.fa-arrow-trend-up::before {\n  content: \"\\e098\"; }\n\n.fa-plug-circle-minus::before {\n  content: \"\\e55e\"; }\n\n.fa-sign-hanging::before {\n  content: \"\\f4d9\"; }\n\n.fa-sign::before {\n  content: \"\\f4d9\"; }\n\n.fa-bezier-curve::before {\n  content: \"\\f55b\"; }\n\n.fa-bell-slash::before {\n  content: \"\\f1f6\"; }\n\n.fa-tablet::before {\n  content: \"\\f3fb\"; }\n\n.fa-tablet-android::before {\n  content: \"\\f3fb\"; }\n\n.fa-school-flag::before {\n  content: \"\\e56e\"; }\n\n.fa-fill::before {\n  content: \"\\f575\"; }\n\n.fa-angle-up::before {\n  content: \"\\f106\"; }\n\n.fa-drumstick-bite::before {\n  content: \"\\f6d7\"; }\n\n.fa-holly-berry::before {\n  content: \"\\f7aa\"; }\n\n.fa-chevron-left::before {\n  content: \"\\f053\"; }\n\n.fa-bacteria::before {\n  content: \"\\e059\"; }\n\n.fa-hand-lizard::before {\n  content: \"\\f258\"; }\n\n.fa-notdef::before {\n  content: \"\\e1fe\"; }\n\n.fa-disease::before {\n  content: \"\\f7fa\"; }\n\n.fa-briefcase-medical::before {\n  content: \"\\f469\"; }\n\n.fa-genderless::before {\n  content: \"\\f22d\"; }\n\n.fa-chevron-right::before {\n  content: \"\\f054\"; }\n\n.fa-retweet::before {\n  content: \"\\f079\"; }\n\n.fa-car-rear::before {\n  content: \"\\f5de\"; }\n\n.fa-car-alt::before {\n  content: \"\\f5de\"; }\n\n.fa-pump-soap::before {\n  content: \"\\e06b\"; }\n\n.fa-video-slash::before {\n  content: \"\\f4e2\"; }\n\n.fa-battery-quarter::before {\n  content: \"\\f243\"; }\n\n.fa-battery-2::before {\n  content: \"\\f243\"; }\n\n.fa-radio::before {\n  content: \"\\f8d7\"; }\n\n.fa-baby-carriage::before {\n  content: \"\\f77d\"; }\n\n.fa-carriage-baby::before {\n  content: \"\\f77d\"; }\n\n.fa-traffic-light::before {\n  content: \"\\f637\"; }\n\n.fa-thermometer::before {\n  content: \"\\f491\"; }\n\n.fa-vr-cardboard::before {\n  content: \"\\f729\"; }\n\n.fa-hand-middle-finger::before {\n  content: \"\\f806\"; }\n\n.fa-percent::before {\n  content: \"\\25\"; }\n\n.fa-percentage::before {\n  content: \"\\25\"; }\n\n.fa-truck-moving::before {\n  content: \"\\f4df\"; }\n\n.fa-glass-water-droplet::before {\n  content: \"\\e4f5\"; }\n\n.fa-display::before {\n  content: \"\\e163\"; }\n\n.fa-face-smile::before {\n  content: \"\\f118\"; }\n\n.fa-smile::before {\n  content: \"\\f118\"; }\n\n.fa-thumbtack::before {\n  content: \"\\f08d\"; }\n\n.fa-thumb-tack::before {\n  content: \"\\f08d\"; }\n\n.fa-trophy::before {\n  content: \"\\f091\"; }\n\n.fa-person-praying::before {\n  content: \"\\f683\"; }\n\n.fa-pray::before {\n  content: \"\\f683\"; }\n\n.fa-hammer::before {\n  content: \"\\f6e3\"; }\n\n.fa-hand-peace::before {\n  content: \"\\f25b\"; }\n\n.fa-rotate::before {\n  content: \"\\f2f1\"; }\n\n.fa-sync-alt::before {\n  content: \"\\f2f1\"; }\n\n.fa-spinner::before {\n  content: \"\\f110\"; }\n\n.fa-robot::before {\n  content: \"\\f544\"; }\n\n.fa-peace::before {\n  content: \"\\f67c\"; }\n\n.fa-gears::before {\n  content: \"\\f085\"; }\n\n.fa-cogs::before {\n  content: \"\\f085\"; }\n\n.fa-warehouse::before {\n  content: \"\\f494\"; }\n\n.fa-arrow-up-right-dots::before {\n  content: \"\\e4b7\"; }\n\n.fa-splotch::before {\n  content: \"\\f5bc\"; }\n\n.fa-face-grin-hearts::before {\n  content: \"\\f584\"; }\n\n.fa-grin-hearts::before {\n  content: \"\\f584\"; }\n\n.fa-dice-four::before {\n  content: \"\\f524\"; }\n\n.fa-sim-card::before {\n  content: \"\\f7c4\"; }\n\n.fa-transgender::before {\n  content: \"\\f225\"; }\n\n.fa-transgender-alt::before {\n  content: \"\\f225\"; }\n\n.fa-mercury::before {\n  content: \"\\f223\"; }\n\n.fa-arrow-turn-down::before {\n  content: \"\\f149\"; }\n\n.fa-level-down::before {\n  content: \"\\f149\"; }\n\n.fa-person-falling-burst::before {\n  content: \"\\e547\"; }\n\n.fa-award::before {\n  content: \"\\f559\"; }\n\n.fa-ticket-simple::before {\n  content: \"\\f3ff\"; }\n\n.fa-ticket-alt::before {\n  content: \"\\f3ff\"; }\n\n.fa-building::before {\n  content: \"\\f1ad\"; }\n\n.fa-angles-left::before {\n  content: \"\\f100\"; }\n\n.fa-angle-double-left::before {\n  content: \"\\f100\"; }\n\n.fa-qrcode::before {\n  content: \"\\f029\"; }\n\n.fa-clock-rotate-left::before {\n  content: \"\\f1da\"; }\n\n.fa-history::before {\n  content: \"\\f1da\"; }\n\n.fa-face-grin-beam-sweat::before {\n  content: \"\\f583\"; }\n\n.fa-grin-beam-sweat::before {\n  content: \"\\f583\"; }\n\n.fa-file-export::before {\n  content: \"\\f56e\"; }\n\n.fa-arrow-right-from-file::before {\n  content: \"\\f56e\"; }\n\n.fa-shield::before {\n  content: \"\\f132\"; }\n\n.fa-shield-blank::before {\n  content: \"\\f132\"; }\n\n.fa-arrow-up-short-wide::before {\n  content: \"\\f885\"; }\n\n.fa-sort-amount-up-alt::before {\n  content: \"\\f885\"; }\n\n.fa-house-medical::before {\n  content: \"\\e3b2\"; }\n\n.fa-golf-ball-tee::before {\n  content: \"\\f450\"; }\n\n.fa-golf-ball::before {\n  content: \"\\f450\"; }\n\n.fa-circle-chevron-left::before {\n  content: \"\\f137\"; }\n\n.fa-chevron-circle-left::before {\n  content: \"\\f137\"; }\n\n.fa-house-chimney-window::before {\n  content: \"\\e00d\"; }\n\n.fa-pen-nib::before {\n  content: \"\\f5ad\"; }\n\n.fa-tent-arrow-turn-left::before {\n  content: \"\\e580\"; }\n\n.fa-tents::before {\n  content: \"\\e582\"; }\n\n.fa-wand-magic::before {\n  content: \"\\f0d0\"; }\n\n.fa-magic::before {\n  content: \"\\f0d0\"; }\n\n.fa-dog::before {\n  content: \"\\f6d3\"; }\n\n.fa-carrot::before {\n  content: \"\\f787\"; }\n\n.fa-moon::before {\n  content: \"\\f186\"; }\n\n.fa-wine-glass-empty::before {\n  content: \"\\f5ce\"; }\n\n.fa-wine-glass-alt::before {\n  content: \"\\f5ce\"; }\n\n.fa-cheese::before {\n  content: \"\\f7ef\"; }\n\n.fa-yin-yang::before {\n  content: \"\\f6ad\"; }\n\n.fa-music::before {\n  content: \"\\f001\"; }\n\n.fa-code-commit::before {\n  content: \"\\f386\"; }\n\n.fa-temperature-low::before {\n  content: \"\\f76b\"; }\n\n.fa-person-biking::before {\n  content: \"\\f84a\"; }\n\n.fa-biking::before {\n  content: \"\\f84a\"; }\n\n.fa-broom::before {\n  content: \"\\f51a\"; }\n\n.fa-shield-heart::before {\n  content: \"\\e574\"; }\n\n.fa-gopuram::before {\n  content: \"\\f664\"; }\n\n.fa-earth-oceania::before {\n  content: \"\\e47b\"; }\n\n.fa-globe-oceania::before {\n  content: \"\\e47b\"; }\n\n.fa-square-xmark::before {\n  content: \"\\f2d3\"; }\n\n.fa-times-square::before {\n  content: \"\\f2d3\"; }\n\n.fa-xmark-square::before {\n  content: \"\\f2d3\"; }\n\n.fa-hashtag::before {\n  content: \"\\23\"; }\n\n.fa-up-right-and-down-left-from-center::before {\n  content: \"\\f424\"; }\n\n.fa-expand-alt::before {\n  content: \"\\f424\"; }\n\n.fa-oil-can::before {\n  content: \"\\f613\"; }\n\n.fa-t::before {\n  content: \"\\54\"; }\n\n.fa-hippo::before {\n  content: \"\\f6ed\"; }\n\n.fa-chart-column::before {\n  content: \"\\e0e3\"; }\n\n.fa-infinity::before {\n  content: \"\\f534\"; }\n\n.fa-vial-circle-check::before {\n  content: \"\\e596\"; }\n\n.fa-person-arrow-down-to-line::before {\n  content: \"\\e538\"; }\n\n.fa-voicemail::before {\n  content: \"\\f897\"; }\n\n.fa-fan::before {\n  content: \"\\f863\"; }\n\n.fa-person-walking-luggage::before {\n  content: \"\\e554\"; }\n\n.fa-up-down::before {\n  content: \"\\f338\"; }\n\n.fa-arrows-alt-v::before {\n  content: \"\\f338\"; }\n\n.fa-cloud-moon-rain::before {\n  content: \"\\f73c\"; }\n\n.fa-calendar::before {\n  content: \"\\f133\"; }\n\n.fa-trailer::before {\n  content: \"\\e041\"; }\n\n.fa-bahai::before {\n  content: \"\\f666\"; }\n\n.fa-haykal::before {\n  content: \"\\f666\"; }\n\n.fa-sd-card::before {\n  content: \"\\f7c2\"; }\n\n.fa-dragon::before {\n  content: \"\\f6d5\"; }\n\n.fa-shoe-prints::before {\n  content: \"\\f54b\"; }\n\n.fa-circle-plus::before {\n  content: \"\\f055\"; }\n\n.fa-plus-circle::before {\n  content: \"\\f055\"; }\n\n.fa-face-grin-tongue-wink::before {\n  content: \"\\f58b\"; }\n\n.fa-grin-tongue-wink::before {\n  content: \"\\f58b\"; }\n\n.fa-hand-holding::before {\n  content: \"\\f4bd\"; }\n\n.fa-plug-circle-exclamation::before {\n  content: \"\\e55d\"; }\n\n.fa-link-slash::before {\n  content: \"\\f127\"; }\n\n.fa-chain-broken::before {\n  content: \"\\f127\"; }\n\n.fa-chain-slash::before {\n  content: \"\\f127\"; }\n\n.fa-unlink::before {\n  content: \"\\f127\"; }\n\n.fa-clone::before {\n  content: \"\\f24d\"; }\n\n.fa-person-walking-arrow-loop-left::before {\n  content: \"\\e551\"; }\n\n.fa-arrow-up-z-a::before {\n  content: \"\\f882\"; }\n\n.fa-sort-alpha-up-alt::before {\n  content: \"\\f882\"; }\n\n.fa-fire-flame-curved::before {\n  content: \"\\f7e4\"; }\n\n.fa-fire-alt::before {\n  content: \"\\f7e4\"; }\n\n.fa-tornado::before {\n  content: \"\\f76f\"; }\n\n.fa-file-circle-plus::before {\n  content: \"\\e494\"; }\n\n.fa-book-quran::before {\n  content: \"\\f687\"; }\n\n.fa-quran::before {\n  content: \"\\f687\"; }\n\n.fa-anchor::before {\n  content: \"\\f13d\"; }\n\n.fa-border-all::before {\n  content: \"\\f84c\"; }\n\n.fa-face-angry::before {\n  content: \"\\f556\"; }\n\n.fa-angry::before {\n  content: \"\\f556\"; }\n\n.fa-cookie-bite::before {\n  content: \"\\f564\"; }\n\n.fa-arrow-trend-down::before {\n  content: \"\\e097\"; }\n\n.fa-rss::before {\n  content: \"\\f09e\"; }\n\n.fa-feed::before {\n  content: \"\\f09e\"; }\n\n.fa-draw-polygon::before {\n  content: \"\\f5ee\"; }\n\n.fa-scale-balanced::before {\n  content: \"\\f24e\"; }\n\n.fa-balance-scale::before {\n  content: \"\\f24e\"; }\n\n.fa-gauge-simple-high::before {\n  content: \"\\f62a\"; }\n\n.fa-tachometer::before {\n  content: \"\\f62a\"; }\n\n.fa-tachometer-fast::before {\n  content: \"\\f62a\"; }\n\n.fa-shower::before {\n  content: \"\\f2cc\"; }\n\n.fa-desktop::before {\n  content: \"\\f390\"; }\n\n.fa-desktop-alt::before {\n  content: \"\\f390\"; }\n\n.fa-m::before {\n  content: \"\\4d\"; }\n\n.fa-table-list::before {\n  content: \"\\f00b\"; }\n\n.fa-th-list::before {\n  content: \"\\f00b\"; }\n\n.fa-comment-sms::before {\n  content: \"\\f7cd\"; }\n\n.fa-sms::before {\n  content: \"\\f7cd\"; }\n\n.fa-book::before {\n  content: \"\\f02d\"; }\n\n.fa-user-plus::before {\n  content: \"\\f234\"; }\n\n.fa-check::before {\n  content: \"\\f00c\"; }\n\n.fa-battery-three-quarters::before {\n  content: \"\\f241\"; }\n\n.fa-battery-4::before {\n  content: \"\\f241\"; }\n\n.fa-house-circle-check::before {\n  content: \"\\e509\"; }\n\n.fa-angle-left::before {\n  content: \"\\f104\"; }\n\n.fa-diagram-successor::before {\n  content: \"\\e47a\"; }\n\n.fa-truck-arrow-right::before {\n  content: \"\\e58b\"; }\n\n.fa-arrows-split-up-and-left::before {\n  content: \"\\e4bc\"; }\n\n.fa-hand-fist::before {\n  content: \"\\f6de\"; }\n\n.fa-fist-raised::before {\n  content: \"\\f6de\"; }\n\n.fa-cloud-moon::before {\n  content: \"\\f6c3\"; }\n\n.fa-briefcase::before {\n  content: \"\\f0b1\"; }\n\n.fa-person-falling::before {\n  content: \"\\e546\"; }\n\n.fa-image-portrait::before {\n  content: \"\\f3e0\"; }\n\n.fa-portrait::before {\n  content: \"\\f3e0\"; }\n\n.fa-user-tag::before {\n  content: \"\\f507\"; }\n\n.fa-rug::before {\n  content: \"\\e569\"; }\n\n.fa-earth-europe::before {\n  content: \"\\f7a2\"; }\n\n.fa-globe-europe::before {\n  content: \"\\f7a2\"; }\n\n.fa-cart-flatbed-suitcase::before {\n  content: \"\\f59d\"; }\n\n.fa-luggage-cart::before {\n  content: \"\\f59d\"; }\n\n.fa-rectangle-xmark::before {\n  content: \"\\f410\"; }\n\n.fa-rectangle-times::before {\n  content: \"\\f410\"; }\n\n.fa-times-rectangle::before {\n  content: \"\\f410\"; }\n\n.fa-window-close::before {\n  content: \"\\f410\"; }\n\n.fa-baht-sign::before {\n  content: \"\\e0ac\"; }\n\n.fa-book-open::before {\n  content: \"\\f518\"; }\n\n.fa-book-journal-whills::before {\n  content: \"\\f66a\"; }\n\n.fa-journal-whills::before {\n  content: \"\\f66a\"; }\n\n.fa-handcuffs::before {\n  content: \"\\e4f8\"; }\n\n.fa-triangle-exclamation::before {\n  content: \"\\f071\"; }\n\n.fa-exclamation-triangle::before {\n  content: \"\\f071\"; }\n\n.fa-warning::before {\n  content: \"\\f071\"; }\n\n.fa-database::before {\n  content: \"\\f1c0\"; }\n\n.fa-share::before {\n  content: \"\\f064\"; }\n\n.fa-mail-forward::before {\n  content: \"\\f064\"; }\n\n.fa-bottle-droplet::before {\n  content: \"\\e4c4\"; }\n\n.fa-mask-face::before {\n  content: \"\\e1d7\"; }\n\n.fa-hill-rockslide::before {\n  content: \"\\e508\"; }\n\n.fa-right-left::before {\n  content: \"\\f362\"; }\n\n.fa-exchange-alt::before {\n  content: \"\\f362\"; }\n\n.fa-paper-plane::before {\n  content: \"\\f1d8\"; }\n\n.fa-road-circle-exclamation::before {\n  content: \"\\e565\"; }\n\n.fa-dungeon::before {\n  content: \"\\f6d9\"; }\n\n.fa-align-right::before {\n  content: \"\\f038\"; }\n\n.fa-money-bill-1-wave::before {\n  content: \"\\f53b\"; }\n\n.fa-money-bill-wave-alt::before {\n  content: \"\\f53b\"; }\n\n.fa-life-ring::before {\n  content: \"\\f1cd\"; }\n\n.fa-hands::before {\n  content: \"\\f2a7\"; }\n\n.fa-sign-language::before {\n  content: \"\\f2a7\"; }\n\n.fa-signing::before {\n  content: \"\\f2a7\"; }\n\n.fa-calendar-day::before {\n  content: \"\\f783\"; }\n\n.fa-water-ladder::before {\n  content: \"\\f5c5\"; }\n\n.fa-ladder-water::before {\n  content: \"\\f5c5\"; }\n\n.fa-swimming-pool::before {\n  content: \"\\f5c5\"; }\n\n.fa-arrows-up-down::before {\n  content: \"\\f07d\"; }\n\n.fa-arrows-v::before {\n  content: \"\\f07d\"; }\n\n.fa-face-grimace::before {\n  content: \"\\f57f\"; }\n\n.fa-grimace::before {\n  content: \"\\f57f\"; }\n\n.fa-wheelchair-move::before {\n  content: \"\\e2ce\"; }\n\n.fa-wheelchair-alt::before {\n  content: \"\\e2ce\"; }\n\n.fa-turn-down::before {\n  content: \"\\f3be\"; }\n\n.fa-level-down-alt::before {\n  content: \"\\f3be\"; }\n\n.fa-person-walking-arrow-right::before {\n  content: \"\\e552\"; }\n\n.fa-square-envelope::before {\n  content: \"\\f199\"; }\n\n.fa-envelope-square::before {\n  content: \"\\f199\"; }\n\n.fa-dice::before {\n  content: \"\\f522\"; }\n\n.fa-bowling-ball::before {\n  content: \"\\f436\"; }\n\n.fa-brain::before {\n  content: \"\\f5dc\"; }\n\n.fa-bandage::before {\n  content: \"\\f462\"; }\n\n.fa-band-aid::before {\n  content: \"\\f462\"; }\n\n.fa-calendar-minus::before {\n  content: \"\\f272\"; }\n\n.fa-circle-xmark::before {\n  content: \"\\f057\"; }\n\n.fa-times-circle::before {\n  content: \"\\f057\"; }\n\n.fa-xmark-circle::before {\n  content: \"\\f057\"; }\n\n.fa-gifts::before {\n  content: \"\\f79c\"; }\n\n.fa-hotel::before {\n  content: \"\\f594\"; }\n\n.fa-earth-asia::before {\n  content: \"\\f57e\"; }\n\n.fa-globe-asia::before {\n  content: \"\\f57e\"; }\n\n.fa-id-card-clip::before {\n  content: \"\\f47f\"; }\n\n.fa-id-card-alt::before {\n  content: \"\\f47f\"; }\n\n.fa-magnifying-glass-plus::before {\n  content: \"\\f00e\"; }\n\n.fa-search-plus::before {\n  content: \"\\f00e\"; }\n\n.fa-thumbs-up::before {\n  content: \"\\f164\"; }\n\n.fa-user-clock::before {\n  content: \"\\f4fd\"; }\n\n.fa-hand-dots::before {\n  content: \"\\f461\"; }\n\n.fa-allergies::before {\n  content: \"\\f461\"; }\n\n.fa-file-invoice::before {\n  content: \"\\f570\"; }\n\n.fa-window-minimize::before {\n  content: \"\\f2d1\"; }\n\n.fa-mug-saucer::before {\n  content: \"\\f0f4\"; }\n\n.fa-coffee::before {\n  content: \"\\f0f4\"; }\n\n.fa-brush::before {\n  content: \"\\f55d\"; }\n\n.fa-mask::before {\n  content: \"\\f6fa\"; }\n\n.fa-magnifying-glass-minus::before {\n  content: \"\\f010\"; }\n\n.fa-search-minus::before {\n  content: \"\\f010\"; }\n\n.fa-ruler-vertical::before {\n  content: \"\\f548\"; }\n\n.fa-user-large::before {\n  content: \"\\f406\"; }\n\n.fa-user-alt::before {\n  content: \"\\f406\"; }\n\n.fa-train-tram::before {\n  content: \"\\e5b4\"; }\n\n.fa-user-nurse::before {\n  content: \"\\f82f\"; }\n\n.fa-syringe::before {\n  content: \"\\f48e\"; }\n\n.fa-cloud-sun::before {\n  content: \"\\f6c4\"; }\n\n.fa-stopwatch-20::before {\n  content: \"\\e06f\"; }\n\n.fa-square-full::before {\n  content: \"\\f45c\"; }\n\n.fa-magnet::before {\n  content: \"\\f076\"; }\n\n.fa-jar::before {\n  content: \"\\e516\"; }\n\n.fa-note-sticky::before {\n  content: \"\\f249\"; }\n\n.fa-sticky-note::before {\n  content: \"\\f249\"; }\n\n.fa-bug-slash::before {\n  content: \"\\e490\"; }\n\n.fa-arrow-up-from-water-pump::before {\n  content: \"\\e4b6\"; }\n\n.fa-bone::before {\n  content: \"\\f5d7\"; }\n\n.fa-user-injured::before {\n  content: \"\\f728\"; }\n\n.fa-face-sad-tear::before {\n  content: \"\\f5b4\"; }\n\n.fa-sad-tear::before {\n  content: \"\\f5b4\"; }\n\n.fa-plane::before {\n  content: \"\\f072\"; }\n\n.fa-tent-arrows-down::before {\n  content: \"\\e581\"; }\n\n.fa-exclamation::before {\n  content: \"\\21\"; }\n\n.fa-arrows-spin::before {\n  content: \"\\e4bb\"; }\n\n.fa-print::before {\n  content: \"\\f02f\"; }\n\n.fa-turkish-lira-sign::before {\n  content: \"\\e2bb\"; }\n\n.fa-try::before {\n  content: \"\\e2bb\"; }\n\n.fa-turkish-lira::before {\n  content: \"\\e2bb\"; }\n\n.fa-dollar-sign::before {\n  content: \"\\24\"; }\n\n.fa-dollar::before {\n  content: \"\\24\"; }\n\n.fa-usd::before {\n  content: \"\\24\"; }\n\n.fa-x::before {\n  content: \"\\58\"; }\n\n.fa-magnifying-glass-dollar::before {\n  content: \"\\f688\"; }\n\n.fa-search-dollar::before {\n  content: \"\\f688\"; }\n\n.fa-users-gear::before {\n  content: \"\\f509\"; }\n\n.fa-users-cog::before {\n  content: \"\\f509\"; }\n\n.fa-person-military-pointing::before {\n  content: \"\\e54a\"; }\n\n.fa-building-columns::before {\n  content: \"\\f19c\"; }\n\n.fa-bank::before {\n  content: \"\\f19c\"; }\n\n.fa-institution::before {\n  content: \"\\f19c\"; }\n\n.fa-museum::before {\n  content: \"\\f19c\"; }\n\n.fa-university::before {\n  content: \"\\f19c\"; }\n\n.fa-umbrella::before {\n  content: \"\\f0e9\"; }\n\n.fa-trowel::before {\n  content: \"\\e589\"; }\n\n.fa-d::before {\n  content: \"\\44\"; }\n\n.fa-stapler::before {\n  content: \"\\e5af\"; }\n\n.fa-masks-theater::before {\n  content: \"\\f630\"; }\n\n.fa-theater-masks::before {\n  content: \"\\f630\"; }\n\n.fa-kip-sign::before {\n  content: \"\\e1c4\"; }\n\n.fa-hand-point-left::before {\n  content: \"\\f0a5\"; }\n\n.fa-handshake-simple::before {\n  content: \"\\f4c6\"; }\n\n.fa-handshake-alt::before {\n  content: \"\\f4c6\"; }\n\n.fa-jet-fighter::before {\n  content: \"\\f0fb\"; }\n\n.fa-fighter-jet::before {\n  content: \"\\f0fb\"; }\n\n.fa-square-share-nodes::before {\n  content: \"\\f1e1\"; }\n\n.fa-share-alt-square::before {\n  content: \"\\f1e1\"; }\n\n.fa-barcode::before {\n  content: \"\\f02a\"; }\n\n.fa-plus-minus::before {\n  content: \"\\e43c\"; }\n\n.fa-video::before {\n  content: \"\\f03d\"; }\n\n.fa-video-camera::before {\n  content: \"\\f03d\"; }\n\n.fa-graduation-cap::before {\n  content: \"\\f19d\"; }\n\n.fa-mortar-board::before {\n  content: \"\\f19d\"; }\n\n.fa-hand-holding-medical::before {\n  content: \"\\e05c\"; }\n\n.fa-person-circle-check::before {\n  content: \"\\e53e\"; }\n\n.fa-turn-up::before {\n  content: \"\\f3bf\"; }\n\n.fa-level-up-alt::before {\n  content: \"\\f3bf\"; }\n\n.sr-only,\n.fa-sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  white-space: nowrap;\n  border-width: 0; }\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  white-space: nowrap;\n  border-width: 0; }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/resources/META-INF/resources/fontawesome6/6.5.2/css/regular.css",
    "content": "/*!\n * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n * Copyright 2024 Fonticons, Inc.\n */\n:root, :host {\n  --fa-style-family-classic: 'Font Awesome 6 Free';\n  --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Free'; }\n\n@font-face {\n  font-family: 'Font Awesome 6 Free';\n  font-style: normal;\n  font-weight: 400;\n  font-display: block;\n  src: url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\"); }\n\n.far,\n.fa-regular {\n  font-weight: 400; }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/resources/META-INF/resources/fontawesome6/6.5.2/css/solid.css",
    "content": "/*!\n * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n * Copyright 2024 Fonticons, Inc.\n */\n:root, :host {\n  --fa-style-family-classic: 'Font Awesome 6 Free';\n  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Free'; }\n\n@font-face {\n  font-family: 'Font Awesome 6 Free';\n  font-style: normal;\n  font-weight: 900;\n  font-display: block;\n  src: url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\"); }\n\n.fas,\n.fa-solid {\n  font-weight: 900; }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/resources/META-INF/resources/fontawesome6/6.5.2/css/svg-with-js.css",
    "content": "/*!\n * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n * Copyright 2024 Fonticons, Inc.\n */\n:root, :host {\n  --fa-font-solid: normal 900 1em/1 'Font Awesome 6 Solid';\n  --fa-font-regular: normal 400 1em/1 'Font Awesome 6 Regular';\n  --fa-font-light: normal 300 1em/1 'Font Awesome 6 Light';\n  --fa-font-thin: normal 100 1em/1 'Font Awesome 6 Thin';\n  --fa-font-duotone: normal 900 1em/1 'Font Awesome 6 Duotone';\n  --fa-font-sharp-solid: normal 900 1em/1 'Font Awesome 6 Sharp';\n  --fa-font-sharp-regular: normal 400 1em/1 'Font Awesome 6 Sharp';\n  --fa-font-sharp-light: normal 300 1em/1 'Font Awesome 6 Sharp';\n  --fa-font-sharp-thin: normal 100 1em/1 'Font Awesome 6 Sharp';\n  --fa-font-brands: normal 400 1em/1 'Font Awesome 6 Brands'; }\n\nsvg:not(:root).svg-inline--fa, svg:not(:host).svg-inline--fa {\n  overflow: visible;\n  box-sizing: content-box; }\n\n.svg-inline--fa {\n  display: var(--fa-display, inline-block);\n  height: 1em;\n  overflow: visible;\n  vertical-align: -.125em; }\n  .svg-inline--fa.fa-2xs {\n    vertical-align: 0.1em; }\n  .svg-inline--fa.fa-xs {\n    vertical-align: 0em; }\n  .svg-inline--fa.fa-sm {\n    vertical-align: -0.07143em; }\n  .svg-inline--fa.fa-lg {\n    vertical-align: -0.2em; }\n  .svg-inline--fa.fa-xl {\n    vertical-align: -0.25em; }\n  .svg-inline--fa.fa-2xl {\n    vertical-align: -0.3125em; }\n  .svg-inline--fa.fa-pull-left {\n    margin-right: var(--fa-pull-margin, 0.3em);\n    width: auto; }\n  .svg-inline--fa.fa-pull-right {\n    margin-left: var(--fa-pull-margin, 0.3em);\n    width: auto; }\n  .svg-inline--fa.fa-li {\n    width: var(--fa-li-width, 2em);\n    top: 0.25em; }\n  .svg-inline--fa.fa-fw {\n    width: var(--fa-fw-width, 1.25em); }\n\n.fa-layers svg.svg-inline--fa {\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  position: absolute;\n  right: 0;\n  top: 0; }\n\n.fa-layers-text, .fa-layers-counter {\n  display: inline-block;\n  position: absolute;\n  text-align: center; }\n\n.fa-layers {\n  display: inline-block;\n  height: 1em;\n  position: relative;\n  text-align: center;\n  vertical-align: -.125em;\n  width: 1em; }\n  .fa-layers svg.svg-inline--fa {\n    -webkit-transform-origin: center center;\n            transform-origin: center center; }\n\n.fa-layers-text {\n  left: 50%;\n  top: 50%;\n  -webkit-transform: translate(-50%, -50%);\n          transform: translate(-50%, -50%);\n  -webkit-transform-origin: center center;\n          transform-origin: center center; }\n\n.fa-layers-counter {\n  background-color: var(--fa-counter-background-color, #ff253a);\n  border-radius: var(--fa-counter-border-radius, 1em);\n  box-sizing: border-box;\n  color: var(--fa-inverse, #fff);\n  line-height: var(--fa-counter-line-height, 1);\n  max-width: var(--fa-counter-max-width, 5em);\n  min-width: var(--fa-counter-min-width, 1.5em);\n  overflow: hidden;\n  padding: var(--fa-counter-padding, 0.25em 0.5em);\n  right: var(--fa-right, 0);\n  text-overflow: ellipsis;\n  top: var(--fa-top, 0);\n  -webkit-transform: scale(var(--fa-counter-scale, 0.25));\n          transform: scale(var(--fa-counter-scale, 0.25));\n  -webkit-transform-origin: top right;\n          transform-origin: top right; }\n\n.fa-layers-bottom-right {\n  bottom: var(--fa-bottom, 0);\n  right: var(--fa-right, 0);\n  top: auto;\n  -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n          transform: scale(var(--fa-layers-scale, 0.25));\n  -webkit-transform-origin: bottom right;\n          transform-origin: bottom right; }\n\n.fa-layers-bottom-left {\n  bottom: var(--fa-bottom, 0);\n  left: var(--fa-left, 0);\n  right: auto;\n  top: auto;\n  -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n          transform: scale(var(--fa-layers-scale, 0.25));\n  -webkit-transform-origin: bottom left;\n          transform-origin: bottom left; }\n\n.fa-layers-top-right {\n  top: var(--fa-top, 0);\n  right: var(--fa-right, 0);\n  -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n          transform: scale(var(--fa-layers-scale, 0.25));\n  -webkit-transform-origin: top right;\n          transform-origin: top right; }\n\n.fa-layers-top-left {\n  left: var(--fa-left, 0);\n  right: auto;\n  top: var(--fa-top, 0);\n  -webkit-transform: scale(var(--fa-layers-scale, 0.25));\n          transform: scale(var(--fa-layers-scale, 0.25));\n  -webkit-transform-origin: top left;\n          transform-origin: top left; }\n\n.fa-1x {\n  font-size: 1em; }\n\n.fa-2x {\n  font-size: 2em; }\n\n.fa-3x {\n  font-size: 3em; }\n\n.fa-4x {\n  font-size: 4em; }\n\n.fa-5x {\n  font-size: 5em; }\n\n.fa-6x {\n  font-size: 6em; }\n\n.fa-7x {\n  font-size: 7em; }\n\n.fa-8x {\n  font-size: 8em; }\n\n.fa-9x {\n  font-size: 9em; }\n\n.fa-10x {\n  font-size: 10em; }\n\n.fa-2xs {\n  font-size: 0.625em;\n  line-height: 0.1em;\n  vertical-align: 0.225em; }\n\n.fa-xs {\n  font-size: 0.75em;\n  line-height: 0.08333em;\n  vertical-align: 0.125em; }\n\n.fa-sm {\n  font-size: 0.875em;\n  line-height: 0.07143em;\n  vertical-align: 0.05357em; }\n\n.fa-lg {\n  font-size: 1.25em;\n  line-height: 0.05em;\n  vertical-align: -0.075em; }\n\n.fa-xl {\n  font-size: 1.5em;\n  line-height: 0.04167em;\n  vertical-align: -0.125em; }\n\n.fa-2xl {\n  font-size: 2em;\n  line-height: 0.03125em;\n  vertical-align: -0.1875em; }\n\n.fa-fw {\n  text-align: center;\n  width: 1.25em; }\n\n.fa-ul {\n  list-style-type: none;\n  margin-left: var(--fa-li-margin, 2.5em);\n  padding-left: 0; }\n  .fa-ul > li {\n    position: relative; }\n\n.fa-li {\n  left: calc(var(--fa-li-width, 2em) * -1);\n  position: absolute;\n  text-align: center;\n  width: var(--fa-li-width, 2em);\n  line-height: inherit; }\n\n.fa-border {\n  border-color: var(--fa-border-color, #eee);\n  border-radius: var(--fa-border-radius, 0.1em);\n  border-style: var(--fa-border-style, solid);\n  border-width: var(--fa-border-width, 0.08em);\n  padding: var(--fa-border-padding, 0.2em 0.25em 0.15em); }\n\n.fa-pull-left {\n  float: left;\n  margin-right: var(--fa-pull-margin, 0.3em); }\n\n.fa-pull-right {\n  float: right;\n  margin-left: var(--fa-pull-margin, 0.3em); }\n\n.fa-beat {\n  -webkit-animation-name: fa-beat;\n          animation-name: fa-beat;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n          animation-timing-function: var(--fa-animation-timing, ease-in-out); }\n\n.fa-bounce {\n  -webkit-animation-name: fa-bounce;\n          animation-name: fa-bounce;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.28, 0.84, 0.42, 1)); }\n\n.fa-fade {\n  -webkit-animation-name: fa-fade;\n          animation-name: fa-fade;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }\n\n.fa-beat-fade {\n  -webkit-animation-name: fa-beat-fade;\n          animation-name: fa-beat-fade;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1));\n          animation-timing-function: var(--fa-animation-timing, cubic-bezier(0.4, 0, 0.6, 1)); }\n\n.fa-flip {\n  -webkit-animation-name: fa-flip;\n          animation-name: fa-flip;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, ease-in-out);\n          animation-timing-function: var(--fa-animation-timing, ease-in-out); }\n\n.fa-shake {\n  -webkit-animation-name: fa-shake;\n          animation-name: fa-shake;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n          animation-timing-function: var(--fa-animation-timing, linear); }\n\n.fa-spin {\n  -webkit-animation-name: fa-spin;\n          animation-name: fa-spin;\n  -webkit-animation-delay: var(--fa-animation-delay, 0s);\n          animation-delay: var(--fa-animation-delay, 0s);\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 2s);\n          animation-duration: var(--fa-animation-duration, 2s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, linear);\n          animation-timing-function: var(--fa-animation-timing, linear); }\n\n.fa-spin-reverse {\n  --fa-animation-direction: reverse; }\n\n.fa-pulse,\n.fa-spin-pulse {\n  -webkit-animation-name: fa-spin;\n          animation-name: fa-spin;\n  -webkit-animation-direction: var(--fa-animation-direction, normal);\n          animation-direction: var(--fa-animation-direction, normal);\n  -webkit-animation-duration: var(--fa-animation-duration, 1s);\n          animation-duration: var(--fa-animation-duration, 1s);\n  -webkit-animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n          animation-iteration-count: var(--fa-animation-iteration-count, infinite);\n  -webkit-animation-timing-function: var(--fa-animation-timing, steps(8));\n          animation-timing-function: var(--fa-animation-timing, steps(8)); }\n\n@media (prefers-reduced-motion: reduce) {\n  .fa-beat,\n  .fa-bounce,\n  .fa-fade,\n  .fa-beat-fade,\n  .fa-flip,\n  .fa-pulse,\n  .fa-shake,\n  .fa-spin,\n  .fa-spin-pulse {\n    -webkit-animation-delay: -1ms;\n            animation-delay: -1ms;\n    -webkit-animation-duration: 1ms;\n            animation-duration: 1ms;\n    -webkit-animation-iteration-count: 1;\n            animation-iteration-count: 1;\n    -webkit-transition-delay: 0s;\n            transition-delay: 0s;\n    -webkit-transition-duration: 0s;\n            transition-duration: 0s; } }\n\n@-webkit-keyframes fa-beat {\n  0%, 90% {\n    -webkit-transform: scale(1);\n            transform: scale(1); }\n  45% {\n    -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n            transform: scale(var(--fa-beat-scale, 1.25)); } }\n\n@keyframes fa-beat {\n  0%, 90% {\n    -webkit-transform: scale(1);\n            transform: scale(1); }\n  45% {\n    -webkit-transform: scale(var(--fa-beat-scale, 1.25));\n            transform: scale(var(--fa-beat-scale, 1.25)); } }\n\n@-webkit-keyframes fa-bounce {\n  0% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); }\n  10% {\n    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }\n  30% {\n    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }\n  50% {\n    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }\n  57% {\n    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }\n  64% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); }\n  100% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); } }\n\n@keyframes fa-bounce {\n  0% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); }\n  10% {\n    -webkit-transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0);\n            transform: scale(var(--fa-bounce-start-scale-x, 1.1), var(--fa-bounce-start-scale-y, 0.9)) translateY(0); }\n  30% {\n    -webkit-transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em));\n            transform: scale(var(--fa-bounce-jump-scale-x, 0.9), var(--fa-bounce-jump-scale-y, 1.1)) translateY(var(--fa-bounce-height, -0.5em)); }\n  50% {\n    -webkit-transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0);\n            transform: scale(var(--fa-bounce-land-scale-x, 1.05), var(--fa-bounce-land-scale-y, 0.95)) translateY(0); }\n  57% {\n    -webkit-transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em));\n            transform: scale(1, 1) translateY(var(--fa-bounce-rebound, -0.125em)); }\n  64% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); }\n  100% {\n    -webkit-transform: scale(1, 1) translateY(0);\n            transform: scale(1, 1) translateY(0); } }\n\n@-webkit-keyframes fa-fade {\n  50% {\n    opacity: var(--fa-fade-opacity, 0.4); } }\n\n@keyframes fa-fade {\n  50% {\n    opacity: var(--fa-fade-opacity, 0.4); } }\n\n@-webkit-keyframes fa-beat-fade {\n  0%, 100% {\n    opacity: var(--fa-beat-fade-opacity, 0.4);\n    -webkit-transform: scale(1);\n            transform: scale(1); }\n  50% {\n    opacity: 1;\n    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n            transform: scale(var(--fa-beat-fade-scale, 1.125)); } }\n\n@keyframes fa-beat-fade {\n  0%, 100% {\n    opacity: var(--fa-beat-fade-opacity, 0.4);\n    -webkit-transform: scale(1);\n            transform: scale(1); }\n  50% {\n    opacity: 1;\n    -webkit-transform: scale(var(--fa-beat-fade-scale, 1.125));\n            transform: scale(var(--fa-beat-fade-scale, 1.125)); } }\n\n@-webkit-keyframes fa-flip {\n  50% {\n    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }\n\n@keyframes fa-flip {\n  50% {\n    -webkit-transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg));\n            transform: rotate3d(var(--fa-flip-x, 0), var(--fa-flip-y, 1), var(--fa-flip-z, 0), var(--fa-flip-angle, -180deg)); } }\n\n@-webkit-keyframes fa-shake {\n  0% {\n    -webkit-transform: rotate(-15deg);\n            transform: rotate(-15deg); }\n  4% {\n    -webkit-transform: rotate(15deg);\n            transform: rotate(15deg); }\n  8%, 24% {\n    -webkit-transform: rotate(-18deg);\n            transform: rotate(-18deg); }\n  12%, 28% {\n    -webkit-transform: rotate(18deg);\n            transform: rotate(18deg); }\n  16% {\n    -webkit-transform: rotate(-22deg);\n            transform: rotate(-22deg); }\n  20% {\n    -webkit-transform: rotate(22deg);\n            transform: rotate(22deg); }\n  32% {\n    -webkit-transform: rotate(-12deg);\n            transform: rotate(-12deg); }\n  36% {\n    -webkit-transform: rotate(12deg);\n            transform: rotate(12deg); }\n  40%, 100% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); } }\n\n@keyframes fa-shake {\n  0% {\n    -webkit-transform: rotate(-15deg);\n            transform: rotate(-15deg); }\n  4% {\n    -webkit-transform: rotate(15deg);\n            transform: rotate(15deg); }\n  8%, 24% {\n    -webkit-transform: rotate(-18deg);\n            transform: rotate(-18deg); }\n  12%, 28% {\n    -webkit-transform: rotate(18deg);\n            transform: rotate(18deg); }\n  16% {\n    -webkit-transform: rotate(-22deg);\n            transform: rotate(-22deg); }\n  20% {\n    -webkit-transform: rotate(22deg);\n            transform: rotate(22deg); }\n  32% {\n    -webkit-transform: rotate(-12deg);\n            transform: rotate(-12deg); }\n  36% {\n    -webkit-transform: rotate(12deg);\n            transform: rotate(12deg); }\n  40%, 100% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); } }\n\n@-webkit-keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg); } }\n\n@keyframes fa-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n            transform: rotate(0deg); }\n  100% {\n    -webkit-transform: rotate(360deg);\n            transform: rotate(360deg); } }\n\n.fa-rotate-90 {\n  -webkit-transform: rotate(90deg);\n          transform: rotate(90deg); }\n\n.fa-rotate-180 {\n  -webkit-transform: rotate(180deg);\n          transform: rotate(180deg); }\n\n.fa-rotate-270 {\n  -webkit-transform: rotate(270deg);\n          transform: rotate(270deg); }\n\n.fa-flip-horizontal {\n  -webkit-transform: scale(-1, 1);\n          transform: scale(-1, 1); }\n\n.fa-flip-vertical {\n  -webkit-transform: scale(1, -1);\n          transform: scale(1, -1); }\n\n.fa-flip-both,\n.fa-flip-horizontal.fa-flip-vertical {\n  -webkit-transform: scale(-1, -1);\n          transform: scale(-1, -1); }\n\n.fa-rotate-by {\n  -webkit-transform: rotate(var(--fa-rotate-angle, 0));\n          transform: rotate(var(--fa-rotate-angle, 0)); }\n\n.fa-stack {\n  display: inline-block;\n  vertical-align: middle;\n  height: 2em;\n  position: relative;\n  width: 2.5em; }\n\n.fa-stack-1x,\n.fa-stack-2x {\n  bottom: 0;\n  left: 0;\n  margin: auto;\n  position: absolute;\n  right: 0;\n  top: 0;\n  z-index: var(--fa-stack-z-index, auto); }\n\n.svg-inline--fa.fa-stack-1x {\n  height: 1em;\n  width: 1.25em; }\n\n.svg-inline--fa.fa-stack-2x {\n  height: 2em;\n  width: 2.5em; }\n\n.fa-inverse {\n  color: var(--fa-inverse, #fff); }\n\n.sr-only,\n.fa-sr-only {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  white-space: nowrap;\n  border-width: 0; }\n\n.sr-only-focusable:not(:focus),\n.fa-sr-only-focusable:not(:focus) {\n  position: absolute;\n  width: 1px;\n  height: 1px;\n  padding: 0;\n  margin: -1px;\n  overflow: hidden;\n  clip: rect(0, 0, 0, 0);\n  white-space: nowrap;\n  border-width: 0; }\n\n.svg-inline--fa .fa-primary {\n  fill: var(--fa-primary-color, currentColor);\n  opacity: var(--fa-primary-opacity, 1); }\n\n.svg-inline--fa .fa-secondary {\n  fill: var(--fa-secondary-color, currentColor);\n  opacity: var(--fa-secondary-opacity, 0.4); }\n\n.svg-inline--fa.fa-swap-opacity .fa-primary {\n  opacity: var(--fa-secondary-opacity, 0.4); }\n\n.svg-inline--fa.fa-swap-opacity .fa-secondary {\n  opacity: var(--fa-primary-opacity, 1); }\n\n.svg-inline--fa mask .fa-primary,\n.svg-inline--fa mask .fa-secondary {\n  fill: black; }\n\n.fad.fa-inverse,\n.fa-duotone.fa-inverse {\n  color: var(--fa-inverse, #fff); }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/resources/META-INF/resources/fontawesome6/6.5.2/css/v4-font-face.css",
    "content": "/*!\n * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n * Copyright 2024 Fonticons, Inc.\n */\n@font-face {\n  font-family: 'FontAwesome';\n  font-display: block;\n  src: url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\"); }\n\n@font-face {\n  font-family: 'FontAwesome';\n  font-display: block;\n  src: url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\"); }\n\n@font-face {\n  font-family: 'FontAwesome';\n  font-display: block;\n  src: url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\");\n  unicode-range: U+F003,U+F006,U+F014,U+F016-F017,U+F01A-F01B,U+F01D,U+F022,U+F03E,U+F044,U+F046,U+F05C-F05D,U+F06E,U+F070,U+F087-F088,U+F08A,U+F094,U+F096-F097,U+F09D,U+F0A0,U+F0A2,U+F0A4-F0A7,U+F0C5,U+F0C7,U+F0E5-F0E6,U+F0EB,U+F0F6-F0F8,U+F10C,U+F114-F115,U+F118-F11A,U+F11C-F11D,U+F133,U+F147,U+F14E,U+F150-F152,U+F185-F186,U+F18E,U+F190-F192,U+F196,U+F1C1-F1C9,U+F1D9,U+F1DB,U+F1E3,U+F1EA,U+F1F7,U+F1F9,U+F20A,U+F247-F248,U+F24A,U+F24D,U+F255-F25B,U+F25D,U+F271-F274,U+F278,U+F27B,U+F28C,U+F28E,U+F29C,U+F2B5,U+F2B7,U+F2BA,U+F2BC,U+F2BE,U+F2C0-F2C1,U+F2C3,U+F2D0,U+F2D2,U+F2D4,U+F2DC; }\n\n@font-face {\n  font-family: 'FontAwesome';\n  font-display: block;\n  src: url(\"../fonts/fa-v4compatibility.woff2\") format(\"woff2\"), url(\"../fonts/fa-v4compatibility.ttf\") format(\"truetype\");\n  unicode-range: U+F041,U+F047,U+F065-F066,U+F07D-F07E,U+F080,U+F08B,U+F08E,U+F090,U+F09A,U+F0AC,U+F0AE,U+F0B2,U+F0D0,U+F0D6,U+F0E4,U+F0EC,U+F10A-F10B,U+F123,U+F13E,U+F148-F149,U+F14C,U+F156,U+F15E,U+F160-F161,U+F163,U+F175-F178,U+F195,U+F1F8,U+F219,U+F27A; }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/resources/META-INF/resources/fontawesome6/6.5.2/css/v4-shims.css",
    "content": "/*!\n * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n * Copyright 2024 Fonticons, Inc.\n */\n.fa.fa-glass:before {\n  content: \"\\f000\"; }\n\n.fa.fa-envelope-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-envelope-o:before {\n  content: \"\\f0e0\"; }\n\n.fa.fa-star-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-star-o:before {\n  content: \"\\f005\"; }\n\n.fa.fa-remove:before {\n  content: \"\\f00d\"; }\n\n.fa.fa-close:before {\n  content: \"\\f00d\"; }\n\n.fa.fa-gear:before {\n  content: \"\\f013\"; }\n\n.fa.fa-trash-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-trash-o:before {\n  content: \"\\f2ed\"; }\n\n.fa.fa-home:before {\n  content: \"\\f015\"; }\n\n.fa.fa-file-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-o:before {\n  content: \"\\f15b\"; }\n\n.fa.fa-clock-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-clock-o:before {\n  content: \"\\f017\"; }\n\n.fa.fa-arrow-circle-o-down {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-arrow-circle-o-down:before {\n  content: \"\\f358\"; }\n\n.fa.fa-arrow-circle-o-up {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-arrow-circle-o-up:before {\n  content: \"\\f35b\"; }\n\n.fa.fa-play-circle-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-play-circle-o:before {\n  content: \"\\f144\"; }\n\n.fa.fa-repeat:before {\n  content: \"\\f01e\"; }\n\n.fa.fa-rotate-right:before {\n  content: \"\\f01e\"; }\n\n.fa.fa-refresh:before {\n  content: \"\\f021\"; }\n\n.fa.fa-list-alt {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-list-alt:before {\n  content: \"\\f022\"; }\n\n.fa.fa-dedent:before {\n  content: \"\\f03b\"; }\n\n.fa.fa-video-camera:before {\n  content: \"\\f03d\"; }\n\n.fa.fa-picture-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-picture-o:before {\n  content: \"\\f03e\"; }\n\n.fa.fa-photo {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-photo:before {\n  content: \"\\f03e\"; }\n\n.fa.fa-image {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-image:before {\n  content: \"\\f03e\"; }\n\n.fa.fa-map-marker:before {\n  content: \"\\f3c5\"; }\n\n.fa.fa-pencil-square-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-pencil-square-o:before {\n  content: \"\\f044\"; }\n\n.fa.fa-edit {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-edit:before {\n  content: \"\\f044\"; }\n\n.fa.fa-share-square-o:before {\n  content: \"\\f14d\"; }\n\n.fa.fa-check-square-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-check-square-o:before {\n  content: \"\\f14a\"; }\n\n.fa.fa-arrows:before {\n  content: \"\\f0b2\"; }\n\n.fa.fa-times-circle-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-times-circle-o:before {\n  content: \"\\f057\"; }\n\n.fa.fa-check-circle-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-check-circle-o:before {\n  content: \"\\f058\"; }\n\n.fa.fa-mail-forward:before {\n  content: \"\\f064\"; }\n\n.fa.fa-expand:before {\n  content: \"\\f424\"; }\n\n.fa.fa-compress:before {\n  content: \"\\f422\"; }\n\n.fa.fa-eye {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-eye-slash {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-warning:before {\n  content: \"\\f071\"; }\n\n.fa.fa-calendar:before {\n  content: \"\\f073\"; }\n\n.fa.fa-arrows-v:before {\n  content: \"\\f338\"; }\n\n.fa.fa-arrows-h:before {\n  content: \"\\f337\"; }\n\n.fa.fa-bar-chart:before {\n  content: \"\\e0e3\"; }\n\n.fa.fa-bar-chart-o:before {\n  content: \"\\e0e3\"; }\n\n.fa.fa-twitter-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-twitter-square:before {\n  content: \"\\f081\"; }\n\n.fa.fa-facebook-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-facebook-square:before {\n  content: \"\\f082\"; }\n\n.fa.fa-gears:before {\n  content: \"\\f085\"; }\n\n.fa.fa-thumbs-o-up {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-thumbs-o-up:before {\n  content: \"\\f164\"; }\n\n.fa.fa-thumbs-o-down {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-thumbs-o-down:before {\n  content: \"\\f165\"; }\n\n.fa.fa-heart-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-heart-o:before {\n  content: \"\\f004\"; }\n\n.fa.fa-sign-out:before {\n  content: \"\\f2f5\"; }\n\n.fa.fa-linkedin-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-linkedin-square:before {\n  content: \"\\f08c\"; }\n\n.fa.fa-thumb-tack:before {\n  content: \"\\f08d\"; }\n\n.fa.fa-external-link:before {\n  content: \"\\f35d\"; }\n\n.fa.fa-sign-in:before {\n  content: \"\\f2f6\"; }\n\n.fa.fa-github-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-github-square:before {\n  content: \"\\f092\"; }\n\n.fa.fa-lemon-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-lemon-o:before {\n  content: \"\\f094\"; }\n\n.fa.fa-square-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-square-o:before {\n  content: \"\\f0c8\"; }\n\n.fa.fa-bookmark-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-bookmark-o:before {\n  content: \"\\f02e\"; }\n\n.fa.fa-twitter {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-facebook {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-facebook:before {\n  content: \"\\f39e\"; }\n\n.fa.fa-facebook-f {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-facebook-f:before {\n  content: \"\\f39e\"; }\n\n.fa.fa-github {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-credit-card {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-feed:before {\n  content: \"\\f09e\"; }\n\n.fa.fa-hdd-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hdd-o:before {\n  content: \"\\f0a0\"; }\n\n.fa.fa-hand-o-right {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-o-right:before {\n  content: \"\\f0a4\"; }\n\n.fa.fa-hand-o-left {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-o-left:before {\n  content: \"\\f0a5\"; }\n\n.fa.fa-hand-o-up {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-o-up:before {\n  content: \"\\f0a6\"; }\n\n.fa.fa-hand-o-down {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-o-down:before {\n  content: \"\\f0a7\"; }\n\n.fa.fa-globe:before {\n  content: \"\\f57d\"; }\n\n.fa.fa-tasks:before {\n  content: \"\\f828\"; }\n\n.fa.fa-arrows-alt:before {\n  content: \"\\f31e\"; }\n\n.fa.fa-group:before {\n  content: \"\\f0c0\"; }\n\n.fa.fa-chain:before {\n  content: \"\\f0c1\"; }\n\n.fa.fa-cut:before {\n  content: \"\\f0c4\"; }\n\n.fa.fa-files-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-files-o:before {\n  content: \"\\f0c5\"; }\n\n.fa.fa-floppy-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-floppy-o:before {\n  content: \"\\f0c7\"; }\n\n.fa.fa-save {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-save:before {\n  content: \"\\f0c7\"; }\n\n.fa.fa-navicon:before {\n  content: \"\\f0c9\"; }\n\n.fa.fa-reorder:before {\n  content: \"\\f0c9\"; }\n\n.fa.fa-magic:before {\n  content: \"\\e2ca\"; }\n\n.fa.fa-pinterest {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-pinterest-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-pinterest-square:before {\n  content: \"\\f0d3\"; }\n\n.fa.fa-google-plus-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-plus-square:before {\n  content: \"\\f0d4\"; }\n\n.fa.fa-google-plus {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-plus:before {\n  content: \"\\f0d5\"; }\n\n.fa.fa-money:before {\n  content: \"\\f3d1\"; }\n\n.fa.fa-unsorted:before {\n  content: \"\\f0dc\"; }\n\n.fa.fa-sort-desc:before {\n  content: \"\\f0dd\"; }\n\n.fa.fa-sort-asc:before {\n  content: \"\\f0de\"; }\n\n.fa.fa-linkedin {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-linkedin:before {\n  content: \"\\f0e1\"; }\n\n.fa.fa-rotate-left:before {\n  content: \"\\f0e2\"; }\n\n.fa.fa-legal:before {\n  content: \"\\f0e3\"; }\n\n.fa.fa-tachometer:before {\n  content: \"\\f625\"; }\n\n.fa.fa-dashboard:before {\n  content: \"\\f625\"; }\n\n.fa.fa-comment-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-comment-o:before {\n  content: \"\\f075\"; }\n\n.fa.fa-comments-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-comments-o:before {\n  content: \"\\f086\"; }\n\n.fa.fa-flash:before {\n  content: \"\\f0e7\"; }\n\n.fa.fa-clipboard:before {\n  content: \"\\f0ea\"; }\n\n.fa.fa-lightbulb-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-lightbulb-o:before {\n  content: \"\\f0eb\"; }\n\n.fa.fa-exchange:before {\n  content: \"\\f362\"; }\n\n.fa.fa-cloud-download:before {\n  content: \"\\f0ed\"; }\n\n.fa.fa-cloud-upload:before {\n  content: \"\\f0ee\"; }\n\n.fa.fa-bell-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-bell-o:before {\n  content: \"\\f0f3\"; }\n\n.fa.fa-cutlery:before {\n  content: \"\\f2e7\"; }\n\n.fa.fa-file-text-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-text-o:before {\n  content: \"\\f15c\"; }\n\n.fa.fa-building-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-building-o:before {\n  content: \"\\f1ad\"; }\n\n.fa.fa-hospital-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hospital-o:before {\n  content: \"\\f0f8\"; }\n\n.fa.fa-tablet:before {\n  content: \"\\f3fa\"; }\n\n.fa.fa-mobile:before {\n  content: \"\\f3cd\"; }\n\n.fa.fa-mobile-phone:before {\n  content: \"\\f3cd\"; }\n\n.fa.fa-circle-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-circle-o:before {\n  content: \"\\f111\"; }\n\n.fa.fa-mail-reply:before {\n  content: \"\\f3e5\"; }\n\n.fa.fa-github-alt {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-folder-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-folder-o:before {\n  content: \"\\f07b\"; }\n\n.fa.fa-folder-open-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-folder-open-o:before {\n  content: \"\\f07c\"; }\n\n.fa.fa-smile-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-smile-o:before {\n  content: \"\\f118\"; }\n\n.fa.fa-frown-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-frown-o:before {\n  content: \"\\f119\"; }\n\n.fa.fa-meh-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-meh-o:before {\n  content: \"\\f11a\"; }\n\n.fa.fa-keyboard-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-keyboard-o:before {\n  content: \"\\f11c\"; }\n\n.fa.fa-flag-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-flag-o:before {\n  content: \"\\f024\"; }\n\n.fa.fa-mail-reply-all:before {\n  content: \"\\f122\"; }\n\n.fa.fa-star-half-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-star-half-o:before {\n  content: \"\\f5c0\"; }\n\n.fa.fa-star-half-empty {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-star-half-empty:before {\n  content: \"\\f5c0\"; }\n\n.fa.fa-star-half-full {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-star-half-full:before {\n  content: \"\\f5c0\"; }\n\n.fa.fa-code-fork:before {\n  content: \"\\f126\"; }\n\n.fa.fa-chain-broken:before {\n  content: \"\\f127\"; }\n\n.fa.fa-unlink:before {\n  content: \"\\f127\"; }\n\n.fa.fa-calendar-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-calendar-o:before {\n  content: \"\\f133\"; }\n\n.fa.fa-maxcdn {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-html5 {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-css3 {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-unlock-alt:before {\n  content: \"\\f09c\"; }\n\n.fa.fa-minus-square-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-minus-square-o:before {\n  content: \"\\f146\"; }\n\n.fa.fa-level-up:before {\n  content: \"\\f3bf\"; }\n\n.fa.fa-level-down:before {\n  content: \"\\f3be\"; }\n\n.fa.fa-pencil-square:before {\n  content: \"\\f14b\"; }\n\n.fa.fa-external-link-square:before {\n  content: \"\\f360\"; }\n\n.fa.fa-compass {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-caret-square-o-down {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-caret-square-o-down:before {\n  content: \"\\f150\"; }\n\n.fa.fa-toggle-down {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-toggle-down:before {\n  content: \"\\f150\"; }\n\n.fa.fa-caret-square-o-up {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-caret-square-o-up:before {\n  content: \"\\f151\"; }\n\n.fa.fa-toggle-up {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-toggle-up:before {\n  content: \"\\f151\"; }\n\n.fa.fa-caret-square-o-right {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-caret-square-o-right:before {\n  content: \"\\f152\"; }\n\n.fa.fa-toggle-right {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-toggle-right:before {\n  content: \"\\f152\"; }\n\n.fa.fa-eur:before {\n  content: \"\\f153\"; }\n\n.fa.fa-euro:before {\n  content: \"\\f153\"; }\n\n.fa.fa-gbp:before {\n  content: \"\\f154\"; }\n\n.fa.fa-usd:before {\n  content: \"\\24\"; }\n\n.fa.fa-dollar:before {\n  content: \"\\24\"; }\n\n.fa.fa-inr:before {\n  content: \"\\e1bc\"; }\n\n.fa.fa-rupee:before {\n  content: \"\\e1bc\"; }\n\n.fa.fa-jpy:before {\n  content: \"\\f157\"; }\n\n.fa.fa-cny:before {\n  content: \"\\f157\"; }\n\n.fa.fa-rmb:before {\n  content: \"\\f157\"; }\n\n.fa.fa-yen:before {\n  content: \"\\f157\"; }\n\n.fa.fa-rub:before {\n  content: \"\\f158\"; }\n\n.fa.fa-ruble:before {\n  content: \"\\f158\"; }\n\n.fa.fa-rouble:before {\n  content: \"\\f158\"; }\n\n.fa.fa-krw:before {\n  content: \"\\f159\"; }\n\n.fa.fa-won:before {\n  content: \"\\f159\"; }\n\n.fa.fa-btc {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-bitcoin {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-bitcoin:before {\n  content: \"\\f15a\"; }\n\n.fa.fa-file-text:before {\n  content: \"\\f15c\"; }\n\n.fa.fa-sort-alpha-asc:before {\n  content: \"\\f15d\"; }\n\n.fa.fa-sort-alpha-desc:before {\n  content: \"\\f881\"; }\n\n.fa.fa-sort-amount-asc:before {\n  content: \"\\f884\"; }\n\n.fa.fa-sort-amount-desc:before {\n  content: \"\\f160\"; }\n\n.fa.fa-sort-numeric-asc:before {\n  content: \"\\f162\"; }\n\n.fa.fa-sort-numeric-desc:before {\n  content: \"\\f886\"; }\n\n.fa.fa-youtube-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-youtube-square:before {\n  content: \"\\f431\"; }\n\n.fa.fa-youtube {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-xing {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-xing-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-xing-square:before {\n  content: \"\\f169\"; }\n\n.fa.fa-youtube-play {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-youtube-play:before {\n  content: \"\\f167\"; }\n\n.fa.fa-dropbox {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-stack-overflow {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-instagram {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-flickr {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-adn {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-bitbucket {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-bitbucket-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-bitbucket-square:before {\n  content: \"\\f171\"; }\n\n.fa.fa-tumblr {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-tumblr-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-tumblr-square:before {\n  content: \"\\f174\"; }\n\n.fa.fa-long-arrow-down:before {\n  content: \"\\f309\"; }\n\n.fa.fa-long-arrow-up:before {\n  content: \"\\f30c\"; }\n\n.fa.fa-long-arrow-left:before {\n  content: \"\\f30a\"; }\n\n.fa.fa-long-arrow-right:before {\n  content: \"\\f30b\"; }\n\n.fa.fa-apple {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-windows {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-android {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-linux {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-dribbble {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-skype {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-foursquare {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-trello {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-gratipay {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-gittip {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-gittip:before {\n  content: \"\\f184\"; }\n\n.fa.fa-sun-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-sun-o:before {\n  content: \"\\f185\"; }\n\n.fa.fa-moon-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-moon-o:before {\n  content: \"\\f186\"; }\n\n.fa.fa-vk {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-weibo {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-renren {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-pagelines {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-stack-exchange {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-arrow-circle-o-right {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-arrow-circle-o-right:before {\n  content: \"\\f35a\"; }\n\n.fa.fa-arrow-circle-o-left {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-arrow-circle-o-left:before {\n  content: \"\\f359\"; }\n\n.fa.fa-caret-square-o-left {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-caret-square-o-left:before {\n  content: \"\\f191\"; }\n\n.fa.fa-toggle-left {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-toggle-left:before {\n  content: \"\\f191\"; }\n\n.fa.fa-dot-circle-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-dot-circle-o:before {\n  content: \"\\f192\"; }\n\n.fa.fa-vimeo-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-vimeo-square:before {\n  content: \"\\f194\"; }\n\n.fa.fa-try:before {\n  content: \"\\e2bb\"; }\n\n.fa.fa-turkish-lira:before {\n  content: \"\\e2bb\"; }\n\n.fa.fa-plus-square-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-plus-square-o:before {\n  content: \"\\f0fe\"; }\n\n.fa.fa-slack {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-wordpress {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-openid {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-institution:before {\n  content: \"\\f19c\"; }\n\n.fa.fa-bank:before {\n  content: \"\\f19c\"; }\n\n.fa.fa-mortar-board:before {\n  content: \"\\f19d\"; }\n\n.fa.fa-yahoo {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-google {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-reddit {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-reddit-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-reddit-square:before {\n  content: \"\\f1a2\"; }\n\n.fa.fa-stumbleupon-circle {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-stumbleupon {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-delicious {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-digg {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-pied-piper-pp {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-pied-piper-alt {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-drupal {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-joomla {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-behance {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-behance-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-behance-square:before {\n  content: \"\\f1b5\"; }\n\n.fa.fa-steam {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-steam-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-steam-square:before {\n  content: \"\\f1b7\"; }\n\n.fa.fa-automobile:before {\n  content: \"\\f1b9\"; }\n\n.fa.fa-cab:before {\n  content: \"\\f1ba\"; }\n\n.fa.fa-spotify {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-deviantart {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-soundcloud {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-file-pdf-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-pdf-o:before {\n  content: \"\\f1c1\"; }\n\n.fa.fa-file-word-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-word-o:before {\n  content: \"\\f1c2\"; }\n\n.fa.fa-file-excel-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-excel-o:before {\n  content: \"\\f1c3\"; }\n\n.fa.fa-file-powerpoint-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-powerpoint-o:before {\n  content: \"\\f1c4\"; }\n\n.fa.fa-file-image-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-image-o:before {\n  content: \"\\f1c5\"; }\n\n.fa.fa-file-photo-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-photo-o:before {\n  content: \"\\f1c5\"; }\n\n.fa.fa-file-picture-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-picture-o:before {\n  content: \"\\f1c5\"; }\n\n.fa.fa-file-archive-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-archive-o:before {\n  content: \"\\f1c6\"; }\n\n.fa.fa-file-zip-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-zip-o:before {\n  content: \"\\f1c6\"; }\n\n.fa.fa-file-audio-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-audio-o:before {\n  content: \"\\f1c7\"; }\n\n.fa.fa-file-sound-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-sound-o:before {\n  content: \"\\f1c7\"; }\n\n.fa.fa-file-video-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-video-o:before {\n  content: \"\\f1c8\"; }\n\n.fa.fa-file-movie-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-movie-o:before {\n  content: \"\\f1c8\"; }\n\n.fa.fa-file-code-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-file-code-o:before {\n  content: \"\\f1c9\"; }\n\n.fa.fa-vine {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-codepen {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-jsfiddle {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-life-bouy:before {\n  content: \"\\f1cd\"; }\n\n.fa.fa-life-buoy:before {\n  content: \"\\f1cd\"; }\n\n.fa.fa-life-saver:before {\n  content: \"\\f1cd\"; }\n\n.fa.fa-support:before {\n  content: \"\\f1cd\"; }\n\n.fa.fa-circle-o-notch:before {\n  content: \"\\f1ce\"; }\n\n.fa.fa-rebel {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-ra {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-ra:before {\n  content: \"\\f1d0\"; }\n\n.fa.fa-resistance {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-resistance:before {\n  content: \"\\f1d0\"; }\n\n.fa.fa-empire {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-ge {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-ge:before {\n  content: \"\\f1d1\"; }\n\n.fa.fa-git-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-git-square:before {\n  content: \"\\f1d2\"; }\n\n.fa.fa-git {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-hacker-news {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-y-combinator-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-y-combinator-square:before {\n  content: \"\\f1d4\"; }\n\n.fa.fa-yc-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-yc-square:before {\n  content: \"\\f1d4\"; }\n\n.fa.fa-tencent-weibo {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-qq {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-weixin {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-wechat {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-wechat:before {\n  content: \"\\f1d7\"; }\n\n.fa.fa-send:before {\n  content: \"\\f1d8\"; }\n\n.fa.fa-paper-plane-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-paper-plane-o:before {\n  content: \"\\f1d8\"; }\n\n.fa.fa-send-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-send-o:before {\n  content: \"\\f1d8\"; }\n\n.fa.fa-circle-thin {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-circle-thin:before {\n  content: \"\\f111\"; }\n\n.fa.fa-header:before {\n  content: \"\\f1dc\"; }\n\n.fa.fa-futbol-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-futbol-o:before {\n  content: \"\\f1e3\"; }\n\n.fa.fa-soccer-ball-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-soccer-ball-o:before {\n  content: \"\\f1e3\"; }\n\n.fa.fa-slideshare {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-twitch {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-yelp {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-newspaper-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-newspaper-o:before {\n  content: \"\\f1ea\"; }\n\n.fa.fa-paypal {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-wallet {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-visa {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-mastercard {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-discover {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-amex {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-paypal {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-stripe {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-bell-slash-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-bell-slash-o:before {\n  content: \"\\f1f6\"; }\n\n.fa.fa-trash:before {\n  content: \"\\f2ed\"; }\n\n.fa.fa-copyright {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-eyedropper:before {\n  content: \"\\f1fb\"; }\n\n.fa.fa-area-chart:before {\n  content: \"\\f1fe\"; }\n\n.fa.fa-pie-chart:before {\n  content: \"\\f200\"; }\n\n.fa.fa-line-chart:before {\n  content: \"\\f201\"; }\n\n.fa.fa-lastfm {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-lastfm-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-lastfm-square:before {\n  content: \"\\f203\"; }\n\n.fa.fa-ioxhost {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-angellist {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-cc:before {\n  content: \"\\f20a\"; }\n\n.fa.fa-ils:before {\n  content: \"\\f20b\"; }\n\n.fa.fa-shekel:before {\n  content: \"\\f20b\"; }\n\n.fa.fa-sheqel:before {\n  content: \"\\f20b\"; }\n\n.fa.fa-buysellads {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-connectdevelop {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-dashcube {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-forumbee {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-leanpub {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-sellsy {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-shirtsinbulk {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-simplybuilt {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-skyatlas {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-diamond {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-diamond:before {\n  content: \"\\f3a5\"; }\n\n.fa.fa-transgender:before {\n  content: \"\\f224\"; }\n\n.fa.fa-intersex:before {\n  content: \"\\f224\"; }\n\n.fa.fa-transgender-alt:before {\n  content: \"\\f225\"; }\n\n.fa.fa-facebook-official {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-facebook-official:before {\n  content: \"\\f09a\"; }\n\n.fa.fa-pinterest-p {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-whatsapp {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-hotel:before {\n  content: \"\\f236\"; }\n\n.fa.fa-viacoin {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-medium {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-y-combinator {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-yc {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-yc:before {\n  content: \"\\f23b\"; }\n\n.fa.fa-optin-monster {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-opencart {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-expeditedssl {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-battery-4:before {\n  content: \"\\f240\"; }\n\n.fa.fa-battery:before {\n  content: \"\\f240\"; }\n\n.fa.fa-battery-3:before {\n  content: \"\\f241\"; }\n\n.fa.fa-battery-2:before {\n  content: \"\\f242\"; }\n\n.fa.fa-battery-1:before {\n  content: \"\\f243\"; }\n\n.fa.fa-battery-0:before {\n  content: \"\\f244\"; }\n\n.fa.fa-object-group {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-object-ungroup {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-sticky-note-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-sticky-note-o:before {\n  content: \"\\f249\"; }\n\n.fa.fa-cc-jcb {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-cc-diners-club {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-clone {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hourglass-o:before {\n  content: \"\\f254\"; }\n\n.fa.fa-hourglass-1:before {\n  content: \"\\f251\"; }\n\n.fa.fa-hourglass-2:before {\n  content: \"\\f252\"; }\n\n.fa.fa-hourglass-3:before {\n  content: \"\\f253\"; }\n\n.fa.fa-hand-rock-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-rock-o:before {\n  content: \"\\f255\"; }\n\n.fa.fa-hand-grab-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-grab-o:before {\n  content: \"\\f255\"; }\n\n.fa.fa-hand-paper-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-paper-o:before {\n  content: \"\\f256\"; }\n\n.fa.fa-hand-stop-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-stop-o:before {\n  content: \"\\f256\"; }\n\n.fa.fa-hand-scissors-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-scissors-o:before {\n  content: \"\\f257\"; }\n\n.fa.fa-hand-lizard-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-lizard-o:before {\n  content: \"\\f258\"; }\n\n.fa.fa-hand-spock-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-spock-o:before {\n  content: \"\\f259\"; }\n\n.fa.fa-hand-pointer-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-pointer-o:before {\n  content: \"\\f25a\"; }\n\n.fa.fa-hand-peace-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-hand-peace-o:before {\n  content: \"\\f25b\"; }\n\n.fa.fa-registered {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-creative-commons {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-gg {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-gg-circle {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-odnoklassniki {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-odnoklassniki-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-odnoklassniki-square:before {\n  content: \"\\f264\"; }\n\n.fa.fa-get-pocket {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-wikipedia-w {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-safari {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-chrome {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-firefox {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-opera {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-internet-explorer {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-television:before {\n  content: \"\\f26c\"; }\n\n.fa.fa-contao {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-500px {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-amazon {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-calendar-plus-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-calendar-plus-o:before {\n  content: \"\\f271\"; }\n\n.fa.fa-calendar-minus-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-calendar-minus-o:before {\n  content: \"\\f272\"; }\n\n.fa.fa-calendar-times-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-calendar-times-o:before {\n  content: \"\\f273\"; }\n\n.fa.fa-calendar-check-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-calendar-check-o:before {\n  content: \"\\f274\"; }\n\n.fa.fa-map-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-map-o:before {\n  content: \"\\f279\"; }\n\n.fa.fa-commenting:before {\n  content: \"\\f4ad\"; }\n\n.fa.fa-commenting-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-commenting-o:before {\n  content: \"\\f4ad\"; }\n\n.fa.fa-houzz {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-vimeo {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-vimeo:before {\n  content: \"\\f27d\"; }\n\n.fa.fa-black-tie {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-fonticons {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-reddit-alien {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-edge {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-credit-card-alt:before {\n  content: \"\\f09d\"; }\n\n.fa.fa-codiepie {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-modx {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-fort-awesome {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-usb {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-product-hunt {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-mixcloud {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-scribd {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-pause-circle-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-pause-circle-o:before {\n  content: \"\\f28b\"; }\n\n.fa.fa-stop-circle-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-stop-circle-o:before {\n  content: \"\\f28d\"; }\n\n.fa.fa-bluetooth {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-bluetooth-b {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-gitlab {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-wpbeginner {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-wpforms {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-envira {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-wheelchair-alt {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-wheelchair-alt:before {\n  content: \"\\f368\"; }\n\n.fa.fa-question-circle-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-question-circle-o:before {\n  content: \"\\f059\"; }\n\n.fa.fa-volume-control-phone:before {\n  content: \"\\f2a0\"; }\n\n.fa.fa-asl-interpreting:before {\n  content: \"\\f2a3\"; }\n\n.fa.fa-deafness:before {\n  content: \"\\f2a4\"; }\n\n.fa.fa-hard-of-hearing:before {\n  content: \"\\f2a4\"; }\n\n.fa.fa-glide {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-glide-g {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-signing:before {\n  content: \"\\f2a7\"; }\n\n.fa.fa-viadeo {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-viadeo-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-viadeo-square:before {\n  content: \"\\f2aa\"; }\n\n.fa.fa-snapchat {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-snapchat-ghost {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-snapchat-ghost:before {\n  content: \"\\f2ab\"; }\n\n.fa.fa-snapchat-square {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-snapchat-square:before {\n  content: \"\\f2ad\"; }\n\n.fa.fa-pied-piper {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-first-order {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-yoast {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-themeisle {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-plus-official {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-plus-official:before {\n  content: \"\\f2b3\"; }\n\n.fa.fa-google-plus-circle {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-google-plus-circle:before {\n  content: \"\\f2b3\"; }\n\n.fa.fa-font-awesome {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-fa {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-fa:before {\n  content: \"\\f2b4\"; }\n\n.fa.fa-handshake-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-handshake-o:before {\n  content: \"\\f2b5\"; }\n\n.fa.fa-envelope-open-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-envelope-open-o:before {\n  content: \"\\f2b6\"; }\n\n.fa.fa-linode {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-address-book-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-address-book-o:before {\n  content: \"\\f2b9\"; }\n\n.fa.fa-vcard:before {\n  content: \"\\f2bb\"; }\n\n.fa.fa-address-card-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-address-card-o:before {\n  content: \"\\f2bb\"; }\n\n.fa.fa-vcard-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-vcard-o:before {\n  content: \"\\f2bb\"; }\n\n.fa.fa-user-circle-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-user-circle-o:before {\n  content: \"\\f2bd\"; }\n\n.fa.fa-user-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-user-o:before {\n  content: \"\\f007\"; }\n\n.fa.fa-id-badge {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-drivers-license:before {\n  content: \"\\f2c2\"; }\n\n.fa.fa-id-card-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-id-card-o:before {\n  content: \"\\f2c2\"; }\n\n.fa.fa-drivers-license-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-drivers-license-o:before {\n  content: \"\\f2c2\"; }\n\n.fa.fa-quora {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-free-code-camp {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-telegram {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-thermometer-4:before {\n  content: \"\\f2c7\"; }\n\n.fa.fa-thermometer:before {\n  content: \"\\f2c7\"; }\n\n.fa.fa-thermometer-3:before {\n  content: \"\\f2c8\"; }\n\n.fa.fa-thermometer-2:before {\n  content: \"\\f2c9\"; }\n\n.fa.fa-thermometer-1:before {\n  content: \"\\f2ca\"; }\n\n.fa.fa-thermometer-0:before {\n  content: \"\\f2cb\"; }\n\n.fa.fa-bathtub:before {\n  content: \"\\f2cd\"; }\n\n.fa.fa-s15:before {\n  content: \"\\f2cd\"; }\n\n.fa.fa-window-maximize {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-window-restore {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-times-rectangle:before {\n  content: \"\\f410\"; }\n\n.fa.fa-window-close-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-window-close-o:before {\n  content: \"\\f410\"; }\n\n.fa.fa-times-rectangle-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-times-rectangle-o:before {\n  content: \"\\f410\"; }\n\n.fa.fa-bandcamp {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-grav {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-etsy {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-imdb {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-ravelry {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-eercast {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-eercast:before {\n  content: \"\\f2da\"; }\n\n.fa.fa-snowflake-o {\n  font-family: 'Font Awesome 6 Free';\n  font-weight: 400; }\n\n.fa.fa-snowflake-o:before {\n  content: \"\\f2dc\"; }\n\n.fa.fa-superpowers {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-wpexplorer {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n\n.fa.fa-meetup {\n  font-family: 'Font Awesome 6 Brands';\n  font-weight: 400; }\n"
  },
  {
    "path": "icon-packs/ikonli-fontawesome6-pack/src/main/resources/META-INF/resources/fontawesome6/6.5.2/css/v5-font-face.css",
    "content": "/*!\n * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com\n * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)\n * Copyright 2024 Fonticons, Inc.\n */\n@font-face {\n  font-family: 'Font Awesome 5 Brands';\n  font-display: block;\n  font-weight: 400;\n  src: url(\"../fonts/fa-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-brands-400.ttf\") format(\"truetype\"); }\n\n@font-face {\n  font-family: 'Font Awesome 5 Free';\n  font-display: block;\n  font-weight: 900;\n  src: url(\"../fonts/fa-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/fa-solid-900.ttf\") format(\"truetype\"); }\n\n@font-face {\n  font-family: 'Font Awesome 5 Free';\n  font-display: block;\n  font-weight: 400;\n  src: url(\"../fonts/fa-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/fa-regular-400.ttf\") format(\"truetype\"); }\n"
  },
  {
    "path": "icon-packs/ikonli-fontelico-pack/ikonli-fontelico-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-fontelico-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.fontelico {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.fontelico;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.fontelico.FontelicoIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.fontelico.FontelicoIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-fontelico-pack/src/main/java/org/kordamp/ikonli/fontelico/Fontelico.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontelico;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Fontelico implements Ikon {\n    EMO_HAPPY(\"ftl-emo-happy\", '\\ue800'),\n    EMO_WINK(\"ftl-emo-wink\", '\\ue801'),\n    EMO_WINK2(\"ftl-emo-wink2\", '\\ue813'),\n    EMO_UNHAPPY(\"ftl-emo-unhappy\", '\\ue802'),\n    EMO_SLEEP(\"ftl-emo-sleep\", '\\ue803'),\n    EMO_THUMBSUP(\"ftl-emo-thumbsup\", '\\ue804'),\n    EMO_DEVIL(\"ftl-emo-devil\", '\\ue805'),\n    EMO_SURPRISED(\"ftl-emo-surprised\", '\\ue806'),\n    EMO_TONGUE(\"ftl-emo-tongue\", '\\ue807'),\n    EMO_COFFEE(\"ftl-emo-coffee\", '\\ue808'),\n    EMO_SUNGLASSES(\"ftl-emo-sunglasses\", '\\ue809'),\n    EMO_DISPLEASED(\"ftl-emo-displeased\", '\\ue80a'),\n    EMO_BEER(\"ftl-emo-beer\", '\\ue80b'),\n    EMO_GRIN(\"ftl-emo-grin\", '\\ue80c'),\n    EMO_ANGRY(\"ftl-emo-angry\", '\\ue80d'),\n    EMO_SAINT(\"ftl-emo-saint\", '\\ue80e'),\n    EMO_CRY(\"ftl-emo-cry\", '\\ue80f'),\n    EMO_SHOOT(\"ftl-emo-shoot\", '\\ue810'),\n    EMO_SQUINT(\"ftl-emo-squint\", '\\ue811'),\n    EMO_LAUGH(\"ftl-emo-laugh\", '\\ue812'),\n    SPIN1(\"ftl-spin1\", '\\ue830'),\n    SPIN2(\"ftl-spin2\", '\\ue831'),\n    SPIN3(\"ftl-spin3\", '\\ue832'),\n    SPIN4(\"ftl-spin4\", '\\ue834'),\n    SPIN5(\"ftl-spin5\", '\\ue838'),\n    SPIN6(\"ftl-spin6\", '\\ue839'),\n    FIREFOX(\"ftl-firefox\", '\\ue840'),\n    CHROME(\"ftl-chrome\", '\\ue841'),\n    OPERA(\"ftl-opera\", '\\ue842'),\n    IE(\"ftl-ie\", '\\ue843'),\n    CROWN(\"ftl-crown\", '\\ue844'),\n    CROWN_PLUS(\"ftl-crown-plus\", '\\ue845'),\n    CROWN_MINUS(\"ftl-crown-minus\", '\\ue846'),\n    MARQUEE(\"ftl-marquee\", '\\ue847');\n\n    public static Fontelico findByDescription(String description) {\n        for (Fontelico font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Fontelico(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fontelico-pack/src/main/java/org/kordamp/ikonli/fontelico/FontelicoIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontelico;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FontelicoIkonHandler extends AbstractIkonHandler {\n\n    private static final String FONT_RESOURCE = \"/META-INF/resources/fontelico/0.0/fonts/fontelico.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"ftl-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Fontelico.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Fontelico\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fontelico-pack/src/main/java/org/kordamp/ikonli/fontelico/FontelicoIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.fontelico;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class FontelicoIkonProvider implements IkonProvider<Fontelico> {\n    @Override\n    public Class<Fontelico> getIkon() {\n        return Fontelico.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-fontelico-pack/src/main/resources/META-INF/resources/fontelico/0.0/css/fontelico.css",
    "content": "@font-face {\n  font-family: 'fontelico';\n  src: url('../fonts/fontelico.eot?7803838');\n  src: url('../fonts/fontelico.eot?7803838#iefix') format('embedded-opentype'),\n       url('../fonts/fontelico.woff?7803838') format('woff'),\n       url('../fonts/fontelico.ttf?7803838') format('truetype'),\n       url('../fonts/fontelico.svg?7803838#fontelico') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n\n.fontelico {\n    font-family: \"fontelico\";\n    font-style: normal;\n    font-weight: normal;\n    speak: none;\n\n    display: inline-block;\n    text-decoration: inherit;\n    width: 1em;\n    margin-right: .2em;\n    text-align: center;\n    /* opacity: .8; */\n\n    /* For safety - reset parent styles, that can break glyph codes*/\n    font-variant: normal;\n    text-transform: none;\n\n    /* fix buttons height, for twitter bootstrap */\n    line-height: 1em;\n\n    /* Animation center compensation - magrins should be symmetric */\n    /* remove if not needed */\n    margin-left: .2em;\n\n    /* you can be more comfortable with increased icons size */\n    /* font-size: 120%; */\n\n    /* Uncomment for 3D effect */\n    /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */\n}\n \n.fontelico-emo-happy:before { content: '\\e800'; }\n.fontelico-emo-wink:before { content: '\\e801'; } \n.fontelico-emo-wink2:before { content: '\\e813'; }\n.fontelico-emo-unhappy:before { content: '\\e802'; }\n.fontelico-emo-sleep:before { content: '\\e803'; }\n.fontelico-emo-thumbsup:before { content: '\\e804'; }\n.fontelico-emo-devil:before { content: '\\e805'; }\n.fontelico-emo-surprised:before { content: '\\e806'; } \n.fontelico-emo-tongue:before { content: '\\e807'; }\n.fontelico-emo-coffee:before { content: '\\e808'; }\n.fontelico-emo-sunglasses:before { content: '\\e809'; }\n.fontelico-emo-displeased:before { content: '\\e80a'; }\n.fontelico-emo-beer:before { content: '\\e80b'; }\n.fontelico-emo-grin:before { content: '\\e80c'; }\n.fontelico-emo-angry:before { content: '\\e80d'; }\n.fontelico-emo-saint:before { content: '\\e80e'; }\n.fontelico-emo-cry:before { content: '\\e80f'; }\n.fontelico-emo-shoot:before { content: '\\e810'; }\n.fontelico-emo-squint:before { content: '\\e811'; }\n.fontelico-emo-laugh:before { content: '\\e812'; }\n.fontelico-spin1:before { content: '\\e830'; }\n.fontelico-spin2:before { content: '\\e831'; }\n.fontelico-spin3:before { content: '\\e832'; }\n.fontelico-spin4:before { content: '\\e834'; }\n.fontelico-spin5:before { content: '\\e838'; }\n.fontelico-spin6:before { content: '\\e839'; }\n.fontelico-firefox:before { content: '\\e840'; }\n.fontelico-chrome:before { content: '\\e841'; }\n.fontelico-opera:before { content: '\\e842'; }\n.fontelico-ie:before { content: '\\e843'; }\n.fontelico-crown:before { content: '\\e844'; }\n.fontelico-crown-plus:before { content: '\\e845'; }\n.fontelico-crown-minus:before { content: '\\e846'; }\n.fontelico-marquee:before { content: '\\e847'; }"
  },
  {
    "path": "icon-packs/ikonli-foundation-pack/ikonli-foundation-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-foundation-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.foundation {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.foundation;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.foundation.FoundationIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.foundation.FoundationIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-foundation-pack/src/main/java/org/kordamp/ikonli/foundation/Foundation.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.foundation;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Foundation implements Ikon {\n    // last is f21a\n    ADDRESS_BOOK(\"fi-address-book\", '\\uf100'),\n    ALERT(\"fi-alert\", '\\uf101'),\n    ALIGN_CENTER(\"fi-align-center\", '\\uf102'),\n    ALIGN_JUSTIFY(\"fi-align-justify\", '\\uf103'),\n    ALIGN_LEFT(\"fi-align-left\", '\\uf104'),\n    ALIGN_RIGHT(\"fi-align-right\", '\\uf105'),\n    ANCHOR(\"fi-anchor\", '\\uf106'),\n    ANNOTATE(\"fi-annotate\", '\\uf107'),\n    ARCHIVE(\"fi-archive\", '\\uf108'),\n    ARROW_DOWN(\"fi-arrow-down\", '\\uf109'),\n    ARROW_LEFT(\"fi-arrow-left\", '\\uf10a'),\n    ARROW_RIGHT(\"fi-arrow-right\", '\\uf10b'),\n    ARROW_UP(\"fi-arrow-up\", '\\uf10c'),\n    ARROWS_COMPRESS(\"fi-arrows-compress\", '\\uf10d'),\n    ARROWS_EXPAND(\"fi-arrows-expand\", '\\uf10e'),\n    ARROWS_IN(\"fi-arrows-in\", '\\uf10f'),\n    ARROWS_OUT(\"fi-arrows-out\", '\\uf110'),\n    ASL(\"fi-asl\", '\\uf111'),\n    ASTERISK(\"fi-asterisk\", '\\uf112'),\n    AT_SIGN(\"fi-at-sign\", '\\uf113'),\n    BACKGROUND_COLOR(\"fi-background-color\", '\\uf114'),\n    BATTERY_EMPTY(\"fi-battery-empty\", '\\uf115'),\n    BATTERY_FULL(\"fi-battery-full\", '\\uf116'),\n    BATTERY_HALF(\"fi-battery-half\", '\\uf117'),\n    BITCOIN_CIRCLE(\"fi-bitcoin-circle\", '\\uf118'),\n    BITCOIN(\"fi-bitcoin\", '\\uf119'),\n    BLIND(\"fi-blind\", '\\uf11a'),\n    BLUETOOTH(\"fi-bluetooth\", '\\uf11b'),\n    BOLD(\"fi-bold\", '\\uf11c'),\n    BOOK(\"fi-book\", '\\uf11e'),\n    BOOKMARK(\"fi-bookmark\", '\\uf11f'),\n    BRAILLE(\"fi-braille\", '\\uf120'),\n    BURST_NEW(\"fi-burst-new\", '\\uf121'),\n    BURST_SALE(\"fi-burst-sale\", '\\uf122'),\n    BURST(\"fi-burst\", '\\uf123'),\n    CALENDAR(\"fi-calendar\", '\\uf124'),\n    CAMERA(\"fi-camera\", '\\uf125'),\n    CHECK(\"fi-check\", '\\uf126'),\n    CHECKBOX(\"fi-checkbox\", '\\uf127'),\n    CLIPBOARD_NOTES(\"fi-clipboard-notes\", '\\uf128'),\n    CLIPBOARD_PENCIL(\"fi-clipboard-pencil\", '\\uf129'),\n    CLIPBOARD(\"fi-clipboard\", '\\uf12a'),\n    CLOCK(\"fi-clock\", '\\uf12b'),\n    CLOSED_CAPTION(\"fi-closed-caption\", '\\uf12c'),\n    CLOUD(\"fi-cloud\", '\\uf12d'),\n    COMMENT_MINUS(\"fi-comment-minus\", '\\uf12e'),\n    COMMENT_QUOTES(\"fi-comment-quotes\", '\\uf12f'),\n    COMMENT_VIDEO(\"fi-comment-video\", '\\uf130'),\n    COMMENT(\"fi-comment\", '\\uf131'),\n    COMMENTS(\"fi-comments\", '\\uf132'),\n    COMPASS(\"fi-compass\", '\\uf133'),\n    CONTRAST(\"fi-contrast\", '\\uf134'),\n    CREDIT_CARD(\"fi-credit-card\", '\\uf135'),\n    CROP(\"fi-crop\", '\\uf136'),\n    CROWN(\"fi-crown\", '\\uf137'),\n    CSS3(\"fi-css3\", '\\uf138'),\n    DATABASE(\"fi-database\", '\\uf139'),\n    DIE_FIVE(\"fi-die-five\", '\\uf13a'),\n    DIE_FOUR(\"fi-die-four\", '\\uf13b'),\n    DIE_ONE(\"fi-die-one\", '\\uf13c'),\n    DIE_SIX(\"fi-die-six\", '\\uf13d'),\n    DIE_THREE(\"fi-die-three\", '\\uf13e'),\n    DIE_TWO(\"fi-die-two\", '\\uf13f'),\n    DISLIKE(\"fi-dislike\", '\\uf140'),\n    DOLLAR_BILL(\"fi-dollar-bill\", '\\uf141'),\n    DOLLAR(\"fi-dollar\", '\\uf142'),\n    DOWNLOAD(\"fi-download\", '\\uf143'),\n    EJECT(\"fi-eject\", '\\uf144'),\n    ELEVATOR(\"fi-elevator\", '\\uf145'),\n    EURO(\"fi-euro\", '\\uf146'),\n    EYE(\"fi-eye\", '\\uf147'),\n    FAST_FORWARD(\"fi-fast-forward\", '\\uf148'),\n    FEMALE_SYMBOL(\"fi-female-symbol\", '\\uf149'),\n    FEMALE(\"fi-female\", '\\uf14a'),\n    FILTER(\"fi-filter\", '\\uf14b'),\n    FIRST_AID(\"fi-first-aid\", '\\uf14c'),\n    FLAG(\"fi-flag\", '\\uf14d'),\n    FOLDER_ADD(\"fi-folder-add\", '\\uf14e'),\n    FOLDER_LOCK(\"fi-folder-lock\", '\\uf14f'),\n    FOLDER(\"fi-folder\", '\\uf150'),\n    FOOT(\"fi-foot\", '\\uf151'),\n    FOUNDATION(\"fi-foundation\", '\\uf152'),\n    GRAPH_BAR(\"fi-graph-bar\", '\\uf153'),\n    GRAPH_HORIZONTAL(\"fi-graph-horizontal\", '\\uf154'),\n    GRAPH_PIE(\"fi-graph-pie\", '\\uf155'),\n    GRAPH_TREND(\"fi-graph-trend\", '\\uf156'),\n    GUIDE_DOG(\"fi-guide-dog\", '\\uf157'),\n    HEARING_AID(\"fi-hearing-aid\", '\\uf158'),\n    HEART(\"fi-heart\", '\\uf159'),\n    HOME(\"fi-home\", '\\uf15a'),\n    HTML5(\"fi-html5\", '\\uf15b'),\n    INDENT_LESS(\"fi-indent-less\", '\\uf15c'),\n    INDENT_MORE(\"fi-indent-more\", '\\uf15d'),\n    INFO(\"fi-info\", '\\uf15e'),\n    ITALIC(\"fi-italic\", '\\uf15f'),\n    KEY(\"fi-key\", '\\uf160'),\n    LAPTOP(\"fi-laptop\", '\\uf161'),\n    LAYOUT(\"fi-layout\", '\\uf162'),\n    LIGHTBULB(\"fi-lightbulb\", '\\uf163'),\n    LIKE(\"fi-like\", '\\uf164'),\n    LINK(\"fi-link\", '\\uf165'),\n    LIST_BULLET(\"fi-list-bullet\", '\\uf166'),\n    LIST_NUMBER(\"fi-list-number\", '\\uf167'),\n    LIST_THUMBNAILS(\"fi-list-thumbnails\", '\\uf168'),\n    LIST(\"fi-list\", '\\uf169'),\n    LOCK(\"fi-lock\", '\\uf16a'),\n    LOOP(\"fi-loop\", '\\uf16b'),\n    MAGNIFYING_GLASS(\"fi-magnifying-glass\", '\\uf16c'),\n    MAIL(\"fi-mail\", '\\uf16d'),\n    MALE_FEMALE(\"fi-male-female\", '\\uf16e'),\n    MALE_SYMBOL(\"fi-male-symbol\", '\\uf16f'),\n    MALE(\"fi-male\", '\\uf170'),\n    MAP(\"fi-map\", '\\uf171'),\n    MARKER(\"fi-marker\", '\\uf172'),\n    MEGAPHONE(\"fi-megaphone\", '\\uf173'),\n    MICROPHONE(\"fi-microphone\", '\\uf174'),\n    MINUS_CIRCLE(\"fi-minus-circle\", '\\uf175'),\n    MINUS(\"fi-minus\", '\\uf176'),\n    MOBILE_SIGNAL(\"fi-mobile-signal\", '\\uf177'),\n    MOBILE(\"fi-mobile\", '\\uf178'),\n    MONITOR(\"fi-monitor\", '\\uf179'),\n    MOUNTAINS(\"fi-mountains\", '\\uf17a'),\n    MUSIC(\"fi-music\", '\\uf17b'),\n    NEXT(\"fi-next\", '\\uf17c'),\n    NO_DOGS(\"fi-no-dogs\", '\\uf17d'),\n    NO_SMOKING(\"fi-no-smoking\", '\\uf17e'),\n    PAGE_ADD(\"fi-page-add\", '\\uf17f'),\n    PAGE_COPY(\"fi-page-copy\", '\\uf180'),\n    PAGE_CSV(\"fi-page-csv\", '\\uf181'),\n    PAGE_DELETE(\"fi-page-delete\", '\\uf182'),\n    PAGE_DOC(\"fi-page-doc\", '\\uf183'),\n    PAGE_EDIT(\"fi-page-edit\", '\\uf184'),\n    PAGE_EXPORT_CSV(\"fi-page-export-csv\", '\\uf185'),\n    PAGE_EXPORT_DOC(\"fi-page-export-doc\", '\\uf186'),\n    PAGE_EXPORT_PDF(\"fi-page-export-pdf\", '\\uf187'),\n    PAGE_EXPORT(\"fi-page-export\", '\\uf188'),\n    PAGE_FILLED(\"fi-page-filled\", '\\uf189'),\n    PAGE_MULTIPLE(\"fi-page-multiple\", '\\uf18a'),\n    PAGE_PDF(\"fi-page-pdf\", '\\uf18b'),\n    PAGE_REMOVE(\"fi-page-remove\", '\\uf18c'),\n    PAGE_SEARCH(\"fi-page-search\", '\\uf18d'),\n    PAGE(\"fi-page\", '\\uf18e'),\n    PAINT_BUCKET(\"fi-paint-bucket\", '\\uf18f'),\n    PAPERCLIP(\"fi-paperclip\", '\\uf190'),\n    PAUSE(\"fi-pause\", '\\uf191'),\n    PAW(\"fi-paw\", '\\uf192'),\n    PAYPAL(\"fi-paypal\", '\\uf193'),\n    PENCIL(\"fi-pencil\", '\\uf194'),\n    PHOTO(\"fi-photo\", '\\uf195'),\n    PLAY_CIRCLE(\"fi-play-circle\", '\\uf196'),\n    PLAY_VIDEO(\"fi-play-video\", '\\uf197'),\n    PLAY(\"fi-play\", '\\uf198'),\n    PLUS(\"fi-plus\", '\\uf199'),\n    POUND(\"fi-pound\", '\\uf19a'),\n    POWER(\"fi-power\", '\\uf19b'),\n    PREVIOUS(\"fi-previous\", '\\uf19c'),\n    PRICE_TAG(\"fi-price-tag\", '\\uf19d'),\n    PRICETAG_MULTIPLE(\"fi-pricetag-multiple\", '\\uf19e'),\n    PRINT(\"fi-print\", '\\uf19f'),\n    PROHIBITED(\"fi-prohibited\", '\\uf1a0'),\n    PROJECTION_SCREEN(\"fi-projection-screen\", '\\uf1a1'),\n    PUZZLE(\"fi-puzzle\", '\\uf1a2'),\n    QUOTE(\"fi-quote\", '\\uf1a3'),\n    RECORD(\"fi-record\", '\\uf1a4'),\n    REFRESH(\"fi-refresh\", '\\uf1a5'),\n    RESULTS_DEMOGRAPHICS(\"fi-results-demographics\", '\\uf1a6'),\n    RESULTS(\"fi-results\", '\\uf1a7'),\n    REWIND_TEN(\"fi-rewind-ten\", '\\uf1a8'),\n    REWIND(\"fi-rewind\", '\\uf1a9'),\n    RSS(\"fi-rss\", '\\uf1aa'),\n    SAFETY_CONE(\"fi-safety-cone\", '\\uf1ab'),\n    SAVE(\"fi-save\", '\\uf1ac'),\n    SHARE(\"fi-share\", '\\uf1ad'),\n    SHERIFF_BADGE(\"fi-sheriff-badge\", '\\uf1ae'),\n    SHIELD(\"fi-shield\", '\\uf1af'),\n    SHOPPING_BAG(\"fi-shopping-bag\", '\\uf1b0'),\n    SHOPPING_CART(\"fi-shopping-cart\", '\\uf1b1'),\n    SHUFFLE(\"fi-shuffle\", '\\uf1b2'),\n    SKULL(\"fi-skull\", '\\uf1b3'),\n    SOCIAL_500PX(\"fi-social-500px\", '\\uf1b4'),\n    SOCIAL_ADOBE(\"fi-social-adobe\", '\\uf1b5'),\n    SOCIAL_AMAZON(\"fi-social-amazon\", '\\uf1b6'),\n    SOCIAL_ANDROID(\"fi-social-android\", '\\uf1b7'),\n    SOCIAL_APPLE(\"fi-social-apple\", '\\uf1b8'),\n    SOCIAL_BEHANCE(\"fi-social-behance\", '\\uf1b9'),\n    SOCIAL_BING(\"fi-social-bing\", '\\uf1ba'),\n    SOCIAL_BLOGGER(\"fi-social-blogger\", '\\uf1bb'),\n    SOCIAL_DELICIOUS(\"fi-social-delicious\", '\\uf1bc'),\n    SOCIAL_DESIGNER_NEWS(\"fi-social-designer-news\", '\\uf1bd'),\n    SOCIAL_DEVIANT_ART(\"fi-social-deviant-art\", '\\uf1be'),\n    SOCIAL_DIGG(\"fi-social-digg\", '\\uf1bf'),\n    SOCIAL_DRIBBBLE(\"fi-social-dribbble\", '\\uf1c0'),\n    SOCIAL_DRIVE(\"fi-social-drive\", '\\uf1c1'),\n    SOCIAL_DROPBOX(\"fi-social-dropbox\", '\\uf1c2'),\n    SOCIAL_EVERNOTE(\"fi-social-evernote\", '\\uf1c3'),\n    SOCIAL_FACEBOOK(\"fi-social-facebook\", '\\uf1c4'),\n    SOCIAL_FLICKR(\"fi-social-flickr\", '\\uf1c5'),\n    SOCIAL_FORRST(\"fi-social-forrst\", '\\uf1c6'),\n    SOCIAL_FOURSQUARE(\"fi-social-foursquare\", '\\uf1c7'),\n    SOCIAL_GAME_CENTER(\"fi-social-game-center\", '\\uf1c8'),\n    SOCIAL_GITHUB(\"fi-social-github\", '\\uf1c9'),\n    SOCIAL_GOOGLE_PLUS(\"fi-social-google-plus\", '\\uf1ca'),\n    SOCIAL_HACKER_NEWS(\"fi-social-hacker-news\", '\\uf1cb'),\n    SOCIAL_HI5(\"fi-social-hi5\", '\\uf1cc'),\n    SOCIAL_INSTAGRAM(\"fi-social-instagram\", '\\uf1cd'),\n    SOCIAL_JOOMLA(\"fi-social-joomla\", '\\uf1ce'),\n    SOCIAL_LASTFM(\"fi-social-lastfm\", '\\uf1cf'),\n    SOCIAL_LINKEDIN(\"fi-social-linkedin\", '\\uf1d0'),\n    SOCIAL_MEDIUM(\"fi-social-medium\", '\\uf1d1'),\n    SOCIAL_MYSPACE(\"fi-social-myspace\", '\\uf1d2'),\n    SOCIAL_ORKUT(\"fi-social-orkut\", '\\uf1d3'),\n    SOCIAL_PATH(\"fi-social-path\", '\\uf1d4'),\n    SOCIAL_PICASA(\"fi-social-picasa\", '\\uf1d5'),\n    SOCIAL_PINTEREST(\"fi-social-pinterest\", '\\uf1d6'),\n    SOCIAL_RDIO(\"fi-social-rdio\", '\\uf1d7'),\n    SOCIAL_REDDIT(\"fi-social-reddit\", '\\uf1d8'),\n    SOCIAL_SKILLSHARE(\"fi-social-skillshare\", '\\uf1d9'),\n    SOCIAL_SKYPE(\"fi-social-skype\", '\\uf1da'),\n    SOCIAL_SMASHING_MAG(\"fi-social-smashing-mag\", '\\uf1db'),\n    SOCIAL_SNAPCHAT(\"fi-social-snapchat\", '\\uf1dc'),\n    SOCIAL_SPOTIFY(\"fi-social-spotify\", '\\uf1dd'),\n    SOCIAL_SQUIDOO(\"fi-social-squidoo\", '\\uf1de'),\n    SOCIAL_STACK_OVERFLOW(\"fi-social-stack-overflow\", '\\uf1df'),\n    SOCIAL_STEAM(\"fi-social-steam\", '\\uf1e0'),\n    SOCIAL_STUMBLEUPON(\"fi-social-stumbleupon\", '\\uf1e1'),\n    SOCIAL_TREEHOUSE(\"fi-social-treehouse\", '\\uf1e2'),\n    SOCIAL_TUMBLR(\"fi-social-tumblr\", '\\uf1e3'),\n    SOCIAL_TWITTER(\"fi-social-twitter\", '\\uf1e4'),\n    SOCIAL_VIMEO(\"fi-social-vimeo\", '\\uf1e5'),\n    SOCIAL_WINDOWS(\"fi-social-windows\", '\\uf1e6'),\n    SOCIAL_XBOX(\"fi-social-xbox\", '\\uf1e7'),\n    SOCIAL_YAHOO(\"fi-social-yahoo\", '\\uf1e8'),\n    SOCIAL_YELP(\"fi-social-yelp\", '\\uf1e9'),\n    SOCIAL_YOUTUBE(\"fi-social-youtube\", '\\uf1ea'),\n    SOCIAL_ZERPLY(\"fi-social-zerply\", '\\uf1eb'),\n    SOCIAL_ZURB(\"fi-social-zurb\", '\\uf1ec'),\n    SOUND(\"fi-sound\", '\\uf1ed'),\n    STAR(\"fi-star\", '\\uf1ee'),\n    STOP(\"fi-stop\", '\\uf1ef'),\n    STRIKETHROUGH(\"fi-strikethrough\", '\\uf1f0'),\n    SUBSCRIPT(\"fi-subscript\", '\\uf1f1'),\n    SUPERSCRIPT(\"fi-superscript\", '\\uf1f2'),\n    TABLET_LANDSCAPE(\"fi-tablet-landscape\", '\\uf1f3'),\n    TABLET_PORTRAIT(\"fi-tablet-portrait\", '\\uf1f4'),\n    TARGET_TWO(\"fi-target-two\", '\\uf1f5'),\n    TARGET(\"fi-target\", '\\uf1f6'),\n    TELEPHONE_ACCESSIBLE(\"fi-telephone-accessible\", '\\uf1f7'),\n    TELEPHONE(\"fi-telephone\", '\\uf1f8'),\n    TEXT_COLOR(\"fi-text-color\", '\\uf1f9'),\n    THUMBNAILS(\"fi-thumbnails\", '\\uf1fa'),\n    TICKET(\"fi-ticket\", '\\uf1fb'),\n    TORSO_BUSINESS(\"fi-torso-business\", '\\uf1fc'),\n    TORSO_FEMALE(\"fi-torso-female\", '\\uf1fd'),\n    TORSO(\"fi-torso\", '\\uf1fe'),\n    TORSOS_ALL_FEMALE(\"fi-torsos-all-female\", '\\uf1ff'),\n    TORSOS_ALL(\"fi-torsos-all\", '\\uf200'),\n    TORSOS_FEMALE_MALE(\"fi-torsos-female-male\", '\\uf201'),\n    TORSOS_MALE_FEMALE(\"fi-torsos-male-female\", '\\uf202'),\n    TORSOS(\"fi-torsos\", '\\uf203'),\n    TRASH(\"fi-trash\", '\\uf204'),\n    TREES(\"fi-trees\", '\\uf205'),\n    TROPHY(\"fi-trophy\", '\\uf206'),\n    UNDERLINE(\"fi-underline\", '\\uf207'),\n    UNIVERSAL_ACCESS(\"fi-universal-access\", '\\uf208'),\n    UNLINK(\"fi-unlink\", '\\uf209'),\n    UNLOCK(\"fi-unlock\", '\\uf20a'),\n    UPLOAD_CLOUD(\"fi-upload-cloud\", '\\uf20b'),\n    UPLOAD(\"fi-upload\", '\\uf20c'),\n    USB(\"fi-usb\", '\\uf20d'),\n    VIDEO(\"fi-video\", '\\uf20e'),\n    VOLUME_NONE(\"fi-volume-none\", '\\uf20f'),\n    VOLUME_STRIKE(\"fi-volume-strike\", '\\uf210'),\n    VOLUME(\"fi-volume\", '\\uf211'),\n    WEB(\"fi-web\", '\\uf212'),\n    WHEELCHAIR(\"fi-wheelchair\", '\\uf213'),\n    WIDGET(\"fi-widget\", '\\uf214'),\n    WRENCH(\"fi-wrench\", '\\uf215'),\n    X_CIRCLE(\"fi-x-circle\", '\\uf216'),\n    X(\"fi-x\", '\\uf217'),\n    YEN(\"fi-yen\", '\\uf218'),\n    ZOOM_IN(\"fi-zoom-in\", '\\uf219'),\n    ZOOM_OUT(\"fi-zoom-out\", '\\uf21a');\n\n    public static Foundation findByDescription(String description) {\n        for (Foundation font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Foundation(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-foundation-pack/src/main/java/org/kordamp/ikonli/foundation/FoundationIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.foundation;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class FoundationIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/foundation/3.0/fonts/foundation-icons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"fi-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Foundation.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"fontcustom\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-foundation-pack/src/main/java/org/kordamp/ikonli/foundation/FoundationIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.foundation;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class FoundationIkonProvider implements IkonProvider<Foundation> {\n    @Override\n    public Class<Foundation> getIkon() {\n        return Foundation.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-foundation-pack/src/main/resources/META-INF/resources/foundation/3.0/css/foundation-icons.css",
    "content": "/* \n * Foundation Icons v 3.0\n * Made by ZURB 2013 http://zurb.com/playground/foundation-icon-fonts-3\n * MIT License\n */\n\n@font-face {\n  font-family: \"foundation-icons\";\n  src: url(\"../fonts/foundation-icons.eot\");\n  src: url(\"../fonts/foundation-icons.eot?#iefix\") format(\"embedded-opentype\"),\n       url(\"../fonts/foundation-icons.woff\") format(\"woff\"),\n       url(\"../fonts/foundation-icons.ttf\") format(\"truetype\"),\n       url(\"../fonts/foundation-icons.svg#fontcustom\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n.foundation {\n  font-family: \"foundation-icons\";\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  display: inline-block;\n  text-decoration: inherit;\n}\n\n.foundation-address-book:before { content: \"\\f100\"; }\n.foundation-alert:before { content: \"\\f101\"; }\n.foundation-align-center:before { content: \"\\f102\"; }\n.foundation-align-justify:before { content: \"\\f103\"; }\n.foundation-align-left:before { content: \"\\f104\"; }\n.foundation-align-right:before { content: \"\\f105\"; }\n.foundation-anchor:before { content: \"\\f106\"; }\n.foundation-annotate:before { content: \"\\f107\"; }\n.foundation-archive:before { content: \"\\f108\"; }\n.foundation-arrow-down:before { content: \"\\f109\"; }\n.foundation-arrow-left:before { content: \"\\f10a\"; }\n.foundation-arrow-right:before { content: \"\\f10b\"; }\n.foundation-arrow-up:before { content: \"\\f10c\"; }\n.foundation-arrows-compress:before { content: \"\\f10d\"; }\n.foundation-arrows-expand:before { content: \"\\f10e\"; }\n.foundation-arrows-in:before { content: \"\\f10f\"; }\n.foundation-arrows-out:before { content: \"\\f110\"; }\n.foundation-asl:before { content: \"\\f111\"; }\n.foundation-asterisk:before { content: \"\\f112\"; }\n.foundation-at-sign:before { content: \"\\f113\"; }\n.foundation-background-color:before { content: \"\\f114\"; }\n.foundation-battery-empty:before { content: \"\\f115\"; }\n.foundation-battery-full:before { content: \"\\f116\"; }\n.foundation-battery-half:before { content: \"\\f117\"; }\n.foundation-bitcoin-circle:before { content: \"\\f118\"; }\n.foundation-bitcoin:before { content: \"\\f119\"; }\n.foundation-blind:before { content: \"\\f11a\"; }\n.foundation-bluetooth:before { content: \"\\f11b\"; }\n.foundation-bold:before { content: \"\\f11c\"; }\n.foundation-book-bookmark:before { content: \"\\f11d\"; }\n.foundation-book:before { content: \"\\f11e\"; }\n.foundation-bookmark:before { content: \"\\f11f\"; }\n.foundation-braille:before { content: \"\\f120\"; }\n.foundation-burst-new:before { content: \"\\f121\"; }\n.foundation-burst-sale:before { content: \"\\f122\"; }\n.foundation-burst:before { content: \"\\f123\"; }\n.foundation-calendar:before { content: \"\\f124\"; }\n.foundation-camera:before { content: \"\\f125\"; }\n.foundation-check:before { content: \"\\f126\"; }\n.foundation-checkbox:before { content: \"\\f127\"; }\n.foundation-clipboard-notes:before { content: \"\\f128\"; }\n.foundation-clipboard-pencil:before { content: \"\\f129\"; }\n.foundation-clipboard:before { content: \"\\f12a\"; }\n.foundation-clock:before { content: \"\\f12b\"; }\n.foundation-closed-caption:before { content: \"\\f12c\"; }\n.foundation-cloud:before { content: \"\\f12d\"; }\n.foundation-comment-minus:before { content: \"\\f12e\"; }\n.foundation-comment-quotes:before { content: \"\\f12f\"; }\n.foundation-comment-video:before { content: \"\\f130\"; }\n.foundation-comment:before { content: \"\\f131\"; }\n.foundation-comments:before { content: \"\\f132\"; }\n.foundation-compass:before { content: \"\\f133\"; }\n.foundation-contrast:before { content: \"\\f134\"; }\n.foundation-credit-card:before { content: \"\\f135\"; }\n.foundation-crop:before { content: \"\\f136\"; }\n.foundation-crown:before { content: \"\\f137\"; }\n.foundation-css3:before { content: \"\\f138\"; }\n.foundation-database:before { content: \"\\f139\"; }\n.foundation-die-five:before { content: \"\\f13a\"; }\n.foundation-die-four:before { content: \"\\f13b\"; }\n.foundation-die-one:before { content: \"\\f13c\"; }\n.foundation-die-six:before { content: \"\\f13d\"; }\n.foundation-die-three:before { content: \"\\f13e\"; }\n.foundation-die-two:before { content: \"\\f13f\"; }\n.foundation-dislike:before { content: \"\\f140\"; }\n.foundation-dollar-bill:before { content: \"\\f141\"; }\n.foundation-dollar:before { content: \"\\f142\"; }\n.foundation-download:before { content: \"\\f143\"; }\n.foundation-eject:before { content: \"\\f144\"; }\n.foundation-elevator:before { content: \"\\f145\"; }\n.foundation-euro:before { content: \"\\f146\"; }\n.foundation-eye:before { content: \"\\f147\"; }\n.foundation-fast-forward:before { content: \"\\f148\"; }\n.foundation-female-symbol:before { content: \"\\f149\"; }\n.foundation-female:before { content: \"\\f14a\"; }\n.foundation-filter:before { content: \"\\f14b\"; }\n.foundation-first-aid:before { content: \"\\f14c\"; }\n.foundation-flag:before { content: \"\\f14d\"; }\n.foundation-folder-add:before { content: \"\\f14e\"; }\n.foundation-folder-lock:before { content: \"\\f14f\"; }\n.foundation-folder:before { content: \"\\f150\"; }\n.foundation-foot:before { content: \"\\f151\"; }\n.foundation-foundation:before { content: \"\\f152\"; }\n.foundation-graph-bar:before { content: \"\\f153\"; }\n.foundation-graph-horizontal:before { content: \"\\f154\"; }\n.foundation-graph-pie:before { content: \"\\f155\"; }\n.foundation-graph-trend:before { content: \"\\f156\"; }\n.foundation-guide-dog:before { content: \"\\f157\"; }\n.foundation-hearing-aid:before { content: \"\\f158\"; }\n.foundation-heart:before { content: \"\\f159\"; }\n.foundation-home:before { content: \"\\f15a\"; }\n.foundation-html5:before { content: \"\\f15b\"; }\n.foundation-indent-less:before { content: \"\\f15c\"; }\n.foundation-indent-more:before { content: \"\\f15d\"; }\n.foundation-info:before { content: \"\\f15e\"; }\n.foundation-italic:before { content: \"\\f15f\"; }\n.foundation-key:before { content: \"\\f160\"; }\n.foundation-laptop:before { content: \"\\f161\"; }\n.foundation-layout:before { content: \"\\f162\"; }\n.foundation-lightbulb:before { content: \"\\f163\"; }\n.foundation-like:before { content: \"\\f164\"; }\n.foundation-link:before { content: \"\\f165\"; }\n.foundation-list-bullet:before { content: \"\\f166\"; }\n.foundation-list-number:before { content: \"\\f167\"; }\n.foundation-list-thumbnails:before { content: \"\\f168\"; }\n.foundation-list:before { content: \"\\f169\"; }\n.foundation-lock:before { content: \"\\f16a\"; }\n.foundation-loop:before { content: \"\\f16b\"; }\n.foundation-magnifying-glass:before { content: \"\\f16c\"; }\n.foundation-mail:before { content: \"\\f16d\"; }\n.foundation-male-female:before { content: \"\\f16e\"; }\n.foundation-male-symbol:before { content: \"\\f16f\"; }\n.foundation-male:before { content: \"\\f170\"; }\n.foundation-map:before { content: \"\\f171\"; }\n.foundation-marker:before { content: \"\\f172\"; }\n.foundation-megaphone:before { content: \"\\f173\"; }\n.foundation-microphone:before { content: \"\\f174\"; }\n.foundation-minus-circle:before { content: \"\\f175\"; }\n.foundation-minus:before { content: \"\\f176\"; }\n.foundation-mobile-signal:before { content: \"\\f177\"; }\n.foundation-mobile:before { content: \"\\f178\"; }\n.foundation-monitor:before { content: \"\\f179\"; }\n.foundation-mountains:before { content: \"\\f17a\"; }\n.foundation-music:before { content: \"\\f17b\"; }\n.foundation-next:before { content: \"\\f17c\"; }\n.foundation-no-dogs:before { content: \"\\f17d\"; }\n.foundation-no-smoking:before { content: \"\\f17e\"; }\n.foundation-page-add:before { content: \"\\f17f\"; }\n.foundation-page-copy:before { content: \"\\f180\"; }\n.foundation-page-csv:before { content: \"\\f181\"; }\n.foundation-page-delete:before { content: \"\\f182\"; }\n.foundation-page-doc:before { content: \"\\f183\"; }\n.foundation-page-edit:before { content: \"\\f184\"; }\n.foundation-page-export-csv:before { content: \"\\f185\"; }\n.foundation-page-export-doc:before { content: \"\\f186\"; }\n.foundation-page-export-pdf:before { content: \"\\f187\"; }\n.foundation-page-export:before { content: \"\\f188\"; }\n.foundation-page-filled:before { content: \"\\f189\"; }\n.foundation-page-multiple:before { content: \"\\f18a\"; }\n.foundation-page-pdf:before { content: \"\\f18b\"; }\n.foundation-page-remove:before { content: \"\\f18c\"; }\n.foundation-page-search:before { content: \"\\f18d\"; }\n.foundation-page:before { content: \"\\f18e\"; }\n.foundation-paint-bucket:before { content: \"\\f18f\"; }\n.foundation-paperclip:before { content: \"\\f190\"; }\n.foundation-pause:before { content: \"\\f191\"; }\n.foundation-paw:before { content: \"\\f192\"; }\n.foundation-paypal:before { content: \"\\f193\"; }\n.foundation-pencil:before { content: \"\\f194\"; }\n.foundation-photo:before { content: \"\\f195\"; }\n.foundation-play-circle:before { content: \"\\f196\"; }\n.foundation-play-video:before { content: \"\\f197\"; }\n.foundation-play:before { content: \"\\f198\"; }\n.foundation-plus:before { content: \"\\f199\"; }\n.foundation-pound:before { content: \"\\f19a\"; }\n.foundation-power:before { content: \"\\f19b\"; }\n.foundation-previous:before { content: \"\\f19c\"; }\n.foundation-price-tag:before { content: \"\\f19d\"; }\n.foundation-pricetag-multiple:before { content: \"\\f19e\"; }\n.foundation-print:before { content: \"\\f19f\"; }\n.foundation-prohibited:before { content: \"\\f1a0\"; }\n.foundation-projection-screen:before { content: \"\\f1a1\"; }\n.foundation-puzzle:before { content: \"\\f1a2\"; }\n.foundation-quote:before { content: \"\\f1a3\"; }\n.foundation-record:before { content: \"\\f1a4\"; }\n.foundation-refresh:before { content: \"\\f1a5\"; }\n.foundation-results-demographics:before { content: \"\\f1a6\"; }\n.foundation-results:before { content: \"\\f1a7\"; }\n.foundation-rewind-ten:before { content: \"\\f1a8\"; }\n.foundation-rewind:before { content: \"\\f1a9\"; }\n.foundation-rss:before { content: \"\\f1aa\"; }\n.foundation-safety-cone:before { content: \"\\f1ab\"; }\n.foundation-save:before { content: \"\\f1ac\"; }\n.foundation-share:before { content: \"\\f1ad\"; }\n.foundation-sheriff-badge:before { content: \"\\f1ae\"; }\n.foundation-shield:before { content: \"\\f1af\"; }\n.foundation-shopping-bag:before { content: \"\\f1b0\"; }\n.foundation-shopping-cart:before { content: \"\\f1b1\"; }\n.foundation-shuffle:before { content: \"\\f1b2\"; }\n.foundation-skull:before { content: \"\\f1b3\"; }\n.foundation-social-500px:before { content: \"\\f1b4\"; }\n.foundation-social-adobe:before { content: \"\\f1b5\"; }\n.foundation-social-amazon:before { content: \"\\f1b6\"; }\n.foundation-social-android:before { content: \"\\f1b7\"; }\n.foundation-social-apple:before { content: \"\\f1b8\"; }\n.foundation-social-behance:before { content: \"\\f1b9\"; }\n.foundation-social-bing:before { content: \"\\f1ba\"; }\n.foundation-social-blogger:before { content: \"\\f1bb\"; }\n.foundation-social-delicious:before { content: \"\\f1bc\"; }\n.foundation-social-designer-news:before { content: \"\\f1bd\"; }\n.foundation-social-deviant-art:before { content: \"\\f1be\"; }\n.foundation-social-digg:before { content: \"\\f1bf\"; }\n.foundation-social-dribbble:before { content: \"\\f1c0\"; }\n.foundation-social-drive:before { content: \"\\f1c1\"; }\n.foundation-social-dropbox:before { content: \"\\f1c2\"; }\n.foundation-social-evernote:before { content: \"\\f1c3\"; }\n.foundation-social-facebook:before { content: \"\\f1c4\"; }\n.foundation-social-flickr:before { content: \"\\f1c5\"; }\n.foundation-social-forrst:before { content: \"\\f1c6\"; }\n.foundation-social-foursquare:before { content: \"\\f1c7\"; }\n.foundation-social-game-center:before { content: \"\\f1c8\"; }\n.foundation-social-github:before { content: \"\\f1c9\"; }\n.foundation-social-google-plus:before { content: \"\\f1ca\"; }\n.foundation-social-hacker-news:before { content: \"\\f1cb\"; }\n.foundation-social-hi5:before { content: \"\\f1cc\"; }\n.foundation-social-instagram:before { content: \"\\f1cd\"; }\n.foundation-social-joomla:before { content: \"\\f1ce\"; }\n.foundation-social-lastfm:before { content: \"\\f1cf\"; }\n.foundation-social-linkedin:before { content: \"\\f1d0\"; }\n.foundation-social-medium:before { content: \"\\f1d1\"; }\n.foundation-social-myspace:before { content: \"\\f1d2\"; }\n.foundation-social-orkut:before { content: \"\\f1d3\"; }\n.foundation-social-path:before { content: \"\\f1d4\"; }\n.foundation-social-picasa:before { content: \"\\f1d5\"; }\n.foundation-social-pinterest:before { content: \"\\f1d6\"; }\n.foundation-social-rdio:before { content: \"\\f1d7\"; }\n.foundation-social-reddit:before { content: \"\\f1d8\"; }\n.foundation-social-skillshare:before { content: \"\\f1d9\"; }\n.foundation-social-skype:before { content: \"\\f1da\"; }\n.foundation-social-smashing-mag:before { content: \"\\f1db\"; }\n.foundation-social-snapchat:before { content: \"\\f1dc\"; }\n.foundation-social-spotify:before { content: \"\\f1dd\"; }\n.foundation-social-squidoo:before { content: \"\\f1de\"; }\n.foundation-social-stack-overflow:before { content: \"\\f1df\"; }\n.foundation-social-steam:before { content: \"\\f1e0\"; }\n.foundation-social-stumbleupon:before { content: \"\\f1e1\"; }\n.foundation-social-treehouse:before { content: \"\\f1e2\"; }\n.foundation-social-tumblr:before { content: \"\\f1e3\"; }\n.foundation-social-twitter:before { content: \"\\f1e4\"; }\n.foundation-social-vimeo:before { content: \"\\f1e5\"; }\n.foundation-social-windows:before { content: \"\\f1e6\"; }\n.foundation-social-xbox:before { content: \"\\f1e7\"; }\n.foundation-social-yahoo:before { content: \"\\f1e8\"; }\n.foundation-social-yelp:before { content: \"\\f1e9\"; }\n.foundation-social-youtube:before { content: \"\\f1ea\"; }\n.foundation-social-zerply:before { content: \"\\f1eb\"; }\n.foundation-social-zurb:before { content: \"\\f1ec\"; }\n.foundation-sound:before { content: \"\\f1ed\"; }\n.foundation-star:before { content: \"\\f1ee\"; }\n.foundation-stop:before { content: \"\\f1ef\"; }\n.foundation-strikethrough:before { content: \"\\f1f0\"; }\n.foundation-subscript:before { content: \"\\f1f1\"; }\n.foundation-superscript:before { content: \"\\f1f2\"; }\n.foundation-tablet-landscape:before { content: \"\\f1f3\"; }\n.foundation-tablet-portrait:before { content: \"\\f1f4\"; }\n.foundation-target-two:before { content: \"\\f1f5\"; }\n.foundation-target:before { content: \"\\f1f6\"; }\n.foundation-telephone-accessible:before { content: \"\\f1f7\"; }\n.foundation-telephone:before { content: \"\\f1f8\"; }\n.foundation-text-color:before { content: \"\\f1f9\"; }\n.foundation-thumbnails:before { content: \"\\f1fa\"; }\n.foundation-ticket:before { content: \"\\f1fb\"; }\n.foundation-torso-business:before { content: \"\\f1fc\"; }\n.foundation-torso-female:before { content: \"\\f1fd\"; }\n.foundation-torso:before { content: \"\\f1fe\"; }\n.foundation-torsos-all-female:before { content: \"\\f1ff\"; }\n.foundation-torsos-all:before { content: \"\\f200\"; }\n.foundation-torsos-female-male:before { content: \"\\f201\"; }\n.foundation-torsos-male-female:before { content: \"\\f202\"; }\n.foundation-torsos:before { content: \"\\f203\"; }\n.foundation-trash:before { content: \"\\f204\"; }\n.foundation-trees:before { content: \"\\f205\"; }\n.foundation-trophy:before { content: \"\\f206\"; }\n.foundation-underline:before { content: \"\\f207\"; }\n.foundation-universal-access:before { content: \"\\f208\"; }\n.foundation-unlink:before { content: \"\\f209\"; }\n.foundation-unlock:before { content: \"\\f20a\"; }\n.foundation-upload-cloud:before { content: \"\\f20b\"; }\n.foundation-upload:before { content: \"\\f20c\"; }\n.foundation-usb:before { content: \"\\f20d\"; }\n.foundation-video:before { content: \"\\f20e\"; }\n.foundation-volume-none:before { content: \"\\f20f\"; }\n.foundation-volume-strike:before { content: \"\\f210\"; }\n.foundation-volume:before { content: \"\\f211\"; }\n.foundation-web:before { content: \"\\f212\"; }\n.foundation-wheelchair:before { content: \"\\f213\"; }\n.foundation-widget:before { content: \"\\f214\"; }\n.foundation-wrench:before { content: \"\\f215\"; }\n.foundation-x-circle:before { content: \"\\f216\"; }\n.foundation-x:before { content: \"\\f217\"; }\n.foundation-yen:before { content: \"\\f218\"; }\n.foundation-zoom-in:before { content: \"\\f219\"; }\n.foundation-zoom-out:before { content: \"\\f21a\"; }\n"
  },
  {
    "path": "icon-packs/ikonli-hawcons-pack/ikonli-hawcons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-hawcons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.hawcons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.hawcons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.hawcons.HawconsFilledIkonHandler,\n            org.kordamp.ikonli.hawcons.HawconsStrokeIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.hawcons.HawconsFilledIkonProvider,\n            org.kordamp.ikonli.hawcons.HawconsStrokeIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-hawcons-pack/src/main/java/org/kordamp/ikonli/hawcons/HawconsFilled.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.hawcons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum HawconsFilled implements Ikon {\n    AIR_SOCK(\"hwf-air-sock\", '\\ue701'),\n    AMUSED_FACE(\"hwf-amused-face\", '\\ue73e'),\n    AMUSED_FACE_CLOSED_EYES(\"hwf-amused-face-closed-eyes\", '\\ue73f'),\n    AMUSED_FACE_CLOSED_EYES2(\"hwf-amused-face-closed-eyes2\", '\\ue740'),\n    ANGRY_FACE(\"hwf-angry-face\", '\\ue728'),\n    ANGRY_FACE_EYEBROWS(\"hwf-angry-face-eyebrows\", '\\ue72b'),\n    ANGRY_FACE_OPEN_MOUTH_EYEBROWS(\"hwf-angry-face-open-mouth-eyebrows\", '\\ue739'),\n    ANGRY_FACE_TEETH(\"hwf-angry-face-teeth\", '\\ue735'),\n    ASTONISHED_FACE(\"hwf-astonished-face\", '\\ue74c'),\n    ASTONISHED_FACE2(\"hwf-astonished-face2\", '\\ue74d'),\n    AWARD(\"hwf-award\", '\\ue6b5'),\n    AWARD2(\"hwf-award2\", '\\ue6b6'),\n    AWARD3(\"hwf-award3\", '\\ue6b7'),\n    AWARD4(\"hwf-award4\", '\\ue6b8'),\n    BAROMETER(\"hwf-barometer\", '\\ue6fc'),\n    BASEBALL(\"hwf-baseball\", '\\ue698'),\n    BASEBALL_SET(\"hwf-baseball-set\", '\\ue6a1'),\n    BASKETBALL(\"hwf-basketball\", '\\ue697'),\n    BASKETBALL2(\"hwf-basketball2\", '\\ue6a0'),\n    BASKETBALL_HOOP(\"hwf-basketball-hoop\", '\\ue6aa'),\n    BILLIARD_BALL(\"hwf-billiard-ball\", '\\ue69b'),\n    BOOK(\"hwf-book\", '\\ue61d'),\n    BOOKMARK(\"hwf-bookmark\", '\\ue611'),\n    BOOKMARK_ADD(\"hwf-bookmark-add\", '\\ue612'),\n    BOOKMARK_REMOVE(\"hwf-bookmark-remove\", '\\ue613'),\n    BOOK_BOOKMARK(\"hwf-book-bookmark\", '\\ue61e'),\n    BOWLING_BALL(\"hwf-bowling-ball\", '\\ue69a'),\n    BOWLING_PINS(\"hwf-bowling-pins\", '\\ue6c3'),\n    BOWLING_PIN_BALL(\"hwf-bowling-pin-ball\", '\\ue6c4'),\n    BOX(\"hwf-box\", '\\ue68a'),\n    BOX2(\"hwf-box2\", '\\ue68c'),\n    BOX3(\"hwf-box3\", '\\ue68d'),\n    BOXING_GLOVE(\"hwf-boxing-glove\", '\\ue6bb'),\n    BOX_BOOKMARK(\"hwf-box-bookmark\", '\\ue68e'),\n    BOX_FILLED(\"hwf-box-filled\", '\\ue68b'),\n    CERTIFICATE(\"hwf-certificate\", '\\ue688'),\n    CHECKERED_FLAG(\"hwf-checkered-flag\", '\\ue6be'),\n    CLIPBOARD(\"hwf-clipboard\", '\\ue622'),\n    CLIPBOARD_ADD(\"hwf-clipboard-add\", '\\ue620'),\n    CLIPBOARD_CHECKED(\"hwf-clipboard-checked\", '\\ue625'),\n    CLIPBOARD_DOWNLOAD(\"hwf-clipboard-download\", '\\ue623'),\n    CLIPBOARD_EDIT(\"hwf-clipboard-edit\", '\\ue61f'),\n    CLIPBOARD_LIST(\"hwf-clipboard-list\", '\\ue627'),\n    CLIPBOARD_MOVE(\"hwf-clipboard-move\", '\\ue6b4'),\n    CLIPBOARD_REMOVE(\"hwf-clipboard-remove\", '\\ue621'),\n    CLIPBOARD_TEXT(\"hwf-clipboard-text\", '\\ue626'),\n    CLIPBOARD_UPLOAD(\"hwf-clipboard-upload\", '\\ue624'),\n    CLOUD(\"hwf-cloud\", '\\ue682'),\n    CLOUD2(\"hwf-cloud2\", '\\ue6c9'),\n    CLOUDS(\"hwf-clouds\", '\\ue6dc'),\n    CLOUDS2(\"hwf-clouds2\", '\\ue6f0'),\n    CLOUD_ADD(\"hwf-cloud-add\", '\\ue6dd'),\n    CLOUD_DOWNLOAD(\"hwf-cloud-download\", '\\ue67f'),\n    CLOUD_ERROR(\"hwf-cloud-error\", '\\ue681'),\n    CLOUD_ERROR2(\"hwf-cloud-error2\", '\\ue6df'),\n    CLOUD_FOG(\"hwf-cloud-fog\", '\\ue6e0'),\n    CLOUD_LIGHTNING(\"hwf-cloud-lightning\", '\\ue6d2'),\n    CLOUD_MOON(\"hwf-cloud-moon\", '\\ue6cb'),\n    CLOUD_MOON_FOG(\"hwf-cloud-moon-fog\", '\\ue6e2'),\n    CLOUD_MOON_LIGHTNING(\"hwf-cloud-moon-lightning\", '\\ue6d4'),\n    CLOUD_MOON_RAIN(\"hwf-cloud-moon-rain\", '\\ue6ce'),\n    CLOUD_MOON_RAINDROPS(\"hwf-cloud-moon-raindrops\", '\\ue6d8'),\n    CLOUD_MOON_SNOW(\"hwf-cloud-moon-snow\", '\\ue6d1'),\n    CLOUD_MOON_SNOWFLAKES(\"hwf-cloud-moon-snowflakes\", '\\ue6db'),\n    CLOUD_RAIN(\"hwf-cloud-rain\", '\\ue6cc'),\n    CLOUD_RAINDROPS(\"hwf-cloud-raindrops\", '\\ue6d6'),\n    CLOUD_REMOVE(\"hwf-cloud-remove\", '\\ue6de'),\n    CLOUD_SNOW(\"hwf-cloud-snow\", '\\ue6cf'),\n    CLOUD_SNOWFLAKES(\"hwf-cloud-snowflakes\", '\\ue6d9'),\n    CLOUD_SUN(\"hwf-cloud-sun\", '\\ue6ca'),\n    CLOUD_SUN_FOG(\"hwf--cloud-sun-fog\", '\\ue6e1'),\n    CLOUD_SUN_LIGHTNING(\"hwf-cloud-sun-lightning\", '\\ue6d3'),\n    CLOUD_SUN_RAIN(\"hwf-cloud-sun-rain\", '\\ue6cd'),\n    CLOUD_SUN_RAINDROPS(\"hwf-cloud-sun-raindrops\", '\\ue6d7'),\n    CLOUD_SUN_SNOW(\"hwf-cloud-sun-snow\", '\\ue6d0'),\n    CLOUD_SUN_SNOWFLAKES(\"hwf-cloud-sun-snowflakes\", '\\ue6da'),\n    CLOUD_UPLOAD(\"hwf-cloud-upload\", '\\ue680'),\n    CLOUD_WIND(\"hwf-cloud-wind\", '\\ue6d5'),\n    COMBINATION_LOCK(\"hwf-combination-lock\", '\\ue677'),\n    COMPASS(\"hwf-compass\", '\\ue706'),\n    COMPASS2(\"hwf-compass2\", '\\ue707'),\n    COMPASS3(\"hwf-compass3\", '\\ue708'),\n    COMPASS4(\"hwf-compass4\", '\\ue709'),\n    COMPASS_EAST(\"hwf-compass-east\", '\\ue6ff'),\n    COMPASS_NORTH(\"hwf-compass-north\", '\\ue6fd'),\n    COMPASS_SOUTH(\"hwf-compass-south\", '\\ue700'),\n    COMPASS_WEST(\"hwf-compass-west\", '\\ue6fe'),\n    CRESCENT(\"hwf-crescent\", '\\ue6f5'),\n    CRESCENT2(\"hwf-crescent2\", '\\ue6fb'),\n    DEGREE_CELSIUS(\"hwf-degree-celsius\", '\\ue704'),\n    DEGREE_FAHRENHEIT(\"hwf-degree-fahrenheit\", '\\ue703'),\n    DIVING_GOGGLES(\"hwf-diving-goggles\", '\\ue6c5'),\n    DOCUMENT(\"hwf-document\", '\\ue635'),\n    DOCUMENTS(\"hwf-documents\", '\\ue646'),\n    DOCUMENTS2(\"hwf-documents2\", '\\ue647'),\n    DOCUMENT_ADD(\"hwf-document-add\", '\\ue64f'),\n    DOCUMENT_BOOKMARK(\"hwf-document-bookmark\", '\\ue63a'),\n    DOCUMENT_CANCEL(\"hwf-document-cancel\", '\\ue64d'),\n    DOCUMENT_CERTIFICATE(\"hwf-document-certificate\", '\\ue687'),\n    DOCUMENT_CHECKED(\"hwf-document-checked\", '\\ue64e'),\n    DOCUMENT_CLOUD(\"hwf-document-cloud\", '\\ue645'),\n    DOCUMENT_CODE(\"hwf-document-code\", '\\ue644'),\n    DOCUMENT_DIAGRAMS(\"hwf-document-diagrams\", '\\ue63b'),\n    DOCUMENT_DOWNLOAD(\"hwf-document-download\", '\\ue638'),\n    DOCUMENT_EDIT(\"hwf-document-edit\", '\\ue686'),\n    DOCUMENT_ERROR(\"hwf-document-error\", '\\ue64c'),\n    DOCUMENT_FILE_3GP(\"hwf-document-file-3gp\", '\\ue7fa'),\n    DOCUMENT_FILE_AAC(\"hwf-document-file-aac\", '\\ue7fc'),\n    DOCUMENT_FILE_AI(\"hwf-document-file-ai\", '\\ue7d2'),\n    DOCUMENT_FILE_AIFF(\"hwf-document-file-aiff\", '\\ue7fb'),\n    DOCUMENT_FILE_APP(\"hwf-document-file-app\", '\\ue7c6'),\n    DOCUMENT_FILE_ASP(\"hwf-document-file-asp\", '\\ue7e5'),\n    DOCUMENT_FILE_AVI(\"hwf-document-file-avi\", '\\ue7ec'),\n    DOCUMENT_FILE_BMP(\"hwf-document-file-bmp\", '\\ue7d3'),\n    DOCUMENT_FILE_C(\"hwf-document-file-c\", '\\ue7da'),\n    DOCUMENT_FILE_CPP(\"hwf-document-file-cpp\", '\\ue7dd'),\n    DOCUMENT_FILE_CSS(\"hwf-document-file-css\", '\\ue7cf'),\n    DOCUMENT_FILE_DAT(\"hwf-document-file-dat\", '\\ue7e7'),\n    DOCUMENT_FILE_DMG(\"hwf-document-file-dmg\", '\\ue801'),\n    DOCUMENT_FILE_DOC(\"hwf-document-file-doc\", '\\ue7e0'),\n    DOCUMENT_FILE_DOCX(\"hwf-document-file-docx\", '\\ue7e3'),\n    DOCUMENT_FILE_DOT(\"hwf-document-file-dot\", '\\ue7f2'),\n    DOCUMENT_FILE_DOTX(\"hwf-document-file-dotx\", '\\ue7ee'),\n    DOCUMENT_FILE_DWG(\"hwf-document-file-dwg\", '\\ue7d4'),\n    DOCUMENT_FILE_DXF(\"hwf-document-file-dxf\", '\\ue7df'),\n    DOCUMENT_FILE_EPS(\"hwf-document-file-eps\", '\\ue7d5'),\n    DOCUMENT_FILE_EXE(\"hwf-document-file-exe\", '\\ue7eb'),\n    DOCUMENT_FILE_FLV(\"hwf-document-file-flv\", '\\ue7f6'),\n    DOCUMENT_FILE_GIF(\"hwf-document-file-gif\", '\\ue804'),\n    DOCUMENT_FILE_H(\"hwf-document-file-h\", '\\ue7ea'),\n    DOCUMENT_FILE_HTML(\"hwf-document-file-html\", '\\ue7ce'),\n    DOCUMENT_FILE_ICS(\"hwf-document-file-ics\", '\\ue7e6'),\n    DOCUMENT_FILE_ISO(\"hwf-document-file-iso\", '\\ue802'),\n    DOCUMENT_FILE_JAVA(\"hwf-document-file-java\", '\\ue7d0'),\n    DOCUMENT_FILE_JPG(\"hwf-document-file-jpg\", '\\ue7cc'),\n    DOCUMENT_FILE_KEY(\"hwf-document-file-key\", '\\ue7cd'),\n    DOCUMENT_FILE_M4V(\"hwf-document-file-m4v\", '\\ue7f5'),\n    DOCUMENT_FILE_MID(\"hwf-document-file-mid\", '\\ue7f9'),\n    DOCUMENT_FILE_MOV(\"hwf-document-file-mov\", '\\ue7cb'),\n    DOCUMENT_FILE_MP3(\"hwf-document-file-mp3\", '\\ue7c9'),\n    DOCUMENT_FILE_MP4(\"hwf-document-file-mp4\", '\\ue7ca'),\n    DOCUMENT_FILE_MPG(\"hwf-document-file-mpg\", '\\ue7f7'),\n    DOCUMENT_FILE_NUMBERS(\"hwf-document-file-numbers\", '\\ue7c4'),\n    DOCUMENT_FILE_ODP(\"hwf-document-file-odp\", '\\ue7ed'),\n    DOCUMENT_FILE_ODS(\"hwf-document-file-ods\", '\\ue7f0'),\n    DOCUMENT_FILE_ODT(\"hwf-document-file-odt\", '\\ue7e1'),\n    DOCUMENT_FILE_OTS(\"hwf-document-file-ots\", '\\ue7d7'),\n    DOCUMENT_FILE_OTT(\"hwf-document-file-ott\", '\\ue7ff'),\n    DOCUMENT_FILE_PAGES(\"hwf-document-file-pages\", '\\ue7c5'),\n    DOCUMENT_FILE_PDF(\"hwf-document-file-pdf\", '\\ue7c8'),\n    DOCUMENT_FILE_PHP(\"hwf-document-file-php\", '\\ue7d8'),\n    DOCUMENT_FILE_PNG(\"hwf-document-file-png\", '\\ue7c7'),\n    DOCUMENT_FILE_PPS(\"hwf-document-file-pps\", '\\ue7f1'),\n    DOCUMENT_FILE_PPT(\"hwf-document-file-ppt\", '\\ue7e4'),\n    DOCUMENT_FILE_PSD(\"hwf-document-file-psd\", '\\ue7d1'),\n    DOCUMENT_FILE_PY(\"hwf-document-file-py\", '\\ue7d9'),\n    DOCUMENT_FILE_QT(\"hwf-document-file-qt\", '\\ue7f8'),\n    DOCUMENT_FILE_RAR(\"hwf-document-file-rar\", '\\ue803'),\n    DOCUMENT_FILE_RB(\"hwf-document-file-rb\", '\\ue7dc'),\n    DOCUMENT_FILE_RTF(\"hwf-document-file-rtf\", '\\ue7f4'),\n    DOCUMENT_FILE_SQL(\"hwf-document-file-sql\", '\\ue7db'),\n    DOCUMENT_FILE_TGA(\"hwf-document-file-tga\", '\\ue7de'),\n    DOCUMENT_FILE_TGZ(\"hwf-document-file-tgz\", '\\ue800'),\n    DOCUMENT_FILE_TIFF(\"hwf-document-file-tiff\", '\\ue7d6'),\n    DOCUMENT_FILE_TXT(\"hwf-document-file-txt\", '\\ue7f3'),\n    DOCUMENT_FILE_WAV(\"hwf-document-file-wav\", '\\ue7fd'),\n    DOCUMENT_FILE_XLS(\"hwf-document-file-xls\", '\\ue7e2'),\n    DOCUMENT_FILE_XLSX(\"hwf-document-file-xlsx\", '\\ue7ef'),\n    DOCUMENT_FILE_XML(\"hwf-document-file-xml\", '\\ue7e8'),\n    DOCUMENT_FILE_YML(\"hwf-document-file-yml\", '\\ue7e9'),\n    DOCUMENT_FILE_ZIP(\"hwf-document-file-zip\", '\\ue7fe'),\n    DOCUMENT_FONT(\"hwf-document-font\", '\\ue655'),\n    DOCUMENT_FORBIDDEN(\"hwf-document-forbidden\", '\\ue651'),\n    DOCUMENT_GRAPH(\"hwf-document-graph\", '\\ue641'),\n    DOCUMENT_INFORMATION(\"hwf-document-information\", '\\ue652'),\n    DOCUMENT_LIST(\"hwf-document-list\", '\\ue654'),\n    DOCUMENT_LOCKED(\"hwf-document-locked\", '\\ue64b'),\n    DOCUMENT_MOVIE(\"hwf-document-movie\", '\\ue63f'),\n    DOCUMENT_MUSIC(\"hwf-document-music\", '\\ue63e'),\n    DOCUMENT_PLAY(\"hwf-document-play\", '\\ue640'),\n    DOCUMENT_RECORDING(\"hwf-document-recording\", '\\ue63c'),\n    DOCUMENT_REMOVE(\"hwf-document-remove\", '\\ue650'),\n    DOCUMENT_SCAN(\"hwf-document-scan\", '\\ue67e'),\n    DOCUMENT_SEARCH(\"hwf-document-search\", '\\ue648'),\n    DOCUMENT_SHRED(\"hwf-document-shred\", '\\ue67c'),\n    DOCUMENT_STAR(\"hwf-document-star\", '\\ue649'),\n    DOCUMENT_TABLE(\"hwf-document-table\", '\\ue63d'),\n    DOCUMENT_TEXT(\"hwf-document-text\", '\\ue636'),\n    DOCUMENT_TEXT2(\"hwf-document-text2\", '\\ue637'),\n    DOCUMENT_TEXT3(\"hwf-document-text3\", '\\ue643'),\n    DOCUMENT_TIME(\"hwf-document-time\", '\\ue642'),\n    DOCUMENT_UNLOCKED(\"hwf-document-unlocked\", '\\ue64a'),\n    DOCUMENT_UPLOAD(\"hwf-document-upload\", '\\ue639'),\n    DOCUMENT_ZIP(\"hwf-document-zip\", '\\ue66b'),\n    EYE(\"hwf-eye\", '\\ue615'),\n    EYE_HIDDEN(\"hwf-eye-hidden\", '\\ue614'),\n    FACE_CLOSED_EYES_OPEN_MOUTH(\"hwf-face-closed-eyes-open-mouth\", '\\ue741'),\n    FACE_CLOSED_EYES_OPEN_MOUTH2(\"hwf-face-closed-eyes-open-mouth2\", '\\ue742'),\n    FACE_CLOSED_EYES_OPEN_MOUTH3(\"hwf-face-closed-eyes-open-mouth3\", '\\ue743'),\n    FACE_CLOSED_MEYES(\"hwf-face-closed-meyes\", '\\ue73d'),\n    FACE_GLASSES(\"hwf-face-glasses\", '\\ue750'),\n    FACE_MISSING_MOTH(\"hwf-face-missing-moth\", '\\ue716'),\n    FACE_MOUSTACHE(\"hwf-face-moustache\", '\\ue74e'),\n    FACE_MOUSTACHE2(\"hwf-face-moustache2\", '\\ue74f'),\n    FACE_OPEN_MOUTH(\"hwf-face-open-mouth\", '\\ue71a'),\n    FACE_OPEN_MOUTH2(\"hwf-face-open-mouth2\", '\\ue71b'),\n    FACE_OPEN_MOUTH_EYEBROWS(\"hwf-face-open-mouth-eyebrows\", '\\ue737'),\n    FACE_OPEN_MOUTH_EYEBROWS2(\"hwf-face-open-mouth-eyebrows2\", '\\ue738'),\n    FACE_STUCK_OUT_TONGUE(\"hwf-face-stuck-out-tongue\", '\\ue731'),\n    FACE_STUCK_OUT_TONGUE2(\"hwf-face-stuck-out-tongue2\", '\\ue732'),\n    FACE_SUNGLASSES(\"hwf-face-sunglasses\", '\\ue751'),\n    FAKE_GRINNING_FACE_EYEBROWS(\"hwf-fake-grinning-face-eyebrows\", '\\ue72f'),\n    FILE_3GP(\"hwf-file-3gp\", '\\ue7b9'),\n    FILE_AAC(\"hwf-file-aac\", '\\ue7bb'),\n    FILE_AI(\"hwf-file-ai\", '\\ue791'),\n    FILE_AIFF(\"hwf-file-aiff\", '\\ue7ba'),\n    FILE_APP(\"hwf-file-app\", '\\ue785'),\n    FILE_ASP(\"hwf-file-asp\", '\\ue7a4'),\n    FILE_AVI(\"hwf-file-avi\", '\\ue7ab'),\n    FILE_BMP(\"hwf-file-bmp\", '\\ue792'),\n    FILE_C(\"hwf-file-c\", '\\ue799'),\n    FILE_CPP(\"hwf-file-cpp\", '\\ue79c'),\n    FILE_CSS(\"hwf-file-css\", '\\ue78e'),\n    FILE_DAT(\"hwf-file-dat\", '\\ue7a6'),\n    FILE_DMG(\"hwf-file-dmg\", '\\ue7c0'),\n    FILE_DOC(\"hwf-file-doc\", '\\ue79f'),\n    FILE_DOCX(\"hwf-file-docx\", '\\ue7a2'),\n    FILE_DOT(\"hwf-file-dot\", '\\ue7b1'),\n    FILE_DOTX(\"hwf-file-dotx\", '\\ue7ad'),\n    FILE_DWG(\"hwf-file-dwg\", '\\ue793'),\n    FILE_DXF(\"hwf-file-dxf\", '\\ue79e'),\n    FILE_EPS(\"hwf-file-eps\", '\\ue794'),\n    FILE_EXE(\"hwf-file-exe\", '\\ue7aa'),\n    FILE_FLV(\"hwf-file-flv\", '\\ue7b5'),\n    FILE_GIF(\"hwf-file-gif\", '\\ue7c3'),\n    FILE_H(\"hwf-file-h\", '\\ue7a9'),\n    FILE_HTML(\"hwf-file-html\", '\\ue78d'),\n    FILE_ICS(\"hwf-file-ics\", '\\ue7a5'),\n    FILE_ISO(\"hwf-file-iso\", '\\ue7c1'),\n    FILE_JAVA(\"hwf-file-java\", '\\ue78f'),\n    FILE_JPG(\"hwf-file-jpg\", '\\ue78b'),\n    FILE_KEY(\"hwf-file-key\", '\\ue78c'),\n    FILE_M4V(\"hwf-file-m4v\", '\\ue7b4'),\n    FILE_MID(\"hwf-file-mid\", '\\ue7b8'),\n    FILE_MOV(\"hwf-file-mov\", '\\ue78a'),\n    FILE_MP3(\"hwf-file-mp3\", '\\ue788'),\n    FILE_MP4(\"hwf-file-mp4\", '\\ue789'),\n    FILE_MPG(\"hwf-file-mpg\", '\\ue7b6'),\n    FILE_NUMBERS(\"hwf-file-numbers\", '\\ue783'),\n    FILE_ODP(\"hwf-file-odp\", '\\ue7ac'),\n    FILE_ODS(\"hwf-file-ods\", '\\ue7af'),\n    FILE_ODT(\"hwf-file-odt\", '\\ue7a0'),\n    FILE_OTS(\"hwf-file-ots\", '\\ue796'),\n    FILE_OTT(\"hwf-file-ott\", '\\ue7be'),\n    FILE_PAGES(\"hwf-file-pages\", '\\ue784'),\n    FILE_PDF(\"hwf-file-pdf\", '\\ue787'),\n    FILE_PHP(\"hwf-file-php\", '\\ue797'),\n    FILE_PNG(\"hwf-file-png\", '\\ue786'),\n    FILE_PPS(\"hwf-file-pps\", '\\ue7b0'),\n    FILE_PPT(\"hwf-file-ppt\", '\\ue7a3'),\n    FILE_PSD(\"hwf-file-psd\", '\\ue790'),\n    FILE_PY(\"hwf-file-py\", '\\ue798'),\n    FILE_QUICKTIME(\"hwf-file-quicktime\", '\\ue7b7'),\n    FILE_RAR(\"hwf-file-rar\", '\\ue7c2'),\n    FILE_RB(\"hwf-file-rb\", '\\ue79b'),\n    FILE_RTF(\"hwf-file-rtf\", '\\ue7b3'),\n    FILE_SQL(\"hwf-file-sql\", '\\ue79a'),\n    FILE_TGA(\"hwf-file-tga\", '\\ue79d'),\n    FILE_TGZ(\"hwf-file-tgz\", '\\ue7bf'),\n    FILE_TIFF(\"hwf-file-tiff\", '\\ue795'),\n    FILE_TXT(\"hwf-file-txt\", '\\ue7b2'),\n    FILE_WAV(\"hwf-file-wav\", '\\ue7bc'),\n    FILE_XLS(\"hwf-file-xls\", '\\ue7a1'),\n    FILE_XLSX(\"hwf-file-xlsx\", '\\ue7ae'),\n    FILE_XML(\"hwf-file-xml\", '\\ue7a7'),\n    FILE_YML(\"hwf-file-yml\", '\\ue7a8'),\n    FILE_ZIP(\"hwf-file-zip\", '\\ue7bd'),\n    FLAG(\"hwf-flag\", '\\ue60d'),\n    FLAG2(\"hwf-flag2\", '\\ue60e'),\n    FLAG3(\"hwf-flag3\", '\\ue60f'),\n    FLAG4(\"hwf-flag4\", '\\ue610'),\n    FLASHED_FACE(\"hwf-flashed-face\", '\\ue713'),\n    FLASHED_FACE2(\"hwf-flashed-face2\", '\\ue714'),\n    FLASHED_FACE_GLASSES(\"hwf-flashed-face-glasses\", '\\ue715'),\n    FOLDER(\"hwf-folder\", '\\ue65c'),\n    FOLDER2(\"hwf-folder2\", '\\ue65d'),\n    FOLDERS(\"hwf-folders\", '\\ue65e'),\n    FOLDER_ADD(\"hwf-folder-add\", '\\ue667'),\n    FOLDER_BOOKMARK(\"hwf-folder-bookmark\", '\\ue66a'),\n    FOLDER_CANCEL(\"hwf-folder-cancel\", '\\ue665'),\n    FOLDER_CHECKED(\"hwf-folder-checked\", '\\ue666'),\n    FOLDER_DOWNLOAD(\"hwf-folder-download\", '\\ue65f'),\n    FOLDER_ERROR(\"hwf-folder-error\", '\\ue664'),\n    FOLDER_FORBIDDEN(\"hwf-folder-forbidden\", '\\ue669'),\n    FOLDER_INFORMATION(\"hwf-folder-information\", '\\ue653'),\n    FOLDER_LOCKED(\"hwf-folder-locked\", '\\ue662'),\n    FOLDER_REMOVE(\"hwf-folder-remove\", '\\ue668'),\n    FOLDER_SEARCH(\"hwf-folder-search\", '\\ue663'),\n    FOLDER_UNLOCKED(\"hwf-folder-unlocked\", '\\ue661'),\n    FOLDER_UPLOAD(\"hwf-folder-upload\", '\\ue660'),\n    FOOTBALL(\"hwf-football\", '\\ue69e'),\n    FOOTBALL2(\"hwf-football2\", '\\ue69f'),\n    FULL_MOON(\"hwf-full-moon\", '\\ue6f4'),\n    GIBBOUS_MOON(\"hwf-gibbous-moon\", '\\ue6f7'),\n    GIBBOUS_MOON2(\"hwf-gibbous-moon2\", '\\ue6f9'),\n    GOLF(\"hwf-golf\", '\\ue6b2'),\n    GRINNING_FACE(\"hwf-grinning-face\", '\\ue72c'),\n    GRINNING_FACE2(\"hwf-grinning-face2\", '\\ue746'),\n    GRINNING_FACE_EYEBROWS(\"hwf-grinning-face-eyebrows\", '\\ue725'),\n    GRINNING_FACE_EYEBROWS2(\"hwf-grinning-face-eyebrows2\", '\\ue72e'),\n    GRINNING_FACE_TEETH(\"hwf-grinning-face-teeth\", '\\ue734'),\n    GRINNING_FACE_TEETH2(\"hwf-grinning-face-teeth2\", '\\ue736'),\n    HALF_MOON(\"hwf-half-moon\", '\\ue6f6'),\n    HALF_MOON2(\"hwf-half-moon2\", '\\ue6fa'),\n    HIGH_FIVE(\"hwf-high-five\", '\\ue755'),\n    HOCKEY_STICK(\"hwf-hockey-stick\", '\\ue6af'),\n    HOCKEY_STICKS(\"hwf-hockey-sticks\", '\\ue6b0'),\n    ICE_SKATE(\"hwf-ice-skate\", '\\ue6c8'),\n    INBOX(\"hwf-inbox\", '\\ue656'),\n    INBOXES(\"hwf-inboxes\", '\\ue657'),\n    INBOX_DOCUMENT(\"hwf-inbox-document\", '\\ue658'),\n    INBOX_DOCUMENT_TEXT(\"hwf-inbox-document-text\", '\\ue659'),\n    INBOX_DOWNLOAD(\"hwf-inbox-download\", '\\ue65a'),\n    INBOX_FILLED(\"hwf-inbox-filled\", '\\ue683'),\n    INBOX_UPLOAD(\"hwf-inbox-upload\", '\\ue65b'),\n    INFORMATION(\"hwf-information\", '\\ue61b'),\n    INFORMATION2(\"hwf-information2\", '\\ue61c'),\n    KEY(\"hwf-key\", '\\ue617'),\n    KEY2(\"hwf-key2\", '\\ue618'),\n    KISSING_FACE(\"hwf-kissing-face\", '\\ue733'),\n    KISSING_FACE2(\"hwf-kissing-face2\", '\\ue73c'),\n    LAUGHING_FACE(\"hwf-laughing-face\", '\\ue71d'),\n    LAUGHING_FACE2(\"hwf-laughing-face2\", '\\ue71e'),\n    LAUGHING_FACE3(\"hwf-laughing-face3\", '\\ue744'),\n    LIGHTNING(\"hwf-lightning\", '\\ue710'),\n    LOCK(\"hwf-lock\", '\\ue670'),\n    LOCK_OPEN(\"hwf-lock-open\", '\\ue671'),\n    LOCK_OPEN2(\"hwf-lock-open2\", '\\ue672'),\n    LOCK_ROUNDED(\"hwf-lock-rounded\", '\\ue674'),\n    LOCK_ROUNDED_OPEN(\"hwf-lock-rounded-open\", '\\ue675'),\n    LOCK_ROUNDED_OPEN2(\"hwf-lock-rounded-open2\", '\\ue676'),\n    LOCK_STRIPES(\"hwf-lock-stripes\", '\\ue673'),\n    MAIL_ADD(\"hwf-mail-add\", '\\ue60b'),\n    MAIL_CANCEL(\"hwf-mail-cancel\", '\\ue609'),\n    MAIL_CHECKED(\"hwf-mail-checked\", '\\ue608'),\n    MAIL_ENVELOPE(\"hwf-mail-envelope\", '\\ue600'),\n    MAIL_ENVELOPE_CLOSED(\"hwf-mail-envelope-closed\", '\\ue602'),\n    MAIL_ENVELOPE_CLOSED2(\"hwf-mail-envelope-closed2\", '\\ue605'),\n    MAIL_ENVELOPE_OPEN(\"hwf-mail-envelope-open\", '\\ue601'),\n    MAIL_ENVELOPE_OPEN2(\"hwf-mail-envelope-open2\", '\\ue603'),\n    MAIL_ENVELOPE_OPEN3(\"hwf-mail-envelope-open3\", '\\ue604'),\n    MAIL_ENVELOPE_OPEN4(\"hwf-mail-envelope-open4\", '\\ue606'),\n    MAIL_ERROR(\"hwf-mail-error\", '\\ue607'),\n    MAIL_REMOVE(\"hwf-mail-remove\", '\\ue60c'),\n    MAIL__FORBIDDEN(\"hwf-mail--forbidden\", '\\ue60a'),\n    MEDAL(\"hwf-medal\", '\\ue6a6'),\n    MEDAL2(\"hwf-medal2\", '\\ue6a7'),\n    MEDAL3(\"hwf-medal3\", '\\ue6b9'),\n    MEDAL4(\"hwf-medal4\", '\\ue6ba'),\n    MIDDLE_FINGER(\"hwf-middle-finger\", '\\ue753'),\n    MOON(\"hwf-moon\", '\\ue6e4'),\n    MOON2(\"hwf-moon2\", '\\ue6f8'),\n    MOONRISE(\"hwf-moonrise\", '\\ue6f1'),\n    MOONSET(\"hwf-moonset\", '\\ue6f2'),\n    MOON_STARS(\"hwf-moon-stars\", '\\ue6e3'),\n    MOVE(\"hwf-move\", '\\ue6b3'),\n    NEUTRAL_FACE(\"hwf-neutral-face\", '\\ue717'),\n    NEUTRAL_FACE2(\"hwf-neutral-face2\", '\\ue721'),\n    NEUTRAL_FACE_EYEBROWS(\"hwf-neutral-face-eyebrows\", '\\ue727'),\n    NOTE(\"hwf-note\", '\\ue628'),\n    NOTEBOOK(\"hwf-notebook\", '\\ue62f'),\n    NOTEBOOK2(\"hwf-notebook2\", '\\ue630'),\n    NOTEBOOK3(\"hwf-notebook3\", '\\ue631'),\n    NOTEBOOK4(\"hwf-notebook4\", '\\ue632'),\n    NOTEBOOK_LIST(\"hwf-notebook-list\", '\\ue634'),\n    NOTEBOOK_TEXT(\"hwf-notebook-text\", '\\ue633'),\n    NOTE_ADD(\"hwf-note-add\", '\\ue629'),\n    NOTE_CHECKED(\"hwf-note-checked\", '\\ue62d'),\n    NOTE_IMPORTANT(\"hwf-note-important\", '\\ue62e'),\n    NOTE_LIST(\"hwf-note-list\", '\\ue62c'),\n    NOTE_REMOVE(\"hwf-note-remove\", '\\ue62a'),\n    NOTE_TEXT(\"hwf-note-text\", '\\ue62b'),\n    ONE_FINGER(\"hwf-one-finger\", '\\ue767'),\n    ONE_FINGER_CLICK(\"hwf-one-finger-click\", '\\ue76c'),\n    ONE_FINGER_CLICK2(\"hwf-one-finger-click2\", '\\ue77a'),\n    ONE_FINGER_DOUBLE_TAP(\"hwf-one-finger-double-tap\", '\\ue768'),\n    ONE_FINGER_DOUBLE_TAP2(\"hwf-one-finger-double-tap2\", '\\ue774'),\n    ONE_FINGER_SWIPE(\"hwf-one-finger-swipe\", '\\ue77c'),\n    ONE_FINGER_SWIPE_DOWN(\"hwf-one-finger-swipe-down\", '\\ue766'),\n    ONE_FINGER_SWIPE_DOWN2(\"hwf-one-finger-swipe-down2\", '\\ue782'),\n    ONE_FINGER_SWIPE_HORIZONTALLY(\"hwf-one-finger-swipe-horizontally\", '\\ue77b'),\n    ONE_FINGER_SWIPE_LEFT(\"hwf-one-finger-swipe-left\", '\\ue763'),\n    ONE_FINGER_SWIPE_LEFT2(\"hwf-one-finger-swipe-left2\", '\\ue77f'),\n    ONE_FINGER_SWIPE_RIGHT(\"hwf-one-finger-swipe-right\", '\\ue764'),\n    ONE_FINGER_SWIPE_RIGHT2(\"hwf-one-finger-swipe-right2\", '\\ue780'),\n    ONE_FINGER_SWIPE_UP(\"hwf-one-finger-swipe-up\", '\\ue765'),\n    ONE_FINGER_SWIPE_UP2(\"hwf-one-finger-swipe-up2\", '\\ue781'),\n    ONE_FINGER_TAP(\"hwf-one-finger-tap\", '\\ue769'),\n    ONE_FINGER_TAP2(\"hwf-one-finger-tap2\", '\\ue778'),\n    ONE_FINGER_TAP_HOLD(\"hwf-one-finger-tap-hold\", '\\ue76a'),\n    ONE_FINGER_TAP_HOLD2(\"hwf-one-finger-tap-hold2\", '\\ue779'),\n    PACKAGE(\"hwf-package\", '\\ue689'),\n    PAPERCLIP(\"hwf-paperclip\", '\\ue696'),\n    PEN(\"hwf-pen\", '\\ue684'),\n    PEN_ANGLED(\"hwf-pen-angled\", '\\ue685'),\n    PRINTER(\"hwf-printer\", '\\ue678'),\n    PRINTER2(\"hwf-printer2\", '\\ue679'),\n    PRINTER_TEXT(\"hwf-printer-text\", '\\ue67a'),\n    PRINTER_TEXT2(\"hwf-printer-text2\", '\\ue67b'),\n    RAINBOW(\"hwf-rainbow\", '\\ue6ea'),\n    RAINDROP(\"hwf-raindrop\", '\\ue6ed'),\n    RAINDROPS(\"hwf-raindrops\", '\\ue6ec'),\n    ROCK_N_ROLL(\"hwf-rock-n-roll\", '\\ue754'),\n    SAD_FACE(\"hwf-sad-face\", '\\ue719'),\n    SAD_FACE2(\"hwf-sad-face2\", '\\ue722'),\n    SAD_FACE3(\"hwf-sad-face3\", '\\ue72d'),\n    SAD_FACE4(\"hwf-sad-face4\", '\\ue747'),\n    SAD_FACE5(\"hwf-sad-face5\", '\\ue748'),\n    SAD_FACE6(\"hwf-sad-face6\", '\\ue74a'),\n    SAD_FACE_CLOSED_EYES(\"hwf-sad-face-closed-eyes\", '\\ue749'),\n    SAD_FACE_EYEBROWS(\"hwf-sad-face-eyebrows\", '\\ue726'),\n    SAD_FACE__TIGHTLY_CLOSED_EYES(\"hwf-sad-face--tightly-closed-eyes\", '\\ue73b'),\n    SAILING_BOAT(\"hwf-sailing-boat\", '\\ue6c1'),\n    SAILING_BOAT_WATER(\"hwf-sailing-boat-water\", '\\ue6c2'),\n    SEARCH(\"hwf-search\", '\\ue66d'),\n    SEARCH_MINUS(\"hwf-search-minus\", '\\ue66f'),\n    SEARCH_PLUS(\"hwf-search-plus\", '\\ue66e'),\n    SHREDDER(\"hwf-shredder\", '\\ue67d'),\n    SHUTTLECOCK(\"hwf-shuttlecock\", '\\ue6b1'),\n    SMILING_FACE(\"hwf-smiling-face\", '\\ue718'),\n    SMILING_FACE2(\"hwf-smiling-face2\", '\\ue723'),\n    SMILING_FACE3(\"hwf-smiling-face3\", '\\ue745'),\n    SMILING_FACE4(\"hwf-smiling-face4\", '\\ue74b'),\n    SMILING_FACE_EYEBROWS(\"hwf-smiling-face-eyebrows\", '\\ue724'),\n    SMIRKING_FACE(\"hwf-smirking-face\", '\\ue71f'),\n    SMIRKING_FACE_SUNGLASSES(\"hwf-smirking-face-sunglasses\", '\\ue752'),\n    SNOWFLAKE(\"hwf-snowflake\", '\\ue712'),\n    SOCCER_BALL(\"hwf-soccer-ball\", '\\ue69c'),\n    SOCCER_COURT(\"hwf-soccer-court\", '\\ue69d'),\n    SOCCER_SHOE(\"hwf-soccer-shoe\", '\\ue6c7'),\n    SPORTS_SHOE(\"hwf-sports-shoe\", '\\ue6c6'),\n    STAR(\"hwf-star\", '\\ue616'),\n    STARS(\"hwf-stars\", '\\ue6ef'),\n    STOP_WATCH(\"hwf-stop-watch\", '\\ue6ad'),\n    STOP_WATCH2(\"hwf-stop-watch2\", '\\ue6ae'),\n    STUBBORN_FACE(\"hwf-stubborn-face\", '\\ue720'),\n    SUN(\"hwf-sun\", '\\ue6e5'),\n    SUNGLASSES(\"hwf-sunglasses\", '\\ue6ee'),\n    SUNRISE(\"hwf-sunrise\", '\\ue6e6'),\n    SUNSET(\"hwf-sunset\", '\\ue6e7'),\n    SUNSET2(\"hwf-sunset2\", '\\ue6e8'),\n    SUNSET3(\"hwf-sunset3\", '\\ue6e9'),\n    TABLE_TENNIS(\"hwf-table-tennis\", '\\ue6ab'),\n    TAG(\"hwf-tag\", '\\ue690'),\n    TAGS(\"hwf-tags\", '\\ue691'),\n    TAG_ADD(\"hwf-tag-add\", '\\ue692'),\n    TAG_CANCEL(\"hwf-tag-cancel\", '\\ue695'),\n    TAG_CHECKED(\"hwf-tag-checked\", '\\ue694'),\n    TAG_CORD(\"hwf-tag-cord\", '\\ue68f'),\n    TAG_REMOVE(\"hwf-tag-remove\", '\\ue693'),\n    TARGET(\"hwf-target\", '\\ue6c0'),\n    TARGET_ARROW(\"hwf-target-arrow\", '\\ue6bf'),\n    TENNIS_BALL(\"hwf-tennis-ball\", '\\ue699'),\n    TENNIS_BALL2(\"hwf-tennis-ball2\", '\\ue6a2'),\n    TENNIS_RACKET(\"hwf-tennis-racket\", '\\ue6a9'),\n    THERMOMETER(\"hwf-thermometer\", '\\ue70a'),\n    THERMOMETER_FULL(\"hwf-thermometer-full\", '\\ue70f'),\n    THERMOMETER_HALF(\"hwf-thermometer-half\", '\\ue70d'),\n    THERMOMETER_LOW(\"hwf-thermometer-low\", '\\ue70b'),\n    THERMOMETER_QUARTER(\"hwf-thermometer-quarter\", '\\ue70c'),\n    THERMOMETER_THREE_QUARTERS(\"hwf-thermometer-three-quarters\", '\\ue70e'),\n    THREE_FINGERS(\"hwf-three-fingers\", '\\ue771'),\n    THREE_FINGERS_DOUBLE_TAP(\"hwf-three-fingers-double-tap\", '\\ue75f'),\n    THREE_FINGERS_DOUBLE_TAP2(\"hwf-three-fingers-double-tap2\", '\\ue772'),\n    THREE_FINGERS_SWIPE_DOWN(\"hwf-three-fingers-swipe-down\", '\\ue770'),\n    THREE_FINGERS_SWIPE_LEFT(\"hwf-three-fingers-swipe-left\", '\\ue76d'),\n    THREE_FINGERS_SWIPE_RIGHT(\"hwf-three-fingers-swipe-right\", '\\ue76e'),\n    THREE_FINGERS_SWIPE_UP(\"hwf-three-fingers-swipe-up\", '\\ue76f'),\n    THUMB_DOWN(\"hwf-thumb-down\", '\\ue757'),\n    THUMB_DOWN2(\"hwf-thumb-down2\", '\\ue759'),\n    THUMB_FINGER_TAP(\"hwf-thumb-finger-tap\", '\\ue76b'),\n    THUMB_UP(\"hwf-thumb-up\", '\\ue756'),\n    THUMB_UP2(\"hwf-thumb-up2\", '\\ue758'),\n    TORNADO(\"hwf-tornado\", '\\ue702'),\n    TRASH_CAN(\"hwf-trash-can\", '\\ue619'),\n    TRASH_CAN2(\"hwf-trash-can2\", '\\ue61a'),\n    TROPHY(\"hwf-trophy\", '\\ue6a3'),\n    TROPHY2(\"hwf-trophy2\", '\\ue6a5'),\n    TROPHY_ONE(\"hwf-trophy-one\", '\\ue6a4'),\n    TWO_FINGERS(\"hwf-two-fingers\", '\\ue75e'),\n    TWO_FINGERS_DOUBLE_TAP(\"hwf-two-fingers-double-tap\", '\\ue77d'),\n    TWO_FINGERS_RESIZE_IN(\"hwf-two-fingers-resize-in\", '\\ue761'),\n    TWO_FINGERS_RESIZE_OUT(\"hwf-two-fingers-resize-out\", '\\ue760'),\n    TWO_FINGERS_ROTATE(\"hwf-two-fingers-rotate\", '\\ue762'),\n    TWO_FINGERS_SWIPE_DOWN(\"hwf-two-fingers-swipe-down\", '\\ue75d'),\n    TWO_FINGERS_SWIPE_DOWN2(\"hwf-two-fingers-swipe-down2\", '\\ue775'),\n    TWO_FINGERS_SWIPE_LEFT(\"hwf-two-fingers-swipe-left\", '\\ue75a'),\n    TWO_FINGERS_SWIPE_LEFT2(\"hwf-two-fingers-swipe-left2\", '\\ue777'),\n    TWO_FINGERS_SWIPE_RIGHT(\"hwf-two-fingers-swipe-right\", '\\ue75b'),\n    TWO_FINGERS_SWIPE_RIGHT2(\"hwf-two-fingers-swipe-right2\", '\\ue776'),\n    TWO_FINGERS_SWIPE_UP(\"hwf-two-fingers-swipe-up\", '\\ue75c'),\n    TWO_FINGERS_SWIPE_UP2(\"hwf-two-fingers-swipe-up2\", '\\ue773'),\n    TWO_FINGERS_TAP(\"hwf-two-fingers-tap\", '\\ue77e'),\n    UMBRELLA(\"hwf-umbrella\", '\\ue6eb'),\n    UNAMUSED_FACE_TIGHTLY_CLOSED_EYES(\"hwf-unamused-face-tightly-closed-eyes\", '\\ue73a'),\n    VOLLEYBALL(\"hwf-volleyball\", '\\ue6ac'),\n    VOLLEYBALL_WATER(\"hwf-volleyball-water\", '\\ue6bd'),\n    WARNING(\"hwf-warning\", '\\ue705'),\n    WEIGHTS(\"hwf-weights\", '\\ue6a8'),\n    WHISTLE(\"hwf-whistle\", '\\ue6bc'),\n    WIND(\"hwf-wind\", '\\ue6f3'),\n    WIND_TURBINE(\"hwf-wind-turbine\", '\\ue711'),\n    WINKING_FACE(\"hwf-winking-face\", '\\ue71c'),\n    WINKING_FACE2(\"hwf-winking-face2\", '\\ue72a'),\n    WORRIED_FACE(\"hwf-worried-face\", '\\ue729'),\n    WORRIED_FACE_EYEBROWS(\"hwf-worried-face-eyebrows\", '\\ue730'),\n    ZIP(\"hwf-zip\", '\\ue66c');\n\n    public static HawconsFilled findByDescription(String description) {\n        for (HawconsFilled font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    HawconsFilled(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-hawcons-pack/src/main/java/org/kordamp/ikonli/hawcons/HawconsFilledIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.hawcons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class HawconsFilledIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/hawcons/20140708/fonts/hawconsfilled.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"hwf-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return HawconsFilled.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Hawcons-Filled\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-hawcons-pack/src/main/java/org/kordamp/ikonli/hawcons/HawconsFilledIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.hawcons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class HawconsFilledIkonProvider implements IkonProvider<HawconsFilled> {\n    @Override\n    public Class<HawconsFilled> getIkon() {\n        return HawconsFilled.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-hawcons-pack/src/main/java/org/kordamp/ikonli/hawcons/HawconsStroke.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.hawcons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum HawconsStroke implements Ikon {\n    AIR_SOCK(\"hws-air-sock\", '\\ue701'),\n    AMUSED_FACE(\"hws-amused-face\", '\\ue73f'),\n    AMUSED_FACE_CLOSED_EYES(\"hws-amused-face-closed-eyes\", '\\ue740'),\n    AMUSED_FACE_CLOSED_EYES2(\"hws-amused-face-closed-eyes2\", '\\ue741'),\n    ANGRY_FACE(\"hws-angry-face\", '\\ue728'),\n    ANGRY_FACE_EYEBROWS(\"hws-angry-face-eyebrows\", '\\ue72b'),\n    ANGRY_FACE_OPEN_MOUTH_EYEBROWS(\"hws-angry-face-open-mouth-eyebrows\", '\\ue73a'),\n    ANGRY_FACE_TEETH(\"hws-angry-face-teeth\", '\\ue735'),\n    ASTONISHED_FACE(\"hws-astonished-face\", '\\ue74d'),\n    ASTONISHED_FACE2(\"hws-astonished-face2\", '\\ue74e'),\n    AWARD(\"hws-award\", '\\ue6b5'),\n    AWARD2(\"hws-award2\", '\\ue6b6'),\n    AWARD3(\"hws-award3\", '\\ue6b7'),\n    AWARD4(\"hws-award4\", '\\ue6b8'),\n    BAROMETER(\"hws-barometer\", '\\ue6fc'),\n    BASEBALL(\"hws-baseball\", '\\ue698'),\n    BASEBALL_SET(\"hws-baseball-set\", '\\ue6a1'),\n    BASKETBALL(\"hws-basketball\", '\\ue697'),\n    BASKETBALL2(\"hws-basketball2\", '\\ue6a0'),\n    BASKETBALL_HOOP(\"hws-basketball-hoop\", '\\ue6aa'),\n    BILLIARD_BALL(\"hws-billiard-ball\", '\\ue69b'),\n    BOOK(\"hws-book\", '\\ue61d'),\n    BOOK_BOOKMARK(\"hws-book-bookmark\", '\\ue61e'),\n    BOOKMARK(\"hws-bookmark\", '\\ue611'),\n    BOOKMARK_ADD(\"hws-bookmark-add\", '\\ue612'),\n    BOOKMARK_REMOVE(\"hws-bookmark-remove\", '\\ue613'),\n    BOWLING_BALL(\"hws-bowling-ball\", '\\ue69a'),\n    BOWLING_PIN_BALL(\"hws-bowling-pin-ball\", '\\ue6c4'),\n    BOWLING_PINS(\"hws-bowling-pins\", '\\ue6c3'),\n    BOX(\"hws-box\", '\\ue68a'),\n    BOX2(\"hws-box2\", '\\ue68c'),\n    BOX3(\"hws-box3\", '\\ue68d'),\n    BOX_BOOKMARK(\"hws-box-bookmark\", '\\ue68e'),\n    BOX_FILLED(\"hws-box-filled\", '\\ue68b'),\n    BOXING_GLOVE(\"hws-boxing-glove\", '\\ue6bb'),\n    CERTIFICATE(\"hws-certificate\", '\\ue688'),\n    CHECKERED_FLAG(\"hws-checkered-flag\", '\\ue6be'),\n    CLIPBOARD(\"hws-clipboard\", '\\ue622'),\n    CLIPBOARD_ADD(\"hws-clipboard-add\", '\\ue620'),\n    CLIPBOARD_CHECKED(\"hws-clipboard-checked\", '\\ue625'),\n    CLIPBOARD_DOWNLOAD(\"hws-clipboard-download\", '\\ue623'),\n    CLIPBOARD_EDIT(\"hws-clipboard-edit\", '\\ue61f'),\n    CLIPBOARD_LIST(\"hws-clipboard-list\", '\\ue627'),\n    CLIPBOARD_MOVE(\"hws-clipboard-move\", '\\ue6b4'),\n    CLIPBOARD_REMOVE(\"hws-clipboard-remove\", '\\ue621'),\n    CLIPBOARD_TEXT(\"hws-clipboard-text\", '\\ue626'),\n    CLIPBOARD_UPLOAD(\"hws-clipboard-upload\", '\\ue624'),\n    CLOUD(\"hws-cloud\", '\\ue682'),\n    CLOUD2(\"hws-cloud2\", '\\ue6c9'),\n    CLOUD_ADD(\"hws-cloud-add\", '\\ue6dd'),\n    CLOUD_DOWNLOAD(\"hws-cloud-download\", '\\ue67f'),\n    CLOUD_ERROR(\"hws-cloud-error\", '\\ue681'),\n    CLOUD_ERROR2(\"hws-cloud-error2\", '\\ue6df'),\n    CLOUD_FOG(\"hws-cloud-fog\", '\\ue6e0'),\n    CLOUD_LIGHTNING(\"hws-cloud-lightning\", '\\ue6d2'),\n    CLOUD_MOON(\"hws-cloud-moon\", '\\ue6cb'),\n    CLOUD_MOON_FOG(\"hws-cloud-moon-fog\", '\\ue6e2'),\n    CLOUD_MOON_LIGHTNING(\"hws-cloud-moon-lightning\", '\\ue6d4'),\n    CLOUD_MOON_RAIN(\"hws-cloud-moon-rain\", '\\ue6ce'),\n    CLOUD_MOON_RAINDROPS(\"hws-cloud-moon-raindrops\", '\\ue6d8'),\n    CLOUD_MOON_SNOW(\"hws-cloud-moon-snow\", '\\ue6d1'),\n    CLOUD_MOON_SNOWFLAKES(\"hws-cloud-moon-snowflakes\", '\\ue6db'),\n    CLOUD_RAIN(\"hws-cloud-rain\", '\\ue6cc'),\n    CLOUD_RAINDROPS(\"hws-cloud-raindrops\", '\\ue6d6'),\n    CLOUD_REMOVE(\"hws-cloud-remove\", '\\ue6de'),\n    CLOUD_SNOW(\"hws-cloud-snow\", '\\ue6cf'),\n    CLOUD_SNOWFLAKES(\"hws-cloud-snowflakes\", '\\ue6d9'),\n    CLOUD_SUN(\"hws-cloud-sun\", '\\ue6ca'),\n    CLOUD_SUN_FOG(\"hws--cloud-sun-fog\", '\\ue6e1'),\n    CLOUD_SUN_LIGHTNING(\"hws-cloud-sun-lightning\", '\\ue6d3'),\n    CLOUD_SUN_RAIN(\"hws-cloud-sun-rain\", '\\ue6cd'),\n    CLOUD_SUN_RAINDROPS(\"hws-cloud-sun-raindrops\", '\\ue6d7'),\n    CLOUD_SUN_SNOW(\"hws-cloud-sun-snow\", '\\ue6d0'),\n    CLOUD_SUN_SNOWFLAKES(\"hws-cloud-sun-snowflakes\", '\\ue6da'),\n    CLOUD_UPLOAD(\"hws-cloud-upload\", '\\ue680'),\n    CLOUD_WIND(\"hws-cloud-wind\", '\\ue6d5'),\n    CLOUDS(\"hws-clouds\", '\\ue6dc'),\n    CLOUDS2(\"hws-clouds2\", '\\ue6f0'),\n    COMBINATION_LOCK(\"hws-combination-lock\", '\\ue677'),\n    COMPASS(\"hws-compass\", '\\ue706'),\n    COMPASS2(\"hws-compass2\", '\\ue707'),\n    COMPASS3(\"hws-compass3\", '\\ue708'),\n    COMPASS4(\"hws-compass4\", '\\ue709'),\n    COMPASS_EAST(\"hws-compass-east\", '\\ue6ff'),\n    COMPASS_NORTH(\"hws-compass-north\", '\\ue6fd'),\n    COMPASS_SOUTH(\"hws-compass-south\", '\\ue700'),\n    COMPASS_WEST(\"hws-compass-west\", '\\ue6fe'),\n    CRESCENT(\"hws-crescent\", '\\ue6f5'),\n    CRESCENT2(\"hws-crescent2\", '\\ue6fb'),\n    DEGREE_CELSIUS(\"hws-degree-celsius\", '\\ue704'),\n    DEGREE_FAHRENHEIT(\"hws-degree-fahrenheit\", '\\ue703'),\n    DIVING_GOGGLES(\"hws-diving-goggles\", '\\ue6c5'),\n    DOCUMENT(\"hws-document\", '\\ue635'),\n    DOCUMENT_ADD(\"hws-document-add\", '\\ue64f'),\n    DOCUMENT_BOOKMARK(\"hws-document-bookmark\", '\\ue63a'),\n    DOCUMENT_CANCEL(\"hws-document-cancel\", '\\ue64d'),\n    DOCUMENT_CERTIFICATE(\"hws-document-certificate\", '\\ue687'),\n    DOCUMENT_CHECKED(\"hws-document-checked\", '\\ue64e'),\n    DOCUMENT_CLOUD(\"hws-document-cloud\", '\\ue645'),\n    DOCUMENT_CODE(\"hws-document-code\", '\\ue644'),\n    DOCUMENT_DIAGRAMS(\"hws-document-diagrams\", '\\ue63b'),\n    DOCUMENT_DOWNLOAD(\"hws-document-download\", '\\ue638'),\n    DOCUMENT_EDIT(\"hws-document-edit\", '\\ue686'),\n    DOCUMENT_ERROR(\"hws-document-error\", '\\ue64c'),\n    DOCUMENT_FILE_3GP(\"hws-document-file-3gp\", '\\ue7fb'),\n    DOCUMENT_FILE_AAC(\"hws-document-file-aac\", '\\ue7fd'),\n    DOCUMENT_FILE_AI(\"hws-document-file-ai\", '\\ue7d3'),\n    DOCUMENT_FILE_AIFF(\"hws-document-file-aiff\", '\\ue7fc'),\n    DOCUMENT_FILE_APP(\"hws-document-file-app\", '\\ue7c7'),\n    DOCUMENT_FILE_ASP(\"hws-document-file-asp\", '\\ue7e6'),\n    DOCUMENT_FILE_AVI(\"hws-document-file-avi\", '\\ue7ed'),\n    DOCUMENT_FILE_BMP(\"hws-document-file-bmp\", '\\ue7d4'),\n    DOCUMENT_FILE_C(\"hws-document-file-c\", '\\ue7db'),\n    DOCUMENT_FILE_CPP(\"hws-document-file-cpp\", '\\ue7de'),\n    DOCUMENT_FILE_CSS(\"hws-document-file-css\", '\\ue7d0'),\n    DOCUMENT_FILE_DAT(\"hws-document-file-dat\", '\\ue7e8'),\n    DOCUMENT_FILE_DMG(\"hws-document-file-dmg\", '\\ue802'),\n    DOCUMENT_FILE_DOC(\"hws-document-file-doc\", '\\ue7e1'),\n    DOCUMENT_FILE_DOCX(\"hws-document-file-docx\", '\\ue7e4'),\n    DOCUMENT_FILE_DOT(\"hws-document-file-dot\", '\\ue7f3'),\n    DOCUMENT_FILE_DOTX(\"hws-document-file-dotx\", '\\ue7ef'),\n    DOCUMENT_FILE_DWG(\"hws-document-file-dwg\", '\\ue7d5'),\n    DOCUMENT_FILE_DXF(\"hws-document-file-dxf\", '\\ue7e0'),\n    DOCUMENT_FILE_EPS(\"hws-document-file-eps\", '\\ue7d6'),\n    DOCUMENT_FILE_EXE(\"hws-document-file-exe\", '\\ue7ec'),\n    DOCUMENT_FILE_FLV(\"hws-document-file-flv\", '\\ue7f7'),\n    DOCUMENT_FILE_GIF(\"hws-document-file-gif\", '\\ue805'),\n    DOCUMENT_FILE_H(\"hws-document-file-h\", '\\ue7eb'),\n    DOCUMENT_FILE_HTML(\"hws-document-file-html\", '\\ue7cf'),\n    DOCUMENT_FILE_ICS(\"hws-document-file-ics\", '\\ue7e7'),\n    DOCUMENT_FILE_ISO(\"hws-document-file-iso\", '\\ue803'),\n    DOCUMENT_FILE_JAVA(\"hws-document-file-java\", '\\ue7d1'),\n    DOCUMENT_FILE_JPG(\"hws-document-file-jpg\", '\\ue7cd'),\n    DOCUMENT_FILE_KEY(\"hws-document-file-key\", '\\ue7ce'),\n    DOCUMENT_FILE_M4V(\"hws-document-file-m4v\", '\\ue7f6'),\n    DOCUMENT_FILE_MID(\"hws-document-file-mid\", '\\ue7fa'),\n    DOCUMENT_FILE_MOV(\"hws-document-file-mov\", '\\ue7cc'),\n    DOCUMENT_FILE_MP3(\"hws-document-file-mp3\", '\\ue7ca'),\n    DOCUMENT_FILE_MP4(\"hws-document-file-mp4\", '\\ue7cb'),\n    DOCUMENT_FILE_MPG(\"hws-document-file-mpg\", '\\ue7f8'),\n    DOCUMENT_FILE_NUMBERS(\"hws-document-file-numbers\", '\\ue7c5'),\n    DOCUMENT_FILE_ODP(\"hws-document-file-odp\", '\\ue7ee'),\n    DOCUMENT_FILE_ODS(\"hws-document-file-ods\", '\\ue7f1'),\n    DOCUMENT_FILE_ODT(\"hws-document-file-odt\", '\\ue7e2'),\n    DOCUMENT_FILE_OTS(\"hws-document-file-ots\", '\\ue7d8'),\n    DOCUMENT_FILE_OTT(\"hws-document-file-ott\", '\\ue800'),\n    DOCUMENT_FILE_PAGES(\"hws-document-file-pages\", '\\ue7c6'),\n    DOCUMENT_FILE_PDF(\"hws-document-file-pdf\", '\\ue7c9'),\n    DOCUMENT_FILE_PHP(\"hws-document-file-php\", '\\ue7d9'),\n    DOCUMENT_FILE_PNG(\"hws-document-file-png\", '\\ue7c8'),\n    DOCUMENT_FILE_PPS(\"hws-document-file-pps\", '\\ue7f2'),\n    DOCUMENT_FILE_PPT(\"hws-document-file-ppt\", '\\ue7e5'),\n    DOCUMENT_FILE_PSD(\"hws-document-file-psd\", '\\ue7d2'),\n    DOCUMENT_FILE_PY(\"hws-document-file-py\", '\\ue7da'),\n    DOCUMENT_FILE_QT(\"hws-document-file-qt\", '\\ue7f9'),\n    DOCUMENT_FILE_RAR(\"hws-document-file-rar\", '\\ue804'),\n    DOCUMENT_FILE_RB(\"hws-document-file-rb\", '\\ue7dd'),\n    DOCUMENT_FILE_RTF(\"hws-document-file-rtf\", '\\ue7f5'),\n    DOCUMENT_FILE_SQL(\"hws-document-file-sql\", '\\ue7dc'),\n    DOCUMENT_FILE_TGA(\"hws-document-file-tga\", '\\ue7df'),\n    DOCUMENT_FILE_TGZ(\"hws-document-file-tgz\", '\\ue801'),\n    DOCUMENT_FILE_TIFF(\"hws-document-file-tiff\", '\\ue7d7'),\n    DOCUMENT_FILE_TXT(\"hws-document-file-txt\", '\\ue7f4'),\n    DOCUMENT_FILE_WAV(\"hws-document-file-wav\", '\\ue7fe'),\n    DOCUMENT_FILE_XLS(\"hws-document-file-xls\", '\\ue7e3'),\n    DOCUMENT_FILE_XLSX(\"hws-document-file-xlsx\", '\\ue7f0'),\n    DOCUMENT_FILE_XML(\"hws-document-file-xml\", '\\ue7e9'),\n    DOCUMENT_FILE_YML(\"hws-document-file-yml\", '\\ue7ea'),\n    DOCUMENT_FILE_ZIP(\"hws-document-file-zip\", '\\ue7ff'),\n    DOCUMENT_FONT(\"hws-document-font\", '\\ue655'),\n    DOCUMENT_FORBIDDEN(\"hws-document-forbidden\", '\\ue651'),\n    DOCUMENT_GRAPH(\"hws-document-graph\", '\\ue641'),\n    DOCUMENT_INFORMATION(\"hws-document-information\", '\\ue652'),\n    DOCUMENT_LIST(\"hws-document-list\", '\\ue654'),\n    DOCUMENT_LOCKED(\"hws-document-locked\", '\\ue64b'),\n    DOCUMENT_MOVIE(\"hws-document-movie\", '\\ue63f'),\n    DOCUMENT_MUSIC(\"hws-document-music\", '\\ue63e'),\n    DOCUMENT_PLAY(\"hws-document-play\", '\\ue640'),\n    DOCUMENT_RECORDING(\"hws-document-recording\", '\\ue63c'),\n    DOCUMENT_REMOVE(\"hws-document-remove\", '\\ue650'),\n    DOCUMENT_SCAN(\"hws-document-scan\", '\\ue67e'),\n    DOCUMENT_SEARCH(\"hws-document-search\", '\\ue648'),\n    DOCUMENT_SHRED(\"hws-document-shred\", '\\ue67c'),\n    DOCUMENT_STAR(\"hws-document-star\", '\\ue649'),\n    DOCUMENT_TABLE(\"hws-document-table\", '\\ue63d'),\n    DOCUMENT_TEXT(\"hws-document-text\", '\\ue636'),\n    DOCUMENT_TEXT2(\"hws-document-text2\", '\\ue637'),\n    DOCUMENT_TEXT3(\"hws-document-text3\", '\\ue643'),\n    DOCUMENT_TIME(\"hws-document-time\", '\\ue642'),\n    DOCUMENT_UNLOCKED(\"hws-document-unlocked\", '\\ue64a'),\n    DOCUMENT_UPLOAD(\"hws-document-upload\", '\\ue639'),\n    DOCUMENT_ZIP(\"hws-document-zip\", '\\ue66b'),\n    DOCUMENTS(\"hws-documents\", '\\ue646'),\n    DOCUMENTS2(\"hws-documents2\", '\\ue647'),\n    EYE(\"hws-eye\", '\\ue615'),\n    EYE_HIDDEN(\"hws-eye-hidden\", '\\ue614'),\n    FACE_CLOSED_EYES_OPEN_MOUTH(\"hws-face-closed-eyes-open-mouth\", '\\ue742'),\n    FACE_CLOSED_EYES_OPEN_MOUTH2(\"hws-face-closed-eyes-open-mouth2\", '\\ue743'),\n    FACE_CLOSED_EYES_OPEN_MOUTH3(\"hws-face-closed-eyes-open-mouth3\", '\\ue744'),\n    FACE_CLOSED_MEYES(\"hws-face-closed-meyes\", '\\ue73e'),\n    FACE_GLASSES(\"hws-face-glasses\", '\\ue751'),\n    FACE_MISSING_MOTH(\"hws-face-missing-moth\", '\\ue716'),\n    FACE_MOUSTACHE(\"hws-face-moustache\", '\\ue74f'),\n    FACE_MOUSTACHE2(\"hws-face-moustache2\", '\\ue750'),\n    FACE_OPEN_MOUTH(\"hws-face-open-mouth\", '\\ue71a'),\n    FACE_OPEN_MOUTH2(\"hws-face-open-mouth2\", '\\ue71b'),\n    FACE_OPEN_MOUTH_EYEBROWS(\"hws-face-open-mouth-eyebrows\", '\\ue738'),\n    FACE_OPEN_MOUTH_EYEBROWS2(\"hws-face-open-mouth-eyebrows2\", '\\ue739'),\n    FACE_STUCK_OUT_TONGUE(\"hws-face-stuck-out-tongue\", '\\ue731'),\n    FACE_STUCK_OUT_TONGUE2(\"hws-face-stuck-out-tongue2\", '\\ue732'),\n    FACE_SUNGLASSES(\"hws-face-sunglasses\", '\\ue752'),\n    FAKE_GRINNING_FACE_EYEBROWS(\"hws-fake-grinning-face-eyebrows\", '\\ue72f'),\n    FILE_3GP(\"hws-file-3gp\", '\\ue7ba'),\n    FILE_AAC(\"hws-file-aac\", '\\ue7bc'),\n    FILE_AI(\"hws-file-ai\", '\\ue792'),\n    FILE_AIFF(\"hws-file-aiff\", '\\ue7bb'),\n    FILE_APP(\"hws-file-app\", '\\ue786'),\n    FILE_ASP(\"hws-file-asp\", '\\ue7a5'),\n    FILE_AVI(\"hws-file-avi\", '\\ue7ac'),\n    FILE_BMP(\"hws-file-bmp\", '\\ue793'),\n    FILE_C(\"hws-file-c\", '\\ue79a'),\n    FILE_CPP(\"hws-file-cpp\", '\\ue79d'),\n    FILE_CSS(\"hws-file-css\", '\\ue78f'),\n    FILE_DAT(\"hws-file-dat\", '\\ue7a7'),\n    FILE_DMG(\"hws-file-dmg\", '\\ue7c1'),\n    FILE_DOC(\"hws-file-doc\", '\\ue7a0'),\n    FILE_DOCX(\"hws-file-docx\", '\\ue7a3'),\n    FILE_DOT(\"hws-file-dot\", '\\ue7b2'),\n    FILE_DOTX(\"hws-file-dotx\", '\\ue7ae'),\n    FILE_DWG(\"hws-file-dwg\", '\\ue794'),\n    FILE_DXF(\"hws-file-dxf\", '\\ue79f'),\n    FILE_EPS(\"hws-file-eps\", '\\ue795'),\n    FILE_EXE(\"hws-file-exe\", '\\ue7ab'),\n    FILE_FLV(\"hws-file-flv\", '\\ue7b6'),\n    FILE_GIF(\"hws-file-gif\", '\\ue7c4'),\n    FILE_H(\"hws-file-h\", '\\ue7aa'),\n    FILE_HTML(\"hws-file-html\", '\\ue78e'),\n    FILE_ICS(\"hws-file-ics\", '\\ue7a6'),\n    FILE_ISO(\"hws-file-iso\", '\\ue7c2'),\n    FILE_JAVA(\"hws-file-java\", '\\ue790'),\n    FILE_JPG(\"hws-file-jpg\", '\\ue78c'),\n    FILE_KEY(\"hws-file-key\", '\\ue78d'),\n    FILE_M4V(\"hws-file-m4v\", '\\ue7b5'),\n    FILE_MID(\"hws-file-mid\", '\\ue7b9'),\n    FILE_MOV(\"hws-file-mov\", '\\ue78b'),\n    FILE_MP3(\"hws-file-mp3\", '\\ue789'),\n    FILE_MP4(\"hws-file-mp4\", '\\ue78a'),\n    FILE_MPG(\"hws-file-mpg\", '\\ue7b7'),\n    FILE_NUMBERS(\"hws-file-numbers\", '\\ue784'),\n    FILE_ODP(\"hws-file-odp\", '\\ue7ad'),\n    FILE_ODS(\"hws-file-ods\", '\\ue7b0'),\n    FILE_ODT(\"hws-file-odt\", '\\ue7a1'),\n    FILE_OTS(\"hws-file-ots\", '\\ue797'),\n    FILE_OTT(\"hws-file-ott\", '\\ue7bf'),\n    FILE_PAGES(\"hws-file-pages\", '\\ue785'),\n    FILE_PDF(\"hws-file-pdf\", '\\ue788'),\n    FILE_PHP(\"hws-file-php\", '\\ue798'),\n    FILE_PNG(\"hws-file-png\", '\\ue787'),\n    FILE_PPS(\"hws-file-pps\", '\\ue7b1'),\n    FILE_PPT(\"hws-file-ppt\", '\\ue7a4'),\n    FILE_PSD(\"hws-file-psd\", '\\ue791'),\n    FILE_PY(\"hws-file-py\", '\\ue799'),\n    FILE_QUICKTIME(\"hws-file-quicktime\", '\\ue7b8'),\n    FILE_RAR(\"hws-file-rar\", '\\ue7c3'),\n    FILE_RB(\"hws-file-rb\", '\\ue79c'),\n    FILE_RTF(\"hws-file-rtf\", '\\ue7b4'),\n    FILE_SQL(\"hws-file-sql\", '\\ue79b'),\n    FILE_TGA(\"hws-file-tga\", '\\ue79e'),\n    FILE_TGZ(\"hws-file-tgz\", '\\ue7c0'),\n    FILE_TIFF(\"hws-file-tiff\", '\\ue796'),\n    FILE_TXT(\"hws-file-txt\", '\\ue7b3'),\n    FILE_WAV(\"hws-file-wav\", '\\ue7bd'),\n    FILE_XLS(\"hws-file-xls\", '\\ue7a2'),\n    FILE_XLSX(\"hws-file-xlsx\", '\\ue7af'),\n    FILE_XML(\"hws-file-xml\", '\\ue7a8'),\n    FILE_YML(\"hws-file-yml\", '\\ue7a9'),\n    FILE_ZIP(\"hws-file-zip\", '\\ue7be'),\n    FLAG(\"hws-flag\", '\\ue60d'),\n    FLAG2(\"hws-flag2\", '\\ue60e'),\n    FLAG3(\"hws-flag3\", '\\ue60f'),\n    FLAG4(\"hws-flag4\", '\\ue610'),\n    FLASHED_FACE(\"hws-flashed-face\", '\\ue713'),\n    FLASHED_FACE2(\"hws-flashed-face2\", '\\ue714'),\n    FLASHED_FACE_GLASSES(\"hws-flashed-face-glasses\", '\\ue715'),\n    FOLDER(\"hws-folder\", '\\ue65c'),\n    FOLDER2(\"hws-folder2\", '\\ue65d'),\n    FOLDER_ADD(\"hws-folder-add\", '\\ue667'),\n    FOLDER_BOOKMARK(\"hws-folder-bookmark\", '\\ue66a'),\n    FOLDER_CANCEL(\"hws-folder-cancel\", '\\ue665'),\n    FOLDER_CHECKED(\"hws-folder-checked\", '\\ue666'),\n    FOLDER_DOWNLOAD(\"hws-folder-download\", '\\ue65f'),\n    FOLDER_ERROR(\"hws-folder-error\", '\\ue664'),\n    FOLDER_FORBIDDEN(\"hws-folder-forbidden\", '\\ue669'),\n    FOLDER_INFORMATION(\"hws-folder-information\", '\\ue653'),\n    FOLDER_LOCKED(\"hws-folder-locked\", '\\ue662'),\n    FOLDER_REMOVE(\"hws-folder-remove\", '\\ue668'),\n    FOLDER_SEARCH(\"hws-folder-search\", '\\ue663'),\n    FOLDER_UNLOCKED(\"hws-folder-unlocked\", '\\ue661'),\n    FOLDER_UPLOAD(\"hws-folder-upload\", '\\ue660'),\n    FOLDERS(\"hws-folders\", '\\ue65e'),\n    FOOTBALL(\"hws-football\", '\\ue69e'),\n    FOOTBALL2(\"hws-football2\", '\\ue69f'),\n    FULL_MOON(\"hws-full-moon\", '\\ue6f4'),\n    GIBBOUS_MOON(\"hws-gibbous-moon\", '\\ue6f7'),\n    GIBBOUS_MOON2(\"hws-gibbous-moon2\", '\\ue6f9'),\n    GOLF(\"hws-golf\", '\\ue6b2'),\n    GRINNING_FACE(\"hws-grinning-face\", '\\ue72c'),\n    GRINNING_FACE2(\"hws-grinning-face2\", '\\ue747'),\n    GRINNING_FACE_EYEBROWS(\"hws-grinning-face-eyebrows\", '\\ue725'),\n    GRINNING_FACE_EYEBROWS2(\"hws-grinning-face-eyebrows2\", '\\ue72e'),\n    GRINNING_FACE_TEETH(\"hws-grinning-face-teeth\", '\\ue734'),\n    GRINNING_FACE_TEETH2(\"hws-grinning-face-teeth2\", '\\ue737'),\n    HALF_MOON(\"hws-half-moon\", '\\ue6f6'),\n    HALF_MOON2(\"hws-half-moon2\", '\\ue6fa'),\n    HIGH_FIVE(\"hws-high-five\", '\\ue756'),\n    HOCKEY_STICK(\"hws-hockey-stick\", '\\ue6af'),\n    HOCKEY_STICKS(\"hws-hockey-sticks\", '\\ue6b0'),\n    ICE_SKATE(\"hws-ice-skate\", '\\ue6c8'),\n    INBOX(\"hws-inbox\", '\\ue656'),\n    INBOX_DOCUMENT(\"hws-inbox-document\", '\\ue658'),\n    INBOX_DOCUMENT_TEXT(\"hws-inbox-document-text\", '\\ue659'),\n    INBOX_DOWNLOAD(\"hws-inbox-download\", '\\ue65a'),\n    INBOX_FILLED(\"hws-inbox-filled\", '\\ue683'),\n    INBOX_UPLOAD(\"hws-inbox-upload\", '\\ue65b'),\n    INBOXES(\"hws-inboxes\", '\\ue657'),\n    INFORMATION(\"hws-information\", '\\ue61b'),\n    INFORMATION2(\"hws-information2\", '\\ue61c'),\n    KEY(\"hws-key\", '\\ue617'),\n    KEY2(\"hws-key2\", '\\ue618'),\n    KISSING_FACE(\"hws-kissing-face\", '\\ue733'),\n    KISSING_FACE2(\"hws-kissing-face2\", '\\ue73d'),\n    LAUGHING_FACE(\"hws-laughing-face\", '\\ue71d'),\n    LAUGHING_FACE2(\"hws-laughing-face2\", '\\ue71e'),\n    LAUGHING_FACE3(\"hws-laughing-face3\", '\\ue745'),\n    LIGHTNING(\"hws-lightning\", '\\ue710'),\n    LOCK(\"hws-lock\", '\\ue670'),\n    LOCK_OPEN(\"hws-lock-open\", '\\ue671'),\n    LOCK_OPEN2(\"hws-lock-open2\", '\\ue672'),\n    LOCK_ROUNDED(\"hws-lock-rounded\", '\\ue674'),\n    LOCK_ROUNDED_OPEN(\"hws-lock-rounded-open\", '\\ue675'),\n    LOCK_ROUNDED_OPEN2(\"hws-lock-rounded-open2\", '\\ue676'),\n    LOCK_STRIPES(\"hws-lock-stripes\", '\\ue673'),\n    MAIL__FORBIDDEN(\"hws-mail--forbidden\", '\\ue60a'),\n    MAIL_ADD(\"hws-mail-add\", '\\ue60b'),\n    MAIL_CANCEL(\"hws-mail-cancel\", '\\ue609'),\n    MAIL_CHECKED(\"hws-mail-checked\", '\\ue608'),\n    MAIL_ENVELOPE(\"hws-mail-envelope\", '\\ue600'),\n    MAIL_ENVELOPE_CLOSED(\"hws-mail-envelope-closed\", '\\ue602'),\n    MAIL_ENVELOPE_CLOSED2(\"hws-mail-envelope-closed2\", '\\ue605'),\n    MAIL_ENVELOPE_OPEN(\"hws-mail-envelope-open\", '\\ue601'),\n    MAIL_ENVELOPE_OPEN2(\"hws-mail-envelope-open2\", '\\ue603'),\n    MAIL_ENVELOPE_OPEN3(\"hws-mail-envelope-open3\", '\\ue604'),\n    MAIL_ENVELOPE_OPEN4(\"hws-mail-envelope-open4\", '\\ue606'),\n    MAIL_ERROR(\"hws-mail-error\", '\\ue607'),\n    MAIL_REMOVE(\"hws-mail-remove\", '\\ue60c'),\n    MEDAL(\"hws-medal\", '\\ue6a6'),\n    MEDAL2(\"hws-medal2\", '\\ue6a7'),\n    MEDAL3(\"hws-medal3\", '\\ue6b9'),\n    MEDAL4(\"hws-medal4\", '\\ue6ba'),\n    MIDDLE_FINGER(\"hws-middle-finger\", '\\ue754'),\n    MOON(\"hws-moon\", '\\ue6e4'),\n    MOON2(\"hws-moon2\", '\\ue6f8'),\n    MOON_STARS(\"hws-moon-stars\", '\\ue6e3'),\n    MOONRISE(\"hws-moonrise\", '\\ue6f1'),\n    MOONSET(\"hws-moonset\", '\\ue6f2'),\n    MOVE(\"hws-move\", '\\ue6b3'),\n    NEUTRAL_FACE(\"hws-neutral-face\", '\\ue717'),\n    NEUTRAL_FACE2(\"hws-neutral-face2\", '\\ue721'),\n    NEUTRAL_FACE_EYEBROWS(\"hws-neutral-face-eyebrows\", '\\ue727'),\n    NOTE(\"hws-note\", '\\ue628'),\n    NOTE_ADD(\"hws-note-add\", '\\ue629'),\n    NOTE_CHECKED(\"hws-note-checked\", '\\ue62d'),\n    NOTE_IMPORTANT(\"hws-note-important\", '\\ue62e'),\n    NOTE_LIST(\"hws-note-list\", '\\ue62c'),\n    NOTE_REMOVE(\"hws-note-remove\", '\\ue62a'),\n    NOTE_TEXT(\"hws-note-text\", '\\ue62b'),\n    NOTEBOOK(\"hws-notebook\", '\\ue62f'),\n    NOTEBOOK2(\"hws-notebook2\", '\\ue630'),\n    NOTEBOOK3(\"hws-notebook3\", '\\ue631'),\n    NOTEBOOK4(\"hws-notebook4\", '\\ue632'),\n    NOTEBOOK_LIST(\"hws-notebook-list\", '\\ue634'),\n    NOTEBOOK_TEXT(\"hws-notebook-text\", '\\ue633'),\n    ONE_FINGER(\"hws-one-finger\", '\\ue768'),\n    ONE_FINGER_CLICK(\"hws-one-finger-click\", '\\ue76d'),\n    ONE_FINGER_CLICK2(\"hws-one-finger-click2\", '\\ue77b'),\n    ONE_FINGER_DOUBLE_TAP(\"hws-one-finger-double-tap\", '\\ue769'),\n    ONE_FINGER_DOUBLE_TAP2(\"hws-one-finger-double-tap2\", '\\ue775'),\n    ONE_FINGER_SWIPE(\"hws-one-finger-swipe\", '\\ue77d'),\n    ONE_FINGER_SWIPE_DOWN(\"hws-one-finger-swipe-down\", '\\ue767'),\n    ONE_FINGER_SWIPE_DOWN2(\"hws-one-finger-swipe-down2\", '\\ue783'),\n    ONE_FINGER_SWIPE_HORIZONTALLY(\"hws-one-finger-swipe-horizontally\", '\\ue77c'),\n    ONE_FINGER_SWIPE_LEFT(\"hws-one-finger-swipe-left\", '\\ue764'),\n    ONE_FINGER_SWIPE_LEFT2(\"hws-one-finger-swipe-left2\", '\\ue780'),\n    ONE_FINGER_SWIPE_RIGHT(\"hws-one-finger-swipe-right\", '\\ue765'),\n    ONE_FINGER_SWIPE_RIGHT2(\"hws-one-finger-swipe-right2\", '\\ue781'),\n    ONE_FINGER_SWIPE_UP(\"hws-one-finger-swipe-up\", '\\ue766'),\n    ONE_FINGER_SWIPE_UP2(\"hws-one-finger-swipe-up2\", '\\ue782'),\n    ONE_FINGER_TAP(\"hws-one-finger-tap\", '\\ue76a'),\n    ONE_FINGER_TAP2(\"hws-one-finger-tap2\", '\\ue779'),\n    ONE_FINGER_TAP_HOLD(\"hws-one-finger-tap-hold\", '\\ue76b'),\n    ONE_FINGER_TAP_HOLD2(\"hws-one-finger-tap-hold2\", '\\ue77a'),\n    PACKAGE(\"hws-package\", '\\ue689'),\n    PAPERCLIP(\"hws-paperclip\", '\\ue696'),\n    PEN(\"hws-pen\", '\\ue684'),\n    PEN_ANGLED(\"hws-pen-angled\", '\\ue685'),\n    PRINTER(\"hws-printer\", '\\ue678'),\n    PRINTER2(\"hws-printer2\", '\\ue679'),\n    PRINTER_TEXT(\"hws-printer-text\", '\\ue67a'),\n    PRINTER_TEXT2(\"hws-printer-text2\", '\\ue67b'),\n    RAINBOW(\"hws-rainbow\", '\\ue6ea'),\n    RAINDROP(\"hws-raindrop\", '\\ue6ed'),\n    RAINDROPS(\"hws-raindrops\", '\\ue6ec'),\n    ROCK_N_ROLL(\"hws-rock-n-roll\", '\\ue755'),\n    SAD_FACE(\"hws-sad-face\", '\\ue719'),\n    SAD_FACE2(\"hws-sad-face2\", '\\ue722'),\n    SAD_FACE3(\"hws-sad-face3\", '\\ue72d'),\n    SAD_FACE4(\"hws-sad-face4\", '\\ue748'),\n    SAD_FACE5(\"hws-sad-face5\", '\\ue749'),\n    SAD_FACE6(\"hws-sad-face6\", '\\ue74b'),\n    SAD_FACE__TIGHTLY_CLOSED_EYES(\"hws-sad-face--tightly-closed-eyes\", '\\ue73c'),\n    SAD_FACE_CLOSED_EYES(\"hws-sad-face-closed-eyes\", '\\ue74a'),\n    SAD_FACE_EYEBROWS(\"hws-sad-face-eyebrows\", '\\ue726'),\n    SAILING_BOAT(\"hws-sailing-boat\", '\\ue6c1'),\n    SAILING_BOAT_WATER(\"hws-sailing-boat-water\", '\\ue6c2'),\n    SEARCH(\"hws-search\", '\\ue66d'),\n    SEARCH_MINUS(\"hws-search-minus\", '\\ue66f'),\n    SEARCH_PLUS(\"hws-search-plus\", '\\ue66e'),\n    SHREDDER(\"hws-shredder\", '\\ue67d'),\n    SHUTTLECOCK(\"hws-shuttlecock\", '\\ue6b1'),\n    SMILING_FACE(\"hws-smiling-face\", '\\ue718'),\n    SMILING_FACE2(\"hws-smiling-face2\", '\\ue723'),\n    SMILING_FACE3(\"hws-smiling-face3\", '\\ue746'),\n    SMILING_FACE4(\"hws-smiling-face4\", '\\ue74c'),\n    SMILING_FACE_EYEBROWS(\"hws-smiling-face-eyebrows\", '\\ue724'),\n    SMIRKING_FACE(\"hws-smirking-face\", '\\ue71f'),\n    SMIRKING_FACE_SUNGLASSES(\"hws-smirking-face-sunglasses\", '\\ue753'),\n    SNOWFLAKE(\"hws-snowflake\", '\\ue712'),\n    SOCCER_BALL(\"hws-soccer-ball\", '\\ue69c'),\n    SOCCER_COURT(\"hws-soccer-court\", '\\ue69d'),\n    SOCCER_SHOE(\"hws-soccer-shoe\", '\\ue6c7'),\n    SPORTS_SHOE(\"hws-sports-shoe\", '\\ue6c6'),\n    STAR(\"hws-star\", '\\ue616'),\n    STARS(\"hws-stars\", '\\ue6ef'),\n    STOP_WATCH(\"hws-stop-watch\", '\\ue6ad'),\n    STOP_WATCH2(\"hws-stop-watch2\", '\\ue6ae'),\n    STUBBORN_FACE(\"hws-stubborn-face\", '\\ue720'),\n    SUN(\"hws-sun\", '\\ue6e5'),\n    SUNGLASSES(\"hws-sunglasses\", '\\ue6ee'),\n    SUNRISE(\"hws-sunrise\", '\\ue6e6'),\n    SUNSET(\"hws-sunset\", '\\ue6e7'),\n    SUNSET2(\"hws-sunset2\", '\\ue6e8'),\n    SUNSET3(\"hws-sunset3\", '\\ue6e9'),\n    TABLE_TENNIS(\"hws-table-tennis\", '\\ue6ab'),\n    TAG(\"hws-tag\", '\\ue690'),\n    TAG_ADD(\"hws-tag-add\", '\\ue692'),\n    TAG_CANCEL(\"hws-tag-cancel\", '\\ue695'),\n    TAG_CHECKED(\"hws-tag-checked\", '\\ue694'),\n    TAG_CORD(\"hws-tag-cord\", '\\ue68f'),\n    TAG_REMOVE(\"hws-tag-remove\", '\\ue693'),\n    TAGS(\"hws-tags\", '\\ue691'),\n    TARGET(\"hws-target\", '\\ue6c0'),\n    TARGET_ARROW(\"hws-target-arrow\", '\\ue6bf'),\n    TENNIS_BALL(\"hws-tennis-ball\", '\\ue699'),\n    TENNIS_BALL2(\"hws-tennis-ball2\", '\\ue6a2'),\n    TENNIS_RACKET(\"hws-tennis-racket\", '\\ue6a9'),\n    THERMOMETER(\"hws-thermometer\", '\\ue70a'),\n    THERMOMETER_FULL(\"hws-thermometer-full\", '\\ue70f'),\n    THERMOMETER_HALF(\"hws-thermometer-half\", '\\ue70d'),\n    THERMOMETER_LOW(\"hws-thermometer-low\", '\\ue70b'),\n    THERMOMETER_QUARTER(\"hws-thermometer-quarter\", '\\ue70c'),\n    THERMOMETER_THREE_QUARTERS(\"hws-thermometer-three-quarters\", '\\ue70e'),\n    THREE_FINGERS(\"hws-three-fingers\", '\\ue772'),\n    THREE_FINGERS_DOUBLE_TAP(\"hws-three-fingers-double-tap\", '\\ue760'),\n    THREE_FINGERS_DOUBLE_TAP2(\"hws-three-fingers-double-tap2\", '\\ue773'),\n    THREE_FINGERS_SWIPE_DOWN(\"hws-three-fingers-swipe-down\", '\\ue771'),\n    THREE_FINGERS_SWIPE_LEFT(\"hws-three-fingers-swipe-left\", '\\ue76e'),\n    THREE_FINGERS_SWIPE_RIGHT(\"hws-three-fingers-swipe-right\", '\\ue76f'),\n    THREE_FINGERS_SWIPE_UP(\"hws-three-fingers-swipe-up\", '\\ue770'),\n    THUMB_DOWN(\"hws-thumb-down\", '\\ue758'),\n    THUMB_DOWN2(\"hws-thumb-down2\", '\\ue75a'),\n    THUMB_FINGER_TAP(\"hws-thumb-finger-tap\", '\\ue76c'),\n    THUMB_UP(\"hws-thumb-up\", '\\ue757'),\n    THUMB_UP2(\"hws-thumb-up2\", '\\ue759'),\n    TORNADO(\"hws-tornado\", '\\ue702'),\n    TRASH_CAN(\"hws-trash-can\", '\\ue619'),\n    TRASH_CAN2(\"hws-trash-can2\", '\\ue61a'),\n    TROPHY(\"hws-trophy\", '\\ue6a3'),\n    TROPHY2(\"hws-trophy2\", '\\ue6a5'),\n    TROPHY_ONE(\"hws-trophy-one\", '\\ue6a4'),\n    TWO_FINGERS(\"hws-two-fingers\", '\\ue75f'),\n    TWO_FINGERS_DOUBLE_TAP(\"hws-two-fingers-double-tap\", '\\ue77e'),\n    TWO_FINGERS_RESIZE_IN(\"hws-two-fingers-resize-in\", '\\ue762'),\n    TWO_FINGERS_RESIZE_OUT(\"hws-two-fingers-resize-out\", '\\ue761'),\n    TWO_FINGERS_ROTATE(\"hws-two-fingers-rotate\", '\\ue763'),\n    TWO_FINGERS_SWIPE_DOWN(\"hws-two-fingers-swipe-down\", '\\ue75e'),\n    TWO_FINGERS_SWIPE_DOWN2(\"hws-two-fingers-swipe-down2\", '\\ue776'),\n    TWO_FINGERS_SWIPE_LEFT(\"hws-two-fingers-swipe-left\", '\\ue75b'),\n    TWO_FINGERS_SWIPE_LEFT2(\"hws-two-fingers-swipe-left2\", '\\ue778'),\n    TWO_FINGERS_SWIPE_RIGHT(\"hws-two-fingers-swipe-right\", '\\ue75c'),\n    TWO_FINGERS_SWIPE_RIGHT2(\"hws-two-fingers-swipe-right2\", '\\ue777'),\n    TWO_FINGERS_SWIPE_UP(\"hws-two-fingers-swipe-up\", '\\ue75d'),\n    TWO_FINGERS_SWIPE_UP2(\"hws-two-fingers-swipe-up2\", '\\ue774'),\n    TWO_FINGERS_TAP(\"hws-two-fingers-tap\", '\\ue77f'),\n    UMBRELLA(\"hws-umbrella\", '\\ue6eb'),\n    UNAMUSED_FACE_TIGHTLY_CLOSED_EYES(\"hws-unamused-face-tightly-closed-eyes\", '\\ue73b'),\n    VOLLEYBALL(\"hws-volleyball\", '\\ue6ac'),\n    VOLLEYBALL_WATER(\"hws-volleyball-water\", '\\ue6bd'),\n    WARNING(\"hws-warning\", '\\ue705'),\n    WEIGHTS(\"hws-weights\", '\\ue6a8'),\n    WHISTLE(\"hws-whistle\", '\\ue6bc'),\n    WIND(\"hws-wind\", '\\ue6f3'),\n    WIND_TURBINE(\"hws-wind-turbine\", '\\ue711'),\n    WINKING_FACE(\"hws-winking-face\", '\\ue71c'),\n    WINKING_FACE2(\"hws-winking-face2\", '\\ue72a'),\n    WORRIED_FACE(\"hws-worried-face\", '\\ue729'),\n    WORRIED_FACE_EYEBROWS(\"hws-worried-face-eyebrows\", '\\ue730'),\n    WORRIED_FACE_TEETH(\"hws-worried-face-teeth\", '\\ue736'),\n    ZIP(\"hws-zip\", '\\ue66c');\n\n    public static HawconsStroke findByDescription(String description) {\n        for (HawconsStroke font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    HawconsStroke(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-hawcons-pack/src/main/java/org/kordamp/ikonli/hawcons/HawconsStrokeIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.hawcons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class HawconsStrokeIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/hawcons/20140708/fonts/hawconsstroke.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"hws-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return HawconsStroke.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Hawcons-Stroke\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-hawcons-pack/src/main/java/org/kordamp/ikonli/hawcons/HawconsStrokeIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.hawcons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class HawconsStrokeIkonProvider implements IkonProvider<HawconsStroke> {\n    @Override\n    public Class<HawconsStroke> getIkon() {\n        return HawconsStroke.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-hawcons-pack/src/main/resources/META-INF/resources/hawcons/20140708/css/hawconsfilled.css",
    "content": "@font-face {\n\tfont-family: 'Hawcons-Filled';\n    src:url('../fonts/hawconsfilled.eot?-kxka6d');\n    src:url('../fonts/hawconsfilled.eot?#iefix-kxka6d') format('embedded-opentype'),\n\turl('../fonts/hawconsfilled.woff?-kxka6d') format('woff'),\n\turl('../fonts/hawconsfilled.ttf?-kxka6d') format('truetype'),\n\turl('../fonts/hawconsfilled.svg?-kxka6d#hawcons') format('svg');\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n.hwf:before {\n\tfont-family: 'Hawcons-Filled';\n\tspeak: none;\n\tfont-style: normal;\n\tfont-weight: normal;\n\tfont-variant: normal;\n\ttext-transform: none;\n\tline-height: 1;\n\n\t/* Better Font Rendering =========== */\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n}\n\n.hwf-air-sock:before { content: \"\\e701\"; }\n.hwf-amused-face:before { content: \"\\e73e\"; }\n.hwf-amused-face-closed-eyes:before { content: \"\\e73f\"; }\n.hwf-amused-face-closed-eyes2:before { content: \"\\e740\"; }\n.hwf-angry-face:before { content: \"\\e728\"; }\n.hwf-angry-face-eyebrows:before { content: \"\\e72b\"; }\n.hwf-angry-face-open-mouth-eyebrows:before { content: \"\\e739\"; }\n.hwf-angry-face-teeth:before { content: \"\\e735\"; }\n.hwf-astonished-face:before { content: \"\\e74c\"; }\n.hwf-astonished-face2:before { content: \"\\e74d\"; }\n.hwf-award:before { content: \"\\e6b5\"; }\n.hwf-award2:before { content: \"\\e6b6\"; }\n.hwf-award3:before { content: \"\\e6b7\"; }\n.hwf-award4:before { content: \"\\e6b8\"; }\n.hwf-barometer:before { content: \"\\e6fc\"; }\n.hwf-baseball:before { content: \"\\e698\"; }\n.hwf-baseball-set:before { content: \"\\e6a1\"; }\n.hwf-basketball:before { content: \"\\e697\"; }\n.hwf-basketball2:before { content: \"\\e6a0\"; }\n.hwf-basketball-hoop:before { content: \"\\e6aa\"; }\n.hwf-billiard-ball:before { content: \"\\e69b\"; }\n.hwf-book:before { content: \"\\e61d\"; }\n.hwf-book-bookmark:before { content: \"\\e61e\"; }\n.hwf-bookmark:before { content: \"\\e611\"; }\n.hwf-bookmark-add:before { content: \"\\e612\"; }\n.hwf-bookmark-remove:before { content: \"\\e613\"; }\n.hwf-bowling-ball:before { content: \"\\e69a\"; }\n.hwf-bowling-pin-ball:before { content: \"\\e6c4\"; }\n.hwf-bowling-pins:before { content: \"\\e6c3\"; }\n.hwf-box:before { content: \"\\e68a\"; }\n.hwf-box2:before { content: \"\\e68c\"; }\n.hwf-box3:before { content: \"\\e68d\"; }\n.hwf-box-bookmark:before { content: \"\\e68e\"; }\n.hwf-box-filled:before { content: \"\\e68b\"; }\n.hwf-boxing-glove:before { content: \"\\e6bb\"; }\n.hwf-certificate:before { content: \"\\e688\"; }\n.hwf-checkered-flag:before { content: \"\\e6be\"; }\n.hwf-clipboard:before { content: \"\\e622\"; }\n.hwf-clipboard-add:before { content: \"\\e620\"; }\n.hwf-clipboard-checked:before { content: \"\\e625\"; }\n.hwf-clipboard-download:before { content: \"\\e623\"; }\n.hwf-clipboard-edit:before { content: \"\\e61f\"; }\n.hwf-clipboard-list:before { content: \"\\e627\"; }\n.hwf-clipboard-move:before { content: \"\\e6b4\"; }\n.hwf-clipboard-remove:before { content: \"\\e621\"; }\n.hwf-clipboard-text:before { content: \"\\e626\"; }\n.hwf-clipboard-upload:before { content: \"\\e624\"; }\n.hwf-cloud:before { content: \"\\e682\"; }\n.hwf-cloud2:before { content: \"\\e6c9\"; }\n.hwf-cloud-add:before { content: \"\\e6dd\"; }\n.hwf-cloud-download:before { content: \"\\e67f\"; }\n.hwf-cloud-error:before { content: \"\\e681\"; }\n.hwf-cloud-error2:before { content: \"\\e6df\"; }\n.hwf-cloud-fog:before { content: \"\\e6e0\"; }\n.hwf-cloud-lightning:before { content: \"\\e6d2\"; }\n.hwf-cloud-moon:before { content: \"\\e6cb\"; }\n.hwf-cloud-moon-fog:before { content: \"\\e6e2\"; }\n.hwf-cloud-moon-lightning:before { content: \"\\e6d4\"; }\n.hwf-cloud-moon-rain:before { content: \"\\e6ce\"; }\n.hwf-cloud-moon-raindrops:before { content: \"\\e6d8\"; }\n.hwf-cloud-moon-snow:before { content: \"\\e6d1\"; }\n.hwf-cloud-moon-snowflakes:before { content: \"\\e6db\"; }\n.hwf-cloud-rain:before { content: \"\\e6cc\"; }\n.hwf-cloud-raindrops:before { content: \"\\e6d6\"; }\n.hwf-cloud-remove:before { content: \"\\e6de\"; }\n.hwf-cloud-snow:before { content: \"\\e6cf\"; }\n.hwf-cloud-snowflakes:before { content: \"\\e6d9\"; }\n.hwf-cloud-sun:before { content: \"\\e6ca\"; }\n.hwf-cloud-sun-fog:before { content: \"\\e6e1\"; }\n.hwf-cloud-sun-lightning:before { content: \"\\e6d3\"; }\n.hwf-cloud-sun-rain:before { content: \"\\e6cd\"; }\n.hwf-cloud-sun-raindrops:before { content: \"\\e6d7\"; }\n.hwf-cloud-sun-snow:before { content: \"\\e6d0\"; }\n.hwf-cloud-sun-snowflakes:before { content: \"\\e6da\"; }\n.hwf-cloud-upload:before { content: \"\\e680\"; }\n.hwf-cloud-wind:before { content: \"\\e6d5\"; }\n.hwf-clouds:before { content: \"\\e6dc\"; }\n.hwf-clouds2:before { content: \"\\e6f0\"; }\n.hwf-combination-lock:before { content: \"\\e677\"; }\n.hwf-compass:before { content: \"\\e706\"; }\n.hwf-compass2:before { content: \"\\e707\"; }\n.hwf-compass3:before { content: \"\\e708\"; }\n.hwf-compass4:before { content: \"\\e709\"; }\n.hwf-compass-east:before { content: \"\\e6ff\"; }\n.hwf-compass-north:before { content: \"\\e6fd\"; }\n.hwf-compass-south:before { content: \"\\e700\"; }\n.hwf-compass-west:before { content: \"\\e6fe\"; }\n.hwf-crescent:before { content: \"\\e6f5\"; }\n.hwf-crescent2:before { content: \"\\e6fb\"; }\n.hwf-degree-celsius:before { content: \"\\e704\"; }\n.hwf-degree-fahrenheit:before { content: \"\\e703\"; }\n.hwf-diving-goggles:before { content: \"\\e6c5\"; }\n.hwf-document:before { content: \"\\e635\"; }\n.hwf-document-add:before { content: \"\\e64f\"; }\n.hwf-document-bookmark:before { content: \"\\e63a\"; }\n.hwf-document-cancel:before { content: \"\\e64d\"; }\n.hwf-document-certificate:before { content: \"\\e687\"; }\n.hwf-document-checked:before { content: \"\\e64e\"; }\n.hwf-document-cloud:before { content: \"\\e645\"; }\n.hwf-document-code:before { content: \"\\e644\"; }\n.hwf-document-diagrams:before { content: \"\\e63b\"; }\n.hwf-document-download:before { content: \"\\e638\"; }\n.hwf-document-edit:before { content: \"\\e686\"; }\n.hwf-document-error:before { content: \"\\e64c\"; }\n.hwf-document-file-3gp:before { content: \"\\e7fa\"; }\n.hwf-document-file-aac:before { content: \"\\e7fc\"; }\n.hwf-document-file-ai:before { content: \"\\e7d2\"; }\n.hwf-document-file-aiff:before { content: \"\\e7fb\"; }\n.hwf-document-file-app:before { content: \"\\e7c6\"; }\n.hwf-document-file-asp:before { content: \"\\e7e5\"; }\n.hwf-document-file-avi:before { content: \"\\e7ec\"; }\n.hwf-document-file-bmp:before { content: \"\\e7d3\"; }\n.hwf-document-file-c:before { content: \"\\e7da\"; }\n.hwf-document-file-cpp:before { content: \"\\e7dd\"; }\n.hwf-document-file-css:before { content: \"\\e7cf\"; }\n.hwf-document-file-dat:before { content: \"\\e7e7\"; }\n.hwf-document-file-dmg:before { content: \"\\e801\"; }\n.hwf-document-file-doc:before { content: \"\\e7e0\"; }\n.hwf-document-file-docx:before { content: \"\\e7e3\"; }\n.hwf-document-file-dot:before { content: \"\\e7f2\"; }\n.hwf-document-file-dotx:before { content: \"\\e7ee\"; }\n.hwf-document-file-dwg:before { content: \"\\e7d4\"; }\n.hwf-document-file-dxf:before { content: \"\\e7df\"; }\n.hwf-document-file-eps:before { content: \"\\e7d5\"; }\n.hwf-document-file-exe:before { content: \"\\e7eb\"; }\n.hwf-document-file-flv:before { content: \"\\e7f6\"; }\n.hwf-document-file-gif:before { content: \"\\e804\"; }\n.hwf-document-file-h:before { content: \"\\e7ea\"; }\n.hwf-document-file-html:before { content: \"\\e7ce\"; }\n.hwf-document-file-ics:before { content: \"\\e7e6\"; }\n.hwf-document-file-iso:before { content: \"\\e802\"; }\n.hwf-document-file-java:before { content: \"\\e7d0\"; }\n.hwf-document-file-jpg:before { content: \"\\e7cc\"; }\n.hwf-document-file-key:before { content: \"\\e7cd\"; }\n.hwf-document-file-m4v:before { content: \"\\e7f5\"; }\n.hwf-document-file-mid:before { content: \"\\e7f9\"; }\n.hwf-document-file-mov:before { content: \"\\e7cb\"; }\n.hwf-document-file-mp3:before { content: \"\\e7c9\"; }\n.hwf-document-file-mp4:before { content: \"\\e7ca\"; }\n.hwf-document-file-mpg:before { content: \"\\e7f7\"; }\n.hwf-document-file-numbers:before { content: \"\\e7c4\"; }\n.hwf-document-file-odp:before { content: \"\\e7ed\"; }\n.hwf-document-file-ods:before { content: \"\\e7f0\"; }\n.hwf-document-file-odt:before { content: \"\\e7e1\"; }\n.hwf-document-file-ots:before { content: \"\\e7d7\"; }\n.hwf-document-file-ott:before { content: \"\\e7ff\"; }\n.hwf-document-file-pages:before { content: \"\\e7c5\"; }\n.hwf-document-file-pdf:before { content: \"\\e7c8\"; }\n.hwf-document-file-php:before { content: \"\\e7d8\"; }\n.hwf-document-file-png:before { content: \"\\e7c7\"; }\n.hwf-document-file-pps:before { content: \"\\e7f1\"; }\n.hwf-document-file-ppt:before { content: \"\\e7e4\"; }\n.hwf-document-file-psd:before { content: \"\\e7d1\"; }\n.hwf-document-file-py:before { content: \"\\e7d9\"; }\n.hwf-document-file-qt:before { content: \"\\e7f8\"; }\n.hwf-document-file-rar:before { content: \"\\e803\"; }\n.hwf-document-file-rb:before { content: \"\\e7dc\"; }\n.hwf-document-file-rtf:before { content: \"\\e7f4\"; }\n.hwf-document-file-sql:before { content: \"\\e7db\"; }\n.hwf-document-file-tga:before { content: \"\\e7de\"; }\n.hwf-document-file-tgz:before { content: \"\\e800\"; }\n.hwf-document-file-tiff:before { content: \"\\e7d6\"; }\n.hwf-document-file-txt:before { content: \"\\e7f3\"; }\n.hwf-document-file-wav:before { content: \"\\e7fd\"; }\n.hwf-document-file-xls:before { content: \"\\e7e2\"; }\n.hwf-document-file-xlsx:before { content: \"\\e7ef\"; }\n.hwf-document-file-xml:before { content: \"\\e7e8\"; }\n.hwf-document-file-yml:before { content: \"\\e7e9\"; }\n.hwf-document-file-zip:before { content: \"\\e7fe\"; }\n.hwf-document-font:before { content: \"\\e655\"; }\n.hwf-document-forbidden:before { content: \"\\e651\"; }\n.hwf-document-graph:before { content: \"\\e641\"; }\n.hwf-document-information:before { content: \"\\e652\"; }\n.hwf-document-list:before { content: \"\\e654\"; }\n.hwf-document-locked:before { content: \"\\e64b\"; }\n.hwf-document-movie:before { content: \"\\e63f\"; }\n.hwf-document-music:before { content: \"\\e63e\"; }\n.hwf-document-play:before { content: \"\\e640\"; }\n.hwf-document-recording:before { content: \"\\e63c\"; }\n.hwf-document-remove:before { content: \"\\e650\"; }\n.hwf-document-scan:before { content: \"\\e67e\"; }\n.hwf-document-search:before { content: \"\\e648\"; }\n.hwf-document-shred:before { content: \"\\e67c\"; }\n.hwf-document-star:before { content: \"\\e649\"; }\n.hwf-document-table:before { content: \"\\e63d\"; }\n.hwf-document-text:before { content: \"\\e636\"; }\n.hwf-document-text2:before { content: \"\\e637\"; }\n.hwf-document-text3:before { content: \"\\e643\"; }\n.hwf-document-time:before { content: \"\\e642\"; }\n.hwf-document-unlocked:before { content: \"\\e64a\"; }\n.hwf-document-upload:before { content: \"\\e639\"; }\n.hwf-document-zip:before { content: \"\\e66b\"; }\n.hwf-documents:before { content: \"\\e646\"; }\n.hwf-documents2:before { content: \"\\e647\"; }\n.hwf-eye:before { content: \"\\e615\"; }\n.hwf-eye-hidden:before { content: \"\\e614\"; }\n.hwf-face-closed-eyes-open-mouth:before { content: \"\\e741\"; }\n.hwf-face-closed-eyes-open-mouth2:before { content: \"\\e742\"; }\n.hwf-face-closed-eyes-open-mouth3:before { content: \"\\e743\"; }\n.hwf-face-closed-meyes:before { content: \"\\e73d\"; }\n.hwf-face-glasses:before { content: \"\\e750\"; }\n.hwf-face-missing-moth:before { content: \"\\e716\"; }\n.hwf-face-moustache:before { content: \"\\e74e\"; }\n.hwf-face-moustache2:before { content: \"\\e74f\"; }\n.hwf-face-open-mouth:before { content: \"\\e71a\"; }\n.hwf-face-open-mouth2:before { content: \"\\e71b\"; }\n.hwf-face-open-mouth-eyebrows:before { content: \"\\e737\"; }\n.hwf-face-open-mouth-eyebrows2:before { content: \"\\e738\"; }\n.hwf-face-stuck-out-tongue:before { content: \"\\e731\"; }\n.hwf-face-stuck-out-tongue2:before { content: \"\\e732\"; }\n.hwf-face-sunglasses:before { content: \"\\e751\"; }\n.hwf-fake-grinning-face-eyebrows:before { content: \"\\e72f\"; }\n.hwf-file-3gp:before { content: \"\\e7b9\"; }\n.hwf-file-aac:before { content: \"\\e7bb\"; }\n.hwf-file-ai:before { content: \"\\e791\"; }\n.hwf-file-aiff:before { content: \"\\e7ba\"; }\n.hwf-file-app:before { content: \"\\e785\"; }\n.hwf-file-asp:before { content: \"\\e7a4\"; }\n.hwf-file-avi:before { content: \"\\e7ab\"; }\n.hwf-file-bmp:before { content: \"\\e792\"; }\n.hwf-file-c:before { content: \"\\e799\"; }\n.hwf-file-cpp:before { content: \"\\e79c\"; }\n.hwf-file-css:before { content: \"\\e78e\"; }\n.hwf-file-dat:before { content: \"\\e7a6\"; }\n.hwf-file-dmg:before { content: \"\\e7c0\"; }\n.hwf-file-doc:before { content: \"\\e79f\"; }\n.hwf-file-docx:before { content: \"\\e7a2\"; }\n.hwf-file-dot:before { content: \"\\e7b1\"; }\n.hwf-file-dotx:before { content: \"\\e7ad\"; }\n.hwf-file-dwg:before { content: \"\\e793\"; }\n.hwf-file-dxf:before { content: \"\\e79e\"; }\n.hwf-file-eps:before { content: \"\\e794\"; }\n.hwf-file-exe:before { content: \"\\e7aa\"; }\n.hwf-file-flv:before { content: \"\\e7b5\"; }\n.hwf-file-gif:before { content: \"\\e7c3\"; }\n.hwf-file-h:before { content: \"\\e7a9\"; }\n.hwf-file-html:before { content: \"\\e78d\"; }\n.hwf-file-ics:before { content: \"\\e7a5\"; }\n.hwf-file-iso:before { content: \"\\e7c1\"; }\n.hwf-file-java:before { content: \"\\e78f\"; }\n.hwf-file-jpg:before { content: \"\\e78b\"; }\n.hwf-file-key:before { content: \"\\e78c\"; }\n.hwf-file-m4v:before { content: \"\\e7b4\"; }\n.hwf-file-mid:before { content: \"\\e7b8\"; }\n.hwf-file-mov:before { content: \"\\e78a\"; }\n.hwf-file-mp3:before { content: \"\\e788\"; }\n.hwf-file-mp4:before { content: \"\\e789\"; }\n.hwf-file-mpg:before { content: \"\\e7b6\"; }\n.hwf-file-numbers:before { content: \"\\e783\"; }\n.hwf-file-odp:before { content: \"\\e7ac\"; }\n.hwf-file-ods:before { content: \"\\e7af\"; }\n.hwf-file-odt:before { content: \"\\e7a0\"; }\n.hwf-file-ots:before { content: \"\\e796\"; }\n.hwf-file-ott:before { content: \"\\e7be\"; }\n.hwf-file-pages:before { content: \"\\e784\"; }\n.hwf-file-pdf:before { content: \"\\e787\"; }\n.hwf-file-php:before { content: \"\\e797\"; }\n.hwf-file-png:before { content: \"\\e786\"; }\n.hwf-file-pps:before { content: \"\\e7b0\"; }\n.hwf-file-ppt:before { content: \"\\e7a3\"; }\n.hwf-file-psd:before { content: \"\\e790\"; }\n.hwf-file-py:before { content: \"\\e798\"; }\n.hwf-file-quicktime:before { content: \"\\e7b7\"; }\n.hwf-file-rar:before { content: \"\\e7c2\"; }\n.hwf-file-rb:before { content: \"\\e79b\"; }\n.hwf-file-rtf:before { content: \"\\e7b3\"; }\n.hwf-file-sql:before { content: \"\\e79a\"; }\n.hwf-file-tga:before { content: \"\\e79d\"; }\n.hwf-file-tgz:before { content: \"\\e7bf\"; }\n.hwf-file-tiff:before { content: \"\\e795\"; }\n.hwf-file-txt:before { content: \"\\e7b2\"; }\n.hwf-file-wav:before { content: \"\\e7bc\"; }\n.hwf-file-xls:before { content: \"\\e7a1\"; }\n.hwf-file-xlsx:before { content: \"\\e7ae\"; }\n.hwf-file-xml:before { content: \"\\e7a7\"; }\n.hwf-file-yml:before { content: \"\\e7a8\"; }\n.hwf-file-zip:before { content: \"\\e7bd\"; }\n.hwf-flag:before { content: \"\\e60d\"; }\n.hwf-flag2:before { content: \"\\e60e\"; }\n.hwf-flag3:before { content: \"\\e60f\"; }\n.hwf-flag4:before { content: \"\\e610\"; }\n.hwf-flashed-face:before { content: \"\\e713\"; }\n.hwf-flashed-face2:before { content: \"\\e714\"; }\n.hwf-flashed-face-glasses:before { content: \"\\e715\"; }\n.hwf-folder:before { content: \"\\e65c\"; }\n.hwf-folder2:before { content: \"\\e65d\"; }\n.hwf-folder-add:before { content: \"\\e667\"; }\n.hwf-folder-bookmark:before { content: \"\\e66a\"; }\n.hwf-folder-cancel:before { content: \"\\e665\"; }\n.hwf-folder-checked:before { content: \"\\e666\"; }\n.hwf-folder-download:before { content: \"\\e65f\"; }\n.hwf-folder-error:before { content: \"\\e664\"; }\n.hwf-folder-forbidden:before { content: \"\\e669\"; }\n.hwf-folder-information:before { content: \"\\e653\"; }\n.hwf-folder-locked:before { content: \"\\e662\"; }\n.hwf-folder-remove:before { content: \"\\e668\"; }\n.hwf-folder-search:before { content: \"\\e663\"; }\n.hwf-folder-unlocked:before { content: \"\\e661\"; }\n.hwf-folder-upload:before { content: \"\\e660\"; }\n.hwf-folders:before { content: \"\\e65e\"; }\n.hwf-football:before { content: \"\\e69e\"; }\n.hwf-football2:before { content: \"\\e69f\"; }\n.hwf-full-moon:before { content: \"\\e6f4\"; }\n.hwf-gibbous-moon:before { content: \"\\e6f7\"; }\n.hwf-gibbous-moon2:before { content: \"\\e6f9\"; }\n.hwf-golf:before { content: \"\\e6b2\"; }\n.hwf-grinning-face:before { content: \"\\e72c\"; }\n.hwf-grinning-face2:before { content: \"\\e746\"; }\n.hwf-grinning-face-eyebrows:before { content: \"\\e725\"; }\n.hwf-grinning-face-eyebrows2:before { content: \"\\e72e\"; }\n.hwf-grinning-face-teeth:before { content: \"\\e734\"; }\n.hwf-grinning-face-teeth2:before { content: \"\\e736\"; }\n.hwf-half-moon:before { content: \"\\e6f6\"; }\n.hwf-half-moon2:before { content: \"\\e6fa\"; }\n.hwf-high-five:before { content: \"\\e755\"; }\n.hwf-hockey-stick:before { content: \"\\e6af\"; }\n.hwf-hockey-sticks:before { content: \"\\e6b0\"; }\n.hwf-ice-skate:before { content: \"\\e6c8\"; }\n.hwf-inbox:before { content: \"\\e656\"; }\n.hwf-inbox-document:before { content: \"\\e658\"; }\n.hwf-inbox-document-text:before { content: \"\\e659\"; }\n.hwf-inbox-download:before { content: \"\\e65a\"; }\n.hwf-inbox-filled:before { content: \"\\e683\"; }\n.hwf-inbox-upload:before { content: \"\\e65b\"; }\n.hwf-inboxes:before { content: \"\\e657\"; }\n.hwf-information:before { content: \"\\e61b\"; }\n.hwf-information2:before { content: \"\\e61c\"; }\n.hwf-key:before { content: \"\\e617\"; }\n.hwf-key2:before { content: \"\\e618\"; }\n.hwf-kissing-face:before { content: \"\\e733\"; }\n.hwf-kissing-face2:before { content: \"\\e73c\"; }\n.hwf-laughing-face:before { content: \"\\e71d\"; }\n.hwf-laughing-face2:before { content: \"\\e71e\"; }\n.hwf-laughing-face3:before { content: \"\\e744\"; }\n.hwf-lightning:before { content: \"\\e710\"; }\n.hwf-lock:before { content: \"\\e670\"; }\n.hwf-lock-open:before { content: \"\\e671\"; }\n.hwf-lock-open2:before { content: \"\\e672\"; }\n.hwf-lock-rounded:before { content: \"\\e674\"; }\n.hwf-lock-rounded-open:before { content: \"\\e675\"; }\n.hwf-lock-rounded-open2:before { content: \"\\e676\"; }\n.hwf-lock-stripes:before { content: \"\\e673\"; }\n.hwf-mail--forbidden:before { content: \"\\e60a\"; }\n.hwf-mail-add:before { content: \"\\e60b\"; }\n.hwf-mail-cancel:before { content: \"\\e609\"; }\n.hwf-mail-checked:before { content: \"\\e608\"; }\n.hwf-mail-envelope:before { content: \"\\e600\"; }\n.hwf-mail-envelope-closed:before { content: \"\\e602\"; }\n.hwf-mail-envelope-closed2:before { content: \"\\e605\"; }\n.hwf-mail-envelope-open:before { content: \"\\e601\"; }\n.hwf-mail-envelope-open2:before { content: \"\\e603\"; }\n.hwf-mail-envelope-open3:before { content: \"\\e604\"; }\n.hwf-mail-envelope-open4:before { content: \"\\e606\"; }\n.hwf-mail-error:before { content: \"\\e607\"; }\n.hwf-mail-remove:before { content: \"\\e60c\"; }\n.hwf-medal:before { content: \"\\e6a6\"; }\n.hwf-medal2:before { content: \"\\e6a7\"; }\n.hwf-medal3:before { content: \"\\e6b9\"; }\n.hwf-medal4:before { content: \"\\e6ba\"; }\n.hwf-middle-finger:before { content: \"\\e753\"; }\n.hwf-moon:before { content: \"\\e6e4\"; }\n.hwf-moon2:before { content: \"\\e6f8\"; }\n.hwf-moon-stars:before { content: \"\\e6e3\"; }\n.hwf-moonrise:before { content: \"\\e6f1\"; }\n.hwf-moonset:before { content: \"\\e6f2\"; }\n.hwf-move:before { content: \"\\e6b3\"; }\n.hwf-neutral-face:before { content: \"\\e717\"; }\n.hwf-neutral-face2:before { content: \"\\e721\"; }\n.hwf-neutral-face-eyebrows:before { content: \"\\e727\"; }\n.hwf-note:before { content: \"\\e628\"; }\n.hwf-note-add:before { content: \"\\e629\"; }\n.hwf-note-checked:before { content: \"\\e62d\"; }\n.hwf-note-important:before { content: \"\\e62e\"; }\n.hwf-note-list:before { content: \"\\e62c\"; }\n.hwf-note-remove:before { content: \"\\e62a\"; }\n.hwf-note-text:before { content: \"\\e62b\"; }\n.hwf-notebook:before { content: \"\\e62f\"; }\n.hwf-notebook2:before { content: \"\\e630\"; }\n.hwf-notebook3:before { content: \"\\e631\"; }\n.hwf-notebook4:before { content: \"\\e632\"; }\n.hwf-notebook-list:before { content: \"\\e634\"; }\n.hwf-notebook-text:before { content: \"\\e633\"; }\n.hwf-one-finger:before { content: \"\\e767\"; }\n.hwf-one-finger-click:before { content: \"\\e76c\"; }\n.hwf-one-finger-click2:before { content: \"\\e77a\"; }\n.hwf-one-finger-double-tap:before { content: \"\\e768\"; }\n.hwf-one-finger-double-tap2:before { content: \"\\e774\"; }\n.hwf-one-finger-swipe:before { content: \"\\e77c\"; }\n.hwf-one-finger-swipe-down:before { content: \"\\e766\"; }\n.hwf-one-finger-swipe-down2:before { content: \"\\e782\"; }\n.hwf-one-finger-swipe-horizontally:before { content: \"\\e77b\"; }\n.hwf-one-finger-swipe-left:before { content: \"\\e763\"; }\n.hwf-one-finger-swipe-left2:before { content: \"\\e77f\"; }\n.hwf-one-finger-swipe-right:before { content: \"\\e764\"; }\n.hwf-one-finger-swipe-right2:before { content: \"\\e780\"; }\n.hwf-one-finger-swipe-up:before { content: \"\\e765\"; }\n.hwf-one-finger-swipe-up2:before { content: \"\\e781\"; }\n.hwf-one-finger-tap:before { content: \"\\e769\"; }\n.hwf-one-finger-tap2:before { content: \"\\e778\"; }\n.hwf-one-finger-tap-hold:before { content: \"\\e76a\"; }\n.hwf-one-finger-tap-hold2:before { content: \"\\e779\"; }\n.hwf-package:before { content: \"\\e689\"; }\n.hwf-paperclip:before { content: \"\\e696\"; }\n.hwf-pen:before { content: \"\\e684\"; }\n.hwf-pen-angled:before { content: \"\\e685\"; }\n.hwf-printer:before { content: \"\\e678\"; }\n.hwf-printer2:before { content: \"\\e679\"; }\n.hwf-printer-text:before { content: \"\\e67a\"; }\n.hwf-printer-text2:before { content: \"\\e67b\"; }\n.hwf-rainbow:before { content: \"\\e6ea\"; }\n.hwf-raindrop:before { content: \"\\e6ed\"; }\n.hwf-raindrops:before { content: \"\\e6ec\"; }\n.hwf-rock-n-roll:before { content: \"\\e754\"; }\n.hwf-sad-face:before { content: \"\\e719\"; }\n.hwf-sad-face2:before { content: \"\\e722\"; }\n.hwf-sad-face3:before { content: \"\\e72d\"; }\n.hwf-sad-face4:before { content: \"\\e747\"; }\n.hwf-sad-face5:before { content: \"\\e748\"; }\n.hwf-sad-face6:before { content: \"\\e74a\"; }\n.hwf-sad-face--tightly-closed-eyes:before { content: \"\\e73b\"; }\n.hwf-sad-face-closed-eyes:before { content: \"\\e749\"; }\n.hwf-sad-face-eyebrows:before { content: \"\\e726\"; }\n.hwf-sailing-boat:before { content: \"\\e6c1\"; }\n.hwf-sailing-boat-water:before { content: \"\\e6c2\"; }\n.hwf-search:before { content: \"\\e66d\"; }\n.hwf-search-minus:before { content: \"\\e66f\"; }\n.hwf-search-plus:before { content: \"\\e66e\"; }\n.hwf-shredder:before { content: \"\\e67d\"; }\n.hwf-shuttlecock:before { content: \"\\e6b1\"; }\n.hwf-smiling-face:before { content: \"\\e718\"; }\n.hwf-smiling-face2:before { content: \"\\e723\"; }\n.hwf-smiling-face3:before { content: \"\\e745\"; }\n.hwf-smiling-face4:before { content: \"\\e74b\"; }\n.hwf-smiling-face-eyebrows:before { content: \"\\e724\"; }\n.hwf-smirking-face:before { content: \"\\e71f\"; }\n.hwf-smirking-face-sunglasses:before { content: \"\\e752\"; }\n.hwf-snowflake:before { content: \"\\e712\"; }\n.hwf-soccer-ball:before { content: \"\\e69c\"; }\n.hwf-soccer-court:before { content: \"\\e69d\"; }\n.hwf-soccer-shoe:before { content: \"\\e6c7\"; }\n.hwf-sports-shoe:before { content: \"\\e6c6\"; }\n.hwf-star:before { content: \"\\e616\"; }\n.hwf-stars:before { content: \"\\e6ef\"; }\n.hwf-stop-watch:before { content: \"\\e6ad\"; }\n.hwf-stop-watch2:before { content: \"\\e6ae\"; }\n.hwf-stubborn-face:before { content: \"\\e720\"; }\n.hwf-sun:before { content: \"\\e6e5\"; }\n.hwf-sunglasses:before { content: \"\\e6ee\"; }\n.hwf-sunrise:before { content: \"\\e6e6\"; }\n.hwf-sunset:before { content: \"\\e6e7\"; }\n.hwf-sunset2:before { content: \"\\e6e8\"; }\n.hwf-sunset3:before { content: \"\\e6e9\"; }\n.hwf-table-tennis:before { content: \"\\e6ab\"; }\n.hwf-tag:before { content: \"\\e690\"; }\n.hwf-tag-add:before { content: \"\\e692\"; }\n.hwf-tag-cancel:before { content: \"\\e695\"; }\n.hwf-tag-checked:before { content: \"\\e694\"; }\n.hwf-tag-cord:before { content: \"\\e68f\"; }\n.hwf-tag-remove:before { content: \"\\e693\"; }\n.hwf-tags:before { content: \"\\e691\"; }\n.hwf-target:before { content: \"\\e6c0\"; }\n.hwf-target-arrow:before { content: \"\\e6bf\"; }\n.hwf-tennis-ball:before { content: \"\\e699\"; }\n.hwf-tennis-ball2:before { content: \"\\e6a2\"; }\n.hwf-tennis-racket:before { content: \"\\e6a9\"; }\n.hwf-thermometer:before { content: \"\\e70a\"; }\n.hwf-thermometer-full:before { content: \"\\e70f\"; }\n.hwf-thermometer-half:before { content: \"\\e70d\"; }\n.hwf-thermometer-low:before { content: \"\\e70b\"; }\n.hwf-thermometer-quarter:before { content: \"\\e70c\"; }\n.hwf-thermometer-three-quarters:before { content: \"\\e70e\"; }\n.hwf-three-fingers:before { content: \"\\e771\"; }\n.hwf-three-fingers-double-tap:before { content: \"\\e75f\"; }\n.hwf-three-fingers-double-tap2:before { content: \"\\e772\"; }\n.hwf-three-fingers-swipe-down:before { content: \"\\e770\"; }\n.hwf-three-fingers-swipe-left:before { content: \"\\e76d\"; }\n.hwf-three-fingers-swipe-right:before { content: \"\\e76e\"; }\n.hwf-three-fingers-swipe-up:before { content: \"\\e76f\"; }\n.hwf-thumb-down:before { content: \"\\e757\"; }\n.hwf-thumb-down2:before { content: \"\\e759\"; }\n.hwf-thumb-finger-tap:before { content: \"\\e76b\"; }\n.hwf-thumb-up:before { content: \"\\e756\"; }\n.hwf-thumb-up2:before { content: \"\\e758\"; }\n.hwf-tornado:before { content: \"\\e702\"; }\n.hwf-trash-can:before { content: \"\\e619\"; }\n.hwf-trash-can2:before { content: \"\\e61a\"; }\n.hwf-trophy:before { content: \"\\e6a3\"; }\n.hwf-trophy2:before { content: \"\\e6a5\"; }\n.hwf-trophy-one:before { content: \"\\e6a4\"; }\n.hwf-two-fingers:before { content: \"\\e75e\"; }\n.hwf-two-fingers-double-tap:before { content: \"\\e77d\"; }\n.hwf-two-fingers-resize-in:before { content: \"\\e761\"; }\n.hwf-two-fingers-resize-out:before { content: \"\\e760\"; }\n.hwf-two-fingers-rotate:before { content: \"\\e762\"; }\n.hwf-two-fingers-swipe-down:before { content: \"\\e75d\"; }\n.hwf-two-fingers-swipe-down2:before { content: \"\\e775\"; }\n.hwf-two-fingers-swipe-left:before { content: \"\\e75a\"; }\n.hwf-two-fingers-swipe-left2:before { content: \"\\e777\"; }\n.hwf-two-fingers-swipe-right:before { content: \"\\e75b\"; }\n.hwf-two-fingers-swipe-right2:before { content: \"\\e776\"; }\n.hwf-two-fingers-swipe-up:before { content: \"\\e75c\"; }\n.hwf-two-fingers-swipe-up2:before { content: \"\\e773\"; }\n.hwf-two-fingers-tap:before { content: \"\\e77e\"; }\n.hwf-umbrella:before { content: \"\\e6eb\"; }\n.hwf-unamused-face-tightly-closed-eyes:before { content: \"\\e73a\"; }\n.hwf-volleyball:before { content: \"\\e6ac\"; }\n.hwf-volleyball-water:before { content: \"\\e6bd\"; }\n.hwf-warning:before { content: \"\\e705\"; }\n.hwf-weights:before { content: \"\\e6a8\"; }\n.hwf-whistle:before { content: \"\\e6bc\"; }\n.hwf-wind:before { content: \"\\e6f3\"; }\n.hwf-wind-turbine:before { content: \"\\e711\"; }\n.hwf-winking-face:before { content: \"\\e71c\"; }\n.hwf-winking-face2:before { content: \"\\e72a\"; }\n.hwf-worried-face:before { content: \"\\e729\"; }\n.hwf-worried-face-eyebrows:before { content: \"\\e730\"; }\n.hwf-zip:before { content: \"\\e66c\"; }"
  },
  {
    "path": "icon-packs/ikonli-hawcons-pack/src/main/resources/META-INF/resources/hawcons/20140708/css/hawconsstroke.css",
    "content": "@font-face {\n\tfont-family: 'Hawcons-Stroke';\n\tsrc:url('../fonts/hawconsstroke.eot?-kxka6d');\n\tsrc:url('../fonts/hawconsstroke.eot?#iefix-kxka6d') format('embedded-opentype'),\n\turl('../fonts/hawconsstroke.woff?-kxka6d') format('woff'),\n\turl('../fonts/hawconsstroke.ttf?-kxka6d') format('truetype'),\n\turl('../fonts/hawconsstroke.svg?-kxka6d#hawcons') format('svg');\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n.hws:before {\n\tfont-family: 'Hawcons-Stroke';\n\tspeak: none;\n\tfont-style: normal;\n\tfont-weight: normal;\n\tfont-variant: normal;\n\ttext-transform: none;\n\tline-height: 1;\n\n\t/* Better Font Rendering =========== */\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n}\n\n.hws-air-sock:before { content: \"\\e701\"; }\n.hws-amused-face:before { content: \"\\e73f\"; }\n.hws-amused-face-closed-eyes:before { content: \"\\e740\"; }\n.hws-amused-face-closed-eyes2:before { content: \"\\e741\"; }\n.hws-angry-face:before { content: \"\\e728\"; }\n.hws-angry-face-eyebrows:before { content: \"\\e72b\"; }\n.hws-angry-face-open-mouth-eyebrows:before { content: \"\\e73a\"; }\n.hws-angry-face-teeth:before { content: \"\\e735\"; }\n.hws-astonished-face:before { content: \"\\e74d\"; }\n.hws-astonished-face2:before { content: \"\\e74e\"; }\n.hws-award:before { content: \"\\e6b5\"; }\n.hws-award2:before { content: \"\\e6b6\"; }\n.hws-award3:before { content: \"\\e6b7\"; }\n.hws-award4:before { content: \"\\e6b8\"; }\n.hws-barometer:before { content: \"\\e6fc\"; }\n.hws-baseball:before { content: \"\\e698\"; }\n.hws-baseball-set:before { content: \"\\e6a1\"; }\n.hws-basketball:before { content: \"\\e697\"; }\n.hws-basketball2:before { content: \"\\e6a0\"; }\n.hws-basketball-hoop:before { content: \"\\e6aa\"; }\n.hws-billiard-ball:before { content: \"\\e69b\"; }\n.hws-book:before { content: \"\\e61d\"; }\n.hws-book-bookmark:before { content: \"\\e61e\"; }\n.hws-bookmark:before { content: \"\\e611\"; }\n.hws-bookmark-add:before { content: \"\\e612\"; }\n.hws-bookmark-remove:before { content: \"\\e613\"; }\n.hws-bowling-ball:before { content: \"\\e69a\"; }\n.hws-bowling-pin-ball:before { content: \"\\e6c4\"; }\n.hws-bowling-pins:before { content: \"\\e6c3\"; }\n.hws-box:before { content: \"\\e68a\"; }\n.hws-box2:before { content: \"\\e68c\"; }\n.hws-box3:before { content: \"\\e68d\"; }\n.hws-box-bookmark:before { content: \"\\e68e\"; }\n.hws-box-filled:before { content: \"\\e68b\"; }\n.hws-boxing-glove:before { content: \"\\e6bb\"; }\n.hws-certificate:before { content: \"\\e688\"; }\n.hws-checkered-flag:before { content: \"\\e6be\"; }\n.hws-clipboard:before { content: \"\\e622\"; }\n.hws-clipboard-add:before { content: \"\\e620\"; }\n.hws-clipboard-checked:before { content: \"\\e625\"; }\n.hws-clipboard-download:before { content: \"\\e623\"; }\n.hws-clipboard-edit:before { content: \"\\e61f\"; }\n.hws-clipboard-list:before { content: \"\\e627\"; }\n.hws-clipboard-move:before { content: \"\\e6b4\"; }\n.hws-clipboard-remove:before { content: \"\\e621\"; }\n.hws-clipboard-text:before { content: \"\\e626\"; }\n.hws-clipboard-upload:before { content: \"\\e624\"; }\n.hws-cloud:before { content: \"\\e682\"; }\n.hws-cloud2:before { content: \"\\e6c9\"; }\n.hws-cloud-add:before { content: \"\\e6dd\"; }\n.hws-cloud-download:before { content: \"\\e67f\"; }\n.hws-cloud-error:before { content: \"\\e681\"; }\n.hws-cloud-error2:before { content: \"\\e6df\"; }\n.hws-cloud-fog:before { content: \"\\e6e0\"; }\n.hws-cloud-lightning:before { content: \"\\e6d2\"; }\n.hws-cloud-moon:before { content: \"\\e6cb\"; }\n.hws-cloud-moon-fog:before { content: \"\\e6e2\"; }\n.hws-cloud-moon-lightning:before { content: \"\\e6d4\"; }\n.hws-cloud-moon-rain:before { content: \"\\e6ce\"; }\n.hws-cloud-moon-raindrops:before { content: \"\\e6d8\"; }\n.hws-cloud-moon-snow:before { content: \"\\e6d1\"; }\n.hws-cloud-moon-snowflakes:before { content: \"\\e6db\"; }\n.hws-cloud-rain:before { content: \"\\e6cc\"; }\n.hws-cloud-raindrops:before { content: \"\\e6d6\"; }\n.hws-cloud-remove:before { content: \"\\e6de\"; }\n.hws-cloud-snow:before { content: \"\\e6cf\"; }\n.hws-cloud-snowflakes:before { content: \"\\e6d9\"; }\n.hws-cloud-sun:before { content: \"\\e6ca\"; }\n.hws-cloud-sun-fog:before { content: \"\\e6e1\"; }\n.hws-cloud-sun-lightning:before { content: \"\\e6d3\"; }\n.hws-cloud-sun-rain:before { content: \"\\e6cd\"; }\n.hws-cloud-sun-raindrops:before { content: \"\\e6d7\"; }\n.hws-cloud-sun-snow:before { content: \"\\e6d0\"; }\n.hws-cloud-sun-snowflakes:before { content: \"\\e6da\"; }\n.hws-cloud-upload:before { content: \"\\e680\"; }\n.hws-cloud-wind:before { content: \"\\e6d5\"; }\n.hws-clouds:before { content: \"\\e6dc\"; }\n.hws-clouds2:before { content: \"\\e6f0\"; }\n.hws-combination-lock:before { content: \"\\e677\"; }\n.hws-compass:before { content: \"\\e706\"; }\n.hws-compass2:before { content: \"\\e707\"; }\n.hws-compass3:before { content: \"\\e708\"; }\n.hws-compass4:before { content: \"\\e709\"; }\n.hws-compass-east:before { content: \"\\e6ff\"; }\n.hws-compass-north:before { content: \"\\e6fd\"; }\n.hws-compass-south:before { content: \"\\e700\"; }\n.hws-compass-west:before { content: \"\\e6fe\"; }\n.hws-crescent:before { content: \"\\e6f5\"; }\n.hws-crescent2:before { content: \"\\e6fb\"; }\n.hws-degree-celsius:before { content: \"\\e704\"; }\n.hws-degree-fahrenheit:before { content: \"\\e703\"; }\n.hws-diving-goggles:before { content: \"\\e6c5\"; }\n.hws-document:before { content: \"\\e635\"; }\n.hws-document-add:before { content: \"\\e64f\"; }\n.hws-document-bookmark:before { content: \"\\e63a\"; }\n.hws-document-cancel:before { content: \"\\e64d\"; }\n.hws-document-certificate:before { content: \"\\e687\"; }\n.hws-document-checked:before { content: \"\\e64e\"; }\n.hws-document-cloud:before { content: \"\\e645\"; }\n.hws-document-code:before { content: \"\\e644\"; }\n.hws-document-diagrams:before { content: \"\\e63b\"; }\n.hws-document-download:before { content: \"\\e638\"; }\n.hws-document-edit:before { content: \"\\e686\"; }\n.hws-document-error:before { content: \"\\e64c\"; }\n.hws-document-file-3gp:before { content: \"\\e7fb\"; }\n.hws-document-file-aac:before { content: \"\\e7fd\"; }\n.hws-document-file-ai:before { content: \"\\e7d3\"; }\n.hws-document-file-aiff:before { content: \"\\e7fc\"; }\n.hws-document-file-app:before { content: \"\\e7c7\"; }\n.hws-document-file-asp:before { content: \"\\e7e6\"; }\n.hws-document-file-avi:before { content: \"\\e7ed\"; }\n.hws-document-file-bmp:before { content: \"\\e7d4\"; }\n.hws-document-file-c:before { content: \"\\e7db\"; }\n.hws-document-file-cpp:before { content: \"\\e7de\"; }\n.hws-document-file-css:before { content: \"\\e7d0\"; }\n.hws-document-file-dat:before { content: \"\\e7e8\"; }\n.hws-document-file-dmg:before { content: \"\\e802\"; }\n.hws-document-file-doc:before { content: \"\\e7e1\"; }\n.hws-document-file-docx:before { content: \"\\e7e4\"; }\n.hws-document-file-dot:before { content: \"\\e7f3\"; }\n.hws-document-file-dotx:before { content: \"\\e7ef\"; }\n.hws-document-file-dwg:before { content: \"\\e7d5\"; }\n.hws-document-file-dxf:before { content: \"\\e7e0\"; }\n.hws-document-file-eps:before { content: \"\\e7d6\"; }\n.hws-document-file-exe:before { content: \"\\e7ec\"; }\n.hws-document-file-flv:before { content: \"\\e7f7\"; }\n.hws-document-file-gif:before { content: \"\\e805\"; }\n.hws-document-file-h:before { content: \"\\e7eb\"; }\n.hws-document-file-html:before { content: \"\\e7cf\"; }\n.hws-document-file-ics:before { content: \"\\e7e7\"; }\n.hws-document-file-iso:before { content: \"\\e803\"; }\n.hws-document-file-java:before { content: \"\\e7d1\"; }\n.hws-document-file-jpg:before { content: \"\\e7cd\"; }\n.hws-document-file-key:before { content: \"\\e7ce\"; }\n.hws-document-file-m4v:before { content: \"\\e7f6\"; }\n.hws-document-file-mid:before { content: \"\\e7fa\"; }\n.hws-document-file-mov:before { content: \"\\e7cc\"; }\n.hws-document-file-mp3:before { content: \"\\e7ca\"; }\n.hws-document-file-mp4:before { content: \"\\e7cb\"; }\n.hws-document-file-mpg:before { content: \"\\e7f8\"; }\n.hws-document-file-numbers:before { content: \"\\e7c5\"; }\n.hws-document-file-odp:before { content: \"\\e7ee\"; }\n.hws-document-file-ods:before { content: \"\\e7f1\"; }\n.hws-document-file-odt:before { content: \"\\e7e2\"; }\n.hws-document-file-ots:before { content: \"\\e7d8\"; }\n.hws-document-file-ott:before { content: \"\\e800\"; }\n.hws-document-file-pages:before { content: \"\\e7c6\"; }\n.hws-document-file-pdf:before { content: \"\\e7c9\"; }\n.hws-document-file-php:before { content: \"\\e7d9\"; }\n.hws-document-file-png:before { content: \"\\e7c8\"; }\n.hws-document-file-pps:before { content: \"\\e7f2\"; }\n.hws-document-file-ppt:before { content: \"\\e7e5\"; }\n.hws-document-file-psd:before { content: \"\\e7d2\"; }\n.hws-document-file-py:before { content: \"\\e7da\"; }\n.hws-document-file-qt:before { content: \"\\e7f9\"; }\n.hws-document-file-rar:before { content: \"\\e804\"; }\n.hws-document-file-rb:before { content: \"\\e7dd\"; }\n.hws-document-file-rtf:before { content: \"\\e7f5\"; }\n.hws-document-file-sql:before { content: \"\\e7dc\"; }\n.hws-document-file-tga:before { content: \"\\e7df\"; }\n.hws-document-file-tgz:before { content: \"\\e801\"; }\n.hws-document-file-tiff:before { content: \"\\e7d7\"; }\n.hws-document-file-txt:before { content: \"\\e7f4\"; }\n.hws-document-file-wav:before { content: \"\\e7fe\"; }\n.hws-document-file-xls:before { content: \"\\e7e3\"; }\n.hws-document-file-xlsx:before { content: \"\\e7f0\"; }\n.hws-document-file-xml:before { content: \"\\e7e9\"; }\n.hws-document-file-yml:before { content: \"\\e7ea\"; }\n.hws-document-file-zip:before { content: \"\\e7ff\"; }\n.hws-document-font:before { content: \"\\e655\"; }\n.hws-document-forbidden:before { content: \"\\e651\"; }\n.hws-document-graph:before { content: \"\\e641\"; }\n.hws-document-information:before { content: \"\\e652\"; }\n.hws-document-list:before { content: \"\\e654\"; }\n.hws-document-locked:before { content: \"\\e64b\"; }\n.hws-document-movie:before { content: \"\\e63f\"; }\n.hws-document-music:before { content: \"\\e63e\"; }\n.hws-document-play:before { content: \"\\e640\"; }\n.hws-document-recording:before { content: \"\\e63c\"; }\n.hws-document-remove:before { content: \"\\e650\"; }\n.hws-document-scan:before { content: \"\\e67e\"; }\n.hws-document-search:before { content: \"\\e648\"; }\n.hws-document-shred:before { content: \"\\e67c\"; }\n.hws-document-star:before { content: \"\\e649\"; }\n.hws-document-table:before { content: \"\\e63d\"; }\n.hws-document-text:before { content: \"\\e636\"; }\n.hws-document-text2:before { content: \"\\e637\"; }\n.hws-document-text3:before { content: \"\\e643\"; }\n.hws-document-time:before { content: \"\\e642\"; }\n.hws-document-unlocked:before { content: \"\\e64a\"; }\n.hws-document-upload:before { content: \"\\e639\"; }\n.hws-document-zip:before { content: \"\\e66b\"; }\n.hws-documents:before { content: \"\\e646\"; }\n.hws-documents2:before { content: \"\\e647\"; }\n.hws-eye:before { content: \"\\e615\"; }\n.hws-eye-hidden:before { content: \"\\e614\"; }\n.hws-face-closed-eyes-open-mouth:before { content: \"\\e742\"; }\n.hws-face-closed-eyes-open-mouth2:before { content: \"\\e743\"; }\n.hws-face-closed-eyes-open-mouth3:before { content: \"\\e744\"; }\n.hws-face-closed-meyes:before { content: \"\\e73e\"; }\n.hws-face-glasses:before { content: \"\\e751\"; }\n.hws-face-missing-moth:before { content: \"\\e716\"; }\n.hws-face-moustache:before { content: \"\\e74f\"; }\n.hws-face-moustache2:before { content: \"\\e750\"; }\n.hws-face-open-mouth:before { content: \"\\e71a\"; }\n.hws-face-open-mouth2:before { content: \"\\e71b\"; }\n.hws-face-open-mouth-eyebrows:before { content: \"\\e738\"; }\n.hws-face-open-mouth-eyebrows2:before { content: \"\\e739\"; }\n.hws-face-stuck-out-tongue:before { content: \"\\e731\"; }\n.hws-face-stuck-out-tongue2:before { content: \"\\e732\"; }\n.hws-face-sunglasses:before { content: \"\\e752\"; }\n.hws-fake-grinning-face-eyebrows:before { content: \"\\e72f\"; }\n.hws-file-3gp:before { content: \"\\e7ba\"; }\n.hws-file-aac:before { content: \"\\e7bc\"; }\n.hws-file-ai:before { content: \"\\e792\"; }\n.hws-file-aiff:before { content: \"\\e7bb\"; }\n.hws-file-app:before { content: \"\\e786\"; }\n.hws-file-asp:before { content: \"\\e7a5\"; }\n.hws-file-avi:before { content: \"\\e7ac\"; }\n.hws-file-bmp:before { content: \"\\e793\"; }\n.hws-file-c:before { content: \"\\e79a\"; }\n.hws-file-cpp:before { content: \"\\e79d\"; }\n.hws-file-css:before { content: \"\\e78f\"; }\n.hws-file-dat:before { content: \"\\e7a7\"; }\n.hws-file-dmg:before { content: \"\\e7c1\"; }\n.hws-file-doc:before { content: \"\\e7a0\"; }\n.hws-file-docx:before { content: \"\\e7a3\"; }\n.hws-file-dot:before { content: \"\\e7b2\"; }\n.hws-file-dotx:before { content: \"\\e7ae\"; }\n.hws-file-dwg:before { content: \"\\e794\"; }\n.hws-file-dxf:before { content: \"\\e79f\"; }\n.hws-file-eps:before { content: \"\\e795\"; }\n.hws-file-exe:before { content: \"\\e7ab\"; }\n.hws-file-flv:before { content: \"\\e7b6\"; }\n.hws-file-gif:before { content: \"\\e7c4\"; }\n.hws-file-h:before { content: \"\\e7aa\"; }\n.hws-file-html:before { content: \"\\e78e\"; }\n.hws-file-ics:before { content: \"\\e7a6\"; }\n.hws-file-iso:before { content: \"\\e7c2\"; }\n.hws-file-java:before { content: \"\\e790\"; }\n.hws-file-jpg:before { content: \"\\e78c\"; }\n.hws-file-key:before { content: \"\\e78d\"; }\n.hws-file-m4v:before { content: \"\\e7b5\"; }\n.hws-file-mid:before { content: \"\\e7b9\"; }\n.hws-file-mov:before { content: \"\\e78b\"; }\n.hws-file-mp3:before { content: \"\\e789\"; }\n.hws-file-mp4:before { content: \"\\e78a\"; }\n.hws-file-mpg:before { content: \"\\e7b7\"; }\n.hws-file-numbers:before { content: \"\\e784\"; }\n.hws-file-odp:before { content: \"\\e7ad\"; }\n.hws-file-ods:before { content: \"\\e7b0\"; }\n.hws-file-odt:before { content: \"\\e7a1\"; }\n.hws-file-ots:before { content: \"\\e797\"; }\n.hws-file-ott:before { content: \"\\e7bf\"; }\n.hws-file-pages:before { content: \"\\e785\"; }\n.hws-file-pdf:before { content: \"\\e788\"; }\n.hws-file-php:before { content: \"\\e798\"; }\n.hws-file-png:before { content: \"\\e787\"; }\n.hws-file-pps:before { content: \"\\e7b1\"; }\n.hws-file-ppt:before { content: \"\\e7a4\"; }\n.hws-file-psd:before { content: \"\\e791\"; }\n.hws-file-py:before { content: \"\\e799\"; }\n.hws-file-quicktime:before { content: \"\\e7b8\"; }\n.hws-file-rar:before { content: \"\\e7c3\"; }\n.hws-file-rb:before { content: \"\\e79c\"; }\n.hws-file-rtf:before { content: \"\\e7b4\"; }\n.hws-file-sql:before { content: \"\\e79b\"; }\n.hws-file-tga:before { content: \"\\e79e\"; }\n.hws-file-tgz:before { content: \"\\e7c0\"; }\n.hws-file-tiff:before { content: \"\\e796\"; }\n.hws-file-txt:before { content: \"\\e7b3\"; }\n.hws-file-wav:before { content: \"\\e7bd\"; }\n.hws-file-xls:before { content: \"\\e7a2\"; }\n.hws-file-xlsx:before { content: \"\\e7af\"; }\n.hws-file-xml:before { content: \"\\e7a8\"; }\n.hws-file-yml:before { content: \"\\e7a9\"; }\n.hws-file-zip:before { content: \"\\e7be\"; }\n.hws-flag:before { content: \"\\e60d\"; }\n.hws-flag2:before { content: \"\\e60e\"; }\n.hws-flag3:before { content: \"\\e60f\"; }\n.hws-flag4:before { content: \"\\e610\"; }\n.hws-flashed-face:before { content: \"\\e713\"; }\n.hws-flashed-face2:before { content: \"\\e714\"; }\n.hws-flashed-face-glasses:before { content: \"\\e715\"; }\n.hws-folder:before { content: \"\\e65c\"; }\n.hws-folder2:before { content: \"\\e65d\"; }\n.hws-folder-add:before { content: \"\\e667\"; }\n.hws-folder-bookmark:before { content: \"\\e66a\"; }\n.hws-folder-cancel:before { content: \"\\e665\"; }\n.hws-folder-checked:before { content: \"\\e666\"; }\n.hws-folder-download:before { content: \"\\e65f\"; }\n.hws-folder-error:before { content: \"\\e664\"; }\n.hws-folder-forbidden:before { content: \"\\e669\"; }\n.hws-folder-information:before { content: \"\\e653\"; }\n.hws-folder-locked:before { content: \"\\e662\"; }\n.hws-folder-remove:before { content: \"\\e668\"; }\n.hws-folder-search:before { content: \"\\e663\"; }\n.hws-folder-unlocked:before { content: \"\\e661\"; }\n.hws-folder-upload:before { content: \"\\e660\"; }\n.hws-folders:before { content: \"\\e65e\"; }\n.hws-football:before { content: \"\\e69e\"; }\n.hws-football2:before { content: \"\\e69f\"; }\n.hws-full-moon:before { content: \"\\e6f4\"; }\n.hws-gibbous-moon:before { content: \"\\e6f7\"; }\n.hws-gibbous-moon2:before { content: \"\\e6f9\"; }\n.hws-golf:before { content: \"\\e6b2\"; }\n.hws-grinning-face:before { content: \"\\e72c\"; }\n.hws-grinning-face2:before { content: \"\\e747\"; }\n.hws-grinning-face-eyebrows:before { content: \"\\e725\"; }\n.hws-grinning-face-eyebrows2:before { content: \"\\e72e\"; }\n.hws-grinning-face-teeth:before { content: \"\\e734\"; }\n.hws-grinning-face-teeth2:before { content: \"\\e737\"; }\n.hws-half-moon:before { content: \"\\e6f6\"; }\n.hws-half-moon2:before { content: \"\\e6fa\"; }\n.hws-high-five:before { content: \"\\e756\"; }\n.hws-hockey-stick:before { content: \"\\e6af\"; }\n.hws-hockey-sticks:before { content: \"\\e6b0\"; }\n.hws-ice-skate:before { content: \"\\e6c8\"; }\n.hws-inbox:before { content: \"\\e656\"; }\n.hws-inbox-document:before { content: \"\\e658\"; }\n.hws-inbox-document-text:before { content: \"\\e659\"; }\n.hws-inbox-download:before { content: \"\\e65a\"; }\n.hws-inbox-filled:before { content: \"\\e683\"; }\n.hws-inbox-upload:before { content: \"\\e65b\"; }\n.hws-inboxes:before { content: \"\\e657\"; }\n.hws-information:before { content: \"\\e61b\"; }\n.hws-information2:before { content: \"\\e61c\"; }\n.hws-key:before { content: \"\\e617\"; }\n.hws-key2:before { content: \"\\e618\"; }\n.hws-kissing-face:before { content: \"\\e733\"; }\n.hws-kissing-face2:before { content: \"\\e73d\"; }\n.hws-laughing-face:before { content: \"\\e71d\"; }\n.hws-laughing-face2:before { content: \"\\e71e\"; }\n.hws-laughing-face3:before { content: \"\\e745\"; }\n.hws-lightning:before { content: \"\\e710\"; }\n.hws-lock:before { content: \"\\e670\"; }\n.hws-lock-open:before { content: \"\\e671\"; }\n.hws-lock-open2:before { content: \"\\e672\"; }\n.hws-lock-rounded:before { content: \"\\e674\"; }\n.hws-lock-rounded-open:before { content: \"\\e675\"; }\n.hws-lock-rounded-open2:before { content: \"\\e676\"; }\n.hws-lock-stripes:before { content: \"\\e673\"; }\n.hws-mail--forbidden:before { content: \"\\e60a\"; }\n.hws-mail-add:before { content: \"\\e60b\"; }\n.hws-mail-cancel:before { content: \"\\e609\"; }\n.hws-mail-checked:before { content: \"\\e608\"; }\n.hws-mail-envelope:before { content: \"\\e600\"; }\n.hws-mail-envelope-closed:before { content: \"\\e602\"; }\n.hws-mail-envelope-closed2:before { content: \"\\e605\"; }\n.hws-mail-envelope-open:before { content: \"\\e601\"; }\n.hws-mail-envelope-open2:before { content: \"\\e603\"; }\n.hws-mail-envelope-open3:before { content: \"\\e604\"; }\n.hws-mail-envelope-open4:before { content: \"\\e606\"; }\n.hws-mail-error:before { content: \"\\e607\"; }\n.hws-mail-remove:before { content: \"\\e60c\"; }\n.hws-medal:before { content: \"\\e6a6\"; }\n.hws-medal2:before { content: \"\\e6a7\"; }\n.hws-medal3:before { content: \"\\e6b9\"; }\n.hws-medal4:before { content: \"\\e6ba\"; }\n.hws-middle-finger:before { content: \"\\e754\"; }\n.hws-moon:before { content: \"\\e6e4\"; }\n.hws-moon2:before { content: \"\\e6f8\"; }\n.hws-moon-stars:before { content: \"\\e6e3\"; }\n.hws-moonrise:before { content: \"\\e6f1\"; }\n.hws-moonset:before { content: \"\\e6f2\"; }\n.hws-move:before { content: \"\\e6b3\"; }\n.hws-neutral-face:before { content: \"\\e717\"; }\n.hws-neutral-face2:before { content: \"\\e721\"; }\n.hws-neutral-face-eyebrows:before { content: \"\\e727\"; }\n.hws-note:before { content: \"\\e628\"; }\n.hws-note-add:before { content: \"\\e629\"; }\n.hws-note-checked:before { content: \"\\e62d\"; }\n.hws-note-important:before { content: \"\\e62e\"; }\n.hws-note-list:before { content: \"\\e62c\"; }\n.hws-note-remove:before { content: \"\\e62a\"; }\n.hws-note-text:before { content: \"\\e62b\"; }\n.hws-notebook:before { content: \"\\e62f\"; }\n.hws-notebook2:before { content: \"\\e630\"; }\n.hws-notebook3:before { content: \"\\e631\"; }\n.hws-notebook4:before { content: \"\\e632\"; }\n.hws-notebook-list:before { content: \"\\e634\"; }\n.hws-notebook-text:before { content: \"\\e633\"; }\n.hws-one-finger:before { content: \"\\e768\"; }\n.hws-one-finger-click:before { content: \"\\e76d\"; }\n.hws-one-finger-click2:before { content: \"\\e77b\"; }\n.hws-one-finger-double-tap:before { content: \"\\e769\"; }\n.hws-one-finger-double-tap2:before { content: \"\\e775\"; }\n.hws-one-finger-swipe:before { content: \"\\e77d\"; }\n.hws-one-finger-swipe-down:before { content: \"\\e767\"; }\n.hws-one-finger-swipe-down2:before { content: \"\\e783\"; }\n.hws-one-finger-swipe-horizontally:before { content: \"\\e77c\"; }\n.hws-one-finger-swipe-left:before { content: \"\\e764\"; }\n.hws-one-finger-swipe-left2:before { content: \"\\e780\"; }\n.hws-one-finger-swipe-right:before { content: \"\\e765\"; }\n.hws-one-finger-swipe-right2:before { content: \"\\e781\"; }\n.hws-one-finger-swipe-up:before { content: \"\\e766\"; }\n.hws-one-finger-swipe-up2:before { content: \"\\e782\"; }\n.hws-one-finger-tap:before { content: \"\\e76a\"; }\n.hws-one-finger-tap2:before { content: \"\\e779\"; }\n.hws-one-finger-tap-hold:before { content: \"\\e76b\"; }\n.hws-one-finger-tap-hold2:before { content: \"\\e77a\"; }\n.hws-package:before { content: \"\\e689\"; }\n.hws-paperclip:before { content: \"\\e696\"; }\n.hws-pen:before { content: \"\\e684\"; }\n.hws-pen-angled:before { content: \"\\e685\"; }\n.hws-printer:before { content: \"\\e678\"; }\n.hws-printer2:before { content: \"\\e679\"; }\n.hws-printer-text:before { content: \"\\e67a\"; }\n.hws-printer-text2:before { content: \"\\e67b\"; }\n.hws-rainbow:before { content: \"\\e6ea\"; }\n.hws-raindrop:before { content: \"\\e6ed\"; }\n.hws-raindrops:before { content: \"\\e6ec\"; }\n.hws-rock-n-roll:before { content: \"\\e755\"; }\n.hws-sad-face:before { content: \"\\e719\"; }\n.hws-sad-face2:before { content: \"\\e722\"; }\n.hws-sad-face3:before { content: \"\\e72d\"; }\n.hws-sad-face4:before { content: \"\\e748\"; }\n.hws-sad-face5:before { content: \"\\e749\"; }\n.hws-sad-face6:before { content: \"\\e74b\"; }\n.hws-sad-face--tightly-closed-eyes:before { content: \"\\e73c\"; }\n.hws-sad-face-closed-eyes:before { content: \"\\e74a\"; }\n.hws-sad-face-eyebrows:before { content: \"\\e726\"; }\n.hws-sailing-boat:before { content: \"\\e6c1\"; }\n.hws-sailing-boat-water:before { content: \"\\e6c2\"; }\n.hws-search:before { content: \"\\e66d\"; }\n.hws-search-minus:before { content: \"\\e66f\"; }\n.hws-search-plus:before { content: \"\\e66e\"; }\n.hws-shredder:before { content: \"\\e67d\"; }\n.hws-shuttlecock:before { content: \"\\e6b1\"; }\n.hws-smiling-face:before { content: \"\\e718\"; }\n.hws-smiling-face2:before { content: \"\\e723\"; }\n.hws-smiling-face3:before { content: \"\\e746\"; }\n.hws-smiling-face4:before { content: \"\\e74c\"; }\n.hws-smiling-face-eyebrows:before { content: \"\\e724\"; }\n.hws-smirking-face:before { content: \"\\e71f\"; }\n.hws-smirking-face-sunglasses:before { content: \"\\e753\"; }\n.hws-snowflake:before { content: \"\\e712\"; }\n.hws-soccer-ball:before { content: \"\\e69c\"; }\n.hws-soccer-court:before { content: \"\\e69d\"; }\n.hws-soccer-shoe:before { content: \"\\e6c7\"; }\n.hws-sports-shoe:before { content: \"\\e6c6\"; }\n.hws-star:before { content: \"\\e616\"; }\n.hws-stars:before { content: \"\\e6ef\"; }\n.hws-stop-watch:before { content: \"\\e6ad\"; }\n.hws-stop-watch2:before { content: \"\\e6ae\"; }\n.hws-stubborn-face:before { content: \"\\e720\"; }\n.hws-sun:before { content: \"\\e6e5\"; }\n.hws-sunglasses:before { content: \"\\e6ee\"; }\n.hws-sunrise:before { content: \"\\e6e6\"; }\n.hws-sunset:before { content: \"\\e6e7\"; }\n.hws-sunset2:before { content: \"\\e6e8\"; }\n.hws-sunset3:before { content: \"\\e6e9\"; }\n.hws-table-tennis:before { content: \"\\e6ab\"; }\n.hws-tag:before { content: \"\\e690\"; }\n.hws-tag-add:before { content: \"\\e692\"; }\n.hws-tag-cancel:before { content: \"\\e695\"; }\n.hws-tag-checked:before { content: \"\\e694\"; }\n.hws-tag-cord:before { content: \"\\e68f\"; }\n.hws-tag-remove:before { content: \"\\e693\"; }\n.hws-tags:before { content: \"\\e691\"; }\n.hws-target:before { content: \"\\e6c0\"; }\n.hws-target-arrow:before { content: \"\\e6bf\"; }\n.hws-tennis-ball:before { content: \"\\e699\"; }\n.hws-tennis-ball2:before { content: \"\\e6a2\"; }\n.hws-tennis-racket:before { content: \"\\e6a9\"; }\n.hws-thermometer:before { content: \"\\e70a\"; }\n.hws-thermometer-full:before { content: \"\\e70f\"; }\n.hws-thermometer-half:before { content: \"\\e70d\"; }\n.hws-thermometer-low:before { content: \"\\e70b\"; }\n.hws-thermometer-quarter:before { content: \"\\e70c\"; }\n.hws-thermometer-three-quarters:before { content: \"\\e70e\"; }\n.hws-three-fingers:before { content: \"\\e772\"; }\n.hws-three-fingers-double-tap:before { content: \"\\e760\"; }\n.hws-three-fingers-double-tap2:before { content: \"\\e773\"; }\n.hws-three-fingers-swipe-down:before { content: \"\\e771\"; }\n.hws-three-fingers-swipe-left:before { content: \"\\e76e\"; }\n.hws-three-fingers-swipe-right:before { content: \"\\e76f\"; }\n.hws-three-fingers-swipe-up:before { content: \"\\e770\"; }\n.hws-thumb-down:before { content: \"\\e758\"; }\n.hws-thumb-down2:before { content: \"\\e75a\"; }\n.hws-thumb-finger-tap:before { content: \"\\e76c\"; }\n.hws-thumb-up:before { content: \"\\e757\"; }\n.hws-thumb-up2:before { content: \"\\e759\"; }\n.hws-tornado:before { content: \"\\e702\"; }\n.hws-trash-can:before { content: \"\\e619\"; }\n.hws-trash-can2:before { content: \"\\e61a\"; }\n.hws-trophy:before { content: \"\\e6a3\"; }\n.hws-trophy2:before { content: \"\\e6a5\"; }\n.hws-trophy-one:before { content: \"\\e6a4\"; }\n.hws-two-fingers:before { content: \"\\e75f\"; }\n.hws-two-fingers-double-tap:before { content: \"\\e77e\"; }\n.hws-two-fingers-resize-in:before { content: \"\\e762\"; }\n.hws-two-fingers-resize-out:before { content: \"\\e761\"; }\n.hws-two-fingers-rotate:before { content: \"\\e763\"; }\n.hws-two-fingers-swipe-down:before { content: \"\\e75e\"; }\n.hws-two-fingers-swipe-down2:before { content: \"\\e776\"; }\n.hws-two-fingers-swipe-left:before { content: \"\\e75b\"; }\n.hws-two-fingers-swipe-left2:before { content: \"\\e778\"; }\n.hws-two-fingers-swipe-right:before { content: \"\\e75c\"; }\n.hws-two-fingers-swipe-right2:before { content: \"\\e777\"; }\n.hws-two-fingers-swipe-up:before { content: \"\\e75d\"; }\n.hws-two-fingers-swipe-up2:before { content: \"\\e774\"; }\n.hws-two-fingers-tap:before { content: \"\\e77f\"; }\n.hws-umbrella:before { content: \"\\e6eb\"; }\n.hws-unamused-face-tightly-closed-eyes:before { content: \"\\e73b\"; }\n.hws-volleyball:before { content: \"\\e6ac\"; }\n.hws-volleyball-water:before { content: \"\\e6bd\"; }\n.hws-warning:before { content: \"\\e705\"; }\n.hws-weights:before { content: \"\\e6a8\"; }\n.hws-whistle:before { content: \"\\e6bc\"; }\n.hws-wind:before { content: \"\\e6f3\"; }\n.hws-wind-turbine:before { content: \"\\e711\"; }\n.hws-winking-face:before { content: \"\\e71c\"; }\n.hws-winking-face2:before { content: \"\\e72a\"; }\n.hws-worried-face:before { content: \"\\e729\"; }\n.hws-worried-face-eyebrows:before { content: \"\\e730\"; }\n.hws-worried-face-teeth:before { content: \"\\e736\"; }\n.hws-zip:before { content: \"\\e66c\"; }"
  },
  {
    "path": "icon-packs/ikonli-icomoon-pack/ikonli-icomoon-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-icomoon-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.icomoon {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.icomoon;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.icomoon.IcomoonIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.icomoon.IcomoonIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-icomoon-pack/src/main/java/org/kordamp/ikonli/icomoon/Icomoon.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.icomoon;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Icomoon implements Ikon {\n    // latest is eaea\n    ICM_ACCESSIBILITY(\"icm-accessibility\", '\\ue9b2'),\n    ICM_ADDRESS_BOOK(\"icm-address-book\", '\\ue944'),\n    ICM_AID_KIT(\"icm-aid-kit\", '\\ue998'),\n    ICM_AIRPLANE(\"icm-airplane\", '\\ue9af'),\n    ICM_ALARM(\"icm-alarm\", '\\ue950'),\n    ICM_AMAZON(\"icm-amazon\", '\\uea87'),\n    ICM_ANDROID(\"icm-android\", '\\ueac0'),\n    ICM_ANGRY(\"icm-angry\", '\\ue9ed'),\n    ICM_ANGRY2(\"icm-angry2\", '\\ue9ee'),\n    ICM_APPLEINC(\"icm-appleinc\", '\\ueabe'),\n    ICM_ARROW_DOWN(\"icm-arrow-down\", '\\uea36'),\n    ICM_ARROW_DOWN2(\"icm-arrow-down2\", '\\uea3e'),\n    ICM_ARROW_DOWN_LEFT(\"icm-arrow-down-left\", '\\uea37'),\n    ICM_ARROW_DOWN_LEFT2(\"icm-arrow-down-left2\", '\\uea3f'),\n    ICM_ARROW_DOWN_RIGHT(\"icm-arrow-down-right\", '\\uea35'),\n    ICM_ARROW_DOWN_RIGHT2(\"icm-arrow-down-right2\", '\\uea3d'),\n    ICM_ARROW_LEFT(\"icm-arrow-left\", '\\uea38'),\n    ICM_ARROW_LEFT2(\"icm-arrow-left2\", '\\uea40'),\n    ICM_ARROW_RIGHT(\"icm-arrow-right\", '\\uea34'),\n    ICM_ARROW_RIGHT2(\"icm-arrow-right2\", '\\uea3c'),\n    ICM_ARROW_UP(\"icm-arrow-up\", '\\uea32'),\n    ICM_ARROW_UP2(\"icm-arrow-up2\", '\\uea3a'),\n    ICM_ARROW_UP_LEFT(\"icm-arrow-up-left\", '\\uea31'),\n    ICM_ARROW_UP_LEFT2(\"icm-arrow-up-left2\", '\\uea39'),\n    ICM_ARROW_UP_RIGHT(\"icm-arrow-up-right\", '\\uea33'),\n    ICM_ARROW_UP_RIGHT2(\"icm-arrow-up-right2\", '\\uea3b'),\n    ICM_ATTACHMENT(\"icm-attachment\", '\\ue9cd'),\n    ICM_BACKWARD(\"icm-backward\", '\\uea1a'),\n    ICM_BACKWARD2(\"icm-backward2\", '\\uea1f'),\n    ICM_BAFFLED(\"icm-baffled\", '\\ue9f3'),\n    ICM_BAFFLED2(\"icm-baffled2\", '\\ue9f4'),\n    ICM_BARCODE(\"icm-barcode\", '\\ue937'),\n    ICM_BASECAMP(\"icm-basecamp\", '\\ueab2'),\n    ICM_BEHANCE(\"icm-behance\", '\\ueaa8'),\n    ICM_BEHANCE2(\"icm-behance2\", '\\ueaa9'),\n    ICM_BELL(\"icm-bell\", '\\ue951'),\n    ICM_BIN(\"icm-bin\", '\\ue9ac'),\n    ICM_BIN2(\"icm-bin2\", '\\ue9ad'),\n    ICM_BINOCULARS(\"icm-binoculars\", '\\ue985'),\n    ICM_BLOCKED(\"icm-blocked\", '\\uea0e'),\n    ICM_BLOG(\"icm-blog\", '\\ue909'),\n    ICM_BLOGGER(\"icm-blogger\", '\\ueab7'),\n    ICM_BLOGGER2(\"icm-blogger2\", '\\ueab8'),\n    ICM_BOLD(\"icm-bold\", '\\uea62'),\n    ICM_BOOK(\"icm-book\", '\\ue91f'),\n    ICM_BOOKMARK(\"icm-bookmark\", '\\ue9d2'),\n    ICM_BOOKMARKS(\"icm-bookmarks\", '\\ue9d3'),\n    ICM_BOOKS(\"icm-books\", '\\ue920'),\n    ICM_BOX_ADD(\"icm-box-add\", '\\ue95e'),\n    ICM_BOX_REMOVE(\"icm-box-remove\", '\\ue95f'),\n    ICM_BRIEFCASE(\"icm-briefcase\", '\\ue9ae'),\n    ICM_BRIGHTNESS_CONTRAST(\"icm-brightness-contrast\", '\\ue9d6'),\n    ICM_BUBBLE(\"icm-bubble\", '\\ue96b'),\n    ICM_BUBBLE2(\"icm-bubble2\", '\\ue96e'),\n    ICM_BUBBLES(\"icm-bubbles\", '\\ue96c'),\n    ICM_BUBBLES2(\"icm-bubbles2\", '\\ue96d'),\n    ICM_BUBBLES3(\"icm-bubbles3\", '\\ue96f'),\n    ICM_BUBBLES4(\"icm-bubbles4\", '\\ue970'),\n    ICM_BUG(\"icm-bug\", '\\ue999'),\n    ICM_BULLHORN(\"icm-bullhorn\", '\\ue91a'),\n    ICM_CALCULATOR(\"icm-calculator\", '\\ue940'),\n    ICM_CALENDAR(\"icm-calendar\", '\\ue953'),\n    ICM_CAMERA(\"icm-camera\", '\\ue90f'),\n    ICM_CANCEL_CIRCLE(\"icm-cancel-circle\", '\\uea0d'),\n    ICM_CART(\"icm-cart\", '\\ue93a'),\n    ICM_CHECKBOX_CHECKED(\"icm-checkbox-checked\", '\\uea52'),\n    ICM_CHECKBOX_UNCHECKED(\"icm-checkbox-unchecked\", '\\uea53'),\n    ICM_CHECKMARK(\"icm-checkmark\", '\\uea10'),\n    ICM_CHECKMARK2(\"icm-checkmark2\", '\\uea11'),\n    ICM_CHROME(\"icm-chrome\", '\\uead9'),\n    ICM_CIRCLE_DOWN(\"icm-circle-down\", '\\uea43'),\n    ICM_CIRCLE_LEFT(\"icm-circle-left\", '\\uea44'),\n    ICM_CIRCLE_RIGHT(\"icm-circle-right\", '\\uea42'),\n    ICM_CIRCLE_UP(\"icm-circle-up\", '\\uea41'),\n    ICM_CLEAR_FORMATTING(\"icm-clear-formatting\", '\\uea6f'),\n    ICM_CLIPBOARD(\"icm-clipboard\", '\\ue9b8'),\n    ICM_CLOCK(\"icm-clock\", '\\ue94e'),\n    ICM_CLOCK2(\"icm-clock2\", '\\ue94f'),\n    ICM_CLOUD(\"icm-cloud\", '\\ue9c1'),\n    ICM_CLOUD_CHECK(\"icm-cloud-check\", '\\ue9c4'),\n    ICM_CLOUD_DOWNLOAD(\"icm-cloud-download\", '\\ue9c2'),\n    ICM_CLOUD_UPLOAD(\"icm-cloud-upload\", '\\ue9c3'),\n    ICM_CLUBS(\"icm-clubs\", '\\ue918'),\n    ICM_CODEPEN(\"icm-codepen\", '\\ueae8'),\n    ICM_COG(\"icm-cog\", '\\ue994'),\n    ICM_COGS(\"icm-cogs\", '\\ue995'),\n    ICM_COIN_DOLLAR(\"icm-coin-dollar\", '\\ue93b'),\n    ICM_COIN_EURO(\"icm-coin-euro\", '\\ue93c'),\n    ICM_COIN_POUND(\"icm-coin-pound\", '\\ue93d'),\n    ICM_COIN_YEN(\"icm-coin-yen\", '\\ue93e'),\n    ICM_COMMAND(\"icm-command\", '\\uea4e'),\n    ICM_COMPASS(\"icm-compass\", '\\ue949'),\n    ICM_COMPASS2(\"icm-compass2\", '\\ue94a'),\n    ICM_CONFUSED(\"icm-confused\", '\\ue9f5'),\n    ICM_CONFUSED2(\"icm-confused2\", '\\ue9f6'),\n    ICM_CONNECTION(\"icm-connection\", '\\ue91b'),\n    ICM_CONTRAST(\"icm-contrast\", '\\ue9d5'),\n    ICM_COOL(\"icm-cool\", '\\ue9eb'),\n    ICM_COOL2(\"icm-cool2\", '\\ue9ec'),\n    ICM_COPY(\"icm-copy\", '\\ue92c'),\n    ICM_CREDIT_CARD(\"icm-credit-card\", '\\ue93f'),\n    ICM_CROP(\"icm-crop\", '\\uea57'),\n    ICM_CROSS(\"icm-cross\", '\\uea0f'),\n    ICM_CRYING(\"icm-crying\", '\\uea01'),\n    ICM_CRYING2(\"icm-crying2\", '\\uea02'),\n    ICM_CSS3(\"icm-css3\", '\\ueae6'),\n    ICM_CTRL(\"icm-ctrl\", '\\uea50'),\n    ICM_DATABASE(\"icm-database\", '\\ue964'),\n    ICM_DELICIOUS(\"icm-delicious\", '\\ueacd'),\n    ICM_DEVIANTART(\"icm-deviantart\", '\\ueaaa'),\n    ICM_DIAMONDS(\"icm-diamonds\", '\\ue919'),\n    ICM_DICE(\"icm-dice\", '\\ue915'),\n    ICM_DISPLAY(\"icm-display\", '\\ue956'),\n    ICM_DOWNLOAD(\"icm-download\", '\\ue960'),\n    ICM_DOWNLOAD2(\"icm-download2\", '\\ue9c5'),\n    ICM_DOWNLOAD3(\"icm-download3\", '\\ue9c7'),\n    ICM_DRAWER(\"icm-drawer\", '\\ue95c'),\n    ICM_DRAWER2(\"icm-drawer2\", '\\ue95d'),\n    ICM_DRIBBBLE(\"icm-dribbble\", '\\ueaa7'),\n    ICM_DRIVE(\"icm-drive\", '\\ue963'),\n    ICM_DROPBOX(\"icm-dropbox\", '\\ueaae'),\n    ICM_DROPLET(\"icm-droplet\", '\\ue90b'),\n    ICM_EARTH(\"icm-earth\", '\\ue9ca'),\n    ICM_EDGE(\"icm-edge\", '\\ueadc'),\n    ICM_EJECT(\"icm-eject\", '\\uea25'),\n    ICM_ELLO(\"icm-ello\", '\\ueab6'),\n    ICM_EMBED(\"icm-embed\", '\\uea7f'),\n    ICM_EMBED2(\"icm-embed2\", '\\uea80'),\n    ICM_ENLARGE(\"icm-enlarge\", '\\ue989'),\n    ICM_ENLARGE2(\"icm-enlarge2\", '\\ue98b'),\n    ICM_ENTER(\"icm-enter\", '\\uea13'),\n    ICM_ENVELOP(\"icm-envelop\", '\\ue945'),\n    ICM_EQUALIZER(\"icm-equalizer\", '\\ue992'),\n    ICM_EQUALIZER2(\"icm-equalizer2\", '\\ue993'),\n    ICM_EVIL(\"icm-evil\", '\\ue9ef'),\n    ICM_EVIL2(\"icm-evil2\", '\\ue9f0'),\n    ICM_EXIT(\"icm-exit\", '\\uea14'),\n    ICM_EYE(\"icm-eye\", '\\ue9ce'),\n    ICM_EYEDROPPER(\"icm-eyedropper\", '\\ue90a'),\n    ICM_EYE_BLOCKED(\"icm-eye-blocked\", '\\ue9d1'),\n    ICM_EYE_MINUS(\"icm-eye-minus\", '\\ue9d0'),\n    ICM_EYE_PLUS(\"icm-eye-plus\", '\\ue9cf'),\n    ICM_FACEBOOK(\"icm-facebook\", '\\uea90'),\n    ICM_FACEBOOK2(\"icm-facebook2\", '\\uea91'),\n    ICM_FEED(\"icm-feed\", '\\ue91d'),\n    ICM_FILES_EMPTY(\"icm-files-empty\", '\\ue925'),\n    ICM_FILE_EMPTY(\"icm-file-empty\", '\\ue924'),\n    ICM_FILE_EXCEL(\"icm-file-excel\", '\\ueae2'),\n    ICM_FILE_MUSIC(\"icm-file-music\", '\\ue928'),\n    ICM_FILE_OPENOFFICE(\"icm-file-openoffice\", '\\ueae0'),\n    ICM_FILE_PDF(\"icm-file-pdf\", '\\ueadf'),\n    ICM_FILE_PICTURE(\"icm-file-picture\", '\\ue927'),\n    ICM_FILE_PLAY(\"icm-file-play\", '\\ue929'),\n    ICM_FILE_TEXT(\"icm-file-text\", '\\ue922'),\n    ICM_FILE_TEXT2(\"icm-file-text2\", '\\ue926'),\n    ICM_FILE_VIDEO(\"icm-file-video\", '\\ue92a'),\n    ICM_FILE_WORD(\"icm-file-word\", '\\ueae1'),\n    ICM_FILE_ZIP(\"icm-file-zip\", '\\ue92b'),\n    ICM_FILM(\"icm-film\", '\\ue913'),\n    ICM_FILTER(\"icm-filter\", '\\uea5b'),\n    ICM_FINDER(\"icm-finder\", '\\ueabf'),\n    ICM_FIRE(\"icm-fire\", '\\ue9a9'),\n    ICM_FIREFOX(\"icm-firefox\", '\\ueada'),\n    ICM_FIRST(\"icm-first\", '\\uea21'),\n    ICM_FLAG(\"icm-flag\", '\\ue9cc'),\n    ICM_FLATTR(\"icm-flattr\", '\\uead5'),\n    ICM_FLICKR(\"icm-flickr\", '\\ueaa3'),\n    ICM_FLICKR2(\"icm-flickr2\", '\\ueaa4'),\n    ICM_FLICKR3(\"icm-flickr3\", '\\ueaa5'),\n    ICM_FLICKR4(\"icm-flickr4\", '\\ueaa6'),\n    ICM_FLOPPY_DISK(\"icm-floppy-disk\", '\\ue962'),\n    ICM_FOLDER(\"icm-folder\", '\\ue92f'),\n    ICM_FOLDER_DOWNLOAD(\"icm-folder-download\", '\\ue933'),\n    ICM_FOLDER_MINUS(\"icm-folder-minus\", '\\ue932'),\n    ICM_FOLDER_OPEN(\"icm-folder-open\", '\\ue930'),\n    ICM_FOLDER_PLUS(\"icm-folder-plus\", '\\ue931'),\n    ICM_FOLDER_UPLOAD(\"icm-folder-upload\", '\\ue934'),\n    ICM_FONT(\"icm-font\", '\\uea5c'),\n    ICM_FONT_SIZE(\"icm-font-size\", '\\uea61'),\n    ICM_FORWARD(\"icm-forward\", '\\ue969'),\n    ICM_FORWARD2(\"icm-forward2\", '\\uea1b'),\n    ICM_FORWARD3(\"icm-forward3\", '\\uea20'),\n    ICM_FOURSQUARE(\"icm-foursquare\", '\\uead6'),\n    ICM_FRUSTRATED(\"icm-frustrated\", '\\ue9ff'),\n    ICM_FRUSTRATED2(\"icm-frustrated2\", '\\uea00'),\n    ICM_GIFT(\"icm-gift\", '\\ue99f'),\n    ICM_GIT(\"icm-git\", '\\ueae7'),\n    ICM_GITHUB(\"icm-github\", '\\ueab0'),\n    ICM_GLASS(\"icm-glass\", '\\ue9a0'),\n    ICM_GLASS2(\"icm-glass2\", '\\ue9a1'),\n    ICM_GOOGLE(\"icm-google\", '\\uea88'),\n    ICM_GOOGLE2(\"icm-google2\", '\\uea89'),\n    ICM_GOOGLE3(\"icm-google3\", '\\uea8a'),\n    ICM_GOOGLE_DRIVE(\"icm-google-drive\", '\\uea8f'),\n    ICM_GOOGLE_PLUS(\"icm-google-plus\", '\\uea8b'),\n    ICM_GOOGLE_PLUS2(\"icm-google-plus2\", '\\uea8c'),\n    ICM_GOOGLE_PLUS3(\"icm-google-plus3\", '\\uea8d'),\n    ICM_GRIN(\"icm-grin\", '\\ue9e9'),\n    ICM_GRIN2(\"icm-grin2\", '\\ue9ea'),\n    ICM_HACKERNEWS(\"icm-hackernews\", '\\ueac7'),\n    ICM_HAMMER(\"icm-hammer\", '\\ue996'),\n    ICM_HAMMER2(\"icm-hammer2\", '\\ue9a8'),\n    ICM_HANGOUTS(\"icm-hangouts\", '\\uea8e'),\n    ICM_HAPPY(\"icm-happy\", '\\ue9df'),\n    ICM_HAPPY2(\"icm-happy2\", '\\ue9e0'),\n    ICM_HEADPHONES(\"icm-headphones\", '\\ue910'),\n    ICM_HEART(\"icm-heart\", '\\ue9da'),\n    ICM_HEART_BROKEN(\"icm-heart-broken\", '\\ue9db'),\n    ICM_HIPSTER(\"icm-hipster\", '\\ue9f9'),\n    ICM_HIPSTER2(\"icm-hipster2\", '\\ue9fa'),\n    ICM_HISTORY(\"icm-history\", '\\ue94d'),\n    ICM_HOME(\"icm-home\", '\\ue900'),\n    ICM_HOME2(\"icm-home2\", '\\ue901'),\n    ICM_HOME3(\"icm-home3\", '\\ue902'),\n    ICM_HOUR_GLASS(\"icm-hour-glass\", '\\ue979'),\n    ICM_HTML_FIVE(\"icm-html-five\", '\\ueae4'),\n    ICM_HTML_FIVE2(\"icm-html-five2\", '\\ueae5'),\n    ICM_ICOMOON(\"icm-icomoon\", '\\ueaea'),\n    ICM_IE(\"icm-ie\", '\\ueadb'),\n    ICM_IMAGE(\"icm-image\", '\\ue90d'),\n    ICM_IMAGES(\"icm-images\", '\\ue90e'),\n    ICM_INDENT_DECREASE(\"icm-indent-decrease\", '\\uea7c'),\n    ICM_INDENT_INCREASE(\"icm-indent-increase\", '\\uea7b'),\n    ICM_INFINITE(\"icm-infinite\", '\\uea2f'),\n    ICM_INFO(\"icm-info\", '\\uea0c'),\n    ICM_INSERT_TEMPLATE(\"icm-insert-template\", '\\uea72'),\n    ICM_INSTAGRAM(\"icm-instagram\", '\\uea92'),\n    ICM_ITALIC(\"icm-italic\", '\\uea64'),\n    ICM_JOOMLA(\"icm-joomla\", '\\ueab5'),\n    ICM_KEY(\"icm-key\", '\\ue98d'),\n    ICM_KEY2(\"icm-key2\", '\\ue98e'),\n    ICM_KEYBOARD(\"icm-keyboard\", '\\ue955'),\n    ICM_LAB(\"icm-lab\", '\\ue9aa'),\n    ICM_LANYRD(\"icm-lanyrd\", '\\ueaa2'),\n    ICM_LAPTOP(\"icm-laptop\", '\\ue957'),\n    ICM_LAST(\"icm-last\", '\\uea22'),\n    ICM_LASTFM(\"icm-lastfm\", '\\ueacb'),\n    ICM_LASTFM2(\"icm-lastfm2\", '\\ueacc'),\n    ICM_LEAF(\"icm-leaf\", '\\ue9a4'),\n    ICM_LIBRARY(\"icm-library\", '\\ue921'),\n    ICM_LIBREOFFICE(\"icm-libreoffice\", '\\ueae3'),\n    ICM_LIFEBUOY(\"icm-lifebuoy\", '\\ue941'),\n    ICM_LIGATURE(\"icm-ligature\", '\\uea5d'),\n    ICM_LIGATURE2(\"icm-ligature2\", '\\uea5e'),\n    ICM_LINK(\"icm-link\", '\\ue9cb'),\n    ICM_LINKEDIN(\"icm-linkedin\", '\\ueac9'),\n    ICM_LINKEDIN2(\"icm-linkedin2\", '\\ueaca'),\n    ICM_LIST(\"icm-list\", '\\ue9ba'),\n    ICM_LIST2(\"icm-list2\", '\\ue9bb'),\n    ICM_LIST_NUMBERED(\"icm-list-numbered\", '\\ue9b9'),\n    ICM_LOCATION(\"icm-location\", '\\ue947'),\n    ICM_LOCATION2(\"icm-location2\", '\\ue948'),\n    ICM_LOCK(\"icm-lock\", '\\ue98f'),\n    ICM_LOOP(\"icm-loop\", '\\uea2d'),\n    ICM_LOOP2(\"icm-loop2\", '\\uea2e'),\n    ICM_LTR(\"icm-ltr\", '\\uea74'),\n    ICM_MAGIC_WAND(\"icm-magic-wand\", '\\ue997'),\n    ICM_MAGNET(\"icm-magnet\", '\\ue9ab'),\n    ICM_MAIL(\"icm-mail\", '\\uea83'),\n    ICM_MAIL2(\"icm-mail2\", '\\uea84'),\n    ICM_MAIL3(\"icm-mail3\", '\\uea85'),\n    ICM_MAIL4(\"icm-mail4\", '\\uea86'),\n    ICM_MAKE_GROUP(\"icm-make-group\", '\\uea58'),\n    ICM_MAN(\"icm-man\", '\\ue9dc'),\n    ICM_MAN_WOMAN(\"icm-man-woman\", '\\ue9de'),\n    ICM_MAP(\"icm-map\", '\\ue94b'),\n    ICM_MAP2(\"icm-map2\", '\\ue94c'),\n    ICM_MENU(\"icm-menu\", '\\ue9bd'),\n    ICM_MENU2(\"icm-menu2\", '\\ue9be'),\n    ICM_MENU3(\"icm-menu3\", '\\ue9bf'),\n    ICM_MENU4(\"icm-menu4\", '\\ue9c0'),\n    ICM_METER(\"icm-meter\", '\\ue9a6'),\n    ICM_METER2(\"icm-meter2\", '\\ue9a7'),\n    ICM_MIC(\"icm-mic\", '\\ue91e'),\n    ICM_MINUS(\"icm-minus\", '\\uea0b'),\n    ICM_MOBILE(\"icm-mobile\", '\\ue958'),\n    ICM_MOBILE2(\"icm-mobile2\", '\\ue959'),\n    ICM_MOVE_DOWN(\"icm-move-down\", '\\uea47'),\n    ICM_MOVE_UP(\"icm-move-up\", '\\uea46'),\n    ICM_MUG(\"icm-mug\", '\\ue9a2'),\n    ICM_MUSIC(\"icm-music\", '\\ue911'),\n    ICM_NEUTRAL(\"icm-neutral\", '\\ue9f7'),\n    ICM_NEUTRAL2(\"icm-neutral2\", '\\ue9f8'),\n    ICM_NEWSPAPER(\"icm-newspaper\", '\\ue904'),\n    ICM_NEW_TAB(\"icm-new-tab\", '\\uea7e'),\n    ICM_NEXT(\"icm-next\", '\\uea19'),\n    ICM_NEXT2(\"icm-next2\", '\\uea24'),\n    ICM_NOTIFICATION(\"icm-notification\", '\\uea08'),\n    ICM_NPM(\"icm-npm\", '\\ueab1'),\n    ICM_OFFICE(\"icm-office\", '\\ue903'),\n    ICM_OMEGA(\"icm-omega\", '\\uea66'),\n    ICM_ONEDRIVE(\"icm-onedrive\", '\\ueaaf'),\n    ICM_OPERA(\"icm-opera\", '\\ueade'),\n    ICM_OPT(\"icm-opt\", '\\uea51'),\n    ICM_PACMAN(\"icm-pacman\", '\\ue916'),\n    ICM_PAGEBREAK(\"icm-pagebreak\", '\\uea6e'),\n    ICM_PAGE_BREAK(\"icm-page-break\", '\\uea68'),\n    ICM_PAINT_FORMAT(\"icm-paint-format\", '\\ue90c'),\n    ICM_PARAGRAPH_CENTER(\"icm-paragraph-center\", '\\uea78'),\n    ICM_PARAGRAPH_JUSTIFY(\"icm-paragraph-justify\", '\\uea7a'),\n    ICM_PARAGRAPH_LEFT(\"icm-paragraph-left\", '\\uea77'),\n    ICM_PARAGRAPH_RIGHT(\"icm-paragraph-right\", '\\uea79'),\n    ICM_PASTE(\"icm-paste\", '\\ue92d'),\n    ICM_PAUSE(\"icm-pause\", '\\uea16'),\n    ICM_PAUSE2(\"icm-pause2\", '\\uea1d'),\n    ICM_PAYPAL(\"icm-paypal\", '\\uead8'),\n    ICM_PEN(\"icm-pen\", '\\ue908'),\n    ICM_PENCIL(\"icm-pencil\", '\\ue905'),\n    ICM_PENCIL2(\"icm-pencil2\", '\\ue906'),\n    ICM_PHONE(\"icm-phone\", '\\ue942'),\n    ICM_PHONE_HANG_UP(\"icm-phone-hang-up\", '\\ue943'),\n    ICM_PIE_CHART(\"icm-pie-chart\", '\\ue99a'),\n    ICM_PILCROW(\"icm-pilcrow\", '\\uea73'),\n    ICM_PINTEREST(\"icm-pinterest\", '\\uead1'),\n    ICM_PINTEREST2(\"icm-pinterest2\", '\\uead2'),\n    ICM_PLAY(\"icm-play\", '\\ue912'),\n    ICM_PLAY2(\"icm-play2\", '\\uea15'),\n    ICM_PLAY3(\"icm-play3\", '\\uea1c'),\n    ICM_PLUS(\"icm-plus\", '\\uea0a'),\n    ICM_PODCAST(\"icm-podcast\", '\\ue91c'),\n    ICM_POINT_DOWN(\"icm-point-down\", '\\uea05'),\n    ICM_POINT_LEFT(\"icm-point-left\", '\\uea06'),\n    ICM_POINT_RIGHT(\"icm-point-right\", '\\uea04'),\n    ICM_POINT_UP(\"icm-point-up\", '\\uea03'),\n    ICM_POWER(\"icm-power\", '\\ue9b5'),\n    ICM_POWER_CORD(\"icm-power-cord\", '\\ue9b7'),\n    ICM_PREVIOUS(\"icm-previous\", '\\uea18'),\n    ICM_PREVIOUS2(\"icm-previous2\", '\\uea23'),\n    ICM_PRICE_TAG(\"icm-price-tag\", '\\ue935'),\n    ICM_PRICE_TAGS(\"icm-price-tags\", '\\ue936'),\n    ICM_PRINTER(\"icm-printer\", '\\ue954'),\n    ICM_PROFILE(\"icm-profile\", '\\ue923'),\n    ICM_PUSHPIN(\"icm-pushpin\", '\\ue946'),\n    ICM_QRCODE(\"icm-qrcode\", '\\ue938'),\n    ICM_QUESTION(\"icm-question\", '\\uea09'),\n    ICM_QUILL(\"icm-quill\", '\\ue907'),\n    ICM_QUOTES_LEFT(\"icm-quotes-left\", '\\ue977'),\n    ICM_QUOTES_RIGHT(\"icm-quotes-right\", '\\ue978'),\n    ICM_RADIO_CHECKED(\"icm-radio-checked\", '\\uea54'),\n    ICM_RADIO_CHECKED2(\"icm-radio-checked2\", '\\uea55'),\n    ICM_RADIO_UNCHECKED(\"icm-radio-unchecked\", '\\uea56'),\n    ICM_REDDIT(\"icm-reddit\", '\\ueac6'),\n    ICM_REDO(\"icm-redo\", '\\ue966'),\n    ICM_REDO2(\"icm-redo2\", '\\ue968'),\n    ICM_RENREN(\"icm-renren\", '\\uea99'),\n    ICM_REPLY(\"icm-reply\", '\\ue96a'),\n    ICM_ROAD(\"icm-road\", '\\ue9b1'),\n    ICM_ROCKET(\"icm-rocket\", '\\ue9a5'),\n    ICM_RSS(\"icm-rss\", '\\uea9b'),\n    ICM_RSS2(\"icm-rss2\", '\\uea9c'),\n    ICM_RTL(\"icm-rtl\", '\\uea75'),\n    ICM_S500PX(\"icm-s500px\", '\\ueaab'),\n    ICM_SAD(\"icm-sad\", '\\ue9e5'),\n    ICM_SAD2(\"icm-sad2\", '\\ue9e6'),\n    ICM_SAFARI(\"icm-safari\", '\\ueadd'),\n    ICM_SCISSORS(\"icm-scissors\", '\\uea5a'),\n    ICM_SEARCH(\"icm-search\", '\\ue986'),\n    ICM_SECTION(\"icm-section\", '\\uea76'),\n    ICM_SHARE(\"icm-share\", '\\uea7d'),\n    ICM_SHARE2(\"icm-share2\", '\\uea82'),\n    ICM_SHIELD(\"icm-shield\", '\\ue9b4'),\n    ICM_SHIFT(\"icm-shift\", '\\uea4f'),\n    ICM_SHOCKED(\"icm-shocked\", '\\ue9f1'),\n    ICM_SHOCKED2(\"icm-shocked2\", '\\ue9f2'),\n    ICM_SHRINK(\"icm-shrink\", '\\ue98a'),\n    ICM_SHRINK2(\"icm-shrink2\", '\\ue98c'),\n    ICM_SHUFFLE(\"icm-shuffle\", '\\uea30'),\n    ICM_SIGMA(\"icm-sigma\", '\\uea67'),\n    ICM_SINA_WEIBO(\"icm-sina-weibo\", '\\uea9a'),\n    ICM_SKYPE(\"icm-skype\", '\\ueac5'),\n    ICM_SLEEPY(\"icm-sleepy\", '\\ue9fd'),\n    ICM_SLEEPY2(\"icm-sleepy2\", '\\ue9fe'),\n    ICM_SMILE(\"icm-smile\", '\\ue9e1'),\n    ICM_SMILE2(\"icm-smile2\", '\\ue9e2'),\n    ICM_SORT_ALPHA_ASC(\"icm-sort-alpha-asc\", '\\uea48'),\n    ICM_SORT_ALPHA_DESC(\"icm-sort-alpha-desc\", '\\uea49'),\n    ICM_SORT_AMOUNT_ASC(\"icm-sort-amount-asc\", '\\uea4c'),\n    ICM_SORT_AMOUNT_DESC(\"icm-sort-amount-desc\", '\\uea4d'),\n    ICM_SORT_NUMBERIC_DESC(\"icm-sort-numberic-desc\", '\\uea4b'),\n    ICM_SORT_NUMERIC_ASC(\"icm-sort-numeric-asc\", '\\uea4a'),\n    ICM_SOUNDCLOUD(\"icm-soundcloud\", '\\ueac3'),\n    ICM_SOUNDCLOUD2(\"icm-soundcloud2\", '\\ueac4'),\n    ICM_SPADES(\"icm-spades\", '\\ue917'),\n    ICM_SPELL_CHECK(\"icm-spell-check\", '\\uea12'),\n    ICM_SPHERE(\"icm-sphere\", '\\ue9c9'),\n    ICM_SPINNER(\"icm-spinner\", '\\ue97a'),\n    ICM_SPINNER10(\"icm-spinner10\", '\\ue983'),\n    ICM_SPINNER11(\"icm-spinner11\", '\\ue984'),\n    ICM_SPINNER2(\"icm-spinner2\", '\\ue97b'),\n    ICM_SPINNER3(\"icm-spinner3\", '\\ue97c'),\n    ICM_SPINNER4(\"icm-spinner4\", '\\ue97d'),\n    ICM_SPINNER5(\"icm-spinner5\", '\\ue97e'),\n    ICM_SPINNER6(\"icm-spinner6\", '\\ue97f'),\n    ICM_SPINNER7(\"icm-spinner7\", '\\ue980'),\n    ICM_SPINNER8(\"icm-spinner8\", '\\ue981'),\n    ICM_SPINNER9(\"icm-spinner9\", '\\ue982'),\n    ICM_SPOON_KNIFE(\"icm-spoon-knife\", '\\ue9a3'),\n    ICM_SPOTIFY(\"icm-spotify\", '\\uea94'),\n    ICM_STACK(\"icm-stack\", '\\ue92e'),\n    ICM_STACKOVERFLOW(\"icm-stackoverflow\", '\\uead0'),\n    ICM_STAR_EMPTY(\"icm-star-empty\", '\\ue9d7'),\n    ICM_STAR_FULL(\"icm-star-full\", '\\ue9d9'),\n    ICM_STAR_HALF(\"icm-star-half\", '\\ue9d8'),\n    ICM_STATS_BARS(\"icm-stats-bars\", '\\ue99c'),\n    ICM_STATS_BARS2(\"icm-stats-bars2\", '\\ue99d'),\n    ICM_STATS_DOTS(\"icm-stats-dots\", '\\ue99b'),\n    ICM_STEAM(\"icm-steam\", '\\ueaac'),\n    ICM_STEAM2(\"icm-steam2\", '\\ueaad'),\n    ICM_STOP(\"icm-stop\", '\\uea17'),\n    ICM_STOP2(\"icm-stop2\", '\\uea1e'),\n    ICM_STOPWATCH(\"icm-stopwatch\", '\\ue952'),\n    ICM_STRIKETHROUGH(\"icm-strikethrough\", '\\uea65'),\n    ICM_STUMBLEUPON(\"icm-stumbleupon\", '\\ueace'),\n    ICM_STUMBLEUPON2(\"icm-stumbleupon2\", '\\ueacf'),\n    ICM_SUBSCRIPT(\"icm-subscript\", '\\uea6a'),\n    ICM_SUBSCRIPT2(\"icm-subscript2\", '\\uea6c'),\n    ICM_SUN(\"icm-sun\", '\\ue9d4'),\n    ICM_SUPERSCRIPT(\"icm-superscript\", '\\uea69'),\n    ICM_SUPERSCRIPT2(\"icm-superscript2\", '\\uea6b'),\n    ICM_SVG(\"icm-svg\", '\\ueae9'),\n    ICM_SWITCH(\"icm-switch\", '\\ue9b6'),\n    ICM_TAB(\"icm-tab\", '\\uea45'),\n    ICM_TABLE(\"icm-table\", '\\uea70'),\n    ICM_TABLE2(\"icm-table2\", '\\uea71'),\n    ICM_TABLET(\"icm-tablet\", '\\ue95a'),\n    ICM_TARGET(\"icm-target\", '\\ue9b3'),\n    ICM_TELEGRAM(\"icm-telegram\", '\\uea95'),\n    ICM_TERMINAL(\"icm-terminal\", '\\uea81'),\n    ICM_TEXT_COLOR(\"icm-text-color\", '\\uea6d'),\n    ICM_TEXT_HEIGHT(\"icm-text-height\", '\\uea5f'),\n    ICM_TEXT_WIDTH(\"icm-text-width\", '\\uea60'),\n    ICM_TICKET(\"icm-ticket\", '\\ue939'),\n    ICM_TONGUE(\"icm-tongue\", '\\ue9e3'),\n    ICM_TONGUE2(\"icm-tongue2\", '\\ue9e4'),\n    ICM_TREE(\"icm-tree\", '\\ue9bc'),\n    ICM_TRELLO(\"icm-trello\", '\\ueab3'),\n    ICM_TROPHY(\"icm-trophy\", '\\ue99e'),\n    ICM_TRUCK(\"icm-truck\", '\\ue9b0'),\n    ICM_TUMBLR(\"icm-tumblr\", '\\ueab9'),\n    ICM_TUMBLR2(\"icm-tumblr2\", '\\ueaba'),\n    ICM_TUX(\"icm-tux\", '\\ueabd'),\n    ICM_TV(\"icm-tv\", '\\ue95b'),\n    ICM_TWITCH(\"icm-twitch\", '\\uea9f'),\n    ICM_TWITTER(\"icm-twitter\", '\\uea96'),\n    ICM_UNDERLINE(\"icm-underline\", '\\uea63'),\n    ICM_UNDO(\"icm-undo\", '\\ue965'),\n    ICM_UNDO2(\"icm-undo2\", '\\ue967'),\n    ICM_UNGROUP(\"icm-ungroup\", '\\uea59'),\n    ICM_UNLOCKED(\"icm-unlocked\", '\\ue990'),\n    ICM_UPLOAD(\"icm-upload\", '\\ue961'),\n    ICM_UPLOAD2(\"icm-upload2\", '\\ue9c6'),\n    ICM_UPLOAD3(\"icm-upload3\", '\\ue9c8'),\n    ICM_USER(\"icm-user\", '\\ue971'),\n    ICM_USERS(\"icm-users\", '\\ue972'),\n    ICM_USER_CHECK(\"icm-user-check\", '\\ue975'),\n    ICM_USER_MINUS(\"icm-user-minus\", '\\ue974'),\n    ICM_USER_PLUS(\"icm-user-plus\", '\\ue973'),\n    ICM_USER_TIE(\"icm-user-tie\", '\\ue976'),\n    ICM_VIDEO_CAMERA(\"icm-video-camera\", '\\ue914'),\n    ICM_VIMEO(\"icm-vimeo\", '\\ueaa0'),\n    ICM_VIMEO2(\"icm-vimeo2\", '\\ueaa1'),\n    ICM_VINE(\"icm-vine\", '\\uea97'),\n    ICM_VK(\"icm-vk\", '\\uea98'),\n    ICM_VOLUME_DECREASE(\"icm-volume-decrease\", '\\uea2c'),\n    ICM_VOLUME_HIGH(\"icm-volume-high\", '\\uea26'),\n    ICM_VOLUME_INCREASE(\"icm-volume-increase\", '\\uea2b'),\n    ICM_VOLUME_LOW(\"icm-volume-low\", '\\uea28'),\n    ICM_VOLUME_MEDIUM(\"icm-volume-medium\", '\\uea27'),\n    ICM_VOLUME_MUTE(\"icm-volume-mute\", '\\uea29'),\n    ICM_VOLUME_MUTE2(\"icm-volume-mute2\", '\\uea2a'),\n    ICM_WARNING(\"icm-warning\", '\\uea07'),\n    ICM_WHATSAPP(\"icm-whatsapp\", '\\uea93'),\n    ICM_WIKIPEDIA(\"icm-wikipedia\", '\\ueac8'),\n    ICM_WINDOWS(\"icm-windows\", '\\ueac1'),\n    ICM_WINDOWS8(\"icm-windows8\", '\\ueac2'),\n    ICM_WINK(\"icm-wink\", '\\ue9e7'),\n    ICM_WINK2(\"icm-wink2\", '\\ue9e8'),\n    ICM_WOMAN(\"icm-woman\", '\\ue9dd'),\n    ICM_WONDERING(\"icm-wondering\", '\\ue9fb'),\n    ICM_WONDERING2(\"icm-wondering2\", '\\ue9fc'),\n    ICM_WORDPRESS(\"icm-wordpress\", '\\ueab4'),\n    ICM_WRENCH(\"icm-wrench\", '\\ue991'),\n    ICM_XING(\"icm-xing\", '\\uead3'),\n    ICM_XING2(\"icm-xing2\", '\\uead4'),\n    ICM_YAHOO(\"icm-yahoo\", '\\ueabb'),\n    ICM_YAHOO2(\"icm-yahoo2\", '\\ueabc'),\n    ICM_YELP(\"icm-yelp\", '\\uead7'),\n    ICM_YOUTUBE(\"icm-youtube\", '\\uea9d'),\n    ICM_YOUTUBE2(\"icm-youtube2\", '\\uea9e'),\n    ICM_ZOOM_IN(\"icm-zoom-in\", '\\ue987'),\n    ICM_ZOOM_OUT(\"icm-zoom-out\", '\\ue988');\n\n    public static Icomoon findByDescription(String description) {\n        for (Icomoon font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Icomoon(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-icomoon-pack/src/main/java/org/kordamp/ikonli/icomoon/IcomoonIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.icomoon;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class IcomoonIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/icomoon/0.0/fonts/icomoon.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"icm-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Icomoon.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"icomoon\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-icomoon-pack/src/main/java/org/kordamp/ikonli/icomoon/IcomoonIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.icomoon;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class IcomoonIkonProvider implements IkonProvider<Icomoon> {\n    @Override\n    public Class<Icomoon> getIkon() {\n        return Icomoon.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-icomoon-pack/src/main/resources/META-INF/resources/icomoon/0.0/css/icomoon.css",
    "content": "@font-face {\n    font-family: 'icomoon';\n    src: url('../fonts/icomoon.eot?hy0xsg');\n    src: url('../fonts/icomoon.eot?hy0xsg#iefix') format('embedded-opentype'),\n    url('../fonts/icomoon.ttf?hy0xsg') format('truetype'),\n    url('../fonts/icomoon.woff?hy0xsg') format('woff'),\n    url('../fonts/icomoon.svg?hy0xsg#icomoon') format('svg');\n    font-weight: normal;\n    font-style: normal;\n}\n\n.icm:before {\n    /* use !important to prevent issues with browser extensions that change fonts */\n    font-family: 'icomoon' !important;\n    speak: none;\n    font-style: normal;\n    font-weight: normal;\n    font-variant: normal;\n    text-transform: none;\n    line-height: 1;\n\n    /* Better Font Rendering =========== */\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n}\n\n.icm-home:before {\n    content: \"\\e900\";\n}\n\n.icm-home2:before {\n    content: \"\\e901\";\n}\n\n.icm-home3:before {\n    content: \"\\e902\";\n}\n\n.icm-office:before {\n    content: \"\\e903\";\n}\n\n.icm-newspaper:before {\n    content: \"\\e904\";\n}\n\n.icm-pencil:before {\n    content: \"\\e905\";\n}\n\n.icm-pencil2:before {\n    content: \"\\e906\";\n}\n\n.icm-quill:before {\n    content: \"\\e907\";\n}\n\n.icm-pen:before {\n    content: \"\\e908\";\n}\n\n.icm-blog:before {\n    content: \"\\e909\";\n}\n\n.icm-eyedropper:before {\n    content: \"\\e90a\";\n}\n\n.icm-droplet:before {\n    content: \"\\e90b\";\n}\n\n.icm-paint-format:before {\n    content: \"\\e90c\";\n}\n\n.icm-image:before {\n    content: \"\\e90d\";\n}\n\n.icm-images:before {\n    content: \"\\e90e\";\n}\n\n.icm-camera:before {\n    content: \"\\e90f\";\n}\n\n.icm-headphones:before {\n    content: \"\\e910\";\n}\n\n.icm-music:before {\n    content: \"\\e911\";\n}\n\n.icm-play:before {\n    content: \"\\e912\";\n}\n\n.icm-film:before {\n    content: \"\\e913\";\n}\n\n.icm-video-camera:before {\n    content: \"\\e914\";\n}\n\n.icm-dice:before {\n    content: \"\\e915\";\n}\n\n.icm-pacman:before {\n    content: \"\\e916\";\n}\n\n.icm-spades:before {\n    content: \"\\e917\";\n}\n\n.icm-clubs:before {\n    content: \"\\e918\";\n}\n\n.icm-diamonds:before {\n    content: \"\\e919\";\n}\n\n.icm-bullhorn:before {\n    content: \"\\e91a\";\n}\n\n.icm-connection:before {\n    content: \"\\e91b\";\n}\n\n.icm-podcast:before {\n    content: \"\\e91c\";\n}\n\n.icm-feed:before {\n    content: \"\\e91d\";\n}\n\n.icm-mic:before {\n    content: \"\\e91e\";\n}\n\n.icm-book:before {\n    content: \"\\e91f\";\n}\n\n.icm-books:before {\n    content: \"\\e920\";\n}\n\n.icm-library:before {\n    content: \"\\e921\";\n}\n\n.icm-file-text:before {\n    content: \"\\e922\";\n}\n\n.icm-profile:before {\n    content: \"\\e923\";\n}\n\n.icm-file-empty:before {\n    content: \"\\e924\";\n}\n\n.icm-files-empty:before {\n    content: \"\\e925\";\n}\n\n.icm-file-text2:before {\n    content: \"\\e926\";\n}\n\n.icm-file-picture:before {\n    content: \"\\e927\";\n}\n\n.icm-file-music:before {\n    content: \"\\e928\";\n}\n\n.icm-file-play:before {\n    content: \"\\e929\";\n}\n\n.icm-file-video:before {\n    content: \"\\e92a\";\n}\n\n.icm-file-zip:before {\n    content: \"\\e92b\";\n}\n\n.icm-copy:before {\n    content: \"\\e92c\";\n}\n\n.icm-paste:before {\n    content: \"\\e92d\";\n}\n\n.icm-stack:before {\n    content: \"\\e92e\";\n}\n\n.icm-folder:before {\n    content: \"\\e92f\";\n}\n\n.icm-folder-open:before {\n    content: \"\\e930\";\n}\n\n.icm-folder-plus:before {\n    content: \"\\e931\";\n}\n\n.icm-folder-minus:before {\n    content: \"\\e932\";\n}\n\n.icm-folder-download:before {\n    content: \"\\e933\";\n}\n\n.icm-folder-upload:before {\n    content: \"\\e934\";\n}\n\n.icm-price-tag:before {\n    content: \"\\e935\";\n}\n\n.icm-price-tags:before {\n    content: \"\\e936\";\n}\n\n.icm-barcode:before {\n    content: \"\\e937\";\n}\n\n.icm-qrcode:before {\n    content: \"\\e938\";\n}\n\n.icm-ticket:before {\n    content: \"\\e939\";\n}\n\n.icm-cart:before {\n    content: \"\\e93a\";\n}\n\n.icm-coin-dollar:before {\n    content: \"\\e93b\";\n}\n\n.icm-coin-euro:before {\n    content: \"\\e93c\";\n}\n\n.icm-coin-pound:before {\n    content: \"\\e93d\";\n}\n\n.icm-coin-yen:before {\n    content: \"\\e93e\";\n}\n\n.icm-credit-card:before {\n    content: \"\\e93f\";\n}\n\n.icm-calculator:before {\n    content: \"\\e940\";\n}\n\n.icm-lifebuoy:before {\n    content: \"\\e941\";\n}\n\n.icm-phone:before {\n    content: \"\\e942\";\n}\n\n.icm-phone-hang-up:before {\n    content: \"\\e943\";\n}\n\n.icm-address-book:before {\n    content: \"\\e944\";\n}\n\n.icm-envelop:before {\n    content: \"\\e945\";\n}\n\n.icm-pushpin:before {\n    content: \"\\e946\";\n}\n\n.icm-location:before {\n    content: \"\\e947\";\n}\n\n.icm-location2:before {\n    content: \"\\e948\";\n}\n\n.icm-compass:before {\n    content: \"\\e949\";\n}\n\n.icm-compass2:before {\n    content: \"\\e94a\";\n}\n\n.icm-map:before {\n    content: \"\\e94b\";\n}\n\n.icm-map2:before {\n    content: \"\\e94c\";\n}\n\n.icm-history:before {\n    content: \"\\e94d\";\n}\n\n.icm-clock:before {\n    content: \"\\e94e\";\n}\n\n.icm-clock2:before {\n    content: \"\\e94f\";\n}\n\n.icm-alarm:before {\n    content: \"\\e950\";\n}\n\n.icm-bell:before {\n    content: \"\\e951\";\n}\n\n.icm-stopwatch:before {\n    content: \"\\e952\";\n}\n\n.icm-calendar:before {\n    content: \"\\e953\";\n}\n\n.icm-printer:before {\n    content: \"\\e954\";\n}\n\n.icm-keyboard:before {\n    content: \"\\e955\";\n}\n\n.icm-display:before {\n    content: \"\\e956\";\n}\n\n.icm-laptop:before {\n    content: \"\\e957\";\n}\n\n.icm-mobile:before {\n    content: \"\\e958\";\n}\n\n.icm-mobile2:before {\n    content: \"\\e959\";\n}\n\n.icm-tablet:before {\n    content: \"\\e95a\";\n}\n\n.icm-tv:before {\n    content: \"\\e95b\";\n}\n\n.icm-drawer:before {\n    content: \"\\e95c\";\n}\n\n.icm-drawer2:before {\n    content: \"\\e95d\";\n}\n\n.icm-box-add:before {\n    content: \"\\e95e\";\n}\n\n.icm-box-remove:before {\n    content: \"\\e95f\";\n}\n\n.icm-download:before {\n    content: \"\\e960\";\n}\n\n.icm-upload:before {\n    content: \"\\e961\";\n}\n\n.icm-floppy-disk:before {\n    content: \"\\e962\";\n}\n\n.icm-drive:before {\n    content: \"\\e963\";\n}\n\n.icm-database:before {\n    content: \"\\e964\";\n}\n\n.icm-undo:before {\n    content: \"\\e965\";\n}\n\n.icm-redo:before {\n    content: \"\\e966\";\n}\n\n.icm-undo2:before {\n    content: \"\\e967\";\n}\n\n.icm-redo2:before {\n    content: \"\\e968\";\n}\n\n.icm-forward:before {\n    content: \"\\e969\";\n}\n\n.icm-reply:before {\n    content: \"\\e96a\";\n}\n\n.icm-bubble:before {\n    content: \"\\e96b\";\n}\n\n.icm-bubbles:before {\n    content: \"\\e96c\";\n}\n\n.icm-bubbles2:before {\n    content: \"\\e96d\";\n}\n\n.icm-bubble2:before {\n    content: \"\\e96e\";\n}\n\n.icm-bubbles3:before {\n    content: \"\\e96f\";\n}\n\n.icm-bubbles4:before {\n    content: \"\\e970\";\n}\n\n.icm-user:before {\n    content: \"\\e971\";\n}\n\n.icm-users:before {\n    content: \"\\e972\";\n}\n\n.icm-user-plus:before {\n    content: \"\\e973\";\n}\n\n.icm-user-minus:before {\n    content: \"\\e974\";\n}\n\n.icm-user-check:before {\n    content: \"\\e975\";\n}\n\n.icm-user-tie:before {\n    content: \"\\e976\";\n}\n\n.icm-quotes-left:before {\n    content: \"\\e977\";\n}\n\n.icm-quotes-right:before {\n    content: \"\\e978\";\n}\n\n.icm-hour-glass:before {\n    content: \"\\e979\";\n}\n\n.icm-spinner:before {\n    content: \"\\e97a\";\n}\n\n.icm-spinner2:before {\n    content: \"\\e97b\";\n}\n\n.icm-spinner3:before {\n    content: \"\\e97c\";\n}\n\n.icm-spinner4:before {\n    content: \"\\e97d\";\n}\n\n.icm-spinner5:before {\n    content: \"\\e97e\";\n}\n\n.icm-spinner6:before {\n    content: \"\\e97f\";\n}\n\n.icm-spinner7:before {\n    content: \"\\e980\";\n}\n\n.icm-spinner8:before {\n    content: \"\\e981\";\n}\n\n.icm-spinner9:before {\n    content: \"\\e982\";\n}\n\n.icm-spinner10:before {\n    content: \"\\e983\";\n}\n\n.icm-spinner11:before {\n    content: \"\\e984\";\n}\n\n.icm-binoculars:before {\n    content: \"\\e985\";\n}\n\n.icm-search:before {\n    content: \"\\e986\";\n}\n\n.icm-zoom-in:before {\n    content: \"\\e987\";\n}\n\n.icm-zoom-out:before {\n    content: \"\\e988\";\n}\n\n.icm-enlarge:before {\n    content: \"\\e989\";\n}\n\n.icm-shrink:before {\n    content: \"\\e98a\";\n}\n\n.icm-enlarge2:before {\n    content: \"\\e98b\";\n}\n\n.icm-shrink2:before {\n    content: \"\\e98c\";\n}\n\n.icm-key:before {\n    content: \"\\e98d\";\n}\n\n.icm-key2:before {\n    content: \"\\e98e\";\n}\n\n.icm-lock:before {\n    content: \"\\e98f\";\n}\n\n.icm-unlocked:before {\n    content: \"\\e990\";\n}\n\n.icm-wrench:before {\n    content: \"\\e991\";\n}\n\n.icm-equalizer:before {\n    content: \"\\e992\";\n}\n\n.icm-equalizer2:before {\n    content: \"\\e993\";\n}\n\n.icm-cog:before {\n    content: \"\\e994\";\n}\n\n.icm-cogs:before {\n    content: \"\\e995\";\n}\n\n.icm-hammer:before {\n    content: \"\\e996\";\n}\n\n.icm-magic-wand:before {\n    content: \"\\e997\";\n}\n\n.icm-aid-kit:before {\n    content: \"\\e998\";\n}\n\n.icm-bug:before {\n    content: \"\\e999\";\n}\n\n.icm-pie-chart:before {\n    content: \"\\e99a\";\n}\n\n.icm-stats-dots:before {\n    content: \"\\e99b\";\n}\n\n.icm-stats-bars:before {\n    content: \"\\e99c\";\n}\n\n.icm-stats-bars2:before {\n    content: \"\\e99d\";\n}\n\n.icm-trophy:before {\n    content: \"\\e99e\";\n}\n\n.icm-gift:before {\n    content: \"\\e99f\";\n}\n\n.icm-glass:before {\n    content: \"\\e9a0\";\n}\n\n.icm-glass2:before {\n    content: \"\\e9a1\";\n}\n\n.icm-mug:before {\n    content: \"\\e9a2\";\n}\n\n.icm-spoon-knife:before {\n    content: \"\\e9a3\";\n}\n\n.icm-leaf:before {\n    content: \"\\e9a4\";\n}\n\n.icm-rocket:before {\n    content: \"\\e9a5\";\n}\n\n.icm-meter:before {\n    content: \"\\e9a6\";\n}\n\n.icm-meter2:before {\n    content: \"\\e9a7\";\n}\n\n.icm-hammer2:before {\n    content: \"\\e9a8\";\n}\n\n.icm-fire:before {\n    content: \"\\e9a9\";\n}\n\n.icm-lab:before {\n    content: \"\\e9aa\";\n}\n\n.icm-magnet:before {\n    content: \"\\e9ab\";\n}\n\n.icm-bin:before {\n    content: \"\\e9ac\";\n}\n\n.icm-bin2:before {\n    content: \"\\e9ad\";\n}\n\n.icm-briefcase:before {\n    content: \"\\e9ae\";\n}\n\n.icm-airplane:before {\n    content: \"\\e9af\";\n}\n\n.icm-truck:before {\n    content: \"\\e9b0\";\n}\n\n.icm-road:before {\n    content: \"\\e9b1\";\n}\n\n.icm-accessibility:before {\n    content: \"\\e9b2\";\n}\n\n.icm-target:before {\n    content: \"\\e9b3\";\n}\n\n.icm-shield:before {\n    content: \"\\e9b4\";\n}\n\n.icm-power:before {\n    content: \"\\e9b5\";\n}\n\n.icm-switch:before {\n    content: \"\\e9b6\";\n}\n\n.icm-power-cord:before {\n    content: \"\\e9b7\";\n}\n\n.icm-clipboard:before {\n    content: \"\\e9b8\";\n}\n\n.icm-list-numbered:before {\n    content: \"\\e9b9\";\n}\n\n.icm-list:before {\n    content: \"\\e9ba\";\n}\n\n.icm-list2:before {\n    content: \"\\e9bb\";\n}\n\n.icm-tree:before {\n    content: \"\\e9bc\";\n}\n\n.icm-menu:before {\n    content: \"\\e9bd\";\n}\n\n.icm-menu2:before {\n    content: \"\\e9be\";\n}\n\n.icm-menu3:before {\n    content: \"\\e9bf\";\n}\n\n.icm-menu4:before {\n    content: \"\\e9c0\";\n}\n\n.icm-cloud:before {\n    content: \"\\e9c1\";\n}\n\n.icm-cloud-download:before {\n    content: \"\\e9c2\";\n}\n\n.icm-cloud-upload:before {\n    content: \"\\e9c3\";\n}\n\n.icm-cloud-check:before {\n    content: \"\\e9c4\";\n}\n\n.icm-download2:before {\n    content: \"\\e9c5\";\n}\n\n.icm-upload2:before {\n    content: \"\\e9c6\";\n}\n\n.icm-download3:before {\n    content: \"\\e9c7\";\n}\n\n.icm-upload3:before {\n    content: \"\\e9c8\";\n}\n\n.icm-sphere:before {\n    content: \"\\e9c9\";\n}\n\n.icm-earth:before {\n    content: \"\\e9ca\";\n}\n\n.icm-link:before {\n    content: \"\\e9cb\";\n}\n\n.icm-flag:before {\n    content: \"\\e9cc\";\n}\n\n.icm-attachment:before {\n    content: \"\\e9cd\";\n}\n\n.icm-eye:before {\n    content: \"\\e9ce\";\n}\n\n.icm-eye-plus:before {\n    content: \"\\e9cf\";\n}\n\n.icm-eye-minus:before {\n    content: \"\\e9d0\";\n}\n\n.icm-eye-blocked:before {\n    content: \"\\e9d1\";\n}\n\n.icm-bookmark:before {\n    content: \"\\e9d2\";\n}\n\n.icm-bookmarks:before {\n    content: \"\\e9d3\";\n}\n\n.icm-sun:before {\n    content: \"\\e9d4\";\n}\n\n.icm-contrast:before {\n    content: \"\\e9d5\";\n}\n\n.icm-brightness-contrast:before {\n    content: \"\\e9d6\";\n}\n\n.icm-star-empty:before {\n    content: \"\\e9d7\";\n}\n\n.icm-star-half:before {\n    content: \"\\e9d8\";\n}\n\n.icm-star-full:before {\n    content: \"\\e9d9\";\n}\n\n.icm-heart:before {\n    content: \"\\e9da\";\n}\n\n.icm-heart-broken:before {\n    content: \"\\e9db\";\n}\n\n.icm-man:before {\n    content: \"\\e9dc\";\n}\n\n.icm-woman:before {\n    content: \"\\e9dd\";\n}\n\n.icm-man-woman:before {\n    content: \"\\e9de\";\n}\n\n.icm-happy:before {\n    content: \"\\e9df\";\n}\n\n.icm-happy2:before {\n    content: \"\\e9e0\";\n}\n\n.icm-smile:before {\n    content: \"\\e9e1\";\n}\n\n.icm-smile2:before {\n    content: \"\\e9e2\";\n}\n\n.icm-tongue:before {\n    content: \"\\e9e3\";\n}\n\n.icm-tongue2:before {\n    content: \"\\e9e4\";\n}\n\n.icm-sad:before {\n    content: \"\\e9e5\";\n}\n\n.icm-sad2:before {\n    content: \"\\e9e6\";\n}\n\n.icm-wink:before {\n    content: \"\\e9e7\";\n}\n\n.icm-wink2:before {\n    content: \"\\e9e8\";\n}\n\n.icm-grin:before {\n    content: \"\\e9e9\";\n}\n\n.icm-grin2:before {\n    content: \"\\e9ea\";\n}\n\n.icm-cool:before {\n    content: \"\\e9eb\";\n}\n\n.icm-cool2:before {\n    content: \"\\e9ec\";\n}\n\n.icm-angry:before {\n    content: \"\\e9ed\";\n}\n\n.icm-angry2:before {\n    content: \"\\e9ee\";\n}\n\n.icm-evil:before {\n    content: \"\\e9ef\";\n}\n\n.icm-evil2:before {\n    content: \"\\e9f0\";\n}\n\n.icm-shocked:before {\n    content: \"\\e9f1\";\n}\n\n.icm-shocked2:before {\n    content: \"\\e9f2\";\n}\n\n.icm-baffled:before {\n    content: \"\\e9f3\";\n}\n\n.icm-baffled2:before {\n    content: \"\\e9f4\";\n}\n\n.icm-confused:before {\n    content: \"\\e9f5\";\n}\n\n.icm-confused2:before {\n    content: \"\\e9f6\";\n}\n\n.icm-neutral:before {\n    content: \"\\e9f7\";\n}\n\n.icm-neutral2:before {\n    content: \"\\e9f8\";\n}\n\n.icm-hipster:before {\n    content: \"\\e9f9\";\n}\n\n.icm-hipster2:before {\n    content: \"\\e9fa\";\n}\n\n.icm-wondering:before {\n    content: \"\\e9fb\";\n}\n\n.icm-wondering2:before {\n    content: \"\\e9fc\";\n}\n\n.icm-sleepy:before {\n    content: \"\\e9fd\";\n}\n\n.icm-sleepy2:before {\n    content: \"\\e9fe\";\n}\n\n.icm-frustrated:before {\n    content: \"\\e9ff\";\n}\n\n.icm-frustrated2:before {\n    content: \"\\ea00\";\n}\n\n.icm-crying:before {\n    content: \"\\ea01\";\n}\n\n.icm-crying2:before {\n    content: \"\\ea02\";\n}\n\n.icm-point-up:before {\n    content: \"\\ea03\";\n}\n\n.icm-point-right:before {\n    content: \"\\ea04\";\n}\n\n.icm-point-down:before {\n    content: \"\\ea05\";\n}\n\n.icm-point-left:before {\n    content: \"\\ea06\";\n}\n\n.icm-warning:before {\n    content: \"\\ea07\";\n}\n\n.icm-notification:before {\n    content: \"\\ea08\";\n}\n\n.icm-question:before {\n    content: \"\\ea09\";\n}\n\n.icm-plus:before {\n    content: \"\\ea0a\";\n}\n\n.icm-minus:before {\n    content: \"\\ea0b\";\n}\n\n.icm-info:before {\n    content: \"\\ea0c\";\n}\n\n.icm-cancel-circle:before {\n    content: \"\\ea0d\";\n}\n\n.icm-blocked:before {\n    content: \"\\ea0e\";\n}\n\n.icm-cross:before {\n    content: \"\\ea0f\";\n}\n\n.icm-checkmark:before {\n    content: \"\\ea10\";\n}\n\n.icm-checkmark2:before {\n    content: \"\\ea11\";\n}\n\n.icm-spell-check:before {\n    content: \"\\ea12\";\n}\n\n.icm-enter:before {\n    content: \"\\ea13\";\n}\n\n.icm-exit:before {\n    content: \"\\ea14\";\n}\n\n.icm-play2:before {\n    content: \"\\ea15\";\n}\n\n.icm-pause:before {\n    content: \"\\ea16\";\n}\n\n.icm-stop:before {\n    content: \"\\ea17\";\n}\n\n.icm-previous:before {\n    content: \"\\ea18\";\n}\n\n.icm-next:before {\n    content: \"\\ea19\";\n}\n\n.icm-backward:before {\n    content: \"\\ea1a\";\n}\n\n.icm-forward2:before {\n    content: \"\\ea1b\";\n}\n\n.icm-play3:before {\n    content: \"\\ea1c\";\n}\n\n.icm-pause2:before {\n    content: \"\\ea1d\";\n}\n\n.icm-stop2:before {\n    content: \"\\ea1e\";\n}\n\n.icm-backward2:before {\n    content: \"\\ea1f\";\n}\n\n.icm-forward3:before {\n    content: \"\\ea20\";\n}\n\n.icm-first:before {\n    content: \"\\ea21\";\n}\n\n.icm-last:before {\n    content: \"\\ea22\";\n}\n\n.icm-previous2:before {\n    content: \"\\ea23\";\n}\n\n.icm-next2:before {\n    content: \"\\ea24\";\n}\n\n.icm-eject:before {\n    content: \"\\ea25\";\n}\n\n.icm-volume-high:before {\n    content: \"\\ea26\";\n}\n\n.icm-volume-medium:before {\n    content: \"\\ea27\";\n}\n\n.icm-volume-low:before {\n    content: \"\\ea28\";\n}\n\n.icm-volume-mute:before {\n    content: \"\\ea29\";\n}\n\n.icm-volume-mute2:before {\n    content: \"\\ea2a\";\n}\n\n.icm-volume-increase:before {\n    content: \"\\ea2b\";\n}\n\n.icm-volume-decrease:before {\n    content: \"\\ea2c\";\n}\n\n.icm-loop:before {\n    content: \"\\ea2d\";\n}\n\n.icm-loop2:before {\n    content: \"\\ea2e\";\n}\n\n.icm-infinite:before {\n    content: \"\\ea2f\";\n}\n\n.icm-shuffle:before {\n    content: \"\\ea30\";\n}\n\n.icm-arrow-up-left:before {\n    content: \"\\ea31\";\n}\n\n.icm-arrow-up:before {\n    content: \"\\ea32\";\n}\n\n.icm-arrow-up-right:before {\n    content: \"\\ea33\";\n}\n\n.icm-arrow-right:before {\n    content: \"\\ea34\";\n}\n\n.icm-arrow-down-right:before {\n    content: \"\\ea35\";\n}\n\n.icm-arrow-down:before {\n    content: \"\\ea36\";\n}\n\n.icm-arrow-down-left:before {\n    content: \"\\ea37\";\n}\n\n.icm-arrow-left:before {\n    content: \"\\ea38\";\n}\n\n.icm-arrow-up-left2:before {\n    content: \"\\ea39\";\n}\n\n.icm-arrow-up2:before {\n    content: \"\\ea3a\";\n}\n\n.icm-arrow-up-right2:before {\n    content: \"\\ea3b\";\n}\n\n.icm-arrow-right2:before {\n    content: \"\\ea3c\";\n}\n\n.icm-arrow-down-right2:before {\n    content: \"\\ea3d\";\n}\n\n.icm-arrow-down2:before {\n    content: \"\\ea3e\";\n}\n\n.icm-arrow-down-left2:before {\n    content: \"\\ea3f\";\n}\n\n.icm-arrow-left2:before {\n    content: \"\\ea40\";\n}\n\n.icm-circle-up:before {\n    content: \"\\ea41\";\n}\n\n.icm-circle-right:before {\n    content: \"\\ea42\";\n}\n\n.icm-circle-down:before {\n    content: \"\\ea43\";\n}\n\n.icm-circle-left:before {\n    content: \"\\ea44\";\n}\n\n.icm-tab:before {\n    content: \"\\ea45\";\n}\n\n.icm-move-up:before {\n    content: \"\\ea46\";\n}\n\n.icm-move-down:before {\n    content: \"\\ea47\";\n}\n\n.icm-sort-alpha-asc:before {\n    content: \"\\ea48\";\n}\n\n.icm-sort-alpha-desc:before {\n    content: \"\\ea49\";\n}\n\n.icm-sort-numeric-asc:before {\n    content: \"\\ea4a\";\n}\n\n.icm-sort-numberic-desc:before {\n    content: \"\\ea4b\";\n}\n\n.icm-sort-amount-asc:before {\n    content: \"\\ea4c\";\n}\n\n.icm-sort-amount-desc:before {\n    content: \"\\ea4d\";\n}\n\n.icm-command:before {\n    content: \"\\ea4e\";\n}\n\n.icm-shift:before {\n    content: \"\\ea4f\";\n}\n\n.icm-ctrl:before {\n    content: \"\\ea50\";\n}\n\n.icm-opt:before {\n    content: \"\\ea51\";\n}\n\n.icm-checkbox-checked:before {\n    content: \"\\ea52\";\n}\n\n.icm-checkbox-unchecked:before {\n    content: \"\\ea53\";\n}\n\n.icm-radio-checked:before {\n    content: \"\\ea54\";\n}\n\n.icm-radio-checked2:before {\n    content: \"\\ea55\";\n}\n\n.icm-radio-unchecked:before {\n    content: \"\\ea56\";\n}\n\n.icm-crop:before {\n    content: \"\\ea57\";\n}\n\n.icm-make-group:before {\n    content: \"\\ea58\";\n}\n\n.icm-ungroup:before {\n    content: \"\\ea59\";\n}\n\n.icm-scissors:before {\n    content: \"\\ea5a\";\n}\n\n.icm-filter:before {\n    content: \"\\ea5b\";\n}\n\n.icm-font:before {\n    content: \"\\ea5c\";\n}\n\n.icm-ligature:before {\n    content: \"\\ea5d\";\n}\n\n.icm-ligature2:before {\n    content: \"\\ea5e\";\n}\n\n.icm-text-height:before {\n    content: \"\\ea5f\";\n}\n\n.icm-text-width:before {\n    content: \"\\ea60\";\n}\n\n.icm-font-size:before {\n    content: \"\\ea61\";\n}\n\n.icm-bold:before {\n    content: \"\\ea62\";\n}\n\n.icm-underline:before {\n    content: \"\\ea63\";\n}\n\n.icm-italic:before {\n    content: \"\\ea64\";\n}\n\n.icm-strikethrough:before {\n    content: \"\\ea65\";\n}\n\n.icm-omega:before {\n    content: \"\\ea66\";\n}\n\n.icm-sigma:before {\n    content: \"\\ea67\";\n}\n\n.icm-page-break:before {\n    content: \"\\ea68\";\n}\n\n.icm-superscript:before {\n    content: \"\\ea69\";\n}\n\n.icm-subscript:before {\n    content: \"\\ea6a\";\n}\n\n.icm-superscript2:before {\n    content: \"\\ea6b\";\n}\n\n.icm-subscript2:before {\n    content: \"\\ea6c\";\n}\n\n.icm-text-color:before {\n    content: \"\\ea6d\";\n}\n\n.icm-pagebreak:before {\n    content: \"\\ea6e\";\n}\n\n.icm-clear-formatting:before {\n    content: \"\\ea6f\";\n}\n\n.icm-table:before {\n    content: \"\\ea70\";\n}\n\n.icm-table2:before {\n    content: \"\\ea71\";\n}\n\n.icm-insert-template:before {\n    content: \"\\ea72\";\n}\n\n.icm-pilcrow:before {\n    content: \"\\ea73\";\n}\n\n.icm-ltr:before {\n    content: \"\\ea74\";\n}\n\n.icm-rtl:before {\n    content: \"\\ea75\";\n}\n\n.icm-section:before {\n    content: \"\\ea76\";\n}\n\n.icm-paragraph-left:before {\n    content: \"\\ea77\";\n}\n\n.icm-paragraph-center:before {\n    content: \"\\ea78\";\n}\n\n.icm-paragraph-right:before {\n    content: \"\\ea79\";\n}\n\n.icm-paragraph-justify:before {\n    content: \"\\ea7a\";\n}\n\n.icm-indent-increase:before {\n    content: \"\\ea7b\";\n}\n\n.icm-indent-decrease:before {\n    content: \"\\ea7c\";\n}\n\n.icm-share:before {\n    content: \"\\ea7d\";\n}\n\n.icm-new-tab:before {\n    content: \"\\ea7e\";\n}\n\n.icm-embed:before {\n    content: \"\\ea7f\";\n}\n\n.icm-embed2:before {\n    content: \"\\ea80\";\n}\n\n.icm-terminal:before {\n    content: \"\\ea81\";\n}\n\n.icm-share2:before {\n    content: \"\\ea82\";\n}\n\n.icm-mail:before {\n    content: \"\\ea83\";\n}\n\n.icm-mail2:before {\n    content: \"\\ea84\";\n}\n\n.icm-mail3:before {\n    content: \"\\ea85\";\n}\n\n.icm-mail4:before {\n    content: \"\\ea86\";\n}\n\n.icm-amazon:before {\n    content: \"\\ea87\";\n}\n\n.icm-google:before {\n    content: \"\\ea88\";\n}\n\n.icm-google2:before {\n    content: \"\\ea89\";\n}\n\n.icm-google3:before {\n    content: \"\\ea8a\";\n}\n\n.icm-google-plus:before {\n    content: \"\\ea8b\";\n}\n\n.icm-google-plus2:before {\n    content: \"\\ea8c\";\n}\n\n.icm-google-plus3:before {\n    content: \"\\ea8d\";\n}\n\n.icm-hangouts:before {\n    content: \"\\ea8e\";\n}\n\n.icm-google-drive:before {\n    content: \"\\ea8f\";\n}\n\n.icm-facebook:before {\n    content: \"\\ea90\";\n}\n\n.icm-facebook2:before {\n    content: \"\\ea91\";\n}\n\n.icm-instagram:before {\n    content: \"\\ea92\";\n}\n\n.icm-whatsapp:before {\n    content: \"\\ea93\";\n}\n\n.icm-spotify:before {\n    content: \"\\ea94\";\n}\n\n.icm-telegram:before {\n    content: \"\\ea95\";\n}\n\n.icm-twitter:before {\n    content: \"\\ea96\";\n}\n\n.icm-vine:before {\n    content: \"\\ea97\";\n}\n\n.icm-vk:before {\n    content: \"\\ea98\";\n}\n\n.icm-renren:before {\n    content: \"\\ea99\";\n}\n\n.icm-sina-weibo:before {\n    content: \"\\ea9a\";\n}\n\n.icm-rss:before {\n    content: \"\\ea9b\";\n}\n\n.icm-rss2:before {\n    content: \"\\ea9c\";\n}\n\n.icm-youtube:before {\n    content: \"\\ea9d\";\n}\n\n.icm-youtube2:before {\n    content: \"\\ea9e\";\n}\n\n.icm-twitch:before {\n    content: \"\\ea9f\";\n}\n\n.icm-vimeo:before {\n    content: \"\\eaa0\";\n}\n\n.icm-vimeo2:before {\n    content: \"\\eaa1\";\n}\n\n.icm-lanyrd:before {\n    content: \"\\eaa2\";\n}\n\n.icm-flickr:before {\n    content: \"\\eaa3\";\n}\n\n.icm-flickr2:before {\n    content: \"\\eaa4\";\n}\n\n.icm-flickr3:before {\n    content: \"\\eaa5\";\n}\n\n.icm-flickr4:before {\n    content: \"\\eaa6\";\n}\n\n.icm-dribbble:before {\n    content: \"\\eaa7\";\n}\n\n.icm-behance:before {\n    content: \"\\eaa8\";\n}\n\n.icm-behance2:before {\n    content: \"\\eaa9\";\n}\n\n.icm-deviantart:before {\n    content: \"\\eaaa\";\n}\n\n.icm-500px:before {\n    content: \"\\eaab\";\n}\n\n.icm-steam:before {\n    content: \"\\eaac\";\n}\n\n.icm-steam2:before {\n    content: \"\\eaad\";\n}\n\n.icm-dropbox:before {\n    content: \"\\eaae\";\n}\n\n.icm-onedrive:before {\n    content: \"\\eaaf\";\n}\n\n.icm-github:before {\n    content: \"\\eab0\";\n}\n\n.icm-npm:before {\n    content: \"\\eab1\";\n}\n\n.icm-basecamp:before {\n    content: \"\\eab2\";\n}\n\n.icm-trello:before {\n    content: \"\\eab3\";\n}\n\n.icm-wordpress:before {\n    content: \"\\eab4\";\n}\n\n.icm-joomla:before {\n    content: \"\\eab5\";\n}\n\n.icm-ello:before {\n    content: \"\\eab6\";\n}\n\n.icm-blogger:before {\n    content: \"\\eab7\";\n}\n\n.icm-blogger2:before {\n    content: \"\\eab8\";\n}\n\n.icm-tumblr:before {\n    content: \"\\eab9\";\n}\n\n.icm-tumblr2:before {\n    content: \"\\eaba\";\n}\n\n.icm-yahoo:before {\n    content: \"\\eabb\";\n}\n\n.icm-yahoo2:before {\n    content: \"\\eabc\";\n}\n\n.icm-tux:before {\n    content: \"\\eabd\";\n}\n\n.icm-appleinc:before {\n    content: \"\\eabe\";\n}\n\n.icm-finder:before {\n    content: \"\\eabf\";\n}\n\n.icm-android:before {\n    content: \"\\eac0\";\n}\n\n.icm-windows:before {\n    content: \"\\eac1\";\n}\n\n.icm-windows8:before {\n    content: \"\\eac2\";\n}\n\n.icm-soundcloud:before {\n    content: \"\\eac3\";\n}\n\n.icm-soundcloud2:before {\n    content: \"\\eac4\";\n}\n\n.icm-skype:before {\n    content: \"\\eac5\";\n}\n\n.icm-reddit:before {\n    content: \"\\eac6\";\n}\n\n.icm-hackernews:before {\n    content: \"\\eac7\";\n}\n\n.icm-wikipedia:before {\n    content: \"\\eac8\";\n}\n\n.icm-linkedin:before {\n    content: \"\\eac9\";\n}\n\n.icm-linkedin2:before {\n    content: \"\\eaca\";\n}\n\n.icm-lastfm:before {\n    content: \"\\eacb\";\n}\n\n.icm-lastfm2:before {\n    content: \"\\eacc\";\n}\n\n.icm-delicious:before {\n    content: \"\\eacd\";\n}\n\n.icm-stumbleupon:before {\n    content: \"\\eace\";\n}\n\n.icm-stumbleupon2:before {\n    content: \"\\eacf\";\n}\n\n.icm-stackoverflow:before {\n    content: \"\\ead0\";\n}\n\n.icm-pinterest:before {\n    content: \"\\ead1\";\n}\n\n.icm-pinterest2:before {\n    content: \"\\ead2\";\n}\n\n.icm-xing:before {\n    content: \"\\ead3\";\n}\n\n.icm-xing2:before {\n    content: \"\\ead4\";\n}\n\n.icm-flattr:before {\n    content: \"\\ead5\";\n}\n\n.icm-foursquare:before {\n    content: \"\\ead6\";\n}\n\n.icm-yelp:before {\n    content: \"\\ead7\";\n}\n\n.icm-paypal:before {\n    content: \"\\ead8\";\n}\n\n.icm-chrome:before {\n    content: \"\\ead9\";\n}\n\n.icm-firefox:before {\n    content: \"\\eada\";\n}\n\n.icm-IE:before {\n    content: \"\\eadb\";\n}\n\n.icm-edge:before {\n    content: \"\\eadc\";\n}\n\n.icm-safari:before {\n    content: \"\\eadd\";\n}\n\n.icm-opera:before {\n    content: \"\\eade\";\n}\n\n.icm-file-pdf:before {\n    content: \"\\eadf\";\n}\n\n.icm-file-openoffice:before {\n    content: \"\\eae0\";\n}\n\n.icm-file-word:before {\n    content: \"\\eae1\";\n}\n\n.icm-file-excel:before {\n    content: \"\\eae2\";\n}\n\n.icm-libreoffice:before {\n    content: \"\\eae3\";\n}\n\n.icm-html-five:before {\n    content: \"\\eae4\";\n}\n\n.icm-html-five2:before {\n    content: \"\\eae5\";\n}\n\n.icm-css3:before {\n    content: \"\\eae6\";\n}\n\n.icm-git:before {\n    content: \"\\eae7\";\n}\n\n.icm-codepen:before {\n    content: \"\\eae8\";\n}\n\n.icm-svg:before {\n    content: \"\\eae9\";\n}\n\n.icm-IcoMoon:before {\n    content: \"\\eaea\";\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-ionicons-pack/ikonli-ionicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-ionicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.ionicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.ionicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.ionicons.IoniconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.ionicons.IoniconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons-pack/src/main/java/org/kordamp/ikonli/ionicons/Ionicons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ionicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Ionicons implements Ikon {\n    // latest is uf30c\n    ION_ALERT(\"ion-alert\", '\\uf101'),\n    ION_ALERT_CIRCLED(\"ion-alert-circled\", '\\uf100'),\n    ION_ANDROID_ADD(\"ion-android-add\", '\\uf2c7'),\n    ION_ANDROID_ADD_CIRCLE(\"ion-android-add-circle\", '\\uf359'),\n    ION_ANDROID_ALARM_CLOCK(\"ion-android-alarm-clock\", '\\uf35a'),\n    ION_ANDROID_ALERT(\"ion-android-alert\", '\\uf35b'),\n    ION_ANDROID_APPS(\"ion-android-apps\", '\\uf35c'),\n    ION_ANDROID_ARCHIVE(\"ion-android-archive\", '\\uf2c9'),\n    ION_ANDROID_ARROW_BACK(\"ion-android-arrow-back\", '\\uf2ca'),\n    ION_ANDROID_ARROW_DOWN(\"ion-android-arrow-down\", '\\uf35d'),\n    ION_ANDROID_ARROW_DROPDOWN(\"ion-android-arrow-dropdown\", '\\uf35f'),\n    ION_ANDROID_ARROW_DROPDOWN_CIRCLE(\"ion-android-arrow-dropdown-circle\", '\\uf35e'),\n    ION_ANDROID_ARROW_DROPLEFT(\"ion-android-arrow-dropleft\", '\\uf361'),\n    ION_ANDROID_ARROW_DROPLEFT_CIRCLE(\"ion-android-arrow-dropleft-circle\", '\\uf360'),\n    ION_ANDROID_ARROW_DROPRIGHT(\"ion-android-arrow-dropright\", '\\uf363'),\n    ION_ANDROID_ARROW_DROPRIGHT_CIRCLE(\"ion-android-arrow-dropright-circle\", '\\uf362'),\n    ION_ANDROID_ARROW_DROPUP(\"ion-android-arrow-dropup\", '\\uf365'),\n    ION_ANDROID_ARROW_DROPUP_CIRCLE(\"ion-android-arrow-dropup-circle\", '\\uf364'),\n    ION_ANDROID_ARROW_FORWARD(\"ion-android-arrow-forward\", '\\uf30f'),\n    ION_ANDROID_ARROW_UP(\"ion-android-arrow-up\", '\\uf366'),\n    ION_ANDROID_ATTACH(\"ion-android-attach\", '\\uf367'),\n    ION_ANDROID_BAR(\"ion-android-bar\", '\\uf368'),\n    ION_ANDROID_BICYCLE(\"ion-android-bicycle\", '\\uf369'),\n    ION_ANDROID_BOAT(\"ion-android-boat\", '\\uf36a'),\n    ION_ANDROID_BOOKMARK(\"ion-android-bookmark\", '\\uf36b'),\n    ION_ANDROID_BULB(\"ion-android-bulb\", '\\uf36c'),\n    ION_ANDROID_BUS(\"ion-android-bus\", '\\uf36d'),\n    ION_ANDROID_CALENDAR(\"ion-android-calendar\", '\\uf2d1'),\n    ION_ANDROID_CALL(\"ion-android-call\", '\\uf2d2'),\n    ION_ANDROID_CAMERA(\"ion-android-camera\", '\\uf2d3'),\n    ION_ANDROID_CANCEL(\"ion-android-cancel\", '\\uf36e'),\n    ION_ANDROID_CAR(\"ion-android-car\", '\\uf36f'),\n    ION_ANDROID_CART(\"ion-android-cart\", '\\uf370'),\n    ION_ANDROID_CHAT(\"ion-android-chat\", '\\uf2d4'),\n    ION_ANDROID_CHECKBOX(\"ion-android-checkbox\", '\\uf374'),\n    ION_ANDROID_CHECKBOX_BLANK(\"ion-android-checkbox-blank\", '\\uf371'),\n    ION_ANDROID_CHECKBOX_OUTLINE(\"ion-android-checkbox-outline\", '\\uf373'),\n    ION_ANDROID_CHECKBOX_OUTLINE_BLANK(\"ion-android-checkbox-outline-blank\", '\\uf372'),\n    ION_ANDROID_CHECKMARK_CIRCLE(\"ion-android-checkmark-circle\", '\\uf375'),\n    ION_ANDROID_CLIPBOARD(\"ion-android-clipboard\", '\\uf376'),\n    ION_ANDROID_CLOSE(\"ion-android-close\", '\\uf2d7'),\n    ION_ANDROID_CLOUD(\"ion-android-cloud\", '\\uf37a'),\n    ION_ANDROID_CLOUD_CIRCLE(\"ion-android-cloud-circle\", '\\uf377'),\n    ION_ANDROID_CLOUD_DONE(\"ion-android-cloud-done\", '\\uf378'),\n    ION_ANDROID_CLOUD_OUTLINE(\"ion-android-cloud-outline\", '\\uf379'),\n    ION_ANDROID_COLOR_PALETTE(\"ion-android-color-palette\", '\\uf37b'),\n    ION_ANDROID_COMPASS(\"ion-android-compass\", '\\uf37c'),\n    ION_ANDROID_CONTACT(\"ion-android-contact\", '\\uf2d8'),\n    ION_ANDROID_CONTACTS(\"ion-android-contacts\", '\\uf2d9'),\n    ION_ANDROID_CONTRACT(\"ion-android-contract\", '\\uf37d'),\n    ION_ANDROID_CREATE(\"ion-android-create\", '\\uf37e'),\n    ION_ANDROID_DELETE(\"ion-android-delete\", '\\uf37f'),\n    ION_ANDROID_DESKTOP(\"ion-android-desktop\", '\\uf380'),\n    ION_ANDROID_DOCUMENT(\"ion-android-document\", '\\uf381'),\n    ION_ANDROID_DONE(\"ion-android-done\", '\\uf383'),\n    ION_ANDROID_DONE_ALL(\"ion-android-done-all\", '\\uf382'),\n    ION_ANDROID_DOWNLOAD(\"ion-android-download\", '\\uf2dd'),\n    ION_ANDROID_DRAFTS(\"ion-android-drafts\", '\\uf384'),\n    ION_ANDROID_EXIT(\"ion-android-exit\", '\\uf385'),\n    ION_ANDROID_EXPAND(\"ion-android-expand\", '\\uf386'),\n    ION_ANDROID_FAVORITE(\"ion-android-favorite\", '\\uf388'),\n    ION_ANDROID_FAVORITE_OUTLINE(\"ion-android-favorite-outline\", '\\uf387'),\n    ION_ANDROID_FILM(\"ion-android-film\", '\\uf389'),\n    ION_ANDROID_FOLDER(\"ion-android-folder\", '\\uf2e0'),\n    ION_ANDROID_FOLDER_OPEN(\"ion-android-folder-open\", '\\uf38a'),\n    ION_ANDROID_FUNNEL(\"ion-android-funnel\", '\\uf38b'),\n    ION_ANDROID_GLOBE(\"ion-android-globe\", '\\uf38c'),\n    ION_ANDROID_HAND(\"ion-android-hand\", '\\uf2e3'),\n    ION_ANDROID_HANGOUT(\"ion-android-hangout\", '\\uf38d'),\n    ION_ANDROID_HAPPY(\"ion-android-happy\", '\\uf38e'),\n    ION_ANDROID_HOME(\"ion-android-home\", '\\uf38f'),\n    ION_ANDROID_IMAGE(\"ion-android-image\", '\\uf2e4'),\n    ION_ANDROID_LAPTOP(\"ion-android-laptop\", '\\uf390'),\n    ION_ANDROID_LIST(\"ion-android-list\", '\\uf391'),\n    ION_ANDROID_LOCATE(\"ion-android-locate\", '\\uf2e9'),\n    ION_ANDROID_LOCK(\"ion-android-lock\", '\\uf392'),\n    ION_ANDROID_MAIL(\"ion-android-mail\", '\\uf2eb'),\n    ION_ANDROID_MAP(\"ion-android-map\", '\\uf393'),\n    ION_ANDROID_MENU(\"ion-android-menu\", '\\uf394'),\n    ION_ANDROID_MICROPHONE(\"ion-android-microphone\", '\\uf2ec'),\n    ION_ANDROID_MICROPHONE_OFF(\"ion-android-microphone-off\", '\\uf395'),\n    ION_ANDROID_MORE_HORIZONTAL(\"ion-android-more-horizontal\", '\\uf396'),\n    ION_ANDROID_MORE_VERTICAL(\"ion-android-more-vertical\", '\\uf397'),\n    ION_ANDROID_NAVIGATE(\"ion-android-navigate\", '\\uf398'),\n    ION_ANDROID_NOTIFICATIONS(\"ion-android-notifications\", '\\uf39b'),\n    ION_ANDROID_NOTIFICATIONS_NONE(\"ion-android-notifications-none\", '\\uf399'),\n    ION_ANDROID_NOTIFICATIONS_OFF(\"ion-android-notifications-off\", '\\uf39a'),\n    ION_ANDROID_OPEN(\"ion-android-open\", '\\uf39c'),\n    ION_ANDROID_OPTIONS(\"ion-android-options\", '\\uf39d'),\n    ION_ANDROID_PEOPLE(\"ion-android-people\", '\\uf39e'),\n    ION_ANDROID_PERSON(\"ion-android-person\", '\\uf3a0'),\n    ION_ANDROID_PERSON_ADD(\"ion-android-person-add\", '\\uf39f'),\n    ION_ANDROID_PHONE_LANDSCAPE(\"ion-android-phone-landscape\", '\\uf3a1'),\n    ION_ANDROID_PHONE_PORTRAIT(\"ion-android-phone-portrait\", '\\uf3a2'),\n    ION_ANDROID_PIN(\"ion-android-pin\", '\\uf3a3'),\n    ION_ANDROID_PLANE(\"ion-android-plane\", '\\uf3a4'),\n    ION_ANDROID_PLAYSTORE(\"ion-android-playstore\", '\\uf2f0'),\n    ION_ANDROID_PRINT(\"ion-android-print\", '\\uf3a5'),\n    ION_ANDROID_RADIO_BUTTON_OFF(\"ion-android-radio-button-off\", '\\uf3a6'),\n    ION_ANDROID_RADIO_BUTTON_ON(\"ion-android-radio-button-on\", '\\uf3a7'),\n    ION_ANDROID_REFRESH(\"ion-android-refresh\", '\\uf3a8'),\n    ION_ANDROID_REMOVE(\"ion-android-remove\", '\\uf2f4'),\n    ION_ANDROID_REMOVE_CIRCLE(\"ion-android-remove-circle\", '\\uf3a9'),\n    ION_ANDROID_RESTAURANT(\"ion-android-restaurant\", '\\uf3aa'),\n    ION_ANDROID_SAD(\"ion-android-sad\", '\\uf3ab'),\n    ION_ANDROID_SEARCH(\"ion-android-search\", '\\uf2f5'),\n    ION_ANDROID_SEND(\"ion-android-send\", '\\uf2f6'),\n    ION_ANDROID_SETTINGS(\"ion-android-settings\", '\\uf2f7'),\n    ION_ANDROID_SHARE(\"ion-android-share\", '\\uf2f8'),\n    ION_ANDROID_SHARE_ALT(\"ion-android-share-alt\", '\\uf3ac'),\n    ION_ANDROID_STAR(\"ion-android-star\", '\\uf2fc'),\n    ION_ANDROID_STAR_HALF(\"ion-android-star-half\", '\\uf3ad'),\n    ION_ANDROID_STAR_OUTLINE(\"ion-android-star-outline\", '\\uf3ae'),\n    ION_ANDROID_STOPWATCH(\"ion-android-stopwatch\", '\\uf2fd'),\n    ION_ANDROID_SUBWAY(\"ion-android-subway\", '\\uf3af'),\n    ION_ANDROID_SUNNY(\"ion-android-sunny\", '\\uf3b0'),\n    ION_ANDROID_SYNC(\"ion-android-sync\", '\\uf3b1'),\n    ION_ANDROID_TEXTSMS(\"ion-android-textsms\", '\\uf3b2'),\n    ION_ANDROID_TIME(\"ion-android-time\", '\\uf3b3'),\n    ION_ANDROID_TRAIN(\"ion-android-train\", '\\uf3b4'),\n    ION_ANDROID_UNLOCK(\"ion-android-unlock\", '\\uf3b5'),\n    ION_ANDROID_UPLOAD(\"ion-android-upload\", '\\uf3b6'),\n    ION_ANDROID_VOLUME_DOWN(\"ion-android-volume-down\", '\\uf3b7'),\n    ION_ANDROID_VOLUME_MUTE(\"ion-android-volume-mute\", '\\uf3b8'),\n    ION_ANDROID_VOLUME_OFF(\"ion-android-volume-off\", '\\uf3b9'),\n    ION_ANDROID_VOLUME_UP(\"ion-android-volume-up\", '\\uf3ba'),\n    ION_ANDROID_WALK(\"ion-android-walk\", '\\uf3bb'),\n    ION_ANDROID_WARNING(\"ion-android-warning\", '\\uf3bc'),\n    ION_ANDROID_WATCH(\"ion-android-watch\", '\\uf3bd'),\n    ION_ANDROID_WIFI(\"ion-android-wifi\", '\\uf305'),\n    ION_APERTURE(\"ion-aperture\", '\\uf313'),\n    ION_ARCHIVE(\"ion-archive\", '\\uf102'),\n    ION_ARROW_DOWN_A(\"ion-arrow-down-a\", '\\uf103'),\n    ION_ARROW_DOWN_B(\"ion-arrow-down-b\", '\\uf104'),\n    ION_ARROW_DOWN_C(\"ion-arrow-down-c\", '\\uf105'),\n    ION_ARROW_EXPAND(\"ion-arrow-expand\", '\\uf25e'),\n    ION_ARROW_GRAPH_DOWN_LEFT(\"ion-arrow-graph-down-left\", '\\uf25f'),\n    ION_ARROW_GRAPH_DOWN_RIGHT(\"ion-arrow-graph-down-right\", '\\uf260'),\n    ION_ARROW_GRAPH_UP_LEFT(\"ion-arrow-graph-up-left\", '\\uf261'),\n    ION_ARROW_GRAPH_UP_RIGHT(\"ion-arrow-graph-up-right\", '\\uf262'),\n    ION_ARROW_LEFT_A(\"ion-arrow-left-a\", '\\uf106'),\n    ION_ARROW_LEFT_B(\"ion-arrow-left-b\", '\\uf107'),\n    ION_ARROW_LEFT_C(\"ion-arrow-left-c\", '\\uf108'),\n    ION_ARROW_MOVE(\"ion-arrow-move\", '\\uf263'),\n    ION_ARROW_RESIZE(\"ion-arrow-resize\", '\\uf264'),\n    ION_ARROW_RETURN_LEFT(\"ion-arrow-return-left\", '\\uf265'),\n    ION_ARROW_RETURN_RIGHT(\"ion-arrow-return-right\", '\\uf266'),\n    ION_ARROW_RIGHT_A(\"ion-arrow-right-a\", '\\uf109'),\n    ION_ARROW_RIGHT_B(\"ion-arrow-right-b\", '\\uf10a'),\n    ION_ARROW_RIGHT_C(\"ion-arrow-right-c\", '\\uf10b'),\n    ION_ARROW_SHRINK(\"ion-arrow-shrink\", '\\uf267'),\n    ION_ARROW_SWAP(\"ion-arrow-swap\", '\\uf268'),\n    ION_ARROW_UP_A(\"ion-arrow-up-a\", '\\uf10c'),\n    ION_ARROW_UP_B(\"ion-arrow-up-b\", '\\uf10d'),\n    ION_ARROW_UP_C(\"ion-arrow-up-c\", '\\uf10e'),\n    ION_ASTERISK(\"ion-asterisk\", '\\uf314'),\n    ION_AT(\"ion-at\", '\\uf10f'),\n    ION_BACKSPACE(\"ion-backspace\", '\\uf3bf'),\n    ION_BACKSPACE_OUTLINE(\"ion-backspace-outline\", '\\uf3be'),\n    ION_BAG(\"ion-bag\", '\\uf110'),\n    ION_BATTERY_CHARGING(\"ion-battery-charging\", '\\uf111'),\n    ION_BATTERY_EMPTY(\"ion-battery-empty\", '\\uf112'),\n    ION_BATTERY_FULL(\"ion-battery-full\", '\\uf113'),\n    ION_BATTERY_HALF(\"ion-battery-half\", '\\uf114'),\n    ION_BATTERY_LOW(\"ion-battery-low\", '\\uf115'),\n    ION_BEAKER(\"ion-beaker\", '\\uf269'),\n    ION_BEER(\"ion-beer\", '\\uf26a'),\n    ION_BLUETOOTH(\"ion-bluetooth\", '\\uf116'),\n    ION_BONFIRE(\"ion-bonfire\", '\\uf315'),\n    ION_BOOKMARK(\"ion-bookmark\", '\\uf26b'),\n    ION_BOWTIE(\"ion-bowtie\", '\\uf3c0'),\n    ION_BRIEFCASE(\"ion-briefcase\", '\\uf26c'),\n    ION_BUG(\"ion-bug\", '\\uf2be'),\n    ION_CALCULATOR(\"ion-calculator\", '\\uf26d'),\n    ION_CALENDAR(\"ion-calendar\", '\\uf117'),\n    ION_CAMERA(\"ion-camera\", '\\uf118'),\n    ION_CARD(\"ion-card\", '\\uf119'),\n    ION_CASH(\"ion-cash\", '\\uf316'),\n    ION_CHATBOX(\"ion-chatbox\", '\\uf11b'),\n    ION_CHATBOXES(\"ion-chatboxes\", '\\uf11c'),\n    ION_CHATBOX_WORKING(\"ion-chatbox-working\", '\\uf11a'),\n    ION_CHATBUBBLE(\"ion-chatbubble\", '\\uf11e'),\n    ION_CHATBUBBLES(\"ion-chatbubbles\", '\\uf11f'),\n    ION_CHATBUBBLE_WORKING(\"ion-chatbubble-working\", '\\uf11d'),\n    ION_CHECKMARK(\"ion-checkmark\", '\\uf122'),\n    ION_CHECKMARK_CIRCLED(\"ion-checkmark-circled\", '\\uf120'),\n    ION_CHECKMARK_ROUND(\"ion-checkmark-round\", '\\uf121'),\n    ION_CHEVRON_DOWN(\"ion-chevron-down\", '\\uf123'),\n    ION_CHEVRON_LEFT(\"ion-chevron-left\", '\\uf124'),\n    ION_CHEVRON_RIGHT(\"ion-chevron-right\", '\\uf125'),\n    ION_CHEVRON_UP(\"ion-chevron-up\", '\\uf126'),\n    ION_CLIPBOARD(\"ion-clipboard\", '\\uf127'),\n    ION_CLOCK(\"ion-clock\", '\\uf26e'),\n    ION_CLOSE(\"ion-close\", '\\uf12a'),\n    ION_CLOSED_CAPTIONING(\"ion-closed-captioning\", '\\uf317'),\n    ION_CLOSE_CIRCLED(\"ion-close-circled\", '\\uf128'),\n    ION_CLOSE_ROUND(\"ion-close-round\", '\\uf129'),\n    ION_CLOUD(\"ion-cloud\", '\\uf12b'),\n    ION_CODE(\"ion-code\", '\\uf271'),\n    ION_CODE_DOWNLOAD(\"ion-code-download\", '\\uf26f'),\n    ION_CODE_WORKING(\"ion-code-working\", '\\uf270'),\n    ION_COFFEE(\"ion-coffee\", '\\uf272'),\n    ION_COMPASS(\"ion-compass\", '\\uf273'),\n    ION_COMPOSE(\"ion-compose\", '\\uf12c'),\n    ION_CONNECTION_BARS(\"ion-connection-bars\", '\\uf274'),\n    ION_CONTRAST(\"ion-contrast\", '\\uf275'),\n    ION_CROP(\"ion-crop\", '\\uf3c1'),\n    ION_CUBE(\"ion-cube\", '\\uf318'),\n    ION_DISC(\"ion-disc\", '\\uf12d'),\n    ION_DOCUMENT(\"ion-document\", '\\uf12f'),\n    ION_DOCUMENT_TEXT(\"ion-document-text\", '\\uf12e'),\n    ION_DRAG(\"ion-drag\", '\\uf130'),\n    ION_EARTH(\"ion-earth\", '\\uf276'),\n    ION_EASEL(\"ion-easel\", '\\uf3c2'),\n    ION_EDIT(\"ion-edit\", '\\uf2bf'),\n    ION_EGG(\"ion-egg\", '\\uf277'),\n    ION_EJECT(\"ion-eject\", '\\uf131'),\n    ION_EMAIL(\"ion-email\", '\\uf132'),\n    ION_EMAIL_UNREAD(\"ion-email-unread\", '\\uf3c3'),\n    ION_ERLENMEYER_FLASK(\"ion-erlenmeyer-flask\", '\\uf3c5'),\n    ION_ERLENMEYER_FLASK_BUBBLES(\"ion-erlenmeyer-flask-bubbles\", '\\uf3c4'),\n    ION_EYE(\"ion-eye\", '\\uf133'),\n    ION_EYE_DISABLED(\"ion-eye-disabled\", '\\uf306'),\n    ION_FEMALE(\"ion-female\", '\\uf278'),\n    ION_FILING(\"ion-filing\", '\\uf134'),\n    ION_FILM_MARKER(\"ion-film-marker\", '\\uf135'),\n    ION_FIREBALL(\"ion-fireball\", '\\uf319'),\n    ION_FLAG(\"ion-flag\", '\\uf279'),\n    ION_FLAME(\"ion-flame\", '\\uf31a'),\n    ION_FLASH(\"ion-flash\", '\\uf137'),\n    ION_FLASH_OFF(\"ion-flash-off\", '\\uf136'),\n    ION_FOLDER(\"ion-folder\", '\\uf139'),\n    ION_FORK(\"ion-fork\", '\\uf27a'),\n    ION_FORK_REPO(\"ion-fork-repo\", '\\uf2c0'),\n    ION_FORWARD(\"ion-forward\", '\\uf13a'),\n    ION_FUNNEL(\"ion-funnel\", '\\uf31b'),\n    ION_GEAR_A(\"ion-gear-a\", '\\uf13d'),\n    ION_GEAR_B(\"ion-gear-b\", '\\uf13e'),\n    ION_GRID(\"ion-grid\", '\\uf13f'),\n    ION_HAMMER(\"ion-hammer\", '\\uf27b'),\n    ION_HAPPY(\"ion-happy\", '\\uf31c'),\n    ION_HAPPY_OUTLINE(\"ion-happy-outline\", '\\uf3c6'),\n    ION_HEADPHONE(\"ion-headphone\", '\\uf140'),\n    ION_HEART(\"ion-heart\", '\\uf141'),\n    ION_HEART_BROKEN(\"ion-heart-broken\", '\\uf31d'),\n    ION_HELP(\"ion-help\", '\\uf143'),\n    ION_HELP_BUOY(\"ion-help-buoy\", '\\uf27c'),\n    ION_HELP_CIRCLED(\"ion-help-circled\", '\\uf142'),\n    ION_HOME(\"ion-home\", '\\uf144'),\n    ION_ICECREAM(\"ion-icecream\", '\\uf27d'),\n    ION_IMAGE(\"ion-image\", '\\uf147'),\n    ION_IMAGES(\"ion-images\", '\\uf148'),\n    ION_INFORMATION(\"ion-information\", '\\uf14a'),\n    ION_INFORMATION_CIRCLED(\"ion-information-circled\", '\\uf149'),\n    ION_IONIC(\"ion-ionic\", '\\uf14b'),\n    ION_IOS_ALARM(\"ion-ios-alarm\", '\\uf3c8'),\n    ION_IOS_ALARM_OUTLINE(\"ion-ios-alarm-outline\", '\\uf3c7'),\n    ION_IOS_ALBUMS(\"ion-ios-albums\", '\\uf3ca'),\n    ION_IOS_ALBUMS_OUTLINE(\"ion-ios-albums-outline\", '\\uf3c9'),\n    ION_IOS_AMERICANFOOTBALL(\"ion-ios-americanfootball\", '\\uf3cc'),\n    ION_IOS_AMERICANFOOTBALL_OUTLINE(\"ion-ios-americanfootball-outline\", '\\uf3cb'),\n    ION_IOS_ANALYTICS(\"ion-ios-analytics\", '\\uf3ce'),\n    ION_IOS_ANALYTICS_OUTLINE(\"ion-ios-analytics-outline\", '\\uf3cd'),\n    ION_IOS_ARROW_BACK(\"ion-ios-arrow-back\", '\\uf3cf'),\n    ION_IOS_ARROW_DOWN(\"ion-ios-arrow-down\", '\\uf3d0'),\n    ION_IOS_ARROW_FORWARD(\"ion-ios-arrow-forward\", '\\uf3d1'),\n    ION_IOS_ARROW_LEFT(\"ion-ios-arrow-left\", '\\uf3d2'),\n    ION_IOS_ARROW_RIGHT(\"ion-ios-arrow-right\", '\\uf3d3'),\n    ION_IOS_ARROW_THIN_DOWN(\"ion-ios-arrow-thin-down\", '\\uf3d4'),\n    ION_IOS_ARROW_THIN_LEFT(\"ion-ios-arrow-thin-left\", '\\uf3d5'),\n    ION_IOS_ARROW_THIN_RIGHT(\"ion-ios-arrow-thin-right\", '\\uf3d6'),\n    ION_IOS_ARROW_THIN_UP(\"ion-ios-arrow-thin-up\", '\\uf3d7'),\n    ION_IOS_ARROW_UP(\"ion-ios-arrow-up\", '\\uf3d8'),\n    ION_IOS_AT(\"ion-ios-at\", '\\uf3da'),\n    ION_IOS_AT_OUTLINE(\"ion-ios-at-outline\", '\\uf3d9'),\n    ION_IOS_BARCODE(\"ion-ios-barcode\", '\\uf3dc'),\n    ION_IOS_BARCODE_OUTLINE(\"ion-ios-barcode-outline\", '\\uf3db'),\n    ION_IOS_BASEBALL(\"ion-ios-baseball\", '\\uf3de'),\n    ION_IOS_BASEBALL_OUTLINE(\"ion-ios-baseball-outline\", '\\uf3dd'),\n    ION_IOS_BASKETBALL(\"ion-ios-basketball\", '\\uf3e0'),\n    ION_IOS_BASKETBALL_OUTLINE(\"ion-ios-basketball-outline\", '\\uf3df'),\n    ION_IOS_BELL(\"ion-ios-bell\", '\\uf3e2'),\n    ION_IOS_BELL_OUTLINE(\"ion-ios-bell-outline\", '\\uf3e1'),\n    ION_IOS_BODY(\"ion-ios-body\", '\\uf3e4'),\n    ION_IOS_BODY_OUTLINE(\"ion-ios-body-outline\", '\\uf3e3'),\n    ION_IOS_BOLT(\"ion-ios-bolt\", '\\uf3e6'),\n    ION_IOS_BOLT_OUTLINE(\"ion-ios-bolt-outline\", '\\uf3e5'),\n    ION_IOS_BOOK(\"ion-ios-book\", '\\uf3e8'),\n    ION_IOS_BOOKMARKS(\"ion-ios-bookmarks\", '\\uf3ea'),\n    ION_IOS_BOOKMARKS_OUTLINE(\"ion-ios-bookmarks-outline\", '\\uf3e9'),\n    ION_IOS_BOOK_OUTLINE(\"ion-ios-book-outline\", '\\uf3e7'),\n    ION_IOS_BOX(\"ion-ios-box\", '\\uf3ec'),\n    ION_IOS_BOX_OUTLINE(\"ion-ios-box-outline\", '\\uf3eb'),\n    ION_IOS_BRIEFCASE(\"ion-ios-briefcase\", '\\uf3ee'),\n    ION_IOS_BRIEFCASE_OUTLINE(\"ion-ios-briefcase-outline\", '\\uf3ed'),\n    ION_IOS_BROWSERS(\"ion-ios-browsers\", '\\uf3f0'),\n    ION_IOS_BROWSERS_OUTLINE(\"ion-ios-browsers-outline\", '\\uf3ef'),\n    ION_IOS_CALCULATOR(\"ion-ios-calculator\", '\\uf3f2'),\n    ION_IOS_CALCULATOR_OUTLINE(\"ion-ios-calculator-outline\", '\\uf3f1'),\n    ION_IOS_CALENDAR(\"ion-ios-calendar\", '\\uf3f4'),\n    ION_IOS_CALENDAR_OUTLINE(\"ion-ios-calendar-outline\", '\\uf3f3'),\n    ION_IOS_CAMERA(\"ion-ios-camera\", '\\uf3f6'),\n    ION_IOS_CAMERA_OUTLINE(\"ion-ios-camera-outline\", '\\uf3f5'),\n    ION_IOS_CART(\"ion-ios-cart\", '\\uf3f8'),\n    ION_IOS_CART_OUTLINE(\"ion-ios-cart-outline\", '\\uf3f7'),\n    ION_IOS_CHATBOXES(\"ion-ios-chatboxes\", '\\uf3fa'),\n    ION_IOS_CHATBOXES_OUTLINE(\"ion-ios-chatboxes-outline\", '\\uf3f9'),\n    ION_IOS_CHATBUBBLE(\"ion-ios-chatbubble\", '\\uf3fc'),\n    ION_IOS_CHATBUBBLE_OUTLINE(\"ion-ios-chatbubble-outline\", '\\uf3fb'),\n    ION_IOS_CHECKMARK(\"ion-ios-checkmark\", '\\uf3ff'),\n    ION_IOS_CHECKMARK_EMPTY(\"ion-ios-checkmark-empty\", '\\uf3fd'),\n    ION_IOS_CHECKMARK_OUTLINE(\"ion-ios-checkmark-outline\", '\\uf3fe'),\n    ION_IOS_CIRCLE_FILLED(\"ion-ios-circle-filled\", '\\uf400'),\n    ION_IOS_CIRCLE_OUTLINE(\"ion-ios-circle-outline\", '\\uf401'),\n    ION_IOS_CLOCK(\"ion-ios-clock\", '\\uf403'),\n    ION_IOS_CLOCK_OUTLINE(\"ion-ios-clock-outline\", '\\uf402'),\n    ION_IOS_CLOSE(\"ion-ios-close\", '\\uf406'),\n    ION_IOS_CLOSE_EMPTY(\"ion-ios-close-empty\", '\\uf404'),\n    ION_IOS_CLOSE_OUTLINE(\"ion-ios-close-outline\", '\\uf405'),\n    ION_IOS_CLOUD(\"ion-ios-cloud\", '\\uf40c'),\n    ION_IOS_CLOUDY(\"ion-ios-cloudy\", '\\uf410'),\n    ION_IOS_CLOUDY_NIGHT(\"ion-ios-cloudy-night\", '\\uf40e'),\n    ION_IOS_CLOUDY_NIGHT_OUTLINE(\"ion-ios-cloudy-night-outline\", '\\uf40d'),\n    ION_IOS_CLOUDY_OUTLINE(\"ion-ios-cloudy-outline\", '\\uf40f'),\n    ION_IOS_CLOUD_DOWNLOAD(\"ion-ios-cloud-download\", '\\uf408'),\n    ION_IOS_CLOUD_DOWNLOAD_OUTLINE(\"ion-ios-cloud-download-outline\", '\\uf407'),\n    ION_IOS_CLOUD_OUTLINE(\"ion-ios-cloud-outline\", '\\uf409'),\n    ION_IOS_CLOUD_UPLOAD(\"ion-ios-cloud-upload\", '\\uf40b'),\n    ION_IOS_CLOUD_UPLOAD_OUTLINE(\"ion-ios-cloud-upload-outline\", '\\uf40a'),\n    ION_IOS_COG(\"ion-ios-cog\", '\\uf412'),\n    ION_IOS_COG_OUTLINE(\"ion-ios-cog-outline\", '\\uf411'),\n    ION_IOS_COLOR_FILTER(\"ion-ios-color-filter\", '\\uf414'),\n    ION_IOS_COLOR_FILTER_OUTLINE(\"ion-ios-color-filter-outline\", '\\uf413'),\n    ION_IOS_COLOR_WAND(\"ion-ios-color-wand\", '\\uf416'),\n    ION_IOS_COLOR_WAND_OUTLINE(\"ion-ios-color-wand-outline\", '\\uf415'),\n    ION_IOS_COMPOSE(\"ion-ios-compose\", '\\uf418'),\n    ION_IOS_COMPOSE_OUTLINE(\"ion-ios-compose-outline\", '\\uf417'),\n    ION_IOS_CONTACT(\"ion-ios-contact\", '\\uf41a'),\n    ION_IOS_CONTACT_OUTLINE(\"ion-ios-contact-outline\", '\\uf419'),\n    ION_IOS_COPY(\"ion-ios-copy\", '\\uf41c'),\n    ION_IOS_COPY_OUTLINE(\"ion-ios-copy-outline\", '\\uf41b'),\n    ION_IOS_CROP(\"ion-ios-crop\", '\\uf41e'),\n    ION_IOS_CROP_STRONG(\"ion-ios-crop-strong\", '\\uf41d'),\n    ION_IOS_DOWNLOAD(\"ion-ios-download\", '\\uf420'),\n    ION_IOS_DOWNLOAD_OUTLINE(\"ion-ios-download-outline\", '\\uf41f'),\n    ION_IOS_DRAG(\"ion-ios-drag\", '\\uf421'),\n    ION_IOS_EMAIL(\"ion-ios-email\", '\\uf423'),\n    ION_IOS_EMAIL_OUTLINE(\"ion-ios-email-outline\", '\\uf422'),\n    ION_IOS_EYE(\"ion-ios-eye\", '\\uf425'),\n    ION_IOS_EYE_OUTLINE(\"ion-ios-eye-outline\", '\\uf424'),\n    ION_IOS_FASTFORWARD(\"ion-ios-fastforward\", '\\uf427'),\n    ION_IOS_FASTFORWARD_OUTLINE(\"ion-ios-fastforward-outline\", '\\uf426'),\n    ION_IOS_FILING(\"ion-ios-filing\", '\\uf429'),\n    ION_IOS_FILING_OUTLINE(\"ion-ios-filing-outline\", '\\uf428'),\n    ION_IOS_FILM(\"ion-ios-film\", '\\uf42b'),\n    ION_IOS_FILM_OUTLINE(\"ion-ios-film-outline\", '\\uf42a'),\n    ION_IOS_FLAG(\"ion-ios-flag\", '\\uf42d'),\n    ION_IOS_FLAG_OUTLINE(\"ion-ios-flag-outline\", '\\uf42c'),\n    ION_IOS_FLAME(\"ion-ios-flame\", '\\uf42f'),\n    ION_IOS_FLAME_OUTLINE(\"ion-ios-flame-outline\", '\\uf42e'),\n    ION_IOS_FLASK(\"ion-ios-flask\", '\\uf431'),\n    ION_IOS_FLASK_OUTLINE(\"ion-ios-flask-outline\", '\\uf430'),\n    ION_IOS_FLOWER(\"ion-ios-flower\", '\\uf433'),\n    ION_IOS_FLOWER_OUTLINE(\"ion-ios-flower-outline\", '\\uf432'),\n    ION_IOS_FOLDER(\"ion-ios-folder\", '\\uf435'),\n    ION_IOS_FOLDER_OUTLINE(\"ion-ios-folder-outline\", '\\uf434'),\n    ION_IOS_FOOTBALL(\"ion-ios-football\", '\\uf437'),\n    ION_IOS_FOOTBALL_OUTLINE(\"ion-ios-football-outline\", '\\uf436'),\n    ION_IOS_GAME_CONTROLLER_A(\"ion-ios-game-controller-a\", '\\uf439'),\n    ION_IOS_GAME_CONTROLLER_A_OUTLINE(\"ion-ios-game-controller-a-outline\", '\\uf438'),\n    ION_IOS_GAME_CONTROLLER_B(\"ion-ios-game-controller-b\", '\\uf43b'),\n    ION_IOS_GAME_CONTROLLER_B_OUTLINE(\"ion-ios-game-controller-b-outline\", '\\uf43a'),\n    ION_IOS_GEAR(\"ion-ios-gear\", '\\uf43d'),\n    ION_IOS_GEAR_OUTLINE(\"ion-ios-gear-outline\", '\\uf43c'),\n    ION_IOS_GLASSES(\"ion-ios-glasses\", '\\uf43f'),\n    ION_IOS_GLASSES_OUTLINE(\"ion-ios-glasses-outline\", '\\uf43e'),\n    ION_IOS_GRID_VIEW(\"ion-ios-grid-view\", '\\uf441'),\n    ION_IOS_GRID_VIEW_OUTLINE(\"ion-ios-grid-view-outline\", '\\uf440'),\n    ION_IOS_HEART(\"ion-ios-heart\", '\\uf443'),\n    ION_IOS_HEART_OUTLINE(\"ion-ios-heart-outline\", '\\uf442'),\n    ION_IOS_HELP(\"ion-ios-help\", '\\uf446'),\n    ION_IOS_HELP_EMPTY(\"ion-ios-help-empty\", '\\uf444'),\n    ION_IOS_HELP_OUTLINE(\"ion-ios-help-outline\", '\\uf445'),\n    ION_IOS_HOME(\"ion-ios-home\", '\\uf448'),\n    ION_IOS_HOME_OUTLINE(\"ion-ios-home-outline\", '\\uf447'),\n    ION_IOS_INFINITE(\"ion-ios-infinite\", '\\uf44a'),\n    ION_IOS_INFINITE_OUTLINE(\"ion-ios-infinite-outline\", '\\uf449'),\n    ION_IOS_INFORMATION(\"ion-ios-information\", '\\uf44d'),\n    ION_IOS_INFORMATION_EMPTY(\"ion-ios-information-empty\", '\\uf44b'),\n    ION_IOS_INFORMATION_OUTLINE(\"ion-ios-information-outline\", '\\uf44c'),\n    ION_IOS_IONIC_OUTLINE(\"ion-ios-ionic-outline\", '\\uf44e'),\n    ION_IOS_KEYPAD(\"ion-ios-keypad\", '\\uf450'),\n    ION_IOS_KEYPAD_OUTLINE(\"ion-ios-keypad-outline\", '\\uf44f'),\n    ION_IOS_LIGHTBULB(\"ion-ios-lightbulb\", '\\uf452'),\n    ION_IOS_LIGHTBULB_OUTLINE(\"ion-ios-lightbulb-outline\", '\\uf451'),\n    ION_IOS_LIST(\"ion-ios-list\", '\\uf454'),\n    ION_IOS_LIST_OUTLINE(\"ion-ios-list-outline\", '\\uf453'),\n    ION_IOS_LOCATION(\"ion-ios-location\", '\\uf456'),\n    ION_IOS_LOCATION_OUTLINE(\"ion-ios-location-outline\", '\\uf455'),\n    ION_IOS_LOCKED(\"ion-ios-locked\", '\\uf458'),\n    ION_IOS_LOCKED_OUTLINE(\"ion-ios-locked-outline\", '\\uf457'),\n    ION_IOS_LOOP(\"ion-ios-loop\", '\\uf45a'),\n    ION_IOS_LOOP_STRONG(\"ion-ios-loop-strong\", '\\uf459'),\n    ION_IOS_MEDICAL(\"ion-ios-medical\", '\\uf45c'),\n    ION_IOS_MEDICAL_OUTLINE(\"ion-ios-medical-outline\", '\\uf45b'),\n    ION_IOS_MEDKIT(\"ion-ios-medkit\", '\\uf45e'),\n    ION_IOS_MEDKIT_OUTLINE(\"ion-ios-medkit-outline\", '\\uf45d'),\n    ION_IOS_MIC(\"ion-ios-mic\", '\\uf461'),\n    ION_IOS_MIC_OFF(\"ion-ios-mic-off\", '\\uf45f'),\n    ION_IOS_MIC_OUTLINE(\"ion-ios-mic-outline\", '\\uf460'),\n    ION_IOS_MINUS(\"ion-ios-minus\", '\\uf464'),\n    ION_IOS_MINUS_EMPTY(\"ion-ios-minus-empty\", '\\uf462'),\n    ION_IOS_MINUS_OUTLINE(\"ion-ios-minus-outline\", '\\uf463'),\n    ION_IOS_MONITOR(\"ion-ios-monitor\", '\\uf466'),\n    ION_IOS_MONITOR_OUTLINE(\"ion-ios-monitor-outline\", '\\uf465'),\n    ION_IOS_MOON(\"ion-ios-moon\", '\\uf468'),\n    ION_IOS_MOON_OUTLINE(\"ion-ios-moon-outline\", '\\uf467'),\n    ION_IOS_MORE(\"ion-ios-more\", '\\uf46a'),\n    ION_IOS_MORE_OUTLINE(\"ion-ios-more-outline\", '\\uf469'),\n    ION_IOS_MUSICAL_NOTE(\"ion-ios-musical-note\", '\\uf46b'),\n    ION_IOS_MUSICAL_NOTES(\"ion-ios-musical-notes\", '\\uf46c'),\n    ION_IOS_NAVIGATE(\"ion-ios-navigate\", '\\uf46e'),\n    ION_IOS_NAVIGATE_OUTLINE(\"ion-ios-navigate-outline\", '\\uf46d'),\n    ION_IOS_NUTRITION(\"ion-ios-nutrition\", '\\uf470'),\n    ION_IOS_NUTRITION_OUTLINE(\"ion-ios-nutrition-outline\", '\\uf46f'),\n    ION_IOS_PAPER(\"ion-ios-paper\", '\\uf472'),\n    ION_IOS_PAPERPLANE(\"ion-ios-paperplane\", '\\uf474'),\n    ION_IOS_PAPERPLANE_OUTLINE(\"ion-ios-paperplane-outline\", '\\uf473'),\n    ION_IOS_PAPER_OUTLINE(\"ion-ios-paper-outline\", '\\uf471'),\n    ION_IOS_PARTLYSUNNY(\"ion-ios-partlysunny\", '\\uf476'),\n    ION_IOS_PARTLYSUNNY_OUTLINE(\"ion-ios-partlysunny-outline\", '\\uf475'),\n    ION_IOS_PAUSE(\"ion-ios-pause\", '\\uf478'),\n    ION_IOS_PAUSE_OUTLINE(\"ion-ios-pause-outline\", '\\uf477'),\n    ION_IOS_PAW(\"ion-ios-paw\", '\\uf47a'),\n    ION_IOS_PAW_OUTLINE(\"ion-ios-paw-outline\", '\\uf479'),\n    ION_IOS_PEOPLE(\"ion-ios-people\", '\\uf47c'),\n    ION_IOS_PEOPLE_OUTLINE(\"ion-ios-people-outline\", '\\uf47b'),\n    ION_IOS_PERSON(\"ion-ios-person\", '\\uf47e'),\n    ION_IOS_PERSONADD(\"ion-ios-personadd\", '\\uf480'),\n    ION_IOS_PERSONADD_OUTLINE(\"ion-ios-personadd-outline\", '\\uf47f'),\n    ION_IOS_PERSON_OUTLINE(\"ion-ios-person-outline\", '\\uf47d'),\n    ION_IOS_PHOTOS(\"ion-ios-photos\", '\\uf482'),\n    ION_IOS_PHOTOS_OUTLINE(\"ion-ios-photos-outline\", '\\uf481'),\n    ION_IOS_PIE(\"ion-ios-pie\", '\\uf484'),\n    ION_IOS_PIE_OUTLINE(\"ion-ios-pie-outline\", '\\uf483'),\n    ION_IOS_PINT(\"ion-ios-pint\", '\\uf486'),\n    ION_IOS_PINT_OUTLINE(\"ion-ios-pint-outline\", '\\uf485'),\n    ION_IOS_PLAY(\"ion-ios-play\", '\\uf488'),\n    ION_IOS_PLAY_OUTLINE(\"ion-ios-play-outline\", '\\uf487'),\n    ION_IOS_PLUS(\"ion-ios-plus\", '\\uf48b'),\n    ION_IOS_PLUS_EMPTY(\"ion-ios-plus-empty\", '\\uf489'),\n    ION_IOS_PLUS_OUTLINE(\"ion-ios-plus-outline\", '\\uf48a'),\n    ION_IOS_PRICETAG(\"ion-ios-pricetag\", '\\uf48d'),\n    ION_IOS_PRICETAGS(\"ion-ios-pricetags\", '\\uf48f'),\n    ION_IOS_PRICETAGS_OUTLINE(\"ion-ios-pricetags-outline\", '\\uf48e'),\n    ION_IOS_PRICETAG_OUTLINE(\"ion-ios-pricetag-outline\", '\\uf48c'),\n    ION_IOS_PRINTER(\"ion-ios-printer\", '\\uf491'),\n    ION_IOS_PRINTER_OUTLINE(\"ion-ios-printer-outline\", '\\uf490'),\n    ION_IOS_PULSE(\"ion-ios-pulse\", '\\uf493'),\n    ION_IOS_PULSE_STRONG(\"ion-ios-pulse-strong\", '\\uf492'),\n    ION_IOS_RAINY(\"ion-ios-rainy\", '\\uf495'),\n    ION_IOS_RAINY_OUTLINE(\"ion-ios-rainy-outline\", '\\uf494'),\n    ION_IOS_RECORDING(\"ion-ios-recording\", '\\uf497'),\n    ION_IOS_RECORDING_OUTLINE(\"ion-ios-recording-outline\", '\\uf496'),\n    ION_IOS_REDO(\"ion-ios-redo\", '\\uf499'),\n    ION_IOS_REDO_OUTLINE(\"ion-ios-redo-outline\", '\\uf498'),\n    ION_IOS_REFRESH(\"ion-ios-refresh\", '\\uf49c'),\n    ION_IOS_REFRESH_EMPTY(\"ion-ios-refresh-empty\", '\\uf49a'),\n    ION_IOS_REFRESH_OUTLINE(\"ion-ios-refresh-outline\", '\\uf49b'),\n    ION_IOS_RELOAD(\"ion-ios-reload\", '\\uf49d'),\n    ION_IOS_REVERSE_CAMERA(\"ion-ios-reverse-camera\", '\\uf49f'),\n    ION_IOS_REVERSE_CAMERA_OUTLINE(\"ion-ios-reverse-camera-outline\", '\\uf49e'),\n    ION_IOS_REWIND(\"ion-ios-rewind\", '\\uf4a1'),\n    ION_IOS_REWIND_OUTLINE(\"ion-ios-rewind-outline\", '\\uf4a0'),\n    ION_IOS_ROSE(\"ion-ios-rose\", '\\uf4a3'),\n    ION_IOS_ROSE_OUTLINE(\"ion-ios-rose-outline\", '\\uf4a2'),\n    ION_IOS_SEARCH(\"ion-ios-search\", '\\uf4a5'),\n    ION_IOS_SEARCH_STRONG(\"ion-ios-search-strong\", '\\uf4a4'),\n    ION_IOS_SETTINGS(\"ion-ios-settings\", '\\uf4a7'),\n    ION_IOS_SETTINGS_STRONG(\"ion-ios-settings-strong\", '\\uf4a6'),\n    ION_IOS_SHUFFLE(\"ion-ios-shuffle\", '\\uf4a9'),\n    ION_IOS_SHUFFLE_STRONG(\"ion-ios-shuffle-strong\", '\\uf4a8'),\n    ION_IOS_SKIPBACKWARD(\"ion-ios-skipbackward\", '\\uf4ab'),\n    ION_IOS_SKIPBACKWARD_OUTLINE(\"ion-ios-skipbackward-outline\", '\\uf4aa'),\n    ION_IOS_SKIPFORWARD(\"ion-ios-skipforward\", '\\uf4ad'),\n    ION_IOS_SKIPFORWARD_OUTLINE(\"ion-ios-skipforward-outline\", '\\uf4ac'),\n    ION_IOS_SNOWY(\"ion-ios-snowy\", '\\uf4ae'),\n    ION_IOS_SPEEDOMETER(\"ion-ios-speedometer\", '\\uf4b0'),\n    ION_IOS_SPEEDOMETER_OUTLINE(\"ion-ios-speedometer-outline\", '\\uf4af'),\n    ION_IOS_STAR(\"ion-ios-star\", '\\uf4b3'),\n    ION_IOS_STAR_HALF(\"ion-ios-star-half\", '\\uf4b1'),\n    ION_IOS_STAR_OUTLINE(\"ion-ios-star-outline\", '\\uf4b2'),\n    ION_IOS_STOPWATCH(\"ion-ios-stopwatch\", '\\uf4b5'),\n    ION_IOS_STOPWATCH_OUTLINE(\"ion-ios-stopwatch-outline\", '\\uf4b4'),\n    ION_IOS_SUNNY(\"ion-ios-sunny\", '\\uf4b7'),\n    ION_IOS_SUNNY_OUTLINE(\"ion-ios-sunny-outline\", '\\uf4b6'),\n    ION_IOS_TELEPHONE(\"ion-ios-telephone\", '\\uf4b9'),\n    ION_IOS_TELEPHONE_OUTLINE(\"ion-ios-telephone-outline\", '\\uf4b8'),\n    ION_IOS_TENNISBALL(\"ion-ios-tennisball\", '\\uf4bb'),\n    ION_IOS_TENNISBALL_OUTLINE(\"ion-ios-tennisball-outline\", '\\uf4ba'),\n    ION_IOS_THUNDERSTORM(\"ion-ios-thunderstorm\", '\\uf4bd'),\n    ION_IOS_THUNDERSTORM_OUTLINE(\"ion-ios-thunderstorm-outline\", '\\uf4bc'),\n    ION_IOS_TIME(\"ion-ios-time\", '\\uf4bf'),\n    ION_IOS_TIMER(\"ion-ios-timer\", '\\uf4c1'),\n    ION_IOS_TIMER_OUTLINE(\"ion-ios-timer-outline\", '\\uf4c0'),\n    ION_IOS_TIME_OUTLINE(\"ion-ios-time-outline\", '\\uf4be'),\n    ION_IOS_TOGGLE(\"ion-ios-toggle\", '\\uf4c3'),\n    ION_IOS_TOGGLE_OUTLINE(\"ion-ios-toggle-outline\", '\\uf4c2'),\n    ION_IOS_TRASH(\"ion-ios-trash\", '\\uf4c5'),\n    ION_IOS_TRASH_OUTLINE(\"ion-ios-trash-outline\", '\\uf4c4'),\n    ION_IOS_UNDO(\"ion-ios-undo\", '\\uf4c7'),\n    ION_IOS_UNDO_OUTLINE(\"ion-ios-undo-outline\", '\\uf4c6'),\n    ION_IOS_UNLOCKED(\"ion-ios-unlocked\", '\\uf4c9'),\n    ION_IOS_UNLOCKED_OUTLINE(\"ion-ios-unlocked-outline\", '\\uf4c8'),\n    ION_IOS_UPLOAD(\"ion-ios-upload\", '\\uf4cb'),\n    ION_IOS_UPLOAD_OUTLINE(\"ion-ios-upload-outline\", '\\uf4ca'),\n    ION_IOS_VIDEOCAM(\"ion-ios-videocam\", '\\uf4cd'),\n    ION_IOS_VIDEOCAM_OUTLINE(\"ion-ios-videocam-outline\", '\\uf4cc'),\n    ION_IOS_VOLUME_HIGH(\"ion-ios-volume-high\", '\\uf4ce'),\n    ION_IOS_VOLUME_LOW(\"ion-ios-volume-low\", '\\uf4cf'),\n    ION_IOS_WINEGLASS(\"ion-ios-wineglass\", '\\uf4d1'),\n    ION_IOS_WINEGLASS_OUTLINE(\"ion-ios-wineglass-outline\", '\\uf4d0'),\n    ION_IOS_WORLD(\"ion-ios-world\", '\\uf4d3'),\n    ION_IOS_WORLD_OUTLINE(\"ion-ios-world-outline\", '\\uf4d2'),\n    ION_IPAD(\"ion-ipad\", '\\uf1f9'),\n    ION_IPHONE(\"ion-iphone\", '\\uf1fa'),\n    ION_IPOD(\"ion-ipod\", '\\uf1fb'),\n    ION_JET(\"ion-jet\", '\\uf295'),\n    ION_KEY(\"ion-key\", '\\uf296'),\n    ION_KNIFE(\"ion-knife\", '\\uf297'),\n    ION_LAPTOP(\"ion-laptop\", '\\uf1fc'),\n    ION_LEAF(\"ion-leaf\", '\\uf1fd'),\n    ION_LEVELS(\"ion-levels\", '\\uf298'),\n    ION_LIGHTBULB(\"ion-lightbulb\", '\\uf299'),\n    ION_LINK(\"ion-link\", '\\uf1fe'),\n    ION_LOAD_A(\"ion-load-a\", '\\uf29a'),\n    ION_LOAD_B(\"ion-load-b\", '\\uf29b'),\n    ION_LOAD_C(\"ion-load-c\", '\\uf29c'),\n    ION_LOAD_D(\"ion-load-d\", '\\uf29d'),\n    ION_LOCATION(\"ion-location\", '\\uf1ff'),\n    ION_LOCKED(\"ion-locked\", '\\uf200'),\n    ION_LOCK_COMBINATION(\"ion-lock-combination\", '\\uf4d4'),\n    ION_LOG_IN(\"ion-log-in\", '\\uf29e'),\n    ION_LOG_OUT(\"ion-log-out\", '\\uf29f'),\n    ION_LOOP(\"ion-loop\", '\\uf201'),\n    ION_MAGNET(\"ion-magnet\", '\\uf2a0'),\n    ION_MALE(\"ion-male\", '\\uf2a1'),\n    ION_MAN(\"ion-man\", '\\uf202'),\n    ION_MAP(\"ion-map\", '\\uf203'),\n    ION_MEDKIT(\"ion-medkit\", '\\uf2a2'),\n    ION_MERGE(\"ion-merge\", '\\uf33f'),\n    ION_MIC_A(\"ion-mic-a\", '\\uf204'),\n    ION_MIC_B(\"ion-mic-b\", '\\uf205'),\n    ION_MIC_C(\"ion-mic-c\", '\\uf206'),\n    ION_MINUS(\"ion-minus\", '\\uf209'),\n    ION_MINUS_CIRCLED(\"ion-minus-circled\", '\\uf207'),\n    ION_MINUS_ROUND(\"ion-minus-round\", '\\uf208'),\n    ION_MODEL_S(\"ion-model-s\", '\\uf2c1'),\n    ION_MONITOR(\"ion-monitor\", '\\uf20a'),\n    ION_MORE(\"ion-more\", '\\uf20b'),\n    ION_MOUSE(\"ion-mouse\", '\\uf340'),\n    ION_MUSIC_NOTE(\"ion-music-note\", '\\uf20c'),\n    ION_NAVICON(\"ion-navicon\", '\\uf20e'),\n    ION_NAVICON_ROUND(\"ion-navicon-round\", '\\uf20d'),\n    ION_NAVIGATE(\"ion-navigate\", '\\uf2a3'),\n    ION_NETWORK(\"ion-network\", '\\uf341'),\n    ION_NO_SMOKING(\"ion-no-smoking\", '\\uf2c2'),\n    ION_NUCLEAR(\"ion-nuclear\", '\\uf2a4'),\n    ION_OUTLET(\"ion-outlet\", '\\uf342'),\n    ION_PAINTBRUSH(\"ion-paintbrush\", '\\uf4d5'),\n    ION_PAINTBUCKET(\"ion-paintbucket\", '\\uf4d6'),\n    ION_PAPERCLIP(\"ion-paperclip\", '\\uf20f'),\n    ION_PAPER_AIRPLANE(\"ion-paper-airplane\", '\\uf2c3'),\n    ION_PAUSE(\"ion-pause\", '\\uf210'),\n    ION_PERSON(\"ion-person\", '\\uf213'),\n    ION_PERSON_ADD(\"ion-person-add\", '\\uf211'),\n    ION_PERSON_STALKER(\"ion-person-stalker\", '\\uf212'),\n    ION_PIE_GRAPH(\"ion-pie-graph\", '\\uf2a5'),\n    ION_PIN(\"ion-pin\", '\\uf2a6'),\n    ION_PINPOINT(\"ion-pinpoint\", '\\uf2a7'),\n    ION_PIZZA(\"ion-pizza\", '\\uf2a8'),\n    ION_PLANE(\"ion-plane\", '\\uf214'),\n    ION_PLANET(\"ion-planet\", '\\uf343'),\n    ION_PLAY(\"ion-play\", '\\uf215'),\n    ION_PLAYSTATION(\"ion-playstation\", '\\uf30a'),\n    ION_PLUS(\"ion-plus\", '\\uf218'),\n    ION_PLUS_CIRCLED(\"ion-plus-circled\", '\\uf216'),\n    ION_PLUS_ROUND(\"ion-plus-round\", '\\uf217'),\n    ION_PODIUM(\"ion-podium\", '\\uf344'),\n    ION_POUND(\"ion-pound\", '\\uf219'),\n    ION_POWER(\"ion-power\", '\\uf2a9'),\n    ION_PRICETAG(\"ion-pricetag\", '\\uf2aa'),\n    ION_PRICETAGS(\"ion-pricetags\", '\\uf2ab'),\n    ION_PRINTER(\"ion-printer\", '\\uf21a'),\n    ION_PULL_REQUEST(\"ion-pull-request\", '\\uf345'),\n    ION_QR_SCANNER(\"ion-qr-scanner\", '\\uf346'),\n    ION_QUOTE(\"ion-quote\", '\\uf347'),\n    ION_RADIO_WAVES(\"ion-radio-waves\", '\\uf2ac'),\n    ION_RECORD(\"ion-record\", '\\uf21b'),\n    ION_REFRESH(\"ion-refresh\", '\\uf21c'),\n    ION_REPLY(\"ion-reply\", '\\uf21e'),\n    ION_REPLY_ALL(\"ion-reply-all\", '\\uf21d'),\n    ION_RIBBON_A(\"ion-ribbon-a\", '\\uf348'),\n    ION_RIBBON_B(\"ion-ribbon-b\", '\\uf349'),\n    ION_SAD(\"ion-sad\", '\\uf34a'),\n    ION_SAD_OUTLINE(\"ion-sad-outline\", '\\uf4d7'),\n    ION_SCISSORS(\"ion-scissors\", '\\uf34b'),\n    ION_SEARCH(\"ion-search\", '\\uf21f'),\n    ION_SETTINGS(\"ion-settings\", '\\uf2ad'),\n    ION_SHARE(\"ion-share\", '\\uf220'),\n    ION_SHUFFLE(\"ion-shuffle\", '\\uf221'),\n    ION_SKIP_BACKWARD(\"ion-skip-backward\", '\\uf222'),\n    ION_SKIP_FORWARD(\"ion-skip-forward\", '\\uf223'),\n    ION_SOCIAL_ANDROID(\"ion-social-android\", '\\uf225'),\n    ION_SOCIAL_ANDROID_OUTLINE(\"ion-social-android-outline\", '\\uf224'),\n    ION_SOCIAL_ANGULAR(\"ion-social-angular\", '\\uf4d9'),\n    ION_SOCIAL_ANGULAR_OUTLINE(\"ion-social-angular-outline\", '\\uf4d8'),\n    ION_SOCIAL_APPLE(\"ion-social-apple\", '\\uf227'),\n    ION_SOCIAL_APPLE_OUTLINE(\"ion-social-apple-outline\", '\\uf226'),\n    ION_SOCIAL_BITCOIN(\"ion-social-bitcoin\", '\\uf2af'),\n    ION_SOCIAL_BITCOIN_OUTLINE(\"ion-social-bitcoin-outline\", '\\uf2ae'),\n    ION_SOCIAL_BUFFER(\"ion-social-buffer\", '\\uf229'),\n    ION_SOCIAL_BUFFER_OUTLINE(\"ion-social-buffer-outline\", '\\uf228'),\n    ION_SOCIAL_CHROME(\"ion-social-chrome\", '\\uf4db'),\n    ION_SOCIAL_CHROME_OUTLINE(\"ion-social-chrome-outline\", '\\uf4da'),\n    ION_SOCIAL_CODEPEN(\"ion-social-codepen\", '\\uf4dd'),\n    ION_SOCIAL_CODEPEN_OUTLINE(\"ion-social-codepen-outline\", '\\uf4dc'),\n    ION_SOCIAL_CSS3(\"ion-social-css3\", '\\uf4df'),\n    ION_SOCIAL_CSS3_OUTLINE(\"ion-social-css3-outline\", '\\uf4de'),\n    ION_SOCIAL_DESIGNERNEWS(\"ion-social-designernews\", '\\uf22b'),\n    ION_SOCIAL_DESIGNERNEWS_OUTLINE(\"ion-social-designernews-outline\", '\\uf22a'),\n    ION_SOCIAL_DRIBBBLE(\"ion-social-dribbble\", '\\uf22d'),\n    ION_SOCIAL_DRIBBBLE_OUTLINE(\"ion-social-dribbble-outline\", '\\uf22c'),\n    ION_SOCIAL_DROPBOX(\"ion-social-dropbox\", '\\uf22f'),\n    ION_SOCIAL_DROPBOX_OUTLINE(\"ion-social-dropbox-outline\", '\\uf22e'),\n    ION_SOCIAL_EURO(\"ion-social-euro\", '\\uf4e1'),\n    ION_SOCIAL_EURO_OUTLINE(\"ion-social-euro-outline\", '\\uf4e0'),\n    ION_SOCIAL_FACEBOOK(\"ion-social-facebook\", '\\uf231'),\n    ION_SOCIAL_FACEBOOK_OUTLINE(\"ion-social-facebook-outline\", '\\uf230'),\n    ION_SOCIAL_FOURSQUARE(\"ion-social-foursquare\", '\\uf34d'),\n    ION_SOCIAL_FOURSQUARE_OUTLINE(\"ion-social-foursquare-outline\", '\\uf34c'),\n    ION_SOCIAL_FREEBSD_DEVIL(\"ion-social-freebsd-devil\", '\\uf2c4'),\n    ION_SOCIAL_GITHUB(\"ion-social-github\", '\\uf233'),\n    ION_SOCIAL_GITHUB_OUTLINE(\"ion-social-github-outline\", '\\uf232'),\n    ION_SOCIAL_GOOGLE(\"ion-social-google\", '\\uf34f'),\n    ION_SOCIAL_GOOGLEPLUS(\"ion-social-googleplus\", '\\uf235'),\n    ION_SOCIAL_GOOGLEPLUS_OUTLINE(\"ion-social-googleplus-outline\", '\\uf234'),\n    ION_SOCIAL_GOOGLE_OUTLINE(\"ion-social-google-outline\", '\\uf34e'),\n    ION_SOCIAL_HACKERNEWS(\"ion-social-hackernews\", '\\uf237'),\n    ION_SOCIAL_HACKERNEWS_OUTLINE(\"ion-social-hackernews-outline\", '\\uf236'),\n    ION_SOCIAL_HTML5(\"ion-social-html5\", '\\uf4e3'),\n    ION_SOCIAL_HTML5_OUTLINE(\"ion-social-html5-outline\", '\\uf4e2'),\n    ION_SOCIAL_INSTAGRAM(\"ion-social-instagram\", '\\uf351'),\n    ION_SOCIAL_INSTAGRAM_OUTLINE(\"ion-social-instagram-outline\", '\\uf350'),\n    ION_SOCIAL_JAVASCRIPT(\"ion-social-javascript\", '\\uf4e5'),\n    ION_SOCIAL_JAVASCRIPT_OUTLINE(\"ion-social-javascript-outline\", '\\uf4e4'),\n    ION_SOCIAL_LINKEDIN(\"ion-social-linkedin\", '\\uf239'),\n    ION_SOCIAL_LINKEDIN_OUTLINE(\"ion-social-linkedin-outline\", '\\uf238'),\n    ION_SOCIAL_MARKDOWN(\"ion-social-markdown\", '\\uf4e6'),\n    ION_SOCIAL_NODEJS(\"ion-social-nodejs\", '\\uf4e7'),\n    ION_SOCIAL_OCTOCAT(\"ion-social-octocat\", '\\uf4e8'),\n    ION_SOCIAL_PINTEREST(\"ion-social-pinterest\", '\\uf2b1'),\n    ION_SOCIAL_PINTEREST_OUTLINE(\"ion-social-pinterest-outline\", '\\uf2b0'),\n    ION_SOCIAL_PYTHON(\"ion-social-python\", '\\uf4e9'),\n    ION_SOCIAL_REDDIT(\"ion-social-reddit\", '\\uf23b'),\n    ION_SOCIAL_REDDIT_OUTLINE(\"ion-social-reddit-outline\", '\\uf23a'),\n    ION_SOCIAL_RSS(\"ion-social-rss\", '\\uf23d'),\n    ION_SOCIAL_RSS_OUTLINE(\"ion-social-rss-outline\", '\\uf23c'),\n    ION_SOCIAL_SASS(\"ion-social-sass\", '\\uf4ea'),\n    ION_SOCIAL_SKYPE(\"ion-social-skype\", '\\uf23f'),\n    ION_SOCIAL_SKYPE_OUTLINE(\"ion-social-skype-outline\", '\\uf23e'),\n    ION_SOCIAL_SNAPCHAT(\"ion-social-snapchat\", '\\uf4ec'),\n    ION_SOCIAL_SNAPCHAT_OUTLINE(\"ion-social-snapchat-outline\", '\\uf4eb'),\n    ION_SOCIAL_TUMBLR(\"ion-social-tumblr\", '\\uf241'),\n    ION_SOCIAL_TUMBLR_OUTLINE(\"ion-social-tumblr-outline\", '\\uf240'),\n    ION_SOCIAL_TUX(\"ion-social-tux\", '\\uf2c5'),\n    ION_SOCIAL_TWITCH(\"ion-social-twitch\", '\\uf4ee'),\n    ION_SOCIAL_TWITCH_OUTLINE(\"ion-social-twitch-outline\", '\\uf4ed'),\n    ION_SOCIAL_TWITTER(\"ion-social-twitter\", '\\uf243'),\n    ION_SOCIAL_TWITTER_OUTLINE(\"ion-social-twitter-outline\", '\\uf242'),\n    ION_SOCIAL_USD(\"ion-social-usd\", '\\uf353'),\n    ION_SOCIAL_USD_OUTLINE(\"ion-social-usd-outline\", '\\uf352'),\n    ION_SOCIAL_VIMEO(\"ion-social-vimeo\", '\\uf245'),\n    ION_SOCIAL_VIMEO_OUTLINE(\"ion-social-vimeo-outline\", '\\uf244'),\n    ION_SOCIAL_WHATSAPP(\"ion-social-whatsapp\", '\\uf4f0'),\n    ION_SOCIAL_WHATSAPP_OUTLINE(\"ion-social-whatsapp-outline\", '\\uf4ef'),\n    ION_SOCIAL_WINDOWS(\"ion-social-windows\", '\\uf247'),\n    ION_SOCIAL_WINDOWS_OUTLINE(\"ion-social-windows-outline\", '\\uf246'),\n    ION_SOCIAL_WORDPRESS(\"ion-social-wordpress\", '\\uf249'),\n    ION_SOCIAL_WORDPRESS_OUTLINE(\"ion-social-wordpress-outline\", '\\uf248'),\n    ION_SOCIAL_YAHOO(\"ion-social-yahoo\", '\\uf24b'),\n    ION_SOCIAL_YAHOO_OUTLINE(\"ion-social-yahoo-outline\", '\\uf24a'),\n    ION_SOCIAL_YEN(\"ion-social-yen\", '\\uf4f2'),\n    ION_SOCIAL_YEN_OUTLINE(\"ion-social-yen-outline\", '\\uf4f1'),\n    ION_SOCIAL_YOUTUBE(\"ion-social-youtube\", '\\uf24d'),\n    ION_SOCIAL_YOUTUBE_OUTLINE(\"ion-social-youtube-outline\", '\\uf24c'),\n    ION_SOUP_CAN(\"ion-soup-can\", '\\uf4f4'),\n    ION_SOUP_CAN_OUTLINE(\"ion-soup-can-outline\", '\\uf4f3'),\n    ION_SPEAKERPHONE(\"ion-speakerphone\", '\\uf2b2'),\n    ION_SPEEDOMETER(\"ion-speedometer\", '\\uf2b3'),\n    ION_SPOON(\"ion-spoon\", '\\uf2b4'),\n    ION_STAR(\"ion-star\", '\\uf24e'),\n    ION_STATS_BARS(\"ion-stats-bars\", '\\uf2b5'),\n    ION_STEAM(\"ion-steam\", '\\uf30b'),\n    ION_STOP(\"ion-stop\", '\\uf24f'),\n    ION_THERMOMETER(\"ion-thermometer\", '\\uf2b6'),\n    ION_THUMBSDOWN(\"ion-thumbsdown\", '\\uf250'),\n    ION_THUMBSUP(\"ion-thumbsup\", '\\uf251'),\n    ION_TOGGLE(\"ion-toggle\", '\\uf355'),\n    ION_TOGGLE_FILLED(\"ion-toggle-filled\", '\\uf354'),\n    ION_TRANSGENDER(\"ion-transgender\", '\\uf4f5'),\n    ION_TRASH_A(\"ion-trash-a\", '\\uf252'),\n    ION_TRASH_B(\"ion-trash-b\", '\\uf253'),\n    ION_TROPHY(\"ion-trophy\", '\\uf356'),\n    ION_TSHIRT(\"ion-tshirt\", '\\uf4f7'),\n    ION_TSHIRT_OUTLINE(\"ion-tshirt-outline\", '\\uf4f6'),\n    ION_UMBRELLA(\"ion-umbrella\", '\\uf2b7'),\n    ION_UNIVERSITY(\"ion-university\", '\\uf357'),\n    ION_UNLOCKED(\"ion-unlocked\", '\\uf254'),\n    ION_UPLOAD(\"ion-upload\", '\\uf255'),\n    ION_USB(\"ion-usb\", '\\uf2b8'),\n    ION_VIDEOCAMERA(\"ion-videocamera\", '\\uf256'),\n    ION_VOLUME_HIGH(\"ion-volume-high\", '\\uf257'),\n    ION_VOLUME_LOW(\"ion-volume-low\", '\\uf258'),\n    ION_VOLUME_MEDIUM(\"ion-volume-medium\", '\\uf259'),\n    ION_VOLUME_MUTE(\"ion-volume-mute\", '\\uf25a'),\n    ION_WAND(\"ion-wand\", '\\uf358'),\n    ION_WATERDROP(\"ion-waterdrop\", '\\uf25b'),\n    ION_WIFI(\"ion-wifi\", '\\uf25c'),\n    ION_WINEGLASS(\"ion-wineglass\", '\\uf2b9'),\n    ION_WOMAN(\"ion-woman\", '\\uf25d'),\n    ION_WRENCH(\"ion-wrench\", '\\uf2ba'),\n    ION_XBOX(\"ion-xbox\", '\\uf30c');\n\n    public static Ionicons findByDescription(String description) {\n        for (Ionicons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Ionicons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons-pack/src/main/java/org/kordamp/ikonli/ionicons/IoniconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ionicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class IoniconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/ionicons/2.0.1/fonts/ionicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"ion-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Ionicons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Ionicons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons-pack/src/main/java/org/kordamp/ikonli/ionicons/IoniconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ionicons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class IoniconsIkonProvider implements IkonProvider<Ionicons> {\n    @Override\n    public Class<Ionicons> getIkon() {\n        return Ionicons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons-pack/src/main/resources/META-INF/resources/ionicons/2.0.1/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2014 Drifty (http://drifty.com/)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "icon-packs/ikonli-ionicons-pack/src/main/resources/META-INF/resources/ionicons/2.0.1/css/ionicons.css",
    "content": "@charset \"UTF-8\";\n/*!\n  Ionicons, v2.0.0\n  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/\n  https://twitter.com/benjsperry  https://twitter.com/ionicframework\n  MIT License: https://github.com/driftyco/ionicons\n\n  Android-style icons originally built by Google’s\n  Material Design Icons: https://github.com/google/material-design-icons\n  used under CC BY http://creativecommons.org/licenses/by/4.0/\n  Modified icons to fit ionicon’s grid from original.\n*/\n@font-face {\n    font-family: \"Ionicons\";\n    font-weight: normal;\n    font-style: normal;\n    src: url(\"../fonts/ionicons.eot?v=2.0.0\");\n    src: url(\"../fonts/ionicons.eot?v=2.0.0#iefix\") format(\"embedded-opentype\"),\n    url(\"../fonts/ionicons.ttf?v=2.0.0\") format(\"truetype\"),\n    url(\"../fonts/ionicons.woff?v=2.0.0\") format(\"woff\"),\n    url(\"../fonts/ionicons.svg?v=2.0.0#Ionicons\") format(\"svg\");\n}\n\n.ion:before {\n    display: inline-block;\n    font-family: \"Ionicons\";\n    speak: none;\n    font-style: normal;\n    font-weight: normal;\n    font-variant: normal;\n    text-transform: none;\n    text-rendering: auto;\n    line-height: 1;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n}\n\n.ion-alert:before {\n    content: \"\\f101\";\n}\n\n.ion-alert-circled:before {\n    content: \"\\f100\";\n}\n\n.ion-android-add:before {\n    content: \"\\f2c7\";\n}\n\n.ion-android-add-circle:before {\n    content: \"\\f359\";\n}\n\n.ion-android-alarm-clock:before {\n    content: \"\\f35a\";\n}\n\n.ion-android-alert:before {\n    content: \"\\f35b\";\n}\n\n.ion-android-apps:before {\n    content: \"\\f35c\";\n}\n\n.ion-android-archive:before {\n    content: \"\\f2c9\";\n}\n\n.ion-android-arrow-back:before {\n    content: \"\\f2ca\";\n}\n\n.ion-android-arrow-down:before {\n    content: \"\\f35d\";\n}\n\n.ion-android-arrow-dropdown:before {\n    content: \"\\f35f\";\n}\n\n.ion-android-arrow-dropdown-circle:before {\n    content: \"\\f35e\";\n}\n\n.ion-android-arrow-dropleft:before {\n    content: \"\\f361\";\n}\n\n.ion-android-arrow-dropleft-circle:before {\n    content: \"\\f360\";\n}\n\n.ion-android-arrow-dropright:before {\n    content: \"\\f363\";\n}\n\n.ion-android-arrow-dropright-circle:before {\n    content: \"\\f362\";\n}\n\n.ion-android-arrow-dropup:before {\n    content: \"\\f365\";\n}\n\n.ion-android-arrow-dropup-circle:before {\n    content: \"\\f364\";\n}\n\n.ion-android-arrow-forward:before {\n    content: \"\\f30f\";\n}\n\n.ion-android-arrow-up:before {\n    content: \"\\f366\";\n}\n\n.ion-android-attach:before {\n    content: \"\\f367\";\n}\n\n.ion-android-bar:before {\n    content: \"\\f368\";\n}\n\n.ion-android-bicycle:before {\n    content: \"\\f369\";\n}\n\n.ion-android-boat:before {\n    content: \"\\f36a\";\n}\n\n.ion-android-bookmark:before {\n    content: \"\\f36b\";\n}\n\n.ion-android-bulb:before {\n    content: \"\\f36c\";\n}\n\n.ion-android-bus:before {\n    content: \"\\f36d\";\n}\n\n.ion-android-calendar:before {\n    content: \"\\f2d1\";\n}\n\n.ion-android-call:before {\n    content: \"\\f2d2\";\n}\n\n.ion-android-camera:before {\n    content: \"\\f2d3\";\n}\n\n.ion-android-cancel:before {\n    content: \"\\f36e\";\n}\n\n.ion-android-car:before {\n    content: \"\\f36f\";\n}\n\n.ion-android-cart:before {\n    content: \"\\f370\";\n}\n\n.ion-android-chat:before {\n    content: \"\\f2d4\";\n}\n\n.ion-android-checkbox:before {\n    content: \"\\f374\";\n}\n\n.ion-android-checkbox-blank:before {\n    content: \"\\f371\";\n}\n\n.ion-android-checkbox-outline:before {\n    content: \"\\f373\";\n}\n\n.ion-android-checkbox-outline-blank:before {\n    content: \"\\f372\";\n}\n\n.ion-android-checkmark-circle:before {\n    content: \"\\f375\";\n}\n\n.ion-android-clipboard:before {\n    content: \"\\f376\";\n}\n\n.ion-android-close:before {\n    content: \"\\f2d7\";\n}\n\n.ion-android-cloud:before {\n    content: \"\\f37a\";\n}\n\n.ion-android-cloud-circle:before {\n    content: \"\\f377\";\n}\n\n.ion-android-cloud-done:before {\n    content: \"\\f378\";\n}\n\n.ion-android-cloud-outline:before {\n    content: \"\\f379\";\n}\n\n.ion-android-color-palette:before {\n    content: \"\\f37b\";\n}\n\n.ion-android-compass:before {\n    content: \"\\f37c\";\n}\n\n.ion-android-contact:before {\n    content: \"\\f2d8\";\n}\n\n.ion-android-contacts:before {\n    content: \"\\f2d9\";\n}\n\n.ion-android-contract:before {\n    content: \"\\f37d\";\n}\n\n.ion-android-create:before {\n    content: \"\\f37e\";\n}\n\n.ion-android-delete:before {\n    content: \"\\f37f\";\n}\n\n.ion-android-desktop:before {\n    content: \"\\f380\";\n}\n\n.ion-android-document:before {\n    content: \"\\f381\";\n}\n\n.ion-android-done:before {\n    content: \"\\f383\";\n}\n\n.ion-android-done-all:before {\n    content: \"\\f382\";\n}\n\n.ion-android-download:before {\n    content: \"\\f2dd\";\n}\n\n.ion-android-drafts:before {\n    content: \"\\f384\";\n}\n\n.ion-android-exit:before {\n    content: \"\\f385\";\n}\n\n.ion-android-expand:before {\n    content: \"\\f386\";\n}\n\n.ion-android-favorite:before {\n    content: \"\\f388\";\n}\n\n.ion-android-favorite-outline:before {\n    content: \"\\f387\";\n}\n\n.ion-android-film:before {\n    content: \"\\f389\";\n}\n\n.ion-android-folder:before {\n    content: \"\\f2e0\";\n}\n\n.ion-android-folder-open:before {\n    content: \"\\f38a\";\n}\n\n.ion-android-funnel:before {\n    content: \"\\f38b\";\n}\n\n.ion-android-globe:before {\n    content: \"\\f38c\";\n}\n\n.ion-android-hand:before {\n    content: \"\\f2e3\";\n}\n\n.ion-android-hangout:before {\n    content: \"\\f38d\";\n}\n\n.ion-android-happy:before {\n    content: \"\\f38e\";\n}\n\n.ion-android-home:before {\n    content: \"\\f38f\";\n}\n\n.ion-android-image:before {\n    content: \"\\f2e4\";\n}\n\n.ion-android-laptop:before {\n    content: \"\\f390\";\n}\n\n.ion-android-list:before {\n    content: \"\\f391\";\n}\n\n.ion-android-locate:before {\n    content: \"\\f2e9\";\n}\n\n.ion-android-lock:before {\n    content: \"\\f392\";\n}\n\n.ion-android-mail:before {\n    content: \"\\f2eb\";\n}\n\n.ion-android-map:before {\n    content: \"\\f393\";\n}\n\n.ion-android-menu:before {\n    content: \"\\f394\";\n}\n\n.ion-android-microphone:before {\n    content: \"\\f2ec\";\n}\n\n.ion-android-microphone-off:before {\n    content: \"\\f395\";\n}\n\n.ion-android-more-horizontal:before {\n    content: \"\\f396\";\n}\n\n.ion-android-more-vertical:before {\n    content: \"\\f397\";\n}\n\n.ion-android-navigate:before {\n    content: \"\\f398\";\n}\n\n.ion-android-notifications:before {\n    content: \"\\f39b\";\n}\n\n.ion-android-notifications-none:before {\n    content: \"\\f399\";\n}\n\n.ion-android-notifications-off:before {\n    content: \"\\f39a\";\n}\n\n.ion-android-open:before {\n    content: \"\\f39c\";\n}\n\n.ion-android-options:before {\n    content: \"\\f39d\";\n}\n\n.ion-android-people:before {\n    content: \"\\f39e\";\n}\n\n.ion-android-person:before {\n    content: \"\\f3a0\";\n}\n\n.ion-android-person-add:before {\n    content: \"\\f39f\";\n}\n\n.ion-android-phone-landscape:before {\n    content: \"\\f3a1\";\n}\n\n.ion-android-phone-portrait:before {\n    content: \"\\f3a2\";\n}\n\n.ion-android-pin:before {\n    content: \"\\f3a3\";\n}\n\n.ion-android-plane:before {\n    content: \"\\f3a4\";\n}\n\n.ion-android-playstore:before {\n    content: \"\\f2f0\";\n}\n\n.ion-android-print:before {\n    content: \"\\f3a5\";\n}\n\n.ion-android-radio-button-off:before {\n    content: \"\\f3a6\";\n}\n\n.ion-android-radio-button-on:before {\n    content: \"\\f3a7\";\n}\n\n.ion-android-refresh:before {\n    content: \"\\f3a8\";\n}\n\n.ion-android-remove:before {\n    content: \"\\f2f4\";\n}\n\n.ion-android-remove-circle:before {\n    content: \"\\f3a9\";\n}\n\n.ion-android-restaurant:before {\n    content: \"\\f3aa\";\n}\n\n.ion-android-sad:before {\n    content: \"\\f3ab\";\n}\n\n.ion-android-search:before {\n    content: \"\\f2f5\";\n}\n\n.ion-android-send:before {\n    content: \"\\f2f6\";\n}\n\n.ion-android-settings:before {\n    content: \"\\f2f7\";\n}\n\n.ion-android-share:before {\n    content: \"\\f2f8\";\n}\n\n.ion-android-share-alt:before {\n    content: \"\\f3ac\";\n}\n\n.ion-android-star:before {\n    content: \"\\f2fc\";\n}\n\n.ion-android-star-half:before {\n    content: \"\\f3ad\";\n}\n\n.ion-android-star-outline:before {\n    content: \"\\f3ae\";\n}\n\n.ion-android-stopwatch:before {\n    content: \"\\f2fd\";\n}\n\n.ion-android-subway:before {\n    content: \"\\f3af\";\n}\n\n.ion-android-sunny:before {\n    content: \"\\f3b0\";\n}\n\n.ion-android-sync:before {\n    content: \"\\f3b1\";\n}\n\n.ion-android-textsms:before {\n    content: \"\\f3b2\";\n}\n\n.ion-android-time:before {\n    content: \"\\f3b3\";\n}\n\n.ion-android-train:before {\n    content: \"\\f3b4\";\n}\n\n.ion-android-unlock:before {\n    content: \"\\f3b5\";\n}\n\n.ion-android-upload:before {\n    content: \"\\f3b6\";\n}\n\n.ion-android-volume-down:before {\n    content: \"\\f3b7\";\n}\n\n.ion-android-volume-mute:before {\n    content: \"\\f3b8\";\n}\n\n.ion-android-volume-off:before {\n    content: \"\\f3b9\";\n}\n\n.ion-android-volume-up:before {\n    content: \"\\f3ba\";\n}\n\n.ion-android-walk:before {\n    content: \"\\f3bb\";\n}\n\n.ion-android-warning:before {\n    content: \"\\f3bc\";\n}\n\n.ion-android-watch:before {\n    content: \"\\f3bd\";\n}\n\n.ion-android-wifi:before {\n    content: \"\\f305\";\n}\n\n.ion-aperture:before {\n    content: \"\\f313\";\n}\n\n.ion-archive:before {\n    content: \"\\f102\";\n}\n\n.ion-arrow-down-a:before {\n    content: \"\\f103\";\n}\n\n.ion-arrow-down-b:before {\n    content: \"\\f104\";\n}\n\n.ion-arrow-down-c:before {\n    content: \"\\f105\";\n}\n\n.ion-arrow-expand:before {\n    content: \"\\f25e\";\n}\n\n.ion-arrow-graph-down-left:before {\n    content: \"\\f25f\";\n}\n\n.ion-arrow-graph-down-right:before {\n    content: \"\\f260\";\n}\n\n.ion-arrow-graph-up-left:before {\n    content: \"\\f261\";\n}\n\n.ion-arrow-graph-up-right:before {\n    content: \"\\f262\";\n}\n\n.ion-arrow-left-a:before {\n    content: \"\\f106\";\n}\n\n.ion-arrow-left-b:before {\n    content: \"\\f107\";\n}\n\n.ion-arrow-left-c:before {\n    content: \"\\f108\";\n}\n\n.ion-arrow-move:before {\n    content: \"\\f263\";\n}\n\n.ion-arrow-resize:before {\n    content: \"\\f264\";\n}\n\n.ion-arrow-return-left:before {\n    content: \"\\f265\";\n}\n\n.ion-arrow-return-right:before {\n    content: \"\\f266\";\n}\n\n.ion-arrow-right-a:before {\n    content: \"\\f109\";\n}\n\n.ion-arrow-right-b:before {\n    content: \"\\f10a\";\n}\n\n.ion-arrow-right-c:before {\n    content: \"\\f10b\";\n}\n\n.ion-arrow-shrink:before {\n    content: \"\\f267\";\n}\n\n.ion-arrow-swap:before {\n    content: \"\\f268\";\n}\n\n.ion-arrow-up-a:before {\n    content: \"\\f10c\";\n}\n\n.ion-arrow-up-b:before {\n    content: \"\\f10d\";\n}\n\n.ion-arrow-up-c:before {\n    content: \"\\f10e\";\n}\n\n.ion-asterisk:before {\n    content: \"\\f314\";\n}\n\n.ion-at:before {\n    content: \"\\f10f\";\n}\n\n.ion-backspace:before {\n    content: \"\\f3bf\";\n}\n\n.ion-backspace-outline:before {\n    content: \"\\f3be\";\n}\n\n.ion-bag:before {\n    content: \"\\f110\";\n}\n\n.ion-battery-charging:before {\n    content: \"\\f111\";\n}\n\n.ion-battery-empty:before {\n    content: \"\\f112\";\n}\n\n.ion-battery-full:before {\n    content: \"\\f113\";\n}\n\n.ion-battery-half:before {\n    content: \"\\f114\";\n}\n\n.ion-battery-low:before {\n    content: \"\\f115\";\n}\n\n.ion-beaker:before {\n    content: \"\\f269\";\n}\n\n.ion-beer:before {\n    content: \"\\f26a\";\n}\n\n.ion-bluetooth:before {\n    content: \"\\f116\";\n}\n\n.ion-bonfire:before {\n    content: \"\\f315\";\n}\n\n.ion-bookmark:before {\n    content: \"\\f26b\";\n}\n\n.ion-bowtie:before {\n    content: \"\\f3c0\";\n}\n\n.ion-briefcase:before {\n    content: \"\\f26c\";\n}\n\n.ion-bug:before {\n    content: \"\\f2be\";\n}\n\n.ion-calculator:before {\n    content: \"\\f26d\";\n}\n\n.ion-calendar:before {\n    content: \"\\f117\";\n}\n\n.ion-camera:before {\n    content: \"\\f118\";\n}\n\n.ion-card:before {\n    content: \"\\f119\";\n}\n\n.ion-cash:before {\n    content: \"\\f316\";\n}\n\n.ion-chatbox:before {\n    content: \"\\f11b\";\n}\n\n.ion-chatbox-working:before {\n    content: \"\\f11a\";\n}\n\n.ion-chatboxes:before {\n    content: \"\\f11c\";\n}\n\n.ion-chatbubble:before {\n    content: \"\\f11e\";\n}\n\n.ion-chatbubble-working:before {\n    content: \"\\f11d\";\n}\n\n.ion-chatbubbles:before {\n    content: \"\\f11f\";\n}\n\n.ion-checkmark:before {\n    content: \"\\f122\";\n}\n\n.ion-checkmark-circled:before {\n    content: \"\\f120\";\n}\n\n.ion-checkmark-round:before {\n    content: \"\\f121\";\n}\n\n.ion-chevron-down:before {\n    content: \"\\f123\";\n}\n\n.ion-chevron-left:before {\n    content: \"\\f124\";\n}\n\n.ion-chevron-right:before {\n    content: \"\\f125\";\n}\n\n.ion-chevron-up:before {\n    content: \"\\f126\";\n}\n\n.ion-clipboard:before {\n    content: \"\\f127\";\n}\n\n.ion-clock:before {\n    content: \"\\f26e\";\n}\n\n.ion-close:before {\n    content: \"\\f12a\";\n}\n\n.ion-close-circled:before {\n    content: \"\\f128\";\n}\n\n.ion-close-round:before {\n    content: \"\\f129\";\n}\n\n.ion-closed-captioning:before {\n    content: \"\\f317\";\n}\n\n.ion-cloud:before {\n    content: \"\\f12b\";\n}\n\n.ion-code:before {\n    content: \"\\f271\";\n}\n\n.ion-code-download:before {\n    content: \"\\f26f\";\n}\n\n.ion-code-working:before {\n    content: \"\\f270\";\n}\n\n.ion-coffee:before {\n    content: \"\\f272\";\n}\n\n.ion-compass:before {\n    content: \"\\f273\";\n}\n\n.ion-compose:before {\n    content: \"\\f12c\";\n}\n\n.ion-connection-bars:before {\n    content: \"\\f274\";\n}\n\n.ion-contrast:before {\n    content: \"\\f275\";\n}\n\n.ion-crop:before {\n    content: \"\\f3c1\";\n}\n\n.ion-cube:before {\n    content: \"\\f318\";\n}\n\n.ion-disc:before {\n    content: \"\\f12d\";\n}\n\n.ion-document:before {\n    content: \"\\f12f\";\n}\n\n.ion-document-text:before {\n    content: \"\\f12e\";\n}\n\n.ion-drag:before {\n    content: \"\\f130\";\n}\n\n.ion-earth:before {\n    content: \"\\f276\";\n}\n\n.ion-easel:before {\n    content: \"\\f3c2\";\n}\n\n.ion-edit:before {\n    content: \"\\f2bf\";\n}\n\n.ion-egg:before {\n    content: \"\\f277\";\n}\n\n.ion-eject:before {\n    content: \"\\f131\";\n}\n\n.ion-email:before {\n    content: \"\\f132\";\n}\n\n.ion-email-unread:before {\n    content: \"\\f3c3\";\n}\n\n.ion-erlenmeyer-flask:before {\n    content: \"\\f3c5\";\n}\n\n.ion-erlenmeyer-flask-bubbles:before {\n    content: \"\\f3c4\";\n}\n\n.ion-eye:before {\n    content: \"\\f133\";\n}\n\n.ion-eye-disabled:before {\n    content: \"\\f306\";\n}\n\n.ion-female:before {\n    content: \"\\f278\";\n}\n\n.ion-filing:before {\n    content: \"\\f134\";\n}\n\n.ion-film-marker:before {\n    content: \"\\f135\";\n}\n\n.ion-fireball:before {\n    content: \"\\f319\";\n}\n\n.ion-flag:before {\n    content: \"\\f279\";\n}\n\n.ion-flame:before {\n    content: \"\\f31a\";\n}\n\n.ion-flash:before {\n    content: \"\\f137\";\n}\n\n.ion-flash-off:before {\n    content: \"\\f136\";\n}\n\n.ion-folder:before {\n    content: \"\\f139\";\n}\n\n.ion-fork:before {\n    content: \"\\f27a\";\n}\n\n.ion-fork-repo:before {\n    content: \"\\f2c0\";\n}\n\n.ion-forward:before {\n    content: \"\\f13a\";\n}\n\n.ion-funnel:before {\n    content: \"\\f31b\";\n}\n\n.ion-gear-a:before {\n    content: \"\\f13d\";\n}\n\n.ion-gear-b:before {\n    content: \"\\f13e\";\n}\n\n.ion-grid:before {\n    content: \"\\f13f\";\n}\n\n.ion-hammer:before {\n    content: \"\\f27b\";\n}\n\n.ion-happy:before {\n    content: \"\\f31c\";\n}\n\n.ion-happy-outline:before {\n    content: \"\\f3c6\";\n}\n\n.ion-headphone:before {\n    content: \"\\f140\";\n}\n\n.ion-heart:before {\n    content: \"\\f141\";\n}\n\n.ion-heart-broken:before {\n    content: \"\\f31d\";\n}\n\n.ion-help:before {\n    content: \"\\f143\";\n}\n\n.ion-help-buoy:before {\n    content: \"\\f27c\";\n}\n\n.ion-help-circled:before {\n    content: \"\\f142\";\n}\n\n.ion-home:before {\n    content: \"\\f144\";\n}\n\n.ion-icecream:before {\n    content: \"\\f27d\";\n}\n\n.ion-image:before {\n    content: \"\\f147\";\n}\n\n.ion-images:before {\n    content: \"\\f148\";\n}\n\n.ion-information:before {\n    content: \"\\f14a\";\n}\n\n.ion-information-circled:before {\n    content: \"\\f149\";\n}\n\n.ion-ionic:before {\n    content: \"\\f14b\";\n}\n\n.ion-ios-alarm:before {\n    content: \"\\f3c8\";\n}\n\n.ion-ios-alarm-outline:before {\n    content: \"\\f3c7\";\n}\n\n.ion-ios-albums:before {\n    content: \"\\f3ca\";\n}\n\n.ion-ios-albums-outline:before {\n    content: \"\\f3c9\";\n}\n\n.ion-ios-americanfootball:before {\n    content: \"\\f3cc\";\n}\n\n.ion-ios-americanfootball-outline:before {\n    content: \"\\f3cb\";\n}\n\n.ion-ios-analytics:before {\n    content: \"\\f3ce\";\n}\n\n.ion-ios-analytics-outline:before {\n    content: \"\\f3cd\";\n}\n\n.ion-ios-arrow-back:before {\n    content: \"\\f3cf\";\n}\n\n.ion-ios-arrow-down:before {\n    content: \"\\f3d0\";\n}\n\n.ion-ios-arrow-forward:before {\n    content: \"\\f3d1\";\n}\n\n.ion-ios-arrow-left:before {\n    content: \"\\f3d2\";\n}\n\n.ion-ios-arrow-right:before {\n    content: \"\\f3d3\";\n}\n\n.ion-ios-arrow-thin-down:before {\n    content: \"\\f3d4\";\n}\n\n.ion-ios-arrow-thin-left:before {\n    content: \"\\f3d5\";\n}\n\n.ion-ios-arrow-thin-right:before {\n    content: \"\\f3d6\";\n}\n\n.ion-ios-arrow-thin-up:before {\n    content: \"\\f3d7\";\n}\n\n.ion-ios-arrow-up:before {\n    content: \"\\f3d8\";\n}\n\n.ion-ios-at:before {\n    content: \"\\f3da\";\n}\n\n.ion-ios-at-outline:before {\n    content: \"\\f3d9\";\n}\n\n.ion-ios-barcode:before {\n    content: \"\\f3dc\";\n}\n\n.ion-ios-barcode-outline:before {\n    content: \"\\f3db\";\n}\n\n.ion-ios-baseball:before {\n    content: \"\\f3de\";\n}\n\n.ion-ios-baseball-outline:before {\n    content: \"\\f3dd\";\n}\n\n.ion-ios-basketball:before {\n    content: \"\\f3e0\";\n}\n\n.ion-ios-basketball-outline:before {\n    content: \"\\f3df\";\n}\n\n.ion-ios-bell:before {\n    content: \"\\f3e2\";\n}\n\n.ion-ios-bell-outline:before {\n    content: \"\\f3e1\";\n}\n\n.ion-ios-body:before {\n    content: \"\\f3e4\";\n}\n\n.ion-ios-body-outline:before {\n    content: \"\\f3e3\";\n}\n\n.ion-ios-bolt:before {\n    content: \"\\f3e6\";\n}\n\n.ion-ios-bolt-outline:before {\n    content: \"\\f3e5\";\n}\n\n.ion-ios-book:before {\n    content: \"\\f3e8\";\n}\n\n.ion-ios-book-outline:before {\n    content: \"\\f3e7\";\n}\n\n.ion-ios-bookmarks:before {\n    content: \"\\f3ea\";\n}\n\n.ion-ios-bookmarks-outline:before {\n    content: \"\\f3e9\";\n}\n\n.ion-ios-box:before {\n    content: \"\\f3ec\";\n}\n\n.ion-ios-box-outline:before {\n    content: \"\\f3eb\";\n}\n\n.ion-ios-briefcase:before {\n    content: \"\\f3ee\";\n}\n\n.ion-ios-briefcase-outline:before {\n    content: \"\\f3ed\";\n}\n\n.ion-ios-browsers:before {\n    content: \"\\f3f0\";\n}\n\n.ion-ios-browsers-outline:before {\n    content: \"\\f3ef\";\n}\n\n.ion-ios-calculator:before {\n    content: \"\\f3f2\";\n}\n\n.ion-ios-calculator-outline:before {\n    content: \"\\f3f1\";\n}\n\n.ion-ios-calendar:before {\n    content: \"\\f3f4\";\n}\n\n.ion-ios-calendar-outline:before {\n    content: \"\\f3f3\";\n}\n\n.ion-ios-camera:before {\n    content: \"\\f3f6\";\n}\n\n.ion-ios-camera-outline:before {\n    content: \"\\f3f5\";\n}\n\n.ion-ios-cart:before {\n    content: \"\\f3f8\";\n}\n\n.ion-ios-cart-outline:before {\n    content: \"\\f3f7\";\n}\n\n.ion-ios-chatboxes:before {\n    content: \"\\f3fa\";\n}\n\n.ion-ios-chatboxes-outline:before {\n    content: \"\\f3f9\";\n}\n\n.ion-ios-chatbubble:before {\n    content: \"\\f3fc\";\n}\n\n.ion-ios-chatbubble-outline:before {\n    content: \"\\f3fb\";\n}\n\n.ion-ios-checkmark:before {\n    content: \"\\f3ff\";\n}\n\n.ion-ios-checkmark-empty:before {\n    content: \"\\f3fd\";\n}\n\n.ion-ios-checkmark-outline:before {\n    content: \"\\f3fe\";\n}\n\n.ion-ios-circle-filled:before {\n    content: \"\\f400\";\n}\n\n.ion-ios-circle-outline:before {\n    content: \"\\f401\";\n}\n\n.ion-ios-clock:before {\n    content: \"\\f403\";\n}\n\n.ion-ios-clock-outline:before {\n    content: \"\\f402\";\n}\n\n.ion-ios-close:before {\n    content: \"\\f406\";\n}\n\n.ion-ios-close-empty:before {\n    content: \"\\f404\";\n}\n\n.ion-ios-close-outline:before {\n    content: \"\\f405\";\n}\n\n.ion-ios-cloud:before {\n    content: \"\\f40c\";\n}\n\n.ion-ios-cloud-download:before {\n    content: \"\\f408\";\n}\n\n.ion-ios-cloud-download-outline:before {\n    content: \"\\f407\";\n}\n\n.ion-ios-cloud-outline:before {\n    content: \"\\f409\";\n}\n\n.ion-ios-cloud-upload:before {\n    content: \"\\f40b\";\n}\n\n.ion-ios-cloud-upload-outline:before {\n    content: \"\\f40a\";\n}\n\n.ion-ios-cloudy:before {\n    content: \"\\f410\";\n}\n\n.ion-ios-cloudy-night:before {\n    content: \"\\f40e\";\n}\n\n.ion-ios-cloudy-night-outline:before {\n    content: \"\\f40d\";\n}\n\n.ion-ios-cloudy-outline:before {\n    content: \"\\f40f\";\n}\n\n.ion-ios-cog:before {\n    content: \"\\f412\";\n}\n\n.ion-ios-cog-outline:before {\n    content: \"\\f411\";\n}\n\n.ion-ios-color-filter:before {\n    content: \"\\f414\";\n}\n\n.ion-ios-color-filter-outline:before {\n    content: \"\\f413\";\n}\n\n.ion-ios-color-wand:before {\n    content: \"\\f416\";\n}\n\n.ion-ios-color-wand-outline:before {\n    content: \"\\f415\";\n}\n\n.ion-ios-compose:before {\n    content: \"\\f418\";\n}\n\n.ion-ios-compose-outline:before {\n    content: \"\\f417\";\n}\n\n.ion-ios-contact:before {\n    content: \"\\f41a\";\n}\n\n.ion-ios-contact-outline:before {\n    content: \"\\f419\";\n}\n\n.ion-ios-copy:before {\n    content: \"\\f41c\";\n}\n\n.ion-ios-copy-outline:before {\n    content: \"\\f41b\";\n}\n\n.ion-ios-crop:before {\n    content: \"\\f41e\";\n}\n\n.ion-ios-crop-strong:before {\n    content: \"\\f41d\";\n}\n\n.ion-ios-download:before {\n    content: \"\\f420\";\n}\n\n.ion-ios-download-outline:before {\n    content: \"\\f41f\";\n}\n\n.ion-ios-drag:before {\n    content: \"\\f421\";\n}\n\n.ion-ios-email:before {\n    content: \"\\f423\";\n}\n\n.ion-ios-email-outline:before {\n    content: \"\\f422\";\n}\n\n.ion-ios-eye:before {\n    content: \"\\f425\";\n}\n\n.ion-ios-eye-outline:before {\n    content: \"\\f424\";\n}\n\n.ion-ios-fastforward:before {\n    content: \"\\f427\";\n}\n\n.ion-ios-fastforward-outline:before {\n    content: \"\\f426\";\n}\n\n.ion-ios-filing:before {\n    content: \"\\f429\";\n}\n\n.ion-ios-filing-outline:before {\n    content: \"\\f428\";\n}\n\n.ion-ios-film:before {\n    content: \"\\f42b\";\n}\n\n.ion-ios-film-outline:before {\n    content: \"\\f42a\";\n}\n\n.ion-ios-flag:before {\n    content: \"\\f42d\";\n}\n\n.ion-ios-flag-outline:before {\n    content: \"\\f42c\";\n}\n\n.ion-ios-flame:before {\n    content: \"\\f42f\";\n}\n\n.ion-ios-flame-outline:before {\n    content: \"\\f42e\";\n}\n\n.ion-ios-flask:before {\n    content: \"\\f431\";\n}\n\n.ion-ios-flask-outline:before {\n    content: \"\\f430\";\n}\n\n.ion-ios-flower:before {\n    content: \"\\f433\";\n}\n\n.ion-ios-flower-outline:before {\n    content: \"\\f432\";\n}\n\n.ion-ios-folder:before {\n    content: \"\\f435\";\n}\n\n.ion-ios-folder-outline:before {\n    content: \"\\f434\";\n}\n\n.ion-ios-football:before {\n    content: \"\\f437\";\n}\n\n.ion-ios-football-outline:before {\n    content: \"\\f436\";\n}\n\n.ion-ios-game-controller-a:before {\n    content: \"\\f439\";\n}\n\n.ion-ios-game-controller-a-outline:before {\n    content: \"\\f438\";\n}\n\n.ion-ios-game-controller-b:before {\n    content: \"\\f43b\";\n}\n\n.ion-ios-game-controller-b-outline:before {\n    content: \"\\f43a\";\n}\n\n.ion-ios-gear:before {\n    content: \"\\f43d\";\n}\n\n.ion-ios-gear-outline:before {\n    content: \"\\f43c\";\n}\n\n.ion-ios-glasses:before {\n    content: \"\\f43f\";\n}\n\n.ion-ios-glasses-outline:before {\n    content: \"\\f43e\";\n}\n\n.ion-ios-grid-view:before {\n    content: \"\\f441\";\n}\n\n.ion-ios-grid-view-outline:before {\n    content: \"\\f440\";\n}\n\n.ion-ios-heart:before {\n    content: \"\\f443\";\n}\n\n.ion-ios-heart-outline:before {\n    content: \"\\f442\";\n}\n\n.ion-ios-help:before {\n    content: \"\\f446\";\n}\n\n.ion-ios-help-empty:before {\n    content: \"\\f444\";\n}\n\n.ion-ios-help-outline:before {\n    content: \"\\f445\";\n}\n\n.ion-ios-home:before {\n    content: \"\\f448\";\n}\n\n.ion-ios-home-outline:before {\n    content: \"\\f447\";\n}\n\n.ion-ios-infinite:before {\n    content: \"\\f44a\";\n}\n\n.ion-ios-infinite-outline:before {\n    content: \"\\f449\";\n}\n\n.ion-ios-information:before {\n    content: \"\\f44d\";\n}\n\n.ion-ios-information-empty:before {\n    content: \"\\f44b\";\n}\n\n.ion-ios-information-outline:before {\n    content: \"\\f44c\";\n}\n\n.ion-ios-ionic-outline:before {\n    content: \"\\f44e\";\n}\n\n.ion-ios-keypad:before {\n    content: \"\\f450\";\n}\n\n.ion-ios-keypad-outline:before {\n    content: \"\\f44f\";\n}\n\n.ion-ios-lightbulb:before {\n    content: \"\\f452\";\n}\n\n.ion-ios-lightbulb-outline:before {\n    content: \"\\f451\";\n}\n\n.ion-ios-list:before {\n    content: \"\\f454\";\n}\n\n.ion-ios-list-outline:before {\n    content: \"\\f453\";\n}\n\n.ion-ios-location:before {\n    content: \"\\f456\";\n}\n\n.ion-ios-location-outline:before {\n    content: \"\\f455\";\n}\n\n.ion-ios-locked:before {\n    content: \"\\f458\";\n}\n\n.ion-ios-locked-outline:before {\n    content: \"\\f457\";\n}\n\n.ion-ios-loop:before {\n    content: \"\\f45a\";\n}\n\n.ion-ios-loop-strong:before {\n    content: \"\\f459\";\n}\n\n.ion-ios-medical:before {\n    content: \"\\f45c\";\n}\n\n.ion-ios-medical-outline:before {\n    content: \"\\f45b\";\n}\n\n.ion-ios-medkit:before {\n    content: \"\\f45e\";\n}\n\n.ion-ios-medkit-outline:before {\n    content: \"\\f45d\";\n}\n\n.ion-ios-mic:before {\n    content: \"\\f461\";\n}\n\n.ion-ios-mic-off:before {\n    content: \"\\f45f\";\n}\n\n.ion-ios-mic-outline:before {\n    content: \"\\f460\";\n}\n\n.ion-ios-minus:before {\n    content: \"\\f464\";\n}\n\n.ion-ios-minus-empty:before {\n    content: \"\\f462\";\n}\n\n.ion-ios-minus-outline:before {\n    content: \"\\f463\";\n}\n\n.ion-ios-monitor:before {\n    content: \"\\f466\";\n}\n\n.ion-ios-monitor-outline:before {\n    content: \"\\f465\";\n}\n\n.ion-ios-moon:before {\n    content: \"\\f468\";\n}\n\n.ion-ios-moon-outline:before {\n    content: \"\\f467\";\n}\n\n.ion-ios-more:before {\n    content: \"\\f46a\";\n}\n\n.ion-ios-more-outline:before {\n    content: \"\\f469\";\n}\n\n.ion-ios-musical-note:before {\n    content: \"\\f46b\";\n}\n\n.ion-ios-musical-notes:before {\n    content: \"\\f46c\";\n}\n\n.ion-ios-navigate:before {\n    content: \"\\f46e\";\n}\n\n.ion-ios-navigate-outline:before {\n    content: \"\\f46d\";\n}\n\n.ion-ios-nutrition:before {\n    content: \"\\f470\";\n}\n\n.ion-ios-nutrition-outline:before {\n    content: \"\\f46f\";\n}\n\n.ion-ios-paper:before {\n    content: \"\\f472\";\n}\n\n.ion-ios-paper-outline:before {\n    content: \"\\f471\";\n}\n\n.ion-ios-paperplane:before {\n    content: \"\\f474\";\n}\n\n.ion-ios-paperplane-outline:before {\n    content: \"\\f473\";\n}\n\n.ion-ios-partlysunny:before {\n    content: \"\\f476\";\n}\n\n.ion-ios-partlysunny-outline:before {\n    content: \"\\f475\";\n}\n\n.ion-ios-pause:before {\n    content: \"\\f478\";\n}\n\n.ion-ios-pause-outline:before {\n    content: \"\\f477\";\n}\n\n.ion-ios-paw:before {\n    content: \"\\f47a\";\n}\n\n.ion-ios-paw-outline:before {\n    content: \"\\f479\";\n}\n\n.ion-ios-people:before {\n    content: \"\\f47c\";\n}\n\n.ion-ios-people-outline:before {\n    content: \"\\f47b\";\n}\n\n.ion-ios-person:before {\n    content: \"\\f47e\";\n}\n\n.ion-ios-person-outline:before {\n    content: \"\\f47d\";\n}\n\n.ion-ios-personadd:before {\n    content: \"\\f480\";\n}\n\n.ion-ios-personadd-outline:before {\n    content: \"\\f47f\";\n}\n\n.ion-ios-photos:before {\n    content: \"\\f482\";\n}\n\n.ion-ios-photos-outline:before {\n    content: \"\\f481\";\n}\n\n.ion-ios-pie:before {\n    content: \"\\f484\";\n}\n\n.ion-ios-pie-outline:before {\n    content: \"\\f483\";\n}\n\n.ion-ios-pint:before {\n    content: \"\\f486\";\n}\n\n.ion-ios-pint-outline:before {\n    content: \"\\f485\";\n}\n\n.ion-ios-play:before {\n    content: \"\\f488\";\n}\n\n.ion-ios-play-outline:before {\n    content: \"\\f487\";\n}\n\n.ion-ios-plus:before {\n    content: \"\\f48b\";\n}\n\n.ion-ios-plus-empty:before {\n    content: \"\\f489\";\n}\n\n.ion-ios-plus-outline:before {\n    content: \"\\f48a\";\n}\n\n.ion-ios-pricetag:before {\n    content: \"\\f48d\";\n}\n\n.ion-ios-pricetag-outline:before {\n    content: \"\\f48c\";\n}\n\n.ion-ios-pricetags:before {\n    content: \"\\f48f\";\n}\n\n.ion-ios-pricetags-outline:before {\n    content: \"\\f48e\";\n}\n\n.ion-ios-printer:before {\n    content: \"\\f491\";\n}\n\n.ion-ios-printer-outline:before {\n    content: \"\\f490\";\n}\n\n.ion-ios-pulse:before {\n    content: \"\\f493\";\n}\n\n.ion-ios-pulse-strong:before {\n    content: \"\\f492\";\n}\n\n.ion-ios-rainy:before {\n    content: \"\\f495\";\n}\n\n.ion-ios-rainy-outline:before {\n    content: \"\\f494\";\n}\n\n.ion-ios-recording:before {\n    content: \"\\f497\";\n}\n\n.ion-ios-recording-outline:before {\n    content: \"\\f496\";\n}\n\n.ion-ios-redo:before {\n    content: \"\\f499\";\n}\n\n.ion-ios-redo-outline:before {\n    content: \"\\f498\";\n}\n\n.ion-ios-refresh:before {\n    content: \"\\f49c\";\n}\n\n.ion-ios-refresh-empty:before {\n    content: \"\\f49a\";\n}\n\n.ion-ios-refresh-outline:before {\n    content: \"\\f49b\";\n}\n\n.ion-ios-reload:before {\n    content: \"\\f49d\";\n}\n\n.ion-ios-reverse-camera:before {\n    content: \"\\f49f\";\n}\n\n.ion-ios-reverse-camera-outline:before {\n    content: \"\\f49e\";\n}\n\n.ion-ios-rewind:before {\n    content: \"\\f4a1\";\n}\n\n.ion-ios-rewind-outline:before {\n    content: \"\\f4a0\";\n}\n\n.ion-ios-rose:before {\n    content: \"\\f4a3\";\n}\n\n.ion-ios-rose-outline:before {\n    content: \"\\f4a2\";\n}\n\n.ion-ios-search:before {\n    content: \"\\f4a5\";\n}\n\n.ion-ios-search-strong:before {\n    content: \"\\f4a4\";\n}\n\n.ion-ios-settings:before {\n    content: \"\\f4a7\";\n}\n\n.ion-ios-settings-strong:before {\n    content: \"\\f4a6\";\n}\n\n.ion-ios-shuffle:before {\n    content: \"\\f4a9\";\n}\n\n.ion-ios-shuffle-strong:before {\n    content: \"\\f4a8\";\n}\n\n.ion-ios-skipbackward:before {\n    content: \"\\f4ab\";\n}\n\n.ion-ios-skipbackward-outline:before {\n    content: \"\\f4aa\";\n}\n\n.ion-ios-skipforward:before {\n    content: \"\\f4ad\";\n}\n\n.ion-ios-skipforward-outline:before {\n    content: \"\\f4ac\";\n}\n\n.ion-ios-snowy:before {\n    content: \"\\f4ae\";\n}\n\n.ion-ios-speedometer:before {\n    content: \"\\f4b0\";\n}\n\n.ion-ios-speedometer-outline:before {\n    content: \"\\f4af\";\n}\n\n.ion-ios-star:before {\n    content: \"\\f4b3\";\n}\n\n.ion-ios-star-half:before {\n    content: \"\\f4b1\";\n}\n\n.ion-ios-star-outline:before {\n    content: \"\\f4b2\";\n}\n\n.ion-ios-stopwatch:before {\n    content: \"\\f4b5\";\n}\n\n.ion-ios-stopwatch-outline:before {\n    content: \"\\f4b4\";\n}\n\n.ion-ios-sunny:before {\n    content: \"\\f4b7\";\n}\n\n.ion-ios-sunny-outline:before {\n    content: \"\\f4b6\";\n}\n\n.ion-ios-telephone:before {\n    content: \"\\f4b9\";\n}\n\n.ion-ios-telephone-outline:before {\n    content: \"\\f4b8\";\n}\n\n.ion-ios-tennisball:before {\n    content: \"\\f4bb\";\n}\n\n.ion-ios-tennisball-outline:before {\n    content: \"\\f4ba\";\n}\n\n.ion-ios-thunderstorm:before {\n    content: \"\\f4bd\";\n}\n\n.ion-ios-thunderstorm-outline:before {\n    content: \"\\f4bc\";\n}\n\n.ion-ios-time:before {\n    content: \"\\f4bf\";\n}\n\n.ion-ios-time-outline:before {\n    content: \"\\f4be\";\n}\n\n.ion-ios-timer:before {\n    content: \"\\f4c1\";\n}\n\n.ion-ios-timer-outline:before {\n    content: \"\\f4c0\";\n}\n\n.ion-ios-toggle:before {\n    content: \"\\f4c3\";\n}\n\n.ion-ios-toggle-outline:before {\n    content: \"\\f4c2\";\n}\n\n.ion-ios-trash:before {\n    content: \"\\f4c5\";\n}\n\n.ion-ios-trash-outline:before {\n    content: \"\\f4c4\";\n}\n\n.ion-ios-undo:before {\n    content: \"\\f4c7\";\n}\n\n.ion-ios-undo-outline:before {\n    content: \"\\f4c6\";\n}\n\n.ion-ios-unlocked:before {\n    content: \"\\f4c9\";\n}\n\n.ion-ios-unlocked-outline:before {\n    content: \"\\f4c8\";\n}\n\n.ion-ios-upload:before {\n    content: \"\\f4cb\";\n}\n\n.ion-ios-upload-outline:before {\n    content: \"\\f4ca\";\n}\n\n.ion-ios-videocam:before {\n    content: \"\\f4cd\";\n}\n\n.ion-ios-videocam-outline:before {\n    content: \"\\f4cc\";\n}\n\n.ion-ios-volume-high:before {\n    content: \"\\f4ce\";\n}\n\n.ion-ios-volume-low:before {\n    content: \"\\f4cf\";\n}\n\n.ion-ios-wineglass:before {\n    content: \"\\f4d1\";\n}\n\n.ion-ios-wineglass-outline:before {\n    content: \"\\f4d0\";\n}\n\n.ion-ios-world:before {\n    content: \"\\f4d3\";\n}\n\n.ion-ios-world-outline:before {\n    content: \"\\f4d2\";\n}\n\n.ion-ipad:before {\n    content: \"\\f1f9\";\n}\n\n.ion-iphone:before {\n    content: \"\\f1fa\";\n}\n\n.ion-ipod:before {\n    content: \"\\f1fb\";\n}\n\n.ion-jet:before {\n    content: \"\\f295\";\n}\n\n.ion-key:before {\n    content: \"\\f296\";\n}\n\n.ion-knife:before {\n    content: \"\\f297\";\n}\n\n.ion-laptop:before {\n    content: \"\\f1fc\";\n}\n\n.ion-leaf:before {\n    content: \"\\f1fd\";\n}\n\n.ion-levels:before {\n    content: \"\\f298\";\n}\n\n.ion-lightbulb:before {\n    content: \"\\f299\";\n}\n\n.ion-link:before {\n    content: \"\\f1fe\";\n}\n\n.ion-load-a:before {\n    content: \"\\f29a\";\n}\n\n.ion-load-b:before {\n    content: \"\\f29b\";\n}\n\n.ion-load-c:before {\n    content: \"\\f29c\";\n}\n\n.ion-load-d:before {\n    content: \"\\f29d\";\n}\n\n.ion-location:before {\n    content: \"\\f1ff\";\n}\n\n.ion-lock-combination:before {\n    content: \"\\f4d4\";\n}\n\n.ion-locked:before {\n    content: \"\\f200\";\n}\n\n.ion-log-in:before {\n    content: \"\\f29e\";\n}\n\n.ion-log-out:before {\n    content: \"\\f29f\";\n}\n\n.ion-loop:before {\n    content: \"\\f201\";\n}\n\n.ion-magnet:before {\n    content: \"\\f2a0\";\n}\n\n.ion-male:before {\n    content: \"\\f2a1\";\n}\n\n.ion-man:before {\n    content: \"\\f202\";\n}\n\n.ion-map:before {\n    content: \"\\f203\";\n}\n\n.ion-medkit:before {\n    content: \"\\f2a2\";\n}\n\n.ion-merge:before {\n    content: \"\\f33f\";\n}\n\n.ion-mic-a:before {\n    content: \"\\f204\";\n}\n\n.ion-mic-b:before {\n    content: \"\\f205\";\n}\n\n.ion-mic-c:before {\n    content: \"\\f206\";\n}\n\n.ion-minus:before {\n    content: \"\\f209\";\n}\n\n.ion-minus-circled:before {\n    content: \"\\f207\";\n}\n\n.ion-minus-round:before {\n    content: \"\\f208\";\n}\n\n.ion-model-s:before {\n    content: \"\\f2c1\";\n}\n\n.ion-monitor:before {\n    content: \"\\f20a\";\n}\n\n.ion-more:before {\n    content: \"\\f20b\";\n}\n\n.ion-mouse:before {\n    content: \"\\f340\";\n}\n\n.ion-music-note:before {\n    content: \"\\f20c\";\n}\n\n.ion-navicon:before {\n    content: \"\\f20e\";\n}\n\n.ion-navicon-round:before {\n    content: \"\\f20d\";\n}\n\n.ion-navigate:before {\n    content: \"\\f2a3\";\n}\n\n.ion-network:before {\n    content: \"\\f341\";\n}\n\n.ion-no-smoking:before {\n    content: \"\\f2c2\";\n}\n\n.ion-nuclear:before {\n    content: \"\\f2a4\";\n}\n\n.ion-outlet:before {\n    content: \"\\f342\";\n}\n\n.ion-paintbrush:before {\n    content: \"\\f4d5\";\n}\n\n.ion-paintbucket:before {\n    content: \"\\f4d6\";\n}\n\n.ion-paper-airplane:before {\n    content: \"\\f2c3\";\n}\n\n.ion-paperclip:before {\n    content: \"\\f20f\";\n}\n\n.ion-pause:before {\n    content: \"\\f210\";\n}\n\n.ion-person:before {\n    content: \"\\f213\";\n}\n\n.ion-person-add:before {\n    content: \"\\f211\";\n}\n\n.ion-person-stalker:before {\n    content: \"\\f212\";\n}\n\n.ion-pie-graph:before {\n    content: \"\\f2a5\";\n}\n\n.ion-pin:before {\n    content: \"\\f2a6\";\n}\n\n.ion-pinpoint:before {\n    content: \"\\f2a7\";\n}\n\n.ion-pizza:before {\n    content: \"\\f2a8\";\n}\n\n.ion-plane:before {\n    content: \"\\f214\";\n}\n\n.ion-planet:before {\n    content: \"\\f343\";\n}\n\n.ion-play:before {\n    content: \"\\f215\";\n}\n\n.ion-playstation:before {\n    content: \"\\f30a\";\n}\n\n.ion-plus:before {\n    content: \"\\f218\";\n}\n\n.ion-plus-circled:before {\n    content: \"\\f216\";\n}\n\n.ion-plus-round:before {\n    content: \"\\f217\";\n}\n\n.ion-podium:before {\n    content: \"\\f344\";\n}\n\n.ion-pound:before {\n    content: \"\\f219\";\n}\n\n.ion-power:before {\n    content: \"\\f2a9\";\n}\n\n.ion-pricetag:before {\n    content: \"\\f2aa\";\n}\n\n.ion-pricetags:before {\n    content: \"\\f2ab\";\n}\n\n.ion-printer:before {\n    content: \"\\f21a\";\n}\n\n.ion-pull-request:before {\n    content: \"\\f345\";\n}\n\n.ion-qr-scanner:before {\n    content: \"\\f346\";\n}\n\n.ion-quote:before {\n    content: \"\\f347\";\n}\n\n.ion-radio-waves:before {\n    content: \"\\f2ac\";\n}\n\n.ion-record:before {\n    content: \"\\f21b\";\n}\n\n.ion-refresh:before {\n    content: \"\\f21c\";\n}\n\n.ion-reply:before {\n    content: \"\\f21e\";\n}\n\n.ion-reply-all:before {\n    content: \"\\f21d\";\n}\n\n.ion-ribbon-a:before {\n    content: \"\\f348\";\n}\n\n.ion-ribbon-b:before {\n    content: \"\\f349\";\n}\n\n.ion-sad:before {\n    content: \"\\f34a\";\n}\n\n.ion-sad-outline:before {\n    content: \"\\f4d7\";\n}\n\n.ion-scissors:before {\n    content: \"\\f34b\";\n}\n\n.ion-search:before {\n    content: \"\\f21f\";\n}\n\n.ion-settings:before {\n    content: \"\\f2ad\";\n}\n\n.ion-share:before {\n    content: \"\\f220\";\n}\n\n.ion-shuffle:before {\n    content: \"\\f221\";\n}\n\n.ion-skip-backward:before {\n    content: \"\\f222\";\n}\n\n.ion-skip-forward:before {\n    content: \"\\f223\";\n}\n\n.ion-social-android:before {\n    content: \"\\f225\";\n}\n\n.ion-social-android-outline:before {\n    content: \"\\f224\";\n}\n\n.ion-social-angular:before {\n    content: \"\\f4d9\";\n}\n\n.ion-social-angular-outline:before {\n    content: \"\\f4d8\";\n}\n\n.ion-social-apple:before {\n    content: \"\\f227\";\n}\n\n.ion-social-apple-outline:before {\n    content: \"\\f226\";\n}\n\n.ion-social-bitcoin:before {\n    content: \"\\f2af\";\n}\n\n.ion-social-bitcoin-outline:before {\n    content: \"\\f2ae\";\n}\n\n.ion-social-buffer:before {\n    content: \"\\f229\";\n}\n\n.ion-social-buffer-outline:before {\n    content: \"\\f228\";\n}\n\n.ion-social-chrome:before {\n    content: \"\\f4db\";\n}\n\n.ion-social-chrome-outline:before {\n    content: \"\\f4da\";\n}\n\n.ion-social-codepen:before {\n    content: \"\\f4dd\";\n}\n\n.ion-social-codepen-outline:before {\n    content: \"\\f4dc\";\n}\n\n.ion-social-css3:before {\n    content: \"\\f4df\";\n}\n\n.ion-social-css3-outline:before {\n    content: \"\\f4de\";\n}\n\n.ion-social-designernews:before {\n    content: \"\\f22b\";\n}\n\n.ion-social-designernews-outline:before {\n    content: \"\\f22a\";\n}\n\n.ion-social-dribbble:before {\n    content: \"\\f22d\";\n}\n\n.ion-social-dribbble-outline:before {\n    content: \"\\f22c\";\n}\n\n.ion-social-dropbox:before {\n    content: \"\\f22f\";\n}\n\n.ion-social-dropbox-outline:before {\n    content: \"\\f22e\";\n}\n\n.ion-social-euro:before {\n    content: \"\\f4e1\";\n}\n\n.ion-social-euro-outline:before {\n    content: \"\\f4e0\";\n}\n\n.ion-social-facebook:before {\n    content: \"\\f231\";\n}\n\n.ion-social-facebook-outline:before {\n    content: \"\\f230\";\n}\n\n.ion-social-foursquare:before {\n    content: \"\\f34d\";\n}\n\n.ion-social-foursquare-outline:before {\n    content: \"\\f34c\";\n}\n\n.ion-social-freebsd-devil:before {\n    content: \"\\f2c4\";\n}\n\n.ion-social-github:before {\n    content: \"\\f233\";\n}\n\n.ion-social-github-outline:before {\n    content: \"\\f232\";\n}\n\n.ion-social-google:before {\n    content: \"\\f34f\";\n}\n\n.ion-social-google-outline:before {\n    content: \"\\f34e\";\n}\n\n.ion-social-googleplus:before {\n    content: \"\\f235\";\n}\n\n.ion-social-googleplus-outline:before {\n    content: \"\\f234\";\n}\n\n.ion-social-hackernews:before {\n    content: \"\\f237\";\n}\n\n.ion-social-hackernews-outline:before {\n    content: \"\\f236\";\n}\n\n.ion-social-html5:before {\n    content: \"\\f4e3\";\n}\n\n.ion-social-html5-outline:before {\n    content: \"\\f4e2\";\n}\n\n.ion-social-instagram:before {\n    content: \"\\f351\";\n}\n\n.ion-social-instagram-outline:before {\n    content: \"\\f350\";\n}\n\n.ion-social-javascript:before {\n    content: \"\\f4e5\";\n}\n\n.ion-social-javascript-outline:before {\n    content: \"\\f4e4\";\n}\n\n.ion-social-linkedin:before {\n    content: \"\\f239\";\n}\n\n.ion-social-linkedin-outline:before {\n    content: \"\\f238\";\n}\n\n.ion-social-markdown:before {\n    content: \"\\f4e6\";\n}\n\n.ion-social-nodejs:before {\n    content: \"\\f4e7\";\n}\n\n.ion-social-octocat:before {\n    content: \"\\f4e8\";\n}\n\n.ion-social-pinterest:before {\n    content: \"\\f2b1\";\n}\n\n.ion-social-pinterest-outline:before {\n    content: \"\\f2b0\";\n}\n\n.ion-social-python:before {\n    content: \"\\f4e9\";\n}\n\n.ion-social-reddit:before {\n    content: \"\\f23b\";\n}\n\n.ion-social-reddit-outline:before {\n    content: \"\\f23a\";\n}\n\n.ion-social-rss:before {\n    content: \"\\f23d\";\n}\n\n.ion-social-rss-outline:before {\n    content: \"\\f23c\";\n}\n\n.ion-social-sass:before {\n    content: \"\\f4ea\";\n}\n\n.ion-social-skype:before {\n    content: \"\\f23f\";\n}\n\n.ion-social-skype-outline:before {\n    content: \"\\f23e\";\n}\n\n.ion-social-snapchat:before {\n    content: \"\\f4ec\";\n}\n\n.ion-social-snapchat-outline:before {\n    content: \"\\f4eb\";\n}\n\n.ion-social-tumblr:before {\n    content: \"\\f241\";\n}\n\n.ion-social-tumblr-outline:before {\n    content: \"\\f240\";\n}\n\n.ion-social-tux:before {\n    content: \"\\f2c5\";\n}\n\n.ion-social-twitch:before {\n    content: \"\\f4ee\";\n}\n\n.ion-social-twitch-outline:before {\n    content: \"\\f4ed\";\n}\n\n.ion-social-twitter:before {\n    content: \"\\f243\";\n}\n\n.ion-social-twitter-outline:before {\n    content: \"\\f242\";\n}\n\n.ion-social-usd:before {\n    content: \"\\f353\";\n}\n\n.ion-social-usd-outline:before {\n    content: \"\\f352\";\n}\n\n.ion-social-vimeo:before {\n    content: \"\\f245\";\n}\n\n.ion-social-vimeo-outline:before {\n    content: \"\\f244\";\n}\n\n.ion-social-whatsapp:before {\n    content: \"\\f4f0\";\n}\n\n.ion-social-whatsapp-outline:before {\n    content: \"\\f4ef\";\n}\n\n.ion-social-windows:before {\n    content: \"\\f247\";\n}\n\n.ion-social-windows-outline:before {\n    content: \"\\f246\";\n}\n\n.ion-social-wordpress:before {\n    content: \"\\f249\";\n}\n\n.ion-social-wordpress-outline:before {\n    content: \"\\f248\";\n}\n\n.ion-social-yahoo:before {\n    content: \"\\f24b\";\n}\n\n.ion-social-yahoo-outline:before {\n    content: \"\\f24a\";\n}\n\n.ion-social-yen:before {\n    content: \"\\f4f2\";\n}\n\n.ion-social-yen-outline:before {\n    content: \"\\f4f1\";\n}\n\n.ion-social-youtube:before {\n    content: \"\\f24d\";\n}\n\n.ion-social-youtube-outline:before {\n    content: \"\\f24c\";\n}\n\n.ion-soup-can:before {\n    content: \"\\f4f4\";\n}\n\n.ion-soup-can-outline:before {\n    content: \"\\f4f3\";\n}\n\n.ion-speakerphone:before {\n    content: \"\\f2b2\";\n}\n\n.ion-speedometer:before {\n    content: \"\\f2b3\";\n}\n\n.ion-spoon:before {\n    content: \"\\f2b4\";\n}\n\n.ion-star:before {\n    content: \"\\f24e\";\n}\n\n.ion-stats-bars:before {\n    content: \"\\f2b5\";\n}\n\n.ion-steam:before {\n    content: \"\\f30b\";\n}\n\n.ion-stop:before {\n    content: \"\\f24f\";\n}\n\n.ion-thermometer:before {\n    content: \"\\f2b6\";\n}\n\n.ion-thumbsdown:before {\n    content: \"\\f250\";\n}\n\n.ion-thumbsup:before {\n    content: \"\\f251\";\n}\n\n.ion-toggle:before {\n    content: \"\\f355\";\n}\n\n.ion-toggle-filled:before {\n    content: \"\\f354\";\n}\n\n.ion-transgender:before {\n    content: \"\\f4f5\";\n}\n\n.ion-trash-a:before {\n    content: \"\\f252\";\n}\n\n.ion-trash-b:before {\n    content: \"\\f253\";\n}\n\n.ion-trophy:before {\n    content: \"\\f356\";\n}\n\n.ion-tshirt:before {\n    content: \"\\f4f7\";\n}\n\n.ion-tshirt-outline:before {\n    content: \"\\f4f6\";\n}\n\n.ion-umbrella:before {\n    content: \"\\f2b7\";\n}\n\n.ion-university:before {\n    content: \"\\f357\";\n}\n\n.ion-unlocked:before {\n    content: \"\\f254\";\n}\n\n.ion-upload:before {\n    content: \"\\f255\";\n}\n\n.ion-usb:before {\n    content: \"\\f2b8\";\n}\n\n.ion-videocamera:before {\n    content: \"\\f256\";\n}\n\n.ion-volume-high:before {\n    content: \"\\f257\";\n}\n\n.ion-volume-low:before {\n    content: \"\\f258\";\n}\n\n.ion-volume-medium:before {\n    content: \"\\f259\";\n}\n\n.ion-volume-mute:before {\n    content: \"\\f25a\";\n}\n\n.ion-wand:before {\n    content: \"\\f358\";\n}\n\n.ion-waterdrop:before {\n    content: \"\\f25b\";\n}\n\n.ion-wifi:before {\n    content: \"\\f25c\";\n}\n\n.ion-wineglass:before {\n    content: \"\\f2b9\";\n}\n\n.ion-woman:before {\n    content: \"\\f25d\";\n}\n\n.ion-wrench:before {\n    content: \"\\f2ba\";\n}\n\n.ion-xbox:before {\n    content: \"\\f30c\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/ikonli-ionicons4-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.ionicons4 {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.ionicons4;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.ionicons4.Ionicons4IOSIkonHandler,\n            org.kordamp.ikonli.ionicons4.Ionicons4LogoIkonHandler,\n            org.kordamp.ikonli.ionicons4.Ionicons4MaterialIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.ionicons4.Ionicons4IOSIkonProvider,\n            org.kordamp.ikonli.ionicons4.Ionicons4LogoIkonProvider,\n            org.kordamp.ikonli.ionicons4.Ionicons4MaterialIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/src/main/java/org/kordamp/ikonli/ionicons4/Ionicons4IOS.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ionicons4;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\npublic enum Ionicons4IOS implements Ikon {\n    ADD(\"ion4-ios-add\", '\\uf102'),\n    ADD_CIRCLE(\"ion4-ios-add-circle\", '\\uf101'),\n    ADD_CIRCLE_OUTLINE(\"ion4-ios-add-circle-outline\", '\\uf100'),\n    AIRPLANE(\"ion4-ios-airplane\", '\\uf137'),\n    ALARM(\"ion4-ios-alarm\", '\\uf3c8'),\n    ALBUMS(\"ion4-ios-albums\", '\\uf3ca'),\n    ALERT(\"ion4-ios-alert\", '\\uf104'),\n    AMERICAN_FOOTBALL(\"ion4-ios-american-football\", '\\uf106'),\n    ANALYTICS(\"ion4-ios-analytics\", '\\uf3ce'),\n    APERTURE(\"ion4-ios-aperture\", '\\uf108'),\n    APPS(\"ion4-ios-apps\", '\\uf10a'),\n    APPSTORE(\"ion4-ios-appstore\", '\\uf10c'),\n    ARCHIVE(\"ion4-ios-archive\", '\\uf10e'),\n    ARROW_BACK(\"ion4-ios-arrow-back\", '\\uf3cf'),\n    ARROW_DOWN(\"ion4-ios-arrow-down\", '\\uf3d0'),\n    ARROW_DROPDOWN(\"ion4-ios-arrow-dropdown\", '\\uf110'),\n    ARROW_DROPDOWN_CIRCLE(\"ion4-ios-arrow-dropdown-circle\", '\\uf125'),\n    ARROW_DROPLEFT(\"ion4-ios-arrow-dropleft\", '\\uf112'),\n    ARROW_DROPLEFT_CIRCLE(\"ion4-ios-arrow-dropleft-circle\", '\\uf129'),\n    ARROW_DROPRIGHT(\"ion4-ios-arrow-dropright\", '\\uf114'),\n    ARROW_DROPRIGHT_CIRCLE(\"ion4-ios-arrow-dropright-circle\", '\\uf12b'),\n    ARROW_DROPUP(\"ion4-ios-arrow-dropup\", '\\uf116'),\n    ARROW_DROPUP_CIRCLE(\"ion4-ios-arrow-dropup-circle\", '\\uf12d'),\n    ARROW_FORWARD(\"ion4-ios-arrow-forward\", '\\uf3d1'),\n    ARROW_ROUND_BACK(\"ion4-ios-arrow-round-back\", '\\uf117'),\n    ARROW_ROUND_DOWN(\"ion4-ios-arrow-round-down\", '\\uf118'),\n    ARROW_ROUND_FORWARD(\"ion4-ios-arrow-round-forward\", '\\uf119'),\n    ARROW_ROUND_UP(\"ion4-ios-arrow-round-up\", '\\uf11a'),\n    ARROW_UP(\"ion4-ios-arrow-up\", '\\uf3d8'),\n    AT(\"ion4-ios-at\", '\\uf3da'),\n    ATTACH(\"ion4-ios-attach\", '\\uf11b'),\n    BACKSPACE(\"ion4-ios-backspace\", '\\uf11d'),\n    BARCODE(\"ion4-ios-barcode\", '\\uf3dc'),\n    BASEBALL(\"ion4-ios-baseball\", '\\uf3de'),\n    BASKET(\"ion4-ios-basket\", '\\uf11f'),\n    BASKETBALL(\"ion4-ios-basketball\", '\\uf3e0'),\n    BATTERY_CHARGING(\"ion4-ios-battery-charging\", '\\uf120'),\n    BATTERY_DEAD(\"ion4-ios-battery-dead\", '\\uf121'),\n    BATTERY_FULL(\"ion4-ios-battery-full\", '\\uf122'),\n    BEAKER(\"ion4-ios-beaker\", '\\uf124'),\n    BED(\"ion4-ios-bed\", '\\uf139'),\n    BEER(\"ion4-ios-beer\", '\\uf126'),\n    BICYCLE(\"ion4-ios-bicycle\", '\\uf127'),\n    BLUETOOTH(\"ion4-ios-bluetooth\", '\\uf128'),\n    BOAT(\"ion4-ios-boat\", '\\uf12a'),\n    BODY(\"ion4-ios-body\", '\\uf3e4'),\n    BONFIRE(\"ion4-ios-bonfire\", '\\uf12c'),\n    BOOK(\"ion4-ios-book\", '\\uf3e8'),\n    BOOKMARK(\"ion4-ios-bookmark\", '\\uf12e'),\n    BOOKMARKS(\"ion4-ios-bookmarks\", '\\uf3ea'),\n    BOWTIE(\"ion4-ios-bowtie\", '\\uf130'),\n    BRIEFCASE(\"ion4-ios-briefcase\", '\\uf3ee'),\n    BROWSERS(\"ion4-ios-browsers\", '\\uf3f0'),\n    BRUSH(\"ion4-ios-brush\", '\\uf132'),\n    BUG(\"ion4-ios-bug\", '\\uf134'),\n    BUILD(\"ion4-ios-build\", '\\uf136'),\n    BULB(\"ion4-ios-bulb\", '\\uf138'),\n    BUS(\"ion4-ios-bus\", '\\uf13a'),\n    BUSINESS(\"ion4-ios-business\", '\\uf1a3'),\n    CAFE(\"ion4-ios-cafe\", '\\uf13c'),\n    CALCULATOR(\"ion4-ios-calculator\", '\\uf3f2'),\n    CALENDAR(\"ion4-ios-calendar\", '\\uf3f4'),\n    CALL(\"ion4-ios-call\", '\\uf13e'),\n    CAMERA(\"ion4-ios-camera\", '\\uf3f6'),\n    CAR(\"ion4-ios-car\", '\\uf140'),\n    CARD(\"ion4-ios-card\", '\\uf142'),\n    CART(\"ion4-ios-cart\", '\\uf3f8'),\n    CASH(\"ion4-ios-cash\", '\\uf144'),\n    CELLULAR(\"ion4-ios-cellular\", '\\uf13d'),\n    CHATBOXES(\"ion4-ios-chatboxes\", '\\uf3fa'),\n    CHATBUBBLES(\"ion4-ios-chatbubbles\", '\\uf146'),\n    CHECKBOX(\"ion4-ios-checkbox\", '\\uf148'),\n    CHECKBOX_OUTLINE(\"ion4-ios-checkbox-outline\", '\\uf147'),\n    CHECKMARK(\"ion4-ios-checkmark\", '\\uf3ff'),\n    CHECKMARK_CIRCLE(\"ion4-ios-checkmark-circle\", '\\uf14a'),\n    CHECKMARK_CIRCLE_OUTLINE(\"ion4-ios-checkmark-circle-outline\", '\\uf149'),\n    CLIPBOARD(\"ion4-ios-clipboard\", '\\uf14c'),\n    CLOCK(\"ion4-ios-clock\", '\\uf403'),\n    CLOSE(\"ion4-ios-close\", '\\uf406'),\n    CLOSE_CIRCLE(\"ion4-ios-close-circle\", '\\uf14e'),\n    CLOSE_CIRCLE_OUTLINE(\"ion4-ios-close-circle-outline\", '\\uf14d'),\n    CLOUD(\"ion4-ios-cloud\", '\\uf40c'),\n    CLOUD_CIRCLE(\"ion4-ios-cloud-circle\", '\\uf152'),\n    CLOUD_DONE(\"ion4-ios-cloud-done\", '\\uf154'),\n    CLOUD_DOWNLOAD(\"ion4-ios-cloud-download\", '\\uf408'),\n    CLOUD_OUTLINE(\"ion4-ios-cloud-outline\", '\\uf409'),\n    CLOUD_UPLOAD(\"ion4-ios-cloud-upload\", '\\uf40b'),\n    CLOUDY(\"ion4-ios-cloudy\", '\\uf410'),\n    CLOUDY_NIGHT(\"ion4-ios-cloudy-night\", '\\uf40e'),\n    CODE(\"ion4-ios-code\", '\\uf157'),\n    CODE_DOWNLOAD(\"ion4-ios-code-download\", '\\uf155'),\n    CODE_WORKING(\"ion4-ios-code-working\", '\\uf156'),\n    COG(\"ion4-ios-cog\", '\\uf412'),\n    COLOR_FILL(\"ion4-ios-color-fill\", '\\uf159'),\n    COLOR_FILTER(\"ion4-ios-color-filter\", '\\uf414'),\n    COLOR_PALETTE(\"ion4-ios-color-palette\", '\\uf15b'),\n    COLOR_WAND(\"ion4-ios-color-wand\", '\\uf416'),\n    COMPASS(\"ion4-ios-compass\", '\\uf15d'),\n    CONSTRUCT(\"ion4-ios-construct\", '\\uf15f'),\n    CONTACT(\"ion4-ios-contact\", '\\uf41a'),\n    CONTACTS(\"ion4-ios-contacts\", '\\uf161'),\n    CONTRACT(\"ion4-ios-contract\", '\\uf162'),\n    CONTRAST(\"ion4-ios-contrast\", '\\uf163'),\n    COPY(\"ion4-ios-copy\", '\\uf41c'),\n    CREATE(\"ion4-ios-create\", '\\uf165'),\n    CROP(\"ion4-ios-crop\", '\\uf41e'),\n    CUBE(\"ion4-ios-cube\", '\\uf168'),\n    CUT(\"ion4-ios-cut\", '\\uf16a'),\n    DESKTOP(\"ion4-ios-desktop\", '\\uf16c'),\n    DISC(\"ion4-ios-disc\", '\\uf16e'),\n    DOCUMENT(\"ion4-ios-document\", '\\uf170'),\n    DONE_ALL(\"ion4-ios-done-all\", '\\uf171'),\n    DOWNLOAD(\"ion4-ios-download\", '\\uf420'),\n    EASEL(\"ion4-ios-easel\", '\\uf173'),\n    EGG(\"ion4-ios-egg\", '\\uf175'),\n    EXIT(\"ion4-ios-exit\", '\\uf177'),\n    EXPAND(\"ion4-ios-expand\", '\\uf178'),\n    EYE(\"ion4-ios-eye\", '\\uf425'),\n    EYE_OFF(\"ion4-ios-eye-off\", '\\uf17a'),\n    FASTFORWARD(\"ion4-ios-fastforward\", '\\uf427'),\n    FEMALE(\"ion4-ios-female\", '\\uf17b'),\n    FILING(\"ion4-ios-filing\", '\\uf429'),\n    FILM(\"ion4-ios-film\", '\\uf42b'),\n    FINGER_PRINT(\"ion4-ios-finger-print\", '\\uf17c'),\n    FITNESS(\"ion4-ios-fitness\", '\\uf1ab'),\n    FLAG(\"ion4-ios-flag\", '\\uf42d'),\n    FLAME(\"ion4-ios-flame\", '\\uf42f'),\n    FLASH(\"ion4-ios-flash\", '\\uf17e'),\n    FLASH_OFF(\"ion4-ios-flash-off\", '\\uf12f'),\n    FLASHLIGHT(\"ion4-ios-flashlight\", '\\uf141'),\n    FLASK(\"ion4-ios-flask\", '\\uf431'),\n    FLOWER(\"ion4-ios-flower\", '\\uf433'),\n    FOLDER(\"ion4-ios-folder\", '\\uf435'),\n    FOLDER_OPEN(\"ion4-ios-folder-open\", '\\uf180'),\n    FOOTBALL(\"ion4-ios-football\", '\\uf437'),\n    FUNNEL(\"ion4-ios-funnel\", '\\uf182'),\n    GIFT(\"ion4-ios-gift\", '\\uf191'),\n    GIT_BRANCH(\"ion4-ios-git-branch\", '\\uf183'),\n    GIT_COMMIT(\"ion4-ios-git-commit\", '\\uf184'),\n    GIT_COMPARE(\"ion4-ios-git-compare\", '\\uf185'),\n    GIT_MERGE(\"ion4-ios-git-merge\", '\\uf186'),\n    GIT_NETWORK(\"ion4-ios-git-network\", '\\uf187'),\n    GIT_PULL_REQUEST(\"ion4-ios-git-pull-request\", '\\uf188'),\n    GLASSES(\"ion4-ios-glasses\", '\\uf43f'),\n    GLOBE(\"ion4-ios-globe\", '\\uf18a'),\n    GRID(\"ion4-ios-grid\", '\\uf18c'),\n    HAMMER(\"ion4-ios-hammer\", '\\uf18e'),\n    HAND(\"ion4-ios-hand\", '\\uf190'),\n    HAPPY(\"ion4-ios-happy\", '\\uf192'),\n    HEADSET(\"ion4-ios-headset\", '\\uf194'),\n    HEART(\"ion4-ios-heart\", '\\uf443'),\n    HEART_DISLIKE(\"ion4-ios-heart-dislike\", '\\uf13f'),\n    HEART_EMPTY(\"ion4-ios-heart-empty\", '\\uf19b'),\n    HEART_HALF(\"ion4-ios-heart-half\", '\\uf19d'),\n    HELP(\"ion4-ios-help\", '\\uf446'),\n    HELP_BUOY(\"ion4-ios-help-buoy\", '\\uf196'),\n    HELP_CIRCLE(\"ion4-ios-help-circle\", '\\uf198'),\n    HELP_CIRCLE_OUTLINE(\"ion4-ios-help-circle-outline\", '\\uf197'),\n    HOME(\"ion4-ios-home\", '\\uf448'),\n    HOURGLASS(\"ion4-ios-hourglass\", '\\uf103'),\n    ICE_CREAM(\"ion4-ios-ice-cream\", '\\uf19a'),\n    IMAGE(\"ion4-ios-image\", '\\uf19c'),\n    IMAGES(\"ion4-ios-images\", '\\uf19e'),\n    INFINITE(\"ion4-ios-infinite\", '\\uf44a'),\n    INFORMATION(\"ion4-ios-information\", '\\uf44d'),\n    INFORMATION_CIRCLE(\"ion4-ios-information-circle\", '\\uf1a0'),\n    INFORMATION_CIRCLE_OUTLINE(\"ion4-ios-information-circle-outline\", '\\uf19f'),\n    JET(\"ion4-ios-jet\", '\\uf1a5'),\n    JOURNAL(\"ion4-ios-journal\", '\\uf189'),\n    KEY(\"ion4-ios-key\", '\\uf1a7'),\n    KEYPAD(\"ion4-ios-keypad\", '\\uf450'),\n    LAPTOP(\"ion4-ios-laptop\", '\\uf1a8'),\n    LEAF(\"ion4-ios-leaf\", '\\uf1aa'),\n    LINK(\"ion4-ios-link\", '\\uf22a'),\n    LIST(\"ion4-ios-list\", '\\uf454'),\n    LIST_BOX(\"ion4-ios-list-box\", '\\uf143'),\n    LOCATE(\"ion4-ios-locate\", '\\uf1ae'),\n    LOCK(\"ion4-ios-lock\", '\\uf1b0'),\n    LOG_IN(\"ion4-ios-log-in\", '\\uf1b1'),\n    LOG_OUT(\"ion4-ios-log-out\", '\\uf1b2'),\n    MAGNET(\"ion4-ios-magnet\", '\\uf1b4'),\n    MAIL(\"ion4-ios-mail\", '\\uf1b8'),\n    MAIL_OPEN(\"ion4-ios-mail-open\", '\\uf1b6'),\n    MAIL_UNREAD(\"ion4-ios-mail-unread\", '\\uf145'),\n    MALE(\"ion4-ios-male\", '\\uf1b9'),\n    MAN(\"ion4-ios-man\", '\\uf1bb'),\n    MAP(\"ion4-ios-map\", '\\uf1bd'),\n    MEDAL(\"ion4-ios-medal\", '\\uf1bf'),\n    MEDICAL(\"ion4-ios-medical\", '\\uf45c'),\n    MEDKIT(\"ion4-ios-medkit\", '\\uf45e'),\n    MEGAPHONE(\"ion4-ios-megaphone\", '\\uf1c1'),\n    MENU(\"ion4-ios-menu\", '\\uf1c3'),\n    MIC(\"ion4-ios-mic\", '\\uf461'),\n    MIC_OFF(\"ion4-ios-mic-off\", '\\uf45f'),\n    MICROPHONE(\"ion4-ios-microphone\", '\\uf1c6'),\n    MOON(\"ion4-ios-moon\", '\\uf468'),\n    MORE(\"ion4-ios-more\", '\\uf1c8'),\n    MOVE(\"ion4-ios-move\", '\\uf1cb'),\n    MUSICAL_NOTE(\"ion4-ios-musical-note\", '\\uf46b'),\n    MUSICAL_NOTES(\"ion4-ios-musical-notes\", '\\uf46c'),\n    NAVIGATE(\"ion4-ios-navigate\", '\\uf46e'),\n    NOTIFICATIONS(\"ion4-ios-notifications\", '\\uf1d3'),\n    NOTIFICATIONS_OFF(\"ion4-ios-notifications-off\", '\\uf1d1'),\n    NOTIFICATIONS_OUTLINE(\"ion4-ios-notifications-outline\", '\\uf133'),\n    NUCLEAR(\"ion4-ios-nuclear\", '\\uf1d5'),\n    NUTRITION(\"ion4-ios-nutrition\", '\\uf470'),\n    OPEN(\"ion4-ios-open\", '\\uf1d7'),\n    OPTIONS(\"ion4-ios-options\", '\\uf1d9'),\n    OUTLET(\"ion4-ios-outlet\", '\\uf1db'),\n    PAPER(\"ion4-ios-paper\", '\\uf472'),\n    PAPER_PLANE(\"ion4-ios-paper-plane\", '\\uf1dd'),\n    PARTLY_SUNNY(\"ion4-ios-partly-sunny\", '\\uf1df'),\n    PAUSE(\"ion4-ios-pause\", '\\uf478'),\n    PAW(\"ion4-ios-paw\", '\\uf47a'),\n    PEOPLE(\"ion4-ios-people\", '\\uf47c'),\n    PERSON(\"ion4-ios-person\", '\\uf47e'),\n    PERSON_ADD(\"ion4-ios-person-add\", '\\uf1e1'),\n    PHONE_LANDSCAPE(\"ion4-ios-phone-landscape\", '\\uf1e2'),\n    PHONE_PORTRAIT(\"ion4-ios-phone-portrait\", '\\uf1e3'),\n    PHOTOS(\"ion4-ios-photos\", '\\uf482'),\n    PIE(\"ion4-ios-pie\", '\\uf484'),\n    PIN(\"ion4-ios-pin\", '\\uf1e5'),\n    PINT(\"ion4-ios-pint\", '\\uf486'),\n    PIZZA(\"ion4-ios-pizza\", '\\uf1e7'),\n    PLANET(\"ion4-ios-planet\", '\\uf1eb'),\n    PLAY(\"ion4-ios-play\", '\\uf488'),\n    PLAY_CIRCLE(\"ion4-ios-play-circle\", '\\uf113'),\n    PODIUM(\"ion4-ios-podium\", '\\uf1ed'),\n    POWER(\"ion4-ios-power\", '\\uf1ef'),\n    PRICETAG(\"ion4-ios-pricetag\", '\\uf48d'),\n    PRICETAGS(\"ion4-ios-pricetags\", '\\uf48f'),\n    PRINT(\"ion4-ios-print\", '\\uf1f1'),\n    PULSE(\"ion4-ios-pulse\", '\\uf493'),\n    QR_SCANNER(\"ion4-ios-qr-scanner\", '\\uf1f3'),\n    QUOTE(\"ion4-ios-quote\", '\\uf1f5'),\n    RADIO(\"ion4-ios-radio\", '\\uf1f9'),\n    RADIO_BUTTON_OFF(\"ion4-ios-radio-button-off\", '\\uf1f6'),\n    RADIO_BUTTON_ON(\"ion4-ios-radio-button-on\", '\\uf1f7'),\n    RAINY(\"ion4-ios-rainy\", '\\uf495'),\n    RECORDING(\"ion4-ios-recording\", '\\uf497'),\n    REDO(\"ion4-ios-redo\", '\\uf499'),\n    REFRESH(\"ion4-ios-refresh\", '\\uf49c'),\n    REFRESH_CIRCLE(\"ion4-ios-refresh-circle\", '\\uf135'),\n    REMOVE(\"ion4-ios-remove\", '\\uf1fc'),\n    REMOVE_CIRCLE(\"ion4-ios-remove-circle\", '\\uf1fb'),\n    REMOVE_CIRCLE_OUTLINE(\"ion4-ios-remove-circle-outline\", '\\uf1fa'),\n    REORDER(\"ion4-ios-reorder\", '\\uf1fd'),\n    REPEAT(\"ion4-ios-repeat\", '\\uf1fe'),\n    RESIZE(\"ion4-ios-resize\", '\\uf1ff'),\n    RESTAURANT(\"ion4-ios-restaurant\", '\\uf201'),\n    RETURN_LEFT(\"ion4-ios-return-left\", '\\uf202'),\n    RETURN_RIGHT(\"ion4-ios-return-right\", '\\uf203'),\n    REVERSE_CAMERA(\"ion4-ios-reverse-camera\", '\\uf49f'),\n    REWIND(\"ion4-ios-rewind\", '\\uf4a1'),\n    RIBBON(\"ion4-ios-ribbon\", '\\uf205'),\n    ROCKET(\"ion4-ios-rocket\", '\\uf14b'),\n    ROSE(\"ion4-ios-rose\", '\\uf4a3'),\n    SAD(\"ion4-ios-sad\", '\\uf207'),\n    SAVE(\"ion4-ios-save\", '\\uf1a6'),\n    SCHOOL(\"ion4-ios-school\", '\\uf209'),\n    SEARCH(\"ion4-ios-search\", '\\uf4a5'),\n    SEND(\"ion4-ios-send\", '\\uf20c'),\n    SETTINGS(\"ion4-ios-settings\", '\\uf4a7'),\n    SHARE(\"ion4-ios-share\", '\\uf211'),\n    SHARE_ALT(\"ion4-ios-share-alt\", '\\uf20f'),\n    SHIRT(\"ion4-ios-shirt\", '\\uf213'),\n    SHUFFLE(\"ion4-ios-shuffle\", '\\uf4a9'),\n    SKIP_BACKWARD(\"ion4-ios-skip-backward\", '\\uf215'),\n    SKIP_FORWARD(\"ion4-ios-skip-forward\", '\\uf217'),\n    SNOW(\"ion4-ios-snow\", '\\uf218'),\n    SPEEDOMETER(\"ion4-ios-speedometer\", '\\uf4b0'),\n    SQUARE(\"ion4-ios-square\", '\\uf21a'),\n    SQUARE_OUTLINE(\"ion4-ios-square-outline\", '\\uf15c'),\n    STAR(\"ion4-ios-star\", '\\uf4b3'),\n    STAR_HALF(\"ion4-ios-star-half\", '\\uf4b1'),\n    STAR_OUTLINE(\"ion4-ios-star-outline\", '\\uf4b2'),\n    STATS(\"ion4-ios-stats\", '\\uf21c'),\n    STOPWATCH(\"ion4-ios-stopwatch\", '\\uf4b5'),\n    SUBWAY(\"ion4-ios-subway\", '\\uf21e'),\n    SUNNY(\"ion4-ios-sunny\", '\\uf4b7'),\n    SWAP(\"ion4-ios-swap\", '\\uf21f'),\n    SWITCH(\"ion4-ios-switch\", '\\uf221'),\n    SYNC(\"ion4-ios-sync\", '\\uf222'),\n    TABLET_LANDSCAPE(\"ion4-ios-tablet-landscape\", '\\uf223'),\n    TABLET_PORTRAIT(\"ion4-ios-tablet-portrait\", '\\uf24e'),\n    TENNISBALL(\"ion4-ios-tennisball\", '\\uf4bb'),\n    TEXT(\"ion4-ios-text\", '\\uf250'),\n    THERMOMETER(\"ion4-ios-thermometer\", '\\uf252'),\n    THUMBS_DOWN(\"ion4-ios-thumbs-down\", '\\uf254'),\n    THUMBS_UP(\"ion4-ios-thumbs-up\", '\\uf256'),\n    THUNDERSTORM(\"ion4-ios-thunderstorm\", '\\uf4bd'),\n    TIME(\"ion4-ios-time\", '\\uf4bf'),\n    TIMER(\"ion4-ios-timer\", '\\uf4c1'),\n    TODAY(\"ion4-ios-today\", '\\uf14f'),\n    TRAIN(\"ion4-ios-train\", '\\uf258'),\n    TRANSGENDER(\"ion4-ios-transgender\", '\\uf259'),\n    TRASH(\"ion4-ios-trash\", '\\uf4c5'),\n    TRENDING_DOWN(\"ion4-ios-trending-down\", '\\uf25a'),\n    TRENDING_UP(\"ion4-ios-trending-up\", '\\uf25b'),\n    TROPHY(\"ion4-ios-trophy\", '\\uf25d'),\n    TV(\"ion4-ios-tv\", '\\uf115'),\n    UMBRELLA(\"ion4-ios-umbrella\", '\\uf25f'),\n    UNDO(\"ion4-ios-undo\", '\\uf4c7'),\n    UNLOCK(\"ion4-ios-unlock\", '\\uf261'),\n    VIDEOCAM(\"ion4-ios-videocam\", '\\uf4cd'),\n    VOLUME_HIGH(\"ion4-ios-volume-high\", '\\uf11c'),\n    VOLUME_LOW(\"ion4-ios-volume-low\", '\\uf11e'),\n    VOLUME_MUTE(\"ion4-ios-volume-mute\", '\\uf263'),\n    VOLUME_OFF(\"ion4-ios-volume-off\", '\\uf264'),\n    WALK(\"ion4-ios-walk\", '\\uf266'),\n    WALLET(\"ion4-ios-wallet\", '\\uf18b'),\n    WARNING(\"ion4-ios-warning\", '\\uf268'),\n    WATCH(\"ion4-ios-watch\", '\\uf269'),\n    WATER(\"ion4-ios-water\", '\\uf26b'),\n    WIFI(\"ion4-ios-wifi\", '\\uf26d'),\n    WINE(\"ion4-ios-wine\", '\\uf26f'),\n    WOMAN(\"ion4-ios-woman\", '\\uf271');\n\n    public static Ionicons4IOS findByDescription(String description) {\n        for (Ionicons4IOS font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Ionicons4IOS(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/src/main/java/org/kordamp/ikonli/ionicons4/Ionicons4IOSIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ionicons4;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Ionicons4IOSIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/ionicons4/4.1.2/fonts/ionicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"ion4-ios-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Ionicons4IOS.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Ionicons4\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/src/main/java/org/kordamp/ikonli/ionicons4/Ionicons4IOSIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ionicons4;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class Ionicons4IOSIkonProvider implements IkonProvider<Ionicons4IOS> {\n    @Override\n    public Class<Ionicons4IOS> getIkon() {\n        return Ionicons4IOS.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/src/main/java/org/kordamp/ikonli/ionicons4/Ionicons4Logo.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ionicons4;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\npublic enum Ionicons4Logo implements Ikon {\n    ANDROID(\"ion4-logo-android\", '\\uf225'),\n    ANGULAR(\"ion4-logo-angular\", '\\uf227'),\n    APPLE(\"ion4-logo-apple\", '\\uf229'),\n    BITBUCKET(\"ion4-logo-bitbucket\", '\\uf193'),\n    BITCOIN(\"ion4-logo-bitcoin\", '\\uf22b'),\n    BUFFER(\"ion4-logo-buffer\", '\\uf22d'),\n    CHROME(\"ion4-logo-chrome\", '\\uf22f'),\n    CLOSED_CAPTIONING(\"ion4-logo-closed-captioning\", '\\uf105'),\n    CODEPEN(\"ion4-logo-codepen\", '\\uf230'),\n    CSS3(\"ion4-logo-css3\", '\\uf231'),\n    DESIGNERNEWS(\"ion4-logo-designernews\", '\\uf232'),\n    DRIBBBLE(\"ion4-logo-dribbble\", '\\uf233'),\n    DROPBOX(\"ion4-logo-dropbox\", '\\uf234'),\n    EURO(\"ion4-logo-euro\", '\\uf235'),\n    FACEBOOK(\"ion4-logo-facebook\", '\\uf236'),\n    FLICKR(\"ion4-logo-flickr\", '\\uf107'),\n    FOURSQUARE(\"ion4-logo-foursquare\", '\\uf237'),\n    FREEBSD_DEVIL(\"ion4-logo-freebsd-devil\", '\\uf238'),\n    GAME_CONTROLLER_A(\"ion4-logo-game-controller-a\", '\\uf13b'),\n    GAME_CONTROLLER_B(\"ion4-logo-game-controller-b\", '\\uf181'),\n    GITHUB(\"ion4-logo-github\", '\\uf239'),\n    GOOGLE(\"ion4-logo-google\", '\\uf23a'),\n    GOOGLEPLUS(\"ion4-logo-googleplus\", '\\uf23b'),\n    HACKERNEWS(\"ion4-logo-hackernews\", '\\uf23c'),\n    HTML5(\"ion4-logo-html5\", '\\uf23d'),\n    INSTAGRAM(\"ion4-logo-instagram\", '\\uf23e'),\n    IONIC(\"ion4-logo-ionic\", '\\uf150'),\n    IONITRON(\"ion4-logo-ionitron\", '\\uf151'),\n    JAVASCRIPT(\"ion4-logo-javascript\", '\\uf23f'),\n    LINKEDIN(\"ion4-logo-linkedin\", '\\uf240'),\n    MARKDOWN(\"ion4-logo-markdown\", '\\uf241'),\n    MODEL_S(\"ion4-logo-model-s\", '\\uf153'),\n    NO_SMOKING(\"ion4-logo-no-smoking\", '\\uf109'),\n    NODEJS(\"ion4-logo-nodejs\", '\\uf242'),\n    NPM(\"ion4-logo-npm\", '\\uf195'),\n    OCTOCAT(\"ion4-logo-octocat\", '\\uf243'),\n    PINTEREST(\"ion4-logo-pinterest\", '\\uf244'),\n    PLAYSTATION(\"ion4-logo-playstation\", '\\uf245'),\n    POLYMER(\"ion4-logo-polymer\", '\\uf15e'),\n    PYTHON(\"ion4-logo-python\", '\\uf246'),\n    REDDIT(\"ion4-logo-reddit\", '\\uf247'),\n    RSS(\"ion4-logo-rss\", '\\uf248'),\n    SASS(\"ion4-logo-sass\", '\\uf249'),\n    SKYPE(\"ion4-logo-skype\", '\\uf24a'),\n    SLACK(\"ion4-logo-slack\", '\\uf10b'),\n    SNAPCHAT(\"ion4-logo-snapchat\", '\\uf24b'),\n    STEAM(\"ion4-logo-steam\", '\\uf24c'),\n    TUMBLR(\"ion4-logo-tumblr\", '\\uf24d'),\n    TUX(\"ion4-logo-tux\", '\\uf2ae'),\n    TWITCH(\"ion4-logo-twitch\", '\\uf2af'),\n    TWITTER(\"ion4-logo-twitter\", '\\uf2b0'),\n    USD(\"ion4-logo-usd\", '\\uf2b1'),\n    VIMEO(\"ion4-logo-vimeo\", '\\uf2c4'),\n    VK(\"ion4-logo-vk\", '\\uf10d'),\n    WHATSAPP(\"ion4-logo-whatsapp\", '\\uf2c5'),\n    WINDOWS(\"ion4-logo-windows\", '\\uf32f'),\n    WORDPRESS(\"ion4-logo-wordpress\", '\\uf330'),\n    XBOX(\"ion4-logo-xbox\", '\\uf34c'),\n    XING(\"ion4-logo-xing\", '\\uf10f'),\n    YAHOO(\"ion4-logo-yahoo\", '\\uf34d'),\n    YEN(\"ion4-logo-yen\", '\\uf34e'),\n    YOUTUBE(\"ion4-logo-youtube\", '\\uf34f');\n\n    public static Ionicons4Logo findByDescription(String description) {\n        for (Ionicons4Logo font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Ionicons4Logo(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/src/main/java/org/kordamp/ikonli/ionicons4/Ionicons4LogoIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ionicons4;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Ionicons4LogoIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/ionicons4/4.1.2/fonts/ionicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"ion4-logo-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n\n        return Ionicons4Logo.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Ionicons4\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/src/main/java/org/kordamp/ikonli/ionicons4/Ionicons4LogoIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ionicons4;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class Ionicons4LogoIkonProvider implements IkonProvider<Ionicons4Logo> {\n    @Override\n    public Class<Ionicons4Logo> getIkon() {\n        return Ionicons4Logo.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/src/main/java/org/kordamp/ikonli/ionicons4/Ionicons4Material.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ionicons4;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\npublic enum Ionicons4Material implements Ikon {\n    ADD(\"ion4-md-add\", '\\uf273'),\n    ADD_CIRCLE(\"ion4-md-add-circle\", '\\uf272'),\n    ADD_CIRCLE_OUTLINE(\"ion4-md-add-circle-outline\", '\\uf158'),\n    AIRPLANE(\"ion4-md-airplane\", '\\uf15a'),\n    ALARM(\"ion4-md-alarm\", '\\uf274'),\n    ALBUMS(\"ion4-md-albums\", '\\uf275'),\n    ALERT(\"ion4-md-alert\", '\\uf276'),\n    AMERICAN_FOOTBALL(\"ion4-md-american-football\", '\\uf277'),\n    ANALYTICS(\"ion4-md-analytics\", '\\uf278'),\n    APERTURE(\"ion4-md-aperture\", '\\uf279'),\n    APPS(\"ion4-md-apps\", '\\uf27a'),\n    APPSTORE(\"ion4-md-appstore\", '\\uf27b'),\n    ARCHIVE(\"ion4-md-archive\", '\\uf27c'),\n    ARROW_BACK(\"ion4-md-arrow-back\", '\\uf27d'),\n    ARROW_DOWN(\"ion4-md-arrow-down\", '\\uf27e'),\n    ARROW_DROPDOWN(\"ion4-md-arrow-dropdown\", '\\uf280'),\n    ARROW_DROPDOWN_CIRCLE(\"ion4-md-arrow-dropdown-circle\", '\\uf27f'),\n    ARROW_DROPLEFT(\"ion4-md-arrow-dropleft\", '\\uf282'),\n    ARROW_DROPLEFT_CIRCLE(\"ion4-md-arrow-dropleft-circle\", '\\uf281'),\n    ARROW_DROPRIGHT(\"ion4-md-arrow-dropright\", '\\uf284'),\n    ARROW_DROPRIGHT_CIRCLE(\"ion4-md-arrow-dropright-circle\", '\\uf283'),\n    ARROW_DROPUP(\"ion4-md-arrow-dropup\", '\\uf286'),\n    ARROW_DROPUP_CIRCLE(\"ion4-md-arrow-dropup-circle\", '\\uf285'),\n    ARROW_FORWARD(\"ion4-md-arrow-forward\", '\\uf287'),\n    ARROW_ROUND_BACK(\"ion4-md-arrow-round-back\", '\\uf288'),\n    ARROW_ROUND_DOWN(\"ion4-md-arrow-round-down\", '\\uf289'),\n    ARROW_ROUND_FORWARD(\"ion4-md-arrow-round-forward\", '\\uf28a'),\n    ARROW_ROUND_UP(\"ion4-md-arrow-round-up\", '\\uf28b'),\n    ARROW_UP(\"ion4-md-arrow-up\", '\\uf28c'),\n    AT(\"ion4-md-at\", '\\uf28d'),\n    ATTACH(\"ion4-md-attach\", '\\uf28e'),\n    BACKSPACE(\"ion4-md-backspace\", '\\uf28f'),\n    BARCODE(\"ion4-md-barcode\", '\\uf290'),\n    BASEBALL(\"ion4-md-baseball\", '\\uf291'),\n    BASKET(\"ion4-md-basket\", '\\uf292'),\n    BASKETBALL(\"ion4-md-basketball\", '\\uf293'),\n    BATTERY_CHARGING(\"ion4-md-battery-charging\", '\\uf294'),\n    BATTERY_DEAD(\"ion4-md-battery-dead\", '\\uf295'),\n    BATTERY_FULL(\"ion4-md-battery-full\", '\\uf296'),\n    BEAKER(\"ion4-md-beaker\", '\\uf297'),\n    BED(\"ion4-md-bed\", '\\uf160'),\n    BEER(\"ion4-md-beer\", '\\uf298'),\n    BICYCLE(\"ion4-md-bicycle\", '\\uf299'),\n    BLUETOOTH(\"ion4-md-bluetooth\", '\\uf29a'),\n    BOAT(\"ion4-md-boat\", '\\uf29b'),\n    BODY(\"ion4-md-body\", '\\uf29c'),\n    BONFIRE(\"ion4-md-bonfire\", '\\uf29d'),\n    BOOK(\"ion4-md-book\", '\\uf29e'),\n    BOOKMARK(\"ion4-md-bookmark\", '\\uf29f'),\n    BOOKMARKS(\"ion4-md-bookmarks\", '\\uf2a0'),\n    BOWTIE(\"ion4-md-bowtie\", '\\uf2a1'),\n    BRIEFCASE(\"ion4-md-briefcase\", '\\uf2a2'),\n    BROWSERS(\"ion4-md-browsers\", '\\uf2a3'),\n    BRUSH(\"ion4-md-brush\", '\\uf2a4'),\n    BUG(\"ion4-md-bug\", '\\uf2a5'),\n    BUILD(\"ion4-md-build\", '\\uf2a6'),\n    BULB(\"ion4-md-bulb\", '\\uf2a7'),\n    BUS(\"ion4-md-bus\", '\\uf2a8'),\n    BUSINESS(\"ion4-md-business\", '\\uf1a4'),\n    CAFE(\"ion4-md-cafe\", '\\uf2a9'),\n    CALCULATOR(\"ion4-md-calculator\", '\\uf2aa'),\n    CALENDAR(\"ion4-md-calendar\", '\\uf2ab'),\n    CALL(\"ion4-md-call\", '\\uf2ac'),\n    CAMERA(\"ion4-md-camera\", '\\uf2ad'),\n    CAR(\"ion4-md-car\", '\\uf2b2'),\n    CARD(\"ion4-md-card\", '\\uf2b3'),\n    CART(\"ion4-md-cart\", '\\uf2b4'),\n    CASH(\"ion4-md-cash\", '\\uf2b5'),\n    CELLULAR(\"ion4-md-cellular\", '\\uf164'),\n    CHATBOXES(\"ion4-md-chatboxes\", '\\uf2b6'),\n    CHATBUBBLES(\"ion4-md-chatbubbles\", '\\uf2b7'),\n    CHECKBOX(\"ion4-md-checkbox\", '\\uf2b9'),\n    CHECKBOX_OUTLINE(\"ion4-md-checkbox-outline\", '\\uf2b8'),\n    CHECKMARK(\"ion4-md-checkmark\", '\\uf2bc'),\n    CHECKMARK_CIRCLE(\"ion4-md-checkmark-circle\", '\\uf2bb'),\n    CHECKMARK_CIRCLE_OUTLINE(\"ion4-md-checkmark-circle-outline\", '\\uf2ba'),\n    CLIPBOARD(\"ion4-md-clipboard\", '\\uf2bd'),\n    CLOCK(\"ion4-md-clock\", '\\uf2be'),\n    CLOSE(\"ion4-md-close\", '\\uf2c0'),\n    CLOSE_CIRCLE(\"ion4-md-close-circle\", '\\uf2bf'),\n    CLOSE_CIRCLE_OUTLINE(\"ion4-md-close-circle-outline\", '\\uf166'),\n    CLOUD(\"ion4-md-cloud\", '\\uf2c9'),\n    CLOUD_CIRCLE(\"ion4-md-cloud-circle\", '\\uf2c2'),\n    CLOUD_DONE(\"ion4-md-cloud-done\", '\\uf2c3'),\n    CLOUD_DOWNLOAD(\"ion4-md-cloud-download\", '\\uf2c6'),\n    CLOUD_OUTLINE(\"ion4-md-cloud-outline\", '\\uf2c7'),\n    CLOUD_UPLOAD(\"ion4-md-cloud-upload\", '\\uf2c8'),\n    CLOUDY(\"ion4-md-cloudy\", '\\uf2cb'),\n    CLOUDY_NIGHT(\"ion4-md-cloudy-night\", '\\uf2ca'),\n    CODE(\"ion4-md-code\", '\\uf2ce'),\n    CODE_DOWNLOAD(\"ion4-md-code-download\", '\\uf2cc'),\n    CODE_WORKING(\"ion4-md-code-working\", '\\uf2cd'),\n    COG(\"ion4-md-cog\", '\\uf2cf'),\n    COLOR_FILL(\"ion4-md-color-fill\", '\\uf2d0'),\n    COLOR_FILTER(\"ion4-md-color-filter\", '\\uf2d1'),\n    COLOR_PALETTE(\"ion4-md-color-palette\", '\\uf2d2'),\n    COLOR_WAND(\"ion4-md-color-wand\", '\\uf2d3'),\n    COMPASS(\"ion4-md-compass\", '\\uf2d4'),\n    CONSTRUCT(\"ion4-md-construct\", '\\uf2d5'),\n    CONTACT(\"ion4-md-contact\", '\\uf2d6'),\n    CONTACTS(\"ion4-md-contacts\", '\\uf2d7'),\n    CONTRACT(\"ion4-md-contract\", '\\uf2d8'),\n    CONTRAST(\"ion4-md-contrast\", '\\uf2d9'),\n    COPY(\"ion4-md-copy\", '\\uf2da'),\n    CREATE(\"ion4-md-create\", '\\uf2db'),\n    CROP(\"ion4-md-crop\", '\\uf2dc'),\n    CUBE(\"ion4-md-cube\", '\\uf2dd'),\n    CUT(\"ion4-md-cut\", '\\uf2de'),\n    DESKTOP(\"ion4-md-desktop\", '\\uf2df'),\n    DISC(\"ion4-md-disc\", '\\uf2e0'),\n    DOCUMENT(\"ion4-md-document\", '\\uf2e1'),\n    DONE_ALL(\"ion4-md-done-all\", '\\uf2e2'),\n    DOWNLOAD(\"ion4-md-download\", '\\uf2e3'),\n    EASEL(\"ion4-md-easel\", '\\uf2e4'),\n    EGG(\"ion4-md-egg\", '\\uf2e5'),\n    EXIT(\"ion4-md-exit\", '\\uf2e6'),\n    EXPAND(\"ion4-md-expand\", '\\uf2e7'),\n    EYE(\"ion4-md-eye\", '\\uf2e9'),\n    EYE_OFF(\"ion4-md-eye-off\", '\\uf2e8'),\n    FASTFORWARD(\"ion4-md-fastforward\", '\\uf2ea'),\n    FEMALE(\"ion4-md-female\", '\\uf2eb'),\n    FILING(\"ion4-md-filing\", '\\uf2ec'),\n    FILM(\"ion4-md-film\", '\\uf2ed'),\n    FINGER_PRINT(\"ion4-md-finger-print\", '\\uf2ee'),\n    FITNESS(\"ion4-md-fitness\", '\\uf1ac'),\n    FLAG(\"ion4-md-flag\", '\\uf2ef'),\n    FLAME(\"ion4-md-flame\", '\\uf2f0'),\n    FLASH(\"ion4-md-flash\", '\\uf2f1'),\n    FLASH_OFF(\"ion4-md-flash-off\", '\\uf169'),\n    FLASHLIGHT(\"ion4-md-flashlight\", '\\uf16b'),\n    FLASK(\"ion4-md-flask\", '\\uf2f2'),\n    FLOWER(\"ion4-md-flower\", '\\uf2f3'),\n    FOLDER(\"ion4-md-folder\", '\\uf2f5'),\n    FOLDER_OPEN(\"ion4-md-folder-open\", '\\uf2f4'),\n    FOOTBALL(\"ion4-md-football\", '\\uf2f6'),\n    FUNNEL(\"ion4-md-funnel\", '\\uf2f7'),\n    GIFT(\"ion4-md-gift\", '\\uf199'),\n    GIT_BRANCH(\"ion4-md-git-branch\", '\\uf2fa'),\n    GIT_COMMIT(\"ion4-md-git-commit\", '\\uf2fb'),\n    GIT_COMPARE(\"ion4-md-git-compare\", '\\uf2fc'),\n    GIT_MERGE(\"ion4-md-git-merge\", '\\uf2fd'),\n    GIT_NETWORK(\"ion4-md-git-network\", '\\uf2fe'),\n    GIT_PULL_REQUEST(\"ion4-md-git-pull-request\", '\\uf2ff'),\n    GLASSES(\"ion4-md-glasses\", '\\uf300'),\n    GLOBE(\"ion4-md-globe\", '\\uf301'),\n    GRID(\"ion4-md-grid\", '\\uf302'),\n    HAMMER(\"ion4-md-hammer\", '\\uf303'),\n    HAND(\"ion4-md-hand\", '\\uf304'),\n    HAPPY(\"ion4-md-happy\", '\\uf305'),\n    HEADSET(\"ion4-md-headset\", '\\uf306'),\n    HEART(\"ion4-md-heart\", '\\uf308'),\n    HEART_DISLIKE(\"ion4-md-heart-dislike\", '\\uf167'),\n    HEART_EMPTY(\"ion4-md-heart-empty\", '\\uf1a1'),\n    HEART_HALF(\"ion4-md-heart-half\", '\\uf1a2'),\n    HELP(\"ion4-md-help\", '\\uf30b'),\n    HELP_BUOY(\"ion4-md-help-buoy\", '\\uf309'),\n    HELP_CIRCLE(\"ion4-md-help-circle\", '\\uf30a'),\n    HELP_CIRCLE_OUTLINE(\"ion4-md-help-circle-outline\", '\\uf16d'),\n    HOME(\"ion4-md-home\", '\\uf30c'),\n    HOURGLASS(\"ion4-md-hourglass\", '\\uf111'),\n    ICE_CREAM(\"ion4-md-ice-cream\", '\\uf30d'),\n    IMAGE(\"ion4-md-image\", '\\uf30e'),\n    IMAGES(\"ion4-md-images\", '\\uf30f'),\n    INFINITE(\"ion4-md-infinite\", '\\uf310'),\n    INFORMATION(\"ion4-md-information4\", '\\uf312'),\n    INFORMATION_CIRCLE(\"ion4-md-information-circle\", '\\uf311'),\n    INFORMATION_CIRCLE_OUTLINE(\"ion4-md-information-circle-outline\", '\\uf16f'),\n    JET(\"ion4-md-jet\", '\\uf315'),\n    JOURNAL(\"ion4-md-journal\", '\\uf18d'),\n    KEY(\"ion4-md-key\", '\\uf316'),\n    KEYPAD(\"ion4-md-keypad\", '\\uf317'),\n    LAPTOP(\"ion4-md-laptop\", '\\uf318'),\n    LEAF(\"ion4-md-leaf\", '\\uf319'),\n    LINK(\"ion4-md-link\", '\\uf22e'),\n    LIST(\"ion4-md-list\", '\\uf31b'),\n    LIST_BOX(\"ion4-md-list-box\", '\\uf31a'),\n    LOCATE(\"ion4-md-locate\", '\\uf31c'),\n    LOCK(\"ion4-md-lock\", '\\uf31d'),\n    LOG_IN(\"ion4-md-log-in\", '\\uf31e'),\n    LOG_OUT(\"ion4-md-log-out\", '\\uf31f'),\n    MAGNET(\"ion4-md-magnet\", '\\uf320'),\n    MAIL(\"ion4-md-mail\", '\\uf322'),\n    MAIL_OPEN(\"ion4-md-mail-open\", '\\uf321'),\n    MAIL_UNREAD(\"ion4-md-mail-unread\", '\\uf172'),\n    MALE(\"ion4-md-male\", '\\uf323'),\n    MAN(\"ion4-md-man\", '\\uf324'),\n    MAP(\"ion4-md-map\", '\\uf325'),\n    MEDAL(\"ion4-md-medal\", '\\uf326'),\n    MEDICAL(\"ion4-md-medical\", '\\uf327'),\n    MEDKIT(\"ion4-md-medkit\", '\\uf328'),\n    MEGAPHONE(\"ion4-md-megaphone\", '\\uf329'),\n    MENU(\"ion4-md-menu\", '\\uf32a'),\n    MIC(\"ion4-md-mic\", '\\uf32c'),\n    MIC_OFF(\"ion4-md-mic-off\", '\\uf32b'),\n    MICROPHONE(\"ion4-md-microphone\", '\\uf32d'),\n    MOON(\"ion4-md-moon\", '\\uf32e'),\n    MORE(\"ion4-md-more\", '\\uf1c9'),\n    MOVE(\"ion4-md-move\", '\\uf331'),\n    MUSICAL_NOTE(\"ion4-md-musical-note\", '\\uf332'),\n    MUSICAL_NOTES(\"ion4-md-musical-notes\", '\\uf333'),\n    NAVIGATE(\"ion4-md-navigate\", '\\uf334'),\n    NOTIFICATIONS(\"ion4-md-notifications\", '\\uf338'),\n    NOTIFICATIONS_OFF(\"ion4-md-notifications-off\", '\\uf336'),\n    NOTIFICATIONS_OUTLINE(\"ion4-md-notifications-outline\", '\\uf337'),\n    NUCLEAR(\"ion4-md-nuclear\", '\\uf339'),\n    NUTRITION(\"ion4-md-nutrition\", '\\uf33a'),\n    OPEN(\"ion4-md-open\", '\\uf33b'),\n    OPTIONS(\"ion4-md-options\", '\\uf33c'),\n    OUTLET(\"ion4-md-outlet\", '\\uf33d'),\n    PAPER(\"ion4-md-paper\", '\\uf33f'),\n    PAPER_PLANE(\"ion4-md-paper-plane\", '\\uf33e'),\n    PARTLY_SUNNY(\"ion4-md-partly-sunny\", '\\uf340'),\n    PAUSE(\"ion4-md-pause\", '\\uf341'),\n    PAW(\"ion4-md-paw\", '\\uf342'),\n    PEOPLE(\"ion4-md-people\", '\\uf343'),\n    PERSON(\"ion4-md-person\", '\\uf345'),\n    PERSON_ADD(\"ion4-md-person-add\", '\\uf344'),\n    PHONE_LANDSCAPE(\"ion4-md-phone-landscape\", '\\uf346'),\n    PHONE_PORTRAIT(\"ion4-md-phone-portrait\", '\\uf347'),\n    PHOTOS(\"ion4-md-photos\", '\\uf348'),\n    PIE(\"ion4-md-pie\", '\\uf349'),\n    PIN(\"ion4-md-pin\", '\\uf34a'),\n    PINT(\"ion4-md-pint\", '\\uf34b'),\n    PIZZA(\"ion4-md-pizza\", '\\uf354'),\n    PLANET(\"ion4-md-planet\", '\\uf356'),\n    PLAY(\"ion4-md-play\", '\\uf357'),\n    PLAY_CIRCLE(\"ion4-md-play-circle\", '\\uf174'),\n    PODIUM(\"ion4-md-podium\", '\\uf358'),\n    POWER(\"ion4-md-power\", '\\uf359'),\n    PRICETAG(\"ion4-md-pricetag\", '\\uf35a'),\n    PRICETAGS(\"ion4-md-pricetags\", '\\uf35b'),\n    PRINT(\"ion4-md-print\", '\\uf35c'),\n    PULSE(\"ion4-md-pulse\", '\\uf35d'),\n    QR_SCANNER(\"ion4-md-qr-scanner\", '\\uf35e'),\n    QUOTE(\"ion4-md-quote\", '\\uf35f'),\n    RADIO(\"ion4-md-radio\", '\\uf362'),\n    RADIO_BUTTON_OFF(\"ion4-md-radio-button-off\", '\\uf360'),\n    RADIO_BUTTON_ON(\"ion4-md-radio-button-on\", '\\uf361'),\n    RAINY(\"ion4-md-rainy\", '\\uf363'),\n    RECORDING(\"ion4-md-recording\", '\\uf364'),\n    REDO(\"ion4-md-redo\", '\\uf365'),\n    REFRESH(\"ion4-md-refresh\", '\\uf366'),\n    REFRESH_CIRCLE(\"ion4-md-refresh-circle\", '\\uf228'),\n    REMOVE(\"ion4-md-remove\", '\\uf368'),\n    REMOVE_CIRCLE(\"ion4-md-remove-circle\", '\\uf367'),\n    REMOVE_CIRCLE_OUTLINE(\"ion4-md-remove-circle-outline\", '\\uf176'),\n    REORDER(\"ion4-md-reorder\", '\\uf369'),\n    REPEAT(\"ion4-md-repeat\", '\\uf36a'),\n    RESIZE(\"ion4-md-resize\", '\\uf36b'),\n    RESTAURANT(\"ion4-md-restaurant\", '\\uf36c'),\n    RETURN_LEFT(\"ion4-md-return-left\", '\\uf36d'),\n    RETURN_RIGHT(\"ion4-md-return-right\", '\\uf36e'),\n    REVERSE_CAMERA(\"ion4-md-reverse-camera\", '\\uf36f'),\n    REWIND(\"ion4-md-rewind\", '\\uf370'),\n    RIBBON(\"ion4-md-ribbon\", '\\uf371'),\n    ROCKET(\"ion4-md-rocket\", '\\uf179'),\n    ROSE(\"ion4-md-rose\", '\\uf372'),\n    SAD(\"ion4-md-sad\", '\\uf373'),\n    SAVE(\"ion4-md-save\", '\\uf1a9'),\n    SCHOOL(\"ion4-md-school\", '\\uf374'),\n    SEARCH(\"ion4-md-search\", '\\uf375'),\n    SEND(\"ion4-md-send\", '\\uf376'),\n    SETTINGS(\"ion4-md-settings\", '\\uf377'),\n    SHARE(\"ion4-md-share\", '\\uf379'),\n    SHARE_ALT(\"ion4-md-share-alt\", '\\uf378'),\n    SHIRT(\"ion4-md-shirt\", '\\uf37a'),\n    SHUFFLE(\"ion4-md-shuffle\", '\\uf37b'),\n    SKIP_BACKWARD(\"ion4-md-skip-backward\", '\\uf37c'),\n    SKIP_FORWARD(\"ion4-md-skip-forward\", '\\uf37d'),\n    SNOW(\"ion4-md-snow\", '\\uf37e'),\n    SPEEDOMETER(\"ion4-md-speedometer\", '\\uf37f'),\n    SQUARE(\"ion4-md-square\", '\\uf381'),\n    SQUARE_OUTLINE(\"ion4-md-square-outline\", '\\uf380'),\n    STAR(\"ion4-md-star\", '\\uf384'),\n    STAR_HALF(\"ion4-md-star-half\", '\\uf382'),\n    STAR_OUTLINE(\"ion4-md-star-outline\", '\\uf383'),\n    STATS(\"ion4-md-stats\", '\\uf385'),\n    STOPWATCH(\"ion4-md-stopwatch\", '\\uf386'),\n    SUBWAY(\"ion4-md-subway\", '\\uf387'),\n    SUNNY(\"ion4-md-sunny\", '\\uf388'),\n    SWAP(\"ion4-md-swap\", '\\uf389'),\n    SWITCH(\"ion4-md-switch\", '\\uf38a'),\n    SYNC(\"ion4-md-sync\", '\\uf38b'),\n    TABLET_LANDSCAPE(\"ion4-md-tablet-landscape\", '\\uf38c'),\n    TABLET_PORTRAIT(\"ion4-md-tablet-portrait\", '\\uf38d'),\n    TENNISBALL(\"ion4-md-tennisball\", '\\uf38e'),\n    TEXT(\"ion4-md-text\", '\\uf38f'),\n    THERMOMETER(\"ion4-md-thermometer\", '\\uf390'),\n    THUMBS_DOWN(\"ion4-md-thumbs-down\", '\\uf391'),\n    THUMBS_UP(\"ion4-md-thumbs-up\", '\\uf392'),\n    THUNDERSTORM(\"ion4-md-thunderstorm\", '\\uf393'),\n    TIME(\"ion4-md-time\", '\\uf394'),\n    TIMER(\"ion4-md-timer\", '\\uf395'),\n    TODAY(\"ion4-md-today\", '\\uf17d'),\n    TRAIN(\"ion4-md-train\", '\\uf396'),\n    TRANSGENDER(\"ion4-md-transgender\", '\\uf397'),\n    TRASH(\"ion4-md-trash\", '\\uf398'),\n    TRENDING_DOWN(\"ion4-md-trending-down\", '\\uf399'),\n    TRENDING_UP(\"ion4-md-trending-up\", '\\uf39a'),\n    TROPHY(\"ion4-md-trophy\", '\\uf39b'),\n    TV(\"ion4-md-tv\", '\\uf17f'),\n    UMBRELLA(\"ion4-md-umbrella\", '\\uf39c'),\n    UNDO(\"ion4-md-undo\", '\\uf39d'),\n    UNLOCK(\"ion4-md-unlock\", '\\uf39e'),\n    VIDEOCAM(\"ion4-md-videocam\", '\\uf39f'),\n    VOLUME_HIGH(\"ion4-md-volume-high\", '\\uf123'),\n    VOLUME_LOW(\"ion4-md-volume-low\", '\\uf131'),\n    VOLUME_MUTE(\"ion4-md-volume-mute\", '\\uf3a1'),\n    VOLUME_OFF(\"ion4-md-volume-off\", '\\uf3a2'),\n    WALK(\"ion4-md-walk\", '\\uf3a4'),\n    WALLET(\"ion4-md-wallet\", '\\uf18f'),\n    WARNING(\"ion4-md-warning\", '\\uf3a5'),\n    WATCH(\"ion4-md-watch\", '\\uf3a6'),\n    WATER(\"ion4-md-water\", '\\uf3a7'),\n    WIFI(\"ion4-md-wifi\", '\\uf3a8'),\n    WINE(\"ion4-md-wine\", '\\uf3a9'),\n    WOMAN(\"ion4-md-woman\", '\\uf3aa');\n\n    public static Ionicons4Material findByDescription(String description) {\n        for (Ionicons4Material font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Ionicons4Material(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/src/main/java/org/kordamp/ikonli/ionicons4/Ionicons4MaterialIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ionicons4;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Ionicons4MaterialIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/ionicons4/4.1.2/fonts/ionicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"ion4-md-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Ionicons4Material.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Ionicons4\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/src/main/java/org/kordamp/ikonli/ionicons4/Ionicons4MaterialIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ionicons4;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class Ionicons4MaterialIkonProvider implements IkonProvider<Ionicons4Material> {\n    @Override\n    public Class<Ionicons4Material> getIkon() {\n        return Ionicons4Material.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/src/main/resources/META-INF/resources/ionicons4/4.1.2/LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2015-present Ionic (http://ionic.io/)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE."
  },
  {
    "path": "icon-packs/ikonli-ionicons4-pack/src/main/resources/META-INF/resources/ionicons4/4.1.2/css/ionicons4.css",
    "content": "﻿/*!\n  Ionicons, v4.1.2\n  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/\n  https://twitter.com/benjsperry  https://twitter.com/ionicframework\n  MIT License: https://github.com/driftyco/ionicons\n\n  Android-style icons originally built by Google’s\n  Material Design Icons: https://github.com/google/material-design-icons\n  used under CC BY http://creativecommons.org/licenses/by/4.0/\n  Modified icons to fit ionicon’s grid from original.\n*/\n\n@font-face {\n    font-family: \"Ionicons4\";\n    src: url(\"../fonts/ionicons.eot?v=4.1.2\");\n    src: url(\"../fonts/ionicons.eot?v=4.1.2#iefix\") format(\"embedded-opentype\"), url(\"../fonts/ionicons.woff2?v=4.1.2\") format(\"woff2\"), url(\"../fonts/ionicons.woff?v=4.1.2\") format(\"woff\"), url(\"../fonts/ionicons.ttf?v=4.1.2\") format(\"truetype\"), url(\"../fonts/ionicons.svg?v=4.1.2#Ionicons\") format(\"svg\");\n    font-weight: normal;\n    font-style: normal\n}\n\n.ion,\n.ionicons,\n.ion-ios-add:before,\n.ion-ios-add-circle:before,\n.ion-ios-add-circle-outline:before,\n.ion-ios-airplane:before,\n.ion-ios-alarm:before,\n.ion-ios-albums:before,\n.ion-ios-alert:before,\n.ion-ios-american-football:before,\n.ion-ios-analytics:before,\n.ion-ios-aperture:before,\n.ion-ios-apps:before,\n.ion-ios-appstore:before,\n.ion-ios-archive:before,\n.ion-ios-arrow-back:before,\n.ion-ios-arrow-down:before,\n.ion-ios-arrow-dropdown:before,\n.ion-ios-arrow-dropdown-circle:before,\n.ion-ios-arrow-dropleft:before,\n.ion-ios-arrow-dropleft-circle:before,\n.ion-ios-arrow-dropright:before,\n.ion-ios-arrow-dropright-circle:before,\n.ion-ios-arrow-dropup:before,\n.ion-ios-arrow-dropup-circle:before,\n.ion-ios-arrow-forward:before,\n.ion-ios-arrow-round-back:before,\n.ion-ios-arrow-round-down:before,\n.ion-ios-arrow-round-forward:before,\n.ion-ios-arrow-round-up:before,\n.ion-ios-arrow-up:before,\n.ion-ios-at:before,\n.ion-ios-attach:before,\n.ion-ios-backspace:before,\n.ion-ios-barcode:before,\n.ion-ios-baseball:before,\n.ion-ios-basket:before,\n.ion-ios-basketball:before,\n.ion-ios-battery-charging:before,\n.ion-ios-battery-dead:before,\n.ion-ios-battery-full:before,\n.ion-ios-beaker:before,\n.ion-ios-bed:before,\n.ion-ios-beer:before,\n.ion-ios-bicycle:before,\n.ion-ios-bluetooth:before,\n.ion-ios-boat:before,\n.ion-ios-body:before,\n.ion-ios-bonfire:before,\n.ion-ios-book:before,\n.ion-ios-bookmark:before,\n.ion-ios-bookmarks:before,\n.ion-ios-bowtie:before,\n.ion-ios-briefcase:before,\n.ion-ios-browsers:before,\n.ion-ios-brush:before,\n.ion-ios-bug:before,\n.ion-ios-build:before,\n.ion-ios-bulb:before,\n.ion-ios-bus:before,\n.ion-ios-business:before,\n.ion-ios-cafe:before,\n.ion-ios-calculator:before,\n.ion-ios-calendar:before,\n.ion-ios-call:before,\n.ion-ios-camera:before,\n.ion-ios-car:before,\n.ion-ios-card:before,\n.ion-ios-cart:before,\n.ion-ios-cash:before,\n.ion-ios-cellular:before,\n.ion-ios-chatboxes:before,\n.ion-ios-chatbubbles:before,\n.ion-ios-checkbox:before,\n.ion-ios-checkbox-outline:before,\n.ion-ios-checkmark:before,\n.ion-ios-checkmark-circle:before,\n.ion-ios-checkmark-circle-outline:before,\n.ion-ios-clipboard:before,\n.ion-ios-clock:before,\n.ion-ios-close:before,\n.ion-ios-close-circle:before,\n.ion-ios-close-circle-outline:before,\n.ion-ios-cloud:before,\n.ion-ios-cloud-circle:before,\n.ion-ios-cloud-done:before,\n.ion-ios-cloud-download:before,\n.ion-ios-cloud-outline:before,\n.ion-ios-cloud-upload:before,\n.ion-ios-cloudy:before,\n.ion-ios-cloudy-night:before,\n.ion-ios-code:before,\n.ion-ios-code-download:before,\n.ion-ios-code-working:before,\n.ion-ios-cog:before,\n.ion-ios-color-fill:before,\n.ion-ios-color-filter:before,\n.ion-ios-color-palette:before,\n.ion-ios-color-wand:before,\n.ion-ios-compass:before,\n.ion-ios-construct:before,\n.ion-ios-contact:before,\n.ion-ios-contacts:before,\n.ion-ios-contract:before,\n.ion-ios-contrast:before,\n.ion-ios-copy:before,\n.ion-ios-create:before,\n.ion-ios-crop:before,\n.ion-ios-cube:before,\n.ion-ios-cut:before,\n.ion-ios-desktop:before,\n.ion-ios-disc:before,\n.ion-ios-document:before,\n.ion-ios-done-all:before,\n.ion-ios-download:before,\n.ion-ios-easel:before,\n.ion-ios-egg:before,\n.ion-ios-exit:before,\n.ion-ios-expand:before,\n.ion-ios-eye:before,\n.ion-ios-eye-off:before,\n.ion-ios-fastforward:before,\n.ion-ios-female:before,\n.ion-ios-filing:before,\n.ion-ios-film:before,\n.ion-ios-finger-print:before,\n.ion-ios-fitness:before,\n.ion-ios-flag:before,\n.ion-ios-flame:before,\n.ion-ios-flash:before,\n.ion-ios-flash-off:before,\n.ion-ios-flashlight:before,\n.ion-ios-flask:before,\n.ion-ios-flower:before,\n.ion-ios-folder:before,\n.ion-ios-folder-open:before,\n.ion-ios-football:before,\n.ion-ios-funnel:before,\n.ion-ios-gift:before,\n.ion-ios-git-branch:before,\n.ion-ios-git-commit:before,\n.ion-ios-git-compare:before,\n.ion-ios-git-merge:before,\n.ion-ios-git-network:before,\n.ion-ios-git-pull-request:before,\n.ion-ios-glasses:before,\n.ion-ios-globe:before,\n.ion-ios-grid:before,\n.ion-ios-hammer:before,\n.ion-ios-hand:before,\n.ion-ios-happy:before,\n.ion-ios-headset:before,\n.ion-ios-heart:before,\n.ion-ios-heart-dislike:before,\n.ion-ios-heart-empty:before,\n.ion-ios-heart-half:before,\n.ion-ios-help:before,\n.ion-ios-help-buoy:before,\n.ion-ios-help-circle:before,\n.ion-ios-help-circle-outline:before,\n.ion-ios-home:before,\n.ion-ios-hourglass:before,\n.ion-ios-ice-cream:before,\n.ion-ios-image:before,\n.ion-ios-images:before,\n.ion-ios-infinite:before,\n.ion-ios-information:before,\n.ion-ios-information-circle:before,\n.ion-ios-information-circle-outline:before,\n.ion-ios-jet:before,\n.ion-ios-journal:before,\n.ion-ios-key:before,\n.ion-ios-keypad:before,\n.ion-ios-laptop:before,\n.ion-ios-leaf:before,\n.ion-ios-link:before,\n.ion-ios-list:before,\n.ion-ios-list-box:before,\n.ion-ios-locate:before,\n.ion-ios-lock:before,\n.ion-ios-log-in:before,\n.ion-ios-log-out:before,\n.ion-ios-magnet:before,\n.ion-ios-mail:before,\n.ion-ios-mail-open:before,\n.ion-ios-mail-unread:before,\n.ion-ios-male:before,\n.ion-ios-man:before,\n.ion-ios-map:before,\n.ion-ios-medal:before,\n.ion-ios-medical:before,\n.ion-ios-medkit:before,\n.ion-ios-megaphone:before,\n.ion-ios-menu:before,\n.ion-ios-mic:before,\n.ion-ios-mic-off:before,\n.ion-ios-microphone:before,\n.ion-ios-moon:before,\n.ion-ios-more:before,\n.ion-ios-move:before,\n.ion-ios-musical-note:before,\n.ion-ios-musical-notes:before,\n.ion-ios-navigate:before,\n.ion-ios-notifications:before,\n.ion-ios-notifications-off:before,\n.ion-ios-notifications-outline:before,\n.ion-ios-nuclear:before,\n.ion-ios-nutrition:before,\n.ion-ios-open:before,\n.ion-ios-options:before,\n.ion-ios-outlet:before,\n.ion-ios-paper:before,\n.ion-ios-paper-plane:before,\n.ion-ios-partly-sunny:before,\n.ion-ios-pause:before,\n.ion-ios-paw:before,\n.ion-ios-people:before,\n.ion-ios-person:before,\n.ion-ios-person-add:before,\n.ion-ios-phone-landscape:before,\n.ion-ios-phone-portrait:before,\n.ion-ios-photos:before,\n.ion-ios-pie:before,\n.ion-ios-pin:before,\n.ion-ios-pint:before,\n.ion-ios-pizza:before,\n.ion-ios-planet:before,\n.ion-ios-play:before,\n.ion-ios-play-circle:before,\n.ion-ios-podium:before,\n.ion-ios-power:before,\n.ion-ios-pricetag:before,\n.ion-ios-pricetags:before,\n.ion-ios-print:before,\n.ion-ios-pulse:before,\n.ion-ios-qr-scanner:before,\n.ion-ios-quote:before,\n.ion-ios-radio:before,\n.ion-ios-radio-button-off:before,\n.ion-ios-radio-button-on:before,\n.ion-ios-rainy:before,\n.ion-ios-recording:before,\n.ion-ios-redo:before,\n.ion-ios-refresh:before,\n.ion-ios-refresh-circle:before,\n.ion-ios-remove:before,\n.ion-ios-remove-circle:before,\n.ion-ios-remove-circle-outline:before,\n.ion-ios-reorder:before,\n.ion-ios-repeat:before,\n.ion-ios-resize:before,\n.ion-ios-restaurant:before,\n.ion-ios-return-left:before,\n.ion-ios-return-right:before,\n.ion-ios-reverse-camera:before,\n.ion-ios-rewind:before,\n.ion-ios-ribbon:before,\n.ion-ios-rocket:before,\n.ion-ios-rose:before,\n.ion-ios-sad:before,\n.ion-ios-save:before,\n.ion-ios-school:before,\n.ion-ios-search:before,\n.ion-ios-send:before,\n.ion-ios-settings:before,\n.ion-ios-share:before,\n.ion-ios-share-alt:before,\n.ion-ios-shirt:before,\n.ion-ios-shuffle:before,\n.ion-ios-skip-backward:before,\n.ion-ios-skip-forward:before,\n.ion-ios-snow:before,\n.ion-ios-speedometer:before,\n.ion-ios-square:before,\n.ion-ios-square-outline:before,\n.ion-ios-star:before,\n.ion-ios-star-half:before,\n.ion-ios-star-outline:before,\n.ion-ios-stats:before,\n.ion-ios-stopwatch:before,\n.ion-ios-subway:before,\n.ion-ios-sunny:before,\n.ion-ios-swap:before,\n.ion-ios-switch:before,\n.ion-ios-sync:before,\n.ion-ios-tablet-landscape:before,\n.ion-ios-tablet-portrait:before,\n.ion-ios-tennisball:before,\n.ion-ios-text:before,\n.ion-ios-thermometer:before,\n.ion-ios-thumbs-down:before,\n.ion-ios-thumbs-up:before,\n.ion-ios-thunderstorm:before,\n.ion-ios-time:before,\n.ion-ios-timer:before,\n.ion-ios-today:before,\n.ion-ios-train:before,\n.ion-ios-transgender:before,\n.ion-ios-trash:before,\n.ion-ios-trending-down:before,\n.ion-ios-trending-up:before,\n.ion-ios-trophy:before,\n.ion-ios-tv:before,\n.ion-ios-umbrella:before,\n.ion-ios-undo:before,\n.ion-ios-unlock:before,\n.ion-ios-videocam:before,\n.ion-ios-volume-high:before,\n.ion-ios-volume-low:before,\n.ion-ios-volume-mute:before,\n.ion-ios-volume-off:before,\n.ion-ios-walk:before,\n.ion-ios-wallet:before,\n.ion-ios-warning:before,\n.ion-ios-watch:before,\n.ion-ios-water:before,\n.ion-ios-wifi:before,\n.ion-ios-wine:before,\n.ion-ios-woman:before,\n.ion-logo-android:before,\n.ion-logo-angular:before,\n.ion-logo-apple:before,\n.ion-logo-bitbucket:before,\n.ion-logo-bitcoin:before,\n.ion-logo-buffer:before,\n.ion-logo-chrome:before,\n.ion-logo-closed-captioning:before,\n.ion-logo-codepen:before,\n.ion-logo-css3:before,\n.ion-logo-designernews:before,\n.ion-logo-dribbble:before,\n.ion-logo-dropbox:before,\n.ion-logo-euro:before,\n.ion-logo-facebook:before,\n.ion-logo-flickr:before,\n.ion-logo-foursquare:before,\n.ion-logo-freebsd-devil:before,\n.ion-logo-game-controller-a:before,\n.ion-logo-game-controller-b:before,\n.ion-logo-github:before,\n.ion-logo-google:before,\n.ion-logo-googleplus:before,\n.ion-logo-hackernews:before,\n.ion-logo-html5:before,\n.ion-logo-instagram:before,\n.ion-logo-ionic:before,\n.ion-logo-ionitron:before,\n.ion-logo-javascript:before,\n.ion-logo-linkedin:before,\n.ion-logo-markdown:before,\n.ion-logo-model-s:before,\n.ion-logo-no-smoking:before,\n.ion-logo-nodejs:before,\n.ion-logo-npm:before,\n.ion-logo-octocat:before,\n.ion-logo-pinterest:before,\n.ion-logo-playstation:before,\n.ion-logo-polymer:before,\n.ion-logo-python:before,\n.ion-logo-reddit:before,\n.ion-logo-rss:before,\n.ion-logo-sass:before,\n.ion-logo-skype:before,\n.ion-logo-slack:before,\n.ion-logo-snapchat:before,\n.ion-logo-steam:before,\n.ion-logo-tumblr:before,\n.ion-logo-tux:before,\n.ion-logo-twitch:before,\n.ion-logo-twitter:before,\n.ion-logo-usd:before,\n.ion-logo-vimeo:before,\n.ion-logo-vk:before,\n.ion-logo-whatsapp:before,\n.ion-logo-windows:before,\n.ion-logo-wordpress:before,\n.ion-logo-xbox:before,\n.ion-logo-xing:before,\n.ion-logo-yahoo:before,\n.ion-logo-yen:before,\n.ion-logo-youtube:before,\n.ion-md-add:before,\n.ion-md-add-circle:before,\n.ion-md-add-circle-outline:before,\n.ion-md-airplane:before,\n.ion-md-alarm:before,\n.ion-md-albums:before,\n.ion-md-alert:before,\n.ion-md-american-football:before,\n.ion-md-analytics:before,\n.ion-md-aperture:before,\n.ion-md-apps:before,\n.ion-md-appstore:before,\n.ion-md-archive:before,\n.ion-md-arrow-back:before,\n.ion-md-arrow-down:before,\n.ion-md-arrow-dropdown:before,\n.ion-md-arrow-dropdown-circle:before,\n.ion-md-arrow-dropleft:before,\n.ion-md-arrow-dropleft-circle:before,\n.ion-md-arrow-dropright:before,\n.ion-md-arrow-dropright-circle:before,\n.ion-md-arrow-dropup:before,\n.ion-md-arrow-dropup-circle:before,\n.ion-md-arrow-forward:before,\n.ion-md-arrow-round-back:before,\n.ion-md-arrow-round-down:before,\n.ion-md-arrow-round-forward:before,\n.ion-md-arrow-round-up:before,\n.ion-md-arrow-up:before,\n.ion-md-at:before,\n.ion-md-attach:before,\n.ion-md-backspace:before,\n.ion-md-barcode:before,\n.ion-md-baseball:before,\n.ion-md-basket:before,\n.ion-md-basketball:before,\n.ion-md-battery-charging:before,\n.ion-md-battery-dead:before,\n.ion-md-battery-full:before,\n.ion-md-beaker:before,\n.ion-md-bed:before,\n.ion-md-beer:before,\n.ion-md-bicycle:before,\n.ion-md-bluetooth:before,\n.ion-md-boat:before,\n.ion-md-body:before,\n.ion-md-bonfire:before,\n.ion-md-book:before,\n.ion-md-bookmark:before,\n.ion-md-bookmarks:before,\n.ion-md-bowtie:before,\n.ion-md-briefcase:before,\n.ion-md-browsers:before,\n.ion-md-brush:before,\n.ion-md-bug:before,\n.ion-md-build:before,\n.ion-md-bulb:before,\n.ion-md-bus:before,\n.ion-md-business:before,\n.ion-md-cafe:before,\n.ion-md-calculator:before,\n.ion-md-calendar:before,\n.ion-md-call:before,\n.ion-md-camera:before,\n.ion-md-car:before,\n.ion-md-card:before,\n.ion-md-cart:before,\n.ion-md-cash:before,\n.ion-md-cellular:before,\n.ion-md-chatboxes:before,\n.ion-md-chatbubbles:before,\n.ion-md-checkbox:before,\n.ion-md-checkbox-outline:before,\n.ion-md-checkmark:before,\n.ion-md-checkmark-circle:before,\n.ion-md-checkmark-circle-outline:before,\n.ion-md-clipboard:before,\n.ion-md-clock:before,\n.ion-md-close:before,\n.ion-md-close-circle:before,\n.ion-md-close-circle-outline:before,\n.ion-md-cloud:before,\n.ion-md-cloud-circle:before,\n.ion-md-cloud-done:before,\n.ion-md-cloud-download:before,\n.ion-md-cloud-outline:before,\n.ion-md-cloud-upload:before,\n.ion-md-cloudy:before,\n.ion-md-cloudy-night:before,\n.ion-md-code:before,\n.ion-md-code-download:before,\n.ion-md-code-working:before,\n.ion-md-cog:before,\n.ion-md-color-fill:before,\n.ion-md-color-filter:before,\n.ion-md-color-palette:before,\n.ion-md-color-wand:before,\n.ion-md-compass:before,\n.ion-md-construct:before,\n.ion-md-contact:before,\n.ion-md-contacts:before,\n.ion-md-contract:before,\n.ion-md-contrast:before,\n.ion-md-copy:before,\n.ion-md-create:before,\n.ion-md-crop:before,\n.ion-md-cube:before,\n.ion-md-cut:before,\n.ion-md-desktop:before,\n.ion-md-disc:before,\n.ion-md-document:before,\n.ion-md-done-all:before,\n.ion-md-download:before,\n.ion-md-easel:before,\n.ion-md-egg:before,\n.ion-md-exit:before,\n.ion-md-expand:before,\n.ion-md-eye:before,\n.ion-md-eye-off:before,\n.ion-md-fastforward:before,\n.ion-md-female:before,\n.ion-md-filing:before,\n.ion-md-film:before,\n.ion-md-finger-print:before,\n.ion-md-fitness:before,\n.ion-md-flag:before,\n.ion-md-flame:before,\n.ion-md-flash:before,\n.ion-md-flash-off:before,\n.ion-md-flashlight:before,\n.ion-md-flask:before,\n.ion-md-flower:before,\n.ion-md-folder:before,\n.ion-md-folder-open:before,\n.ion-md-football:before,\n.ion-md-funnel:before,\n.ion-md-gift:before,\n.ion-md-git-branch:before,\n.ion-md-git-commit:before,\n.ion-md-git-compare:before,\n.ion-md-git-merge:before,\n.ion-md-git-network:before,\n.ion-md-git-pull-request:before,\n.ion-md-glasses:before,\n.ion-md-globe:before,\n.ion-md-grid:before,\n.ion-md-hammer:before,\n.ion-md-hand:before,\n.ion-md-happy:before,\n.ion-md-headset:before,\n.ion-md-heart:before,\n.ion-md-heart-dislike:before,\n.ion-md-heart-empty:before,\n.ion-md-heart-half:before,\n.ion-md-help:before,\n.ion-md-help-buoy:before,\n.ion-md-help-circle:before,\n.ion-md-help-circle-outline:before,\n.ion-md-home:before,\n.ion-md-hourglass:before,\n.ion-md-ice-cream:before,\n.ion-md-image:before,\n.ion-md-images:before,\n.ion-md-infinite:before,\n.ion-md-information:before,\n.ion-md-information-circle:before,\n.ion-md-information-circle-outline:before,\n.ion-md-jet:before,\n.ion-md-journal:before,\n.ion-md-key:before,\n.ion-md-keypad:before,\n.ion-md-laptop:before,\n.ion-md-leaf:before,\n.ion-md-link:before,\n.ion-md-list:before,\n.ion-md-list-box:before,\n.ion-md-locate:before,\n.ion-md-lock:before,\n.ion-md-log-in:before,\n.ion-md-log-out:before,\n.ion-md-magnet:before,\n.ion-md-mail:before,\n.ion-md-mail-open:before,\n.ion-md-mail-unread:before,\n.ion-md-male:before,\n.ion-md-man:before,\n.ion-md-map:before,\n.ion-md-medal:before,\n.ion-md-medical:before,\n.ion-md-medkit:before,\n.ion-md-megaphone:before,\n.ion-md-menu:before,\n.ion-md-mic:before,\n.ion-md-mic-off:before,\n.ion-md-microphone:before,\n.ion-md-moon:before,\n.ion-md-more:before,\n.ion-md-move:before,\n.ion-md-musical-note:before,\n.ion-md-musical-notes:before,\n.ion-md-navigate:before,\n.ion-md-notifications:before,\n.ion-md-notifications-off:before,\n.ion-md-notifications-outline:before,\n.ion-md-nuclear:before,\n.ion-md-nutrition:before,\n.ion-md-open:before,\n.ion-md-options:before,\n.ion-md-outlet:before,\n.ion-md-paper:before,\n.ion-md-paper-plane:before,\n.ion-md-partly-sunny:before,\n.ion-md-pause:before,\n.ion-md-paw:before,\n.ion-md-people:before,\n.ion-md-person:before,\n.ion-md-person-add:before,\n.ion-md-phone-landscape:before,\n.ion-md-phone-portrait:before,\n.ion-md-photos:before,\n.ion-md-pie:before,\n.ion-md-pin:before,\n.ion-md-pint:before,\n.ion-md-pizza:before,\n.ion-md-planet:before,\n.ion-md-play:before,\n.ion-md-play-circle:before,\n.ion-md-podium:before,\n.ion-md-power:before,\n.ion-md-pricetag:before,\n.ion-md-pricetags:before,\n.ion-md-print:before,\n.ion-md-pulse:before,\n.ion-md-qr-scanner:before,\n.ion-md-quote:before,\n.ion-md-radio:before,\n.ion-md-radio-button-off:before,\n.ion-md-radio-button-on:before,\n.ion-md-rainy:before,\n.ion-md-recording:before,\n.ion-md-redo:before,\n.ion-md-refresh:before,\n.ion-md-refresh-circle:before,\n.ion-md-remove:before,\n.ion-md-remove-circle:before,\n.ion-md-remove-circle-outline:before,\n.ion-md-reorder:before,\n.ion-md-repeat:before,\n.ion-md-resize:before,\n.ion-md-restaurant:before,\n.ion-md-return-left:before,\n.ion-md-return-right:before,\n.ion-md-reverse-camera:before,\n.ion-md-rewind:before,\n.ion-md-ribbon:before,\n.ion-md-rocket:before,\n.ion-md-rose:before,\n.ion-md-sad:before,\n.ion-md-save:before,\n.ion-md-school:before,\n.ion-md-search:before,\n.ion-md-send:before,\n.ion-md-settings:before,\n.ion-md-share:before,\n.ion-md-share-alt:before,\n.ion-md-shirt:before,\n.ion-md-shuffle:before,\n.ion-md-skip-backward:before,\n.ion-md-skip-forward:before,\n.ion-md-snow:before,\n.ion-md-speedometer:before,\n.ion-md-square:before,\n.ion-md-square-outline:before,\n.ion-md-star:before,\n.ion-md-star-half:before,\n.ion-md-star-outline:before,\n.ion-md-stats:before,\n.ion-md-stopwatch:before,\n.ion-md-subway:before,\n.ion-md-sunny:before,\n.ion-md-swap:before,\n.ion-md-switch:before,\n.ion-md-sync:before,\n.ion-md-tablet-landscape:before,\n.ion-md-tablet-portrait:before,\n.ion-md-tennisball:before,\n.ion-md-text:before,\n.ion-md-thermometer:before,\n.ion-md-thumbs-down:before,\n.ion-md-thumbs-up:before,\n.ion-md-thunderstorm:before,\n.ion-md-time:before,\n.ion-md-timer:before,\n.ion-md-today:before,\n.ion-md-train:before,\n.ion-md-transgender:before,\n.ion-md-trash:before,\n.ion-md-trending-down:before,\n.ion-md-trending-up:before,\n.ion-md-trophy:before,\n.ion-md-tv:before,\n.ion-md-umbrella:before,\n.ion-md-undo:before,\n.ion-md-unlock:before,\n.ion-md-videocam:before,\n.ion-md-volume-high:before,\n.ion-md-volume-low:before,\n.ion-md-volume-mute:before,\n.ion-md-volume-off:before,\n.ion-md-walk:before,\n.ion-md-wallet:before,\n.ion-md-warning:before,\n.ion-md-watch:before,\n.ion-md-water:before,\n.ion-md-wifi:before,\n.ion-md-wine:before,\n.ion-md-woman:before {\n    display: inline-block;\n    font-family: \"Ionicons4\";\n    speak: none;\n    font-style: normal;\n    font-weight: normal;\n    font-variant: normal;\n    text-transform: none;\n    text-rendering: auto;\n    line-height: 1;\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale\n}\n\n.ion-ios-add:before {\n    content: \"\\f102\"\n}\n\n.ion-ios-add-circle:before {\n    content: \"\\f101\"\n}\n\n.ion-ios-add-circle-outline:before {\n    content: \"\\f100\"\n}\n\n.ion-ios-airplane:before {\n    content: \"\\f137\"\n}\n\n.ion-ios-alarm:before {\n    content: \"\\f3c8\"\n}\n\n.ion-ios-albums:before {\n    content: \"\\f3ca\"\n}\n\n.ion-ios-alert:before {\n    content: \"\\f104\"\n}\n\n.ion-ios-american-football:before {\n    content: \"\\f106\"\n}\n\n.ion-ios-analytics:before {\n    content: \"\\f3ce\"\n}\n\n.ion-ios-aperture:before {\n    content: \"\\f108\"\n}\n\n.ion-ios-apps:before {\n    content: \"\\f10a\"\n}\n\n.ion-ios-appstore:before {\n    content: \"\\f10c\"\n}\n\n.ion-ios-archive:before {\n    content: \"\\f10e\"\n}\n\n.ion-ios-arrow-back:before {\n    content: \"\\f3cf\"\n}\n\n.ion-ios-arrow-down:before {\n    content: \"\\f3d0\"\n}\n\n.ion-ios-arrow-dropdown:before {\n    content: \"\\f110\"\n}\n\n.ion-ios-arrow-dropdown-circle:before {\n    content: \"\\f125\"\n}\n\n.ion-ios-arrow-dropleft:before {\n    content: \"\\f112\"\n}\n\n.ion-ios-arrow-dropleft-circle:before {\n    content: \"\\f129\"\n}\n\n.ion-ios-arrow-dropright:before {\n    content: \"\\f114\"\n}\n\n.ion-ios-arrow-dropright-circle:before {\n    content: \"\\f12b\"\n}\n\n.ion-ios-arrow-dropup:before {\n    content: \"\\f116\"\n}\n\n.ion-ios-arrow-dropup-circle:before {\n    content: \"\\f12d\"\n}\n\n.ion-ios-arrow-forward:before {\n    content: \"\\f3d1\"\n}\n\n.ion-ios-arrow-round-back:before {\n    content: \"\\f117\"\n}\n\n.ion-ios-arrow-round-down:before {\n    content: \"\\f118\"\n}\n\n.ion-ios-arrow-round-forward:before {\n    content: \"\\f119\"\n}\n\n.ion-ios-arrow-round-up:before {\n    content: \"\\f11a\"\n}\n\n.ion-ios-arrow-up:before {\n    content: \"\\f3d8\"\n}\n\n.ion-ios-at:before {\n    content: \"\\f3da\"\n}\n\n.ion-ios-attach:before {\n    content: \"\\f11b\"\n}\n\n.ion-ios-backspace:before {\n    content: \"\\f11d\"\n}\n\n.ion-ios-barcode:before {\n    content: \"\\f3dc\"\n}\n\n.ion-ios-baseball:before {\n    content: \"\\f3de\"\n}\n\n.ion-ios-basket:before {\n    content: \"\\f11f\"\n}\n\n.ion-ios-basketball:before {\n    content: \"\\f3e0\"\n}\n\n.ion-ios-battery-charging:before {\n    content: \"\\f120\"\n}\n\n.ion-ios-battery-dead:before {\n    content: \"\\f121\"\n}\n\n.ion-ios-battery-full:before {\n    content: \"\\f122\"\n}\n\n.ion-ios-beaker:before {\n    content: \"\\f124\"\n}\n\n.ion-ios-bed:before {\n    content: \"\\f139\"\n}\n\n.ion-ios-beer:before {\n    content: \"\\f126\"\n}\n\n.ion-ios-bicycle:before {\n    content: \"\\f127\"\n}\n\n.ion-ios-bluetooth:before {\n    content: \"\\f128\"\n}\n\n.ion-ios-boat:before {\n    content: \"\\f12a\"\n}\n\n.ion-ios-body:before {\n    content: \"\\f3e4\"\n}\n\n.ion-ios-bonfire:before {\n    content: \"\\f12c\"\n}\n\n.ion-ios-book:before {\n    content: \"\\f3e8\"\n}\n\n.ion-ios-bookmark:before {\n    content: \"\\f12e\"\n}\n\n.ion-ios-bookmarks:before {\n    content: \"\\f3ea\"\n}\n\n.ion-ios-bowtie:before {\n    content: \"\\f130\"\n}\n\n.ion-ios-briefcase:before {\n    content: \"\\f3ee\"\n}\n\n.ion-ios-browsers:before {\n    content: \"\\f3f0\"\n}\n\n.ion-ios-brush:before {\n    content: \"\\f132\"\n}\n\n.ion-ios-bug:before {\n    content: \"\\f134\"\n}\n\n.ion-ios-build:before {\n    content: \"\\f136\"\n}\n\n.ion-ios-bulb:before {\n    content: \"\\f138\"\n}\n\n.ion-ios-bus:before {\n    content: \"\\f13a\"\n}\n\n.ion-ios-business:before {\n    content: \"\\f1a3\"\n}\n\n.ion-ios-cafe:before {\n    content: \"\\f13c\"\n}\n\n.ion-ios-calculator:before {\n    content: \"\\f3f2\"\n}\n\n.ion-ios-calendar:before {\n    content: \"\\f3f4\"\n}\n\n.ion-ios-call:before {\n    content: \"\\f13e\"\n}\n\n.ion-ios-camera:before {\n    content: \"\\f3f6\"\n}\n\n.ion-ios-car:before {\n    content: \"\\f140\"\n}\n\n.ion-ios-card:before {\n    content: \"\\f142\"\n}\n\n.ion-ios-cart:before {\n    content: \"\\f3f8\"\n}\n\n.ion-ios-cash:before {\n    content: \"\\f144\"\n}\n\n.ion-ios-cellular:before {\n    content: \"\\f13d\"\n}\n\n.ion-ios-chatboxes:before {\n    content: \"\\f3fa\"\n}\n\n.ion-ios-chatbubbles:before {\n    content: \"\\f146\"\n}\n\n.ion-ios-checkbox:before {\n    content: \"\\f148\"\n}\n\n.ion-ios-checkbox-outline:before {\n    content: \"\\f147\"\n}\n\n.ion-ios-checkmark:before {\n    content: \"\\f3ff\"\n}\n\n.ion-ios-checkmark-circle:before {\n    content: \"\\f14a\"\n}\n\n.ion-ios-checkmark-circle-outline:before {\n    content: \"\\f149\"\n}\n\n.ion-ios-clipboard:before {\n    content: \"\\f14c\"\n}\n\n.ion-ios-clock:before {\n    content: \"\\f403\"\n}\n\n.ion-ios-close:before {\n    content: \"\\f406\"\n}\n\n.ion-ios-close-circle:before {\n    content: \"\\f14e\"\n}\n\n.ion-ios-close-circle-outline:before {\n    content: \"\\f14d\"\n}\n\n.ion-ios-cloud:before {\n    content: \"\\f40c\"\n}\n\n.ion-ios-cloud-circle:before {\n    content: \"\\f152\"\n}\n\n.ion-ios-cloud-done:before {\n    content: \"\\f154\"\n}\n\n.ion-ios-cloud-download:before {\n    content: \"\\f408\"\n}\n\n.ion-ios-cloud-outline:before {\n    content: \"\\f409\"\n}\n\n.ion-ios-cloud-upload:before {\n    content: \"\\f40b\"\n}\n\n.ion-ios-cloudy:before {\n    content: \"\\f410\"\n}\n\n.ion-ios-cloudy-night:before {\n    content: \"\\f40e\"\n}\n\n.ion-ios-code:before {\n    content: \"\\f157\"\n}\n\n.ion-ios-code-download:before {\n    content: \"\\f155\"\n}\n\n.ion-ios-code-working:before {\n    content: \"\\f156\"\n}\n\n.ion-ios-cog:before {\n    content: \"\\f412\"\n}\n\n.ion-ios-color-fill:before {\n    content: \"\\f159\"\n}\n\n.ion-ios-color-filter:before {\n    content: \"\\f414\"\n}\n\n.ion-ios-color-palette:before {\n    content: \"\\f15b\"\n}\n\n.ion-ios-color-wand:before {\n    content: \"\\f416\"\n}\n\n.ion-ios-compass:before {\n    content: \"\\f15d\"\n}\n\n.ion-ios-construct:before {\n    content: \"\\f15f\"\n}\n\n.ion-ios-contact:before {\n    content: \"\\f41a\"\n}\n\n.ion-ios-contacts:before {\n    content: \"\\f161\"\n}\n\n.ion-ios-contract:before {\n    content: \"\\f162\"\n}\n\n.ion-ios-contrast:before {\n    content: \"\\f163\"\n}\n\n.ion-ios-copy:before {\n    content: \"\\f41c\"\n}\n\n.ion-ios-create:before {\n    content: \"\\f165\"\n}\n\n.ion-ios-crop:before {\n    content: \"\\f41e\"\n}\n\n.ion-ios-cube:before {\n    content: \"\\f168\"\n}\n\n.ion-ios-cut:before {\n    content: \"\\f16a\"\n}\n\n.ion-ios-desktop:before {\n    content: \"\\f16c\"\n}\n\n.ion-ios-disc:before {\n    content: \"\\f16e\"\n}\n\n.ion-ios-document:before {\n    content: \"\\f170\"\n}\n\n.ion-ios-done-all:before {\n    content: \"\\f171\"\n}\n\n.ion-ios-download:before {\n    content: \"\\f420\"\n}\n\n.ion-ios-easel:before {\n    content: \"\\f173\"\n}\n\n.ion-ios-egg:before {\n    content: \"\\f175\"\n}\n\n.ion-ios-exit:before {\n    content: \"\\f177\"\n}\n\n.ion-ios-expand:before {\n    content: \"\\f178\"\n}\n\n.ion-ios-eye:before {\n    content: \"\\f425\"\n}\n\n.ion-ios-eye-off:before {\n    content: \"\\f17a\"\n}\n\n.ion-ios-fastforward:before {\n    content: \"\\f427\"\n}\n\n.ion-ios-female:before {\n    content: \"\\f17b\"\n}\n\n.ion-ios-filing:before {\n    content: \"\\f429\"\n}\n\n.ion-ios-film:before {\n    content: \"\\f42b\"\n}\n\n.ion-ios-finger-print:before {\n    content: \"\\f17c\"\n}\n\n.ion-ios-fitness:before {\n    content: \"\\f1ab\"\n}\n\n.ion-ios-flag:before {\n    content: \"\\f42d\"\n}\n\n.ion-ios-flame:before {\n    content: \"\\f42f\"\n}\n\n.ion-ios-flash:before {\n    content: \"\\f17e\"\n}\n\n.ion-ios-flash-off:before {\n    content: \"\\f12f\"\n}\n\n.ion-ios-flashlight:before {\n    content: \"\\f141\"\n}\n\n.ion-ios-flask:before {\n    content: \"\\f431\"\n}\n\n.ion-ios-flower:before {\n    content: \"\\f433\"\n}\n\n.ion-ios-folder:before {\n    content: \"\\f435\"\n}\n\n.ion-ios-folder-open:before {\n    content: \"\\f180\"\n}\n\n.ion-ios-football:before {\n    content: \"\\f437\"\n}\n\n.ion-ios-funnel:before {\n    content: \"\\f182\"\n}\n\n.ion-ios-gift:before {\n    content: \"\\f191\"\n}\n\n.ion-ios-git-branch:before {\n    content: \"\\f183\"\n}\n\n.ion-ios-git-commit:before {\n    content: \"\\f184\"\n}\n\n.ion-ios-git-compare:before {\n    content: \"\\f185\"\n}\n\n.ion-ios-git-merge:before {\n    content: \"\\f186\"\n}\n\n.ion-ios-git-network:before {\n    content: \"\\f187\"\n}\n\n.ion-ios-git-pull-request:before {\n    content: \"\\f188\"\n}\n\n.ion-ios-glasses:before {\n    content: \"\\f43f\"\n}\n\n.ion-ios-globe:before {\n    content: \"\\f18a\"\n}\n\n.ion-ios-grid:before {\n    content: \"\\f18c\"\n}\n\n.ion-ios-hammer:before {\n    content: \"\\f18e\"\n}\n\n.ion-ios-hand:before {\n    content: \"\\f190\"\n}\n\n.ion-ios-happy:before {\n    content: \"\\f192\"\n}\n\n.ion-ios-headset:before {\n    content: \"\\f194\"\n}\n\n.ion-ios-heart:before {\n    content: \"\\f443\"\n}\n\n.ion-ios-heart-dislike:before {\n    content: \"\\f13f\"\n}\n\n.ion-ios-heart-empty:before {\n    content: \"\\f19b\"\n}\n\n.ion-ios-heart-half:before {\n    content: \"\\f19d\"\n}\n\n.ion-ios-help:before {\n    content: \"\\f446\"\n}\n\n.ion-ios-help-buoy:before {\n    content: \"\\f196\"\n}\n\n.ion-ios-help-circle:before {\n    content: \"\\f198\"\n}\n\n.ion-ios-help-circle-outline:before {\n    content: \"\\f197\"\n}\n\n.ion-ios-home:before {\n    content: \"\\f448\"\n}\n\n.ion-ios-hourglass:before {\n    content: \"\\f103\"\n}\n\n.ion-ios-ice-cream:before {\n    content: \"\\f19a\"\n}\n\n.ion-ios-image:before {\n    content: \"\\f19c\"\n}\n\n.ion-ios-images:before {\n    content: \"\\f19e\"\n}\n\n.ion-ios-infinite:before {\n    content: \"\\f44a\"\n}\n\n.ion-ios-information:before {\n    content: \"\\f44d\"\n}\n\n.ion-ios-information-circle:before {\n    content: \"\\f1a0\"\n}\n\n.ion-ios-information-circle-outline:before {\n    content: \"\\f19f\"\n}\n\n.ion-ios-jet:before {\n    content: \"\\f1a5\"\n}\n\n.ion-ios-journal:before {\n    content: \"\\f189\"\n}\n\n.ion-ios-key:before {\n    content: \"\\f1a7\"\n}\n\n.ion-ios-keypad:before {\n    content: \"\\f450\"\n}\n\n.ion-ios-laptop:before {\n    content: \"\\f1a8\"\n}\n\n.ion-ios-leaf:before {\n    content: \"\\f1aa\"\n}\n\n.ion-ios-link:before {\n    content: \"\\f22a\"\n}\n\n.ion-ios-list:before {\n    content: \"\\f454\"\n}\n\n.ion-ios-list-box:before {\n    content: \"\\f143\"\n}\n\n.ion-ios-locate:before {\n    content: \"\\f1ae\"\n}\n\n.ion-ios-lock:before {\n    content: \"\\f1b0\"\n}\n\n.ion-ios-log-in:before {\n    content: \"\\f1b1\"\n}\n\n.ion-ios-log-out:before {\n    content: \"\\f1b2\"\n}\n\n.ion-ios-magnet:before {\n    content: \"\\f1b4\"\n}\n\n.ion-ios-mail:before {\n    content: \"\\f1b8\"\n}\n\n.ion-ios-mail-open:before {\n    content: \"\\f1b6\"\n}\n\n.ion-ios-mail-unread:before {\n    content: \"\\f145\"\n}\n\n.ion-ios-male:before {\n    content: \"\\f1b9\"\n}\n\n.ion-ios-man:before {\n    content: \"\\f1bb\"\n}\n\n.ion-ios-map:before {\n    content: \"\\f1bd\"\n}\n\n.ion-ios-medal:before {\n    content: \"\\f1bf\"\n}\n\n.ion-ios-medical:before {\n    content: \"\\f45c\"\n}\n\n.ion-ios-medkit:before {\n    content: \"\\f45e\"\n}\n\n.ion-ios-megaphone:before {\n    content: \"\\f1c1\"\n}\n\n.ion-ios-menu:before {\n    content: \"\\f1c3\"\n}\n\n.ion-ios-mic:before {\n    content: \"\\f461\"\n}\n\n.ion-ios-mic-off:before {\n    content: \"\\f45f\"\n}\n\n.ion-ios-microphone:before {\n    content: \"\\f1c6\"\n}\n\n.ion-ios-moon:before {\n    content: \"\\f468\"\n}\n\n.ion-ios-more:before {\n    content: \"\\f1c8\"\n}\n\n.ion-ios-move:before {\n    content: \"\\f1cb\"\n}\n\n.ion-ios-musical-note:before {\n    content: \"\\f46b\"\n}\n\n.ion-ios-musical-notes:before {\n    content: \"\\f46c\"\n}\n\n.ion-ios-navigate:before {\n    content: \"\\f46e\"\n}\n\n.ion-ios-notifications:before {\n    content: \"\\f1d3\"\n}\n\n.ion-ios-notifications-off:before {\n    content: \"\\f1d1\"\n}\n\n.ion-ios-notifications-outline:before {\n    content: \"\\f133\"\n}\n\n.ion-ios-nuclear:before {\n    content: \"\\f1d5\"\n}\n\n.ion-ios-nutrition:before {\n    content: \"\\f470\"\n}\n\n.ion-ios-open:before {\n    content: \"\\f1d7\"\n}\n\n.ion-ios-options:before {\n    content: \"\\f1d9\"\n}\n\n.ion-ios-outlet:before {\n    content: \"\\f1db\"\n}\n\n.ion-ios-paper:before {\n    content: \"\\f472\"\n}\n\n.ion-ios-paper-plane:before {\n    content: \"\\f1dd\"\n}\n\n.ion-ios-partly-sunny:before {\n    content: \"\\f1df\"\n}\n\n.ion-ios-pause:before {\n    content: \"\\f478\"\n}\n\n.ion-ios-paw:before {\n    content: \"\\f47a\"\n}\n\n.ion-ios-people:before {\n    content: \"\\f47c\"\n}\n\n.ion-ios-person:before {\n    content: \"\\f47e\"\n}\n\n.ion-ios-person-add:before {\n    content: \"\\f1e1\"\n}\n\n.ion-ios-phone-landscape:before {\n    content: \"\\f1e2\"\n}\n\n.ion-ios-phone-portrait:before {\n    content: \"\\f1e3\"\n}\n\n.ion-ios-photos:before {\n    content: \"\\f482\"\n}\n\n.ion-ios-pie:before {\n    content: \"\\f484\"\n}\n\n.ion-ios-pin:before {\n    content: \"\\f1e5\"\n}\n\n.ion-ios-pint:before {\n    content: \"\\f486\"\n}\n\n.ion-ios-pizza:before {\n    content: \"\\f1e7\"\n}\n\n.ion-ios-planet:before {\n    content: \"\\f1eb\"\n}\n\n.ion-ios-play:before {\n    content: \"\\f488\"\n}\n\n.ion-ios-play-circle:before {\n    content: \"\\f113\"\n}\n\n.ion-ios-podium:before {\n    content: \"\\f1ed\"\n}\n\n.ion-ios-power:before {\n    content: \"\\f1ef\"\n}\n\n.ion-ios-pricetag:before {\n    content: \"\\f48d\"\n}\n\n.ion-ios-pricetags:before {\n    content: \"\\f48f\"\n}\n\n.ion-ios-print:before {\n    content: \"\\f1f1\"\n}\n\n.ion-ios-pulse:before {\n    content: \"\\f493\"\n}\n\n.ion-ios-qr-scanner:before {\n    content: \"\\f1f3\"\n}\n\n.ion-ios-quote:before {\n    content: \"\\f1f5\"\n}\n\n.ion-ios-radio:before {\n    content: \"\\f1f9\"\n}\n\n.ion-ios-radio-button-off:before {\n    content: \"\\f1f6\"\n}\n\n.ion-ios-radio-button-on:before {\n    content: \"\\f1f7\"\n}\n\n.ion-ios-rainy:before {\n    content: \"\\f495\"\n}\n\n.ion-ios-recording:before {\n    content: \"\\f497\"\n}\n\n.ion-ios-redo:before {\n    content: \"\\f499\"\n}\n\n.ion-ios-refresh:before {\n    content: \"\\f49c\"\n}\n\n.ion-ios-refresh-circle:before {\n    content: \"\\f135\"\n}\n\n.ion-ios-remove:before {\n    content: \"\\f1fc\"\n}\n\n.ion-ios-remove-circle:before {\n    content: \"\\f1fb\"\n}\n\n.ion-ios-remove-circle-outline:before {\n    content: \"\\f1fa\"\n}\n\n.ion-ios-reorder:before {\n    content: \"\\f1fd\"\n}\n\n.ion-ios-repeat:before {\n    content: \"\\f1fe\"\n}\n\n.ion-ios-resize:before {\n    content: \"\\f1ff\"\n}\n\n.ion-ios-restaurant:before {\n    content: \"\\f201\"\n}\n\n.ion-ios-return-left:before {\n    content: \"\\f202\"\n}\n\n.ion-ios-return-right:before {\n    content: \"\\f203\"\n}\n\n.ion-ios-reverse-camera:before {\n    content: \"\\f49f\"\n}\n\n.ion-ios-rewind:before {\n    content: \"\\f4a1\"\n}\n\n.ion-ios-ribbon:before {\n    content: \"\\f205\"\n}\n\n.ion-ios-rocket:before {\n    content: \"\\f14b\"\n}\n\n.ion-ios-rose:before {\n    content: \"\\f4a3\"\n}\n\n.ion-ios-sad:before {\n    content: \"\\f207\"\n}\n\n.ion-ios-save:before {\n    content: \"\\f1a6\"\n}\n\n.ion-ios-school:before {\n    content: \"\\f209\"\n}\n\n.ion-ios-search:before {\n    content: \"\\f4a5\"\n}\n\n.ion-ios-send:before {\n    content: \"\\f20c\"\n}\n\n.ion-ios-settings:before {\n    content: \"\\f4a7\"\n}\n\n.ion-ios-share:before {\n    content: \"\\f211\"\n}\n\n.ion-ios-share-alt:before {\n    content: \"\\f20f\"\n}\n\n.ion-ios-shirt:before {\n    content: \"\\f213\"\n}\n\n.ion-ios-shuffle:before {\n    content: \"\\f4a9\"\n}\n\n.ion-ios-skip-backward:before {\n    content: \"\\f215\"\n}\n\n.ion-ios-skip-forward:before {\n    content: \"\\f217\"\n}\n\n.ion-ios-snow:before {\n    content: \"\\f218\"\n}\n\n.ion-ios-speedometer:before {\n    content: \"\\f4b0\"\n}\n\n.ion-ios-square:before {\n    content: \"\\f21a\"\n}\n\n.ion-ios-square-outline:before {\n    content: \"\\f15c\"\n}\n\n.ion-ios-star:before {\n    content: \"\\f4b3\"\n}\n\n.ion-ios-star-half:before {\n    content: \"\\f4b1\"\n}\n\n.ion-ios-star-outline:before {\n    content: \"\\f4b2\"\n}\n\n.ion-ios-stats:before {\n    content: \"\\f21c\"\n}\n\n.ion-ios-stopwatch:before {\n    content: \"\\f4b5\"\n}\n\n.ion-ios-subway:before {\n    content: \"\\f21e\"\n}\n\n.ion-ios-sunny:before {\n    content: \"\\f4b7\"\n}\n\n.ion-ios-swap:before {\n    content: \"\\f21f\"\n}\n\n.ion-ios-switch:before {\n    content: \"\\f221\"\n}\n\n.ion-ios-sync:before {\n    content: \"\\f222\"\n}\n\n.ion-ios-tablet-landscape:before {\n    content: \"\\f223\"\n}\n\n.ion-ios-tablet-portrait:before {\n    content: \"\\f24e\"\n}\n\n.ion-ios-tennisball:before {\n    content: \"\\f4bb\"\n}\n\n.ion-ios-text:before {\n    content: \"\\f250\"\n}\n\n.ion-ios-thermometer:before {\n    content: \"\\f252\"\n}\n\n.ion-ios-thumbs-down:before {\n    content: \"\\f254\"\n}\n\n.ion-ios-thumbs-up:before {\n    content: \"\\f256\"\n}\n\n.ion-ios-thunderstorm:before {\n    content: \"\\f4bd\"\n}\n\n.ion-ios-time:before {\n    content: \"\\f4bf\"\n}\n\n.ion-ios-timer:before {\n    content: \"\\f4c1\"\n}\n\n.ion-ios-today:before {\n    content: \"\\f14f\"\n}\n\n.ion-ios-train:before {\n    content: \"\\f258\"\n}\n\n.ion-ios-transgender:before {\n    content: \"\\f259\"\n}\n\n.ion-ios-trash:before {\n    content: \"\\f4c5\"\n}\n\n.ion-ios-trending-down:before {\n    content: \"\\f25a\"\n}\n\n.ion-ios-trending-up:before {\n    content: \"\\f25b\"\n}\n\n.ion-ios-trophy:before {\n    content: \"\\f25d\"\n}\n\n.ion-ios-tv:before {\n    content: \"\\f115\"\n}\n\n.ion-ios-umbrella:before {\n    content: \"\\f25f\"\n}\n\n.ion-ios-undo:before {\n    content: \"\\f4c7\"\n}\n\n.ion-ios-unlock:before {\n    content: \"\\f261\"\n}\n\n.ion-ios-videocam:before {\n    content: \"\\f4cd\"\n}\n\n.ion-ios-volume-high:before {\n    content: \"\\f11c\"\n}\n\n.ion-ios-volume-low:before {\n    content: \"\\f11e\"\n}\n\n.ion-ios-volume-mute:before {\n    content: \"\\f263\"\n}\n\n.ion-ios-volume-off:before {\n    content: \"\\f264\"\n}\n\n.ion-ios-walk:before {\n    content: \"\\f266\"\n}\n\n.ion-ios-wallet:before {\n    content: \"\\f18b\"\n}\n\n.ion-ios-warning:before {\n    content: \"\\f268\"\n}\n\n.ion-ios-watch:before {\n    content: \"\\f269\"\n}\n\n.ion-ios-water:before {\n    content: \"\\f26b\"\n}\n\n.ion-ios-wifi:before {\n    content: \"\\f26d\"\n}\n\n.ion-ios-wine:before {\n    content: \"\\f26f\"\n}\n\n.ion-ios-woman:before {\n    content: \"\\f271\"\n}\n\n.ion-logo-android:before {\n    content: \"\\f225\"\n}\n\n.ion-logo-angular:before {\n    content: \"\\f227\"\n}\n\n.ion-logo-apple:before {\n    content: \"\\f229\"\n}\n\n.ion-logo-bitbucket:before {\n    content: \"\\f193\"\n}\n\n.ion-logo-bitcoin:before {\n    content: \"\\f22b\"\n}\n\n.ion-logo-buffer:before {\n    content: \"\\f22d\"\n}\n\n.ion-logo-chrome:before {\n    content: \"\\f22f\"\n}\n\n.ion-logo-closed-captioning:before {\n    content: \"\\f105\"\n}\n\n.ion-logo-codepen:before {\n    content: \"\\f230\"\n}\n\n.ion-logo-css3:before {\n    content: \"\\f231\"\n}\n\n.ion-logo-designernews:before {\n    content: \"\\f232\"\n}\n\n.ion-logo-dribbble:before {\n    content: \"\\f233\"\n}\n\n.ion-logo-dropbox:before {\n    content: \"\\f234\"\n}\n\n.ion-logo-euro:before {\n    content: \"\\f235\"\n}\n\n.ion-logo-facebook:before {\n    content: \"\\f236\"\n}\n\n.ion-logo-flickr:before {\n    content: \"\\f107\"\n}\n\n.ion-logo-foursquare:before {\n    content: \"\\f237\"\n}\n\n.ion-logo-freebsd-devil:before {\n    content: \"\\f238\"\n}\n\n.ion-logo-game-controller-a:before {\n    content: \"\\f13b\"\n}\n\n.ion-logo-game-controller-b:before {\n    content: \"\\f181\"\n}\n\n.ion-logo-github:before {\n    content: \"\\f239\"\n}\n\n.ion-logo-google:before {\n    content: \"\\f23a\"\n}\n\n.ion-logo-googleplus:before {\n    content: \"\\f23b\"\n}\n\n.ion-logo-hackernews:before {\n    content: \"\\f23c\"\n}\n\n.ion-logo-html5:before {\n    content: \"\\f23d\"\n}\n\n.ion-logo-instagram:before {\n    content: \"\\f23e\"\n}\n\n.ion-logo-ionic:before {\n    content: \"\\f150\"\n}\n\n.ion-logo-ionitron:before {\n    content: \"\\f151\"\n}\n\n.ion-logo-javascript:before {\n    content: \"\\f23f\"\n}\n\n.ion-logo-linkedin:before {\n    content: \"\\f240\"\n}\n\n.ion-logo-markdown:before {\n    content: \"\\f241\"\n}\n\n.ion-logo-model-s:before {\n    content: \"\\f153\"\n}\n\n.ion-logo-no-smoking:before {\n    content: \"\\f109\"\n}\n\n.ion-logo-nodejs:before {\n    content: \"\\f242\"\n}\n\n.ion-logo-npm:before {\n    content: \"\\f195\"\n}\n\n.ion-logo-octocat:before {\n    content: \"\\f243\"\n}\n\n.ion-logo-pinterest:before {\n    content: \"\\f244\"\n}\n\n.ion-logo-playstation:before {\n    content: \"\\f245\"\n}\n\n.ion-logo-polymer:before {\n    content: \"\\f15e\"\n}\n\n.ion-logo-python:before {\n    content: \"\\f246\"\n}\n\n.ion-logo-reddit:before {\n    content: \"\\f247\"\n}\n\n.ion-logo-rss:before {\n    content: \"\\f248\"\n}\n\n.ion-logo-sass:before {\n    content: \"\\f249\"\n}\n\n.ion-logo-skype:before {\n    content: \"\\f24a\"\n}\n\n.ion-logo-slack:before {\n    content: \"\\f10b\"\n}\n\n.ion-logo-snapchat:before {\n    content: \"\\f24b\"\n}\n\n.ion-logo-steam:before {\n    content: \"\\f24c\"\n}\n\n.ion-logo-tumblr:before {\n    content: \"\\f24d\"\n}\n\n.ion-logo-tux:before {\n    content: \"\\f2ae\"\n}\n\n.ion-logo-twitch:before {\n    content: \"\\f2af\"\n}\n\n.ion-logo-twitter:before {\n    content: \"\\f2b0\"\n}\n\n.ion-logo-usd:before {\n    content: \"\\f2b1\"\n}\n\n.ion-logo-vimeo:before {\n    content: \"\\f2c4\"\n}\n\n.ion-logo-vk:before {\n    content: \"\\f10d\"\n}\n\n.ion-logo-whatsapp:before {\n    content: \"\\f2c5\"\n}\n\n.ion-logo-windows:before {\n    content: \"\\f32f\"\n}\n\n.ion-logo-wordpress:before {\n    content: \"\\f330\"\n}\n\n.ion-logo-xbox:before {\n    content: \"\\f34c\"\n}\n\n.ion-logo-xing:before {\n    content: \"\\f10f\"\n}\n\n.ion-logo-yahoo:before {\n    content: \"\\f34d\"\n}\n\n.ion-logo-yen:before {\n    content: \"\\f34e\"\n}\n\n.ion-logo-youtube:before {\n    content: \"\\f34f\"\n}\n\n.ion-md-add:before {\n    content: \"\\f273\"\n}\n\n.ion-md-add-circle:before {\n    content: \"\\f272\"\n}\n\n.ion-md-add-circle-outline:before {\n    content: \"\\f158\"\n}\n\n.ion-md-airplane:before {\n    content: \"\\f15a\"\n}\n\n.ion-md-alarm:before {\n    content: \"\\f274\"\n}\n\n.ion-md-albums:before {\n    content: \"\\f275\"\n}\n\n.ion-md-alert:before {\n    content: \"\\f276\"\n}\n\n.ion-md-american-football:before {\n    content: \"\\f277\"\n}\n\n.ion-md-analytics:before {\n    content: \"\\f278\"\n}\n\n.ion-md-aperture:before {\n    content: \"\\f279\"\n}\n\n.ion-md-apps:before {\n    content: \"\\f27a\"\n}\n\n.ion-md-appstore:before {\n    content: \"\\f27b\"\n}\n\n.ion-md-archive:before {\n    content: \"\\f27c\"\n}\n\n.ion-md-arrow-back:before {\n    content: \"\\f27d\"\n}\n\n.ion-md-arrow-down:before {\n    content: \"\\f27e\"\n}\n\n.ion-md-arrow-dropdown:before {\n    content: \"\\f280\"\n}\n\n.ion-md-arrow-dropdown-circle:before {\n    content: \"\\f27f\"\n}\n\n.ion-md-arrow-dropleft:before {\n    content: \"\\f282\"\n}\n\n.ion-md-arrow-dropleft-circle:before {\n    content: \"\\f281\"\n}\n\n.ion-md-arrow-dropright:before {\n    content: \"\\f284\"\n}\n\n.ion-md-arrow-dropright-circle:before {\n    content: \"\\f283\"\n}\n\n.ion-md-arrow-dropup:before {\n    content: \"\\f286\"\n}\n\n.ion-md-arrow-dropup-circle:before {\n    content: \"\\f285\"\n}\n\n.ion-md-arrow-forward:before {\n    content: \"\\f287\"\n}\n\n.ion-md-arrow-round-back:before {\n    content: \"\\f288\"\n}\n\n.ion-md-arrow-round-down:before {\n    content: \"\\f289\"\n}\n\n.ion-md-arrow-round-forward:before {\n    content: \"\\f28a\"\n}\n\n.ion-md-arrow-round-up:before {\n    content: \"\\f28b\"\n}\n\n.ion-md-arrow-up:before {\n    content: \"\\f28c\"\n}\n\n.ion-md-at:before {\n    content: \"\\f28d\"\n}\n\n.ion-md-attach:before {\n    content: \"\\f28e\"\n}\n\n.ion-md-backspace:before {\n    content: \"\\f28f\"\n}\n\n.ion-md-barcode:before {\n    content: \"\\f290\"\n}\n\n.ion-md-baseball:before {\n    content: \"\\f291\"\n}\n\n.ion-md-basket:before {\n    content: \"\\f292\"\n}\n\n.ion-md-basketball:before {\n    content: \"\\f293\"\n}\n\n.ion-md-battery-charging:before {\n    content: \"\\f294\"\n}\n\n.ion-md-battery-dead:before {\n    content: \"\\f295\"\n}\n\n.ion-md-battery-full:before {\n    content: \"\\f296\"\n}\n\n.ion-md-beaker:before {\n    content: \"\\f297\"\n}\n\n.ion-md-bed:before {\n    content: \"\\f160\"\n}\n\n.ion-md-beer:before {\n    content: \"\\f298\"\n}\n\n.ion-md-bicycle:before {\n    content: \"\\f299\"\n}\n\n.ion-md-bluetooth:before {\n    content: \"\\f29a\"\n}\n\n.ion-md-boat:before {\n    content: \"\\f29b\"\n}\n\n.ion-md-body:before {\n    content: \"\\f29c\"\n}\n\n.ion-md-bonfire:before {\n    content: \"\\f29d\"\n}\n\n.ion-md-book:before {\n    content: \"\\f29e\"\n}\n\n.ion-md-bookmark:before {\n    content: \"\\f29f\"\n}\n\n.ion-md-bookmarks:before {\n    content: \"\\f2a0\"\n}\n\n.ion-md-bowtie:before {\n    content: \"\\f2a1\"\n}\n\n.ion-md-briefcase:before {\n    content: \"\\f2a2\"\n}\n\n.ion-md-browsers:before {\n    content: \"\\f2a3\"\n}\n\n.ion-md-brush:before {\n    content: \"\\f2a4\"\n}\n\n.ion-md-bug:before {\n    content: \"\\f2a5\"\n}\n\n.ion-md-build:before {\n    content: \"\\f2a6\"\n}\n\n.ion-md-bulb:before {\n    content: \"\\f2a7\"\n}\n\n.ion-md-bus:before {\n    content: \"\\f2a8\"\n}\n\n.ion-md-business:before {\n    content: \"\\f1a4\"\n}\n\n.ion-md-cafe:before {\n    content: \"\\f2a9\"\n}\n\n.ion-md-calculator:before {\n    content: \"\\f2aa\"\n}\n\n.ion-md-calendar:before {\n    content: \"\\f2ab\"\n}\n\n.ion-md-call:before {\n    content: \"\\f2ac\"\n}\n\n.ion-md-camera:before {\n    content: \"\\f2ad\"\n}\n\n.ion-md-car:before {\n    content: \"\\f2b2\"\n}\n\n.ion-md-card:before {\n    content: \"\\f2b3\"\n}\n\n.ion-md-cart:before {\n    content: \"\\f2b4\"\n}\n\n.ion-md-cash:before {\n    content: \"\\f2b5\"\n}\n\n.ion-md-cellular:before {\n    content: \"\\f164\"\n}\n\n.ion-md-chatboxes:before {\n    content: \"\\f2b6\"\n}\n\n.ion-md-chatbubbles:before {\n    content: \"\\f2b7\"\n}\n\n.ion-md-checkbox:before {\n    content: \"\\f2b9\"\n}\n\n.ion-md-checkbox-outline:before {\n    content: \"\\f2b8\"\n}\n\n.ion-md-checkmark:before {\n    content: \"\\f2bc\"\n}\n\n.ion-md-checkmark-circle:before {\n    content: \"\\f2bb\"\n}\n\n.ion-md-checkmark-circle-outline:before {\n    content: \"\\f2ba\"\n}\n\n.ion-md-clipboard:before {\n    content: \"\\f2bd\"\n}\n\n.ion-md-clock:before {\n    content: \"\\f2be\"\n}\n\n.ion-md-close:before {\n    content: \"\\f2c0\"\n}\n\n.ion-md-close-circle:before {\n    content: \"\\f2bf\"\n}\n\n.ion-md-close-circle-outline:before {\n    content: \"\\f166\"\n}\n\n.ion-md-cloud:before {\n    content: \"\\f2c9\"\n}\n\n.ion-md-cloud-circle:before {\n    content: \"\\f2c2\"\n}\n\n.ion-md-cloud-done:before {\n    content: \"\\f2c3\"\n}\n\n.ion-md-cloud-download:before {\n    content: \"\\f2c6\"\n}\n\n.ion-md-cloud-outline:before {\n    content: \"\\f2c7\"\n}\n\n.ion-md-cloud-upload:before {\n    content: \"\\f2c8\"\n}\n\n.ion-md-cloudy:before {\n    content: \"\\f2cb\"\n}\n\n.ion-md-cloudy-night:before {\n    content: \"\\f2ca\"\n}\n\n.ion-md-code:before {\n    content: \"\\f2ce\"\n}\n\n.ion-md-code-download:before {\n    content: \"\\f2cc\"\n}\n\n.ion-md-code-working:before {\n    content: \"\\f2cd\"\n}\n\n.ion-md-cog:before {\n    content: \"\\f2cf\"\n}\n\n.ion-md-color-fill:before {\n    content: \"\\f2d0\"\n}\n\n.ion-md-color-filter:before {\n    content: \"\\f2d1\"\n}\n\n.ion-md-color-palette:before {\n    content: \"\\f2d2\"\n}\n\n.ion-md-color-wand:before {\n    content: \"\\f2d3\"\n}\n\n.ion-md-compass:before {\n    content: \"\\f2d4\"\n}\n\n.ion-md-construct:before {\n    content: \"\\f2d5\"\n}\n\n.ion-md-contact:before {\n    content: \"\\f2d6\"\n}\n\n.ion-md-contacts:before {\n    content: \"\\f2d7\"\n}\n\n.ion-md-contract:before {\n    content: \"\\f2d8\"\n}\n\n.ion-md-contrast:before {\n    content: \"\\f2d9\"\n}\n\n.ion-md-copy:before {\n    content: \"\\f2da\"\n}\n\n.ion-md-create:before {\n    content: \"\\f2db\"\n}\n\n.ion-md-crop:before {\n    content: \"\\f2dc\"\n}\n\n.ion-md-cube:before {\n    content: \"\\f2dd\"\n}\n\n.ion-md-cut:before {\n    content: \"\\f2de\"\n}\n\n.ion-md-desktop:before {\n    content: \"\\f2df\"\n}\n\n.ion-md-disc:before {\n    content: \"\\f2e0\"\n}\n\n.ion-md-document:before {\n    content: \"\\f2e1\"\n}\n\n.ion-md-done-all:before {\n    content: \"\\f2e2\"\n}\n\n.ion-md-download:before {\n    content: \"\\f2e3\"\n}\n\n.ion-md-easel:before {\n    content: \"\\f2e4\"\n}\n\n.ion-md-egg:before {\n    content: \"\\f2e5\"\n}\n\n.ion-md-exit:before {\n    content: \"\\f2e6\"\n}\n\n.ion-md-expand:before {\n    content: \"\\f2e7\"\n}\n\n.ion-md-eye:before {\n    content: \"\\f2e9\"\n}\n\n.ion-md-eye-off:before {\n    content: \"\\f2e8\"\n}\n\n.ion-md-fastforward:before {\n    content: \"\\f2ea\"\n}\n\n.ion-md-female:before {\n    content: \"\\f2eb\"\n}\n\n.ion-md-filing:before {\n    content: \"\\f2ec\"\n}\n\n.ion-md-film:before {\n    content: \"\\f2ed\"\n}\n\n.ion-md-finger-print:before {\n    content: \"\\f2ee\"\n}\n\n.ion-md-fitness:before {\n    content: \"\\f1ac\"\n}\n\n.ion-md-flag:before {\n    content: \"\\f2ef\"\n}\n\n.ion-md-flame:before {\n    content: \"\\f2f0\"\n}\n\n.ion-md-flash:before {\n    content: \"\\f2f1\"\n}\n\n.ion-md-flash-off:before {\n    content: \"\\f169\"\n}\n\n.ion-md-flashlight:before {\n    content: \"\\f16b\"\n}\n\n.ion-md-flask:before {\n    content: \"\\f2f2\"\n}\n\n.ion-md-flower:before {\n    content: \"\\f2f3\"\n}\n\n.ion-md-folder:before {\n    content: \"\\f2f5\"\n}\n\n.ion-md-folder-open:before {\n    content: \"\\f2f4\"\n}\n\n.ion-md-football:before {\n    content: \"\\f2f6\"\n}\n\n.ion-md-funnel:before {\n    content: \"\\f2f7\"\n}\n\n.ion-md-gift:before {\n    content: \"\\f199\"\n}\n\n.ion-md-git-branch:before {\n    content: \"\\f2fa\"\n}\n\n.ion-md-git-commit:before {\n    content: \"\\f2fb\"\n}\n\n.ion-md-git-compare:before {\n    content: \"\\f2fc\"\n}\n\n.ion-md-git-merge:before {\n    content: \"\\f2fd\"\n}\n\n.ion-md-git-network:before {\n    content: \"\\f2fe\"\n}\n\n.ion-md-git-pull-request:before {\n    content: \"\\f2ff\"\n}\n\n.ion-md-glasses:before {\n    content: \"\\f300\"\n}\n\n.ion-md-globe:before {\n    content: \"\\f301\"\n}\n\n.ion-md-grid:before {\n    content: \"\\f302\"\n}\n\n.ion-md-hammer:before {\n    content: \"\\f303\"\n}\n\n.ion-md-hand:before {\n    content: \"\\f304\"\n}\n\n.ion-md-happy:before {\n    content: \"\\f305\"\n}\n\n.ion-md-headset:before {\n    content: \"\\f306\"\n}\n\n.ion-md-heart:before {\n    content: \"\\f308\"\n}\n\n.ion-md-heart-dislike:before {\n    content: \"\\f167\"\n}\n\n.ion-md-heart-empty:before {\n    content: \"\\f1a1\"\n}\n\n.ion-md-heart-half:before {\n    content: \"\\f1a2\"\n}\n\n.ion-md-help:before {\n    content: \"\\f30b\"\n}\n\n.ion-md-help-buoy:before {\n    content: \"\\f309\"\n}\n\n.ion-md-help-circle:before {\n    content: \"\\f30a\"\n}\n\n.ion-md-help-circle-outline:before {\n    content: \"\\f16d\"\n}\n\n.ion-md-home:before {\n    content: \"\\f30c\"\n}\n\n.ion-md-hourglass:before {\n    content: \"\\f111\"\n}\n\n.ion-md-ice-cream:before {\n    content: \"\\f30d\"\n}\n\n.ion-md-image:before {\n    content: \"\\f30e\"\n}\n\n.ion-md-images:before {\n    content: \"\\f30f\"\n}\n\n.ion-md-infinite:before {\n    content: \"\\f310\"\n}\n\n.ion-md-information:before {\n    content: \"\\f312\"\n}\n\n.ion-md-information-circle:before {\n    content: \"\\f311\"\n}\n\n.ion-md-information-circle-outline:before {\n    content: \"\\f16f\"\n}\n\n.ion-md-jet:before {\n    content: \"\\f315\"\n}\n\n.ion-md-journal:before {\n    content: \"\\f18d\"\n}\n\n.ion-md-key:before {\n    content: \"\\f316\"\n}\n\n.ion-md-keypad:before {\n    content: \"\\f317\"\n}\n\n.ion-md-laptop:before {\n    content: \"\\f318\"\n}\n\n.ion-md-leaf:before {\n    content: \"\\f319\"\n}\n\n.ion-md-link:before {\n    content: \"\\f22e\"\n}\n\n.ion-md-list:before {\n    content: \"\\f31b\"\n}\n\n.ion-md-list-box:before {\n    content: \"\\f31a\"\n}\n\n.ion-md-locate:before {\n    content: \"\\f31c\"\n}\n\n.ion-md-lock:before {\n    content: \"\\f31d\"\n}\n\n.ion-md-log-in:before {\n    content: \"\\f31e\"\n}\n\n.ion-md-log-out:before {\n    content: \"\\f31f\"\n}\n\n.ion-md-magnet:before {\n    content: \"\\f320\"\n}\n\n.ion-md-mail:before {\n    content: \"\\f322\"\n}\n\n.ion-md-mail-open:before {\n    content: \"\\f321\"\n}\n\n.ion-md-mail-unread:before {\n    content: \"\\f172\"\n}\n\n.ion-md-male:before {\n    content: \"\\f323\"\n}\n\n.ion-md-man:before {\n    content: \"\\f324\"\n}\n\n.ion-md-map:before {\n    content: \"\\f325\"\n}\n\n.ion-md-medal:before {\n    content: \"\\f326\"\n}\n\n.ion-md-medical:before {\n    content: \"\\f327\"\n}\n\n.ion-md-medkit:before {\n    content: \"\\f328\"\n}\n\n.ion-md-megaphone:before {\n    content: \"\\f329\"\n}\n\n.ion-md-menu:before {\n    content: \"\\f32a\"\n}\n\n.ion-md-mic:before {\n    content: \"\\f32c\"\n}\n\n.ion-md-mic-off:before {\n    content: \"\\f32b\"\n}\n\n.ion-md-microphone:before {\n    content: \"\\f32d\"\n}\n\n.ion-md-moon:before {\n    content: \"\\f32e\"\n}\n\n.ion-md-more:before {\n    content: \"\\f1c9\"\n}\n\n.ion-md-move:before {\n    content: \"\\f331\"\n}\n\n.ion-md-musical-note:before {\n    content: \"\\f332\"\n}\n\n.ion-md-musical-notes:before {\n    content: \"\\f333\"\n}\n\n.ion-md-navigate:before {\n    content: \"\\f334\"\n}\n\n.ion-md-notifications:before {\n    content: \"\\f338\"\n}\n\n.ion-md-notifications-off:before {\n    content: \"\\f336\"\n}\n\n.ion-md-notifications-outline:before {\n    content: \"\\f337\"\n}\n\n.ion-md-nuclear:before {\n    content: \"\\f339\"\n}\n\n.ion-md-nutrition:before {\n    content: \"\\f33a\"\n}\n\n.ion-md-open:before {\n    content: \"\\f33b\"\n}\n\n.ion-md-options:before {\n    content: \"\\f33c\"\n}\n\n.ion-md-outlet:before {\n    content: \"\\f33d\"\n}\n\n.ion-md-paper:before {\n    content: \"\\f33f\"\n}\n\n.ion-md-paper-plane:before {\n    content: \"\\f33e\"\n}\n\n.ion-md-partly-sunny:before {\n    content: \"\\f340\"\n}\n\n.ion-md-pause:before {\n    content: \"\\f341\"\n}\n\n.ion-md-paw:before {\n    content: \"\\f342\"\n}\n\n.ion-md-people:before {\n    content: \"\\f343\"\n}\n\n.ion-md-person:before {\n    content: \"\\f345\"\n}\n\n.ion-md-person-add:before {\n    content: \"\\f344\"\n}\n\n.ion-md-phone-landscape:before {\n    content: \"\\f346\"\n}\n\n.ion-md-phone-portrait:before {\n    content: \"\\f347\"\n}\n\n.ion-md-photos:before {\n    content: \"\\f348\"\n}\n\n.ion-md-pie:before {\n    content: \"\\f349\"\n}\n\n.ion-md-pin:before {\n    content: \"\\f34a\"\n}\n\n.ion-md-pint:before {\n    content: \"\\f34b\"\n}\n\n.ion-md-pizza:before {\n    content: \"\\f354\"\n}\n\n.ion-md-planet:before {\n    content: \"\\f356\"\n}\n\n.ion-md-play:before {\n    content: \"\\f357\"\n}\n\n.ion-md-play-circle:before {\n    content: \"\\f174\"\n}\n\n.ion-md-podium:before {\n    content: \"\\f358\"\n}\n\n.ion-md-power:before {\n    content: \"\\f359\"\n}\n\n.ion-md-pricetag:before {\n    content: \"\\f35a\"\n}\n\n.ion-md-pricetags:before {\n    content: \"\\f35b\"\n}\n\n.ion-md-print:before {\n    content: \"\\f35c\"\n}\n\n.ion-md-pulse:before {\n    content: \"\\f35d\"\n}\n\n.ion-md-qr-scanner:before {\n    content: \"\\f35e\"\n}\n\n.ion-md-quote:before {\n    content: \"\\f35f\"\n}\n\n.ion-md-radio:before {\n    content: \"\\f362\"\n}\n\n.ion-md-radio-button-off:before {\n    content: \"\\f360\"\n}\n\n.ion-md-radio-button-on:before {\n    content: \"\\f361\"\n}\n\n.ion-md-rainy:before {\n    content: \"\\f363\"\n}\n\n.ion-md-recording:before {\n    content: \"\\f364\"\n}\n\n.ion-md-redo:before {\n    content: \"\\f365\"\n}\n\n.ion-md-refresh:before {\n    content: \"\\f366\"\n}\n\n.ion-md-refresh-circle:before {\n    content: \"\\f228\"\n}\n\n.ion-md-remove:before {\n    content: \"\\f368\"\n}\n\n.ion-md-remove-circle:before {\n    content: \"\\f367\"\n}\n\n.ion-md-remove-circle-outline:before {\n    content: \"\\f176\"\n}\n\n.ion-md-reorder:before {\n    content: \"\\f369\"\n}\n\n.ion-md-repeat:before {\n    content: \"\\f36a\"\n}\n\n.ion-md-resize:before {\n    content: \"\\f36b\"\n}\n\n.ion-md-restaurant:before {\n    content: \"\\f36c\"\n}\n\n.ion-md-return-left:before {\n    content: \"\\f36d\"\n}\n\n.ion-md-return-right:before {\n    content: \"\\f36e\"\n}\n\n.ion-md-reverse-camera:before {\n    content: \"\\f36f\"\n}\n\n.ion-md-rewind:before {\n    content: \"\\f370\"\n}\n\n.ion-md-ribbon:before {\n    content: \"\\f371\"\n}\n\n.ion-md-rocket:before {\n    content: \"\\f179\"\n}\n\n.ion-md-rose:before {\n    content: \"\\f372\"\n}\n\n.ion-md-sad:before {\n    content: \"\\f373\"\n}\n\n.ion-md-save:before {\n    content: \"\\f1a9\"\n}\n\n.ion-md-school:before {\n    content: \"\\f374\"\n}\n\n.ion-md-search:before {\n    content: \"\\f375\"\n}\n\n.ion-md-send:before {\n    content: \"\\f376\"\n}\n\n.ion-md-settings:before {\n    content: \"\\f377\"\n}\n\n.ion-md-share:before {\n    content: \"\\f379\"\n}\n\n.ion-md-share-alt:before {\n    content: \"\\f378\"\n}\n\n.ion-md-shirt:before {\n    content: \"\\f37a\"\n}\n\n.ion-md-shuffle:before {\n    content: \"\\f37b\"\n}\n\n.ion-md-skip-backward:before {\n    content: \"\\f37c\"\n}\n\n.ion-md-skip-forward:before {\n    content: \"\\f37d\"\n}\n\n.ion-md-snow:before {\n    content: \"\\f37e\"\n}\n\n.ion-md-speedometer:before {\n    content: \"\\f37f\"\n}\n\n.ion-md-square:before {\n    content: \"\\f381\"\n}\n\n.ion-md-square-outline:before {\n    content: \"\\f380\"\n}\n\n.ion-md-star:before {\n    content: \"\\f384\"\n}\n\n.ion-md-star-half:before {\n    content: \"\\f382\"\n}\n\n.ion-md-star-outline:before {\n    content: \"\\f383\"\n}\n\n.ion-md-stats:before {\n    content: \"\\f385\"\n}\n\n.ion-md-stopwatch:before {\n    content: \"\\f386\"\n}\n\n.ion-md-subway:before {\n    content: \"\\f387\"\n}\n\n.ion-md-sunny:before {\n    content: \"\\f388\"\n}\n\n.ion-md-swap:before {\n    content: \"\\f389\"\n}\n\n.ion-md-switch:before {\n    content: \"\\f38a\"\n}\n\n.ion-md-sync:before {\n    content: \"\\f38b\"\n}\n\n.ion-md-tablet-landscape:before {\n    content: \"\\f38c\"\n}\n\n.ion-md-tablet-portrait:before {\n    content: \"\\f38d\"\n}\n\n.ion-md-tennisball:before {\n    content: \"\\f38e\"\n}\n\n.ion-md-text:before {\n    content: \"\\f38f\"\n}\n\n.ion-md-thermometer:before {\n    content: \"\\f390\"\n}\n\n.ion-md-thumbs-down:before {\n    content: \"\\f391\"\n}\n\n.ion-md-thumbs-up:before {\n    content: \"\\f392\"\n}\n\n.ion-md-thunderstorm:before {\n    content: \"\\f393\"\n}\n\n.ion-md-time:before {\n    content: \"\\f394\"\n}\n\n.ion-md-timer:before {\n    content: \"\\f395\"\n}\n\n.ion-md-today:before {\n    content: \"\\f17d\"\n}\n\n.ion-md-train:before {\n    content: \"\\f396\"\n}\n\n.ion-md-transgender:before {\n    content: \"\\f397\"\n}\n\n.ion-md-trash:before {\n    content: \"\\f398\"\n}\n\n.ion-md-trending-down:before {\n    content: \"\\f399\"\n}\n\n.ion-md-trending-up:before {\n    content: \"\\f39a\"\n}\n\n.ion-md-trophy:before {\n    content: \"\\f39b\"\n}\n\n.ion-md-tv:before {\n    content: \"\\f17f\"\n}\n\n.ion-md-umbrella:before {\n    content: \"\\f39c\"\n}\n\n.ion-md-undo:before {\n    content: \"\\f39d\"\n}\n\n.ion-md-unlock:before {\n    content: \"\\f39e\"\n}\n\n.ion-md-videocam:before {\n    content: \"\\f39f\"\n}\n\n.ion-md-volume-high:before {\n    content: \"\\f123\"\n}\n\n.ion-md-volume-low:before {\n    content: \"\\f131\"\n}\n\n.ion-md-volume-mute:before {\n    content: \"\\f3a1\"\n}\n\n.ion-md-volume-off:before {\n    content: \"\\f3a2\"\n}\n\n.ion-md-walk:before {\n    content: \"\\f3a4\"\n}\n\n.ion-md-wallet:before {\n    content: \"\\f18f\"\n}\n\n.ion-md-warning:before {\n    content: \"\\f3a5\"\n}\n\n.ion-md-watch:before {\n    content: \"\\f3a6\"\n}\n\n.ion-md-water:before {\n    content: \"\\f3a7\"\n}\n\n.ion-md-wifi:before {\n    content: \"\\f3a8\"\n}\n\n.ion-md-wine:before {\n    content: \"\\f3a9\"\n}\n\n.ion-md-woman:before {\n    content: \"\\f3aa\"\n}"
  },
  {
    "path": "icon-packs/ikonli-jamicons-pack/ikonli-jamicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-jamicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.jam {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.jam;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.jam.JamIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.jam.JamIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-jamicons-pack/src/main/java/org/kordamp/ikonli/jam/Jam.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.jam;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Jam implements Ikon {\n    ACTIVITY(\"jam-activity\", '\\ue901'),\n    AIRBNB(\"jam-airbnb\", '\\ue902'),\n    ALARM_CLOCK(\"jam-alarm-clock\", '\\ue904'),\n    ALARM_CLOCK_F(\"jam-alarm-clock-f\", '\\ue903'),\n    ALERT(\"jam-alert\", '\\ue906'),\n    ALERT_F(\"jam-alert-f\", '\\ue905'),\n    ALIEN(\"jam-alien\", '\\ue908'),\n    ALIEN_F(\"jam-alien-f\", '\\ue907'),\n    ALIGN_CENTER(\"jam-align-center\", '\\ue909'),\n    ALIGN_JUSTIFY(\"jam-align-justify\", '\\ue90a'),\n    ALIGN_LEFT(\"jam-align-left\", '\\ue90b'),\n    ALIGN_RIGHT(\"jam-align-right\", '\\ue90c'),\n    AMAZON(\"jam-amazon\", '\\ue90d'),\n    ANCHOR(\"jam-anchor\", '\\ue90e'),\n    ANDROID(\"jam-android\", '\\ue911'),\n    ANDROID_CIRCLE(\"jam-android-circle\", '\\ue90f'),\n    ANDROID_SQUARE(\"jam-android-square\", '\\ue910'),\n    APERTURE(\"jam-aperture\", '\\ue912'),\n    APPLE(\"jam-apple\", '\\ue915'),\n    APPLE_CIRCLE(\"jam-apple-circle\", '\\ue913'),\n    APPLE_SQUARE(\"jam-apple-square\", '\\ue914'),\n    ARCHIVE(\"jam-archive\", '\\ue917'),\n    ARCHIVE_F(\"jam-archive-f\", '\\ue916'),\n    ARROWS_CORNERS(\"jam-arrows-corners\", '\\ue940'),\n    ARROWS_FULLSCREEN(\"jam-arrows-fullscreen\", '\\ue941'),\n    ARROWS_H(\"jam-arrows-h\", '\\ue942'),\n    ARROWS_V(\"jam-arrows-v\", '\\ue943'),\n    ARROW_CIRCLE_DOWN(\"jam-arrow-circle-down\", '\\ue91d'),\n    ARROW_CIRCLE_DOWN_F(\"jam-arrow-circle-down-f\", '\\ue918'),\n    ARROW_CIRCLE_DOWN_LEFT(\"jam-arrow-circle-down-left\", '\\ue91a'),\n    ARROW_CIRCLE_DOWN_LEFT_F(\"jam-arrow-circle-down-left-f\", '\\ue919'),\n    ARROW_CIRCLE_DOWN_RIGHT(\"jam-arrow-circle-down-right\", '\\ue91c'),\n    ARROW_CIRCLE_DOWN_RIGHT_F(\"jam-arrow-circle-down-right-f\", '\\ue91b'),\n    ARROW_CIRCLE_LEFT(\"jam-arrow-circle-left\", '\\ue91f'),\n    ARROW_CIRCLE_LEFT_F(\"jam-arrow-circle-left-f\", '\\ue91e'),\n    ARROW_CIRCLE_RIGHT(\"jam-arrow-circle-right\", '\\ue921'),\n    ARROW_CIRCLE_RIGHT_F(\"jam-arrow-circle-right-f\", '\\ue920'),\n    ARROW_CIRCLE_UP(\"jam-arrow-circle-up\", '\\ue927'),\n    ARROW_CIRCLE_UP_F(\"jam-arrow-circle-up-f\", '\\ue922'),\n    ARROW_CIRCLE_UP_LEFT(\"jam-arrow-circle-up-left\", '\\ue924'),\n    ARROW_CIRCLE_UP_LEFT_F(\"jam-arrow-circle-up-left-f\", '\\ue923'),\n    ARROW_CIRCLE_UP_RIGHT(\"jam-arrow-circle-up-right\", '\\ue926'),\n    ARROW_CIRCLE_UP_RIGHT_F(\"jam-arrow-circle-up-right-f\", '\\ue925'),\n    ARROW_DOWN(\"jam-arrow-down\", '\\ue92a'),\n    ARROW_DOWN_LEFT(\"jam-arrow-down-left\", '\\ue928'),\n    ARROW_DOWN_RIGHT(\"jam-arrow-down-right\", '\\ue929'),\n    ARROW_LEFT(\"jam-arrow-left\", '\\ue92b'),\n    ARROW_RIGHT(\"jam-arrow-right\", '\\ue92c'),\n    ARROW_SQUARE_DOWN(\"jam-arrow-square-down\", '\\ue932'),\n    ARROW_SQUARE_DOWN_F(\"jam-arrow-square-down-f\", '\\ue92d'),\n    ARROW_SQUARE_DOWN_LEFT(\"jam-arrow-square-down-left\", '\\ue92f'),\n    ARROW_SQUARE_DOWN_LEFT_F(\"jam-arrow-square-down-left-f\", '\\ue92e'),\n    ARROW_SQUARE_DOWN_RIGHT(\"jam-arrow-square-down-right\", '\\ue931'),\n    ARROW_SQUARE_DOWN_RIGHT_F(\"jam-arrow-square-down-right-f\", '\\ue930'),\n    ARROW_SQUARE_LEFT(\"jam-arrow-square-left\", '\\ue934'),\n    ARROW_SQUARE_LEFT_F(\"jam-arrow-square-left-f\", '\\ue933'),\n    ARROW_SQUARE_RIGHT(\"jam-arrow-square-right\", '\\ue936'),\n    ARROW_SQUARE_RIGHT_F(\"jam-arrow-square-right-f\", '\\ue935'),\n    ARROW_SQUARE_UP(\"jam-arrow-square-up\", '\\ue93c'),\n    ARROW_SQUARE_UP_F(\"jam-arrow-square-up-f\", '\\ue937'),\n    ARROW_SQUARE_UP_LEFT(\"jam-arrow-square-up-left\", '\\ue939'),\n    ARROW_SQUARE_UP_LEFT_F(\"jam-arrow-square-up-left-f\", '\\ue938'),\n    ARROW_SQUARE_UP_RIGHT(\"jam-arrow-square-up-right\", '\\ue93b'),\n    ARROW_SQUARE_UP_RIGHT_F(\"jam-arrow-square-up-right-f\", '\\ue93a'),\n    ARROW_UP(\"jam-arrow-up\", '\\ue93f'),\n    ARROW_UP_LEFT(\"jam-arrow-up-left\", '\\ue93d'),\n    ARROW_UP_RIGHT(\"jam-arrow-up-right\", '\\ue93e'),\n    ATTACHMENT(\"jam-attachment\", '\\ue944'),\n    BACKGROUND_COLOR(\"jam-background-color\", '\\ue945'),\n    BACKPACK(\"jam-backpack\", '\\ue947'),\n    BACKPACK_F(\"jam-backpack-f\", '\\ue946'),\n    BACKWARD(\"jam-backward\", '\\ue94c'),\n    BACKWARD_CIRCLE(\"jam-backward-circle\", '\\ue949'),\n    BACKWARD_CIRCLE_F(\"jam-backward-circle-f\", '\\ue948'),\n    BACKWARD_SQUARE(\"jam-backward-square\", '\\ue94b'),\n    BACKWARD_SQUARE_F(\"jam-backward-square-f\", '\\ue94a'),\n    BAIDU(\"jam-baidu\", '\\ue94f'),\n    BAIDU_CIRCLE(\"jam-baidu-circle\", '\\ue94d'),\n    BAIDU_SQUARE(\"jam-baidu-square\", '\\ue94e'),\n    BANDAGE(\"jam-bandage\", '\\ue951'),\n    BANDAGE_F(\"jam-bandage-f\", '\\ue950'),\n    BAR_CHART(\"jam-bar-chart\", '\\ue952'),\n    BASEBALL(\"jam-baseball\", '\\ue953'),\n    BASKETBALL(\"jam-basketball\", '\\ue954'),\n    BATHTUB(\"jam-bathtub\", '\\ue956'),\n    BATHTUB_F(\"jam-bathtub-f\", '\\ue955'),\n    BATTERY(\"jam-battery\", '\\ue960'),\n    BATTERY_CHARGING(\"jam-battery-charging\", '\\ue958'),\n    BATTERY_CHARGING_F(\"jam-battery-charging-f\", '\\ue957'),\n    BATTERY_F(\"jam-battery-f\", '\\ue959'),\n    BATTERY_HALF(\"jam-battery-half\", '\\ue95b'),\n    BATTERY_HALF_F(\"jam-battery-half-f\", '\\ue95a'),\n    BATTERY_ONE_QUARTER(\"jam-battery-one-quarter\", '\\ue95d'),\n    BATTERY_ONE_QUARTER_F(\"jam-battery-one-quarter-f\", '\\ue95c'),\n    BATTERY_THREE_QUARTERS(\"jam-battery-three-quarters\", '\\ue95f'),\n    BATTERY_THREE_QUARTERS_F(\"jam-battery-three-quarters-f\", '\\ue95e'),\n    BEATPORT(\"jam-beatport\", '\\ue963'),\n    BEATPORT_CIRCLE(\"jam-beatport-circle\", '\\ue961'),\n    BEATPORT_SQUARE(\"jam-beatport-square\", '\\ue962'),\n    BEER(\"jam-beer\", '\\ue965'),\n    BEER_F(\"jam-beer-f\", '\\ue964'),\n    BEHANCE(\"jam-behance\", '\\ue968'),\n    BEHANCE_CIRCLE(\"jam-behance-circle\", '\\ue966'),\n    BEHANCE_SQUARE(\"jam-behance-square\", '\\ue967'),\n    BELL(\"jam-bell\", '\\ue96c'),\n    BELL_F(\"jam-bell-f\", '\\ue969'),\n    BELL_OFF(\"jam-bell-off\", '\\ue96b'),\n    BELL_OFF_F(\"jam-bell-off-f\", '\\ue96a'),\n    BING(\"jam-bing\", '\\ue96f'),\n    BING_CIRCLE(\"jam-bing-circle\", '\\ue96d'),\n    BING_SQUARE(\"jam-bing-square\", '\\ue96e'),\n    BIRTHDAY_CAKE(\"jam-birthday-cake\", '\\ue971'),\n    BIRTHDAY_CAKE_F(\"jam-birthday-cake-f\", '\\ue970'),\n    BLOGGER(\"jam-blogger\", '\\ue974'),\n    BLOGGER_CIRCLE(\"jam-blogger-circle\", '\\ue972'),\n    BLOGGER_SQUARE(\"jam-blogger-square\", '\\ue973'),\n    BLUETOOTH(\"jam-bluetooth\", '\\ue975'),\n    BOLD(\"jam-bold\", '\\ue976'),\n    BOOK(\"jam-book\", '\\ue978'),\n    BOOKMARK(\"jam-bookmark\", '\\ue980'),\n    BOOKMARK_F(\"jam-bookmark-f\", '\\ue979'),\n    BOOKMARK_MINUS(\"jam-bookmark-minus\", '\\ue97b'),\n    BOOKMARK_MINUS_F(\"jam-bookmark-minus-f\", '\\ue97a'),\n    BOOKMARK_PLUS(\"jam-bookmark-plus\", '\\ue97d'),\n    BOOKMARK_PLUS_F(\"jam-bookmark-plus-f\", '\\ue97c'),\n    BOOKMARK_REMOVE(\"jam-bookmark-remove\", '\\ue97f'),\n    BOOKMARK_REMOVE_F(\"jam-bookmark-remove-f\", '\\ue97e'),\n    BOOK_F(\"jam-book-f\", '\\ue977'),\n    BOTTLE(\"jam-bottle\", '\\ue982'),\n    BOTTLE_F(\"jam-bottle-f\", '\\ue981'),\n    BOX(\"jam-box\", '\\ue984'),\n    BOX_F(\"jam-box-f\", '\\ue983'),\n    BRANCH(\"jam-branch\", '\\ue986'),\n    BRANCH_F(\"jam-branch-f\", '\\ue985'),\n    BRIGHTNESS(\"jam-brightness\", '\\ue98b'),\n    BRIGHTNESS_DOWN(\"jam-brightness-down\", '\\ue988'),\n    BRIGHTNESS_DOWN_F(\"jam-brightness-down-f\", '\\ue987'),\n    BRIGHTNESS_UP(\"jam-brightness-up\", '\\ue98a'),\n    BRIGHTNESS_UP_F(\"jam-brightness-up-f\", '\\ue989'),\n    BRUSH(\"jam-brush\", '\\ue98d'),\n    BRUSH_F(\"jam-brush-f\", '\\ue98c'),\n    BUG(\"jam-bug\", '\\ue98f'),\n    BUG_F(\"jam-bug-f\", '\\ue98e'),\n    BUILDING(\"jam-building\", '\\ue991'),\n    BUILDING_F(\"jam-building-f\", '\\ue990'),\n    BUS(\"jam-bus\", '\\ue993'),\n    BUS_F(\"jam-bus-f\", '\\ue992'),\n    CACTUS(\"jam-cactus\", '\\ue995'),\n    CACTUS_F(\"jam-cactus-f\", '\\ue994'),\n    CALCULATOR(\"jam-calculator\", '\\ue996'),\n    CALENDAR(\"jam-calendar\", '\\ue99a'),\n    CALENDAR_ALT(\"jam-calendar-alt\", '\\ue998'),\n    CALENDAR_ALT_F(\"jam-calendar-alt-f\", '\\ue997'),\n    CALENDAR_F(\"jam-calendar-f\", '\\ue999'),\n    CAMERA(\"jam-camera\", '\\ue99e'),\n    CAMERA_ALT(\"jam-camera-alt\", '\\ue99c'),\n    CAMERA_ALT_F(\"jam-camera-alt-f\", '\\ue99b'),\n    CAMERA_F(\"jam-camera-f\", '\\ue99d'),\n    CANDLE(\"jam-candle\", '\\ue9a0'),\n    CANDLE_F(\"jam-candle-f\", '\\ue99f'),\n    CAPSULE(\"jam-capsule\", '\\ue9a2'),\n    CAPSULE_F(\"jam-capsule-f\", '\\ue9a1'),\n    CAR(\"jam-car\", '\\ue9a4'),\n    CAR_F(\"jam-car-f\", '\\ue9a3'),\n    CASTLE(\"jam-castle\", '\\ue9a6'),\n    CASTLE_F(\"jam-castle-f\", '\\ue9a5'),\n    CHECK(\"jam-check\", '\\ue9a7'),\n    CHEVRONS_CIRCLE_DOWN(\"jam-chevrons-circle-down\", '\\ue9d5'),\n    CHEVRONS_CIRCLE_DOWN_F(\"jam-chevrons-circle-down-f\", '\\ue9d0'),\n    CHEVRONS_CIRCLE_DOWN_LEFT(\"jam-chevrons-circle-down-left\", '\\ue9d2'),\n    CHEVRONS_CIRCLE_DOWN_LEFT_F(\"jam-chevrons-circle-down-left-f\", '\\ue9d1'),\n    CHEVRONS_CIRCLE_DOWN_RIGHT(\"jam-chevrons-circle-down-right\", '\\ue9d4'),\n    CHEVRONS_CIRCLE_DOWN_RIGHT_F(\"jam-chevrons-circle-down-right-f\", '\\ue9d3'),\n    CHEVRONS_CIRCLE_LEFT(\"jam-chevrons-circle-left\", '\\ue9d7'),\n    CHEVRONS_CIRCLE_LEFT_F(\"jam-chevrons-circle-left-f\", '\\ue9d6'),\n    CHEVRONS_CIRCLE_RIGHT(\"jam-chevrons-circle-right\", '\\ue9d9'),\n    CHEVRONS_CIRCLE_RIGHT_F(\"jam-chevrons-circle-right-f\", '\\ue9d8'),\n    CHEVRONS_CIRCLE_UP(\"jam-chevrons-circle-up\", '\\ue9df'),\n    CHEVRONS_CIRCLE_UP_F(\"jam-chevrons-circle-up-f\", '\\ue9da'),\n    CHEVRONS_CIRCLE_UP_LEFT(\"jam-chevrons-circle-up-left\", '\\ue9dc'),\n    CHEVRONS_CIRCLE_UP_LEFT_F(\"jam-chevrons-circle-up-left-f\", '\\ue9db'),\n    CHEVRONS_CIRCLE_UP_RIGHT(\"jam-chevrons-circle-up-right\", '\\ue9de'),\n    CHEVRONS_CIRCLE_UP_RIGHT_F(\"jam-chevrons-circle-up-right-f\", '\\ue9dd'),\n    CHEVRONS_DOWN(\"jam-chevrons-down\", '\\ue9e2'),\n    CHEVRONS_DOWN_LEFT(\"jam-chevrons-down-left\", '\\ue9e0'),\n    CHEVRONS_DOWN_RIGHT(\"jam-chevrons-down-right\", '\\ue9e1'),\n    CHEVRONS_LEFT(\"jam-chevrons-left\", '\\ue9e3'),\n    CHEVRONS_RIGHT(\"jam-chevrons-right\", '\\ue9e4'),\n    CHEVRONS_SQUARE_DOWN(\"jam-chevrons-square-down\", '\\ue9ea'),\n    CHEVRONS_SQUARE_DOWN_F(\"jam-chevrons-square-down-f\", '\\ue9e5'),\n    CHEVRONS_SQUARE_DOWN_LEFT(\"jam-chevrons-square-down-left\", '\\ue9e7'),\n    CHEVRONS_SQUARE_DOWN_LEFT_F(\"jam-chevrons-square-down-left-f\", '\\ue9e6'),\n    CHEVRONS_SQUARE_DOWN_RIGHT(\"jam-chevrons-square-down-right\", '\\ue9e9'),\n    CHEVRONS_SQUARE_DOWN_RIGHT_F(\"jam-chevrons-square-down-right-f\", '\\ue9e8'),\n    CHEVRONS_SQUARE_LEFT(\"jam-chevrons-square-left\", '\\ue9ec'),\n    CHEVRONS_SQUARE_LEFT_F(\"jam-chevrons-square-left-f\", '\\ue9eb'),\n    CHEVRONS_SQUARE_RIGHT(\"jam-chevrons-square-right\", '\\ue9ee'),\n    CHEVRONS_SQUARE_RIGHT_F(\"jam-chevrons-square-right-f\", '\\ue9ed'),\n    CHEVRONS_SQUARE_UP(\"jam-chevrons-square-up\", '\\ue9f4'),\n    CHEVRONS_SQUARE_UP_F(\"jam-chevrons-square-up-f\", '\\ue9ef'),\n    CHEVRONS_SQUARE_UP_LEFT(\"jam-chevrons-square-up-left\", '\\ue9f1'),\n    CHEVRONS_SQUARE_UP_LEFT_F(\"jam-chevrons-square-up-left-f\", '\\ue9f0'),\n    CHEVRONS_SQUARE_UP_RIGHT(\"jam-chevrons-square-up-right\", '\\ue9f3'),\n    CHEVRONS_SQUARE_UP_RIGHT_F(\"jam-chevrons-square-up-right-f\", '\\ue9f2'),\n    CHEVRONS_UP(\"jam-chevrons-up\", '\\ue9f7'),\n    CHEVRONS_UP_LEFT(\"jam-chevrons-up-left\", '\\ue9f5'),\n    CHEVRONS_UP_RIGHT(\"jam-chevrons-up-right\", '\\ue9f6'),\n    CHEVRON_CIRCLE_DOWN(\"jam-chevron-circle-down\", '\\ue9ad'),\n    CHEVRON_CIRCLE_DOWN_F(\"jam-chevron-circle-down-f\", '\\ue9a8'),\n    CHEVRON_CIRCLE_DOWN_LEFT(\"jam-chevron-circle-down-left\", '\\ue9aa'),\n    CHEVRON_CIRCLE_DOWN_LEFT_F(\"jam-chevron-circle-down-left-f\", '\\ue9a9'),\n    CHEVRON_CIRCLE_DOWN_RIGHT(\"jam-chevron-circle-down-right\", '\\ue9ac'),\n    CHEVRON_CIRCLE_DOWN_RIGHT_F(\"jam-chevron-circle-down-right-f\", '\\ue9ab'),\n    CHEVRON_CIRCLE_LEFT(\"jam-chevron-circle-left\", '\\ue9af'),\n    CHEVRON_CIRCLE_LEFT_F(\"jam-chevron-circle-left-f\", '\\ue9ae'),\n    CHEVRON_CIRCLE_RIGHT(\"jam-chevron-circle-right\", '\\ue9b1'),\n    CHEVRON_CIRCLE_RIGHT_F(\"jam-chevron-circle-right-f\", '\\ue9b0'),\n    CHEVRON_CIRCLE_UP(\"jam-chevron-circle-up\", '\\ue9b7'),\n    CHEVRON_CIRCLE_UP_F(\"jam-chevron-circle-up-f\", '\\ue9b2'),\n    CHEVRON_CIRCLE_UP_LEFT(\"jam-chevron-circle-up-left\", '\\ue9b4'),\n    CHEVRON_CIRCLE_UP_LEFT_F(\"jam-chevron-circle-up-left-f\", '\\ue9b3'),\n    CHEVRON_CIRCLE_UP_RIGHT(\"jam-chevron-circle-up-right\", '\\ue9b6'),\n    CHEVRON_CIRCLE_UP_RIGHT_F(\"jam-chevron-circle-up-right-f\", '\\ue9b5'),\n    CHEVRON_DOWN(\"jam-chevron-down\", '\\ue9ba'),\n    CHEVRON_DOWN_LEFT(\"jam-chevron-down-left\", '\\ue9b8'),\n    CHEVRON_DOWN_RIGHT(\"jam-chevron-down-right\", '\\ue9b9'),\n    CHEVRON_LEFT(\"jam-chevron-left\", '\\ue9bb'),\n    CHEVRON_RIGHT(\"jam-chevron-right\", '\\ue9bc'),\n    CHEVRON_SQUARE_DOWN(\"jam-chevron-square-down\", '\\ue9c2'),\n    CHEVRON_SQUARE_DOWN_F(\"jam-chevron-square-down-f\", '\\ue9bd'),\n    CHEVRON_SQUARE_DOWN_LEFT(\"jam-chevron-square-down-left\", '\\ue9bf'),\n    CHEVRON_SQUARE_DOWN_LEFT_F(\"jam-chevron-square-down-left-f\", '\\ue9be'),\n    CHEVRON_SQUARE_DOWN_RIGHT(\"jam-chevron-square-down-right\", '\\ue9c1'),\n    CHEVRON_SQUARE_DOWN_RIGHT_F(\"jam-chevron-square-down-right-f\", '\\ue9c0'),\n    CHEVRON_SQUARE_LEFT(\"jam-chevron-square-left\", '\\ue9c4'),\n    CHEVRON_SQUARE_LEFT_F(\"jam-chevron-square-left-f\", '\\ue9c3'),\n    CHEVRON_SQUARE_RIGHT(\"jam-chevron-square-right\", '\\ue9c6'),\n    CHEVRON_SQUARE_RIGHT_F(\"jam-chevron-square-right-f\", '\\ue9c5'),\n    CHEVRON_SQUARE_UP(\"jam-chevron-square-up\", '\\ue9cc'),\n    CHEVRON_SQUARE_UP_F(\"jam-chevron-square-up-f\", '\\ue9c7'),\n    CHEVRON_SQUARE_UP_LEFT(\"jam-chevron-square-up-left\", '\\ue9c9'),\n    CHEVRON_SQUARE_UP_LEFT_F(\"jam-chevron-square-up-left-f\", '\\ue9c8'),\n    CHEVRON_SQUARE_UP_RIGHT(\"jam-chevron-square-up-right\", '\\ue9cb'),\n    CHEVRON_SQUARE_UP_RIGHT_F(\"jam-chevron-square-up-right-f\", '\\ue9ca'),\n    CHEVRON_UP(\"jam-chevron-up\", '\\ue9cf'),\n    CHEVRON_UP_LEFT(\"jam-chevron-up-left\", '\\ue9cd'),\n    CHEVRON_UP_RIGHT(\"jam-chevron-up-right\", '\\ue9ce'),\n    CHRONOMETER(\"jam-chronometer\", '\\ue9f9'),\n    CHRONOMETER_F(\"jam-chronometer-f\", '\\ue9f8'),\n    CIRCLE(\"jam-circle\", '\\ue9fb'),\n    CIRCLE_F(\"jam-circle-f\", '\\ue9fa'),\n    CLEAR_FORMAT(\"jam-clear-format\", '\\ue9fc'),\n    CLIPBOARD(\"jam-clipboard\", '\\ue9fe'),\n    CLIPBOARD_F(\"jam-clipboard-f\", '\\ue9fd'),\n    CLOCK(\"jam-clock\", '\\uea00'),\n    CLOCK_F(\"jam-clock-f\", '\\ue9ff'),\n    CLOSE(\"jam-close\", '\\uea05'),\n    CLOSE_CIRCLE(\"jam-close-circle\", '\\uea02'),\n    CLOSE_CIRCLE_F(\"jam-close-circle-f\", '\\uea01'),\n    CLOSE_RECTANGLE(\"jam-close-rectangle\", '\\uea04'),\n    CLOSE_RECTANGLE_F(\"jam-close-rectangle-f\", '\\uea03'),\n    CLOUD(\"jam-cloud\", '\\uea0d'),\n    CLOUD_F(\"jam-cloud-f\", '\\uea06'),\n    CLOUD_RAIN(\"jam-cloud-rain\", '\\uea08'),\n    CLOUD_RAIN_F(\"jam-cloud-rain-f\", '\\uea07'),\n    CLOUD_SNOW(\"jam-cloud-snow\", '\\uea0a'),\n    CLOUD_SNOW_F(\"jam-cloud-snow-f\", '\\uea09'),\n    CLOUD_THUNDER(\"jam-cloud-thunder\", '\\uea0c'),\n    CLOUD_THUNDER_F(\"jam-cloud-thunder-f\", '\\uea0b'),\n    CODEPEN(\"jam-codepen\", '\\uea10'),\n    CODEPEN_CIRCLE(\"jam-codepen-circle\", '\\uea0e'),\n    CODEPEN_SQUARE(\"jam-codepen-square\", '\\uea0f'),\n    COFFEE(\"jam-coffee\", '\\uea13'),\n    COFFEE_CUP(\"jam-coffee-cup\", '\\uea12'),\n    COFFEE_CUP_F(\"jam-coffee-cup-f\", '\\uea11'),\n    COG(\"jam-cog\", '\\uea15'),\n    COGS(\"jam-cogs\", '\\uea17'),\n    COGS_F(\"jam-cogs-f\", '\\uea16'),\n    COG_F(\"jam-cog-f\", '\\uea14'),\n    COIN(\"jam-coin\", '\\uea19'),\n    COIN_F(\"jam-coin-f\", '\\uea18'),\n    COLOR(\"jam-color\", '\\uea1a'),\n    COMPASS(\"jam-compass\", '\\uea1c'),\n    COMPASS_F(\"jam-compass-f\", '\\uea1b'),\n    COMPUTER(\"jam-computer\", '\\uea20'),\n    COMPUTER_ALT(\"jam-computer-alt\", '\\uea1e'),\n    COMPUTER_ALT_F(\"jam-computer-alt-f\", '\\uea1d'),\n    COMPUTER_F(\"jam-computer-f\", '\\uea1f'),\n    CREDIT_CARD(\"jam-credit-card\", '\\uea22'),\n    CREDIT_CARD_F(\"jam-credit-card-f\", '\\uea21'),\n    CROP(\"jam-crop\", '\\uea23'),\n    CROWN(\"jam-crown\", '\\uea25'),\n    CROWN_F(\"jam-crown-f\", '\\uea24'),\n    CUTLERY(\"jam-cutlery\", '\\uea27'),\n    CUTLERY_F(\"jam-cutlery-f\", '\\uea26'),\n    CUTTER(\"jam-cutter\", '\\uea29'),\n    CUTTER_F(\"jam-cutter-f\", '\\uea28'),\n    DASHBOARD(\"jam-dashboard\", '\\uea2b'),\n    DASHBOARD_F(\"jam-dashboard-f\", '\\uea2a'),\n    DATABASE(\"jam-database\", '\\uea2d'),\n    DATABASE_F(\"jam-database-f\", '\\uea2c'),\n    DEEZER(\"jam-deezer\", '\\uea30'),\n    DEEZER_CIRCLE(\"jam-deezer-circle\", '\\uea2e'),\n    DEEZER_SQUARE(\"jam-deezer-square\", '\\uea2f'),\n    DELETE(\"jam-delete\", '\\uea32'),\n    DELETE_F(\"jam-delete-f\", '\\uea31'),\n    DEVIANTART(\"jam-deviantart\", '\\uea35'),\n    DEVIANTART_CIRCLE(\"jam-deviantart-circle\", '\\uea33'),\n    DEVIANTART_SQUARE(\"jam-deviantart-square\", '\\uea34'),\n    DIGG(\"jam-digg\", '\\uea36'),\n    DIRECTION(\"jam-direction\", '\\uea38'),\n    DIRECTIONS(\"jam-directions\", '\\uea3a'),\n    DIRECTIONS_F(\"jam-directions-f\", '\\uea39'),\n    DIRECTION_F(\"jam-direction-f\", '\\uea37'),\n    DISC(\"jam-disc\", '\\uea3c'),\n    DISC_F(\"jam-disc-f\", '\\uea3b'),\n    DISQUS(\"jam-disqus\", '\\uea3f'),\n    DISQUS_CIRCLE(\"jam-disqus-circle\", '\\uea3d'),\n    DISQUS_SQUARE(\"jam-disqus-square\", '\\uea3e'),\n    DJ(\"jam-dj\", '\\uea41'),\n    DJ_F(\"jam-dj-f\", '\\uea40'),\n    DNA(\"jam-dna\", '\\uea42'),\n    DOCUMENT(\"jam-document\", '\\uea44'),\n    DOCUMENT_F(\"jam-document-f\", '\\uea43'),\n    DOOR(\"jam-door\", '\\uea45'),\n    DOWNLOAD(\"jam-download\", '\\uea46'),\n    DRUPAL(\"jam-drupal\", '\\uea49'),\n    DRUPAL_CIRCLE(\"jam-drupal-circle\", '\\uea47'),\n    DRUPAL_SQUARE(\"jam-drupal-square\", '\\uea48'),\n    EBAY(\"jam-ebay\", '\\uea4a'),\n    EGG(\"jam-egg\", '\\uea4c'),\n    EGGS(\"jam-eggs\", '\\uea4e'),\n    EGGS_F(\"jam-eggs-f\", '\\uea4d'),\n    EGG_F(\"jam-egg-f\", '\\uea4b'),\n    EJECT(\"jam-eject\", '\\uea53'),\n    EJECT_CIRCLE(\"jam-eject-circle\", '\\uea50'),\n    EJECT_CIRCLE_F(\"jam-eject-circle-f\", '\\uea4f'),\n    EJECT_SQUARE(\"jam-eject-square\", '\\uea52'),\n    EJECT_SQUARE_F(\"jam-eject-square-f\", '\\uea51'),\n    ENVELOPE(\"jam-envelope\", '\\uea57'),\n    ENVELOPE_F(\"jam-envelope-f\", '\\uea54'),\n    ENVELOPE_OPEN(\"jam-envelope-open\", '\\uea56'),\n    ENVELOPE_OPEN_F(\"jam-envelope-open-f\", '\\uea55'),\n    EXTINGUISHER(\"jam-extinguisher\", '\\uea59'),\n    EXTINGUISHER_F(\"jam-extinguisher-f\", '\\uea58'),\n    EYE(\"jam-eye\", '\\uea5d'),\n    EYEDROPPER(\"jam-eyedropper\", '\\uea5f'),\n    EYEDROPPER_F(\"jam-eyedropper-f\", '\\uea5e'),\n    EYE_CLOSE(\"jam-eye-close\", '\\uea5b'),\n    EYE_CLOSE_F(\"jam-eye-close-f\", '\\uea5a'),\n    EYE_F(\"jam-eye-f\", '\\uea5c'),\n    FACEBOOK(\"jam-facebook\", '\\uea62'),\n    FACEBOOK_CIRCLE(\"jam-facebook-circle\", '\\uea60'),\n    FACEBOOK_SQUARE(\"jam-facebook-square\", '\\uea61'),\n    FAST_BACKWARD(\"jam-fast-backward\", '\\uea67'),\n    FAST_BACKWARD_CIRCLE(\"jam-fast-backward-circle\", '\\uea64'),\n    FAST_BACKWARD_CIRCLE_F(\"jam-fast-backward-circle-f\", '\\uea63'),\n    FAST_BACKWARD_SQUARE(\"jam-fast-backward-square\", '\\uea66'),\n    FAST_BACKWARD_SQUARE_F(\"jam-fast-backward-square-f\", '\\uea65'),\n    FAST_FORWARD(\"jam-fast-forward\", '\\uea6c'),\n    FAST_FORWARD_CIRCLE(\"jam-fast-forward-circle\", '\\uea69'),\n    FAST_FORWARD_CIRCLE_F(\"jam-fast-forward-circle-f\", '\\uea68'),\n    FAST_FORWARD_SQUARE(\"jam-fast-forward-square\", '\\uea6b'),\n    FAST_FORWARD_SQUARE_F(\"jam-fast-forward-square-f\", '\\uea6a'),\n    FEATHER(\"jam-feather\", '\\uea6e'),\n    FEATHER_F(\"jam-feather-f\", '\\uea6d'),\n    FEMALE(\"jam-female\", '\\uea6f'),\n    FILE(\"jam-file\", '\\uea71'),\n    FILES(\"jam-files\", '\\uea73'),\n    FILES_F(\"jam-files-f\", '\\uea72'),\n    FILE_F(\"jam-file-f\", '\\uea70'),\n    FILTER(\"jam-filter\", '\\uea75'),\n    FILTER_F(\"jam-filter-f\", '\\uea74'),\n    FINGERPRINT(\"jam-fingerprint\", '\\uea76'),\n    FIRST_AID(\"jam-first-aid\", '\\uea78'),\n    FIRST_AID_F(\"jam-first-aid-f\", '\\uea77'),\n    FISH(\"jam-fish\", '\\uea79'),\n    FIVERR(\"jam-fiverr\", '\\uea7c'),\n    FIVERR_CIRCLE(\"jam-fiverr-circle\", '\\uea7a'),\n    FIVERR_SQUARE(\"jam-fiverr-square\", '\\uea7b'),\n    FLAG(\"jam-flag\", '\\uea7e'),\n    FLAG_F(\"jam-flag-f\", '\\uea7d'),\n    FLAME(\"jam-flame\", '\\uea80'),\n    FLAME_F(\"jam-flame-f\", '\\uea7f'),\n    FLASHLIGHT_OFF(\"jam-flashlight-off\", '\\uea82'),\n    FLASHLIGHT_OFF_F(\"jam-flashlight-off-f\", '\\uea81'),\n    FLASHLIGHT_ON(\"jam-flashlight-on\", '\\uea84'),\n    FLASHLIGHT_ON_F(\"jam-flashlight-on-f\", '\\uea83'),\n    FLASK(\"jam-flask\", '\\uea85'),\n    FLICKR(\"jam-flickr\", '\\uea88'),\n    FLICKR_CIRCLE(\"jam-flickr-circle\", '\\uea86'),\n    FLICKR_SQUARE(\"jam-flickr-square\", '\\uea87'),\n    FLOWER(\"jam-flower\", '\\uea89'),\n    FOLDER(\"jam-folder\", '\\uea8f'),\n    FOLDER_F(\"jam-folder-f\", '\\uea8a'),\n    FOLDER_OPEN(\"jam-folder-open\", '\\uea8c'),\n    FOLDER_OPEN_F(\"jam-folder-open-f\", '\\uea8b'),\n    FOLDER_ZIP(\"jam-folder-zip\", '\\uea8e'),\n    FOLDER_ZIP_F(\"jam-folder-zip-f\", '\\uea8d'),\n    FOOTBALL(\"jam-football\", '\\uea90'),\n    FORK(\"jam-fork\", '\\uea92'),\n    FORK_F(\"jam-fork-f\", '\\uea91'),\n    FORWARD(\"jam-forward\", '\\uea97'),\n    FORWARD_CIRCLE(\"jam-forward-circle\", '\\uea94'),\n    FORWARD_CIRCLE_F(\"jam-forward-circle-f\", '\\uea93'),\n    FORWARD_SQUARE(\"jam-forward-square\", '\\uea96'),\n    FORWARD_SQUARE_F(\"jam-forward-square-f\", '\\uea95'),\n    FOURSQUARE(\"jam-foursquare\", '\\uea98'),\n    GAMEPAD(\"jam-gamepad\", '\\uea9c'),\n    GAMEPAD_F(\"jam-gamepad-f\", '\\uea99'),\n    GAMEPAD_RETRO(\"jam-gamepad-retro\", '\\uea9b'),\n    GAMEPAD_RETRO_F(\"jam-gamepad-retro-f\", '\\uea9a'),\n    GHOST(\"jam-ghost\", '\\ueaa1'),\n    GHOST_F(\"jam-ghost-f\", '\\uea9d'),\n    GHOST_ORG(\"jam-ghost-org\", '\\ueaa0'),\n    GHOST_ORG_CIRCLE(\"jam-ghost-org-circle\", '\\uea9e'),\n    GHOST_ORG_SQUARE(\"jam-ghost-org-square\", '\\uea9f'),\n    GIFT(\"jam-gift\", '\\ueaa3'),\n    GIFT_F(\"jam-gift-f\", '\\ueaa2'),\n    GITHUB(\"jam-github\", '\\ueaa6'),\n    GITHUB_CIRCLE(\"jam-github-circle\", '\\ueaa4'),\n    GITHUB_SQUARE(\"jam-github-square\", '\\ueaa5'),\n    GITLAB(\"jam-gitlab\", '\\ueaa9'),\n    GITLAB_CIRCLE(\"jam-gitlab-circle\", '\\ueaa7'),\n    GITLAB_SQUARE(\"jam-gitlab-square\", '\\ueaa8'),\n    GLASS_EMPTY(\"jam-glass-empty\", '\\ueaaa'),\n    GLASS_FILLED(\"jam-glass-filled\", '\\ueaac'),\n    GLASS_FILLED_F(\"jam-glass-filled-f\", '\\ueaab'),\n    GLUE(\"jam-glue\", '\\ueaae'),\n    GLUE_F(\"jam-glue-f\", '\\ueaad'),\n    GOOGLE(\"jam-google\", '\\ueab7'),\n    GOOGLE_CIRCLE(\"jam-google-circle\", '\\ueaaf'),\n    GOOGLE_PLAY(\"jam-google-play\", '\\ueab2'),\n    GOOGLE_PLAY_CIRCLE(\"jam-google-play-circle\", '\\ueab0'),\n    GOOGLE_PLAY_SQUARE(\"jam-google-play-square\", '\\ueab1'),\n    GOOGLE_PLUS(\"jam-google-plus\", '\\ueab5'),\n    GOOGLE_PLUS_CIRCLE(\"jam-google-plus-circle\", '\\ueab3'),\n    GOOGLE_PLUS_SQUARE(\"jam-google-plus-square\", '\\ueab4'),\n    GOOGLE_SQUARE(\"jam-google-square\", '\\ueab6'),\n    GPS(\"jam-gps\", '\\ueab9'),\n    GPS_F(\"jam-gps-f\", '\\ueab8'),\n    GRID(\"jam-grid\", '\\ueabb'),\n    GRID_F(\"jam-grid-f\", '\\ueaba'),\n    HAIRDRYER(\"jam-hairdryer\", '\\ueabd'),\n    HAIRDRYER_F(\"jam-hairdryer-f\", '\\ueabc'),\n    HAMMER(\"jam-hammer\", '\\ueabf'),\n    HAMMER_F(\"jam-hammer-f\", '\\ueabe'),\n    HASHTAG(\"jam-hashtag\", '\\ueac0'),\n    HEADER(\"jam-header\", '\\ueac7'),\n    HEADER_1(\"jam-header-1\", '\\ueac1'),\n    HEADER_2(\"jam-header-2\", '\\ueac2'),\n    HEADER_3(\"jam-header-3\", '\\ueac3'),\n    HEADER_4(\"jam-header-4\", '\\ueac4'),\n    HEADER_5(\"jam-header-5\", '\\ueac5'),\n    HEADER_6(\"jam-header-6\", '\\ueac6'),\n    HEADSET(\"jam-headset\", '\\ueac9'),\n    HEADSET_F(\"jam-headset-f\", '\\ueac8'),\n    HEART(\"jam-heart\", '\\ueacb'),\n    HEART_F(\"jam-heart-f\", '\\ueaca'),\n    HELMET(\"jam-helmet\", '\\ueacd'),\n    HELMET_F(\"jam-helmet-f\", '\\ueacc'),\n    HELP(\"jam-help\", '\\ueacf'),\n    HELP_F(\"jam-help-f\", '\\ueace'),\n    HIGHLIGHTER(\"jam-highlighter\", '\\uead1'),\n    HIGHLIGHTER_F(\"jam-highlighter-f\", '\\uead0'),\n    HISTORY(\"jam-history\", '\\uead2'),\n    HOME(\"jam-home\", '\\uead4'),\n    HOME_F(\"jam-home-f\", '\\uead3'),\n    HOURGLASS(\"jam-hourglass\", '\\uead6'),\n    HOURGLASS_F(\"jam-hourglass-f\", '\\uead5'),\n    ICE_CREAM(\"jam-ice-cream\", '\\uead8'),\n    ICE_CREAM_F(\"jam-ice-cream-f\", '\\uead7'),\n    ID_CARD(\"jam-id-card\", '\\ueada'),\n    ID_CARD_F(\"jam-id-card-f\", '\\uead9'),\n    INBOX(\"jam-inbox\", '\\ueadc'),\n    INBOXES(\"jam-inboxes\", '\\ueade'),\n    INBOXES_F(\"jam-inboxes-f\", '\\ueadd'),\n    INBOX_F(\"jam-inbox-f\", '\\ueadb'),\n    INDENT(\"jam-indent\", '\\ueadf'),\n    INFINITE(\"jam-infinite\", '\\ueae0'),\n    INFO(\"jam-info\", '\\ueae2'),\n    INFO_F(\"jam-info-f\", '\\ueae1'),\n    INSTAGRAM(\"jam-instagram\", '\\ueae3'),\n    INSTANT_PICTURE(\"jam-instant-picture\", '\\ueae5'),\n    INSTANT_PICTURE_F(\"jam-instant-picture-f\", '\\ueae4'),\n    ITALIC(\"jam-italic\", '\\ueae6'),\n    JAM_500PX(\"jam-500px\", '\\ue900'),\n    JOYSTICK(\"jam-joystick\", '\\ueae8'),\n    JOYSTICK_F(\"jam-joystick-f\", '\\ueae7'),\n    KEY(\"jam-key\", '\\ueaea'),\n    KEYBOARD(\"jam-keyboard\", '\\ueaec'),\n    KEYBOARD_F(\"jam-keyboard-f\", '\\ueaeb'),\n    KEY_F(\"jam-key-f\", '\\ueae9'),\n    LANGUAGE(\"jam-language\", '\\ueaed'),\n    LAYERS(\"jam-layers\", '\\ueaef'),\n    LAYERS_F(\"jam-layers-f\", '\\ueaee'),\n    LAYOUT(\"jam-layout\", '\\ueaf1'),\n    LAYOUT_F(\"jam-layout-f\", '\\ueaf0'),\n    LEAF(\"jam-leaf\", '\\ueaf3'),\n    LEAF_F(\"jam-leaf-f\", '\\ueaf2'),\n    LIFEBUOY(\"jam-lifebuoy\", '\\ueaf5'),\n    LIFEBUOY_F(\"jam-lifebuoy-f\", '\\ueaf4'),\n    LIGHTBULB(\"jam-lightbulb\", '\\ueaf7'),\n    LIGHTBULB_F(\"jam-lightbulb-f\", '\\ueaf6'),\n    LINE(\"jam-line\", '\\ueaf8'),\n    LINK(\"jam-link\", '\\ueaf9'),\n    LINKEDIN(\"jam-linkedin\", '\\ueafc'),\n    LINKEDIN_CIRCLE(\"jam-linkedin-circle\", '\\ueafa'),\n    LINKEDIN_SQUARE(\"jam-linkedin-square\", '\\ueafb'),\n    LOG_IN(\"jam-log-in\", '\\ueafd'),\n    LOG_OUT(\"jam-log-out\", '\\ueafe'),\n    LUGGAGE(\"jam-luggage\", '\\ueb00'),\n    LUGGAGE_F(\"jam-luggage-f\", '\\ueaff'),\n    MAGIC(\"jam-magic\", '\\ueb02'),\n    MAGIC_F(\"jam-magic-f\", '\\ueb01'),\n    MAGNET(\"jam-magnet\", '\\ueb04'),\n    MAGNET_F(\"jam-magnet-f\", '\\ueb03'),\n    MALE(\"jam-male\", '\\ueb05'),\n    MAP(\"jam-map\", '\\ueb09'),\n    MAP_F(\"jam-map-f\", '\\ueb06'),\n    MAP_MARKER(\"jam-map-marker\", '\\ueb08'),\n    MAP_MARKER_F(\"jam-map-marker-f\", '\\ueb07'),\n    MASK(\"jam-mask\", '\\ueb0b'),\n    MASK_F(\"jam-mask-f\", '\\ueb0a'),\n    MEDAL(\"jam-medal\", '\\ueb0d'),\n    MEDAL_F(\"jam-medal-f\", '\\ueb0c'),\n    MEDICAL(\"jam-medical\", '\\ueb0e'),\n    MEDIUM(\"jam-medium\", '\\ueb11'),\n    MEDIUM_CIRCLE(\"jam-medium-circle\", '\\ueb0f'),\n    MEDIUM_SQUARE(\"jam-medium-square\", '\\ueb10'),\n    MENU(\"jam-menu\", '\\ueb12'),\n    MERGE(\"jam-merge\", '\\ueb14'),\n    MERGE_F(\"jam-merge-f\", '\\ueb13'),\n    MESSAGE(\"jam-message\", '\\ueb1c'),\n    MESSAGES(\"jam-messages\", '\\ueb20'),\n    MESSAGES_ALT(\"jam-messages-alt\", '\\ueb1e'),\n    MESSAGES_ALT_F(\"jam-messages-alt-f\", '\\ueb1d'),\n    MESSAGES_F(\"jam-messages-f\", '\\ueb1f'),\n    MESSAGE_ALT(\"jam-message-alt\", '\\ueb18'),\n    MESSAGE_ALT_F(\"jam-message-alt-f\", '\\ueb15'),\n    MESSAGE_ALT_WRITING(\"jam-message-alt-writing\", '\\ueb17'),\n    MESSAGE_ALT_WRITING_F(\"jam-message-alt-writing-f\", '\\ueb16'),\n    MESSAGE_F(\"jam-message-f\", '\\ueb19'),\n    MESSAGE_WRITING(\"jam-message-writing\", '\\ueb1b'),\n    MESSAGE_WRITING_F(\"jam-message-writing-f\", '\\ueb1a'),\n    MESSENGER(\"jam-messenger\", '\\ueb21'),\n    MIC(\"jam-mic\", '\\ueb28'),\n    MICROCHIP(\"jam-microchip\", '\\ueb2a'),\n    MICROCHIP_F(\"jam-microchip-f\", '\\ueb29'),\n    MIC_ALT(\"jam-mic-alt\", '\\ueb22'),\n    MIC_CIRCLE(\"jam-mic-circle\", '\\ueb24'),\n    MIC_CIRCLE_F(\"jam-mic-circle-f\", '\\ueb23'),\n    MIC_F(\"jam-mic-f\", '\\ueb25'),\n    MIC_SQUARE(\"jam-mic-square\", '\\ueb27'),\n    MIC_SQUARE_F(\"jam-mic-square-f\", '\\ueb26'),\n    MINUS(\"jam-minus\", '\\ueb2f'),\n    MINUS_CIRCLE(\"jam-minus-circle\", '\\ueb2c'),\n    MINUS_CIRCLE_F(\"jam-minus-circle-f\", '\\ueb2b'),\n    MINUS_RECTANGLE(\"jam-minus-rectangle\", '\\ueb2e'),\n    MINUS_RECTANGLE_F(\"jam-minus-rectangle-f\", '\\ueb2d'),\n    MOON(\"jam-moon\", '\\ueb31'),\n    MOON_F(\"jam-moon-f\", '\\ueb30'),\n    MORE_HORIZONTAL(\"jam-more-horizontal\", '\\ueb33'),\n    MORE_HORIZONTAL_F(\"jam-more-horizontal-f\", '\\ueb32'),\n    MORE_VERTICAL(\"jam-more-vertical\", '\\ueb35'),\n    MORE_VERTICAL_F(\"jam-more-vertical-f\", '\\ueb34'),\n    MOUNTAIN(\"jam-mountain\", '\\ueb37'),\n    MOUNTAIN_F(\"jam-mountain-f\", '\\ueb36'),\n    MOVE(\"jam-move\", '\\ueb39'),\n    MOVE_ALT(\"jam-move-alt\", '\\ueb38'),\n    MOVIE(\"jam-movie\", '\\ueb3a'),\n    MUG(\"jam-mug\", '\\ueb3c'),\n    MUG_F(\"jam-mug-f\", '\\ueb3b'),\n    MUSIC(\"jam-music\", '\\ueb3e'),\n    MUSIC_F(\"jam-music-f\", '\\ueb3d'),\n    MYSPACE(\"jam-myspace\", '\\ueb41'),\n    MYSPACE_CIRCLE(\"jam-myspace-circle\", '\\ueb3f'),\n    MYSPACE_SQUARE(\"jam-myspace-square\", '\\ueb40'),\n    NAPSTER(\"jam-napster\", '\\ueb44'),\n    NAPSTER_CIRCLE(\"jam-napster-circle\", '\\ueb42'),\n    NAPSTER_SQUARE(\"jam-napster-square\", '\\ueb43'),\n    NEWSLETTER(\"jam-newsletter\", '\\ueb46'),\n    NEWSLETTER_F(\"jam-newsletter-f\", '\\ueb45'),\n    NEWSPAPER(\"jam-newspaper\", '\\ueb48'),\n    NEWSPAPER_F(\"jam-newspaper-f\", '\\ueb47'),\n    NPM(\"jam-npm\", '\\ueb49'),\n    ODNOKLASSNIKI(\"jam-odnoklassniki\", '\\ueb4c'),\n    ODNOKLASSNIKI_CIRCLE(\"jam-odnoklassniki-circle\", '\\ueb4a'),\n    ODNOKLASSNIKI_SQUARE(\"jam-odnoklassniki-square\", '\\ueb4b'),\n    OPERA(\"jam-opera\", '\\ueb4f'),\n    OPERA_CIRCLE(\"jam-opera-circle\", '\\ueb4d'),\n    OPERA_SQUARE(\"jam-opera-square\", '\\ueb4e'),\n    ORDERED_LIST(\"jam-ordered-list\", '\\ueb50'),\n    PADLOCK(\"jam-padlock\", '\\ueb58'),\n    PADLOCK_ALT(\"jam-padlock-alt\", '\\ueb54'),\n    PADLOCK_ALT_F(\"jam-padlock-alt-f\", '\\ueb51'),\n    PADLOCK_ALT_OPEN(\"jam-padlock-alt-open\", '\\ueb53'),\n    PADLOCK_ALT_OPEN_F(\"jam-padlock-alt-open-f\", '\\ueb52'),\n    PADLOCK_F(\"jam-padlock-f\", '\\ueb55'),\n    PADLOCK_OPEN(\"jam-padlock-open\", '\\ueb57'),\n    PADLOCK_OPEN_F(\"jam-padlock-open-f\", '\\ueb56'),\n    PAPER_PLANE(\"jam-paper-plane\", '\\ueb5a'),\n    PAPER_PLANE_F(\"jam-paper-plane-f\", '\\ueb59'),\n    PATREON(\"jam-patreon\", '\\ueb5d'),\n    PATREON_CIRCLE(\"jam-patreon-circle\", '\\ueb5b'),\n    PATREON_SQUARE(\"jam-patreon-square\", '\\ueb5c'),\n    PAUSE(\"jam-pause\", '\\ueb5e'),\n    PAYPAL(\"jam-paypal\", '\\ueb61'),\n    PAYPAL_CIRCLE(\"jam-paypal-circle\", '\\ueb5f'),\n    PAYPAL_SQUARE(\"jam-paypal-square\", '\\ueb60'),\n    PEN(\"jam-pen\", '\\ueb63'),\n    PENCIL(\"jam-pencil\", '\\ueb65'),\n    PENCIL_F(\"jam-pencil-f\", '\\ueb64'),\n    PEN_F(\"jam-pen-f\", '\\ueb62'),\n    PERISCOPE(\"jam-periscope\", '\\ueb68'),\n    PERISCOPE_CIRCLE(\"jam-periscope-circle\", '\\ueb66'),\n    PERISCOPE_SQUARE(\"jam-periscope-square\", '\\ueb67'),\n    PHONE(\"jam-phone\", '\\ueb6a'),\n    PHONE_F(\"jam-phone-f\", '\\ueb69'),\n    PICTURE(\"jam-picture\", '\\ueb6c'),\n    PICTURES(\"jam-pictures\", '\\ueb6e'),\n    PICTURES_F(\"jam-pictures-f\", '\\ueb6d'),\n    PICTURE_F(\"jam-picture-f\", '\\ueb6b'),\n    PIE_CHART(\"jam-pie-chart\", '\\ueb71'),\n    PIE_CHART_ALT(\"jam-pie-chart-alt\", '\\ueb6f'),\n    PIE_CHART_F(\"jam-pie-chart-f\", '\\ueb70'),\n    PIN(\"jam-pin\", '\\ueb75'),\n    PINTEREST(\"jam-pinterest\", '\\ueb78'),\n    PINTEREST_CIRCLE(\"jam-pinterest-circle\", '\\ueb76'),\n    PINTEREST_SQUARE(\"jam-pinterest-square\", '\\ueb77'),\n    PIN_ALT(\"jam-pin-alt\", '\\ueb73'),\n    PIN_ALT_F(\"jam-pin-alt-f\", '\\ueb72'),\n    PIN_F(\"jam-pin-f\", '\\ueb74'),\n    PIZZA_SLICE(\"jam-pizza-slice\", '\\ueb79'),\n    PLANE(\"jam-plane\", '\\ueb7b'),\n    PLANE_F(\"jam-plane-f\", '\\ueb7a'),\n    PLAY(\"jam-play\", '\\ueb80'),\n    PLAY_CIRCLE(\"jam-play-circle\", '\\ueb7d'),\n    PLAY_CIRCLE_F(\"jam-play-circle-f\", '\\ueb7c'),\n    PLAY_SQUARE(\"jam-play-square\", '\\ueb7f'),\n    PLAY_SQUARE_F(\"jam-play-square-f\", '\\ueb7e'),\n    PLUG(\"jam-plug\", '\\ueb82'),\n    PLUG_F(\"jam-plug-f\", '\\ueb81'),\n    PLUS(\"jam-plus\", '\\ueb87'),\n    PLUS_CIRCLE(\"jam-plus-circle\", '\\ueb84'),\n    PLUS_CIRCLE_F(\"jam-plus-circle-f\", '\\ueb83'),\n    PLUS_RECTANGLE(\"jam-plus-rectangle\", '\\ueb86'),\n    PLUS_RECTANGLE_F(\"jam-plus-rectangle-f\", '\\ueb85'),\n    POCKET_WATCH(\"jam-pocket-watch\", '\\ueb89'),\n    POCKET_WATCH_F(\"jam-pocket-watch-f\", '\\ueb88'),\n    PODCAST(\"jam-podcast\", '\\ueb8a'),\n    POWER(\"jam-power\", '\\ueb8b'),\n    PRINTER(\"jam-printer\", '\\ueb8d'),\n    PRINTER_F(\"jam-printer-f\", '\\ueb8c'),\n    QR_CODE(\"jam-qr-code\", '\\ueb8e'),\n    QUORA(\"jam-quora\", '\\ueb91'),\n    QUORA_CIRCLE(\"jam-quora-circle\", '\\ueb8f'),\n    QUORA_SQUARE(\"jam-quora-square\", '\\ueb90'),\n    RAINBOW(\"jam-rainbow\", '\\ueb92'),\n    REC(\"jam-rec\", '\\ueb93'),\n    RECTANGLE(\"jam-rectangle\", '\\ueb95'),\n    RECTANGLE_F(\"jam-rectangle-f\", '\\ueb94'),\n    REDDIT(\"jam-reddit\", '\\ueb96'),\n    REDO(\"jam-redo\", '\\ueb97'),\n    REFRESH(\"jam-refresh\", '\\ueb99'),\n    REFRESH_REVERSE(\"jam-refresh-reverse\", '\\ueb98'),\n    REPEAT(\"jam-repeat\", '\\ueb9a'),\n    ROCKET(\"jam-rocket\", '\\ueb9c'),\n    ROCKET_F(\"jam-rocket-f\", '\\ueb9b'),\n    RSS_FEED(\"jam-rss-feed\", '\\ueb9d'),\n    RUBBER(\"jam-rubber\", '\\ueb9e'),\n    RULER(\"jam-ruler\", '\\ueba0'),\n    RULER_F(\"jam-ruler-f\", '\\ueb9f'),\n    SAVE(\"jam-save\", '\\ueba2'),\n    SAVE_F(\"jam-save-f\", '\\ueba1'),\n    SCISSORS(\"jam-scissors\", '\\ueba3'),\n    SCREEN(\"jam-screen\", '\\ueba5'),\n    SCREEN_F(\"jam-screen-f\", '\\ueba4'),\n    SCREWDRIVER(\"jam-screwdriver\", '\\ueba7'),\n    SCREWDRIVER_F(\"jam-screwdriver-f\", '\\ueba6'),\n    SEARCH(\"jam-search\", '\\uebab'),\n    SEARCH_FOLDER(\"jam-search-folder\", '\\ueba8'),\n    SEARCH_MINUS(\"jam-search-minus\", '\\ueba9'),\n    SEARCH_PLUS(\"jam-search-plus\", '\\uebaa'),\n    SETTINGS_ALT(\"jam-settings-alt\", '\\uebb8'),\n    SET_BACKWARD(\"jam-set-backward\", '\\uebb0'),\n    SET_BACKWARD_CIRCLE(\"jam-set-backward-circle\", '\\uebad'),\n    SET_BACKWARD_CIRCLE_F(\"jam-set-backward-circle-f\", '\\uebac'),\n    SET_BACKWARD_SQUARE(\"jam-set-backward-square\", '\\uebaf'),\n    SET_BACKWARD_SQUARE_F(\"jam-set-backward-square-f\", '\\uebae'),\n    SET_FORWARD(\"jam-set-forward\", '\\uebb5'),\n    SET_FORWARD_CIRCLE(\"jam-set-forward-circle\", '\\uebb2'),\n    SET_FORWARD_CIRCLE_F(\"jam-set-forward-circle-f\", '\\uebb1'),\n    SET_FORWARD_SQUARE(\"jam-set-forward-square\", '\\uebb4'),\n    SET_FORWARD_SQUARE_F(\"jam-set-forward-square-f\", '\\uebb3'),\n    SET_SQUARE(\"jam-set-square\", '\\uebb7'),\n    SET_SQUARE_F(\"jam-set-square-f\", '\\uebb6'),\n    SHARE(\"jam-share\", '\\uebbb'),\n    SHARE_ALT(\"jam-share-alt\", '\\uebba'),\n    SHARE_ALT_F(\"jam-share-alt-f\", '\\uebb9'),\n    SHIELD(\"jam-shield\", '\\uebc6'),\n    SHIELD_CHECK(\"jam-shield-check\", '\\uebbd'),\n    SHIELD_CHECK_F(\"jam-shield-check-f\", '\\uebbc'),\n    SHIELD_CLOSE(\"jam-shield-close\", '\\uebbf'),\n    SHIELD_CLOSE_F(\"jam-shield-close-f\", '\\uebbe'),\n    SHIELD_F(\"jam-shield-f\", '\\uebc0'),\n    SHIELD_HALF(\"jam-shield-half\", '\\uebc1'),\n    SHIELD_MINUS(\"jam-shield-minus\", '\\uebc3'),\n    SHIELD_MINUS_F(\"jam-shield-minus-f\", '\\uebc2'),\n    SHIELD_PLUS(\"jam-shield-plus\", '\\uebc5'),\n    SHIELD_PLUS_F(\"jam-shield-plus-f\", '\\uebc4'),\n    SHOPIFY(\"jam-shopify\", '\\uebc9'),\n    SHOPIFY_CIRCLE(\"jam-shopify-circle\", '\\uebc7'),\n    SHOPIFY_SQUARE(\"jam-shopify-square\", '\\uebc8'),\n    SHOPPING_BAG(\"jam-shopping-bag\", '\\uebcd'),\n    SHOPPING_BAG_ALT(\"jam-shopping-bag-alt\", '\\uebcb'),\n    SHOPPING_BAG_ALT_F(\"jam-shopping-bag-alt-f\", '\\uebca'),\n    SHOPPING_BAG_F(\"jam-shopping-bag-f\", '\\uebcc'),\n    SHOPPING_CART(\"jam-shopping-cart\", '\\uebce'),\n    SHUFFLE(\"jam-shuffle\", '\\uebcf'),\n    SIGNAL(\"jam-signal\", '\\uebd0'),\n    SITEMAP(\"jam-sitemap\", '\\uebd2'),\n    SITEMAP_F(\"jam-sitemap-f\", '\\uebd1'),\n    SKULL(\"jam-skull\", '\\uebd4'),\n    SKULL_F(\"jam-skull-f\", '\\uebd3'),\n    SKYPE(\"jam-skype\", '\\uebd7'),\n    SKYPE_CIRCLE(\"jam-skype-circle\", '\\uebd5'),\n    SKYPE_SQUARE(\"jam-skype-square\", '\\uebd6'),\n    SLACK(\"jam-slack\", '\\uebda'),\n    SLACK_CIRCLE(\"jam-slack-circle\", '\\uebd8'),\n    SLACK_SQUARE(\"jam-slack-square\", '\\uebd9'),\n    SMILEY(\"jam-smiley\", '\\uebdc'),\n    SMILEY_F(\"jam-smiley-f\", '\\uebdb'),\n    SNAPCHAT(\"jam-snapchat\", '\\uebdf'),\n    SNAPCHAT_CIRCLE(\"jam-snapchat-circle\", '\\uebdd'),\n    SNAPCHAT_SQUARE(\"jam-snapchat-square\", '\\uebde'),\n    SNOWBOARD(\"jam-snowboard\", '\\uebe1'),\n    SNOWBOARD_F(\"jam-snowboard-f\", '\\uebe0'),\n    SNOWFLAKE(\"jam-snowflake\", '\\uebe2'),\n    SOUNDCLOUD(\"jam-soundcloud\", '\\uebe3'),\n    SPEAKER(\"jam-speaker\", '\\uebe5'),\n    SPEAKER_F(\"jam-speaker-f\", '\\uebe4'),\n    SPOTIFY(\"jam-spotify\", '\\uebe6'),\n    SQUARE(\"jam-square\", '\\uebe8'),\n    SQUARESPACE(\"jam-squarespace\", '\\uebeb'),\n    SQUARESPACE_CIRCLE(\"jam-squarespace-circle\", '\\uebe9'),\n    SQUARESPACE_SQUARE(\"jam-squarespace-square\", '\\uebea'),\n    SQUARE_F(\"jam-square-f\", '\\uebe7'),\n    STACKOVERFLOW(\"jam-stackoverflow\", '\\uebee'),\n    STACKOVERFLOW_CIRCLE(\"jam-stackoverflow-circle\", '\\uebec'),\n    STACKOVERFLOW_SQUARE(\"jam-stackoverflow-square\", '\\uebed'),\n    STAMP(\"jam-stamp\", '\\uebf0'),\n    STAMP_F(\"jam-stamp-f\", '\\uebef'),\n    STAR(\"jam-star\", '\\uebf4'),\n    STAR_F(\"jam-star-f\", '\\uebf1'),\n    STAR_FULL(\"jam-star-full\", '\\uebf2'),\n    STAR_HALF(\"jam-star-half\", '\\uebf3'),\n    STATION(\"jam-station\", '\\uebf5'),\n    STOP(\"jam-stop\", '\\uebf7'),\n    STOP_SIGN(\"jam-stop-sign\", '\\uebf6'),\n    STORE(\"jam-store\", '\\uebf8'),\n    STRIKETHROUGH(\"jam-strikethrough\", '\\uebf9'),\n    STUMBLEUPON(\"jam-stumbleupon\", '\\uebfc'),\n    STUMBLEUPON_CIRCLE(\"jam-stumbleupon-circle\", '\\uebfa'),\n    STUMBLEUPON_SQUARE(\"jam-stumbleupon-square\", '\\uebfb'),\n    SUN(\"jam-sun\", '\\uebfe'),\n    SUN_F(\"jam-sun-f\", '\\uebfd'),\n    SWITCH_LEFT(\"jam-switch-left\", '\\uec00'),\n    SWITCH_LEFT_F(\"jam-switch-left-f\", '\\uebff'),\n    SWITCH_RIGHT(\"jam-switch-right\", '\\uec02'),\n    SWITCH_RIGHT_F(\"jam-switch-right-f\", '\\uec01'),\n    SWORD(\"jam-sword\", '\\uec04'),\n    SWORD_F(\"jam-sword-f\", '\\uec03'),\n    TABLET(\"jam-tablet\", '\\uec06'),\n    TABLET_F(\"jam-tablet-f\", '\\uec05'),\n    TAG(\"jam-tag\", '\\uec08'),\n    TAGS(\"jam-tags\", '\\uec0a'),\n    TAGS_F(\"jam-tags-f\", '\\uec09'),\n    TAG_F(\"jam-tag-f\", '\\uec07'),\n    TARGET(\"jam-target\", '\\uec0b'),\n    TASK_LIST(\"jam-task-list\", '\\uec0d'),\n    TASK_LIST_F(\"jam-task-list-f\", '\\uec0c'),\n    TEMPERATURE(\"jam-temperature\", '\\uec0e'),\n    TERMINAL(\"jam-terminal\", '\\uec0f'),\n    THUNDER(\"jam-thunder\", '\\uec11'),\n    THUNDER_F(\"jam-thunder-f\", '\\uec10'),\n    TICKET(\"jam-ticket\", '\\uec13'),\n    TICKET_F(\"jam-ticket-f\", '\\uec12'),\n    TOOLS(\"jam-tools\", '\\uec15'),\n    TOOLS_F(\"jam-tools-f\", '\\uec14'),\n    TORCH(\"jam-torch\", '\\uec17'),\n    TORCH_F(\"jam-torch-f\", '\\uec16'),\n    TOTEM(\"jam-totem\", '\\uec18'),\n    TRAIN(\"jam-train\", '\\uec1a'),\n    TRAIN_F(\"jam-train-f\", '\\uec19'),\n    TRANSGENDER(\"jam-transgender\", '\\uec1b'),\n    TRASH(\"jam-trash\", '\\uec1f'),\n    TRASH_ALT(\"jam-trash-alt\", '\\uec1d'),\n    TRASH_ALT_F(\"jam-trash-alt-f\", '\\uec1c'),\n    TRASH_F(\"jam-trash-f\", '\\uec1e'),\n    TREE(\"jam-tree\", '\\uec23'),\n    TREE_ALT(\"jam-tree-alt\", '\\uec21'),\n    TREE_ALT_F(\"jam-tree-alt-f\", '\\uec20'),\n    TREE_F(\"jam-tree-f\", '\\uec22'),\n    TRELLO(\"jam-trello\", '\\uec24'),\n    TRIANGLE(\"jam-triangle\", '\\uec28'),\n    TRIANGLE_DANGER(\"jam-triangle-danger\", '\\uec26'),\n    TRIANGLE_DANGER_F(\"jam-triangle-danger-f\", '\\uec25'),\n    TRIANGLE_F(\"jam-triangle-f\", '\\uec27'),\n    TROPHY(\"jam-trophy\", '\\uec2a'),\n    TROPHY_F(\"jam-trophy-f\", '\\uec29'),\n    TUBE(\"jam-tube\", '\\uec2b'),\n    TUMBLR(\"jam-tumblr\", '\\uec2e'),\n    TUMBLR_CIRCLE(\"jam-tumblr-circle\", '\\uec2c'),\n    TUMBLR_SQUARE(\"jam-tumblr-square\", '\\uec2d'),\n    TWITCH(\"jam-twitch\", '\\uec2f'),\n    TWITTER(\"jam-twitter\", '\\uec32'),\n    TWITTER_CIRCLE(\"jam-twitter-circle\", '\\uec30'),\n    TWITTER_SQUARE(\"jam-twitter-square\", '\\uec31'),\n    UMBRELLA(\"jam-umbrella\", '\\uec36'),\n    UMBRELLA_CLOSED(\"jam-umbrella-closed\", '\\uec34'),\n    UMBRELLA_CLOSED_F(\"jam-umbrella-closed-f\", '\\uec33'),\n    UMBRELLA_F(\"jam-umbrella-f\", '\\uec35'),\n    UNDERLINE(\"jam-underline\", '\\uec37'),\n    UNDO(\"jam-undo\", '\\uec38'),\n    UNINDENT(\"jam-unindent\", '\\uec39'),\n    UNIVERSE(\"jam-universe\", '\\uec3a'),\n    UNORDERED_LIST(\"jam-unordered-list\", '\\uec3b'),\n    UNSPLASH(\"jam-unsplash\", '\\uec3e'),\n    UNSPLASH_CIRCLE(\"jam-unsplash-circle\", '\\uec3c'),\n    UNSPLASH_SQUARE(\"jam-unsplash-square\", '\\uec3d'),\n    UPLOAD(\"jam-upload\", '\\uec3f'),\n    USER(\"jam-user\", '\\uec45'),\n    USERS(\"jam-users\", '\\uec46'),\n    USER_CIRCLE(\"jam-user-circle\", '\\uec40'),\n    USER_MINUS(\"jam-user-minus\", '\\uec41'),\n    USER_PLUS(\"jam-user-plus\", '\\uec42'),\n    USER_REMOVE(\"jam-user-remove\", '\\uec43'),\n    USER_SQUARE(\"jam-user-square\", '\\uec44'),\n    VIADEO(\"jam-viadeo\", '\\uec47'),\n    VIBER(\"jam-viber\", '\\uec4a'),\n    VIBER_CIRCLE(\"jam-viber-circle\", '\\uec48'),\n    VIBER_SQUARE(\"jam-viber-square\", '\\uec49'),\n    VIDEO_CAMERA(\"jam-video-camera\", '\\uec4e'),\n    VIDEO_CAMERA_F(\"jam-video-camera-f\", '\\uec4b'),\n    VIDEO_CAMERA_VINTAGE(\"jam-video-camera-vintage\", '\\uec4d'),\n    VIDEO_CAMERA_VINTAGE_F(\"jam-video-camera-vintage-f\", '\\uec4c'),\n    VIMEO(\"jam-vimeo\", '\\uec51'),\n    VIMEO_CIRCLE(\"jam-vimeo-circle\", '\\uec4f'),\n    VIMEO_SQUARE(\"jam-vimeo-square\", '\\uec50'),\n    VINE(\"jam-vine\", '\\uec54'),\n    VINE_CIRCLE(\"jam-vine-circle\", '\\uec52'),\n    VINE_SQUARE(\"jam-vine-square\", '\\uec53'),\n    VOICEMAIL(\"jam-voicemail\", '\\uec55'),\n    VOLUME(\"jam-volume\", '\\uec69'),\n    VOLUME_CIRCLE(\"jam-volume-circle\", '\\uec57'),\n    VOLUME_CIRCLE_F(\"jam-volume-circle-f\", '\\uec56'),\n    VOLUME_DOWN(\"jam-volume-down\", '\\uec5c'),\n    VOLUME_DOWN_CIRCLE(\"jam-volume-down-circle\", '\\uec59'),\n    VOLUME_DOWN_CIRCLE_F(\"jam-volume-down-circle-f\", '\\uec58'),\n    VOLUME_DOWN_SQUARE(\"jam-volume-down-square\", '\\uec5b'),\n    VOLUME_DOWN_SQUARE_F(\"jam-volume-down-square-f\", '\\uec5a'),\n    VOLUME_MUTE(\"jam-volume-mute\", '\\uec61'),\n    VOLUME_MUTE_CIRCLE(\"jam-volume-mute-circle\", '\\uec5e'),\n    VOLUME_MUTE_CIRCLE_F(\"jam-volume-mute-circle-f\", '\\uec5d'),\n    VOLUME_MUTE_SQUARE(\"jam-volume-mute-square\", '\\uec60'),\n    VOLUME_MUTE_SQUARE_F(\"jam-volume-mute-square-f\", '\\uec5f'),\n    VOLUME_SQUARE(\"jam-volume-square\", '\\uec63'),\n    VOLUME_SQUARE_F(\"jam-volume-square-f\", '\\uec62'),\n    VOLUME_UP(\"jam-volume-up\", '\\uec68'),\n    VOLUME_UP_CIRCLE(\"jam-volume-up-circle\", '\\uec65'),\n    VOLUME_UP_CIRCLE_F(\"jam-volume-up-circle-f\", '\\uec64'),\n    VOLUME_UP_SQUARE(\"jam-volume-up-square\", '\\uec67'),\n    VOLUME_UP_SQUARE_F(\"jam-volume-up-square-f\", '\\uec66'),\n    WATCH(\"jam-watch\", '\\uec6b'),\n    WATCH_F(\"jam-watch-f\", '\\uec6a'),\n    WATER_DROP(\"jam-water-drop\", '\\uec6d'),\n    WATER_DROP_F(\"jam-water-drop-f\", '\\uec6c'),\n    WHATSAPP(\"jam-whatsapp\", '\\uec6e'),\n    WIFI(\"jam-wifi\", '\\uec6f'),\n    WIKIPEDIA(\"jam-wikipedia\", '\\uec70'),\n    WORDPRESS(\"jam-wordpress\", '\\uec71'),\n    WORLD(\"jam-world\", '\\uec72'),\n    WRENCH(\"jam-wrench\", '\\uec74'),\n    WRENCH_F(\"jam-wrench-f\", '\\uec73'),\n    WRITE(\"jam-write\", '\\uec76'),\n    WRITE_F(\"jam-write-f\", '\\uec75'),\n    YAHOO(\"jam-yahoo\", '\\uec79'),\n    YAHOO_CIRCLE(\"jam-yahoo-circle\", '\\uec77'),\n    YAHOO_SQUARE(\"jam-yahoo-square\", '\\uec78'),\n    YELP(\"jam-yelp\", '\\uec7c'),\n    YELP_CIRCLE(\"jam-yelp-circle\", '\\uec7a'),\n    YELP_SQUARE(\"jam-yelp-square\", '\\uec7b'),\n    YOUTUBE(\"jam-youtube\", '\\uec7f'),\n    YOUTUBE_CIRCLE(\"jam-youtube-circle\", '\\uec7d'),\n    YOUTUBE_SQUARE(\"jam-youtube-square\", '\\uec7e');\n\n    public static Jam findByDescription(String description) {\n        for (Jam font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Jam(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-jamicons-pack/src/main/java/org/kordamp/ikonli/jam/JamIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.jam;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class JamIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/jam/3.0.0/fonts/Jam-Icons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"jam-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Jam.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Jam-Icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-jamicons-pack/src/main/java/org/kordamp/ikonli/jam/JamIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.jam;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class JamIkonProvider implements IkonProvider<Jam> {\n    @Override\n    public Class<Jam> getIkon() {\n        return Jam.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-jamicons-pack/src/main/resources/META-INF/resources/jam/3.0.0/css/jam.css",
    "content": "@font-face {\n  font-family: 'Jam-Icons';\n  src:  url('../fonts/Jam-Icons.eot?wllbxp');\n  src:  url('../fonts/Jam-Icons.eot?wllbxp#iefix') format('embedded-opentype'),\n    url('../fonts/Jam-Icons.ttf?wllbxp') format('truetype'),\n    url('../fonts/Jam-Icons.woff?wllbxp') format('woff'),\n    url('../fonts/Jam-Icons.svg?wllbxp#Jam-Icons') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"jam-\"], [class*=\" jam-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Jam-Icons' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.jam-500px:before {\n  content: \"\\e900\";\n}\n.jam-activity:before {\n  content: \"\\e901\";\n}\n.jam-airbnb:before {\n  content: \"\\e902\";\n}\n.jam-alarm-clock-f:before {\n  content: \"\\e903\";\n}\n.jam-alarm-clock:before {\n  content: \"\\e904\";\n}\n.jam-alert-f:before {\n  content: \"\\e905\";\n}\n.jam-alert:before {\n  content: \"\\e906\";\n}\n.jam-alien-f:before {\n  content: \"\\e907\";\n}\n.jam-alien:before {\n  content: \"\\e908\";\n}\n.jam-align-center:before {\n  content: \"\\e909\";\n}\n.jam-align-justify:before {\n  content: \"\\e90a\";\n}\n.jam-align-left:before {\n  content: \"\\e90b\";\n}\n.jam-align-right:before {\n  content: \"\\e90c\";\n}\n.jam-amazon:before {\n  content: \"\\e90d\";\n}\n.jam-anchor:before {\n  content: \"\\e90e\";\n}\n.jam-android-circle:before {\n  content: \"\\e90f\";\n}\n.jam-android-square:before {\n  content: \"\\e910\";\n}\n.jam-android:before {\n  content: \"\\e911\";\n}\n.jam-aperture:before {\n  content: \"\\e912\";\n}\n.jam-apple-circle:before {\n  content: \"\\e913\";\n}\n.jam-apple-square:before {\n  content: \"\\e914\";\n}\n.jam-apple:before {\n  content: \"\\e915\";\n}\n.jam-archive-f:before {\n  content: \"\\e916\";\n}\n.jam-archive:before {\n  content: \"\\e917\";\n}\n.jam-arrow-circle-down-f:before {\n  content: \"\\e918\";\n}\n.jam-arrow-circle-down-left-f:before {\n  content: \"\\e919\";\n}\n.jam-arrow-circle-down-left:before {\n  content: \"\\e91a\";\n}\n.jam-arrow-circle-down-right-f:before {\n  content: \"\\e91b\";\n}\n.jam-arrow-circle-down-right:before {\n  content: \"\\e91c\";\n}\n.jam-arrow-circle-down:before {\n  content: \"\\e91d\";\n}\n.jam-arrow-circle-left-f:before {\n  content: \"\\e91e\";\n}\n.jam-arrow-circle-left:before {\n  content: \"\\e91f\";\n}\n.jam-arrow-circle-right-f:before {\n  content: \"\\e920\";\n}\n.jam-arrow-circle-right:before {\n  content: \"\\e921\";\n}\n.jam-arrow-circle-up-f:before {\n  content: \"\\e922\";\n}\n.jam-arrow-circle-up-left-f:before {\n  content: \"\\e923\";\n}\n.jam-arrow-circle-up-left:before {\n  content: \"\\e924\";\n}\n.jam-arrow-circle-up-right-f:before {\n  content: \"\\e925\";\n}\n.jam-arrow-circle-up-right:before {\n  content: \"\\e926\";\n}\n.jam-arrow-circle-up:before {\n  content: \"\\e927\";\n}\n.jam-arrow-down-left:before {\n  content: \"\\e928\";\n}\n.jam-arrow-down-right:before {\n  content: \"\\e929\";\n}\n.jam-arrow-down:before {\n  content: \"\\e92a\";\n}\n.jam-arrow-left:before {\n  content: \"\\e92b\";\n}\n.jam-arrow-right:before {\n  content: \"\\e92c\";\n}\n.jam-arrow-square-down-f:before {\n  content: \"\\e92d\";\n}\n.jam-arrow-square-down-left-f:before {\n  content: \"\\e92e\";\n}\n.jam-arrow-square-down-left:before {\n  content: \"\\e92f\";\n}\n.jam-arrow-square-down-right-f:before {\n  content: \"\\e930\";\n}\n.jam-arrow-square-down-right:before {\n  content: \"\\e931\";\n}\n.jam-arrow-square-down:before {\n  content: \"\\e932\";\n}\n.jam-arrow-square-left-f:before {\n  content: \"\\e933\";\n}\n.jam-arrow-square-left:before {\n  content: \"\\e934\";\n}\n.jam-arrow-square-right-f:before {\n  content: \"\\e935\";\n}\n.jam-arrow-square-right:before {\n  content: \"\\e936\";\n}\n.jam-arrow-square-up-f:before {\n  content: \"\\e937\";\n}\n.jam-arrow-square-up-left-f:before {\n  content: \"\\e938\";\n}\n.jam-arrow-square-up-left:before {\n  content: \"\\e939\";\n}\n.jam-arrow-square-up-right-f:before {\n  content: \"\\e93a\";\n}\n.jam-arrow-square-up-right:before {\n  content: \"\\e93b\";\n}\n.jam-arrow-square-up:before {\n  content: \"\\e93c\";\n}\n.jam-arrow-up-left:before {\n  content: \"\\e93d\";\n}\n.jam-arrow-up-right:before {\n  content: \"\\e93e\";\n}\n.jam-arrow-up:before {\n  content: \"\\e93f\";\n}\n.jam-arrows-corners:before {\n  content: \"\\e940\";\n}\n.jam-arrows-fullscreen:before {\n  content: \"\\e941\";\n}\n.jam-arrows-h:before {\n  content: \"\\e942\";\n}\n.jam-arrows-v:before {\n  content: \"\\e943\";\n}\n.jam-attachment:before {\n  content: \"\\e944\";\n}\n.jam-background-color:before {\n  content: \"\\e945\";\n}\n.jam-backpack-f:before {\n  content: \"\\e946\";\n}\n.jam-backpack:before {\n  content: \"\\e947\";\n}\n.jam-backward-circle-f:before {\n  content: \"\\e948\";\n}\n.jam-backward-circle:before {\n  content: \"\\e949\";\n}\n.jam-backward-square-f:before {\n  content: \"\\e94a\";\n}\n.jam-backward-square:before {\n  content: \"\\e94b\";\n}\n.jam-backward:before {\n  content: \"\\e94c\";\n}\n.jam-baidu-circle:before {\n  content: \"\\e94d\";\n}\n.jam-baidu-square:before {\n  content: \"\\e94e\";\n}\n.jam-baidu:before {\n  content: \"\\e94f\";\n}\n.jam-bandage-f:before {\n  content: \"\\e950\";\n}\n.jam-bandage:before {\n  content: \"\\e951\";\n}\n.jam-bar-chart:before {\n  content: \"\\e952\";\n}\n.jam-baseball:before {\n  content: \"\\e953\";\n}\n.jam-basketball:before {\n  content: \"\\e954\";\n}\n.jam-bathtub-f:before {\n  content: \"\\e955\";\n}\n.jam-bathtub:before {\n  content: \"\\e956\";\n}\n.jam-battery-charging-f:before {\n  content: \"\\e957\";\n}\n.jam-battery-charging:before {\n  content: \"\\e958\";\n}\n.jam-battery-f:before {\n  content: \"\\e959\";\n}\n.jam-battery-half-f:before {\n  content: \"\\e95a\";\n}\n.jam-battery-half:before {\n  content: \"\\e95b\";\n}\n.jam-battery-one-quarter-f:before {\n  content: \"\\e95c\";\n}\n.jam-battery-one-quarter:before {\n  content: \"\\e95d\";\n}\n.jam-battery-three-quarters-f:before {\n  content: \"\\e95e\";\n}\n.jam-battery-three-quarters:before {\n  content: \"\\e95f\";\n}\n.jam-battery:before {\n  content: \"\\e960\";\n}\n.jam-beatport-circle:before {\n  content: \"\\e961\";\n}\n.jam-beatport-square:before {\n  content: \"\\e962\";\n}\n.jam-beatport:before {\n  content: \"\\e963\";\n}\n.jam-beer-f:before {\n  content: \"\\e964\";\n}\n.jam-beer:before {\n  content: \"\\e965\";\n}\n.jam-behance-circle:before {\n  content: \"\\e966\";\n}\n.jam-behance-square:before {\n  content: \"\\e967\";\n}\n.jam-behance:before {\n  content: \"\\e968\";\n}\n.jam-bell-f:before {\n  content: \"\\e969\";\n}\n.jam-bell-off-f:before {\n  content: \"\\e96a\";\n}\n.jam-bell-off:before {\n  content: \"\\e96b\";\n}\n.jam-bell:before {\n  content: \"\\e96c\";\n}\n.jam-bing-circle:before {\n  content: \"\\e96d\";\n}\n.jam-bing-square:before {\n  content: \"\\e96e\";\n}\n.jam-bing:before {\n  content: \"\\e96f\";\n}\n.jam-birthday-cake-f:before {\n  content: \"\\e970\";\n}\n.jam-birthday-cake:before {\n  content: \"\\e971\";\n}\n.jam-blogger-circle:before {\n  content: \"\\e972\";\n}\n.jam-blogger-square:before {\n  content: \"\\e973\";\n}\n.jam-blogger:before {\n  content: \"\\e974\";\n}\n.jam-bluetooth:before {\n  content: \"\\e975\";\n}\n.jam-bold:before {\n  content: \"\\e976\";\n}\n.jam-book-f:before {\n  content: \"\\e977\";\n}\n.jam-book:before {\n  content: \"\\e978\";\n}\n.jam-bookmark-f:before {\n  content: \"\\e979\";\n}\n.jam-bookmark-minus-f:before {\n  content: \"\\e97a\";\n}\n.jam-bookmark-minus:before {\n  content: \"\\e97b\";\n}\n.jam-bookmark-plus-f:before {\n  content: \"\\e97c\";\n}\n.jam-bookmark-plus:before {\n  content: \"\\e97d\";\n}\n.jam-bookmark-remove-f:before {\n  content: \"\\e97e\";\n}\n.jam-bookmark-remove:before {\n  content: \"\\e97f\";\n}\n.jam-bookmark:before {\n  content: \"\\e980\";\n}\n.jam-bottle-f:before {\n  content: \"\\e981\";\n}\n.jam-bottle:before {\n  content: \"\\e982\";\n}\n.jam-box-f:before {\n  content: \"\\e983\";\n}\n.jam-box:before {\n  content: \"\\e984\";\n}\n.jam-branch-f:before {\n  content: \"\\e985\";\n}\n.jam-branch:before {\n  content: \"\\e986\";\n}\n.jam-brightness-down-f:before {\n  content: \"\\e987\";\n}\n.jam-brightness-down:before {\n  content: \"\\e988\";\n}\n.jam-brightness-up-f:before {\n  content: \"\\e989\";\n}\n.jam-brightness-up:before {\n  content: \"\\e98a\";\n}\n.jam-brightness:before {\n  content: \"\\e98b\";\n}\n.jam-brush-f:before {\n  content: \"\\e98c\";\n}\n.jam-brush:before {\n  content: \"\\e98d\";\n}\n.jam-bug-f:before {\n  content: \"\\e98e\";\n}\n.jam-bug:before {\n  content: \"\\e98f\";\n}\n.jam-building-f:before {\n  content: \"\\e990\";\n}\n.jam-building:before {\n  content: \"\\e991\";\n}\n.jam-bus-f:before {\n  content: \"\\e992\";\n}\n.jam-bus:before {\n  content: \"\\e993\";\n}\n.jam-cactus-f:before {\n  content: \"\\e994\";\n}\n.jam-cactus:before {\n  content: \"\\e995\";\n}\n.jam-calculator:before {\n  content: \"\\e996\";\n}\n.jam-calendar-alt-f:before {\n  content: \"\\e997\";\n}\n.jam-calendar-alt:before {\n  content: \"\\e998\";\n}\n.jam-calendar-f:before {\n  content: \"\\e999\";\n}\n.jam-calendar:before {\n  content: \"\\e99a\";\n}\n.jam-camera-alt-f:before {\n  content: \"\\e99b\";\n}\n.jam-camera-alt:before {\n  content: \"\\e99c\";\n}\n.jam-camera-f:before {\n  content: \"\\e99d\";\n}\n.jam-camera:before {\n  content: \"\\e99e\";\n}\n.jam-candle-f:before {\n  content: \"\\e99f\";\n}\n.jam-candle:before {\n  content: \"\\e9a0\";\n}\n.jam-capsule-f:before {\n  content: \"\\e9a1\";\n}\n.jam-capsule:before {\n  content: \"\\e9a2\";\n}\n.jam-car-f:before {\n  content: \"\\e9a3\";\n}\n.jam-car:before {\n  content: \"\\e9a4\";\n}\n.jam-castle-f:before {\n  content: \"\\e9a5\";\n}\n.jam-castle:before {\n  content: \"\\e9a6\";\n}\n.jam-check:before {\n  content: \"\\e9a7\";\n}\n.jam-chevron-circle-down-f:before {\n  content: \"\\e9a8\";\n}\n.jam-chevron-circle-down-left-f:before {\n  content: \"\\e9a9\";\n}\n.jam-chevron-circle-down-left:before {\n  content: \"\\e9aa\";\n}\n.jam-chevron-circle-down-right-f:before {\n  content: \"\\e9ab\";\n}\n.jam-chevron-circle-down-right:before {\n  content: \"\\e9ac\";\n}\n.jam-chevron-circle-down:before {\n  content: \"\\e9ad\";\n}\n.jam-chevron-circle-left-f:before {\n  content: \"\\e9ae\";\n}\n.jam-chevron-circle-left:before {\n  content: \"\\e9af\";\n}\n.jam-chevron-circle-right-f:before {\n  content: \"\\e9b0\";\n}\n.jam-chevron-circle-right:before {\n  content: \"\\e9b1\";\n}\n.jam-chevron-circle-up-f:before {\n  content: \"\\e9b2\";\n}\n.jam-chevron-circle-up-left-f:before {\n  content: \"\\e9b3\";\n}\n.jam-chevron-circle-up-left:before {\n  content: \"\\e9b4\";\n}\n.jam-chevron-circle-up-right-f:before {\n  content: \"\\e9b5\";\n}\n.jam-chevron-circle-up-right:before {\n  content: \"\\e9b6\";\n}\n.jam-chevron-circle-up:before {\n  content: \"\\e9b7\";\n}\n.jam-chevron-down-left:before {\n  content: \"\\e9b8\";\n}\n.jam-chevron-down-right:before {\n  content: \"\\e9b9\";\n}\n.jam-chevron-down:before {\n  content: \"\\e9ba\";\n}\n.jam-chevron-left:before {\n  content: \"\\e9bb\";\n}\n.jam-chevron-right:before {\n  content: \"\\e9bc\";\n}\n.jam-chevron-square-down-f:before {\n  content: \"\\e9bd\";\n}\n.jam-chevron-square-down-left-f:before {\n  content: \"\\e9be\";\n}\n.jam-chevron-square-down-left:before {\n  content: \"\\e9bf\";\n}\n.jam-chevron-square-down-right-f:before {\n  content: \"\\e9c0\";\n}\n.jam-chevron-square-down-right:before {\n  content: \"\\e9c1\";\n}\n.jam-chevron-square-down:before {\n  content: \"\\e9c2\";\n}\n.jam-chevron-square-left-f:before {\n  content: \"\\e9c3\";\n}\n.jam-chevron-square-left:before {\n  content: \"\\e9c4\";\n}\n.jam-chevron-square-right-f:before {\n  content: \"\\e9c5\";\n}\n.jam-chevron-square-right:before {\n  content: \"\\e9c6\";\n}\n.jam-chevron-square-up-f:before {\n  content: \"\\e9c7\";\n}\n.jam-chevron-square-up-left-f:before {\n  content: \"\\e9c8\";\n}\n.jam-chevron-square-up-left:before {\n  content: \"\\e9c9\";\n}\n.jam-chevron-square-up-right-f:before {\n  content: \"\\e9ca\";\n}\n.jam-chevron-square-up-right:before {\n  content: \"\\e9cb\";\n}\n.jam-chevron-square-up:before {\n  content: \"\\e9cc\";\n}\n.jam-chevron-up-left:before {\n  content: \"\\e9cd\";\n}\n.jam-chevron-up-right:before {\n  content: \"\\e9ce\";\n}\n.jam-chevron-up:before {\n  content: \"\\e9cf\";\n}\n.jam-chevrons-circle-down-f:before {\n  content: \"\\e9d0\";\n}\n.jam-chevrons-circle-down-left-f:before {\n  content: \"\\e9d1\";\n}\n.jam-chevrons-circle-down-left:before {\n  content: \"\\e9d2\";\n}\n.jam-chevrons-circle-down-right-f:before {\n  content: \"\\e9d3\";\n}\n.jam-chevrons-circle-down-right:before {\n  content: \"\\e9d4\";\n}\n.jam-chevrons-circle-down:before {\n  content: \"\\e9d5\";\n}\n.jam-chevrons-circle-left-f:before {\n  content: \"\\e9d6\";\n}\n.jam-chevrons-circle-left:before {\n  content: \"\\e9d7\";\n}\n.jam-chevrons-circle-right-f:before {\n  content: \"\\e9d8\";\n}\n.jam-chevrons-circle-right:before {\n  content: \"\\e9d9\";\n}\n.jam-chevrons-circle-up-f:before {\n  content: \"\\e9da\";\n}\n.jam-chevrons-circle-up-left-f:before {\n  content: \"\\e9db\";\n}\n.jam-chevrons-circle-up-left:before {\n  content: \"\\e9dc\";\n}\n.jam-chevrons-circle-up-right-f:before {\n  content: \"\\e9dd\";\n}\n.jam-chevrons-circle-up-right:before {\n  content: \"\\e9de\";\n}\n.jam-chevrons-circle-up:before {\n  content: \"\\e9df\";\n}\n.jam-chevrons-down-left:before {\n  content: \"\\e9e0\";\n}\n.jam-chevrons-down-right:before {\n  content: \"\\e9e1\";\n}\n.jam-chevrons-down:before {\n  content: \"\\e9e2\";\n}\n.jam-chevrons-left:before {\n  content: \"\\e9e3\";\n}\n.jam-chevrons-right:before {\n  content: \"\\e9e4\";\n}\n.jam-chevrons-square-down-f:before {\n  content: \"\\e9e5\";\n}\n.jam-chevrons-square-down-left-f:before {\n  content: \"\\e9e6\";\n}\n.jam-chevrons-square-down-left:before {\n  content: \"\\e9e7\";\n}\n.jam-chevrons-square-down-right-f:before {\n  content: \"\\e9e8\";\n}\n.jam-chevrons-square-down-right:before {\n  content: \"\\e9e9\";\n}\n.jam-chevrons-square-down:before {\n  content: \"\\e9ea\";\n}\n.jam-chevrons-square-left-f:before {\n  content: \"\\e9eb\";\n}\n.jam-chevrons-square-left:before {\n  content: \"\\e9ec\";\n}\n.jam-chevrons-square-right-f:before {\n  content: \"\\e9ed\";\n}\n.jam-chevrons-square-right:before {\n  content: \"\\e9ee\";\n}\n.jam-chevrons-square-up-f:before {\n  content: \"\\e9ef\";\n}\n.jam-chevrons-square-up-left-f:before {\n  content: \"\\e9f0\";\n}\n.jam-chevrons-square-up-left:before {\n  content: \"\\e9f1\";\n}\n.jam-chevrons-square-up-right-f:before {\n  content: \"\\e9f2\";\n}\n.jam-chevrons-square-up-right:before {\n  content: \"\\e9f3\";\n}\n.jam-chevrons-square-up:before {\n  content: \"\\e9f4\";\n}\n.jam-chevrons-up-left:before {\n  content: \"\\e9f5\";\n}\n.jam-chevrons-up-right:before {\n  content: \"\\e9f6\";\n}\n.jam-chevrons-up:before {\n  content: \"\\e9f7\";\n}\n.jam-chronometer-f:before {\n  content: \"\\e9f8\";\n}\n.jam-chronometer:before {\n  content: \"\\e9f9\";\n}\n.jam-circle-f:before {\n  content: \"\\e9fa\";\n}\n.jam-circle:before {\n  content: \"\\e9fb\";\n}\n.jam-clear-format:before {\n  content: \"\\e9fc\";\n}\n.jam-clipboard-f:before {\n  content: \"\\e9fd\";\n}\n.jam-clipboard:before {\n  content: \"\\e9fe\";\n}\n.jam-clock-f:before {\n  content: \"\\e9ff\";\n}\n.jam-clock:before {\n  content: \"\\ea00\";\n}\n.jam-close-circle-f:before {\n  content: \"\\ea01\";\n}\n.jam-close-circle:before {\n  content: \"\\ea02\";\n}\n.jam-close-rectangle-f:before {\n  content: \"\\ea03\";\n}\n.jam-close-rectangle:before {\n  content: \"\\ea04\";\n}\n.jam-close:before {\n  content: \"\\ea05\";\n}\n.jam-cloud-f:before {\n  content: \"\\ea06\";\n}\n.jam-cloud-rain-f:before {\n  content: \"\\ea07\";\n}\n.jam-cloud-rain:before {\n  content: \"\\ea08\";\n}\n.jam-cloud-snow-f:before {\n  content: \"\\ea09\";\n}\n.jam-cloud-snow:before {\n  content: \"\\ea0a\";\n}\n.jam-cloud-thunder-f:before {\n  content: \"\\ea0b\";\n}\n.jam-cloud-thunder:before {\n  content: \"\\ea0c\";\n}\n.jam-cloud:before {\n  content: \"\\ea0d\";\n}\n.jam-codepen-circle:before {\n  content: \"\\ea0e\";\n}\n.jam-codepen-square:before {\n  content: \"\\ea0f\";\n}\n.jam-codepen:before {\n  content: \"\\ea10\";\n}\n.jam-coffee-cup-f:before {\n  content: \"\\ea11\";\n}\n.jam-coffee-cup:before {\n  content: \"\\ea12\";\n}\n.jam-coffee:before {\n  content: \"\\ea13\";\n}\n.jam-cog-f:before {\n  content: \"\\ea14\";\n}\n.jam-cog:before {\n  content: \"\\ea15\";\n}\n.jam-cogs-f:before {\n  content: \"\\ea16\";\n}\n.jam-cogs:before {\n  content: \"\\ea17\";\n}\n.jam-coin-f:before {\n  content: \"\\ea18\";\n}\n.jam-coin:before {\n  content: \"\\ea19\";\n}\n.jam-color:before {\n  content: \"\\ea1a\";\n}\n.jam-compass-f:before {\n  content: \"\\ea1b\";\n}\n.jam-compass:before {\n  content: \"\\ea1c\";\n}\n.jam-computer-alt-f:before {\n  content: \"\\ea1d\";\n}\n.jam-computer-alt:before {\n  content: \"\\ea1e\";\n}\n.jam-computer-f:before {\n  content: \"\\ea1f\";\n}\n.jam-computer:before {\n  content: \"\\ea20\";\n}\n.jam-credit-card-f:before {\n  content: \"\\ea21\";\n}\n.jam-credit-card:before {\n  content: \"\\ea22\";\n}\n.jam-crop:before {\n  content: \"\\ea23\";\n}\n.jam-crown-f:before {\n  content: \"\\ea24\";\n}\n.jam-crown:before {\n  content: \"\\ea25\";\n}\n.jam-cutlery-f:before {\n  content: \"\\ea26\";\n}\n.jam-cutlery:before {\n  content: \"\\ea27\";\n}\n.jam-cutter-f:before {\n  content: \"\\ea28\";\n}\n.jam-cutter:before {\n  content: \"\\ea29\";\n}\n.jam-dashboard-f:before {\n  content: \"\\ea2a\";\n}\n.jam-dashboard:before {\n  content: \"\\ea2b\";\n}\n.jam-database-f:before {\n  content: \"\\ea2c\";\n}\n.jam-database:before {\n  content: \"\\ea2d\";\n}\n.jam-deezer-circle:before {\n  content: \"\\ea2e\";\n}\n.jam-deezer-square:before {\n  content: \"\\ea2f\";\n}\n.jam-deezer:before {\n  content: \"\\ea30\";\n}\n.jam-delete-f:before {\n  content: \"\\ea31\";\n}\n.jam-delete:before {\n  content: \"\\ea32\";\n}\n.jam-deviantart-circle:before {\n  content: \"\\ea33\";\n}\n.jam-deviantart-square:before {\n  content: \"\\ea34\";\n}\n.jam-deviantart:before {\n  content: \"\\ea35\";\n}\n.jam-digg:before {\n  content: \"\\ea36\";\n}\n.jam-direction-f:before {\n  content: \"\\ea37\";\n}\n.jam-direction:before {\n  content: \"\\ea38\";\n}\n.jam-directions-f:before {\n  content: \"\\ea39\";\n}\n.jam-directions:before {\n  content: \"\\ea3a\";\n}\n.jam-disc-f:before {\n  content: \"\\ea3b\";\n}\n.jam-disc:before {\n  content: \"\\ea3c\";\n}\n.jam-disqus-circle:before {\n  content: \"\\ea3d\";\n}\n.jam-disqus-square:before {\n  content: \"\\ea3e\";\n}\n.jam-disqus:before {\n  content: \"\\ea3f\";\n}\n.jam-dj-f:before {\n  content: \"\\ea40\";\n}\n.jam-dj:before {\n  content: \"\\ea41\";\n}\n.jam-dna:before {\n  content: \"\\ea42\";\n}\n.jam-document-f:before {\n  content: \"\\ea43\";\n}\n.jam-document:before {\n  content: \"\\ea44\";\n}\n.jam-door:before {\n  content: \"\\ea45\";\n}\n.jam-download:before {\n  content: \"\\ea46\";\n}\n.jam-drupal-circle:before {\n  content: \"\\ea47\";\n}\n.jam-drupal-square:before {\n  content: \"\\ea48\";\n}\n.jam-drupal:before {\n  content: \"\\ea49\";\n}\n.jam-ebay:before {\n  content: \"\\ea4a\";\n}\n.jam-egg-f:before {\n  content: \"\\ea4b\";\n}\n.jam-egg:before {\n  content: \"\\ea4c\";\n}\n.jam-eggs-f:before {\n  content: \"\\ea4d\";\n}\n.jam-eggs:before {\n  content: \"\\ea4e\";\n}\n.jam-eject-circle-f:before {\n  content: \"\\ea4f\";\n}\n.jam-eject-circle:before {\n  content: \"\\ea50\";\n}\n.jam-eject-square-f:before {\n  content: \"\\ea51\";\n}\n.jam-eject-square:before {\n  content: \"\\ea52\";\n}\n.jam-eject:before {\n  content: \"\\ea53\";\n}\n.jam-envelope-f:before {\n  content: \"\\ea54\";\n}\n.jam-envelope-open-f:before {\n  content: \"\\ea55\";\n}\n.jam-envelope-open:before {\n  content: \"\\ea56\";\n}\n.jam-envelope:before {\n  content: \"\\ea57\";\n}\n.jam-extinguisher-f:before {\n  content: \"\\ea58\";\n}\n.jam-extinguisher:before {\n  content: \"\\ea59\";\n}\n.jam-eye-close-f:before {\n  content: \"\\ea5a\";\n}\n.jam-eye-close:before {\n  content: \"\\ea5b\";\n}\n.jam-eye-f:before {\n  content: \"\\ea5c\";\n}\n.jam-eye:before {\n  content: \"\\ea5d\";\n}\n.jam-eyedropper-f:before {\n  content: \"\\ea5e\";\n}\n.jam-eyedropper:before {\n  content: \"\\ea5f\";\n}\n.jam-facebook-circle:before {\n  content: \"\\ea60\";\n}\n.jam-facebook-square:before {\n  content: \"\\ea61\";\n}\n.jam-facebook:before {\n  content: \"\\ea62\";\n}\n.jam-fast-backward-circle-f:before {\n  content: \"\\ea63\";\n}\n.jam-fast-backward-circle:before {\n  content: \"\\ea64\";\n}\n.jam-fast-backward-square-f:before {\n  content: \"\\ea65\";\n}\n.jam-fast-backward-square:before {\n  content: \"\\ea66\";\n}\n.jam-fast-backward:before {\n  content: \"\\ea67\";\n}\n.jam-fast-forward-circle-f:before {\n  content: \"\\ea68\";\n}\n.jam-fast-forward-circle:before {\n  content: \"\\ea69\";\n}\n.jam-fast-forward-square-f:before {\n  content: \"\\ea6a\";\n}\n.jam-fast-forward-square:before {\n  content: \"\\ea6b\";\n}\n.jam-fast-forward:before {\n  content: \"\\ea6c\";\n}\n.jam-feather-f:before {\n  content: \"\\ea6d\";\n}\n.jam-feather:before {\n  content: \"\\ea6e\";\n}\n.jam-female:before {\n  content: \"\\ea6f\";\n}\n.jam-file-f:before {\n  content: \"\\ea70\";\n}\n.jam-file:before {\n  content: \"\\ea71\";\n}\n.jam-files-f:before {\n  content: \"\\ea72\";\n}\n.jam-files:before {\n  content: \"\\ea73\";\n}\n.jam-filter-f:before {\n  content: \"\\ea74\";\n}\n.jam-filter:before {\n  content: \"\\ea75\";\n}\n.jam-fingerprint:before {\n  content: \"\\ea76\";\n}\n.jam-first-aid-f:before {\n  content: \"\\ea77\";\n}\n.jam-first-aid:before {\n  content: \"\\ea78\";\n}\n.jam-fish:before {\n  content: \"\\ea79\";\n}\n.jam-fiverr-circle:before {\n  content: \"\\ea7a\";\n}\n.jam-fiverr-square:before {\n  content: \"\\ea7b\";\n}\n.jam-fiverr:before {\n  content: \"\\ea7c\";\n}\n.jam-flag-f:before {\n  content: \"\\ea7d\";\n}\n.jam-flag:before {\n  content: \"\\ea7e\";\n}\n.jam-flame-f:before {\n  content: \"\\ea7f\";\n}\n.jam-flame:before {\n  content: \"\\ea80\";\n}\n.jam-flashlight-off-f:before {\n  content: \"\\ea81\";\n}\n.jam-flashlight-off:before {\n  content: \"\\ea82\";\n}\n.jam-flashlight-on-f:before {\n  content: \"\\ea83\";\n}\n.jam-flashlight-on:before {\n  content: \"\\ea84\";\n}\n.jam-flask:before {\n  content: \"\\ea85\";\n}\n.jam-flickr-circle:before {\n  content: \"\\ea86\";\n}\n.jam-flickr-square:before {\n  content: \"\\ea87\";\n}\n.jam-flickr:before {\n  content: \"\\ea88\";\n}\n.jam-flower:before {\n  content: \"\\ea89\";\n}\n.jam-folder-f:before {\n  content: \"\\ea8a\";\n}\n.jam-folder-open-f:before {\n  content: \"\\ea8b\";\n}\n.jam-folder-open:before {\n  content: \"\\ea8c\";\n}\n.jam-folder-zip-f:before {\n  content: \"\\ea8d\";\n}\n.jam-folder-zip:before {\n  content: \"\\ea8e\";\n}\n.jam-folder:before {\n  content: \"\\ea8f\";\n}\n.jam-football:before {\n  content: \"\\ea90\";\n}\n.jam-fork-f:before {\n  content: \"\\ea91\";\n}\n.jam-fork:before {\n  content: \"\\ea92\";\n}\n.jam-forward-circle-f:before {\n  content: \"\\ea93\";\n}\n.jam-forward-circle:before {\n  content: \"\\ea94\";\n}\n.jam-forward-square-f:before {\n  content: \"\\ea95\";\n}\n.jam-forward-square:before {\n  content: \"\\ea96\";\n}\n.jam-forward:before {\n  content: \"\\ea97\";\n}\n.jam-foursquare:before {\n  content: \"\\ea98\";\n}\n.jam-gamepad-f:before {\n  content: \"\\ea99\";\n}\n.jam-gamepad-retro-f:before {\n  content: \"\\ea9a\";\n}\n.jam-gamepad-retro:before {\n  content: \"\\ea9b\";\n}\n.jam-gamepad:before {\n  content: \"\\ea9c\";\n}\n.jam-ghost-f:before {\n  content: \"\\ea9d\";\n}\n.jam-ghost-org-circle:before {\n  content: \"\\ea9e\";\n}\n.jam-ghost-org-square:before {\n  content: \"\\ea9f\";\n}\n.jam-ghost-org:before {\n  content: \"\\eaa0\";\n}\n.jam-ghost:before {\n  content: \"\\eaa1\";\n}\n.jam-gift-f:before {\n  content: \"\\eaa2\";\n}\n.jam-gift:before {\n  content: \"\\eaa3\";\n}\n.jam-github-circle:before {\n  content: \"\\eaa4\";\n}\n.jam-github-square:before {\n  content: \"\\eaa5\";\n}\n.jam-github:before {\n  content: \"\\eaa6\";\n}\n.jam-gitlab-circle:before {\n  content: \"\\eaa7\";\n}\n.jam-gitlab-square:before {\n  content: \"\\eaa8\";\n}\n.jam-gitlab:before {\n  content: \"\\eaa9\";\n}\n.jam-glass-empty:before {\n  content: \"\\eaaa\";\n}\n.jam-glass-filled-f:before {\n  content: \"\\eaab\";\n}\n.jam-glass-filled:before {\n  content: \"\\eaac\";\n}\n.jam-glue-f:before {\n  content: \"\\eaad\";\n}\n.jam-glue:before {\n  content: \"\\eaae\";\n}\n.jam-google-circle:before {\n  content: \"\\eaaf\";\n}\n.jam-google-play-circle:before {\n  content: \"\\eab0\";\n}\n.jam-google-play-square:before {\n  content: \"\\eab1\";\n}\n.jam-google-play:before {\n  content: \"\\eab2\";\n}\n.jam-google-plus-circle:before {\n  content: \"\\eab3\";\n}\n.jam-google-plus-square:before {\n  content: \"\\eab4\";\n}\n.jam-google-plus:before {\n  content: \"\\eab5\";\n}\n.jam-google-square:before {\n  content: \"\\eab6\";\n}\n.jam-google:before {\n  content: \"\\eab7\";\n}\n.jam-gps-f:before {\n  content: \"\\eab8\";\n}\n.jam-gps:before {\n  content: \"\\eab9\";\n}\n.jam-grid-f:before {\n  content: \"\\eaba\";\n}\n.jam-grid:before {\n  content: \"\\eabb\";\n}\n.jam-hairdryer-f:before {\n  content: \"\\eabc\";\n}\n.jam-hairdryer:before {\n  content: \"\\eabd\";\n}\n.jam-hammer-f:before {\n  content: \"\\eabe\";\n}\n.jam-hammer:before {\n  content: \"\\eabf\";\n}\n.jam-hashtag:before {\n  content: \"\\eac0\";\n}\n.jam-header-1:before {\n  content: \"\\eac1\";\n}\n.jam-header-2:before {\n  content: \"\\eac2\";\n}\n.jam-header-3:before {\n  content: \"\\eac3\";\n}\n.jam-header-4:before {\n  content: \"\\eac4\";\n}\n.jam-header-5:before {\n  content: \"\\eac5\";\n}\n.jam-header-6:before {\n  content: \"\\eac6\";\n}\n.jam-header:before {\n  content: \"\\eac7\";\n}\n.jam-headset-f:before {\n  content: \"\\eac8\";\n}\n.jam-headset:before {\n  content: \"\\eac9\";\n}\n.jam-heart-f:before {\n  content: \"\\eaca\";\n}\n.jam-heart:before {\n  content: \"\\eacb\";\n}\n.jam-helmet-f:before {\n  content: \"\\eacc\";\n}\n.jam-helmet:before {\n  content: \"\\eacd\";\n}\n.jam-help-f:before {\n  content: \"\\eace\";\n}\n.jam-help:before {\n  content: \"\\eacf\";\n}\n.jam-highlighter-f:before {\n  content: \"\\ead0\";\n}\n.jam-highlighter:before {\n  content: \"\\ead1\";\n}\n.jam-history:before {\n  content: \"\\ead2\";\n}\n.jam-home-f:before {\n  content: \"\\ead3\";\n}\n.jam-home:before {\n  content: \"\\ead4\";\n}\n.jam-hourglass-f:before {\n  content: \"\\ead5\";\n}\n.jam-hourglass:before {\n  content: \"\\ead6\";\n}\n.jam-ice-cream-f:before {\n  content: \"\\ead7\";\n}\n.jam-ice-cream:before {\n  content: \"\\ead8\";\n}\n.jam-id-card-f:before {\n  content: \"\\ead9\";\n}\n.jam-id-card:before {\n  content: \"\\eada\";\n}\n.jam-inbox-f:before {\n  content: \"\\eadb\";\n}\n.jam-inbox:before {\n  content: \"\\eadc\";\n}\n.jam-inboxes-f:before {\n  content: \"\\eadd\";\n}\n.jam-inboxes:before {\n  content: \"\\eade\";\n}\n.jam-indent:before {\n  content: \"\\eadf\";\n}\n.jam-infinite:before {\n  content: \"\\eae0\";\n}\n.jam-info-f:before {\n  content: \"\\eae1\";\n}\n.jam-info:before {\n  content: \"\\eae2\";\n}\n.jam-instagram:before {\n  content: \"\\eae3\";\n}\n.jam-instant-picture-f:before {\n  content: \"\\eae4\";\n}\n.jam-instant-picture:before {\n  content: \"\\eae5\";\n}\n.jam-italic:before {\n  content: \"\\eae6\";\n}\n.jam-joystick-f:before {\n  content: \"\\eae7\";\n}\n.jam-joystick:before {\n  content: \"\\eae8\";\n}\n.jam-key-f:before {\n  content: \"\\eae9\";\n}\n.jam-key:before {\n  content: \"\\eaea\";\n}\n.jam-keyboard-f:before {\n  content: \"\\eaeb\";\n}\n.jam-keyboard:before {\n  content: \"\\eaec\";\n}\n.jam-language:before {\n  content: \"\\eaed\";\n}\n.jam-layers-f:before {\n  content: \"\\eaee\";\n}\n.jam-layers:before {\n  content: \"\\eaef\";\n}\n.jam-layout-f:before {\n  content: \"\\eaf0\";\n}\n.jam-layout:before {\n  content: \"\\eaf1\";\n}\n.jam-leaf-f:before {\n  content: \"\\eaf2\";\n}\n.jam-leaf:before {\n  content: \"\\eaf3\";\n}\n.jam-lifebuoy-f:before {\n  content: \"\\eaf4\";\n}\n.jam-lifebuoy:before {\n  content: \"\\eaf5\";\n}\n.jam-lightbulb-f:before {\n  content: \"\\eaf6\";\n}\n.jam-lightbulb:before {\n  content: \"\\eaf7\";\n}\n.jam-line:before {\n  content: \"\\eaf8\";\n}\n.jam-link:before {\n  content: \"\\eaf9\";\n}\n.jam-linkedin-circle:before {\n  content: \"\\eafa\";\n}\n.jam-linkedin-square:before {\n  content: \"\\eafb\";\n}\n.jam-linkedin:before {\n  content: \"\\eafc\";\n}\n.jam-log-in:before {\n  content: \"\\eafd\";\n}\n.jam-log-out:before {\n  content: \"\\eafe\";\n}\n.jam-luggage-f:before {\n  content: \"\\eaff\";\n}\n.jam-luggage:before {\n  content: \"\\eb00\";\n}\n.jam-magic-f:before {\n  content: \"\\eb01\";\n}\n.jam-magic:before {\n  content: \"\\eb02\";\n}\n.jam-magnet-f:before {\n  content: \"\\eb03\";\n}\n.jam-magnet:before {\n  content: \"\\eb04\";\n}\n.jam-male:before {\n  content: \"\\eb05\";\n}\n.jam-map-f:before {\n  content: \"\\eb06\";\n}\n.jam-map-marker-f:before {\n  content: \"\\eb07\";\n}\n.jam-map-marker:before {\n  content: \"\\eb08\";\n}\n.jam-map:before {\n  content: \"\\eb09\";\n}\n.jam-mask-f:before {\n  content: \"\\eb0a\";\n}\n.jam-mask:before {\n  content: \"\\eb0b\";\n}\n.jam-medal-f:before {\n  content: \"\\eb0c\";\n}\n.jam-medal:before {\n  content: \"\\eb0d\";\n}\n.jam-medical:before {\n  content: \"\\eb0e\";\n}\n.jam-medium-circle:before {\n  content: \"\\eb0f\";\n}\n.jam-medium-square:before {\n  content: \"\\eb10\";\n}\n.jam-medium:before {\n  content: \"\\eb11\";\n}\n.jam-menu:before {\n  content: \"\\eb12\";\n}\n.jam-merge-f:before {\n  content: \"\\eb13\";\n}\n.jam-merge:before {\n  content: \"\\eb14\";\n}\n.jam-message-alt-f:before {\n  content: \"\\eb15\";\n}\n.jam-message-alt-writing-f:before {\n  content: \"\\eb16\";\n}\n.jam-message-alt-writing:before {\n  content: \"\\eb17\";\n}\n.jam-message-alt:before {\n  content: \"\\eb18\";\n}\n.jam-message-f:before {\n  content: \"\\eb19\";\n}\n.jam-message-writing-f:before {\n  content: \"\\eb1a\";\n}\n.jam-message-writing:before {\n  content: \"\\eb1b\";\n}\n.jam-message:before {\n  content: \"\\eb1c\";\n}\n.jam-messages-alt-f:before {\n  content: \"\\eb1d\";\n}\n.jam-messages-alt:before {\n  content: \"\\eb1e\";\n}\n.jam-messages-f:before {\n  content: \"\\eb1f\";\n}\n.jam-messages:before {\n  content: \"\\eb20\";\n}\n.jam-messenger:before {\n  content: \"\\eb21\";\n}\n.jam-mic-alt:before {\n  content: \"\\eb22\";\n}\n.jam-mic-circle-f:before {\n  content: \"\\eb23\";\n}\n.jam-mic-circle:before {\n  content: \"\\eb24\";\n}\n.jam-mic-f:before {\n  content: \"\\eb25\";\n}\n.jam-mic-square-f:before {\n  content: \"\\eb26\";\n}\n.jam-mic-square:before {\n  content: \"\\eb27\";\n}\n.jam-mic:before {\n  content: \"\\eb28\";\n}\n.jam-microchip-f:before {\n  content: \"\\eb29\";\n}\n.jam-microchip:before {\n  content: \"\\eb2a\";\n}\n.jam-minus-circle-f:before {\n  content: \"\\eb2b\";\n}\n.jam-minus-circle:before {\n  content: \"\\eb2c\";\n}\n.jam-minus-rectangle-f:before {\n  content: \"\\eb2d\";\n}\n.jam-minus-rectangle:before {\n  content: \"\\eb2e\";\n}\n.jam-minus:before {\n  content: \"\\eb2f\";\n}\n.jam-moon-f:before {\n  content: \"\\eb30\";\n}\n.jam-moon:before {\n  content: \"\\eb31\";\n}\n.jam-more-horizontal-f:before {\n  content: \"\\eb32\";\n}\n.jam-more-horizontal:before {\n  content: \"\\eb33\";\n}\n.jam-more-vertical-f:before {\n  content: \"\\eb34\";\n}\n.jam-more-vertical:before {\n  content: \"\\eb35\";\n}\n.jam-mountain-f:before {\n  content: \"\\eb36\";\n}\n.jam-mountain:before {\n  content: \"\\eb37\";\n}\n.jam-move-alt:before {\n  content: \"\\eb38\";\n}\n.jam-move:before {\n  content: \"\\eb39\";\n}\n.jam-movie:before {\n  content: \"\\eb3a\";\n}\n.jam-mug-f:before {\n  content: \"\\eb3b\";\n}\n.jam-mug:before {\n  content: \"\\eb3c\";\n}\n.jam-music-f:before {\n  content: \"\\eb3d\";\n}\n.jam-music:before {\n  content: \"\\eb3e\";\n}\n.jam-myspace-circle:before {\n  content: \"\\eb3f\";\n}\n.jam-myspace-square:before {\n  content: \"\\eb40\";\n}\n.jam-myspace:before {\n  content: \"\\eb41\";\n}\n.jam-napster-circle:before {\n  content: \"\\eb42\";\n}\n.jam-napster-square:before {\n  content: \"\\eb43\";\n}\n.jam-napster:before {\n  content: \"\\eb44\";\n}\n.jam-newsletter-f:before {\n  content: \"\\eb45\";\n}\n.jam-newsletter:before {\n  content: \"\\eb46\";\n}\n.jam-newspaper-f:before {\n  content: \"\\eb47\";\n}\n.jam-newspaper:before {\n  content: \"\\eb48\";\n}\n.jam-npm:before {\n  content: \"\\eb49\";\n}\n.jam-odnoklassniki-circle:before {\n  content: \"\\eb4a\";\n}\n.jam-odnoklassniki-square:before {\n  content: \"\\eb4b\";\n}\n.jam-odnoklassniki:before {\n  content: \"\\eb4c\";\n}\n.jam-opera-circle:before {\n  content: \"\\eb4d\";\n}\n.jam-opera-square:before {\n  content: \"\\eb4e\";\n}\n.jam-opera:before {\n  content: \"\\eb4f\";\n}\n.jam-ordered-list:before {\n  content: \"\\eb50\";\n}\n.jam-padlock-alt-f:before {\n  content: \"\\eb51\";\n}\n.jam-padlock-alt-open-f:before {\n  content: \"\\eb52\";\n}\n.jam-padlock-alt-open:before {\n  content: \"\\eb53\";\n}\n.jam-padlock-alt:before {\n  content: \"\\eb54\";\n}\n.jam-padlock-f:before {\n  content: \"\\eb55\";\n}\n.jam-padlock-open-f:before {\n  content: \"\\eb56\";\n}\n.jam-padlock-open:before {\n  content: \"\\eb57\";\n}\n.jam-padlock:before {\n  content: \"\\eb58\";\n}\n.jam-paper-plane-f:before {\n  content: \"\\eb59\";\n}\n.jam-paper-plane:before {\n  content: \"\\eb5a\";\n}\n.jam-patreon-circle:before {\n  content: \"\\eb5b\";\n}\n.jam-patreon-square:before {\n  content: \"\\eb5c\";\n}\n.jam-patreon:before {\n  content: \"\\eb5d\";\n}\n.jam-pause:before {\n  content: \"\\eb5e\";\n}\n.jam-paypal-circle:before {\n  content: \"\\eb5f\";\n}\n.jam-paypal-square:before {\n  content: \"\\eb60\";\n}\n.jam-paypal:before {\n  content: \"\\eb61\";\n}\n.jam-pen-f:before {\n  content: \"\\eb62\";\n}\n.jam-pen:before {\n  content: \"\\eb63\";\n}\n.jam-pencil-f:before {\n  content: \"\\eb64\";\n}\n.jam-pencil:before {\n  content: \"\\eb65\";\n}\n.jam-periscope-circle:before {\n  content: \"\\eb66\";\n}\n.jam-periscope-square:before {\n  content: \"\\eb67\";\n}\n.jam-periscope:before {\n  content: \"\\eb68\";\n}\n.jam-phone-f:before {\n  content: \"\\eb69\";\n}\n.jam-phone:before {\n  content: \"\\eb6a\";\n}\n.jam-picture-f:before {\n  content: \"\\eb6b\";\n}\n.jam-picture:before {\n  content: \"\\eb6c\";\n}\n.jam-pictures-f:before {\n  content: \"\\eb6d\";\n}\n.jam-pictures:before {\n  content: \"\\eb6e\";\n}\n.jam-pie-chart-alt:before {\n  content: \"\\eb6f\";\n}\n.jam-pie-chart-f:before {\n  content: \"\\eb70\";\n}\n.jam-pie-chart:before {\n  content: \"\\eb71\";\n}\n.jam-pin-alt-f:before {\n  content: \"\\eb72\";\n}\n.jam-pin-alt:before {\n  content: \"\\eb73\";\n}\n.jam-pin-f:before {\n  content: \"\\eb74\";\n}\n.jam-pin:before {\n  content: \"\\eb75\";\n}\n.jam-pinterest-circle:before {\n  content: \"\\eb76\";\n}\n.jam-pinterest-square:before {\n  content: \"\\eb77\";\n}\n.jam-pinterest:before {\n  content: \"\\eb78\";\n}\n.jam-pizza-slice:before {\n  content: \"\\eb79\";\n}\n.jam-plane-f:before {\n  content: \"\\eb7a\";\n}\n.jam-plane:before {\n  content: \"\\eb7b\";\n}\n.jam-play-circle-f:before {\n  content: \"\\eb7c\";\n}\n.jam-play-circle:before {\n  content: \"\\eb7d\";\n}\n.jam-play-square-f:before {\n  content: \"\\eb7e\";\n}\n.jam-play-square:before {\n  content: \"\\eb7f\";\n}\n.jam-play:before {\n  content: \"\\eb80\";\n}\n.jam-plug-f:before {\n  content: \"\\eb81\";\n}\n.jam-plug:before {\n  content: \"\\eb82\";\n}\n.jam-plus-circle-f:before {\n  content: \"\\eb83\";\n}\n.jam-plus-circle:before {\n  content: \"\\eb84\";\n}\n.jam-plus-rectangle-f:before {\n  content: \"\\eb85\";\n}\n.jam-plus-rectangle:before {\n  content: \"\\eb86\";\n}\n.jam-plus:before {\n  content: \"\\eb87\";\n}\n.jam-pocket-watch-f:before {\n  content: \"\\eb88\";\n}\n.jam-pocket-watch:before {\n  content: \"\\eb89\";\n}\n.jam-podcast:before {\n  content: \"\\eb8a\";\n}\n.jam-power:before {\n  content: \"\\eb8b\";\n}\n.jam-printer-f:before {\n  content: \"\\eb8c\";\n}\n.jam-printer:before {\n  content: \"\\eb8d\";\n}\n.jam-qr-code:before {\n  content: \"\\eb8e\";\n}\n.jam-quora-circle:before {\n  content: \"\\eb8f\";\n}\n.jam-quora-square:before {\n  content: \"\\eb90\";\n}\n.jam-quora:before {\n  content: \"\\eb91\";\n}\n.jam-rainbow:before {\n  content: \"\\eb92\";\n}\n.jam-rec:before {\n  content: \"\\eb93\";\n}\n.jam-rectangle-f:before {\n  content: \"\\eb94\";\n}\n.jam-rectangle:before {\n  content: \"\\eb95\";\n}\n.jam-reddit:before {\n  content: \"\\eb96\";\n}\n.jam-redo:before {\n  content: \"\\eb97\";\n}\n.jam-refresh-reverse:before {\n  content: \"\\eb98\";\n}\n.jam-refresh:before {\n  content: \"\\eb99\";\n}\n.jam-repeat:before {\n  content: \"\\eb9a\";\n}\n.jam-rocket-f:before {\n  content: \"\\eb9b\";\n}\n.jam-rocket:before {\n  content: \"\\eb9c\";\n}\n.jam-rss-feed:before {\n  content: \"\\eb9d\";\n}\n.jam-rubber:before {\n  content: \"\\eb9e\";\n}\n.jam-ruler-f:before {\n  content: \"\\eb9f\";\n}\n.jam-ruler:before {\n  content: \"\\eba0\";\n}\n.jam-save-f:before {\n  content: \"\\eba1\";\n}\n.jam-save:before {\n  content: \"\\eba2\";\n}\n.jam-scissors:before {\n  content: \"\\eba3\";\n}\n.jam-screen-f:before {\n  content: \"\\eba4\";\n}\n.jam-screen:before {\n  content: \"\\eba5\";\n}\n.jam-screwdriver-f:before {\n  content: \"\\eba6\";\n}\n.jam-screwdriver:before {\n  content: \"\\eba7\";\n}\n.jam-search-folder:before {\n  content: \"\\eba8\";\n}\n.jam-search-minus:before {\n  content: \"\\eba9\";\n}\n.jam-search-plus:before {\n  content: \"\\ebaa\";\n}\n.jam-search:before {\n  content: \"\\ebab\";\n}\n.jam-set-backward-circle-f:before {\n  content: \"\\ebac\";\n}\n.jam-set-backward-circle:before {\n  content: \"\\ebad\";\n}\n.jam-set-backward-square-f:before {\n  content: \"\\ebae\";\n}\n.jam-set-backward-square:before {\n  content: \"\\ebaf\";\n}\n.jam-set-backward:before {\n  content: \"\\ebb0\";\n}\n.jam-set-forward-circle-f:before {\n  content: \"\\ebb1\";\n}\n.jam-set-forward-circle:before {\n  content: \"\\ebb2\";\n}\n.jam-set-forward-square-f:before {\n  content: \"\\ebb3\";\n}\n.jam-set-forward-square:before {\n  content: \"\\ebb4\";\n}\n.jam-set-forward:before {\n  content: \"\\ebb5\";\n}\n.jam-set-square-f:before {\n  content: \"\\ebb6\";\n}\n.jam-set-square:before {\n  content: \"\\ebb7\";\n}\n.jam-settings-alt:before {\n  content: \"\\ebb8\";\n}\n.jam-share-alt-f:before {\n  content: \"\\ebb9\";\n}\n.jam-share-alt:before {\n  content: \"\\ebba\";\n}\n.jam-share:before {\n  content: \"\\ebbb\";\n}\n.jam-shield-check-f:before {\n  content: \"\\ebbc\";\n}\n.jam-shield-check:before {\n  content: \"\\ebbd\";\n}\n.jam-shield-close-f:before {\n  content: \"\\ebbe\";\n}\n.jam-shield-close:before {\n  content: \"\\ebbf\";\n}\n.jam-shield-f:before {\n  content: \"\\ebc0\";\n}\n.jam-shield-half:before {\n  content: \"\\ebc1\";\n}\n.jam-shield-minus-f:before {\n  content: \"\\ebc2\";\n}\n.jam-shield-minus:before {\n  content: \"\\ebc3\";\n}\n.jam-shield-plus-f:before {\n  content: \"\\ebc4\";\n}\n.jam-shield-plus:before {\n  content: \"\\ebc5\";\n}\n.jam-shield:before {\n  content: \"\\ebc6\";\n}\n.jam-shopify-circle:before {\n  content: \"\\ebc7\";\n}\n.jam-shopify-square:before {\n  content: \"\\ebc8\";\n}\n.jam-shopify:before {\n  content: \"\\ebc9\";\n}\n.jam-shopping-bag-alt-f:before {\n  content: \"\\ebca\";\n}\n.jam-shopping-bag-alt:before {\n  content: \"\\ebcb\";\n}\n.jam-shopping-bag-f:before {\n  content: \"\\ebcc\";\n}\n.jam-shopping-bag:before {\n  content: \"\\ebcd\";\n}\n.jam-shopping-cart:before {\n  content: \"\\ebce\";\n}\n.jam-shuffle:before {\n  content: \"\\ebcf\";\n}\n.jam-signal:before {\n  content: \"\\ebd0\";\n}\n.jam-sitemap-f:before {\n  content: \"\\ebd1\";\n}\n.jam-sitemap:before {\n  content: \"\\ebd2\";\n}\n.jam-skull-f:before {\n  content: \"\\ebd3\";\n}\n.jam-skull:before {\n  content: \"\\ebd4\";\n}\n.jam-skype-circle:before {\n  content: \"\\ebd5\";\n}\n.jam-skype-square:before {\n  content: \"\\ebd6\";\n}\n.jam-skype:before {\n  content: \"\\ebd7\";\n}\n.jam-slack-circle:before {\n  content: \"\\ebd8\";\n}\n.jam-slack-square:before {\n  content: \"\\ebd9\";\n}\n.jam-slack:before {\n  content: \"\\ebda\";\n}\n.jam-smiley-f:before {\n  content: \"\\ebdb\";\n}\n.jam-smiley:before {\n  content: \"\\ebdc\";\n}\n.jam-snapchat-circle:before {\n  content: \"\\ebdd\";\n}\n.jam-snapchat-square:before {\n  content: \"\\ebde\";\n}\n.jam-snapchat:before {\n  content: \"\\ebdf\";\n}\n.jam-snowboard-f:before {\n  content: \"\\ebe0\";\n}\n.jam-snowboard:before {\n  content: \"\\ebe1\";\n}\n.jam-snowflake:before {\n  content: \"\\ebe2\";\n}\n.jam-soundcloud:before {\n  content: \"\\ebe3\";\n}\n.jam-speaker-f:before {\n  content: \"\\ebe4\";\n}\n.jam-speaker:before {\n  content: \"\\ebe5\";\n}\n.jam-spotify:before {\n  content: \"\\ebe6\";\n}\n.jam-square-f:before {\n  content: \"\\ebe7\";\n}\n.jam-square:before {\n  content: \"\\ebe8\";\n}\n.jam-squarespace-circle:before {\n  content: \"\\ebe9\";\n}\n.jam-squarespace-square:before {\n  content: \"\\ebea\";\n}\n.jam-squarespace:before {\n  content: \"\\ebeb\";\n}\n.jam-stackoverflow-circle:before {\n  content: \"\\ebec\";\n}\n.jam-stackoverflow-square:before {\n  content: \"\\ebed\";\n}\n.jam-stackoverflow:before {\n  content: \"\\ebee\";\n}\n.jam-stamp-f:before {\n  content: \"\\ebef\";\n}\n.jam-stamp:before {\n  content: \"\\ebf0\";\n}\n.jam-star-f:before {\n  content: \"\\ebf1\";\n}\n.jam-star-full:before {\n  content: \"\\ebf2\";\n}\n.jam-star-half:before {\n  content: \"\\ebf3\";\n}\n.jam-star:before {\n  content: \"\\ebf4\";\n}\n.jam-station:before {\n  content: \"\\ebf5\";\n}\n.jam-stop-sign:before {\n  content: \"\\ebf6\";\n}\n.jam-stop:before {\n  content: \"\\ebf7\";\n}\n.jam-store:before {\n  content: \"\\ebf8\";\n}\n.jam-strikethrough:before {\n  content: \"\\ebf9\";\n}\n.jam-stumbleupon-circle:before {\n  content: \"\\ebfa\";\n}\n.jam-stumbleupon-square:before {\n  content: \"\\ebfb\";\n}\n.jam-stumbleupon:before {\n  content: \"\\ebfc\";\n}\n.jam-sun-f:before {\n  content: \"\\ebfd\";\n}\n.jam-sun:before {\n  content: \"\\ebfe\";\n}\n.jam-switch-left-f:before {\n  content: \"\\ebff\";\n}\n.jam-switch-left:before {\n  content: \"\\ec00\";\n}\n.jam-switch-right-f:before {\n  content: \"\\ec01\";\n}\n.jam-switch-right:before {\n  content: \"\\ec02\";\n}\n.jam-sword-f:before {\n  content: \"\\ec03\";\n}\n.jam-sword:before {\n  content: \"\\ec04\";\n}\n.jam-tablet-f:before {\n  content: \"\\ec05\";\n}\n.jam-tablet:before {\n  content: \"\\ec06\";\n}\n.jam-tag-f:before {\n  content: \"\\ec07\";\n}\n.jam-tag:before {\n  content: \"\\ec08\";\n}\n.jam-tags-f:before {\n  content: \"\\ec09\";\n}\n.jam-tags:before {\n  content: \"\\ec0a\";\n}\n.jam-target:before {\n  content: \"\\ec0b\";\n}\n.jam-task-list-f:before {\n  content: \"\\ec0c\";\n}\n.jam-task-list:before {\n  content: \"\\ec0d\";\n}\n.jam-temperature:before {\n  content: \"\\ec0e\";\n}\n.jam-terminal:before {\n  content: \"\\ec0f\";\n}\n.jam-thunder-f:before {\n  content: \"\\ec10\";\n}\n.jam-thunder:before {\n  content: \"\\ec11\";\n}\n.jam-ticket-f:before {\n  content: \"\\ec12\";\n}\n.jam-ticket:before {\n  content: \"\\ec13\";\n}\n.jam-tools-f:before {\n  content: \"\\ec14\";\n}\n.jam-tools:before {\n  content: \"\\ec15\";\n}\n.jam-torch-f:before {\n  content: \"\\ec16\";\n}\n.jam-torch:before {\n  content: \"\\ec17\";\n}\n.jam-totem:before {\n  content: \"\\ec18\";\n}\n.jam-train-f:before {\n  content: \"\\ec19\";\n}\n.jam-train:before {\n  content: \"\\ec1a\";\n}\n.jam-transgender:before {\n  content: \"\\ec1b\";\n}\n.jam-trash-alt-f:before {\n  content: \"\\ec1c\";\n}\n.jam-trash-alt:before {\n  content: \"\\ec1d\";\n}\n.jam-trash-f:before {\n  content: \"\\ec1e\";\n}\n.jam-trash:before {\n  content: \"\\ec1f\";\n}\n.jam-tree-alt-f:before {\n  content: \"\\ec20\";\n}\n.jam-tree-alt:before {\n  content: \"\\ec21\";\n}\n.jam-tree-f:before {\n  content: \"\\ec22\";\n}\n.jam-tree:before {\n  content: \"\\ec23\";\n}\n.jam-trello:before {\n  content: \"\\ec24\";\n}\n.jam-triangle-danger-f:before {\n  content: \"\\ec25\";\n}\n.jam-triangle-danger:before {\n  content: \"\\ec26\";\n}\n.jam-triangle-f:before {\n  content: \"\\ec27\";\n}\n.jam-triangle:before {\n  content: \"\\ec28\";\n}\n.jam-trophy-f:before {\n  content: \"\\ec29\";\n}\n.jam-trophy:before {\n  content: \"\\ec2a\";\n}\n.jam-tube:before {\n  content: \"\\ec2b\";\n}\n.jam-tumblr-circle:before {\n  content: \"\\ec2c\";\n}\n.jam-tumblr-square:before {\n  content: \"\\ec2d\";\n}\n.jam-tumblr:before {\n  content: \"\\ec2e\";\n}\n.jam-twitch:before {\n  content: \"\\ec2f\";\n}\n.jam-twitter-circle:before {\n  content: \"\\ec30\";\n}\n.jam-twitter-square:before {\n  content: \"\\ec31\";\n}\n.jam-twitter:before {\n  content: \"\\ec32\";\n}\n.jam-umbrella-closed-f:before {\n  content: \"\\ec33\";\n}\n.jam-umbrella-closed:before {\n  content: \"\\ec34\";\n}\n.jam-umbrella-f:before {\n  content: \"\\ec35\";\n}\n.jam-umbrella:before {\n  content: \"\\ec36\";\n}\n.jam-underline:before {\n  content: \"\\ec37\";\n}\n.jam-undo:before {\n  content: \"\\ec38\";\n}\n.jam-unindent:before {\n  content: \"\\ec39\";\n}\n.jam-universe:before {\n  content: \"\\ec3a\";\n}\n.jam-unordered-list:before {\n  content: \"\\ec3b\";\n}\n.jam-unsplash-circle:before {\n  content: \"\\ec3c\";\n}\n.jam-unsplash-square:before {\n  content: \"\\ec3d\";\n}\n.jam-unsplash:before {\n  content: \"\\ec3e\";\n}\n.jam-upload:before {\n  content: \"\\ec3f\";\n}\n.jam-user-circle:before {\n  content: \"\\ec40\";\n}\n.jam-user-minus:before {\n  content: \"\\ec41\";\n}\n.jam-user-plus:before {\n  content: \"\\ec42\";\n}\n.jam-user-remove:before {\n  content: \"\\ec43\";\n}\n.jam-user-square:before {\n  content: \"\\ec44\";\n}\n.jam-user:before {\n  content: \"\\ec45\";\n}\n.jam-users:before {\n  content: \"\\ec46\";\n}\n.jam-viadeo:before {\n  content: \"\\ec47\";\n}\n.jam-viber-circle:before {\n  content: \"\\ec48\";\n}\n.jam-viber-square:before {\n  content: \"\\ec49\";\n}\n.jam-viber:before {\n  content: \"\\ec4a\";\n}\n.jam-video-camera-f:before {\n  content: \"\\ec4b\";\n}\n.jam-video-camera-vintage-f:before {\n  content: \"\\ec4c\";\n}\n.jam-video-camera-vintage:before {\n  content: \"\\ec4d\";\n}\n.jam-video-camera:before {\n  content: \"\\ec4e\";\n}\n.jam-vimeo-circle:before {\n  content: \"\\ec4f\";\n}\n.jam-vimeo-square:before {\n  content: \"\\ec50\";\n}\n.jam-vimeo:before {\n  content: \"\\ec51\";\n}\n.jam-vine-circle:before {\n  content: \"\\ec52\";\n}\n.jam-vine-square:before {\n  content: \"\\ec53\";\n}\n.jam-vine:before {\n  content: \"\\ec54\";\n}\n.jam-voicemail:before {\n  content: \"\\ec55\";\n}\n.jam-volume-circle-f:before {\n  content: \"\\ec56\";\n}\n.jam-volume-circle:before {\n  content: \"\\ec57\";\n}\n.jam-volume-down-circle-f:before {\n  content: \"\\ec58\";\n}\n.jam-volume-down-circle:before {\n  content: \"\\ec59\";\n}\n.jam-volume-down-square-f:before {\n  content: \"\\ec5a\";\n}\n.jam-volume-down-square:before {\n  content: \"\\ec5b\";\n}\n.jam-volume-down:before {\n  content: \"\\ec5c\";\n}\n.jam-volume-mute-circle-f:before {\n  content: \"\\ec5d\";\n}\n.jam-volume-mute-circle:before {\n  content: \"\\ec5e\";\n}\n.jam-volume-mute-square-f:before {\n  content: \"\\ec5f\";\n}\n.jam-volume-mute-square:before {\n  content: \"\\ec60\";\n}\n.jam-volume-mute:before {\n  content: \"\\ec61\";\n}\n.jam-volume-square-f:before {\n  content: \"\\ec62\";\n}\n.jam-volume-square:before {\n  content: \"\\ec63\";\n}\n.jam-volume-up-circle-f:before {\n  content: \"\\ec64\";\n}\n.jam-volume-up-circle:before {\n  content: \"\\ec65\";\n}\n.jam-volume-up-square-f:before {\n  content: \"\\ec66\";\n}\n.jam-volume-up-square:before {\n  content: \"\\ec67\";\n}\n.jam-volume-up:before {\n  content: \"\\ec68\";\n}\n.jam-volume:before {\n  content: \"\\ec69\";\n}\n.jam-watch-f:before {\n  content: \"\\ec6a\";\n}\n.jam-watch:before {\n  content: \"\\ec6b\";\n}\n.jam-water-drop-f:before {\n  content: \"\\ec6c\";\n}\n.jam-water-drop:before {\n  content: \"\\ec6d\";\n}\n.jam-whatsapp:before {\n  content: \"\\ec6e\";\n}\n.jam-wifi:before {\n  content: \"\\ec6f\";\n}\n.jam-wikipedia:before {\n  content: \"\\ec70\";\n}\n.jam-wordpress:before {\n  content: \"\\ec71\";\n}\n.jam-world:before {\n  content: \"\\ec72\";\n}\n.jam-wrench-f:before {\n  content: \"\\ec73\";\n}\n.jam-wrench:before {\n  content: \"\\ec74\";\n}\n.jam-write-f:before {\n  content: \"\\ec75\";\n}\n.jam-write:before {\n  content: \"\\ec76\";\n}\n.jam-yahoo-circle:before {\n  content: \"\\ec77\";\n}\n.jam-yahoo-square:before {\n  content: \"\\ec78\";\n}\n.jam-yahoo:before {\n  content: \"\\ec79\";\n}\n.jam-yelp-circle:before {\n  content: \"\\ec7a\";\n}\n.jam-yelp-square:before {\n  content: \"\\ec7b\";\n}\n.jam-yelp:before {\n  content: \"\\ec7c\";\n}\n.jam-youtube-circle:before {\n  content: \"\\ec7d\";\n}\n.jam-youtube-square:before {\n  content: \"\\ec7e\";\n}\n.jam-youtube:before {\n  content: \"\\ec7f\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-ligaturesymbols-pack/ikonli-ligaturesymbols-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-ligaturesymbols-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.ligaturesymbols {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.ligaturesymbols;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.ligaturesymbols.LigatureSymbolsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.ligaturesymbols.LigatureSymbolsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-ligaturesymbols-pack/src/main/java/org/kordamp/ikonli/ligaturesymbols/LigatureSymbols.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ligaturesymbols;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum LigatureSymbols implements Ikon {\n    ADDSTAR(\"lsf-addstar\", '\\ue000'),\n    AIM(\"lsf-aim\", '\\ue163'),\n    ALBUM(\"lsf-album\", '\\ue002'),\n    ALIGNADJUST(\"lsf-alignadjust\", '\\ue003'),\n    ALIGNCENTER(\"lsf-aligncenter\", '\\ue004'),\n    ALIGNLEFT(\"lsf-alignleft\", '\\ue005'),\n    ALIGNRIGHT(\"lsf-alignright\", '\\ue006'),\n    AMAZON(\"lsf-amazon\", '\\ue007'),\n    ANDROID(\"lsf-android\", '\\ue008'),\n    APP(\"lsf-app\", '\\ue009'),\n    APPLE(\"lsf-apple\", '\\ue00a'),\n    ARROWDOWN(\"lsf-arrowdown\", '\\ue00b'),\n    ARROWLEFT(\"lsf-arrowleft\", '\\ue00c'),\n    ARROWRIGHT(\"lsf-arrowright\", '\\ue00d'),\n    ARROWUP(\"lsf-arrowup\", '\\ue00e'),\n    BACK(\"lsf-back\", '\\ue00f'),\n    BACKSPACE(\"lsf-backspace\", '\\ue010'),\n    BAD(\"lsf-bad\", '\\ue011'),\n    BAG(\"lsf-bag\", '\\ue173'),\n    BAN(\"lsf-ban\", '\\ue012'),\n    BARCODE(\"lsf-barcode\", '\\ue013'),\n    BELL(\"lsf-bell\", '\\ue014'),\n    BICYCLE(\"lsf-bicycle\", '\\ue015'),\n    BING(\"lsf-bing\", '\\ue164'),\n    BLOGGER(\"lsf-blogger\", '\\ue165'),\n    BOLD(\"lsf-bold\", '\\ue01f'),\n    BOOK(\"lsf-book\", '\\ue020'),\n    BOOKMARK(\"lsf-bookmark\", '\\ue021'),\n    BRUSH(\"lsf-brush\", '\\ue022'),\n    BUILDING(\"lsf-building\", '\\ue023'),\n    BUS(\"lsf-bus\", '\\ue024'),\n    CALENDAR(\"lsf-calendar\", '\\ue15e'),\n    CAMERA(\"lsf-camera\", '\\ue026'),\n    CAR(\"lsf-car\", '\\ue027'),\n    CATEGORY(\"lsf-category\", '\\ue028'),\n    CHECK(\"lsf-check\", '\\ue029'),\n    CHECKBOX(\"lsf-checkbox\", '\\ue02a'),\n    CHECKBOXEMPTY(\"lsf-checkboxempty\", '\\ue02b'),\n    CHROME(\"lsf-chrome\", '\\ue02c'),\n    CIRCLE(\"lsf-circle\", '\\ue02e'),\n    CLEAR(\"lsf-clear\", '\\ue02f'),\n    CLIP(\"lsf-clip\", '\\ue030'),\n    CLOUD(\"lsf-cloud\", '\\ue031'),\n    CODE(\"lsf-code\", '\\ue032'),\n    COFFEE(\"lsf-coffee\", '\\ue146'),\n    COLLEGE(\"lsf-college\", '\\ue174'),\n    COLOR(\"lsf-color\", '\\ue033'),\n    COMMENT(\"lsf-comment\", '\\ue034'),\n    COMMENTS(\"lsf-comments\", '\\ue035'),\n    COMPASS(\"lsf-compass\", '\\ue036'),\n    CONTRAST(\"lsf-contrast\", '\\ue001'),\n    COOKPAD(\"lsf-cookpad\", '\\ue037'),\n    COPY(\"lsf-copy\", '\\ue038'),\n    CROP(\"lsf-crop\", '\\ue039'),\n    CROWN(\"lsf-crown\", '\\ue03a'),\n    CURSOR(\"lsf-cursor\", '\\ue166'),\n    CUT(\"lsf-cut\", '\\ue03b'),\n    DAILYCALENDAR(\"lsf-dailycalendar\", '\\ue025'),\n    DARK(\"lsf-dark\", '\\ue147'),\n    DASHBOARD(\"lsf-dashboard\", '\\ue03c'),\n    DELETE(\"lsf-delete\", '\\ue12c'),\n    DELICIOUS(\"lsf-delicious\", '\\ue03d'),\n    DIGG(\"lsf-digg\", '\\ue167'),\n    DOWN(\"lsf-down\", '\\ue03e'),\n    DRIBBBLE(\"lsf-dribbble\", '\\ue03f'),\n    DROPBOX(\"lsf-dropbox\", '\\ue168'),\n    DROPDOWN(\"lsf-dropdown\", '\\ue040'),\n    EDIT(\"lsf-edit\", '\\ue041'),\n    EJECT(\"lsf-eject\", '\\ue042'),\n    EMPHASIS(\"lsf-emphasis\", '\\ue152'),\n    ERASER(\"lsf-eraser\", '\\ue148'),\n    ETC(\"lsf-etc\", '\\ue043'),\n    EVERNOTE(\"lsf-evernote\", '\\ue044'),\n    EXCHANGE(\"lsf-exchange\", '\\ue045'),\n    EXTERNAL(\"lsf-external\", '\\ue046'),\n    FACEBOOK(\"lsf-facebook\", '\\ue047'),\n    FEMALE(\"lsf-female\", '\\ue175'),\n    FILE(\"lsf-file\", '\\ue048'),\n    FIREFOX(\"lsf-firefox\", '\\ue049'),\n    FLAG(\"lsf-flag\", '\\ue04a'),\n    FLICKR(\"lsf-flickr\", '\\ue04b'),\n    FOLDER(\"lsf-folder\", '\\ue04c'),\n    FORWARD(\"lsf-forward\", '\\ue04e'),\n    FOURSQUARE(\"lsf-foursquare\", '\\ue04d'),\n    FRIEND(\"lsf-friend\", '\\ue051'),\n    FRUSTRATE(\"lsf-frustrate\", '\\ue052'),\n    FULL(\"lsf-full\", '\\ue053'),\n    GAME(\"lsf-game\", '\\ue054'),\n    GEO(\"lsf-geo\", '\\ue056'),\n    GITHUB(\"lsf-github\", '\\ue057'),\n    GLOBE(\"lsf-globe\", '\\ue058'),\n    GOOD(\"lsf-good\", '\\ue059'),\n    GOOGLE(\"lsf-google\", '\\ue05a'),\n    GRAB(\"lsf-grab\", '\\ue169'),\n    GRADATION(\"lsf-gradation\", '\\ue149'),\n    GRAPH(\"lsf-graph\", '\\ue05b'),\n    GREE(\"lsf-gree\", '\\ue153'),\n    GROUP(\"lsf-group\", '\\ue05c'),\n    GUMROAD(\"lsf-gumroad\", '\\ue154'),\n    HATENA(\"lsf-hatena\", '\\ue05d'),\n    HATENABOOKMARK(\"lsf-hatenabookmark\", '\\ue161'),\n    HEART(\"lsf-heart\", '\\ue06e'),\n    HEARTEMPTY(\"lsf-heartempty\", '\\ue06f'),\n    HELP(\"lsf-help\", '\\ue070'),\n    HOME(\"lsf-home\", '\\ue072'),\n    HORIZONTAL(\"lsf-horizontal\", '\\ue071'),\n    IMAGE(\"lsf-image\", '\\ue074'),\n    INFO(\"lsf-info\", '\\ue075'),\n    INK(\"lsf-ink\", '\\ue14a'),\n    INSTAGRAM(\"lsf-instagram\", '\\ue155'),\n    INSTAPAPER(\"lsf-instapaper\", '\\ue076'),\n    INTERNETEXPLORER(\"lsf-internetexplorer\", '\\ue077'),\n    INVERT(\"lsf-invert\", '\\ue14b'),\n    ITALIC(\"lsf-italic\", '\\ue079'),\n    KEY(\"lsf-key\", '\\ue07c'),\n    KEYBOARD(\"lsf-keyboard\", '\\ue07d'),\n    LAUGH(\"lsf-laugh\", '\\ue07f'),\n    LEFT(\"lsf-left\", '\\ue080'),\n    LIGHT(\"lsf-light\", '\\ue14c'),\n    LINE(\"lsf-line\", '\\ue157'),\n    LINK(\"lsf-link\", '\\ue082'),\n    LINKEDIN(\"lsf-linkedin\", '\\ue083'),\n    LIST(\"lsf-list\", '\\ue084'),\n    LOCATION(\"lsf-location\", '\\ue085'),\n    LOCK(\"lsf-lock\", '\\ue086'),\n    LOGIN(\"lsf-login\", '\\ue087'),\n    LOGOUT(\"lsf-logout\", '\\ue088'),\n    MAGIC(\"lsf-magic\", '\\ue089'),\n    MAIL(\"lsf-mail\", '\\ue08a'),\n    MALE(\"lsf-male\", '\\ue176'),\n    MAP(\"lsf-map\", '\\ue08b'),\n    MEAL(\"lsf-meal\", '\\ue08c'),\n    MEMO(\"lsf-memo\", '\\ue08d'),\n    MENU(\"lsf-menu\", '\\ue08e'),\n    MINUS(\"lsf-minus\", '\\ue08f'),\n    MIXI(\"lsf-mixi\", '\\ue090'),\n    MOBAGE(\"lsf-mobage\", '\\ue158'),\n    MOBILE(\"lsf-mobile\", '\\ue078'),\n    MOVE(\"lsf-move\", '\\ue093'),\n    MUSIC(\"lsf-music\", '\\ue094'),\n    MYSPACE(\"lsf-myspace\", '\\ue16a'),\n    NEXT(\"lsf-next\", '\\ue096'),\n    NOTIFY(\"lsf-notify\", '\\ue097'),\n    OFF(\"lsf-off\", '\\ue098'),\n    OPERA(\"lsf-opera\", '\\ue099'),\n    PAINT(\"lsf-paint\", '\\ue09b'),\n    PAPERBOY(\"lsf-paperboy\", '\\ue162'),\n    PARAMATER(\"lsf-paramater\", '\\ue09c'),\n    PAUSE(\"lsf-pause\", '\\ue09d'),\n    PC(\"lsf-pc\", '\\ue09e'),\n    PEN(\"lsf-pen\", '\\ue09f'),\n    PHONE(\"lsf-phone\", '\\ue100'),\n    PHOTO(\"lsf-photo\", '\\ue101'),\n    PICASA(\"lsf-picasa\", '\\ue102'),\n    PIN(\"lsf-pin\", '\\ue103'),\n    PINTEREST(\"lsf-pinterest\", '\\ue104'),\n    PLANE(\"lsf-plane\", '\\ue105'),\n    PLAY(\"lsf-play\", '\\ue106'),\n    PLAYMEDIA(\"lsf-playmedia\", '\\ue107'),\n    PLUS(\"lsf-plus\", '\\ue108'),\n    POINTER(\"lsf-pointer\", '\\ue16b'),\n    PRESENT(\"lsf-present\", '\\ue109'),\n    PRINT(\"lsf-print\", '\\ue10a'),\n    QUOTE(\"lsf-quote\", '\\ue10b'),\n    READABILITY(\"lsf-readability\", '\\ue10c'),\n    RECORD(\"lsf-record\", '\\ue10d'),\n    REFRESH(\"lsf-refresh\", '\\ue10e'),\n    REFRESHBUTTON(\"lsf-refreshbutton\", '\\ue14d'),\n    REMOVE(\"lsf-remove\", '\\ue10f'),\n    REPEAT(\"lsf-repeat\", '\\ue110'),\n    REPLY(\"lsf-reply\", '\\ue111'),\n    RIGHT(\"lsf-right\", '\\ue112'),\n    RSS(\"lsf-rss\", '\\ue113'),\n    SAFARI(\"lsf-safari\", '\\ue114'),\n    SAVE(\"lsf-save\", '\\ue115'),\n    SEARCH(\"lsf-search\", '\\ue116'),\n    SEPIA(\"lsf-sepia\", '\\ue14e'),\n    SERVER(\"lsf-server\", '\\ue16c'),\n    SETTING(\"lsf-setting\", '\\ue055'),\n    SETUP(\"lsf-setup\", '\\ue117'),\n    SHARE(\"lsf-share\", '\\ue118'),\n    SHOPPING(\"lsf-shopping\", '\\ue119'),\n    SHUFFLE(\"lsf-shuffle\", '\\ue11a'),\n    SITEMAP(\"lsf-sitemap\", '\\ue16d'),\n    SKYPE(\"lsf-skype\", '\\ue11b'),\n    SLEIPNIR(\"lsf-sleipnir\", '\\ue11c'),\n    SLIDESHARE(\"lsf-slideshare\", '\\ue179'),\n    SMALL(\"lsf-small\", '\\ue11d'),\n    SMILE(\"lsf-smile\", '\\ue11e'),\n    SNS(\"lsf-sns\", '\\ue11f'),\n    SORT(\"lsf-sort\", '\\ue120'),\n    SOUNDCLOUD(\"lsf-soundcloud\", '\\ue17a'),\n    SPA(\"lsf-spa\", '\\ue177'),\n    STAR(\"lsf-star\", '\\ue121'),\n    STAREMPTY(\"lsf-starempty\", '\\ue122'),\n    STOP(\"lsf-stop\", '\\ue123'),\n    STRIKE(\"lsf-strike\", '\\ue159'),\n    SURPRISE(\"lsf-surprise\", '\\ue124'),\n    SYNC(\"lsf-sync\", '\\ue125'),\n    TABLE(\"lsf-table\", '\\ue127'),\n    TABS(\"lsf-tabs\", '\\ue095'),\n    TAG(\"lsf-tag\", '\\ue128'),\n    TERMINAL(\"lsf-terminal\", '\\ue16e'),\n    TILE(\"lsf-tile\", '\\ue129'),\n    TILEMENU(\"lsf-tilemenu\", '\\ue12a'),\n    TIME(\"lsf-time\", '\\ue12b'),\n    TROUBLE(\"lsf-trouble\", '\\ue12d'),\n    TUMBLR(\"lsf-tumblr\", '\\ue12e'),\n    TWINKLE(\"lsf-twinkle\", '\\ue073'),\n    TWITTER(\"lsf-twitter\", '\\ue12f'),\n    UBUNTU(\"lsf-ubuntu\", '\\ue17b'),\n    UMBRELLA(\"lsf-umbrella\", '\\ue178'),\n    UNDERLINE(\"lsf-underline\", '\\ue132'),\n    UNDO(\"lsf-undo\", '\\ue133'),\n    UNLOCK(\"lsf-unlock\", '\\ue134'),\n    UP(\"lsf-up\", '\\ue135'),\n    UPLOAD(\"lsf-upload\", '\\ue136'),\n    USER(\"lsf-user\", '\\ue137'),\n    USTREAM(\"lsf-ustream\", '\\ue16f'),\n    VERTICAL(\"lsf-vertical\", '\\ue138'),\n    VIDEO(\"lsf-video\", '\\ue139'),\n    VIEW(\"lsf-view\", '\\ue13a'),\n    VIMEO(\"lsf-vimeo\", '\\ue170'),\n    VK(\"lsf-vk\", '\\ue17c'),\n    VOLUME(\"lsf-volume\", '\\ue13b'),\n    VOLUMEDOWN(\"lsf-volumedown\", '\\ue13c'),\n    VOLUMEUP(\"lsf-volumeup\", '\\ue13d'),\n    WALKING(\"lsf-walking\", '\\ue13e'),\n    WEB(\"lsf-web\", '\\ue13f'),\n    WIFI(\"lsf-wifi\", '\\ue140'),\n    WINDOWS(\"lsf-windows\", '\\ue151'),\n    WINK(\"lsf-wink\", '\\ue081'),\n    WORDPRESS(\"lsf-wordpress\", '\\ue171'),\n    YAHOO(\"lsf-yahoo\", '\\ue172'),\n    YAPCASIALOGOMARK(\"lsf-yapcasialogomark\", '\\ue15c'),\n    YELP(\"lsf-yelp\", '\\ue17d'),\n    YOUTUBE(\"lsf-youtube\", '\\ue141'),\n    ZOOMIN(\"lsf-zoomin\", '\\ue142'),\n    ZOOMOUT(\"lsf-zoomout\", '\\ue143');\n\n    public static LigatureSymbols findByDescription(String description) {\n        for (LigatureSymbols font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    LigatureSymbols(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ligaturesymbols-pack/src/main/java/org/kordamp/ikonli/ligaturesymbols/LigatureSymbolsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ligaturesymbols;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class LigatureSymbolsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/ligaturesymbols/2.11/fonts/LigatureSymbols-2.11.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"lsf-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return LigatureSymbols.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"LigatureSymbols\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ligaturesymbols-pack/src/main/java/org/kordamp/ikonli/ligaturesymbols/LigatureSymbolsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ligaturesymbols;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class LigatureSymbolsIkonProvider implements IkonProvider<LigatureSymbols> {\n    @Override\n    public Class<LigatureSymbols> getIkon() {\n        return LigatureSymbols.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ligaturesymbols-pack/src/main/resources/META-INF/resources/ligaturesymbols/2.11/css/ligaturesymbols.css",
    "content": "@charset 'UTF-8';\n\n@font-face {\n    font-family: 'LigatureSymbols';\n    src: url('../fonts/LigatureSymbols-2.11.eot');\n    src: url('../fonts/LigatureSymbols-2.11.eot?#iefix') format('embedded-opentype'),\n         url('../fonts/LigatureSymbols-2.11.woff') format('woff'),\n         url('../fonts/LigatureSymbols-2.11.ttf') format('truetype'),\n         url('../fonts/LigatureSymbols-2.11.svg#LigatureSymbols') format('svg');\n    font-weight: normal;\n    font-style: normal;\n}\n\n.lsf {\n  font-family: 'LigatureSymbols';\n  -webkit-text-rendering: optimizeLegibility;\n  -moz-text-rendering: optimizeLegibility;\n  -ms-text-rendering: optimizeLegibility;\n  -o-text-rendering: optimizeLegibility;\n  text-rendering: optimizeLegibility;\n  -webkit-font-smoothing: antialiased;\n  -moz-font-smoothing: antialiased;\n  -ms-font-smoothing: antialiased;\n  -o-font-smoothing: antialiased;\n  font-smoothing: antialiased;\n  -webkit-font-feature-settings: \"liga\" 1, \"dlig\" 1;\n  -moz-font-feature-settings: \"liga=1, dlig=1\";\n  -ms-font-feature-settings: \"liga\" 1, \"dlig\" 1;\n  -o-font-feature-settings: \"liga\" 1, \"dlig\" 1;\n  font-feature-settings: \"liga\" 1, \"dlig\" 1;\n}\n.lsf-icon:before {\n  content:attr(title);\n  margin-right:0.3em;\n  font-size:130%;\n  font-family: 'LigatureSymbols';\n  -webkit-text-rendering: optimizeLegibility;\n  -moz-text-rendering: optimizeLegibility;\n  -ms-text-rendering: optimizeLegibility;\n  -o-text-rendering: optimizeLegibility;\n  text-rendering: optimizeLegibility;\n  -webkit-font-smoothing: antialiased;\n  -moz-font-smoothing: antialiased;\n  -ms-font-smoothing: antialiased;\n  -o-font-smoothing: antialiased;\n  font-smoothing: antialiased;\n  -webkit-font-feature-settings: \"liga\" 1, \"dlig\" 1;\n  -moz-font-feature-settings: \"liga=1, dlig=1\";\n  -ms-font-feature-settings: \"liga\" 1, \"dlig\" 1;\n  -o-font-feature-settings: \"liga\" 1, \"dlig\" 1;\n  font-feature-settings: \"liga\" 1, \"dlig\" 1;\n}\n\n.lsf-addstar:before { content: \"\\e000\"; }\n.lsf-aim:before { content: \"\\e163\"; }\n.lsf-album:before { content: \"\\e002\"; }\n.lsf-alignadjust:before { content: \"\\e003\"; }\n.lsf-aligncenter:before { content: \"\\e004\"; }\n.lsf-alignleft:before { content: \"\\e005\"; }\n.lsf-alignright:before { content: \"\\e006\"; }\n.lsf-amazon:before { content: \"\\e007\"; }\n.lsf-android:before { content: \"\\e008\"; }\n.lsf-app:before { content: \"\\e009\"; }\n.lsf-apple:before { content: \"\\e00a\"; }\n.lsf-arrowdown:before { content: \"\\e00b\"; }\n.lsf-arrowleft:before { content: \"\\e00c\"; }\n.lsf-arrowright:before { content: \"\\e00d\"; }\n.lsf-arrowup:before { content: \"\\e00e\"; }\n.lsf-back:before { content: \"\\e00f\"; }\n.lsf-backspace:before { content: \"\\e010\"; }\n.lsf-bad:before { content: \"\\e011\"; }\n.lsf-bag:before { content: \"\\e173\"; }\n.lsf-ban:before { content: \"\\e012\"; }\n.lsf-barcode:before { content: \"\\e013\"; }\n.lsf-bell:before { content: \"\\e014\"; }\n.lsf-bicycle:before { content: \"\\e015\"; }\n.lsf-bing:before { content: \"\\e164\"; }\n.lsf-blogger:before { content: \"\\e165\"; }\n.lsf-bold:before { content: \"\\e01f\"; }\n.lsf-book:before { content: \"\\e020\"; }\n.lsf-bookmark:before { content: \"\\e021\"; }\n.lsf-brush:before { content: \"\\e022\"; }\n.lsf-building:before { content: \"\\e023\"; }\n.lsf-bus:before { content: \"\\e024\"; }\n.lsf-calendar:before { content: \"\\e15e\"; }\n.lsf-camera:before { content: \"\\e026\"; }\n.lsf-car:before { content: \"\\e027\"; }\n.lsf-category:before { content: \"\\e028\"; }\n.lsf-check:before { content: \"\\e029\"; }\n.lsf-checkbox:before { content: \"\\e02a\"; }\n.lsf-checkboxempty:before { content: \"\\e02b\"; }\n.lsf-chrome:before { content: \"\\e02c\"; }\n.lsf-circle:before { content: \"\\e02e\"; }\n.lsf-clear:before { content: \"\\e02f\"; }\n.lsf-clip:before { content: \"\\e030\"; }\n.lsf-cloud:before { content: \"\\e031\"; }\n.lsf-code:before { content: \"\\e032\"; }\n.lsf-coffee:before { content: \"\\e146\"; }\n.lsf-college:before { content: \"\\e174\"; }\n.lsf-color:before { content: \"\\e033\"; }\n.lsf-comment:before { content: \"\\e034\"; }\n.lsf-comments:before { content: \"\\e035\"; }\n.lsf-compass:before { content: \"\\e036\"; }\n.lsf-contrast:before { content: \"\\e001\"; }\n.lsf-cookpad:before { content: \"\\e037\"; }\n.lsf-copy:before { content: \"\\e038\"; }\n.lsf-crop:before { content: \"\\e039\"; }\n.lsf-crown:before { content: \"\\e03a\"; }\n.lsf-cursor:before { content: \"\\e166\"; }\n.lsf-cut:before { content: \"\\e03b\"; }\n.lsf-dailycalendar:before { content: \"\\e025\"; }\n.lsf-dark:before { content: \"\\e147\"; }\n.lsf-dashboard:before { content: \"\\e03c\"; }\n.lsf-delete:before { content: \"\\e12c\"; }\n.lsf-delicious:before { content: \"\\e03d\"; }\n.lsf-digg:before { content: \"\\e167\"; }\n.lsf-down:before { content: \"\\e03e\"; }\n.lsf-dribbble:before { content: \"\\e03f\"; }\n.lsf-dropbox:before { content: \"\\e168\"; }\n.lsf-dropdown:before { content: \"\\e040\"; }\n.lsf-edit:before { content: \"\\e041\"; }\n.lsf-eject:before { content: \"\\e042\"; }\n.lsf-emphasis:before { content: \"\\e152\"; }\n.lsf-eraser:before { content: \"\\e148\"; }\n.lsf-etc:before { content: \"\\e043\"; }\n.lsf-evernote:before { content: \"\\e044\"; }\n.lsf-exchange:before { content: \"\\e045\"; }\n.lsf-external:before { content: \"\\e046\"; }\n.lsf-facebook:before { content: \"\\e047\"; }\n.lsf-female:before { content: \"\\e175\"; }\n.lsf-file:before { content: \"\\e048\"; }\n.lsf-firefox:before { content: \"\\e049\"; }\n.lsf-flag:before { content: \"\\e04a\"; }\n.lsf-flickr:before { content: \"\\e04b\"; }\n.lsf-folder:before { content: \"\\e04c\"; }\n.lsf-forward:before { content: \"\\e04e\"; }\n.lsf-foursquare:before { content: \"\\e04d\"; }\n.lsf-friend:before { content: \"\\e051\"; }\n.lsf-frustrate:before { content: \"\\e052\"; }\n.lsf-full:before { content: \"\\e053\"; }\n.lsf-game:before { content: \"\\e054\"; }\n.lsf-geo:before { content: \"\\e056\"; }\n.lsf-github:before { content: \"\\e057\"; }\n.lsf-globe:before { content: \"\\e058\"; }\n.lsf-good:before { content: \"\\e059\"; }\n.lsf-google:before { content: \"\\e05a\"; }\n.lsf-grab:before { content: \"\\e169\"; }\n.lsf-gradation:before { content: \"\\e149\"; }\n.lsf-graph:before { content: \"\\e05b\"; }\n.lsf-gree:before { content: \"\\e153\"; }\n.lsf-group:before { content: \"\\e05c\"; }\n.lsf-gumroad:before { content: \"\\e154\"; }\n.lsf-hatena:before { content: \"\\e05d\"; }\n.lsf-hatenabookmark:before { content: \"\\e161\"; }\n.lsf-heart:before { content: \"\\e06e\"; }\n.lsf-heartempty:before { content: \"\\e06f\"; }\n.lsf-help:before { content: \"\\e070\"; }\n.lsf-home:before { content: \"\\e072\"; }\n.lsf-horizontal:before { content: \"\\e071\"; }\n.lsf-image:before { content: \"\\e074\"; }\n.lsf-info:before { content: \"\\e075\"; }\n.lsf-ink:before { content: \"\\e14a\"; }\n.lsf-instagram:before { content: \"\\e155\"; }\n.lsf-instapaper:before { content: \"\\e076\"; }\n.lsf-internetexplorer:before { content: \"\\e077\"; }\n.lsf-invert:before { content: \"\\e14b\"; }\n.lsf-italic:before { content: \"\\e079\"; }\n.lsf-key:before { content: \"\\e07c\"; }\n.lsf-keyboard:before { content: \"\\e07d\"; }\n.lsf-laugh:before { content: \"\\e07f\"; }\n.lsf-left:before { content: \"\\e080\"; }\n.lsf-light:before { content: \"\\e14c\"; }\n.lsf-line:before { content: \"\\e157\"; }\n.lsf-link:before { content: \"\\e082\"; }\n.lsf-linkedin:before { content: \"\\e083\"; }\n.lsf-list:before { content: \"\\e084\"; }\n.lsf-location:before { content: \"\\e085\"; }\n.lsf-lock:before { content: \"\\e086\"; }\n.lsf-login:before { content: \"\\e087\"; }\n.lsf-logout:before { content: \"\\e088\"; }\n.lsf-magic:before { content: \"\\e089\"; }\n.lsf-mail:before { content: \"\\e08a\"; }\n.lsf-male:before { content: \"\\e176\"; }\n.lsf-map:before { content: \"\\e08b\"; }\n.lsf-meal:before { content: \"\\e08c\"; }\n.lsf-memo:before { content: \"\\e08d\"; }\n.lsf-menu:before { content: \"\\e08e\"; }\n.lsf-minus:before { content: \"\\e08f\"; }\n.lsf-mixi:before { content: \"\\e090\"; }\n.lsf-mobage:before { content: \"\\e158\"; }\n.lsf-mobile:before { content: \"\\e078\"; }\n.lsf-move:before { content: \"\\e093\"; }\n.lsf-music:before { content: \"\\e094\"; }\n.lsf-myspace:before { content: \"\\e16a\"; }\n.lsf-next:before { content: \"\\e096\"; }\n.lsf-notify:before { content: \"\\e097\"; }\n.lsf-off:before { content: \"\\e098\"; }\n.lsf-opera:before { content: \"\\e099\"; }\n.lsf-paint:before { content: \"\\e09b\"; }\n.lsf-paperboy:before { content: \"\\e162\"; }\n.lsf-paramater:before { content: \"\\e09c\"; }\n.lsf-pause:before { content: \"\\e09d\"; }\n.lsf-pc:before { content: \"\\e09e\"; }\n.lsf-pen:before { content: \"\\e09f\"; }\n.lsf-phone:before { content: \"\\e100\"; }\n.lsf-photo:before { content: \"\\e101\"; }\n.lsf-picasa:before { content: \"\\e102\"; }\n.lsf-pin:before { content: \"\\e103\"; }\n.lsf-pinterest:before { content: \"\\e104\"; }\n.lsf-plane:before { content: \"\\e105\"; }\n.lsf-play:before { content: \"\\e106\"; }\n.lsf-playmedia:before { content: \"\\e107\"; }\n.lsf-plus:before { content: \"\\e108\"; }\n.lsf-pointer:before { content: \"\\e16b\"; }\n.lsf-present:before { content: \"\\e109\"; }\n.lsf-print:before { content: \"\\e10a\"; }\n.lsf-quote:before { content: \"\\e10b\"; }\n.lsf-readability:before { content: \"\\e10c\"; }\n.lsf-record:before { content: \"\\e10d\"; }\n.lsf-refresh:before { content: \"\\e10e\"; }\n.lsf-refreshbutton:before { content: \"\\e14d\"; }\n.lsf-remove:before { content: \"\\e10f\"; }\n.lsf-repeat:before { content: \"\\e110\"; }\n.lsf-reply:before { content: \"\\e111\"; }\n.lsf-right:before { content: \"\\e112\"; }\n.lsf-rss:before { content: \"\\e113\"; }\n.lsf-safari:before { content: \"\\e114\"; }\n.lsf-save:before { content: \"\\e115\"; }\n.lsf-search:before { content: \"\\e116\"; }\n.lsf-sepia:before { content: \"\\e14e\"; }\n.lsf-server:before { content: \"\\e16c\"; }\n.lsf-setting:before { content: \"\\e055\"; }\n.lsf-setup:before { content: \"\\e117\"; }\n.lsf-share:before { content: \"\\e118\"; }\n.lsf-shopping:before { content: \"\\e119\"; }\n.lsf-shuffle:before { content: \"\\e11a\"; }\n.lsf-sitemap:before { content: \"\\e16d\"; }\n.lsf-skype:before { content: \"\\e11b\"; }\n.lsf-sleipnir:before { content: \"\\e11c\"; }\n.lsf-slideshare:before { content: \"\\e179\"; }\n.lsf-small:before { content: \"\\e11d\"; }\n.lsf-smile:before { content: \"\\e11e\"; }\n.lsf-sns:before { content: \"\\e11f\"; }\n.lsf-sort:before { content: \"\\e120\"; }\n.lsf-soundcloud:before { content: \"\\e17a\"; }\n.lsf-spa:before { content: \"\\e177\"; }\n.lsf-star:before { content: \"\\e121\"; }\n.lsf-starempty:before { content: \"\\e122\"; }\n.lsf-stop:before { content: \"\\e123\"; }\n.lsf-strike:before { content: \"\\e159\"; }\n.lsf-surprise:before { content: \"\\e124\"; }\n.lsf-sync:before { content: \"\\e125\"; }\n.lsf-table:before { content: \"\\e127\"; }\n.lsf-tabs:before { content: \"\\e095\"; }\n.lsf-tag:before { content: \"\\e128\"; }\n.lsf-terminal:before { content: \"\\e16e\"; }\n.lsf-tile:before { content: \"\\e129\"; }\n.lsf-tilemenu:before { content: \"\\e12a\"; }\n.lsf-time:before { content: \"\\e12b\"; }\n.lsf-trouble:before { content: \"\\e12d\"; }\n.lsf-tumblr:before { content: \"\\e12e\"; }\n.lsf-twinkle:before { content: \"\\e073\"; }\n.lsf-twitter:before { content: \"\\e12f\"; }\n.lsf-ubuntu:before { content: \"\\e17b\"; }\n.lsf-umbrella:before { content: \"\\e178\"; }\n.lsf-underline:before { content: \"\\e132\"; }\n.lsf-undo:before { content: \"\\e133\"; }\n.lsf-unlock:before { content: \"\\e134\"; }\n.lsf-up:before { content: \"\\e135\"; }\n.lsf-upload:before { content: \"\\e136\"; }\n.lsf-user:before { content: \"\\e137\"; }\n.lsf-ustream:before { content: \"\\e16f\"; }\n.lsf-vertical:before { content: \"\\e138\"; }\n.lsf-video:before { content: \"\\e139\"; }\n.lsf-view:before { content: \"\\e13a\"; }\n.lsf-vimeo:before { content: \"\\e170\"; }\n.lsf-vk:before { content: \"\\e17c\"; }\n.lsf-volume:before { content: \"\\e13b\"; }\n.lsf-volumedown:before { content: \"\\e13c\"; }\n.lsf-volumeup:before { content: \"\\e13d\"; }\n.lsf-walking:before { content: \"\\e13e\"; }\n.lsf-web:before { content: \"\\e13f\"; }\n.lsf-wifi:before { content: \"\\e140\"; }\n.lsf-windows:before { content: \"\\e151\"; }\n.lsf-wink:before { content: \"\\e081\"; }\n.lsf-wordpress:before { content: \"\\e171\"; }\n.lsf-yahoo:before { content: \"\\e172\"; }\n.lsf-yapcasialogomark:before { content: \"\\e15c\"; }\n.lsf-yelp:before { content: \"\\e17d\"; }\n.lsf-youtube:before { content: \"\\e141\"; }\n.lsf-zoomin:before { content: \"\\e142\"; }\n.lsf-zoomout:before { content: \"\\e143\"; }\n"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/ikonli-lineawesome-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.lineawesome {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.lineawesome;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.lineawesome.LineAwesomeBrandsIkonHandler,\n            org.kordamp.ikonli.lineawesome.LineAwesomeRegularIkonHandler,\n            org.kordamp.ikonli.lineawesome.LineAwesomeSolidIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.lineawesome.LineAwesomeBrandsIkonProvider,\n            org.kordamp.ikonli.lineawesome.LineAwesomeRegularIkonProvider,\n            org.kordamp.ikonli.lineawesome.LineAwesomeSolidIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/java/org/kordamp/ikonli/lineawesome/LineAwesomeBrands.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.lineawesome;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum LineAwesomeBrands implements Ikon {\n    ACCESSIBLE_ICON(\"lab-accessible-icon\", '\\uf368'),\n    ACCUSOFT(\"lab-accusoft\", '\\uf369'),\n    ACQUISITIONS_INCORPORATED(\"lab-acquisitions-incorporated\", '\\uf6af'),\n    ADN(\"lab-adn\", '\\uf170'),\n    ADVERSAL(\"lab-adversal\", '\\uf36a'),\n    AFFILIATETHEME(\"lab-affiliatetheme\", '\\uf36b'),\n    AIRBNB(\"lab-airbnb\", '\\uf834'),\n    ALGOLIA(\"lab-algolia\", '\\uf36c'),\n    ALIPAY(\"lab-alipay\", '\\uf642'),\n    AMAZON(\"lab-amazon\", '\\uf270'),\n    AMAZON_PAY(\"lab-amazon-pay\", '\\uf42c'),\n    AMILIA(\"lab-amilia\", '\\uf36d'),\n    ANDROID(\"lab-android\", '\\uf17b'),\n    ANGELLIST(\"lab-angellist\", '\\uf209'),\n    ANGRYCREATIVE(\"lab-angrycreative\", '\\uf36e'),\n    ANGULAR(\"lab-angular\", '\\uf420'),\n    APPER(\"lab-apper\", '\\uf371'),\n    APPLE(\"lab-apple\", '\\uf179'),\n    APPLE_PAY(\"lab-apple-pay\", '\\uf415'),\n    APP_STORE(\"lab-app-store\", '\\uf36f'),\n    APP_STORE_IOS(\"lab-app-store-ios\", '\\uf370'),\n    ARTSTATION(\"lab-artstation\", '\\uf77a'),\n    ASYMMETRIK(\"lab-asymmetrik\", '\\uf372'),\n    ATLASSIAN(\"lab-atlassian\", '\\uf77b'),\n    AUDIBLE(\"lab-audible\", '\\uf373'),\n    AUTOPREFIXER(\"lab-autoprefixer\", '\\uf41c'),\n    AVIANEX(\"lab-avianex\", '\\uf374'),\n    AVIATO(\"lab-aviato\", '\\uf421'),\n    AWS(\"lab-aws\", '\\uf375'),\n    BANDCAMP(\"lab-bandcamp\", '\\uf2d5'),\n    BATTLE_NET(\"lab-battle-net\", '\\uf835'),\n    BEHANCE(\"lab-behance\", '\\uf1b4'),\n    BEHANCE_SQUARE(\"lab-behance-square\", '\\uf1b5'),\n    BIMOBJECT(\"lab-bimobject\", '\\uf378'),\n    BITBUCKET(\"lab-bitbucket\", '\\uf171'),\n    BITCOIN(\"lab-bitcoin\", '\\uf379'),\n    BITY(\"lab-bity\", '\\uf37a'),\n    BLACKBERRY(\"lab-blackberry\", '\\uf37b'),\n    BLACK_TIE(\"lab-black-tie\", '\\uf27e'),\n    BLOGGER(\"lab-blogger\", '\\uf37c'),\n    BLOGGER_B(\"lab-blogger-b\", '\\uf37d'),\n    BLUETOOTH(\"lab-bluetooth\", '\\uf293'),\n    BLUETOOTH_B(\"lab-bluetooth-b\", '\\uf294'),\n    BOOTSTRAP(\"lab-bootstrap\", '\\uf836'),\n    BTC(\"lab-btc\", '\\uf15a'),\n    BUFFER(\"lab-buffer\", '\\uf837'),\n    BUROMOBELEXPERTE(\"lab-buromobelexperte\", '\\uf37f'),\n    BUYSELLADS(\"lab-buysellads\", '\\uf20d'),\n    BUY_N_LARGE(\"lab-buy-n-large\", '\\uf8a6'),\n    CANADIAN_MAPLE_LEAF(\"lab-canadian-maple-leaf\", '\\uf785'),\n    CC_AMAZON_PAY(\"lab-cc-amazon-pay\", '\\uf42d'),\n    CC_AMEX(\"lab-cc-amex\", '\\uf1f3'),\n    CC_APPLE_PAY(\"lab-cc-apple-pay\", '\\uf416'),\n    CC_DINERS_CLUB(\"lab-cc-diners-club\", '\\uf24c'),\n    CC_DISCOVER(\"lab-cc-discover\", '\\uf1f2'),\n    CC_JCB(\"lab-cc-jcb\", '\\uf24b'),\n    CC_MASTERCARD(\"lab-cc-mastercard\", '\\uf1f1'),\n    CC_PAYPAL(\"lab-cc-paypal\", '\\uf1f4'),\n    CC_STRIPE(\"lab-cc-stripe\", '\\uf1f5'),\n    CC_VISA(\"lab-cc-visa\", '\\uf1f0'),\n    CENTERCODE(\"lab-centercode\", '\\uf380'),\n    CENTOS(\"lab-centos\", '\\uf789'),\n    CHROME(\"lab-chrome\", '\\uf268'),\n    CHROMECAST(\"lab-chromecast\", '\\uf838'),\n    // CLOUDFARE(\"lab-cloudfare\", '\\ue07d'),\n    CLOUDSCALE(\"lab-cloudscale\", '\\uf383'),\n    CLOUDSMITH(\"lab-cloudsmith\", '\\uf384'),\n    CLOUDVERSIFY(\"lab-cloudversify\", '\\uf385'),\n    CODEPEN(\"lab-codepen\", '\\uf1cb'),\n    CODIEPIE(\"lab-codiepie\", '\\uf284'),\n    CONFLUENCE(\"lab-confluence\", '\\uf78d'),\n    CONNECTDEVELOP(\"lab-connectdevelop\", '\\uf20e'),\n    CONTAO(\"lab-contao\", '\\uf26d'),\n    COTTON_BUREAU(\"lab-cotton-bureau\", '\\uf89e'),\n    CPANEL(\"lab-cpanel\", '\\uf388'),\n    CREATIVE_COMMONS(\"lab-creative-commons\", '\\uf25e'),\n    CREATIVE_COMMONS_BY(\"lab-creative-commons-by\", '\\uf4e7'),\n    CREATIVE_COMMONS_NC(\"lab-creative-commons-nc\", '\\uf4e8'),\n    CREATIVE_COMMONS_NC_EU(\"lab-creative-commons-nc-eu\", '\\uf4e9'),\n    CREATIVE_COMMONS_NC_JP(\"lab-creative-commons-nc-jp\", '\\uf4ea'),\n    CREATIVE_COMMONS_ND(\"lab-creative-commons-nd\", '\\uf4eb'),\n    CREATIVE_COMMONS_PD(\"lab-creative-commons-pd\", '\\uf4ec'),\n    CREATIVE_COMMONS_PD_ALT(\"lab-creative-commons-pd-alt\", '\\uf4ed'),\n    CREATIVE_COMMONS_REMIX(\"lab-creative-commons-remix\", '\\uf4ee'),\n    CREATIVE_COMMONS_SA(\"lab-creative-commons-sa\", '\\uf4ef'),\n    CREATIVE_COMMONS_SAMPLING(\"lab-creative-commons-sampling\", '\\uf4f0'),\n    CREATIVE_COMMONS_SAMPLING_PLUS(\"lab-creative-commons-sampling-plus\", '\\uf4f1'),\n    CREATIVE_COMMONS_SHARE(\"lab-creative-commons-share\", '\\uf4f2'),\n    CREATIVE_COMMONS_ZERO(\"lab-creative-commons-zero\", '\\uf4f3'),\n    CRITICAL_ROLE(\"lab-critical-role\", '\\uf6c9'),\n    CSS3(\"lab-css3\", '\\uf13c'),\n    CSS3_ALT(\"lab-css3-alt\", '\\uf38b'),\n    CUTTLEFISH(\"lab-cuttlefish\", '\\uf38c'),\n    // DAILYMOTION(\"lab-dailymotion\", '\\ue052'),\n    DASHCUBE(\"lab-dashcube\", '\\uf210'),\n    // DEEZER(\"lab-deezer\", '\\ue077'),\n    DELICIOUS(\"lab-delicious\", '\\uf1a5'),\n    DEPLOYDOG(\"lab-deploydog\", '\\uf38e'),\n    DESKPRO(\"lab-deskpro\", '\\uf38f'),\n    DEV(\"lab-dev\", '\\uf6cc'),\n    DEVIANTART(\"lab-deviantart\", '\\uf1bd'),\n    DHL(\"lab-dhl\", '\\uf790'),\n    DIASPORA(\"lab-diaspora\", '\\uf791'),\n    DIGG(\"lab-digg\", '\\uf1a6'),\n    DIGITAL_OCEAN(\"lab-digital-ocean\", '\\uf391'),\n    DISCORD(\"lab-discord\", '\\uf392'),\n    DISCOURSE(\"lab-discourse\", '\\uf393'),\n    DOCHUB(\"lab-dochub\", '\\uf394'),\n    DOCKER(\"lab-docker\", '\\uf395'),\n    DRAFT2DIGITAL(\"lab-draft2digital\", '\\uf396'),\n    DRIBBBLE(\"lab-dribbble\", '\\uf17d'),\n    DRIBBBLE_SQUARE(\"lab-dribbble-square\", '\\uf397'),\n    DROPBOX(\"lab-dropbox\", '\\uf16b'),\n    DRUPAL(\"lab-drupal\", '\\uf1a9'),\n    DYALOG(\"lab-dyalog\", '\\uf399'),\n    D_AND_D(\"lab-d-and-d\", '\\uf38d'),\n    D_AND_D_BEYOND(\"lab-d-and-d-beyond\", '\\uf6ca'),\n    EARLYBIRDS(\"lab-earlybirds\", '\\uf39a'),\n    EBAY(\"lab-ebay\", '\\uf4f4'),\n    EDGE(\"lab-edge\", '\\uf282'),\n    // EDGE_LEGACY(\"lab-edge-legacy\", '\\ue078'),\n    ELEMENTOR(\"lab-elementor\", '\\uf430'),\n    ELLO(\"lab-ello\", '\\uf5f1'),\n    EMBER(\"lab-ember\", '\\uf423'),\n    EMPIRE(\"lab-empire\", '\\uf1d1'),\n    ENVIRA(\"lab-envira\", '\\uf299'),\n    ERLANG(\"lab-erlang\", '\\uf39d'),\n    ETHEREUM(\"lab-ethereum\", '\\uf42e'),\n    ETSY(\"lab-etsy\", '\\uf2d7'),\n    EVERNOTE(\"lab-evernote\", '\\uf839'),\n    EXPEDITEDSSL(\"lab-expeditedssl\", '\\uf23e'),\n    FAB_500PX(\"lab-500px\", '\\uf26e'),\n    FACEBOOK(\"lab-facebook\", '\\uf09a'),\n    FACEBOOK_F(\"lab-facebook-f\", '\\uf39e'),\n    FACEBOOK_MESSENGER(\"lab-facebook-messenger\", '\\uf39f'),\n    FACEBOOK_SQUARE(\"lab-facebook-square\", '\\uf082'),\n    FANTASY_FLIGHT_GAMES(\"lab-fantasy-flight-games\", '\\uf6dc'),\n    FEDEX(\"lab-fedex\", '\\uf797'),\n    FEDORA(\"lab-fedora\", '\\uf798'),\n    FIGMA(\"lab-figma\", '\\uf799'),\n    FIREFOX(\"lab-firefox\", '\\uf269'),\n    // FIREFOX_BROWSER(\"lab-firefox-browser\", '\\ue007'),\n    FIRSTDRAFT(\"lab-firstdraft\", '\\uf3a1'),\n    FIRST_ORDER(\"lab-first-order\", '\\uf2b0'),\n    FIRST_ORDER_ALT(\"lab-first-order-alt\", '\\uf50a'),\n    FLICKR(\"lab-flickr\", '\\uf16e'),\n    FLIPBOARD(\"lab-flipboard\", '\\uf44d'),\n    FLY(\"lab-fly\", '\\uf417'),\n    FONTICONS(\"lab-fonticons\", '\\uf280'),\n    FONTICONS_FI(\"lab-fonticons-fi\", '\\uf3a2'),\n    FONT_AWESOME(\"lab-font-awesome\", '\\uf2b4'),\n    FONT_AWESOME_ALT(\"lab-font-awesome-alt\", '\\uf35c'),\n    FONT_AWESOME_FLAG(\"lab-font-awesome-flag\", '\\uf425'),\n    FORT_AWESOME(\"lab-fort-awesome\", '\\uf286'),\n    FORT_AWESOME_ALT(\"lab-fort-awesome-alt\", '\\uf3a3'),\n    FORUMBEE(\"lab-forumbee\", '\\uf211'),\n    FOURSQUARE(\"lab-foursquare\", '\\uf180'),\n    FREEBSD(\"lab-freebsd\", '\\uf3a4'),\n    FREE_CODE_CAMP(\"lab-free-code-camp\", '\\uf2c5'),\n    FULCRUM(\"lab-fulcrum\", '\\uf50b'),\n    GALACTIC_REPUBLIC(\"lab-galactic-republic\", '\\uf50c'),\n    GALACTIC_SENATE(\"lab-galactic-senate\", '\\uf50d'),\n    GET_POCKET(\"lab-get-pocket\", '\\uf265'),\n    GG(\"lab-gg\", '\\uf260'),\n    GG_CIRCLE(\"lab-gg-circle\", '\\uf261'),\n    GIT(\"lab-git\", '\\uf1d3'),\n    GITHUB(\"lab-github\", '\\uf09b'),\n    GITHUB_ALT(\"lab-github-alt\", '\\uf113'),\n    GITHUB_SQUARE(\"lab-github-square\", '\\uf092'),\n    GITKRAKEN(\"lab-gitkraken\", '\\uf3a6'),\n    GITLAB(\"lab-gitlab\", '\\uf296'),\n    GITTER(\"lab-gitter\", '\\uf426'),\n    GIT_ALT(\"lab-git-alt\", '\\uf841'),\n    GIT_SQUARE(\"lab-git-square\", '\\uf1d2'),\n    GLIDE(\"lab-glide\", '\\uf2a5'),\n    GLIDE_G(\"lab-glide-g\", '\\uf2a6'),\n    GOFORE(\"lab-gofore\", '\\uf3a7'),\n    GOODREADS(\"lab-goodreads\", '\\uf3a8'),\n    GOODREADS_G(\"lab-goodreads-g\", '\\uf3a9'),\n    GOOGLE(\"lab-google\", '\\uf1a0'),\n    GOOGLE_DRIVE(\"lab-google-drive\", '\\uf3aa'),\n    // GOOGLE_PAY(\"lab-google-pay\", '\\ue079'),\n    GOOGLE_PLAY(\"lab-google-play\", '\\uf3ab'),\n    GOOGLE_PLUS(\"lab-google-plus\", '\\uf2b3'),\n    GOOGLE_PLUS_G(\"lab-google-plus-g\", '\\uf0d5'),\n    GOOGLE_PLUS_SQUARE(\"lab-google-plus-square\", '\\uf0d4'),\n    GOOGLE_WALLET(\"lab-google-wallet\", '\\uf1ee'),\n    GRATIPAY(\"lab-gratipay\", '\\uf184'),\n    GRAV(\"lab-grav\", '\\uf2d6'),\n    GRIPFIRE(\"lab-gripfire\", '\\uf3ac'),\n    GRUNT(\"lab-grunt\", '\\uf3ad'),\n    // GUILDED(\"lab-guilded\", '\\ue07e'),\n    GULP(\"lab-gulp\", '\\uf3ae'),\n    HACKERRANK(\"lab-hackerrank\", '\\uf5f7'),\n    HACKER_NEWS(\"lab-hacker-news\", '\\uf1d4'),\n    HACKER_NEWS_SQUARE(\"lab-hacker-news-square\", '\\uf3af'),\n    HIPS(\"lab-hips\", '\\uf452'),\n    HIRE_A_HELPER(\"lab-hire-a-helper\", '\\uf3b0'),\n    // HIVE(\"lab-hive\", '\\ue07f'),\n    HOOLI(\"lab-hooli\", '\\uf427'),\n    HORNBILL(\"lab-hornbill\", '\\uf592'),\n    HOTJAR(\"lab-hotjar\", '\\uf3b1'),\n    HOUZZ(\"lab-houzz\", '\\uf27c'),\n    HTML5(\"lab-html5\", '\\uf13b'),\n    HUBSPOT(\"lab-hubspot\", '\\uf3b2'),\n    // IDEAL(\"lab-ideal\", '\\ue013'),\n    IMDB(\"lab-imdb\", '\\uf2d8'),\n    // INNOSOFT(\"lab-innosoft\", '\\ue080'),\n    INSTAGRAM(\"lab-instagram\", '\\uf16d'),\n    // INSTAGRAM_SQUARE(\"lab-instagram-square\", '\\ue055'),\n    // INSTALOD(\"lab-instalod\", '\\ue081'),\n    INTERCOM(\"lab-intercom\", '\\uf7af'),\n    INTERNET_EXPLORER(\"lab-internet-explorer\", '\\uf26b'),\n    INVISION(\"lab-invision\", '\\uf7b0'),\n    IOXHOST(\"lab-ioxhost\", '\\uf208'),\n    ITCH_IO(\"lab-itch-io\", '\\uf83a'),\n    ITUNES(\"lab-itunes\", '\\uf3b4'),\n    ITUNES_NOTE(\"lab-itunes-note\", '\\uf3b5'),\n    JAVA(\"lab-java\", '\\uf4e4'),\n    JEDI_ORDER(\"lab-jedi-order\", '\\uf50e'),\n    JENKINS(\"lab-jenkins\", '\\uf3b6'),\n    JIRA(\"lab-jira\", '\\uf7b1'),\n    JOGET(\"lab-joget\", '\\uf3b7'),\n    JOOMLA(\"lab-joomla\", '\\uf1aa'),\n    JS(\"lab-js\", '\\uf3b8'),\n    JSFIDDLE(\"lab-jsfiddle\", '\\uf1cc'),\n    JS_SQUARE(\"lab-js-square\", '\\uf3b9'),\n    KAGGLE(\"lab-kaggle\", '\\uf5fa'),\n    KEYBASE(\"lab-keybase\", '\\uf4f5'),\n    KEYCDN(\"lab-keycdn\", '\\uf3ba'),\n    KICKSTARTER(\"lab-kickstarter\", '\\uf3bb'),\n    KICKSTARTER_K(\"lab-kickstarter-k\", '\\uf3bc'),\n    KORVUE(\"lab-korvue\", '\\uf42f'),\n    LARAVEL(\"lab-laravel\", '\\uf3bd'),\n    LASTFM(\"lab-lastfm\", '\\uf202'),\n    LASTFM_SQUARE(\"lab-lastfm-square\", '\\uf203'),\n    LEANPUB(\"lab-leanpub\", '\\uf212'),\n    LESS(\"lab-less\", '\\uf41d'),\n    LINE(\"lab-line\", '\\uf3c0'),\n    LINKEDIN(\"lab-linkedin\", '\\uf08c'),\n    LINKEDIN_IN(\"lab-linkedin-in\", '\\uf0e1'),\n    LINODE(\"lab-linode\", '\\uf2b8'),\n    LINUX(\"lab-linux\", '\\uf17c'),\n    LYFT(\"lab-lyft\", '\\uf3c3'),\n    MAGENTO(\"lab-magento\", '\\uf3c4'),\n    MAILCHIMP(\"lab-mailchimp\", '\\uf59e'),\n    MANDALORIAN(\"lab-mandalorian\", '\\uf50f'),\n    MARKDOWN(\"lab-markdown\", '\\uf60f'),\n    MASTODON(\"lab-mastodon\", '\\uf4f6'),\n    MAXCDN(\"lab-maxcdn\", '\\uf136'),\n    MDB(\"lab-mdb\", '\\uf8ca'),\n    MEDAPPS(\"lab-medapps\", '\\uf3c6'),\n    MEDIUM(\"lab-medium\", '\\uf23a'),\n    MEDIUM_M(\"lab-medium-m\", '\\uf3c7'),\n    MEDRT(\"lab-medrt\", '\\uf3c8'),\n    MEETUP(\"lab-meetup\", '\\uf2e0'),\n    MEGAPORT(\"lab-megaport\", '\\uf5a3'),\n    MENDELEY(\"lab-mendeley\", '\\uf7b3'),\n    // MICROBLOG(\"lab-microblog\", '\\ue01a'),\n    MICROSOFT(\"lab-microsoft\", '\\uf3ca'),\n    MIX(\"lab-mix\", '\\uf3cb'),\n    MIXCLOUD(\"lab-mixcloud\", '\\uf289'),\n    // MIXER(\"lab-mixer\", '\\ue056'),\n    MIZUNI(\"lab-mizuni\", '\\uf3cc'),\n    MODX(\"lab-modx\", '\\uf285'),\n    MONERO(\"lab-monero\", '\\uf3d0'),\n    NAPSTER(\"lab-napster\", '\\uf3d2'),\n    NEOS(\"lab-neos\", '\\uf612'),\n    NIMBLR(\"lab-nimblr\", '\\uf5a8'),\n    NODE(\"lab-node\", '\\uf419'),\n    NODE_JS(\"lab-node-js\", '\\uf3d3'),\n    NPM(\"lab-npm\", '\\uf3d4'),\n    NS8(\"lab-ns8\", '\\uf3d5'),\n    NUTRITIONIX(\"lab-nutritionix\", '\\uf3d6'),\n    // OCTOPUS_DEPLOY(\"lab-octopus-deploy\", '\\ue082'),\n    ODNOKLASSNIKI(\"lab-odnoklassniki\", '\\uf263'),\n    ODNOKLASSNIKI_SQUARE(\"lab-odnoklassniki-square\", '\\uf264'),\n    OLD_REPUBLIC(\"lab-old-republic\", '\\uf510'),\n    OPENCART(\"lab-opencart\", '\\uf23d'),\n    OPENID(\"lab-openid\", '\\uf19b'),\n    OPERA(\"lab-opera\", '\\uf26a'),\n    OPTIN_MONSTER(\"lab-optin-monster\", '\\uf23c'),\n    ORCID(\"lab-orcid\", '\\uf8d2'),\n    OSI(\"lab-osi\", '\\uf41a'),\n    PAGE4(\"lab-page4\", '\\uf3d7'),\n    PAGELINES(\"lab-pagelines\", '\\uf18c'),\n    PALFED(\"lab-palfed\", '\\uf3d8'),\n    PATREON(\"lab-patreon\", '\\uf3d9'),\n    PAYPAL(\"lab-paypal\", '\\uf1ed'),\n    PENNY_ARCADE(\"lab-penny-arcade\", '\\uf704'),\n    // PERBYTE(\"lab-perbyte\", '\\ue083'),\n    PERISCOPE(\"lab-periscope\", '\\uf3da'),\n    PHABRICATOR(\"lab-phabricator\", '\\uf3db'),\n    PHOENIX_FRAMEWORK(\"lab-phoenix-framework\", '\\uf3dc'),\n    PHOENIX_SQUADRON(\"lab-phoenix-squadron\", '\\uf511'),\n    PHP(\"lab-php\", '\\uf457'),\n    PIED_PIPER(\"lab-pied-piper\", '\\uf2ae'),\n    PIED_PIPER_ALT(\"lab-pied-piper-alt\", '\\uf1a8'),\n    PIED_PIPER_HAT(\"lab-pied-piper-hat\", '\\uf4e5'),\n    PIED_PIPER_PP(\"lab-pied-piper-pp\", '\\uf1a7'),\n    // PIED_PIPER_SQUARE(\"lab-pied-piper-square\", '\\ue01e'),\n    PINTEREST(\"lab-pinterest\", '\\uf0d2'),\n    PINTEREST_P(\"lab-pinterest-p\", '\\uf231'),\n    PINTEREST_SQUARE(\"lab-pinterest-square\", '\\uf0d3'),\n    PLAYSTATION(\"lab-playstation\", '\\uf3df'),\n    PRODUCT_HUNT(\"lab-product-hunt\", '\\uf288'),\n    PUSHED(\"lab-pushed\", '\\uf3e1'),\n    PYTHON(\"lab-python\", '\\uf3e2'),\n    QQ(\"lab-qq\", '\\uf1d6'),\n    QUINSCAPE(\"lab-quinscape\", '\\uf459'),\n    QUORA(\"lab-quora\", '\\uf2c4'),\n    RASPBERRY_PI(\"lab-raspberry-pi\", '\\uf7bb'),\n    RAVELRY(\"lab-ravelry\", '\\uf2d9'),\n    REACT(\"lab-react\", '\\uf41b'),\n    REACTEUROPE(\"lab-reacteurope\", '\\uf75d'),\n    README(\"lab-readme\", '\\uf4d5'),\n    REBEL(\"lab-rebel\", '\\uf1d0'),\n    REDDIT(\"lab-reddit\", '\\uf1a1'),\n    REDDIT_ALIEN(\"lab-reddit-alien\", '\\uf281'),\n    REDDIT_SQUARE(\"lab-reddit-square\", '\\uf1a2'),\n    REDHAT(\"lab-redhat\", '\\uf7bc'),\n    RED_RIVER(\"lab-red-river\", '\\uf3e3'),\n    RENREN(\"lab-renren\", '\\uf18b'),\n    REPLYD(\"lab-replyd\", '\\uf3e6'),\n    RESEARCHGATE(\"lab-researchgate\", '\\uf4f8'),\n    RESOLVING(\"lab-resolving\", '\\uf3e7'),\n    REV(\"lab-rev\", '\\uf5b2'),\n    ROCKETCHAT(\"lab-rocketchat\", '\\uf3e8'),\n    ROCKRMS(\"lab-rockrms\", '\\uf3e9'),\n    // RUST(\"lab-rust\", '\\ue07a'),\n    R_PROJECT(\"lab-r-project\", '\\uf4f7'),\n    SAFARI(\"lab-safari\", '\\uf267'),\n    SALESFORCE(\"lab-salesforce\", '\\uf83b'),\n    SASS(\"lab-sass\", '\\uf41e'),\n    SCHLIX(\"lab-schlix\", '\\uf3ea'),\n    SCRIBD(\"lab-scribd\", '\\uf28a'),\n    SEARCHENGIN(\"lab-searchengin\", '\\uf3eb'),\n    SELLCAST(\"lab-sellcast\", '\\uf2da'),\n    SELLSY(\"lab-sellsy\", '\\uf213'),\n    SERVICESTACK(\"lab-servicestack\", '\\uf3ec'),\n    SHIRTSINBULK(\"lab-shirtsinbulk\", '\\uf214'),\n    // SHOPIFY(\"lab-shopify\", '\\ue057'),\n    SHOPWARE(\"lab-shopware\", '\\uf5b5'),\n    SIMPLYBUILT(\"lab-simplybuilt\", '\\uf215'),\n    SISTRIX(\"lab-sistrix\", '\\uf3ee'),\n    SITH(\"lab-sith\", '\\uf512'),\n    SKETCH(\"lab-sketch\", '\\uf7c6'),\n    SKYATLAS(\"lab-skyatlas\", '\\uf216'),\n    SKYPE(\"lab-skype\", '\\uf17e'),\n    SLACK(\"lab-slack\", '\\uf198'),\n    SLACK_HASH(\"lab-slack-hash\", '\\uf3ef'),\n    SLIDESHARE(\"lab-slideshare\", '\\uf1e7'),\n    SNAPCHAT(\"lab-snapchat\", '\\uf2ab'),\n    SNAPCHAT_GHOST(\"lab-snapchat-ghost\", '\\uf2ac'),\n    SNAPCHAT_SQUARE(\"lab-snapchat-square\", '\\uf2ad'),\n    SOUNDCLOUD(\"lab-soundcloud\", '\\uf1be'),\n    SOURCETREE(\"lab-sourcetree\", '\\uf7d3'),\n    SPEAKAP(\"lab-speakap\", '\\uf3f3'),\n    SPEAKER_DECK(\"lab-speaker-deck\", '\\uf83c'),\n    SPOTIFY(\"lab-spotify\", '\\uf1bc'),\n    SQUARESPACE(\"lab-squarespace\", '\\uf5be'),\n    STACKPATH(\"lab-stackpath\", '\\uf842'),\n    STACK_EXCHANGE(\"lab-stack-exchange\", '\\uf18d'),\n    STACK_OVERFLOW(\"lab-stack-overflow\", '\\uf16c'),\n    STAYLINKED(\"lab-staylinked\", '\\uf3f5'),\n    STEAM(\"lab-steam\", '\\uf1b6'),\n    STEAM_SQUARE(\"lab-steam-square\", '\\uf1b7'),\n    STEAM_SYMBOL(\"lab-steam-symbol\", '\\uf3f6'),\n    STICKER_MULE(\"lab-sticker-mule\", '\\uf3f7'),\n    STRAVA(\"lab-strava\", '\\uf428'),\n    STRIPE(\"lab-stripe\", '\\uf429'),\n    STRIPE_S(\"lab-stripe-s\", '\\uf42a'),\n    STUDIOVINARI(\"lab-studiovinari\", '\\uf3f8'),\n    STUMBLEUPON(\"lab-stumbleupon\", '\\uf1a4'),\n    STUMBLEUPON_CIRCLE(\"lab-stumbleupon-circle\", '\\uf1a3'),\n    SUPERPOWERS(\"lab-superpowers\", '\\uf2dd'),\n    SUPPLE(\"lab-supple\", '\\uf3f9'),\n    SUSE(\"lab-suse\", '\\uf7d6'),\n    SWIFT(\"lab-swift\", '\\uf8e1'),\n    SYMFONY(\"lab-symfony\", '\\uf83d'),\n    TEAMSPEAK(\"lab-teamspeak\", '\\uf4f9'),\n    TELEGRAM(\"lab-telegram\", '\\uf2c6'),\n    TELEGRAM_PLANE(\"lab-telegram-plane\", '\\uf3fe'),\n    TENCENT_WEIBO(\"lab-tencent-weibo\", '\\uf1d5'),\n    THEMECO(\"lab-themeco\", '\\uf5c6'),\n    THEMEISLE(\"lab-themeisle\", '\\uf2b2'),\n    THE_RED_YETI(\"lab-the-red-yeti\", '\\uf69d'),\n    THINK_PEAKS(\"lab-think-peaks\", '\\uf731'),\n    // TIKTOK(\"lab-tiktok\", '\\ue07b'),\n    TRADE_FEDERATION(\"lab-trade-federation\", '\\uf513'),\n    TRELLO(\"lab-trello\", '\\uf181'),\n    TRIPADVISOR(\"lab-tripadvisor\", '\\uf262'),\n    TUMBLR(\"lab-tumblr\", '\\uf173'),\n    TUMBLR_SQUARE(\"lab-tumblr-square\", '\\uf174'),\n    TWITCH(\"lab-twitch\", '\\uf1e8'),\n    TWITTER(\"lab-twitter\", '\\uf099'),\n    TWITTER_SQUARE(\"lab-twitter-square\", '\\uf081'),\n    TYPO3(\"lab-typo3\", '\\uf42b'),\n    UBER(\"lab-uber\", '\\uf402'),\n    UBUNTU(\"lab-ubuntu\", '\\uf7df'),\n    UIKIT(\"lab-uikit\", '\\uf403'),\n    UMBRACO(\"lab-umbraco\", '\\uf8e8'),\n    // UNCHARTED(\"lab-uncharted\", '\\ue084'),\n    UNIREGISTRY(\"lab-uniregistry\", '\\uf404'),\n    // UNITY(\"lab-unity\", '\\ue049'),\n    // UNSPLASH(\"lab-unsplash\", '\\ue07c'),\n    UNTAPPD(\"lab-untappd\", '\\uf405'),\n    UPS(\"lab-ups\", '\\uf7e0'),\n    USB(\"lab-usb\", '\\uf287'),\n    USPS(\"lab-usps\", '\\uf7e1'),\n    USSUNNAH(\"lab-ussunnah\", '\\uf407'),\n    VAADIN(\"lab-vaadin\", '\\uf408'),\n    VIACOIN(\"lab-viacoin\", '\\uf237'),\n    VIADEO(\"lab-viadeo\", '\\uf2a9'),\n    VIADEO_SQUARE(\"lab-viadeo-square\", '\\uf2aa'),\n    VIBER(\"lab-viber\", '\\uf409'),\n    VIMEO(\"lab-vimeo\", '\\uf40a'),\n    VIMEO_SQUARE(\"lab-vimeo-square\", '\\uf194'),\n    VIMEO_V(\"lab-vimeo-v\", '\\uf27d'),\n    VINE(\"lab-vine\", '\\uf1ca'),\n    VK(\"lab-vk\", '\\uf189'),\n    VNV(\"lab-vnv\", '\\uf40b'),\n    VUEJS(\"lab-vuejs\", '\\uf41f'),\n    // WATCHAMN_MONITORING(\"lab-watchman-monitoring\", '\\ue087'),\n    WAZE(\"lab-waze\", '\\uf83f'),\n    WEEBLY(\"lab-weebly\", '\\uf5cc'),\n    WEIBO(\"lab-weibo\", '\\uf18a'),\n    WEIXIN(\"lab-weixin\", '\\uf1d7'),\n    WHATSAPP(\"lab-whatsapp\", '\\uf232'),\n    WHATSAPP_SQUARE(\"lab-whatsapp-square\", '\\uf40c'),\n    WHMCS(\"lab-whmcs\", '\\uf40d'),\n    WIKIPEDIA_W(\"lab-wikipedia-w\", '\\uf266'),\n    WINDOWS(\"lab-windows\", '\\uf17a'),\n    WIX(\"lab-wix\", '\\uf5cf'),\n    WIZARDS_OF_THE_COAST(\"lab-wizards-of-the-coast\", '\\uf730'),\n    // WODU(\"lab-wodu\", '\\ue088'),\n    WOLF_PACK_BATTALION(\"lab-wolf-pack-battalion\", '\\uf514'),\n    WORDPRESS(\"lab-wordpress\", '\\uf19a'),\n    WORDPRESS_SIMPLE(\"lab-wordpress-simple\", '\\uf411'),\n    WPBEGINNER(\"lab-wpbeginner\", '\\uf297'),\n    WPEXPLORER(\"lab-wpexplorer\", '\\uf2de'),\n    WPFORMS(\"lab-wpforms\", '\\uf298'),\n    WPRESSR(\"lab-wpressr\", '\\uf3e4'),\n    XBOX(\"lab-xbox\", '\\uf412'),\n    XING(\"lab-xing\", '\\uf168'),\n    XING_SQUARE(\"lab-xing-square\", '\\uf169'),\n    YAHOO(\"lab-yahoo\", '\\uf19e'),\n    YAMMER(\"lab-yammer\", '\\uf840'),\n    YANDEX(\"lab-yandex\", '\\uf413'),\n    YANDEX_INTERNATIONAL(\"lab-yandex-international\", '\\uf414'),\n    YARN(\"lab-yarn\", '\\uf7e3'),\n    YELP(\"lab-yelp\", '\\uf1e9'),\n    YOAST(\"lab-yoast\", '\\uf2b1'),\n    YOUTUBE(\"lab-youtube\", '\\uf167'),\n    YOUTUBE_SQUARE(\"lab-youtube-square\", '\\uf431'),\n    Y_COMBINATOR(\"lab-y-combinator\", '\\uf23b'),\n    ZHIHU(\"lab-zhihu\", '\\uf63f');\n\n    public static LineAwesomeBrands findByDescription(String description) {\n        for (LineAwesomeBrands font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    LineAwesomeBrands(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/java/org/kordamp/ikonli/lineawesome/LineAwesomeBrandsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.lineawesome;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class LineAwesomeBrandsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/lineawesome/1.3.0/fonts/la-brands-400.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"lab-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return LineAwesomeBrands.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"la-brands-400\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/java/org/kordamp/ikonli/lineawesome/LineAwesomeBrandsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.lineawesome;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class LineAwesomeBrandsIkonProvider implements IkonProvider<LineAwesomeBrands> {\n    @Override\n    public Class<LineAwesomeBrands> getIkon() {\n        return LineAwesomeBrands.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/java/org/kordamp/ikonli/lineawesome/LineAwesomeRegular.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.lineawesome;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum LineAwesomeRegular implements Ikon {\n    ADDRESS_BOOK(\"lar-address-book\", '\\uf2b9'),\n    ADDRESS_CARD(\"lar-address-card\", '\\uf2bb'),\n    ANGRY(\"lar-angry\", '\\uf556'),\n    ARROW_ALT_CIRCLE_DOWN(\"lar-arrow-alt-circle-down\", '\\uf358'),\n    ARROW_ALT_CIRCLE_LEFT(\"lar-arrow-alt-circle-left\", '\\uf359'),\n    ARROW_ALT_CIRCLE_RIGHT(\"lar-arrow-alt-circle-right\", '\\uf35a'),\n    ARROW_ALT_CIRCLE_UP(\"lar-arrow-alt-circle-up\", '\\uf35b'),\n    BELL(\"lar-bell\", '\\uf0f3'),\n    BELL_SLASH(\"lar-bell-slash\", '\\uf1f6'),\n    BOOKMARK(\"lar-bookmark\", '\\uf02e'),\n    BUILDING(\"lar-building\", '\\uf1ad'),\n    CALENDAR(\"lar-calendar\", '\\uf133'),\n    CALENDAR_ALT(\"lar-calendar-alt\", '\\uf073'),\n    CALENDAR_CHECK(\"lar-calendar-check\", '\\uf274'),\n    CALENDAR_MINUS(\"lar-calendar-minus\", '\\uf272'),\n    CALENDAR_PLUS(\"lar-calendar-plus\", '\\uf271'),\n    CALENDAR_TIMES(\"lar-calendar-times\", '\\uf273'),\n    CARET_SQUARE_DOWN(\"lar-caret-square-down\", '\\uf150'),\n    CARET_SQUARE_LEFT(\"lar-caret-square-left\", '\\uf191'),\n    CARET_SQUARE_RIGHT(\"lar-caret-square-right\", '\\uf152'),\n    CARET_SQUARE_UP(\"lar-caret-square-up\", '\\uf151'),\n    CHART_BAR(\"lar-chart-bar\", '\\uf080'),\n    CHECK_CIRCLE(\"lar-check-circle\", '\\uf058'),\n    CHECK_SQUARE(\"lar-check-square\", '\\uf14a'),\n    CIRCLE(\"lar-circle\", '\\uf111'),\n    CLIPBOARD(\"lar-clipboard\", '\\uf328'),\n    CLOCK(\"lar-clock\", '\\uf017'),\n    CLONE(\"lar-clone\", '\\uf24d'),\n    CLOSED_CAPTIONING(\"lar-closed-captioning\", '\\uf20a'),\n    COMMENT(\"lar-comment\", '\\uf075'),\n    COMMENTS(\"lar-comments\", '\\uf086'),\n    COMMENT_ALT(\"lar-comment-alt\", '\\uf27a'),\n    COMMENT_DOTS(\"lar-comment-dots\", '\\uf4ad'),\n    COMPASS(\"lar-compass\", '\\uf14e'),\n    COPY(\"lar-copy\", '\\uf0c5'),\n    COPYRIGHT(\"lar-copyright\", '\\uf1f9'),\n    CREDIT_CARD(\"lar-credit-card\", '\\uf09d'),\n    DIZZY(\"lar-dizzy\", '\\uf567'),\n    DOT_CIRCLE(\"lar-dot-circle\", '\\uf192'),\n    EDIT(\"lar-edit\", '\\uf044'),\n    ENVELOPE(\"lar-envelope\", '\\uf0e0'),\n    ENVELOPE_OPEN(\"lar-envelope-open\", '\\uf2b6'),\n    EYE(\"lar-eye\", '\\uf06e'),\n    EYE_SLASH(\"lar-eye-slash\", '\\uf070'),\n    FILE(\"lar-file\", '\\uf15b'),\n    FILE_ALT(\"lar-file-alt\", '\\uf15c'),\n    FILE_ARCHIVE(\"lar-file-archive\", '\\uf1c6'),\n    FILE_AUDIO(\"lar-file-audio\", '\\uf1c7'),\n    FILE_CODE(\"lar-file-code\", '\\uf1c9'),\n    FILE_EXCEL(\"lar-file-excel\", '\\uf1c3'),\n    FILE_IMAGE(\"lar-file-image\", '\\uf1c5'),\n    FILE_PDF(\"lar-file-pdf\", '\\uf1c1'),\n    FILE_POWERPOINT(\"lar-file-powerpoint\", '\\uf1c4'),\n    FILE_VIDEO(\"lar-file-video\", '\\uf1c8'),\n    FILE_WORD(\"lar-file-word\", '\\uf1c2'),\n    FLAG(\"lar-flag\", '\\uf024'),\n    FLUSHED(\"lar-flushed\", '\\uf579'),\n    FOLDER(\"lar-folder\", '\\uf07b'),\n    FOLDER_OPEN(\"lar-folder-open\", '\\uf07c'),\n    FROWN(\"lar-frown\", '\\uf119'),\n    FROWN_OPEN(\"lar-frown-open\", '\\uf57a'),\n    FUTBOL(\"lar-futbol\", '\\uf1e3'),\n    GEM(\"lar-gem\", '\\uf3a5'),\n    GRIMACE(\"lar-grimace\", '\\uf57f'),\n    GRIN(\"lar-grin\", '\\uf580'),\n    GRIN_ALT(\"lar-grin-alt\", '\\uf581'),\n    GRIN_BEAM(\"lar-grin-beam\", '\\uf582'),\n    GRIN_BEAM_SWEAT(\"lar-grin-beam-sweat\", '\\uf583'),\n    GRIN_HEARTS(\"lar-grin-hearts\", '\\uf584'),\n    GRIN_SQUINT(\"lar-grin-squint\", '\\uf585'),\n    GRIN_SQUINT_TEARS(\"lar-grin-squint-tears\", '\\uf586'),\n    GRIN_STARS(\"lar-grin-stars\", '\\uf587'),\n    GRIN_TEARS(\"lar-grin-tears\", '\\uf588'),\n    GRIN_TONGUE(\"lar-grin-tongue\", '\\uf589'),\n    GRIN_TONGUE_SQUINT(\"lar-grin-tongue-squint\", '\\uf58a'),\n    GRIN_TONGUE_WINK(\"lar-grin-tongue-wink\", '\\uf58b'),\n    GRIN_WINK(\"lar-grin-wink\", '\\uf58c'),\n    HANDSHAKE(\"lar-handshake\", '\\uf2b5'),\n    HAND_LIZARD(\"lar-hand-lizard\", '\\uf258'),\n    HAND_PAPER(\"lar-hand-paper\", '\\uf256'),\n    HAND_PEACE(\"lar-hand-peace\", '\\uf25b'),\n    HAND_POINTER(\"lar-hand-pointer\", '\\uf25a'),\n    HAND_POINT_DOWN(\"lar-hand-point-down\", '\\uf0a7'),\n    HAND_POINT_LEFT(\"lar-hand-point-left\", '\\uf0a5'),\n    HAND_POINT_RIGHT(\"lar-hand-point-right\", '\\uf0a4'),\n    HAND_POINT_UP(\"lar-hand-point-up\", '\\uf0a6'),\n    HAND_ROCK(\"lar-hand-rock\", '\\uf255'),\n    HAND_SCISSORS(\"lar-hand-scissors\", '\\uf257'),\n    HAND_SPOCK(\"lar-hand-spock\", '\\uf259'),\n    HDD(\"lar-hdd\", '\\uf0a0'),\n    HEART(\"lar-heart\", '\\uf004'),\n    HOSPITAL(\"lar-hospital\", '\\uf0f8'),\n    HOURGLASS(\"lar-hourglass\", '\\uf254'),\n    ID_BADGE(\"lar-id-badge\", '\\uf2c1'),\n    ID_CARD(\"lar-id-card\", '\\uf2c2'),\n    IMAGE(\"lar-image\", '\\uf03e'),\n    IMAGES(\"lar-images\", '\\uf302'),\n    KEYBOARD(\"lar-keyboard\", '\\uf11c'),\n    KISS(\"lar-kiss\", '\\uf596'),\n    KISS_BEAM(\"lar-kiss-beam\", '\\uf597'),\n    KISS_WINK_HEART(\"lar-kiss-wink-heart\", '\\uf598'),\n    LAUGH(\"lar-laugh\", '\\uf599'),\n    LAUGH_BEAM(\"lar-laugh-beam\", '\\uf59a'),\n    LAUGH_SQUINT(\"lar-laugh-squint\", '\\uf59b'),\n    LAUGH_WINK(\"lar-laugh-wink\", '\\uf59c'),\n    LEMON(\"lar-lemon\", '\\uf094'),\n    LIFE_RING(\"lar-life-ring\", '\\uf1cd'),\n    LIGHTBULB(\"lar-lightbulb\", '\\uf0eb'),\n    LIST_ALT(\"lar-list-alt\", '\\uf022'),\n    MAP(\"lar-map\", '\\uf279'),\n    MEH(\"lar-meh\", '\\uf11a'),\n    MEH_BLANK(\"lar-meh-blank\", '\\uf5a4'),\n    MEH_ROLLING_EYES(\"lar-meh-rolling-eyes\", '\\uf5a5'),\n    MINUS_SQUARE(\"lar-minus-square\", '\\uf146'),\n    MONEY_BILL_ALT(\"lar-money-bill-alt\", '\\uf3d1'),\n    MOON(\"lar-moon\", '\\uf186'),\n    NEWSPAPER(\"lar-newspaper\", '\\uf1ea'),\n    OBJECT_GROUP(\"lar-object-group\", '\\uf247'),\n    OBJECT_UNGROUP(\"lar-object-ungroup\", '\\uf248'),\n    PAPER_PLANE(\"lar-paper-plane\", '\\uf1d8'),\n    PAUSE_CIRCLE(\"lar-pause-circle\", '\\uf28b'),\n    PLAY_CIRCLE(\"lar-play-circle\", '\\uf144'),\n    PLUS_SQUARE(\"lar-plus-square\", '\\uf0fe'),\n    QUESTION_CIRCLE(\"lar-question-circle\", '\\uf059'),\n    REGISTERED(\"lar-registered\", '\\uf25d'),\n    SAD_CRY(\"lar-sad-cry\", '\\uf5b3'),\n    SAD_TEAR(\"lar-sad-tear\", '\\uf5b4'),\n    SAVE(\"lar-save\", '\\uf0c7'),\n    SHARE_SQUARE(\"lar-share-square\", '\\uf14d'),\n    SMILE(\"lar-smile\", '\\uf118'),\n    SMILE_BEAM(\"lar-smile-beam\", '\\uf5b8'),\n    SMILE_WINK(\"lar-smile-wink\", '\\uf4da'),\n    SNOWFLAKE(\"lar-snowflake\", '\\uf2dc'),\n    SQUARE(\"lar-square\", '\\uf0c8'),\n    STAR(\"lar-star\", '\\uf005'),\n    STAR_HALF(\"lar-star-half\", '\\uf089'),\n    STICKY_NOTE(\"lar-sticky-note\", '\\uf249'),\n    STOP_CIRCLE(\"lar-stop-circle\", '\\uf28d'),\n    SUN(\"lar-sun\", '\\uf185'),\n    SURPRISE(\"lar-surprise\", '\\uf5c2'),\n    THUMBS_DOWN(\"lar-thumbs-down\", '\\uf165'),\n    THUMBS_UP(\"lar-thumbs-up\", '\\uf164'),\n    TIMES_CIRCLE(\"lar-times-circle\", '\\uf057'),\n    TIRED(\"lar-tired\", '\\uf5c8'),\n    TRASH_ALT(\"lar-trash-alt\", '\\uf2ed'),\n    USER(\"lar-user\", '\\uf007'),\n    USER_CIRCLE(\"lar-user-circle\", '\\uf2bd'),\n    WINDOW_CLOSE(\"lar-window-close\", '\\uf410'),\n    WINDOW_MAXIMIZE(\"lar-window-maximize\", '\\uf2d0'),\n    WINDOW_MINIMIZE(\"lar-window-minimize\", '\\uf2d1'),\n    WINDOW_RESTORE(\"lar-window-restore\", '\\uf2d2');\n\n    public static LineAwesomeRegular findByDescription(String description) {\n        for (LineAwesomeRegular font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    LineAwesomeRegular(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/java/org/kordamp/ikonli/lineawesome/LineAwesomeRegularIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.lineawesome;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class LineAwesomeRegularIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/lineawesome/1.3.0/fonts/la-regular-400.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"lar-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return LineAwesomeRegular.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"la-regular-400\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/java/org/kordamp/ikonli/lineawesome/LineAwesomeRegularIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.lineawesome;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class LineAwesomeRegularIkonProvider implements IkonProvider<LineAwesomeRegular> {\n    @Override\n    public Class<LineAwesomeRegular> getIkon() {\n        return LineAwesomeRegular.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/java/org/kordamp/ikonli/lineawesome/LineAwesomeSolid.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.lineawesome;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum LineAwesomeSolid implements Ikon {\n    AD(\"las-ad\", '\\uf641'),\n    ADDRESS_BOOK(\"las-address-book\", '\\uf2b9'),\n    ADDRESS_CARD(\"las-address-card\", '\\uf2bb'),\n    ADJUST(\"las-adjust\", '\\uf042'),\n    AIR_FRESHENER(\"las-air-freshener\", '\\uf5d0'),\n    ALIGN_CENTER(\"las-align-center\", '\\uf037'),\n    ALIGN_JUSTIFY(\"las-align-justify\", '\\uf039'),\n    ALIGN_LEFT(\"las-align-left\", '\\uf036'),\n    ALIGN_RIGHT(\"las-align-right\", '\\uf038'),\n    ALLERGIES(\"las-allergies\", '\\uf461'),\n    AMBULANCE(\"las-ambulance\", '\\uf0f9'),\n    AMERICAN_SIGN_LANGUAGE_INTERPRETING(\"las-american-sign-language-interpreting\", '\\uf2a3'),\n    ANCHOR(\"las-anchor\", '\\uf13d'),\n    ANGLE_DOUBLE_DOWN(\"las-angle-double-down\", '\\uf103'),\n    ANGLE_DOUBLE_LEFT(\"las-angle-double-left\", '\\uf100'),\n    ANGLE_DOUBLE_RIGHT(\"las-angle-double-right\", '\\uf101'),\n    ANGLE_DOUBLE_UP(\"las-angle-double-up\", '\\uf102'),\n    ANGLE_DOWN(\"las-angle-down\", '\\uf107'),\n    ANGLE_LEFT(\"las-angle-left\", '\\uf104'),\n    ANGLE_RIGHT(\"las-angle-right\", '\\uf105'),\n    ANGLE_UP(\"las-angle-up\", '\\uf106'),\n    ANGRY(\"las-angry\", '\\uf556'),\n    ANKH(\"las-ankh\", '\\uf644'),\n    APPLE_ALT(\"las-apple-alt\", '\\uf5d1'),\n    ARCHIVE(\"las-archive\", '\\uf187'),\n    ARCHWAY(\"las-archway\", '\\uf557'),\n    ARROWS_ALT(\"las-arrows-alt\", '\\uf0b2'),\n    ARROWS_ALT_H(\"las-arrows-alt-h\", '\\uf337'),\n    ARROWS_ALT_V(\"las-arrows-alt-v\", '\\uf338'),\n    ARROW_ALT_CIRCLE_DOWN(\"las-arrow-alt-circle-down\", '\\uf358'),\n    ARROW_ALT_CIRCLE_LEFT(\"las-arrow-alt-circle-left\", '\\uf359'),\n    ARROW_ALT_CIRCLE_RIGHT(\"las-arrow-alt-circle-right\", '\\uf35a'),\n    ARROW_ALT_CIRCLE_UP(\"las-arrow-alt-circle-up\", '\\uf35b'),\n    ARROW_CIRCLE_DOWN(\"las-arrow-circle-down\", '\\uf0ab'),\n    ARROW_CIRCLE_LEFT(\"las-arrow-circle-left\", '\\uf0a8'),\n    ARROW_CIRCLE_RIGHT(\"las-arrow-circle-right\", '\\uf0a9'),\n    ARROW_CIRCLE_UP(\"las-arrow-circle-up\", '\\uf0aa'),\n    ARROW_DOWN(\"las-arrow-down\", '\\uf063'),\n    ARROW_LEFT(\"las-arrow-left\", '\\uf060'),\n    ARROW_RIGHT(\"las-arrow-right\", '\\uf061'),\n    ARROW_UP(\"las-arrow-up\", '\\uf062'),\n    ASSISTIVE_LISTENING_SYSTEMS(\"las-assistive-listening-systems\", '\\uf2a2'),\n    ASTERISK(\"las-asterisk\", '\\uf069'),\n    AT(\"las-at\", '\\uf1fa'),\n    ATLAS(\"las-atlas\", '\\uf558'),\n    ATOM(\"las-atom\", '\\uf5d2'),\n    AUDIO_DESCRIPTION(\"las-audio-description\", '\\uf29e'),\n    AWARD(\"las-award\", '\\uf559'),\n    BABY(\"las-baby\", '\\uf77c'),\n    BABY_CARRIAGE(\"las-baby-carriage\", '\\uf77d'),\n    BACKSPACE(\"las-backspace\", '\\uf55a'),\n    BACKWARD(\"las-backward\", '\\uf04a'),\n    BACON(\"las-bacon\", '\\uf7e5'),\n    // BACTERIA(\"las-bacteria\", '\\ue059'),\n    // BACTERIUM(\"las-bacterium\", '\\ue05a'),\n    BAHAI(\"las-bahai\", '\\uf666'),\n    BALANCE_SCALE(\"las-balance-scale\", '\\uf24e'),\n    BALANCE_SCALE_LEFT(\"las-balance-scale-left\", '\\uf515'),\n    BALANCE_SCALE_RIGHT(\"las-balance-scale-right\", '\\uf516'),\n    BAN(\"las-ban\", '\\uf05e'),\n    BAND_AID(\"las-band-aid\", '\\uf462'),\n    BARCODE(\"las-barcode\", '\\uf02a'),\n    BARS(\"las-bars\", '\\uf0c9'),\n    BASEBALL_BALL(\"las-baseball-ball\", '\\uf433'),\n    BASKETBALL_BALL(\"las-basketball-ball\", '\\uf434'),\n    BATH(\"las-bath\", '\\uf2cd'),\n    BATTERY_EMPTY(\"las-battery-empty\", '\\uf244'),\n    BATTERY_FULL(\"las-battery-full\", '\\uf240'),\n    BATTERY_HALF(\"las-battery-half\", '\\uf242'),\n    BATTERY_QUARTER(\"las-battery-quarter\", '\\uf243'),\n    BATTERY_THREE_QUARTERS(\"las-battery-three-quarters\", '\\uf241'),\n    BED(\"las-bed\", '\\uf236'),\n    BEER(\"las-beer\", '\\uf0fc'),\n    BELL(\"las-bell\", '\\uf0f3'),\n    BELL_SLASH(\"las-bell-slash\", '\\uf1f6'),\n    BEZIER_CURVE(\"las-bezier-curve\", '\\uf55b'),\n    BIBLE(\"las-bible\", '\\uf647'),\n    BICYCLE(\"las-bicycle\", '\\uf206'),\n    BIKING(\"las-biking\", '\\uf84a'),\n    BINOCULARS(\"las-binoculars\", '\\uf1e5'),\n    BIOHAZARD(\"las-biohazard\", '\\uf780'),\n    BIRTHDAY_CAKE(\"las-birthday-cake\", '\\uf1fd'),\n    BLENDER(\"las-blender\", '\\uf517'),\n    BLENDER_PHONE(\"las-blender-phone\", '\\uf6b6'),\n    BLIND(\"las-blind\", '\\uf29d'),\n    BLOG(\"las-blog\", '\\uf781'),\n    BOLD(\"las-bold\", '\\uf032'),\n    BOLT(\"las-bolt\", '\\uf0e7'),\n    BOMB(\"las-bomb\", '\\uf1e2'),\n    BONE(\"las-bone\", '\\uf5d7'),\n    BONG(\"las-bong\", '\\uf55c'),\n    BOOK(\"las-book\", '\\uf02d'),\n    BOOKMARK(\"las-bookmark\", '\\uf02e'),\n    BOOK_DEAD(\"las-book-dead\", '\\uf6b7'),\n    BOOK_MEDICAL(\"las-book-medical\", '\\uf7e6'),\n    BOOK_OPEN(\"las-book-open\", '\\uf518'),\n    BOOK_READER(\"las-book-reader\", '\\uf5da'),\n    BORDER_ALL(\"las-border-all\", '\\uf84c'),\n    BORDER_NONE(\"las-border-none\", '\\uf850'),\n    BORDER_STYLE(\"las-border-style\", '\\uf853'),\n    BOWLING_BALL(\"las-bowling-ball\", '\\uf436'),\n    BOX(\"las-box\", '\\uf466'),\n    BOXES(\"las-boxes\", '\\uf468'),\n    BOX_OPEN(\"las-box-open\", '\\uf49e'),\n    // BOX_TISSUE(\"las-box-tissue\", '\\ue05b'),\n    BRAILLE(\"las-braille\", '\\uf2a1'),\n    BRAIN(\"las-brain\", '\\uf5dc'),\n    BREAD_SLICE(\"las-bread-slice\", '\\uf7ec'),\n    BRIEFCASE(\"las-briefcase\", '\\uf0b1'),\n    BRIEFCASE_MEDICAL(\"las-briefcase-medical\", '\\uf469'),\n    BROADCAST_TOWER(\"las-broadcast-tower\", '\\uf519'),\n    BROOM(\"las-broom\", '\\uf51a'),\n    BRUSH(\"las-brush\", '\\uf55d'),\n    BUG(\"las-bug\", '\\uf188'),\n    BUILDING(\"las-building\", '\\uf1ad'),\n    BULLHORN(\"las-bullhorn\", '\\uf0a1'),\n    BULLSEYE(\"las-bullseye\", '\\uf140'),\n    BURN(\"las-burn\", '\\uf46a'),\n    BUS(\"las-bus\", '\\uf207'),\n    BUSINESS_TIME(\"las-business-time\", '\\uf64a'),\n    BUS_ALT(\"las-bus-alt\", '\\uf55e'),\n    CALCULATOR(\"las-calculator\", '\\uf1ec'),\n    CALENDAR(\"las-calendar\", '\\uf133'),\n    CALENDAR_ALT(\"las-calendar-alt\", '\\uf073'),\n    CALENDAR_CHECK(\"las-calendar-check\", '\\uf274'),\n    CALENDAR_DAY(\"las-calendar-day\", '\\uf783'),\n    CALENDAR_MINUS(\"las-calendar-minus\", '\\uf272'),\n    CALENDAR_PLUS(\"las-calendar-plus\", '\\uf271'),\n    CALENDAR_TIMES(\"las-calendar-times\", '\\uf273'),\n    CALENDAR_WEEK(\"las-calendar-week\", '\\uf784'),\n    CAMERA(\"las-camera\", '\\uf030'),\n    CAMERA_RETRO(\"las-camera-retro\", '\\uf083'),\n    CAMPGROUND(\"las-campground\", '\\uf6bb'),\n    CANDY_CANE(\"las-candy-cane\", '\\uf786'),\n    CANNABIS(\"las-cannabis\", '\\uf55f'),\n    CAPSULES(\"las-capsules\", '\\uf46b'),\n    CAR(\"las-car\", '\\uf1b9'),\n    CARAVAN(\"las-caravan\", '\\uf8ff'),\n    CARET_DOWN(\"las-caret-down\", '\\uf0d7'),\n    CARET_LEFT(\"las-caret-left\", '\\uf0d9'),\n    CARET_RIGHT(\"las-caret-right\", '\\uf0da'),\n    CARET_SQUARE_DOWN(\"las-caret-square-down\", '\\uf150'),\n    CARET_SQUARE_LEFT(\"las-caret-square-left\", '\\uf191'),\n    CARET_SQUARE_RIGHT(\"las-caret-square-right\", '\\uf152'),\n    CARET_SQUARE_UP(\"las-caret-square-up\", '\\uf151'),\n    CARET_UP(\"las-caret-up\", '\\uf0d8'),\n    CARROT(\"las-carrot\", '\\uf787'),\n    CART_ARROW_DOWN(\"las-cart-arrow-down\", '\\uf218'),\n    CART_PLUS(\"las-cart-plus\", '\\uf217'),\n    CAR_ALT(\"las-car-alt\", '\\uf5de'),\n    CAR_BATTERY(\"las-car-battery\", '\\uf5df'),\n    CAR_CRASH(\"las-car-crash\", '\\uf5e1'),\n    CAR_SIDE(\"las-car-side\", '\\uf5e4'),\n    CASH_REGISTER(\"las-cash-register\", '\\uf788'),\n    CAT(\"las-cat\", '\\uf6be'),\n    CERTIFICATE(\"las-certificate\", '\\uf0a3'),\n    CHAIR(\"las-chair\", '\\uf6c0'),\n    CHALKBOARD(\"las-chalkboard\", '\\uf51b'),\n    CHALKBOARD_TEACHER(\"las-chalkboard-teacher\", '\\uf51c'),\n    CHARGING_STATION(\"las-charging-station\", '\\uf5e7'),\n    CHART_AREA(\"las-chart-area\", '\\uf1fe'),\n    CHART_BAR(\"las-chart-bar\", '\\uf080'),\n    CHART_LINE(\"las-chart-line\", '\\uf201'),\n    CHART_PIE(\"las-chart-pie\", '\\uf200'),\n    CHECK(\"las-check\", '\\uf00c'),\n    CHECK_CIRCLE(\"las-check-circle\", '\\uf058'),\n    CHECK_DOUBLE(\"las-check-double\", '\\uf560'),\n    CHECK_SQUARE(\"las-check-square\", '\\uf14a'),\n    CHEESE(\"las-cheese\", '\\uf7ef'),\n    CHESS(\"las-chess\", '\\uf439'),\n    CHESS_BISHOP(\"las-chess-bishop\", '\\uf43a'),\n    CHESS_BOARD(\"las-chess-board\", '\\uf43c'),\n    CHESS_KING(\"las-chess-king\", '\\uf43f'),\n    CHESS_KNIGHT(\"las-chess-knight\", '\\uf441'),\n    CHESS_PAWN(\"las-chess-pawn\", '\\uf443'),\n    CHESS_QUEEN(\"las-chess-queen\", '\\uf445'),\n    CHESS_ROOK(\"las-chess-rook\", '\\uf447'),\n    CHEVRON_CIRCLE_DOWN(\"las-chevron-circle-down\", '\\uf13a'),\n    CHEVRON_CIRCLE_LEFT(\"las-chevron-circle-left\", '\\uf137'),\n    CHEVRON_CIRCLE_RIGHT(\"las-chevron-circle-right\", '\\uf138'),\n    CHEVRON_CIRCLE_UP(\"las-chevron-circle-up\", '\\uf139'),\n    CHEVRON_DOWN(\"las-chevron-down\", '\\uf078'),\n    CHEVRON_LEFT(\"las-chevron-left\", '\\uf053'),\n    CHEVRON_RIGHT(\"las-chevron-right\", '\\uf054'),\n    CHEVRON_UP(\"las-chevron-up\", '\\uf077'),\n    CHILD(\"las-child\", '\\uf1ae'),\n    CHURCH(\"las-church\", '\\uf51d'),\n    CIRCLE(\"las-circle\", '\\uf111'),\n    CIRCLE_NOTCH(\"las-circle-notch\", '\\uf1ce'),\n    CITY(\"las-city\", '\\uf64f'),\n    CLINIC_MEDICAL(\"las-clinic-medical\", '\\uf7f2'),\n    CLIPBOARD(\"las-clipboard\", '\\uf328'),\n    CLIPBOARD_CHECK(\"las-clipboard-check\", '\\uf46c'),\n    CLIPBOARD_LIST(\"las-clipboard-list\", '\\uf46d'),\n    CLOCK(\"las-clock\", '\\uf017'),\n    CLONE(\"las-clone\", '\\uf24d'),\n    CLOSED_CAPTIONING(\"las-closed-captioning\", '\\uf20a'),\n    CLOUD(\"las-cloud\", '\\uf0c2'),\n    CLOUD_DOWNLOAD_ALT(\"las-cloud-download-alt\", '\\uf381'),\n    CLOUD_MEATBALL(\"las-cloud-meatball\", '\\uf73b'),\n    CLOUD_MOON(\"las-cloud-moon\", '\\uf6c3'),\n    CLOUD_MOON_RAIN(\"las-cloud-moon-rain\", '\\uf73c'),\n    CLOUD_RAIN(\"las-cloud-rain\", '\\uf73d'),\n    CLOUD_SHOWERS_HEAVY(\"las-cloud-showers-heavy\", '\\uf740'),\n    CLOUD_SUN(\"las-cloud-sun\", '\\uf6c4'),\n    CLOUD_SUN_RAIN(\"las-cloud-sun-rain\", '\\uf743'),\n    CLOUD_UPLOAD_ALT(\"las-cloud-upload-alt\", '\\uf382'),\n    COCKTAIL(\"las-cocktail\", '\\uf561'),\n    CODE(\"las-code\", '\\uf121'),\n    CODE_BRANCH(\"las-code-branch\", '\\uf126'),\n    COFFEE(\"las-coffee\", '\\uf0f4'),\n    COG(\"las-cog\", '\\uf013'),\n    COGS(\"las-cogs\", '\\uf085'),\n    COINS(\"las-coins\", '\\uf51e'),\n    COLUMNS(\"las-columns\", '\\uf0db'),\n    COMMENT(\"las-comment\", '\\uf075'),\n    COMMENTS(\"las-comments\", '\\uf086'),\n    COMMENTS_DOLLAR(\"las-comments-dollar\", '\\uf653'),\n    COMMENT_ALT(\"las-comment-alt\", '\\uf27a'),\n    COMMENT_DOLLAR(\"las-comment-dollar\", '\\uf651'),\n    COMMENT_DOTS(\"las-comment-dots\", '\\uf4ad'),\n    COMMENT_MEDICAL(\"las-comment-medical\", '\\uf7f5'),\n    COMMENT_SLASH(\"las-comment-slash\", '\\uf4b3'),\n    COMPACT_DISC(\"las-compact-disc\", '\\uf51f'),\n    COMPASS(\"las-compass\", '\\uf14e'),\n    COMPRESS(\"las-compress\", '\\uf066'),\n    // COMPRESS_ALT(\"las-compress-alt\", '\\uf422'),\n    COMPRESS_ARROWS_ALT(\"las-compress-arrows-alt\", '\\uf78c'),\n    CONCIERGE_BELL(\"las-concierge-bell\", '\\uf562'),\n    COOKIE(\"las-cookie\", '\\uf563'),\n    COOKIE_BITE(\"las-cookie-bite\", '\\uf564'),\n    COPY(\"las-copy\", '\\uf0c5'),\n    COPYRIGHT(\"las-copyright\", '\\uf1f9'),\n    COUCH(\"las-couch\", '\\uf4b8'),\n    CREDIT_CARD(\"las-credit-card\", '\\uf09d'),\n    CROP(\"las-crop\", '\\uf125'),\n    CROP_ALT(\"las-crop-alt\", '\\uf565'),\n    CROSS(\"las-cross\", '\\uf654'),\n    CROSSHAIRS(\"las-crosshairs\", '\\uf05b'),\n    CROW(\"las-crow\", '\\uf520'),\n    CROWN(\"las-crown\", '\\uf521'),\n    CRUTCH(\"las-crutch\", '\\uf7f7'),\n    CUBE(\"las-cube\", '\\uf1b2'),\n    CUBES(\"las-cubes\", '\\uf1b3'),\n    CUT(\"las-cut\", '\\uf0c4'),\n    DATABASE(\"las-database\", '\\uf1c0'),\n    DEAF(\"las-deaf\", '\\uf2a4'),\n    DEMOCRAT(\"las-democrat\", '\\uf747'),\n    DESKTOP(\"las-desktop\", '\\uf108'),\n    DHARMACHAKRA(\"las-dharmachakra\", '\\uf655'),\n    DIAGNOSES(\"las-diagnoses\", '\\uf470'),\n    DICE(\"las-dice\", '\\uf522'),\n    DICE_D20(\"las-dice-d20\", '\\uf6cf'),\n    DICE_D6(\"las-dice-d6\", '\\uf6d1'),\n    DICE_FIVE(\"las-dice-five\", '\\uf523'),\n    DICE_FOUR(\"las-dice-four\", '\\uf524'),\n    DICE_ONE(\"las-dice-one\", '\\uf525'),\n    DICE_SIX(\"las-dice-six\", '\\uf526'),\n    DICE_THREE(\"las-dice-three\", '\\uf527'),\n    DICE_TWO(\"las-dice-two\", '\\uf528'),\n    DIGITAL_TACHOGRAPH(\"las-digital-tachograph\", '\\uf566'),\n    DIRECTIONS(\"las-directions\", '\\uf5eb'),\n    // DISEASE(\"las-disease\", '\\uf7fa'),\n    DIVIDE(\"las-divide\", '\\uf529'),\n    DIZZY(\"las-dizzy\", '\\uf567'),\n    DNA(\"las-dna\", '\\uf471'),\n    DOG(\"las-dog\", '\\uf6d3'),\n    DOLLAR_SIGN(\"las-dollar-sign\", '\\uf155'),\n    DOLLY(\"las-dolly\", '\\uf472'),\n    DOLLY_FLATBED(\"las-dolly-flatbed\", '\\uf474'),\n    DONATE(\"las-donate\", '\\uf4b9'),\n    DOOR_CLOSED(\"las-door-closed\", '\\uf52a'),\n    DOOR_OPEN(\"las-door-open\", '\\uf52b'),\n    DOT_CIRCLE(\"las-dot-circle\", '\\uf192'),\n    DOVE(\"las-dove\", '\\uf4ba'),\n    DOWNLOAD(\"las-download\", '\\uf019'),\n    DRAFTING_COMPASS(\"las-drafting-compass\", '\\uf568'),\n    DRAGON(\"las-dragon\", '\\uf6d5'),\n    DRAW_POLYGON(\"las-draw-polygon\", '\\uf5ee'),\n    DRUM(\"las-drum\", '\\uf569'),\n    DRUMSTICK_BITE(\"las-drumstick-bite\", '\\uf6d7'),\n    DRUM_STEELPAN(\"las-drum-steelpan\", '\\uf56a'),\n    DUMBBELL(\"las-dumbbell\", '\\uf44b'),\n    DUMPSTER(\"las-dumpster\", '\\uf793'),\n    DUMPSTER_FIRE(\"las-dumpster-fire\", '\\uf794'),\n    DUNGEON(\"las-dungeon\", '\\uf6d9'),\n    EDIT(\"las-edit\", '\\uf044'),\n    EGG(\"las-egg\", '\\uf7fb'),\n    EJECT(\"las-eject\", '\\uf052'),\n    ELLIPSIS_H(\"las-ellipsis-h\", '\\uf141'),\n    ELLIPSIS_V(\"las-ellipsis-v\", '\\uf142'),\n    ENVELOPE(\"las-envelope\", '\\uf0e0'),\n    ENVELOPE_OPEN(\"las-envelope-open\", '\\uf2b6'),\n    ENVELOPE_OPEN_TEXT(\"las-envelope-open-text\", '\\uf658'),\n    ENVELOPE_SQUARE(\"las-envelope-square\", '\\uf199'),\n    EQUALS(\"las-equals\", '\\uf52c'),\n    ERASER(\"las-eraser\", '\\uf12d'),\n    ETHERNET(\"las-ethernet\", '\\uf796'),\n    EURO_SIGN(\"las-euro-sign\", '\\uf153'),\n    EXCHANGE_ALT(\"las-exchange-alt\", '\\uf362'),\n    EXCLAMATION(\"las-exclamation\", '\\uf12a'),\n    EXCLAMATION_CIRCLE(\"las-exclamation-circle\", '\\uf06a'),\n    EXCLAMATION_TRIANGLE(\"las-exclamation-triangle\", '\\uf071'),\n    EXPAND(\"las-expand\", '\\uf065'),\n    // EXPAND_ALT(\"las-expand-alt\", '\\uf424'),\n    EXPAND_ARROWS_ALT(\"las-expand-arrows-alt\", '\\uf31e'),\n    EXTERNAL_LINK_ALT(\"las-external-link-alt\", '\\uf35d'),\n    EXTERNAL_LINK_SQUARE_ALT(\"las-external-link-square-alt\", '\\uf360'),\n    EYE(\"las-eye\", '\\uf06e'),\n    EYE_DROPPER(\"las-eye-dropper\", '\\uf1fb'),\n    EYE_SLASH(\"las-eye-slash\", '\\uf070'),\n    FAN(\"las-fan\", '\\uf863'),\n    FAST_BACKWARD(\"las-fast-backward\", '\\uf049'),\n    FAST_FORWARD(\"las-fast-forward\", '\\uf050'),\n    // FAUCET(\"las-faucet\", '\\ue005'),\n    FAX(\"las-fax\", '\\uf1ac'),\n    FEATHER(\"las-feather\", '\\uf52d'),\n    FEATHER_ALT(\"las-feather-alt\", '\\uf56b'),\n    FEMALE(\"las-female\", '\\uf182'),\n    FIGHTER_JET(\"las-fighter-jet\", '\\uf0fb'),\n    FILE(\"las-file\", '\\uf15b'),\n    FILE_ALT(\"las-file-alt\", '\\uf15c'),\n    FILE_ARCHIVE(\"las-file-archive\", '\\uf1c6'),\n    FILE_AUDIO(\"las-file-audio\", '\\uf1c7'),\n    FILE_CODE(\"las-file-code\", '\\uf1c9'),\n    FILE_CONTRACT(\"las-file-contract\", '\\uf56c'),\n    FILE_CSV(\"las-file-csv\", '\\uf6dd'),\n    FILE_DOWNLOAD(\"las-file-download\", '\\uf56d'),\n    FILE_EXCEL(\"las-file-excel\", '\\uf1c3'),\n    FILE_EXPORT(\"las-file-export\", '\\uf56e'),\n    FILE_IMAGE(\"las-file-image\", '\\uf1c5'),\n    FILE_IMPORT(\"las-file-import\", '\\uf56f'),\n    FILE_INVOICE(\"las-file-invoice\", '\\uf570'),\n    FILE_INVOICE_DOLLAR(\"las-file-invoice-dollar\", '\\uf571'),\n    FILE_MEDICAL(\"las-file-medical\", '\\uf477'),\n    FILE_MEDICAL_ALT(\"las-file-medical-alt\", '\\uf478'),\n    FILE_PDF(\"las-file-pdf\", '\\uf1c1'),\n    FILE_POWERPOINT(\"las-file-powerpoint\", '\\uf1c4'),\n    FILE_PRESCRIPTION(\"las-file-prescription\", '\\uf572'),\n    FILE_SIGNATURE(\"las-file-signature\", '\\uf573'),\n    FILE_UPLOAD(\"las-file-upload\", '\\uf574'),\n    FILE_VIDEO(\"las-file-video\", '\\uf1c8'),\n    FILE_WORD(\"las-file-word\", '\\uf1c2'),\n    FILL(\"las-fill\", '\\uf575'),\n    FILL_DRIP(\"las-fill-drip\", '\\uf576'),\n    FILM(\"las-film\", '\\uf008'),\n    FILTER(\"las-filter\", '\\uf0b0'),\n    FINGERPRINT(\"las-fingerprint\", '\\uf577'),\n    FIRE(\"las-fire\", '\\uf06d'),\n    FIRE_ALT(\"las-fire-alt\", '\\uf7e4'),\n    FIRE_EXTINGUISHER(\"las-fire-extinguisher\", '\\uf134'),\n    FIRST_AID(\"las-first-aid\", '\\uf479'),\n    FISH(\"las-fish\", '\\uf578'),\n    FIST_RAISED(\"las-fist-raised\", '\\uf6de'),\n    FLAG(\"las-flag\", '\\uf024'),\n    FLAG_CHECKERED(\"las-flag-checkered\", '\\uf11e'),\n    FLAG_USA(\"las-flag-usa\", '\\uf74d'),\n    FLASK(\"las-flask\", '\\uf0c3'),\n    FLUSHED(\"las-flushed\", '\\uf579'),\n    FOLDER(\"las-folder\", '\\uf07b'),\n    FOLDER_MINUS(\"las-folder-minus\", '\\uf65d'),\n    FOLDER_OPEN(\"las-folder-open\", '\\uf07c'),\n    FOLDER_PLUS(\"las-folder-plus\", '\\uf65e'),\n    FONT(\"las-font\", '\\uf031'),\n    FOOTBALL_BALL(\"las-football-ball\", '\\uf44e'),\n    FORWARD(\"las-forward\", '\\uf04e'),\n    FROG(\"las-frog\", '\\uf52e'),\n    FROWN(\"las-frown\", '\\uf119'),\n    FROWN_OPEN(\"las-frown-open\", '\\uf57a'),\n    FUNNEL_DOLLAR(\"las-funnel-dollar\", '\\uf662'),\n    FUTBOL(\"las-futbol\", '\\uf1e3'),\n    GAMEPAD(\"las-gamepad\", '\\uf11b'),\n    GAS_PUMP(\"las-gas-pump\", '\\uf52f'),\n    GAVEL(\"las-gavel\", '\\uf0e3'),\n    GEM(\"las-gem\", '\\uf3a5'),\n    GENDERLESS(\"las-genderless\", '\\uf22d'),\n    GHOST(\"las-ghost\", '\\uf6e2'),\n    GIFT(\"las-gift\", '\\uf06b'),\n    GIFTS(\"las-gifts\", '\\uf79c'),\n    GLASSES(\"las-glasses\", '\\uf530'),\n    GLASS_CHEERS(\"las-glass-cheers\", '\\uf79f'),\n    GLASS_MARTINI(\"las-glass-martini\", '\\uf000'),\n    GLASS_MARTINI_ALT(\"las-glass-martini-alt\", '\\uf57b'),\n    GLASS_WHISKEY(\"las-glass-whiskey\", '\\uf7a0'),\n    GLOBE(\"las-globe\", '\\uf0ac'),\n    GLOBE_AFRICA(\"las-globe-africa\", '\\uf57c'),\n    GLOBE_AMERICAS(\"las-globe-americas\", '\\uf57d'),\n    GLOBE_ASIA(\"las-globe-asia\", '\\uf57e'),\n    GLOBE_EUROPE(\"las-globe-europe\", '\\uf7a2'),\n    GOLF_BALL(\"las-golf-ball\", '\\uf450'),\n    GOPURAM(\"las-gopuram\", '\\uf664'),\n    GRADUATION_CAP(\"las-graduation-cap\", '\\uf19d'),\n    GREATER_THAN(\"las-greater-than\", '\\uf531'),\n    GREATER_THAN_EQUAL(\"las-greater-than-equal\", '\\uf532'),\n    GRIMACE(\"las-grimace\", '\\uf57f'),\n    GRIN(\"las-grin\", '\\uf580'),\n    GRIN_ALT(\"las-grin-alt\", '\\uf581'),\n    GRIN_BEAM(\"las-grin-beam\", '\\uf582'),\n    GRIN_BEAM_SWEAT(\"las-grin-beam-sweat\", '\\uf583'),\n    GRIN_HEARTS(\"las-grin-hearts\", '\\uf584'),\n    GRIN_SQUINT(\"las-grin-squint\", '\\uf585'),\n    GRIN_SQUINT_TEARS(\"las-grin-squint-tears\", '\\uf586'),\n    GRIN_STARS(\"las-grin-stars\", '\\uf587'),\n    GRIN_TEARS(\"las-grin-tears\", '\\uf588'),\n    GRIN_TONGUE(\"las-grin-tongue\", '\\uf589'),\n    GRIN_TONGUE_SQUINT(\"las-grin-tongue-squint\", '\\uf58a'),\n    GRIN_TONGUE_WINK(\"las-grin-tongue-wink\", '\\uf58b'),\n    GRIN_WINK(\"las-grin-wink\", '\\uf58c'),\n    GRIP_HORIZONTAL(\"las-grip-horizontal\", '\\uf58d'),\n    GRIP_LINES(\"las-grip-lines\", '\\uf7a4'),\n    GRIP_LINES_VERTICAL(\"las-grip-lines-vertical\", '\\uf7a5'),\n    GRIP_VERTICAL(\"las-grip-vertical\", '\\uf58e'),\n    GUITAR(\"las-guitar\", '\\uf7a6'),\n    HAMBURGER(\"las-hamburger\", '\\uf805'),\n    HAMMER(\"las-hammer\", '\\uf6e3'),\n    HAMSA(\"las-hamsa\", '\\uf665'),\n    HANDS(\"las-hands\", '\\uf4c2'),\n    HANDSHAKE(\"las-handshake\", '\\uf2b5'),\n    // HANDSHAKE_ALT_SLASH(\"las-handshake-alt-slash\", '\\ue05f'),\n    // HANDSHAKE_SLASH(\"las-handshake-slash\", '\\ue060'),\n    HANDS_HELPING(\"las-hands-helping\", '\\uf4c4'),\n    // HANDS_WASH(\"las-hands-wash\", '\\ue05e'),\n    HAND_HOLDING(\"las-hand-holding\", '\\uf4bd'),\n    HAND_HOLDING_HEART(\"las-hand-holding-heart\", '\\uf4be'),\n    // HAND_HOLDING_MEDICAL(\"las-hand-holding-medical\", '\\ue05c'),\n    HAND_HOLDING_USD(\"las-hand-holding-usd\", '\\uf4c0'),\n    // HAND_HOLDING_WATER(\"las-hand-holding-water\", '\\uf4c1'),\n    HAND_LIZARD(\"las-hand-lizard\", '\\uf258'),\n    HAND_MIDDLE_FINGER(\"las-hand-middle-finger\", '\\uf806'),\n    HAND_PAPER(\"las-hand-paper\", '\\uf256'),\n    HAND_PEACE(\"las-hand-peace\", '\\uf25b'),\n    HAND_POINTER(\"las-hand-pointer\", '\\uf25a'),\n    HAND_POINT_DOWN(\"las-hand-point-down\", '\\uf0a7'),\n    HAND_POINT_LEFT(\"las-hand-point-left\", '\\uf0a5'),\n    HAND_POINT_RIGHT(\"las-hand-point-right\", '\\uf0a4'),\n    HAND_POINT_UP(\"las-hand-point-up\", '\\uf0a6'),\n    HAND_ROCK(\"las-hand-rock\", '\\uf255'),\n    HAND_SCISSORS(\"las-hand-scissors\", '\\uf257'),\n    // HAND_SPARKLES(\"las-hand-sparkles\", '\\ue05d'),\n    HAND_SPOCK(\"las-hand-spock\", '\\uf259'),\n    HANUKIAH(\"las-hanukiah\", '\\uf6e6'),\n    HARD_HAT(\"las-hard-hat\", '\\uf807'),\n    HASHTAG(\"las-hashtag\", '\\uf292'),\n    HAT_COWBOY(\"las-hat-cowboy\", '\\uf8c0'),\n    HAT_COWBOY_SIDE(\"las-hat-cowboy-side\", '\\uf8c1'),\n    HAT_WIZARD(\"las-hat-wizard\", '\\uf6e8'),\n    HDD(\"las-hdd\", '\\uf0a0'),\n    HEADING(\"las-heading\", '\\uf1dc'),\n    HEADPHONES(\"las-headphones\", '\\uf025'),\n    HEADPHONES_ALT(\"las-headphones-alt\", '\\uf58f'),\n    HEADSET(\"las-headset\", '\\uf590'),\n    // HEAD_SIDE_COUGH(\"las-head-side-cough\", '\\ue061'),\n    // HEAD_SIDE_COUGH_SLASH(\"las-head-side-cough-slash\", '\\ue062'),\n    // HEAD_SIDE_MASK(\"las-head-side-mask\", '\\ue063'),\n    // HEAD_SIDE_VIRUS(\"las-head-side-virus\", '\\ue064'),\n    HEART(\"las-heart\", '\\uf004'),\n    HEARTBEAT(\"las-heartbeat\", '\\uf21e'),\n    HEART_BROKEN(\"las-heart-broken\", '\\uf7a9'),\n    HELICOPTER(\"las-helicopter\", '\\uf533'),\n    HIGHLIGHTER(\"las-highlighter\", '\\uf591'),\n    HIKING(\"las-hiking\", '\\uf6ec'),\n    HIPPO(\"las-hippo\", '\\uf6ed'),\n    HISTORY(\"las-history\", '\\uf1da'),\n    HOCKEY_PUCK(\"las-hockey-puck\", '\\uf453'),\n    HOLLY_BERRY(\"las-holly-berry\", '\\uf7aa'),\n    HOME(\"las-home\", '\\uf015'),\n    HORSE(\"las-horse\", '\\uf6f0'),\n    HORSE_HEAD(\"las-horse-head\", '\\uf7ab'),\n    HOSPITAL(\"las-hospital\", '\\uf0f8'),\n    HOSPITAL_ALT(\"las-hospital-alt\", '\\uf47d'),\n    HOSPITAL_SYMBOL(\"las-hospital-symbol\", '\\uf47e'),\n    // HOSPITAL_USER(\"las-hospital-user\", '\\uf80d'),\n    HOTDOG(\"las-hotdog\", '\\uf80f'),\n    HOTEL(\"las-hotel\", '\\uf594'),\n    HOT_TUB(\"las-hot-tub\", '\\uf593'),\n    HOURGLASS(\"las-hourglass\", '\\uf254'),\n    HOURGLASS_END(\"las-hourglass-end\", '\\uf253'),\n    HOURGLASS_HALF(\"las-hourglass-half\", '\\uf252'),\n    HOURGLASS_START(\"las-hourglass-start\", '\\uf251'),\n    HOUSE_DAMAGE(\"las-house-damage\", '\\uf6f1'),\n    // HOUSE_USER(\"las-house-user\", '\\ue065'),\n    HRYVNIA(\"las-hryvnia\", '\\uf6f2'),\n    H_SQUARE(\"las-h-square\", '\\uf0fd'),\n    ICE_CREAM(\"las-ice-cream\", '\\uf810'),\n    ICICLES(\"las-icicles\", '\\uf7ad'),\n    ICONS(\"las-icons\", '\\uf86d'),\n    ID_BADGE(\"las-id-badge\", '\\uf2c1'),\n    ID_CARD(\"las-id-card\", '\\uf2c2'),\n    ID_CARD_ALT(\"las-id-card-alt\", '\\uf47f'),\n    IGLOO(\"las-igloo\", '\\uf7ae'),\n    IMAGE(\"las-image\", '\\uf03e'),\n    IMAGES(\"las-images\", '\\uf302'),\n    INBOX(\"las-inbox\", '\\uf01c'),\n    INDENT(\"las-indent\", '\\uf03c'),\n    INDUSTRY(\"las-industry\", '\\uf275'),\n    INFINITY(\"las-infinity\", '\\uf534'),\n    INFO(\"las-info\", '\\uf129'),\n    INFO_CIRCLE(\"las-info-circle\", '\\uf05a'),\n    ITALIC(\"las-italic\", '\\uf033'),\n    I_CURSOR(\"las-i-cursor\", '\\uf246'),\n    JEDI(\"las-jedi\", '\\uf669'),\n    JOINT(\"las-joint\", '\\uf595'),\n    JOURNAL_WHILLS(\"las-journal-whills\", '\\uf66a'),\n    KAABA(\"las-kaaba\", '\\uf66b'),\n    KEY(\"las-key\", '\\uf084'),\n    KEYBOARD(\"las-keyboard\", '\\uf11c'),\n    KHANDA(\"las-khanda\", '\\uf66d'),\n    KISS(\"las-kiss\", '\\uf596'),\n    KISS_BEAM(\"las-kiss-beam\", '\\uf597'),\n    KISS_WINK_HEART(\"las-kiss-wink-heart\", '\\uf598'),\n    KIWI_BIRD(\"las-kiwi-bird\", '\\uf535'),\n    LANDMARK(\"las-landmark\", '\\uf66f'),\n    LANGUAGE(\"las-language\", '\\uf1ab'),\n    LAPTOP(\"las-laptop\", '\\uf109'),\n    LAPTOP_CODE(\"las-laptop-code\", '\\uf5fc'),\n    // LAPTOP_HOUSE(\"las-laptop-house\", '\\ue066'),\n    LAPTOP_MEDICAL(\"las-laptop-medical\", '\\uf812'),\n    LAUGH(\"las-laugh\", '\\uf599'),\n    LAUGH_BEAM(\"las-laugh-beam\", '\\uf59a'),\n    LAUGH_SQUINT(\"las-laugh-squint\", '\\uf59b'),\n    LAUGH_WINK(\"las-laugh-wink\", '\\uf59c'),\n    LAYER_GROUP(\"las-layer-group\", '\\uf5fd'),\n    LEAF(\"las-leaf\", '\\uf06c'),\n    LEMON(\"las-lemon\", '\\uf094'),\n    LESS_THAN(\"las-less-than\", '\\uf536'),\n    LESS_THAN_EQUAL(\"las-less-than-equal\", '\\uf537'),\n    LEVEL_DOWN_ALT(\"las-level-down-alt\", '\\uf3be'),\n    LEVEL_UP_ALT(\"las-level-up-alt\", '\\uf3bf'),\n    LIFE_RING(\"las-life-ring\", '\\uf1cd'),\n    LIGHTBULB(\"las-lightbulb\", '\\uf0eb'),\n    LINK(\"las-link\", '\\uf0c1'),\n    LIRA_SIGN(\"las-lira-sign\", '\\uf195'),\n    LIST(\"las-list\", '\\uf03a'),\n    LIST_ALT(\"las-list-alt\", '\\uf022'),\n    LIST_OL(\"las-list-ol\", '\\uf0cb'),\n    LIST_UL(\"las-list-ul\", '\\uf0ca'),\n    LOCATION_ARROW(\"las-location-arrow\", '\\uf124'),\n    LOCK(\"las-lock\", '\\uf023'),\n    LOCK_OPEN(\"las-lock-open\", '\\uf3c1'),\n    LONG_ARROW_ALT_DOWN(\"las-long-arrow-alt-down\", '\\uf309'),\n    LONG_ARROW_ALT_LEFT(\"las-long-arrow-alt-left\", '\\uf30a'),\n    LONG_ARROW_ALT_RIGHT(\"las-long-arrow-alt-right\", '\\uf30b'),\n    LONG_ARROW_ALT_UP(\"las-long-arrow-alt-up\", '\\uf30c'),\n    LOW_VISION(\"las-low-vision\", '\\uf2a8'),\n    LUGGAGE_CART(\"las-luggage-cart\", '\\uf59d'),\n    // LUNGS(\"las-lungs\", '\\uf604'),\n    // LUNGS_VIRUS(\"las-lungs-virus\", '\\ue067'),\n    MAGIC(\"las-magic\", '\\uf0d0'),\n    MAGNET(\"las-magnet\", '\\uf076'),\n    MAIL_BULK(\"las-mail-bulk\", '\\uf674'),\n    MALE(\"las-male\", '\\uf183'),\n    MAP(\"las-map\", '\\uf279'),\n    MAP_MARKED(\"las-map-marked\", '\\uf59f'),\n    MAP_MARKED_ALT(\"las-map-marked-alt\", '\\uf5a0'),\n    MAP_MARKER(\"las-map-marker\", '\\uf041'),\n    MAP_MARKER_ALT(\"las-map-marker-alt\", '\\uf3c5'),\n    MAP_PIN(\"las-map-pin\", '\\uf276'),\n    MAP_SIGNS(\"las-map-signs\", '\\uf277'),\n    MARKER(\"las-marker\", '\\uf5a1'),\n    MARS(\"las-mars\", '\\uf222'),\n    MARS_DOUBLE(\"las-mars-double\", '\\uf227'),\n    MARS_STROKE(\"las-mars-stroke\", '\\uf229'),\n    MARS_STROKE_H(\"las-mars-stroke-h\", '\\uf22b'),\n    MARS_STROKE_V(\"las-mars-stroke-v\", '\\uf22a'),\n    MASK(\"las-mask\", '\\uf6fa'),\n    MEDAL(\"las-medal\", '\\uf5a2'),\n    MEDKIT(\"las-medkit\", '\\uf0fa'),\n    MEH(\"las-meh\", '\\uf11a'),\n    MEH_BLANK(\"las-meh-blank\", '\\uf5a4'),\n    MEH_ROLLING_EYES(\"las-meh-rolling-eyes\", '\\uf5a5'),\n    MEMORY(\"las-memory\", '\\uf538'),\n    MENORAH(\"las-menorah\", '\\uf676'),\n    MERCURY(\"las-mercury\", '\\uf223'),\n    METEOR(\"las-meteor\", '\\uf753'),\n    MICROCHIP(\"las-microchip\", '\\uf2db'),\n    MICROPHONE(\"las-microphone\", '\\uf130'),\n    MICROPHONE_ALT(\"las-microphone-alt\", '\\uf3c9'),\n    MICROPHONE_ALT_SLASH(\"las-microphone-alt-slash\", '\\uf539'),\n    MICROPHONE_SLASH(\"las-microphone-slash\", '\\uf131'),\n    MICROSCOPE(\"las-microscope\", '\\uf610'),\n    MINUS(\"las-minus\", '\\uf068'),\n    MINUS_CIRCLE(\"las-minus-circle\", '\\uf056'),\n    MINUS_SQUARE(\"las-minus-square\", '\\uf146'),\n    MITTEN(\"las-mitten\", '\\uf7b5'),\n    MOBILE(\"las-mobile\", '\\uf10b'),\n    MOBILE_ALT(\"las-mobile-alt\", '\\uf3cd'),\n    MONEY_BILL(\"las-money-bill\", '\\uf0d6'),\n    MONEY_BILL_ALT(\"las-money-bill-alt\", '\\uf3d1'),\n    MONEY_BILL_WAVE(\"las-money-bill-wave\", '\\uf53a'),\n    MONEY_BILL_WAVE_ALT(\"las-money-bill-wave-alt\", '\\uf53b'),\n    MONEY_CHECK(\"las-money-check\", '\\uf53c'),\n    MONEY_CHECK_ALT(\"las-money-check-alt\", '\\uf53d'),\n    MONUMENT(\"las-monument\", '\\uf5a6'),\n    MOON(\"las-moon\", '\\uf186'),\n    MORTAR_PESTLE(\"las-mortar-pestle\", '\\uf5a7'),\n    MOSQUE(\"las-mosque\", '\\uf678'),\n    MOTORCYCLE(\"las-motorcycle\", '\\uf21c'),\n    MOUNTAIN(\"las-mountain\", '\\uf6fc'),\n    MOUSE(\"las-mouse\", '\\uf8cc'),\n    MOUSE_POINTER(\"las-mouse-pointer\", '\\uf245'),\n    MUG_HOT(\"las-mug-hot\", '\\uf7b6'),\n    MUSIC(\"las-music\", '\\uf001'),\n    NETWORK_WIRED(\"las-network-wired\", '\\uf6ff'),\n    NEUTER(\"las-neuter\", '\\uf22c'),\n    NEWSPAPER(\"las-newspaper\", '\\uf1ea'),\n    NOTES_MEDICAL(\"las-notes-medical\", '\\uf481'),\n    NOT_EQUAL(\"las-not-equal\", '\\uf53e'),\n    OBJECT_GROUP(\"las-object-group\", '\\uf247'),\n    OBJECT_UNGROUP(\"las-object-ungroup\", '\\uf248'),\n    OIL_CAN(\"las-oil-can\", '\\uf613'),\n    OM(\"las-om\", '\\uf679'),\n    OTTER(\"las-otter\", '\\uf700'),\n    OUTDENT(\"las-outdent\", '\\uf03b'),\n    PAGER(\"las-pager\", '\\uf815'),\n    PAINT_BRUSH(\"las-paint-brush\", '\\uf1fc'),\n    PAINT_ROLLER(\"las-paint-roller\", '\\uf5aa'),\n    PALETTE(\"las-palette\", '\\uf53f'),\n    PALLET(\"las-pallet\", '\\uf482'),\n    PAPERCLIP(\"las-paperclip\", '\\uf0c6'),\n    PAPER_PLANE(\"las-paper-plane\", '\\uf1d8'),\n    PARACHUTE_BOX(\"las-parachute-box\", '\\uf4cd'),\n    PARAGRAPH(\"las-paragraph\", '\\uf1dd'),\n    PARKING(\"las-parking\", '\\uf540'),\n    PASSPORT(\"las-passport\", '\\uf5ab'),\n    PASTAFARIANISM(\"las-pastafarianism\", '\\uf67b'),\n    PASTE(\"las-paste\", '\\uf0ea'),\n    PAUSE(\"las-pause\", '\\uf04c'),\n    PAUSE_CIRCLE(\"las-pause-circle\", '\\uf28b'),\n    PAW(\"las-paw\", '\\uf1b0'),\n    PEACE(\"las-peace\", '\\uf67c'),\n    PEN(\"las-pen\", '\\uf304'),\n    PENCIL_ALT(\"las-pencil-alt\", '\\uf303'),\n    PENCIL_RULER(\"las-pencil-ruler\", '\\uf5ae'),\n    PEN_ALT(\"las-pen-alt\", '\\uf305'),\n    PEN_FANCY(\"las-pen-fancy\", '\\uf5ac'),\n    PEN_NIB(\"las-pen-nib\", '\\uf5ad'),\n    PEN_SQUARE(\"las-pen-square\", '\\uf14b'),\n    // PEOPLE_ARROWS(\"las-people-arrows\", '\\ue068'),\n    PEOPLE_CARRY(\"las-people-carry\", '\\uf4ce'),\n    PEPPER_HOT(\"las-pepper-hot\", '\\uf816'),\n    PERCENT(\"las-percent\", '\\uf295'),\n    PERCENTAGE(\"las-percentage\", '\\uf541'),\n    PERSON_BOOTH(\"las-person-booth\", '\\uf756'),\n    PHONE(\"las-phone\", '\\uf095'),\n    PHONE_ALT(\"las-phone-alt\", '\\uf879'),\n    PHONE_SLASH(\"las-phone-slash\", '\\uf3dd'),\n    PHONE_SQUARE(\"las-phone-square\", '\\uf098'),\n    PHONE_SQUARE_ALT(\"las-phone-square-alt\", '\\uf87b'),\n    PHONE_VOLUME(\"las-phone-volume\", '\\uf2a0'),\n    PHOTO_VIDEO(\"las-photo-video\", '\\uf87c'),\n    PIGGY_BANK(\"las-piggy-bank\", '\\uf4d3'),\n    PILLS(\"las-pills\", '\\uf484'),\n    PIZZA_SLICE(\"las-pizza-slice\", '\\uf818'),\n    PLACE_OF_WORSHIP(\"las-place-of-worship\", '\\uf67f'),\n    PLANE(\"las-plane\", '\\uf072'),\n    PLANE_ARRIVAL(\"las-plane-arrival\", '\\uf5af'),\n    PLANE_DEPARTURE(\"las-plane-departure\", '\\uf5b0'),\n    // PLANE_SLASH(\"las-plane-slash\", '\\ue069'),\n    PLAY(\"las-play\", '\\uf04b'),\n    PLAY_CIRCLE(\"las-play-circle\", '\\uf144'),\n    PLUG(\"las-plug\", '\\uf1e6'),\n    PLUS(\"las-plus\", '\\uf067'),\n    PLUS_CIRCLE(\"las-plus-circle\", '\\uf055'),\n    PLUS_SQUARE(\"las-plus-square\", '\\uf0fe'),\n    PODCAST(\"las-podcast\", '\\uf2ce'),\n    POLL(\"las-poll\", '\\uf681'),\n    POLL_H(\"las-poll-h\", '\\uf682'),\n    POO(\"las-poo\", '\\uf2fe'),\n    POOP(\"las-poop\", '\\uf619'),\n    POO_STORM(\"las-poo-storm\", '\\uf75a'),\n    PORTRAIT(\"las-portrait\", '\\uf3e0'),\n    POUND_SIGN(\"las-pound-sign\", '\\uf154'),\n    POWER_OFF(\"las-power-off\", '\\uf011'),\n    PRAY(\"las-pray\", '\\uf683'),\n    PRAYING_HANDS(\"las-praying-hands\", '\\uf684'),\n    PRESCRIPTION(\"las-prescription\", '\\uf5b1'),\n    PRESCRIPTION_BOTTLE(\"las-prescription-bottle\", '\\uf485'),\n    PRESCRIPTION_BOTTLE_ALT(\"las-prescription-bottle-alt\", '\\uf486'),\n    PRINT(\"las-print\", '\\uf02f'),\n    PROCEDURES(\"las-procedures\", '\\uf487'),\n    PROJECT_DIAGRAM(\"las-project-diagram\", '\\uf542'),\n    // PUMP_MEDICAL(\"las-pump-medical\", '\\ue06a'),\n    // PUMP_SOAP(\"las-pump-soap\", '\\ue06b'),\n    PUZZLE_PIECE(\"las-puzzle-piece\", '\\uf12e'),\n    QRCODE(\"las-qrcode\", '\\uf029'),\n    QUESTION(\"las-question\", '\\uf128'),\n    QUESTION_CIRCLE(\"las-question-circle\", '\\uf059'),\n    QUIDDITCH(\"las-quidditch\", '\\uf458'),\n    QUOTE_LEFT(\"las-quote-left\", '\\uf10d'),\n    QUOTE_RIGHT(\"las-quote-right\", '\\uf10e'),\n    QURAN(\"las-quran\", '\\uf687'),\n    RADIATION(\"las-radiation\", '\\uf7b9'),\n    RADIATION_ALT(\"las-radiation-alt\", '\\uf7ba'),\n    RAINBOW(\"las-rainbow\", '\\uf75b'),\n    RANDOM(\"las-random\", '\\uf074'),\n    RECEIPT(\"las-receipt\", '\\uf543'),\n    RECORD_VINYL(\"las-record-vinyl\", '\\uf8d9'),\n    RECYCLE(\"las-recycle\", '\\uf1b8'),\n    REDO(\"las-redo\", '\\uf01e'),\n    REDO_ALT(\"las-redo-alt\", '\\uf2f9'),\n    REGISTERED(\"las-registered\", '\\uf25d'),\n    REMOVE_FORMAT(\"las-remove-format\", '\\uf87d'),\n    REPLY(\"las-reply\", '\\uf3e5'),\n    REPLY_ALL(\"las-reply-all\", '\\uf122'),\n    REPUBLICAN(\"las-republican\", '\\uf75e'),\n    RESTROOM(\"las-restroom\", '\\uf7bd'),\n    RETWEET(\"las-retweet\", '\\uf079'),\n    RIBBON(\"las-ribbon\", '\\uf4d6'),\n    RING(\"las-ring\", '\\uf70b'),\n    ROAD(\"las-road\", '\\uf018'),\n    ROBOT(\"las-robot\", '\\uf544'),\n    ROCKET(\"las-rocket\", '\\uf135'),\n    ROUTE(\"las-route\", '\\uf4d7'),\n    RSS(\"las-rss\", '\\uf09e'),\n    RSS_SQUARE(\"las-rss-square\", '\\uf143'),\n    RUBLE_SIGN(\"las-ruble-sign\", '\\uf158'),\n    RULER(\"las-ruler\", '\\uf545'),\n    RULER_COMBINED(\"las-ruler-combined\", '\\uf546'),\n    RULER_HORIZONTAL(\"las-ruler-horizontal\", '\\uf547'),\n    RULER_VERTICAL(\"las-ruler-vertical\", '\\uf548'),\n    RUNNING(\"las-running\", '\\uf70c'),\n    RUPEE_SIGN(\"las-rupee-sign\", '\\uf156'),\n    SAD_CRY(\"las-sad-cry\", '\\uf5b3'),\n    SAD_TEAR(\"las-sad-tear\", '\\uf5b4'),\n    SATELLITE(\"las-satellite\", '\\uf7bf'),\n    SATELLITE_DISH(\"las-satellite-dish\", '\\uf7c0'),\n    SAVE(\"las-save\", '\\uf0c7'),\n    SCHOOL(\"las-school\", '\\uf549'),\n    SCREWDRIVER(\"las-screwdriver\", '\\uf54a'),\n    SCROLL(\"las-scroll\", '\\uf70e'),\n    SD_CARD(\"las-sd-card\", '\\uf7c2'),\n    SEARCH(\"las-search\", '\\uf002'),\n    SEARCH_DOLLAR(\"las-search-dollar\", '\\uf688'),\n    SEARCH_LOCATION(\"las-search-location\", '\\uf689'),\n    SEARCH_MINUS(\"las-search-minus\", '\\uf010'),\n    SEARCH_PLUS(\"las-search-plus\", '\\uf00e'),\n    SEEDLING(\"las-seedling\", '\\uf4d8'),\n    SERVER(\"las-server\", '\\uf233'),\n    SHAPES(\"las-shapes\", '\\uf61f'),\n    SHARE(\"las-share\", '\\uf064'),\n    SHARE_ALT(\"las-share-alt\", '\\uf1e0'),\n    SHARE_ALT_SQUARE(\"las-share-alt-square\", '\\uf1e1'),\n    SHARE_SQUARE(\"las-share-square\", '\\uf14d'),\n    SHEKEL_SIGN(\"las-shekel-sign\", '\\uf20b'),\n    SHIELD_ALT(\"las-shield-alt\", '\\uf3ed'),\n    // SHIELD_VIRUS(\"las-shield-virus\", '\\ue06c'),\n    SHIP(\"las-ship\", '\\uf21a'),\n    SHIPPING_FAST(\"las-shipping-fast\", '\\uf48b'),\n    SHOE_PRINTS(\"las-shoe-prints\", '\\uf54b'),\n    SHOPPING_BAG(\"las-shopping-bag\", '\\uf290'),\n    SHOPPING_BASKET(\"las-shopping-basket\", '\\uf291'),\n    SHOPPING_CART(\"las-shopping-cart\", '\\uf07a'),\n    SHOWER(\"las-shower\", '\\uf2cc'),\n    SHUTTLE_VAN(\"las-shuttle-van\", '\\uf5b6'),\n    SIGN(\"las-sign\", '\\uf4d9'),\n    SIGNAL(\"las-signal\", '\\uf012'),\n    SIGNATURE(\"las-signature\", '\\uf5b7'),\n    SIGN_IN_ALT(\"las-sign-in-alt\", '\\uf2f6'),\n    SIGN_LANGUAGE(\"las-sign-language\", '\\uf2a7'),\n    SIGN_OUT_ALT(\"las-sign-out-alt\", '\\uf2f5'),\n    SIM_CARD(\"las-sim-card\", '\\uf7c4'),\n    // SINK(\"las-sink\", '\\ue06d'),\n    SITEMAP(\"las-sitemap\", '\\uf0e8'),\n    SKATING(\"las-skating\", '\\uf7c5'),\n    SKIING(\"las-skiing\", '\\uf7c9'),\n    SKIING_NORDIC(\"las-skiing-nordic\", '\\uf7ca'),\n    SKULL(\"las-skull\", '\\uf54c'),\n    SKULL_CROSSBONES(\"las-skull-crossbones\", '\\uf714'),\n    SLASH(\"las-slash\", '\\uf715'),\n    SLEIGH(\"las-sleigh\", '\\uf7cc'),\n    SLIDERS_H(\"las-sliders-h\", '\\uf1de'),\n    SMILE(\"las-smile\", '\\uf118'),\n    SMILE_BEAM(\"las-smile-beam\", '\\uf5b8'),\n    SMILE_WINK(\"las-smile-wink\", '\\uf4da'),\n    SMOG(\"las-smog\", '\\uf75f'),\n    SMOKING(\"las-smoking\", '\\uf48d'),\n    SMOKING_BAN(\"las-smoking-ban\", '\\uf54d'),\n    SMS(\"las-sms\", '\\uf7cd'),\n    SNOWBOARDING(\"las-snowboarding\", '\\uf7ce'),\n    SNOWFLAKE(\"las-snowflake\", '\\uf2dc'),\n    SNOWMAN(\"las-snowman\", '\\uf7d0'),\n    SNOWPLOW(\"las-snowplow\", '\\uf7d2'),\n    // SOAP(\"las-soap\", '\\ue06e'),\n    SOCKS(\"las-socks\", '\\uf696'),\n    SOLAR_PANEL(\"las-solar-panel\", '\\uf5ba'),\n    SORT(\"las-sort\", '\\uf0dc'),\n    SORT_ALPHA_DOWN(\"las-sort-alpha-down\", '\\uf15d'),\n    SORT_ALPHA_DOWN_ALT(\"las-sort-alpha-down-alt\", '\\uf881'),\n    SORT_ALPHA_UP(\"las-sort-alpha-up\", '\\uf15e'),\n    SORT_ALPHA_UP_ALT(\"las-sort-alpha-up-alt\", '\\uf882'),\n    SORT_AMOUNT_DOWN(\"las-sort-amount-down\", '\\uf160'),\n    SORT_AMOUNT_DOWN_ALT(\"las-sort-amount-down-alt\", '\\uf884'),\n    SORT_AMOUNT_UP(\"las-sort-amount-up\", '\\uf161'),\n    SORT_AMOUNT_UP_ALT(\"las-sort-amount-up-alt\", '\\uf885'),\n    SORT_DOWN(\"las-sort-down\", '\\uf0dd'),\n    SORT_NUMERIC_DOWN(\"las-sort-numeric-down\", '\\uf162'),\n    SORT_NUMERIC_DOWN_ALT(\"las-sort-numeric-down-alt\", '\\uf886'),\n    SORT_NUMERIC_UP(\"las-sort-numeric-up\", '\\uf163'),\n    SORT_NUMERIC_UP_ALT(\"las-sort-numeric-up-alt\", '\\uf887'),\n    SORT_UP(\"las-sort-up\", '\\uf0de'),\n    SPA(\"las-spa\", '\\uf5bb'),\n    SPACE_SHUTTLE(\"las-space-shuttle\", '\\uf197'),\n    SPELL_CHECK(\"las-spell-check\", '\\uf891'),\n    SPIDER(\"las-spider\", '\\uf717'),\n    SPINNER(\"las-spinner\", '\\uf110'),\n    SPLOTCH(\"las-splotch\", '\\uf5bc'),\n    SPRAY_CAN(\"las-spray-can\", '\\uf5bd'),\n    SQUARE(\"las-square\", '\\uf0c8'),\n    SQUARE_FULL(\"las-square-full\", '\\uf45c'),\n    SQUARE_ROOT_ALT(\"las-square-root-alt\", '\\uf698'),\n    STAMP(\"las-stamp\", '\\uf5bf'),\n    STAR(\"las-star\", '\\uf005'),\n    STAR_AND_CRESCENT(\"las-star-and-crescent\", '\\uf699'),\n    STAR_HALF(\"las-star-half\", '\\uf089'),\n    STAR_HALF_ALT(\"las-star-half-alt\", '\\uf5c0'),\n    STAR_OF_DAVID(\"las-star-of-david\", '\\uf69a'),\n    STAR_OF_LIFE(\"las-star-of-life\", '\\uf621'),\n    STEP_BACKWARD(\"las-step-backward\", '\\uf048'),\n    STEP_FORWARD(\"las-step-forward\", '\\uf051'),\n    STETHOSCOPE(\"las-stethoscope\", '\\uf0f1'),\n    STICKY_NOTE(\"las-sticky-note\", '\\uf249'),\n    STOP(\"las-stop\", '\\uf04d'),\n    STOPWATCH(\"las-stopwatch\", '\\uf2f2'),\n    // STOPWATCH_20(\"las-stopwatch-20\", '\\ue06f'),\n    STOP_CIRCLE(\"las-stop-circle\", '\\uf28d'),\n    STORE(\"las-store\", '\\uf54e'),\n    STORE_ALT(\"las-store-alt\", '\\uf54f'),\n    // STORE_ALT_SLASH(\"las-store-alt-slash\", '\\ue070'),\n    // STORE_SLASH(\"las-store-slash\", '\\ue071'),\n    STREAM(\"las-stream\", '\\uf550'),\n    STREET_VIEW(\"las-street-view\", '\\uf21d'),\n    STRIKETHROUGH(\"las-strikethrough\", '\\uf0cc'),\n    STROOPWAFEL(\"las-stroopwafel\", '\\uf551'),\n    SUBSCRIPT(\"las-subscript\", '\\uf12c'),\n    SUBWAY(\"las-subway\", '\\uf239'),\n    SUITCASE(\"las-suitcase\", '\\uf0f2'),\n    SUITCASE_ROLLING(\"las-suitcase-rolling\", '\\uf5c1'),\n    SUN(\"las-sun\", '\\uf185'),\n    SUPERSCRIPT(\"las-superscript\", '\\uf12b'),\n    SURPRISE(\"las-surprise\", '\\uf5c2'),\n    SWATCHBOOK(\"las-swatchbook\", '\\uf5c3'),\n    SWIMMER(\"las-swimmer\", '\\uf5c4'),\n    SWIMMING_POOL(\"las-swimming-pool\", '\\uf5c5'),\n    SYNAGOGUE(\"las-synagogue\", '\\uf69b'),\n    SYNC(\"las-sync\", '\\uf021'),\n    SYNC_ALT(\"las-sync-alt\", '\\uf2f1'),\n    SYRINGE(\"las-syringe\", '\\uf48e'),\n    TABLE(\"las-table\", '\\uf0ce'),\n    TABLET(\"las-tablet\", '\\uf10a'),\n    TABLETS(\"las-tablets\", '\\uf490'),\n    TABLET_ALT(\"las-tablet-alt\", '\\uf3fa'),\n    TABLE_TENNIS(\"las-table-tennis\", '\\uf45d'),\n    TACHOMETER_ALT(\"las-tachometer-alt\", '\\uf3fd'),\n    TAG(\"las-tag\", '\\uf02b'),\n    TAGS(\"las-tags\", '\\uf02c'),\n    TAPE(\"las-tape\", '\\uf4db'),\n    TASKS(\"las-tasks\", '\\uf0ae'),\n    TAXI(\"las-taxi\", '\\uf1ba'),\n    TEETH(\"las-teeth\", '\\uf62e'),\n    TEETH_OPEN(\"las-teeth-open\", '\\uf62f'),\n    TEMPERATURE_HIGH(\"las-temperature-high\", '\\uf769'),\n    TEMPERATURE_LOW(\"las-temperature-low\", '\\uf76b'),\n    TENGE(\"las-tenge\", '\\uf7d7'),\n    TERMINAL(\"las-terminal\", '\\uf120'),\n    TEXT_HEIGHT(\"las-text-height\", '\\uf034'),\n    TEXT_WIDTH(\"las-text-width\", '\\uf035'),\n    TH(\"las-th\", '\\uf00a'),\n    THEATER_MASKS(\"las-theater-masks\", '\\uf630'),\n    THERMOMETER(\"las-thermometer\", '\\uf491'),\n    THERMOMETER_EMPTY(\"las-thermometer-empty\", '\\uf2cb'),\n    THERMOMETER_FULL(\"las-thermometer-full\", '\\uf2c7'),\n    THERMOMETER_HALF(\"las-thermometer-half\", '\\uf2c9'),\n    THERMOMETER_QUARTER(\"las-thermometer-quarter\", '\\uf2ca'),\n    THERMOMETER_THREE_QUARTERS(\"las-thermometer-three-quarters\", '\\uf2c8'),\n    THUMBS_DOWN(\"las-thumbs-down\", '\\uf165'),\n    THUMBS_UP(\"las-thumbs-up\", '\\uf164'),\n    THUMBTACK(\"las-thumbtack\", '\\uf08d'),\n    TH_LARGE(\"las-th-large\", '\\uf009'),\n    TH_LIST(\"las-th-list\", '\\uf00b'),\n    TICKET_ALT(\"las-ticket-alt\", '\\uf3ff'),\n    TIMES(\"las-times\", '\\uf00d'),\n    TIMES_CIRCLE(\"las-times-circle\", '\\uf057'),\n    TINT(\"las-tint\", '\\uf043'),\n    TINT_SLASH(\"las-tint-slash\", '\\uf5c7'),\n    TIRED(\"las-tired\", '\\uf5c8'),\n    TOGGLE_OFF(\"las-toggle-off\", '\\uf204'),\n    TOGGLE_ON(\"las-toggle-on\", '\\uf205'),\n    TOILET(\"las-toilet\", '\\uf7d8'),\n    TOILET_PAPER(\"las-toilet-paper\", '\\uf71e'),\n    // TOILET_PAPER_SLASH(\"las-toilet-paper-slash\", '\\ue072'),\n    TOOLBOX(\"las-toolbox\", '\\uf552'),\n    TOOLS(\"las-tools\", '\\uf7d9'),\n    TOOTH(\"las-tooth\", '\\uf5c9'),\n    TORAH(\"las-torah\", '\\uf6a0'),\n    TORII_GATE(\"las-torii-gate\", '\\uf6a1'),\n    TRACTOR(\"las-tractor\", '\\uf722'),\n    TRADEMARK(\"las-trademark\", '\\uf25c'),\n    TRAFFIC_LIGHT(\"las-traffic-light\", '\\uf637'),\n    // TRAILER(\"las-trailer\", '\\ue041'),\n    TRAIN(\"las-train\", '\\uf238'),\n    TRAM(\"las-tram\", '\\uf7da'),\n    TRANSGENDER(\"las-transgender\", '\\uf224'),\n    TRANSGENDER_ALT(\"las-transgender-alt\", '\\uf225'),\n    TRASH(\"las-trash\", '\\uf1f8'),\n    TRASH_ALT(\"las-trash-alt\", '\\uf2ed'),\n    TRASH_RESTORE(\"las-trash-restore\", '\\uf829'),\n    TRASH_RESTORE_ALT(\"las-trash-restore-alt\", '\\uf82a'),\n    TREE(\"las-tree\", '\\uf1bb'),\n    TROPHY(\"las-trophy\", '\\uf091'),\n    TRUCK(\"las-truck\", '\\uf0d1'),\n    TRUCK_LOADING(\"las-truck-loading\", '\\uf4de'),\n    TRUCK_MONSTER(\"las-truck-monster\", '\\uf63b'),\n    TRUCK_MOVING(\"las-truck-moving\", '\\uf4df'),\n    TRUCK_PICKUP(\"las-truck-pickup\", '\\uf63c'),\n    TSHIRT(\"las-tshirt\", '\\uf553'),\n    TTY(\"las-tty\", '\\uf1e4'),\n    TV(\"las-tv\", '\\uf26c'),\n    UMBRELLA(\"las-umbrella\", '\\uf0e9'),\n    UMBRELLA_BEACH(\"las-umbrella-beach\", '\\uf5ca'),\n    UNDERLINE(\"las-underline\", '\\uf0cd'),\n    UNDO(\"las-undo\", '\\uf0e2'),\n    UNDO_ALT(\"las-undo-alt\", '\\uf2ea'),\n    UNIVERSAL_ACCESS(\"las-universal-access\", '\\uf29a'),\n    UNIVERSITY(\"las-university\", '\\uf19c'),\n    UNLINK(\"las-unlink\", '\\uf127'),\n    UNLOCK(\"las-unlock\", '\\uf09c'),\n    UNLOCK_ALT(\"las-unlock-alt\", '\\uf13e'),\n    UPLOAD(\"las-upload\", '\\uf093'),\n    USER(\"las-user\", '\\uf007'),\n    USERS(\"las-users\", '\\uf0c0'),\n    USERS_COG(\"las-users-cog\", '\\uf509'),\n    // USERS_SLASH(\"las-users-slash\", '\\ue073'),\n    USER_ALT(\"las-user-alt\", '\\uf406'),\n    USER_ALT_SLASH(\"las-user-alt-slash\", '\\uf4fa'),\n    USER_ASTRONAUT(\"las-user-astronaut\", '\\uf4fb'),\n    USER_CHECK(\"las-user-check\", '\\uf4fc'),\n    USER_CIRCLE(\"las-user-circle\", '\\uf2bd'),\n    USER_CLOCK(\"las-user-clock\", '\\uf4fd'),\n    USER_COG(\"las-user-cog\", '\\uf4fe'),\n    USER_EDIT(\"las-user-edit\", '\\uf4ff'),\n    USER_FRIENDS(\"las-user-friends\", '\\uf500'),\n    USER_GRADUATE(\"las-user-graduate\", '\\uf501'),\n    USER_INJURED(\"las-user-injured\", '\\uf728'),\n    USER_LOCK(\"las-user-lock\", '\\uf502'),\n    USER_MD(\"las-user-md\", '\\uf0f0'),\n    USER_MINUS(\"las-user-minus\", '\\uf503'),\n    USER_NINJA(\"las-user-ninja\", '\\uf504'),\n    USER_NURSE(\"las-user-nurse\", '\\uf82f'),\n    USER_PLUS(\"las-user-plus\", '\\uf234'),\n    USER_SECRET(\"las-user-secret\", '\\uf21b'),\n    USER_SHIELD(\"las-user-shield\", '\\uf505'),\n    USER_SLASH(\"las-user-slash\", '\\uf506'),\n    USER_TAG(\"las-user-tag\", '\\uf507'),\n    USER_TIE(\"las-user-tie\", '\\uf508'),\n    USER_TIMES(\"las-user-times\", '\\uf235'),\n    UTENSILS(\"las-utensils\", '\\uf2e7'),\n    UTENSIL_SPOON(\"las-utensil-spoon\", '\\uf2e5'),\n    VECTOR_SQUARE(\"las-vector-square\", '\\uf5cb'),\n    VENUS(\"las-venus\", '\\uf221'),\n    VENUS_DOUBLE(\"las-venus-double\", '\\uf226'),\n    VENUS_MARS(\"las-venus-mars\", '\\uf228'),\n    // VEST(\"las-vest\", '\\ue085'),\n    // VEST_PATCHES(\"las-vest-patches\", '\\ue086'),\n    VIAL(\"las-vial\", '\\uf492'),\n    VIALS(\"las-vials\", '\\uf493'),\n    VIDEO(\"las-video\", '\\uf03d'),\n    VIDEO_SLASH(\"las-video-slash\", '\\uf4e2'),\n    VIHARA(\"las-vihara\", '\\uf6a7'),\n    // VIRUS(\"las-virus\", '\\ue074'),\n    // VIRUSES(\"las-viruses\", '\\ue076'),\n    // VIRUS_SLASH(\"las-virus-slash\", '\\ue075'),\n    VOICEMAIL(\"las-voicemail\", '\\uf897'),\n    VOLLEYBALL_BALL(\"las-volleyball-ball\", '\\uf45f'),\n    VOLUME_DOWN(\"las-volume-down\", '\\uf027'),\n    VOLUME_MUTE(\"las-volume-mute\", '\\uf6a9'),\n    VOLUME_OFF(\"las-volume-off\", '\\uf026'),\n    VOLUME_UP(\"las-volume-up\", '\\uf028'),\n    VOTE_YEA(\"las-vote-yea\", '\\uf772'),\n    VR_CARDBOARD(\"las-vr-cardboard\", '\\uf729'),\n    WALKING(\"las-walking\", '\\uf554'),\n    WALLET(\"las-wallet\", '\\uf555'),\n    WAREHOUSE(\"las-warehouse\", '\\uf494'),\n    WATER(\"las-water\", '\\uf773'),\n    WAVE_SQUARE(\"las-wave-square\", '\\uf83e'),\n    WEIGHT(\"las-weight\", '\\uf496'),\n    WEIGHT_HANGING(\"las-weight-hanging\", '\\uf5cd'),\n    WHEELCHAIR(\"las-wheelchair\", '\\uf193'),\n    WIFI(\"las-wifi\", '\\uf1eb'),\n    WIND(\"las-wind\", '\\uf72e'),\n    WINDOW_CLOSE(\"las-window-close\", '\\uf410'),\n    WINDOW_MAXIMIZE(\"las-window-maximize\", '\\uf2d0'),\n    WINDOW_MINIMIZE(\"las-window-minimize\", '\\uf2d1'),\n    WINDOW_RESTORE(\"las-window-restore\", '\\uf2d2'),\n    WINE_BOTTLE(\"las-wine-bottle\", '\\uf72f'),\n    WINE_GLASS(\"las-wine-glass\", '\\uf4e3'),\n    WINE_GLASS_ALT(\"las-wine-glass-alt\", '\\uf5ce'),\n    WON_SIGN(\"las-won-sign\", '\\uf159'),\n    WRENCH(\"las-wrench\", '\\uf0ad'),\n    X_RAY(\"las-x-ray\", '\\uf497'),\n    YEN_SIGN(\"las-yen-sign\", '\\uf157'),\n    YIN_YANG(\"las-yin-yang\", '\\uf6ad');\n\n    public static LineAwesomeSolid findByDescription(String description) {\n        for (LineAwesomeSolid font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    LineAwesomeSolid(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/java/org/kordamp/ikonli/lineawesome/LineAwesomeSolidIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.lineawesome;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class LineAwesomeSolidIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/lineawesome/1.3.0/fonts/la-solid-900.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"las-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return LineAwesomeSolid.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"la-solid-900\";\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/java/org/kordamp/ikonli/lineawesome/LineAwesomeSolidIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.lineawesome;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class LineAwesomeSolidIkonProvider implements IkonProvider<LineAwesomeSolid> {\n    @Override\n    public Class<LineAwesomeSolid> getIkon() {\n        return LineAwesomeSolid.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/resources/META-INF/resources/lineawesome/1.3.0/css/la-brands.css",
    "content": "@font-face {\n    font-family: 'Line Awesome Brands';\n    font-style: normal;\n    font-weight: 400;\n    font-display: block;\n    src: url(\"../fonts/la-brands-400.eot\");\n    src: url(\"../fonts/la-brands-400.eot?#iefix\") format(\"embedded-opentype\"),\n    url(\"../fonts/la-brands-400.woff2\") format(\"woff2\"),\n    url(\"../fonts/la-brands-400.woff\") format(\"woff\"),\n    url(\"../fonts/la-brands-400.ttf\") format(\"truetype\"),\n    url(\"../fonts/la-brands-400.svg#fontawesome\") format(\"svg\");\n}\n\n.lab {\n    font-family: 'Line Awesome Brands';\n    font-weight: 400;\n}\n"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/resources/META-INF/resources/lineawesome/1.3.0/css/la-regular.css",
    "content": "@font-face {\n    font-family: 'Line Awesome Free';\n    font-style: normal;\n    font-weight: 400;\n    font-display: block;\n    src: url(\"../fonts/la-regular-400.eot\");\n    src: url(\"../fonts/la-regular-400.eot?#iefix\") format(\"embedded-opentype\"),\n    url(\"../fonts/la-regular-400.woff2\") format(\"woff2\"),\n    url(\"../fonts/la-regular-400.woff\") format(\"woff\"),\n    url(\"../fonts/la-regular-400.ttf\") format(\"truetype\"),\n    url(\"../fonts/la-regular-400.svg#fontawesome\") format(\"svg\");\n}\n\n.lar {\n    font-family: 'Line Awesome Free';\n    font-weight: 400;\n}\n"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/resources/META-INF/resources/lineawesome/1.3.0/css/la-solid.css",
    "content": "@font-face {\n    font-family: 'Line Awesome Free';\n    font-style: normal;\n    font-weight: 900;\n    font-display: block;\n    src: url(\"../fonts/la-solid-900.eot\");\n    src: url(\"../fonts/la-solid-900.eot?#iefix\") format(\"embedded-opentype\"),\n    url(\"../fonts/la-solid-900.woff2\") format(\"woff2\"),\n    url(\"../fonts/la-solid-900.woff\") format(\"woff\"),\n    url(\"../fonts/la-solid-900.ttf\") format(\"truetype\"),\n    url(\"../fonts/la-solid-900.svg#fontawesome\") format(\"svg\");\n}\n\n.la,\n.las {\n    font-family: 'Line Awesome Free';\n    font-weight: 900;\n}\n"
  },
  {
    "path": "icon-packs/ikonli-lineawesome-pack/src/main/resources/META-INF/resources/lineawesome/1.3.0/css/lineawesome-all.css",
    "content": ".la,\n.las,\n.lar,\n.lal,\n.lad,\n.lab {\n    -moz-osx-font-smoothing: grayscale;\n    -webkit-font-smoothing: antialiased;\n    display: inline-block;\n    font-style: normal;\n    font-variant: normal;\n    text-rendering: auto;\n    line-height: 1; }\n\n.la-lg {\n    font-size: 1.33333em;\n    line-height: 0.75em;\n    vertical-align: -.0667em; }\n\n.la-xs {\n    font-size: .75em; }\n\n.la-sm {\n    font-size: .875em; }\n\n.la-1x {\n    font-size: 1em; }\n\n.la-2x {\n    font-size: 2em; }\n\n.la-3x {\n    font-size: 3em; }\n\n.la-4x {\n    font-size: 4em; }\n\n.la-5x {\n    font-size: 5em; }\n\n.la-6x {\n    font-size: 6em; }\n\n.la-7x {\n    font-size: 7em; }\n\n.la-8x {\n    font-size: 8em; }\n\n.la-9x {\n    font-size: 9em; }\n\n.la-10x {\n    font-size: 10em; }\n\n.la-fw {\n    text-align: center;\n    width: 1.25em; }\n\n.la-ul {\n    list-style-type: none;\n    margin-left: 2.5em;\n    padding-left: 0; }\n.la-ul > li {\n    position: relative; }\n\n.la-li {\n    left: -2em;\n    position: absolute;\n    text-align: center;\n    width: 2em;\n    line-height: inherit; }\n\n.la-border {\n    border: solid 0.08em #eee;\n    border-radius: .1em;\n    padding: .2em .25em .15em; }\n\n.la-pull-left {\n    float: left; }\n\n.la-pull-right {\n    float: right; }\n\n.la.la-pull-left,\n.las.la-pull-left,\n.lar.la-pull-left,\n.lal.la-pull-left,\n.lab.la-pull-left {\n    margin-right: .3em; }\n\n.la.la-pull-right,\n.las.la-pull-right,\n.lar.la-pull-right,\n.lal.la-pull-right,\n.lab.la-pull-right {\n    margin-left: .3em; }\n\n.la-spin {\n    -webkit-animation: la-spin 2s infinite linear;\n    animation: la-spin 2s infinite linear; }\n\n.la-pulse {\n    -webkit-animation: la-spin 1s infinite steps(8);\n    animation: la-spin 1s infinite steps(8); }\n\n@-webkit-keyframes la-spin {\n    0% {\n        -webkit-transform: rotate(0deg);\n        transform: rotate(0deg); }\n    100% {\n        -webkit-transform: rotate(360deg);\n        transform: rotate(360deg); } }\n\n@keyframes la-spin {\n    0% {\n        -webkit-transform: rotate(0deg);\n        transform: rotate(0deg); }\n    100% {\n        -webkit-transform: rotate(360deg);\n        transform: rotate(360deg); } }\n\n.la-rotate-90 {\n    -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)\";\n    -webkit-transform: rotate(90deg);\n    transform: rotate(90deg); }\n\n.la-rotate-180 {\n    -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)\";\n    -webkit-transform: rotate(180deg);\n    transform: rotate(180deg); }\n\n.la-rotate-270 {\n    -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)\";\n    -webkit-transform: rotate(270deg);\n    transform: rotate(270deg); }\n\n.la-flip-horizontal {\n    -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)\";\n    -webkit-transform: scale(-1, 1);\n    transform: scale(-1, 1); }\n\n.la-flip-vertical {\n    -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n    -webkit-transform: scale(1, -1);\n    transform: scale(1, -1); }\n\n.la-flip-both, .la-flip-horizontal.la-flip-vertical {\n    -ms-filter: \"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)\";\n    -webkit-transform: scale(-1, -1);\n    transform: scale(-1, -1); }\n\n:root .la-rotate-90,\n:root .la-rotate-180,\n:root .la-rotate-270,\n:root .la-flip-horizontal,\n:root .la-flip-vertical,\n:root .la-flip-both {\n    -webkit-filter: none;\n    filter: none; }\n\n.la-stack {\n    display: inline-block;\n    height: 2em;\n    line-height: 2em;\n    position: relative;\n    vertical-align: middle;\n    width: 2.5em; }\n\n.la-stack-1x,\n.la-stack-2x {\n    left: 0;\n    position: absolute;\n    text-align: center;\n    width: 100%; }\n\n.la-stack-1x {\n    line-height: inherit; }\n\n.la-stack-2x {\n    font-size: 2em; }\n\n.la-inverse {\n    color: #fff; }\n\n/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen\nreaders do not read off random characters that represent icons */\n.la-500px:before {\n    content: \"\\f26e\"; }\n\n.la-accessible-icon:before {\n    content: \"\\f368\"; }\n\n.la-accusoft:before {\n    content: \"\\f369\"; }\n\n.la-acquisitions-incorporated:before {\n    content: \"\\f6af\"; }\n\n.la-ad:before {\n    content: \"\\f641\"; }\n\n.la-address-book:before {\n    content: \"\\f2b9\"; }\n\n.la-address-card:before {\n    content: \"\\f2bb\"; }\n\n.la-adjust:before {\n    content: \"\\f042\"; }\n\n.la-adn:before {\n    content: \"\\f170\"; }\n\n.la-adversal:before {\n    content: \"\\f36a\"; }\n\n.la-affiliatetheme:before {\n    content: \"\\f36b\"; }\n\n.la-air-freshener:before {\n    content: \"\\f5d0\"; }\n\n.la-airbnb:before {\n    content: \"\\f834\"; }\n\n.la-algolia:before {\n    content: \"\\f36c\"; }\n\n.la-align-center:before {\n    content: \"\\f037\"; }\n\n.la-align-justify:before {\n    content: \"\\f039\"; }\n\n.la-align-left:before {\n    content: \"\\f036\"; }\n\n.la-align-right:before {\n    content: \"\\f038\"; }\n\n.la-alipay:before {\n    content: \"\\f642\"; }\n\n.la-allergies:before {\n    content: \"\\f461\"; }\n\n.la-amazon:before {\n    content: \"\\f270\"; }\n\n.la-amazon-pay:before {\n    content: \"\\f42c\"; }\n\n.la-ambulance:before {\n    content: \"\\f0f9\"; }\n\n.la-american-sign-language-interpreting:before {\n    content: \"\\f2a3\"; }\n\n.la-amilia:before {\n    content: \"\\f36d\"; }\n\n.la-anchor:before {\n    content: \"\\f13d\"; }\n\n.la-android:before {\n    content: \"\\f17b\"; }\n\n.la-angellist:before {\n    content: \"\\f209\"; }\n\n.la-angle-double-down:before {\n    content: \"\\f103\"; }\n\n.la-angle-double-left:before {\n    content: \"\\f100\"; }\n\n.la-angle-double-right:before {\n    content: \"\\f101\"; }\n\n.la-angle-double-up:before {\n    content: \"\\f102\"; }\n\n.la-angle-down:before {\n    content: \"\\f107\"; }\n\n.la-angle-left:before {\n    content: \"\\f104\"; }\n\n.la-angle-right:before {\n    content: \"\\f105\"; }\n\n.la-angle-up:before {\n    content: \"\\f106\"; }\n\n.la-angry:before {\n    content: \"\\f556\"; }\n\n.la-angrycreative:before {\n    content: \"\\f36e\"; }\n\n.la-angular:before {\n    content: \"\\f420\"; }\n\n.la-ankh:before {\n    content: \"\\f644\"; }\n\n.la-app-store:before {\n    content: \"\\f36f\"; }\n\n.la-app-store-ios:before {\n    content: \"\\f370\"; }\n\n.la-apper:before {\n    content: \"\\f371\"; }\n\n.la-apple:before {\n    content: \"\\f179\"; }\n\n.la-apple-alt:before {\n    content: \"\\f5d1\"; }\n\n.la-apple-pay:before {\n    content: \"\\f415\"; }\n\n.la-archive:before {\n    content: \"\\f187\"; }\n\n.la-archway:before {\n    content: \"\\f557\"; }\n\n.la-arrow-alt-circle-down:before {\n    content: \"\\f358\"; }\n\n.la-arrow-alt-circle-left:before {\n    content: \"\\f359\"; }\n\n.la-arrow-alt-circle-right:before {\n    content: \"\\f35a\"; }\n\n.la-arrow-alt-circle-up:before {\n    content: \"\\f35b\"; }\n\n.la-arrow-circle-down:before {\n    content: \"\\f0ab\"; }\n\n.la-arrow-circle-left:before {\n    content: \"\\f0a8\"; }\n\n.la-arrow-circle-right:before {\n    content: \"\\f0a9\"; }\n\n.la-arrow-circle-up:before {\n    content: \"\\f0aa\"; }\n\n.la-arrow-down:before {\n    content: \"\\f063\"; }\n\n.la-arrow-left:before {\n    content: \"\\f060\"; }\n\n.la-arrow-right:before {\n    content: \"\\f061\"; }\n\n.la-arrow-up:before {\n    content: \"\\f062\"; }\n\n.la-arrows-alt:before {\n    content: \"\\f0b2\"; }\n\n.la-arrows-alt-h:before {\n    content: \"\\f337\"; }\n\n.la-arrows-alt-v:before {\n    content: \"\\f338\"; }\n\n.la-artstation:before {\n    content: \"\\f77a\"; }\n\n.la-assistive-listening-systems:before {\n    content: \"\\f2a2\"; }\n\n.la-asterisk:before {\n    content: \"\\f069\"; }\n\n.la-asymmetrik:before {\n    content: \"\\f372\"; }\n\n.la-at:before {\n    content: \"\\f1fa\"; }\n\n.la-atlas:before {\n    content: \"\\f558\"; }\n\n.la-atlassian:before {\n    content: \"\\f77b\"; }\n\n.la-atom:before {\n    content: \"\\f5d2\"; }\n\n.la-audible:before {\n    content: \"\\f373\"; }\n\n.la-audio-description:before {\n    content: \"\\f29e\"; }\n\n.la-autoprefixer:before {\n    content: \"\\f41c\"; }\n\n.la-avianex:before {\n    content: \"\\f374\"; }\n\n.la-aviato:before {\n    content: \"\\f421\"; }\n\n.la-award:before {\n    content: \"\\f559\"; }\n\n.la-aws:before {\n    content: \"\\f375\"; }\n\n.la-baby:before {\n    content: \"\\f77c\"; }\n\n.la-baby-carriage:before {\n    content: \"\\f77d\"; }\n\n.la-backspace:before {\n    content: \"\\f55a\"; }\n\n.la-backward:before {\n    content: \"\\f04a\"; }\n\n.la-bacon:before {\n    content: \"\\f7e5\"; }\n\n.la-bacteria:before {\n    content: \"\\e059\"; }\n\n.la-bacterium:before {\n    content: \"\\e05a\"; }\n\n.la-bahai:before {\n    content: \"\\f666\"; }\n\n.la-balance-scale:before {\n    content: \"\\f24e\"; }\n\n.la-balance-scale-left:before {\n    content: \"\\f515\"; }\n\n.la-balance-scale-right:before {\n    content: \"\\f516\"; }\n\n.la-ban:before {\n    content: \"\\f05e\"; }\n\n.la-band-aid:before {\n    content: \"\\f462\"; }\n\n.la-bandcamp:before {\n    content: \"\\f2d5\"; }\n\n.la-barcode:before {\n    content: \"\\f02a\"; }\n\n.la-bars:before {\n    content: \"\\f0c9\"; }\n\n.la-baseball-ball:before {\n    content: \"\\f433\"; }\n\n.la-basketball-ball:before {\n    content: \"\\f434\"; }\n\n.la-bath:before {\n    content: \"\\f2cd\"; }\n\n.la-battery-empty:before {\n    content: \"\\f244\"; }\n\n.la-battery-full:before {\n    content: \"\\f240\"; }\n\n.la-battery-half:before {\n    content: \"\\f242\"; }\n\n.la-battery-quarter:before {\n    content: \"\\f243\"; }\n\n.la-battery-three-quarters:before {\n    content: \"\\f241\"; }\n\n.la-battle-net:before {\n    content: \"\\f835\"; }\n\n.la-bed:before {\n    content: \"\\f236\"; }\n\n.la-beer:before {\n    content: \"\\f0fc\"; }\n\n.la-behance:before {\n    content: \"\\f1b4\"; }\n\n.la-behance-square:before {\n    content: \"\\f1b5\"; }\n\n.la-bell:before {\n    content: \"\\f0f3\"; }\n\n.la-bell-slash:before {\n    content: \"\\f1f6\"; }\n\n.la-bezier-curve:before {\n    content: \"\\f55b\"; }\n\n.la-bible:before {\n    content: \"\\f647\"; }\n\n.la-bicycle:before {\n    content: \"\\f206\"; }\n\n.la-biking:before {\n    content: \"\\f84a\"; }\n\n.la-bimobject:before {\n    content: \"\\f378\"; }\n\n.la-binoculars:before {\n    content: \"\\f1e5\"; }\n\n.la-biohazard:before {\n    content: \"\\f780\"; }\n\n.la-birthday-cake:before {\n    content: \"\\f1fd\"; }\n\n.la-bitbucket:before {\n    content: \"\\f171\"; }\n\n.la-bitcoin:before {\n    content: \"\\f379\"; }\n\n.la-bity:before {\n    content: \"\\f37a\"; }\n\n.la-black-tie:before {\n    content: \"\\f27e\"; }\n\n.la-blackberry:before {\n    content: \"\\f37b\"; }\n\n.la-blender:before {\n    content: \"\\f517\"; }\n\n.la-blender-phone:before {\n    content: \"\\f6b6\"; }\n\n.la-blind:before {\n    content: \"\\f29d\"; }\n\n.la-blog:before {\n    content: \"\\f781\"; }\n\n.la-blogger:before {\n    content: \"\\f37c\"; }\n\n.la-blogger-b:before {\n    content: \"\\f37d\"; }\n\n.la-bluetooth:before {\n    content: \"\\f293\"; }\n\n.la-bluetooth-b:before {\n    content: \"\\f294\"; }\n\n.la-bold:before {\n    content: \"\\f032\"; }\n\n.la-bolt:before {\n    content: \"\\f0e7\"; }\n\n.la-bomb:before {\n    content: \"\\f1e2\"; }\n\n.la-bone:before {\n    content: \"\\f5d7\"; }\n\n.la-bong:before {\n    content: \"\\f55c\"; }\n\n.la-book:before {\n    content: \"\\f02d\"; }\n\n.la-book-dead:before {\n    content: \"\\f6b7\"; }\n\n.la-book-medical:before {\n    content: \"\\f7e6\"; }\n\n.la-book-open:before {\n    content: \"\\f518\"; }\n\n.la-book-reader:before {\n    content: \"\\f5da\"; }\n\n.la-bookmark:before {\n    content: \"\\f02e\"; }\n\n.la-bootstrap:before {\n    content: \"\\f836\"; }\n\n.la-border-all:before {\n    content: \"\\f84c\"; }\n\n.la-border-none:before {\n    content: \"\\f850\"; }\n\n.la-border-style:before {\n    content: \"\\f853\"; }\n\n.la-bowling-ball:before {\n    content: \"\\f436\"; }\n\n.la-box:before {\n    content: \"\\f466\"; }\n\n.la-box-open:before {\n    content: \"\\f49e\"; }\n\n.la-box-tissue:before {\n    content: \"\\e05b\"; }\n\n.la-boxes:before {\n    content: \"\\f468\"; }\n\n.la-braille:before {\n    content: \"\\f2a1\"; }\n\n.la-brain:before {\n    content: \"\\f5dc\"; }\n\n.la-bread-slice:before {\n    content: \"\\f7ec\"; }\n\n.la-briefcase:before {\n    content: \"\\f0b1\"; }\n\n.la-briefcase-medical:before {\n    content: \"\\f469\"; }\n\n.la-broadcast-tower:before {\n    content: \"\\f519\"; }\n\n.la-broom:before {\n    content: \"\\f51a\"; }\n\n.la-brush:before {\n    content: \"\\f55d\"; }\n\n.la-btc:before {\n    content: \"\\f15a\"; }\n\n.la-buffer:before {\n    content: \"\\f837\"; }\n\n.la-bug:before {\n    content: \"\\f188\"; }\n\n.la-building:before {\n    content: \"\\f1ad\"; }\n\n.la-bullhorn:before {\n    content: \"\\f0a1\"; }\n\n.la-bullseye:before {\n    content: \"\\f140\"; }\n\n.la-burn:before {\n    content: \"\\f46a\"; }\n\n.la-buromobelexperte:before {\n    content: \"\\f37f\"; }\n\n.la-bus:before {\n    content: \"\\f207\"; }\n\n.la-bus-alt:before {\n    content: \"\\f55e\"; }\n\n.la-business-time:before {\n    content: \"\\f64a\"; }\n\n.la-buy-n-large:before {\n    content: \"\\f8a6\"; }\n\n.la-buysellads:before {\n    content: \"\\f20d\"; }\n\n.la-calculator:before {\n    content: \"\\f1ec\"; }\n\n.la-calendar:before {\n    content: \"\\f133\"; }\n\n.la-calendar-alt:before {\n    content: \"\\f073\"; }\n\n.la-calendar-check:before {\n    content: \"\\f274\"; }\n\n.la-calendar-day:before {\n    content: \"\\f783\"; }\n\n.la-calendar-minus:before {\n    content: \"\\f272\"; }\n\n.la-calendar-plus:before {\n    content: \"\\f271\"; }\n\n.la-calendar-times:before {\n    content: \"\\f273\"; }\n\n.la-calendar-week:before {\n    content: \"\\f784\"; }\n\n.la-camera:before {\n    content: \"\\f030\"; }\n\n.la-camera-retro:before {\n    content: \"\\f083\"; }\n\n.la-campground:before {\n    content: \"\\f6bb\"; }\n\n.la-canadian-maple-leaf:before {\n    content: \"\\f785\"; }\n\n.la-candy-cane:before {\n    content: \"\\f786\"; }\n\n.la-cannabis:before {\n    content: \"\\f55f\"; }\n\n.la-capsules:before {\n    content: \"\\f46b\"; }\n\n.la-car:before {\n    content: \"\\f1b9\"; }\n\n.la-car-alt:before {\n    content: \"\\f5de\"; }\n\n.la-car-battery:before {\n    content: \"\\f5df\"; }\n\n.la-car-crash:before {\n    content: \"\\f5e1\"; }\n\n.la-car-side:before {\n    content: \"\\f5e4\"; }\n\n.la-caravan:before {\n    content: \"\\f8ff\"; }\n\n.la-caret-down:before {\n    content: \"\\f0d7\"; }\n\n.la-caret-left:before {\n    content: \"\\f0d9\"; }\n\n.la-caret-right:before {\n    content: \"\\f0da\"; }\n\n.la-caret-square-down:before {\n    content: \"\\f150\"; }\n\n.la-caret-square-left:before {\n    content: \"\\f191\"; }\n\n.la-caret-square-right:before {\n    content: \"\\f152\"; }\n\n.la-caret-square-up:before {\n    content: \"\\f151\"; }\n\n.la-caret-up:before {\n    content: \"\\f0d8\"; }\n\n.la-carrot:before {\n    content: \"\\f787\"; }\n\n.la-cart-arrow-down:before {\n    content: \"\\f218\"; }\n\n.la-cart-plus:before {\n    content: \"\\f217\"; }\n\n.la-cash-register:before {\n    content: \"\\f788\"; }\n\n.la-cat:before {\n    content: \"\\f6be\"; }\n\n.la-cc-amazon-pay:before {\n    content: \"\\f42d\"; }\n\n.la-cc-amex:before {\n    content: \"\\f1f3\"; }\n\n.la-cc-apple-pay:before {\n    content: \"\\f416\"; }\n\n.la-cc-diners-club:before {\n    content: \"\\f24c\"; }\n\n.la-cc-discover:before {\n    content: \"\\f1f2\"; }\n\n.la-cc-jcb:before {\n    content: \"\\f24b\"; }\n\n.la-cc-mastercard:before {\n    content: \"\\f1f1\"; }\n\n.la-cc-paypal:before {\n    content: \"\\f1f4\"; }\n\n.la-cc-stripe:before {\n    content: \"\\f1f5\"; }\n\n.la-cc-visa:before {\n    content: \"\\f1f0\"; }\n\n.la-centercode:before {\n    content: \"\\f380\"; }\n\n.la-centos:before {\n    content: \"\\f789\"; }\n\n.la-certificate:before {\n    content: \"\\f0a3\"; }\n\n.la-chair:before {\n    content: \"\\f6c0\"; }\n\n.la-chalkboard:before {\n    content: \"\\f51b\"; }\n\n.la-chalkboard-teacher:before {\n    content: \"\\f51c\"; }\n\n.la-charging-station:before {\n    content: \"\\f5e7\"; }\n\n.la-chart-area:before {\n    content: \"\\f1fe\"; }\n\n.la-chart-bar:before {\n    content: \"\\f080\"; }\n\n.la-chart-line:before {\n    content: \"\\f201\"; }\n\n.la-chart-pie:before {\n    content: \"\\f200\"; }\n\n.la-check:before {\n    content: \"\\f00c\"; }\n\n.la-check-circle:before {\n    content: \"\\f058\"; }\n\n.la-check-double:before {\n    content: \"\\f560\"; }\n\n.la-check-square:before {\n    content: \"\\f14a\"; }\n\n.la-cheese:before {\n    content: \"\\f7ef\"; }\n\n.la-chess:before {\n    content: \"\\f439\"; }\n\n.la-chess-bishop:before {\n    content: \"\\f43a\"; }\n\n.la-chess-board:before {\n    content: \"\\f43c\"; }\n\n.la-chess-king:before {\n    content: \"\\f43f\"; }\n\n.la-chess-knight:before {\n    content: \"\\f441\"; }\n\n.la-chess-pawn:before {\n    content: \"\\f443\"; }\n\n.la-chess-queen:before {\n    content: \"\\f445\"; }\n\n.la-chess-rook:before {\n    content: \"\\f447\"; }\n\n.la-chevron-circle-down:before {\n    content: \"\\f13a\"; }\n\n.la-chevron-circle-left:before {\n    content: \"\\f137\"; }\n\n.la-chevron-circle-right:before {\n    content: \"\\f138\"; }\n\n.la-chevron-circle-up:before {\n    content: \"\\f139\"; }\n\n.la-chevron-down:before {\n    content: \"\\f078\"; }\n\n.la-chevron-left:before {\n    content: \"\\f053\"; }\n\n.la-chevron-right:before {\n    content: \"\\f054\"; }\n\n.la-chevron-up:before {\n    content: \"\\f077\"; }\n\n.la-child:before {\n    content: \"\\f1ae\"; }\n\n.la-chrome:before {\n    content: \"\\f268\"; }\n\n.la-chromecast:before {\n    content: \"\\f838\"; }\n\n.la-church:before {\n    content: \"\\f51d\"; }\n\n.la-circle:before {\n    content: \"\\f111\"; }\n\n.la-circle-notch:before {\n    content: \"\\f1ce\"; }\n\n.la-city:before {\n    content: \"\\f64f\"; }\n\n.la-clinic-medical:before {\n    content: \"\\f7f2\"; }\n\n.la-clipboard:before {\n    content: \"\\f328\"; }\n\n.la-clipboard-check:before {\n    content: \"\\f46c\"; }\n\n.la-clipboard-list:before {\n    content: \"\\f46d\"; }\n\n.la-clock:before {\n    content: \"\\f017\"; }\n\n.la-clone:before {\n    content: \"\\f24d\"; }\n\n.la-closed-captioning:before {\n    content: \"\\f20a\"; }\n\n.la-cloud:before {\n    content: \"\\f0c2\"; }\n\n.la-cloud-download-alt:before {\n    content: \"\\f381\"; }\n\n.la-cloud-meatball:before {\n    content: \"\\f73b\"; }\n\n.la-cloud-moon:before {\n    content: \"\\f6c3\"; }\n\n.la-cloud-moon-rain:before {\n    content: \"\\f73c\"; }\n\n.la-cloud-rain:before {\n    content: \"\\f73d\"; }\n\n.la-cloud-showers-heavy:before {\n    content: \"\\f740\"; }\n\n.la-cloud-sun:before {\n    content: \"\\f6c4\"; }\n\n.la-cloud-sun-rain:before {\n    content: \"\\f743\"; }\n\n.la-cloud-upload-alt:before {\n    content: \"\\f382\"; }\n\n.la-cloudflare:before {\n    content: \"\\e07d\"; }\n\n.la-cloudscale:before {\n    content: \"\\f383\"; }\n\n.la-cloudsmith:before {\n    content: \"\\f384\"; }\n\n.la-cloudversify:before {\n    content: \"\\f385\"; }\n\n.la-cocktail:before {\n    content: \"\\f561\"; }\n\n.la-code:before {\n    content: \"\\f121\"; }\n\n.la-code-branch:before {\n    content: \"\\f126\"; }\n\n.la-codepen:before {\n    content: \"\\f1cb\"; }\n\n.la-codiepie:before {\n    content: \"\\f284\"; }\n\n.la-coffee:before {\n    content: \"\\f0f4\"; }\n\n.la-cog:before {\n    content: \"\\f013\"; }\n\n.la-cogs:before {\n    content: \"\\f085\"; }\n\n.la-coins:before {\n    content: \"\\f51e\"; }\n\n.la-columns:before {\n    content: \"\\f0db\"; }\n\n.la-comment:before {\n    content: \"\\f075\"; }\n\n.la-comment-alt:before {\n    content: \"\\f27a\"; }\n\n.la-comment-dollar:before {\n    content: \"\\f651\"; }\n\n.la-comment-dots:before {\n    content: \"\\f4ad\"; }\n\n.la-comment-medical:before {\n    content: \"\\f7f5\"; }\n\n.la-comment-slash:before {\n    content: \"\\f4b3\"; }\n\n.la-comments:before {\n    content: \"\\f086\"; }\n\n.la-comments-dollar:before {\n    content: \"\\f653\"; }\n\n.la-compact-disc:before {\n    content: \"\\f51f\"; }\n\n.la-compass:before {\n    content: \"\\f14e\"; }\n\n.la-compress:before {\n    content: \"\\f066\"; }\n\n.la-compress-alt:before {\n    content: \"\\f422\"; }\n\n.la-compress-arrows-alt:before {\n    content: \"\\f78c\"; }\n\n.la-concierge-bell:before {\n    content: \"\\f562\"; }\n\n.la-confluence:before {\n    content: \"\\f78d\"; }\n\n.la-connectdevelop:before {\n    content: \"\\f20e\"; }\n\n.la-contao:before {\n    content: \"\\f26d\"; }\n\n.la-cookie:before {\n    content: \"\\f563\"; }\n\n.la-cookie-bite:before {\n    content: \"\\f564\"; }\n\n.la-copy:before {\n    content: \"\\f0c5\"; }\n\n.la-copyright:before {\n    content: \"\\f1f9\"; }\n\n.la-cotton-bureau:before {\n    content: \"\\f89e\"; }\n\n.la-couch:before {\n    content: \"\\f4b8\"; }\n\n.la-cpanel:before {\n    content: \"\\f388\"; }\n\n.la-creative-commons:before {\n    content: \"\\f25e\"; }\n\n.la-creative-commons-by:before {\n    content: \"\\f4e7\"; }\n\n.la-creative-commons-nc:before {\n    content: \"\\f4e8\"; }\n\n.la-creative-commons-nc-eu:before {\n    content: \"\\f4e9\"; }\n\n.la-creative-commons-nc-jp:before {\n    content: \"\\f4ea\"; }\n\n.la-creative-commons-nd:before {\n    content: \"\\f4eb\"; }\n\n.la-creative-commons-pd:before {\n    content: \"\\f4ec\"; }\n\n.la-creative-commons-pd-alt:before {\n    content: \"\\f4ed\"; }\n\n.la-creative-commons-remix:before {\n    content: \"\\f4ee\"; }\n\n.la-creative-commons-sa:before {\n    content: \"\\f4ef\"; }\n\n.la-creative-commons-sampling:before {\n    content: \"\\f4f0\"; }\n\n.la-creative-commons-sampling-plus:before {\n    content: \"\\f4f1\"; }\n\n.la-creative-commons-share:before {\n    content: \"\\f4f2\"; }\n\n.la-creative-commons-zero:before {\n    content: \"\\f4f3\"; }\n\n.la-credit-card:before {\n    content: \"\\f09d\"; }\n\n.la-critical-role:before {\n    content: \"\\f6c9\"; }\n\n.la-crop:before {\n    content: \"\\f125\"; }\n\n.la-crop-alt:before {\n    content: \"\\f565\"; }\n\n.la-cross:before {\n    content: \"\\f654\"; }\n\n.la-crosshairs:before {\n    content: \"\\f05b\"; }\n\n.la-crow:before {\n    content: \"\\f520\"; }\n\n.la-crown:before {\n    content: \"\\f521\"; }\n\n.la-crutch:before {\n    content: \"\\f7f7\"; }\n\n.la-css3:before {\n    content: \"\\f13c\"; }\n\n.la-css3-alt:before {\n    content: \"\\f38b\"; }\n\n.la-cube:before {\n    content: \"\\f1b2\"; }\n\n.la-cubes:before {\n    content: \"\\f1b3\"; }\n\n.la-cut:before {\n    content: \"\\f0c4\"; }\n\n.la-cuttlefish:before {\n    content: \"\\f38c\"; }\n\n.la-d-and-d:before {\n    content: \"\\f38d\"; }\n\n.la-d-and-d-beyond:before {\n    content: \"\\f6ca\"; }\n\n.la-dailymotion:before {\n    content: \"\\e052\"; }\n\n.la-dashcube:before {\n    content: \"\\f210\"; }\n\n.la-database:before {\n    content: \"\\f1c0\"; }\n\n.la-deaf:before {\n    content: \"\\f2a4\"; }\n\n.la-deezer:before {\n    content: \"\\e077\"; }\n\n.la-delicious:before {\n    content: \"\\f1a5\"; }\n\n.la-democrat:before {\n    content: \"\\f747\"; }\n\n.la-deploydog:before {\n    content: \"\\f38e\"; }\n\n.la-deskpro:before {\n    content: \"\\f38f\"; }\n\n.la-desktop:before {\n    content: \"\\f108\"; }\n\n.la-dev:before {\n    content: \"\\f6cc\"; }\n\n.la-deviantart:before {\n    content: \"\\f1bd\"; }\n\n.la-dharmachakra:before {\n    content: \"\\f655\"; }\n\n.la-dhl:before {\n    content: \"\\f790\"; }\n\n.la-diagnoses:before {\n    content: \"\\f470\"; }\n\n.la-diaspora:before {\n    content: \"\\f791\"; }\n\n.la-dice:before {\n    content: \"\\f522\"; }\n\n.la-dice-d20:before {\n    content: \"\\f6cf\"; }\n\n.la-dice-d6:before {\n    content: \"\\f6d1\"; }\n\n.la-dice-five:before {\n    content: \"\\f523\"; }\n\n.la-dice-four:before {\n    content: \"\\f524\"; }\n\n.la-dice-one:before {\n    content: \"\\f525\"; }\n\n.la-dice-six:before {\n    content: \"\\f526\"; }\n\n.la-dice-three:before {\n    content: \"\\f527\"; }\n\n.la-dice-two:before {\n    content: \"\\f528\"; }\n\n.la-digg:before {\n    content: \"\\f1a6\"; }\n\n.la-digital-ocean:before {\n    content: \"\\f391\"; }\n\n.la-digital-tachograph:before {\n    content: \"\\f566\"; }\n\n.la-directions:before {\n    content: \"\\f5eb\"; }\n\n.la-discord:before {\n    content: \"\\f392\"; }\n\n.la-discourse:before {\n    content: \"\\f393\"; }\n\n.la-disease:before {\n    content: \"\\f7fa\"; }\n\n.la-divide:before {\n    content: \"\\f529\"; }\n\n.la-dizzy:before {\n    content: \"\\f567\"; }\n\n.la-dna:before {\n    content: \"\\f471\"; }\n\n.la-dochub:before {\n    content: \"\\f394\"; }\n\n.la-docker:before {\n    content: \"\\f395\"; }\n\n.la-dog:before {\n    content: \"\\f6d3\"; }\n\n.la-dollar-sign:before {\n    content: \"\\f155\"; }\n\n.la-dolly:before {\n    content: \"\\f472\"; }\n\n.la-dolly-flatbed:before {\n    content: \"\\f474\"; }\n\n.la-donate:before {\n    content: \"\\f4b9\"; }\n\n.la-door-closed:before {\n    content: \"\\f52a\"; }\n\n.la-door-open:before {\n    content: \"\\f52b\"; }\n\n.la-dot-circle:before {\n    content: \"\\f192\"; }\n\n.la-dove:before {\n    content: \"\\f4ba\"; }\n\n.la-download:before {\n    content: \"\\f019\"; }\n\n.la-draft2digital:before {\n    content: \"\\f396\"; }\n\n.la-drafting-compass:before {\n    content: \"\\f568\"; }\n\n.la-dragon:before {\n    content: \"\\f6d5\"; }\n\n.la-draw-polygon:before {\n    content: \"\\f5ee\"; }\n\n.la-dribbble:before {\n    content: \"\\f17d\"; }\n\n.la-dribbble-square:before {\n    content: \"\\f397\"; }\n\n.la-dropbox:before {\n    content: \"\\f16b\"; }\n\n.la-drum:before {\n    content: \"\\f569\"; }\n\n.la-drum-steelpan:before {\n    content: \"\\f56a\"; }\n\n.la-drumstick-bite:before {\n    content: \"\\f6d7\"; }\n\n.la-drupal:before {\n    content: \"\\f1a9\"; }\n\n.la-dumbbell:before {\n    content: \"\\f44b\"; }\n\n.la-dumpster:before {\n    content: \"\\f793\"; }\n\n.la-dumpster-fire:before {\n    content: \"\\f794\"; }\n\n.la-dungeon:before {\n    content: \"\\f6d9\"; }\n\n.la-dyalog:before {\n    content: \"\\f399\"; }\n\n.la-earlybirds:before {\n    content: \"\\f39a\"; }\n\n.la-ebay:before {\n    content: \"\\f4f4\"; }\n\n.la-edge:before {\n    content: \"\\f282\"; }\n\n.la-edge-legacy:before {\n    content: \"\\e078\"; }\n\n.la-edit:before {\n    content: \"\\f044\"; }\n\n.la-egg:before {\n    content: \"\\f7fb\"; }\n\n.la-eject:before {\n    content: \"\\f052\"; }\n\n.la-elementor:before {\n    content: \"\\f430\"; }\n\n.la-ellipsis-h:before {\n    content: \"\\f141\"; }\n\n.la-ellipsis-v:before {\n    content: \"\\f142\"; }\n\n.la-ello:before {\n    content: \"\\f5f1\"; }\n\n.la-ember:before {\n    content: \"\\f423\"; }\n\n.la-empire:before {\n    content: \"\\f1d1\"; }\n\n.la-envelope:before {\n    content: \"\\f0e0\"; }\n\n.la-envelope-open:before {\n    content: \"\\f2b6\"; }\n\n.la-envelope-open-text:before {\n    content: \"\\f658\"; }\n\n.la-envelope-square:before {\n    content: \"\\f199\"; }\n\n.la-envira:before {\n    content: \"\\f299\"; }\n\n.la-equals:before {\n    content: \"\\f52c\"; }\n\n.la-eraser:before {\n    content: \"\\f12d\"; }\n\n.la-erlang:before {\n    content: \"\\f39d\"; }\n\n.la-ethereum:before {\n    content: \"\\f42e\"; }\n\n.la-ethernet:before {\n    content: \"\\f796\"; }\n\n.la-etsy:before {\n    content: \"\\f2d7\"; }\n\n.la-euro-sign:before {\n    content: \"\\f153\"; }\n\n.la-evernote:before {\n    content: \"\\f839\"; }\n\n.la-exchange-alt:before {\n    content: \"\\f362\"; }\n\n.la-exclamation:before {\n    content: \"\\f12a\"; }\n\n.la-exclamation-circle:before {\n    content: \"\\f06a\"; }\n\n.la-exclamation-triangle:before {\n    content: \"\\f071\"; }\n\n.la-expand:before {\n    content: \"\\f065\"; }\n\n.la-expand-alt:before {\n    content: \"\\f424\"; }\n\n.la-expand-arrows-alt:before {\n    content: \"\\f31e\"; }\n\n.la-expeditedssl:before {\n    content: \"\\f23e\"; }\n\n.la-external-link-alt:before {\n    content: \"\\f35d\"; }\n\n.la-external-link-square-alt:before {\n    content: \"\\f360\"; }\n\n.la-eye:before {\n    content: \"\\f06e\"; }\n\n.la-eye-dropper:before {\n    content: \"\\f1fb\"; }\n\n.la-eye-slash:before {\n    content: \"\\f070\"; }\n\n.la-facebook:before {\n    content: \"\\f09a\"; }\n\n.la-facebook-f:before {\n    content: \"\\f39e\"; }\n\n.la-facebook-messenger:before {\n    content: \"\\f39f\"; }\n\n.la-facebook-square:before {\n    content: \"\\f082\"; }\n\n.la-fan:before {\n    content: \"\\f863\"; }\n\n.la-fantasy-flight-games:before {\n    content: \"\\f6dc\"; }\n\n.la-fast-backward:before {\n    content: \"\\f049\"; }\n\n.la-fast-forward:before {\n    content: \"\\f050\"; }\n\n.la-faucet:before {\n    content: \"\\e005\"; }\n\n.la-fax:before {\n    content: \"\\f1ac\"; }\n\n.la-feather:before {\n    content: \"\\f52d\"; }\n\n.la-feather-alt:before {\n    content: \"\\f56b\"; }\n\n.la-fedex:before {\n    content: \"\\f797\"; }\n\n.la-fedora:before {\n    content: \"\\f798\"; }\n\n.la-female:before {\n    content: \"\\f182\"; }\n\n.la-fighter-jet:before {\n    content: \"\\f0fb\"; }\n\n.la-figma:before {\n    content: \"\\f799\"; }\n\n.la-file:before {\n    content: \"\\f15b\"; }\n\n.la-file-alt:before {\n    content: \"\\f15c\"; }\n\n.la-file-archive:before {\n    content: \"\\f1c6\"; }\n\n.la-file-audio:before {\n    content: \"\\f1c7\"; }\n\n.la-file-code:before {\n    content: \"\\f1c9\"; }\n\n.la-file-contract:before {\n    content: \"\\f56c\"; }\n\n.la-file-csv:before {\n    content: \"\\f6dd\"; }\n\n.la-file-download:before {\n    content: \"\\f56d\"; }\n\n.la-file-excel:before {\n    content: \"\\f1c3\"; }\n\n.la-file-export:before {\n    content: \"\\f56e\"; }\n\n.la-file-image:before {\n    content: \"\\f1c5\"; }\n\n.la-file-import:before {\n    content: \"\\f56f\"; }\n\n.la-file-invoice:before {\n    content: \"\\f570\"; }\n\n.la-file-invoice-dollar:before {\n    content: \"\\f571\"; }\n\n.la-file-medical:before {\n    content: \"\\f477\"; }\n\n.la-file-medical-alt:before {\n    content: \"\\f478\"; }\n\n.la-file-pdf:before {\n    content: \"\\f1c1\"; }\n\n.la-file-powerpoint:before {\n    content: \"\\f1c4\"; }\n\n.la-file-prescription:before {\n    content: \"\\f572\"; }\n\n.la-file-signature:before {\n    content: \"\\f573\"; }\n\n.la-file-upload:before {\n    content: \"\\f574\"; }\n\n.la-file-video:before {\n    content: \"\\f1c8\"; }\n\n.la-file-word:before {\n    content: \"\\f1c2\"; }\n\n.la-fill:before {\n    content: \"\\f575\"; }\n\n.la-fill-drip:before {\n    content: \"\\f576\"; }\n\n.la-film:before {\n    content: \"\\f008\"; }\n\n.la-filter:before {\n    content: \"\\f0b0\"; }\n\n.la-fingerprint:before {\n    content: \"\\f577\"; }\n\n.la-fire:before {\n    content: \"\\f06d\"; }\n\n.la-fire-alt:before {\n    content: \"\\f7e4\"; }\n\n.la-fire-extinguisher:before {\n    content: \"\\f134\"; }\n\n.la-firefox:before {\n    content: \"\\f269\"; }\n\n.la-firefox-browser:before {\n    content: \"\\e007\"; }\n\n.la-first-aid:before {\n    content: \"\\f479\"; }\n\n.la-first-order:before {\n    content: \"\\f2b0\"; }\n\n.la-first-order-alt:before {\n    content: \"\\f50a\"; }\n\n.la-firstdraft:before {\n    content: \"\\f3a1\"; }\n\n.la-fish:before {\n    content: \"\\f578\"; }\n\n.la-fist-raised:before {\n    content: \"\\f6de\"; }\n\n.la-flag:before {\n    content: \"\\f024\"; }\n\n.la-flag-checkered:before {\n    content: \"\\f11e\"; }\n\n.la-flag-usa:before {\n    content: \"\\f74d\"; }\n\n.la-flask:before {\n    content: \"\\f0c3\"; }\n\n.la-flickr:before {\n    content: \"\\f16e\"; }\n\n.la-flipboard:before {\n    content: \"\\f44d\"; }\n\n.la-flushed:before {\n    content: \"\\f579\"; }\n\n.la-fly:before {\n    content: \"\\f417\"; }\n\n.la-folder:before {\n    content: \"\\f07b\"; }\n\n.la-folder-minus:before {\n    content: \"\\f65d\"; }\n\n.la-folder-open:before {\n    content: \"\\f07c\"; }\n\n.la-folder-plus:before {\n    content: \"\\f65e\"; }\n\n.la-font:before {\n    content: \"\\f031\"; }\n\n.la-font-awesome:before {\n    content: \"\\f2b4\"; }\n\n.la-font-awesome-alt:before {\n    content: \"\\f35c\"; }\n\n.la-font-awesome-flag:before {\n    content: \"\\f425\"; }\n\n.la-font-awesome-logo-full:before {\n    content: \"\\f4e6\"; }\n\n.la-fonticons:before {\n    content: \"\\f280\"; }\n\n.la-fonticons-fi:before {\n    content: \"\\f3a2\"; }\n\n.la-football-ball:before {\n    content: \"\\f44e\"; }\n\n.la-fort-awesome:before {\n    content: \"\\f286\"; }\n\n.la-fort-awesome-alt:before {\n    content: \"\\f3a3\"; }\n\n.la-forumbee:before {\n    content: \"\\f211\"; }\n\n.la-forward:before {\n    content: \"\\f04e\"; }\n\n.la-foursquare:before {\n    content: \"\\f180\"; }\n\n.la-free-code-camp:before {\n    content: \"\\f2c5\"; }\n\n.la-freebsd:before {\n    content: \"\\f3a4\"; }\n\n.la-frog:before {\n    content: \"\\f52e\"; }\n\n.la-frown:before {\n    content: \"\\f119\"; }\n\n.la-frown-open:before {\n    content: \"\\f57a\"; }\n\n.la-fulcrum:before {\n    content: \"\\f50b\"; }\n\n.la-funnel-dollar:before {\n    content: \"\\f662\"; }\n\n.la-futbol:before {\n    content: \"\\f1e3\"; }\n\n.la-galactic-republic:before {\n    content: \"\\f50c\"; }\n\n.la-galactic-senate:before {\n    content: \"\\f50d\"; }\n\n.la-gamepad:before {\n    content: \"\\f11b\"; }\n\n.la-gas-pump:before {\n    content: \"\\f52f\"; }\n\n.la-gavel:before {\n    content: \"\\f0e3\"; }\n\n.la-gem:before {\n    content: \"\\f3a5\"; }\n\n.la-genderless:before {\n    content: \"\\f22d\"; }\n\n.la-get-pocket:before {\n    content: \"\\f265\"; }\n\n.la-gg:before {\n    content: \"\\f260\"; }\n\n.la-gg-circle:before {\n    content: \"\\f261\"; }\n\n.la-ghost:before {\n    content: \"\\f6e2\"; }\n\n.la-gift:before {\n    content: \"\\f06b\"; }\n\n.la-gifts:before {\n    content: \"\\f79c\"; }\n\n.la-git:before {\n    content: \"\\f1d3\"; }\n\n.la-git-alt:before {\n    content: \"\\f841\"; }\n\n.la-git-square:before {\n    content: \"\\f1d2\"; }\n\n.la-github:before {\n    content: \"\\f09b\"; }\n\n.la-github-alt:before {\n    content: \"\\f113\"; }\n\n.la-github-square:before {\n    content: \"\\f092\"; }\n\n.la-gitkraken:before {\n    content: \"\\f3a6\"; }\n\n.la-gitlab:before {\n    content: \"\\f296\"; }\n\n.la-gitter:before {\n    content: \"\\f426\"; }\n\n.la-glass-cheers:before {\n    content: \"\\f79f\"; }\n\n.la-glass-martini:before {\n    content: \"\\f000\"; }\n\n.la-glass-martini-alt:before {\n    content: \"\\f57b\"; }\n\n.la-glass-whiskey:before {\n    content: \"\\f7a0\"; }\n\n.la-glasses:before {\n    content: \"\\f530\"; }\n\n.la-glide:before {\n    content: \"\\f2a5\"; }\n\n.la-glide-g:before {\n    content: \"\\f2a6\"; }\n\n.la-globe:before {\n    content: \"\\f0ac\"; }\n\n.la-globe-africa:before {\n    content: \"\\f57c\"; }\n\n.la-globe-americas:before {\n    content: \"\\f57d\"; }\n\n.la-globe-asia:before {\n    content: \"\\f57e\"; }\n\n.la-globe-europe:before {\n    content: \"\\f7a2\"; }\n\n.la-gofore:before {\n    content: \"\\f3a7\"; }\n\n.la-golf-ball:before {\n    content: \"\\f450\"; }\n\n.la-goodreads:before {\n    content: \"\\f3a8\"; }\n\n.la-goodreads-g:before {\n    content: \"\\f3a9\"; }\n\n.la-google:before {\n    content: \"\\f1a0\"; }\n\n.la-google-drive:before {\n    content: \"\\f3aa\"; }\n\n.la-google-pay:before {\n    content: \"\\e079\"; }\n\n.la-google-play:before {\n    content: \"\\f3ab\"; }\n\n.la-google-plus:before {\n    content: \"\\f2b3\"; }\n\n.la-google-plus-g:before {\n    content: \"\\f0d5\"; }\n\n.la-google-plus-square:before {\n    content: \"\\f0d4\"; }\n\n.la-google-wallet:before {\n    content: \"\\f1ee\"; }\n\n.la-gopuram:before {\n    content: \"\\f664\"; }\n\n.la-graduation-cap:before {\n    content: \"\\f19d\"; }\n\n.la-gratipay:before {\n    content: \"\\f184\"; }\n\n.la-grav:before {\n    content: \"\\f2d6\"; }\n\n.la-greater-than:before {\n    content: \"\\f531\"; }\n\n.la-greater-than-equal:before {\n    content: \"\\f532\"; }\n\n.la-grimace:before {\n    content: \"\\f57f\"; }\n\n.la-grin:before {\n    content: \"\\f580\"; }\n\n.la-grin-alt:before {\n    content: \"\\f581\"; }\n\n.la-grin-beam:before {\n    content: \"\\f582\"; }\n\n.la-grin-beam-sweat:before {\n    content: \"\\f583\"; }\n\n.la-grin-hearts:before {\n    content: \"\\f584\"; }\n\n.la-grin-squint:before {\n    content: \"\\f585\"; }\n\n.la-grin-squint-tears:before {\n    content: \"\\f586\"; }\n\n.la-grin-stars:before {\n    content: \"\\f587\"; }\n\n.la-grin-tears:before {\n    content: \"\\f588\"; }\n\n.la-grin-tongue:before {\n    content: \"\\f589\"; }\n\n.la-grin-tongue-squint:before {\n    content: \"\\f58a\"; }\n\n.la-grin-tongue-wink:before {\n    content: \"\\f58b\"; }\n\n.la-grin-wink:before {\n    content: \"\\f58c\"; }\n\n.la-grip-horizontal:before {\n    content: \"\\f58d\"; }\n\n.la-grip-lines:before {\n    content: \"\\f7a4\"; }\n\n.la-grip-lines-vertical:before {\n    content: \"\\f7a5\"; }\n\n.la-grip-vertical:before {\n    content: \"\\f58e\"; }\n\n.la-gripfire:before {\n    content: \"\\f3ac\"; }\n\n.la-grunt:before {\n    content: \"\\f3ad\"; }\n\n.la-guilded:before {\n    content: \"\\e07e\"; }\n\n.la-guitar:before {\n    content: \"\\f7a6\"; }\n\n.la-gulp:before {\n    content: \"\\f3ae\"; }\n\n.la-h-square:before {\n    content: \"\\f0fd\"; }\n\n.la-hacker-news:before {\n    content: \"\\f1d4\"; }\n\n.la-hacker-news-square:before {\n    content: \"\\f3af\"; }\n\n.la-hackerrank:before {\n    content: \"\\f5f7\"; }\n\n.la-hamburger:before {\n    content: \"\\f805\"; }\n\n.la-hammer:before {\n    content: \"\\f6e3\"; }\n\n.la-hamsa:before {\n    content: \"\\f665\"; }\n\n.la-hand-holding:before {\n    content: \"\\f4bd\"; }\n\n.la-hand-holding-heart:before {\n    content: \"\\f4be\"; }\n\n.la-hand-holding-medical:before {\n    content: \"\\e05c\"; }\n\n.la-hand-holding-usd:before {\n    content: \"\\f4c0\"; }\n\n.la-hand-holding-water:before {\n    content: \"\\f4c1\"; }\n\n.la-hand-lizard:before {\n    content: \"\\f258\"; }\n\n.la-hand-middle-finger:before {\n    content: \"\\f806\"; }\n\n.la-hand-paper:before {\n    content: \"\\f256\"; }\n\n.la-hand-peace:before {\n    content: \"\\f25b\"; }\n\n.la-hand-point-down:before {\n    content: \"\\f0a7\"; }\n\n.la-hand-point-left:before {\n    content: \"\\f0a5\"; }\n\n.la-hand-point-right:before {\n    content: \"\\f0a4\"; }\n\n.la-hand-point-up:before {\n    content: \"\\f0a6\"; }\n\n.la-hand-pointer:before {\n    content: \"\\f25a\"; }\n\n.la-hand-rock:before {\n    content: \"\\f255\"; }\n\n.la-hand-scissors:before {\n    content: \"\\f257\"; }\n\n.la-hand-sparkles:before {\n    content: \"\\e05d\"; }\n\n.la-hand-spock:before {\n    content: \"\\f259\"; }\n\n.la-hands:before {\n    content: \"\\f4c2\"; }\n\n.la-hands-helping:before {\n    content: \"\\f4c4\"; }\n\n.la-hands-wash:before {\n    content: \"\\e05e\"; }\n\n.la-handshake:before {\n    content: \"\\f2b5\"; }\n\n.la-handshake-alt-slash:before {\n    content: \"\\e05f\"; }\n\n.la-handshake-slash:before {\n    content: \"\\e060\"; }\n\n.la-hanukiah:before {\n    content: \"\\f6e6\"; }\n\n.la-hard-hat:before {\n    content: \"\\f807\"; }\n\n.la-hashtag:before {\n    content: \"\\f292\"; }\n\n.la-hat-cowboy:before {\n    content: \"\\f8c0\"; }\n\n.la-hat-cowboy-side:before {\n    content: \"\\f8c1\"; }\n\n.la-hat-wizard:before {\n    content: \"\\f6e8\"; }\n\n.la-hdd:before {\n    content: \"\\f0a0\"; }\n\n.la-head-side-cough:before {\n    content: \"\\e061\"; }\n\n.la-head-side-cough-slash:before {\n    content: \"\\e062\"; }\n\n.la-head-side-mask:before {\n    content: \"\\e063\"; }\n\n.la-head-side-virus:before {\n    content: \"\\e064\"; }\n\n.la-heading:before {\n    content: \"\\f1dc\"; }\n\n.la-headphones:before {\n    content: \"\\f025\"; }\n\n.la-headphones-alt:before {\n    content: \"\\f58f\"; }\n\n.la-headset:before {\n    content: \"\\f590\"; }\n\n.la-heart:before {\n    content: \"\\f004\"; }\n\n.la-heart-broken:before {\n    content: \"\\f7a9\"; }\n\n.la-heartbeat:before {\n    content: \"\\f21e\"; }\n\n.la-helicopter:before {\n    content: \"\\f533\"; }\n\n.la-highlighter:before {\n    content: \"\\f591\"; }\n\n.la-hiking:before {\n    content: \"\\f6ec\"; }\n\n.la-hippo:before {\n    content: \"\\f6ed\"; }\n\n.la-hips:before {\n    content: \"\\f452\"; }\n\n.la-hire-a-helper:before {\n    content: \"\\f3b0\"; }\n\n.la-history:before {\n    content: \"\\f1da\"; }\n\n.la-hive:before {\n    content: \"\\e07f\"; }\n\n.la-hockey-puck:before {\n    content: \"\\f453\"; }\n\n.la-holly-berry:before {\n    content: \"\\f7aa\"; }\n\n.la-home:before {\n    content: \"\\f015\"; }\n\n.la-hooli:before {\n    content: \"\\f427\"; }\n\n.la-hornbill:before {\n    content: \"\\f592\"; }\n\n.la-horse:before {\n    content: \"\\f6f0\"; }\n\n.la-horse-head:before {\n    content: \"\\f7ab\"; }\n\n.la-hospital:before {\n    content: \"\\f0f8\"; }\n\n.la-hospital-alt:before {\n    content: \"\\f47d\"; }\n\n.la-hospital-symbol:before {\n    content: \"\\f47e\"; }\n\n.la-hospital-user:before {\n    content: \"\\f80d\"; }\n\n.la-hot-tub:before {\n    content: \"\\f593\"; }\n\n.la-hotdog:before {\n    content: \"\\f80f\"; }\n\n.la-hotel:before {\n    content: \"\\f594\"; }\n\n.la-hotjar:before {\n    content: \"\\f3b1\"; }\n\n.la-hourglass:before {\n    content: \"\\f254\"; }\n\n.la-hourglass-end:before {\n    content: \"\\f253\"; }\n\n.la-hourglass-half:before {\n    content: \"\\f252\"; }\n\n.la-hourglass-start:before {\n    content: \"\\f251\"; }\n\n.la-house-damage:before {\n    content: \"\\f6f1\"; }\n\n.la-house-user:before {\n    content: \"\\e065\"; }\n\n.la-houzz:before {\n    content: \"\\f27c\"; }\n\n.la-hryvnia:before {\n    content: \"\\f6f2\"; }\n\n.la-html5:before {\n    content: \"\\f13b\"; }\n\n.la-hubspot:before {\n    content: \"\\f3b2\"; }\n\n.la-i-cursor:before {\n    content: \"\\f246\"; }\n\n.la-ice-cream:before {\n    content: \"\\f810\"; }\n\n.la-icicles:before {\n    content: \"\\f7ad\"; }\n\n.la-icons:before {\n    content: \"\\f86d\"; }\n\n.la-id-badge:before {\n    content: \"\\f2c1\"; }\n\n.la-id-card:before {\n    content: \"\\f2c2\"; }\n\n.la-id-card-alt:before {\n    content: \"\\f47f\"; }\n\n.la-ideal:before {\n    content: \"\\e013\"; }\n\n.la-igloo:before {\n    content: \"\\f7ae\"; }\n\n.la-image:before {\n    content: \"\\f03e\"; }\n\n.la-images:before {\n    content: \"\\f302\"; }\n\n.la-imdb:before {\n    content: \"\\f2d8\"; }\n\n.la-inbox:before {\n    content: \"\\f01c\"; }\n\n.la-indent:before {\n    content: \"\\f03c\"; }\n\n.la-industry:before {\n    content: \"\\f275\"; }\n\n.la-infinity:before {\n    content: \"\\f534\"; }\n\n.la-info:before {\n    content: \"\\f129\"; }\n\n.la-info-circle:before {\n    content: \"\\f05a\"; }\n\n.la-innosoft:before {\n    content: \"\\e080\"; }\n\n.la-instagram:before {\n    content: \"\\f16d\"; }\n\n.la-instagram-square:before {\n    content: \"\\e055\"; }\n\n.la-instalod:before {\n    content: \"\\e081\"; }\n\n.la-intercom:before {\n    content: \"\\f7af\"; }\n\n.la-internet-explorer:before {\n    content: \"\\f26b\"; }\n\n.la-invision:before {\n    content: \"\\f7b0\"; }\n\n.la-ioxhost:before {\n    content: \"\\f208\"; }\n\n.la-italic:before {\n    content: \"\\f033\"; }\n\n.la-itch-io:before {\n    content: \"\\f83a\"; }\n\n.la-itunes:before {\n    content: \"\\f3b4\"; }\n\n.la-itunes-note:before {\n    content: \"\\f3b5\"; }\n\n.la-java:before {\n    content: \"\\f4e4\"; }\n\n.la-jedi:before {\n    content: \"\\f669\"; }\n\n.la-jedi-order:before {\n    content: \"\\f50e\"; }\n\n.la-jenkins:before {\n    content: \"\\f3b6\"; }\n\n.la-jira:before {\n    content: \"\\f7b1\"; }\n\n.la-joget:before {\n    content: \"\\f3b7\"; }\n\n.la-joint:before {\n    content: \"\\f595\"; }\n\n.la-joomla:before {\n    content: \"\\f1aa\"; }\n\n.la-journal-whills:before {\n    content: \"\\f66a\"; }\n\n.la-js:before {\n    content: \"\\f3b8\"; }\n\n.la-js-square:before {\n    content: \"\\f3b9\"; }\n\n.la-jsfiddle:before {\n    content: \"\\f1cc\"; }\n\n.la-kaaba:before {\n    content: \"\\f66b\"; }\n\n.la-kaggle:before {\n    content: \"\\f5fa\"; }\n\n.la-key:before {\n    content: \"\\f084\"; }\n\n.la-keybase:before {\n    content: \"\\f4f5\"; }\n\n.la-keyboard:before {\n    content: \"\\f11c\"; }\n\n.la-keycdn:before {\n    content: \"\\f3ba\"; }\n\n.la-khanda:before {\n    content: \"\\f66d\"; }\n\n.la-kickstarter:before {\n    content: \"\\f3bb\"; }\n\n.la-kickstarter-k:before {\n    content: \"\\f3bc\"; }\n\n.la-kiss:before {\n    content: \"\\f596\"; }\n\n.la-kiss-beam:before {\n    content: \"\\f597\"; }\n\n.la-kiss-wink-heart:before {\n    content: \"\\f598\"; }\n\n.la-kiwi-bird:before {\n    content: \"\\f535\"; }\n\n.la-korvue:before {\n    content: \"\\f42f\"; }\n\n.la-landmark:before {\n    content: \"\\f66f\"; }\n\n.la-language:before {\n    content: \"\\f1ab\"; }\n\n.la-laptop:before {\n    content: \"\\f109\"; }\n\n.la-laptop-code:before {\n    content: \"\\f5fc\"; }\n\n.la-laptop-house:before {\n    content: \"\\e066\"; }\n\n.la-laptop-medical:before {\n    content: \"\\f812\"; }\n\n.la-laravel:before {\n    content: \"\\f3bd\"; }\n\n.la-lastfm:before {\n    content: \"\\f202\"; }\n\n.la-lastfm-square:before {\n    content: \"\\f203\"; }\n\n.la-laugh:before {\n    content: \"\\f599\"; }\n\n.la-laugh-beam:before {\n    content: \"\\f59a\"; }\n\n.la-laugh-squint:before {\n    content: \"\\f59b\"; }\n\n.la-laugh-wink:before {\n    content: \"\\f59c\"; }\n\n.la-layer-group:before {\n    content: \"\\f5fd\"; }\n\n.la-leaf:before {\n    content: \"\\f06c\"; }\n\n.la-leanpub:before {\n    content: \"\\f212\"; }\n\n.la-lemon:before {\n    content: \"\\f094\"; }\n\n.la-less:before {\n    content: \"\\f41d\"; }\n\n.la-less-than:before {\n    content: \"\\f536\"; }\n\n.la-less-than-equal:before {\n    content: \"\\f537\"; }\n\n.la-level-down-alt:before {\n    content: \"\\f3be\"; }\n\n.la-level-up-alt:before {\n    content: \"\\f3bf\"; }\n\n.la-life-ring:before {\n    content: \"\\f1cd\"; }\n\n.la-lightbulb:before {\n    content: \"\\f0eb\"; }\n\n.la-line:before {\n    content: \"\\f3c0\"; }\n\n.la-link:before {\n    content: \"\\f0c1\"; }\n\n.la-linkedin:before {\n    content: \"\\f08c\"; }\n\n.la-linkedin-in:before {\n    content: \"\\f0e1\"; }\n\n.la-linode:before {\n    content: \"\\f2b8\"; }\n\n.la-linux:before {\n    content: \"\\f17c\"; }\n\n.la-lira-sign:before {\n    content: \"\\f195\"; }\n\n.la-list:before {\n    content: \"\\f03a\"; }\n\n.la-list-alt:before {\n    content: \"\\f022\"; }\n\n.la-list-ol:before {\n    content: \"\\f0cb\"; }\n\n.la-list-ul:before {\n    content: \"\\f0ca\"; }\n\n.la-location-arrow:before {\n    content: \"\\f124\"; }\n\n.la-lock:before {\n    content: \"\\f023\"; }\n\n.la-lock-open:before {\n    content: \"\\f3c1\"; }\n\n.la-long-arrow-alt-down:before {\n    content: \"\\f309\"; }\n\n.la-long-arrow-alt-left:before {\n    content: \"\\f30a\"; }\n\n.la-long-arrow-alt-right:before {\n    content: \"\\f30b\"; }\n\n.la-long-arrow-alt-up:before {\n    content: \"\\f30c\"; }\n\n.la-low-vision:before {\n    content: \"\\f2a8\"; }\n\n.la-luggage-cart:before {\n    content: \"\\f59d\"; }\n\n.la-lungs:before {\n    content: \"\\f604\"; }\n\n.la-lungs-virus:before {\n    content: \"\\e067\"; }\n\n.la-lyft:before {\n    content: \"\\f3c3\"; }\n\n.la-magento:before {\n    content: \"\\f3c4\"; }\n\n.la-magic:before {\n    content: \"\\f0d0\"; }\n\n.la-magnet:before {\n    content: \"\\f076\"; }\n\n.la-mail-bulk:before {\n    content: \"\\f674\"; }\n\n.la-mailchimp:before {\n    content: \"\\f59e\"; }\n\n.la-male:before {\n    content: \"\\f183\"; }\n\n.la-mandalorian:before {\n    content: \"\\f50f\"; }\n\n.la-map:before {\n    content: \"\\f279\"; }\n\n.la-map-marked:before {\n    content: \"\\f59f\"; }\n\n.la-map-marked-alt:before {\n    content: \"\\f5a0\"; }\n\n.la-map-marker:before {\n    content: \"\\f041\"; }\n\n.la-map-marker-alt:before {\n    content: \"\\f3c5\"; }\n\n.la-map-pin:before {\n    content: \"\\f276\"; }\n\n.la-map-signs:before {\n    content: \"\\f277\"; }\n\n.la-markdown:before {\n    content: \"\\f60f\"; }\n\n.la-marker:before {\n    content: \"\\f5a1\"; }\n\n.la-mars:before {\n    content: \"\\f222\"; }\n\n.la-mars-double:before {\n    content: \"\\f227\"; }\n\n.la-mars-stroke:before {\n    content: \"\\f229\"; }\n\n.la-mars-stroke-h:before {\n    content: \"\\f22b\"; }\n\n.la-mars-stroke-v:before {\n    content: \"\\f22a\"; }\n\n.la-mask:before {\n    content: \"\\f6fa\"; }\n\n.la-mastodon:before {\n    content: \"\\f4f6\"; }\n\n.la-maxcdn:before {\n    content: \"\\f136\"; }\n\n.la-mdb:before {\n    content: \"\\f8ca\"; }\n\n.la-medal:before {\n    content: \"\\f5a2\"; }\n\n.la-medapps:before {\n    content: \"\\f3c6\"; }\n\n.la-medium:before {\n    content: \"\\f23a\"; }\n\n.la-medium-m:before {\n    content: \"\\f3c7\"; }\n\n.la-medkit:before {\n    content: \"\\f0fa\"; }\n\n.la-medrt:before {\n    content: \"\\f3c8\"; }\n\n.la-meetup:before {\n    content: \"\\f2e0\"; }\n\n.la-megaport:before {\n    content: \"\\f5a3\"; }\n\n.la-meh:before {\n    content: \"\\f11a\"; }\n\n.la-meh-blank:before {\n    content: \"\\f5a4\"; }\n\n.la-meh-rolling-eyes:before {\n    content: \"\\f5a5\"; }\n\n.la-memory:before {\n    content: \"\\f538\"; }\n\n.la-mendeley:before {\n    content: \"\\f7b3\"; }\n\n.la-menorah:before {\n    content: \"\\f676\"; }\n\n.la-mercury:before {\n    content: \"\\f223\"; }\n\n.la-meteor:before {\n    content: \"\\f753\"; }\n\n.la-microblog:before {\n    content: \"\\e01a\"; }\n\n.la-microchip:before {\n    content: \"\\f2db\"; }\n\n.la-microphone:before {\n    content: \"\\f130\"; }\n\n.la-microphone-alt:before {\n    content: \"\\f3c9\"; }\n\n.la-microphone-alt-slash:before {\n    content: \"\\f539\"; }\n\n.la-microphone-slash:before {\n    content: \"\\f131\"; }\n\n.la-microscope:before {\n    content: \"\\f610\"; }\n\n.la-microsoft:before {\n    content: \"\\f3ca\"; }\n\n.la-minus:before {\n    content: \"\\f068\"; }\n\n.la-minus-circle:before {\n    content: \"\\f056\"; }\n\n.la-minus-square:before {\n    content: \"\\f146\"; }\n\n.la-mitten:before {\n    content: \"\\f7b5\"; }\n\n.la-mix:before {\n    content: \"\\f3cb\"; }\n\n.la-mixcloud:before {\n    content: \"\\f289\"; }\n\n.la-mixer:before {\n    content: \"\\e056\"; }\n\n.la-mizuni:before {\n    content: \"\\f3cc\"; }\n\n.la-mobile:before {\n    content: \"\\f10b\"; }\n\n.la-mobile-alt:before {\n    content: \"\\f3cd\"; }\n\n.la-modx:before {\n    content: \"\\f285\"; }\n\n.la-monero:before {\n    content: \"\\f3d0\"; }\n\n.la-money-bill:before {\n    content: \"\\f0d6\"; }\n\n.la-money-bill-alt:before {\n    content: \"\\f3d1\"; }\n\n.la-money-bill-wave:before {\n    content: \"\\f53a\"; }\n\n.la-money-bill-wave-alt:before {\n    content: \"\\f53b\"; }\n\n.la-money-check:before {\n    content: \"\\f53c\"; }\n\n.la-money-check-alt:before {\n    content: \"\\f53d\"; }\n\n.la-monument:before {\n    content: \"\\f5a6\"; }\n\n.la-moon:before {\n    content: \"\\f186\"; }\n\n.la-mortar-pestle:before {\n    content: \"\\f5a7\"; }\n\n.la-mosque:before {\n    content: \"\\f678\"; }\n\n.la-motorcycle:before {\n    content: \"\\f21c\"; }\n\n.la-mountain:before {\n    content: \"\\f6fc\"; }\n\n.la-mouse:before {\n    content: \"\\f8cc\"; }\n\n.la-mouse-pointer:before {\n    content: \"\\f245\"; }\n\n.la-mug-hot:before {\n    content: \"\\f7b6\"; }\n\n.la-music:before {\n    content: \"\\f001\"; }\n\n.la-napster:before {\n    content: \"\\f3d2\"; }\n\n.la-neos:before {\n    content: \"\\f612\"; }\n\n.la-network-wired:before {\n    content: \"\\f6ff\"; }\n\n.la-neuter:before {\n    content: \"\\f22c\"; }\n\n.la-newspaper:before {\n    content: \"\\f1ea\"; }\n\n.la-nimblr:before {\n    content: \"\\f5a8\"; }\n\n.la-node:before {\n    content: \"\\f419\"; }\n\n.la-node-js:before {\n    content: \"\\f3d3\"; }\n\n.la-not-equal:before {\n    content: \"\\f53e\"; }\n\n.la-notes-medical:before {\n    content: \"\\f481\"; }\n\n.la-npm:before {\n    content: \"\\f3d4\"; }\n\n.la-ns8:before {\n    content: \"\\f3d5\"; }\n\n.la-nutritionix:before {\n    content: \"\\f3d6\"; }\n\n.la-object-group:before {\n    content: \"\\f247\"; }\n\n.la-object-ungroup:before {\n    content: \"\\f248\"; }\n\n.la-octopus-deploy:before {\n    content: \"\\e082\"; }\n\n.la-odnoklassniki:before {\n    content: \"\\f263\"; }\n\n.la-odnoklassniki-square:before {\n    content: \"\\f264\"; }\n\n.la-oil-can:before {\n    content: \"\\f613\"; }\n\n.la-old-republic:before {\n    content: \"\\f510\"; }\n\n.la-om:before {\n    content: \"\\f679\"; }\n\n.la-opencart:before {\n    content: \"\\f23d\"; }\n\n.la-openid:before {\n    content: \"\\f19b\"; }\n\n.la-opera:before {\n    content: \"\\f26a\"; }\n\n.la-optin-monster:before {\n    content: \"\\f23c\"; }\n\n.la-orcid:before {\n    content: \"\\f8d2\"; }\n\n.la-osi:before {\n    content: \"\\f41a\"; }\n\n.la-otter:before {\n    content: \"\\f700\"; }\n\n.la-outdent:before {\n    content: \"\\f03b\"; }\n\n.la-page4:before {\n    content: \"\\f3d7\"; }\n\n.la-pagelines:before {\n    content: \"\\f18c\"; }\n\n.la-pager:before {\n    content: \"\\f815\"; }\n\n.la-paint-brush:before {\n    content: \"\\f1fc\"; }\n\n.la-paint-roller:before {\n    content: \"\\f5aa\"; }\n\n.la-palette:before {\n    content: \"\\f53f\"; }\n\n.la-palfed:before {\n    content: \"\\f3d8\"; }\n\n.la-pallet:before {\n    content: \"\\f482\"; }\n\n.la-paper-plane:before {\n    content: \"\\f1d8\"; }\n\n.la-paperclip:before {\n    content: \"\\f0c6\"; }\n\n.la-parachute-box:before {\n    content: \"\\f4cd\"; }\n\n.la-paragraph:before {\n    content: \"\\f1dd\"; }\n\n.la-parking:before {\n    content: \"\\f540\"; }\n\n.la-passport:before {\n    content: \"\\f5ab\"; }\n\n.la-pastafarianism:before {\n    content: \"\\f67b\"; }\n\n.la-paste:before {\n    content: \"\\f0ea\"; }\n\n.la-patreon:before {\n    content: \"\\f3d9\"; }\n\n.la-pause:before {\n    content: \"\\f04c\"; }\n\n.la-pause-circle:before {\n    content: \"\\f28b\"; }\n\n.la-paw:before {\n    content: \"\\f1b0\"; }\n\n.la-paypal:before {\n    content: \"\\f1ed\"; }\n\n.la-peace:before {\n    content: \"\\f67c\"; }\n\n.la-pen:before {\n    content: \"\\f304\"; }\n\n.la-pen-alt:before {\n    content: \"\\f305\"; }\n\n.la-pen-fancy:before {\n    content: \"\\f5ac\"; }\n\n.la-pen-nib:before {\n    content: \"\\f5ad\"; }\n\n.la-pen-square:before {\n    content: \"\\f14b\"; }\n\n.la-pencil-alt:before {\n    content: \"\\f303\"; }\n\n.la-pencil-ruler:before {\n    content: \"\\f5ae\"; }\n\n.la-penny-arcade:before {\n    content: \"\\f704\"; }\n\n.la-people-arrows:before {\n    content: \"\\e068\"; }\n\n.la-people-carry:before {\n    content: \"\\f4ce\"; }\n\n.la-pepper-hot:before {\n    content: \"\\f816\"; }\n\n.la-perbyte:before {\n    content: \"\\e083\"; }\n\n.la-percent:before {\n    content: \"\\f295\"; }\n\n.la-percentage:before {\n    content: \"\\f541\"; }\n\n.la-periscope:before {\n    content: \"\\f3da\"; }\n\n.la-person-booth:before {\n    content: \"\\f756\"; }\n\n.la-phabricator:before {\n    content: \"\\f3db\"; }\n\n.la-phoenix-framework:before {\n    content: \"\\f3dc\"; }\n\n.la-phoenix-squadron:before {\n    content: \"\\f511\"; }\n\n.la-phone:before {\n    content: \"\\f095\"; }\n\n.la-phone-alt:before {\n    content: \"\\f879\"; }\n\n.la-phone-slash:before {\n    content: \"\\f3dd\"; }\n\n.la-phone-square:before {\n    content: \"\\f098\"; }\n\n.la-phone-square-alt:before {\n    content: \"\\f87b\"; }\n\n.la-phone-volume:before {\n    content: \"\\f2a0\"; }\n\n.la-photo-video:before {\n    content: \"\\f87c\"; }\n\n.la-php:before {\n    content: \"\\f457\"; }\n\n.la-pied-piper:before {\n    content: \"\\f2ae\"; }\n\n.la-pied-piper-alt:before {\n    content: \"\\f1a8\"; }\n\n.la-pied-piper-hat:before {\n    content: \"\\f4e5\"; }\n\n.la-pied-piper-pp:before {\n    content: \"\\f1a7\"; }\n\n.la-pied-piper-square:before {\n    content: \"\\e01e\"; }\n\n.la-piggy-bank:before {\n    content: \"\\f4d3\"; }\n\n.la-pills:before {\n    content: \"\\f484\"; }\n\n.la-pinterest:before {\n    content: \"\\f0d2\"; }\n\n.la-pinterest-p:before {\n    content: \"\\f231\"; }\n\n.la-pinterest-square:before {\n    content: \"\\f0d3\"; }\n\n.la-pizza-slice:before {\n    content: \"\\f818\"; }\n\n.la-place-of-worship:before {\n    content: \"\\f67f\"; }\n\n.la-plane:before {\n    content: \"\\f072\"; }\n\n.la-plane-arrival:before {\n    content: \"\\f5af\"; }\n\n.la-plane-departure:before {\n    content: \"\\f5b0\"; }\n\n.la-plane-slash:before {\n    content: \"\\e069\"; }\n\n.la-play:before {\n    content: \"\\f04b\"; }\n\n.la-play-circle:before {\n    content: \"\\f144\"; }\n\n.la-playstation:before {\n    content: \"\\f3df\"; }\n\n.la-plug:before {\n    content: \"\\f1e6\"; }\n\n.la-plus:before {\n    content: \"\\f067\"; }\n\n.la-plus-circle:before {\n    content: \"\\f055\"; }\n\n.la-plus-square:before {\n    content: \"\\f0fe\"; }\n\n.la-podcast:before {\n    content: \"\\f2ce\"; }\n\n.la-poll:before {\n    content: \"\\f681\"; }\n\n.la-poll-h:before {\n    content: \"\\f682\"; }\n\n.la-poo:before {\n    content: \"\\f2fe\"; }\n\n.la-poo-storm:before {\n    content: \"\\f75a\"; }\n\n.la-poop:before {\n    content: \"\\f619\"; }\n\n.la-portrait:before {\n    content: \"\\f3e0\"; }\n\n.la-pound-sign:before {\n    content: \"\\f154\"; }\n\n.la-power-off:before {\n    content: \"\\f011\"; }\n\n.la-pray:before {\n    content: \"\\f683\"; }\n\n.la-praying-hands:before {\n    content: \"\\f684\"; }\n\n.la-prescription:before {\n    content: \"\\f5b1\"; }\n\n.la-prescription-bottle:before {\n    content: \"\\f485\"; }\n\n.la-prescription-bottle-alt:before {\n    content: \"\\f486\"; }\n\n.la-print:before {\n    content: \"\\f02f\"; }\n\n.la-procedures:before {\n    content: \"\\f487\"; }\n\n.la-product-hunt:before {\n    content: \"\\f288\"; }\n\n.la-project-diagram:before {\n    content: \"\\f542\"; }\n\n.la-pump-medical:before {\n    content: \"\\e06a\"; }\n\n.la-pump-soap:before {\n    content: \"\\e06b\"; }\n\n.la-pushed:before {\n    content: \"\\f3e1\"; }\n\n.la-puzzle-piece:before {\n    content: \"\\f12e\"; }\n\n.la-python:before {\n    content: \"\\f3e2\"; }\n\n.la-qq:before {\n    content: \"\\f1d6\"; }\n\n.la-qrcode:before {\n    content: \"\\f029\"; }\n\n.la-question:before {\n    content: \"\\f128\"; }\n\n.la-question-circle:before {\n    content: \"\\f059\"; }\n\n.la-quidditch:before {\n    content: \"\\f458\"; }\n\n.la-quinscape:before {\n    content: \"\\f459\"; }\n\n.la-quora:before {\n    content: \"\\f2c4\"; }\n\n.la-quote-left:before {\n    content: \"\\f10d\"; }\n\n.la-quote-right:before {\n    content: \"\\f10e\"; }\n\n.la-quran:before {\n    content: \"\\f687\"; }\n\n.la-r-project:before {\n    content: \"\\f4f7\"; }\n\n.la-radiation:before {\n    content: \"\\f7b9\"; }\n\n.la-radiation-alt:before {\n    content: \"\\f7ba\"; }\n\n.la-rainbow:before {\n    content: \"\\f75b\"; }\n\n.la-random:before {\n    content: \"\\f074\"; }\n\n.la-raspberry-pi:before {\n    content: \"\\f7bb\"; }\n\n.la-ravelry:before {\n    content: \"\\f2d9\"; }\n\n.la-react:before {\n    content: \"\\f41b\"; }\n\n.la-reacteurope:before {\n    content: \"\\f75d\"; }\n\n.la-readme:before {\n    content: \"\\f4d5\"; }\n\n.la-rebel:before {\n    content: \"\\f1d0\"; }\n\n.la-receipt:before {\n    content: \"\\f543\"; }\n\n.la-record-vinyl:before {\n    content: \"\\f8d9\"; }\n\n.la-recycle:before {\n    content: \"\\f1b8\"; }\n\n.la-red-river:before {\n    content: \"\\f3e3\"; }\n\n.la-reddit:before {\n    content: \"\\f1a1\"; }\n\n.la-reddit-alien:before {\n    content: \"\\f281\"; }\n\n.la-reddit-square:before {\n    content: \"\\f1a2\"; }\n\n.la-redhat:before {\n    content: \"\\f7bc\"; }\n\n.la-redo:before {\n    content: \"\\f01e\"; }\n\n.la-redo-alt:before {\n    content: \"\\f2f9\"; }\n\n.la-registered:before {\n    content: \"\\f25d\"; }\n\n.la-remove-format:before {\n    content: \"\\f87d\"; }\n\n.la-renren:before {\n    content: \"\\f18b\"; }\n\n.la-reply:before {\n    content: \"\\f3e5\"; }\n\n.la-reply-all:before {\n    content: \"\\f122\"; }\n\n.la-replyd:before {\n    content: \"\\f3e6\"; }\n\n.la-republican:before {\n    content: \"\\f75e\"; }\n\n.la-researchgate:before {\n    content: \"\\f4f8\"; }\n\n.la-resolving:before {\n    content: \"\\f3e7\"; }\n\n.la-restroom:before {\n    content: \"\\f7bd\"; }\n\n.la-retweet:before {\n    content: \"\\f079\"; }\n\n.la-rev:before {\n    content: \"\\f5b2\"; }\n\n.la-ribbon:before {\n    content: \"\\f4d6\"; }\n\n.la-ring:before {\n    content: \"\\f70b\"; }\n\n.la-road:before {\n    content: \"\\f018\"; }\n\n.la-robot:before {\n    content: \"\\f544\"; }\n\n.la-rocket:before {\n    content: \"\\f135\"; }\n\n.la-rocketchat:before {\n    content: \"\\f3e8\"; }\n\n.la-rockrms:before {\n    content: \"\\f3e9\"; }\n\n.la-route:before {\n    content: \"\\f4d7\"; }\n\n.la-rss:before {\n    content: \"\\f09e\"; }\n\n.la-rss-square:before {\n    content: \"\\f143\"; }\n\n.la-ruble-sign:before {\n    content: \"\\f158\"; }\n\n.la-ruler:before {\n    content: \"\\f545\"; }\n\n.la-ruler-combined:before {\n    content: \"\\f546\"; }\n\n.la-ruler-horizontal:before {\n    content: \"\\f547\"; }\n\n.la-ruler-vertical:before {\n    content: \"\\f548\"; }\n\n.la-running:before {\n    content: \"\\f70c\"; }\n\n.la-rupee-sign:before {\n    content: \"\\f156\"; }\n\n.la-rust:before {\n    content: \"\\e07a\"; }\n\n.la-sad-cry:before {\n    content: \"\\f5b3\"; }\n\n.la-sad-tear:before {\n    content: \"\\f5b4\"; }\n\n.la-safari:before {\n    content: \"\\f267\"; }\n\n.la-salesforce:before {\n    content: \"\\f83b\"; }\n\n.la-sass:before {\n    content: \"\\f41e\"; }\n\n.la-satellite:before {\n    content: \"\\f7bf\"; }\n\n.la-satellite-dish:before {\n    content: \"\\f7c0\"; }\n\n.la-save:before {\n    content: \"\\f0c7\"; }\n\n.la-schlix:before {\n    content: \"\\f3ea\"; }\n\n.la-school:before {\n    content: \"\\f549\"; }\n\n.la-screwdriver:before {\n    content: \"\\f54a\"; }\n\n.la-scribd:before {\n    content: \"\\f28a\"; }\n\n.la-scroll:before {\n    content: \"\\f70e\"; }\n\n.la-sd-card:before {\n    content: \"\\f7c2\"; }\n\n.la-search:before {\n    content: \"\\f002\"; }\n\n.la-search-dollar:before {\n    content: \"\\f688\"; }\n\n.la-search-location:before {\n    content: \"\\f689\"; }\n\n.la-search-minus:before {\n    content: \"\\f010\"; }\n\n.la-search-plus:before {\n    content: \"\\f00e\"; }\n\n.la-searchengin:before {\n    content: \"\\f3eb\"; }\n\n.la-seedling:before {\n    content: \"\\f4d8\"; }\n\n.la-sellcast:before {\n    content: \"\\f2da\"; }\n\n.la-sellsy:before {\n    content: \"\\f213\"; }\n\n.la-server:before {\n    content: \"\\f233\"; }\n\n.la-servicestack:before {\n    content: \"\\f3ec\"; }\n\n.la-shapes:before {\n    content: \"\\f61f\"; }\n\n.la-share:before {\n    content: \"\\f064\"; }\n\n.la-share-alt:before {\n    content: \"\\f1e0\"; }\n\n.la-share-alt-square:before {\n    content: \"\\f1e1\"; }\n\n.la-share-square:before {\n    content: \"\\f14d\"; }\n\n.la-shekel-sign:before {\n    content: \"\\f20b\"; }\n\n.la-shield-alt:before {\n    content: \"\\f3ed\"; }\n\n.la-shield-virus:before {\n    content: \"\\e06c\"; }\n\n.la-ship:before {\n    content: \"\\f21a\"; }\n\n.la-shipping-fast:before {\n    content: \"\\f48b\"; }\n\n.la-shirtsinbulk:before {\n    content: \"\\f214\"; }\n\n.la-shoe-prints:before {\n    content: \"\\f54b\"; }\n\n.la-shopify:before {\n    content: \"\\e057\"; }\n\n.la-shopping-bag:before {\n    content: \"\\f290\"; }\n\n.la-shopping-basket:before {\n    content: \"\\f291\"; }\n\n.la-shopping-cart:before {\n    content: \"\\f07a\"; }\n\n.la-shopware:before {\n    content: \"\\f5b5\"; }\n\n.la-shower:before {\n    content: \"\\f2cc\"; }\n\n.la-shuttle-van:before {\n    content: \"\\f5b6\"; }\n\n.la-sign:before {\n    content: \"\\f4d9\"; }\n\n.la-sign-in-alt:before {\n    content: \"\\f2f6\"; }\n\n.la-sign-language:before {\n    content: \"\\f2a7\"; }\n\n.la-sign-out-alt:before {\n    content: \"\\f2f5\"; }\n\n.la-signal:before {\n    content: \"\\f012\"; }\n\n.la-signature:before {\n    content: \"\\f5b7\"; }\n\n.la-sim-card:before {\n    content: \"\\f7c4\"; }\n\n.la-simplybuilt:before {\n    content: \"\\f215\"; }\n\n.la-sink:before {\n    content: \"\\e06d\"; }\n\n.la-sistrix:before {\n    content: \"\\f3ee\"; }\n\n.la-sitemap:before {\n    content: \"\\f0e8\"; }\n\n.la-sith:before {\n    content: \"\\f512\"; }\n\n.la-skating:before {\n    content: \"\\f7c5\"; }\n\n.la-sketch:before {\n    content: \"\\f7c6\"; }\n\n.la-skiing:before {\n    content: \"\\f7c9\"; }\n\n.la-skiing-nordic:before {\n    content: \"\\f7ca\"; }\n\n.la-skull:before {\n    content: \"\\f54c\"; }\n\n.la-skull-crossbones:before {\n    content: \"\\f714\"; }\n\n.la-skyatlas:before {\n    content: \"\\f216\"; }\n\n.la-skype:before {\n    content: \"\\f17e\"; }\n\n.la-slack:before {\n    content: \"\\f198\"; }\n\n.la-slack-hash:before {\n    content: \"\\f3ef\"; }\n\n.la-slash:before {\n    content: \"\\f715\"; }\n\n.la-sleigh:before {\n    content: \"\\f7cc\"; }\n\n.la-sliders-h:before {\n    content: \"\\f1de\"; }\n\n.la-slideshare:before {\n    content: \"\\f1e7\"; }\n\n.la-smile:before {\n    content: \"\\f118\"; }\n\n.la-smile-beam:before {\n    content: \"\\f5b8\"; }\n\n.la-smile-wink:before {\n    content: \"\\f4da\"; }\n\n.la-smog:before {\n    content: \"\\f75f\"; }\n\n.la-smoking:before {\n    content: \"\\f48d\"; }\n\n.la-smoking-ban:before {\n    content: \"\\f54d\"; }\n\n.la-sms:before {\n    content: \"\\f7cd\"; }\n\n.la-snapchat:before {\n    content: \"\\f2ab\"; }\n\n.la-snapchat-ghost:before {\n    content: \"\\f2ac\"; }\n\n.la-snapchat-square:before {\n    content: \"\\f2ad\"; }\n\n.la-snowboarding:before {\n    content: \"\\f7ce\"; }\n\n.la-snowflake:before {\n    content: \"\\f2dc\"; }\n\n.la-snowman:before {\n    content: \"\\f7d0\"; }\n\n.la-snowplow:before {\n    content: \"\\f7d2\"; }\n\n.la-soap:before {\n    content: \"\\e06e\"; }\n\n.la-socks:before {\n    content: \"\\f696\"; }\n\n.la-solar-panel:before {\n    content: \"\\f5ba\"; }\n\n.la-sort:before {\n    content: \"\\f0dc\"; }\n\n.la-sort-alpha-down:before {\n    content: \"\\f15d\"; }\n\n.la-sort-alpha-down-alt:before {\n    content: \"\\f881\"; }\n\n.la-sort-alpha-up:before {\n    content: \"\\f15e\"; }\n\n.la-sort-alpha-up-alt:before {\n    content: \"\\f882\"; }\n\n.la-sort-amount-down:before {\n    content: \"\\f160\"; }\n\n.la-sort-amount-down-alt:before {\n    content: \"\\f884\"; }\n\n.la-sort-amount-up:before {\n    content: \"\\f161\"; }\n\n.la-sort-amount-up-alt:before {\n    content: \"\\f885\"; }\n\n.la-sort-down:before {\n    content: \"\\f0dd\"; }\n\n.la-sort-numeric-down:before {\n    content: \"\\f162\"; }\n\n.la-sort-numeric-down-alt:before {\n    content: \"\\f886\"; }\n\n.la-sort-numeric-up:before {\n    content: \"\\f163\"; }\n\n.la-sort-numeric-up-alt:before {\n    content: \"\\f887\"; }\n\n.la-sort-up:before {\n    content: \"\\f0de\"; }\n\n.la-soundcloud:before {\n    content: \"\\f1be\"; }\n\n.la-sourcetree:before {\n    content: \"\\f7d3\"; }\n\n.la-spa:before {\n    content: \"\\f5bb\"; }\n\n.la-space-shuttle:before {\n    content: \"\\f197\"; }\n\n.la-speakap:before {\n    content: \"\\f3f3\"; }\n\n.la-speaker-deck:before {\n    content: \"\\f83c\"; }\n\n.la-spell-check:before {\n    content: \"\\f891\"; }\n\n.la-spider:before {\n    content: \"\\f717\"; }\n\n.la-spinner:before {\n    content: \"\\f110\"; }\n\n.la-splotch:before {\n    content: \"\\f5bc\"; }\n\n.la-spotify:before {\n    content: \"\\f1bc\"; }\n\n.la-spray-can:before {\n    content: \"\\f5bd\"; }\n\n.la-square:before {\n    content: \"\\f0c8\"; }\n\n.la-square-full:before {\n    content: \"\\f45c\"; }\n\n.la-square-root-alt:before {\n    content: \"\\f698\"; }\n\n.la-squarespace:before {\n    content: \"\\f5be\"; }\n\n.la-stack-exchange:before {\n    content: \"\\f18d\"; }\n\n.la-stack-overflow:before {\n    content: \"\\f16c\"; }\n\n.la-stackpath:before {\n    content: \"\\f842\"; }\n\n.la-stamp:before {\n    content: \"\\f5bf\"; }\n\n.la-star:before {\n    content: \"\\f005\"; }\n\n.la-star-and-crescent:before {\n    content: \"\\f699\"; }\n\n.la-star-half:before {\n    content: \"\\f089\"; }\n\n.la-star-half-alt:before {\n    content: \"\\f5c0\"; }\n\n.la-star-of-david:before {\n    content: \"\\f69a\"; }\n\n.la-star-of-life:before {\n    content: \"\\f621\"; }\n\n.la-staylinked:before {\n    content: \"\\f3f5\"; }\n\n.la-steam:before {\n    content: \"\\f1b6\"; }\n\n.la-steam-square:before {\n    content: \"\\f1b7\"; }\n\n.la-steam-symbol:before {\n    content: \"\\f3f6\"; }\n\n.la-step-backward:before {\n    content: \"\\f048\"; }\n\n.la-step-forward:before {\n    content: \"\\f051\"; }\n\n.la-stethoscope:before {\n    content: \"\\f0f1\"; }\n\n.la-sticker-mule:before {\n    content: \"\\f3f7\"; }\n\n.la-sticky-note:before {\n    content: \"\\f249\"; }\n\n.la-stop:before {\n    content: \"\\f04d\"; }\n\n.la-stop-circle:before {\n    content: \"\\f28d\"; }\n\n.la-stopwatch:before {\n    content: \"\\f2f2\"; }\n\n.la-stopwatch-20:before {\n    content: \"\\e06f\"; }\n\n.la-store:before {\n    content: \"\\f54e\"; }\n\n.la-store-alt:before {\n    content: \"\\f54f\"; }\n\n.la-store-alt-slash:before {\n    content: \"\\e070\"; }\n\n.la-store-slash:before {\n    content: \"\\e071\"; }\n\n.la-strava:before {\n    content: \"\\f428\"; }\n\n.la-stream:before {\n    content: \"\\f550\"; }\n\n.la-street-view:before {\n    content: \"\\f21d\"; }\n\n.la-strikethrough:before {\n    content: \"\\f0cc\"; }\n\n.la-stripe:before {\n    content: \"\\f429\"; }\n\n.la-stripe-s:before {\n    content: \"\\f42a\"; }\n\n.la-stroopwafel:before {\n    content: \"\\f551\"; }\n\n.la-studiovinari:before {\n    content: \"\\f3f8\"; }\n\n.la-stumbleupon:before {\n    content: \"\\f1a4\"; }\n\n.la-stumbleupon-circle:before {\n    content: \"\\f1a3\"; }\n\n.la-subscript:before {\n    content: \"\\f12c\"; }\n\n.la-subway:before {\n    content: \"\\f239\"; }\n\n.la-suitcase:before {\n    content: \"\\f0f2\"; }\n\n.la-suitcase-rolling:before {\n    content: \"\\f5c1\"; }\n\n.la-sun:before {\n    content: \"\\f185\"; }\n\n.la-superpowers:before {\n    content: \"\\f2dd\"; }\n\n.la-superscript:before {\n    content: \"\\f12b\"; }\n\n.la-supple:before {\n    content: \"\\f3f9\"; }\n\n.la-surprise:before {\n    content: \"\\f5c2\"; }\n\n.la-suse:before {\n    content: \"\\f7d6\"; }\n\n.la-swatchbook:before {\n    content: \"\\f5c3\"; }\n\n.la-swift:before {\n    content: \"\\f8e1\"; }\n\n.la-swimmer:before {\n    content: \"\\f5c4\"; }\n\n.la-swimming-pool:before {\n    content: \"\\f5c5\"; }\n\n.la-symfony:before {\n    content: \"\\f83d\"; }\n\n.la-synagogue:before {\n    content: \"\\f69b\"; }\n\n.la-sync:before {\n    content: \"\\f021\"; }\n\n.la-sync-alt:before {\n    content: \"\\f2f1\"; }\n\n.la-syringe:before {\n    content: \"\\f48e\"; }\n\n.la-table:before {\n    content: \"\\f0ce\"; }\n\n.la-table-tennis:before {\n    content: \"\\f45d\"; }\n\n.la-tablet:before {\n    content: \"\\f10a\"; }\n\n.la-tablet-alt:before {\n    content: \"\\f3fa\"; }\n\n.la-tablets:before {\n    content: \"\\f490\"; }\n\n.la-tachometer-alt:before {\n    content: \"\\f3fd\"; }\n\n.la-tag:before {\n    content: \"\\f02b\"; }\n\n.la-tags:before {\n    content: \"\\f02c\"; }\n\n.la-tape:before {\n    content: \"\\f4db\"; }\n\n.la-tasks:before {\n    content: \"\\f0ae\"; }\n\n.la-taxi:before {\n    content: \"\\f1ba\"; }\n\n.la-teamspeak:before {\n    content: \"\\f4f9\"; }\n\n.la-teeth:before {\n    content: \"\\f62e\"; }\n\n.la-teeth-open:before {\n    content: \"\\f62f\"; }\n\n.la-telegram:before {\n    content: \"\\f2c6\"; }\n\n.la-telegram-plane:before {\n    content: \"\\f3fe\"; }\n\n.la-temperature-high:before {\n    content: \"\\f769\"; }\n\n.la-temperature-low:before {\n    content: \"\\f76b\"; }\n\n.la-tencent-weibo:before {\n    content: \"\\f1d5\"; }\n\n.la-tenge:before {\n    content: \"\\f7d7\"; }\n\n.la-terminal:before {\n    content: \"\\f120\"; }\n\n.la-text-height:before {\n    content: \"\\f034\"; }\n\n.la-text-width:before {\n    content: \"\\f035\"; }\n\n.la-th:before {\n    content: \"\\f00a\"; }\n\n.la-th-large:before {\n    content: \"\\f009\"; }\n\n.la-th-list:before {\n    content: \"\\f00b\"; }\n\n.la-the-red-yeti:before {\n    content: \"\\f69d\"; }\n\n.la-theater-masks:before {\n    content: \"\\f630\"; }\n\n.la-themeco:before {\n    content: \"\\f5c6\"; }\n\n.la-themeisle:before {\n    content: \"\\f2b2\"; }\n\n.la-thermometer:before {\n    content: \"\\f491\"; }\n\n.la-thermometer-empty:before {\n    content: \"\\f2cb\"; }\n\n.la-thermometer-full:before {\n    content: \"\\f2c7\"; }\n\n.la-thermometer-half:before {\n    content: \"\\f2c9\"; }\n\n.la-thermometer-quarter:before {\n    content: \"\\f2ca\"; }\n\n.la-thermometer-three-quarters:before {\n    content: \"\\f2c8\"; }\n\n.la-think-peaks:before {\n    content: \"\\f731\"; }\n\n.la-thumbs-down:before {\n    content: \"\\f165\"; }\n\n.la-thumbs-up:before {\n    content: \"\\f164\"; }\n\n.la-thumbtack:before {\n    content: \"\\f08d\"; }\n\n.la-ticket-alt:before {\n    content: \"\\f3ff\"; }\n\n.la-tiktok:before {\n    content: \"\\e07b\"; }\n\n.la-times:before {\n    content: \"\\f00d\"; }\n\n.la-times-circle:before {\n    content: \"\\f057\"; }\n\n.la-tint:before {\n    content: \"\\f043\"; }\n\n.la-tint-slash:before {\n    content: \"\\f5c7\"; }\n\n.la-tired:before {\n    content: \"\\f5c8\"; }\n\n.la-toggle-off:before {\n    content: \"\\f204\"; }\n\n.la-toggle-on:before {\n    content: \"\\f205\"; }\n\n.la-toilet:before {\n    content: \"\\f7d8\"; }\n\n.la-toilet-paper:before {\n    content: \"\\f71e\"; }\n\n.la-toilet-paper-slash:before {\n    content: \"\\e072\"; }\n\n.la-toolbox:before {\n    content: \"\\f552\"; }\n\n.la-tools:before {\n    content: \"\\f7d9\"; }\n\n.la-tooth:before {\n    content: \"\\f5c9\"; }\n\n.la-torah:before {\n    content: \"\\f6a0\"; }\n\n.la-torii-gate:before {\n    content: \"\\f6a1\"; }\n\n.la-tractor:before {\n    content: \"\\f722\"; }\n\n.la-trade-federation:before {\n    content: \"\\f513\"; }\n\n.la-trademark:before {\n    content: \"\\f25c\"; }\n\n.la-traffic-light:before {\n    content: \"\\f637\"; }\n\n.la-trailer:before {\n    content: \"\\e041\"; }\n\n.la-train:before {\n    content: \"\\f238\"; }\n\n.la-tram:before {\n    content: \"\\f7da\"; }\n\n.la-transgender:before {\n    content: \"\\f224\"; }\n\n.la-transgender-alt:before {\n    content: \"\\f225\"; }\n\n.la-trash:before {\n    content: \"\\f1f8\"; }\n\n.la-trash-alt:before {\n    content: \"\\f2ed\"; }\n\n.la-trash-restore:before {\n    content: \"\\f829\"; }\n\n.la-trash-restore-alt:before {\n    content: \"\\f82a\"; }\n\n.la-tree:before {\n    content: \"\\f1bb\"; }\n\n.la-trello:before {\n    content: \"\\f181\"; }\n\n.la-tripadvisor:before {\n    content: \"\\f262\"; }\n\n.la-trophy:before {\n    content: \"\\f091\"; }\n\n.la-truck:before {\n    content: \"\\f0d1\"; }\n\n.la-truck-loading:before {\n    content: \"\\f4de\"; }\n\n.la-truck-monster:before {\n    content: \"\\f63b\"; }\n\n.la-truck-moving:before {\n    content: \"\\f4df\"; }\n\n.la-truck-pickup:before {\n    content: \"\\f63c\"; }\n\n.la-tshirt:before {\n    content: \"\\f553\"; }\n\n.la-tty:before {\n    content: \"\\f1e4\"; }\n\n.la-tumblr:before {\n    content: \"\\f173\"; }\n\n.la-tumblr-square:before {\n    content: \"\\f174\"; }\n\n.la-tv:before {\n    content: \"\\f26c\"; }\n\n.la-twitch:before {\n    content: \"\\f1e8\"; }\n\n.la-twitter:before {\n    content: \"\\f099\"; }\n\n.la-twitter-square:before {\n    content: \"\\f081\"; }\n\n.la-typo3:before {\n    content: \"\\f42b\"; }\n\n.la-uber:before {\n    content: \"\\f402\"; }\n\n.la-ubuntu:before {\n    content: \"\\f7df\"; }\n\n.la-uikit:before {\n    content: \"\\f403\"; }\n\n.la-umbraco:before {\n    content: \"\\f8e8\"; }\n\n.la-umbrella:before {\n    content: \"\\f0e9\"; }\n\n.la-umbrella-beach:before {\n    content: \"\\f5ca\"; }\n\n.la-uncharted:before {\n    content: \"\\e084\"; }\n\n.la-underline:before {\n    content: \"\\f0cd\"; }\n\n.la-undo:before {\n    content: \"\\f0e2\"; }\n\n.la-undo-alt:before {\n    content: \"\\f2ea\"; }\n\n.la-uniregistry:before {\n    content: \"\\f404\"; }\n\n.la-unity:before {\n    content: \"\\e049\"; }\n\n.la-universal-access:before {\n    content: \"\\f29a\"; }\n\n.la-university:before {\n    content: \"\\f19c\"; }\n\n.la-unlink:before {\n    content: \"\\f127\"; }\n\n.la-unlock:before {\n    content: \"\\f09c\"; }\n\n.la-unlock-alt:before {\n    content: \"\\f13e\"; }\n\n.la-unsplash:before {\n    content: \"\\e07c\"; }\n\n.la-untappd:before {\n    content: \"\\f405\"; }\n\n.la-upload:before {\n    content: \"\\f093\"; }\n\n.la-ups:before {\n    content: \"\\f7e0\"; }\n\n.la-usb:before {\n    content: \"\\f287\"; }\n\n.la-user:before {\n    content: \"\\f007\"; }\n\n.la-user-alt:before {\n    content: \"\\f406\"; }\n\n.la-user-alt-slash:before {\n    content: \"\\f4fa\"; }\n\n.la-user-astronaut:before {\n    content: \"\\f4fb\"; }\n\n.la-user-check:before {\n    content: \"\\f4fc\"; }\n\n.la-user-circle:before {\n    content: \"\\f2bd\"; }\n\n.la-user-clock:before {\n    content: \"\\f4fd\"; }\n\n.la-user-cog:before {\n    content: \"\\f4fe\"; }\n\n.la-user-edit:before {\n    content: \"\\f4ff\"; }\n\n.la-user-friends:before {\n    content: \"\\f500\"; }\n\n.la-user-graduate:before {\n    content: \"\\f501\"; }\n\n.la-user-injured:before {\n    content: \"\\f728\"; }\n\n.la-user-lock:before {\n    content: \"\\f502\"; }\n\n.la-user-md:before {\n    content: \"\\f0f0\"; }\n\n.la-user-minus:before {\n    content: \"\\f503\"; }\n\n.la-user-ninja:before {\n    content: \"\\f504\"; }\n\n.la-user-nurse:before {\n    content: \"\\f82f\"; }\n\n.la-user-plus:before {\n    content: \"\\f234\"; }\n\n.la-user-secret:before {\n    content: \"\\f21b\"; }\n\n.la-user-shield:before {\n    content: \"\\f505\"; }\n\n.la-user-slash:before {\n    content: \"\\f506\"; }\n\n.la-user-tag:before {\n    content: \"\\f507\"; }\n\n.la-user-tie:before {\n    content: \"\\f508\"; }\n\n.la-user-times:before {\n    content: \"\\f235\"; }\n\n.la-users:before {\n    content: \"\\f0c0\"; }\n\n.la-users-cog:before {\n    content: \"\\f509\"; }\n\n.la-users-slash:before {\n    content: \"\\e073\"; }\n\n.la-usps:before {\n    content: \"\\f7e1\"; }\n\n.la-ussunnah:before {\n    content: \"\\f407\"; }\n\n.la-utensil-spoon:before {\n    content: \"\\f2e5\"; }\n\n.la-utensils:before {\n    content: \"\\f2e7\"; }\n\n.la-vaadin:before {\n    content: \"\\f408\"; }\n\n.la-vector-square:before {\n    content: \"\\f5cb\"; }\n\n.la-venus:before {\n    content: \"\\f221\"; }\n\n.la-venus-double:before {\n    content: \"\\f226\"; }\n\n.la-venus-mars:before {\n    content: \"\\f228\"; }\n\n.la-vest:before {\n    content: \"\\e085\"; }\n\n.la-vest-patches:before {\n    content: \"\\e086\"; }\n\n.la-viacoin:before {\n    content: \"\\f237\"; }\n\n.la-viadeo:before {\n    content: \"\\f2a9\"; }\n\n.la-viadeo-square:before {\n    content: \"\\f2aa\"; }\n\n.la-vial:before {\n    content: \"\\f492\"; }\n\n.la-vials:before {\n    content: \"\\f493\"; }\n\n.la-viber:before {\n    content: \"\\f409\"; }\n\n.la-video:before {\n    content: \"\\f03d\"; }\n\n.la-video-slash:before {\n    content: \"\\f4e2\"; }\n\n.la-vihara:before {\n    content: \"\\f6a7\"; }\n\n.la-vimeo:before {\n    content: \"\\f40a\"; }\n\n.la-vimeo-square:before {\n    content: \"\\f194\"; }\n\n.la-vimeo-v:before {\n    content: \"\\f27d\"; }\n\n.la-vine:before {\n    content: \"\\f1ca\"; }\n\n.la-virus:before {\n    content: \"\\e074\"; }\n\n.la-virus-slash:before {\n    content: \"\\e075\"; }\n\n.la-viruses:before {\n    content: \"\\e076\"; }\n\n.la-vk:before {\n    content: \"\\f189\"; }\n\n.la-vnv:before {\n    content: \"\\f40b\"; }\n\n.la-voicemail:before {\n    content: \"\\f897\"; }\n\n.la-volleyball-ball:before {\n    content: \"\\f45f\"; }\n\n.la-volume-down:before {\n    content: \"\\f027\"; }\n\n.la-volume-mute:before {\n    content: \"\\f6a9\"; }\n\n.la-volume-off:before {\n    content: \"\\f026\"; }\n\n.la-volume-up:before {\n    content: \"\\f028\"; }\n\n.la-vote-yea:before {\n    content: \"\\f772\"; }\n\n.la-vr-cardboard:before {\n    content: \"\\f729\"; }\n\n.la-vuejs:before {\n    content: \"\\f41f\"; }\n\n.la-walking:before {\n    content: \"\\f554\"; }\n\n.la-wallet:before {\n    content: \"\\f555\"; }\n\n.la-warehouse:before {\n    content: \"\\f494\"; }\n\n.la-watchman-monitoring:before {\n    content: \"\\e087\"; }\n\n.la-water:before {\n    content: \"\\f773\"; }\n\n.la-wave-square:before {\n    content: \"\\f83e\"; }\n\n.la-waze:before {\n    content: \"\\f83f\"; }\n\n.la-weebly:before {\n    content: \"\\f5cc\"; }\n\n.la-weibo:before {\n    content: \"\\f18a\"; }\n\n.la-weight:before {\n    content: \"\\f496\"; }\n\n.la-weight-hanging:before {\n    content: \"\\f5cd\"; }\n\n.la-weixin:before {\n    content: \"\\f1d7\"; }\n\n.la-whatsapp:before {\n    content: \"\\f232\"; }\n\n.la-whatsapp-square:before {\n    content: \"\\f40c\"; }\n\n.la-wheelchair:before {\n    content: \"\\f193\"; }\n\n.la-whmcs:before {\n    content: \"\\f40d\"; }\n\n.la-wifi:before {\n    content: \"\\f1eb\"; }\n\n.la-wikipedia-w:before {\n    content: \"\\f266\"; }\n\n.la-wind:before {\n    content: \"\\f72e\"; }\n\n.la-window-close:before {\n    content: \"\\f410\"; }\n\n.la-window-maximize:before {\n    content: \"\\f2d0\"; }\n\n.la-window-minimize:before {\n    content: \"\\f2d1\"; }\n\n.la-window-restore:before {\n    content: \"\\f2d2\"; }\n\n.la-windows:before {\n    content: \"\\f17a\"; }\n\n.la-wine-bottle:before {\n    content: \"\\f72f\"; }\n\n.la-wine-glass:before {\n    content: \"\\f4e3\"; }\n\n.la-wine-glass-alt:before {\n    content: \"\\f5ce\"; }\n\n.la-wix:before {\n    content: \"\\f5cf\"; }\n\n.la-wizards-of-the-coast:before {\n    content: \"\\f730\"; }\n\n.la-wodu:before {\n    content: \"\\e088\"; }\n\n.la-wolf-pack-battalion:before {\n    content: \"\\f514\"; }\n\n.la-won-sign:before {\n    content: \"\\f159\"; }\n\n.la-wordpress:before {\n    content: \"\\f19a\"; }\n\n.la-wordpress-simple:before {\n    content: \"\\f411\"; }\n\n.la-wpbeginner:before {\n    content: \"\\f297\"; }\n\n.la-wpexplorer:before {\n    content: \"\\f2de\"; }\n\n.la-wpforms:before {\n    content: \"\\f298\"; }\n\n.la-wpressr:before {\n    content: \"\\f3e4\"; }\n\n.la-wrench:before {\n    content: \"\\f0ad\"; }\n\n.la-x-ray:before {\n    content: \"\\f497\"; }\n\n.la-xbox:before {\n    content: \"\\f412\"; }\n\n.la-xing:before {\n    content: \"\\f168\"; }\n\n.la-xing-square:before {\n    content: \"\\f169\"; }\n\n.la-y-combinator:before {\n    content: \"\\f23b\"; }\n\n.la-yahoo:before {\n    content: \"\\f19e\"; }\n\n.la-yammer:before {\n    content: \"\\f840\"; }\n\n.la-yandex:before {\n    content: \"\\f413\"; }\n\n.la-yandex-international:before {\n    content: \"\\f414\"; }\n\n.la-yarn:before {\n    content: \"\\f7e3\"; }\n\n.la-yelp:before {\n    content: \"\\f1e9\"; }\n\n.la-yen-sign:before {\n    content: \"\\f157\"; }\n\n.la-yin-yang:before {\n    content: \"\\f6ad\"; }\n\n.la-yoast:before {\n    content: \"\\f2b1\"; }\n\n.la-youtube:before {\n    content: \"\\f167\"; }\n\n.la-youtube-square:before {\n    content: \"\\f431\"; }\n\n.la-zhihu:before {\n    content: \"\\f63f\"; }\n\n.sr-only {\n    border: 0;\n    clip: rect(0, 0, 0, 0);\n    height: 1px;\n    margin: -1px;\n    overflow: hidden;\n    padding: 0;\n    position: absolute;\n    width: 1px; }\n\n.sr-only-focusable:active, .sr-only-focusable:focus {\n    clip: auto;\n    height: auto;\n    margin: 0;\n    overflow: visible;\n    position: static;\n    width: auto; }\n@font-face {\n    font-family: 'Font Awesome 5 Brands';\n    font-style: normal;\n    font-weight: 400;\n    font-display: block;\n    src: url(\"../fonts/la-brands-400.eot\");\n    src: url(\"../fonts/la-brands-400.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/la-brands-400.woff2\") format(\"woff2\"), url(\"../fonts/la-brands-400.woff\") format(\"woff\"), url(\"../fonts/la-brands-400.ttf\") format(\"truetype\"), url(\"../fonts/la-brands-400.svg#fontawesome\") format(\"svg\"); }\n\n.lab {\n    font-family: 'Line Awesome Brands';\n    font-weight: 400; }\n@font-face {\n    font-family: 'Font Awesome 5 Free';\n    font-style: normal;\n    font-weight: 400;\n    font-display: block;\n    src: url(\"../fonts/la-regular-400.eot\");\n    src: url(\"../fonts/la-regular-400.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/la-regular-400.woff2\") format(\"woff2\"), url(\"../fonts/la-regular-400.woff\") format(\"woff\"), url(\"../fonts/la-regular-400.ttf\") format(\"truetype\"), url(\"../fonts/la-regular-400.svg#fontawesome\") format(\"svg\"); }\n\n.lar {\n    font-family: 'Line Awesome Free';\n    font-weight: 400; }\n@font-face {\n    font-family: 'Font Awesome 5 Free';\n    font-style: normal;\n    font-weight: 900;\n    font-display: block;\n    src: url(\"../fonts/la-solid-900.eot\");\n    src: url(\"../fonts/la-solid-900.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/la-solid-900.woff2\") format(\"woff2\"), url(\"../fonts/la-solid-900.woff\") format(\"woff\"), url(\"../fonts/la-solid-900.ttf\") format(\"truetype\"), url(\"../fonts/la-solid-900.svg#fontawesome\") format(\"svg\"); }\n\n.la,\n.las {\n    font-family: 'Line Awesome Free';\n    font-weight: 900; }\n"
  },
  {
    "path": "icon-packs/ikonli-linecons-pack/ikonli-linecons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-linecons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.linecons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.linecons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.linecons.LineconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.linecons.LineconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-linecons-pack/src/main/java/org/kordamp/ikonli/linecons/Linecons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.linecons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Linecons implements Ikon {\n    BANKNOTE(\"li-banknote\", '\\ue020'),\n    BUBBLE(\"li-bubble\", '\\ue014'),\n    BULB(\"li-bulb\", '\\ue00e'),\n    CALENDAR(\"li-calendar\", '\\ue02b'),\n    CAMERA(\"li-camera\", '\\ue00b'),\n    CLIP(\"li-clip\", '\\ue029'),\n    CLOCK(\"li-clock\", '\\ue01d'),\n    CLOUD(\"li-cloud\", '\\ue001'),\n    CUP(\"li-cup\", '\\ue016'),\n    DATA(\"li-data\", '\\ue021'),\n    DIAMOND(\"li-diamond\", '\\ue010'),\n    DISPLAY(\"li-display\", '\\ue011'),\n    EYE(\"li-eye\", '\\ue013'),\n    FIRE(\"li-fire\", '\\ue028'),\n    FOOD(\"li-food\", '\\ue026'),\n    HEART(\"li-heart\", '\\ue000'),\n    KEY(\"li-key\", '\\ue008'),\n    LAB(\"li-lab\", '\\ue025'),\n    LIKE(\"li-like\", '\\ue01a'),\n    LOCATION(\"li-location\", '\\ue012'),\n    LOCK(\"li-lock\", '\\ue00d'),\n    MAIL(\"li-mail\", '\\ue019'),\n    MEGAPHONE(\"li-megaphone\", '\\ue023'),\n    MUSIC(\"li-music\", '\\ue022'),\n    NEWS(\"li-news\", '\\ue018'),\n    NOTE(\"li-note\", '\\ue01c'),\n    PAPERPLANE(\"li-paperplane\", '\\ue01e'),\n    PARAMS(\"li-params\", '\\ue01f'),\n    PEN(\"li-pen\", '\\ue00f'),\n    PHONE(\"li-phone\", '\\ue017'),\n    PHOTO(\"li-photo\", '\\ue01b'),\n    SEARCH(\"li-search\", '\\ue009'),\n    SETTINGS(\"li-settings\", '\\ue00a'),\n    SHOP(\"li-shop\", '\\ue02a'),\n    SOUND(\"li-sound\", '\\ue004'),\n    STACK(\"li-stack\", '\\ue015'),\n    STAR(\"li-star\", '\\ue002'),\n    STUDY(\"li-study\", '\\ue024'),\n    T_SHIRT(\"li-t-shirt\", '\\ue027'),\n    TAG(\"li-tag\", '\\ue00c'),\n    TRASH(\"li-trash\", '\\ue006'),\n    TRUCK(\"li-truck\", '\\ue02e'),\n    TV(\"li-tv\", '\\ue003'),\n    USER(\"li-user\", '\\ue007'),\n    VALLET(\"li-vallet\", '\\ue02c'),\n    VIDEO(\"li-video\", '\\ue005'),\n    VYNIL(\"li-vynil\", '\\ue02d'),\n    WORLD(\"li-world\", '\\ue02f');\n\n    private final String description;\n    private final int code;\n\n    Linecons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    public static Linecons findByDescription(String description) {\n        for (Linecons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-linecons-pack/src/main/java/org/kordamp/ikonli/linecons/LineconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.linecons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class LineconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/linecons/0.0/fonts/linecons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"li-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Linecons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"linecons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-linecons-pack/src/main/java/org/kordamp/ikonli/linecons/LineconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.linecons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class LineconsIkonProvider implements IkonProvider<Linecons> {\n    @Override\n    public Class<Linecons> getIkon() {\n        return Linecons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-linecons-pack/src/main/resources/META-INF/resources/linecons/0.0/css/linecons.css",
    "content": "@font-face {\n\tfont-family: 'linecons';\n\tsrc:url('../fonts/linecons.eot');\n}\n@font-face {\n\tfont-family: 'linecons';\n\tsrc: url(data:font/svg;charset=utf-8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/Pgo8IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiID4KPHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8bWV0YWRhdGE+ClRoaXMgaXMgYSBjdXN0b20gU1ZHIGZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uCjxpY29uc2V0IGlkPSJsaW5lY29ucyIgbmFtZT0ibGluZWNvbnMiIGhyZWY9Imh0dHA6Ly9kZXNpZ25tb2RvLmNvbS9saW5lY29ucyI+PC9pY29uc2V0PjxhdXRob3IgbmFtZT0iU2VyZ2V5IFNobWlkdCIgaHJlZj0iaHR0cDovL3NobWlkdC5pbiI+PC9hdXRob3I+PGxpY2Vuc2UgbmFtZT0iQ3JlYXRpdmUgQ29tbW9ucyBBdHRyaWJ1dGlvbi1TaGFyZUFsaWtlIDMuMCIgaHJlZj0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbGljZW5zZXMvYnktc2EvMy4wLyI+PC9saWNlbnNlPgo8L21ldGFkYXRhPgo8ZGVmcz4KPGZvbnQgaWQ9ImxpbmVjb25zIiBob3Jpei1hZHYteD0iNTEyIiA+Cjxmb250LWZhY2UgdW5pdHMtcGVyLWVtPSI1MTIiIGFzY2VudD0iNDgwIiBkZXNjZW50PSItMzIiIC8+CjxtaXNzaW5nLWdseXBoIGhvcml6LWFkdi14PSI1MTIiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDAwOyIgZD0iTSA0NjcuMDg4LDM5NS43NmMtNTguMDY0LDU3LjUzNi0xNTAuOTEyLDU4LjczNi0yMTEuMDU2LDQuNjA4CgkJQyAxOTUuODcyLDQ1NC40OTYsIDEwMy4wNTYsNDUzLjI5NiwgNDQuOTYsMzk1Ljc2Yy01OS44NTYtNTkuMjY0LTU5Ljg1Ni0xNTUuMzQ0LDAuMDAtMjE0LjY0YyAxNy4xMDQtMTYuOTQ0LCAxNzYuODQ4LTE3NS4wNTYsIDE3Ni44NDgtMTc1LjA1NgoJCWMgMTguOTI4LTE4Ljc1MiwgNDkuNTM2LTE4Ljc1MiwgNjguNDQ4LDAuMDBjMC4wMCwwLjAwLCAxNzQuOTEyLDE3My4xNTIsIDE3Ni44NDgsMTc1LjA1NkMgNTI2Ljk3NiwyNDAuNDE2LCA1MjYuOTc2LDMzNi40OTYsIDQ2Ny4wODgsMzk1Ljc2eiBNIDQ0NC4yODgsMjAzLjcxMgoJCUwgMjY3LjQ0LDI4LjY1NmMtNi4yODgtNi4yNTYtMTYuNTQ0LTYuMjU2LTIyLjgwLDAuMDBMIDY3Ljc5MiwyMDMuNzEyYy00Ny4yMCw0Ni43Mi00Ny4yMCwxMjIuNzM2LDAuMDAsMTY5LjQ1NgoJCWMgNDUuNTA0LDQ1LjA0LCAxMTguNjU2LDQ2LjYyNCwgMTY2LjU0NCwzLjU1MmwgMjEuNjk2LTE5LjUybCAyMS42OCwxOS41MmMgNDcuOTA0LDQzLjA3MiwgMTIxLjA1Niw0MS41MDQsIDE2Ni41Ni0zLjU1MgoJCUMgNDkxLjQ3MiwzMjYuNDY0LCA0OTEuNDcyLDI1MC40NDgsIDQ0NC4yODgsMjAzLjcxMnpNIDE0OC4wNDgsMzU5Ljk4NCBDIDE1Mi40OCwzNTkuOTg0IDE1Ni4wNDgsMzU2LjQwIDE1Ni4wNDgsMzUxLjk4NCBDIDE1Ni4wNDgsMzQ3LjU2OCAxNTIuNDY0LDM0My45ODQgMTQ4LjA0OCwzNDMuOTg0IEwgMTQ4LjAzMiwzNDMuOTg0IEMgMTE5LjMyOCwzNDMuOTg0IDk2LjA0OCwzMjAuNzA0IDk2LjA0OCwyOTIuMDAgTCA5Ni4wNDgsMjkxLjk4NCBDIDk2LjA0OCwyODcuNTY4IDkyLjQ2NCwyODMuOTg0IDg4LjA0OCwyODMuOTg0IEMgODMuNjMyLDI4My45ODQgODAuMDQ4LDI4Ny41NjggODAuMDQ4LDI5MS45ODQgTCA4MC4wNDgsMjkxLjk4NCBDIDgwLjA0OCwzMjkuNTIgMTEwLjQ2NCwzNTkuOTM2IDE0Ny45ODQsMzU5Ljk2OCBDIDE0OC4wMTYsMzU5Ljk2OCAxNDguMDE2LDM1OS45ODQgMTQ4LjA0OCwzNTkuOTg0IFoiIGRhdGEtdGFncz0iaGVhcnQiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDAxOyIgZD0iTSA0MTQuNjI0LDI2OS43MTJDIDQwNy42MzIsMzQyLjcyLCAzNDYuODQ4LDQwMC4wMCwgMjcyLjAwLDQwMC4wMAoJYy01Ny45MDQsMC4wMC0xMDcuNDcyLTM0LjM2OC0xMzAuMzM2LTgzLjY4QyAxMzQuNzg0LDMxOC40OTYsIDEyNy42MTYsMzIwLjAwLCAxMjAuMDE2LDMyMC4wMGMtMzkuNzYsMC4wMC03Mi4wMC0zMi4yNTYtNzIuMDAtNzIuMDBjMC4wMC03LjkwNCwgMS41ODQtMTUuMzc2LCAzLjkzNi0yMi40NjQKCWMtMzAuOTI4LTE4LjAzMi01MS45MzYtNTEuMTItNTEuOTM2LTg5LjUwNGMwLjAwLTU3LjQ0LCA0Ni41Ni0xMDQuMDAsIDEwNC4wMC0xMDQuMDBMIDEwNC4wMTYsMzIuMDAgTCAzOTIuMDAsMzIuMDAgbDAuMDAsMC4wMzIgYyA2Ni4yODgsMC4wMCwgMTIwLjAwLDUzLjcxMiwgMTIwLjAwLDEyMC4wMAoJQyA1MTIuMDAsMjEwLjUyOCwgNDcwLjA2NCwyNTkuMTIsIDQxNC42MjQsMjY5LjcxMnogTSAzOTIuMDAsNjQuMDMyTCAzOTIuMDAsNjQuMDAgTCAxMDQuMDE2LDY0LjAwIGMtMzkuNjk2LDAuMDMyLTcyLjAwLDMyLjMyLTcyLjAwLDcyLjAzMmMwLjAwLDI1LjYwLCAxMy40ODgsNDguNzIsIDM2LjA2NCw2MS44NzIKCWMgMjEuOTM2LDEyLjU5MiwgMjMuNDQsMTUuMDg4LCAxNC4yNCwzNy43MTJjLTEuNTUyLDQuNjU2LTIuMzA0LDguNzA0LTIuMzA0LDEyLjM2OGMwLjAwLDIyLjA2NCwgMTcuOTM2LDQwLjAwLCA0MC4wMCw0MC4wMGMwLjAwLDAuMDAsIDEwLjQ5NiwwLjc1MiwgMjEuNjQ4LTMuNjgKCWMgMTguMzUyLTcuMzEyLCAyMC4zNTItMC4zMiwgMjkuMDI0LDE4LjU0NEMgMTg5LjA0LDM0Mi40MTYsIDIyOC44MCwzNjguMDAsIDI3Mi4wMCwzNjguMDBjIDU3LjYwLDAuMDAsIDEwNS4yMTYtNDMuNTY4LCAxMTAuNzg0LTEwMS4zNDRjIDEuOTY4LTIyLjkxMiwgMS45NjgtMjIuOTEyLCAyNS44NC0yOC4zNjgKCUMgNDUwLjAwLDIzMC4zODQsIDQ4MC4wMCwxOTQuMDk2LCA0ODAuMDAsMTUyLjAzMkMgNDgwLjAwLDEwMy41MDQsIDQ0MC41MjgsNjQuMDMyLCAzOTIuMDAsNjQuMDMyeiIgZGF0YS10YWdzPSJjbG91ZCIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUwMDI7IiBkPSJNIDUxMC4wOTYsMjc5LjA4OGMtNC40MzIsMTIuNzg0LTE1LjgwOCwyMi4xNDQtMjkuNTA0LDI0LjE3NmwtMTMzLjIxNiwxOS44MDhsLTU3LjkwNCwxMjAuMjI0CglDIDI4My4zNzYsNDU1LjkyLCAyNzAuMzM2LDQ2NC4wMCwgMjU2LjAwLDQ2NC4wMGMtMTQuMzM2LDAuMDAtMjcuMzc2LTguMDgtMzMuNDcyLTIwLjcwNGwtNTcuOTA0LTEyMC4yMjRsLTEzMy4yMzItMTkuODA4Yy0xMy42OC0yLjAzMi0yNS4wNTYtMTEuMzkyLTI5LjQ3Mi0yNC4xNzYKCWMtNC40MC0xMi44MTYtMS4wNzItMjYuOTI4LCA4LjU5Mi0zNi41NmwgOTcuNjMyLTk3LjQ3MmwtMjIuNjQtMTM1LjIxNkMgODMuMjAtMy43NzYsIDg5LjEwNC0xNy40NCwgMTAwLjY3Mi0yNS40MDgKCUMgMTA3LjAyNC0yOS43NzYsIDExNC40OTYtMzIuMDAsIDEyMS45NjgtMzIuMDBjIDYuMTQ0LDAuMDAsIDEyLjMwNCwxLjUwNCwgMTcuODg4LDQuNDk2TCAyNTYuMDAsMzUuMDI0bCAxMTYuMTYtNjIuNTI4QyAzNzcuNzQ0LTMwLjQ5NiwgMzgzLjkwNC0zMi4wMCwgMzkwLjAzMi0zMi4wMAoJYyA3LjQ3MiwwLjAwLCAxNC45NDQsMi4yMjQsIDIxLjMxMiw2LjU5MmMgMTEuNTY4LDcuOTY4LCAxNy40NCwyMS42MzIsIDE1LjE1MiwzNS4yNDhsLTIyLjY1NiwxMzUuMjE2bCA5Ny42NjQsOTcuNDcyCglDIDUxMS4xNTIsMjUyLjE3NiwgNTE0LjQ2NCwyNjYuMjg4LCA1MTAuMDk2LDI3OS4wODh6IE0gMzc3LjQwOCwxNzAuMTkyYy04LjE5Mi04LjE2LTExLjkwNC0xOS42NjQtMTAuMDMyLTMwLjk0NGwgMjIuNjU2LTEzNS4yMTZsLTExNi4xNiw2Mi40OTYKCWMtNS41NjgsMy4wMDgtMTEuNzEyLDQuNDk2LTE3Ljg4OCw0LjQ5NmMtNi4xNDQsMC4wMC0xMi4zMDQtMS41MDQtMTcuODcyLTQuNDk2bC0xMTYuMTYtNjIuNDk2bCAyMi42NTYsMTM1LjIxNgoJYyAxLjg4OCwxMS4yOC0xLjgyNCwyMi43ODQtMTAuMDE2LDMwLjk0NGwtOTcuNjMyLDk3LjQ3MmwgMTMzLjIxNiwxOS44NGMgMTIuMTc2LDEuODA4LCAyMi42NTYsOS40MjQsIDI3Ljg4OCwyMC4yODhMIDI1Ni4wMCw0MjcuOTg0bCA1Ny45Mi0xMjAuMjA4CgljIDUuMjQ4LTEwLjg2NCwgMTUuNzEyLTE4LjQ2NCwgMjcuODcyLTIwLjI4OGwgMTMzLjI0OC0xOS44NEwgMzc3LjQwOCwxNzAuMTkyeiIgZGF0YS10YWdzPSJzdGFyIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAwMzsiIGQ9Ik0gMzU0LjcyLDM0Mi4wMTZjLTQzLjMxMiw4LjkxMi04Ny4yOCwxMy40MjQtMTMwLjY0LDEzLjQyNGMtNDMuMzYsMC4wMC04Ny4zMTItNC41MTItMTMwLjY0LTEzLjQyNAoJCUMgODcuODQsMzQwLjg2NCwgODMuMjY0LDMzNi44MCwgODEuNDU2LDMzMS4zNDRjLTIzLjA3Mi03MC4wOTYtMjMuMDcyLTE0MS4xNjgsMC4wMC0yMTEuMjY0YyAxLjc5Mi01LjQ0LCA2LjM2OC05LjUwNCwgMTEuOTg0LTEwLjY1NgoJCUMgMTM2Ljc2OCwxMDAuNTI4LCAxODAuNzIsOTYuMDAsIDIyNC4wOCw5Ni4wMGMgNDMuMzQ0LDAuMDAsIDg3LjMyOCw0LjUyOCwgMTMwLjY0LDEzLjQ0YyA1LjYzMiwxLjE1MiwgMTAuMTkyLDUuMjE2LCAxMi4wMCwxMC42NTYKCQljIDIzLjA1Niw3MC4wOTYsIDIzLjA1NiwxNDEuMTY4LDAuMDAsMjExLjI2NEMgMzY0LjkxMiwzMzYuODAsIDM2MC4zMzYsMzQwLjg2NCwgMzU0LjcyLDM0Mi4wMTZ6IE0gMzUxLjUwNCwxMjUuMDg4Yy04NC45NDQtMTcuNDQtMTY5LjkwNC0xNy40NC0yNTQuODMyLDAuMDAKCQljLTIyLjA5Niw2Ny4wODgtMjIuMDk2LDEzNC4xNiwwLjAwLDIwMS4yNjRjIDg0Ljk0NCwxNy40NTYsIDE2OS45MDQsMTcuNDU2LCAyNTQuODMyLDAuMDBDIDM3My42MCwyNTkuMjY0LCAzNzMuNjAsMTkyLjE5MiwgMzUxLjUwNCwxMjUuMDg4ek0gNDkzLjY2NCwzNzguODhjLTMuMDg4LDEzLjAyNC0xNC4wMCwyMi43NTItMjcuMjgsMjQuMzUyQyAzOTYuNjI0LDQxMS43MTIsIDMyNS44NzIsNDE2LjAwLCAyNTYuMDgsNDE2LjAwCgkJQyAxODYuMzA0LDQxNi4wMCwgMTE1LjU1Miw0MTEuNzEyLCA0NS43OTIsNDAzLjI0OEMgMzIuNTEyLDQwMS42MzIsIDIxLjYxNiwzOTEuOTIsIDE4LjUyOCwzNzguODhjLTI0LjQ2NC0xMDIuNzY4LTI0LjQ2NC0yMDYuOTc2LDAuMDAtMzA5Ljc2CgkJYyAzLjA4OC0xMy4wMjQsIDEzLjk4NC0yMi43NTIsIDI3LjI2NC0yNC4zMzZjIDMzLjYxNi00LjA5NiwgNjcuNDU2LTcuMDg4LCAxMDEuMjk2LTkuMjE2QyAxNDUuMjY0LDM0LjQwLCAxNDQuMDgsMzMuMjE2LCAxNDQuMDgsMzIuMDBjMC4wMC04Ljg0OCwgNTAuMTQ0LTE2LjAwLCAxMTIuMDAtMTYuMDAKCQljIDYxLjg1NiwwLjAwLCAxMTIuMDAsNy4xNTIsIDExMi4wMCwxNi4wMGMwLjAwLDEuMjE2LTEuMTg0LDIuNDAtMy4wMDgsMy41NjhjIDMzLjg0LDIuMTI4LCA2Ny42OCw1LjEyLCAxMDEuMjgsOS4yMTZjIDEzLjI4LDEuNjAsIDI0LjE5MiwxMS4zMTIsIDI3LjI4LDI0LjMzNgoJCUMgNTE4LjEyOCwxNzEuOTA0LCA1MTguMTI4LDI3Ni4xMTIsIDQ5My42NjQsMzc4Ljg4eiBNIDQ2Mi41MjgsNzYuNTI4Yy0xMzcuNjMyLTE2LjY4OC0yNzUuMjY0LTE2LjY4OC00MTIuODgsMC4wMGMtMjMuNDA4LDk4LjMyLTIzLjQwOCwxOTYuNjQsMC4wMCwyOTQuOTQ0CgkJYyAxMzcuNjMyLDE2LjcwNCwgMjc1LjI2NCwxNi43MDQsIDQxMi44OCwwLjAwQyA0ODUuOTM2LDI3My4xNjgsIDQ4NS45MzYsMTc0Ljg0OCwgNDYyLjUyOCw3Ni41Mjh6TSA0MjQuMDk2LDI4OC4wMGMgMTMuMjQ4LDAuMDAsIDI0LjAwLDEwLjc1MiwgMjQuMDAsMjQuMDBTIDQzNy4zNDQsMzM2LjAwLCA0MjQuMDk2LDMzNi4wMHMtMjQuMDAtMTAuNzUyLTI0LjAwLTI0LjAwUyA0MTAuODQ4LDI4OC4wMCwgNDI0LjA5NiwyODguMDB6CgkJIE0gNDI0LjA5NiwzMjAuMDBjIDQuNDAsMC4wMCwgOC4wMC0zLjYwLCA4LjAwLTguMDBzLTMuNjAtOC4wMC04LjAwLTguMDBzLTguMDAsMy42MC04LjAwLDguMDBTIDQxOS42OCwzMjAuMDAsIDQyNC4wOTYsMzIwLjAwek0gNDQwLjA5NiwxMjguMDAgQyA0NDQuNDk2LDEyOC4wMCA0NDguMDk2LDEyNC40MzIgNDQ4LjA5NiwxMjAuMDAgQyA0NDguMDk2LDExNS42MCA0NDQuNDk2LDExMi4wMCA0NDAuMDk2LDExMi4wMCBMIDM5Mi4wOTYsMTEyLjAwIEMgMzg3LjY2NCwxMTIuMDAgMzg0LjA5NiwxMTUuNjAgMzg0LjA5NiwxMjAuMDAgQyAzODQuMDk2LDEyNC40MzIgMzg3LjY2NCwxMjguMDAgMzkyLjA5NiwxMjguMDAgTCA0NDAuMDk2LDEyOC4wMCBaTSA0NTYuMDk2LDE3Ni4wMCBDIDQ2MC40OTYsMTc2LjAwIDQ2NC4wOTYsMTcyLjQzMiA0NjQuMDk2LDE2OC4wMCBDIDQ2NC4wOTYsMTYzLjYwIDQ2MC40OTYsMTYwLjAwIDQ1Ni4wOTYsMTYwLjAwIEwgNDA4LjA5NiwxNjAuMDAgQyA0MDMuNjY0LDE2MC4wMCA0MDAuMDk2LDE2My42MCA0MDAuMDk2LDE2OC4wMCBDIDQwMC4wOTYsMTcyLjQzMiA0MDMuNjY0LDE3Ni4wMCA0MDguMDk2LDE3Ni4wMCBMIDQ1Ni4wOTYsMTc2LjAwIFpNIDQ1Ni4wOTYsMjI0LjAwIEMgNDYwLjQ5NiwyMjQuMDAgNDY0LjA5NiwyMjAuNDE2IDQ2NC4wOTYsMjE2LjAwIEMgNDY0LjA5NiwyMTEuNTg0IDQ2MC40OTYsMjA4LjAwIDQ1Ni4wOTYsMjA4LjAwIEwgNDA4LjA5NiwyMDguMDAgQyA0MDMuNjY0LDIwOC4wMCA0MDAuMDk2LDIxMS41ODQgNDAwLjA5NiwyMTYuMDAgQyA0MDAuMDk2LDIyMC40MTYgNDAzLjY2NCwyMjQuMDAgNDA4LjA5NiwyMjQuMDAgTCA0NTYuMDk2LDIyNC4wMCBaTSAyMTYuMDgsMjkxLjEzNiBDIDIyMC40OTYsMjkxLjMxMiAyMjQuMDgsMjg3Ljg3MiAyMjQuMDgsMjgzLjQ1NiBDIDIyNC4wOCwyNzkuMDQgMjIwLjQ4LDI3NS4zMjggMjE2LjA4LDI3NS4xNjggTCAxNTYuMDk2LDI3MS4wNTYgQyAxNTEuNzI4LDI3MC42MDggMTQ3LjY2NCwyNjYuNjcyIDE0Ny4wNzIsMjYyLjMyIEwgMTQ0LjQwLDIzMi4wMCBDIDE0NC4yMjQsMjI3LjYwIDE0MC40OCwyMjQuMDAgMTM2LjExMiwyMjQuMDAgQyAxMzEuNzI4LDIyNC4wMCAxMjguMzIsMjI3LjYwIDEyOC41NDQsMjMyLjAwIEwgMTMzLjQyNCwyNzYuNTc2IEMgMTM0LjE2LDI4MC45MjggMTM4LjMzNiwyODQuODk2IDE0Mi43MDQsMjg1LjM5MiBMIDIxNi4wOCwyOTEuMTM2IFoiIGRhdGEtdGFncz0idHYiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDA0OyIgZD0iTSA0MzEuOTY4LDI1NS45NTIgQyA0MzEuOTY4LDMzNS4zNDQgMzY3LjM3NiwzOTkuOTUyIDI4Ny45NjgsMzk5LjkzNiBMIDI4Ny45NjgsNDAwLjAwIEMgMjgzLjU2OCw0MDAuMDE2IDI4MC4wMCw0MDMuNjAgMjgwLjAwLDQwOC4wMCBDIDI4MC4wMCw0MTIuNDE2IDI4My41NjgsNDE2LjAwIDI4OC4wMCw0MTYuMDAgQyAyODguMTYsNDE2LjAwIDI4OC4yODgsNDE1LjkzNiAyODguNDAsNDE1LjkwNCBDIDM3Ni41MjgsNDE1LjY5NiA0NDcuODcyLDM0NC4yNzIgNDQ3Ljk2OCwyNTYuMTI4IEMgNDQ3Ljk2OCwyNTYuMDggNDQ4LjAwLDI1Ni4wNDggNDQ4LjAwLDI1Ni4wMCBDIDQ0OC4wMCwyNTEuNTg0IDQ0NC40MCwyNDguMDE2IDQ0MC4wMCwyNDguMDE2IEMgNDM1LjYwLDI0OC4wMTYgNDMyLjAzMiwyNTEuNTY4IDQzMi4wMCwyNTUuOTUyIEwgNDMxLjk2OCwyNTUuOTUyIFpNIDE0NS45MzYsNDY1Ljk1MkMgMTM2Ljc2OCw0NzUuMTM2LCAxMjQuNDgsNDgwLjAwLCAxMTEuOTg0LDQ4MC4wMEMgMTA1LjgwOCw0ODAuMDAsIDk5LjU4NCw0NzguODE2LCA5My42NDgsNDc2LjM1MkMgNzUuNjk2LDQ2OC45MjgsIDY0LjAwLDQ1MS40MjQsIDY0LjAwLDQzMi4wMAoJCUwgNjMuOTg0LDIxMS44ODhsLTQ5LjkyLTQ5Ljk1MmMtMTguNzUyLTE4LjcyLTE4Ljc1Mi00OS4xMiwwLjAwLTY3Ljg3MmwgMTEyLjAwLTExMi4wMEMgMTM1LjQ0LTI3LjMxMiwgMTQ3LjcxMi0zMi4wMCwgMTYwLjAwLTMyLjAwcyAyNC41Niw0LjY4OCwgMzMuOTM2LDE0LjA2NEwgMjQzLjg3MiwzMi4wMAoJCWwgMjIwLjA5NiwwLjAwIGMgMTkuNDQsMC4wMCwgMzYuOTQ0LDExLjY4LCA0NC4zMzYsMjkuNjMyYyA3LjQ0LDE3LjkzNiwgMy4zNDQsMzguNTkyLTEwLjQwLDUyLjMyTCAxNDUuOTM2LDQ2NS45NTJ6IE0gMjIxLjI0OCw1NC42MjRsLTQ5LjkzNi00OS45MzYKCQlDIDE2Ny4yMzIsMC42MjQsIDE2Mi40NjQsMC4wMCwgMTYwLjAwLDAuMDBzLTcuMjMyLDAuNjI0LTExLjMxMiw0LjY4OGwtMTEyLjAwLDExMi4wMEMgMzIuNjA4LDEyMC43ODQsIDMyLjAwLDEyNS41MzYsIDMyLjAwLDEyOC4wMHMgMC42MDgsNy4yNDgsIDQuNjg4LDExLjMxMmwgNDkuOTIsNDkuOTM2CgkJYyAwLjE0NCwwLjE2LCAwLjE5MiwwLjMzNiwgMC4zMzYsMC40OTZsIDEzNC44MC0xMzQuODE2QyAyMjEuNjAsNTQuODE2LCAyMjEuMzkyLDU0Ljc4NCwgMjIxLjI0OCw1NC42MjR6IE0gMjQzLjg3Miw2NC4wMAoJCWMtMi40OCwwLjAwLTQuNzg0LTAuODgtNy4xNTItMS40MDhMIDk0LjU2LDIwNC43NTJjIDAuNTQ0LDIuMzY4LCAxLjQyNCw0LjY3MiwgMS40MjQsNy4xMzZMIDk2LjAwLDQwNC42MjRMIDQzNi41OTIsNjQuMDBMIDI0My44NzIsNjQuMDAgeiBNIDQ3OC43NTIsNzMuODcyCgkJQyA0NzYuMjg4LDY3Ljg3MiwgNDcwLjQ2NCw2NC4wMCwgNDYzLjk2OCw2NC4wMGwtNC43NTIsMC4wMCBMIDk2LjAwLDQyNy4yNDhMIDk2LjAwLDQzMi4wMCBjMC4wMCw2LjQ5NiwgMy44NzIsMTIuMzA0LCA5Ljg3MiwxNC43ODRDIDEwNy44NCw0NDcuNjAsIDEwOS44ODgsNDQ4LjAwLCAxMTEuOTg0LDQ0OC4wMAoJCWMgNC4yODgsMC4wMCwgOC4zMDQtMS42NjQsIDExLjMxMi00LjY3MmwgMzUxLjk4NC0zNTIuMDE2QyA0NzkuODcyLDg2LjcyLCA0ODEuMjQ4LDc5Ljg3MiwgNDc4Ljc1Miw3My44NzJ6TSAyODcuOTY4LDQ0OC4wMCBDIDI3OS4xNTIsNDQ4LjAxNiAyNzIuMDAsNDU1LjE4NCAyNzIuMDAsNDY0LjAwIEMgMjcyLjAwLDQ3Mi44NDggMjc5LjE1Miw0ODAuMDAgMjg4LjAwLDQ4MC4wMCBDIDI4OC4xNiw0ODAuMDAgMjg4LjI4OCw0NzkuOTM2IDI4OC40MCw0NzkuOTIgQyA0MTEuODcyLDQ3OS42OTYgNTExLjg3MiwzNzkuNjE2IDUxMS45NjgsMjU2LjEyOCBDIDUxMS45NjgsMjU2LjA4IDUxMi4wMCwyNTYuMDQ4IDUxMi4wMCwyNTYuMDAgQyA1MTIuMDAsMjQ3LjE1MiA1MDQuODQ4LDI0MC4wMCA0OTYuMDAsMjQwLjAwIEMgNDg3LjE4NCwyNDAuMDAgNDgwLjAzMiwyNDcuMTM2IDQ4MC4wMCwyNTUuOTM2IEwgNDc5Ljk2OCwyNTUuOTM2IEMgNDc5Ljk2OCwzNjEuODA4IDM5My44NCw0NDcuOTM2IDI4Ny45NjgsNDQ3LjkzNiBMIDI4Ny45NjgsNDQ4LjAwIFoiIGRhdGEtdGFncz0ic291bmQiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDA1OyIgZD0iTSA0ODAuMDAsMzg0LjAwbC0xNC4xOTIsMC4wMCBjLTguNDAsMC4wMC0xNi40NjQtMy4zMTItMjIuNDY0LTkuMjE2TCA0MDAuMDAsMzMyLjAzMkwgNDAwLjAwLDM1Mi4wMCBjMC4wMCwyNi41MTItMjEuNTA0LDQ4LjAwLTQ4LjAwLDQ4LjAwTCA0OC4wMCw0MDAuMDAgCglDIDIxLjUzNiw0MDAuMDAsMC4wMCwzNzguNDgsMC4wMCwzNTIuMDBsMC4wMC0xMTEuNTUyIEwwLjAwLDk2LjAwIGMwLjAwLTI2LjQ5NiwgMjEuNDg4LTQ4LjAwLCA0OC4wMC00OC4wMGwgMzA0LjAwLDAuMDAgYyAyNi40OTYsMC4wMCwgNDguMDAsMjEuNTA0LCA0OC4wMCw0OC4wMGwwLjAwLDE5LjUzNiBsIDQzLjM0NC00Mi43NTJjIDYuMDAtNS45MDQsIDE0LjA2NC05LjIxNiwgMjIuNDY0LTkuMjE2CglMIDQ4MC4wMCw2My41NjggYyAxNy42NjQsMC4wMCwgMzIuMDAsMTQuMzIsIDMyLjAwLDMyLjAwTCA1MTIuMDAsMzUyLjAwIEMgNTEyLjAwLDM2OS42OCwgNDk3LjY2NCwzODQuMDAsIDQ4MC4wMCwzODQuMDB6IE0gNDguMDAsODAuMDBjLTguODMyLDAuMDAtMTYuMDAsNy4xODQtMTYuMDAsMTYuMDBMIDMyLjAwLDM1Mi4wMCBjMC4wMCw4Ljg0OCwgNy4xNTIsMTYuMDAsIDE2LjAwLDE2LjAwbCAzMDQuMDAsMC4wMCBjIDguODE2LDAuMDAsIDE2LjAwLTcuMTY4LCAxNi4wMC0xNi4wMGwwLjAwLTI1Ni4wMCAKCWMwLjAwLTguODE2LTcuMTg0LTE2LjAwLTE2LjAwLTE2LjAwTCA0OC4wMCw4MC4wMCB6IE0gNDgwLjAwLDk1LjU2OGwtMTQuMTkyLDAuMDAgTCA0NjQuMDAsOTUuNTY4IGwtNjQuMDAsNjQuMDBMIDQwMC4wMCwxNjAuMDAgbC0xNi4wMCwxNi4wMGwwLjAwLDk2LjAwIGwgODAuMDAsODAuMDBsIDEuODA4LDAuMDAgTCA0ODAuMDAsMzUyLjAwIEwgNDgwLjAwLDk1LjU2OCB6IiBkYXRhLXRhZ3M9InZpZGVvIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAwNjsiIGQ9Ik0gNDc5LjY4LDM3MC44OTZjLTEuNTM2LDI1LjEyLTIyLjE5Miw0NS4wNTYtNDcuNjgsNDUuMDU2bC00OC4wMCwwLjAwIGwwLjAwLDE2LjAwIEwgMzg0LjAwLDQzMS45ODQgCgkJYzAuMDAsMjYuNTEyLTIxLjUwNCw0OC4wMC00OC4wMCw0OC4wMEwgMTc2LjAwLDQ3OS45ODQgYy0yNi41MTIsMC4wMC00OC4wMC0yMS40ODgtNDguMDAtNDguMDBsMC4wMC0wLjAxNiBsMC4wMC0xNi4wMCBMIDgwLjAwLDQxNS45NjggYy0yNS41MiwwLjAwLTQ2LjE2LTE5LjkzNi00Ny42OTYtNDUuMDU2TCAzMi4wMCwzNzAuOTEyIGwwLjAwLTE4LjkyOCBsMC4wMC0xNi4wMCBjMC4wMC0xNy42NjQsIDE0LjMzNi0zMi4wMCwgMzIuMDAtMzIuMDBsMC4wMCwwLjAwbDAuMDAtMjcyLjAwIAoJCWMwLjAwLTM1LjM0NCwgMjguNjU2LTY0LjAwLCA2NC4wMC02NC4wMGwgMjU2LjAwLDAuMDAgYyAzNS4zNDQsMC4wMCwgNjQuMDAsMjguNjU2LCA2NC4wMCw2NC4wMGwwLjAwLDI3Mi4wMCBsMC4wMCwwLjAwYyAxNy42NjQsMC4wMCwgMzIuMDAsMTQuMzM2LCAzMi4wMCwzMi4wMGwwLjAwLDE2LjAwIEwgNDgwLjAwLDM3MC44OTYgTCA0NzkuNjgsMzcwLjg5NiB6IE0gMTYwLjAwLDQzMS45NjhjMC4wMCw4Ljg0OCwgNy4xNTIsMTYuMDAsIDE2LjAwLDE2LjAwbCAxNjAuMDAsMC4wMCAKCQljIDguODQ4LDAuMDAsIDE2LjAwLTcuMTUyLCAxNi4wMC0xNi4wMGwwLjAwLTE2LjAwIEwgMTYwLjAwLDQxNS45NjggTCAxNjAuMDAsNDMxLjk2OCB6IE0gNDE2LjAwLDMxLjk2OGMwLjAwLTE3LjYzMi0xNC4zNjgtMzIuMDAtMzIuMDAtMzIuMDBMIDEyOC4wMC0wLjAzMiBjLTE3LjY0OCwwLjAwLTMyLjAwLDE0LjM2OC0zMi4wMCwzMi4wMGwwLjAwLDI3Mi4wMCBsIDMyMC4wMCwwLjAwIEwgNDE2LjAwLDMxLjk2OCB6IE0gNDQ4LjAwLDM1MS45ODRsMC4wMC0xNi4wMCBMIDY0LjAwLDMzNS45ODQgbDAuMDAsMTYuMDAgTCA2NC4wMCwzNjcuOTY4IAoJCWMwLjAwLDguODQ4LCA3LjE1MiwxNi4wMCwgMTYuMDAsMTYuMDBsIDM1Mi4wMCwwLjAwIGMgOC44NDgsMC4wMCwgMTYuMDAtNy4xNTIsIDE2LjAwLTE2LjAwTCA0NDguMDAsMzUxLjk4NCB6TSAxNDQuMDAsMzEuOTA0bCAzMi4wMCwwLjAwIGMgOC44NDgsMC4wMCwgMTYuMDAsNy4xNTIsIDE2LjAwLDE2LjAwbDAuMDAsMjA4LjAwIGMwLjAwLDguODQ4LTcuMTUyLDE2LjAwLTE2LjAwLDE2LjAwTCAxNDQuMDAsMjcxLjkwNCAKCQljLTguODQ4LDAuMDAtMTYuMDAtNy4xNTItMTYuMDAtMTYuMDBsMC4wMC0yMDguMDAgQyAxMjguMDAsMzkuMDU2LCAxMzUuMTUyLDMxLjkwNCwgMTQ0LjAwLDMxLjkwNHogTSAxNDQuMDAsMjU1LjkybCAzMi4wMCwwLjAwIGwwLjAwLTIwOC4wMCBMIDE0NC4wMCw0Ny45MiBMIDE0NC4wMCwyNTUuOTIgek0gMjQwLjAwLDMxLjkwNGwgMzIuMDAsMC4wMCBjIDguODQ4LDAuMDAsIDE2LjAwLDcuMTUyLCAxNi4wMCwxNi4wMGwwLjAwLDIwOC4wMCBjMC4wMCw4Ljg0OC03LjE1MiwxNi4wMC0xNi4wMCwxNi4wMGwtMzIuMDAsMC4wMCAKCQljLTguODQ4LDAuMDAtMTYuMDAtNy4xNTItMTYuMDAtMTYuMDBsMC4wMC0yMDguMDAgQyAyMjQuMDAsMzkuMDU2LCAyMzEuMTUyLDMxLjkwNCwgMjQwLjAwLDMxLjkwNHogTSAyNDAuMDAsMjU1LjkybCAzMi4wMCwwLjAwIGwwLjAwLTIwOC4wMCBsLTMyLjAwLDAuMDAgTCAyNDAuMDAsMjU1LjkyIHpNIDMzNi4wMCwzMS45MDRsIDMyLjAwLDAuMDAgYyA4Ljg0OCwwLjAwLCAxNi4wMCw3LjE1MiwgMTYuMDAsMTYuMDBsMC4wMCwyMDguMDAgYzAuMDAsOC44NDgtNy4xNTIsMTYuMDAtMTYuMDAsMTYuMDBsLTMyLjAwLDAuMDAgCgkJYy04Ljg0OCwwLjAwLTE2LjAwLTcuMTUyLTE2LjAwLTE2LjAwbDAuMDAtMjA4LjAwIEMgMzIwLjAwLDM5LjA1NiwgMzI3LjE1MiwzMS45MDQsIDMzNi4wMCwzMS45MDR6IE0gMzM2LjAwLDI1NS45MmwgMzIuMDAsMC4wMCBsMC4wMC0yMDguMDAgbC0zMi4wMCwwLjAwIEwgMzM2LjAwLDI1NS45MiB6IiBkYXRhLXRhZ3M9InRyYXNoIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAwNzsiIGQ9Ik0gNDk3Ljc2LDI2LjYyNGMtMy4yMTYsMi4xMjgtNjEuNTY4LDQwLjQwLTE0OC4zNjgsNTkuMTg0YyAzMS44NCw0MC4zMzYsIDUyLjI4OCw5NC41OTIsIDYwLjk3NiwxMzAuNzA0CgljIDEyLjA2NCw1MC4wNDgsIDcuMzc2LDE0Ny45NjgtNDAuNjg4LDIwOC45OTJDIDM0MS41ODQsNDYxLjE2OCwgMzAyLjI3Miw0ODAuMDAsIDI1Ni4wMCw0ODAuMDBjLTQ2LjI3MiwwLjAwLTg1LjU4NC0xOC44NDgtMTEzLjY2NC01NC40OTYKCUMgOTQuMjcyLDM2NC40OTYsIDg5LjYwLDI2Ni41NzYsIDEwMS42NDgsMjE2LjUyOGMgOC42ODgtMzYuMTEyLCAyOS4xMi05MC4zNjgsIDYwLjk3Ni0xMzAuNzA0Yy04Ni44MC0xOC43ODQtMTQ1LjE1Mi01Ny4wNTYtMTQ4LjM1Mi01OS4xODQKCWMtMTEuNzI4LTcuODA4LTE2Ljk3Ni0yMi40MC0xMi44OC0zNS44NzJDIDUuNDU2LTIyLjc1MiwgMTcuOTItMzIuMDAsIDMyLjAwLTMyLjAwbCA0NDguMDAsMC4wMCBjIDE0LjA5NiwwLjAwLCAyNi41MjgsOS4yNDgsIDMwLjYyNCwyMi43NTIKCUMgNTE0LjczNiw0LjIyNCwgNTA5LjQ4OCwxOC44MTYsIDQ5Ny43NiwyNi42MjR6IE0gMzI0LjI3MiwxMDUuNjMybC01LjIxNi02LjYyNGMtMzguMTYtNDMuODQtODcuOTItNDMuODQtMTI2LjA2NCwwLjAwbC01LjIzMiw2LjYyNAoJYy00NC41Niw1Ni40NjQtNjYuNjcyLDEzMS4xNTItNTcuMTUyLDIwMi40MEMgMTM5LjMyOCwzNzYuNDk2LCAxNzguNTYsNDQ4LjAwLCAyNTYuMDAsNDQ4LjAwYyA3Ny40NCwwLjAwLCAxMTYuNjg4LTcxLjUyLCAxMjUuNDA4LTEzOS45ODQKCUMgMzkwLjg5NiwyMzYuNzM2LCAzNjguODY0LDE2Mi4xMjgsIDMyNC4yNzIsMTA1LjYzMnogTSAzMi4wMCwwLjAwYyAyLjIwOCwxLjQ3MiwgNTYuNDE2LDM3LjAyNCwgMTM3LjM3Niw1NC41MjhsIDM5Ljc0NCw4LjU5MkMgMjIzLjMxMiw1My44MDgsIDIzOC44OCw0OC4wMCwgMjU2LjAwLDQ4LjAwCgljIDE3LjEzNiwwLjAwLCAzMi42ODgsNS44MDgsIDQ2Ljg4LDE1LjEybCAzOS43NDQtOC41OTJjIDgwLjMyLTE3LjM3NiwgMTM0LjMzNi01Mi41MjgsIDEzNy4zNzYtNTQuNTI4TCAzMi4wMCwwLjAwIHoiIGRhdGEtdGFncz0idXNlciIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUwMDg7IiBkPSJNIDM1Mi4wNjQsNDgwLjAwYy04OC4zNjgsMC4wMC0xNjAuMDAtNzEuNjQ4LTE2MC4wMC0xNjAuMDBjMC4wMC0yMC41NiwgNC4zMDQtNDAuMDE2LCAxMS40MDgtNTguMDY0TCA5LjA4OCw2Ny41NjgKCQlDIDMuNDcyLDYxLjkzNiwgMC4wMCw1Ni41OTIsIDAuMDAsNDguMDBsMC4wMC00OC4wMCBjMC4wMC0xNy4xMiwgMTQuODY0LTMyLjAwLCAzMi4wMC0zMi4wMGwgNDguMDAsMC4wMCBjIDguNTc2LDAuMDAsIDE0LjAwLDMuNDQsIDE5LjYxNiw5LjAyNEwgMTIyLjU3NiwwLjAwbCAzNy40ODgsMC4wMCBjIDE3LjY2NCwwLjAwLCAzMi4wMCwxNC4zMzYsIDMyLjAwLDMyLjAwbDAuMDAsMzIuMDAgbCAzMi4wMCwwLjAwIAoJCWMgMTcuNjY0LDAuMDAsIDMyLjAwLDE0LjMzNiwgMzIuMDAsMzIuMDBsMC4wMCwzNy41MDQgbCAzNy45MDQsMzcuOTM2QyAzMTIuMDMyLDE2NC4zMiwgMzMxLjQ3MiwxNjAuMDAsIDM1Mi4wNjQsMTYwLjAwYyA4OC4zMzYsMC4wMCwgMTYwLjAwLDcxLjY0OCwgMTYwLjAwLDE2MC4wMFMgNDQwLjQwLDQ4MC4wMCwgMzUyLjA2NCw0ODAuMDB6IE0gMzUyLjA2NCwxOTIuMDAKCQljLTIzLjY4LDAuMDAtNDUuNjMyLDYuODgtNjQuNjU2LDE4LjExMmwtNS41MDQtNS40ODhsLTE4LjAwLTE4LjAwbC0zMC40OC0zMC40OTZjLTYuMDAtNi4wMC05LjM3Ni0xNC4xMjgtOS4zNzYtMjIuNjI0TCAyMjQuMDQ4LDk2LjAwIGwtMzIuMDAsMC4wMCAKCQljLTE3LjY2NCwwLjAwLTMyLjAwLTE0LjMyLTMyLjAwLTMyLjAwbDAuMDAtMzIuMDAgTCAxMjIuNTc2LDMyLjAwIGMtOC40OCwwLjAwLTE2LjYyNC0zLjM3Ni0yMi42MjQtOS4zNzZsLTIyLjY4OC0yMi42ODhMIDMyLjA0OCwwLjAwTCAzMi4wMCw0NS42MGwgMTg2LjY0LDE4Ni4zMDQKCQljMC4wMCwwLjAwLDAuMDAtMC4wMTYsIDAuMDE2LTAuMDMybCAyMy41MDQsMjMuNTA0Yy0xMS4yMzIsMTkuMDI0LTE4LjExMiw0MC45Ni0xOC4xMTIsNjQuNjRjMC4wMCw3MC42ODgsIDU3LjMyOCwxMjguMDAsIDEyOC4wMCwxMjguMDBzIDEyOC4wMC01Ny4zMTIsIDEyOC4wMC0xMjguMDBTIDQyMi43NTIsMTkyLjAwLCAzNTIuMDY0LDE5Mi4wMHpNIDQ0NS4xMiwzNDguMTc2Yy0xNy45MzYsMjQuOTkyLTM5Ljc3Niw0Ni44MC02NC44OCw2NC44NjRDIDM3Ni4xNiw0MTYuMDAsIDM3MC44OCw0MTYuNzM2LCAzNjYuMTI4LDQxNS4wNzIKCQljLTIyLjIyNC03LjgyNC0zNy40NC0yMy4wMjQtNDUuMjE2LTQ1LjI0OGMtMC41OTItMS42NjQtMC44OC0zLjM5Mi0wLjg4LTUuMTA0YzAuMDAtMy4xODQsIDAuOTkyLTYuMzM2LCAyLjkxMi05LjAwOAoJCWMgMTguMDAtMjUuMDI0LCAzOS44MDgtNDYuODQ4LCA2NC44NDgtNjQuODQ4YyA0LjA5Ni0yLjk0NCwgOS4zNDQtMy42OTYsIDE0LjA5Ni0yLjA0OGMgMjIuMjU2LDcuNzc2LCAzNy40NzIsMjMuMDA4LCA0NS4yOCw0NS4yNDgKCQljIDAuNTkyLDEuNjY0LCAwLjg4LDMuMzkyLCAwLjg4LDUuMTA0QyA0NDguMDMyLDM0Mi4zNTIsIDQ0Ny4wMjQsMzQ1LjUwNCwgNDQ1LjEyLDM0OC4xNzZ6IE0gMzk3LjEyLDMwMy44NEMgMzczLjQ3MiwzMjAuODQ4LCAzNTIuODgsMzQxLjQ0LCAzMzYuMDAsMzY0LjUyOAoJCWMgNi4xOTIsMTcuNjQ4LCAxNy43NzYsMjkuMjMyLCAzNC45MTIsMzUuNTM2YyAyMy42NjQtMTcuMDQsIDQ0LjIyNC0zNy41ODQsIDYxLjA1Ni02MC45NzZDIDQyNS43MTIsMzIxLjU2OCwgNDE0LjE2LDMxMC4wNDgsIDM5Ny4xMiwzMDMuODR6IiBkYXRhLXRhZ3M9ImtleSIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUwMDk7IiBkPSJNIDMyMC4wMCw0NzkuOTJjLTEwNi4wMzIsMC4wMC0xOTIuMDAtODUuOTY4LTE5Mi4wMC0xOTIuMDBjMC4wMC0zMi40MTYsIDguMTEyLTYyLjkyOCwgMjIuMzItODkuNzI4bC0xMzMuNTA0LTEzMy40NzJsIDAuMTEyLTAuMDk2CgkJQyA2LjQ5Niw1NC4zNjgsMC4wMCw0MC4xNiwwLjAwLDI0LjM2OGMwLjAwLTMxLjE4NCwgMjUuMjgtNTYuNDY0LCA1Ni40NjQtNTYuNDY0YyAxNS43NiwwLjAwLCAyOS45ODQsNi40OTYsIDQwLjI0LDE2Ljk0NGwtMC4wMzIsMC4wMzJsIDEzMy40NTYsMTMzLjQ0CgkJYyAyNi44MTYtMTQuMjU2LCA1Ny4zNzYtMjIuNDAsIDg5Ljg3Mi0yMi40MGMgMTA2LjAzMiwwLjAwLCAxOTIuMDAsODUuOTY4LCAxOTIuMDAsMTkyLjAwQyA1MTIuMDAsMzkzLjk1MiwgNDI2LjAzMiw0NzkuOTIsIDMyMC4wMCw0NzkuOTJ6IE0gNzYuNzIsNC44NDgKCQljLTUuMTUyLTUuMzQ0LTEyLjI4OC04LjY4OC0yMC4yNTYtOC42ODhjLTE1LjYwLDAuMDAtMjguMjQsMTIuNjI0LTI4LjI0LDI4LjIyNGMwLjAwLDcuOTY4LCAzLjM2LDE1LjA4OCwgOC42ODgsMjAuMjU2bC0wLjE0NCwwLjEyOGwgMTI5LjA1NiwxMjkuMDU2CgkJYyAxMS4yOC0xNS4yMTYsIDI0LjcyLTI4LjY1NiwgMzkuOTA0LTM5Ljk2OEwgNzYuNzIsNC44NDh6IE0gMzIwLjAwLDEyNy45MDRjLTg4LjM1MiwwLjAwLTE2MC4wMCw3MS42NjQtMTYwLjAwLDE2MC4wMGMwLjAwLDg4LjM1MiwgNzEuNjQ4LDE2MC4wMCwgMTYwLjAwLDE2MC4wMAoJCWMgODguMzM2LDAuMDAsIDE2MC4wMC03MS42NDgsIDE2MC4wMC0xNjAuMDBDIDQ4MC4wMCwxOTkuNTY4LCA0MDguMzM2LDEyNy45MDQsIDMyMC4wMCwxMjcuOTA0ek0gMzIwLjAwLDM5OS45MiBDIDMyNC40MCwzOTkuOTIgMzI4LjAwLDM5Ni4zMzYgMzI4LjAwLDM5MS45MiBDIDMyOC4wMCwzODcuNTA0IDMyNC40MCwzODMuOTIgMzIwLjAwLDM4My45MiBDIDI2Ni45NzYsMzgzLjkyIDIyNC4wMCwzNDAuOTI4IDIyNC4wMCwyODcuOTIgQyAyMjQuMDAsMjgzLjUwNCAyMjAuNDE2LDI3OS45MiAyMTYuMDAsMjc5LjkyIEMgMjExLjU4NCwyNzkuOTIgMjA4LjAwLDI4My41MDQgMjA4LjAwLDI4Ny45MiBDIDIwOC4wMCwzNDkuNzc2IDI1OC4xMjgsMzk5LjkyIDMyMC4wMCwzOTkuOTIgWiIgZGF0YS10YWdzPSJzZWFyY2giIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDBhOyIgZD0iTSA0ODYuMjU2LDI3Ny4xMmwtNDkuMDI0LDkuODI0Yy0yLjQ2NCw3LjA4OC01LjM3NiwxMy45NjgtOC41OTIsMjAuNjI0bCAyNy43NzYsNDEuNjY0CgkJYyA4LjQ2NCwxMi42ODgsIDYuNzg0LDI5LjYwLTQuMDAsNDAuMzY4bC0zMC43ODQsMzAuNzg0Yy02LjE5Miw2LjE5Mi0xNC4zNjgsOS4zNzYtMjIuNjU2LDkuMzc2Yy02LjEyOCwwLjAwLTEyLjMyLTEuNzYtMTcuNzEyLTUuMzc2CgkJbC00MS42NjQtMjcuNzZjLTYuNjg4LDMuMjMyLTEzLjU2OCw2LjExMi0yMC42NTYsOC41NzZMIDMwOS4xMiw0NTQuMjRjLTIuOTc2LDE0Ljk3Ni0xNi4xMjgsMjUuNzI4LTMxLjM3NiwyNS43MjhsLTQzLjUyLDAuMDAgCgkJYy0xNS4yNDgsMC4wMC0yOC4zODQtMTAuNzY4LTMxLjM3Ni0yNS43MjhsLTkuODI0LTQ5LjA0Yy03LjA4OC0yLjQ2NC0xMy45NjgtNS4zNi0yMC42MjQtOC41NzZMIDEzMC43NTIsNDI0LjM4NAoJCUMgMTI1LjMyOCw0MjguMDAsIDExOS4xNTIsNDI5Ljc2LCAxMTMuMDA4LDQyOS43NmMtOC4yNzIsMC4wMC0xNi40NDgtMy4xODQtMjIuNjQtOS4zNzZMIDU5LjYwLDM4OS42MGMtMTAuNzg0LTEwLjc4NC0xMi40NjQtMjcuNjgtNC4wMC00MC4zNjhsIDI3Ljc2LTQxLjY2NAoJCWMtMy4yMzItNi42NzItNi4xMTItMTMuNTUyLTguNTc2LTIwLjY0TCAyNS43MjgsMjc3LjEyQyAxMC43NjgsMjc0LjEyOCwwLjAwLDI2MC45OTIsMC4wMCwyNDUuNzQ0bDAuMDAtNDMuNTIgYzAuMDAtMTUuMjQ4LCAxMC43NjgtMjguNDAsIDI1LjcyOC0zMS4zNzYKCQlsIDQ5LjA0LTkuODRjIDIuNDY0LTcuMDg4LCA1LjM2LTEzLjk2OCwgOC41NzYtMjAuNjI0TCA1NS42MCw5OC43MmMtOC40NjQtMTIuNjg4LTYuNzg0LTI5LjYwLCA0LjAwLTQwLjM2OGwgMzAuNzg0LTMwLjc4NAoJCWMgNi4xOTItNi4xOTIsIDE0LjM2OC05LjM3NiwgMjIuNjQtOS4zNzZjIDYuMTQ0LDAuMDAsIDEyLjMzNiwxLjc3NiwgMTcuNzI4LDUuMzc2bCA0MS42NjQsMjcuNzc2YyA2LjY3Mi0zLjI0OCwgMTMuNTUyLTYuMTI4LCAyMC42NC04LjU5MgoJCWwgOS44MDgtNDkuMDI0YyAyLjk5Mi0xNC45NzYsIDE2LjEyOC0yNS43NDQsIDMxLjM3Ni0yNS43NDRsIDQzLjUyLDAuMDAgYyAxNS4yNDgsMC4wMCwgMjguNDAsMTAuNzg0LCAzMS4zNzYsMjUuNzQ0bCA5Ljg0LDQ5LjAyNAoJCWMgNy4wODgsMi40NjQsIDEzLjk2OCw1LjM3NiwgMjAuNjI0LDguNTkybCA0MS42NjQtMjcuNzc2YyA1LjQwOC0zLjYwLCAxMS42MC01LjM3NiwgMTcuNzEyLTUuMzc2YyA4LjI4OCwwLjAwLCAxNi40NjQsMy4xODQsIDIyLjY1Niw5LjM3NgoJCWwgMzAuNzg0LDMwLjc4NGMgMTAuNzg0LDEwLjc4NCwgMTIuNDY0LDI3LjY4LCA0LjAwLDQwLjM2OGwtMjcuNzc2LDQxLjY2NGMgMy4yNDgsNi42ODgsIDYuMTI4LDEzLjU2OCwgOC41OTIsMjAuNjU2bCA0OS4wMjQsOS44MDgKCQlDIDUwMS4yMTYsMTczLjgwOCwgNTEyLjAwLDE4Ni45NzYsIDUxMi4wMCwyMDIuMjI0bDAuMDAsNDMuNTIgQyA1MTIuMDAsMjYwLjk5MiwgNTAxLjIxNiwyNzQuMTI4LCA0ODYuMjU2LDI3Ny4xMnogTSA0MzAuOTQ0LDE5Mi40MAoJCWMtMTEuMTItMi4yMjQtMjAuMjI0LTEwLjE2LTIzLjkzNi0yMC44OGMtMi4wNjQtNS45MDQtNC40NjQtMTEuNjMyLTcuMTUyLTE3LjE4NGMtNC45NzYtMTAuMjI0LTQuMTI4LTIyLjI4OCwgMi4xNi0zMS43MTJsIDI3Ljc3Ni00MS42NjQKCQlsLTMwLjc4NC0zMC43ODRsLTQxLjY2NCwyNy43NzZjLTUuMzQ0LDMuNTY4LTExLjUzNiw1LjM3Ni0xNy43NDQsNS4zNzZjLTQuNzUyLDAuMDAtOS41MzYtMS4wNTYtMTMuOTM2LTMuMTg0CgkJYy01LjU2OC0yLjY4OC0xMS4yOC01LjEyLTE3LjIxNi03LjE4NGMtMTAuNjg4LTMuNzEyLTE4LjYyNC0xMi44MTYtMjAuODQ4LTIzLjkzNmwtOS44NC00OS4wNTZsLTQzLjUyLDAuMDAgbC05LjgwOCw0OS4wNTYKCQljLTIuMjI0LDExLjEyLTEwLjE2LDIwLjIyNC0yMC44NjQsMjMuOTM2Yy01LjkwNCwyLjA2NC0xMS42NDgsNC40NjQtMTcuMjAsNy4xNTJjLTQuNDE2LDIuMTYtOS4xODQsMy4yMTYtMTMuOTUyLDMuMjE2CgkJYy02LjIyNCwwLjAwLTEyLjQwLTEuODA4LTE3Ljc0NC01LjM3NmwtNDEuNjY0LTI3Ljc3NmwtMzAuNzg0LDMwLjc4NGwgMjcuNzYsNDEuNjY0YyA2LjI4OCw5LjQ0LCA3LjEwNCwyMS41MDQsIDIuMTkyLDMxLjY4CgkJYy0yLjY4OCw1LjU2OC01LjEwNCwxMS4yOC03LjE2OCwxNy4yMTZjLTMuNzEyLDEwLjY4OC0xMi44MzIsMTguNjI0LTIzLjkzNiwyMC44NDhsLTQ5LjA0LDkuODRMIDMyLjAwLDI0NS43NDRsIDQ5LjA1Niw5LjgwOAoJCWMgMTEuMTA0LDIuMjI0LCAyMC4yMjQsMTAuMTYsIDIzLjkzNiwyMC44NjRjIDIuMDY0LDUuOTA0LCA0LjQ0OCwxMS42NDgsIDcuMTUyLDE3LjIwYyA0Ljk2LDEwLjIwOCwgNC4xMjgsMjIuMjcyLTIuMTc2LDMxLjY5NkwgODIuMjI0LDM2Ni45NzYKCQlMIDExMi45OTIsMzk3Ljc2bCA0MS42NjQtMjcuNzZDIDE2MC4wMCwzNjYuNDMyLCAxNjYuMTkyLDM2NC42MjQsIDE3Mi40MCwzNjQuNjI0YyA0Ljc1MiwwLjAwLCA5LjUyLDEuMDU2LCAxMy45MzYsMy4xODRjIDUuNTUyLDIuNjg4LCAxMS4yOCw1LjEwNCwgMTcuMjAsNy4xNjgKCQljIDEwLjcwNCwzLjcxMiwgMTguNjQsMTIuODMyLCAyMC44NjQsMjMuOTM2bCA5LjgyNCw0OS4wNGwgNDMuNTIsMC4wMTZsIDkuODA4LTQ5LjA1NmMgMi4yMjQtMTEuMTA0LCAxMC4xNi0yMC4yMjQsIDIwLjg4LTIzLjkzNgoJCWMgNS45MDQtMi4wNjQsIDExLjYzMi00LjQ0OCwgMTcuMTg0LTcuMTUyYyA0LjQzMi0yLjE0NCwgOS4xODQtMy4yMCwgMTMuOTY4LTMuMjBjIDYuMjI0LDAuMDAsIDEyLjQwLDEuODA4LCAxNy43NDQsNS4zNzZsIDQxLjY2NCwyNy43NmwgMzAuNzg0LTMwLjc4NAoJCWwtMjcuNzc2LTQxLjY2NGMtNi4yODgtOS40NC03LjA4OC0yMS40ODgtMi4xOTItMzEuNjhjIDIuNjg4LTUuNTUyLCA1LjEyLTExLjI4LCA3LjE4NC0xNy4yMGMgMy43MTItMTAuNzA0LCAxMi44MTYtMTguNjQsIDIzLjkzNi0yMC44NjQKCQlsIDQ5LjAyNC05LjgyNEwgNDgwLjAwLDIwMi4yMjRMIDQzMC45NDQsMTkyLjQwek0gMjU2LjAwLDMzNS45ODRjLTYxLjg0LDAuMDAtMTEyLjAwLTUwLjE2LTExMi4wMC0xMTIuMDBjMC4wMC02MS44NTYsIDUwLjE2LTExMi4wMCwgMTEyLjAwLTExMi4wMHMgMTEyLjAwLDUwLjE2LCAxMTIuMDAsMTEyLjAwQyAzNjguMDAsMjg1LjgyNCwgMzE3Ljg0LDMzNS45ODQsIDI1Ni4wMCwzMzUuOTg0egoJCSBNIDI1Ni4wMCwxMjUuOTY4Yy01NC4xMTIsMC4wMC05OC4wMCw0My45MDQtOTguMDAsOTguMDBjMC4wMCw1NC4xMTIsIDQzLjg4OCw5OC4wMCwgOTguMDAsOTguMDBjIDU0LjA5NiwwLjAwLCA5OC4wMC00My44ODgsIDk4LjAwLTk4LjAwCgkJQyAzNTQuMDAsMTY5Ljg3MiwgMzEwLjA5NiwxMjUuOTY4LCAyNTYuMDAsMTI1Ljk2OHpNIDI1Ni4wMCwyODcuOTg0Yy0zNS4zNiwwLjAwLTY0LjAwLTI4LjY0LTY0LjAwLTY0LjAwYzAuMDAtMzUuMzQ0LCAyOC42NC02NC4wMCwgNjQuMDAtNjQuMDBjIDM1LjM0NCwwLjAwLCA2NC4wMCwyOC42NTYsIDY0LjAwLDY0LjAwQyAzMjAuMDAsMjU5LjMyOCwgMjkxLjM0NCwyODcuOTg0LCAyNTYuMDAsMjg3Ljk4NHoKCQkgTSAyNTYuMDAsMTc1Ljk2OGMtMjYuNDk2LDAuMDAtNDguMDAsMjEuNTA0LTQ4LjAwLDQ4LjAwYzAuMDAsMjYuNDk2LCAyMS41MDQsNDguMDAsIDQ4LjAwLDQ4LjAwcyA0OC4wMC0yMS41MDQsIDQ4LjAwLTQ4LjAwQyAzMDQuMDAsMTk3LjQ3MiwgMjgyLjQ5NiwxNzUuOTY4LCAyNTYuMDAsMTc1Ljk2OHoiIGRhdGEtdGFncz0ic2V0dGluZ3MiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDBiOyIgZD0iTSAyNTYuMDAsMzE5Ljk4NGMtNzAuNzA0LDAuMDAtMTI4LjAwLTU3LjI5Ni0xMjguMDAtMTI4LjAwYzAuMDAtNzAuNjg4LCA1Ny4yOTYtMTI4LjAwLCAxMjguMDAtMTI4LjAwCgkJYyA3MC42ODgsMC4wMCwgMTI4LjAwLDU3LjMxMiwgMTI4LjAwLDEyOC4wMEMgMzg0LjAwLDI2Mi42NzIsIDMyNi42ODgsMzE5Ljk4NCwgMjU2LjAwLDMxOS45ODR6IE0gMzI4Ljg4LDEyOS41MDRjLTM0LjQ5Ni00MC4yNTYtOTUuMDg4LTQ0LjkxMi0xMzUuMzQ0LTEwLjQwCgkJYy00MC4yNzIsMzQuNDk2LTQ0LjkxMiw5NS4xMDQtMTAuNDAsMTM1LjM0NGMgMzQuNDgsNDAuMjcyLCA5NS4wODgsNDQuOTEyLCAxMzUuMzQ0LDEwLjQwQyAzNTguNzIsMjMwLjM2OCwgMzYzLjM3NiwxNjkuNzQ0LCAzMjguODgsMTI5LjUwNHpNIDI1Ni4wMCwyNTUuOTg0IEMgMjYwLjQxNiwyNTUuOTg0IDI2NC4wMCwyNTIuNDAgMjY0LjAwLDI0Ny45ODQgQyAyNjQuMDAsMjQzLjU2OCAyNjAuNDE2LDIzOS45ODQgMjU2LjAwLDIzOS45ODQgQyAyMjkuNDg4LDIzOS45ODQgMjA4LjAxNiwyMTguNDk2IDIwOC4wMCwxOTIuMDAgTCAyMDguMDAsMTkxLjk2OCBDIDIwOC4wMCwxODcuNTY4IDIwNC40MTYsMTgzLjk2OCAyMDAuMDAsMTgzLjk2OCBDIDE5NS41ODQsMTgzLjk2OCAxOTIuMDAsMTg3LjU2OCAxOTIuMDAsMTkxLjk2OCBMIDE5Mi4wMCwxOTIuMDAgQyAxOTIuMDE2LDIyNy4zMjggMjIwLjY1NiwyNTUuOTg0IDI1Ni4wMCwyNTUuOTg0IFpNIDQ3MS44NzIsMzM1LjMyOGwtNjkuMzQ0LDExLjU2OGwtMjEuOTY4LDU0Ljk0NAoJCUMgMzczLjIxNiw0MjAuMTYsIDM1NS43MTIsNDMyLjAwLCAzMzYuMDAsNDMyLjAwTCAxNzYuMDAsNDMyLjAwIEMgMTU2LjI4OCw0MzIuMDAsIDEzOC43ODQsNDIwLjE2LCAxMzEuNDI0LDQwMS44MjRMIDEwOS40NzIsMzQ2Ljg5NkwgNDAuMTQ0LDMzNS4zMjhDIDE2Ljg4LDMzMS40NzIsMC4wMCwzMTEuNTY4LDAuMDAsMjg4LjAwbDAuMDAtMjQwLjAwIAoJCWMwLjAwLTI2LjQ2NCwgMjEuNTM2LTQ4LjAwLCA0OC4wMC00OC4wMGwgNDE2LjAwLDAuMDAgYyAyNi40NjQsMC4wMCwgNDguMDAsMjEuNTM2LCA0OC4wMCw0OC4wMEwgNTEyLjAwLDI4OC4wMCBDIDUxMi4wMCwzMTEuNTY4LCA0OTUuMTIsMzMxLjQ3MiwgNDcxLjg3MiwzMzUuMzI4eiBNIDQ4MC4wMCw0OC4wMGMwLjAwLTguODQ4LTcuMTUyLTE2LjAwLTE2LjAwLTE2LjAwTCA0OC4wMCwzMi4wMCAKCQljLTguODQ4LDAuMDAtMTYuMDAsNy4xNTItMTYuMDAsMTYuMDBMIDMyLjAwLDI4OC4wMCBjMC4wMCw3LjgyNCwgNS42NjQsMTQuNDk2LCAxMy4zNzYsMTUuNzc2bCA4Ny4xMDQsMTQuNTEybCAyOC42NTYsNzEuNjQ4QyAxNjMuNTg0LDM5Ni4wMCwgMTY5LjQ1Niw0MDAuMDAsIDE3Ni4wMCw0MDAuMDBsIDE2MC4wMCwwLjAwIAoJCWMgNi41MjgsMC4wMCwgMTIuNDAtMy45ODQsIDE0Ljg0OC0xMC4wNjRsIDI4LjY1Ni03MS42NDhsIDg3LjEyLTE0LjUxMkMgNDc0LjMzNiwzMDIuNDk2LCA0ODAuMDAsMjk1LjgyNCwgNDgwLjAwLDI4OC4wMEwgNDgwLjAwLDQ4LjAwIHoiIGRhdGEtdGFncz0iY2FtZXJhIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAwYzsiIGQ9Ik0gNTAyLjI1NiwyNTcuODcybC04MC4wMCwxMjguMDBjLTExLjY4LDE4LjcwNC0zMi4xOTIsMzAuMDgtNTQuMjU2LDMwLjA4TCA2NC4wMCw0MTUuOTUyIAoJCWMtMzUuMzQ0LDAuMDAtNjQuMDAtMjguNjU2LTY0LjAwLTY0LjAwbDAuMDAtMjU2LjAwIGMwLjAwLTM1LjM0NCwgMjguNjU2LTY0LjAwLCA2NC4wMC02NC4wMGwgMzA0LjAwLDAuMDAgYyAyMi4wNjQsMC4wMCwgNDIuNTYsMTEuMzc2LCA1NC4yNTYsMzAuMDk2bCA4MC4wMCwxMjguMDBDIDUxNS4yNDgsMjEwLjc2OCwgNTE1LjI0OCwyMzcuMTIsIDUwMi4yNTYsMjU3Ljg3MnoKCQkgTSA0NzUuMTIsMjA3LjAwOGwtODAuMDAtMTI4LjAzMmMtNS44NzItOS40MDgtMTYuMDMyLTE1LjAyNC0yNy4xMi0xNS4wMjRMIDY0LjAwLDYzLjk1MiBjLTE3LjY0OCwwLjAwLTMyLjAwLDE0LjM2OC0zMi4wMCwzMi4wMGwwLjAwLDI1Ni4wMCBjMC4wMCwxNy42NDgsIDE0LjM1MiwzMi4wMCwgMzIuMDAsMzIuMDBsIDMwNC4wMCwwLjAwIAoJCWMgMTEuMDg4LDAuMDAsIDIxLjI0OC01LjYzMiwgMjcuMTItMTUuMDI0bCA4MC4wMC0xMjguMDBDIDQ4MS41NjgsMjMwLjYwOCwgNDgxLjU2OCwyMTcuMjk2LCA0NzUuMTIsMjA3LjAwOHpNIDM2OC4wMCwyNzEuOTUyYy0yNi41MjgsMC4wMC00OC4wMC0yMS40ODgtNDguMDAtNDguMDBjMC4wMC0yNi41MTIsIDIxLjQ3Mi00OC4wMCwgNDguMDAtNDguMDAKCQljIDI2LjQ5NiwwLjAwLCA0OC4wMCwyMS41MDQsIDQ4LjAwLDQ4LjAwQyA0MTYuMDAsMjUwLjQ2NCwgMzk0LjQ5NiwyNzEuOTUyLCAzNjguMDAsMjcxLjk1MnogTSAzNjguMDAsMTkxLjkzNmMtMTcuNjgsMC4wMC0zMi4wMCwxNC4zMzYtMzIuMDAsMzIuMDBjMC4wMCwxNy42NjQsIDE0LjMyLDMyLjAwLCAzMi4wMCwzMi4wMAoJCWMgMTcuNjY0LDAuMDAsIDMyLjAwLTE0LjMzNiwgMzIuMDAtMzIuMDBDIDQwMC4wMCwyMDYuMjg4LCAzODUuNjY0LDE5MS45MzYsIDM2OC4wMCwxOTEuOTM2eiIgZGF0YS10YWdzPSJ0YWciIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDBkOyIgZD0iTSA0MDAuMDAsMjcyLjAwTCA0MDAuMDAsMzM2LjAwIGMwLjAwLDc5LjUzNi02NC40NjQsMTQ0LjAwLTE0NC4wMCwxNDQuMDBjLTc5LjUzNiwwLjAwLTE0NC4wMC02NC40NjQtMTQ0LjAwLTE0NC4wMGwwLjAwLTY0LjAwIGMtMjYuNTEyLDAuMDAtNDguMDAtMjEuNDg4LTQ4LjAwLTQ4LjAwbDAuMDAtNDguMDAgbDAuMDAtMTYuMDAgbDAuMDAtMzIuMDAgbDAuMDAtMTYuMDAgYzAuMDAtNzkuNTM2LCA2NC40NjQtMTQ0LjAwLCAxNDQuMDAtMTQ0LjAwbCA5Ni4wMCwwLjAwIAoJCWMgNzkuNTM2LDAuMDAsIDE0NC4wMCw2NC40NjQsIDE0NC4wMCwxNDQuMDBsMC4wMCwxNi4wMCBsMC4wMCwzMi4wMCBsMC4wMCwxNi4wMCBsMC4wMCw0OC4wMCBDIDQ0OC4wMCwyNTAuNTI4LCA0MjYuNDk2LDI3Mi4wMCwgNDAwLjAwLDI3Mi4wMHogTSAxNDQuMDAsMzM2LjAwYzAuMDAsNjEuODU2LCA1MC4xNDQsMTEyLjAwLCAxMTIuMDAsMTEyLjAwYyA2MS44NTYsMC4wMCwgMTEyLjAwLTUwLjE0NCwgMTEyLjAwLTExMi4wMGwwLjAwLTY0LjAwIGwtMzIuMDAsMC4wMCBMIDMzNi4wMCwzMzUuOTY4IAoJCWMwLjAwLDQ0LjE5Mi0zNS44MDgsODAuMDAtODAuMDAsODAuMDBjLTQ0LjE5MiwwLjAwLTgwLjAwLTM1LjgwOC04MC4wMC04MC4wMEwgMTc2LjAwLDI3Mi4wMCBMIDE0NC4wMCwyNzIuMDAgTCAxNDQuMDAsMzM2LjAwIHogTSAzMjAuMDAsMzM2LjAwbDAuMDAtMC4wNDggTCAzMjAuMDAsMjcyLjAwIGwtMTI4LjAwLDAuMDAgTCAxOTIuMDAsMzM1Ljk2OCBMIDE5Mi4wMCwzMzYuMDAgYzAuMDAsMzUuMzQ0LCAyOC42NTYsNjQuMDAsIDY0LjAwLDY0LjAwQyAyOTEuMzQ0LDQwMC4wMCwgMzIwLjAwLDM3MS4zNDQsIDMyMC4wMCwzMzYuMDB6IE0gNDE2LjAwLDE3Ni4wMAoJCWwwLjAwLTE2LjAwIGwwLjAwLTMyLjAwIGwwLjAwLTE2LjAwIGMwLjAwLTYxLjc0NC01MC4yNTYtMTEyLjAwLTExMi4wMC0xMTIuMDBsLTk2LjAwLDAuMDAgYy02MS43NDQsMC4wMC0xMTIuMDAsNTAuMjU2LTExMi4wMCwxMTIuMDBsMC4wMCwxNi4wMCBsMC4wMCwzMi4wMCBsMC4wMCwxNi4wMCBsMC4wMCw0OC4wMCBjMC4wMCw4LjgzMiwgNy4xNjgsMTYuMDAsIDE2LjAwLDE2LjAwYyAxMC42NzIsMC4wMCwgMjEuMzI4LDAuMDAsIDMyLjAwLDAuMDBsIDIyNC4wMCwwLjAwIGMgMTAuNjU2LDAuMDAsIDIxLjMxMiwwLjAwLCAzMi4wMCwwLjAwCgkJYyA4LjgxNiwwLjAwLCAxNi4wMC03LjE2OCwgMTYuMDAtMTYuMDBMIDQxNi4wMCwxNzYuMDAgek0gMjU2LjAwLDE3Ni4wMCBDIDI3My42NjQsMTc2LjAwIDI4OC4wMCwxNjEuNjggMjg4LjAwLDE0NC4wMCBDIDI4OC4wMCwxMzQuMjU2IDI4Mi43NTIsMTE1LjcxMiAyNzcuMzQ0LDEwMS4wODggQyAyNzIuOTc2LDg5LjI4IDI2OC41MTIsODAuMDMyIDI1Ni4wMCw4MC4wMzIgQyAyNDQuNDk2LDgwLjAzMiAyMzkuMDI0LDg5LjM3NiAyMzQuNjcyLDEwMS4yNDggQyAyMjkuMzI4LDExNS44NCAyMjQuMDAsMTM0LjI4OCAyMjQuMDAsMTQ0LjAwIEMgMjI0LjAwLDE2MS42OCAyMzguMzM2LDE3Ni4wMCAyNTYuMDAsMTc2LjAwIFoiIGRhdGEtdGFncz0ibG9jayIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUwMGU7IiBkPSJNIDI1Ni4wMCw0ODAuMDBDIDE1OC43ODQsNDgwLjAwLCA4MC4wMCw0MDEuMjE2LCA4MC4wMCwzMDQuMDBjMC4wMC02NC40OTYsIDU5LjAwOC0xMzIuODQ4LCA4MC40OTYtMTkyLjg4QyAxOTIuNTQ0LDIxLjYwLCAxODguOTkyLTMyLjAwLCAyNTYuMDAtMzIuMDAKCQljIDY4LjAwLDAuMDAsIDYzLjQ0LDUzLjM0NCwgOTUuNTA0LDE0Mi43NTJDIDM3My4wNTYsMTcwLjkxMiwgNDMyLjAwLDI0MC4wMCwgNDMyLjAwLDMwNC4wMEMgNDMyLjAwLDQwMS4yMTYsIDM1My4xODQsNDgwLjAwLCAyNTYuMDAsNDgwLjAweiBNIDI5Ny40NzIsNDUuMTg0bC03OS4zMjgtOS45MDQKCQljLTIuODMyLDguMTkyLTUuODcyLDE3Ljc3Ni05LjU2OCwzMC4yODhjLTAuMDQ4LDAuMTYtMC4xMTIsMC4zMzYtMC4xNDQsMC40OTZsIDk5LjAwOCwxMi4zNjhjLTEuNDA4LTQuNzItMi45MTItOS42OC00LjIyNC0xNC4xMjgKCQlDIDMwMS4xMiw1Ny4xMiwgMjk5LjI0OCw1MC44OCwgMjk3LjQ3Miw0NS4xODR6IE0gMjAzLjc3Niw4MS40NzJjLTIuOTEyLDkuNjMyLTYuMTkyLDE5Ljc3Ni05Ljg0LDMwLjUyOGwgMTI0LjI1NiwwLjAwIAoJCWMtMS45NjgtNS43NDQtMy45MzYtMTEuNTA0LTUuNjMyLTE2Ljk0NEwgMjAzLjc3Niw4MS40NzJ6IE0gMjU2LjAwLDAuMDBjLTE2LjIwOCwwLjAwLTIzLjY2NCwxLjg3Mi0zMS45NTIsMjAuMDBsIDY3LjgwOCw4LjQ5NgoJCUMgMjgyLjAzMiwyLjAzMiwgMjc0Ljg4LDAuMDAsIDI1Ni4wMCwwLjAweiBNIDMzMC43NTIsMTQ0LjAwbC0xNDkuMzI4LDAuMDAgYy03Ljk2OCwxNy4yOC0xNy41MzYsMzQuNTYtMjYuOTc2LDUxLjQ3MkMgMTMzLjU2OCwyMzIuODMyLCAxMTIuMDAsMjcxLjQ3MiwgMTEyLjAwLDMwNC4wMAoJCWMwLjAwLDc5LjQwOCwgNjQuNTkyLDE0NC4wMCwgMTQ0LjAwLDE0NC4wMGMgNzkuNDA4LDAuMDAsIDE0NC4wMC02NC41OTIsIDE0NC4wMC0xNDQuMDBjMC4wMC0zMi4yODgtMjEuNjAtNzEuMTM2LTQyLjQ5Ni0xMDguNzJDIDM0OC4xNiwxNzguNDMyLCAzMzguNjU2LDE2MS4xODQsIDMzMC43NTIsMTQ0LjAwek0gMjU2LjAwLDQwMC4wMCBDIDI2MC40MCw0MDAuMDAgMjY0LjAwLDM5Ni40MTYgMjY0LjAwLDM5Mi4wMCBDIDI2NC4wMCwzODcuNTg0IDI2MC40MTYsMzg0LjAwIDI1Ni4wMCwzODQuMDAgQyAyMTEuODg4LDM4NC4wMCAxNzYuMDAsMzQ4LjExMiAxNzYuMDAsMzA0LjAwIEMgMTc2LjAwLDI5OS41ODQgMTcyLjQxNiwyOTYuMDAgMTY4LjAwLDI5Ni4wMCBDIDE2My41ODQsMjk2LjAwIDE2MC4wMCwyOTkuNTg0IDE2MC4wMCwzMDQuMDAgQyAxNjAuMDAsMzU2Ljk0NCAyMDMuMDU2LDQwMC4wMCAyNTYuMDAsNDAwLjAwIFoiIGRhdGEtdGFncz0iYnVsYiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUwMGY7IiBkPSJNIDQ3MC4zMiw0MzguNzJDIDQ0NC4wMCw0NjUuMDA4LCA0MDkuMzQ0LDQ4MC4wMCwgMzc1LjE4NCw0ODAuMDBjLTI4LjgxNiwwLjAwLTU1LjM0NC0xMC42ODgtNzQuNzItMzAuMDMybC03Ny44NzItNzguNDY0CgljLTAuMjQtMC4yMjQtMC41MTItMC4zNjgtMC43NTItMC42MDhjLTAuMTI4LTAuMTI4LTAuMjA4LTAuMzA0LTAuMzM2LTAuNDE2bCAwLjAzMi0wLjAzMkwgNTYuMjcyLDIwMy45MDQKCWMtNy42MTYtNy41NjgtMTMuMTM2LTE2Ljk5Mi0xNi4yMDgtMjcuMjhsLTM3LjU4NC0xMzYuMTI4QyAyLjQ0OCw0MC4xMjgsMC4wMCwyOS40NCwwLjAwLDI0LjAwQzAuMDAtNi45MTIsIDI1LjEwNC0zMi4wMCwgNTYuMDY0LTMyLjAwCgljIDYuMTYsMC4wMCwgMTguMDgsMi45NDQsIDE4LjUxMiwzLjAwOGwgMTM1LjY0OCwzNS42NjRjIDEwLjMwNCwzLjA1NiwgMTkuNjY0LDguNjI0LCAyNy4yOCwxNi4yNTZsIDI0NC4yMDgsMjQ2LjEyOAoJQyA1MjYuMTI4LDMxMy41MDQsIDUyMS4xMiwzODguMDAsIDQ3MC4zMiw0MzguNzJ6IE0gMjU2LjIyNCw5OS4yOGMtMS4zMTIsMTQuNDMyLTUuMzkyLDI4LjU5Mi0xMS41MDQsNDIuMDMybCAxNTEuMjgsMTUxLjI2NAoJYyA5LjI0OC0yOS4yMTYsIDQuNDk2LTU5Ljc3Ni0xNS43NzYtODAuMDY0Yy0wLjEyOC0wLjEyOC0wLjI4OC0wLjIwOC0wLjQwLTAuMzM2bCAwLjIyNC0wLjIwOGwtMTIzLjY0OC0xMjQuNjQKCUMgMjU2LjQwLDkxLjMxMiwgMjU2LjU5Miw5NS4yMTYsIDI1Ni4yMjQsOTkuMjh6IE0gMjM2LjY4OCwxNTUuOTA0Yy01Ljk2OCw5LjgwOC0xMi43NTIsMTkuMjgtMjEuMTUyLDI3LjY2NAoJYy05Ljc3Niw5Ljc3Ni0yMC45OTIsMTcuNDQtMzIuNzA0LDIzLjg3MmwgMTUyLjUxMiwxNTIuNTEyYyAxMS45NjgtNS4zMTIsIDIzLjQ0LTEyLjg4LCAzMy41NjgtMjMuMDA4YyA4LjY1Ni04LjYyNCwgMTUuMzQ0LTE4LjI4OCwgMjAuNDk2LTI4LjMzNgoJTCAyMzYuNjg4LDE1NS45MDR6IE0gMTY3Ljc3NiwyMTUuMDA4Yy0xNC44MTYsNS45NjgtMzAuMzM2LDkuMzc2LTQ1Ljg4OCw5LjU4NGwgMTIzLjI0OCwxMjQuMTkyYyAxOC44NjQsMTguNDAsIDQ2LjMzNiwyMy42OTYsIDczLjM5MiwxNi45OTIKCUwgMTY3Ljc3NiwyMTUuMDA4eiBNIDY2LjY3MiwyLjAzMkMgNjQuOTI4LDEuNjMyLCA1OS41MDQsMC4yNTYsIDU1LjgyNCwwLjAwQyA0Mi42NzIsMC4xNiwgMzIuMDAsMTAuODQ4LCAzMi4wMCwyNC4wMAoJYyAwLjE5MiwyLjY4OCwgMS4yNjQsNy4zMTIsIDEuNjMyLDguOTkybCAxNi44NDgsNjEuMDI0YyAxOC4yODgsMC40OTYsIDM3Ljk2OC02LjYyNCwgNTMuNDQtMjIuMTI4YyAxNS43MTItMTUuNjgsIDIzLjEwNC0zNS43NDQsIDIyLjMwNC01NC4yNTYKCUwgNjYuNjcyLDIuMDMyeiBNIDE0MS45ODQsMjEuODA4Yy0wLjM4NCwyMS40NzItOS4xMiw0My44MDgtMjYuNzUyLDYxLjQwOEMgOTguNTYsOTkuOTA0LCA3Ni43MzYsMTA5LjUzNiwgNTQuOTc2LDExMC40MGwgMTUuOTM2LDU3LjcxMgoJYyAxLjE1MiwzLjg0LCAzLjQ0LDcuNjMyLCA2LjI1NiwxMC45NDRjIDMyLjA5NiwyMi45NzYsIDgxLjQ1NiwxNi4xOTIsIDExNS43NDQtMTguMTI4YyAzNi4yNzItMzYuMjU2LCA0MS44NzItODkuMzc2LCAxMy45MzYtMTIxLjA4OAoJYy0xLjg1Ni0wLjk3Ni0zLjcyOC0xLjkwNC01Ljc0NC0yLjQ5NkwgMTQxLjk4NCwyMS44MDh6IE0gNDU5LjA1NiwyOTEuNjQ4bC0yNi45NDQtMjcuMTUyYzAuMDAsMy42MTYsIDAuNDMyLDcuMDg4LCAwLjA5NiwxMC43ODQKCWMtMi44MTYsMzAuOTYtMTcuMjQ4LDYwLjg5Ni00MC42ODgsODQuMzA0Yy0yNi4wNjQsMjYuMDgtNjAuNjI0LDQxLjA0LTk0Ljg0OCw0MS4xMzZsIDI2LjQ5NiwyNi43MkMgMzM2LjQzMiw0NDAuNjcyLCAzNTQuOTQ0LDQ0OC4wMCwgMzc1LjE4NCw0NDguMDAKCWMgMjUuNzQ0LDAuMDAsIDUyLjE5Mi0xMS42NDgsIDcyLjUyOC0zMS45MmMgMTkuMDg4LTE5LjA1NiwgMzAuNDY0LTQyLjczNiwgMzIuMDk2LTY2LjY4OEMgNDgxLjMxMiwzMjcuMDQsIDQ3My45MzYsMzA2LjU0NCwgNDU5LjA1NiwyOTEuNjQ4eiIgZGF0YS10YWdzPSJwZW4iIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDEwOyIgZD0iTSA1MDIuNjI0LDMyNS4xNjhsLTgxLjI4LDgxLjI5NkMgNDE1LjM0NCw0MTIuNDY0LCA0MDcuMTg0LDQxNS44NCwgMzk4LjcyLDQxNS44NEwgMTEzLjI5Niw0MTUuODQgCgljLTguNDgsMC4wMC0xNi42MjQtMy4zNzYtMjIuNjI0LTkuMzc2bC04MS4yOC04MS4yOTZDIDMuMTA0LDMxOC44OTYtMC4wMzIsMzEwLjYyNCwwLjAwLDMwMi4zMzZjIDAuMDQ4LTcuNTIsIDIuNzM2LTE1LjAyNCwgOC4wOTYtMjEuMDU2CglsIDIyMy45ODQtMjM4LjUyOEMgMjM4LjE2LDM1LjkwNCwgMjQ2Ljg2NCwzMi4wMCwgMjU2LjAwLDMyLjAwYyA5LjEzNiwwLjAwLCAxNy44NCwzLjkwNCwgMjMuOTA0LDEwLjc1MmwgMjI0LjAwLDIzOC41MjhjIDUuNDcyLDYuMTYsIDguMTYsMTMuODcyLCA4LjA5NiwyMS41NjgKCUMgNTExLjkzNiwzMTAuOTQ0LCA1MDguNzg0LDMxOS4wMDgsIDUwMi42MjQsMzI1LjE2OHogTSAyOTEuNTA0LDMwMy44NEwgMjIwLjQ4LDMwMy44NCBMIDI1Ni4wMCwzMzMuNDI0TCAyOTEuNTA0LDMwMy44NHogTSAyNjguNTEyLDM0My44NGwgNDMuNzEyLDM2LjQ0OGwgMzIuMjg4LTMyLjI4OAoJTCAzMDQuMDAsMzE0LjI1NkwgMjY4LjUxMiwzNDMuODR6IE0gMjA4LjAwLDMxNC4yNTZMIDE2Ny40ODgsMzQ4LjAwbCAzMi4yODgsMzIuMjg4bCA0My43MjgtMzYuNDQ4TCAyMDguMDAsMzE0LjI1NnogTSAyOTUuODQsMjg3Ljg0TCAyNTYuMDAsODguNTkyTCAyMTYuMTYsMjg3Ljg0TCAyOTUuODQsMjg3Ljg0IHoKCSBNIDMxMi4xNiwyODcuODRsIDc4LjQ5NiwwLjAwIGwtMTE3Ljc0NC0xOTYuMzA0TCAzMTIuMTYsMjg3Ljg0eiBNIDMxNi40NjQsMzAzLjg0bCAzOS40MDgsMzIuODE2bCAzMi44MTYtMzIuODE2TCAzMTYuNDY0LDMwMy44NCB6IE0gMzMxLjMxMiwzODMuODRsIDU2LjE5MiwwLjAwIGwtMzAuNjU2LTI1LjU1MgoJTCAzMzEuMzEyLDM4My44NHogTSAyNTYuMDAsMzU0LjI0bC0zNS41MiwyOS42MGwgNzEuMDA4LDAuMDAgTCAyNTYuMDAsMzU0LjI0eiBNIDE1NS4xMzYsMzU4LjI4OEwgMTI0LjQ4LDM4My44NGwgNTYuMjA4LDAuMDAgTCAxNTUuMTM2LDM1OC4yODh6IE0gMTU2LjEyOCwzMzYuNjU2bCAzOS4zOTItMzIuODE2TCAxMjMuMzEyLDMwMy44NCAKCUwgMTU2LjEyOCwzMzYuNjU2eiBNIDE5OS44NCwyODcuODRsIDM5LjI0OC0xOTYuMzA0TCAxMjEuMzI4LDI4Ny44NEwgMTk5Ljg0LDI4Ny44NCB6IE0gMjAzLjI2NCwxMjAuMTkyTCA0NS44MjQsMjg3Ljg0bCA1Ni44NjQsMC4wMCBMIDIwMy4yNjQsMTIwLjE5MnogTSA0MDkuMzEyLDI4Ny44NGwgNTYuODgsMC4wMCAKCWwtMTU3LjQ3Mi0xNjcuNjhMIDQwOS4zMTIsMjg3Ljg0eiBNIDQxMS4zMTIsMzAzLjg0bC00My4wODgsNDMuMDg4bCAzNi43NTIsMzAuNjRsIDczLjcxMi03My43MjhMIDQxMS4zMTIsMzAzLjg0IHogTSAxMDYuOTc2LDM3Ny42MGwgMzYuODE2LTMwLjY3MkwgMTAwLjY4OCwzMDMuODRMIDMyLjA5NiwzMDMuODQgCglMIDEwNi45NzYsMzc3LjYweiIgZGF0YS10YWdzPSJkaWFtb25kIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAxMTsiIGQ9Ik0gNDMyLjAwLDQwMC4wNjRMIDgwLjAwLDQwMC4wMEMgNzEuMTUyLDQwMC4wMCwgNjQuMDAsMzkyLjkxMiwgNjQuMDAsMzg0LjA2NGwwLjAwLTIyNC4wMCBjMC4wMC04Ljg0OCwgNy4xNTItMTYuMDAsIDE2LjAwLTE2LjAwbCAzNTIuMDAsMC4wMCBjIDguODQ4LDAuMDAsIDE2LjAwLDcuMTUyLCAxNi4wMCwxNi4wMGwwLjAwLDIyNC4wMCAKCQlDIDQ0OC4wMCwzOTIuOTEyLCA0NDAuODQ4LDQwMC4wNjQsIDQzMi4wMCw0MDAuMDY0eiBNIDQzMi4wMCwxNjAuMDBMIDgwLjAwLDE2MC4wMCBMIDgwLjAwLDM4NC4wNjQgbCAzNTIuMDAsMC4wMCBMIDQzMi4wMCwxNjAuMDAgek0gNDY0LjAwLDQ2NC4wMEwgNDguMDAsNDY0LjAwIEMgMjEuNDg4LDQ2NC4wMCwwLjAwLDQ0Mi41MjgsMC4wMCw0MTYuMDBsMC4wMC0zMjAuMDAgYzAuMDAtMjYuNDY0LCAyMS40MDgtNDcuOTA0LCA0Ny44NC00Ny45NjhMIDIwOC4wMCw0OC4wMzIgbDAuMDAtMTkuNDcyIGwtOTkuODcyLTEyLjk3NgoJCUMgMTAwLjk5MiwxMy44MDgsIDk2LjAwLDcuNDA4LCA5Ni4wMCwwLjA2NGMwLjAwLTguODQ4LCA3LjE1Mi0xNi4wMCwgMTYuMDAtMTYuMDBsIDI4OC4wMCwwLjAwIGMgOC44NDgsMC4wMCwgMTYuMDAsNy4xNTIsIDE2LjAwLDE2LjAwYzAuMDAsNy4zNDQtNC45OTIsMTMuNzQ0LTEyLjEyOCwxNS41MzZMIDMwNC4wMCwyOC41NmwwLjAwLDE5LjQ3MiAKCQlsIDE2MC4xNiwwLjAwIEMgNDkwLjU5Miw0OC4wOTYsIDUxMi4wMCw2OS41MzYsIDUxMi4wMCw5Ni4wMEwgNTEyLjAwLDQxNi4wMCBDIDUxMi4wMCw0NDIuNTI4LCA0OTAuNDk2LDQ2NC4wMCwgNDY0LjAwLDQ2NC4wMHogTSA0ODAuMDAsOTYuMDBjMC4wMC04LjgxNi03LjE4NC0xNi4wMC0xNi4wMC0xNi4wMGwtMTQ0LjAwLDAuMDAgbC0xMjguMDAsMC4wMCBMIDQ4LjAwLDgwLjAwIGMtOC44MzIsMC4wMC0xNi4wMCw3LjE4NC0xNi4wMCwxNi4wMEwgMzIuMDAsNDE2LjAwIAoJCWMwLjAwLDguODMyLCA3LjE2OCwxNi4wMCwgMTYuMDAsMTYuMDBsIDQxNi4wMCwwLjAwIGMgOC44MTYsMC4wMCwgMTYuMDAtNy4xNjgsIDE2LjAwLTE2LjAwTCA0ODAuMDAsOTYuMDAgeiIgZGF0YS10YWdzPSJkaXNwbGF5IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAxMjsiIGQ9Ik0gMjU2LjAzMiwxOTYuMDY0YyA1Mi45NDQsMC4wMCwgOTYuMDAsNDMuMDcyLCA5Ni4wMCw5Ni4wMHMtNDMuMDU2LDk2LjAwLTk2LjAwLDk2LjAwCgkJYy01Mi45NDQsMC4wMC05Ni4wMC00My4wNTYtOTYuMDAtOTYuMDBTIDIwMy4wODgsMTk2LjA2NCwgMjU2LjAzMiwxOTYuMDY0eiBNIDI1Ni4wMzIsMzcyLjA2NGMgNDQuMTI4LDAuMDAsIDgwLjAwLTM1Ljg3MiwgODAuMDAtODAuMDBzLTM1Ljg3Mi04MC4wMC04MC4wMC04MC4wMGMtNDQuMTI4LDAuMDAtODAuMDAsMzUuODcyLTgwLjAwLDgwLjAwCgkJUyAyMTEuOTA0LDM3Mi4wNjQsIDI1Ni4wMzIsMzcyLjA2NHpNIDI1Ni4wMCw0ODAuMDBDIDE1MC4xMTIsNDgwLjAwLCA2NC4wMCwzOTQuOTQ0LCA2NC4wMCwyODcuOTg0YzAuMDAtMTEyLjAwLCA5Ni4wMTYtMjI2LjU3NiwgMTY2LjAxNi0zMDcuMTA0CgkJQyAyMzAuMjcyLTE5LjQ0LCAyNDEuNTA0LTMyLjAwLCAyNTUuMzkyLTMyLjAwYyAwLjAzMiwwLjAwLCAxLjE2OCwwLjAwLCAxLjIzMiwwLjAwYyAxMy44NzIsMC4wMCwgMjUuMTIsMTIuNTYsIDI1LjM3NiwxMi44OAoJCWMgNzAuMDMyLDgwLjUyOCwgMTY2LjAzMiwxOTUuMDg4LCAxNjYuMDMyLDMwNy4xMDRDIDQ0OC4wMzIsMzk0Ljk0NCwgMzYxLjkwNCw0ODAuMDAsIDI1Ni4wMCw0ODAuMDB6IE0gMjU3Ljg3MiwxLjg3MmMtMC4zMzYtMC4zMi0xLjMxMi0xLjAyNC0yLjE2LTEuNTY4CgkJYy0wLjE2LDAuNDMyLTEuMzQ0LDEuMzc2LTIuMDY0LDIuMTI4QyAxOTUuMDA4LDY5LjkwNCwgOTYuMDAsMTgzLjc3NiwgOTYuMDAsMjg3Ljk4NEMgOTYuMDAsMzc2LjIwOCwgMTY3Ljc5Miw0NDguMDAsIDI1Ni4wMCw0NDguMDBjIDg4LjI1NiwwLjAwLCAxNjAuMDMyLTcxLjc5MiwgMTYwLjAzMi0xNjAuMDMyCgkJQyA0MTYuMDMyLDE4My43NzYsIDMxNy4wMjQsNjkuOTA0LCAyNTcuODcyLDEuODcyeiIgZGF0YS10YWdzPSJsb2NhdGlvbiIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUwMTM7IiBkPSJNIDUxMS40NCwyMjcuNTg0Yy0wLjE2LDAuNjcyLTAuMDY0LDEuMzkyLTAuMzIsMi4wNDhjLTAuMDk2LDAuMjcyLTAuMzM2LDAuNDE2LTAuNDMyLDAuNjcyCgkJYy0wLjE2LDAuMzg0LTAuMTI4LDAuODE2LTAuMzM2LDEuMTg0Yy00Ni40MCw4OC44MTYtMTQ3LjQwOCwxNTIuNDQ4LTI1My45NjgsMTUyLjQ0OGMtMTA2LjU3NiwwLjAwLTIwNy41NjgtNjMuNTM2LTI1NC4wMC0xNTIuMzM2CgkJYy0wLjIwOC0wLjM2OC0wLjE3Ni0wLjgwLTAuMzM2LTEuMTg0Yy0wLjExMi0wLjI1Ni0wLjMzNi0wLjQwLTAuNDMyLTAuNjcyYy0wLjI1Ni0wLjY1Ni0wLjE2LTEuMzc2LTAuMzItMi4wNDgKCQljLTAuMjg4LTEuMjAtMC41Ni0yLjM1Mi0wLjU2LTMuNTg0cyAwLjI4OC0yLjM2OCwgMC41Ni0zLjU4NGMgMC4xNi0wLjY3MiwgMC4wNjQtMS4zOTIsIDAuMzItMi4wNDgKCQljIDAuMDk2LTAuMjcyLCAwLjMzNi0wLjQxNiwgMC40MzItMC42NzJjIDAuMTYtMC4zODQsIDAuMTI4LTAuODE2LCAwLjMzNi0xLjE4NGMgNDYuNDE2LTg4LjgxNiwgMTQ3LjQyNC0xNTIuNDQ4LCAyNTQuMDAtMTUyLjQ0OAoJCWMgMTA2LjU2LDAuMDAsIDIwNy41NjgsNjMuNTM2LCAyNTMuOTY4LDE1Mi4zMzZjIDAuMjI0LDAuMzY4LCAwLjE5MiwwLjgwLCAwLjMzNiwxLjE4NGMgMC4wOTYsMC4yNTYsIDAuMzM2LDAuNDAsIDAuNDMyLDAuNjcyCgkJYyAwLjI1NiwwLjY1NiwgMC4xNiwxLjM3NiwgMC4zMiwyLjA0OEMgNTExLjcxMiwyMjEuNjMyLCA1MTIuMDAsMjIyLjc4NCwgNTEyLjAwLDIyNC4wMFMgNTExLjcxMiwyMjYuMzg0LCA1MTEuNDQsMjI3LjU4NHogTSAyNTYuMzY4LDk2LjE5MgoJCWMtODkuODQsMC4wMC0xNzcuNzkyLDUxLjA1Ni0yMjEuNjE2LDEyNy45MmMgNDQuMDY0LDc2Ljk2LCAxMzEuODg4LDEyNy44NCwgMjIxLjYxNiwxMjcuODRjIDg5LjgwOCwwLjAwLCAxNzcuNzc2LTUxLjA3MiwgMjIxLjYwLTEyNy45MgoJCUMgNDMzLjkwNCwxNDcuMDU2LCAzNDYuMDk2LDk2LjE5MiwgMjU2LjM2OCw5Ni4xOTJ6TSAyNTYuMzY4LDI4OC4wMTYgQyAyNjAuNzg0LDI4OC4wMTYgMjY0LjMzNiwyODQuNDQ4IDI2NC4zMzYsMjgwLjAxNiBDIDI2NC4zMzYsMjc1LjYxNiAyNjAuNzY4LDI3Mi4wMzIgMjU2LjM2OCwyNzIuMDMyIEwgMjU2LjM2OCwyNzIuMDE2IEMgMjI5LjkwNCwyNzIuMDE2IDIwOC4zODQsMjUwLjQ5NiAyMDguMzg0LDIyNC4wNjQgQyAyMDguMzg0LDIxOS42NDggMjA0LjgwLDIxNi4wNjQgMjAwLjQwLDIxNi4wNjQgQyAxOTUuOTg0LDIxNi4wNjQgMTkyLjQwLDIxOS42NDggMTkyLjQwLDIyNC4wNjQgQyAxOTIuNDAsMjU5LjM0NCAyMjAuOTkyLDI4Ny45MzYgMjU2LjI3MiwyODguMDAgQyAyNTYuMzA0LDI4OC4wMCAyNTYuMzM2LDI4OC4wMTYgMjU2LjM2OCwyODguMDE2IFpNIDI1Ni4wMCwzMzYuMDBjLTYxLjg3MiwwLjAwLTExMi4wMC01MC4xNDQtMTEyLjAwLTExMi4wMGMwLjAwLTYxLjg1NiwgNTAuMTQ0LTExMi4wMCwgMTEyLjAwLTExMi4wMGMgNjEuODQsMC4wMCwgMTEyLjAwLDUwLjE2LCAxMTIuMDAsMTEyLjAwQyAzNjguMDAsMjg1Ljg3MiwgMzE3Ljg0LDMzNi4wMCwgMjU2LjAwLDMzNi4wMHogTSAyNTYuMDAsMTI4LjAwCgkJYy01Mi45NDQsMC4wMC05Ni4wMCw0My4wNTYtOTYuMDAsOTYuMDBjMC4wMCw1Mi45NDQsIDQzLjA1Niw5Ni4wMCwgOTYuMDAsOTYuMDBjIDUyLjk0NCwwLjAwLCA5Ni4wMC00My4wNTYsIDk2LjAwLTk2LjAwQyAzNTIuMDAsMTcxLjA1NiwgMzA4Ljk0NCwxMjguMDAsIDI1Ni4wMCwxMjguMDB6IiBkYXRhLXRhZ3M9ImV5ZSIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUwMTQ7IiBkPSJNIDI1Ni4wMCwzNjguMDAgQyAyNjAuNDE2LDM2OC4wMCAyNjQuMDAsMzY0LjQxNiAyNjQuMDAsMzYwLjAwIEMgMjY0LjAwLDM1NS41ODQgMjYwLjQwLDM1Mi4wMCAyNTYuMDAsMzUyLjAwIEMgMTcwLjc2OCwzNTIuMDAgOTYuMDAsMzA3LjEzNiA5Ni4wMCwyNTYuMDAgQyA5Ni4wMCwyNTEuNTg0IDkyLjQxNiwyNDguMDAgODguMDAsMjQ4LjAwIEMgODMuNTg0LDI0OC4wMCA4MC4wMCwyNTEuNTg0IDgwLjAwLDI1Ni4wMCBDIDgwLjAwLDMxNi43MDQgMTYwLjU5MiwzNjguMDAgMjU2LjAwLDM2OC4wMCBaTSAyNTYuMDAsNDQ4LjAwQyAxMTQuNjA4LDQ0OC4wMCwwLjAwLDM2Mi4wMzIsMC4wMCwyNTYuMDBjMC4wMC02Ni4wMzIsIDQ0LjQ2NC0xMjQuMjU2LCAxMTIuMTI4LTE1OC44MTYKCQlDIDExMi4xMjgsOTYuNzUyLCAxMTIuMDAsOTYuNDY0LCAxMTIuMDAsOTYuMDBjMC4wMC0yOC42ODgtMjEuNDI0LTU5LjU2OC0zMC44NDgtNzUuNzc2YyAwLjAxNiwwLjAwLCAwLjAzMiwwLjAwLCAwLjAzMiwwLjAwQyA4MC40MzIsMTguNDY0LCA4MC4wMCwxNi41MjgsIDgwLjAwLDE0LjQ5NgoJCUMgODAuMDAsNi40OTYsIDg2LjQ4LDAuMDAsIDk0LjQ5NiwwLjAwQyA5Ni4wMCwwLjAwLCA5OC42NCwwLjQwLCA5OC41NzYsMC4yMjRjIDUwLjAwLDguMTkyLCA5Ny4xMDQsNTQuMTI4LCAxMDguMDQ4LDY3LjQ0QyAyMjIuNjA4LDY1LjMxMiwgMjM5LjA4OCw2NC4wMCwgMjU2LjAwLDY0LjAwCgkJYyAxNDEuMzYsMC4wMCwgMjU2LjAwLDg1Ljk2OCwgMjU2LjAwLDE5Mi4wMEMgNTEyLjAwLDM2Mi4wMzIsIDM5Ny4zNzYsNDQ4LjAwLCAyNTYuMDAsNDQ4LjAweiBNIDI1Ni4wMCw5Ni4wMGMtMTQuNjcyLDAuMDAtMjkuNzI4LDEuMTItNDQuNzM2LDMuMzEyYy0xLjU1MiwwLjI1Ni0zLjEwNCwwLjMzNi00LjY0LDAuMzM2CgkJYy05LjUwNCwwLjAwLTE4LjYwOC00LjIyNC0yNC43MzYtMTEuNjhjLTYuODQ4LTguMzM2LTI2LjMzNi0yNi45NDQtNDkuMzYtNDAuNjI0YyA2LjI0LDE0LjMyLCAxMS4xMiwzMC4zNjgsIDExLjQ1Niw0Ni45MTIKCQljIDAuMDk2LDEuMDI0LCAwLjE0NCwyLjA2NCwgMC4xNDQsMi45NDRjMC4wMCwxMi4wMzItNi43MzYsMjMuMDI0LTE3LjQ0LDI4LjQ5NkMgNjcuMzkyLDE1NS45NjgsIDMyLjAwLDIwNC42ODgsIDMyLjAwLDI1Ni4wMEMgMzIuMDAsMzQ0LjIyNCwgMTMyLjQ4LDQxNi4wMCwgMjU2LjAwLDQxNi4wMAoJCWMgMTIzLjQ4OCwwLjAwLCAyMjQuMDAtNzEuNzc2LCAyMjQuMDAtMTYwLjAwQyA0ODAuMDAsMTY3Ljc3NiwgMzc5LjUwNCw5Ni4wMCwgMjU2LjAwLDk2LjAweiIgZGF0YS10YWdzPSJidWJibGUiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDE1OyIgZD0iTSA1MTAuNzg0LDE4NC43MkwgNDQ2Ljc1Miw0MjQuODE2QyA0NDIuODgsNDM4LjQ2NCwgNDMwLjIyNCw0NDguMDAsIDQxNi4wMCw0NDguMDBMIDI1Ni4wMCw0NDguMDAgTCA5Ni4wMCw0NDguMDAgQyA4MS43Niw0NDguMDAsIDY5LjEyLDQzOC40NjQsIDY1LjI0OCw0MjQuODE2TCAxLjIxNiwxODQuNzIKCQlDIDAuNDAsMTgxLjgwOCwwLjAwLDE3OC44OCwwLjAwLDE3Ni4wMGwwLjAwLTExMi4wMCBjMC4wMC0zNS4zNDQsIDI4LjY1Ni02NC4wMCwgNjQuMDAtNjQuMDBsIDM4NC4wMCwwLjAwIGMgMzUuMzQ0LDAuMDAsIDY0LjAwLDI4LjY1NiwgNjQuMDAsNjQuMDBsMC4wMCwxMTIuMDAgQyA1MTIuMDAsMTc4Ljg4LCA1MTEuNjAsMTgxLjgwOCwgNTEwLjc4NCwxODQuNzJ6IE0gNDgwLjAwLDY0LjAwCgkJYzAuMDAtMTcuNjMyLTE0LjM2OC0zMi4wMC0zMi4wMC0zMi4wMEwgNjQuMDAsMzIuMDAgYy0xNy42NDgsMC4wMC0zMi4wMCwxNC4zNjgtMzIuMDAsMzIuMDBsMC4wMCwxMTIuMDAgTCA5Ni4wMTYsNDE2LjAxNmwgMzE5Ljk1MiwwLjAwIEwgNDgwLjAwLDE3Ni4wMEwgNDgwLjAwLDY0LjAwIHpNIDM3OS44NzIsMzg0LjAwTCAxMzIuMTI4LDM4NC4wMCBjLTcuMjQ4LDAuMDAtMTMuNjAtNC44OC0xNS40NzItMTEuODg4bC01NS4xMi0xOTIuMDBjLTEuMjY0LTQuODE2LTAuMjU2LTkuOTM2LCAyLjc4NC0xMy44NzIKCQlTIDcyLjAzMiwxNjAuMDAsIDc2Ljk5MiwxNjAuMDBsIDQ2LjQ5NiwwLjAwIGwgMTguMjU2LDAuMDAgbCA4LjMzNiwwLjAwIGwgMjMuMTUyLTQ2LjMyQyAxNzguNjcyLDEwMi44NDgsIDE4OS43NDQsOTYuMDAsIDIwMS44NzIsOTYuMDBsIDEwOC4yNTYsMC4wMCBjIDEyLjEyOCwwLjAwLCAyMy4xODQsNi44NDgsIDI4LjYyNCwxNy42OAoJCUwgMzYxLjkwNCwxNjAuMDBsIDguMzM2LDAuMDAgbCAxOC4yNTYsMC4wMCBsIDQ2LjQ5NiwwLjAwIGMgNC45NzYsMC4wMCwgOS42NjQsMi4zMiwgMTIuNjg4LDYuMjU2cyA0LjAzMiw5LjA1NiwgMi43ODQsMTMuODcybC01NS4xMiwxOTIuMDBDIDM5My40NzIsMzc5LjEzNiwgMzg3LjEyLDM4NC4wMCwgMzc5Ljg3MiwzODQuMDB6CgkJIE0gMzg4LjQ5NiwxOTIuMDBsLTI2LjU5MiwwLjAwIGMtMTIuMTkyLDAuMDAtMjMuMTUyLTYuNzUyLTI4LjYyNC0xNy42OEwgMzEwLjEyOCwxMjguMDBsLTEwOC4yNTYsMC4wMCBsLTIzLjE1Miw0Ni4zMkMgMTczLjI0OCwxODUuMjQ4LCAxNjIuMjg4LDE5Mi4wMCwgMTUwLjA5NiwxOTIuMDBMIDEyMy41MDQsMTkyLjAwIEwgODUuMzQ0LDE5Mi4wMCAKCQlMIDEzMi4xMjgsMzY4LjAwbCAyNDcuNzQ0LDAuMDAgbCA0Ni43ODQtMTc2LjAwTCAzODguNDk2LDE5Mi4wMCB6IiBkYXRhLXRhZ3M9InN0YWNrIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAxNjsiIGQ9Ik0gNDQ5Ljc3NiwzOTkuNjQ4bC0xOS40NCw1OC40OEMgNDI2LjAwLDQ3MS4yMCwgNDEzLjc3Niw0ODAuMDAsIDQwMC4wMCw0ODAuMDBMIDExMi4wMCw0ODAuMDAgQyA5OC4yMDgsNDgwLjAwLCA4Ni4wMCw0NzEuMjAsIDgxLjYzMiw0NTguMTI4CglMIDYyLjAzMiwzOTkuNjE2QyA0NS4zMjgsMzk4LjU0NCwgMzIuMDAsMzg0Ljk3NiwgMzIuMDAsMzY4LjAwbDAuMDAtNDguMDAgYzAuMDAtMTcuNjY0LCAxNC4zMzYtMzIuMDAsIDMyLjAwLTMyLjAwbCAxNi41NDQsMC4wMCBjMC4wMC0xLjIwLTAuNDgtMi4zMzYtMC4zMzYtMy41MzZsIDMyLjAwLTI4OC4wMEMgMTE0LjAwLTE5LjcxMiwgMTI3LjY4LTMyLjAwLCAxNDQuMDAtMzIuMDAKCWwgMjI0LjAwLDAuMDAgYyAxNi4zMiwwLjAwLCAzMC4wMCwxMi4yODgsIDMxLjc3NiwyOC40NjRsIDMyLjAwLDI4OC4wMGMgMC4xNiwxLjIwLTAuMzM2LDIuMzM2LTAuMzM2LDMuNTM2TCA0NDguMDAsMjg4LjAwIGMgMTcuNjY0LDAuMDAsIDMyLjAwLDE0LjMzNiwgMzIuMDAsMzIuMDBMIDQ4MC4wMCwzNjguMDAgCglDIDQ4MC4wMCwzODUuMDQsIDQ2Ni41NiwzOTguNjcyLCA0NDkuNzc2LDM5OS42NDh6IE0gMTEyLjAwLDQ0OC4wMGwgMjg4LjAwLDAuMDAgbCAxNi4wMC00OC4wMEwgOTYuMDAsNDAwLjAwIEwgMTEyLjAwLDQ0OC4wMHogTSAxNDQuMDAsMC4wMGwtNS4zMjgsNDguMDBsIDIzNC42NTYsMC4wMCBMIDM2OC4wMCwwLjAwTCAxNDQuMDAsMC4wMCB6IE0gMzc1LjA4OCw2NC4wMEwgMTM2Ljg4LDY0LjAwIEwgMTE5LjEwNCwyMjQuMDBsIDI3My43NzYsMC4wMCAKCUwgMzc1LjA4OCw2NC4wMHogTSAzOTQuNjU2LDI0MC4wMEwgMTE3LjMyOCwyNDAuMDAgTCAxMTIuMDAsMjg4LjAwbCAyODguMDAsMC4wMCBMIDM5NC42NTYsMjQwLjAweiBNIDQ0OC4wMCwzMjAuMDBMIDY0LjAwLDMyMC4wMCBMIDY0LjAwLDM2OC4wMCBsIDM4NC4wMCwwLjAwIEwgNDQ4LjAwLDMyMC4wMCB6IiBkYXRhLXRhZ3M9ImN1cCIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUwMTc7IiBkPSJNIDM4NC4wMCw0ODAuMDBMIDEyOC4wMCw0ODAuMDBDIDEwMS40NzIsNDgwLjAwLCA4MC4wMCw0NTguNTEyLCA4MC4wMCw0MzIuMDBsMC4wMC00MTYuMDAgYzAuMDAtMjYuNTI4LCAyMS40ODgtNDguMDAsIDQ4LjAwLTQ4LjAwbCAyNTYuMDAsMC4wMCBjIDI2LjQ5NiwwLjAwLCA0OC4wMCwyMS41MDQsIDQ4LjAwLDQ4LjAwTCA0MzIuMDAsNDMyLjAwIEMgNDMyLjAwLDQ1OC41MjgsIDQxMC40OTYsNDgwLjAwLCAzODQuMDAsNDgwLjAwegoJCSBNIDQwMC4wMCwxNi4wMGMwLjAwLTguODE2LTcuMTg0LTE2LjAwLTE2LjAwLTE2LjAwTCAxMjguMDAsMC4wMCBjLTguODMyLDAuMDAtMTYuMDAsNy4xNTItMTYuMDAsMTYuMDBsMC4wMCwzMi4wNjQgbCAyODguMDAsMC4wMCBMIDQwMC4wMCwxNi4wMCB6IE0gNDAwLjAwLDY0LjA2NEwgMTEyLjAwLDY0LjA2NCBMIDExMi4wMCwzODQuMDAgTCA0MDAuMDAsMzg0LjAwTCA0MDAuMDAsNjQuMDY0IHogTSA0MDAuMDAsNDAwLjAwTCAxMTIuMDAsNDAwLjAwTCAxMTIuMDAsNDMyLjAwIGMwLjAwLDguODMyLCA3LjE2OCwxNi4wMCwgMTYuMDAsMTYuMDAKCQlMIDM4NC4wMCw0NDguMDBjIDguODE2LDAuMDAsIDE2LjAwLTcuMTY4LCAxNi4wMC0xNi4wMEwgNDAwLjAwLDQwMC4wMCB6TSAyODguMDAsNDI0LjAwQyAyODguMDAsNDE5LjU4NCwgMjg0LjQwLDQxNi4wMCwgMjgwLjAwLDQxNi4wMGwtNDguMDAsMC4wMCBDIDIyNy41NjgsNDE2LjAwLCAyMjQuMDAsNDE5LjU4NCwgMjI0LjAwLDQyNC4wMGwwLjAwLDAuMDBDIDIyNC4wMCw0MjguNDMyLCAyMjcuNTY4LDQzMi4wMCwgMjMyLjAwLDQzMi4wMGwgNDguMDAsMC4wMCAKCQlDIDI4NC40MCw0MzIuMDAsIDI4OC4wMCw0MjguNDMyLCAyODguMDAsNDI0LjAwTCAyODguMDAsNDI0LjAwek0gMjcyLjAwLDI0LjA2NGMwLjAwLTQuNDAtMy42MC04LjAwLTguMDAtOC4wMGwtMTYuMDAsMC4wMCBjLTQuNDE2LDAuMDAtOC4wMCwzLjYwLTguMDAsOC4wMGwwLjAwLDAuMDBjMC4wMCw0LjQzMiwgMy41ODQsOC4wMCwgOC4wMCw4LjAwbCAxNi4wMCwwLjAwIAoJCUMgMjY4LjQwLDMyLjA2NCwgMjcyLjAwLDI4LjQ5NiwgMjcyLjAwLDI0LjA2NEwgMjcyLjAwLDI0LjA2NHoiIGRhdGEtdGFncz0icGhvbmUiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDE4OyIgZD0iTSA0NjQuMDAsNDgwLjAwTCAxMTIuMDAsNDgwLjAwIEMgODUuNDg4LDQ4MC4wMCwgNjQuMDAsNDU4LjUyOCwgNjQuMDAsNDMyLjAwbDAuMDAtMzIuMDAgTCA0OC4wMCw0MDAuMDAgQyAyMS40ODgsNDAwLjAwLDAuMDAsMzc4LjUyOCwwLjAwLDM1Mi4wMGwwLjAwLTMyMC4wMCAKCQljMC4wMC0zNS4zNDQsIDI4LjY1Ni02NC4wMCwgNjQuMDAtNjQuMDBsIDM4NC4wMCwwLjAwIGMgMzUuMzQ0LDAuMDAsIDY0LjAwLDI4LjY1NiwgNjQuMDAsNjQuMDBMIDUxMi4wMCw0MzIuMDAgQyA1MTIuMDAsNDU4LjUyOCwgNDkwLjQ5Niw0ODAuMDAsIDQ2NC4wMCw0ODAuMDB6IE0gNDgwLjAwLDMyLjAwYzAuMDAtMTcuNjMyLTE0LjM2OC0zMi4wMC0zMi4wMC0zMi4wMEwgNjQuMDAsMC4wMCBjLTE3LjY0OCwwLjAwLTMyLjAwLDE0LjM2OC0zMi4wMCwzMi4wMEwgMzIuMDAsMzUyLjAwIAoJCWMwLjAwLDguODMyLCA3LjE2OCwxNi4wMCwgMTYuMDAsMTYuMDBsIDE2LjAwLDAuMDAgbDAuMDAtMzIwLjAwIGMwLjAwLTguODQ4LCA3LjE1Mi0xNi4wMCwgMTYuMDAtMTYuMDBzIDE2LjAwLDcuMTUyLCAxNi4wMCwxNi4wMEwgOTYuMDAsNDMyLjAwIGMwLjAwLDguODMyLCA3LjE2OCwxNi4wMCwgMTYuMDAsMTYuMDBsIDM1Mi4wMCwwLjAwIGMgOC44MTYsMC4wMCwgMTYuMDAtNy4xNjgsIDE2LjAwLTE2LjAwTCA0ODAuMDAsMzIuMDAgek0gMzExLjk2OCwyNzEuOTIgQyAzMDcuNTY4LDI3MS45MiAzMDMuOTY4LDI3NS41MDQgMzAzLjk2OCwyNzkuOTIgQyAzMDMuOTY4LDI4NC4zMzYgMzA3LjU2OCwyODcuOTIgMzExLjk2OCwyODcuOTIgTCA0MzkuOTY4LDI4Ny45MiBDIDQ0NC40MCwyODcuOTIgNDQ3Ljk2OCwyODQuMzM2IDQ0Ny45NjgsMjc5LjkyIEMgNDQ3Ljk2OCwyNzUuNTA0IDQ0NC40MCwyNzEuOTIgNDM5Ljk2OCwyNzEuOTIgTCAzMTEuOTY4LDI3MS45MiBaTSAzMTEuOTY4LDMxOS45MiBDIDMwNy41NjgsMzE5LjkyIDMwMy45NjgsMzIzLjUwNCAzMDMuOTY4LDMyNy45MiBDIDMwMy45NjgsMzMyLjMzNiAzMDcuNTY4LDMzNS45MiAzMTEuOTY4LDMzNS45MiBMIDQzOS45NjgsMzM1LjkyIEMgNDQ0LjQwLDMzNS45MiA0NDcuOTY4LDMzMi4zMzYgNDQ3Ljk2OCwzMjcuOTIgQyA0NDcuOTY4LDMyMy41MDQgNDQ0LjQwLDMxOS45MiA0MzkuOTY4LDMxOS45MiBMIDMxMS45NjgsMzE5LjkyIFpNIDMxMS45NjgsMzY3LjkyIEMgMzA3LjU2OCwzNjcuOTIgMzAzLjk2OCwzNzEuNTA0IDMwMy45NjgsMzc1LjkyIEMgMzAzLjk2OCwzODAuMzM2IDMwNy41NjgsMzgzLjkyIDMxMS45NjgsMzgzLjkyIEwgNDM5Ljk2OCwzODMuOTIgQyA0NDQuNDAsMzgzLjkyIDQ0Ny45NjgsMzgwLjMzNiA0NDcuOTY4LDM3NS45MiBDIDQ0Ny45NjgsMzcxLjUwNCA0NDQuNDAsMzY3LjkyIDQzOS45NjgsMzY3LjkyIEwgMzExLjk2OCwzNjcuOTIgWk0gMjY0LjAwLDQ3LjkzNiBDIDI2OC40MTYsNDcuOTM2IDI3Mi4wMCw0NC4zMzYgMjcyLjAwLDM5LjkzNiBDIDI3Mi4wMCwzNS41MDQgMjY4LjQwLDMxLjkzNiAyNjQuMDAsMzEuOTM2IEwgMTM2LjAwLDMxLjkzNiBDIDEzMS41ODQsMzEuOTM2IDEyOC4wMCwzNS41MDQgMTI4LjAwLDM5LjkzNiBDIDEyOC4wMCw0NC4zMzYgMTMxLjU4NCw0Ny45MzYgMTM2LjAwLDQ3LjkzNiBMIDI2NC4wMCw0Ny45MzYgWk0gMjY0LjAwLDk1LjkzNiBDIDI2OC40MTYsOTUuOTM2IDI3Mi4wMCw5Mi4zMzYgMjcyLjAwLDg3LjkzNiBDIDI3Mi4wMCw4My41MDQgMjY4LjQwLDc5LjkzNiAyNjQuMDAsNzkuOTM2IEwgMTM2LjAwLDc5LjkzNiBDIDEzMS41ODQsNzkuOTM2IDEyOC4wMCw4My41MDQgMTI4LjAwLDg3LjkzNiBDIDEyOC4wMCw5Mi4zMzYgMTMxLjU4NCw5NS45MzYgMTM2LjAwLDk1LjkzNiBMIDI2NC4wMCw5NS45MzYgWk0gMjY0LjAwLDE0My45MzYgQyAyNjguNDE2LDE0My45MzYgMjcyLjAwLDE0MC4zMzYgMjcyLjAwLDEzNS45MzYgQyAyNzIuMDAsMTMxLjUwNCAyNjguNDAsMTI3LjkzNiAyNjQuMDAsMTI3LjkzNiBMIDEzNi4wMCwxMjcuOTM2IEMgMTMxLjU4NCwxMjcuOTM2IDEyOC4wMCwxMzEuNTA0IDEyOC4wMCwxMzUuOTM2IEMgMTI4LjAwLDE0MC4zMzYgMTMxLjU4NCwxNDMuOTM2IDEzNi4wMCwxNDMuOTM2IEwgMjY0LjAwLDE0My45MzYgWk0gNDQwLjAwLDQ3LjkzNiBDIDQ0NC40MCw0Ny45MzYgNDQ4LjAwLDQ0LjMzNiA0NDguMDAsMzkuOTM2IEMgNDQ4LjAwLDM1LjUwNCA0NDQuNDAsMzEuOTM2IDQ0MC4wMCwzMS45MzYgTCAzMTIuMDAsMzEuOTM2IEMgMzA3LjU2OCwzMS45MzYgMzA0LjAwLDM1LjUwNCAzMDQuMDAsMzkuOTM2IEMgMzA0LjAwLDQ0LjMzNiAzMDcuNTY4LDQ3LjkzNiAzMTIuMDAsNDcuOTM2IEwgNDQwLjAwLDQ3LjkzNiBaTSA0NDAuMDAsOTUuOTM2IEMgNDQ0LjQwLDk1LjkzNiA0NDguMDAsOTIuMzM2IDQ0OC4wMCw4Ny45MzYgQyA0NDguMDAsODMuNTA0IDQ0NC40MCw3OS45MzYgNDQwLjAwLDc5LjkzNiBMIDMxMi4wMCw3OS45MzYgQyAzMDcuNTY4LDc5LjkzNiAzMDQuMDAsODMuNTA0IDMwNC4wMCw4Ny45MzYgQyAzMDQuMDAsOTIuMzM2IDMwNy41NjgsOTUuOTM2IDMxMi4wMCw5NS45MzYgTCA0NDAuMDAsOTUuOTM2IFpNIDQ0MC4wMCwxNDMuOTM2IEMgNDQ0LjQwLDE0My45MzYgNDQ4LjAwLDE0MC4zMzYgNDQ4LjAwLDEzNS45MzYgQyA0NDguMDAsMTMxLjUwNCA0NDQuNDAsMTI3LjkzNiA0NDAuMDAsMTI3LjkzNiBMIDMxMi4wMCwxMjcuOTM2IEMgMzA3LjU2OCwxMjcuOTM2IDMwNC4wMCwxMzEuNTA0IDMwNC4wMCwxMzUuOTM2IEMgMzA0LjAwLDE0MC4zMzYgMzA3LjU2OCwxNDMuOTM2IDMxMi4wMCwxNDMuOTM2IEwgNDQwLjAwLDE0My45MzYgWk0gNDQwLjAwLDIzOS45MzYgQyA0NDQuNDAsMjM5LjkzNiA0NDguMDAsMjM2LjM1MiA0NDguMDAsMjMxLjkzNiBDIDQ0OC4wMCwyMjcuNTIgNDQ0LjQwLDIyMy45MzYgNDQwLjAwLDIyMy45MzYgTCAxMzYuMDAsMjIzLjkzNiBDIDEzMS41ODQsMjIzLjkzNiAxMjguMDAsMjI3LjUyIDEyOC4wMCwyMzEuOTM2IEMgMTI4LjAwLDIzNi4zNTIgMTMxLjU4NCwyMzkuOTM2IDEzNi4wMCwyMzkuOTM2IEwgNDQwLjAwLDIzOS45MzYgWk0gNDQwLjAwLDE5MS45MzYgQyA0NDQuNDAsMTkxLjkzNiA0NDguMDAsMTg4LjMzNiA0NDguMDAsMTgzLjkzNiBDIDQ0OC4wMCwxNzkuNTA0IDQ0NC40MCwxNzUuOTM2IDQ0MC4wMCwxNzUuOTM2IEwgMTM2LjAwLDE3NS45MzYgQyAxMzEuNTg0LDE3NS45MzYgMTI4LjAwLDE3OS41MDQgMTI4LjAwLDE4My45MzYgQyAxMjguMDAsMTg4LjMzNiAxMzEuNTg0LDE5MS45MzYgMTM2LjAwLDE5MS45MzYgTCA0NDAuMDAsMTkxLjkzNiBaTSAxNDQuMDAsMjcyLjAwbCAxMTIuMDAsMC4wMCBjIDguODQ4LDAuMDAsIDE2LjAwLDcuMTUyLCAxNi4wMCwxNi4wMEwgMjcyLjAwLDM5OS45MzYgYzAuMDAsOC44NDgtNy4xNTIsMTYuMDAtMTYuMDAsMTYuMDBMIDE0NC4wMCw0MTUuOTM2IAoJCWMtOC44NDgsMC4wMC0xNi4wMC03LjE1Mi0xNi4wMC0xNi4wMEwgMTI4LjAwLDI4OC4wMCBDIDEyOC4wMCwyNzkuMTY4LCAxMzUuMTUyLDI3Mi4wMCwgMTQ0LjAwLDI3Mi4wMHogTSAxNjAuMDAsMzg0LjAwbCA4MC4wMCwwLjAwIGwwLjAwLTgwLjAwIGwtODAuMDAsMC4wMCBMIDE2MC4wMCwzODQuMDAgeiIgZGF0YS10YWdzPSJuZXdzIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAxOTsiIGQ9Ik0gNDQ4LjAwLDQwMC4wMEwgNjQuMDAsNDAwLjAwIEMgMjguNjU2LDQwMC4wMCwwLjAwLDM3MS4zMjgsMC4wMCwzMzYuMDBsMC4wMC0yMDguMDAgYzAuMDAtMzUuMzQ0LCAyOC42NTYtNjQuMDAsIDY0LjAwLTY0LjAwbCAzODQuMDAsMC4wMCBjIDM1LjM0NCwwLjAwLCA2NC4wMCwyOC42NTYsIDY0LjAwLDY0LjAwTCA1MTIuMDAsMzM2LjAwIAoJQyA1MTIuMDAsMzcxLjMyOCwgNDgzLjM0NCw0MDAuMDAsIDQ0OC4wMCw0MDAuMDB6IE0gMzIuMDAsMzE2LjAwbCAxMTEuOTg0LTg0LjAwTCAzMi4wMCwxNDguMDBMIDMyLjAwLDMxNi4wMCB6IE0gNDgwLjAwLDEyOC4wMGMwLjAwLTE3LjY2NC0xNC4zNjgtMzIuMDAtMzIuMDAtMzIuMDBMIDY0LjAwLDk2LjAwIGMtMTcuNjQ4LDAuMDAtMzIuMDAsMTQuMzM2LTMyLjAwLDMyLjAwbCAxMjUuMzEyLDk0LjAwCglsIDY5Ljg4OC01Mi40MzJjIDguNTI4LTYuMzY4LCAxOC42NTYtOS42MCwgMjguODAtOS42MGMgMTAuMTI4LDAuMDAsIDIwLjI1NiwzLjIxNiwgMjguNzg0LDkuNjBsIDY5LjkwNCw1Mi40MzJMIDQ4MC4wMCwxMjguMDBMIDQ4MC4wMCwxMjguMDB6IE0gNDgwLjAwLDE0OC4wMGwtMTEyLjAwLDg0LjAwbCAxMTIuMDAsODQuMDAKCUwgNDgwLjAwLDE0OC4wMCB6IE0gMjc1LjE4NCwxODIuMzY4Yy01LjU4NC00LjE5Mi0xMi4yMDgtNi40MC0xOS4xODQtNi40MGMtNi45NzYsMC4wMC0xMy42MTYsMi4yMjQtMTkuMjAsNi40MEwgMTcwLjY0LDIzMi4wMGwtMTMuMzI4LDEwLjAwTCAzMi4wMCwzMzUuOTg0TCAzMi4wMCwzMzYuMDAgCgljMC4wMCwxNy42NDgsIDE0LjM1MiwzMi4wMCwgMzIuMDAsMzIuMDBsIDM4NC4wMCwwLjAwIGMgMTcuNjMyLDAuMDAsIDMyLjAwLTE0LjM1MiwgMzIuMDAtMzIuMDBMIDI3NS4xODQsMTgyLjM2OHoiIGRhdGEtdGFncz0ibWFpbCIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUwMWE7IiBkPSJNIDQ2Ni42MjQsMzEyLjQ0OGMtMjAuMDAsNS4yNDgtNjcuMDI0LDUuMTg0LTEzNS44MDgsNy4wMDgKCQljIDMuMjQ4LDE1LjAwOCwgNC4wMCwyOC41NDQsIDQuMDAsNTIuNTc2QyAzMzQuODE2LDQyOS40NCwgMjkyLjk5Miw0ODAuMDAsIDI1Ni4wMCw0ODAuMDBjLTI2LjEyOCwwLjAwLTQ3LjY2NC0yMS4zNi00OC4wMC00Ny42MzJjLTAuMzUyLTMyLjIyNC0xMC4zMi04Ny44NzItNjQuMDAtMTE2LjA5NgoJCWMtMy45MzYtMi4wOC0xNS4yMC03LjYzMi0xNi44NDgtOC4zNTJMIDEyOC4wMCwzMDcuMjBDIDExOS42MCwzMTQuNDQ4LCAxMDcuOTUyLDMyMC4wMCwgOTYuMDAsMzIwLjAwTCA0OC4wMCwzMjAuMDAgYy0yNi40NjQsMC4wMC00OC4wMC0yMS41MzYtNDguMDAtNDguMDBsMC4wMC0yNTYuMDAgYzAuMDAtMjYuNDY0LCAyMS41MzYtNDguMDAsIDQ4LjAwLTQ4LjAwbCA0OC4wMCwwLjAwIAoJCWMgMTkuMDQsMC4wMCwgMzQuOTc2LDExLjUwNCwgNDIuNjg4LDI3LjYzMmMgMC4xOTItMC4wNjQsIDAuNTI4LTAuMTYsIDAuNzUyLTAuMTkyYyAxLjA1Ni0wLjI4OCwgMi4zMDQtMC41OTIsIDMuODI0LTAuOTkyCgkJQyAxNDMuNTUyLTUuNjMyLCAxNDMuNjk2LTUuNjY0LCAxNDQuMDAtNS43NDRjIDkuMjE2LTIuMjg4LCAyNi45Ni02LjUyOCwgNjQuODgtMTUuMjQ4QyAyMTcuMDA4LTIyLjg0OCwgMjU5Ljk1Mi0zMi4wMCwgMzA0LjQzMi0zMi4wMGwgODcuNDcyLDAuMDAgCgkJYyAyNi42NTYsMC4wMCwgNDUuODcyLDEwLjI1NiwgNTcuMzEyLDMwLjg0OGMgMC4xNiwwLjMyLCAzLjg0LDcuNTA0LCA2Ljg0OCwxNy4yMTZjIDIuMjU2LDcuMzEyLCAzLjA4OCwxNy42NjQsIDAuMzY4LDI4LjE2CgkJYyAxNy4xODQsMTEuODA4LCAyMi43MiwyOS42NjQsIDI2LjMyLDQxLjI4YyA2LjAzMiwxOS4wNTYsIDQuMjI0LDMzLjM3NiwgMC4wMzIsNDMuNjMyYyA5LjY2NCw5LjEyLCAxNy45MDQsMjMuMDI0LCAyMS4zNzYsNDQuMjU2CgkJYyAyLjE2LDEzLjE1Mi0wLjE2LDI2LjY4OC02LjIyNCwzNy45NTJjIDkuMDU2LDEwLjE3NiwgMTMuMTg0LDIyLjk3NiwgMTMuNjY0LDM0LjgxNmwgMC4xOTIsMy4zNDRDIDUxMS45MDQsMjUxLjYwLCA1MTIuMDAsMjUyLjg5NiwgNTEyLjAwLDI1Ny41MDQKCQlDIDUxMi4wMCwyNzcuNzEyLCA0OTguMDAsMzAzLjQ4OCwgNDY2LjYyNCwzMTIuNDQ4eiBNIDExMi4wMCwxNi4wMGMwLjAwLTguODQ4LTcuMTUyLTE2LjAwLTE2LjAwLTE2LjAwTCA0OC4wMCwwLjAwIGMtOC44NDgsMC4wMC0xNi4wMCw3LjE1Mi0xNi4wMCwxNi4wMEwgMzIuMDAsMjcyLjAwIGMwLjAwLDguODQ4LCA3LjE1MiwxNi4wMCwgMTYuMDAsMTYuMDBsIDQ4LjAwLDAuMDAgCgkJYyA4Ljg0OCwwLjAwLCAxNi4wMC03LjE1MiwgMTYuMDAtMTYuMDBMIDExMi4wMCwxNi4wMCB6IE0gNDc5LjYzMiwyNDcuNDRDIDQ3OS4zMTIsMjM5LjUzNiwgNDc2LjAwLDIyNC4wMCwgNDQ4LjAwLDIyNC4wMGMtMjQuMDAsMC4wMC0zMi4wMCwwLjAwLTMyLjAwLDAuMDBjLTQuNDMyLDAuMDAtOC4wMC0zLjU4NC04LjAwLTguMDBTIDQxMS41NjgsMjA4LjAwLCA0MTYuMDAsMjA4LjAwCgkJYzAuMDAsMC4wMCwgNy4wMDgsMC4wMCwgMzEuMDA4LDAuMDBzIDI3LjE1Mi0xOS45MDQsIDI1LjYwLTI5LjUwNEMgNDcwLjYyNCwxNjYuNTYsIDQ2NS4wMjQsMTQ0LjAwLCA0MzguMDAsMTQ0LjAwQyA0MTEuMDA4LDE0NC4wMCwgNDAwLjAwLDE0NC4wMCwgNDAwLjAwLDE0NC4wMGMtNC40MzIsMC4wMC04LjAwLTMuNTY4LTguMDAtOC4wMAoJCWMwLjAwLTQuNDAsIDMuNTY4LTguMDAsIDguMDAtOC4wMGMwLjAwLDAuMDAsIDE5LjAwOCwwLjAwLCAzMS41MDQsMC4wMGMgMjcuMDA4LDAuMDAsIDI0LjYyNC0yMC41OTIsIDIwLjc1Mi0zMi44OEMgNDQ3LjE1Miw3OC45NzYsIDQ0NC4wMzIsNjQuMDAsIDQxMC4wMCw2NC4wMAoJCWMtMTEuNTA0LDAuMDAtMjYuMDk2LDAuMDAtMjYuMDk2LDAuMDBjLTQuNDMyLDAuMDAtOC4wMC0zLjU2OC04LjAwLTguMDBjMC4wMC00LjQwLCAzLjU2OC04LjAwLCA4LjAwLTguMDBjMC4wMCwwLjAwLCAxMS4wODgsMC4wMCwgMjUuMDg4LDAuMDAKCQljIDE3LjUwNCwwLjAwLCAxOC4zMi0xNi41NiwgMTYuNDk2LTIyLjQ5NmMtMi4wMC02LjQ5Ni00LjM2OC0xMS4zMTItNC40NjQtMTEuNTM2QyA0MTYuMTkyLDUuMjQ4LCA0MDguNDAsMC4wMCwgMzkxLjkwNCwwLjAwbC04Ny40NzIsMC4wMCAKCQljLTQzLjkzNiwwLjAwLTg3LjUyLDkuOTY4LTg4LjY0LDEwLjIyNGMtNjYuNDY0LDE1LjMxMi02OS45NjgsMTYuNDk2LTc0LjE0NCwxNy42OGMwLjAwLDAuMDAtMTMuNTM2LDIuMjg4LTEzLjUzNiwxNC4wOTZMIDEyOC4wMCwyNjIuOTkyCgkJYzAuMDAsNy41MDQsIDQuNzg0LDE0LjI4OCwgMTIuNzA0LDE2LjY3MmMgMC45OTIsMC4zODQsIDIuMzM2LDAuODAsIDMuMjk2LDEuMjBjIDczLjA4OCwzMC4yNzIsIDk1LjM0NCw5Ni42NCwgOTYuMDAsMTUxLjEzNmMgMC4wOTYsNy42NjQsIDYuMDAsMTYuMDAsIDE2LjAwLDE2LjAwCgkJYyAxNi45MTIsMC4wMCwgNDYuODE2LTMzLjk1MiwgNDYuODE2LTc1Ljk2OEMgMzAyLjgxNiwzMzQuMDk2LCAzMDEuMjgsMzI3LjUzNiwgMjg4LjAwLDI4OC4wMGMgMTYwLjAwLDAuMDAsIDE1OC44OC0yLjMwNCwgMTcyLjk5Mi02LjAwQyA0NzguNDk2LDI3Ni45OTIsIDQ4MC4wMCwyNjIuNDk2LCA0ODAuMDAsMjU3LjUwNAoJCUMgNDgwLjAwLDI1Mi4wMTYsIDQ3OS44NCwyNTIuODE2LCA0NzkuNjMyLDI0Ny40NHpNIDcyLjAwLDY0LjAwQyA1OC43NTIsNjQuMDAsIDQ4LjAwLDUzLjI0OCwgNDguMDAsNDAuMDBTIDU4Ljc1MiwxNi4wMCwgNzIuMDAsMTYuMDAKCQlTIDk2LjAwLDI2Ljc1MiwgOTYuMDAsNDAuMDBTIDg1LjI0OCw2NC4wMCwgNzIuMDAsNjQuMDB6IE0gNzIuMDAsMzIuMDBDIDY3LjYwLDMyLjAwLCA2NC4wMCwzNS42MCwgNjQuMDAsNDAuMDBTIDY3LjYwLDQ4LjAwLCA3Mi4wMCw0OC4wMFMgODAuMDAsNDQuNDAsIDgwLjAwLDQwLjAwUyA3Ni40MCwzMi4wMCwgNzIuMDAsMzIuMDB6IiBkYXRhLXRhZ3M9Imxpa2UiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDFiOyIgZD0iTSA0MzIuMDAsNDgwLjAwTCA4MC4wMCw0ODAuMDAgQyA0NC42NTYsNDgwLjAwLCAxNi4wMCw0NTEuMzQ0LCAxNi4wMCw0MTYuMDBsMC4wMC0zODQuMDAgYzAuMDAtMzUuMzQ0LCAyOC42NTYtNjQuMDAsIDY0LjAwLTY0LjAwbCAzNTIuMDAsMC4wMCBjIDM1LjM0NCwwLjAwLCA2NC4wMCwyOC42NTYsIDY0LjAwLDY0LjAwTCA0OTYuMDAsNDE2LjAwIEMgNDk2LjAwLDQ1MS4zNDQsIDQ2Ny4zNDQsNDgwLjAwLCA0MzIuMDAsNDgwLjAwegoJCSBNIDQ2NC4wMCwzMi4wMGMwLjAwLTE3LjYzMi0xNC4zNjgtMzIuMDAtMzIuMDAtMzIuMDBMIDgwLjAwLDAuMDAgYy0xNy42NDgsMC4wMC0zMi4wMCwxNC4zNjgtMzIuMDAsMzIuMDBMIDQ4LjAwLDQxNi4wMCBjMC4wMCwxNy42NDgsIDE0LjM1MiwzMi4wMCwgMzIuMDAsMzIuMDBsIDM1Mi4wMCwwLjAwIGMgMTcuNjMyLDAuMDAsIDMyLjAwLTE0LjM1MiwgMzIuMDAtMzIuMDBMIDQ2NC4wMCwzMi4wMCB6TSA0MTYuMDAsNDE2LjAwTCA5Ni4wMCw0MTYuMDAgQyA4Ny4xNTIsNDE2LjAwLCA4MC4wMCw0MDguODQ4LCA4MC4wMCw0MDAuMDBsMC4wMC0yODguMDAgYzAuMDAtOC44NDgsIDcuMTUyLTE2LjAwLCAxNi4wMC0xNi4wMGwgMzIwLjAwLDAuMDAgYyA4Ljg0OCwwLjAwLCAxNi4wMCw3LjE1MiwgMTYuMDAsMTYuMDBMIDQzMi4wMCw0MDAuMDAgQyA0MzIuMDAsNDA4Ljg0OCwgNDI0Ljg0OCw0MTYuMDAsIDQxNi4wMCw0MTYuMDB6CgkJIE0gNDE2LjAwLDQwMC4wMGwwLjAwLTIyMS45MDQgbC01Mi4wMCw1Ni40OEMgMzYwLjk0NCwyMzguMDMyLCAzNTYuNTkyLDI0MC4wMCwgMzUyLjAwLDI0MC4wMHMtOC45NzYtMS45NjgtMTIuMDAtNS40MjRsLTQxLjY2NC00Ny4yMGwtMTI2LjMzNiwxNDMuMjAKCQlDIDE2OC45NiwzMzQuMDMyLCAxNjQuNTkyLDMzNi4wMCwgMTYwLjAwLDMzNi4wMFMgMTUxLjA0LDMzNC4wMzIsIDE0OC4wMCwzMzAuNTc2TCA5Ni4wMCwyNzAuNjA4TCA5Ni4wMCw0MDAuMDAgTCA0MTYuMDAsNDAwLjAwIHogTSA5Ni4wMCwyNDYuNDBsIDY0LjAwLDczLjYwbCAxMjkuMDU2LTE0Ni4yODhsIDkuMjgtMTAuNTI4TCAzNDIuNTI4LDExMi4wMEwgOTYuMDAsMTEyLjAwIEwgOTYuMDAsMjQ2LjQwIHoKCQkgTSAzNjMuODQsMTEyLjAwbC01NC44NDgsNjMuMjhMIDM1Mi4wMCwyMjQuMDBsIDY0LjAwLTcwLjA2NEwgNDE2LjAwLDExMi4wMCBMIDM2My44NCwxMTIuMDAgek0gMzIwLjAwLDI3Mi4wMGMgMjYuNDk2LDAuMDAsIDQ4LjAwLDIxLjQ4OCwgNDguMDAsNDguMDBzLTIxLjUwNCw0OC4wMC00OC4wMCw0OC4wMGMtMjYuNTI4LDAuMDAtNDguMDAtMjEuNDg4LTQ4LjAwLTQ4LjAwUyAyOTMuNDcyLDI3Mi4wMCwgMzIwLjAwLDI3Mi4wMHogTSAzMjAuMDAsMzUyLjAwYyAxNy42MzIsMC4wMCwgMzIuMDAtMTQuMzUyLCAzMi4wMC0zMi4wMAoJCXMtMTQuMzY4LTMyLjAwLTMyLjAwLTMyLjAwYy0xNy42NjQsMC4wMC0zMi4wMCwxNC4zNTItMzIuMDAsMzIuMDBTIDMwMi4zMzYsMzUyLjAwLCAzMjAuMDAsMzUyLjAweiIgZGF0YS10YWdzPSJwaG90byIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUwMWM7IiBkPSJNIDUwMi42MjQsMzU4LjY0bC05Ni4wMCw5Ni4wMEMgNDAwLjYyNCw0NjAuNjQsIDM5Mi40NjQsNDY0LjAwLCAzODQuMDAsNDY0LjAwTCA0OC4wMCw0NjQuMDAgCgkJQyAyMS41MzYsNDY0LjAwLDAuMDAsNDQyLjQ4LDAuMDAsNDE2LjAwbDAuMDAtMzg0LjAwIGMwLjAwLTI2LjQ2NCwgMjEuNTM2LTQ4LjAwLCA0OC4wMC00OC4wMGwgNDE2LjAwLDAuMDAgYyAyNi40NjQsMC4wMCwgNDguMDAsMjEuNTM2LCA0OC4wMCw0OC4wMEwgNTEyLjAwLDMzNi4wMCBDIDUxMi4wMCwzNDQuNDk2LCA1MDguNjI0LDM1Mi42NCwgNTAyLjYyNCwzNTguNjR6IE0gNDgwLjAwLDMyLjAwCgkJYzAuMDAtOC44NDgtNy4xNTItMTYuMDAtMTYuMDAtMTYuMDBMIDQ4LjAwLDE2LjAwIGMtOC44NDgsMC4wMC0xNi4wMCw3LjE1Mi0xNi4wMCwxNi4wMEwgMzIuMDAsNDE2LjAwIGMwLjAwLDguODQ4LCA3LjE1MiwxNi4wMCwgMTYuMDAsMTYuMDBsIDMyMC4wMCwwLjAwIGwwLjAwLTY0LjAwIGwtMC4wMzIsMC4wMCBjMC4wMC0yNi41MTIsIDIxLjUwNC00OC4wMCwgNDguMDAtNDguMDBsIDE2LjAwLDAuMDAgTCA0ODAuMDAsMzIwLjAwIEwgNDgwLjAwLDMyLjAwIHogTSA0MzEuOTY4LDMzNi4wMGwtMTYuMDAsMC4wMCAKCQljLTE3LjYzMiwwLjAwLTMyLjAwLDE0LjM1Mi0zMi4wMCwzMi4wMEwgMzg0LjAwLDM2OC4wMCBMIDM4NC4wMCw0MzIuMDAgbCA5Ni4wMC05Ni4wMEwgNDMxLjk2OCwzMzYuMDAgek0gMjQ4LjAwLDM1Mi4wMCBDIDI0My41ODQsMzUyLjAwIDI0MC4wMCwzNTUuNTY4IDI0MC4wMCwzNjAuMDAgQyAyNDAuMDAsMzY0LjQzMiAyNDMuNTg0LDM2OC4wMCAyNDguMDAsMzY4LjAwIEwgMzI4LjAwLDM2OC4wMCBDIDMzMi40MCwzNjguMDAgMzM2LjAwLDM2NC40MTYgMzM2LjAwLDM2MC4wMCBDIDMzNi4wMCwzNTUuNTg0IDMzMi40MCwzNTIuMDAgMzI4LjAwLDM1Mi4wMCBMIDI0OC4wMCwzNTIuMDAgWk0gMjQ4LjAwLDMwNC4wMCBDIDI0My41ODQsMzA0LjAwIDI0MC4wMCwzMDcuNTg0IDI0MC4wMCwzMTIuMDAgQyAyNDAuMDAsMzE2LjQxNiAyNDMuNTg0LDMyMC4wMCAyNDguMDAsMzIwLjAwIEwgMzI4LjAwLDMyMC4wMCBDIDMzMi40MCwzMjAuMDAgMzM2LjAwLDMxNi40MTYgMzM2LjAwLDMxMi4wMCBDIDMzNi4wMCwzMDcuNTg0IDMzMi40MCwzMDQuMDAgMzI4LjAwLDMwNC4wMCBMIDI0OC4wMCwzMDQuMDAgWk0gMjQwLjAwLDI2NC4wMCBDIDI0MC4wMCwyNjguNDMyIDI0My41ODQsMjcyLjAwIDI0OC4wMCwyNzIuMDAgTCA0NDAuMDAsMjcyLjAwIEMgNDQ0LjQwLDI3Mi4wMCA0NDguMDAsMjY4LjQxNiA0NDguMDAsMjY0LjAwIEMgNDQ4LjAwLDI1OS41ODQgNDQ0LjQwLDI1Ni4wMCA0NDAuMDAsMjU2LjAwIEwgMjQ4LjAwLDI1Ni4wMCBDIDI0My41ODQsMjU2LjAwIDI0MC4wMCwyNTkuNTg0IDI0MC4wMCwyNjQuMDAgWk0gNDQwLjAwLDE3Ni4wMCBDIDQ0NC40MCwxNzYuMDAgNDQ4LjAwLDE3Mi40MzIgNDQ4LjAwLDE2OC4wMCBDIDQ0OC4wMCwxNjMuNjAgNDQ0LjQwLDE2MC4wMCA0NDAuMDAsMTYwLjAwIEwgNzIuMDAsMTYwLjAwIEMgNjcuNTg0LDE2MC4wMCA2NC4wMCwxNjMuNjAgNjQuMDAsMTY4LjAwIEMgNjQuMDAsMTcyLjQzMiA2Ny41ODQsMTc2LjAwIDcyLjAwLDE3Ni4wMCBMIDQ0MC4wMCwxNzYuMDAgWk0gNDQwLjAwLDEyOC4wMCBDIDQ0NC40MCwxMjguMDAgNDQ4LjAwLDEyNC40MzIgNDQ4LjAwLDEyMC4wMCBDIDQ0OC4wMCwxMTUuNjAgNDQ0LjQwLDExMi4wMCA0NDAuMDAsMTEyLjAwIEwgNzIuMDAsMTEyLjAwIEMgNjcuNTg0LDExMi4wMCA2NC4wMCwxMTUuNjAgNjQuMDAsMTIwLjAwIEMgNjQuMDAsMTI0LjQzMiA2Ny41ODQsMTI4LjAwIDcyLjAwLDEyOC4wMCBMIDQ0MC4wMCwxMjguMDAgWk0gNDQwLjAwLDgwLjAwIEMgNDQ0LjQwLDgwLjAwIDQ0OC4wMCw3Ni40MzIgNDQ4LjAwLDcyLjAwIEMgNDQ4LjAwLDY3LjYwIDQ0NC40MCw2NC4wMCA0NDAuMDAsNjQuMDAgTCA3Mi4wMCw2NC4wMCBDIDY3LjU4NCw2NC4wMCA2NC4wMCw2Ny42MCA2NC4wMCw3Mi4wMCBDIDY0LjAwLDc2LjQzMiA2Ny41ODQsODAuMDAgNzIuMDAsODAuMDAgTCA0NDAuMDAsODAuMDAgWk0gNDQwLjAwLDIyNC4wMCBDIDQ0NC40MCwyMjQuMDAgNDQ4LjAwLDIyMC40MTYgNDQ4LjAwLDIxNi4wMCBDIDQ0OC4wMCwyMTEuNTg0IDQ0NC40MCwyMDguMDAgNDQwLjAwLDIwOC4wMCBMIDcyLjAwLDIwOC4wMCBDIDY3LjU4NCwyMDguMDAgNjQuMDAsMjExLjU2OCA2NC4wMCwyMTYuMDAgQyA2NC4wMCwyMjAuNDMyIDY3LjU4NCwyMjQuMDAgNzIuMDAsMjI0LjAwIEwgNDQwLjAwLDIyNC4wMCBaTSA4MC4wMCwyNTYuMDBsIDExMi4wMCwwLjAwIGMgOC44NDgsMC4wMCwgMTYuMDAsNy4xNTIsIDE2LjAwLDE2LjAwTCAyMDguMDAsMzY4LjAwIGMwLjAwLDguODQ4LTcuMTUyLDE2LjAwLTE2LjAwLDE2LjAwTCA4MC4wMCwzODQuMDAgCgkJQyA3MS4xNTIsMzg0LjAwLCA2NC4wMCwzNzYuODQ4LCA2NC4wMCwzNjguMDBsMC4wMC05Ni4wMCBDIDY0LjAwLDI2My4xNjgsIDcxLjE1MiwyNTYuMDAsIDgwLjAwLDI1Ni4wMHogTSA5Ni4wMCwzNTIuMDBsIDgwLjAwLDAuMDAgbDAuMDAtNjQuMDAgTCA5Ni4wMCwyODguMDAgTCA5Ni4wMCwzNTIuMDAgeiIgZGF0YS10YWdzPSJub3RlIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAxZDsiIGQ9Ik0gMjQwLjAwLDMyMC4wMEExNi4wMCwxNi4wMCAxODAuMDAgMSwwIDI3Mi4wMCwzMjBBMTYuMDAsMTYuMDAgMTgwLjAwIDEsMCAyNDAuMDAsMzIwek0gMjQwLjAwLDEyOC4wMEExNi4wMCwxNi4wMCAxODAuMDAgMSwwIDI3Mi4wMCwxMjhBMTYuMDAsMTYuMDAgMTgwLjAwIDEsMCAyNDAuMDAsMTI4ek0gMTQ0LjAwLDIyNC4wMEExNi4wMCwxNi4wMCAxODAuMDAgMSwwIDE3Ni4wMCwyMjRBMTYuMDAsMTYuMDAgMTgwLjAwIDEsMCAxNDQuMDAsMjI0ek0gMzM2LjAwLDIyNC4wMEExNi4wMCwxNi4wMCAxODAuMDAgMSwwIDM2OC4wMCwyMjRBMTYuMDAsMTYuMDAgMTgwLjAwIDEsMCAzMzYuMDAsMjI0ek0gMTcyLjExMiwxNTYuMTI4QTE2LjAwLDE2LjAwIDE4MC4wMCAxLDAgMjA0LjExMiwxNTYuMTI4QTE2LjAwLDE2LjAwIDE4MC4wMCAxLDAgMTcyLjExMiwxNTYuMTI4ek0gMTcyLjExMiwyOTEuODg4QTE2LjAwLDE2LjAwIDE4MC4wMCAxLDAgMjA0LjExMiwyOTEuODg4MDAwMDAwMDAwMDNBMTYuMDAsMTYuMDAgMTgwLjAwIDEsMCAxNzIuMTEyLDI5MS44ODgwMDAwMDAwMDAwM3pNIDMwNy44NzIsMTU2LjEyOEExNi4wMCwxNi4wMCAxODAuMDAgMSwwIDMzOS44NzIsMTU2LjEyOEExNi4wMCwxNi4wMCAxODAuMDAgMSwwIDMwNy44NzIsMTU2LjEyOHpNIDQxNi4wMCwyNTYuMDBjLTEuMTIsMC4wMC0yLjA2NC0wLjUyOC0zLjE1Mi0wLjY0Yy01LjU2OCwyNy45Mi0xOC43Miw1Mi44OTYtMzYuNzUyLDczLjUwNEwgMzUzLjEyLDQ1My44NTYKCQlDIDM1MC4zMiw0NjkuMDA4LCAzMzcuMDg4LDQ4MC4wMCwgMzIxLjY2NCw0ODAuMDBsLTEyOC4wMCwwLjAwIGMtMTUuNDI0LDAuMDAtMjguNjQtMTEuMDA4LTMxLjQ3Mi0yNi4xNmwtMjIuNDAtMTIwLjc4NEMgMTEyLjkxMiwzMDQuNDY0LCA5Ni4wMCwyNjYuMzY4LCA5Ni4wMCwyMjQuMDAKCQljMC4wMC00MS4zMjgsIDE2LjIyNC03OC40OCwgNDEuOTM2LTEwNi44NDhsIDIyLjU5Mi0xMjMuMDA4QyAxNjMuMzQ0LTIwLjk5MiwgMTc2LjU3Ni0zMi4wMCwgMTkyLjAwLTMyLjAwbCAxMjguMDAsMC4wMCBjIDE1LjQwOCwwLjAwLCAyOC42MjQsMTEuMDA4LCAzMS40NzIsMjYuMTZsIDIyLjc4NCwxMjIuOTEyCgkJYyAxOS4wMjQsMjAuOTc2LCAzMi44NDgsNDYuNzIsIDM4LjU5Miw3NS42MEMgNDEzLjkzNiwxOTIuNTI4LCA0MTQuODgsMTkyLjAwLCA0MTYuMDAsMTkyLjAwYyAxNy42NjQsMC4wMCwgMzIuMDAsMTQuMzM2LCAzMi4wMCwzMi4wMEMgNDQ4LjAwLDI0MS42OCwgNDMzLjY2NCwyNTYuMDAsIDQxNi4wMCwyNTYuMDB6IE0gMTkzLjY2NCw0NDguMDBsIDEyOC4wMCwwLjAwIAoJCWwgMTYuMDAtODYuMTkyQyAzMTQuMDMyLDM3NS41NTIsIDI4Ni45NzYsMzg0LjAwLCAyNTcuNjY0LDM4NC4wMGMtMjkuMjk2LDAuMDAtNTYuMzY4LTguNDQ4LTgwLjAwLTIyLjE5MkwgMTkzLjY2NCw0NDguMDB6IE0gMzIwLjAwLDAuMDBsLTEyOC4wMCwwLjAwIGwtMTYuMDAsODYuMTkyCgkJQyAxOTkuNjE2LDcyLjQ2NCwgMjI2LjY4OCw2NC4wMCwgMjU2LjAwLDY0LjAwYyAyOS4yOTYsMC4wMCwgNTYuMzg0LDguNDY0LCA4MC4wMCwyMi4xOTJMIDMyMC4wMCwwLjAweiBNIDI1Ni4wMCw5Ni4wMGMtNzAuNTc2LDAuMDAtMTI4LjAwLDU3LjQ0LTEyOC4wMCwxMjguMDBjMC4wMCw3MC41NzYsIDU3LjQyNCwxMjguMDAsIDEyOC4wMCwxMjguMDAKCQljIDcwLjU3NiwwLjAwLCAxMjguMDAtNTcuNDI0LCAxMjguMDAtMTI4LjAwQyAzODQuMDAsMTUzLjQ0LCAzMjYuNTYsOTYuMDAsIDI1Ni4wMCw5Ni4wMHpNIDMzNS4wNTYsMzAzLjU4NCBDIDMzNi45OTIsMzAxLjY0OCAzMzcuMTg0LDI5OC41MjggMzM1LjUwNCwyOTYuNDAgTCAyOTYuNjg4LDI0OC4wNjQgTCAyNjcuMTIsMjEyLjQ2NCBDIDI2NC4wOTYsMjA5LjU1MiAyNTkuOTM2LDIwOC4wNjQgMjU1LjkzNiwyMDguMDMyIEMgMjUxLjYzMiwyMDguMDY0IDI0Ny42MTYsMjA5LjcyOCAyNDQuNjI0LDIxMi43MDQgQyAyNDEuNjMyLDIxNS42OCAyNDAuMDAsMjE5LjY2NCAyNDAuMDAsMjIzLjg3MiBDIDI0MC4wMCwyMjguMjI0IDI0MS42OCwyMzIuMjg4IDI0NC43MzYsMjM1LjM2IEwgMzI3LjgwOCwzMDMuOTIgQyAzMzAuMDAsMzA1LjY4IDMzMy4xMiwzMDUuNTIgMzM1LjA1NiwzMDMuNTg0IFoiIGRhdGEtdGFncz0iY2xvY2siIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDFlOyIgZD0iTSA1MDQuNjg4LDQ3Ny40NEMgNTAyLjAzMiw0NzkuMTUyLCA0OTkuMDA4LDQ4MC4wMCwgNDk2LjAwLDQ4MC4wMGMtMy4wODgsMC4wMC02LjE5Mi0wLjg4LTguODgtMi42ODhsLTQ4MC4wMC0zMjAuMDAKCWMtNC45NDQtMy4yOC03LjY2NC05LjA1Ni03LjAyNC0xNC45NzZjIDAuNjA4LTUuOTA0LCA0LjQ0OC0xMS4wMDgsIDkuOTY4LTEzLjE4NGwgMTI1LjE4NC01MC4wOTZsIDU4Ljg2NC0xMDMuMDA4CgljIDIuODE2LTQuOTQ0LCA4LjA0OC04LjAwLCAxMy43MTItOC4wNjRjIDAuMDY0LDAuMDAsIDAuMTEyLDAuMDAsIDAuMTc2LDAuMDBjIDUuNjE2LDAuMDAsIDEwLjgzMiwyLjk3NiwgMTMuNzEyLDcuNzc2bCAzMy4yMzIsNTUuNDA4bCAxNTUuMTItNjIuMDMyCglDIDQxMS45NjgtMzEuNjMyLCA0MTMuOTY4LTMyLjAwLCA0MTYuMDAtMzIuMDBjIDIuNzIsMC4wMCwgNS40MDgsMC42ODgsIDcuODQsMi4wNjRjIDQuMjI0LDIuMzY4LCA3LjEyLDYuNTI4LCA3LjkzNiwxMS4zMTJsIDgwLjAwLDQ4MC4wMAoJQyA1MTIuODE2LDQ2Ny42NjQsIDUxMC4wMzIsNDczLjk2OCwgNTA0LjY4OCw0NzcuNDR6IE0gNTAuMTc2LDE0Ny41NjhMIDQyMC45NzYsMzk0Ljc4NEwgMTUxLjM3NiwxMDYuMTkyYy0xLjQyNCwwLjg0OC0yLjY4OCwxLjk2OC00LjI1NiwyLjU5MgoJTCA1MC4xNzYsMTQ3LjU2OHogTSAxNjMuMDI0LDk0Ljk0NGMtMC4wMzIsMC4wNjQtMC4wOCwwLjA5Ni0wLjExMiwwLjE2TCA0NjYuMDAsNDE5LjUwNEwgMjA3LjYxNiwxNi45MTJMIDE2My4wMjQsOTQuOTQ0eiBNIDQwMy40NzIsNi4yNTYKCWwtMTM2LjY1Niw1NC42NTZjLTMuMjQ4LDEuMjgtNi42MjQsMS43MTItOS45NjgsMS45MDRMIDQ2Ny4yOCwzODkuMDI0TCA0MDMuNDcyLDYuMjU2eiIgZGF0YS10YWdzPSJwYXBlcnBsYW5lIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAxZjsiIGQ9Ik0gMTI4LjAwLDM4My42NjRMIDEyOC4wMCw0MzIuMDAgYzAuMDAsMjYuNDY0LTIxLjUzNiw0OC4wMC00OC4wMCw0OC4wMFMgMzIuMDAsNDU4LjQ2NCwgMzIuMDAsNDMyLjAwbDAuMDAtNDguMzM2IAoJCUMgMTIuNjcyLDM2OS4wMjQsMC4wMCwzNDYuMDk2LDAuMDAsMzIwLjAwcyAxMi42NzItNDkuMDI0LCAzMi4wMC02My42MzJMIDMyLjAwLDE2LjAwIGMwLjAwLTI2LjQ2NCwgMjEuNTM2LTQ4LjAwLCA0OC4wMC00OC4wMHMgNDguMDAsMjEuNTM2LCA0OC4wMCw0OC4wMEwgMTI4LjAwLDI1Ni4zNjggYyAxOS4zMjgsMTQuNTkyLCAzMi4wMCwzNy41MzYsIDMyLjAwLDYzLjYzMgoJCVMgMTQ3LjMyOCwzNjkuMDI0LCAxMjguMDAsMzgzLjY2NHogTSA2NC4wMCw0MzIuMDBjMC4wMCw4Ljg0OCwgNy4xNTIsMTYuMDAsIDE2LjAwLDE2LjAwcyAxNi4wMC03LjE1MiwgMTYuMDAtMTYuMDBsMC4wMC0zMy42MCBDIDkwLjgzMiwzOTkuNDQsIDg1LjQ4OCw0MDAuMDAsIDgwLjAwLDQwMC4wMFMgNjkuMTY4LDM5OS40NCwgNjQuMDAsMzk4LjQwTCA2NC4wMCw0MzIuMDAgeiBNIDk2LjAwLDE2LjAwCgkJYzAuMDAtOC44NDgtNy4xNTItMTYuMDAtMTYuMDAtMTYuMDBzLTE2LjAwLDcuMTUyLTE2LjAwLDE2LjAwTCA2NC4wMCwyNDEuNjMyIEMgNjkuMTY4LDI0MC41NiwgNzQuNTEyLDI0MC4wMCwgODAuMDAsMjQwLjAwcyAxMC44MzIsMC41NiwgMTYuMDAsMS42MzJMIDk2LjAwLDE2LjAwIHogTSAxMjUuODQsMzA2LjU2CgkJYy0wLjI1Ni0wLjg0OC0wLjQ4LTEuNjgtMC43ODQtMi41MjhjLTEuNTItNC4yMjQtMy40NzItOC4yMjQtNi4wNDgtMTEuNzc2Yy0wLjA2NC0wLjA5Ni0wLjE2LTAuMTYtMC4yMjQtMC4yNTYKCQljLTIuNzg0LTMuODA4LTYuMDk2LTcuMTg0LTkuODU2LTEwLjAzMmMtMC4wNjQtMC4wNjQtMC4xMTItMC4wOTYtMC4xNi0wLjEyOGMtMy44NTYtMi45MTItOC4xNi01LjI0OC0xMi43ODQtNi44OAoJCUMgOTAuOTc2LDI3My4xNTIsIDg1LjY0OCwyNzIuMDAsIDgwLjAwLDI3Mi4wMHMtMTAuOTc2LDEuMTUyLTE2LjAwLDIuOTc2Yy00LjYyNCwxLjYzMi04LjkyOCwzLjk2OC0xMi43ODQsNi44OGMtMC4wNDgsMC4wMzItMC4wOTYsMC4wNjQtMC4xNiwwLjEyOAoJCWMtMy43NiwyLjg0OC03LjA3Miw2LjIyNC05Ljg1NiwxMC4wMzJjLTAuMDY0LDAuMDk2LTAuMTYsMC4xNi0wLjIyNCwwLjI1NmMtMi41NzYsMy41NjgtNC41MjgsNy41NjgtNi4wNDgsMTEuNzc2CgkJYy0wLjMwNCwwLjg0OC0wLjUyOCwxLjY4LTAuNzg0LDIuNTI4QyAzMi44OCwzMTAuODQ4LCAzMi4wMCwzMTUuMzEyLCAzMi4wMCwzMjAuMDBjMC4wMCw0LjcyLCAwLjg4LDkuMTg0LCAyLjE2LDEzLjQ3MgoJCWMgMC4yNTYsMC44NDgsIDAuNDgsMS42OCwgMC43ODQsMi40OTZDIDM2LjQ0OCwzNDAuMTkyLCAzOC40MCwzNDQuMTkyLCA0MC45OTIsMzQ3Ljc3NmMgMC4wNjQsMC4wOTYsIDAuMTYsMC4xNiwgMC4yMjQsMC4yNTYKCQljIDIuNzg0LDMuNzc2LCA2LjA5Niw3LjE4NCwgOS44NTYsMTAuMDMyYyAwLjA2NCwwLjAzMiwgMC4xMTIsMC4wOTYsIDAuMTYsMC4xMjhDIDU1LjA3MiwzNjEuMDU2LCA1OS4zNzYsMzYzLjQwOCwgNjQuMDAsMzY1LjA1NgoJCUMgNjkuMDI0LDM2Ni44NDgsIDc0LjM1MiwzNjguMDAsIDgwLjAwLDM2OC4wMHMgMTAuOTc2LTEuMTUyLCAxNi4wMC0yLjk0NGMgNC42MjQtMS42NjQsIDguOTI4LTQuMDAsIDEyLjc4NC02Ljg4YyAwLjA0OC0wLjAzMiwgMC4wOTYtMC4wOTYsIDAuMTYtMC4xMjgKCQljIDMuNzYtMi44NDgsIDcuMDcyLTYuMjU2LCA5Ljg1Ni0xMC4wMzJjIDAuMDY0LTAuMDk2LCAwLjE2LTAuMTYsIDAuMjI0LTAuMjU2QyAxMjEuNjAsMzQ0LjE5MiwgMTIzLjU1MiwzNDAuMTkyLCAxMjUuMDU2LDMzNS45NjgKCQlDIDEyNS4zNiwzMzUuMTUyLCAxMjUuNjAsMzM0LjMyLCAxMjUuODQsMzMzLjQ3MkMgMTI3LjEyLDMyOS4xODQsIDEyOC4wMCwzMjQuNzIsIDEyOC4wMCwzMjAuMDBDIDEyOC4wMCwzMTUuMzEyLCAxMjcuMTIsMzEwLjg0OCwgMTI1Ljg0LDMwNi41NnpNIDQ4MC4wMCwzODMuNjY0TCA0ODAuMDAsNDMyLjAwIGMwLjAwLDI2LjQ2NC0yMS41MzYsNDguMDAtNDguMDAsNDguMDBzLTQ4LjAwLTIxLjUzNi00OC4wMC00OC4wMGwwLjAwLTQ4LjMzNiAKCQlDIDM2NC42NTYsMzY5LjAyNCwgMzUyLjAwLDM0Ni4wOTYsIDM1Mi4wMCwzMjAuMDBzIDEyLjY1Ni00OS4wMjQsIDMyLjAwLTYzLjYzMkwgMzg0LjAwLDE2LjAwIGMwLjAwLTI2LjQ2NCwgMjEuNTM2LTQ4LjAwLCA0OC4wMC00OC4wMHMgNDguMDAsMjEuNTM2LCA0OC4wMCw0OC4wMEwgNDgwLjAwLDI1Ni4zNjggYyAxOS4zMTIsMTQuNTkyLCAzMi4wMCwzNy41MzYsIDMyLjAwLDYzLjYzMgoJCVMgNDk5LjMxMiwzNjkuMDI0LCA0ODAuMDAsMzgzLjY2NHogTSA0MTYuMDAsNDMyLjAwYzAuMDAsOC44NDgsIDcuMTUyLDE2LjAwLCAxNi4wMCwxNi4wMHMgMTYuMDAtNy4xNTIsIDE2LjAwLTE2LjAwbDAuMDAtMzMuNjAgQyA0NDIuODE2LDM5OS40NCwgNDM3LjQ3Miw0MDAuMDAsIDQzMi4wMCw0MDAuMDBjLTUuNTA0LDAuMDAtMTAuODQ4LTAuNTYtMTYuMDAtMS42MEwgNDE2LjAwLDQzMi4wMCB6CgkJIE0gNDQ4LjAwLDE2LjAwYzAuMDAtOC44NDgtNy4xNTItMTYuMDAtMTYuMDAtMTYuMDBzLTE2LjAwLDcuMTUyLTE2LjAwLDE2LjAwTCA0MTYuMDAsMjQxLjYzMiBDIDQyMS4xNTIsMjQwLjU2LCA0MjYuNDk2LDI0MC4wMCwgNDMyLjAwLDI0MC4wMGMgNS40NzIsMC4wMCwgMTAuODE2LDAuNTYsIDE2LjAwLDEuNjMyTCA0NDguMDAsMTYuMDAgeiBNIDQ3Ny44NCwzMDYuNTYKCQljLTAuMjU2LTAuODQ4LTAuNDk2LTEuNjgtMC43ODQtMi41MjhjLTEuNTM2LTQuMjI0LTMuNDcyLTguMjI0LTYuMDY0LTExLjc3NmMtMC4wNjQtMC4wOTYtMC4xNi0wLjE2LTAuMjI0LTAuMjU2CgkJYy0yLjc4NC0zLjgwOC02LjA5Ni03LjE4NC05Ljg0LTEwLjAzMmMtMC4wNjQtMC4wNjQtMC4xMjgtMC4wOTYtMC4xNi0wLjEyOGMtMy44NzItMi45MTItOC4xNi01LjI0OC0xMi43ODQtNi44OAoJCUMgNDQyLjk3NiwyNzMuMTUyLCA0MzcuNjMyLDI3Mi4wMCwgNDMyLjAwLDI3Mi4wMGMtNS42NjQsMC4wMC0xMC45NzYsMS4xNTItMTYuMDAsMi45NzZjLTQuNjI0LDEuNjMyLTguOTQ0LDMuOTY4LTEyLjc4NCw2Ljg4CgkJYy0wLjA2NCwwLjAzMi0wLjA5NiwwLjA2NC0wLjE2LDAuMTI4Yy0zLjc3NiwyLjg0OC03LjA4OCw2LjIyNC05Ljg3MiwxMC4wMzJjLTAuMDY0LDAuMDk2LTAuMTYsMC4xNi0wLjIyNCwwLjI1NgoJCWMtMi41NiwzLjU2OC00LjUyOCw3LjU2OC02LjAzMiwxMS43NzZjLTAuMzIsMC44NDgtMC41MjgsMS42OC0wLjc4NCwyLjUyOEMgMzg0Ljg4LDMxMC44NDgsIDM4NC4wMCwzMTUuMzEyLCAzODQuMDAsMzIwLjAwCgkJYzAuMDAsNC43MiwgMC44OCw5LjE4NCwgMi4xNiwxMy40NzJjIDAuMjU2LDAuODQ4LCAwLjQ2NCwxLjY4LCAwLjc4NCwyLjQ5NmMgMS41MDQsNC4yMjQsIDMuNDcyLDguMjI0LCA2LjAzMiwxMS44MDgKCQljIDAuMDY0LDAuMDk2LCAwLjE2LDAuMTYsIDAuMjI0LDAuMjU2YyAyLjc4NCwzLjc3NiwgNi4wOTYsNy4xODQsIDkuODcyLDEwLjAzMmMgMC4wNjQsMC4wMzIsIDAuMDk2LDAuMDk2LCAwLjE2LDAuMTI4CgkJYyAzLjg0LDIuODgsIDguMTYsNS4yMTYsIDEyLjc4NCw2Ljg4QyA0MjEuMDI0LDM2Ni44NDgsIDQyNi4zMzYsMzY4LjAwLCA0MzIuMDAsMzY4LjAwYyA1LjYzMiwwLjAwLCAxMC45NzYtMS4xNTIsIDE2LjAwLTIuOTQ0YyA0LjYyNC0xLjY2NCwgOC45MTItNC4wMCwgMTIuNzg0LTYuODgKCQljIDAuMDMyLTAuMDMyLCAwLjA5Ni0wLjA5NiwgMC4xNi0wLjEyOGMgMy43NDQtMi44NDgsIDcuMDU2LTYuMjU2LCA5Ljg0LTEwLjAzMmMgMC4wNjQtMC4wOTYsIDAuMTYtMC4xNiwgMC4yMjQtMC4yNTYKCQljIDIuNTkyLTMuNjAsIDQuNTI4LTcuNjAsIDYuMDY0LTExLjgwOGMgMC4yODgtMC44MTYsIDAuNTI4LTEuNjY0LCAwLjc4NC0yLjQ5NkMgNDc5LjEyLDMyOS4xODQsIDQ4MC4wMCwzMjQuNzIsIDQ4MC4wMCwzMjAuMDAKCQlDIDQ4MC4wMCwzMTUuMzEyLCA0NzkuMTIsMzEwLjg0OCwgNDc3Ljg0LDMwNi41NnpNIDMwNC4wMCwxOTEuNjY0TCAzMDQuMDAsNDMyLjAwIGMwLjAwLDI2LjQ2NC0yMS41MzYsNDguMDAtNDguMDAsNDguMDBzLTQ4LjAwLTIxLjUzNi00OC4wMC00OC4wMGwwLjAwLTI0MC4zMzYgCgkJYy0xOS4zMjgtMTQuNjI0LTMyLjAwLTM3LjU2OC0zMi4wMC02My42NjRzIDEyLjY3Mi00OS4wMjQsIDMyLjAwLTYzLjYzMkwgMjA4LjAwLDE2LjAwIGMwLjAwLTI2LjQ2NCwgMjEuNTM2LTQ4LjAwLCA0OC4wMC00OC4wMHMgNDguMDAsMjEuNTM2LCA0OC4wMCw0OC4wMGwwLjAwLDQ4LjM2OCBjIDE5LjMxMiwxNC41OTIsIDMyLjAwLDM3LjUzNiwgMzIuMDAsNjMuNjMyCgkJUyAzMjMuMzEyLDE3Ny4wMjQsIDMwNC4wMCwxOTEuNjY0eiBNIDI0MC4wMCw0MzIuMDBjMC4wMCw4Ljg0OCwgNy4xNTIsMTYuMDAsIDE2LjAwLDE2LjAwYyA4Ljg0OCwwLjAwLCAxNi4wMC03LjE1MiwgMTYuMDAtMTYuMDBsMC4wMC0yMjUuNjAgYy01LjE4NCwxLjAyNC0xMC41MjgsMS42MC0xNi4wMCwxLjYwCgkJYy01LjQ4OCwwLjAwLTEwLjgzMi0wLjU2LTE2LjAwLTEuNjBMIDI0MC4wMCw0MzIuMDAgeiBNIDI3Mi4wMCwxNi4wMGMwLjAwLTguODQ4LTcuMTUyLTE2LjAwLTE2LjAwLTE2LjAwYy04Ljg0OCwwLjAwLTE2LjAwLDcuMTUyLTE2LjAwLDE2LjAwbDAuMDAsMzMuNjMyIEMgMjQ1LjE2OCw0OC41NiwgMjUwLjUxMiw0OC4wMCwgMjU2LjAwLDQ4LjAwCgkJYyA1LjQ3MiwwLjAwLCAxMC44MTYsMC41NiwgMTYuMDAsMS42MzJMIDI3Mi4wMCwxNi4wMCB6IE0gMzAxLjg0LDExNC41NmMtMC4yNTYtMC44NDgtMC40OTYtMS42OC0wLjc4NC0yLjUyOGMtMS41MzYtNC4yMjQtMy40NzItOC4yMjQtNi4wNjQtMTEuNzc2CgkJYy0wLjA2NC0wLjA5Ni0wLjE2LTAuMTYtMC4yMjQtMC4yNTZjLTIuNzg0LTMuODA4LTYuMDk2LTcuMTg0LTkuODQtMTAuMDMyYy0wLjA2NC0wLjA2NC0wLjEyOC0wLjA5Ni0wLjE2LTAuMTI4CgkJYy0zLjg3Mi0yLjkxMi04LjE2LTUuMjQ4LTEyLjc4NC02Ljg4QyAyNjYuOTc2LDgxLjE1MiwgMjYxLjYzMiw4MC4wMCwgMjU2LjAwLDgwLjAwYy01LjY0OCwwLjAwLTEwLjk3NiwxLjE1Mi0xNi4wMCwyLjk3NgoJCWMtNC42MjQsMS42MzItOC45MjgsMy45NjgtMTIuNzg0LDYuODhjLTAuMDQ4LDAuMDMyLTAuMDk2LDAuMDY0LTAuMTYsMC4xMjhjLTMuNzYsMi44NDgtNy4wNzIsNi4yMjQtOS44NTYsMTAuMDMyCgkJYy0wLjA2NCwwLjA5Ni0wLjE2LDAuMTYtMC4yMjQsMC4yNTZjLTIuNTc2LDMuNTY4LTQuNTI4LDcuNTY4LTYuMDQ4LDExLjc3NmMtMC4zMDQsMC44NDgtMC41MjgsMS42OC0wLjc4NCwyLjUyOAoJCUMgMjA4Ljg4LDExOC44NDgsIDIwOC4wMCwxMjMuMzEyLCAyMDguMDAsMTI4LjAwYzAuMDAsNC43MiwgMC44OCw5LjE4NCwgMi4xNiwxMy40NzJjIDAuMjU2LDAuODQ4LCAwLjQ4LDEuNjgsIDAuNzg0LDIuNDk2CgkJYyAxLjUyLDQuMjI0LCAzLjQ3Miw4LjIyNCwgNi4wNDgsMTEuODA4YyAwLjA2NCwwLjA5NiwgMC4xNiwwLjE2LCAwLjIyNCwwLjI1NmMgMi43ODQsMy43NzYsIDYuMDk2LDcuMTg0LCA5Ljg1NiwxMC4wMzIKCQljIDAuMDY0LDAuMDMyLCAwLjExMiwwLjA5NiwgMC4xNiwwLjEyOGMgMy44NTYsMi44OCwgOC4xNiw1LjIxNiwgMTIuNzg0LDYuODhDIDI0NS4wMjQsMTc0Ljg0OCwgMjUwLjM1MiwxNzYuMDAsIDI1Ni4wMCwxNzYuMDBjIDUuNjMyLDAuMDAsIDEwLjk3Ni0xLjE1MiwgMTYuMDAtMi45NDQKCQljIDQuNjI0LTEuNjY0LCA4LjkxMi00LjAwLCAxMi43ODQtNi44OGMgMC4wMzItMC4wMzIsIDAuMDk2LTAuMDk2LCAwLjE2LTAuMTI4YyAzLjc0NC0yLjg0OCwgNy4wNTYtNi4yNTYsIDkuODQtMTAuMDMyCgkJYyAwLjA2NC0wLjA5NiwgMC4xNi0wLjE2LCAwLjIyNC0wLjI1NmMgMi41OTItMy42MCwgNC41MjgtNy42MCwgNi4wNjQtMTEuODA4YyAwLjI4OC0wLjgxNiwgMC41MjgtMS42NjQsIDAuNzg0LTIuNDk2CgkJQyAzMDMuMTIsMTM3LjE4NCwgMzA0LjAwLDEzMi43MiwgMzA0LjAwLDEyOC4wMEMgMzA0LjAwLDEyMy4zMTIsIDMwMy4xMiwxMTguODQ4LCAzMDEuODQsMTE0LjU2eiIgZGF0YS10YWdzPSJwYXJhbXMiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDIwOyIgZD0iTSA1MDIuNjQsMzEwLjYyNGwtMTYwLjAwLDE2MC4wMEMgMzM0LjcwNCw0NzguNTYsIDMyMy4yMCw0ODEuNzQ0LCAzMTIuMzA0LDQ3OS4wNTYKCQljLTUuNzQ0LTEuNDA4LTEwLjg4LTQuMzY4LTE0Ljk0NC04LjQzMmMtMy42MzItMy42MzItNi4zNjgtOC4xMjgtNy45MzYtMTMuMTUyYy03LjI0OC0yMy41MDQtMTkuNzc2LTQzLjkzNi0zOC4zMi02Mi40NjQKCQlDIDIyNi4zMzYsMzcwLjI1NiwgMTk0LjA4LDM1MS41MDQsIDE1OS45NTIsMzMxLjY4Yy0zNi4yMjQtMjAuOTkyLTczLjY0OC00Mi43NTItMTA0LjMyLTczLjQwOGMtMjYuMDY0LTI2LjA5Ni00My44MDgtNTUuMTItNTQuMjA4LTg4LjgxNgoJCWMtMy41MDQtMTEuMzc2LTAuNDQ4LTIzLjY4LCA3LjkzNi0zMi4wOTZsIDE2MC4wMC0xNjAuMDBjIDcuOTM2LTcuOTM2LCAxOS40NC0xMS4xMiwgMzAuMzM2LTguNDMyYyA1Ljc0NCwxLjQ0LCAxMC44OCw0LjM2OCwgMTQuOTQ0LDguNDMyCgkJYyAzLjYzMiwzLjYzMiwgNi4zNjgsOC4xMjgsIDcuOTM2LDEzLjE4NGMgNy4yNjQsMjMuNTA0LCAxOS43OTIsNDMuOTM2LCAzOC4zNTIsNjIuNDY0YyAyNC43NTIsMjQuNzUyLCA1Ni45OTIsNDMuNDcyLCA5MS4xNTIsNjMuMjgKCQljIDM2LjE5MiwyMS4wMjQsIDczLjYzMiw0Mi43ODQsIDEwNC4yODgsNzMuNDRjIDI2LjA2NCwyNi4wNjQsIDQzLjgwOCw1NS4xMiwgNTQuMjI0LDg4LjgxNkMgNTE0LjA4LDI4OS45MDQsIDUxMS4wMDgsMzAyLjI1NiwgNTAyLjY0LDMxMC42MjR6IE0gMTkyLjAwLDAuMDAKCQlDIDEzOS4wMDgsNTIuOTkyLCA4NC45OTIsMTA3LjAyNCwgMzIuMDAsMTYwLjAwYyA0NS40NzIsMTQ3LjIxNiwgMjQyLjU2LDE0MC43ODQsIDI4OC4wMCwyODguMDBjIDUyLjk5Mi01Mi45NzYsIDEwNy4wMjQtMTA3LjAwOCwgMTYwLjAzMi0xNjAuMDAKCQlDIDQzNC41NDQsMTQwLjgxNiwgMjM3LjQ1NiwxNDcuMjE2LCAxOTIuMDAsMC4wMHpNIDMxMi45OTIsMjQxLjYwYy01LjIxNiw0LjM2OC0xMC40NjQsNy4zNDQtMTUuNzQ0LDguODE2CgkJYy01LjI0OCwxLjQ3Mi0xMC40OTYsMi4wNjQtMTUuODA4LDEuNjhjLTUuMjQ4LTAuNDAtMTAuNjI0LTEuNjAtMTYuMDAtMy42NjRjLTUuMzc2LTIuMDk2LTEwLjc4NC00LjM2OC0xNi4yMjQtNy4wMDgKCQljLTguNTkyLDkuODcyLTE3LjE4NCwxOS42MzItMjUuNzc2LDI4LjY4OGMgMy44NzIsMy41MDQsIDcuNjMyLDUuMjgsIDExLjI0OCw1LjQwOGMgMy42MzIsMC4xNiwgNy4xMi0wLjIyNCwgMTAuNDMyLTEuMDU2CgkJYyAzLjM3Ni0wLjg0OCwgNi40NjQtMS41NjgsIDkuMzEyLTIuMTI4YyAyLjg4LTAuNTYsIDUuMzc2LDAuMDY0LCA3LjU2OCwxLjkwNGMgMi4zMiwyLjAwLCAzLjYwLDQuNTkyLCAzLjc3Niw3LjcxMgoJCWMgMC4xNiwzLjE1Mi0xLjAyNCw2LjIyNC0zLjY2NCw5LjIxNmMtMy4zNzYsMy44NzItNy40NCw2LjIyNC0xMi4zMiw3LjA4OGMtNC44MTYsMC44NDgtOS43NDQsMC43ODQtMTQuODgtMC4zMzYKCQljLTUuMDU2LTEuMTUyLTkuODcyLTMuMDU2LTE0LjQzMi01Ljc0NHMtOC4yMjQtNS40NC0xMC45NDQtOC4xMjhjLTEuMDQsMC45OTItMi4wOCwxLjk2OC0zLjEyLDIuOTQ0CgkJYy0xLjE1MiwxLjA1Ni0yLjU5MiwxLjYzMi00LjMyLDEuNjBjLTEuNzQ0LDAuMDAtMy4xODQtMC43NTItNC4zNjgtMi4xMjhjLTEuMTUyLTEuMzQ0LTEuNjgtMi45MTItMS40NzItNC41NgoJCWMgMC4xNi0xLjcxMiwgMC44NDgtMy4wMjQsIDIuMDMyLTQuMDMyYyAxLjA0LTAuODgsIDIuMDgtMS43NDQsIDMuMTItMi42NTZjLTQuMDk2LTQuOTQ0LTcuNDcyLTEwLjQwLTEwLjEyOC0xNi4xNgoJCWMtMi42ODgtNS43NzYtNC4yODgtMTEuNTA0LTQuODgtMTcuMDU2Yy0wLjYyNC01LjYwLTAuMDMyLTEwLjcyLCAxLjY4LTE1LjQ3MmMgMS43MTItNC43ODQsIDQuODgtOC44NDgsIDkuNTA0LTEyLjY4OAoJCWMgNy41MzYtNi4yNTYsIDE2LjQwLTguOTEyLCAyNi42ODgtOC4zMmMgMTAuMjU2LDAuNjI0LCAyMS4zMTIsMy42OCwgMzMuMjAsMTAuMDY0YyA5LjQ0LTEwLjkxMiwgMTguOTEyLTIxLjc0NCwgMjguMzY4LTMxLjgwOAoJCWMtNC4wMC0zLjM3Ni03LjUwNC01LjMxMi0xMC41OTItNS45MzZjLTMuMDg4LTAuNjU2LTUuODQtMC41OTItOC4zMzYsMC4xNmMtMi40OTYsMC43ODQtNC44MTYsMS45MDQtNi45NDQsMy4zNDQKCQljLTIuMTI4LDEuNDcyLTQuMjI0LDIuNzItNi4zMiwzLjc0NGMtMi4wNjQsMS4wMjQtNC4xOTIsMS42MC02LjM2OCwxLjYzMnMtNC40OTYtMS4wMjQtNy4wNTYtMy4yMTYKCQljLTIuNjI0LTIuMjg4LTMuOTM2LTQuOTQ0LTMuOTM2LTcuOTM2YzAuMDAtMi45NzYsIDEuMzc2LTYuMDAsIDQuMDY0LTkuMDU2YyAyLjcyLTMuMDU2LCA2LjI1Ni01LjYzMiwgMTAuNTI4LTcuNjY0CgkJcyA5LjEwNC0zLjMxMiwgMTQuNDE2LTMuNjY0YyA1LjMxMi0wLjM2OCwgMTAuOTEyLDAuNDMyLCAxNi44MTYsMi42MjRjIDUuOTM2LDIuMTYsIDExLjgwOCw2LjA2NCwgMTcuNjAsMTEuODcyCgkJYyAyLjc4NC0yLjcyLCA1LjYwLTUuMzEyLCA4LjQwLTcuODA4YyAxLjE4NC0xLjAyNCwgMi42MjQtMS41MzYsIDQuMzY4LTEuNDA4YyAxLjY4LDAuMDY0LCAzLjE1MiwwLjg0OCwgNC4zMiwyLjI1NgoJCWMgMS4xODQsMS40NCwgMS42OCwzLjAyNCwgMS41MDQsNC42ODhjLTAuMTYsMS42OC0wLjg0OCwyLjk3Ni0yLjAwLDMuOTA0Yy0yLjgxNiwyLjI1Ni01LjYzMiw0LjYyNC04LjQzMiw3LjEyCgkJYyA0Ljc4NCw1Ljg3MiwgOC42MjQsMTIuMDY0LCAxMS40NzIsMTguMTkyYyAyLjg0OCw2LjE2LCA0LjUyOCwxMi4wOTYsIDUuMDg4LDE3LjYwYyAwLjU2LDUuNTM2LTAuMDk2LDEwLjUyOC0xLjkwNCwxNS4wNTYKCQlDIDMyMC43MzYsMjMzLjg3MiwgMzE3LjU1MiwyMzcuODA4LCAzMTIuOTkyLDI0MS42MHogTSAyMjMuNTM2LDIzMC43NTJjLTQuNTI4LTAuMTkyLTguNDgsMS4zMTItMTEuOTM2LDQuNjU2CgkJYy0xLjQ3MiwxLjQwOC0yLjQ5NiwzLjEyLTMuMTIsNS4xNTJjLTAuNjU2LDIuMDMyLTAuODgsNC4yNTYtMC42MjQsNi42ODhjIDAuMjI0LDIuNDAsIDAuOTQ0LDQuOTEyLCAyLjE5Miw3LjQ0CgkJYyAxLjE4NCwyLjUyOCwgMi45NDQsNS4wNTYsIDUuMTg0LDcuNTA0YyA4LjExMi04LjA2NCwgMTYuMjA4LTE2LjkxMiwgMjQuMzItMjYuMDY0QyAyMzMuNDA4LDIzMi43NTIsIDIyOC4wNjQsMjMwLjk0NCwgMjIzLjUzNiwyMzAuNzUyegoJCSBNIDI5OS4wMDgsMTk4LjcyYy0xLjQ0LTIuNjU2LTMuMDg4LTUuMDI0LTUuMDI0LTcuMDg4Yy04Ljk3Niw5LjA1Ni0xNy45MzYsMTkuMDA4LTI2Ljg4LDI5LjIxNmMgMi4yODgsMS4wMjQsIDQuNjg4LDIuMDk2LCA3LjI4LDMuMTg0CgkJcyA1LjE4NCwxLjgwOCwgNy43NzYsMi4yNTZjIDIuNjU2LDAuNDAsIDUuMjgsMC4yODgsIDcuOTA0LTAuMzM2YyAyLjU5Mi0wLjY1NiwgNS4wNTYtMi4wNjQsIDcuMzQ0LTQuMjg4CgkJYyAyLjI1Ni0yLjI1NiwgMy42OC00LjU5MiwgNC4yNTYtNy4xMmMgMC42MjQtMi41NiwgMC42NTYtNS4xNTIsIDAuMjI0LTcuODA4QyAzMDEuNDI0LDIwNC4wNjQsIDMwMC40OCwyMDEuNDA4LCAyOTkuMDA4LDE5OC43MnpNIDIzNS40NzIsMTI1LjEyIEMgMjM4LjYyNCwxMjcuNjY0IDI0My4yNjQsMTI3LjUzNiAyNDYuMTYsMTI0LjU5MiBDIDI0OS4yOTYsMTIxLjQ3MiAyNDkuMjk2LDExNi4zNjggMjQ2LjE2LDExMy4yNDggQyAyNDUuOTA0LDExMi45OTIgMjQ1LjYzMiwxMTIuODE2IDI0NS4zNDQsMTEyLjU5MiBMIDI0NS4zNzYsMTEyLjU2IEMgMjM1LjI0OCwxMDQuODY0IDIyNi45MjgsOTcuOTM2IDIxNy45NTIsODguOTYgQyAyMDkuODQsODAuODY0IDIwMi41MTIsNzIuMzM2IDE5Ni4xNzYsNjMuNjggTCAxODUuOTUyLDQ5LjY4IEMgMTg1LjYzMiw0OS4xMDQgMTg1LjI0OCw0OC41NzYgMTg0Ljc2OCw0OC4wOCBDIDE4MS42MzIsNDQuOTYgMTc2LjUyOCw0NC45NiAxNzMuNDA4LDQ4LjA4IEMgMTcwLjY4OCw1MC44MCAxNzAuMzUyLDU0Ljk5MiAxNzIuMzUyLDU4LjExMiBMIDE3Mi4zMiw1OC4xNDQgTCAxODMuMjY0LDczLjA4OCBDIDE5MC4wOTYsODIuNDMyIDE5Ny45NTIsOTEuNTg0IDIwNi42NCwxMDAuMjcyIEMgMjE1LjY4LDEwOS4zNDQgMjI1LjQ0LDExNy40NCAyMzUuNDQsMTI1LjEyIEwgMjM1LjQ3MiwxMjUuMTIgWk0gMjk0LjA0OCwzNTYuNTYgQyAzMDIuMTQ0LDM2NC42NTYgMzA5LjQ1NiwzNzMuMTUyIDMxNS44MDgsMzgxLjg1NiBMIDMyNi40MzIsMzk2LjQxNiBDIDMyNi44MTYsMzk3LjEwNCAzMjcuMjQ4LDM5Ny43OTIgMzI3Ljg0LDM5OC4zODQgQyAzMzAuOTkyLDQwMS41MzYgMzM2LjA5Niw0MDEuNTM2IDMzOS4yNDgsMzk4LjM4NCBDIDM0Mi4yNCwzOTUuMzc2IDM0Mi4zNjgsMzkwLjYyNCAzMzkuNjQ4LDM4Ny40NCBMIDMzOS42OCwzODcuNDA4IEwgMzI4LjczNiwzNzIuNDAgQyAzMjEuODg4LDM2My4wNTYgMzE0LjA0OCwzNTMuOTM2IDMwNS4zNiwzNDUuMjQ4IEMgMjk2LjMyLDMzNi4yMDggMjg2LjU3NiwzMjguMDggMjc2LjU3NiwzMjAuNDAgTCAyNzYuNTEyLDMyMC40MzIgQyAyNzMuMzI4LDMxNy41MDQgMjY4LjM4NCwzMTcuNTY4IDI2NS4zMjgsMzIwLjY1NiBDIDI2Mi4xNzYsMzIzLjgwOCAyNjIuMTc2LDMyOC45NDQgMjY1LjMyOCwzMzIuMDk2IEMgMjY1Ljg4OCwzMzIuNjg4IDI2Ni41NDQsMzMzLjEwNCAyNjcuMjAsMzMzLjQ3MiBDIDI3Ni42MDgsMzQwLjY1NiAyODUuNjgsMzQ4LjE5MiAyOTQuMDQ4LDM1Ni41NiBaIiBkYXRhLXRhZ3M9ImJhbmtub3RlIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAyMTsiIGQ9Ik0gMjU2LjAwLDQ4MC4wMEMgMTQ4LjA5Niw0ODAuMDAsIDMyLjAwLDQ0Ny40NzIsIDMyLjAwLDM3Ni4wMGwwLjAwLTMwNC4wMCBDIDMyLjAwLDAuNTYsIDE0OC4wOTYtMzIuMDAsIDI1Ni4wMC0zMi4wMGMgMTA3Ljg4OCwwLjAwLCAyMjQuMDAsMzIuNTYsIDIyNC4wMCwxMDQuMDBsMC4wMCwzMDQuMDAgCgkJQyA0ODAuMDAsNDQ3LjQ3MiwgMzYzLjg3Miw0ODAuMDAsIDI1Ni4wMCw0ODAuMDB6IE0gNDQ4LjAwLDcyLjAwYzAuMDAtMzkuNzQ0LTg1Ljk2OC03Mi4wMC0xOTIuMDAtNzIuMDBjLTEwNi4wNDgsMC4wMC0xOTIuMDAsMzIuMjU2LTE5Mi4wMCw3Mi4wMGwwLjAwLDU5Ljc3NiBDIDk3LjA1Niw5Ny43MTIsIDE3Ni44MCw4MC4wMCwgMjU2LjAwLDgwLjAwCgkJYyA3OS4yMCwwLjAwLCAxNTguOTQ0LDE3LjcxMiwgMTkyLjAwLDUxLjc3NkwgNDQ4LjAwLDcyLjAwIHogTSA0NDguMDAsMTY4LjAwbC0wLjA2NCwwLjAwIGMwLjAwLTAuMTYsIDAuMDY0LTAuMzM2LCAwLjA2NC0wLjQ5NkMgNDQ4LjAwLDEyOC4wMCwgMzYyLjAzMiw5Ni4wMCwgMjU2LjAwLDk2LjAwYy0xMDYuMDMyLDAuMDAtMTkyLjAwLDMyLjAwLTE5Mi4wMCw3MS41MDQKCQljMC4wMCwwLjE2LCAwLjA2NCwwLjMzNiwgMC4wNjQsMC40OTZMIDY0LjAwLDE2OC4wMCBsMC4wMCw1OS43NzYgQyA5Ny4wNTYsMTkzLjcxMiwgMTc2LjgwLDE3Ni4wMCwgMjU2LjAwLDE3Ni4wMGMgNzkuMjAsMC4wMCwgMTU4Ljk0NCwxNy43MTIsIDE5Mi4wMCw1MS43NzZMIDQ0OC4wMCwxNjguMDAgeiBNIDQ0OC4wMCwyNjQuMDBsLTAuMDY0LDAuMDAgCgkJYzAuMDAtMC4xNiwgMC4wNjQtMC4zMzYsIDAuMDY0LTAuNDk2QyA0NDguMDAsMjI0LjAwLCAzNjIuMDMyLDE5Mi4wMCwgMjU2LjAwLDE5Mi4wMGMtMTA2LjAzMiwwLjAwLTE5Mi4wMCwzMi4wMC0xOTIuMDAsNzEuNTA0YzAuMDAsMC4xNiwgMC4wNjQsMC4zMzYsIDAuMDY0LDAuNDk2TCA2NC4wMCwyNjQuMDAgbDAuMDAsNTQuOTc2IAoJCUMgMTA1LjkzNiwyODcuMDI0LCAxODIuODAsMjcyLjAwLCAyNTYuMDAsMjcyLjAwYyA3My4yMCwwLjAwLCAxNTAuMDY0LDE1LjAyNCwgMTkyLjAwLDQ2Ljk3NkwgNDQ4LjAwLDI2NC4wMCB6IE0gMjU2LjAwLDMwNC4wMEMgMTQ5Ljk1MiwzMDQuMDAsIDY0LjAwLDMzNi4yNTYsIDY0LjAwLDM3Ni4wMEMgNjQuMDAsNDE1Ljc3NiwgMTQ5Ljk1Miw0NDguMDAsIDI1Ni4wMCw0NDguMDAKCQljIDEwNi4wMzIsMC4wMCwgMTkyLjAwLTMyLjIyNCwgMTkyLjAwLTcyLjAwQyA0NDguMDAsMzM2LjI1NiwgMzYyLjAzMiwzMDQuMDAsIDI1Ni4wMCwzMDQuMDB6TSAzODQuMDAsNjQuMDBBMTYuMDAsMTYuMDAgMTgwLjAwIDEsMCA0MTYuMDAsNjRBMTYuMDAsMTYuMDAgMTgwLjAwIDEsMCAzODQuMDAsNjR6TSAzODQuMDAsMTYwLjAwQTE2LjAwLDE2LjAwIDE4MC4wMCAxLDAgNDE2LjAwLDE2MEExNi4wMCwxNi4wMCAxODAuMDAgMSwwIDM4NC4wMCwxNjB6TSAzODQuMDAsMjU2LjAwQTE2LjAwLDE2LjAwIDE4MC4wMCAxLDAgNDE2LjAwLDI1NkExNi4wMCwxNi4wMCAxODAuMDAgMSwwIDM4NC4wMCwyNTZ6IiBkYXRhLXRhZ3M9ImRhdGEiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDIyOyIgZD0iTSA1MDAuNTc2LDQ3Mi40OTZDIDQ5NC43NjgsNDc3LjM3NiwgNDg3LjQ4OCw0ODAuMDAsIDQ4MC4wMTYsNDgwLjAwYy0xLjg0LDAuMDAtMy43MTItMC4xNi01LjU2OC0wLjQ5NmwtMjcyLjAzMi00OC4wMAoJQyAxODcuMTIsNDI4LjgxNiwgMTc1Ljk4NCw0MTUuNTM2LCAxNzUuOTg0LDQwMC4wMGwwLjAwLTMyLjAwIGwwLjAwLTE2LjAwIGwwLjAwLTIyNi43MiBDIDE1OS43NDQsMTM3LjA1NiwgMTM4LjY3MiwxNDQuMDAsIDExNS4yOCwxNDQuMDBjLTEzLjYwLDAuMDAtMjcuMjAtMi4yNTYtNDAuNDY0LTYuNjU2CglDIDQ0LjQ0OCwxMjcuMjE2LCAyMC4wOTYsMTA2LjkxMiwgOC4wMCw4MS42MGMtOS4zNDQtMTkuNTY4LTEwLjU0NC00MC44NDgtMy40MjQtNTkuOTM2QyAxNi43NTItMTAuOTQ0LCA1MS4zNDQtMzIuMDAsIDkyLjcwNC0zMi4wMAoJYyAxMy42MCwwLjAwLCAyNy4yMCwyLjIyNCwgNDAuNDQ4LDYuNjU2YyAzMC4zNTIsMTAuMDk2LCA1NC43MDQsMzAuNDAsIDY2LjgwLDU1LjY4YyA1LjIwLDEwLjkxMiwgNy42MzIsMjIuMzM2LCA3LjcyOCwzMy42NjRsIDAuMjg4LDAuMDAgTCAyMDcuOTY4LDMyMC4wMCAKCWMgMS44NCwwLjAwLCAzLjcxMiwwLjE2LCA1LjU2OCwwLjQ2NGwgMjY2LjQ4LDQ3LjAyNEwgNDgwLjAxNiwxNzMuMjggQyA0NjMuNzYsMTg1LjA1NiwgNDQyLjcwNCwxOTIuMDAsIDQxOS4yOTYsMTkyLjAwYy0xMy42MCwwLjAwLTI3LjIxNi0yLjI1Ni00MC40NjQtNi42NTYKCWMtMzAuMzY4LTEwLjEyOC01NC43Mi0zMC40MzItNjYuNzg0LTU1Ljc0NGMtOS4zNDQtMTkuNTY4LTEwLjU2LTQwLjg0OC0zLjQ0LTU5LjkzNkMgMzIwLjgwLDM3LjA1NiwgMzU1LjM2LDE2LjAwLCAzOTYuNzM2LDE2LjAwCgljIDEzLjYwLDAuMDAsIDI3LjIxNiwyLjIyNCwgNDAuNDY0LDYuNjU2YyAzMC4zMzYsMTAuMDk2LCA1NC42ODgsMzAuNDAsIDY2Ljc4NCw1NS42OGMgNS4yMTYsMTAuOTEyLCA3LjYzMiwyMi4zMzYsIDcuNzQ0LDMzLjY2NGwgMC4yODgsMC4wMCBMIDUxMi4wMTYsNDAwLjAwIEwgNTEyLjAxNiw0MTYuMDAgTCA1MTIuMDE2LDQ0OC4wMCAKCUMgNTEyLjAxNiw0NTcuNDQsIDUwNy44MjQsNDY2LjQzMiwgNTAwLjU3Niw0NzIuNDk2eiBNIDEyMy4wMDgsNC45OTJjLTM4LjMzNi0xMi43ODQtNzcuOTY4LTAuMjg4LTg4LjQ2NCwyNy44NGMtMTAuNTI4LDI4LjE2LCAxMi4wMTYsNjEuMzQ0LCA1MC4zMzYsNzQuMTI4CgljIDM4LjMzNiwxMi43ODQsIDc3Ljk2OCwwLjMyLCA4OC40NjQtMjcuODRDIDE4My44ODgsNTAuOTc2LCAxNjEuMzQ0LDE3Ljc3NiwgMTIzLjAwOCw0Ljk5MnogTSA0MjYuNDQ4LDUyLjk5MmMtMzguMzY4LTEyLjc4NC03OC4wMC0wLjI4OC04OC40OTYsMjcuODQKCWMtMTAuNTI4LDI4LjE2LCAxMi4wMzIsNjEuMzQ0LCA1MC4zMzYsNzQuMTI4YyAzOC4zNjgsMTIuNzg0LCA3OC4wMCwwLjMyLCA4OC40OTYtMjcuODRDIDQ4Ny4zMjgsOTguOTc2LCA0NjQuODAsNjUuNzc2LCA0MjYuNDQ4LDUyLjk5MnogTSA0NzkuMzYsNDAwLjAwCglMIDIwNy4zMjgsMzUyLjAwTCAyMDcuMzI4LDM2OC4wMCBMIDIwNy4zMjgsNDAwLjAwIEwgNDc5LjM2LDQ0OC4wMGwwLjAwLTMyLjAwIEwgNDc5LjM2LDQwMC4wMCB6IiBkYXRhLXRhZ3M9Im11c2ljIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAyMzsiIGQ9Ik0gNDAwLjAwLDQ4MC4wMGMtMzIuODQ4LDAuMDAtNTguNjU2LTIyLjU2LTc3LjE4NC01Ny4zNzZsLTAuMzM2LDAuMTkyQyAyOTUuNTY4LDM3MC4xMjgsIDI1NS41MDQsMzM2LjAwLCAyMTEuNjE2LDMzNi4wMGwtMTAuNjA4LDAuMDAgCglMIDEzMC40OTYsMzM2LjAwIEwgNjQuMDAsMzM2LjAwIGMtMzUuODg4LDAuMDAtNjQuMDAtMzUuMTUyLTY0LjAwLTgwLjAwYzAuMDAtNDQuODgsIDI4LjExMi04MC4wMCwgNjQuMDAtODAuMDBjIDE3LjY0OC0wLjA2NCwgMzEuOTItMTQuMzM2LCAzMS45Mi0zMi4wMGwwLjAwLTE0NC4wMCBjMC4wMC0xNy42OCwgMTQuMzM2LTMyLjAwLCAzMi4wMC0zMi4wMGwgNjQuMDAsMC4wMCBjIDE3LjY2NCwwLjAwLCAzMi4wMCwxNC4zMiwgMzIuMDAsMzIuMDAKCWwwLjAwLDE2LjAwIGMwLjAwLDE2LjAwLTE2LjAwLDIzLjE1Mi0xNi4wMCwzMi4wMGwwLjAwLDExMi4wMCBjMC4wMCwwLjM2OCwgMC4yNTYsMC42MjQsIDAuMjg4LDAuOTkyYyAwLjE2LDIuMjg4LCAwLjc4NCw0LjQwLCAxLjc5Miw2LjMyYyAwLjI4OCwwLjUyOCwgMC41OTIsMC45NDQsIDAuOTQ0LDEuNDA4CgljIDEuMjgsMS45MDQsIDIuODk2LDMuNDcyLCA0Ljg2NCw0LjY4OGMgMC4wOTYsMC4wNjQsIDAuMTI4LDAuMTYsIDAuMjI0LDAuMjI0YyAwLjA2NCwwLjAwLCAwLjExMiwwLjA2NCwgMC4xNzYsMC4wNjQKCWMgMS4yOCwwLjcyLCAyLjgxNiwwLjg4LCA0LjI1NiwxLjI4YyA0MC4zODQtNC4yODgsIDc2Ljk0NC0zNi44OCwgMTAyLjAzMi04NS45NjhsIDAuNDAsMC4xOTJDIDM0MS40NCw1NC40OTYsIDM2Ny4xODQsMzIuMDAsIDQwMC4wMCwzMi4wMAoJYyA3My41MzYsMC4wMCwgMTEyLjAwLDExMi42ODgsIDExMi4wMCwyMjQuMDBTIDQ3My41MzYsNDgwLjAwLCA0MDAuMDAsNDgwLjAweiBNIDMyMC4wMCwyNTYuMDBjMC4wMCwxNi41OTIsIDAuOTc2LDMyLjYyNCwgMi42MjQsNDguMDBMIDM2OC4wMCwzMDQuMDAgYyAxNy42NjQsMC4wMCwgMzIuMDAtMjEuNTA0LCAzMi4wMC00OC4wMGMwLjAwLTI2LjUyOC0xNC4zMzYtNDguMDAtMzIuMDAtNDguMDBsLTQ1LjM3NiwwLjAwIAoJQyAzMjAuOTc2LDIyMy4zNzYsIDMyMC4wMCwyMzkuMzc2LCAzMjAuMDAsMjU2LjAweiBNIDMyLjAwLDI1Ni4wMGMwLjAwLDI2LjQ5NiwgMTQuMzM2LDQ4LjAwLCAzMi4wMCw0OC4wMGwgNjYuNDk2LDAuMDAgTCAxNDQuMDAsMzA0LjAwIGwgMzIuMjI0LDAuMDAgQyAxNjYuMzA0LDI5Mi4zMzYsIDE2MC4wMCwyNzUuNDA4LCAxNjAuMDAsMjU2LjAwCgljMC4wMC0xOS40NCwgNi4zMDQtMzYuMzY4LCAxNi4yMjQtNDguMDBMIDE0NC4wMCwyMDguMDAgTCA2NC4wMCwyMDguMDAgQyA0Ni4zMzYsMjA4LjAwLCAzMi4wMCwyMjkuNDcyLCAzMi4wMCwyNTYuMDB6IE0gMTkxLjkyLDAuMDBsLTY0LjAwLDAuMDAgbDAuMDAsMTQ0LjAwIGMwLjAwLDExLjY2NC0zLjEyLDIyLjU2LTguNTkyLDMyLjAwbCAxMS4xNjgsMC4wMCBsMC4wMC0wLjE5MiBsIDQ4LjEyOCwwLjAwIAoJYy0xLjcxMi00Ljk3Ni0yLjcwNC0xMC4yNTYtMi43MDQtMTUuODA4bDAuMDAtMTEyLjAwIGMwLjAwLTE1LjQwOCwgOC42MDgtMjUuNjY0LCAxMy43NDQtMzEuNzc2YyAwLjcwNC0wLjg0OCwgMS41MzYtMS43MTIsIDIuMjU2LTIuNjU2TCAxOTEuOTIsMC4wMCB6IE0gMjExLjYxNiwyMDcuODA4CglMIDIwOC4wMCwyMDcuODA4IEwgMjA4LjAwLDIwOC4wMCBjLTE3LjY2NCwwLjAwLTMyLjAwLDIxLjQ3Mi0zMi4wMCw0OC4wMGMwLjAwLDI2LjQ5NiwgMTQuMzM2LDQ4LjAwLCAzMi4wMCw0OC4wMGwgMy42MTYsMC4wMCBjIDMwLjE3NiwwLjAwLCA1OC40MzIsMTEuODcyLCA4My4yOTYsMzIuMjg4QyAyOTAuMzM2LDMxMC41MjgsIDI4OC4wMCwyODMuMjQ4LCAyODguMDAsMjU2LjAwCgljMC4wMC0yNy4zNDQsIDIuMzM2LTU0LjcyLCA2Ljk0NC04MC40OTZDIDI3MC4wNjQsMTk1LjkzNiwgMjQxLjc5MiwyMDcuODA4LCAyMTEuNjE2LDIwNy44MDh6IE0gNDAwLjAwLDY0LjAwYy0zMi4yODgsMC4wMC02MC4wMCw0NS45MzYtNzIuNjU2LDExMi4wMEwgMzY4LjAwLDE3Ni4wMCAKCWMgMzUuODcyLDAuMDAsIDY0LjAwLDM1LjEyLCA2NC4wMCw4MC4wMGMwLjAwLDQ0Ljg0OC0yOC4xMjgsODAuMDAtNjQuMDAsODAuMDBsLTQwLjY1NiwwLjAwIEMgMzQwLjAwLDQwMi4wMzIsIDM2Ny43MTIsNDQ4LjAwLCA0MDAuMDAsNDQ4LjAwYyA0NC4xOTIsMC4wMCwgODAuMDAtODUuOTY4LCA4MC4wMC0xOTIuMDBTIDQ0NC4xOTIsNjQuMDAsIDQwMC4wMCw2NC4wMHoiIGRhdGEtdGFncz0ibWVnYXBob25lIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAyNDsiIGQ9Ik0gNTEyLjAwLDM1Mi4wMGMwLjAwLDIyLjQ5Ni0xNS4zMTIsNDEuNzI4LTM3LjIxNiw0Ni43ODRMIDI2Ni41NzYsNDQ2LjgzMkMgMjYzLjA4OCw0NDcuNjE2LCAyNTkuNTM2LDQ0OC4wMCwgMjU2LjAwLDQ0OC4wMAoJCWMtMy41MzYsMC4wMC03LjA4OC0wLjM4NC0xMC44MC0xLjIxNmwtMjA3Ljk4NC00OC4wMEMgMTUuMjk2LDM5My43MjgsMC4wMCwzNzQuNDk2LDAuMDAsMzUyLjAwcyAxNS4zMTItNDEuNzI4LCAzNy4yMC00Ni43ODRMIDgwLjAwLDI5NS4zNDRMIDgwLjAwLDE2MC4wMCBjMC4wMC00Mi40NjQsIDQ4LjYwOC04MC4wMCwgMTc2LjAwLTgwLjAwCgkJcyAxNzYuMDAsMzcuNTM2LCAxNzYuMDAsODAuMDBsMC4wMCwxMzUuMzQ0IGwgNDIuNzg0LDkuODcyQyA0OTYuNjg4LDMxMC4yNzIsIDUxMi4wMCwzMjkuNTA0LCA1MTIuMDAsMzUyLjAweiBNIDQwMC4wMCwxNjAuMDBjMC4wMC0xNy42OC00OC4wMC00OC4wMC0xNDQuMDAtNDguMDBjLTk2LjAwLDAuMDAtMTQ0LjAwLDMwLjMyLTE0NC4wMCw0OC4wMGwwLjAwLDEyNy45NTIgbCAxMzMuNDA4LTMwLjc4NAoJCUMgMjQ4Ljg5NiwyNTYuMzg0LCAyNTIuNDY0LDI1Ni4wMCwgMjU2LjAwLDI1Ni4wMGMgMy41MzYsMC4wMCwgNy4xMDQsMC4zODQsIDEwLjc4NCwxLjIxNkwgNDAwLjAwLDI4Ny45NTJMIDQwMC4wMCwxNjAuMDAgeiBNIDI1OS42MCwyODguNDBDIDI1OC40MCwyODguMTQ0LCAyNTcuMjAsMjg4LjAwLCAyNTYuMDAsMjg4LjAwCgkJcy0yLjQxNiwwLjE0NC0zLjYwLDAuNDBsLTIwOC4wMCw0OC4wMEMgMzcuMTM2LDMzOC4wOCwgMzIuMDAsMzQ0LjU0NCwgMzIuMDAsMzUyLjAwcyA1LjEzNiwxMy45MiwgMTIuNDAsMTUuNjBsIDIwOC4wMCw0OC4wMEMgMjUzLjU4NCw0MTUuODU2LCAyNTQuNzg0LDQxNi4wMCwgMjU2LjAwLDQxNi4wMAoJCXMgMi40MTYtMC4xNDQsIDMuNjAtMC40MGwgMjA4LjAwLTQ4LjAwQyA0NzQuODQ4LDM2NS45MiwgNDgwLjAwLDM1OS40NTYsIDQ4MC4wMCwzNTIuMDBzLTUuMTUyLTEzLjkyLTEyLjQwLTE1LjYwTCAyNTkuNjAsMjg4LjQwek0gNDY0LjAwLDI3Mi4wMCBDIDQ2NC4wMCwyODAuODQ4IDQ3MS4xNTIsMjg4LjAwIDQ4MC4wMCwyODguMDAgQyA0ODguODMyLDI4OC4wMCA0OTYuMDAsMjgwLjg0OCA0OTYuMDAsMjcyLjAwIEwgNDk2LjAwLDEyOC4wMCBDIDQ5Ni4wMCwxMTkuMTUyIDQ4OC44MzIsMTEyLjAwIDQ4MC4wMCwxMTIuMDAgQyA0NzEuMTUyLDExMi4wMCA0NjQuMDAsMTE5LjE1MiA0NjQuMDAsMTI4LjAwIEwgNDY0LjAwLDI3Mi4wMCBaTSA0ODAuMDAsOTYuMDAgQyA0OTcuNjY0LDk2LjAwIDUxMi4wMCw0OS42NjQgNTEyLjAwLDMyLjAwIEMgNTEyLjAwLDE0LjMzNiA0OTcuNjY0LDAuMDAgNDgwLjAwLDAuMDAgQyA0NjIuMzIsMC4wMCA0NDguMDAsMTQuMzM2IDQ0OC4wMCwzMi4wMCBDIDQ0OC4wMCw0OS42NjQgNDYyLjMyLDk2LjAwIDQ4MC4wMCw5Ni4wMCBaIiBkYXRhLXRhZ3M9InN0dWR5IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAyNTsiIGQ9Ik0gMzMwLjkxMiw0MjAuMjg4QyAzMjMuMzQ0LDQyNy44NCwgMzEzLjMxMiw0MzIuMDAsIDMwMi42MjQsNDMyLjAwcy0yMC43Mi00LjE2LTI4LjMyLTExLjcyOGwtMjIuNTYtMjIuNTkyCgkJQyAyNDQuMTc2LDM5MC4xMjgsIDI0MC4wMCwzODAuMDgsIDI0MC4wMCwzNjkuMzc2YzAuMDAtNy41MzYsIDIuMDY0LTE0Ljc1MiwgNS45MzYtMjEuMDA4TCAyOC43MDQsMjYxLjM0NGMtMTQuNTI4LTYuMzg0LTI0Ljk0NC0xOS40ODgtMjcuODcyLTM1LjAyNAoJCWMtMi45Ni0xNS42MzIsIDIuMDAtMzEuNjY0LCAxMy4zNDQtNDIuOTkybCAyMDMuNTItMjAxLjI4YyA4Ljc2OC04Ljc2OCwgMjAuNDE2LTEzLjc0NCwgMzIuNzItMTQuMDMyQyAyNTAuNzA0LTMyLjAwLCAyNTEuMzc2LTMyLjAwLCAyNTEuNjY0LTMyLjAwCgkJYyAzLjIzMiwwLjAwLCA2LjUxMiwwLjMzNiwgOS43NiwwLjk5MmMgMTUuOTA0LDMuMjk2LCAyOC45MjgsMTQuMjg4LCAzNC44MzIsMjkuMjQ4bCA4NS40NzIsMjE0LjAxNmMgNi40MzItNC4yNCwgMTQuMDAtNi41MTIsIDIxLjg3Mi02LjUxMgoJCWMgMTAuNzIsMC4wMCwgMjAuNzUyLDQuMTc2LCAyOC4yODgsMTEuNzI4TCA0NTQuNDAsMjQwLjAwYyA3LjYzMiw3LjU4NCwgMTEuODA4LDE3LjY0OCwgMTEuODA4LDI4LjM2OHMtNC4xOTIsMjAuODAtMTEuNzEyLDI4LjI4OEwgMzMwLjkxMiw0MjAuMjg4egoJCSBNIDI2Ni41NDQsMTAuMTI4Yy0xLjk4NC01LjAwOC02LjM1Mi04LjcwNC0xMS42MzItOS43OTJjLTEuMjE2LTAuMjU2LTIuNDQ4LTAuMzUyLTMuNjY0LTAuMzM2Yy00LjA2NCwwLjA5Ni03Ljk4NCwxLjcyOC0xMC45MTIsNC42NzIKCQlMIDM2LjY4OCwyMDYuMDhjLTMuNzQ0LDMuNzI4LTUuMzkyLDkuMDcyLTQuNDAsMTQuMjg4YyAwLjk3Niw1LjE4NCwgNC40NjQsOS41NjgsIDkuMzEyLDExLjY4bCA5OS40NzIsMzkuODQKCQljIDY3LjAyNC0yMi4yODgsIDEzNC4wNjQtMC44MTYsIDIwMS4xMi03Mi4zNTJMIDI2Ni41NDQsMTAuMTI4eiBNIDQzMS44NzIsMjYyLjcybC0yMi42MjQtMjIuNjA4Yy0zLjEyLTMuMTM2LTguMTkyLTMuMTM2LTExLjMxMiwwLjAwbC0yOC4yODgsMjguMjcyCgkJbC0yMi45MTItNTcuNDI0bCAxLjkwNCw0Ljg0OGMtNDguMTYsNDguMDgtOTcuMTA0LDU0LjE0NC0xNDEuMjY0LDU5LjU2OGMtMTQuMTkyLDEuNzQ0LTI3Ljk1MiwzLjU2OC00MS40NzIsNi40OGwgMTM1Ljg1Niw1NC40MTZsLTI3LjQ0LDI3LjQ0CgkJYy0zLjEyLDMuMTItMy4xMiw4LjE5MiwwLjAwLDExLjMxMmwgMjIuNjI0LDIyLjY0YyAzLjEyLDMuMTIsIDguMTkyLDMuMTIsIDExLjMxMiwwLjAwbCAxMjMuNjAtMTIzLjYzMgoJCUMgNDM1LjAyNCwyNzAuOTEyLCA0MzUuMDI0LDI2NS44NCwgNDMxLjg3MiwyNjIuNzJ6TSAyNjQuMDAsMTQ0LjAwYyAyMi4wNDgsMC4wMCwgNDAuMDAsMTcuOTM2LCA0MC4wMCw0MC4wMFMgMjg2LjA2NCwyMjQuMDAsIDI2NC4wMCwyMjQuMDBjLTIyLjA2NCwwLjAwLTQwLjAwLTE3LjkzNi00MC4wMC00MC4wMFMgMjQxLjk1MiwxNDQuMDAsIDI2NC4wMCwxNDQuMDB6CgkJIE0gMjY0LjAwLDIwOC4wMGMgMTMuMjQ4LDAuMDAsIDI0LjAwLTEwLjc1MiwgMjQuMDAtMjQuMDBTIDI3Ny4yNDgsMTYwLjAwLCAyNjQuMDAsMTYwLjAwYy0xMy4yNjQsMC4wMC0yNC4wMCwxMC43NTItMjQuMDAsMjQuMDBTIDI1MC43MzYsMjA4LjAwLCAyNjQuMDAsMjA4LjAwek0gNDcyLjAwLDQ4MC4wMEMgNDQ5LjkzNiw0ODAuMDAsIDQzMi4wMCw0NjIuMDY0LCA0MzIuMDAsNDQwLjAwUyA0NDkuOTM2LDQwMC4wMCwgNDcyLjAwLDQwMC4wMFMgNTEyLjAwLDQxNy45MzYsIDUxMi4wMCw0NDAuMDBTIDQ5NC4wNjQsNDgwLjAwLCA0NzIuMDAsNDgwLjAweiBNIDQ3Mi4wMCw0MTYuMDAKCQlDIDQ1OC43NTIsNDE2LjAwLCA0NDguMDAsNDI2Ljc1MiwgNDQ4LjAwLDQ0MC4wMFMgNDU4Ljc1Miw0NjQuMDAsIDQ3Mi4wMCw0NjQuMDBTIDQ5Ni4wMCw0NTMuMjQ4LCA0OTYuMDAsNDQwLjAwUyA0ODUuMjQ4LDQxNi4wMCwgNDcyLjAwLDQxNi4wMHpNIDEyOC4wMCwyMDguMDBjMC4wMC0xNy42NDgsIDE0LjM1Mi0zMi4wMCwgMzIuMDAtMzIuMDBzIDMyLjAwLDE0LjM1MiwgMzIuMDAsMzIuMDBzLTE0LjM1MiwzMi4wMC0zMi4wMCwzMi4wMFMgMTI4LjAwLDIyNS42NDgsIDEyOC4wMCwyMDguMDB6IE0gMTYwLjAwLDIyNC4wMGMgOC44MzIsMC4wMCwgMTYuMDAtNy4xNTIsIDE2LjAwLTE2LjAwCgkJcy03LjE2OC0xNi4wMC0xNi4wMC0xNi4wMHMtMTYuMDAsNy4xNTItMTYuMDAsMTYuMDBTIDE1MS4xNjgsMjI0LjAwLCAxNjAuMDAsMjI0LjAwek0gMTkyLjAwLDExMi4wMEExNi4wMCwxNi4wMCAxODAuMDAgMSwwIDIyNC4wMCwxMTJBMTYuMDAsMTYuMDAgMTgwLjAwIDEsMCAxOTIuMDAsMTEyek0gNDQ4LjAwLDM1Mi4wMEExNi4wMCwxNi4wMCAxODAuMDAgMSwwIDQ4MC4wMCwzNTJBMTYuMDAsMTYuMDAgMTgwLjAwIDEsMCA0NDguMDAsMzUyeiIgZGF0YS10YWdzPSJsYWIiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDI2OyIgZD0iTSA0NzIuMDAsMTQ0LjAwbC00My4wNTYsMC4wMCBjLTAuNzIsMy44MjQtMS42MCw3LjU2OC0yLjU2LDExLjI5NmwgNzYuNzg0LDM4LjM4NGMgNy45MDQsMy45NTIsIDExLjA4OCwxMy41NjgsIDcuMTUyLDIxLjQ3MgoJCWMtMy45NjgsNy45MDQtMTMuNTM2LDExLjA3Mi0yMS40NzIsNy4xNTJsLTczLjI0OC0zNi42MDhDIDM4Ny42NjQsMjQ1Ljk4NCwgMzI2LjcyLDI4OC4wMCwgMjU2LjAwLDI4OC4wMGMtODYuMTEyLDAuMDAtMTU3Ljg0LTYyLjIwOC0xNzIuOTQ0LTE0NC4wMEwgNDAuMDAsMTQ0LjAwIAoJCUMgMTcuOTUyLDE0NC4wMCwwLjAwLDEyNi4wNjQsMC4wMCwxMDQuMDBjMC4wMC03Ljg0LCAyLjg4LTE1LjQwOCwgOC4wOC0yMS4yNjRMIDY0LjAwLDE5LjgyNEwgNjQuMDAsOC4wMCBDIDY0LjAwLTE0LjA2NCwgODEuOTUyLTMyLjAwLCAxMDQuMDAtMzIuMDBsIDMwNC4wMCwwLjAwIGMgMjIuMDY0LDAuMDAsIDQwLjAwLDE3LjkzNiwgNDAuMDAsNDAuMDAKCQlsMC4wMCwxMS44MjQgbCA1NS45MDQsNjIuOTEyQyA1MDkuMTIsODguNTkyLCA1MTIuMDAsOTYuMTYsIDUxMi4wMCwxMDQuMDBDIDUxMi4wMCwxMjYuMDY0LCA0OTQuMDY0LDE0NC4wMCwgNDcyLjAwLDE0NC4wMHogTSA0MTIuNzg0LDE0NC4wMGwtOC45OTIsMC4wMCBsIDcuOTY4LDQuMDAKCQlDIDQxMi4wNjQsMTQ2LjY1NiwgNDEyLjQ5NiwxNDUuMzYsIDQxMi43ODQsMTQ0LjAweiBNIDI1Ni4wMCwyNzIuMDBjIDY0LjQ2NCwwLjAwLCAxMjAuMDAtMzguNDAsIDE0NS4zMTItOTMuNDU2bC0xNC4yNTYtNy4xMkMgMzY0LjQwLDIyMS4yNjQsIDMxNC4zMiwyNTYuMDAsIDI1Ni4wMCwyNTYuMDAKCQljLTY4LjUxMiwwLjAwLTEyNS43NDQtNDcuODg4LTE0MC4zMi0xMTIuMDBMIDk5LjIzMiwxNDQuMDAgQyAxMTQuMDk2LDIxNi45NDQsIDE3OC43MzYsMjcyLjAwLCAyNTYuMDAsMjcyLjAweiBNIDMyOS4yMTYsMTQ0LjAwYy0xMi4zNjgsMjguMjA4LTQwLjQ5Niw0OC4wMC03My4yMTYsNDguMDBzLTYwLjgzMi0xOS43OTItNzMuMjE2LTQ4LjAwCgkJTCAxNjUuNjAsMTQ0LjAwIGMgMTMuMjE2LDM3LjIxNiwgNDguNjg4LDY0LjAwLCA5MC40MCw2NC4wMGMgMzkuNDQsMC4wMCwgNzMuNDA4LTIzLjkzNiwgODguMTI4LTU4LjAzMkwgMzMyLjIyNCwxNDQuMDBMIDMyOS4yMTYsMTQ0LjAwIHogTSAyNTYuMDAsMTYwLjAwYy0xNC4xMjgsMC4wMC0yNi43Mi02LjI1Ni0zNS41Mi0xNi4wMGwtMTkuNTg0LDAuMDAgCgkJYyAxMS4xMDQsMTkuMDI0LCAzMS41MiwzMi4wMCwgNTUuMTA0LDMyLjAwYyAyMy41NjgsMC4wMCwgNDQuMDAtMTIuOTc2LCA1NS4wODgtMzIuMDBsLTE5LjYwLDAuMDAgQyAyODIuNzIsMTUzLjc0NCwgMjcwLjEyOCwxNjAuMDAsIDI1Ni4wMCwxNjAuMDB6IE0gMjU2LjAwLDIyNC4wMAoJCWMtNTAuNjQsMC4wMC05My40NzItMzMuNzkyLTEwNy4yOC04MC4wMEwgMTMyLjIwOCwxNDQuMDAgYyAxNC4yNzIsNTUuMTA0LCA2NC4yNzIsOTYuMDAsIDEyMy43OTIsOTYuMDBjIDUxLjkzNiwwLjAwLCA5Ni42ODgtMzEuMTY4LCAxMTYuNzItNzUuNzQ0bC0xNC4yODgtNy4xMzYKCQlDIDM0MS4wMjQsMTk2LjQzMiwgMzAxLjY4LDIyNC4wMCwgMjU2LjAwLDIyNC4wMHogTSA0MTYuMDAsMzIuMDBsMC4wMC0yNC4wMCBjMC4wMC00LjQxNi0zLjYwLTguMDAtOC4wMC04LjAwbC0zMDQuMDAsMC4wMCBDIDk5LjU4NCwwLjAwLCA5Ni4wMCwzLjU4NCwgOTYuMDAsOC4wMEwgOTYuMDAsMzIuMDAgbC02NC4wMCw3Mi4wMAoJCUMgMzIuMDAsMTA4LjQxNiwgMzUuNTg0LDExMi4wMCwgNDAuMDAsMTEyLjAwTCA4MC4wMCwxMTIuMDAgbCAxNi4wMCwwLjAwIGwgMTYuMDAsMC4wMCBsIDE2LjAwLDAuMDAgbCAxNi4wMCwwLjAwIGwgMTYuMDAsMC4wMCBsIDE2LjAwLDAuMDAgbCAxNi4wMCwwLjAwIGwgMTYuMDAsMC4wMCBsIDk2LjAwLDAuMDAgbCAxNi4wMCwwLjAwIGwgMTYuMDAsMC4wMCBsIDE2LjAwLDAuMDAgbCAxNi4wMCwwLjAwIGwgMTYuMDAsMC4wMCBsIDE2LjAwLDAuMDAgbCAxNi4wMCwwLjAwIGwgMTYuMDAsMC4wMCBsIDQwLjAwLDAuMDAgYyA0LjQwLDAuMDAsIDguMDAtMy41ODQsIDguMDAtOC4wMEwgNDE2LjAwLDMyLjAwek0gMTI3LjYzMiwyOTIuNjA4IEMgMTI3LjUyLDI5Mi44MzIgMTI3LjQ0LDI5My4wNCAxMjcuMzQ0LDI5My4yOCBDIDExOS4wNCwzMTMuMzI4IDEyNy4yOTYsMzMyLjk5MiAxMzQuNzUyLDM1MC43MzYgQyAxNDEuODA4LDM2Ny41NjggMTQ4LjA2NCwzODIuNDggMTQxLjYwLDM5Ny4wMjQgQyAxNDEuNTY4LDM5Ny4wODggMTQxLjU1MiwzOTcuMTUyIDE0MS41MiwzOTcuMjE2IEMgMTQxLjUwNCwzOTcuMjY0IDE0MS40ODgsMzk3LjMxMiAxNDEuNDcyLDM5Ny4zNiBDIDE0MS40NTYsMzk3LjM5MiAxNDEuNDU2LDM5Ny40MjQgMTQxLjQ1NiwzOTcuNDU2IEMgMTQxLjEzNiwzOTguMzA0IDE0MC45NDQsMzk5LjIwIDE0MC45NDQsNDAwLjE2IEMgMTQwLjk0NCw0MDQuNDggMTQ0LjQ0OCw0MDguMDAgMTQ4Ljc4NCw0MDguMDAgQyAxNTIuMTEyLDQwOC4wMCAxNTQuOTQ0LDQwNS45MiAxNTYuMDgsNDAyLjk5MiBDIDE2NS4wMDgsMzgyLjY1NiAxNTYuODk2LDM2Mi42NTYgMTQ5LjMyOCwzNDQuNjQgQyAxNDIuMzIsMzI3Ljk2OCAxMzYuNjI0LDMxMi40OCAxNDIuNjI0LDI5OC4zNjggQyAxNDIuNjU2LDI5OC4yNTYgMTQyLjY1NiwyOTguMTYgMTQyLjYyNCwyOTguMDQ4IEMgMTQyLjgwLDI5Ny40MDggMTQyLjkxMiwyOTYuNzM2IDE0Mi45MTIsMjk2LjA0OCBDIDE0Mi45MTIsMjkxLjYxNiAxMzkuMzEyLDI4OC4wMCAxMzQuODgsMjg4LjAwIEMgMTMxLjc3NiwyODguMDAgMTI5LjEyLDI4OS43NiAxMjcuNzkyLDI5Mi4zMiBDIDEyNy43NzYsMjkyLjMyIDEyNy43NiwyOTIuMzIgMTI3Ljc2LDI5Mi4zMiBDIDEyNy43MTIsMjkyLjQxNiAxMjcuNjgsMjkyLjUxMiAxMjcuNjMyLDI5Mi42MDggWk0gMzIyLjQ2NCwyOTQuOTQ0IEMgMzIyLjM2OCwyOTUuMTUyIDMyMi4yODgsMjk1LjM3NiAzMjIuMjA4LDI5NS41ODQgQyAzMTMuOTA0LDMxNS42MzIgMzIyLjE0NCwzMzUuMzEyIDMyOS41ODQsMzUzLjA1NiBDIDMzNi42NTYsMzY5Ljg4OCAzNDIuODk2LDM4NC44MCAzMzYuNDMyLDM5OS4zNDQgQyAzMzYuNDMyLDM5OS40MDggMzM2LjQwLDM5OS40NzIgMzM2LjM2OCwzOTkuNTM2IEMgMzM2LjMzNiwzOTkuNTg0IDMzNi4zMzYsMzk5LjYzMiAzMzYuMzA0LDM5OS42OCBDIDMzNi4zMDQsMzk5LjcxMiAzMzYuMzA0LDM5OS43NDQgMzM2LjMwNCwzOTkuNzc2IEMgMzM2LjAwLDQwMC42MjQgMzM1Ljc3Niw0MDEuNTIgMzM1Ljc3Niw0MDIuNDggQyAzMzUuNzc2LDQwNi44MCAzMzkuMjk2LDQxMC4zMiAzNDMuNjE2LDQxMC4zMiBDIDM0Ni45Niw0MTAuMzIgMzQ5Ljc3Niw0MDguMjU2IDM1MC45MjgsNDA1LjMxMiBDIDM1OS44NTYsMzg0Ljk3NiAzNTEuNzQ0LDM2NC45NzYgMzQ0LjE3NiwzNDYuOTYgQyAzMzcuMTY4LDMzMC4yODggMzMxLjQ4OCwzMTQuODAgMzM3LjQ1NiwzMDAuNjg4IEMgMzM3LjUyLDMwMC41NzYgMzM3LjUyLDMwMC40OCAzMzcuNDg4LDMwMC4zNjggQyAzMzcuNjQ4LDI5OS43MjggMzM3Ljc3NiwyOTkuMDU2IDMzNy43NzYsMjk4LjM2OCBDIDMzNy43NzYsMjkzLjkzNiAzMzQuMTQ0LDI5MC4zMiAzMjkuNzEyLDI5MC4zMiBDIDMyNi42MjQsMjkwLjMyIDMyMy45NjgsMjkyLjA5NiAzMjIuNjI0LDI5NC42NTYgTCAzMjIuNTkyLDI5NC42NTYgQyAzMjIuNTYsMjk0Ljc1MiAzMjIuNTI4LDI5NC44NDggMzIyLjQ2NCwyOTQuOTQ0IFpNIDI0MC4zMDQsMzY0LjYwOCBDIDI0MC4xOTIsMzY0LjgzMiAyNDAuMTEyLDM2NS4wNCAyNDAuMDAsMzY1LjI2NCBDIDIzMS42OCwzODUuMzEyIDIzOS45MzYsNDA0Ljk5MiAyNDcuMzkyLDQyMi43MzYgQyAyNTQuNDQ4LDQzOS41NjggMjYwLjcwNCw0NTQuNDggMjU0LjI0LDQ2OS4wMjQgQyAyNTQuMjI0LDQ2OS4wODggMjU0LjE5Miw0NjkuMTUyIDI1NC4xNzYsNDY5LjIxNiBDIDI1NC4xNiw0NjkuMjY0IDI1NC4xNDQsNDY5LjMxMiAyNTQuMTI4LDQ2OS4zNiBDIDI1NC4xMTIsNDY5LjM5MiAyNTQuMTEyLDQ2OS40MjQgMjU0LjExMiw0NjkuNDU2IEMgMjUzLjc5Miw0NzAuMzA0IDI1My42MCw0NzEuMjAgMjUzLjYwLDQ3Mi4xNiBDIDI1My42MCw0NzYuNDggMjU3LjEyLDQ4MC4wMCAyNjEuNDQsNDgwLjAwIEMgMjY0Ljc4NCw0ODAuMDAgMjY3LjYwLDQ3Ny45MiAyNjguNzUyLDQ3NC45NzYgQyAyNzcuNjgsNDU0LjY0IDI2OS41NjgsNDM0LjY0IDI2Mi4wMCw0MTYuNjI0IEMgMjU0Ljk5MiwzOTkuOTUyIDI0OS4yOTYsMzg0LjQ2NCAyNTUuMjk2LDM3MC4zNTIgQyAyNTUuMzI4LDM3MC4yNCAyNTUuMzI4LDM3MC4xNDQgMjU1LjI5NiwzNzAuMDMyIEMgMjU1LjQ3MiwzNjkuMzkyIDI1NS41ODQsMzY4LjcyIDI1NS41ODQsMzY4LjAzMiBDIDI1NS41ODQsMzYzLjYwIDI1MS45ODQsMzU5Ljk4NCAyNDcuNTUyLDM1OS45ODQgQyAyNDQuNDY0LDM1OS45ODQgMjQxLjgwOCwzNjEuNzYgMjQwLjQ2NCwzNjQuMzIgQyAyNDAuNDQ4LDM2NC4zMiAyNDAuNDMyLDM2NC4zMiAyNDAuNDMyLDM2NC4zMiBDIDI0MC4zODQsMzY0LjQxNiAyNDAuMzUyLDM2NC41MTIgMjQwLjMwNCwzNjQuNjA4IFoiIGRhdGEtdGFncz0iZm9vZCIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUwMjc7IiBkPSJNIDUwMC4wMCwzNzYuOTkybC04MC4wMCw2NC4wMEMgNDE0LjMyLDQ0NS41MzYsIDQwNy4yNDgsNDQ4LjAwLCA0MDAuMDAsNDQ4LjAwTCAxMTIuMDAsNDQ4LjAwIAoJCUMgMTA0LjczNiw0NDguMDAsIDk3LjY4LDQ0NS41MzYsIDkyLjAwLDQ0MC45OTJsLTgwLjAwLTY0LjAwQyAxLjUzNiwzNjguNjA4LTIuNTkyLDM1NC41OTIsIDEuNjQ4LDM0MS44NzJsIDMyLjAwLTk2LjAwYyAzLjE1Mi05LjQ1NiwgMTAuNTQ0LTE2LjkxMiwgMTkuOTg0LTIwLjE0NAoJCUMgNTYuOTkyLDIyNC41NzYsIDYwLjUxMiwyMjQuMDAsIDY0LjAwLDIyNC4wMGMgNS41NjgsMC4wMCwgMTEuMDg4LDEuNDU2LCAxNi4wMCw0LjI4OEwgODAuMDAsMzIuMDAgYzAuMDAtMTcuNjY0LCAxNC4zMzYtMzIuMDAsIDMyLjAwLTMyLjAwbCAyODguMDAsMC4wMCBjIDE3LjY2NCwwLjAwLCAzMi4wMCwxNC4zMzYsIDMyLjAwLDMyLjAwTCA0MzIuMDAsMjI4LjI4OCAKCQlDIDQzNi45MTIsMjI1LjQ1NiwgNDQyLjQzMiwyMjQuMDAsIDQ0OC4wMCwyMjQuMDBjIDMuNTA0LDAuMDAsIDcuMDA4LDAuNTc2LCAxMC4zNjgsMS43MjhjIDkuNDQsMy4yMzIsIDE2LjgxNiwxMC42ODgsIDE5Ljk2OCwyMC4xNDRsIDMyLjAwLDk2LjAwCgkJQyA1MTQuNTkyLDM1NC41OTIsIDUxMC40NjQsMzY4LjYwOCwgNTAwLjAwLDM3Ni45OTJ6IE0gMzE2LjA2NCw0MTYuMDBDIDMwNy4yMTYsMzk3LjQyNCwgMjgzLjc3NiwzODQuMDAsIDI1Ni4wMCwzODQuMDBjLTI3Ljc3NiwwLjAwLTUxLjIzMiwxMy40MjQtNjAuMDY0LDMyLjAwTCAzMTYuMDY0LDQxNi4wMCB6IE0gNDQ4LjAwLDI1Ni4wMGwtNDguMDAsMzIuMDAKCQlsMC4wMC0yNTYuMDAgTCAxMTIuMDAsMzIuMDAgTCAxMTIuMDAsMjg4LjAwIGwtNDguMDAtMzIuMDBMIDMyLjAwLDM1Mi4wMGwgODAuMDAsNjQuMDBsIDY2LjgzMiwwLjAwIEMgMTg3Ljc0NCwzODguNDQ4LCAyMTguNzY4LDM2OC4wMCwgMjU2LjAwLDM2OC4wMGMgMzcuMjE2LDAuMDAsIDY4LjI1NiwyMC40NDgsIDc3LjE1Miw0OC4wMEwgNDAwLjAwLDQxNi4wMCBsIDgwLjAwLTY0LjAwTCA0NDguMDAsMjU2LjAweiIgZGF0YS10YWdzPSJ0LXNoaXJ0IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAyODsiIGQ9Ik0gMzUyLjAwLDMzNi4wMGMtMC45OTItNDIuODAtMzMuMTItNzguOTQ0LTMzLjEyLTc4Ljk0NEMgMzE4Ljg4LDMzNi42NzIsIDI1Ni4wMCw0MDAuMDAsIDI1Ni4wMCw0MDAuMDBzLTAuODQ4LTQ3LjM5Mi0zMi42ODgtOTUuMTY4CgkJCUMgMTkxLjQ3Miw0MTYuMzA0LCA5NS45Miw0ODAuMDAsIDk1LjkyLDQ4MC4wMEMgMTQzLjY5NiwzMDQuODMyLCA4MC4wMCwyNDEuMTIsIDgwLjAwLDExMy43MjhDIDgwLjAwLDM4Ljk5MiwgMTQzLjI2NC0zMi4wMCwgMjQwLjAwLTMyLjAwYyAxNDMuMzEyLDAuMDAsIDE3MS4wMjQsNTIuNjA4LCAxODUuODQsMTExLjg4OAoJCQlDIDQ0Ni4yNTYsMTYxLjUwNCwgNDE1LjY4LDI1Ni4zODQsIDM1Mi4wMCwzMzYuMDB6IE0gMzk0LjgxNiw4Ny42NjRDIDM4NC41MjgsNDYuNTYsIDM3Mi45MTIsMC4wMCwgMjQwLjAwLDAuMDBjLTgwLjEyOCwwLjAwLTEyOC4wMCw1Ny44MjQtMTI4LjAwLDExMy43MjgKCQkJYzAuMDAsNDIuODE2LCA3LjgwOCw3Ny45NjgsIDE2LjA2NCwxMTUuMTg0YyAxMC40OTYsNDcuMTg0LCAyMS4yNDgsOTUuNDg4LCAxNi41OTIsMTU5LjM3NmMgNDkuMzQ0LTY4LjMwNCwgNjYuOTEyLTE1OC44MCwgNjYuOTEyLTE1OC44MAoJCQlzIDQ1LjkzNiw2NC40OTYsIDU4LjI4OCw5NC40NDhDIDI3OS4zMTIsMzA0LjY4OCwgMjg4LjAwLDI0MC4wMCwgMjg4LjAwLDE3Ni4wMGMwLjAwLDAuMDAsIDQyLjQ5NiwzNS4wMDgsIDc0LjM2OCw4Ny42NDhDIDM5NS45MzYsMjAzLjQ1NiwgNDA4LjAzMiwxNDAuNTI4LCAzOTQuODE2LDg3LjY2NHpNIDM1OC45MTIsMjExLjI4IEwgMzYxLjg4OCwxOTQuNzIgQyAzNjguNTQ0LDE1Ny42MzIgMzY0LjgxNiwxMTMuNzkyIDM1Mi40MTYsODMuMDA4IEMgMzUxLjE2OCw3OS44ODggMzQ4LjE2LDc4LjAwIDM0NS4wMDgsNzguMDAgQyAzNDQuMDAsNzguMDAgMzQyLjk3Niw3OC4xOTIgMzQyLjAwLDc4LjU3NiBDIDMzNy45MDQsODAuMjI0IDMzNS45MDQsODQuODggMzM3LjU2OCw4OC45NzYgQyAzNDYuOTEyLDExMi4xNiAzNTAuODQ4LDE0NC44MCAzNDguMzUyLDE3NC42MjQgQyAzMzIuMjg4LDE1Ni42NzIgMzEyLjA0OCwxMzcuOTY4IDI2OC44MCwxMTcuNDI0IEwgMjYwLjcwNCwxMTMuNjAgTCAyNTcuNzkyLDEyMi4wNDggQyAyNTIuMDAsMTM4Ljg0OCAyNDYuMTYsMTU1LjgyNCAyNDMuNjMyLDE3OS40ODggQyAyMzQuOTc2LDE2NS44NCAyMjcuMDcyLDE1My42OCAyMTMuNzkyLDEzNS42MCBMIDIwNS42NjQsMTI0LjUyOCBMIDIwMC4wMzIsMTM3LjA3MiBDIDE4Ni4yNTYsMTY3Ljg3MiAxNzUuNzYsMTkxLjkyIDE2Ny40NCwyMTMuMDcyIEMgMTU5Ljc0NCwxODguMzUyIDE1NC4wMCwxNTkuNzYgMTU0LjAwLDEwMi4wMTYgQyAxNTQuMDAsOTcuNjAgMTUwLjQwLDk0LjAxNiAxNDYuMDAsOTQuMDE2IEMgMTQxLjU2OCw5NC4wMTYgMTM4LjAwLDk3LjYwIDEzOC4wMCwxMDIuMDE2IEMgMTM4LjAwLDE3Ny4zNiAxNDguMDAsMjA2LjM4NCAxNTguNTYsMjM3LjEyIEwgMTY2Ljg4LDI2MS4yOCBMIDE3NC41NDQsMjM5LjY4IEMgMTgyLjc4NCwyMTYuNDY0IDE5My42MzIsMTkwLjg4IDIwOC45NzYsMTU2LjI4OCBDIDIxOS4wODgsMTcwLjU3NiAyMjUuODcyLDE4MS4zMjggMjM0LjA2NCwxOTQuMzA0IEwgMjU4LjM1MiwyMzIuMzUyIEwgMjU4LjM1MiwyMDUuMDA4IEMgMjU4LjM1MiwxNzQuMjI0IDI2My44ODgsMTU0LjExMiAyNjkuOTg0LDEzNS44NCBDIDMxMi41MjgsMTU3LjI0OCAzMjguNDY0LDE3NS44NzIgMzQ1LjMxMiwxOTUuNTIgTCAzNTguOTEyLDIxMS4yOCBaIiBkYXRhLXRhZ3M9ImZpcmUiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDI5OyIgZD0iTSA0NjkuODA4LDQwNS44MDggQyA1MjYuMDY0LDM0OS41ODQgNTI2LjA2NCwyNTguNDAgNDY5LjgwOCwyMDIuMTc2IEwgMjk0LjMzNiwyNi42ODggQyAyODguMDgsMjAuNDE2IDI3Ny45NjgsMjAuNDE2IDI3MS43MTIsMjYuNjg4IEMgMjY1LjQyNCwzMi45NDQgMjY1LjQyNCw0My4wNCAyNzEuNzEyLDQ5LjMxMiBMIDQ0NC45MjgsMjIyLjU0NCBDIDQ4OC42NzIsMjY2LjI4OCA0ODguNjcyLDMzNy4xNjggNDQ0Ljg5NiwzODAuOTI4IEMgNDAxLjIxNiw0MjQuNjcyIDMzMC4yNzIsNDI0LjY3MiAyODYuNTI4LDM4MC45MjggTCA1NS4zNzYsMTUyLjQ5NiBDIDI0LjEyOCwxMjEuMjY0IDI0LjEyOCw3MC42MDggNTUuMzc2LDM5LjM3NiBDIDg2LjYyNCw4LjEyOCAxMzcuMjQ4LDguMTI4IDE2OC40OTYsMzkuMzc2IEwgNDAxLjkzNiwyNzAuMDQ4IEMgNDIwLjY1NiwyODguNzY4IDQyMC42NTYsMzE5LjIxNiA0MDEuOTM2LDMzNy45MzYgQyAzODMuMjE2LDM1Ni42NCAzNTIuNzg0LDM1Ni42NCAzMzQuMDY0LDMzNy45MzYgTCAxNTguNTYsMTYyLjQzMiBDIDE1Mi4zMDQsMTU2LjE3NiAxNDIuMTkyLDE1Ni4xNzYgMTM1LjkzNiwxNjIuNDMyIEMgMTI5LjY4LDE2OC43MDQgMTI5LjY4LDE3OC44MCAxMzUuOTM2LDE4NS4wNzIgTCAzMTEuNDI0LDM2MC41NiBDIDM0Mi42NCwzOTEuNzkyIDM5My4yOTYsMzkxLjc5MiA0MjQuNTQ0LDM2MC41NiBDIDQ1NS43OTIsMzI5LjMxMiA0NTUuNzkyLDI3OC42NzIgNDI0LjU0NCwyNDcuNDI0IEwgMTkxLjEwNCwxNi43MzYgQyAxNDcuNDU2LTI2LjkyOCA3Ni40MC0yNi45MjggMzIuNzM2LDE2LjczNiBDIC0xMC45MjgsNjAuNDAgLTEwLjkyOCwxMzEuNDcyIDMyLjczNiwxNzUuMTM2IEwgMjY2LjE3Niw0MDUuODA4IEMgMzIyLjQwLDQ2Mi4wNjQgNDEzLjU4NCw0NjIuMDY0IDQ2OS44MDgsNDA1LjgwOCBaIiBkYXRhLXRhZ3M9ImNsaXAiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDJhOyIgZD0iTSA1MDIuNDAsMzAwLjgwbC00OC4wMCw2My45NjhjLTEuODcyLDIuNTEyLTQuMDk2LDQuNjg4LTYuNDAsNi43NjhMIDQ0OC4wMCw0NDguMDAgYzAuMDAsMTcuNjY0LTE0LjMzNiwzMi4wMC0zMi4wMCwzMi4wMEwgOTYuMDAsNDgwLjAwIAoJQyA3OC4zMiw0ODAuMDAsIDY0LjAwLDQ2NS42NjQsIDY0LjAwLDQ0OC4wMGwwLjAwLTc2LjQ4IEMgNjEuNjk2LDM2OS40NTYsIDU5LjQ3MiwzNjcuMjk2LCA1Ny42MCwzNjQuODBsLTQ3Ljk4NC02My45ODRDIDMuNDA4LDI5Mi41NiwwLjAwLDI4Mi4zMzYsMC4wMCwyNzIuMDBsMC4wMC0xNi4wMCBjMC4wMC0yNi40NjQsIDIxLjUzNi00OC4wMCwgNDguMDAtNDguMDBsMC4wMCwwLjAwIGwwLjAwLTIwOC4wMCAKCWMwLjAwLTE3LjY2NCwgMTQuMzM2LTMyLjAwLCAzMi4wMC0zMi4wMGwgMzUyLjAwLDAuMDAgYyAxNy42NjQsMC4wMCwgMzIuMDAsMTQuMzM2LCAzMi4wMCwzMi4wMEwgNDY0LjAwLDIwOC4wMCBsMC4wMCwwLjAwYyAyNi40NjQsMC4wMCwgNDguMDAsMjEuNTM2LCA0OC4wMCw0OC4wMGwwLjAwLDE2LjAwIEMgNTEyLjAwLDI4Mi4zMzYsIDUwOC41OTIsMjkyLjU2LCA1MDIuNDAsMzAwLjgweiBNIDQxNi4wMCw0NDguMDBsMC4wMC02NC4wMCBMIDk2LjAwLDM4NC4wMCBsMC4wMCwwLjAwIEwgOTYuMDAsNDQ4LjAwIEwgNDE2LjAwLDQ0OC4wMCB6CgkgTSAxNjMuMDg4LDI0MC4wMEwgOTYuMDY0LDI0MC4wMCBsIDY0LjAwLDExMi4wMGwgMzUuMDI0LDAuMDAgTCAxNjMuMDg4LDI0MC4wMHogTSAyMTEuNzQ0LDM1Mi4wMEwgMjQ4LjAwLDM1Mi4wMCBsMC4wMC0xMTIuMDAgbC02OC4yNTYsMC4wMCBMIDIxMS43NDQsMzUyLjAweiBNIDI2NC4wMCwzNTIuMDBsIDM2LjI1NiwwLjAwIGwgMzIuMDAtMTEyLjAwTCAyNjQuMDAsMjQwLjAwIEwgMjY0LjAwLDM1Mi4wMCB6IE0gMzE2Ljg4LDM1Mi4wMGwgMzUuMDI0LDAuMDAgbCA2NC4wMC0xMTIuMDBsLTY3LjAyNCwwLjAwIAoJTCAzMTYuODgsMzUyLjAweiBNIDMyLjAwLDI1Ni4wMGwwLjAwLDE2LjAwIGMwLjAwLDMuNDcyLCAxLjEyLDYuODMyLCAzLjIwLDkuNjBsIDQ4LjAwLDY0LjAwQyA4Ni4yMjQsMzQ5LjYzMiwgOTAuOTYsMzUyLjAwLCA5Ni4wMCwzNTIuMDBsIDQ1LjYzMiwwLjAwIGwtNjQuMDAtMTEyLjAwTCA0OC4wMCwyNDAuMDAgQyAzOS4xNjgsMjQwLjAwLCAzMi4wMCwyNDcuMTUyLCAzMi4wMCwyNTYuMDB6IE0gMzIwLjAwLDAuMDBsLTEyMC4wMCwwLjAwIEwgMjAwLjAwLDE2MC4wMCAKCUwgMzIwLjAwLDE2MC4wMCBMIDMyMC4wMCwwLjAwIHogTSA0MzIuMDAsMC4wMGwtOTYuMDAsMC4wMCBMIDMzNi4wMCwxNjAuMDAgYzAuMDAsOC44NDgtNy4xODQsMTYuMDAtMTYuMDAsMTYuMDBsLTEyMC4wMCwwLjAwIGMtOC44MzIsMC4wMC0xNi4wMC03LjE1Mi0xNi4wMC0xNi4wMGwwLjAwLTE2MC4wMCBMIDgwLjAwLDAuMDAgTCA4MC4wMCwyMDguMDAgbCAzNTIuMDAsMC4wMCBMIDQzMi4wMCwwLjAwIHogTSA0ODAuMDAsMjU2LjAwYzAuMDAtOC44NDgtNy4xNTItMTYuMDAtMTYuMDAtMTYuMDBsLTI5LjY2NCwwLjAwIGwtNjQuMDAsMTEyLjAwTCA0MTYuMDAsMzUyLjAwIGwwLjAwLDAuMDAKCWMgNS4wMjQsMC4wMCwgOS43NzYtMi4zNjgsIDEyLjc4NC02LjQwbCA0OC4wMC02NC4wMEMgNDc4Ljg4LDI3OC44MzIsIDQ4MC4wMCwyNzUuNDcyLCA0ODAuMDAsMjcyLjAwTCA0ODAuMDAsMjU2LjAwIHoiIGRhdGEtdGFncz0ic2hvcCIgLz4KPGdseXBoIHVuaWNvZGU9IiYjeGUwMmI7IiBkPSJNIDQ2OS4zNDQsNDMyLjAwTCA0MDAuMDAsNDMyLjAwIEwgNDAwLjAwLDQ2NC4wMCBjMC4wMCw4Ljg0OC03LjE1MiwxNi4wMC0xNi4wMCwxNi4wMHMtMTYuMDAtNy4xNTItMTYuMDAtMTYuMDBsMC4wMC0zMi4wMCBsLTk2LjAwLDAuMDAgTCAyNzIuMDAsNDY0LjAwIGMwLjAwLDguODQ4LTcuMTY4LDE2LjAwLTE2LjAwLDE2LjAwcy0xNi4wMC03LjE1Mi0xNi4wMC0xNi4wMGwwLjAwLTMyLjAwIEwgMTQ0LjAwLDQzMi4wMCBMIDE0NC4wMCw0NjQuMDAgCgkJYzAuMDAsOC44NDgtNy4xNjgsMTYuMDAtMTYuMDAsMTYuMDBTIDExMi4wMCw0NzIuODQ4LCAxMTIuMDAsNDY0LjAwbDAuMDAtMzIuMDAgTCA0Mi42NzIsNDMyLjAwIEMgMTkuMTA0LDQzMi4wMCwwLjAwLDQxMi45MTIsMC4wMCwzODkuMzQ0bDAuMDAtMzc4LjY3MiBDMC4wMC0xMi44OTYsIDE5LjEwNC0zMi4wMCwgNDIuNjcyLTMyLjAwbCA0MjYuNjcyLDAuMDAgCgkJQyA0OTIuOTEyLTMyLjAwLCA1MTIuMDAtMTIuODk2LCA1MTIuMDAsMTAuNjcyTCA1MTIuMDAsMzg5LjM0NCBDIDUxMi4wMCw0MTIuOTEyLCA0OTIuOTEyLDQzMi4wMCwgNDY5LjM0NCw0MzIuMDB6IE0gNDgwLjAwLDEwLjY3MkMgNDgwLjAwLDQuNzg0LCA0NzUuMjE2LDAuMDAsIDQ2OS4zNDQsMC4wMEwgNDIuNjcyLDAuMDAgCgkJQyAzNi43ODQsMC4wMCwgMzIuMDAsNC43ODQsIDMyLjAwLDEwLjY3MkwgMzIuMDAsMzg5LjM0NCBDIDMyLjAwLDM5NS4yMTYsIDM2Ljc4NCw0MDAuMDAsIDQyLjY3Miw0MDAuMDBMIDExMi4wMCw0MDAuMDAgbDAuMDAtMzIuMDAgYzAuMDAtOC44NDgsIDcuMTY4LTE2LjAwLCAxNi4wMC0xNi4wMHMgMTYuMDAsNy4xNTIsIDE2LjAwLDE2LjAwTCAxNDQuMDAsNDAwLjAwIGwgOTYuMDAsMC4wMCBsMC4wMC0zMi4wMCBjMC4wMC04Ljg0OCwgNy4xNjgtMTYuMDAsIDE2LjAwLTE2LjAwCgkJcyAxNi4wMCw3LjE1MiwgMTYuMDAsMTYuMDBMIDI3Mi4wMCw0MDAuMDAgbCA5Ni4wMCwwLjAwIGwwLjAwLTMyLjAwIGMwLjAwLTguODQ4LCA3LjE1Mi0xNi4wMCwgMTYuMDAtMTYuMDBzIDE2LjAwLDcuMTUyLCAxNi4wMCwxNi4wMEwgNDAwLjAwLDQwMC4wMCBsIDY5LjM0NCwwLjAwIEMgNDc1LjIxNiw0MDAuMDAsIDQ4MC4wMCwzOTUuMjE2LCA0ODAuMDAsMzg5LjM0NEwgNDgwLjAwLDEwLjY3MiB6TSAxMTIuMDAsMjg4LjAwTCAxNzYuMDAsMjg4LjAwTCAxNzYuMDAsMjQwLjAwTCAxMTIuMDAsMjQwLjAwek0gMTEyLjAwLDIwOC4wMEwgMTc2LjAwLDIwOC4wMEwgMTc2LjAwLDE2MC4wMEwgMTEyLjAwLDE2MC4wMHpNIDExMi4wMCwxMjguMDBMIDE3Ni4wMCwxMjguMDBMIDE3Ni4wMCw4MC4wMEwgMTEyLjAwLDgwLjAwek0gMjI0LjAwLDEyOC4wMEwgMjg4LjAwLDEyOC4wMEwgMjg4LjAwLDgwLjAwTCAyMjQuMDAsODAuMDB6TSAyMjQuMDAsMjA4LjAwTCAyODguMDAsMjA4LjAwTCAyODguMDAsMTYwLjAwTCAyMjQuMDAsMTYwLjAwek0gMjI0LjAwLDI4OC4wMEwgMjg4LjAwLDI4OC4wMEwgMjg4LjAwLDI0MC4wMEwgMjI0LjAwLDI0MC4wMHpNIDMzNi4wMCwxMjguMDBMIDQwMC4wMCwxMjguMDBMIDQwMC4wMCw4MC4wMEwgMzM2LjAwLDgwLjAwek0gMzM2LjAwLDIwOC4wMEwgNDAwLjAwLDIwOC4wMEwgNDAwLjAwLDE2MC4wMEwgMzM2LjAwLDE2MC4wMHpNIDMzNi4wMCwyODguMDBMIDQwMC4wMCwyODguMDBMIDQwMC4wMCwyNDAuMDBMIDMzNi4wMCwyNDAuMDB6IiBkYXRhLXRhZ3M9ImNhbGVuZGFyIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAyYzsiIGQ9Ik0gMjU2LjAwLDE2MC4wMEEzMi4wMCwzMi4wMCAxODAuMDAgMSwwIDMyMC4wMCwxNjBBMzIuMDAsMzIuMDAgMTgwLjAwIDEsMCAyNTYuMDAsMTYwek0gNDY0LjAxNiwyNzIuMDBDIDQ2NC4wMCwyNzIuMDAsIDQ2NC4wMCwyNzIuMDAsIDQ2NC4wMTYsMjcyLjAwTCA0NjQuMDAsMzY4LjAwTCA0NjQuMDAsMzc2LjAwIEwgNDY0LjAwLDQxNi4wMCBjMC4wMCwyNi41MTItMjEuNTA0LDQ4LjAwLTQ4LjAwLDQ4LjAwbC02NC4wMCwwLjAwIEwgODguMDAsNDY0LjAwIEMgMzkuNDcyLDQ2NC4wMCwwLjAwLDQyNC41MTIsMC4wMCwzNzYuMDBsMC4wMC0zMjAuMDAgCgkJQzAuMDAsNy40ODgsIDM5LjQ3Mi0zMi4wMCwgODguMDAtMzIuMDBsIDI4OC4wMCwwLjAwIGMgNDguNTEyLDAuMDAsIDg4LjAwLDM5LjQ4OCwgODguMDAsODguMDBMIDQ2NC4wMCw4MC4wMCBjMC4wMCwwLjAwLDAuMDAsMC4wMCwgMC4wMTYsMC4wMEMgNTI3Ljk4NCwxMjguMDE2LCA1MjcuOTg0LDIyMy45ODQsIDQ2NC4wMTYsMjcyLjAweiBNIDg4LjAwLDQzMi4wMEwgMzUyLjAwLDQzMi4wMCBsIDY0LjAwLDAuMDAgCgkJYyA4LjgxNiwwLjAwLCAxNi4wMC03LjE2OCwgMTYuMDAtMTYuMDBsMC4wMC00MC4wMCBMIDQzMi4wMCwzNjguMDAgbDAuMDAtNTAuOTQ0IEMgNDI2Ljk3NiwzMTguODQ4LCA0MjEuNjMyLDMyMC4wMCwgNDE2LjAwLDMyMC4wMGwtMC4wMTYsMC4wMCBMIDQxNS45ODQsMzM2LjAwIEwgNDE1Ljk4NCwzNjguMDAgTCA0MTUuOTg0LDQwMC4wMCBjMC4wMCw4Ljg0OC03LjE2OCwxNi4wMC0xNi4wMCwxNi4wMGwtMzM2LjAwLDAuMDAgYy04LjgzMiwwLjAwLTE2LjAwLTcuMTUyLTE2LjAwLTE2LjAwbDAuMDAtMzIuMDAgCgkJbDAuMDAtMzEuMDg4IEMgMzguMTEyLDM0Ny4wMDgsIDMyLjAwLDM2MC43NjgsIDMyLjAwLDM3Ni4wMEMgMzIuMDAsNDA2LjkyOCwgNTcuMDU2LDQzMi4wMCwgODguMDAsNDMyLjAweiBNIDM5OS45ODQsMzg0LjAwbC0zMzYuMDAsMC4wMCBMIDYzLjk4NCw0MDAuMDAgbCAzMzYuMDAsMC4wMCBMIDM5OS45ODQsMzg0LjAwIHogTSAzOTkuOTg0LDM2OC4wMGwwLjAwLTE2LjAwIGwtMzM2LjAwLDAuMDAgTCA2My45ODQsMzY4LjAwIEwgMzk5Ljk4NCwzNjguMDAgeiBNIDM5OS45ODQsMzM2LjAwbDAuMDAtMTYuMDAgTCAzNTIuMDAsMzIwLjAwIEwgODguMDAsMzIwLjAwIAoJCWMtOC42NCwwLjAwLTE2LjcwNCwyLjExMi0yNC4wMCw1LjYwTCA2NC4wMCwzMzYuMDAgTCAzOTkuOTg0LDMzNi4wMCB6IE0gNDMyLjAwLDU2LjAwYzAuMDAtMzAuOTI4LTI1LjA3Mi01Ni4wMC01Ni4wMC01Ni4wMGwtMjg4LjAwLDAuMDAgQyA1Ny4wNTYsMC4wMCwgMzIuMDAsMjUuMDcyLCAzMi4wMCw1Ni4wMEwgMzIuMDAsMzA4LjE3NiAKCQlDIDQ3LjIxNiwyOTUuNTg0LCA2Ni43MzYsMjg4LjAwLCA4OC4wMCwyODguMDBMIDM1Mi4wMCwyODguMDAgbCA2NC4wMCwwLjAwIGMgOC44MTYsMC4wMCwgMTYuMDAtNy4xNjgsIDE2LjAwLTE2LjAwbDAuMDAtMzIuMDAgbC0xNDQuMDAsMC4wMCBjLTQ0LjE5MiwwLjAwLTgwLjAwLTM1LjgwOC04MC4wMC04MC4wMHMgMzUuODI0LTgwLjAwLCA4MC4wMC04MC4wMGwgMTQ0LjAwLDAuMDAgTCA0MzIuMDAsNTYuMDAgeiBNIDQ1Mi40MzIsMTEyLjAwTCAyODguMDAsMTEyLjAwIAoJCWMtMjYuNDY0LDAuMDAtNDguMDAsMjEuNTM2LTQ4LjAwLDQ4LjAwcyAyMS41MzYsNDguMDAsIDQ4LjAwLDQ4LjAwbCAxNDQuMDAsMC4wMCBjIDkuODcyLDAuMTI4LCAxOS42NjQsNC45MTIsIDI1LjYzMiwxMi44NjRjIDEuNjY0LDIuMjQsIDIuOTYsNC43NTIsIDQuMDAsNy4zNzYKCQljIDAuMTQ0LDAuMzUyLCAwLjQwLDAuNjI0LCAwLjUyOCwwLjk5MkMgNDczLjY2NCwyMTQuMTQ0LCA0ODAuMDAsMTk1LjY0OCwgNDgwLjAwLDE3Ni4wMEMgNDgwLjAwLDE1MS4zOTIsIDQ3MC4wNjQsMTI4LjU2LCA0NTIuNDMyLDExMi4wMHoiIGRhdGEtdGFncz0idmFsbGV0IiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAyZDsiIGQ9Ik0gMzUxLjIxNiw0NjEuNjBjLTEzMS4yMzIsNTIuNTQ0LTI4MC4yNC0xMS4yMzItMzMyLjgwLTE0Mi40OAoJCWMtNTIuNTc2LTEzMS4yNjQsIDExLjIzMi0yODAuMjg4LCAxNDIuNDgtMzMyLjgzMmMgMTMxLjI0OC01Mi41NiwgMjgwLjI1NiwxMS4yMzIsIDMzMi44MTYsMTQyLjQ4QyA1NDYuMjg4LDI2MC4wMzIsIDQ4Mi40NjQsNDA5LjAyNCwgMzUxLjIxNiw0NjEuNjB6CgkJIE0gMTcyLjgwLDE1Ljk4NEMgNTguMTQ0LDYxLjkwNCwgMi4yMDgsMTkyLjUyOCwgNDguMTEyLDMwNy4yMGMgNDUuOTIsMTE0LjY1NiwgMTc2LjU2LDE3MC42MDgsIDI5MS4yMzIsMTI0LjY3MmMgMTE0LjY1Ni00NS45MDQsIDE3MC41OTItMTc2LjU0NCwgMTI0LjY4OC0yOTEuMjAKCQlDIDQxOC4wOTYsMjYuMDAsIDI4Ny40NzItMjkuOTIsIDE3Mi44MCwxNS45ODR6TSAyNjcuOTg0LDI1My42NDhjLTE2LjQwLDYuNTc2LTM1LjA0LTEuNDA4LTQxLjYxNi0xNy44MDgKCQlzIDEuNDA4LTM1LjAyNCwgMTcuNzkyLTQxLjYwYyAxNi40MC02LjU3NiwgMzUuMDU2LDEuNDA4LCA0MS42MTYsMTcuNzkyQyAyOTIuMzM2LDIyOC40MzIsIDI4NC4zNjgsMjQ3LjA1NiwgMjY3Ljk4NCwyNTMuNjQ4eiBNIDI1MC4xMTIsMjA5LjA3MgoJCWMtOC4xOTIsMy4yOTYtMTIuMTc2LDEyLjYwOC04LjkxMiwyMC44MTZjIDMuMjk2LDguMTkyLCAxMi42MjQsMTIuMTc2LCAyMC44MTYsOC45MTJjIDguMTc2LTMuMjgsIDEyLjE2LTEyLjYwOCwgOC44OTYtMjAuODE2CgkJQyAyNjcuNjMyLDIwOS43OTIsIDI1OC4zMDQsMjA1LjgwOCwgMjUwLjExMiwyMDkuMDcyek0gMjkxLjc0NCwzMTMuMDRjLTQ5LjIxNiwxOS43MTItMTA1LjA4OC00LjIyNC0xMjQuODAtNTMuNDI0CgkJYy0xOS43MTItNDkuMjE2LCA0LjIyNC0xMDUuMDg4LCA1My40MjQtMTI0LjgwYyA0OS4yMTYtMTkuNzEyLCAxMDUuMDg4LDQuMjA4LCAxMjQuODAsNTMuNDI0UyAzNDAuOTc2LDI5My4zNDQsIDI5MS43NDQsMzEzLjA0eiBNIDIzMi4yODgsMTY0LjUyOAoJCWMtMzIuNzY4LDEzLjEwNC00OC43MzYsNTAuNDQ4LTM1LjYzMiw4My4yMGMgMTMuMTIsMzIuNzUyLCA1MC40MzIsNDguNzM2LCA4My4xODQsMzUuNjMyYyAzMi43ODQtMTMuMTIsIDQ4Ljc1Mi01MC40NjQsIDM1LjY2NC04My4yMTYKCQlDIDMwMi4zNjgsMTY3LjM5MiwgMjY1LjA0LDE1MS4zOTIsIDIzMi4yODgsMTY0LjUyOHpNIDM3NC45MTIsMTc2LjM1MiBMIDM3NC44OCwxNzYuMzUyIEMgMzYxLjgwOCwxNDMuNzI4IDMzNi43NTIsMTE5LjQ1NiAzMDYuNzg0LDEwNi40OTYgQyAzMDYuNjcyLDEwNi40NDggMzA2LjYwOCwxMDYuMzIgMzA2LjQ0OCwxMDYuMjU2IEMgMzAyLjM4NCwxMDQuNTI4IDI5Ny42OTYsMTA2LjQwIDI5NS45NTIsMTEwLjQ4IEMgMjk0LjIwOCwxMTQuNTI4IDI5Ni4xMTIsMTE5LjIzMiAzMDAuMTQ0LDEyMC45NiBDIDMyNi40OCwxMzIuMjQgMzQ4LjU0NCwxNTMuNTY4IDM2MC4wNDgsMTgyLjMwNCBMIDM2MC4wNDgsMTgyLjI4OCBDIDM2MS42OTYsMTg2LjQwIDM2Ni4zNTIsMTg4LjQwIDM3MC40NDgsMTg2LjczNiBDIDM3NC41NDQsMTg1LjEwNCAzNzYuNTQ0LDE4MC40NDggMzc0LjkxMiwxNzYuMzUyIFpNIDQyOS44NCwxNjIuOTc2IEMgNDMzLjkzNiwxNjEuMzI4IDQzNS45MzYsMTU2LjY3MiA0MzQuMzA0LDE1Mi41NzYgQyA0MTQuNzA0LDEwMy42NDggMzc3LjA4OCw2Ny4yMTYgMzMyLjE0NCw0Ny44MDggQyAzMzEuOTUyLDQ3LjcyOCAzMzEuODA4LDQ3LjU1MiAzMzEuNjE2LDQ3LjQ1NiBDIDMyNy41NTIsNDUuNzI4IDMyMi44NjQsNDcuNTg0IDMyMS4xMiw1MS42NjQgQyAzMTkuMzc2LDU1LjcyOCAzMjEuMjgsNjAuNDMyIDMyNS4zMTIsNjIuMTYgQyAzNjYuNzIsNzkuODg4IDQwMS4zNzYsMTEzLjQwOCA0MTkuNDQsMTU4LjUyOCBDIDQyMS4wODgsMTYyLjYyNCA0MjUuNzQ0LDE2NC42MjQgNDI5Ljg0LDE2Mi45NzYgWk0gNDAwLjEyOCwxNzQuODY0IEMgNDA0LjIyNCwxNzMuMjE2IDQwNi4yMjQsMTY4LjU2IDQwNC41OTIsMTY0LjQ2NCBDIDM4OC4yNTYsMTIzLjY4IDM1Ni45MTIsOTMuMzQ0IDMxOS40NzIsNzcuMTY4IEMgMzE5LjI5Niw3Ny4wNzIgMzE5LjIwLDc2LjkyOCAzMTkuMDQsNzYuODQ4IEMgMzE0Ljk3Niw3NS4xMiAzMTAuMjg4LDc2Ljk5MiAzMDguNTQ0LDgxLjA1NiBDIDMwNi44MCw4NS4xMiAzMDguNzA0LDg5LjgyNCAzMTIuNzY4LDkxLjU2OCBMIDMxMi43MzYsOTEuNTY4IEMgMzQ2LjY0LDEwNi4wOCAzNzQuOTc2LDEzMy40ODggMzg5LjcyOCwxNzAuNDE2IEMgMzkxLjM3NiwxNzQuNTI4IDM5Ni4wMzIsMTc2LjUxMiA0MDAuMTI4LDE3NC44NjQgWk0gMjE2LjIwOCwzMzcuNDA4IEMgMjE3Ljk1MiwzMzMuMzI4IDIxNi4wNjQsMzI4LjY0IDIxMi4wMCwzMjYuODggQyAxODUuNjY0LDMxNS42MTYgMTYzLjYwLDI5NC4yNzIgMTUyLjExMiwyNjUuNTY4IEwgMTUyLjA5NiwyNjUuNTY4IEMgMTUwLjQ2NCwyNjEuNDcyIDE0NS44MDgsMjU5LjQ3MiAxNDEuNjk2LDI2MS4xMiBDIDEzNy42MCwyNjIuNzY4IDEzNS42MCwyNjcuNDA4IDEzNy4yNDgsMjcxLjUyIEwgMTM3LjI2NCwyNzEuNTIgQyAxNTAuMzIsMzA0LjEyOCAxNzUuMzkyLDMyOC40MTYgMjA1LjM2LDM0MS4zNzYgQyAyMDUuNDcyLDM0MS40MjQgMjA1LjU1MiwzNDEuNTUyIDIwNS42OTYsMzQxLjYwIEMgMjA5Ljc2LDM0My4zNDQgMjE0LjQ2NCwzNDEuNDg4IDIxNi4yMDgsMzM3LjQwOCBaTSAxOTEuMDA4LDM5Ni4yNCBDIDE5Mi43NTIsMzkyLjE3NiAxOTAuODY0LDM4Ny40ODggMTg2LjgxNiwzODUuNzI4IEMgMTQ1LjQwOCwzNjguMDAgMTEwLjc2OCwzMzQuNDggOTIuNjg4LDI4OS4zNzYgQyA5MS4wNCwyODUuMjY0IDg2LjM4NCwyODMuMjggODIuMjg4LDI4NC45MjggQyA3OC4xNzYsMjg2LjU2IDc2LjE3NiwyOTEuMjE2IDc3Ljg0LDI5NS4zNDQgQyA5Ny40NCwzNDQuMjcyIDEzNS4wNCwzODAuNjg4IDE4MC4wMCw0MDAuMTEyIEMgMTgwLjE2LDQwMC4xOTIgMTgwLjMwNCw0MDAuMzY4IDE4MC40OTYsNDAwLjQ0OCBDIDE4NC41Niw0MDIuMTc2IDE4OS4yNjQsNDAwLjMwNCAxOTEuMDA4LDM5Ni4yNCBaTSAxOTkuMzkyLDM1Ni4zMzYgTCAxOTkuMzkyLDM1Ni4yODggQyAxNjUuNTIsMzQxLjc5MiAxMzcuMTY4LDMxNC4zNjggMTIyLjQwLDI3Ny40NCBDIDEyMC43NTIsMjczLjMyOCAxMTYuMDk2LDI3MS4zNiAxMTIuMDAsMjcyLjk5MiBDIDEwNy45MiwyNzQuNjU2IDEwNS45MDQsMjc5LjI5NiAxMDcuNTY4LDI4My40MDggQyAxMjMuODg4LDMyNC4xNzYgMTU1LjIzMiwzNTQuNTQ0IDE5Mi42ODgsMzcwLjczNiBDIDE5Mi44NDgsMzcwLjgwIDE5Mi45NDQsMzcwLjk2IDE5My4xMDQsMzcxLjAyNCBDIDE5Ny4xNjgsMzcyLjc2OCAyMDEuODcyLDM3MC44OCAyMDMuNjE2LDM2Ni44MzIgQyAyMDUuMzYsMzYyLjc1MiAyMDMuNDU2LDM1OC4wNjQgMTk5LjQwOCwzNTYuMzM2IFoiIGRhdGEtdGFncz0idnluaWwiIC8+CjxnbHlwaCB1bmljb2RlPSImI3hlMDJlOyIgZD0iTSAzOTcuMzEyLDI5Ni44OEMgMzk0LjMzNiwzMDEuMzI4LCAzODkuMzQ0LDMwNC4wMCwgMzg0LjAwLDMwNC4wMGwtMTYuMDAsMC4wMCBjLTguODQ4LDAuMDAtMTYuMDAtNy4xNTItMTYuMDAtMTYuMDBsMC4wMC05Ni4wMCBjMC4wMC04Ljg0OCwgNy4xNTItMTYuMDAsIDE2LjAwLTE2LjAwbCA2NC4wMCwwLjAwIAoJCWMgOC44NDgsMC4wMCwgMTYuMDAsNy4xNTIsIDE2LjAwLDE2LjAwbDAuMDAsMjQuMDAgYzAuMDAsMy4xNTItMC45NDQsNi4yNTYtMi42ODgsOC44OEwgMzk3LjMxMiwyOTYuODh6IE0gNDMyLjAwLDE5Mi4wMGwtNjQuMDAsMC4wMCBsMC4wMCw5Ni4wMCBsIDE2LjAwLDAuMDAgbCA0OC4wMC03Mi4wMEwgNDMyLjAwLDE5Mi4wMCB6TSA1MDMuOTM2LDIzNC42MjRsLTY0LjAwLDk2LjAwQyA0MzEuMDA4LDM0NC4wMTYsIDQxNi4wNjQsMzUyLjAwLCA0MDAuMDAsMzUyLjAwbC02NC4wMCwwLjAwIEwgMzM2LjAwLDM4NC4wMCBjMC4wMCwyNi40NjQtMjEuNTM2LDQ4LjAwLTQ4LjAwLDQ4LjAwTCA0OC4wMCw0MzIuMDAgQyAyMS41MzYsNDMyLjAwLDAuMDAsNDEwLjQ2NCwwLjAwLDM4NC4wMGwwLjAwLTE3Ni4wMCAKCQljMC4wMC0yNi40NjQsIDIxLjUzNi00OC4wMCwgNDguMDAtNDguMDBsMC4wMCwwLjAwIGwwLjAwLTQ4LjAwIGMwLjAwLTI2LjQ2NCwgMjEuNTM2LTQ4LjAwLCA0OC4wMC00OC4wMGwgMTguMjcyLDAuMDAgYyA3LjE1Mi0yNy41MzYsIDMyLjAwLTQ4LjAwLCA2MS43NDQtNDguMDBjIDI5LjcxMiwwLjAwLCA1NC41NiwyMC40NjQsIDYxLjcxMiw0OC4wMGwgODQuNTEyLDAuMDAgCgkJYyA3LjE1Mi0yNy41MzYsIDMyLjAwLTQ4LjAwLCA2MS43NDQtNDguMDBjIDI5LjcxMiwwLjAwLCA1NC41NiwyMC40NjQsIDYxLjcxMiw0OC4wMEwgNDY0LjAwLDY0LjAwIGMgMjYuNDY0LDAuMDAsIDQ4LjAwLDIxLjUzNiwgNDguMDAsNDguMDBsMC4wMCw5Ni4wMCBDIDUxMi4wMCwyMTcuNTA0LCA1MDkuMjE2LDIyNi43MiwgNTAzLjkzNiwyMzQuNjI0eiBNIDQ4LjAwLDE5Mi4wMAoJCWMtOC44MzIsMC4wMC0xNi4wMCw3LjE1Mi0xNi4wMCwxNi4wMEwgMzIuMDAsMzg0LjAwIGMwLjAwLDguODQ4LCA3LjE2OCwxNi4wMCwgMTYuMDAsMTYuMDBsIDI0MC4wMCwwLjAwIGMgOC44NDgsMC4wMCwgMTYuMDAtNy4xNTIsIDE2LjAwLTE2LjAwbDAuMDAtMzIuMDAgbDAuMDAtMzIuMDAgbDAuMDAtMTEyLjAwIGMwLjAwLTguODQ4LTcuMTUyLTE2LjAwLTE2LjAwLTE2LjAwTCA0OC4wMCwxOTIuMDAgeiBNIDE3Ni4wMTYsNDguMDAKCQljLTE3LjY4LDAuMDAtMzIuMDAsMTQuMzM2LTMyLjAwLDMyLjAwcyAxNC4zMiwzMi4wMCwgMzIuMDAsMzIuMDBjIDE3LjY2NCwwLjAwLCAzMi4wMC0xNC4zMzYsIDMyLjAwLTMyLjAwUyAxOTMuNjY0LDQ4LjAwLCAxNzYuMDE2LDQ4LjAweiBNIDM4NC4wMCw0OC4wMGMtMTcuNjgsMC4wMC0zMi4wMCwxNC4zMzYtMzIuMDAsMzIuMDBzIDE0LjMyLDMyLjAwLCAzMi4wMCwzMi4wMAoJCWMgMTcuNjY0LDAuMDAsIDMyLjAwLTE0LjMzNiwgMzIuMDAtMzIuMDBTIDQwMS42NjQsNDguMDAsIDM4NC4wMCw0OC4wMHogTSA0ODAuMDAsMTEyLjAwYzAuMDAtOC44NDgtNy4xNTItMTYuMDAtMTYuMDAtMTYuMDBsLTE4LjI4OCwwLjAwIGMtNy4xNTIsMjcuNTM2LTMyLjAwLDQ4LjAwLTYxLjcxMiw0OC4wMGMtMjkuNzQ0LDAuMDAtNTQuNTkyLTIwLjQ2NC02MS43NDQtNDguMDAKCQlsLTg0LjUxMiwwLjAwIGMtNy4xNTIsMjcuNTM2LTMyLjAwLDQ4LjAwLTYxLjcxMiw0OC4wMGMtMjkuNzQ0LDAuMDAtNTQuNTkyLTIwLjQ2NC02MS43NDQtNDguMDBMIDk2LjAwLDk2LjAwIGMtOC44MzIsMC4wMC0xNi4wMCw3LjE1Mi0xNi4wMCwxNi4wMGwwLjAwLDQ4LjAwIGwgMjA4LjAwLDAuMDAgYyAyNi40NjQsMC4wMCwgNDguMDAsMjEuNTM2LCA0OC4wMCw0OC4wMGwwLjAwLDExMi4wMCBsIDY0LjAwLDAuMDAgCgkJYyA1LjM0NCwwLjAwLCAxMC4zMzYtMi42NzIsIDEzLjMxMi03LjEybCA2NC4wMC05Ni4wMEMgNDc5LjA1NiwyMTQuMjU2LCA0ODAuMDAsMjExLjE1MiwgNDgwLjAwLDIwOC4wMEwgNDgwLjAwLDExMi4wMCB6IiBkYXRhLXRhZ3M9InRydWNrIiAvPgo8Z2x5cGggdW5pY29kZT0iJiN4ZTAyZjsiIGQ9Ik0gMjQ4LjAwLDQ4MC4wMEMgMTExLjAyNCw0ODAuMDAsMC4wMCwzNjguOTc2LDAuMDAsMjMyLjAwUyAxMTEuMDI0LTE2LjAwLCAyNDguMDAtMTYuMDBTIDQ5Ni4wMCw5NS4wMjQsIDQ5Ni4wMCwyMzIuMDBTIDM4NC45NzYsNDgwLjAwLCAyNDguMDAsNDgwLjAweiBNIDQ2My42MCwyNDAuMDAKCWwtOTUuOTM2LDAuMDAgYy0wLjg4LDM1LjQ0LTcuMTg0LDY5LjI5Ni0xOC4zNjgsMTAwLjI4OGMgMjEuNjAsOS4wMDgsIDQxLjU2OCwyMC45OTIsIDU5Ljc3NiwzNS4xNTJDIDQ0MS40NCwzMzkuMTA0LCA0NjEuNjgsMjkxLjkyLCA0NjMuNjAsMjQwLjAwegoJIE0gMjM5LjE1MiwxNi40NDhjLTI2LjU5MiwyMi4xNDQtNDguODk2LDUwLjg5Ni02NS4yMTYsODQuMjg4YyAyMC45NDQsNi41NDQsIDQzLjEzNiwxMC4xMjgsIDY2LjA2NCwxMC44NjRsMC4wMC05NS4xODQgCglDIDIzOS43MTIsMTYuNDE2LCAyMzkuNDQsMTYuNDMyLCAyMzkuMTUyLDE2LjQ0OHogTSAyNTYuODE2LDQ0Ny41NTJjIDMwLjE3Ni0yNS4xMiwgNTQuODAtNTguNzY4LCA3MS40NTYtOTguMDE2Yy0yMi44MTYtNy43OTItNDcuMDU2LTEyLjMyLTcyLjI4OC0xMy4xMgoJTCAyNTUuOTg0LDQ0Ny42MCBDIDI1Ni4yODgsNDQ3LjU4NCwgMjU2LjU0NCw0NDcuNTY4LCAyNTYuODE2LDQ0Ny41NTJ6IE0gMjgzLjQ3Miw0NDQuODMyYyA0NC4xNi03LjM0NCwgODMuNzc2LTI3Ljk2OCwgMTE0LjYyNC01Ny44MjQKCWMtMTYuNzUyLTEyLjg0OC0zNS4wNTYtMjMuNzI4LTU0Ljg0OC0zMS45NjhDIDMyOC42ODgsMzg5LjU1MiwgMzA4LjI1Niw0MjAuMDY0LCAyODMuNDcyLDQ0NC44MzJ6IE0gMjQwLjAwLDQ0Ny42MGwwLjAwLTExMS4xODQgCgljLTI1LjIzMiwwLjgxNi00OS40ODgsNS4zMjgtNzIuMjg4LDEzLjEyYyAxNi42NTYsMzkuMjQ4LCA0MS4yOCw3Mi44OTYsIDcxLjQ1Niw5OC4wMTZDIDIzOS40NTYsNDQ3LjU2OCwgMjM5LjcxMiw0NDcuNTg0LCAyNDAuMDAsNDQ3LjYweiBNIDE1Mi43MzYsMzU1LjAyNAoJYy0xOS43Niw4LjI0LTM4LjA4LDE5LjEyLTU0LjgzMiwzMS45NjhjIDMwLjgzMiwyOS44NTYsIDcwLjQ2NCw1MC40OCwgMTE0LjYyNCw1Ny44MjRDIDE4Ny43MjgsNDIwLjA2NCwgMTY3LjMxMiwzODkuNTUyLCAxNTIuNzM2LDM1NS4wMjR6IE0gMTYxLjY4LDMzNC43ODQKCUMgMTg2LjM1MiwzMjYuMjI0LCAyMTIuNjQsMzIxLjIzMiwgMjQwLjAwLDMyMC40MEwgMjQwLjAwLDI0MC4wMCBMIDE0NC4zMzYsMjQwLjAwIEMgMTQ1LjIwLDI3My41MDQsIDE1MS4xMzYsMzA1LjUyLCAxNjEuNjgsMzM0Ljc4NHogTSAyNDAuMDAsMjI0LjAwbDAuMDAtOTYuNDAgCgljLTI1LjIzMi0wLjc2OC00OS42MzItNC44OTYtNzIuNjI0LTEyLjMwNEMgMTUzLjUyLDE0OC4yODgsIDE0NS4zNDQsMTg1LjA0LCAxNDQuMzM2LDIyNC4wMEwgMjQwLjAwLDIyNC4wMCB6IE0gMjEyLjUyOCwxOS4xNjgKCWMtMzkuNTY4LDYuNTc2LTc1LjUwNCwyMy44MDgtMTA0LjcyLDQ4LjgzMmMgMTUuNzYsMTAuOTI4LCAzMi44MCwyMC4xNzYsIDUxLjAwOCwyNy4yMEMgMTcyLjc2OCw2Ni4yNzIsIDE5MS4wMjQsNDAuNTkyLCAyMTIuNTI4LDE5LjE2OHogTSAyNTYuMDAsMTYuNDAKCWwwLjAwLDk1LjE4NCBjIDIyLjkxMi0wLjczNiwgNDUuMTItNC4zMiwgNjYuMDY0LTEwLjg2NGMtMTYuMzM2LTMzLjM5Mi0zOC42MjQtNjIuMTQ0LTY1LjIxNi04NC4yODhDIDI1Ni41NzYsMTYuNDMyLCAyNTYuMjg4LDE2LjQxNiwgMjU2LjAwLDE2LjQwegoJIE0gMzM3LjE4NCw5NS4yMGMgMTguMTkyLTcuMDI0LCAzNS4yMTYtMTYuMjg4LCA1MS4wMDgtMjcuMjBjLTI5LjIxNi0yNS4wMDgtNjUuMTUyLTQyLjI1Ni0xMDQuNzItNDguODMyQyAzMDQuOTc2LDQwLjU5MiwgMzIzLjIxNiw2Ni4yNzIsIDMzNy4xODQsOTUuMjB6CgkgTSAzMjguNjI0LDExNS4yOTZjLTIzLjAwOCw3LjQwOC00Ny40MDgsMTEuNTM2LTcyLjYyNCwxMi4zMDRMIDI1Ni4wMCwyMjQuMDAgbCA5NS42NjQsMC4wMCBDIDM1MC42NTYsMTg1LjA0LCAzNDIuNDY0LDE0OC4yODgsIDMyOC42MjQsMTE1LjI5NnogTSAyNTYuMDAsMjQwLjAwTCAyNTYuMDAsMzIwLjQwIAoJYyAyNy4zNDQsMC44MzIsIDUzLjYzMiw1LjgwOCwgNzguMzIsMTQuMzY4YyAxMC41MjgtMjkuMjY0LCAxNi40NjQtNjEuMjgsIDE3LjM0NC05NC43ODRMIDI1Ni4wMCwyMzkuOTg0IHogTSA4Ni45NDQsMzc1LjQ0QyAxMDUuMTUyLDM2MS4yOCwgMTI1LjEyLDM0OS4yOTYsIDE0Ni43MDQsMzQwLjI4OAoJQyAxMzUuNTIsMzA5LjI5NiwgMTI5LjIxNiwyNzUuNDQsIDEyOC4zMzYsMjQwLjAwTCAzMi40MCwyNDAuMDAgQyAzNC4zMiwyOTEuOTIsIDU0LjU2LDMzOS4xMDQsIDg2Ljk0NCwzNzUuNDR6IE0gMzIuNDAsMjI0LjAwbCA5NS45MzYsMC4wMCAKCWMgMC45OTItNDAuODgsIDkuNTM2LTc5LjQ4OCwgMjQuMDQ4LTExNC4xOTJjLTIwLjI3Mi03LjkwNC0zOS4xNjgtMTguNDMyLTU2LjYwOC0zMC44OTZDIDU4LjIwOCwxMTYuMzA0LCAzNC40OTYsMTY3LjQyNCwgMzIuNDAsMjI0LjAweiBNIDQwMC4yMjQsNzguOTI4CgljLTE3LjQ0LDEyLjQ0OC0zNi4zMzYsMjIuOTkyLTU2LjYyNCwzMC44OTZjIDE0LjUyOCwzNC43MDQsIDIzLjA1Niw3My4zMTIsIDI0LjA2NCwxMTQuMTkybCA5NS45MzYsMC4wMCBDIDQ2MS41MDQsMTY3LjQyNCwgNDM3Ljc3NiwxMTYuMzA0LCA0MDAuMjI0LDc4LjkyOHoiIGRhdGEtdGFncz0id29ybGQiIC8+CjxnbHlwaCBjbGFzcz0iaGlkZGVuIiB1bmljb2RlPSImI3hmMDAwOyIgZD0iTTAsNDgwTCA1MTIgLTMyTDAgLTMyIHoiIGhvcml6LWFkdi14PSIwIiAvPgo8L2ZvbnQ+PC9kZWZzPjwvc3ZnPg==) format('svg'),\n\t\t url(data:font/ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTWNFYKgAADwQAAAAHEdERUYAYQAGAAA78AAAACBPUy8yL7vcHwAAAVgAAABWY21hcOBz89MAAAKAAAABUmdhc3D//wADAAA76AAAAAhnbHlmzx00fAAABEAAADP8aGVhZPrbMjIAAADcAAAANmhoZWEEEQAUAAABFAAAACRobXR4YqoCXAAAAbAAAADQbG9jYTjZKywAAAPUAAAAam1heHAAhwD7AAABOAAAACBuYW1lrhGJrQAAODwAAAGVcG9zdKj+xwcAADnUAAACEgABAAAAAQAARrYAwV8PPPUACwIAAAAAAMzd+LsAAAAAzN34u////98CAQHgAAAACAACAAAAAAAAAAEAAAHg/98ALgIA///+AAIBAAEAAAAAAAAAAAAAAAAAAAA0AAEAAAA0APgAEQAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQIAAZAABQAIAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAIABQMAAAAAAAAAAAAAEAAAAAAAAAAAAAAAUGZFZABA4ADwAAHg/+AALgHgACGAAAABAAAAAAAAAgAAAAAAAAAAqgAAAgAAAAIAAAACAAABAgAAEgIAAAACAAAAAgAAIAIAAAECAAAAAgAAAAIAAAACAAAAAgAAAAIAAEACAABQAgAAAAIAAAACAAAAAgAAQAIAAAACAAAAAgAAAAIAACACAABQAgAAAAIAAAACAAAAAgAAEAIAAAACAABgAgAAAAIAAAACAAABAgAAIAIAAAQCAAAAAgAAAAIAAAACAAAAAgAAAQIAAFACAAAAAgAAAAIAAAACAAAAAgAAAgIAAAACAAAAAAAAAAAAAAMAAAADAAAAHAABAAAAAABMAAMAAQAAABwABAAwAAAACAAIAAIAAAAA4C/wAP//AAAAAOAA8AD//wAAIAMQMwABAAAAAAAAAAAAAAEGAAABAAAAAAAAAAECAAAAAgAAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABOAKoA/gGkAiYCeAMkA3wD/ARGBW4F2gYmBpIHAAegCBYIeAjKCTIJjgn0Ck4KoAtuC7wMiA0IDagOXA6iD/oRKBGgEhYStBMiE+YU5BU6FdAWFhaeFzQXzBiSGToZ8Bn+AAAAAwAA//gCAQG4ABIAJAAwAAABLgEHJgYHBhQXFjMWMjc2NzY0DwEGLwEmNDc+AR8BNzYWFxYUJTIUIyIGFRQiNTQ2AdMrey0teystLbABDigOrwItRLELC7EkJCJgJBYWJGAiJP60CAgVHxAoAYwrAikpAistfS2vDg6tAi19k68MDK8jYyMiAiAUFCACIiNjeRAeFggIHCgAAAAAAgAAACACAAGQABkAPQAAAS4BIyIGByYjIgYVFBcOARUUFjMhMjY1NCYHISImNTQ3PgEnJjU0NjM2Fx4BPgE3PgEzMhYXHgEXHgEVFAYBnwZROCtGEQwKHioEGBw9KwEgMkY3Qf7gHiokEQQHAhcRCwsHCAcCBQ04ICtABAEHEh8oNAEON0suJgQqHgsLDjAcKz1GMixCxioeKRUJDBEHBREXAQUCAggFCh4jOisSBwQGMCAkNAAAAAIAAf/gAf8B0AAeADMAAAAmLwImIg8CDgEfAQcGFxYzMj8BFxYzMjc2LwE3BwYfAScmIg8BNzYvATc2PwEXFh8BAgUOFoY6Ci4KOoYWDhBhFgQTCQwJCXR0CQkMCRMEFmJ9DQMXdAgUCHQXAw1ihRQIOjoIFIUBAioDFHgVFXgUAyoPYocWDQcEPz8EBw0Wh2JJDRKHPwQEP4cSDWIUAhJ4eBIDEwAAAAoAEgAQAe4BoAASABoANgA+AEYASgBSAFoAYgBwAAABJiIHBgcGFxYXFjI3Njc2NCcmBwYnJjc2FxY3JicmIgcGBwYXFhcWFwYVFBYyNjU0JzY3Njc2BwYnJjc2FxYmMjY0JiIGFDYyFCIXMhQrASI0MzcyFCsBIjQzNzIUKwEiNDMnMhQjBwYPARQiPwE2NwFjQoJCCQMiIgMJQoJCCQMREQMMgH8hIX+AIW0FF2nSaRYFJSUFFjA1A0JcQgM1MBYGJUTPziMjzs8jVBQODhQOEBAQGAgIMAgIQAgIMAgIMAgIMAgIwAgIPAgBAxABBAIIAVYNDQIJaWoJAg0NAgk1ajQJ1xoaZWQbG2SZFgINDQIWm5sWAgYDAgIHCQkHAgIDBgIWm5MaGpOTGhqTQA4UDg4UEhCwEBAwEBAwEBBDEAQBCB4ICC0HAQAABgAA/+ACAAHgAAsAIwAxADkARgBYAAABNCYjIjQzMhYVFCIlJiMiBw4BHQEHBhQfARYyPwEzMjY3NicFBwYiLwEmND8BNDEXIjciByc2PQEBNgYrAQE1NDc2MzIXAQMiJjU0NjMyFhUUBiMiJjU0JgGwVDwICEJeEP7iDhQKCA4QMg4OcA4oDjLcDxgFDRf+6zIEDgRwBQUyhwEXAQaOAQFVLggLBf6VCgMDBwQBYLsHCQkHXYMJBwcJcQEAPFQQXkII2g4EBRgP3DIOKA5wDg4yEA4dFzsyBQVwBA4EMgGHCQGOBgHB/qsUFAFrBQsEAQX+oAFlCQcHCYNdBwkJB09xAAADAAAAMAIAAZAAIAAwADkAAAEjIg8BNTQmIyEiBh0CFBYzITI2PQEXFjsBMjY1ETQmASImNRE0NjMhMhYVERQGIzcrAS8BNTc7AQHgDg0KKxwU/tAUHBwUATAUHCsKDQ4NExP+QwcJCQcBMAcJCQeADgJAEFACDgGACSsUFBwcFHCQFBwcFBQrCRIOAQANE/7QCQcBAAcJCQf/AAcJEEAQYFAAAAoAIP/fAeAB4AAjAC0ANwBDAFMAVwBnAGsAewB/AAABLgErATU0JisBIgYdASMiBgcdARQWMxEUFjMhMjY1ETI2PQElNDY7ATIWHQEjARQGIyEiJjURITcVIT0BNDYzITIWFQEzMjY9ATQmKwEiBh0BFBY3MxUjFzMyNj0BNCYrASIGHQEUFjczFSMXMzI2PQE0JisBIgYdARQWNzMVIwHgARwTMBwUoBQcMBMcARMNJRsBABslDRP+wAkHoAcJwAEAEw3/AA0TAUAg/oAJBwFgBwn+0CAHCQkHIAcJCQcgIGAgBwkJByAHCQkHICBgIAcJCQcgBwkJByAgAXMTGhAUHBwUEBoTExANE/7wGyUlGwEQEw0QUAcJCQcQ/oANExMNARAwEBAQBwkJB/6wCQfQBwkJB9AHCeDQEAkH0AcJCQfQBwng0BAJB9AHCQkH0AcJ4NAAAAAAAwAB/+AB/wHgABsAKwA1AAAlJic2Nz4BJicmIgcOARYXFhcGBwYXHgEzITI2JwcGIi8BLgE3PgEyFhcWBgU2PwEWMjcXFhcB8j1YKxIFARgWK44rFhgBBRIrWD0UBwMRCwHAGA7CBR1EHQUiHgcHQGxABwce/ro3UigXMBcoUTgbKBM2TRxFUx02Nh1TRRxNNhMoDhYKDS1dByEhByprNTpSUjo1a5QlEggPDwgSJQAEAAD/4AIBAeAAIAA+AFIAWgAAACIGFRQXBwYdARQWOwEyPwEzMjY9ATMyNj0BNxYzMjY0ByInDwIGHQEjIgYdASMiDwEjNT8BJjU0NjIWFAY3JicmBwYHBhUUFxYXFjc2NzY1NAcmJzY3FhcGAaKEXgvCCRMNMAsJFyUNEyANEyYdHUJeoCIfBRIfCSANEyUOCRctuxcSS2pLSygbJgYIIQwBAxsmBgghDAEzIxoJGiQZCQHgXkIdHcIKCjANEwkXEw0gEw0mJQtehMISBRIfCQ0mEw0gCRcuuhcfIjVLS2pLnCYbBQMMIQMCBQQmGwUDDCEDAgUoGSQaCRojGgAABAAA/98CAAHgABMAHAAkADAAAAAiBhUUFwcGFRQWMzI/ARYzMjY0AQYiJjQ/ARYXFiImNDYyFhQnMhQjIgYVFCI1NDYBkKBwFoURIRcYEYUqMFBw/k0JFxEJgREXtIReXoReoAgIKDgQQgHgcU8wKoURGBchEYUWcJ/+lgkRFwmBFxEGXoReXoSyEDgoCAguQgAAAAYAAP/fAgAB4ABbAKsAswC7AMMAywAAAScmJzc2Ji8BJiMiDwEmLwEuASsBIgYPAQYHJyYjIg8BDgEfAQYPAQ4BHQEUFh8BFhcHBhYfARYzMj8BFh8BHgE7ATI2PwE2NxcWMzI/AT4BLwE2PwE+AT0BNCYHBgcGBwYfAQcnJiMiBwYHBg8BIycmJyYnJiMiDwEnNzYnJicmLwE1NzY3Njc2LwE3FxYzMjc2NzY/ATMXFhcWFxYzMj8BFwcGFxYXFh8BFSYiBhQWMjY0BiImNDYyFhQmIgYUFjI2NAYiJjQ2MhYUAeYxAwUbBwIJHgoNCggpCwoKAhILLAsSAgoKCykICg0KHggDBxsFAzELDw8LMQMFGwcDCB4KDQoIKQsKCgISCywLEgIKCgspCAoNCh4JAgcbBQMxCw8PQhIGAwQIChwfKggJCAYJCREDCiwKAxEJCQYICQgqHxwKCAQDBhIxMRIGAwQIChwfKggJCAYJCREDCiwKAxEJCQYICQgqHxwKCAQDBhIxslxCQlxCR1I5OVI5RzYlJTYlLCgcHCgcARUKCgspChcIHgoGGwUDMQsPDwsxAwUbBgoeCBcKKQsKCgISCywLEgIKCgspChcIHgoGGwUDMQwODwsxAwUbBgoeCBcKKQsKCgISCywLElMDEQkJEA8qHxwFAwQDBhIxMRIGAwQDBRwfKg8QCQkRAwosCgMRCQkQDyofHAUDBAMGEjExEgYDBAMFHB8qDxAJCREDCiyGQlxCQlyQOVI5OVJpJTYlJTVKHCgcHCgAAAAFAAAAAAIAAbAABwAPABsANQBLAAAAIgYUFjI2NA4CLgE+ARYnMhQjIgYVFCI1NDY3LwEuASsBIgYPAg4BHQEUFjMhMjY9ATQmAxQGIyEiJj0BND8CNjsBMh8CFhUBNWpLS2pLHTRPPQY0Tz1dCAgUHBAl80UWBhgPoA8YBhZFERccFAGgFBwXCQkH/mAHCQ1XHQQLoAsEHVcNAUBLaktLalU9BjRPPQY0ERAcFAgIGiZPDDcOEBAONwwDGhLwFBwcFPASGv7kBwkJB/AOAg5ICgpIDgIOAAAEAAAAHwH3AaAAEAAhACkAMQAAAScmIyEiBhURFBYzITI/ATYPAQYjISImNRE0NjMhMh8BFiYiBhQWMjY0BiImNDYyFhQB9lATI/7QGyUlGwEwIxNQFjFQCRL+0A0TEw0BMBIJUAtiKBwcKBwjGhMTGhMBAoAeJhr/ABslHoAiEYAPEw0BAA0TD4ARMBwoHBwoNBMaExMaAAUAQP/gAcAB4AAbACsAMwBLAFcAAAE1NCYiBh0BIgYdBBQWOwEyNj0ENCYlNDYyFh0BIzU0JiIGHQEjNxUjNTQ2MhYXHQIUBisBIiY9BDQ2OwMyFhUGMhYVFAcGIicmNTQBkFR4VBQcVDxgPFQc/uxCXEIgL0IvILCAJTYlYEIuYC5CCQcg4CAHCa0aEwsHHAcLARBAPFRUPEAcFDAQIBA8VFQ8ECAQMBQcQC5CQi5AQCEvLyFAQEBAGyUluxAgEC5CQi4QIBAwBwkJBzATDQ4dFRUdDg0AAAYAUP/gAbAB4AAYACIAKAAvAD0ASQAAACIGFRQeARceBDMyPgM3PgI1NAMHJicjNxQGBwYnJiczBg8BIiYnNw4BNyMmJyY1NDYyFhUUBwYnMhQjIgYVFCI1NDYBSZJnHisHCBAKERkUFBkSCRAIByseh08EBQFjAwEDYAQGfAQBOQ0NBkQHDjyWCBMqVHhUKhNTCAghLxA4AeBnSRxESxYUORodCwsdGjkUFUxEHEn+tAoNEgwBCgMLHA4RCwZfBw0IEgqQEiFMITxUVDwgTSHuEC8hCAgoOAAAAAAHAAD/4AIAAeAAIQAqADQAOgBHAFcAaAAAASYjIg8BBjEVBwYPATAUBhQGFRQWMzI2Mj4BMTc2PwE2JgMmJzcWBxUHNCcmJyYnNxYXFhcHJic3NhcDBiMiJjU0PwE2FxYHNyYnJic3Njc2FhceAQcGBwEHPAExJicmIzc2MzIXFhcWAdYpNiwfTQGmCwUmAQEhFwIFBQQDhxAM9CEH/AIJlw8ffBMKCw4TmBMPDAjdFxd7HS38CAMKDgIQHxcYAhABGhoiEAIEGEIaGwgVBAIBAhsEJCk2GhUfKSAdAwIBtykeTgEBpgsQiQIEBAQCFyEBAQEkBAz2IWP+0hUVmDEfAX0KOxELDQqZCA8MEF4JAXwcC/6UAg4KAgc9ARcYHgQjGhoBOgYFEQoZG0YYAgEA/xwBCjAlKRoVIB0mIgAAABAAAAAgAgABoAATABYAGgAeACEAJAAnACoALQAwADMANgA5ADwAQABEAAABJyYjISIPAQYVFB8BFjI/ATY1NAcjPwIXByMnNx8BByc7AQc/ARcnMw8BJzMHJzMHFyMfAScXJzMhMwc3JzcXJRcHIwH3UgkN/uINCVIJCOAKHArgCNxIJA0rISlgKSEsNCgoYE92KyghOjkfZSRHiB85GShJTSd2Up05ATI5nWYrJUr+jCUrRQFFUQoKUQkODAnuCwvuCgwNDB0LJCAiIiAkOMfHxNQhIVAaBB4aGi8hEMTEqKiouCsfSkofKwAABAAA//ACAAHQAA8AEwAzAEUAAAEhIgYdARQWMyEyNj0BNCYHITUhNyEiBhURFBY7ARUHBhUUFjMhMjY1NC8BNTMyNjURNCYDFAYrAyImNRE0NjMhMhYVAbD+oAcJCQcBYAcJCQf+oAFgIP5gFBwcFKBkDAkHASAHCQxkoBQcHAQJB5CAkAcJCQcBoAcJAZAJB+AHCQkH4AcJ8OBQHBT+wBQcEw0DDQcJCQcNAw0THBQBQBQc/pAHCQkHAUAHCQkHAAAAAAQAQP/gAcEB4AAHAA8AIwA4AAA2MjY0JiIGFDYyFhQGIiY0NiIGFRQeAhcWOwEyNz4DNTQDBgc0JyIxLgM1NDYyFhUUDgLYUDg4UDg/Qi8vQi+goHAdOi0iCg8CDwoiLTodvgEBAQEgJzodXoReHTsmxDhQODhQeC9CLy9Cm3BQKFRWOicNDSc6VlQoUP6SAQEBASUwVFAlQl5eQiVQVDAAAAAABQAAAEACAAGAACwANgBCAEoAUgAAJTA0NTgBJjEuASIGBxQwFTAxBhQxHAEVHAEXOAEVHgEyNjcwNjEwMTwBMTY0BiImJz4BMhYXBicyFCMiBhUUIjU0PgEiBhQWMjY0BiImNDYyFhQB/wEjjJ6LJAEBJIuejCMBAbyHeSEheYd5ISG9CAgTHRAmSFxCQlxCSFA4OFA45AEBAURVVUMBAQEBAwICAQEBAURVVUQBAQEDAoFGOjpGRjo6ehAcFAgIGyUwQlxCQlyOOFA4OFAAAAMAAAAAAgABwAALACkAQQAAATIUIyIGFRQiNTQ+ASIGFRQWFxQxFA4DFQYVFBYzMjM+ATcWMzI2NAUiJyYjIgcGBzY1NDU0Jy4BNTQ2MhYUBgEACAhAYBBostSWPDQECQUNAQgGBAEgPQ8ZGGqW/wAWFwICEAkSHwsRLTKDuoODAXAQOiYICC5CUHBQMVMbAQgRFAoUAQMDBggGLBIEcKDwAwEMFhMaFQIBFAkWRiZCXl6EXgAAAAAEAAAAAAIAAcAAFgAiADwASgAAJScuASsCIgYPAQYdARQWMyEyNj0BNAcUBiMhIiY9ATchFycjIg8BBhY7AxcWOwEyPwE7AjI2LwEmByMiDwEjJyYrAjczFwH/QAMRC6CgCxEDQAElGwGAGyUgEw3+gA0TQAFAQGT4DAM3AgkILhMIFwkUbBQJFwgSLwgJAjcDBBoUCRdsFwkUGicv+C+58AoNDQrwBQRwGyUlG3AEdA0TEw1w8PDQDMAIDC4SEi4MCMAMwBIuLhKwsAAGACD/4AHgAeAAJQApAC0AMQA1ADkAAAEnJiMhIg8BDgEdARQWOwEwBhUTHgE7ATI2NxM0JjEzMjY9ATQmJSEXIRMnMwc3IychNyEnITchNSEBwhQHF/7gFwcUDRETDREBIAISDOAMEgIgARENExL+ogEgEP7AMAXqBQfuEgESAv7qBQEgMP6AAYABkDoWFjoBEg0wDRMDAf7gDBAQDAEgAQMTDTANEjEw/nAwMECgEDAgMAAGAFD/4AGwAeAADwAZAB0AJwAvADcAAAEhIgYVERQWMyEyNjURNCYDFAYjISImPQEhNSERITUhNTQ2MyEyFhUiFCsBIjQ7AQIUKwEiNDsBAYD/ABQcHBQBABQcHAQJB/8ABwkBIP7gASD+4AkHAQAHCXAIMAgIMAgIEAgIEAHgHBT+YBQcHBQBoBQc/jAHCQkHIBABQBAgBwkJBxAQ/nAQEAAAAA8AAP/gAgAB4AAUAC8ANwA/AEcATwBXAGEAaQBxAHsAgwCLAJsAnwAAASEiBh0BIyIGFREUFjMhMjY1ETQmAxQGIyEiJjURNDY7AREUFjI2NRE0NjMhMhYVByI0OwEyFCMnIjQ7ATIUIyciNDsBMhQjAzIUKwEiNDM3MhQrASI0MzcyFRQGKwEiNDMFMhQrASI0MzcyFCsBIjQzNzIVFAYrASI0MzcyFCMhIjQzBTIUIyEiNDM3MzI2PQE0JisBIgYdARQWNzMVIwHQ/qAUHBAUHCUbAYAbJRwEEw3+gA0TCQcQCQ4JCQcBYAcJqAgIgAgIgAgIgAgIgAgIgAgIsAgIgAgIgAgIgAgIgAgFA4AICAEwCAiACAiACAiACAiACAUDgAgIgAgI/tAICAEwCAj+0AgICHAHCQkHcAcJCRdQUAHgHBQgHBT+wBslJRsBkBQc/kANExMNAUAHCf7ABwkJBwGABwkJB6AQEDAQEDAQEP7AEBAwEBAwCAMFEGAQEDAQEDAIAwUQYBAQMBAQUAkHcAcJCQdwBwlwUAAFAAAAQAIAAZAADwASACAAIwAxAAABISIGHQEUFjMhMjY9ATQmBRcHBRQGIyEiJjU3FxYyPwEXJzcHBiIvAzQ2MyEyFhUBwP6AGyUlGwGAGyUl/kVwcAHAEw3+gA0TfUYNIA1GfXBwzQgWCEIOfRMNAYANEwGQJhrQGyUlG9AaJlRUVBQNExMNXjQKCjRKVFSGBgYyCl4NExMNAAAFAAD/4AIAAeAAPQBNAI4AlgCaAAABJic2NTQmIyIGFQYHBgcXJisBIgYVERQWOwEyNxQxOgEVMDMWFxY7ATI3Njc2JzY3Nic2NzYnNjc1NDU0JgEUBisBIiY1ETQ2OwEyFhUFBisBIhQ7ATIWBwYrASIUOwEyBw4CKwEiFDsBMhYHBgcGKwEiJyYnJj0BNDcwNjM+ATc0MzIWFRQGBzIXFhUUBCIGFBYyNjQGIjQyAdMPeQQyHRQcAT8LBgEPETAUHBwUMB0OAQMBEi8wL1goEQQDBAQSCQgIEQQDCQ0BF/6HCQcwBwkJBzAHCQFwAR8gCAgfEAsBBh0mCAggHwsDBRIQGggIGQsIAwEDCBVYKy0/Cw4NAgEyLQEQDiEFCpYXE/5yFA4OFA4QEBABOAQDEyIqQhwUUyEFAwENHBT/ABQcHAEBBAsLHwgJDg4MHhgTEBwVEQ8UBAMFECD+3gcJCQcBAAcJCQcZFxATCyIQIQsJCxAQBgQIDgoPAwIM3Q0EARVTLxAvHRwaHgYFEwHBDhQODhQSEAAIABD/4AHwAeAADwAfAC8APABCAEcATwBXAAABISIGFREUFjMhMjY1ETQmExQGIyEiJjURNDYzITIWFSMhIgYVERQWMyEyNjURNCYHFScmIg8BJyYiDwE1FTcfAiMhJzcXFSYyNjQmIgYUNjIWFAYiJjQBsP6gGyUlGwFgGyUlBRMN/qANExMNAWANEzD+wAcJCQcBQAcJCQc0BQ4FKn4FDgU0QIEJLfcBDDcrQHQoHBwoHCMaExMaEwHgJRv+gBslJRsBgBsl/kANExMNAYANExMNCQf+4AcJCQcBIAcJEN45BQUwkAUFPIGaSpILMz8xRiqgHCgcHCg0ExoTExoADAAA//ACAAHQABEAJAArADMAOwBDAEsAUwBbAGMAcwB3AAABJyYjISIGFREUFjMhMjY1ETQDFAYjISImNRE0NjMhFRQWOwInIyImPQEXJyI0OwEyFCMHIjQ7ATIUIwY0OwEyFCsBFzIUIyEiNDMFMhQjISI0MwUyFCMhIjQzJTIUIyEiNDM3MzI2PQE0JisBIgYdARQWNzMVIwH3YAoN/rAUHBwUAaAUHCAJB/5gBwkJBwFAHBQQMDAQDRNg6AgIUAgIUAgIUAgIWAjACAjAwAgI/pAICAFwCAj+kAgIAXAICP6QCAgBcAgI/pAICAhwBwkJB3AHCQkXUFABZ2AJHBT+gBQcHBQBMA3+wwcJCQcBgAcJQBQcEBMNQGAQEBAwEBAwEBBQEBAwEBAwEBCQEBAgCQdgBwkJB2AHCWBAAAAMAGD/4AHAAeAABwAPABcAHwAnAC8AOQBeAGQAagByAH0AABI0NjIWFAYiBjQ2MhYUBiImNDYyFhQGIjY0NjIWFAYiBjQ2MhYUBiImNDYyFhQGIhY0NjIWFTEUBiI3IgYxJi8BLgErASIGDwEGFRQfAR4BOwEyNj8BNjcwFjMyNjQmJzMXJiIHEyMnFjI3JiImNDYyFhQmFg8CBiImND8B8AkOCQkOCQkOCQkOaQkOCQkOtwkOCQkOrQkOCQkOCQkOCQkOfwkNCgoNYwECCB0XAhILgAwSAhYsKhcCEQyADBECFx4JAgENExPrgBAmVCaOgBAmVCYbaktLaks0BgInHgQOCQVTATkOCQkOCbcOCQkOCWkOCQkOCQkOCQkOCToNCQkNCpEOCQkOCX4NCQkHBgp0ASkhfQsPDwt5Lz49LnsLDw8LeyErARMaE8BWFhb+llYWFgpLaktLaogHBDAkBAkOBEUAAAAEAAD/3wIAAeAAFgAcAB8AJAAAASYiBwEGFh8CFjI/ARcWMzI3NjcTNgElATAmJxcJARcnJicTAfkECgT+IAgCCX07BRIFIZsDAwQEBgJQAf4xAXP+8gMBEAEv/v7DiAQG0gHdAwP+wAUTBDJnCAg3PgECBAcB4Av+vPf+3wIBDgFF/m0LNwEBAUYAAAwAAP/gAgAB4AATAB0AJwBRAGUAbwB5AKQAuADCAMwA9wAAEzU0JiIGHQEGFBcVFBYyNj0BNjQnNDYyFh0BJiIHExQGIiY9ARYyPwEGMQYHBgcGBwYiJy4BJyYnMCcmNDc2MTY3Njc2NzYyFx4BFxYXFBcWFCU1NCYiBh0BBhQXFRQWMjY9ATY0JzQ2MhYdASYiBxMUBiImPQEWMj8BBhUGBwYHBgcGIicuAScmJzAnJjQ3NjE2NzY3Njc2MhcWFxYXFhcwFxYUBzU0JiIGHQEGFBcVFBYyNj0BNjQDNDYyFh0BJiIHFxQGIiY9ARYyPwEGFQYHBgcGBwYiJy4BJyYnMCcmNDc2MTY3Njc2NzYyFxYXFhcWFzAXFhSAHCgcICAcKBwgYAkOCQgQCCAJDgkIEAgeAQIEBAYGBwgQCAcMBAQCAQICAQIEBQUGBwgQCAcMBAQCAQIBYBwoHCAgHCgcIGAJDgkIEAggCQ4JCBAIHgECBAQGBgcIEAgHDAQEAgECAgECBAQGBgcIEAgHBgYEBAIBArAcKBwgIBwoHCBgCQ4JCBAIIAkOCQgQCB4BAgQEBgYHCBAIBwwEBAIBAgIBAgQFBQYHCBAIBwYGBAQCAQIBgDAUHBwUMBlOGfAUHBwU8BlOSQcJCQciAgL+ggcJCQfiAgJBAwcFBgQFAgMDAgkGBQcDBwwHAwcFBgQFAgMDAgkGBQcBAgcMRjAUHBwUMBlOGfAUHBwU8BlOSQcJCQciAgL+ggcJCQfiAgJBAgEHBQYEBQIDAwIJBgUHAwcMBwMHBQYEBQIDAwIFBAYFBwMHDHrwFBwcFPAZThkwFBwcFDAZTgEJBwkJB+ICAr4HCQkHIgICQQIBBwUGBAUCAwMCCQYFBwMHDAcDBwUGBAUCAwMCBQQGBQcDBwwAAAAHAAH/4AH/AeAAIQA0AIMAjQCZAK8AxQAAAScmBwYHBgcGBwYHBgcGBwYfARY3Njc2NzY3Njc2NzY3NgEuAic+BDceARcOBDcuAQcGBwYHJic+ARcWFxY3NjQnLgEOAQcmJyYiBhQXFhUGBwYHBhcWFxY3NjcWFw4BLgIiBhQeARcyNzY3FhcWPgEmJyYnNjc2NTYnJg4BJy4BPgE3FhcWBgcmJzY3PgEeAgc2FxYHMCMGBwYPAQYVBicmPwE2NzY3Nj8BNjM2FxYPAQYHBgcGJyY3NjM2AfegDRIIBwUDChwZQkoeJxAFDaANEggHBQMKHBlCSh4nEAX+vBJBNRgNPEdHPQwaaxsMPUdHPGwIEAgICAkHEAoGCwUGAwUDBAQFDw8NBAICAQUEAgMGBAQBAQMDBwsPERASCwYJCAYHBggIDQgJCAkJAwUCBQQBAgQEBwQFAQIDWg0FAwIBBAMKDz0EAwsQBQIECAgHAkQGBQYGARALDAoKAQYGBAMLCw0LTAwKCgEBBgUFBAsLDQsRBgYFBQEBEAE3oAwEAgYGCCIcGSYrHycyEg6gDAQCBgYIIxsZJisfJjMS/tcSQTUYKD8pKT8oGmsbKD8pKT/KBgUBAQMDBBMKBQECAQEBAwMKBAYDBAgEAQICBQUBAgEHCQgJCAcHBgkBAQkVCwUCAgUDBwkJBgEDAwkEBAIBBAUBBAMJCgkICAcHBQEFAgcHBwQKECEIAwsSAgECAQIHB1YFBQYGDQsMDQ4BAQYGBQUPDg0M9QwNDgIGBgUGDw4NDA0FBgUGAQ0AAAAACAAg/+AB4AHgAAsAFwAlADMAOwBDAEsAUwAAACIGFREUFjI2NRE0AxQGIiY9AR4BMjY3NTEUBiImNTE1HgEyNjc1MRQGIiY1MTUeATI2NwYiJjQ2MhYUAjQ2MhYUBiImNDYyFhQGIiY0NjIWFAYiAVq0hoa0hiBwoHAYanxqGHCgcBhqfGoYcKBwHmh0aB5woHBwoHBACQ4JCQ4JCQ4JCQ4JCQ4JCQ4B4DYy/tAyNjYyATAy/p4eKioePBkbGxkkHioqHjwZGxsZJB4qKh43FxgYFw8qPCoqPP7fDgkJDglpDgkJDglpDgkJDgkAAAAABAAE/+ACAQHgADYAPgBGAEwAAAEmIyIjBQ4BHQMmIyIHBgcGFx4BMzI3Njc2NREyMyUVJiMiBwYHBhceATMyNzY3NjURPQE0AAYuAT4BHgEkBi4BPgEeAQMFPQElFQH1CQwDA/7wCw8aIxQUMBMOCwkwHxQUMBMIAwMBChojFBQwEw4LCTAfFBQwEwj+mDo0Dx06MxABEjk0EB45NBAG/vABEAHYCDADEQwgEOMTBxAnHx0ZHQcQJxASAQAvwhMHECcfHRkdBxAnEBIBIBAgD/5AFBEqKxQRKgUUESorFBEqASYwECAwIAAAAAAGAAD/4AIAAeAAMgA8AEkAWABnAHkAAAEiByMOASsDIgYUFjMyFh0BFBY7ATI2PQE0Jj0BMDU0NzQ3Njc1MjcWFzMWMzI2NCYGNDczMhYUBisBJDQ2OwMGFBcrASIXIzU0JzsBBh0BFBcwFjE3IyImNDY7ATI3BhUUFyYXIiYnMzI2NCYrAT4BMzIWFAYBkC8eARQ6IAtHQhslJRsNExMNQA0TEAIBAgMBAz4oAR4vNDw8hAMtDRMTDS3+3RMNQg4gEBAgUA2NQAkLMQMOAhQEDRMTDQQsJwcHJ5AYJwopGyUlGykKJxghLy8B4DkpLi5ELhMNkA0TEw0QCRMEcAEDAwEBAwEBAQdPOYa0hvgwGBwoHBwoHBM6E9CQEQ8ICHAPEQLCHCgcICcpKiYgkD4yLkQuMj5woHAAAAAABQAAAAACAAHAABcAJQA1AEEASwAAADQmLwEmIg8BDgEUFh8BFRQWMjY9ATc2BxQOASIuAT0BFxYyPwEjKgEjJyY0PwE6ATMXFhQPATQ2MhYdARQGIiY1FjIWFRQGIiY1NAIAFRDQBgoG0BAVFRArVrRWKxBbHkVaRR6FBgoGhYwCBALQDAzQAgQC0AwMBAkOCQkOCQQYFBMaEwFPIhoEMAEBMAQaIhoECocjLS0jhwoElQoVEREVCoAfAQEfMAMaAzAwAxoDQAcJCQeQBwkJByAwEA0TEw0QAAAAAAsAAP/gAgAB4AAeAC4ARABMAFQAXABkAGwAdAB8AIQAAAEmIg8BBhUUFwcOAR8BFjMyMzI3Nj8BFjMyPwE2NCcDBgciIyIvASY2PwEeAhc3BwYvAQc3LgInJic3JyY/ATYfARYGMjY0JiIGFDYyFhQGIiY0EiIGFBYyNjQGIiY0NjIWFAQUFjI2NCYiFjIWFAYiJjQWNDYyFhQGIjY0NjIWFAYiAUsMIQwWDAbZFwoSzA0TAQEFBBoJVgoMEAwWDAy7BAgCAgYFywYDCGMVVEIeWhcFBhwXAhc2Ix4aD4gcBQUXBgV8Br8iFxciFx4UDg4UDvkiFxciFx4UDg4UDv6QExoTExoGDgkJDgkwCQ4JCQ73CQ4JCQ4BpAwMFgwRCwpXCjISyQ4BBRjWBgsXDCEM/uEIAgXJBhEDKAcJGR8/FwYGHDkFFhsHAwQDNhwFBhcFBXwGfBciFxciKQ4UDg4UAR4XIhcXIikOFA4OFNEaExMaExAJDgkJDm4OCQkOCfkOCQkOCQAACgAA/+ACAAHgACUAKgA4AEYATgBcAHwAlQCvAMgAACUjJic3PgEuAQ8BLgEjIgYHIyIGFRQfARUUFjMhMjY9ATc2NTQmKwE3FBYnMhYXBy4BIyIGByM+ARcuASIGByM+ATMyFhcHJiIHIzYyFyMnIgYHIz4BMzIWFwcuARcVFCMhIj0BJzQ7EzIVJTAjJjc2JyIxNDU0MzIXFgcGFxQVFCMiJzcwNSY3Nic1MTQ1NDMyFxYHBhcVFhUUIyIvATAxJjc2JzAxNDU0MzIXFgcGFxYVFCMiJwHYKwECTQYEBgwGSRZWNEBiCysRFwg4FxEBMBEXOAgXTAkIAZ0wThMOEUcrM04LEQtZggkoMCgJEQoxHx0wCww3Kg8TE0gTFCMmOwoRC0UsJj8QDw03fgj+0AhACCgQEBAQEBAQEGAQEBAQEBAQECgI/qABCBANBgEIBQIJEA0HCAUCwggQDQcIBQIJEA0GAQgFAlMIDw4HBwYCCRANBgEIBQOQBQYnAwwMBAMkLjhSPhcRDAk/DBEXFxEMPwkMERcEAQJ/MyoIJi8/MTdJgBYaGhYcJCAaBhAQICBQLSMqNioiBx4lwBgICBhICAi9FCYfDwIBCAUVJSAPAQEIBAMBFCUgDgEBAQgFFCYfDwEBAQgFRhQmHw8CAQgFFSUgDwEBCAQAAAMAAQAAAf8BwAAhACcANwAAAScmIyEiDwEGHwEWFxYzMjcVFBYzITI2PQEWMzI3Nj8BNicOASImJxcnESERByc3Mx4BMjY3MxcB9FAJC/7gCwlQEQcgBQ8FBQkHEw0BIA0TBwkFBQ8FIAfJByAqIAf8MP7gMCBQQwcqOCoHQ1ABeUAHB0AOFWAPBQIExA0TEw3EBAIFD2AVNQ4SEg6gIP8AAQAgYEAVGxsVQAADAFD/4AGqAeAAHwA5AGYAAAEUBg8BNCYvAQYHLgMvAR4BDgEVFBYzMj4CNzYmBw4EIyImNTQ3NiceAhU2Nx4BFTY3FicXFgcGIyInJjc2JwYPAScmJwYPAScmJwYVFCI1ND8BFxYXNj8BFRQXPgI3AWARCAggDxABIAkgIiAKChACEBJaRjRGJxIHDygGBAcUHjgmOUcQFQQWIQwuDAcLKx81OAMLFQIFAgEHAw4EHjEIAwwCEA4IBhYLDRAVCAgKGAoPGAwUHg4LAVATJwsKI0gSEi8wHzsoHwcHPGtDXSc7VxEjIho8h7sRERwPC0UtKklfQB5RLARBHg9WLyM1XyoQPTMFAQMHJTEiGAMIIhcXFAsMMhorRAgISzwYFR03DxcmGyIjChYPDQAB////7wIAAcAAKwAAABYUDwEGJj8BNjQmIg8BBhQWMj8BNjQmIg8BBiY/ATYyFhQPAQYiJjQ/ATYBrFQqsAsXDK0hQl0g6BcvQhfqDhwoDq8MFguvGEIvF+ohXUEh6SoBwFR4Kq8MFwuuIF1CIeUXQi8X5w4oHA6wCxcLsBcvQhjmIUFdIecqAAAAAAoAAP/gAgAB4AAjACcAKwAvADMANwBDAEcAVQBhAAABJyYnNTQmIyEiBh0BBg8BBh0BFBYzFRQWMyEyNj0BMjY9ATQnFSE1FyM3OwIVIzczFyM3MxcjJTU0PwE2OwEHIyImBSM1MxcjNTQmKwEiBh0BIzUhNxQGKwEnMzIfARYVAfYwAgQTDf7ADRMEAjAKHBQTDQFgDRMUHGD+wENDQCMRJERUJCBENSNAQ/7DAzAFCC5AHgcJASB4eHBgCQd4BwloAWAwCQceQC4IBTADAS1AAwRMDRMTDUwEA0ANEBAUHNANExMN0BwUEBCgQEDQcHBwcHBwEBAFBUAGcAn5oKCgBwkJB6DQMAcJcAZABQUACwAA/+ACAAHgACcATwBTAFcAWwBfAGMAZwBrAG8AcwAAASM1NCYiBh0BIzU0JiIGHQEjNTQmIgYdASMiBhURFBYzITI2NRE0JgMUBiMhIiY1ETQ2OwEVFBYyNj0BMxUUFjI2PQEzFRQWMjY9ATMyFhUFMxUjFTMVIxUzFSM3MxUjNTMVIzUzFSMXMxUjNTMVIzUzFSMB1UUJDglgCQ4JYAkOCUUSGRkSAaoSGRkHBgX+VgUGBgVFCQ4JYAkOCWAJDglFBQb+kEBAQEBAQHBAQEBAQEBwQEBAQEBAAbAgBwkJByAgBwkJByAgBwkJByAZEv6GEhkZEgF6Ehn+WwUGBgUBegUGIAcJCQcgIAcJCQcgIAcJCQcgBgVlMCAwIDAwMIAwgDBwMIAwgDAACAAA/+ACAAHQAAcAHgA5AD0AQQBIAGAAcQAAJDQ2MhYUBiI3PQI0JisBISIGFREUFjMhMjY9ATY0JSEzMhYdAyYjPQI0JiMhIgYdAiY1NDYFITUhHQEhNQUVIyEiJzUBFAYjISImPQEWMyEzMhYdASMiBhQWOwE3IyImNDY7ATI3NjcwNRYVFAEAExoTExq9HBRA/vgkNDQkASAkNDD+WAEIQAcJCAgJB/6wBwkQIQFP/rABUP6wAVAw/vgMDAFwIRf+4BchGCABCEAHCZAhLy8hkBSkFBwcFJAQCgICEpMaExMaE5BgCCgUHDQk/sAkNDQkGCR4xAkHKAgzAxAgIAcJCQcgHxAXFyEwECAQECAQBgr+6BchIRf8FAkHIC9CLyAcKBwNAwQBFx4mAAAAAAwAAv/iAf4B3gAPABcAHwAnAC8ANwBCAE4AWABjAG8AeQAAASYOAQcGHgEXFj4BNzYuAQIuAT4BHgEGLgEOAR4BPgEGLgE+AR4BBjYmDgEeAT4BBi4BPgEeAQYzBgcjBiY3Njc2HgIHBgcwFQYmNzY3JhYHBgcGJjc2NyYWBwYHBiY3Nj8BJhYHBgcGJjc2NzAxFwYHBiY3Njc2FgFfRIFuGhgSVEFEgm0aGBFVnaxJRaqsSUSWGBkKCxgZCiMMBQUMDAUFPUpJHh9KSR5nMRUTMTEVE0UUMAEHBgcrEQMPLA8DHUkIBgdDGxoPAxk9BwcINxaxBgcrEQMPAxQwARIGB0MbAw8DHUkTNhcDDgMYPQcHAc4YElRBRIJtGhgRVUFEgW7+OkSrrElFqqzCCgsYGQoLGBEFDAwFBQwMVh4fSkkeH0pGEzExFRMxMTEVAw8DEisIBhIGB0ofAQMPAx1EEwYIPRoDDgQXN68PAxIrCAYIMBUBPg8DHUQHBgdKHywXOAcGBz4aAw8AAAcAAAAQAgABsAARABYAPQBPAFcAXwB/AAABJisBIgYdARQWOwEyNj0BNCcHIzUzFzcnJisBNTQmKwEiBh0BFBYzFRQWOwEeATI2NzMeATI2NzMyNj0BNAUiJj0BNDY7ATIWHQMUBiMGIiY0NjIWFBYiJjQ2MhYUNxQGKwEuASIGByMuASIGByMiJj0BMzI2PQEzMh8BFhUBjQQJEAcJCQdABwkDDUAQMEhADhpAHBTwFBwcFBwUEgYiLCIGVAYiLCIGEhQc/jAHCQkH8AcJCQdjGhMTGhO9GhMTGhNACQcSBiIsIgZUBiIsIgYSBwnQFBxACQRAAwEpBwkHYAcJCQcYBQQhYEgTYBUgFBwcFLAUHDAUHBUbGxUVGxsVHBRgDx8JB7AHCQkHICBwBwmQExoTExoTExoTExotBwkVGxsVFRsbFQkHMBwUcAdgBAUAABEAAP/wAfAB4AAHAA4AFQAcACIAKQAvADUAOwBBAEgATgBUAFoAYQBoAG8AAAAiBhQWMjY0ByMmJzY3FgMmJzY3FTATFhcGBzUwFxYXBgcmJxUmJzY3MAcmJzY3BgcWFxUjNhcVBgcmJxcmJzY3Fhc1FhcGBzA3FhcGBzY3Jic1MwYnNTY3FhclFhcGByM2BzMWFwYHJgUmJzY3MwYBX86Rkc6RIGACESAcNN4oGR8jES4ZIyUbQzAaHRZRJSMZLlYdGjBDJg0mKGACXiYjFQJFPC0YGxVMIx8ZKFAbGC08IQ0jJmACXigmEAL+9xwgEQJgAwNgAhYdGzwBbBsdFgJgBAHgkc6Rkc5fNS8NFjr+0yIzCQJgAbAnOwwCcAMLLxQMNClwAgw7J10MFC8LJkgNAlAyQmACCzQ5zQonEQorJGACCTMiTwoRJwohPwsCYDlJUAINLTKHFg0vNU1dPDYMEzw8Eww2PFUAAAABAAD/4AIAAeAAAgAAEQEhAgD+AAHg/gAAAAAAAAAMAJYAAQAAAAAAAQAIABIAAQAAAAAAAgAHACsAAQAAAAAAAwAlAH8AAQAAAAAABAAIALcAAQAAAAAABQALANgAAQAAAAAABgAIAPYAAwABBAkAAQAQAAAAAwABBAkAAgAOABsAAwABBAkAAwBKADMAAwABBAkABAAQAKUAAwABBAkABQAWAMAAAwABBAkABgAQAOQAbABpAG4AZQBjAG8AbgBzAABsaW5lY29ucwAAUgBlAGcAdQBsAGEAcgAAUmVndWxhcgAARgBvAG4AdABGAG8AcgBnAGUAIAAyAC4AMAAgADoAIABsAGkAbgBlAGMAbwBuAHMAIAA6ACAAMwAwAC0AMQAxAC0AMgAwADEAMgAARm9udEZvcmdlIDIuMCA6IGxpbmVjb25zIDogMzAtMTEtMjAxMgAAbABpAG4AZQBjAG8AbgBzAABsaW5lY29ucwAAVgBlAHIAcwBpAG8AbgAgADEALgAwAABWZXJzaW9uIDEuMAAAbABpAG4AZQBjAG8AbgBzAABsaW5lY29ucwAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA0AAAAAQACAQIBAwEEAQUBBgEHAQgBCQEKAQsBDAENAQ4BDwEQAREBEgETARQBFQEWARcBGAEZARoBGwEcAR0BHgEfASABIQEiASMBJAElASYBJwEoASkBKgErASwBLQEuAS8BMAExATIHdW5pRTAwMAd1bmlFMDAxB3VuaUUwMDIHdW5pRTAwMwd1bmlFMDA0B3VuaUUwMDUHdW5pRTAwNgd1bmlFMDA3B3VuaUUwMDgHdW5pRTAwOQd1bmlFMDBBB3VuaUUwMEIHdW5pRTAwQwd1bmlFMDBEB3VuaUUwMEUHdW5pRTAwRgd1bmlFMDEwB3VuaUUwMTEHdW5pRTAxMgd1bmlFMDEzB3VuaUUwMTQHdW5pRTAxNQd1bmlFMDE2B3VuaUUwMTcHdW5pRTAxOAd1bmlFMDE5B3VuaUUwMUEHdW5pRTAxQgd1bmlFMDFDB3VuaUUwMUQHdW5pRTAxRQd1bmlFMDFGB3VuaUUwMjAHdW5pRTAyMQd1bmlFMDIyB3VuaUUwMjMHdW5pRTAyNAd1bmlFMDI1B3VuaUUwMjYHdW5pRTAyNwd1bmlFMDI4B3VuaUUwMjkHdW5pRTAyQQd1bmlFMDJCB3VuaUUwMkMHdW5pRTAyRAd1bmlFMDJFB3VuaUUwMkYHdW5pRjAwMAAAAAAAAf//AAIAAQAAAA4AAAAYAAAAAAACAAEAAwAzAAEABAAAAAIAAAAAAAEAAAAAyYlvMQAAAADM3fi7AAAAAMzd+Ls=) format('truetype');\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n/* Use the following CSS code if you want to use data attributes for inserting your icons */\n[data-icon]:before {\n\tfont-family: 'linecons';\n\tcontent: attr(data-icon);\n\tspeak: none;\n\tfont-weight: normal;\n\tline-height: 1;\n\t-webkit-font-smoothing: antialiased;\n}\n\n/* Use the following CSS code if you want to have a class per icon */\n[class^=\"li-\"]:before, [class*=\" li-\"]:before {\n\tfont-family: 'linecons';\n\tfont-style: normal;\n\tspeak: none;\n\tfont-weight: normal;\n\tline-height: 1;\n\t-webkit-font-smoothing: antialiased;\n}\n.li {\n\tdisplay: inline-block;\n\tfont-family: 'linecons';\n\tfont-style: normal;\n\tfont-weight: normal;\n\tline-height: 1;\n\t-webkit-font-smoothing: antialiased;\n\tspeak: none;\n}\n\n.li-heart:before {\n\tcontent: \"\\e000\";\n}\n.li-cloud:before {\n\tcontent: \"\\e001\";\n}\n.li-star:before {\n\tcontent: \"\\e002\";\n}\n.li-tv:before {\n\tcontent: \"\\e003\";\n}\n.li-sound:before {\n\tcontent: \"\\e004\";\n}\n.li-video:before {\n\tcontent: \"\\e005\";\n}\n.li-trash:before {\n\tcontent: \"\\e006\";\n}\n.li-user:before {\n\tcontent: \"\\e007\";\n}\n.li-key:before {\n\tcontent: \"\\e008\";\n}\n.li-search:before {\n\tcontent: \"\\e009\";\n}\n.li-settings:before {\n\tcontent: \"\\e00a\";\n}\n.li-camera:before {\n\tcontent: \"\\e00b\";\n}\n.li-tag:before {\n\tcontent: \"\\e00c\";\n}\n.li-lock:before {\n\tcontent: \"\\e00d\";\n}\n.li-bulb:before {\n\tcontent: \"\\e00e\";\n}\n.li-pen:before {\n\tcontent: \"\\e00f\";\n}\n.li-diamond:before {\n\tcontent: \"\\e010\";\n}\n.li-display:before {\n\tcontent: \"\\e011\";\n}\n.li-location:before {\n\tcontent: \"\\e012\";\n}\n.li-eye:before {\n\tcontent: \"\\e013\";\n}\n.li-bubble:before {\n\tcontent: \"\\e014\";\n}\n.li-stack:before {\n\tcontent: \"\\e015\";\n}\n.li-cup:before {\n\tcontent: \"\\e016\";\n}\n.li-phone:before {\n\tcontent: \"\\e017\";\n}\n.li-news:before {\n\tcontent: \"\\e018\";\n}\n.li-mail:before {\n\tcontent: \"\\e019\";\n}\n.li-like:before {\n\tcontent: \"\\e01a\";\n}\n.li-photo:before {\n\tcontent: \"\\e01b\";\n}\n.li-note:before {\n\tcontent: \"\\e01c\";\n}\n.li-clock:before {\n\tcontent: \"\\e01d\";\n}\n.li-paperplane:before {\n\tcontent: \"\\e01e\";\n}\n.li-params:before {\n\tcontent: \"\\e01f\";\n}\n.li-banknote:before {\n\tcontent: \"\\e020\";\n}\n.li-data:before {\n\tcontent: \"\\e021\";\n}\n.li-music:before {\n\tcontent: \"\\e022\";\n}\n.li-megaphone:before {\n\tcontent: \"\\e023\";\n}\n.li-study:before {\n\tcontent: \"\\e024\";\n}\n.li-lab:before {\n\tcontent: \"\\e025\";\n}\n.li-food:before {\n\tcontent: \"\\e026\";\n}\n.li-t-shirt:before {\n\tcontent: \"\\e027\";\n}\n.li-fire:before {\n\tcontent: \"\\e028\";\n}\n.li-clip:before {\n\tcontent: \"\\e029\";\n}\n.li-shop:before {\n\tcontent: \"\\e02a\";\n}\n.li-calendar:before {\n\tcontent: \"\\e02b\";\n}\n.li-vallet:before {\n\tcontent: \"\\e02c\";\n}\n.li-vynil:before {\n\tcontent: \"\\e02d\";\n}\n.li-truck:before {\n\tcontent: \"\\e02e\";\n}\n.li-world:before {\n\tcontent: \"\\e02f\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-maki-pack/ikonli-maki-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-maki-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.maki {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.maki;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.maki.MakiIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.maki.MakiIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-maki-pack/src/main/java/org/kordamp/ikonli/maki/Maki.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.maki;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Maki implements Ikon {\n    ABOVEGROUND_RAIL(\"maki-aboveground-rail\", '\\ue800'),\n    AIRFIELD(\"maki-airfield\", '\\ue801'),\n    AIRPORT(\"maki-airport\", '\\ue802'),\n    ART_GALLERY(\"maki-art-gallery\", '\\ue803'),\n    BAR(\"maki-bar\", '\\ue804'),\n    BASEBALL(\"maki-baseball\", '\\ue806'),\n    BASKETBALL(\"maki-basketball\", '\\ue807'),\n    BEER(\"maki-beer\", '\\ue808'),\n    BELOWGROUND_RAIL(\"maki-belowground-rail\", '\\ue809'),\n    BICYCLE(\"maki-bicycle\", '\\ue80a'),\n    BUS(\"maki-bus\", '\\ue80b'),\n    CAFE(\"maki-cafe\", '\\ue80c'),\n    CAMPSITE(\"maki-campsite\", '\\ue80d'),\n    CEMETERY(\"maki-cemetery\", '\\ue80e'),\n    CINEMA(\"maki-cinema\", '\\ue80f'),\n    COLLEGE(\"maki-college\", '\\ue810'),\n    COMMERICAL_BUILDING(\"maki-commerical-building\", '\\ue811'),\n    CREDIT_CARD(\"maki-credit-card\", '\\ue812'),\n    CRICKET(\"maki-cricket\", '\\ue813'),\n    EMBASSY(\"maki-embassy\", '\\ue814'),\n    FAST_FOOD(\"maki-fast-food\", '\\ue815'),\n    FERRY(\"maki-ferry\", '\\ue816'),\n    FIRE_STATION(\"maki-fire-station\", '\\ue817'),\n    FOOTBALL(\"maki-football\", '\\ue818'),\n    FUEL(\"maki-fuel\", '\\ue819'),\n    GARDEN(\"maki-garden\", '\\ue81a'),\n    GIRAFFE(\"maki-giraffe\", '\\ue81b'),\n    GOLF(\"maki-golf\", '\\ue81c'),\n    GROCERY_STORE(\"maki-grocery-store\", '\\ue81e'),\n    HARBOR(\"maki-harbor\", '\\ue81f'),\n    HELIPORT(\"maki-heliport\", '\\ue820'),\n    HOSPITAL(\"maki-hospital\", '\\ue821'),\n    INDUSTRIAL_BUILDING(\"maki-industrial-building\", '\\ue822'),\n    LIBRARY(\"maki-library\", '\\ue823'),\n    LODGING(\"maki-lodging\", '\\ue824'),\n    LONDON_UNDERGROUND(\"maki-london-underground\", '\\ue825'),\n    MINEFIELD(\"maki-minefield\", '\\ue826'),\n    MONUMENT(\"maki-monument\", '\\ue827'),\n    MUSEUM(\"maki-museum\", '\\ue828'),\n    PHARMACY(\"maki-pharmacy\", '\\ue829'),\n    PITCH(\"maki-pitch\", '\\ue82a'),\n    POLICE(\"maki-police\", '\\ue82b'),\n    POST(\"maki-post\", '\\ue82c'),\n    PRISON(\"maki-prison\", '\\ue82d'),\n    RAIL(\"maki-rail\", '\\ue82e'),\n    RELIGIOUS_CHRISTIAN(\"maki-religious-christian\", '\\ue82f'),\n    RELIGIOUS_ISLAM(\"maki-religious-islam\", '\\ue830'),\n    RELIGIOUS_JEWISH(\"maki-religious-jewish\", '\\ue831'),\n    RESTAURANT(\"maki-restaurant\", '\\ue832'),\n    ROADBLOCK(\"maki-roadblock\", '\\ue833'),\n    SCHOOL(\"maki-school\", '\\ue834'),\n    SHOP(\"maki-shop\", '\\ue835'),\n    SKIING(\"maki-skiing\", '\\ue836'),\n    SOCCER(\"maki-soccer\", '\\ue837'),\n    SWIMMING(\"maki-swimming\", '\\ue838'),\n    TENNIS(\"maki-tennis\", '\\ue839'),\n    THEATRE(\"maki-theatre\", '\\ue83a'),\n    TOILET(\"maki-toilet\", '\\ue83b'),\n    TOWN_HALL(\"maki-town-hall\", '\\ue83c'),\n    TRASH(\"maki-trash\", '\\ue83d'),\n    TREE_1(\"maki-tree-1\", '\\ue83e'),\n    TREE_2(\"maki-tree-2\", '\\ue83f'),\n    WAREHOUSE(\"maki-warehouse\", '\\ue840');\n\n    public static Maki findByDescription(String description) {\n        for (Maki font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Maki(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-maki-pack/src/main/java/org/kordamp/ikonli/maki/MakiIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.maki;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MakiIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/maki/0.5.0/fonts/maki.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"maki-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Maki.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Maki\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-maki-pack/src/main/java/org/kordamp/ikonli/maki/MakiIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.maki;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class MakiIkonProvider implements IkonProvider<Maki> {\n    @Override\n    public Class<Maki> getIkon() {\n        return Maki.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-maki-pack/src/main/resources/META-INF/resources/maki/0.5.0/css/maki.css",
    "content": "@font-face {\n    font-family: 'Maki';\n    src: url('../fonts/maki.eot?56675205');\n    src: url('../fonts/maki.eot?56675205#iefix') format('embedded-opentype'),\n    url('../fonts/maki.woff?56675205') format('woff'),\n    url('../fonts/maki.ttf?56675205') format('truetype'),\n    url('../fonts/maki.svg?56675205#maki') format('svg');\n    font-weight: normal;\n    font-style: normal;\n}\n\n.maki {\n    font-family: \"Maki\";\n    font-style: normal;\n    font-weight: normal;\n    speak: none;\n\n    display: inline-block;\n    text-decoration: inherit;\n    width: 1em;\n    margin-right: .2em;\n    text-align: center;\n    /* opacity: .8; */\n\n    font-variant: normal;\n    text-transform: none;\n    line-height: 1em;\n    margin-left: .2em;\n}\n\n.maki-aboveground-rail:before { content: '\\e800'; }\n.maki-airfield:before { content: '\\e801'; }\n.maki-airport:before { content: '\\e802'; }\n.maki-art-gallery:before { content: '\\e803'; }\n.maki-bar:before { content: '\\e804'; }\n.maki-baseball:before { content: '\\e806'; }\n.maki-basketball:before { content: '\\e807'; }\n.maki-beer:before { content: '\\e808'; }\n.maki-belowground-rail:before { content: '\\e809'; }\n.maki-bicycle:before { content: '\\e80a'; }\n.maki-bus:before { content: '\\e80b'; }\n.maki-cafe:before { content: '\\e80c'; }\n.maki-campsite:before { content: '\\e80d'; }\n.maki-cemetery:before { content: '\\e80e'; }\n.maki-cinema:before { content: '\\e80f'; }\n.maki-college:before { content: '\\e810'; }\n.maki-commerical-building:before { content: '\\e811'; }\n.maki-credit-card:before { content: '\\e812'; }\n.maki-cricket:before { content: '\\e813'; }\n.maki-embassy:before { content: '\\e814'; }\n.maki-fast-food:before { content: '\\e815'; }\n.maki-ferry:before { content: '\\e816'; }\n.maki-fire-station:before { content: '\\e817'; }\n.maki-football:before { content: '\\e818'; }\n.maki-fuel:before { content: '\\e819'; }\n.maki-garden:before { content: '\\e81a'; }\n.maki-giraffe:before { content: '\\e81b'; }\n.maki-golf:before { content: '\\e81c'; }\n.maki-grocery-store:before { content: '\\e81e'; }\n.maki-harbor:before { content: '\\e81f'; }\n.maki-heliport:before { content: '\\e820'; }\n.maki-hospital:before { content: '\\e821'; }\n.maki-industrial-building:before { content: '\\e822'; }\n.maki-library:before { content: '\\e823'; }\n.maki-lodging:before { content: '\\e824'; }\n.maki-london-underground:before { content: '\\e825'; }\n.maki-minefield:before { content: '\\e826'; }\n.maki-monument:before { content: '\\e827'; }\n.maki-museum:before { content: '\\e828'; }\n.maki-pharmacy:before { content: '\\e829'; }\n.maki-pitch:before { content: '\\e82a'; }\n.maki-police:before { content: '\\e82b'; }\n.maki-post:before { content: '\\e82c'; }\n.maki-prison:before { content: '\\e82d'; }\n.maki-rail:before { content: '\\e82e'; }\n.maki-religious-christian:before { content: '\\e82f'; }\n.maki-religious-islam:before { content: '\\e830'; }\n.maki-religious-jewish:before { content: '\\e831'; }\n.maki-restaurant:before { content: '\\e832'; }\n.maki-roadblock:before { content: '\\e833'; }\n.maki-school:before { content: '\\e834'; }\n.maki-shop:before { content: '\\e835'; }\n.maki-skiing:before { content: '\\e836'; }\n.maki-soccer:before { content: '\\e837'; }\n.maki-swimming:before { content: '\\e838'; }\n.maki-tennis:before { content: '\\e839'; }\n.maki-theatre:before { content: '\\e83a'; }\n.maki-toilet:before { content: '\\e83b'; }\n.maki-town-hall:before { content: '\\e83c'; }\n.maki-trash:before { content: '\\e83d'; }\n.maki-tree-1:before { content: '\\e83e'; }\n.maki-tree-2:before { content: '\\e83f'; }\n.maki-warehouse:before { content: '\\e840'; }"
  },
  {
    "path": "icon-packs/ikonli-maki2-pack/ikonli-maki2-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-maki2-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.maki2 {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.maki2;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.maki2.Maki2IkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.maki2.Maki2IkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-maki2-pack/src/main/java/org/kordamp/ikonli/maki2/Maki2.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.maki2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Maki2 implements Ikon {\n    AERIALWAY_11(\"maki2-aerialway-11\", '\\ue900'),\n    AERIALWAY_15(\"maki2-aerialway-15\", '\\ue901'),\n    AIRFIELD_11(\"maki2-airfield-11\", '\\ue902'),\n    AIRFIELD_15(\"maki2-airfield-15\", '\\ue903'),\n    AIRPORT_11(\"maki2-airport-11\", '\\ue904'),\n    AIRPORT_15(\"maki2-airport-15\", '\\ue905'),\n    ALCOHOL_SHOP_11(\"maki2-alcohol-shop-11\", '\\ue906'),\n    ALCOHOL_SHOP_15(\"maki2-alcohol-shop-15\", '\\ue907'),\n    AMERICAN_FOOTBALL_11(\"maki2-american-football-11\", '\\ue908'),\n    AMERICAN_FOOTBALL_15(\"maki2-american-football-15\", '\\ue909'),\n    AMUSEMENT_PARK_11(\"maki2-amusement-park-11\", '\\ue90a'),\n    AMUSEMENT_PARK_15(\"maki2-amusement-park-15\", '\\ue90b'),\n    AQUARIUM_11(\"maki2-aquarium-11\", '\\ue90c'),\n    AQUARIUM_15(\"maki2-aquarium-15\", '\\ue90d'),\n    ART_GALLERY_11(\"maki2-art-gallery-11\", '\\ue90e'),\n    ART_GALLERY_15(\"maki2-art-gallery-15\", '\\ue90f'),\n    ATTRACTION_11(\"maki2-attraction-11\", '\\ue910'),\n    ATTRACTION_15(\"maki2-attraction-15\", '\\ue911'),\n    BAKERY_11(\"maki2-bakery-11\", '\\ue912'),\n    BAKERY_15(\"maki2-bakery-15\", '\\ue913'),\n    BANK_11(\"maki2-bank-11\", '\\ue914'),\n    BANK_15(\"maki2-bank-15\", '\\ue915'),\n    BANK_JP_11(\"maki2-bank-JP-11\", '\\ue916'),\n    BANK_JP_15(\"maki2-bank-JP-15\", '\\ue917'),\n    BARRIER_11(\"maki2-barrier-11\", '\\ue91a'),\n    BARRIER_15(\"maki2-barrier-15\", '\\ue91b'),\n    BAR_11(\"maki2-bar-11\", '\\ue918'),\n    BAR_15(\"maki2-bar-15\", '\\ue919'),\n    BASEBALL_11(\"maki2-baseball-11\", '\\ue91c'),\n    BASEBALL_15(\"maki2-baseball-15\", '\\ue91d'),\n    BASKETBALL_11(\"maki2-basketball-11\", '\\ue91e'),\n    BASKETBALL_15(\"maki2-basketball-15\", '\\ue91f'),\n    BBQ_11(\"maki2-bbq-11\", '\\ue920'),\n    BBQ_15(\"maki2-bbq-15\", '\\ue921'),\n    BEACH_11(\"maki2-beach-11\", '\\ue922'),\n    BEACH_15(\"maki2-beach-15\", '\\ue923'),\n    BEER_11(\"maki2-beer-11\", '\\ue924'),\n    BEER_15(\"maki2-beer-15\", '\\ue925'),\n    BICYCLE_11(\"maki2-bicycle-11\", '\\ue926'),\n    BICYCLE_15(\"maki2-bicycle-15\", '\\ue927'),\n    BICYCLE_SHARE_11(\"maki2-bicycle-share-11\", '\\ue928'),\n    BICYCLE_SHARE_15(\"maki2-bicycle-share-15\", '\\ue929'),\n    BLOOD_BANK_11(\"maki2-blood-bank-11\", '\\ue92a'),\n    BLOOD_BANK_15(\"maki2-blood-bank-15\", '\\ue92b'),\n    BOWLING_ALLEY_11(\"maki2-bowling-alley-11\", '\\ue92c'),\n    BOWLING_ALLEY_15(\"maki2-bowling-alley-15\", '\\ue92d'),\n    BRIDGE_11(\"maki2-bridge-11\", '\\ue92e'),\n    BRIDGE_15(\"maki2-bridge-15\", '\\ue92f'),\n    BUILDING_11(\"maki2-building-11\", '\\ue930'),\n    BUILDING_15(\"maki2-building-15\", '\\ue931'),\n    BUILDING_ALT1_11(\"maki2-building-alt1-11\", '\\ue932'),\n    BUILDING_ALT1_15(\"maki2-building-alt1-15\", '\\ue933'),\n    BUS_11(\"maki2-bus-11\", '\\ue934'),\n    BUS_15(\"maki2-bus-15\", '\\ue935'),\n    CAFE_11(\"maki2-cafe-11\", '\\ue936'),\n    CAFE_15(\"maki2-cafe-15\", '\\ue937'),\n    CAMPSITE_11(\"maki2-campsite-11\", '\\ue938'),\n    CAMPSITE_15(\"maki2-campsite-15\", '\\ue939'),\n    CAR_11(\"maki2-car-11\", '\\ue93a'),\n    CAR_15(\"maki2-car-15\", '\\ue93b'),\n    CAR_RENTAL_11(\"maki2-car-rental-11\", '\\ue93c'),\n    CAR_RENTAL_15(\"maki2-car-rental-15\", '\\ue93d'),\n    CAR_REPAIR_11(\"maki2-car-repair-11\", '\\ue93e'),\n    CAR_REPAIR_15(\"maki2-car-repair-15\", '\\ue93f'),\n    CASINO_11(\"maki2-casino-11\", '\\ue940'),\n    CASINO_15(\"maki2-casino-15\", '\\ue941'),\n    CASTLE_11(\"maki2-castle-11\", '\\ue942'),\n    CASTLE_15(\"maki2-castle-15\", '\\ue943'),\n    CASTLE_JP_11(\"maki2-castle-JP-11\", '\\ue944'),\n    CASTLE_JP_15(\"maki2-castle-JP-15\", '\\ue945'),\n    CEMETERY_11(\"maki2-cemetery-11\", '\\ue946'),\n    CEMETERY_15(\"maki2-cemetery-15\", '\\ue947'),\n    CEMETERY_JP_11(\"maki2-cemetery-JP-11\", '\\ue948'),\n    CEMETERY_JP_15(\"maki2-cemetery-JP-15\", '\\ue949'),\n    CHARGING_STATION_11(\"maki2-charging-station-11\", '\\ue94a'),\n    CHARGING_STATION_15(\"maki2-charging-station-15\", '\\ue94b'),\n    CINEMA_11(\"maki2-cinema-11\", '\\ue94c'),\n    CINEMA_15(\"maki2-cinema-15\", '\\ue94d'),\n    CIRCLE_11(\"maki2-circle-11\", '\\ue94e'),\n    CIRCLE_15(\"maki2-circle-15\", '\\ue94f'),\n    CIRCLE_STROKED_11(\"maki2-circle-stroked-11\", '\\ue950'),\n    CIRCLE_STROKED_15(\"maki2-circle-stroked-15\", '\\ue951'),\n    CITY_11(\"maki2-city-11\", '\\ue952'),\n    CITY_15(\"maki2-city-15\", '\\ue953'),\n    CLOTHING_STORE_11(\"maki2-clothing-store-11\", '\\ue954'),\n    CLOTHING_STORE_15(\"maki2-clothing-store-15\", '\\ue955'),\n    COLLEGE_11(\"maki2-college-11\", '\\ue956'),\n    COLLEGE_15(\"maki2-college-15\", '\\ue957'),\n    COLLEGE_JP_11(\"maki2-college-JP-11\", '\\ue958'),\n    COLLEGE_JP_15(\"maki2-college-JP-15\", '\\ue959'),\n    COMMERCIAL_11(\"maki2-commercial-11\", '\\ue95a'),\n    COMMERCIAL_15(\"maki2-commercial-15\", '\\ue95b'),\n    COMMUNICATIONS_TOWER_11(\"maki2-communications-tower-11\", '\\ue95c'),\n    COMMUNICATIONS_TOWER_15(\"maki2-communications-tower-15\", '\\ue95d'),\n    CONFECTIONERY_11(\"maki2-confectionery-11\", '\\ue95e'),\n    CONFECTIONERY_15(\"maki2-confectionery-15\", '\\ue95f'),\n    CONVENIENCE_11(\"maki2-convenience-11\", '\\ue960'),\n    CONVENIENCE_15(\"maki2-convenience-15\", '\\ue961'),\n    CRICKET_11(\"maki2-cricket-11\", '\\ue962'),\n    CRICKET_15(\"maki2-cricket-15\", '\\ue963'),\n    CROSS_11(\"maki2-cross-11\", '\\ue964'),\n    CROSS_15(\"maki2-cross-15\", '\\ue965'),\n    DAM_11(\"maki2-dam-11\", '\\ue966'),\n    DAM_15(\"maki2-dam-15\", '\\ue967'),\n    DANGER_11(\"maki2-danger-11\", '\\ue968'),\n    DANGER_15(\"maki2-danger-15\", '\\ue969'),\n    DEFIBRILLATOR_11(\"maki2-defibrillator-11\", '\\ue96a'),\n    DEFIBRILLATOR_15(\"maki2-defibrillator-15\", '\\ue96b'),\n    DENTIST_11(\"maki2-dentist-11\", '\\ue96c'),\n    DENTIST_15(\"maki2-dentist-15\", '\\ue96d'),\n    DOCTOR_11(\"maki2-doctor-11\", '\\ue96e'),\n    DOCTOR_15(\"maki2-doctor-15\", '\\ue96f'),\n    DOG_PARK_11(\"maki2-dog-park-11\", '\\ue970'),\n    DOG_PARK_15(\"maki2-dog-park-15\", '\\ue971'),\n    DRINKING_WATER_11(\"maki2-drinking-water-11\", '\\ue972'),\n    DRINKING_WATER_15(\"maki2-drinking-water-15\", '\\ue973'),\n    EMBASSY_11(\"maki2-embassy-11\", '\\ue974'),\n    EMBASSY_15(\"maki2-embassy-15\", '\\ue975'),\n    EMERGENCY_PHONE_11(\"maki2-emergency-phone-11\", '\\ue976'),\n    EMERGENCY_PHONE_15(\"maki2-emergency-phone-15\", '\\ue977'),\n    ENTRANCE_11(\"maki2-entrance-11\", '\\ue978'),\n    ENTRANCE_15(\"maki2-entrance-15\", '\\ue979'),\n    ENTRANCE_ALT1_11(\"maki2-entrance-alt1-11\", '\\ue97a'),\n    ENTRANCE_ALT1_15(\"maki2-entrance-alt1-15\", '\\ue97b'),\n    FARM_11(\"maki2-farm-11\", '\\ue97c'),\n    FARM_15(\"maki2-farm-15\", '\\ue97d'),\n    FAST_FOOD_11(\"maki2-fast-food-11\", '\\ue97e'),\n    FAST_FOOD_15(\"maki2-fast-food-15\", '\\ue97f'),\n    FENCE_11(\"maki2-fence-11\", '\\ue980'),\n    FENCE_15(\"maki2-fence-15\", '\\ue981'),\n    FERRY_11(\"maki2-ferry-11\", '\\ue982'),\n    FERRY_15(\"maki2-ferry-15\", '\\ue983'),\n    FIRE_STATION_11(\"maki2-fire-station-11\", '\\ue984'),\n    FIRE_STATION_15(\"maki2-fire-station-15\", '\\ue985'),\n    FIRE_STATION_JP_11(\"maki2-fire-station-JP-11\", '\\ue986'),\n    FIRE_STATION_JP_15(\"maki2-fire-station-JP-15\", '\\ue987'),\n    FITNESS_CENTRE_11(\"maki2-fitness-centre-11\", '\\ue988'),\n    FITNESS_CENTRE_15(\"maki2-fitness-centre-15\", '\\ue989'),\n    FLORIST_11(\"maki2-florist-11\", '\\ue98a'),\n    FLORIST_15(\"maki2-florist-15\", '\\ue98b'),\n    FUEL_11(\"maki2-fuel-11\", '\\ue98c'),\n    FUEL_15(\"maki2-fuel-15\", '\\ue98d'),\n    FURNITURE_11(\"maki2-furniture-11\", '\\ue98e'),\n    FURNITURE_15(\"maki2-furniture-15\", '\\ue98f'),\n    GAMING_11(\"maki2-gaming-11\", '\\ue990'),\n    GAMING_15(\"maki2-gaming-15\", '\\ue991'),\n    GARDEN_11(\"maki2-garden-11\", '\\ue992'),\n    GARDEN_15(\"maki2-garden-15\", '\\ue993'),\n    GARDEN_CENTRE_11(\"maki2-garden-centre-11\", '\\ue994'),\n    GARDEN_CENTRE_15(\"maki2-garden-centre-15\", '\\ue995'),\n    GIFT_11(\"maki2-gift-11\", '\\ue996'),\n    GIFT_15(\"maki2-gift-15\", '\\ue997'),\n    GLOBE_11(\"maki2-globe-11\", '\\ue998'),\n    GLOBE_15(\"maki2-globe-15\", '\\ue999'),\n    GOLF_11(\"maki2-golf-11\", '\\ue99a'),\n    GOLF_15(\"maki2-golf-15\", '\\ue99b'),\n    GROCERY_11(\"maki2-grocery-11\", '\\ue99c'),\n    GROCERY_15(\"maki2-grocery-15\", '\\ue99d'),\n    HAIRDRESSER_11(\"maki2-hairdresser-11\", '\\ue99e'),\n    HAIRDRESSER_15(\"maki2-hairdresser-15\", '\\ue99f'),\n    HARBOR_11(\"maki2-harbor-11\", '\\ue9a0'),\n    HARBOR_15(\"maki2-harbor-15\", '\\ue9a1'),\n    HARDWARE_11(\"maki2-hardware-11\", '\\ue9a2'),\n    HARDWARE_15(\"maki2-hardware-15\", '\\ue9a3'),\n    HEART_11(\"maki2-heart-11\", '\\ue9a4'),\n    HEART_15(\"maki2-heart-15\", '\\ue9a5'),\n    HELIPORT_11(\"maki2-heliport-11\", '\\ue9a6'),\n    HELIPORT_15(\"maki2-heliport-15\", '\\ue9a7'),\n    HOME_11(\"maki2-home-11\", '\\ue9a8'),\n    HOME_15(\"maki2-home-15\", '\\ue9a9'),\n    HORSE_RIDING_11(\"maki2-horse-riding-11\", '\\ue9aa'),\n    HORSE_RIDING_15(\"maki2-horse-riding-15\", '\\ue9ab'),\n    HOSPITAL_11(\"maki2-hospital-11\", '\\ue9ac'),\n    HOSPITAL_15(\"maki2-hospital-15\", '\\ue9ad'),\n    HOSPITAL_JP_11(\"maki2-hospital-JP-11\", '\\ue9ae'),\n    HOSPITAL_JP_15(\"maki2-hospital-JP-15\", '\\ue9af'),\n    ICE_CREAM_11(\"maki2-ice-cream-11\", '\\ue9b0'),\n    ICE_CREAM_15(\"maki2-ice-cream-15\", '\\ue9b1'),\n    INDUSTRY_11(\"maki2-industry-11\", '\\ue9b2'),\n    INDUSTRY_15(\"maki2-industry-15\", '\\ue9b3'),\n    INFORMATION_11(\"maki2-information-11\", '\\ue9b4'),\n    INFORMATION_15(\"maki2-information-15\", '\\ue9b5'),\n    JEWELRY_STORE_11(\"maki2-jewelry-store-11\", '\\ue9b6'),\n    JEWELRY_STORE_15(\"maki2-jewelry-store-15\", '\\ue9b7'),\n    KARAOKE_11(\"maki2-karaoke-11\", '\\ue9b8'),\n    KARAOKE_15(\"maki2-karaoke-15\", '\\ue9b9'),\n    LANDMARK_11(\"maki2-landmark-11\", '\\ue9ba'),\n    LANDMARK_15(\"maki2-landmark-15\", '\\ue9bb'),\n    LANDMARK_JP_11(\"maki2-landmark-JP-11\", '\\ue9bc'),\n    LANDMARK_JP_15(\"maki2-landmark-JP-15\", '\\ue9bd'),\n    LANDUSE_11(\"maki2-landuse-11\", '\\ue9be'),\n    LANDUSE_15(\"maki2-landuse-15\", '\\ue9bf'),\n    LAUNDRY_11(\"maki2-laundry-11\", '\\ue9c0'),\n    LAUNDRY_15(\"maki2-laundry-15\", '\\ue9c1'),\n    LIBRARY_11(\"maki2-library-11\", '\\ue9c2'),\n    LIBRARY_15(\"maki2-library-15\", '\\ue9c3'),\n    LIGHTHOUSE_11(\"maki2-lighthouse-11\", '\\ue9c4'),\n    LIGHTHOUSE_15(\"maki2-lighthouse-15\", '\\ue9c5'),\n    LODGING_11(\"maki2-lodging-11\", '\\ue9c6'),\n    LODGING_15(\"maki2-lodging-15\", '\\ue9c7'),\n    LOGGING_11(\"maki2-logging-11\", '\\ue9c8'),\n    LOGGING_15(\"maki2-logging-15\", '\\ue9c9'),\n    MARKER_11(\"maki2-marker-11\", '\\ue9ca'),\n    MARKER_15(\"maki2-marker-15\", '\\ue9cb'),\n    MARKER_STROKED_11(\"maki2-marker-stroked-11\", '\\ue9cc'),\n    MARKER_STROKED_15(\"maki2-marker-stroked-15\", '\\ue9cd'),\n    MOBILE_PHONE_11(\"maki2-mobile-phone-11\", '\\ue9ce'),\n    MOBILE_PHONE_15(\"maki2-mobile-phone-15\", '\\ue9cf'),\n    MONUMENT_11(\"maki2-monument-11\", '\\ue9d0'),\n    MONUMENT_15(\"maki2-monument-15\", '\\ue9d1'),\n    MOUNTAIN_11(\"maki2-mountain-11\", '\\ue9d2'),\n    MOUNTAIN_15(\"maki2-mountain-15\", '\\ue9d3'),\n    MUSEUM_11(\"maki2-museum-11\", '\\ue9d4'),\n    MUSEUM_15(\"maki2-museum-15\", '\\ue9d5'),\n    MUSIC_11(\"maki2-music-11\", '\\ue9d6'),\n    MUSIC_15(\"maki2-music-15\", '\\ue9d7'),\n    NATURAL_11(\"maki2-natural-11\", '\\ue9d8'),\n    NATURAL_15(\"maki2-natural-15\", '\\ue9d9'),\n    OPTICIAN_11(\"maki2-optician-11\", '\\ue9da'),\n    OPTICIAN_15(\"maki2-optician-15\", '\\ue9db'),\n    PAINT_11(\"maki2-paint-11\", '\\ue9dc'),\n    PAINT_15(\"maki2-paint-15\", '\\ue9dd'),\n    PARKING_11(\"maki2-parking-11\", '\\ue9e2'),\n    PARKING_15(\"maki2-parking-15\", '\\ue9e3'),\n    PARKING_GARAGE_11(\"maki2-parking-garage-11\", '\\ue9e4'),\n    PARKING_GARAGE_15(\"maki2-parking-garage-15\", '\\ue9e5'),\n    PARK_11(\"maki2-park-11\", '\\ue9de'),\n    PARK_15(\"maki2-park-15\", '\\ue9df'),\n    PARK_ALT1_11(\"maki2-park-alt1-11\", '\\ue9e0'),\n    PARK_ALT1_15(\"maki2-park-alt1-15\", '\\ue9e1'),\n    PHARMACY_11(\"maki2-pharmacy-11\", '\\ue9e6'),\n    PHARMACY_15(\"maki2-pharmacy-15\", '\\ue9e7'),\n    PICNIC_SITE_11(\"maki2-picnic-site-11\", '\\ue9e8'),\n    PICNIC_SITE_15(\"maki2-picnic-site-15\", '\\ue9e9'),\n    PITCH_11(\"maki2-pitch-11\", '\\ue9ea'),\n    PITCH_15(\"maki2-pitch-15\", '\\ue9eb'),\n    PLACE_OF_WORSHIP_11(\"maki2-place-of-worship-11\", '\\ue9ec'),\n    PLACE_OF_WORSHIP_15(\"maki2-place-of-worship-15\", '\\ue9ed'),\n    PLAYGROUND_11(\"maki2-playground-11\", '\\ue9ee'),\n    PLAYGROUND_15(\"maki2-playground-15\", '\\ue9ef'),\n    POLICE_11(\"maki2-police-11\", '\\ue9f0'),\n    POLICE_15(\"maki2-police-15\", '\\ue9f1'),\n    POLICE_JP_11(\"maki2-police-JP-11\", '\\ue9f2'),\n    POLICE_JP_15(\"maki2-police-JP-15\", '\\ue9f3'),\n    POST_11(\"maki2-post-11\", '\\ue9f4'),\n    POST_15(\"maki2-post-15\", '\\ue9f5'),\n    POST_JP_11(\"maki2-post-JP-11\", '\\ue9f6'),\n    POST_JP_15(\"maki2-post-JP-15\", '\\ue9f7'),\n    PRISON_11(\"maki2-prison-11\", '\\ue9f8'),\n    PRISON_15(\"maki2-prison-15\", '\\ue9f9'),\n    RAIL_11(\"maki2-rail-11\", '\\ue9fa'),\n    RAIL_15(\"maki2-rail-15\", '\\ue9fb'),\n    RAIL_LIGHT_11(\"maki2-rail-light-11\", '\\ue9fc'),\n    RAIL_LIGHT_15(\"maki2-rail-light-15\", '\\ue9fd'),\n    RAIL_METRO_11(\"maki2-rail-metro-11\", '\\ue9fe'),\n    RAIL_METRO_15(\"maki2-rail-metro-15\", '\\ue9ff'),\n    RANGER_STATION_11(\"maki2-ranger-station-11\", '\\uea00'),\n    RANGER_STATION_15(\"maki2-ranger-station-15\", '\\uea01'),\n    RECYCLING_11(\"maki2-recycling-11\", '\\uea02'),\n    RECYCLING_15(\"maki2-recycling-15\", '\\uea03'),\n    RELIGIOUS_BUDDHIST_11(\"maki2-religious-buddhist-11\", '\\uea04'),\n    RELIGIOUS_BUDDHIST_15(\"maki2-religious-buddhist-15\", '\\uea05'),\n    RELIGIOUS_CHRISTIAN_11(\"maki2-religious-christian-11\", '\\uea06'),\n    RELIGIOUS_CHRISTIAN_15(\"maki2-religious-christian-15\", '\\uea07'),\n    RELIGIOUS_JEWISH_11(\"maki2-religious-jewish-11\", '\\uea08'),\n    RELIGIOUS_JEWISH_15(\"maki2-religious-jewish-15\", '\\uea09'),\n    RELIGIOUS_MUSLIM_11(\"maki2-religious-muslim-11\", '\\uea0a'),\n    RELIGIOUS_MUSLIM_15(\"maki2-religious-muslim-15\", '\\uea0b'),\n    RELIGIOUS_SHINTO_11(\"maki2-religious-shinto-11\", '\\uea0c'),\n    RELIGIOUS_SHINTO_15(\"maki2-religious-shinto-15\", '\\uea0d'),\n    RESIDENTIAL_COMMUNITY_11(\"maki2-residential-community-11\", '\\uea0e'),\n    RESIDENTIAL_COMMUNITY_15(\"maki2-residential-community-15\", '\\uea0f'),\n    RESTAURANT_11(\"maki2-restaurant-11\", '\\uea10'),\n    RESTAURANT_15(\"maki2-restaurant-15\", '\\uea11'),\n    RESTAURANT_NOODLE_11(\"maki2-restaurant-noodle-11\", '\\uea12'),\n    RESTAURANT_NOODLE_15(\"maki2-restaurant-noodle-15\", '\\uea13'),\n    RESTAURANT_PIZZA_11(\"maki2-restaurant-pizza-11\", '\\uea14'),\n    RESTAURANT_PIZZA_15(\"maki2-restaurant-pizza-15\", '\\uea15'),\n    RESTAURANT_SEAFOOD_11(\"maki2-restaurant-seafood-11\", '\\uea16'),\n    RESTAURANT_SEAFOOD_15(\"maki2-restaurant-seafood-15\", '\\uea17'),\n    ROADBLOCK_11(\"maki2-roadblock-11\", '\\uea18'),\n    ROADBLOCK_15(\"maki2-roadblock-15\", '\\uea19'),\n    ROCKET_11(\"maki2-rocket-11\", '\\uea1a'),\n    ROCKET_15(\"maki2-rocket-15\", '\\uea1b'),\n    SCHOOL_11(\"maki2-school-11\", '\\uea1c'),\n    SCHOOL_15(\"maki2-school-15\", '\\uea1d'),\n    SCHOOL_JP_11(\"maki2-school-JP-11\", '\\uea1e'),\n    SCHOOL_JP_15(\"maki2-school-JP-15\", '\\uea1f'),\n    SCOOTER_11(\"maki2-scooter-11\", '\\uea20'),\n    SCOOTER_15(\"maki2-scooter-15\", '\\uea21'),\n    SHELTER_11(\"maki2-shelter-11\", '\\uea22'),\n    SHELTER_15(\"maki2-shelter-15\", '\\uea23'),\n    SHOE_11(\"maki2-shoe-11\", '\\uea24'),\n    SHOE_15(\"maki2-shoe-15\", '\\uea25'),\n    SHOP_11(\"maki2-shop-11\", '\\uea26'),\n    SHOP_15(\"maki2-shop-15\", '\\uea27'),\n    SKATEBOARD_11(\"maki2-skateboard-11\", '\\uea28'),\n    SKATEBOARD_15(\"maki2-skateboard-15\", '\\uea29'),\n    SKIING_11(\"maki2-skiing-11\", '\\uea2a'),\n    SKIING_15(\"maki2-skiing-15\", '\\uea2b'),\n    SLAUGHTERHOUSE_11(\"maki2-slaughterhouse-11\", '\\uea2c'),\n    SLAUGHTERHOUSE_15(\"maki2-slaughterhouse-15\", '\\uea2d'),\n    SLIPWAY_11(\"maki2-slipway-11\", '\\uea2e'),\n    SLIPWAY_15(\"maki2-slipway-15\", '\\uea2f'),\n    SNOWMOBILE_11(\"maki2-snowmobile-11\", '\\uea30'),\n    SNOWMOBILE_15(\"maki2-snowmobile-15\", '\\uea31'),\n    SOCCER_11(\"maki2-soccer-11\", '\\uea32'),\n    SOCCER_15(\"maki2-soccer-15\", '\\uea33'),\n    SQUARE_11(\"maki2-square-11\", '\\uea34'),\n    SQUARE_15(\"maki2-square-15\", '\\uea35'),\n    SQUARE_STROKED_11(\"maki2-square-stroked-11\", '\\uea36'),\n    SQUARE_STROKED_15(\"maki2-square-stroked-15\", '\\uea37'),\n    STADIUM_11(\"maki2-stadium-11\", '\\uea38'),\n    STADIUM_15(\"maki2-stadium-15\", '\\uea39'),\n    STAR_11(\"maki2-star-11\", '\\uea3a'),\n    STAR_15(\"maki2-star-15\", '\\uea3b'),\n    STAR_STROKED_11(\"maki2-star-stroked-11\", '\\uea3c'),\n    STAR_STROKED_15(\"maki2-star-stroked-15\", '\\uea3d'),\n    SUITCASE_11(\"maki2-suitcase-11\", '\\uea3e'),\n    SUITCASE_15(\"maki2-suitcase-15\", '\\uea3f'),\n    SUSHI_11(\"maki2-sushi-11\", '\\uea40'),\n    SUSHI_15(\"maki2-sushi-15\", '\\uea41'),\n    SWIMMING_11(\"maki2-swimming-11\", '\\uea42'),\n    SWIMMING_15(\"maki2-swimming-15\", '\\uea43'),\n    TABLE_TENNIS_11(\"maki2-table-tennis-11\", '\\uea44'),\n    TABLE_TENNIS_15(\"maki2-table-tennis-15\", '\\uea45'),\n    TEAHOUSE_11(\"maki2-teahouse-11\", '\\uea46'),\n    TEAHOUSE_15(\"maki2-teahouse-15\", '\\uea47'),\n    TELEPHONE_11(\"maki2-telephone-11\", '\\uea48'),\n    TELEPHONE_15(\"maki2-telephone-15\", '\\uea49'),\n    TENNIS_11(\"maki2-tennis-11\", '\\uea4a'),\n    TENNIS_15(\"maki2-tennis-15\", '\\uea4b'),\n    THEATRE_11(\"maki2-theatre-11\", '\\uea4c'),\n    THEATRE_15(\"maki2-theatre-15\", '\\uea4d'),\n    TOILET_11(\"maki2-toilet-11\", '\\uea4e'),\n    TOILET_15(\"maki2-toilet-15\", '\\uea4f'),\n    TOWN_11(\"maki2-town-11\", '\\uea50'),\n    TOWN_15(\"maki2-town-15\", '\\uea51'),\n    TOWN_HALL_11(\"maki2-town-hall-11\", '\\uea52'),\n    TOWN_HALL_15(\"maki2-town-hall-15\", '\\uea53'),\n    TRIANGLE_11(\"maki2-triangle-11\", '\\uea54'),\n    TRIANGLE_15(\"maki2-triangle-15\", '\\uea55'),\n    TRIANGLE_STROKED_11(\"maki2-triangle-stroked-11\", '\\uea56'),\n    TRIANGLE_STROKED_15(\"maki2-triangle-stroked-15\", '\\uea57'),\n    VETERINARY_11(\"maki2-veterinary-11\", '\\uea58'),\n    VETERINARY_15(\"maki2-veterinary-15\", '\\uea59'),\n    VIEWPOINT_11(\"maki2-viewpoint-11\", '\\uea5a'),\n    VIEWPOINT_15(\"maki2-viewpoint-15\", '\\uea5b'),\n    VILLAGE_11(\"maki2-village-11\", '\\uea5c'),\n    VILLAGE_15(\"maki2-village-15\", '\\uea5d'),\n    VOLCANO_11(\"maki2-volcano-11\", '\\uea5e'),\n    VOLCANO_15(\"maki2-volcano-15\", '\\uea5f'),\n    VOLLEYBALL_11(\"maki2-volleyball-11\", '\\uea60'),\n    VOLLEYBALL_15(\"maki2-volleyball-15\", '\\uea61'),\n    WAREHOUSE_11(\"maki2-warehouse-11\", '\\uea62'),\n    WAREHOUSE_15(\"maki2-warehouse-15\", '\\uea63'),\n    WASTE_BASKET_11(\"maki2-waste-basket-11\", '\\uea64'),\n    WASTE_BASKET_15(\"maki2-waste-basket-15\", '\\uea65'),\n    WATCH_11(\"maki2-watch-11\", '\\uea66'),\n    WATCH_15(\"maki2-watch-15\", '\\uea67'),\n    WATERFALL_11(\"maki2-waterfall-11\", '\\uea6a'),\n    WATERFALL_15(\"maki2-waterfall-15\", '\\uea6b'),\n    WATERMILL_11(\"maki2-watermill-11\", '\\uea6c'),\n    WATERMILL_15(\"maki2-watermill-15\", '\\uea6d'),\n    WATER_11(\"maki2-water-11\", '\\uea68'),\n    WATER_15(\"maki2-water-15\", '\\uea69'),\n    WETLAND_11(\"maki2-wetland-11\", '\\uea6e'),\n    WETLAND_15(\"maki2-wetland-15\", '\\uea6f'),\n    WHEELCHAIR_11(\"maki2-wheelchair-11\", '\\uea70'),\n    WHEELCHAIR_15(\"maki2-wheelchair-15\", '\\uea71'),\n    WINDMILL_11(\"maki2-windmill-11\", '\\uea72'),\n    WINDMILL_15(\"maki2-windmill-15\", '\\uea73'),\n    ZOO_11(\"maki2-zoo-11\", '\\uea74'),\n    ZOO_15(\"maki2-zoo-15\", '\\uea75');\n\n    public static Maki2 findByDescription(String description) {\n        for (Maki2 font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Maki2(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-maki2-pack/src/main/java/org/kordamp/ikonli/maki2/Maki2IkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.maki2;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Maki2IkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/maki2/6.2.0/fonts/maki2.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"maki2-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Maki2.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Maki2\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-maki2-pack/src/main/java/org/kordamp/ikonli/maki2/Maki2IkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.maki2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class Maki2IkonProvider implements IkonProvider<Maki2> {\n    @Override\n    public Class<Maki2> getIkon() {\n        return Maki2.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-maki2-pack/src/main/resources/META-INF/resources/maki2/6.2.0/css/maki2.css",
    "content": "@font-face {\n  font-family: 'Maki2';\n  src:  url('../fonts/maki2.eot?qz0pfi');\n  src:  url('../fonts/maki2.eot?qz0pfi#iefix') format('embedded-opentype'),\n    url('../fonts/maki2.ttf?qz0pfi') format('truetype'),\n    url('../fonts/maki2.woff?qz0pfi') format('woff'),\n    url('../fonts/maki2.svg?qz0pfi#icomoon') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"maki2-\"], [class*=\" maki2-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Maki2' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.maki2-aerialway-11:before {\n  content: \"\\e900\";\n}\n.maki2-aerialway-15:before {\n  content: \"\\e901\";\n}\n.maki2-airfield-11:before {\n  content: \"\\e902\";\n}\n.maki2-airfield-15:before {\n  content: \"\\e903\";\n}\n.maki2-airport-11:before {\n  content: \"\\e904\";\n}\n.maki2-airport-15:before {\n  content: \"\\e905\";\n}\n.maki2-alcohol-shop-11:before {\n  content: \"\\e906\";\n}\n.maki2-alcohol-shop-15:before {\n  content: \"\\e907\";\n}\n.maki2-american-football-11:before {\n  content: \"\\e908\";\n}\n.maki2-american-football-15:before {\n  content: \"\\e909\";\n}\n.maki2-amusement-park-11:before {\n  content: \"\\e90a\";\n}\n.maki2-amusement-park-15:before {\n  content: \"\\e90b\";\n}\n.maki2-aquarium-11:before {\n  content: \"\\e90c\";\n}\n.maki2-aquarium-15:before {\n  content: \"\\e90d\";\n}\n.maki2-art-gallery-11:before {\n  content: \"\\e90e\";\n}\n.maki2-art-gallery-15:before {\n  content: \"\\e90f\";\n}\n.maki2-attraction-11:before {\n  content: \"\\e910\";\n}\n.maki2-attraction-15:before {\n  content: \"\\e911\";\n}\n.maki2-bakery-11:before {\n  content: \"\\e912\";\n}\n.maki2-bakery-15:before {\n  content: \"\\e913\";\n}\n.maki2-bank-11:before {\n  content: \"\\e914\";\n}\n.maki2-bank-15:before {\n  content: \"\\e915\";\n}\n.maki2-bank-JP-11:before {\n  content: \"\\e916\";\n}\n.maki2-bank-JP-15:before {\n  content: \"\\e917\";\n}\n.maki2-bar-11:before {\n  content: \"\\e918\";\n}\n.maki2-bar-15:before {\n  content: \"\\e919\";\n}\n.maki2-barrier-11:before {\n  content: \"\\e91a\";\n}\n.maki2-barrier-15:before {\n  content: \"\\e91b\";\n}\n.maki2-baseball-11:before {\n  content: \"\\e91c\";\n}\n.maki2-baseball-15:before {\n  content: \"\\e91d\";\n}\n.maki2-basketball-11:before {\n  content: \"\\e91e\";\n}\n.maki2-basketball-15:before {\n  content: \"\\e91f\";\n}\n.maki2-bbq-11:before {\n  content: \"\\e920\";\n}\n.maki2-bbq-15:before {\n  content: \"\\e921\";\n}\n.maki2-beach-11:before {\n  content: \"\\e922\";\n}\n.maki2-beach-15:before {\n  content: \"\\e923\";\n}\n.maki2-beer-11:before {\n  content: \"\\e924\";\n}\n.maki2-beer-15:before {\n  content: \"\\e925\";\n}\n.maki2-bicycle-11:before {\n  content: \"\\e926\";\n}\n.maki2-bicycle-15:before {\n  content: \"\\e927\";\n}\n.maki2-bicycle-share-11:before {\n  content: \"\\e928\";\n}\n.maki2-bicycle-share-15:before {\n  content: \"\\e929\";\n}\n.maki2-blood-bank-11:before {\n  content: \"\\e92a\";\n}\n.maki2-blood-bank-15:before {\n  content: \"\\e92b\";\n}\n.maki2-bowling-alley-11:before {\n  content: \"\\e92c\";\n}\n.maki2-bowling-alley-15:before {\n  content: \"\\e92d\";\n}\n.maki2-bridge-11:before {\n  content: \"\\e92e\";\n}\n.maki2-bridge-15:before {\n  content: \"\\e92f\";\n}\n.maki2-building-11:before {\n  content: \"\\e930\";\n}\n.maki2-building-15:before {\n  content: \"\\e931\";\n}\n.maki2-building-alt1-11:before {\n  content: \"\\e932\";\n}\n.maki2-building-alt1-15:before {\n  content: \"\\e933\";\n}\n.maki2-bus-11:before {\n  content: \"\\e934\";\n}\n.maki2-bus-15:before {\n  content: \"\\e935\";\n}\n.maki2-cafe-11:before {\n  content: \"\\e936\";\n}\n.maki2-cafe-15:before {\n  content: \"\\e937\";\n}\n.maki2-campsite-11:before {\n  content: \"\\e938\";\n}\n.maki2-campsite-15:before {\n  content: \"\\e939\";\n}\n.maki2-car-11:before {\n  content: \"\\e93a\";\n}\n.maki2-car-15:before {\n  content: \"\\e93b\";\n}\n.maki2-car-rental-11:before {\n  content: \"\\e93c\";\n}\n.maki2-car-rental-15:before {\n  content: \"\\e93d\";\n}\n.maki2-car-repair-11:before {\n  content: \"\\e93e\";\n}\n.maki2-car-repair-15:before {\n  content: \"\\e93f\";\n}\n.maki2-casino-11:before {\n  content: \"\\e940\";\n}\n.maki2-casino-15:before {\n  content: \"\\e941\";\n}\n.maki2-castle-11:before {\n  content: \"\\e942\";\n}\n.maki2-castle-15:before {\n  content: \"\\e943\";\n}\n.maki2-castle-JP-11:before {\n  content: \"\\e944\";\n}\n.maki2-castle-JP-15:before {\n  content: \"\\e945\";\n}\n.maki2-cemetery-11:before {\n  content: \"\\e946\";\n}\n.maki2-cemetery-15:before {\n  content: \"\\e947\";\n}\n.maki2-cemetery-JP-11:before {\n  content: \"\\e948\";\n}\n.maki2-cemetery-JP-15:before {\n  content: \"\\e949\";\n}\n.maki2-charging-station-11:before {\n  content: \"\\e94a\";\n}\n.maki2-charging-station-15:before {\n  content: \"\\e94b\";\n}\n.maki2-cinema-11:before {\n  content: \"\\e94c\";\n}\n.maki2-cinema-15:before {\n  content: \"\\e94d\";\n}\n.maki2-circle-11:before {\n  content: \"\\e94e\";\n}\n.maki2-circle-15:before {\n  content: \"\\e94f\";\n}\n.maki2-circle-stroked-11:before {\n  content: \"\\e950\";\n}\n.maki2-circle-stroked-15:before {\n  content: \"\\e951\";\n}\n.maki2-city-11:before {\n  content: \"\\e952\";\n}\n.maki2-city-15:before {\n  content: \"\\e953\";\n}\n.maki2-clothing-store-11:before {\n  content: \"\\e954\";\n}\n.maki2-clothing-store-15:before {\n  content: \"\\e955\";\n}\n.maki2-college-11:before {\n  content: \"\\e956\";\n}\n.maki2-college-15:before {\n  content: \"\\e957\";\n}\n.maki2-college-JP-11:before {\n  content: \"\\e958\";\n}\n.maki2-college-JP-15:before {\n  content: \"\\e959\";\n}\n.maki2-commercial-11:before {\n  content: \"\\e95a\";\n}\n.maki2-commercial-15:before {\n  content: \"\\e95b\";\n}\n.maki2-communications-tower-11:before {\n  content: \"\\e95c\";\n}\n.maki2-communications-tower-15:before {\n  content: \"\\e95d\";\n}\n.maki2-confectionery-11:before {\n  content: \"\\e95e\";\n}\n.maki2-confectionery-15:before {\n  content: \"\\e95f\";\n}\n.maki2-convenience-11:before {\n  content: \"\\e960\";\n}\n.maki2-convenience-15:before {\n  content: \"\\e961\";\n}\n.maki2-cricket-11:before {\n  content: \"\\e962\";\n}\n.maki2-cricket-15:before {\n  content: \"\\e963\";\n}\n.maki2-cross-11:before {\n  content: \"\\e964\";\n}\n.maki2-cross-15:before {\n  content: \"\\e965\";\n}\n.maki2-dam-11:before {\n  content: \"\\e966\";\n}\n.maki2-dam-15:before {\n  content: \"\\e967\";\n}\n.maki2-danger-11:before {\n  content: \"\\e968\";\n}\n.maki2-danger-15:before {\n  content: \"\\e969\";\n}\n.maki2-defibrillator-11:before {\n  content: \"\\e96a\";\n}\n.maki2-defibrillator-15:before {\n  content: \"\\e96b\";\n}\n.maki2-dentist-11:before {\n  content: \"\\e96c\";\n}\n.maki2-dentist-15:before {\n  content: \"\\e96d\";\n}\n.maki2-doctor-11:before {\n  content: \"\\e96e\";\n}\n.maki2-doctor-15:before {\n  content: \"\\e96f\";\n}\n.maki2-dog-park-11:before {\n  content: \"\\e970\";\n}\n.maki2-dog-park-15:before {\n  content: \"\\e971\";\n}\n.maki2-drinking-water-11:before {\n  content: \"\\e972\";\n}\n.maki2-drinking-water-15:before {\n  content: \"\\e973\";\n}\n.maki2-embassy-11:before {\n  content: \"\\e974\";\n}\n.maki2-embassy-15:before {\n  content: \"\\e975\";\n}\n.maki2-emergency-phone-11:before {\n  content: \"\\e976\";\n}\n.maki2-emergency-phone-15:before {\n  content: \"\\e977\";\n}\n.maki2-entrance-11:before {\n  content: \"\\e978\";\n}\n.maki2-entrance-15:before {\n  content: \"\\e979\";\n}\n.maki2-entrance-alt1-11:before {\n  content: \"\\e97a\";\n}\n.maki2-entrance-alt1-15:before {\n  content: \"\\e97b\";\n}\n.maki2-farm-11:before {\n  content: \"\\e97c\";\n}\n.maki2-farm-15:before {\n  content: \"\\e97d\";\n}\n.maki2-fast-food-11:before {\n  content: \"\\e97e\";\n}\n.maki2-fast-food-15:before {\n  content: \"\\e97f\";\n}\n.maki2-fence-11:before {\n  content: \"\\e980\";\n}\n.maki2-fence-15:before {\n  content: \"\\e981\";\n}\n.maki2-ferry-11:before {\n  content: \"\\e982\";\n}\n.maki2-ferry-15:before {\n  content: \"\\e983\";\n}\n.maki2-fire-station-11:before {\n  content: \"\\e984\";\n}\n.maki2-fire-station-15:before {\n  content: \"\\e985\";\n}\n.maki2-fire-station-JP-11:before {\n  content: \"\\e986\";\n}\n.maki2-fire-station-JP-15:before {\n  content: \"\\e987\";\n}\n.maki2-fitness-centre-11:before {\n  content: \"\\e988\";\n}\n.maki2-fitness-centre-15:before {\n  content: \"\\e989\";\n}\n.maki2-florist-11:before {\n  content: \"\\e98a\";\n}\n.maki2-florist-15:before {\n  content: \"\\e98b\";\n}\n.maki2-fuel-11:before {\n  content: \"\\e98c\";\n}\n.maki2-fuel-15:before {\n  content: \"\\e98d\";\n}\n.maki2-furniture-11:before {\n  content: \"\\e98e\";\n}\n.maki2-furniture-15:before {\n  content: \"\\e98f\";\n}\n.maki2-gaming-11:before {\n  content: \"\\e990\";\n}\n.maki2-gaming-15:before {\n  content: \"\\e991\";\n}\n.maki2-garden-11:before {\n  content: \"\\e992\";\n}\n.maki2-garden-15:before {\n  content: \"\\e993\";\n}\n.maki2-garden-centre-11:before {\n  content: \"\\e994\";\n}\n.maki2-garden-centre-15:before {\n  content: \"\\e995\";\n}\n.maki2-gift-11:before {\n  content: \"\\e996\";\n}\n.maki2-gift-15:before {\n  content: \"\\e997\";\n}\n.maki2-globe-11:before {\n  content: \"\\e998\";\n}\n.maki2-globe-15:before {\n  content: \"\\e999\";\n}\n.maki2-golf-11:before {\n  content: \"\\e99a\";\n}\n.maki2-golf-15:before {\n  content: \"\\e99b\";\n}\n.maki2-grocery-11:before {\n  content: \"\\e99c\";\n}\n.maki2-grocery-15:before {\n  content: \"\\e99d\";\n}\n.maki2-hairdresser-11:before {\n  content: \"\\e99e\";\n}\n.maki2-hairdresser-15:before {\n  content: \"\\e99f\";\n}\n.maki2-harbor-11:before {\n  content: \"\\e9a0\";\n}\n.maki2-harbor-15:before {\n  content: \"\\e9a1\";\n}\n.maki2-hardware-11:before {\n  content: \"\\e9a2\";\n}\n.maki2-hardware-15:before {\n  content: \"\\e9a3\";\n}\n.maki2-heart-11:before {\n  content: \"\\e9a4\";\n}\n.maki2-heart-15:before {\n  content: \"\\e9a5\";\n}\n.maki2-heliport-11:before {\n  content: \"\\e9a6\";\n}\n.maki2-heliport-15:before {\n  content: \"\\e9a7\";\n}\n.maki2-home-11:before {\n  content: \"\\e9a8\";\n}\n.maki2-home-15:before {\n  content: \"\\e9a9\";\n}\n.maki2-horse-riding-11:before {\n  content: \"\\e9aa\";\n}\n.maki2-horse-riding-15:before {\n  content: \"\\e9ab\";\n}\n.maki2-hospital-11:before {\n  content: \"\\e9ac\";\n}\n.maki2-hospital-15:before {\n  content: \"\\e9ad\";\n}\n.maki2-hospital-JP-11:before {\n  content: \"\\e9ae\";\n}\n.maki2-hospital-JP-15:before {\n  content: \"\\e9af\";\n}\n.maki2-ice-cream-11:before {\n  content: \"\\e9b0\";\n}\n.maki2-ice-cream-15:before {\n  content: \"\\e9b1\";\n}\n.maki2-industry-11:before {\n  content: \"\\e9b2\";\n}\n.maki2-industry-15:before {\n  content: \"\\e9b3\";\n}\n.maki2-information-11:before {\n  content: \"\\e9b4\";\n}\n.maki2-information-15:before {\n  content: \"\\e9b5\";\n}\n.maki2-jewelry-store-11:before {\n  content: \"\\e9b6\";\n}\n.maki2-jewelry-store-15:before {\n  content: \"\\e9b7\";\n}\n.maki2-karaoke-11:before {\n  content: \"\\e9b8\";\n}\n.maki2-karaoke-15:before {\n  content: \"\\e9b9\";\n}\n.maki2-landmark-11:before {\n  content: \"\\e9ba\";\n}\n.maki2-landmark-15:before {\n  content: \"\\e9bb\";\n}\n.maki2-landmark-JP-11:before {\n  content: \"\\e9bc\";\n}\n.maki2-landmark-JP-15:before {\n  content: \"\\e9bd\";\n}\n.maki2-landuse-11:before {\n  content: \"\\e9be\";\n}\n.maki2-landuse-15:before {\n  content: \"\\e9bf\";\n}\n.maki2-laundry-11:before {\n  content: \"\\e9c0\";\n}\n.maki2-laundry-15:before {\n  content: \"\\e9c1\";\n}\n.maki2-library-11:before {\n  content: \"\\e9c2\";\n}\n.maki2-library-15:before {\n  content: \"\\e9c3\";\n}\n.maki2-lighthouse-11:before {\n  content: \"\\e9c4\";\n}\n.maki2-lighthouse-15:before {\n  content: \"\\e9c5\";\n}\n.maki2-lodging-11:before {\n  content: \"\\e9c6\";\n}\n.maki2-lodging-15:before {\n  content: \"\\e9c7\";\n}\n.maki2-logging-11:before {\n  content: \"\\e9c8\";\n}\n.maki2-logging-15:before {\n  content: \"\\e9c9\";\n}\n.maki2-marker-11:before {\n  content: \"\\e9ca\";\n}\n.maki2-marker-15:before {\n  content: \"\\e9cb\";\n}\n.maki2-marker-stroked-11:before {\n  content: \"\\e9cc\";\n}\n.maki2-marker-stroked-15:before {\n  content: \"\\e9cd\";\n}\n.maki2-mobile-phone-11:before {\n  content: \"\\e9ce\";\n}\n.maki2-mobile-phone-15:before {\n  content: \"\\e9cf\";\n}\n.maki2-monument-11:before {\n  content: \"\\e9d0\";\n}\n.maki2-monument-15:before {\n  content: \"\\e9d1\";\n}\n.maki2-mountain-11:before {\n  content: \"\\e9d2\";\n}\n.maki2-mountain-15:before {\n  content: \"\\e9d3\";\n}\n.maki2-museum-11:before {\n  content: \"\\e9d4\";\n}\n.maki2-museum-15:before {\n  content: \"\\e9d5\";\n}\n.maki2-music-11:before {\n  content: \"\\e9d6\";\n}\n.maki2-music-15:before {\n  content: \"\\e9d7\";\n}\n.maki2-natural-11:before {\n  content: \"\\e9d8\";\n}\n.maki2-natural-15:before {\n  content: \"\\e9d9\";\n}\n.maki2-optician-11:before {\n  content: \"\\e9da\";\n}\n.maki2-optician-15:before {\n  content: \"\\e9db\";\n}\n.maki2-paint-11:before {\n  content: \"\\e9dc\";\n}\n.maki2-paint-15:before {\n  content: \"\\e9dd\";\n}\n.maki2-park-11:before {\n  content: \"\\e9de\";\n}\n.maki2-park-15:before {\n  content: \"\\e9df\";\n}\n.maki2-park-alt1-11:before {\n  content: \"\\e9e0\";\n}\n.maki2-park-alt1-15:before {\n  content: \"\\e9e1\";\n}\n.maki2-parking-11:before {\n  content: \"\\e9e2\";\n}\n.maki2-parking-15:before {\n  content: \"\\e9e3\";\n}\n.maki2-parking-garage-11:before {\n  content: \"\\e9e4\";\n}\n.maki2-parking-garage-15:before {\n  content: \"\\e9e5\";\n}\n.maki2-pharmacy-11:before {\n  content: \"\\e9e6\";\n}\n.maki2-pharmacy-15:before {\n  content: \"\\e9e7\";\n}\n.maki2-picnic-site-11:before {\n  content: \"\\e9e8\";\n}\n.maki2-picnic-site-15:before {\n  content: \"\\e9e9\";\n}\n.maki2-pitch-11:before {\n  content: \"\\e9ea\";\n}\n.maki2-pitch-15:before {\n  content: \"\\e9eb\";\n}\n.maki2-place-of-worship-11:before {\n  content: \"\\e9ec\";\n}\n.maki2-place-of-worship-15:before {\n  content: \"\\e9ed\";\n}\n.maki2-playground-11:before {\n  content: \"\\e9ee\";\n}\n.maki2-playground-15:before {\n  content: \"\\e9ef\";\n}\n.maki2-police-11:before {\n  content: \"\\e9f0\";\n}\n.maki2-police-15:before {\n  content: \"\\e9f1\";\n}\n.maki2-police-JP-11:before {\n  content: \"\\e9f2\";\n}\n.maki2-police-JP-15:before {\n  content: \"\\e9f3\";\n}\n.maki2-post-11:before {\n  content: \"\\e9f4\";\n}\n.maki2-post-15:before {\n  content: \"\\e9f5\";\n}\n.maki2-post-JP-11:before {\n  content: \"\\e9f6\";\n}\n.maki2-post-JP-15:before {\n  content: \"\\e9f7\";\n}\n.maki2-prison-11:before {\n  content: \"\\e9f8\";\n}\n.maki2-prison-15:before {\n  content: \"\\e9f9\";\n}\n.maki2-rail-11:before {\n  content: \"\\e9fa\";\n}\n.maki2-rail-15:before {\n  content: \"\\e9fb\";\n}\n.maki2-rail-light-11:before {\n  content: \"\\e9fc\";\n}\n.maki2-rail-light-15:before {\n  content: \"\\e9fd\";\n}\n.maki2-rail-metro-11:before {\n  content: \"\\e9fe\";\n}\n.maki2-rail-metro-15:before {\n  content: \"\\e9ff\";\n}\n.maki2-ranger-station-11:before {\n  content: \"\\ea00\";\n}\n.maki2-ranger-station-15:before {\n  content: \"\\ea01\";\n}\n.maki2-recycling-11:before {\n  content: \"\\ea02\";\n}\n.maki2-recycling-15:before {\n  content: \"\\ea03\";\n}\n.maki2-religious-buddhist-11:before {\n  content: \"\\ea04\";\n}\n.maki2-religious-buddhist-15:before {\n  content: \"\\ea05\";\n}\n.maki2-religious-christian-11:before {\n  content: \"\\ea06\";\n}\n.maki2-religious-christian-15:before {\n  content: \"\\ea07\";\n}\n.maki2-religious-jewish-11:before {\n  content: \"\\ea08\";\n}\n.maki2-religious-jewish-15:before {\n  content: \"\\ea09\";\n}\n.maki2-religious-muslim-11:before {\n  content: \"\\ea0a\";\n}\n.maki2-religious-muslim-15:before {\n  content: \"\\ea0b\";\n}\n.maki2-religious-shinto-11:before {\n  content: \"\\ea0c\";\n}\n.maki2-religious-shinto-15:before {\n  content: \"\\ea0d\";\n}\n.maki2-residential-community-11:before {\n  content: \"\\ea0e\";\n}\n.maki2-residential-community-15:before {\n  content: \"\\ea0f\";\n}\n.maki2-restaurant-11:before {\n  content: \"\\ea10\";\n}\n.maki2-restaurant-15:before {\n  content: \"\\ea11\";\n}\n.maki2-restaurant-noodle-11:before {\n  content: \"\\ea12\";\n}\n.maki2-restaurant-noodle-15:before {\n  content: \"\\ea13\";\n}\n.maki2-restaurant-pizza-11:before {\n  content: \"\\ea14\";\n}\n.maki2-restaurant-pizza-15:before {\n  content: \"\\ea15\";\n}\n.maki2-restaurant-seafood-11:before {\n  content: \"\\ea16\";\n}\n.maki2-restaurant-seafood-15:before {\n  content: \"\\ea17\";\n}\n.maki2-roadblock-11:before {\n  content: \"\\ea18\";\n}\n.maki2-roadblock-15:before {\n  content: \"\\ea19\";\n}\n.maki2-rocket-11:before {\n  content: \"\\ea1a\";\n}\n.maki2-rocket-15:before {\n  content: \"\\ea1b\";\n}\n.maki2-school-11:before {\n  content: \"\\ea1c\";\n}\n.maki2-school-15:before {\n  content: \"\\ea1d\";\n}\n.maki2-school-JP-11:before {\n  content: \"\\ea1e\";\n}\n.maki2-school-JP-15:before {\n  content: \"\\ea1f\";\n}\n.maki2-scooter-11:before {\n  content: \"\\ea20\";\n}\n.maki2-scooter-15:before {\n  content: \"\\ea21\";\n}\n.maki2-shelter-11:before {\n  content: \"\\ea22\";\n}\n.maki2-shelter-15:before {\n  content: \"\\ea23\";\n}\n.maki2-shoe-11:before {\n  content: \"\\ea24\";\n}\n.maki2-shoe-15:before {\n  content: \"\\ea25\";\n}\n.maki2-shop-11:before {\n  content: \"\\ea26\";\n}\n.maki2-shop-15:before {\n  content: \"\\ea27\";\n}\n.maki2-skateboard-11:before {\n  content: \"\\ea28\";\n}\n.maki2-skateboard-15:before {\n  content: \"\\ea29\";\n}\n.maki2-skiing-11:before {\n  content: \"\\ea2a\";\n}\n.maki2-skiing-15:before {\n  content: \"\\ea2b\";\n}\n.maki2-slaughterhouse-11:before {\n  content: \"\\ea2c\";\n}\n.maki2-slaughterhouse-15:before {\n  content: \"\\ea2d\";\n}\n.maki2-slipway-11:before {\n  content: \"\\ea2e\";\n}\n.maki2-slipway-15:before {\n  content: \"\\ea2f\";\n}\n.maki2-snowmobile-11:before {\n  content: \"\\ea30\";\n}\n.maki2-snowmobile-15:before {\n  content: \"\\ea31\";\n}\n.maki2-soccer-11:before {\n  content: \"\\ea32\";\n}\n.maki2-soccer-15:before {\n  content: \"\\ea33\";\n}\n.maki2-square-11:before {\n  content: \"\\ea34\";\n}\n.maki2-square-15:before {\n  content: \"\\ea35\";\n}\n.maki2-square-stroked-11:before {\n  content: \"\\ea36\";\n}\n.maki2-square-stroked-15:before {\n  content: \"\\ea37\";\n}\n.maki2-stadium-11:before {\n  content: \"\\ea38\";\n}\n.maki2-stadium-15:before {\n  content: \"\\ea39\";\n}\n.maki2-star-11:before {\n  content: \"\\ea3a\";\n}\n.maki2-star-15:before {\n  content: \"\\ea3b\";\n}\n.maki2-star-stroked-11:before {\n  content: \"\\ea3c\";\n}\n.maki2-star-stroked-15:before {\n  content: \"\\ea3d\";\n}\n.maki2-suitcase-11:before {\n  content: \"\\ea3e\";\n}\n.maki2-suitcase-15:before {\n  content: \"\\ea3f\";\n}\n.maki2-sushi-11:before {\n  content: \"\\ea40\";\n}\n.maki2-sushi-15:before {\n  content: \"\\ea41\";\n}\n.maki2-swimming-11:before {\n  content: \"\\ea42\";\n}\n.maki2-swimming-15:before {\n  content: \"\\ea43\";\n}\n.maki2-table-tennis-11:before {\n  content: \"\\ea44\";\n}\n.maki2-table-tennis-15:before {\n  content: \"\\ea45\";\n}\n.maki2-teahouse-11:before {\n  content: \"\\ea46\";\n}\n.maki2-teahouse-15:before {\n  content: \"\\ea47\";\n}\n.maki2-telephone-11:before {\n  content: \"\\ea48\";\n}\n.maki2-telephone-15:before {\n  content: \"\\ea49\";\n}\n.maki2-tennis-11:before {\n  content: \"\\ea4a\";\n}\n.maki2-tennis-15:before {\n  content: \"\\ea4b\";\n}\n.maki2-theatre-11:before {\n  content: \"\\ea4c\";\n}\n.maki2-theatre-15:before {\n  content: \"\\ea4d\";\n}\n.maki2-toilet-11:before {\n  content: \"\\ea4e\";\n}\n.maki2-toilet-15:before {\n  content: \"\\ea4f\";\n}\n.maki2-town-11:before {\n  content: \"\\ea50\";\n}\n.maki2-town-15:before {\n  content: \"\\ea51\";\n}\n.maki2-town-hall-11:before {\n  content: \"\\ea52\";\n}\n.maki2-town-hall-15:before {\n  content: \"\\ea53\";\n}\n.maki2-triangle-11:before {\n  content: \"\\ea54\";\n}\n.maki2-triangle-15:before {\n  content: \"\\ea55\";\n}\n.maki2-triangle-stroked-11:before {\n  content: \"\\ea56\";\n}\n.maki2-triangle-stroked-15:before {\n  content: \"\\ea57\";\n}\n.maki2-veterinary-11:before {\n  content: \"\\ea58\";\n}\n.maki2-veterinary-15:before {\n  content: \"\\ea59\";\n}\n.maki2-viewpoint-11:before {\n  content: \"\\ea5a\";\n}\n.maki2-viewpoint-15:before {\n  content: \"\\ea5b\";\n}\n.maki2-village-11:before {\n  content: \"\\ea5c\";\n}\n.maki2-village-15:before {\n  content: \"\\ea5d\";\n}\n.maki2-volcano-11:before {\n  content: \"\\ea5e\";\n}\n.maki2-volcano-15:before {\n  content: \"\\ea5f\";\n}\n.maki2-volleyball-11:before {\n  content: \"\\ea60\";\n}\n.maki2-volleyball-15:before {\n  content: \"\\ea61\";\n}\n.maki2-warehouse-11:before {\n  content: \"\\ea62\";\n}\n.maki2-warehouse-15:before {\n  content: \"\\ea63\";\n}\n.maki2-waste-basket-11:before {\n  content: \"\\ea64\";\n}\n.maki2-waste-basket-15:before {\n  content: \"\\ea65\";\n}\n.maki2-watch-11:before {\n  content: \"\\ea66\";\n}\n.maki2-watch-15:before {\n  content: \"\\ea67\";\n}\n.maki2-water-11:before {\n  content: \"\\ea68\";\n}\n.maki2-water-15:before {\n  content: \"\\ea69\";\n}\n.maki2-waterfall-11:before {\n  content: \"\\ea6a\";\n}\n.maki2-waterfall-15:before {\n  content: \"\\ea6b\";\n}\n.maki2-watermill-11:before {\n  content: \"\\ea6c\";\n}\n.maki2-watermill-15:before {\n  content: \"\\ea6d\";\n}\n.maki2-wetland-11:before {\n  content: \"\\ea6e\";\n}\n.maki2-wetland-15:before {\n  content: \"\\ea6f\";\n}\n.maki2-wheelchair-11:before {\n  content: \"\\ea70\";\n}\n.maki2-wheelchair-15:before {\n  content: \"\\ea71\";\n}\n.maki2-windmill-11:before {\n  content: \"\\ea72\";\n}\n.maki2-windmill-15:before {\n  content: \"\\ea73\";\n}\n.maki2-zoo-11:before {\n  content: \"\\ea74\";\n}\n.maki2-zoo-15:before {\n  content: \"\\ea75\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-mapicons-pack/ikonli-mapicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-mapicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.mapicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.mapicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.mapicons.MapiconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.mapicons.MapiconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-mapicons-pack/src/main/java/org/kordamp/ikonli/mapicons/Mapicons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.mapicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Mapicons implements Ikon {\n    ABSEILING(\"map-icon-abseiling\", '\\ue800'),\n    ACCOUNTING(\"map-icon-accounting\", '\\ue801'),\n    AIRPORT(\"map-icon-airport\", '\\ue802'),\n    AMUSEMENT_PARK(\"map-icon-amusement-park\", '\\ue803'),\n    AQUARIUM(\"map-icon-aquarium\", '\\ue804'),\n    ARCHERY(\"map-icon-archery\", '\\ue805'),\n    ART_GALLERY(\"map-icon-art-gallery\", '\\ue806'),\n    ASSISTIVE_LISTENING_SYSTEM(\"map-icon-assistive-listening-system\", '\\ue807'),\n    ATM(\"map-icon-atm\", '\\ue808'),\n    AUDIO_DESCRIPTION(\"map-icon-audio-description\", '\\ue809'),\n    BAKERY(\"map-icon-bakery\", '\\ue80a'),\n    BANK(\"map-icon-bank\", '\\ue80b'),\n    BAR(\"map-icon-bar\", '\\ue80c'),\n    BASEBALL(\"map-icon-baseball\", '\\ue80d'),\n    BEAUTY_SALON(\"map-icon-beauty-salon\", '\\ue80e'),\n    BICYCLE_STORE(\"map-icon-bicycle-store\", '\\ue80f'),\n    BICYCLING(\"map-icon-bicycling\", '\\ue810'),\n    BOATING(\"map-icon-boating\", '\\ue813'),\n    BOAT_RAMP(\"map-icon-boat-ramp\", '\\ue811'),\n    BOAT_TOUR(\"map-icon-boat-tour\", '\\ue812'),\n    BOOK_STORE(\"map-icon-book-store\", '\\ue814'),\n    BOWLING_ALLEY(\"map-icon-bowling-alley\", '\\ue815'),\n    BRAILLE(\"map-icon-braille\", '\\ue816'),\n    BUS_STATION(\"map-icon-bus-station\", '\\ue817'),\n    CAFE(\"map-icon-cafe\", '\\ue818'),\n    CAMPGROUND(\"map-icon-campground\", '\\ue819'),\n    CANOE(\"map-icon-canoe\", '\\ue81a'),\n    CAR_DEALER(\"map-icon-car-dealer\", '\\ue81b'),\n    CAR_RENTAL(\"map-icon-car-rental\", '\\ue81c'),\n    CAR_REPAIR(\"map-icon-car-repair\", '\\ue81d'),\n    CAR_WASH(\"map-icon-car-wash\", '\\ue81e'),\n    CASINO(\"map-icon-casino\", '\\ue81f'),\n    CEMETERY(\"map-icon-cemetery\", '\\ue820'),\n    CHAIRLIFT(\"map-icon-chairlift\", '\\ue821'),\n    CHURCH(\"map-icon-church\", '\\ue822'),\n    CIRCLE(\"map-icon-circle\", '\\ue823'),\n    CITY_HALL(\"map-icon-city-hall\", '\\ue824'),\n    CLIMBING(\"map-icon-climbing\", '\\ue825'),\n    CLOSED_CAPTIONING(\"map-icon-closed-captioning\", '\\ue826'),\n    CLOTHING_STORE(\"map-icon-clothing-store\", '\\ue827'),\n    COMPASS(\"map-icon-compass\", '\\ue828'),\n    CONVENIENCE_STORE(\"map-icon-convenience-store\", '\\ue829'),\n    COURTHOUSE(\"map-icon-courthouse\", '\\ue82a'),\n    CROSSHAIRS(\"map-icon-crosshairs\", '\\ue82c'),\n    CROSS_COUNTRY_SKIING(\"map-icon-cross-country-skiing\", '\\ue82b'),\n    DENTIST(\"map-icon-dentist\", '\\ue82d'),\n    DEPARTMENT_STORE(\"map-icon-department-store\", '\\ue82e'),\n    DIVING(\"map-icon-diving\", '\\ue82f'),\n    DOCTOR(\"map-icon-doctor\", '\\ue830'),\n    ELECTRICIAN(\"map-icon-electrician\", '\\ue831'),\n    ELECTRONICS_STORE(\"map-icon-electronics-store\", '\\ue832'),\n    EMBASSY(\"map-icon-embassy\", '\\ue833'),\n    EXPAND(\"map-icon-expand\", '\\ue834'),\n    FEMALE(\"map-icon-female\", '\\ue835'),\n    FINANCE(\"map-icon-finance\", '\\ue836'),\n    FIRE_STATION(\"map-icon-fire-station\", '\\ue837'),\n    FISHING(\"map-icon-fishing\", '\\ue83a'),\n    FISHING_PIER(\"map-icon-fishing-pier\", '\\ue839'),\n    FISH_CLEANING(\"map-icon-fish-cleaning\", '\\ue838'),\n    FLORIST(\"map-icon-florist\", '\\ue83b'),\n    FOOD(\"map-icon-food\", '\\ue83c'),\n    FULLSCREEN(\"map-icon-fullscreen\", '\\ue83d'),\n    FUNERAL_HOME(\"map-icon-funeral-home\", '\\ue83e'),\n    FURNITURE_STORE(\"map-icon-furniture-store\", '\\ue83f'),\n    GAS_STATION(\"map-icon-gas-station\", '\\ue840'),\n    GENERAL_CONTRACTOR(\"map-icon-general-contractor\", '\\ue841'),\n    GOLF(\"map-icon-golf\", '\\ue842'),\n    GROCERY_OR_SUPERMARKET(\"map-icon-grocery-or-supermarket\", '\\ue843'),\n    GYM(\"map-icon-gym\", '\\ue844'),\n    HAIR_CARE(\"map-icon-hair-care\", '\\ue845'),\n    HANG_GLIDING(\"map-icon-hang-gliding\", '\\ue846'),\n    HARDWARE_STORE(\"map-icon-hardware-store\", '\\ue847'),\n    HEALTH(\"map-icon-health\", '\\ue848'),\n    HINDU_TEMPLE(\"map-icon-hindu-temple\", '\\ue849'),\n    HORSE_RIDING(\"map-icon-horse-riding\", '\\ue84a'),\n    HOSPITAL(\"map-icon-hospital\", '\\ue84b'),\n    ICE_FISHING(\"map-icon-ice-fishing\", '\\ue84c'),\n    ICE_SKATING(\"map-icon-ice-skating\", '\\ue84d'),\n    INLINE_SKATING(\"map-icon-inline-skating\", '\\ue84e'),\n    INSURANCE_AGENCY(\"map-icon-insurance-agency\", '\\ue84f'),\n    JET_SKIING(\"map-icon-jet-skiing\", '\\ue850'),\n    JEWELRY_STORE(\"map-icon-jewelry-store\", '\\ue851'),\n    KAYAKING(\"map-icon-kayaking\", '\\ue852'),\n    LAUNDRY(\"map-icon-laundry\", '\\ue853'),\n    LAWYER(\"map-icon-lawyer\", '\\ue854'),\n    LIBRARY(\"map-icon-library\", '\\ue855'),\n    LIQUOR_STORE(\"map-icon-liquor-store\", '\\ue856'),\n    LOCAL_GOVERNMENT(\"map-icon-local-government\", '\\ue857'),\n    LOCATION_ARROW(\"map-icon-location-arrow\", '\\ue858'),\n    LOCKSMITH(\"map-icon-locksmith\", '\\ue859'),\n    LODGING(\"map-icon-lodging\", '\\ue85a'),\n    LOW_VISION_ACCESS(\"map-icon-low-vision-access\", '\\ue85b'),\n    MALE(\"map-icon-male\", '\\ue85c'),\n    MAP_PIN(\"map-icon-map-pin\", '\\ue85d'),\n    MARINA(\"map-icon-marina\", '\\ue85e'),\n    MOSQUE(\"map-icon-mosque\", '\\ue85f'),\n    MOTOBIKE_TRAIL(\"map-icon-motobike-trail\", '\\ue860'),\n    MOVIE_RENTAL(\"map-icon-movie-rental\", '\\ue861'),\n    MOVIE_THEATER(\"map-icon-movie-theater\", '\\ue862'),\n    MOVING_COMPANY(\"map-icon-moving-company\", '\\ue863'),\n    MUSEUM(\"map-icon-museum\", '\\ue864'),\n    NATURAL_FEATURE(\"map-icon-natural-feature\", '\\ue865'),\n    NIGHT_CLUB(\"map-icon-night-club\", '\\ue866'),\n    OPEN_CAPTIONING(\"map-icon-open-captioning\", '\\ue867'),\n    PAINTER(\"map-icon-painter\", '\\ue868'),\n    PARK(\"map-icon-park\", '\\ue869'),\n    PARKING(\"map-icon-parking\", '\\ue86a'),\n    PET_STORE(\"map-icon-pet-store\", '\\ue86b'),\n    PHARMACY(\"map-icon-pharmacy\", '\\ue86c'),\n    PHYSIOTHERAPIST(\"map-icon-physiotherapist\", '\\ue86d'),\n    PLACE_OF_WORSHIP(\"map-icon-place-of-worship\", '\\ue86e'),\n    PLAYGROUND(\"map-icon-playground\", '\\ue86f'),\n    PLUMBER(\"map-icon-plumber\", '\\ue870'),\n    POINT_OF_INTEREST(\"map-icon-point-of-interest\", '\\ue871'),\n    POLICE(\"map-icon-police\", '\\ue872'),\n    POLITICAL(\"map-icon-political\", '\\ue873'),\n    POSTAL_CODE(\"map-icon-postal-code\", '\\ue877'),\n    POSTAL_CODE_PREFIX(\"map-icon-postal-code-prefix\", '\\ue876'),\n    POST_BOX(\"map-icon-post-box\", '\\ue874'),\n    POST_OFFICE(\"map-icon-post-office\", '\\ue875'),\n    RAFTING(\"map-icon-rafting\", '\\ue878'),\n    REAL_ESTATE_AGENCY(\"map-icon-real-estate-agency\", '\\ue879'),\n    RESTAURANT(\"map-icon-restaurant\", '\\ue87a'),\n    ROOFING_CONTRACTOR(\"map-icon-roofing-contractor\", '\\ue87b'),\n    ROUTE(\"map-icon-route\", '\\ue87d'),\n    ROUTE_PIN(\"map-icon-route-pin\", '\\ue87c'),\n    RV_PARK(\"map-icon-rv-park\", '\\ue87e'),\n    SAILING(\"map-icon-sailing\", '\\ue87f'),\n    SCHOOL(\"map-icon-school\", '\\ue880'),\n    SCUBA_DIVING(\"map-icon-scuba-diving\", '\\ue881'),\n    SEARCH(\"map-icon-search\", '\\ue882'),\n    SHIELD(\"map-icon-shield\", '\\ue883'),\n    SHOPPING_MALL(\"map-icon-shopping-mall\", '\\ue884'),\n    SIGN_LANGUAGE(\"map-icon-sign-language\", '\\ue885'),\n    SKATEBOARDING(\"map-icon-skateboarding\", '\\ue886'),\n    SKIING(\"map-icon-skiing\", '\\ue888'),\n    SKI_JUMPING(\"map-icon-ski-jumping\", '\\ue887'),\n    SLEDDING(\"map-icon-sledding\", '\\ue889'),\n    SNOW(\"map-icon-snow\", '\\ue88b'),\n    SNOWBOARDING(\"map-icon-snowboarding\", '\\ue88c'),\n    SNOWMOBILE(\"map-icon-snowmobile\", '\\ue88d'),\n    SNOW_SHOEING(\"map-icon-snow-shoeing\", '\\ue88a'),\n    SPA(\"map-icon-spa\", '\\ue88e'),\n    SQUARE(\"map-icon-square\", '\\ue891'),\n    SQUARE_PIN(\"map-icon-square-pin\", '\\ue88f'),\n    SQUARE_ROUNDED(\"map-icon-square-rounded\", '\\ue890'),\n    STADIUM(\"map-icon-stadium\", '\\ue892'),\n    STORAGE(\"map-icon-storage\", '\\ue893'),\n    STORE(\"map-icon-store\", '\\ue894'),\n    SUBWAY_STATION(\"map-icon-subway-station\", '\\ue895'),\n    SURFING(\"map-icon-surfing\", '\\ue896'),\n    SWIMMING(\"map-icon-swimming\", '\\ue897'),\n    SYNAGOGUE(\"map-icon-synagogue\", '\\ue898'),\n    TAXI_STAND(\"map-icon-taxi-stand\", '\\ue899'),\n    TENNIS(\"map-icon-tennis\", '\\ue89a'),\n    TOILET(\"map-icon-toilet\", '\\ue89b'),\n    TRAIL_WALKING(\"map-icon-trail-walking\", '\\ue89c'),\n    TRAIN_STATION(\"map-icon-train-station\", '\\ue89d'),\n    TRANSIT_STATION(\"map-icon-transit-station\", '\\ue89e'),\n    TRAVEL_AGENCY(\"map-icon-travel-agency\", '\\ue89f'),\n    UNISEX(\"map-icon-unisex\", '\\ue8a0'),\n    UNIVERSITY(\"map-icon-university\", '\\ue8a1'),\n    VETERINARY_CARE(\"map-icon-veterinary-care\", '\\ue8a2'),\n    VIEWING(\"map-icon-viewing\", '\\ue8a3'),\n    VOLUME_CONTROL_TELEPHONE(\"map-icon-volume-control-telephone\", '\\ue8a4'),\n    WALKING(\"map-icon-walking\", '\\ue8a5'),\n    WATERSKIING(\"map-icon-waterskiing\", '\\ue8a6'),\n    WHALE_WATCHING(\"map-icon-whale-watching\", '\\ue8a7'),\n    WHEELCHAIR(\"map-icon-wheelchair\", '\\ue8a8'),\n    WIND_SURFING(\"map-icon-wind-surfing\", '\\ue8a9'),\n    ZOO(\"map-icon-zoo\", '\\ue8aa'),\n    ZOOM_IN(\"map-icon-zoom-in\", '\\ue8ac'),\n    ZOOM_IN_ALT(\"map-icon-zoom-in-alt\", '\\ue8ab'),\n    ZOOM_OUT(\"map-icon-zoom-out\", '\\ue8ae'),\n    ZOOM_OUT_ALT(\"map-icon-zoom-out-alt\", '\\ue8ad');\n\n    public static Mapicons findByDescription(String description) {\n        for (Mapicons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Mapicons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-mapicons-pack/src/main/java/org/kordamp/ikonli/mapicons/MapiconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.mapicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MapiconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/mapicons/3.0.0/fonts/map-icons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"map-icon-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Mapicons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"map-icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-mapicons-pack/src/main/java/org/kordamp/ikonli/mapicons/MapiconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.mapicons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class MapiconsIkonProvider implements IkonProvider<Mapicons> {\n    @Override\n    public Class<Mapicons> getIkon() {\n        return Mapicons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-mapicons-pack/src/main/resources/META-INF/resources/mapicons/3.0.0/css/map-icons.css",
    "content": "@font-face {\n\tfont-family: 'map-icons';\n\tsrc:url('../fonts/map-icons.eot');\n\tsrc:url('../fonts/map-icons.eot#iefix') format('embedded-opentype'),\n\t\turl('../fonts/map-icons.ttf') format('truetype'),\n\t\turl('../fonts/map-icons.woff') format('woff'),\n\t\turl('../fonts/map-icons.svg#map-icons') format('svg');\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n.map-icon-label .map-icon {\n\tdisplay: block;\n\tfont-size: 24px;\n\tcolor: #FFFFFF;\n\twidth: 48px;\n\tline-height: 48px;\n\ttext-align: center;\n\twhite-space: nowrap;\n}\n\n.map-icon {\n\tfont-family: 'map-icons';\n\tspeak: none;\n\tfont-style: normal;\n\tfont-weight: normal;\n\tfont-variant: normal;\n\ttext-transform: none;\n\tline-height: 1;\n\n\t/* Better Font Rendering =========== */\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n}\n\n.map-icon-abseiling:before {\n\tcontent: \"\\e800\";\n}\n\n.map-icon-accounting:before {\n\tcontent: \"\\e801\";\n}\n\n.map-icon-airport:before {\n\tcontent: \"\\e802\";\n}\n\n.map-icon-amusement-park:before {\n\tcontent: \"\\e803\";\n}\n\n.map-icon-aquarium:before {\n\tcontent: \"\\e804\";\n}\n\n.map-icon-archery:before {\n\tcontent: \"\\e805\";\n}\n\n.map-icon-art-gallery:before {\n\tcontent: \"\\e806\";\n}\n\n.map-icon-assistive-listening-system:before {\n\tcontent: \"\\e807\";\n}\n\n.map-icon-atm:before {\n\tcontent: \"\\e808\";\n}\n\n.map-icon-audio-description:before {\n\tcontent: \"\\e809\";\n}\n\n.map-icon-bakery:before {\n\tcontent: \"\\e80a\";\n}\n\n.map-icon-bank:before {\n\tcontent: \"\\e80b\";\n}\n\n.map-icon-bar:before {\n\tcontent: \"\\e80c\";\n}\n\n.map-icon-baseball:before {\n\tcontent: \"\\e80d\";\n}\n\n.map-icon-beauty-salon:before {\n\tcontent: \"\\e80e\";\n}\n\n.map-icon-bicycle-store:before {\n\tcontent: \"\\e80f\";\n}\n\n.map-icon-bicycling:before {\n\tcontent: \"\\e810\";\n}\n\n.map-icon-boat-ramp:before {\n\tcontent: \"\\e811\";\n}\n\n.map-icon-boat-tour:before {\n\tcontent: \"\\e812\";\n}\n\n.map-icon-boating:before {\n\tcontent: \"\\e813\";\n}\n\n.map-icon-book-store:before {\n\tcontent: \"\\e814\";\n}\n\n.map-icon-bowling-alley:before {\n\tcontent: \"\\e815\";\n}\n\n.map-icon-braille:before {\n\tcontent: \"\\e816\";\n}\n\n.map-icon-bus-station:before {\n\tcontent: \"\\e817\";\n}\n\n.map-icon-cafe:before {\n\tcontent: \"\\e818\";\n}\n\n.map-icon-campground:before {\n\tcontent: \"\\e819\";\n}\n\n.map-icon-canoe:before {\n\tcontent: \"\\e81a\";\n}\n\n.map-icon-car-dealer:before {\n\tcontent: \"\\e81b\";\n}\n\n.map-icon-car-rental:before {\n\tcontent: \"\\e81c\";\n}\n\n.map-icon-car-repair:before {\n\tcontent: \"\\e81d\";\n}\n\n.map-icon-car-wash:before {\n\tcontent: \"\\e81e\";\n}\n\n.map-icon-casino:before {\n\tcontent: \"\\e81f\";\n}\n\n.map-icon-cemetery:before {\n\tcontent: \"\\e820\";\n}\n\n.map-icon-chairlift:before {\n\tcontent: \"\\e821\";\n}\n\n.map-icon-church:before {\n\tcontent: \"\\e822\";\n}\n\n.map-icon-circle:before {\n\tcontent: \"\\e823\";\n}\n\n.map-icon-city-hall:before {\n\tcontent: \"\\e824\";\n}\n\n.map-icon-climbing:before {\n\tcontent: \"\\e825\";\n}\n\n.map-icon-closed-captioning:before {\n\tcontent: \"\\e826\";\n}\n\n.map-icon-clothing-store:before {\n\tcontent: \"\\e827\";\n}\n\n.map-icon-compass:before {\n\tcontent: \"\\e828\";\n}\n\n.map-icon-convenience-store:before {\n\tcontent: \"\\e829\";\n}\n\n.map-icon-courthouse:before {\n\tcontent: \"\\e82a\";\n}\n\n.map-icon-cross-country-skiing:before {\n\tcontent: \"\\e82b\";\n}\n\n.map-icon-crosshairs:before {\n\tcontent: \"\\e82c\";\n}\n\n.map-icon-dentist:before {\n\tcontent: \"\\e82d\";\n}\n\n.map-icon-department-store:before {\n\tcontent: \"\\e82e\";\n}\n\n.map-icon-diving:before {\n\tcontent: \"\\e82f\";\n}\n\n.map-icon-doctor:before {\n\tcontent: \"\\e830\";\n}\n\n.map-icon-electrician:before {\n\tcontent: \"\\e831\";\n}\n\n.map-icon-electronics-store:before {\n\tcontent: \"\\e832\";\n}\n\n.map-icon-embassy:before {\n\tcontent: \"\\e833\";\n}\n\n.map-icon-expand:before {\n\tcontent: \"\\e834\";\n}\n\n.map-icon-female:before {\n\tcontent: \"\\e835\";\n}\n\n.map-icon-finance:before {\n\tcontent: \"\\e836\";\n}\n\n.map-icon-fire-station:before {\n\tcontent: \"\\e837\";\n}\n\n.map-icon-fish-cleaning:before {\n\tcontent: \"\\e838\";\n}\n\n.map-icon-fishing-pier:before {\n\tcontent: \"\\e839\";\n}\n\n.map-icon-fishing:before {\n\tcontent: \"\\e83a\";\n}\n\n.map-icon-florist:before {\n\tcontent: \"\\e83b\";\n}\n\n.map-icon-food:before {\n\tcontent: \"\\e83c\";\n}\n\n.map-icon-fullscreen:before {\n\tcontent: \"\\e83d\";\n}\n\n.map-icon-funeral-home:before {\n\tcontent: \"\\e83e\";\n}\n\n.map-icon-furniture-store:before {\n\tcontent: \"\\e83f\";\n}\n\n.map-icon-gas-station:before {\n\tcontent: \"\\e840\";\n}\n\n.map-icon-general-contractor:before {\n\tcontent: \"\\e841\";\n}\n\n.map-icon-golf:before {\n\tcontent: \"\\e842\";\n}\n\n.map-icon-grocery-or-supermarket:before {\n\tcontent: \"\\e843\";\n}\n\n.map-icon-gym:before {\n\tcontent: \"\\e844\";\n}\n\n.map-icon-hair-care:before {\n\tcontent: \"\\e845\";\n}\n\n.map-icon-hang-gliding:before {\n\tcontent: \"\\e846\";\n}\n\n.map-icon-hardware-store:before {\n\tcontent: \"\\e847\";\n}\n\n.map-icon-health:before {\n\tcontent: \"\\e848\";\n}\n\n.map-icon-hindu-temple:before {\n\tcontent: \"\\e849\";\n}\n\n.map-icon-horse-riding:before {\n\tcontent: \"\\e84a\";\n}\n\n.map-icon-hospital:before {\n\tcontent: \"\\e84b\";\n}\n\n.map-icon-ice-fishing:before {\n\tcontent: \"\\e84c\";\n}\n\n.map-icon-ice-skating:before {\n\tcontent: \"\\e84d\";\n}\n\n.map-icon-inline-skating:before {\n\tcontent: \"\\e84e\";\n}\n\n.map-icon-insurance-agency:before {\n\tcontent: \"\\e84f\";\n}\n\n.map-icon-jet-skiing:before {\n\tcontent: \"\\e850\";\n}\n\n.map-icon-jewelry-store:before {\n\tcontent: \"\\e851\";\n}\n\n.map-icon-kayaking:before {\n\tcontent: \"\\e852\";\n}\n\n.map-icon-laundry:before {\n\tcontent: \"\\e853\";\n}\n\n.map-icon-lawyer:before {\n\tcontent: \"\\e854\";\n}\n\n.map-icon-library:before {\n\tcontent: \"\\e855\";\n}\n\n.map-icon-liquor-store:before {\n\tcontent: \"\\e856\";\n}\n\n.map-icon-local-government:before {\n\tcontent: \"\\e857\";\n}\n\n.map-icon-location-arrow:before {\n\tcontent: \"\\e858\";\n}\n\n.map-icon-locksmith:before {\n\tcontent: \"\\e859\";\n}\n\n.map-icon-lodging:before {\n\tcontent: \"\\e85a\";\n}\n\n.map-icon-low-vision-access:before {\n\tcontent: \"\\e85b\";\n}\n\n.map-icon-male:before {\n\tcontent: \"\\e85c\";\n}\n\n.map-icon-map-pin:before {\n\tcontent: \"\\e85d\";\n}\n\n.map-icon-marina:before {\n\tcontent: \"\\e85e\";\n}\n\n.map-icon-mosque:before {\n\tcontent: \"\\e85f\";\n}\n\n.map-icon-motobike-trail:before {\n\tcontent: \"\\e860\";\n}\n\n.map-icon-movie-rental:before {\n\tcontent: \"\\e861\";\n}\n\n.map-icon-movie-theater:before {\n\tcontent: \"\\e862\";\n}\n\n.map-icon-moving-company:before {\n\tcontent: \"\\e863\";\n}\n\n.map-icon-museum:before {\n\tcontent: \"\\e864\";\n}\n\n.map-icon-natural-feature:before {\n\tcontent: \"\\e865\";\n}\n\n.map-icon-night-club:before {\n\tcontent: \"\\e866\";\n}\n\n.map-icon-open-captioning:before {\n\tcontent: \"\\e867\";\n}\n\n.map-icon-painter:before {\n\tcontent: \"\\e868\";\n}\n\n.map-icon-park:before {\n\tcontent: \"\\e869\";\n}\n\n.map-icon-parking:before {\n\tcontent: \"\\e86a\";\n}\n\n.map-icon-pet-store:before {\n\tcontent: \"\\e86b\";\n}\n\n.map-icon-pharmacy:before {\n\tcontent: \"\\e86c\";\n}\n\n.map-icon-physiotherapist:before {\n\tcontent: \"\\e86d\";\n}\n\n.map-icon-place-of-worship:before {\n\tcontent: \"\\e86e\";\n}\n\n.map-icon-playground:before {\n\tcontent: \"\\e86f\";\n}\n\n.map-icon-plumber:before {\n\tcontent: \"\\e870\";\n}\n\n.map-icon-point-of-interest:before {\n\tcontent: \"\\e871\";\n}\n\n.map-icon-police:before {\n\tcontent: \"\\e872\";\n}\n\n.map-icon-political:before {\n\tcontent: \"\\e873\";\n}\n\n.map-icon-post-box:before {\n\tcontent: \"\\e874\";\n}\n\n.map-icon-post-office:before {\n\tcontent: \"\\e875\";\n}\n\n.map-icon-postal-code-prefix:before {\n\tcontent: \"\\e876\";\n}\n\n.map-icon-postal-code:before {\n\tcontent: \"\\e877\";\n}\n\n.map-icon-rafting:before {\n\tcontent: \"\\e878\";\n}\n\n.map-icon-real-estate-agency:before {\n\tcontent: \"\\e879\";\n}\n\n.map-icon-restaurant:before {\n\tcontent: \"\\e87a\";\n}\n\n.map-icon-roofing-contractor:before {\n\tcontent: \"\\e87b\";\n}\n\n.map-icon-route-pin:before {\n\tcontent: \"\\e87c\";\n}\n\n.map-icon-route:before {\n\tcontent: \"\\e87d\";\n}\n\n.map-icon-rv-park:before {\n\tcontent: \"\\e87e\";\n}\n\n.map-icon-sailing:before {\n\tcontent: \"\\e87f\";\n}\n\n.map-icon-school:before {\n\tcontent: \"\\e880\";\n}\n\n.map-icon-scuba-diving:before {\n\tcontent: \"\\e881\";\n}\n\n.map-icon-search:before {\n\tcontent: \"\\e882\";\n}\n\n.map-icon-shield:before {\n\tcontent: \"\\e883\";\n}\n\n.map-icon-shopping-mall:before {\n\tcontent: \"\\e884\";\n}\n\n.map-icon-sign-language:before {\n\tcontent: \"\\e885\";\n}\n\n.map-icon-skateboarding:before {\n\tcontent: \"\\e886\";\n}\n\n.map-icon-ski-jumping:before {\n\tcontent: \"\\e887\";\n}\n\n.map-icon-skiing:before {\n\tcontent: \"\\e888\";\n}\n\n.map-icon-sledding:before {\n\tcontent: \"\\e889\";\n}\n\n.map-icon-snow-shoeing:before {\n\tcontent: \"\\e88a\";\n}\n\n.map-icon-snow:before {\n\tcontent: \"\\e88b\";\n}\n\n.map-icon-snowboarding:before {\n\tcontent: \"\\e88c\";\n}\n\n.map-icon-snowmobile:before {\n\tcontent: \"\\e88d\";\n}\n\n.map-icon-spa:before {\n\tcontent: \"\\e88e\";\n}\n\n.map-icon-square-pin:before {\n\tcontent: \"\\e88f\";\n}\n\n.map-icon-square-rounded:before {\n\tcontent: \"\\e890\";\n}\n\n.map-icon-square:before {\n\tcontent: \"\\e891\";\n}\n\n.map-icon-stadium:before {\n\tcontent: \"\\e892\";\n}\n\n.map-icon-storage:before {\n\tcontent: \"\\e893\";\n}\n\n.map-icon-store:before {\n\tcontent: \"\\e894\";\n}\n\n.map-icon-subway-station:before {\n\tcontent: \"\\e895\";\n}\n\n.map-icon-surfing:before {\n\tcontent: \"\\e896\";\n}\n\n.map-icon-swimming:before {\n\tcontent: \"\\e897\";\n}\n\n.map-icon-synagogue:before {\n\tcontent: \"\\e898\";\n}\n\n.map-icon-taxi-stand:before {\n\tcontent: \"\\e899\";\n}\n\n.map-icon-tennis:before {\n\tcontent: \"\\e89a\";\n}\n\n.map-icon-toilet:before {\n\tcontent: \"\\e89b\";\n}\n\n.map-icon-trail-walking:before {\n\tcontent: \"\\e89c\";\n}\n\n.map-icon-train-station:before {\n\tcontent: \"\\e89d\";\n}\n\n.map-icon-transit-station:before {\n\tcontent: \"\\e89e\";\n}\n\n.map-icon-travel-agency:before {\n\tcontent: \"\\e89f\";\n}\n\n.map-icon-unisex:before {\n\tcontent: \"\\e8a0\";\n}\n\n.map-icon-university:before {\n\tcontent: \"\\e8a1\";\n}\n\n.map-icon-veterinary-care:before {\n\tcontent: \"\\e8a2\";\n}\n\n.map-icon-viewing:before {\n\tcontent: \"\\e8a3\";\n}\n\n.map-icon-volume-control-telephone:before {\n\tcontent: \"\\e8a4\";\n}\n\n.map-icon-walking:before {\n\tcontent: \"\\e8a5\";\n}\n\n.map-icon-waterskiing:before {\n\tcontent: \"\\e8a6\";\n}\n\n.map-icon-whale-watching:before {\n\tcontent: \"\\e8a7\";\n}\n\n.map-icon-wheelchair:before {\n\tcontent: \"\\e8a8\";\n}\n\n.map-icon-wind-surfing:before {\n\tcontent: \"\\e8a9\";\n}\n\n.map-icon-zoo:before {\n\tcontent: \"\\e8aa\";\n}\n\n.map-icon-zoom-in-alt:before {\n\tcontent: \"\\e8ab\";\n}\n\n.map-icon-zoom-in:before {\n\tcontent: \"\\e8ac\";\n}\n\n.map-icon-zoom-out-alt:before {\n\tcontent: \"\\e8ad\";\n}\n\n.map-icon-zoom-out:before {\n\tcontent: \"\\e8ae\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-material-pack/ikonli-material-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-material-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.material {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.material;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.material.MaterialIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.material.MaterialIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-material-pack/src/main/java/org/kordamp/ikonli/material/Material.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Material implements Ikon {\n    GMI_10K(\"gmi-10k\", '\\ue951'),\n    GMI_10MP(\"gmi-10mp\", '\\ue952'),\n    GMI_11MP(\"gmi-11mp\", '\\ue953'),\n    GMI_12MP(\"gmi-12mp\", '\\ue954'),\n    GMI_13MP(\"gmi-13mp\", '\\ue955'),\n    GMI_14MP(\"gmi-14mp\", '\\ue956'),\n    GMI_15MP(\"gmi-15mp\", '\\ue957'),\n    GMI_16MP(\"gmi-16mp\", '\\ue958'),\n    GMI_17MP(\"gmi-17mp\", '\\ue959'),\n    GMI_18MP(\"gmi-18mp\", '\\ue95a'),\n    GMI_19MP(\"gmi-19mp\", '\\ue95b'),\n    GMI_1K(\"gmi-1k\", '\\ue95c'),\n    GMI_1K_PLUS(\"gmi-1k-plus\", '\\ue95d'),\n    GMI_20MP(\"gmi-20mp\", '\\ue95e'),\n    GMI_21MP(\"gmi-21mp\", '\\ue95f'),\n    GMI_22MP(\"gmi-22mp\", '\\ue960'),\n    GMI_23MP(\"gmi-23mp\", '\\ue961'),\n    GMI_24MP(\"gmi-24mp\", '\\ue962'),\n    GMI_2K(\"gmi-2k\", '\\ue963'),\n    GMI_2K_PLUS(\"gmi-2k-plus\", '\\ue964'),\n    GMI_2MP(\"gmi-2mp\", '\\ue965'),\n    GMI_360(\"gmi-360\", '\\ue577'),\n    GMI_3D_ROTATION(\"gmi-3d-rotation\", '\\ue84d'),\n    GMI_3K(\"gmi-3k\", '\\ue966'),\n    GMI_3K_PLUS(\"gmi-3k-plus\", '\\ue967'),\n    GMI_3MP(\"gmi-3mp\", '\\ue968'),\n    GMI_4K(\"gmi-4k\", '\\ue072'),\n    GMI_4K_PLUS(\"gmi-4k-plus\", '\\ue969'),\n    GMI_4MP(\"gmi-4mp\", '\\ue96a'),\n    GMI_5K(\"gmi-5k\", '\\ue96b'),\n    GMI_5K_PLUS(\"gmi-5k-plus\", '\\ue96c'),\n    GMI_5MP(\"gmi-5mp\", '\\ue96d'),\n    GMI_6K(\"gmi-6k\", '\\ue96e'),\n    GMI_6K_PLUS(\"gmi-6k-plus\", '\\ue96f'),\n    GMI_6MP(\"gmi-6mp\", '\\ue970'),\n    GMI_7K(\"gmi-7k\", '\\ue971'),\n    GMI_7K_PLUS(\"gmi-7k-plus\", '\\ue972'),\n    GMI_7MP(\"gmi-7mp\", '\\ue973'),\n    GMI_8K(\"gmi-8k\", '\\ue974'),\n    GMI_8K_PLUS(\"gmi-8k-plus\", '\\ue975'),\n    GMI_8MP(\"gmi-8mp\", '\\ue976'),\n    GMI_9K(\"gmi-9k\", '\\ue977'),\n    GMI_9K_PLUS(\"gmi-9k-plus\", '\\ue978'),\n    GMI_9MP(\"gmi-9mp\", '\\ue979'),\n    AC_UNIT(\"gmi-ac-unit\", '\\ueb3b'),\n    ACCESS_ALARM(\"gmi-access-alarm\", '\\ue190'),\n    ACCESS_ALARMS(\"gmi-access-alarms\", '\\ue191'),\n    ACCESS_TIME(\"gmi-access-time\", '\\ue192'),\n    ACCESSIBILITY(\"gmi-accessibility\", '\\ue84e'),\n    ACCESSIBILITY_NEW(\"gmi-accessibility-new\", '\\ue92c'),\n    ACCESSIBLE(\"gmi-accessible\", '\\ue914'),\n    ACCESSIBLE_FORWARD(\"gmi-accessible-forward\", '\\ue934'),\n    ACCOUNT_BALANCE(\"gmi-account-balance\", '\\ue84f'),\n    ACCOUNT_BALANCE_WALLET(\"gmi-account-balance-wallet\", '\\ue850'),\n    ACCOUNT_BOX(\"gmi-account-box\", '\\ue851'),\n    ACCOUNT_CIRCLE(\"gmi-account-circle\", '\\ue853'),\n    ACCOUNT_TREE(\"gmi-account-tree\", '\\ue97a'),\n    ADB(\"gmi-adb\", '\\ue60e'),\n    ADD(\"gmi-add\", '\\ue145'),\n    ADD_A_PHOTO(\"gmi-add-a-photo\", '\\ue439'),\n    ADD_ALARM(\"gmi-add-alarm\", '\\ue193'),\n    ADD_ALERT(\"gmi-add-alert\", '\\ue003'),\n    ADD_BOX(\"gmi-add-box\", '\\ue146'),\n    ADD_CALL(\"gmi-add-call\", '\\ue0e8'),\n    ADD_CHART(\"gmi-add-chart\", '\\ue97b'),\n    ADD_CIRCLE(\"gmi-add-circle\", '\\ue147'),\n    ADD_CIRCLE_OUTLINE(\"gmi-add-circle-outline\", '\\ue148'),\n    ADD_COMMENT(\"gmi-add-comment\", '\\ue266'),\n    ADD_IC_CALL(\"gmi-add-ic-call\", '\\ue97c'),\n    ADD_LINK(\"gmi-add-link\", '\\ue178'),\n    ADD_LOCATION(\"gmi-add-location\", '\\ue567'),\n    ADD_MODERATOR(\"gmi-add-moderator\", '\\ue97d'),\n    ADD_PHOTO_ALTERNATE(\"gmi-add-photo-alternate\", '\\ue43e'),\n    ADD_SHOPPING_CART(\"gmi-add-shopping-cart\", '\\ue854'),\n    ADD_TO_HOME_SCREEN(\"gmi-add-to-home-screen\", '\\ue1fe'),\n    ADD_TO_PHOTOS(\"gmi-add-to-photos\", '\\ue39d'),\n    ADD_TO_QUEUE(\"gmi-add-to-queue\", '\\ue05c'),\n    ADJUST(\"gmi-adjust\", '\\ue39e'),\n    AIRLINE_SEAT_FLAT(\"gmi-airline-seat-flat\", '\\ue630'),\n    AIRLINE_SEAT_FLAT_ANGLED(\"gmi-airline-seat-flat-angled\", '\\ue631'),\n    AIRLINE_SEAT_INDIVIDUAL_SUITE(\"gmi-airline-seat-individual-suite\", '\\ue632'),\n    AIRLINE_SEAT_LEGROOM_EXTRA(\"gmi-airline-seat-legroom-extra\", '\\ue633'),\n    AIRLINE_SEAT_LEGROOM_NORMAL(\"gmi-airline-seat-legroom-normal\", '\\ue634'),\n    AIRLINE_SEAT_LEGROOM_REDUCED(\"gmi-airline-seat-legroom-reduced\", '\\ue635'),\n    AIRLINE_SEAT_RECLINE_EXTRA(\"gmi-airline-seat-recline-extra\", '\\ue636'),\n    AIRLINE_SEAT_RECLINE_NORMAL(\"gmi-airline-seat-recline-normal\", '\\ue637'),\n    AIRPLANEMODE_ACTIVE(\"gmi-airplanemode-active\", '\\ue195'),\n    AIRPLANEMODE_INACTIVE(\"gmi-airplanemode-inactive\", '\\ue194'),\n    AIRPLANEMODE_OFF(\"gmi-airplanemode-off\", '\\ue194'),\n    AIRPLANEMODE_ON(\"gmi-airplanemode-on\", '\\ue195'),\n    AIRPLAY(\"gmi-airplay\", '\\ue055'),\n    AIRPORT_SHUTTLE(\"gmi-airport-shuttle\", '\\ueb3c'),\n    ALARM(\"gmi-alarm\", '\\ue855'),\n    ALARM_ADD(\"gmi-alarm-add\", '\\ue856'),\n    ALARM_OFF(\"gmi-alarm-off\", '\\ue857'),\n    ALARM_ON(\"gmi-alarm-on\", '\\ue858'),\n    ALBUM(\"gmi-album\", '\\ue019'),\n    ALL_INBOX(\"gmi-all-inbox\", '\\ue97f'),\n    ALL_INCLUSIVE(\"gmi-all-inclusive\", '\\ueb3d'),\n    ALL_OUT(\"gmi-all-out\", '\\ue90b'),\n    ALTERNATE_EMAIL(\"gmi-alternate-email\", '\\ue0e6'),\n    AMP_STORIES(\"gmi-amp-stories\", '\\uea13'),\n    ANDROID(\"gmi-android\", '\\ue859'),\n    ANNOUNCEMENT(\"gmi-announcement\", '\\ue85a'),\n    APARTMENT(\"gmi-apartment\", '\\uea40'),\n    APPROVAL(\"gmi-approval\", '\\ue982'),\n    APPS(\"gmi-apps\", '\\ue5c3'),\n    ARCHIVE(\"gmi-archive\", '\\ue149'),\n    ARROW_BACK(\"gmi-arrow-back\", '\\ue5c4'),\n    ARROW_BACK_IOS(\"gmi-arrow-back-ios\", '\\ue5e0'),\n    ARROW_DOWNWARD(\"gmi-arrow-downward\", '\\ue5db'),\n    ARROW_DROP_DOWN(\"gmi-arrow-drop-down\", '\\ue5c5'),\n    ARROW_DROP_DOWN_CIRCLE(\"gmi-arrow-drop-down-circle\", '\\ue5c6'),\n    ARROW_DROP_UP(\"gmi-arrow-drop-up\", '\\ue5c7'),\n    ARROW_FORWARD(\"gmi-arrow-forward\", '\\ue5c8'),\n    ARROW_FORWARD_IOS(\"gmi-arrow-forward-ios\", '\\ue5e1'),\n    ARROW_LEFT(\"gmi-arrow-left\", '\\ue5de'),\n    ARROW_RIGHT(\"gmi-arrow-right\", '\\ue5df'),\n    ARROW_RIGHT_ALT(\"gmi-arrow-right-alt\", '\\ue941'),\n    ARROW_UPWARD(\"gmi-arrow-upward\", '\\ue5d8'),\n    ART_TRACK(\"gmi-art-track\", '\\ue060'),\n    ASPECT_RATIO(\"gmi-aspect-ratio\", '\\ue85b'),\n    ASSESSMENT(\"gmi-assessment\", '\\ue85c'),\n    ASSIGNMENT(\"gmi-assignment\", '\\ue85d'),\n    ASSIGNMENT_IND(\"gmi-assignment-ind\", '\\ue85e'),\n    ASSIGNMENT_LATE(\"gmi-assignment-late\", '\\ue85f'),\n    ASSIGNMENT_RETURN(\"gmi-assignment-return\", '\\ue860'),\n    ASSIGNMENT_RETURNED(\"gmi-assignment-returned\", '\\ue861'),\n    ASSIGNMENT_TURNED_IN(\"gmi-assignment-turned-in\", '\\ue862'),\n    ASSISTANT(\"gmi-assistant\", '\\ue39f'),\n    ASSISTANT_DIRECTION(\"gmi-assistant-direction\", '\\ue988'),\n    ASSISTANT_NAVIGATION(\"gmi-assistant-navigation\", '\\ue989'),\n    ASSISTANT_PHOTO(\"gmi-assistant-photo\", '\\ue3a0'),\n    ATM(\"gmi-atm\", '\\ue573'),\n    ATTACH_FILE(\"gmi-attach-file\", '\\ue226'),\n    ATTACH_MONEY(\"gmi-attach-money\", '\\ue227'),\n    ATTACHMENT(\"gmi-attachment\", '\\ue2bc'),\n    ATTRACTIONS(\"gmi-attractions\", '\\uea52'),\n    AUDIOTRACK(\"gmi-audiotrack\", '\\ue3a1'),\n    AUTORENEW(\"gmi-autorenew\", '\\ue863'),\n    AV_TIMER(\"gmi-av-timer\", '\\ue01b'),\n    BACKSPACE(\"gmi-backspace\", '\\ue14a'),\n    BACKUP(\"gmi-backup\", '\\ue864'),\n    BADGE(\"gmi-badge\", '\\uea67'),\n    BAKERY_DINING(\"gmi-bakery-dining\", '\\uea53'),\n    BALLOT(\"gmi-ballot\", '\\ue172'),\n    BAR_CHART(\"gmi-bar-chart\", '\\ue26b'),\n    BATHTUB(\"gmi-bathtub\", '\\uea41'),\n    BATTERY_ALERT(\"gmi-battery-alert\", '\\ue19c'),\n    BATTERY_CHARGING_FULL(\"gmi-battery-charging-full\", '\\ue1a3'),\n    BATTERY_FULL(\"gmi-battery-full\", '\\ue1a4'),\n    BATTERY_STD(\"gmi-battery-std\", '\\ue1a5'),\n    BATTERY_UNKNOWN(\"gmi-battery-unknown\", '\\ue1a6'),\n    BEACH_ACCESS(\"gmi-beach-access\", '\\ueb3e'),\n    BEENHERE(\"gmi-beenhere\", '\\ue52d'),\n    BLOCK(\"gmi-block\", '\\ue14b'),\n    BLUETOOTH(\"gmi-bluetooth\", '\\ue1a7'),\n    BLUETOOTH_AUDIO(\"gmi-bluetooth-audio\", '\\ue60f'),\n    BLUETOOTH_CONNECTED(\"gmi-bluetooth-connected\", '\\ue1a8'),\n    BLUETOOTH_DISABLED(\"gmi-bluetooth-disabled\", '\\ue1a9'),\n    BLUETOOTH_SEARCHING(\"gmi-bluetooth-searching\", '\\ue1aa'),\n    BLUR_CIRCULAR(\"gmi-blur-circular\", '\\ue3a2'),\n    BLUR_LINEAR(\"gmi-blur-linear\", '\\ue3a3'),\n    BLUR_OFF(\"gmi-blur-off\", '\\ue3a4'),\n    BLUR_ON(\"gmi-blur-on\", '\\ue3a5'),\n    BOLT(\"gmi-bolt\", '\\uea0b'),\n    BOOK(\"gmi-book\", '\\ue865'),\n    BOOKMARK(\"gmi-bookmark\", '\\ue866'),\n    BOOKMARK_BORDER(\"gmi-bookmark-border\", '\\ue867'),\n    BOOKMARK_OUTLINE(\"gmi-bookmark-outline\", '\\ue867'),\n    BOOKMARKS(\"gmi-bookmarks\", '\\ue98b'),\n    BORDER_ALL(\"gmi-border-all\", '\\ue228'),\n    BORDER_BOTTOM(\"gmi-border-bottom\", '\\ue229'),\n    BORDER_CLEAR(\"gmi-border-clear\", '\\ue22a'),\n    BORDER_COLOR(\"gmi-border-color\", '\\ue22b'),\n    BORDER_HORIZONTAL(\"gmi-border-horizontal\", '\\ue22c'),\n    BORDER_INNER(\"gmi-border-inner\", '\\ue22d'),\n    BORDER_LEFT(\"gmi-border-left\", '\\ue22e'),\n    BORDER_OUTER(\"gmi-border-outer\", '\\ue22f'),\n    BORDER_RIGHT(\"gmi-border-right\", '\\ue230'),\n    BORDER_STYLE(\"gmi-border-style\", '\\ue231'),\n    BORDER_TOP(\"gmi-border-top\", '\\ue232'),\n    BORDER_VERTICAL(\"gmi-border-vertical\", '\\ue233'),\n    BRANDING_WATERMARK(\"gmi-branding-watermark\", '\\ue06b'),\n    BREAKFAST_DINING(\"gmi-breakfast-dining\", '\\uea54'),\n    BRIGHTNESS_1(\"gmi-brightness-1\", '\\ue3a6'),\n    BRIGHTNESS_2(\"gmi-brightness-2\", '\\ue3a7'),\n    BRIGHTNESS_3(\"gmi-brightness-3\", '\\ue3a8'),\n    BRIGHTNESS_4(\"gmi-brightness-4\", '\\ue3a9'),\n    BRIGHTNESS_5(\"gmi-brightness-5\", '\\ue3aa'),\n    BRIGHTNESS_6(\"gmi-brightness-6\", '\\ue3ab'),\n    BRIGHTNESS_7(\"gmi-brightness-7\", '\\ue3ac'),\n    BRIGHTNESS_AUTO(\"gmi-brightness-auto\", '\\ue1ab'),\n    BRIGHTNESS_HIGH(\"gmi-brightness-high\", '\\ue1ac'),\n    BRIGHTNESS_LOW(\"gmi-brightness-low\", '\\ue1ad'),\n    BRIGHTNESS_MEDIUM(\"gmi-brightness-medium\", '\\ue1ae'),\n    BROKEN_IMAGE(\"gmi-broken-image\", '\\ue3ad'),\n    BRUNCH_DINING(\"gmi-brunch-dining\", '\\uea73'),\n    BRUSH(\"gmi-brush\", '\\ue3ae'),\n    BUBBLE_CHART(\"gmi-bubble-chart\", '\\ue6dd'),\n    BUG_REPORT(\"gmi-bug-report\", '\\ue868'),\n    BUILD(\"gmi-build\", '\\ue869'),\n    BURST_MODE(\"gmi-burst-mode\", '\\ue43c'),\n    BUS_ALERT(\"gmi-bus-alert\", '\\ue98f'),\n    BUSINESS(\"gmi-business\", '\\ue0af'),\n    BUSINESS_CENTER(\"gmi-business-center\", '\\ueb3f'),\n    CACHED(\"gmi-cached\", '\\ue86a'),\n    CAKE(\"gmi-cake\", '\\ue7e9'),\n    CALENDAR_TODAY(\"gmi-calendar-today\", '\\ue935'),\n    CALENDAR_VIEW_DAY(\"gmi-calendar-view-day\", '\\ue936'),\n    CALL(\"gmi-call\", '\\ue0b0'),\n    CALL_END(\"gmi-call-end\", '\\ue0b1'),\n    CALL_MADE(\"gmi-call-made\", '\\ue0b2'),\n    CALL_MERGE(\"gmi-call-merge\", '\\ue0b3'),\n    CALL_MISSED(\"gmi-call-missed\", '\\ue0b4'),\n    CALL_MISSED_OUTGOING(\"gmi-call-missed-outgoing\", '\\ue0e4'),\n    CALL_RECEIVED(\"gmi-call-received\", '\\ue0b5'),\n    CALL_SPLIT(\"gmi-call-split\", '\\ue0b6'),\n    CALL_TO_ACTION(\"gmi-call-to-action\", '\\ue06c'),\n    CAMERA(\"gmi-camera\", '\\ue3af'),\n    CAMERA_ALT(\"gmi-camera-alt\", '\\ue3b0'),\n    CAMERA_ENHANCE(\"gmi-camera-enhance\", '\\ue8fc'),\n    CAMERA_FRONT(\"gmi-camera-front\", '\\ue3b1'),\n    CAMERA_REAR(\"gmi-camera-rear\", '\\ue3b2'),\n    CAMERA_ROLL(\"gmi-camera-roll\", '\\ue3b3'),\n    CANCEL(\"gmi-cancel\", '\\ue5c9'),\n    CANCEL_PRESENTATION(\"gmi-cancel-presentation\", '\\ue0e9'),\n    CANCEL_SCHEDULE_SEND(\"gmi-cancel-schedule-send\", '\\uea39'),\n    CAR_RENTAL(\"gmi-car-rental\", '\\uea55'),\n    CAR_REPAIR(\"gmi-car-repair\", '\\uea56'),\n    CARD_GIFTCARD(\"gmi-card-giftcard\", '\\ue8f6'),\n    CARD_MEMBERSHIP(\"gmi-card-membership\", '\\ue8f7'),\n    CARD_TRAVEL(\"gmi-card-travel\", '\\ue8f8'),\n    CASES(\"gmi-cases\", '\\ue992'),\n    CASINO(\"gmi-casino\", '\\ueb40'),\n    CAST(\"gmi-cast\", '\\ue307'),\n    CAST_CONNECTED(\"gmi-cast-connected\", '\\ue308'),\n    CATEGORY(\"gmi-category\", '\\ue574'),\n    CELEBRATION(\"gmi-celebration\", '\\uea65'),\n    CELL_WIFI(\"gmi-cell-wifi\", '\\ue0ec'),\n    CENTER_FOCUS_STRONG(\"gmi-center-focus-strong\", '\\ue3b4'),\n    CENTER_FOCUS_WEAK(\"gmi-center-focus-weak\", '\\ue3b5'),\n    CHANGE_HISTORY(\"gmi-change-history\", '\\ue86b'),\n    CHAT(\"gmi-chat\", '\\ue0b7'),\n    CHAT_BUBBLE(\"gmi-chat-bubble\", '\\ue0ca'),\n    CHAT_BUBBLE_OUTLINE(\"gmi-chat-bubble-outline\", '\\ue0cb'),\n    CHECK(\"gmi-check\", '\\ue5ca'),\n    CHECK_BOX(\"gmi-check-box\", '\\ue834'),\n    CHECK_BOX_OUTLINE_BLANK(\"gmi-check-box-outline-blank\", '\\ue835'),\n    CHECK_CIRCLE(\"gmi-check-circle\", '\\ue86c'),\n    CHECK_CIRCLE_OUTLINE(\"gmi-check-circle-outline\", '\\ue92d'),\n    CHEVRON_LEFT(\"gmi-chevron-left\", '\\ue5cb'),\n    CHEVRON_RIGHT(\"gmi-chevron-right\", '\\ue5cc'),\n    CHILD_CARE(\"gmi-child-care\", '\\ueb41'),\n    CHILD_FRIENDLY(\"gmi-child-friendly\", '\\ueb42'),\n    CHROME_READER_MODE(\"gmi-chrome-reader-mode\", '\\ue86d'),\n    CIRCLE_NOTIFICATIONS(\"gmi-circle-notifications\", '\\ue994'),\n    CLASS(\"gmi-class\", '\\ue86e'),\n    CLEAR(\"gmi-clear\", '\\ue14c'),\n    CLEAR_ALL(\"gmi-clear-all\", '\\ue0b8'),\n    CLOSE(\"gmi-close\", '\\ue5cd'),\n    CLOSED_CAPTION(\"gmi-closed-caption\", '\\ue01c'),\n    CLOSED_CAPTION_OFF(\"gmi-closed-caption-off\", '\\ue996'),\n    CLOUD(\"gmi-cloud\", '\\ue2bd'),\n    CLOUD_CIRCLE(\"gmi-cloud-circle\", '\\ue2be'),\n    CLOUD_DONE(\"gmi-cloud-done\", '\\ue2bf'),\n    CLOUD_DOWNLOAD(\"gmi-cloud-download\", '\\ue2c0'),\n    CLOUD_OFF(\"gmi-cloud-off\", '\\ue2c1'),\n    CLOUD_QUEUE(\"gmi-cloud-queue\", '\\ue2c2'),\n    CLOUD_UPLOAD(\"gmi-cloud-upload\", '\\ue2c3'),\n    CODE(\"gmi-code\", '\\ue86f'),\n    COLLECTIONS(\"gmi-collections\", '\\ue3b6'),\n    COLLECTIONS_BOOKMARK(\"gmi-collections-bookmark\", '\\ue431'),\n    COLOR_LENS(\"gmi-color-lens\", '\\ue3b7'),\n    COLORIZE(\"gmi-colorize\", '\\ue3b8'),\n    COMMENT(\"gmi-comment\", '\\ue0b9'),\n    COMMUTE(\"gmi-commute\", '\\ue940'),\n    COMPARE(\"gmi-compare\", '\\ue3b9'),\n    COMPARE_ARROWS(\"gmi-compare-arrows\", '\\ue915'),\n    COMPASS_CALIBRATION(\"gmi-compass-calibration\", '\\ue57c'),\n    COMPRESS(\"gmi-compress\", '\\ue94d'),\n    COMPUTER(\"gmi-computer\", '\\ue30a'),\n    CONFIRMATION_NUM(\"gmi-confirmation-num\", '\\ue638'),\n    CONFIRMATION_NUMBER(\"gmi-confirmation-number\", '\\ue638'),\n    CONNECTED_TV(\"gmi-connected-tv\", '\\ue998'),\n    CONTACT_MAIL(\"gmi-contact-mail\", '\\ue0d0'),\n    CONTACT_PHONE(\"gmi-contact-phone\", '\\ue0cf'),\n    CONTACT_SUPPORT(\"gmi-contact-support\", '\\ue94c'),\n    CONTACTLESS(\"gmi-contactless\", '\\uea71'),\n    CONTACTS(\"gmi-contacts\", '\\ue0ba'),\n    CONTENT_COPY(\"gmi-content-copy\", '\\ue14d'),\n    CONTENT_CUT(\"gmi-content-cut\", '\\ue14e'),\n    CONTENT_PASTE(\"gmi-content-paste\", '\\ue14f'),\n    CONTROL_CAMERA(\"gmi-control-camera\", '\\ue074'),\n    CONTROL_POINT(\"gmi-control-point\", '\\ue3ba'),\n    CONTROL_POINT_DUPLICATE(\"gmi-control-point-duplicate\", '\\ue3bb'),\n    COPYRIGHT(\"gmi-copyright\", '\\ue90c'),\n    CREATE(\"gmi-create\", '\\ue150'),\n    CREATE_NEW_FOLDER(\"gmi-create-new-folder\", '\\ue2cc'),\n    CREDIT_CARD(\"gmi-credit-card\", '\\ue870'),\n    CROP(\"gmi-crop\", '\\ue3be'),\n    CROP_16_9(\"gmi-crop-16-9\", '\\ue3bc'),\n    CROP_3_2(\"gmi-crop-3-2\", '\\ue3bd'),\n    CROP_5_4(\"gmi-crop-5-4\", '\\ue3bf'),\n    CROP_7_5(\"gmi-crop-7-5\", '\\ue3c0'),\n    CROP_DIN(\"gmi-crop-din\", '\\ue3c1'),\n    CROP_FREE(\"gmi-crop-free\", '\\ue3c2'),\n    CROP_LANDSCAPE(\"gmi-crop-landscape\", '\\ue3c3'),\n    CROP_ORIGINAL(\"gmi-crop-original\", '\\ue3c4'),\n    CROP_PORTRAIT(\"gmi-crop-portrait\", '\\ue3c5'),\n    CROP_ROTATE(\"gmi-crop-rotate\", '\\ue437'),\n    CROP_SQUARE(\"gmi-crop-square\", '\\ue3c6'),\n    DANGEROUS(\"gmi-dangerous\", '\\ue99a'),\n    DASHBOARD(\"gmi-dashboard\", '\\ue871'),\n    DASHBOARD_CUSTOMIZE(\"gmi-dashboard-customize\", '\\ue99b'),\n    DATA_USAGE(\"gmi-data-usage\", '\\ue1af'),\n    DATE_RANGE(\"gmi-date-range\", '\\ue916'),\n    DECK(\"gmi-deck\", '\\uea42'),\n    DEHAZE(\"gmi-dehaze\", '\\ue3c7'),\n    DELETE(\"gmi-delete\", '\\ue872'),\n    DELETE_FOREVER(\"gmi-delete-forever\", '\\ue92b'),\n    DELETE_OUTLINE(\"gmi-delete-outline\", '\\ue92e'),\n    DELETE_SWEEP(\"gmi-delete-sweep\", '\\ue16c'),\n    DELIVERY_DINING(\"gmi-delivery-dining\", '\\uea72'),\n    DEPARTURE_BOARD(\"gmi-departure-board\", '\\ue576'),\n    DESCRIPTION(\"gmi-description\", '\\ue873'),\n    DESKTOP_ACCESS_DISABLED(\"gmi-desktop-access-disabled\", '\\ue99d'),\n    DESKTOP_MAC(\"gmi-desktop-mac\", '\\ue30b'),\n    DESKTOP_WINDOWS(\"gmi-desktop-windows\", '\\ue30c'),\n    DETAILS(\"gmi-details\", '\\ue3c8'),\n    DEVELOPER_BOARD(\"gmi-developer-board\", '\\ue30d'),\n    DEVELOPER_MODE(\"gmi-developer-mode\", '\\ue1b0'),\n    DEVICE_HUB(\"gmi-device-hub\", '\\ue335'),\n    DEVICE_THERMOSTAT(\"gmi-device-thermostat\", '\\ue1ff'),\n    DEVICE_UNKNOWN(\"gmi-device-unknown\", '\\ue339'),\n    DEVICES(\"gmi-devices\", '\\ue1b1'),\n    DEVICES_OTHER(\"gmi-devices-other\", '\\ue337'),\n    DIALER_SIP(\"gmi-dialer-sip\", '\\ue0bb'),\n    DIALPAD(\"gmi-dialpad\", '\\ue0bc'),\n    DINNER_DINING(\"gmi-dinner-dining\", '\\uea57'),\n    DIRECTIONS(\"gmi-directions\", '\\ue52e'),\n    DIRECTIONS_BIKE(\"gmi-directions-bike\", '\\ue52f'),\n    DIRECTIONS_BOAT(\"gmi-directions-boat\", '\\ue532'),\n    DIRECTIONS_BUS(\"gmi-directions-bus\", '\\ue530'),\n    DIRECTIONS_CAR(\"gmi-directions-car\", '\\ue531'),\n    DIRECTIONS_FERRY(\"gmi-directions-ferry\", '\\ue532'),\n    DIRECTIONS_RAILWAY(\"gmi-directions-railway\", '\\ue534'),\n    DIRECTIONS_RUN(\"gmi-directions-run\", '\\ue566'),\n    DIRECTIONS_SUBWAY(\"gmi-directions-subway\", '\\ue533'),\n    DIRECTIONS_TRAIN(\"gmi-directions-train\", '\\ue534'),\n    DIRECTIONS_TRANSIT(\"gmi-directions-transit\", '\\ue535'),\n    DIRECTIONS_WALK(\"gmi-directions-walk\", '\\ue536'),\n    DISC_FULL(\"gmi-disc-full\", '\\ue610'),\n    DND_FORWARDSLASH(\"gmi-dnd-forwardslash\", '\\ue611'),\n    DNS(\"gmi-dns\", '\\ue875'),\n    DO_NOT_DISTURB(\"gmi-do-not-disturb\", '\\ue612'),\n    DO_NOT_DISTURB_ALT(\"gmi-do-not-disturb-alt\", '\\ue611'),\n    DO_NOT_DISTURB_OFF(\"gmi-do-not-disturb-off\", '\\ue643'),\n    DO_NOT_DISTURB_ON(\"gmi-do-not-disturb-on\", '\\ue644'),\n    DOCK(\"gmi-dock\", '\\ue30e'),\n    DOMAIN(\"gmi-domain\", '\\ue7ee'),\n    DOMAIN_DISABLED(\"gmi-domain-disabled\", '\\ue0ef'),\n    DONE(\"gmi-done\", '\\ue876'),\n    DONE_ALL(\"gmi-done-all\", '\\ue877'),\n    DONE_OUTLINE(\"gmi-done-outline\", '\\ue92f'),\n    DONUT_LARGE(\"gmi-donut-large\", '\\ue917'),\n    DONUT_SMALL(\"gmi-donut-small\", '\\ue918'),\n    DOUBLE_ARROW(\"gmi-double-arrow\", '\\uea50'),\n    DRAFTS(\"gmi-drafts\", '\\ue151'),\n    DRAG_HANDLE(\"gmi-drag-handle\", '\\ue25d'),\n    DRAG_INDICATOR(\"gmi-drag-indicator\", '\\ue945'),\n    DRIVE_ETA(\"gmi-drive-eta\", '\\ue613'),\n    DRIVE_FILE_MOVE_OUTLINE(\"gmi-drive-file-move-outline\", '\\ue9a1'),\n    DRIVE_FILE_RENAME_OUTLINE(\"gmi-drive-file-rename-outline\", '\\ue9a2'),\n    DRIVE_FOLDER_UPLOAD(\"gmi-drive-folder-upload\", '\\ue9a3'),\n    DRY_CLEANING(\"gmi-dry-cleaning\", '\\uea58'),\n    DUO(\"gmi-duo\", '\\ue9a5'),\n    DVR(\"gmi-dvr\", '\\ue1b2'),\n    DYNAMIC_FEED(\"gmi-dynamic-feed\", '\\uea14'),\n    ECO(\"gmi-eco\", '\\uea35'),\n    EDIT(\"gmi-edit\", '\\ue3c9'),\n    EDIT_ATTRIBUTES(\"gmi-edit-attributes\", '\\ue578'),\n    EDIT_LOCATION(\"gmi-edit-location\", '\\ue568'),\n    EDIT_OFF(\"gmi-edit-off\", '\\ue950'),\n    EJECT(\"gmi-eject\", '\\ue8fb'),\n    EMAIL(\"gmi-email\", '\\ue0be'),\n    EMOJI_EMOTIONS(\"gmi-emoji-emotions\", '\\uea22'),\n    EMOJI_EVENTS(\"gmi-emoji-events\", '\\uea23'),\n    EMOJI_FLAGS(\"gmi-emoji-flags\", '\\uea1a'),\n    EMOJI_FOOD_BEVERAGE(\"gmi-emoji-food-beverage\", '\\uea1b'),\n    EMOJI_NATURE(\"gmi-emoji-nature\", '\\uea1c'),\n    EMOJI_OBJECTS(\"gmi-emoji-objects\", '\\uea24'),\n    EMOJI_PEOPLE(\"gmi-emoji-people\", '\\uea1d'),\n    EMOJI_SYMBOLS(\"gmi-emoji-symbols\", '\\uea1e'),\n    EMOJI_TRANSPORTATION(\"gmi-emoji-transportation\", '\\uea1f'),\n    ENHANCE_PHOTO_TRANSLATE(\"gmi-enhance-photo-translate\", '\\ue8fc'),\n    ENHANCED_ENCRYPTION(\"gmi-enhanced-encryption\", '\\ue63f'),\n    EQUALIZER(\"gmi-equalizer\", '\\ue01d'),\n    ERROR(\"gmi-error\", '\\ue000'),\n    ERROR_OUTLINE(\"gmi-error-outline\", '\\ue001'),\n    EURO(\"gmi-euro\", '\\uea15'),\n    EURO_SYMBOL(\"gmi-euro-symbol\", '\\ue926'),\n    EV_STATION(\"gmi-ev-station\", '\\ue56d'),\n    EVENT(\"gmi-event\", '\\ue878'),\n    EVENT_AVAILABLE(\"gmi-event-available\", '\\ue614'),\n    EVENT_BUSY(\"gmi-event-busy\", '\\ue615'),\n    EVENT_NOTE(\"gmi-event-note\", '\\ue616'),\n    EVENT_SEAT(\"gmi-event-seat\", '\\ue903'),\n    EXIT_TO_APP(\"gmi-exit-to-app\", '\\ue879'),\n    EXPAND(\"gmi-expand\", '\\ue94f'),\n    EXPAND_LESS(\"gmi-expand-less\", '\\ue5ce'),\n    EXPAND_MORE(\"gmi-expand-more\", '\\ue5cf'),\n    EXPLICIT(\"gmi-explicit\", '\\ue01e'),\n    EXPLORE(\"gmi-explore\", '\\ue87a'),\n    EXPLORE_OFF(\"gmi-explore-off\", '\\ue9a8'),\n    EXPOSURE(\"gmi-exposure\", '\\ue3ca'),\n    EXPOSURE_MINUS_1(\"gmi-exposure-minus-1\", '\\ue3cb'),\n    EXPOSURE_MINUS_2(\"gmi-exposure-minus-2\", '\\ue3cc'),\n    EXPOSURE_NEG_1(\"gmi-exposure-neg-1\", '\\ue3cb'),\n    EXPOSURE_NEG_2(\"gmi-exposure-neg-2\", '\\ue3cc'),\n    EXPOSURE_PLUS_1(\"gmi-exposure-plus-1\", '\\ue3cd'),\n    EXPOSURE_PLUS_2(\"gmi-exposure-plus-2\", '\\ue3ce'),\n    EXPOSURE_ZERO(\"gmi-exposure-zero\", '\\ue3cf'),\n    EXTENSION(\"gmi-extension\", '\\ue87b'),\n    FACE(\"gmi-face\", '\\ue87c'),\n    FAST_FORWARD(\"gmi-fast-forward\", '\\ue01f'),\n    FAST_REWIND(\"gmi-fast-rewind\", '\\ue020'),\n    FASTFOOD(\"gmi-fastfood\", '\\ue57a'),\n    FAVORITE(\"gmi-favorite\", '\\ue87d'),\n    FAVORITE_BORDER(\"gmi-favorite-border\", '\\ue87e'),\n    FAVORITE_OUTLINE(\"gmi-favorite-outline\", '\\ue87e'),\n    FEATURED_PLAY_LIST(\"gmi-featured-play-list\", '\\ue06d'),\n    FEATURED_VIDEO(\"gmi-featured-video\", '\\ue06e'),\n    FEEDBACK(\"gmi-feedback\", '\\ue87f'),\n    FESTIVAL(\"gmi-festival\", '\\uea68'),\n    FIBER_DVR(\"gmi-fiber-dvr\", '\\ue05d'),\n    FIBER_MANUAL_RECORD(\"gmi-fiber-manual-record\", '\\ue061'),\n    FIBER_NEW(\"gmi-fiber-new\", '\\ue05e'),\n    FIBER_PIN(\"gmi-fiber-pin\", '\\ue06a'),\n    FIBER_SMART_RECORD(\"gmi-fiber-smart-record\", '\\ue062'),\n    FILE_COPY(\"gmi-file-copy\", '\\ue173'),\n    FILE_DOWNLOAD(\"gmi-file-download\", '\\ue2c4'),\n    FILE_DOWNLOAD_DONE(\"gmi-file-download-done\", '\\ue9aa'),\n    FILE_PRESENT(\"gmi-file-present\", '\\uea0e'),\n    FILE_UPLOAD(\"gmi-file-upload\", '\\ue2c6'),\n    FILTER(\"gmi-filter\", '\\ue3d3'),\n    FILTER_1(\"gmi-filter-1\", '\\ue3d0'),\n    FILTER_2(\"gmi-filter-2\", '\\ue3d1'),\n    FILTER_3(\"gmi-filter-3\", '\\ue3d2'),\n    FILTER_4(\"gmi-filter-4\", '\\ue3d4'),\n    FILTER_5(\"gmi-filter-5\", '\\ue3d5'),\n    FILTER_6(\"gmi-filter-6\", '\\ue3d6'),\n    FILTER_7(\"gmi-filter-7\", '\\ue3d7'),\n    FILTER_8(\"gmi-filter-8\", '\\ue3d8'),\n    FILTER_9(\"gmi-filter-9\", '\\ue3d9'),\n    FILTER_9_PLUS(\"gmi-filter-9-plus\", '\\ue3da'),\n    FILTER_B_AND_W(\"gmi-filter-b-and-w\", '\\ue3db'),\n    FILTER_CENTER_FOCUS(\"gmi-filter-center-focus\", '\\ue3dc'),\n    FILTER_DRAMA(\"gmi-filter-drama\", '\\ue3dd'),\n    FILTER_FRAMES(\"gmi-filter-frames\", '\\ue3de'),\n    FILTER_HDR(\"gmi-filter-hdr\", '\\ue3df'),\n    FILTER_LIST(\"gmi-filter-list\", '\\ue152'),\n    FILTER_LIST_ALT(\"gmi-filter-list-alt\", '\\ue94e'),\n    FILTER_NONE(\"gmi-filter-none\", '\\ue3e0'),\n    FILTER_TILT_SHIFT(\"gmi-filter-tilt-shift\", '\\ue3e2'),\n    FILTER_VINTAGE(\"gmi-filter-vintage\", '\\ue3e3'),\n    FIND_IN_PAGE(\"gmi-find-in-page\", '\\ue880'),\n    FIND_REPLACE(\"gmi-find-replace\", '\\ue881'),\n    FINGERPRINT(\"gmi-fingerprint\", '\\ue90d'),\n    FIREPLACE(\"gmi-fireplace\", '\\uea43'),\n    FIRST_PAGE(\"gmi-first-page\", '\\ue5dc'),\n    FIT_SCREEN(\"gmi-fit-screen\", '\\uea10'),\n    FITNESS_CENTER(\"gmi-fitness-center\", '\\ueb43'),\n    FLAG(\"gmi-flag\", '\\ue153'),\n    FLARE(\"gmi-flare\", '\\ue3e4'),\n    FLASH_AUTO(\"gmi-flash-auto\", '\\ue3e5'),\n    FLASH_OFF(\"gmi-flash-off\", '\\ue3e6'),\n    FLASH_ON(\"gmi-flash-on\", '\\ue3e7'),\n    FLIGHT(\"gmi-flight\", '\\ue539'),\n    FLIGHT_LAND(\"gmi-flight-land\", '\\ue904'),\n    FLIGHT_TAKEOFF(\"gmi-flight-takeoff\", '\\ue905'),\n    FLIP(\"gmi-flip\", '\\ue3e8'),\n    FLIP_CAMERA_ANDROID(\"gmi-flip-camera-android\", '\\uea37'),\n    FLIP_CAMERA_IOS(\"gmi-flip-camera-ios\", '\\uea38'),\n    FLIP_TO_BACK(\"gmi-flip-to-back\", '\\ue882'),\n    FLIP_TO_FRONT(\"gmi-flip-to-front\", '\\ue883'),\n    FOLDER(\"gmi-folder\", '\\ue2c7'),\n    FOLDER_OPEN(\"gmi-folder-open\", '\\ue2c8'),\n    FOLDER_SHARED(\"gmi-folder-shared\", '\\ue2c9'),\n    FOLDER_SPECIAL(\"gmi-folder-special\", '\\ue617'),\n    FONT_DOWNLOAD(\"gmi-font-download\", '\\ue167'),\n    FORMAT_ALIGN_CENTER(\"gmi-format-align-center\", '\\ue234'),\n    FORMAT_ALIGN_JUSTIFY(\"gmi-format-align-justify\", '\\ue235'),\n    FORMAT_ALIGN_LEFT(\"gmi-format-align-left\", '\\ue236'),\n    FORMAT_ALIGN_RIGHT(\"gmi-format-align-right\", '\\ue237'),\n    FORMAT_BOLD(\"gmi-format-bold\", '\\ue238'),\n    FORMAT_CLEAR(\"gmi-format-clear\", '\\ue239'),\n    FORMAT_COLOR_FILL(\"gmi-format-color-fill\", '\\ue23a'),\n    FORMAT_COLOR_RESET(\"gmi-format-color-reset\", '\\ue23b'),\n    FORMAT_COLOR_TEXT(\"gmi-format-color-text\", '\\ue23c'),\n    FORMAT_INDENT_DECREASE(\"gmi-format-indent-decrease\", '\\ue23d'),\n    FORMAT_INDENT_INCREASE(\"gmi-format-indent-increase\", '\\ue23e'),\n    FORMAT_ITALIC(\"gmi-format-italic\", '\\ue23f'),\n    FORMAT_LINE_SPACING(\"gmi-format-line-spacing\", '\\ue240'),\n    FORMAT_LIST_BULLETED(\"gmi-format-list-bulleted\", '\\ue241'),\n    FORMAT_LIST_NUMBERED(\"gmi-format-list-numbered\", '\\ue242'),\n    FORMAT_LIST_NUMBERED_RTL(\"gmi-format-list-numbered-rtl\", '\\ue267'),\n    FORMAT_PAINT(\"gmi-format-paint\", '\\ue243'),\n    FORMAT_QUOTE(\"gmi-format-quote\", '\\ue244'),\n    FORMAT_SHAPES(\"gmi-format-shapes\", '\\ue25e'),\n    FORMAT_SIZE(\"gmi-format-size\", '\\ue245'),\n    FORMAT_STRIKETHROUGH(\"gmi-format-strikethrough\", '\\ue246'),\n    FORMAT_TEXTDIRECTION_L_TO_R(\"gmi-format-textdirection-l-to-r\", '\\ue247'),\n    FORMAT_TEXTDIRECTION_R_TO_L(\"gmi-format-textdirection-r-to-l\", '\\ue248'),\n    FORMAT_UNDERLINE(\"gmi-format-underline\", '\\ue249'),\n    FORMAT_UNDERLINED(\"gmi-format-underlined\", '\\ue249'),\n    FORUM(\"gmi-forum\", '\\ue0bf'),\n    FORWARD(\"gmi-forward\", '\\ue154'),\n    FORWARD_10(\"gmi-forward-10\", '\\ue056'),\n    FORWARD_30(\"gmi-forward-30\", '\\ue057'),\n    FORWARD_5(\"gmi-forward-5\", '\\ue058'),\n    FREE_BREAKFAST(\"gmi-free-breakfast\", '\\ueb44'),\n    FULLSCREEN(\"gmi-fullscreen\", '\\ue5d0'),\n    FULLSCREEN_EXIT(\"gmi-fullscreen-exit\", '\\ue5d1'),\n    FUNCTIONS(\"gmi-functions\", '\\ue24a'),\n    G_TRANSLATE(\"gmi-g-translate\", '\\ue927'),\n    GAMEPAD(\"gmi-gamepad\", '\\ue30f'),\n    GAMES(\"gmi-games\", '\\ue021'),\n    GAVEL(\"gmi-gavel\", '\\ue90e'),\n    GESTURE(\"gmi-gesture\", '\\ue155'),\n    GET_APP(\"gmi-get-app\", '\\ue884'),\n    GIF(\"gmi-gif\", '\\ue908'),\n    GOAT(\"gmi-goat\", '\\udbff'),\n    GOLF_COURSE(\"gmi-golf-course\", '\\ueb45'),\n    GPS_FIXED(\"gmi-gps-fixed\", '\\ue1b3'),\n    GPS_NOT_FIXED(\"gmi-gps-not-fixed\", '\\ue1b4'),\n    GPS_OFF(\"gmi-gps-off\", '\\ue1b5'),\n    GRADE(\"gmi-grade\", '\\ue885'),\n    GRADIENT(\"gmi-gradient\", '\\ue3e9'),\n    GRAIN(\"gmi-grain\", '\\ue3ea'),\n    GRAPHIC_EQ(\"gmi-graphic-eq\", '\\ue1b8'),\n    GRID_OFF(\"gmi-grid-off\", '\\ue3eb'),\n    GRID_ON(\"gmi-grid-on\", '\\ue3ec'),\n    GRID_VIEW(\"gmi-grid-view\", '\\ue9b0'),\n    GROUP(\"gmi-group\", '\\ue7ef'),\n    GROUP_ADD(\"gmi-group-add\", '\\ue7f0'),\n    GROUP_WORK(\"gmi-group-work\", '\\ue886'),\n    HAIL(\"gmi-hail\", '\\ue9b1'),\n    HARDWARE(\"gmi-hardware\", '\\uea59'),\n    HD(\"gmi-hd\", '\\ue052'),\n    HDR_OFF(\"gmi-hdr-off\", '\\ue3ed'),\n    HDR_ON(\"gmi-hdr-on\", '\\ue3ee'),\n    HDR_STRONG(\"gmi-hdr-strong\", '\\ue3f1'),\n    HDR_WEAK(\"gmi-hdr-weak\", '\\ue3f2'),\n    HEADSET(\"gmi-headset\", '\\ue310'),\n    HEADSET_MIC(\"gmi-headset-mic\", '\\ue311'),\n    HEADSET_OFF(\"gmi-headset-off\", '\\ue33a'),\n    HEALING(\"gmi-healing\", '\\ue3f3'),\n    HEARING(\"gmi-hearing\", '\\ue023'),\n    HEIGHT(\"gmi-height\", '\\uea16'),\n    HELP(\"gmi-help\", '\\ue887'),\n    HELP_OUTLINE(\"gmi-help-outline\", '\\ue8fd'),\n    HIGH_QUALITY(\"gmi-high-quality\", '\\ue024'),\n    HIGHLIGHT(\"gmi-highlight\", '\\ue25f'),\n    HIGHLIGHT_OFF(\"gmi-highlight-off\", '\\ue888'),\n    HIGHLIGHT_REMOVE(\"gmi-highlight-remove\", '\\ue888'),\n    HISTORY(\"gmi-history\", '\\ue889'),\n    HOME(\"gmi-home\", '\\ue88a'),\n    HOME_FILLED(\"gmi-home-filled\", '\\ue9b2'),\n    HOME_WORK(\"gmi-home-work\", '\\uea09'),\n    HORIZONTAL_SPLIT(\"gmi-horizontal-split\", '\\ue947'),\n    HOT_TUB(\"gmi-hot-tub\", '\\ueb46'),\n    HOTEL(\"gmi-hotel\", '\\ue53a'),\n    HOURGLASS_EMPTY(\"gmi-hourglass-empty\", '\\ue88b'),\n    HOURGLASS_FULL(\"gmi-hourglass-full\", '\\ue88c'),\n    HOUSE(\"gmi-house\", '\\uea44'),\n    HOW_TO_REG(\"gmi-how-to-reg\", '\\ue174'),\n    HOW_TO_VOTE(\"gmi-how-to-vote\", '\\ue175'),\n    HTTP(\"gmi-http\", '\\ue902'),\n    HTTPS(\"gmi-https\", '\\ue88d'),\n    ICECREAM(\"gmi-icecream\", '\\uea69'),\n    IMAGE(\"gmi-image\", '\\ue3f4'),\n    IMAGE_ASPECT_RATIO(\"gmi-image-aspect-ratio\", '\\ue3f5'),\n    IMAGE_SEARCH(\"gmi-image-search\", '\\ue43f'),\n    IMAGESEARCH_ROLLER(\"gmi-imagesearch-roller\", '\\ue9b4'),\n    IMPORT_CONTACTS(\"gmi-import-contacts\", '\\ue0e0'),\n    IMPORT_EXPORT(\"gmi-import-export\", '\\ue0c3'),\n    IMPORTANT_DEVICES(\"gmi-important-devices\", '\\ue912'),\n    INBOX(\"gmi-inbox\", '\\ue156'),\n    INDETERMINATE_CHECK_BOX(\"gmi-indeterminate-check-box\", '\\ue909'),\n    INFO(\"gmi-info\", '\\ue88e'),\n    INFO_OUTLINE(\"gmi-info-outline\", '\\ue88f'),\n    INPUT(\"gmi-input\", '\\ue890'),\n    INSERT_CHART(\"gmi-insert-chart\", '\\ue24b'),\n    INSERT_CHART_OUTLINED(\"gmi-insert-chart-outlined\", '\\ue26a'),\n    INSERT_COMMENT(\"gmi-insert-comment\", '\\ue24c'),\n    INSERT_DRIVE_FILE(\"gmi-insert-drive-file\", '\\ue24d'),\n    INSERT_EMOTICON(\"gmi-insert-emoticon\", '\\ue24e'),\n    INSERT_INVITATION(\"gmi-insert-invitation\", '\\ue24f'),\n    INSERT_LINK(\"gmi-insert-link\", '\\ue250'),\n    INSERT_PHOTO(\"gmi-insert-photo\", '\\ue251'),\n    INVENTORY(\"gmi-inventory\", '\\ue179'),\n    INVERT_COLORS(\"gmi-invert-colors\", '\\ue891'),\n    INVERT_COLORS_OFF(\"gmi-invert-colors-off\", '\\ue0c4'),\n    INVERT_COLORS_ON(\"gmi-invert-colors-on\", '\\ue891'),\n    ISO(\"gmi-iso\", '\\ue3f6'),\n    KEYBOARD(\"gmi-keyboard\", '\\ue312'),\n    KEYBOARD_ARROW_DOWN(\"gmi-keyboard-arrow-down\", '\\ue313'),\n    KEYBOARD_ARROW_LEFT(\"gmi-keyboard-arrow-left\", '\\ue314'),\n    KEYBOARD_ARROW_RIGHT(\"gmi-keyboard-arrow-right\", '\\ue315'),\n    KEYBOARD_ARROW_UP(\"gmi-keyboard-arrow-up\", '\\ue316'),\n    KEYBOARD_BACKSPACE(\"gmi-keyboard-backspace\", '\\ue317'),\n    KEYBOARD_CAPSLOCK(\"gmi-keyboard-capslock\", '\\ue318'),\n    KEYBOARD_CONTROL(\"gmi-keyboard-control\", '\\ue5d3'),\n    KEYBOARD_HIDE(\"gmi-keyboard-hide\", '\\ue31a'),\n    KEYBOARD_RETURN(\"gmi-keyboard-return\", '\\ue31b'),\n    KEYBOARD_TAB(\"gmi-keyboard-tab\", '\\ue31c'),\n    KEYBOARD_VOICE(\"gmi-keyboard-voice\", '\\ue31d'),\n    KING_BED(\"gmi-king-bed\", '\\uea45'),\n    KITCHEN(\"gmi-kitchen\", '\\ueb47'),\n    LABEL(\"gmi-label\", '\\ue892'),\n    LABEL_IMPORTANT(\"gmi-label-important\", '\\ue937'),\n    LABEL_IMPORTANT_OUTLINE(\"gmi-label-important-outline\", '\\ue948'),\n    LABEL_OFF(\"gmi-label-off\", '\\ue9b6'),\n    LABEL_OUTLINE(\"gmi-label-outline\", '\\ue893'),\n    LANDSCAPE(\"gmi-landscape\", '\\ue3f7'),\n    LANGUAGE(\"gmi-language\", '\\ue894'),\n    LAPTOP(\"gmi-laptop\", '\\ue31e'),\n    LAPTOP_CHROMEBOOK(\"gmi-laptop-chromebook\", '\\ue31f'),\n    LAPTOP_MAC(\"gmi-laptop-mac\", '\\ue320'),\n    LAPTOP_WINDOWS(\"gmi-laptop-windows\", '\\ue321'),\n    LAST_PAGE(\"gmi-last-page\", '\\ue5dd'),\n    LAUNCH(\"gmi-launch\", '\\ue895'),\n    LAYERS(\"gmi-layers\", '\\ue53b'),\n    LAYERS_CLEAR(\"gmi-layers-clear\", '\\ue53c'),\n    LEAK_ADD(\"gmi-leak-add\", '\\ue3f8'),\n    LEAK_REMOVE(\"gmi-leak-remove\", '\\ue3f9'),\n    LENS(\"gmi-lens\", '\\ue3fa'),\n    LIBRARY_ADD(\"gmi-library-add\", '\\ue02e'),\n    LIBRARY_ADD_CHECK(\"gmi-library-add-check\", '\\ue9b7'),\n    LIBRARY_BOOKS(\"gmi-library-books\", '\\ue02f'),\n    LIBRARY_MUSIC(\"gmi-library-music\", '\\ue030'),\n    LIGHTBULB(\"gmi-lightbulb\", '\\ue0f0'),\n    LIGHTBULB_OUTLINE(\"gmi-lightbulb-outline\", '\\ue90f'),\n    LINE_STYLE(\"gmi-line-style\", '\\ue919'),\n    LINE_WEIGHT(\"gmi-line-weight\", '\\ue91a'),\n    LINEAR_SCALE(\"gmi-linear-scale\", '\\ue260'),\n    LINK(\"gmi-link\", '\\ue157'),\n    LINK_OFF(\"gmi-link-off\", '\\ue16f'),\n    LINKED_CAMERA(\"gmi-linked-camera\", '\\ue438'),\n    LIQUOR(\"gmi-liquor\", '\\uea60'),\n    LIST(\"gmi-list\", '\\ue896'),\n    LIST_ALT(\"gmi-list-alt\", '\\ue0ee'),\n    LIVE_HELP(\"gmi-live-help\", '\\ue0c6'),\n    LIVE_TV(\"gmi-live-tv\", '\\ue639'),\n    LOCAL_ACTIVITY(\"gmi-local-activity\", '\\ue53f'),\n    LOCAL_AIRPORT(\"gmi-local-airport\", '\\ue53d'),\n    LOCAL_ATM(\"gmi-local-atm\", '\\ue53e'),\n    LOCAL_ATTRACTION(\"gmi-local-attraction\", '\\ue53f'),\n    LOCAL_BAR(\"gmi-local-bar\", '\\ue540'),\n    LOCAL_CAFE(\"gmi-local-cafe\", '\\ue541'),\n    LOCAL_CAR_WASH(\"gmi-local-car-wash\", '\\ue542'),\n    LOCAL_CONVENIENCE_STORE(\"gmi-local-convenience-store\", '\\ue543'),\n    LOCAL_DINING(\"gmi-local-dining\", '\\ue556'),\n    LOCAL_DRINK(\"gmi-local-drink\", '\\ue544'),\n    LOCAL_FLORIST(\"gmi-local-florist\", '\\ue545'),\n    LOCAL_GAS_STATION(\"gmi-local-gas-station\", '\\ue546'),\n    LOCAL_GROCERY_STORE(\"gmi-local-grocery-store\", '\\ue547'),\n    LOCAL_HOSPITAL(\"gmi-local-hospital\", '\\ue548'),\n    LOCAL_HOTEL(\"gmi-local-hotel\", '\\ue549'),\n    LOCAL_LAUNDRY_SERVICE(\"gmi-local-laundry-service\", '\\ue54a'),\n    LOCAL_LIBRARY(\"gmi-local-library\", '\\ue54b'),\n    LOCAL_MALL(\"gmi-local-mall\", '\\ue54c'),\n    LOCAL_MOVIES(\"gmi-local-movies\", '\\ue54d'),\n    LOCAL_OFFER(\"gmi-local-offer\", '\\ue54e'),\n    LOCAL_PARKING(\"gmi-local-parking\", '\\ue54f'),\n    LOCAL_PHARMACY(\"gmi-local-pharmacy\", '\\ue550'),\n    LOCAL_PHONE(\"gmi-local-phone\", '\\ue551'),\n    LOCAL_PIZZA(\"gmi-local-pizza\", '\\ue552'),\n    LOCAL_PLAY(\"gmi-local-play\", '\\ue553'),\n    LOCAL_POST_OFFICE(\"gmi-local-post-office\", '\\ue554'),\n    LOCAL_PRINT_SHOP(\"gmi-local-print-shop\", '\\ue555'),\n    LOCAL_PRINTSHOP(\"gmi-local-printshop\", '\\ue555'),\n    LOCAL_RESTAURANT(\"gmi-local-restaurant\", '\\ue556'),\n    LOCAL_SEE(\"gmi-local-see\", '\\ue557'),\n    LOCAL_SHIPPING(\"gmi-local-shipping\", '\\ue558'),\n    LOCAL_TAXI(\"gmi-local-taxi\", '\\ue559'),\n    LOCATION_CITY(\"gmi-location-city\", '\\ue7f1'),\n    LOCATION_DISABLED(\"gmi-location-disabled\", '\\ue1b6'),\n    LOCATION_HISTORY(\"gmi-location-history\", '\\ue55a'),\n    LOCATION_OFF(\"gmi-location-off\", '\\ue0c7'),\n    LOCATION_ON(\"gmi-location-on\", '\\ue0c8'),\n    LOCATION_SEARCHING(\"gmi-location-searching\", '\\ue1b7'),\n    LOCK(\"gmi-lock\", '\\ue897'),\n    LOCK_OPEN(\"gmi-lock-open\", '\\ue898'),\n    LOCK_OUTLINE(\"gmi-lock-outline\", '\\ue899'),\n    LOGOUT(\"gmi-logout\", '\\ue9ba'),\n    LOOKS(\"gmi-looks\", '\\ue3fc'),\n    LOOKS_3(\"gmi-looks-3\", '\\ue3fb'),\n    LOOKS_4(\"gmi-looks-4\", '\\ue3fd'),\n    LOOKS_5(\"gmi-looks-5\", '\\ue3fe'),\n    LOOKS_6(\"gmi-looks-6\", '\\ue3ff'),\n    LOOKS_ONE(\"gmi-looks-one\", '\\ue400'),\n    LOOKS_TWO(\"gmi-looks-two\", '\\ue401'),\n    LOOP(\"gmi-loop\", '\\ue028'),\n    LOUPE(\"gmi-loupe\", '\\ue402'),\n    LOW_PRIORITY(\"gmi-low-priority\", '\\ue16d'),\n    LOYALTY(\"gmi-loyalty\", '\\ue89a'),\n    LUNCH_DINING(\"gmi-lunch-dining\", '\\uea61'),\n    MAIL(\"gmi-mail\", '\\ue158'),\n    MAIL_OUTLINE(\"gmi-mail-outline\", '\\ue0e1'),\n    MAP(\"gmi-map\", '\\ue55b'),\n    MARGIN(\"gmi-margin\", '\\ue9bb'),\n    MARK_AS_UNREAD(\"gmi-mark-as-unread\", '\\ue9bc'),\n    MARKUNREAD(\"gmi-markunread\", '\\ue159'),\n    MARKUNREAD_MAILBOX(\"gmi-markunread-mailbox\", '\\ue89b'),\n    MAXIMIZE(\"gmi-maximize\", '\\ue930'),\n    MEETING_ROOM(\"gmi-meeting-room\", '\\ueb4f'),\n    MEMORY(\"gmi-memory\", '\\ue322'),\n    MENU(\"gmi-menu\", '\\ue5d2'),\n    MENU_BOOK(\"gmi-menu-book\", '\\uea19'),\n    MENU_OPEN(\"gmi-menu-open\", '\\ue9bd'),\n    MERGE_TYPE(\"gmi-merge-type\", '\\ue252'),\n    MESSAGE(\"gmi-message\", '\\ue0c9'),\n    MESSENGER(\"gmi-messenger\", '\\ue0ca'),\n    MESSENGER_OUTLINE(\"gmi-messenger-outline\", '\\ue0cb'),\n    MIC(\"gmi-mic\", '\\ue029'),\n    MIC_NONE(\"gmi-mic-none\", '\\ue02a'),\n    MIC_OFF(\"gmi-mic-off\", '\\ue02b'),\n    MINIMIZE(\"gmi-minimize\", '\\ue931'),\n    MISSED_VIDEO_CALL(\"gmi-missed-video-call\", '\\ue073'),\n    MMS(\"gmi-mms\", '\\ue618'),\n    MOBILE_FRIENDLY(\"gmi-mobile-friendly\", '\\ue200'),\n    MOBILE_OFF(\"gmi-mobile-off\", '\\ue201'),\n    MOBILE_SCREEN_SHARE(\"gmi-mobile-screen-share\", '\\ue0e7'),\n    MODE_COMMENT(\"gmi-mode-comment\", '\\ue253'),\n    MODE_EDIT(\"gmi-mode-edit\", '\\ue254'),\n    MONETIZATION_ON(\"gmi-monetization-on\", '\\ue263'),\n    MONEY(\"gmi-money\", '\\ue57d'),\n    MONEY_OFF(\"gmi-money-off\", '\\ue25c'),\n    MONOCHROME_PHOTOS(\"gmi-monochrome-photos\", '\\ue403'),\n    MOOD(\"gmi-mood\", '\\ue7f2'),\n    MOOD_BAD(\"gmi-mood-bad\", '\\ue7f3'),\n    MORE(\"gmi-more\", '\\ue619'),\n    MORE_HORIZ(\"gmi-more-horiz\", '\\ue5d3'),\n    MORE_VERT(\"gmi-more-vert\", '\\ue5d4'),\n    MOTORCYCLE(\"gmi-motorcycle\", '\\ue91b'),\n    MOUSE(\"gmi-mouse\", '\\ue323'),\n    MOVE_TO_INBOX(\"gmi-move-to-inbox\", '\\ue168'),\n    MOVIE(\"gmi-movie\", '\\ue02c'),\n    MOVIE_CREATION(\"gmi-movie-creation\", '\\ue404'),\n    MOVIE_FILTER(\"gmi-movie-filter\", '\\ue43a'),\n    MP(\"gmi-mp\", '\\ue9c3'),\n    MULTILINE_CHART(\"gmi-multiline-chart\", '\\ue6df'),\n    MULTITRACK_AUDIO(\"gmi-multitrack-audio\", '\\ue1b8'),\n    MUSEUM(\"gmi-museum\", '\\uea36'),\n    MUSIC_NOTE(\"gmi-music-note\", '\\ue405'),\n    MUSIC_OFF(\"gmi-music-off\", '\\ue440'),\n    MUSIC_VIDEO(\"gmi-music-video\", '\\ue063'),\n    MY_LIBRARY_ADD(\"gmi-my-library-add\", '\\ue02e'),\n    MY_LIBRARY_BOOKS(\"gmi-my-library-books\", '\\ue02f'),\n    MY_LIBRARY_MUSIC(\"gmi-my-library-music\", '\\ue030'),\n    MY_LOCATION(\"gmi-my-location\", '\\ue55c'),\n    NATURE(\"gmi-nature\", '\\ue406'),\n    NATURE_PEOPLE(\"gmi-nature-people\", '\\ue407'),\n    NAVIGATE_BEFORE(\"gmi-navigate-before\", '\\ue408'),\n    NAVIGATE_NEXT(\"gmi-navigate-next\", '\\ue409'),\n    NAVIGATION(\"gmi-navigation\", '\\ue55d'),\n    NEAR_ME(\"gmi-near-me\", '\\ue569'),\n    NETWORK_CELL(\"gmi-network-cell\", '\\ue1b9'),\n    NETWORK_CHECK(\"gmi-network-check\", '\\ue640'),\n    NETWORK_LOCKED(\"gmi-network-locked\", '\\ue61a'),\n    NETWORK_WIFI(\"gmi-network-wifi\", '\\ue1ba'),\n    NEW_RELEASES(\"gmi-new-releases\", '\\ue031'),\n    NEXT_WEEK(\"gmi-next-week\", '\\ue16a'),\n    NFC(\"gmi-nfc\", '\\ue1bb'),\n    NIGHTLIFE(\"gmi-nightlife\", '\\uea62'),\n    NIGHTS_STAY(\"gmi-nights-stay\", '\\uea46'),\n    NO_ENCRYPTION(\"gmi-no-encryption\", '\\ue641'),\n    NO_MEETING_ROOM(\"gmi-no-meeting-room\", '\\ueb4e'),\n    NO_SIM(\"gmi-no-sim\", '\\ue0cc'),\n    NOT_INTERESTED(\"gmi-not-interested\", '\\ue033'),\n    NOT_LISTED_LOCATION(\"gmi-not-listed-location\", '\\ue575'),\n    NOTE(\"gmi-note\", '\\ue06f'),\n    NOTE_ADD(\"gmi-note-add\", '\\ue89c'),\n    NOTES(\"gmi-notes\", '\\ue26c'),\n    NOTIFICATION_IMPORTANT(\"gmi-notification-important\", '\\ue004'),\n    NOTIFICATIONS(\"gmi-notifications\", '\\ue7f4'),\n    NOTIFICATIONS_ACTIVE(\"gmi-notifications-active\", '\\ue7f7'),\n    NOTIFICATIONS_NONE(\"gmi-notifications-none\", '\\ue7f5'),\n    NOTIFICATIONS_OFF(\"gmi-notifications-off\", '\\ue7f6'),\n    NOTIFICATIONS_ON(\"gmi-notifications-on\", '\\ue7f7'),\n    NOTIFICATIONS_PAUSED(\"gmi-notifications-paused\", '\\ue7f8'),\n    NOW_WALLPAPER(\"gmi-now-wallpaper\", '\\ue1bc'),\n    NOW_WIDGETS(\"gmi-now-widgets\", '\\ue1bd'),\n    OFFLINE_BOLT(\"gmi-offline-bolt\", '\\ue932'),\n    OFFLINE_PIN(\"gmi-offline-pin\", '\\ue90a'),\n    OFFLINE_SHARE(\"gmi-offline-share\", '\\ue9c5'),\n    ONDEMAND_VIDEO(\"gmi-ondemand-video\", '\\ue63a'),\n    OPACITY(\"gmi-opacity\", '\\ue91c'),\n    OPEN_IN_BROWSER(\"gmi-open-in-browser\", '\\ue89d'),\n    OPEN_IN_NEW(\"gmi-open-in-new\", '\\ue89e'),\n    OPEN_WITH(\"gmi-open-with\", '\\ue89f'),\n    OUTDOOR_GRILL(\"gmi-outdoor-grill\", '\\uea47'),\n    OUTLINED_FLAG(\"gmi-outlined-flag\", '\\ue16e'),\n    PADDING(\"gmi-padding\", '\\ue9c8'),\n    PAGES(\"gmi-pages\", '\\ue7f9'),\n    PAGEVIEW(\"gmi-pageview\", '\\ue8a0'),\n    PALETTE(\"gmi-palette\", '\\ue40a'),\n    PAN_TOOL(\"gmi-pan-tool\", '\\ue925'),\n    PANORAMA(\"gmi-panorama\", '\\ue40b'),\n    PANORAMA_FISH_EYE(\"gmi-panorama-fish-eye\", '\\ue40c'),\n    PANORAMA_FISHEYE(\"gmi-panorama-fisheye\", '\\ue40c'),\n    PANORAMA_HORIZONTAL(\"gmi-panorama-horizontal\", '\\ue40d'),\n    PANORAMA_PHOTOSPHERE(\"gmi-panorama-photosphere\", '\\ue9c9'),\n    PANORAMA_PHOTOSPHERE_SELECT(\"gmi-panorama-photosphere-select\", '\\ue9ca'),\n    PANORAMA_VERTICAL(\"gmi-panorama-vertical\", '\\ue40e'),\n    PANORAMA_WIDE_ANGLE(\"gmi-panorama-wide-angle\", '\\ue40f'),\n    PARK(\"gmi-park\", '\\uea63'),\n    PARTY_MODE(\"gmi-party-mode\", '\\ue7fa'),\n    PAUSE(\"gmi-pause\", '\\ue034'),\n    PAUSE_CIRCLE_FILLED(\"gmi-pause-circle-filled\", '\\ue035'),\n    PAUSE_CIRCLE_OUTLINE(\"gmi-pause-circle-outline\", '\\ue036'),\n    PAUSE_PRESENTATION(\"gmi-pause-presentation\", '\\ue0ea'),\n    PAYMENT(\"gmi-payment\", '\\ue8a1'),\n    PEOPLE(\"gmi-people\", '\\ue7fb'),\n    PEOPLE_ALT(\"gmi-people-alt\", '\\uea21'),\n    PEOPLE_OUTLINE(\"gmi-people-outline\", '\\ue7fc'),\n    PERM_CAMERA_MIC(\"gmi-perm-camera-mic\", '\\ue8a2'),\n    PERM_CONTACT_CAL(\"gmi-perm-contact-cal\", '\\ue8a3'),\n    PERM_CONTACT_CALENDAR(\"gmi-perm-contact-calendar\", '\\ue8a3'),\n    PERM_DATA_SETTING(\"gmi-perm-data-setting\", '\\ue8a4'),\n    PERM_DEVICE_INFO(\"gmi-perm-device-info\", '\\ue8a5'),\n    PERM_DEVICE_INFORMATION(\"gmi-perm-device-information\", '\\ue8a5'),\n    PERM_IDENTITY(\"gmi-perm-identity\", '\\ue8a6'),\n    PERM_MEDIA(\"gmi-perm-media\", '\\ue8a7'),\n    PERM_PHONE_MSG(\"gmi-perm-phone-msg\", '\\ue8a8'),\n    PERM_SCAN_WIFI(\"gmi-perm-scan-wifi\", '\\ue8a9'),\n    PERSON(\"gmi-person\", '\\ue7fd'),\n    PERSON_ADD(\"gmi-person-add\", '\\ue7fe'),\n    PERSON_ADD_DISABLED(\"gmi-person-add-disabled\", '\\ue9cb'),\n    PERSON_OUTLINE(\"gmi-person-outline\", '\\ue7ff'),\n    PERSON_PIN(\"gmi-person-pin\", '\\ue55a'),\n    PERSON_PIN_CIRCLE(\"gmi-person-pin-circle\", '\\ue56a'),\n    PERSONAL_VIDEO(\"gmi-personal-video\", '\\ue63b'),\n    PETS(\"gmi-pets\", '\\ue91d'),\n    PHONE(\"gmi-phone\", '\\ue0cd'),\n    PHONE_ANDROID(\"gmi-phone-android\", '\\ue324'),\n    PHONE_BLUETOOTH_SPEAKER(\"gmi-phone-bluetooth-speaker\", '\\ue61b'),\n    PHONE_CALLBACK(\"gmi-phone-callback\", '\\ue649'),\n    PHONE_DISABLED(\"gmi-phone-disabled\", '\\ue9cc'),\n    PHONE_ENABLED(\"gmi-phone-enabled\", '\\ue9cd'),\n    PHONE_FORWARDED(\"gmi-phone-forwarded\", '\\ue61c'),\n    PHONE_IN_TALK(\"gmi-phone-in-talk\", '\\ue61d'),\n    PHONE_IPHONE(\"gmi-phone-iphone\", '\\ue325'),\n    PHONE_LOCKED(\"gmi-phone-locked\", '\\ue61e'),\n    PHONE_MISSED(\"gmi-phone-missed\", '\\ue61f'),\n    PHONE_PAUSED(\"gmi-phone-paused\", '\\ue620'),\n    PHONELINK(\"gmi-phonelink\", '\\ue326'),\n    PHONELINK_ERASE(\"gmi-phonelink-erase\", '\\ue0db'),\n    PHONELINK_LOCK(\"gmi-phonelink-lock\", '\\ue0dc'),\n    PHONELINK_OFF(\"gmi-phonelink-off\", '\\ue327'),\n    PHONELINK_RING(\"gmi-phonelink-ring\", '\\ue0dd'),\n    PHONELINK_SETUP(\"gmi-phonelink-setup\", '\\ue0de'),\n    PHOTO(\"gmi-photo\", '\\ue410'),\n    PHOTO_ALBUM(\"gmi-photo-album\", '\\ue411'),\n    PHOTO_CAMERA(\"gmi-photo-camera\", '\\ue412'),\n    PHOTO_FILTER(\"gmi-photo-filter\", '\\ue43b'),\n    PHOTO_LIBRARY(\"gmi-photo-library\", '\\ue413'),\n    PHOTO_SIZE_SELECT_ACTUAL(\"gmi-photo-size-select-actual\", '\\ue432'),\n    PHOTO_SIZE_SELECT_LARGE(\"gmi-photo-size-select-large\", '\\ue433'),\n    PHOTO_SIZE_SELECT_SMALL(\"gmi-photo-size-select-small\", '\\ue434'),\n    PICTURE_AS_PDF(\"gmi-picture-as-pdf\", '\\ue415'),\n    PICTURE_IN_PICTURE(\"gmi-picture-in-picture\", '\\ue8aa'),\n    PICTURE_IN_PICTURE_ALT(\"gmi-picture-in-picture-alt\", '\\ue911'),\n    PIE_CHART(\"gmi-pie-chart\", '\\ue6c4'),\n    PIE_CHART_OUTLINED(\"gmi-pie-chart-outlined\", '\\ue6c5'),\n    PIN_DROP(\"gmi-pin-drop\", '\\ue55e'),\n    PIVOT_TABLE_CHART(\"gmi-pivot-table-chart\", '\\ue9ce'),\n    PLACE(\"gmi-place\", '\\ue55f'),\n    PLAY_ARROW(\"gmi-play-arrow\", '\\ue037'),\n    PLAY_CIRCLE_FILL(\"gmi-play-circle-fill\", '\\ue038'),\n    PLAY_CIRCLE_FILLED(\"gmi-play-circle-filled\", '\\ue038'),\n    PLAY_CIRCLE_OUTLINE(\"gmi-play-circle-outline\", '\\ue039'),\n    PLAY_FOR_WORK(\"gmi-play-for-work\", '\\ue906'),\n    PLAYLIST_ADD(\"gmi-playlist-add\", '\\ue03b'),\n    PLAYLIST_ADD_CHECK(\"gmi-playlist-add-check\", '\\ue065'),\n    PLAYLIST_PLAY(\"gmi-playlist-play\", '\\ue05f'),\n    PLUS_ONE(\"gmi-plus-one\", '\\ue800'),\n    POLICY(\"gmi-policy\", '\\uea17'),\n    POLL(\"gmi-poll\", '\\ue801'),\n    POLYMER(\"gmi-polymer\", '\\ue8ab'),\n    POOL(\"gmi-pool\", '\\ueb48'),\n    PORTABLE_WIFI_OFF(\"gmi-portable-wifi-off\", '\\ue0ce'),\n    PORTRAIT(\"gmi-portrait\", '\\ue416'),\n    POST_ADD(\"gmi-post-add\", '\\uea20'),\n    POWER(\"gmi-power\", '\\ue63c'),\n    POWER_INPUT(\"gmi-power-input\", '\\ue336'),\n    POWER_OFF(\"gmi-power-off\", '\\ue646'),\n    POWER_SETTINGS_NEW(\"gmi-power-settings-new\", '\\ue8ac'),\n    PREGNANT_WOMAN(\"gmi-pregnant-woman\", '\\ue91e'),\n    PRESENT_TO_ALL(\"gmi-present-to-all\", '\\ue0df'),\n    PRINT(\"gmi-print\", '\\ue8ad'),\n    PRINT_DISABLED(\"gmi-print-disabled\", '\\ue9cf'),\n    PRIORITY_HIGH(\"gmi-priority-high\", '\\ue645'),\n    PUBLIC(\"gmi-public\", '\\ue80b'),\n    PUBLISH(\"gmi-publish\", '\\ue255'),\n    QUERY_BUILDER(\"gmi-query-builder\", '\\ue8ae'),\n    QUESTION_ANSWER(\"gmi-question-answer\", '\\ue8af'),\n    QUEUE(\"gmi-queue\", '\\ue03c'),\n    QUEUE_MUSIC(\"gmi-queue-music\", '\\ue03d'),\n    QUEUE_PLAY_NEXT(\"gmi-queue-play-next\", '\\ue066'),\n    QUICK_CONTACTS_DIALER(\"gmi-quick-contacts-dialer\", '\\ue0cf'),\n    QUICK_CONTACTS_MAIL(\"gmi-quick-contacts-mail\", '\\ue0d0'),\n    RADIO(\"gmi-radio\", '\\ue03e'),\n    RADIO_BUTTON_CHECKED(\"gmi-radio-button-checked\", '\\ue837'),\n    RADIO_BUTTON_OFF(\"gmi-radio-button-off\", '\\ue836'),\n    RADIO_BUTTON_ON(\"gmi-radio-button-on\", '\\ue837'),\n    RADIO_BUTTON_UNCHECKED(\"gmi-radio-button-unchecked\", '\\ue836'),\n    RAILWAY_ALERT(\"gmi-railway-alert\", '\\ue9d1'),\n    RAMEN_DINING(\"gmi-ramen-dining\", '\\uea64'),\n    RATE_REVIEW(\"gmi-rate-review\", '\\ue560'),\n    RECEIPT(\"gmi-receipt\", '\\ue8b0'),\n    RECENT_ACTORS(\"gmi-recent-actors\", '\\ue03f'),\n    RECOMMEND(\"gmi-recommend\", '\\ue9d2'),\n    RECORD_VOICE_OVER(\"gmi-record-voice-over\", '\\ue91f'),\n    REDEEM(\"gmi-redeem\", '\\ue8b1'),\n    REDO(\"gmi-redo\", '\\ue15a'),\n    REFRESH(\"gmi-refresh\", '\\ue5d5'),\n    REMOVE(\"gmi-remove\", '\\ue15b'),\n    REMOVE_CIRCLE(\"gmi-remove-circle\", '\\ue15c'),\n    REMOVE_CIRCLE_OUTLINE(\"gmi-remove-circle-outline\", '\\ue15d'),\n    REMOVE_DONE(\"gmi-remove-done\", '\\ue9d3'),\n    REMOVE_FROM_QUEUE(\"gmi-remove-from-queue\", '\\ue067'),\n    REMOVE_MODERATOR(\"gmi-remove-moderator\", '\\ue9d4'),\n    REMOVE_RED_EYE(\"gmi-remove-red-eye\", '\\ue417'),\n    REMOVE_SHOPPING_CART(\"gmi-remove-shopping-cart\", '\\ue928'),\n    REORDER(\"gmi-reorder\", '\\ue8fe'),\n    REPEAT(\"gmi-repeat\", '\\ue040'),\n    REPEAT_ON(\"gmi-repeat-on\", '\\ue9d6'),\n    REPEAT_ONE(\"gmi-repeat-one\", '\\ue041'),\n    REPEAT_ONE_ON(\"gmi-repeat-one-on\", '\\ue9d7'),\n    REPLAY(\"gmi-replay\", '\\ue042'),\n    REPLAY_10(\"gmi-replay-10\", '\\ue059'),\n    REPLAY_30(\"gmi-replay-30\", '\\ue05a'),\n    REPLAY_5(\"gmi-replay-5\", '\\ue05b'),\n    REPLAY_CIRCLE_FILLED(\"gmi-replay-circle-filled\", '\\ue9d8'),\n    REPLY(\"gmi-reply\", '\\ue15e'),\n    REPLY_ALL(\"gmi-reply-all\", '\\ue15f'),\n    REPORT(\"gmi-report\", '\\ue160'),\n    REPORT_OFF(\"gmi-report-off\", '\\ue170'),\n    REPORT_PROBLEM(\"gmi-report-problem\", '\\ue8b2'),\n    RESET_TV(\"gmi-reset-tv\", '\\ue9d9'),\n    RESTAURANT(\"gmi-restaurant\", '\\ue56c'),\n    RESTAURANT_MENU(\"gmi-restaurant-menu\", '\\ue561'),\n    RESTORE(\"gmi-restore\", '\\ue8b3'),\n    RESTORE_FROM_TRASH(\"gmi-restore-from-trash\", '\\ue938'),\n    RESTORE_PAGE(\"gmi-restore-page\", '\\ue929'),\n    RING_VOLUME(\"gmi-ring-volume\", '\\ue0d1'),\n    ROOM(\"gmi-room\", '\\ue8b4'),\n    ROOM_SERVICE(\"gmi-room-service\", '\\ueb49'),\n    ROTATE_90_DEGREES_CCW(\"gmi-rotate-90-degrees-ccw\", '\\ue418'),\n    ROTATE_LEFT(\"gmi-rotate-left\", '\\ue419'),\n    ROTATE_RIGHT(\"gmi-rotate-right\", '\\ue41a'),\n    ROUNDED_CORNER(\"gmi-rounded-corner\", '\\ue920'),\n    ROUTER(\"gmi-router\", '\\ue328'),\n    ROWING(\"gmi-rowing\", '\\ue921'),\n    RSS_FEED(\"gmi-rss-feed\", '\\ue0e5'),\n    RTT(\"gmi-rtt\", '\\ue9ad'),\n    RV_HOOKUP(\"gmi-rv-hookup\", '\\ue642'),\n    SATELLITE(\"gmi-satellite\", '\\ue562'),\n    SAVE(\"gmi-save\", '\\ue161'),\n    SAVE_ALT(\"gmi-save-alt\", '\\ue171'),\n    SAVED_SEARCH(\"gmi-saved-search\", '\\uea11'),\n    SCANNER(\"gmi-scanner\", '\\ue329'),\n    SCATTER_PLOT(\"gmi-scatter-plot\", '\\ue268'),\n    SCHEDULE(\"gmi-schedule\", '\\ue8b5'),\n    SCHEDULE_SEND(\"gmi-schedule-send\", '\\uea0a'),\n    SCHOOL(\"gmi-school\", '\\ue80c'),\n    SCORE(\"gmi-score\", '\\ue269'),\n    SCREEN_LOCK_LANDSCAPE(\"gmi-screen-lock-landscape\", '\\ue1be'),\n    SCREEN_LOCK_PORTRAIT(\"gmi-screen-lock-portrait\", '\\ue1bf'),\n    SCREEN_LOCK_ROTATION(\"gmi-screen-lock-rotation\", '\\ue1c0'),\n    SCREEN_ROTATION(\"gmi-screen-rotation\", '\\ue1c1'),\n    SCREEN_SHARE(\"gmi-screen-share\", '\\ue0e2'),\n    SD(\"gmi-sd\", '\\ue9dd'),\n    SD_CARD(\"gmi-sd-card\", '\\ue623'),\n    SD_STORAGE(\"gmi-sd-storage\", '\\ue1c2'),\n    SEARCH(\"gmi-search\", '\\ue8b6'),\n    SECURITY(\"gmi-security\", '\\ue32a'),\n    SEGMENT(\"gmi-segment\", '\\ue94b'),\n    SELECT_ALL(\"gmi-select-all\", '\\ue162'),\n    SEND(\"gmi-send\", '\\ue163'),\n    SEND_AND_ARCHIVE(\"gmi-send-and-archive\", '\\uea0c'),\n    SENTIMENT_DISSATISFIED(\"gmi-sentiment-dissatisfied\", '\\ue811'),\n    SENTIMENT_NEUTRAL(\"gmi-sentiment-neutral\", '\\ue812'),\n    SENTIMENT_SATISFIED(\"gmi-sentiment-satisfied\", '\\ue813'),\n    SENTIMENT_SATISFIED_ALT(\"gmi-sentiment-satisfied-alt\", '\\ue0ed'),\n    SENTIMENT_VERY_DISSATISFIED(\"gmi-sentiment-very-dissatisfied\", '\\ue814'),\n    SENTIMENT_VERY_SATISFIED(\"gmi-sentiment-very-satisfied\", '\\ue815'),\n    SETTINGS(\"gmi-settings\", '\\ue8b8'),\n    SETTINGS_APPLICATIONS(\"gmi-settings-applications\", '\\ue8b9'),\n    SETTINGS_BACKUP_RESTORE(\"gmi-settings-backup-restore\", '\\ue8ba'),\n    SETTINGS_BLUETOOTH(\"gmi-settings-bluetooth\", '\\ue8bb'),\n    SETTINGS_BRIGHTNESS(\"gmi-settings-brightness\", '\\ue8bd'),\n    SETTINGS_CELL(\"gmi-settings-cell\", '\\ue8bc'),\n    SETTINGS_DISPLAY(\"gmi-settings-display\", '\\ue8bd'),\n    SETTINGS_ETHERNET(\"gmi-settings-ethernet\", '\\ue8be'),\n    SETTINGS_INPUT_ANTENNA(\"gmi-settings-input-antenna\", '\\ue8bf'),\n    SETTINGS_INPUT_COMPONENT(\"gmi-settings-input-component\", '\\ue8c0'),\n    SETTINGS_INPUT_COMPOSITE(\"gmi-settings-input-composite\", '\\ue8c1'),\n    SETTINGS_INPUT_HDMI(\"gmi-settings-input-hdmi\", '\\ue8c2'),\n    SETTINGS_INPUT_SVIDEO(\"gmi-settings-input-svideo\", '\\ue8c3'),\n    SETTINGS_OVERSCAN(\"gmi-settings-overscan\", '\\ue8c4'),\n    SETTINGS_PHONE(\"gmi-settings-phone\", '\\ue8c5'),\n    SETTINGS_POWER(\"gmi-settings-power\", '\\ue8c6'),\n    SETTINGS_REMOTE(\"gmi-settings-remote\", '\\ue8c7'),\n    SETTINGS_SYSTEM_DAYDREAM(\"gmi-settings-system-daydream\", '\\ue1c3'),\n    SETTINGS_VOICE(\"gmi-settings-voice\", '\\ue8c8'),\n    SHARE(\"gmi-share\", '\\ue80d'),\n    SHIELD(\"gmi-shield\", '\\ue9e0'),\n    SHOP(\"gmi-shop\", '\\ue8c9'),\n    SHOP_TWO(\"gmi-shop-two\", '\\ue8ca'),\n    SHOPPING_BASKET(\"gmi-shopping-basket\", '\\ue8cb'),\n    SHOPPING_CART(\"gmi-shopping-cart\", '\\ue8cc'),\n    SHORT_TEXT(\"gmi-short-text\", '\\ue261'),\n    SHOW_CHART(\"gmi-show-chart\", '\\ue6e1'),\n    SHUFFLE(\"gmi-shuffle\", '\\ue043'),\n    SHUFFLE_ON(\"gmi-shuffle-on\", '\\ue9e1'),\n    SHUTTER_SPEED(\"gmi-shutter-speed\", '\\ue43d'),\n    SIGNAL_CELLULAR_4_BAR(\"gmi-signal-cellular-4-bar\", '\\ue1c8'),\n    SIGNAL_CELLULAR_ALT(\"gmi-signal-cellular-alt\", '\\ue202'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR(\"gmi-signal-cellular-connected-no-internet-4-bar\", '\\ue1cd'),\n    SIGNAL_CELLULAR_NO_SIM(\"gmi-signal-cellular-no-sim\", '\\ue1ce'),\n    SIGNAL_CELLULAR_NULL(\"gmi-signal-cellular-null\", '\\ue1cf'),\n    SIGNAL_CELLULAR_OFF(\"gmi-signal-cellular-off\", '\\ue1d0'),\n    SIGNAL_WIFI_4_BAR(\"gmi-signal-wifi-4-bar\", '\\ue1d8'),\n    SIGNAL_WIFI_4_BAR_LOCK(\"gmi-signal-wifi-4-bar-lock\", '\\ue1d9'),\n    SIGNAL_WIFI_OFF(\"gmi-signal-wifi-off\", '\\ue1da'),\n    SIM_CARD(\"gmi-sim-card\", '\\ue32b'),\n    SIM_CARD_ALERT(\"gmi-sim-card-alert\", '\\ue624'),\n    SINGLE_BED(\"gmi-single-bed\", '\\uea48'),\n    SKIP_NEXT(\"gmi-skip-next\", '\\ue044'),\n    SKIP_PREVIOUS(\"gmi-skip-previous\", '\\ue045'),\n    SLIDESHOW(\"gmi-slideshow\", '\\ue41b'),\n    SLOW_MOTION_VIDEO(\"gmi-slow-motion-video\", '\\ue068'),\n    SMARTPHONE(\"gmi-smartphone\", '\\ue32c'),\n    SMOKE_FREE(\"gmi-smoke-free\", '\\ueb4a'),\n    SMOKING_ROOMS(\"gmi-smoking-rooms\", '\\ueb4b'),\n    SMS(\"gmi-sms\", '\\ue625'),\n    SMS_FAILED(\"gmi-sms-failed\", '\\ue626'),\n    SNOOZE(\"gmi-snooze\", '\\ue046'),\n    SORT(\"gmi-sort\", '\\ue164'),\n    SORT_BY_ALPHA(\"gmi-sort-by-alpha\", '\\ue053'),\n    SPA(\"gmi-spa\", '\\ueb4c'),\n    SPACE_BAR(\"gmi-space-bar\", '\\ue256'),\n    SPEAKER(\"gmi-speaker\", '\\ue32d'),\n    SPEAKER_GROUP(\"gmi-speaker-group\", '\\ue32e'),\n    SPEAKER_NOTES(\"gmi-speaker-notes\", '\\ue8cd'),\n    SPEAKER_NOTES_OFF(\"gmi-speaker-notes-off\", '\\ue92a'),\n    SPEAKER_PHONE(\"gmi-speaker-phone\", '\\ue0d2'),\n    SPEED(\"gmi-speed\", '\\ue9e4'),\n    SPELLCHECK(\"gmi-spellcheck\", '\\ue8ce'),\n    SPORTS(\"gmi-sports\", '\\uea30'),\n    SPORTS_BASEBALL(\"gmi-sports-baseball\", '\\uea51'),\n    SPORTS_BASKETBALL(\"gmi-sports-basketball\", '\\uea26'),\n    SPORTS_CRICKET(\"gmi-sports-cricket\", '\\uea27'),\n    SPORTS_ESPORTS(\"gmi-sports-esports\", '\\uea28'),\n    SPORTS_FOOTBALL(\"gmi-sports-football\", '\\uea29'),\n    SPORTS_GOLF(\"gmi-sports-golf\", '\\uea2a'),\n    SPORTS_HANDBALL(\"gmi-sports-handball\", '\\uea33'),\n    SPORTS_HOCKEY(\"gmi-sports-hockey\", '\\uea2b'),\n    SPORTS_KABADDI(\"gmi-sports-kabaddi\", '\\uea34'),\n    SPORTS_MMA(\"gmi-sports-mma\", '\\uea2c'),\n    SPORTS_MOTORSPORTS(\"gmi-sports-motorsports\", '\\uea2d'),\n    SPORTS_RUGBY(\"gmi-sports-rugby\", '\\uea2e'),\n    SPORTS_SOCCER(\"gmi-sports-soccer\", '\\uea2f'),\n    SPORTS_TENNIS(\"gmi-sports-tennis\", '\\uea32'),\n    SPORTS_VOLLEYBALL(\"gmi-sports-volleyball\", '\\uea31'),\n    SQUARE_FOOT(\"gmi-square-foot\", '\\uea49'),\n    STACKED_BAR_CHART(\"gmi-stacked-bar-chart\", '\\ue9e6'),\n    STAR(\"gmi-star\", '\\ue838'),\n    STAR_BORDER(\"gmi-star-border\", '\\ue83a'),\n    STAR_HALF(\"gmi-star-half\", '\\ue839'),\n    STAR_OUTLINE(\"gmi-star-outline\", '\\ue83a'),\n    STARS(\"gmi-stars\", '\\ue8d0'),\n    STAY_CURRENT_LANDSCAPE(\"gmi-stay-current-landscape\", '\\ue0d3'),\n    STAY_CURRENT_PORTRAIT(\"gmi-stay-current-portrait\", '\\ue0d4'),\n    STAY_PRIMARY_LANDSCAPE(\"gmi-stay-primary-landscape\", '\\ue0d5'),\n    STAY_PRIMARY_PORTRAIT(\"gmi-stay-primary-portrait\", '\\ue0d6'),\n    STOP(\"gmi-stop\", '\\ue047'),\n    STOP_SCREEN_SHARE(\"gmi-stop-screen-share\", '\\ue0e3'),\n    STORAGE(\"gmi-storage\", '\\ue1db'),\n    STORE(\"gmi-store\", '\\ue8d1'),\n    STORE_MALL_DIRECTORY(\"gmi-store-mall-directory\", '\\ue563'),\n    STOREFRONT(\"gmi-storefront\", '\\uea12'),\n    STRAIGHTEN(\"gmi-straighten\", '\\ue41c'),\n    STREAM(\"gmi-stream\", '\\ue9e9'),\n    STREETVIEW(\"gmi-streetview\", '\\ue56e'),\n    STRIKETHROUGH_S(\"gmi-strikethrough-s\", '\\ue257'),\n    STYLE(\"gmi-style\", '\\ue41d'),\n    SUBDIRECTORY_ARROW_LEFT(\"gmi-subdirectory-arrow-left\", '\\ue5d9'),\n    SUBDIRECTORY_ARROW_RIGHT(\"gmi-subdirectory-arrow-right\", '\\ue5da'),\n    SUBJECT(\"gmi-subject\", '\\ue8d2'),\n    SUBSCRIPTIONS(\"gmi-subscriptions\", '\\ue064'),\n    SUBTITLES(\"gmi-subtitles\", '\\ue048'),\n    SUBWAY(\"gmi-subway\", '\\ue56f'),\n    SUPERVISED_USER_CIRCLE(\"gmi-supervised-user-circle\", '\\ue939'),\n    SUPERVISOR_ACCOUNT(\"gmi-supervisor-account\", '\\ue8d3'),\n    SURROUND_SOUND(\"gmi-surround-sound\", '\\ue049'),\n    SWAP_CALLS(\"gmi-swap-calls\", '\\ue0d7'),\n    SWAP_HORIZ(\"gmi-swap-horiz\", '\\ue8d4'),\n    SWAP_HORIZONTAL_CIRCLE(\"gmi-swap-horizontal-circle\", '\\ue933'),\n    SWAP_VERT(\"gmi-swap-vert\", '\\ue8d5'),\n    SWAP_VERT_CIRCLE(\"gmi-swap-vert-circle\", '\\ue8d6'),\n    SWAP_VERTICAL_CIRCLE(\"gmi-swap-vertical-circle\", '\\ue8d6'),\n    SWIPE(\"gmi-swipe\", '\\ue9ec'),\n    SWITCH_ACCOUNT(\"gmi-switch-account\", '\\ue9ed'),\n    SWITCH_CAMERA(\"gmi-switch-camera\", '\\ue41e'),\n    SWITCH_VIDEO(\"gmi-switch-video\", '\\ue41f'),\n    SYNC(\"gmi-sync\", '\\ue627'),\n    SYNC_ALT(\"gmi-sync-alt\", '\\uea18'),\n    SYNC_DISABLED(\"gmi-sync-disabled\", '\\ue628'),\n    SYNC_PROBLEM(\"gmi-sync-problem\", '\\ue629'),\n    SYSTEM_UPDATE(\"gmi-system-update\", '\\ue62a'),\n    SYSTEM_UPDATE_ALT(\"gmi-system-update-alt\", '\\ue8d7'),\n    SYSTEM_UPDATE_TV(\"gmi-system-update-tv\", '\\ue8d7'),\n    TAB(\"gmi-tab\", '\\ue8d8'),\n    TAB_UNSELECTED(\"gmi-tab-unselected\", '\\ue8d9'),\n    TABLE_CHART(\"gmi-table-chart\", '\\ue265'),\n    TABLET(\"gmi-tablet\", '\\ue32f'),\n    TABLET_ANDROID(\"gmi-tablet-android\", '\\ue330'),\n    TABLET_MAC(\"gmi-tablet-mac\", '\\ue331'),\n    TAG(\"gmi-tag\", '\\ue9ef'),\n    TAG_FACES(\"gmi-tag-faces\", '\\ue420'),\n    TAKEOUT_DINING(\"gmi-takeout-dining\", '\\uea74'),\n    TAP_AND_PLAY(\"gmi-tap-and-play\", '\\ue62b'),\n    TERRAIN(\"gmi-terrain\", '\\ue564'),\n    TEXT_FIELDS(\"gmi-text-fields\", '\\ue262'),\n    TEXT_FORMAT(\"gmi-text-format\", '\\ue165'),\n    TEXT_ROTATE_UP(\"gmi-text-rotate-up\", '\\ue93a'),\n    TEXT_ROTATE_VERTICAL(\"gmi-text-rotate-vertical\", '\\ue93b'),\n    TEXT_ROTATION_ANGLEDOWN(\"gmi-text-rotation-angledown\", '\\ue93c'),\n    TEXT_ROTATION_ANGLEUP(\"gmi-text-rotation-angleup\", '\\ue93d'),\n    TEXT_ROTATION_DOWN(\"gmi-text-rotation-down\", '\\ue93e'),\n    TEXT_ROTATION_NONE(\"gmi-text-rotation-none\", '\\ue93f'),\n    TEXTSMS(\"gmi-textsms\", '\\ue0d8'),\n    TEXTURE(\"gmi-texture\", '\\ue421'),\n    THEATER_COMEDY(\"gmi-theater-comedy\", '\\uea66'),\n    THEATERS(\"gmi-theaters\", '\\ue8da'),\n    THUMB_DOWN(\"gmi-thumb-down\", '\\ue8db'),\n    THUMB_DOWN_ALT(\"gmi-thumb-down-alt\", '\\ue816'),\n    THUMB_DOWN_OFF_ALT(\"gmi-thumb-down-off-alt\", '\\ue9f2'),\n    THUMB_UP(\"gmi-thumb-up\", '\\ue8dc'),\n    THUMB_UP_ALT(\"gmi-thumb-up-alt\", '\\ue817'),\n    THUMB_UP_OFF_ALT(\"gmi-thumb-up-off-alt\", '\\ue9f3'),\n    THUMBS_UP_DOWN(\"gmi-thumbs-up-down\", '\\ue8dd'),\n    TIME_TO_LEAVE(\"gmi-time-to-leave\", '\\ue62c'),\n    TIMELAPSE(\"gmi-timelapse\", '\\ue422'),\n    TIMELINE(\"gmi-timeline\", '\\ue922'),\n    TIMER(\"gmi-timer\", '\\ue425'),\n    TIMER_10(\"gmi-timer_10\", '\\ue423'),\n    TIMER_3(\"gmi-timer_3\", '\\ue424'),\n    TIMER_OFF(\"gmi-timer-off\", '\\ue426'),\n    TITLE(\"gmi-title\", '\\ue264'),\n    TOC(\"gmi-toc\", '\\ue8de'),\n    TODAY(\"gmi-today\", '\\ue8df'),\n    TOGGLE_OFF(\"gmi-toggle-off\", '\\ue9f5'),\n    TOGGLE_ON(\"gmi-toggle-on\", '\\ue9f6'),\n    TOLL(\"gmi-toll\", '\\ue8e0'),\n    TONALITY(\"gmi-tonality\", '\\ue427'),\n    TOUCH_APP(\"gmi-touch-app\", '\\ue913'),\n    TOYS(\"gmi-toys\", '\\ue332'),\n    TRACK_CHANGES(\"gmi-track-changes\", '\\ue8e1'),\n    TRAFFIC(\"gmi-traffic\", '\\ue565'),\n    TRAIN(\"gmi-train\", '\\ue570'),\n    TRAM(\"gmi-tram\", '\\ue571'),\n    TRANSFER_WITHIN_A_STATION(\"gmi-transfer-within-a-station\", '\\ue572'),\n    TRANSFORM(\"gmi-transform\", '\\ue428'),\n    TRANSIT_ENTEREXIT(\"gmi-transit-enterexit\", '\\ue579'),\n    TRANSLATE(\"gmi-translate\", '\\ue8e2'),\n    TRENDING_DOWN(\"gmi-trending-down\", '\\ue8e3'),\n    TRENDING_FLAT(\"gmi-trending-flat\", '\\ue8e4'),\n    TRENDING_NEUTRAL(\"gmi-trending-neutral\", '\\ue8e4'),\n    TRENDING_UP(\"gmi-trending-up\", '\\ue8e5'),\n    TRIP_ORIGIN(\"gmi-trip-origin\", '\\ue57b'),\n    TUNE(\"gmi-tune\", '\\ue429'),\n    TURNED_IN(\"gmi-turned-in\", '\\ue8e6'),\n    TURNED_IN_NOT(\"gmi-turned-in-not\", '\\ue8e7'),\n    TV(\"gmi-tv\", '\\ue333'),\n    TV_OFF(\"gmi-tv-off\", '\\ue647'),\n    TWO_WHEELER(\"gmi-two-wheeler\", '\\ue9f9'),\n    UNARCHIVE(\"gmi-unarchive\", '\\ue169'),\n    UNDO(\"gmi-undo\", '\\ue166'),\n    UNFOLD_LESS(\"gmi-unfold-less\", '\\ue5d6'),\n    UNFOLD_MORE(\"gmi-unfold-more\", '\\ue5d7'),\n    UNSUBSCRIBE(\"gmi-unsubscribe\", '\\ue0eb'),\n    UPDATE(\"gmi-update\", '\\ue923'),\n    UPLOAD_FILE(\"gmi-upload-file\", '\\ue9fc'),\n    USB(\"gmi-usb\", '\\ue1e0'),\n    VERIFIED_USER(\"gmi-verified-user\", '\\ue8e8'),\n    VERTICAL_ALIGN_BOTTOM(\"gmi-vertical-align-bottom\", '\\ue258'),\n    VERTICAL_ALIGN_CENTER(\"gmi-vertical-align-center\", '\\ue259'),\n    VERTICAL_ALIGN_TOP(\"gmi-vertical-align-top\", '\\ue25a'),\n    VERTICAL_SPLIT(\"gmi-vertical-split\", '\\ue949'),\n    VIBRATION(\"gmi-vibration\", '\\ue62d'),\n    VIDEO_CALL(\"gmi-video-call\", '\\ue070'),\n    VIDEO_COLLECTION(\"gmi-video-collection\", '\\ue04a'),\n    VIDEO_LABEL(\"gmi-video-label\", '\\ue071'),\n    VIDEO_LIBRARY(\"gmi-video-library\", '\\ue04a'),\n    VIDEOCAM(\"gmi-videocam\", '\\ue04b'),\n    VIDEOCAM_OFF(\"gmi-videocam-off\", '\\ue04c'),\n    VIDEOGAME_ASSET(\"gmi-videogame-asset\", '\\ue338'),\n    VIEW_AGENDA(\"gmi-view-agenda\", '\\ue8e9'),\n    VIEW_ARRAY(\"gmi-view-array\", '\\ue8ea'),\n    VIEW_CAROUSEL(\"gmi-view-carousel\", '\\ue8eb'),\n    VIEW_COLUMN(\"gmi-view-column\", '\\ue8ec'),\n    VIEW_COMFORTABLE(\"gmi-view-comfortable\", '\\ue42a'),\n    VIEW_COMFY(\"gmi-view-comfy\", '\\ue42a'),\n    VIEW_COMPACT(\"gmi-view-compact\", '\\ue42b'),\n    VIEW_DAY(\"gmi-view-day\", '\\ue8ed'),\n    VIEW_HEADLINE(\"gmi-view-headline\", '\\ue8ee'),\n    VIEW_IN_AR(\"gmi-view-in-ar\", '\\ue9fe'),\n    VIEW_LIST(\"gmi-view-list\", '\\ue8ef'),\n    VIEW_MODULE(\"gmi-view-module\", '\\ue8f0'),\n    VIEW_QUILT(\"gmi-view-quilt\", '\\ue8f1'),\n    VIEW_STREAM(\"gmi-view-stream\", '\\ue8f2'),\n    VIEW_WEEK(\"gmi-view-week\", '\\ue8f3'),\n    VIGNETTE(\"gmi-vignette\", '\\ue435'),\n    VISIBILITY(\"gmi-visibility\", '\\ue8f4'),\n    VISIBILITY_OFF(\"gmi-visibility-off\", '\\ue8f5'),\n    VOICE_CHAT(\"gmi-voice-chat\", '\\ue62e'),\n    VOICE_OVER_OFF(\"gmi-voice-over-off\", '\\ue94a'),\n    VOICEMAIL(\"gmi-voicemail\", '\\ue0d9'),\n    VOLUME_DOWN(\"gmi-volume-down\", '\\ue04d'),\n    VOLUME_MUTE(\"gmi-volume-mute\", '\\ue04e'),\n    VOLUME_OFF(\"gmi-volume-off\", '\\ue04f'),\n    VOLUME_UP(\"gmi-volume-up\", '\\ue050'),\n    VOLUNTEER_ACTIVISM(\"gmi-volunteer-activism\", '\\uea70'),\n    VPN_KEY(\"gmi-vpn-key\", '\\ue0da'),\n    VPN_LOCK(\"gmi-vpn-lock\", '\\ue62f'),\n    WALLET_GIFTCARD(\"gmi-wallet-giftcard\", '\\ue8f6'),\n    WALLET_MEMBERSHIP(\"gmi-wallet-membership\", '\\ue8f7'),\n    WALLET_TRAVEL(\"gmi-wallet-travel\", '\\ue8f8'),\n    WALLPAPER(\"gmi-wallpaper\", '\\ue1bc'),\n    WARNING(\"gmi-warning\", '\\ue002'),\n    WATCH(\"gmi-watch\", '\\ue334'),\n    WATCH_LATER(\"gmi-watch-later\", '\\ue924'),\n    WATERFALL_CHART(\"gmi-waterfall-chart\", '\\uea00'),\n    WAVES(\"gmi-waves\", '\\ue176'),\n    WB_AUTO(\"gmi-wb-auto\", '\\ue42c'),\n    WB_CLOUDY(\"gmi-wb-cloudy\", '\\ue42d'),\n    WB_INCANDESCENT(\"gmi-wb-incandescent\", '\\ue42e'),\n    WB_IRIDESCENT(\"gmi-wb-iridescent\", '\\ue436'),\n    WB_SHADE(\"gmi-wb-shade\", '\\uea01'),\n    WB_SUNNY(\"gmi-wb-sunny\", '\\ue430'),\n    WB_TWIGHLIGHT(\"gmi-wb-twighlight\", '\\uea02'),\n    WC(\"gmi-wc\", '\\ue63d'),\n    WEB(\"gmi-web\", '\\ue051'),\n    WEB_ASSET(\"gmi-web-asset\", '\\ue069'),\n    WEEKEND(\"gmi-weekend\", '\\ue16b'),\n    WHATSHOT(\"gmi-whatshot\", '\\ue80e'),\n    WHERE_TO_VOTE(\"gmi-where-to-vote\", '\\ue177'),\n    WIDGETS(\"gmi-widgets\", '\\ue1bd'),\n    WIFI(\"gmi-wifi\", '\\ue63e'),\n    WIFI_LOCK(\"gmi-wifi-lock\", '\\ue1e1'),\n    WIFI_OFF(\"gmi-wifi-off\", '\\ue648'),\n    WIFI_TETHERING(\"gmi-wifi-tethering\", '\\ue1e2'),\n    WORK(\"gmi-work\", '\\ue8f9'),\n    WORK_OFF(\"gmi-work-off\", '\\ue942'),\n    WORK_OUTLINE(\"gmi-work-outline\", '\\ue943'),\n    WORKSPACES_FILLED(\"gmi-workspaces-filled\", '\\uea0d'),\n    WORKSPACES_OUTLINE(\"gmi-workspaces-outline\", '\\uea0f'),\n    WRAP_TEXT(\"gmi-wrap-text\", '\\ue25b'),\n    YOUTUBE_SEARCHED_FOR(\"gmi-youtube-searched-for\", '\\ue8fa'),\n    ZOOM_IN(\"gmi-zoom-in\", '\\ue8ff'),\n    ZOOM_OUT(\"gmi-zoom-out\", '\\ue900'),\n    ZOOM_OUT_MAP(\"gmi-zoom-out-map\", '\\ue56b');\n\n    public static Material findByDescription(String description) {\n        for (Material font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Material(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material-pack/src/main/java/org/kordamp/ikonli/material/MaterialIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/material/50/fonts/MaterialIcons-Regular.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"gmi-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Material.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Material Icons Regular\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material-pack/src/main/java/org/kordamp/ikonli/material/MaterialIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class MaterialIkonProvider implements IkonProvider<Material> {\n    @Override\n    public Class<Material> getIkon() {\n        return Material.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material-pack/src/main/resources/META-INF/resources/material/50/css/material-icons.css",
    "content": "@font-face {\n    font-family: 'Material Icons Regular';\n    font-style: normal;\n    font-weight: 400;\n    src: url(../fonts/MaterialIcons-Regular.eot); /* For IE6-8 */\n    src: local('Material Icons Regular'),\n    local('MaterialIcons-Regular'),\n    url(../fonts/MaterialIcons-Regular.woff) format('woff'),\n    url(../fonts/MaterialIcons-Regular.ttf) format('truetype');\n}\n\n.gmi {\n    font-family: 'Material Icons Regular';\n    font-weight: normal;\n    font-style: normal;\n    font-size: 24px; /* Preferred icon size */\n    display: inline-block;\n    width: 1em;\n    height: 1em;\n    line-height: 1;\n    text-transform: none;\n    letter-spacing: normal;\n    word-wrap: normal;\n    white-space: nowrap;\n    direction: ltr;\n\n    /* Support for all WebKit browsers. */\n    -webkit-font-smoothing: antialiased;\n    /* Support for Safari and Chrome. */\n    text-rendering: optimizeLegibility;\n\n    /* Support for Firefox. */\n    -moz-osx-font-smoothing: grayscale;\n\n    /* Support for IE. */\n    font-feature-settings: 'liga';\n}\n\n.gmi-10k:before { content: \"\\e951\"; }\n.gmi-10mp:before { content: \"\\e952\"; }\n.gmi-11mp:before { content: \"\\e953\"; }\n.gmi-12mp:before { content: \"\\e954\"; }\n.gmi-13mp:before { content: \"\\e955\"; }\n.gmi-14mp:before { content: \"\\e956\"; }\n.gmi-15mp:before { content: \"\\e957\"; }\n.gmi-16mp:before { content: \"\\e958\"; }\n.gmi-17mp:before { content: \"\\e959\"; }\n.gmi-18mp:before { content: \"\\e95a\"; }\n.gmi-19mp:before { content: \"\\e95b\"; }\n.gmi-1k:before { content: \"\\e95c\"; }\n.gmi-1k-plus:before { content: \"\\e95d\"; }\n.gmi-20mp:before { content: \"\\e95e\"; }\n.gmi-21mp:before { content: \"\\e95f\"; }\n.gmi-22mp:before { content: \"\\e960\"; }\n.gmi-23mp:before { content: \"\\e961\"; }\n.gmi-24mp:before { content: \"\\e962\"; }\n.gmi-2k:before { content: \"\\e963\"; }\n.gmi-2k-plus:before { content: \"\\e964\"; }\n.gmi-2mp:before { content: \"\\e965\"; }\n.gmi-360:before { content: \"\\e577\"; }\n.gmi-3d-rotation:before { content: \"\\e84d\"; }\n.gmi-3k:before { content: \"\\e966\"; }\n.gmi-3k-plus:before { content: \"\\e967\"; }\n.gmi-3mp:before { content: \"\\e968\"; }\n.gmi-4k:before { content: \"\\e072\"; }\n.gmi-4k-plus:before { content: \"\\e969\"; }\n.gmi-4mp:before { content: \"\\e96a\"; }\n.gmi-5k:before { content: \"\\e96b\"; }\n.gmi-5k-plus:before { content: \"\\e96c\"; }\n.gmi-5mp:before { content: \"\\e96d\"; }\n.gmi-6k:before { content: \"\\e96e\"; }\n.gmi-6k-plus:before { content: \"\\e96f\"; }\n.gmi-6mp:before { content: \"\\e970\"; }\n.gmi-7k:before { content: \"\\e971\"; }\n.gmi-7k-plus:before { content: \"\\e972\"; }\n.gmi-7mp:before { content: \"\\e973\"; }\n.gmi-8k:before { content: \"\\e974\"; }\n.gmi-8k-plus:before { content: \"\\e975\"; }\n.gmi-8mp:before { content: \"\\e976\"; }\n.gmi-9k:before { content: \"\\e977\"; }\n.gmi-9k-plus:before { content: \"\\e978\"; }\n.gmi-9mp:before { content: \"\\e979\"; }\n.gmi-ac-unit:before { content: \"\\eb3b\"; }\n.gmi-access-alarm:before { content: \"\\e190\"; }\n.gmi-access-alarms:before { content: \"\\e191\"; }\n.gmi-access-time:before { content: \"\\e192\"; }\n.gmi-accessibility:before { content: \"\\e84e\"; }\n.gmi-accessibility-new:before { content: \"\\e92c\"; }\n.gmi-accessible:before { content: \"\\e914\"; }\n.gmi-accessible-forward:before { content: \"\\e934\"; }\n.gmi-account-balance:before { content: \"\\e84f\"; }\n.gmi-account-balance-wallet:before { content: \"\\e850\"; }\n.gmi-account-box:before { content: \"\\e851\"; }\n.gmi-account-circle:before { content: \"\\e853\"; }\n.gmi-account-tree:before { content: \"\\e97a\"; }\n.gmi-adb:before { content: \"\\e60e\"; }\n.gmi-add:before { content: \"\\e145\"; }\n.gmi-add-a-photo:before { content: \"\\e439\"; }\n.gmi-add-alarm:before { content: \"\\e193\"; }\n.gmi-add-alert:before { content: \"\\e003\"; }\n.gmi-add-box:before { content: \"\\e146\"; }\n.gmi-add-call:before { content: \"\\e0e8\"; }\n.gmi-add-chart:before { content: \"\\e97b\"; }\n.gmi-add-circle:before { content: \"\\e147\"; }\n.gmi-add-circle-outline:before { content: \"\\e148\"; }\n.gmi-add-comment:before { content: \"\\e266\"; }\n.gmi-add-ic-call:before { content: \"\\e97c\"; }\n.gmi-add-link:before { content: \"\\e178\"; }\n.gmi-add-location:before { content: \"\\e567\"; }\n.gmi-add-moderator:before { content: \"\\e97d\"; }\n.gmi-add-photo-alternate:before { content: \"\\e43e\"; }\n.gmi-add-shopping-cart:before { content: \"\\e854\"; }\n.gmi-add-to-home-screen:before { content: \"\\e1fe\"; }\n.gmi-add-to-photos:before { content: \"\\e39d\"; }\n.gmi-add-to-queue:before { content: \"\\e05c\"; }\n.gmi-adjust:before { content: \"\\e39e\"; }\n.gmi-airline-seat-flat:before { content: \"\\e630\"; }\n.gmi-airline-seat-flat-angled:before { content: \"\\e631\"; }\n.gmi-airline-seat-individual-suite:before { content: \"\\e632\"; }\n.gmi-airline-seat-legroom-extra:before { content: \"\\e633\"; }\n.gmi-airline-seat-legroom-normal:before { content: \"\\e634\"; }\n.gmi-airline-seat-legroom-reduced:before { content: \"\\e635\"; }\n.gmi-airline-seat-recline-extra:before { content: \"\\e636\"; }\n.gmi-airline-seat-recline-normal:before { content: \"\\e637\"; }\n.gmi-airplanemode-active:before { content: \"\\e195\"; }\n.gmi-airplanemode-inactive:before { content: \"\\e194\"; }\n.gmi-airplanemode-off:before { content: \"\\e194\"; }\n.gmi-airplanemode-on:before { content: \"\\e195\"; }\n.gmi-airplay:before { content: \"\\e055\"; }\n.gmi-airport-shuttle:before { content: \"\\eb3c\"; }\n.gmi-alarm:before { content: \"\\e855\"; }\n.gmi-alarm-add:before { content: \"\\e856\"; }\n.gmi-alarm-off:before { content: \"\\e857\"; }\n.gmi-alarm-on:before { content: \"\\e858\"; }\n.gmi-album:before { content: \"\\e019\"; }\n.gmi-all-inbox:before { content: \"\\e97f\"; }\n.gmi-all-inclusive:before { content: \"\\eb3d\"; }\n.gmi-all-out:before { content: \"\\e90b\"; }\n.gmi-alternate-email:before { content: \"\\e0e6\"; }\n.gmi-amp-stories:before { content: \"\\ea13\"; }\n.gmi-android:before { content: \"\\e859\"; }\n.gmi-announcement:before { content: \"\\e85a\"; }\n.gmi-apartment:before { content: \"\\ea40\"; }\n.gmi-approval:before { content: \"\\e982\"; }\n.gmi-apps:before { content: \"\\e5c3\"; }\n.gmi-archive:before { content: \"\\e149\"; }\n.gmi-arrow-back:before { content: \"\\e5c4\"; }\n.gmi-arrow-back-ios:before { content: \"\\e5e0\"; }\n.gmi-arrow-downward:before { content: \"\\e5db\"; }\n.gmi-arrow-drop-down:before { content: \"\\e5c5\"; }\n.gmi-arrow-drop-down-circle:before { content: \"\\e5c6\"; }\n.gmi-arrow-drop-up:before { content: \"\\e5c7\"; }\n.gmi-arrow-forward:before { content: \"\\e5c8\"; }\n.gmi-arrow-forward-ios:before { content: \"\\e5e1\"; }\n.gmi-arrow-left:before { content: \"\\e5de\"; }\n.gmi-arrow-right:before { content: \"\\e5df\"; }\n.gmi-arrow-right-alt:before { content: \"\\e941\"; }\n.gmi-arrow-upward:before { content: \"\\e5d8\"; }\n.gmi-art-track:before { content: \"\\e060\"; }\n.gmi-aspect-ratio:before { content: \"\\e85b\"; }\n.gmi-assessment:before { content: \"\\e85c\"; }\n.gmi-assignment:before { content: \"\\e85d\"; }\n.gmi-assignment-ind:before { content: \"\\e85e\"; }\n.gmi-assignment-late:before { content: \"\\e85f\"; }\n.gmi-assignment-return:before { content: \"\\e860\"; }\n.gmi-assignment-returned:before { content: \"\\e861\"; }\n.gmi-assignment-turned-in:before { content: \"\\e862\"; }\n.gmi-assistant:before { content: \"\\e39f\"; }\n.gmi-assistant-direction:before { content: \"\\e988\"; }\n.gmi-assistant-navigation:before { content: \"\\e989\"; }\n.gmi-assistant-photo:before { content: \"\\e3a0\"; }\n.gmi-atm:before { content: \"\\e573\"; }\n.gmi-attach-file:before { content: \"\\e226\"; }\n.gmi-attach-money:before { content: \"\\e227\"; }\n.gmi-attachment:before { content: \"\\e2bc\"; }\n.gmi-attractions:before { content: \"\\ea52\"; }\n.gmi-audiotrack:before { content: \"\\e3a1\"; }\n.gmi-autorenew:before { content: \"\\e863\"; }\n.gmi-av-timer:before { content: \"\\e01b\"; }\n.gmi-backspace:before { content: \"\\e14a\"; }\n.gmi-backup:before { content: \"\\e864\"; }\n.gmi-badge:before { content: \"\\ea67\"; }\n.gmi-bakery-dining:before { content: \"\\ea53\"; }\n.gmi-ballot:before { content: \"\\e172\"; }\n.gmi-bar-chart:before { content: \"\\e26b\"; }\n.gmi-bathtub:before { content: \"\\ea41\"; }\n.gmi-battery-alert:before { content: \"\\e19c\"; }\n.gmi-battery-charging-full:before { content: \"\\e1a3\"; }\n.gmi-battery-full:before { content: \"\\e1a4\"; }\n.gmi-battery-std:before { content: \"\\e1a5\"; }\n.gmi-battery-unknown:before { content: \"\\e1a6\"; }\n.gmi-beach-access:before { content: \"\\eb3e\"; }\n.gmi-beenhere:before { content: \"\\e52d\"; }\n.gmi-block:before { content: \"\\e14b\"; }\n.gmi-bluetooth:before { content: \"\\e1a7\"; }\n.gmi-bluetooth-audio:before { content: \"\\e60f\"; }\n.gmi-bluetooth-connected:before { content: \"\\e1a8\"; }\n.gmi-bluetooth-disabled:before { content: \"\\e1a9\"; }\n.gmi-bluetooth-searching:before { content: \"\\e1aa\"; }\n.gmi-blur-circular:before { content: \"\\e3a2\"; }\n.gmi-blur-linear:before { content: \"\\e3a3\"; }\n.gmi-blur-off:before { content: \"\\e3a4\"; }\n.gmi-blur-on:before { content: \"\\e3a5\"; }\n.gmi-bolt:before { content: \"\\ea0b\"; }\n.gmi-book:before { content: \"\\e865\"; }\n.gmi-bookmark:before { content: \"\\e866\"; }\n.gmi-bookmark-border:before { content: \"\\e867\"; }\n.gmi-bookmark-outline:before { content: \"\\e867\"; }\n.gmi-bookmarks:before { content: \"\\e98b\"; }\n.gmi-border-all:before { content: \"\\e228\"; }\n.gmi-border-bottom:before { content: \"\\e229\"; }\n.gmi-border-clear:before { content: \"\\e22a\"; }\n.gmi-border-color:before { content: \"\\e22b\"; }\n.gmi-border-horizontal:before { content: \"\\e22c\"; }\n.gmi-border-inner:before { content: \"\\e22d\"; }\n.gmi-border-left:before { content: \"\\e22e\"; }\n.gmi-border-outer:before { content: \"\\e22f\"; }\n.gmi-border-right:before { content: \"\\e230\"; }\n.gmi-border-style:before { content: \"\\e231\"; }\n.gmi-border-top:before { content: \"\\e232\"; }\n.gmi-border-vertical:before { content: \"\\e233\"; }\n.gmi-branding-watermark:before { content: \"\\e06b\"; }\n.gmi-breakfast-dining:before { content: \"\\ea54\"; }\n.gmi-brightness-1:before { content: \"\\e3a6\"; }\n.gmi-brightness-2:before { content: \"\\e3a7\"; }\n.gmi-brightness-3:before { content: \"\\e3a8\"; }\n.gmi-brightness-4:before { content: \"\\e3a9\"; }\n.gmi-brightness-5:before { content: \"\\e3aa\"; }\n.gmi-brightness-6:before { content: \"\\e3ab\"; }\n.gmi-brightness-7:before { content: \"\\e3ac\"; }\n.gmi-brightness-auto:before { content: \"\\e1ab\"; }\n.gmi-brightness-high:before { content: \"\\e1ac\"; }\n.gmi-brightness-low:before { content: \"\\e1ad\"; }\n.gmi-brightness-medium:before { content: \"\\e1ae\"; }\n.gmi-broken-image:before { content: \"\\e3ad\"; }\n.gmi-brunch-dining:before { content: \"\\ea73\"; }\n.gmi-brush:before { content: \"\\e3ae\"; }\n.gmi-bubble-chart:before { content: \"\\e6dd\"; }\n.gmi-bug-report:before { content: \"\\e868\"; }\n.gmi-build:before { content: \"\\e869\"; }\n.gmi-burst-mode:before { content: \"\\e43c\"; }\n.gmi-bus-alert:before { content: \"\\e98f\"; }\n.gmi-business:before { content: \"\\e0af\"; }\n.gmi-business-center:before { content: \"\\eb3f\"; }\n.gmi-cached:before { content: \"\\e86a\"; }\n.gmi-cake:before { content: \"\\e7e9\"; }\n.gmi-calendar-today:before { content: \"\\e935\"; }\n.gmi-calendar-view-day:before { content: \"\\e936\"; }\n.gmi-call:before { content: \"\\e0b0\"; }\n.gmi-call-end:before { content: \"\\e0b1\"; }\n.gmi-call-made:before { content: \"\\e0b2\"; }\n.gmi-call-merge:before { content: \"\\e0b3\"; }\n.gmi-call-missed:before { content: \"\\e0b4\"; }\n.gmi-call-missed-outgoing:before { content: \"\\e0e4\"; }\n.gmi-call-received:before { content: \"\\e0b5\"; }\n.gmi-call-split:before { content: \"\\e0b6\"; }\n.gmi-call-to-action:before { content: \"\\e06c\"; }\n.gmi-camera:before { content: \"\\e3af\"; }\n.gmi-camera-alt:before { content: \"\\e3b0\"; }\n.gmi-camera-enhance:before { content: \"\\e8fc\"; }\n.gmi-camera-front:before { content: \"\\e3b1\"; }\n.gmi-camera-rear:before { content: \"\\e3b2\"; }\n.gmi-camera-roll:before { content: \"\\e3b3\"; }\n.gmi-cancel:before { content: \"\\e5c9\"; }\n.gmi-cancel-presentation:before { content: \"\\e0e9\"; }\n.gmi-cancel-schedule-send:before { content: \"\\ea39\"; }\n.gmi-car-rental:before { content: \"\\ea55\"; }\n.gmi-car-repair:before { content: \"\\ea56\"; }\n.gmi-card-giftcard:before { content: \"\\e8f6\"; }\n.gmi-card-membership:before { content: \"\\e8f7\"; }\n.gmi-card-travel:before { content: \"\\e8f8\"; }\n.gmi-cases:before { content: \"\\e992\"; }\n.gmi-casino:before { content: \"\\eb40\"; }\n.gmi-cast:before { content: \"\\e307\"; }\n.gmi-cast-connected:before { content: \"\\e308\"; }\n.gmi-category:before { content: \"\\e574\"; }\n.gmi-celebration:before { content: \"\\ea65\"; }\n.gmi-cell-wifi:before { content: \"\\e0ec\"; }\n.gmi-center-focus-strong:before { content: \"\\e3b4\"; }\n.gmi-center-focus-weak:before { content: \"\\e3b5\"; }\n.gmi-change-history:before { content: \"\\e86b\"; }\n.gmi-chat:before { content: \"\\e0b7\"; }\n.gmi-chat-bubble:before { content: \"\\e0ca\"; }\n.gmi-chat-bubble-outline:before { content: \"\\e0cb\"; }\n.gmi-check:before { content: \"\\e5ca\"; }\n.gmi-check-box:before { content: \"\\e834\"; }\n.gmi-check-box-outline-blank:before { content: \"\\e835\"; }\n.gmi-check-circle:before { content: \"\\e86c\"; }\n.gmi-check-circle-outline:before { content: \"\\e92d\"; }\n.gmi-chevron-left:before { content: \"\\e5cb\"; }\n.gmi-chevron-right:before { content: \"\\e5cc\"; }\n.gmi-child-care:before { content: \"\\eb41\"; }\n.gmi-child-friendly:before { content: \"\\eb42\"; }\n.gmi-chrome-reader-mode:before { content: \"\\e86d\"; }\n.gmi-circle-notifications:before { content: \"\\e994\"; }\n.gmi-class:before { content: \"\\e86e\"; }\n.gmi-clear:before { content: \"\\e14c\"; }\n.gmi-clear-all:before { content: \"\\e0b8\"; }\n.gmi-close:before { content: \"\\e5cd\"; }\n.gmi-closed-caption:before { content: \"\\e01c\"; }\n.gmi-closed-caption-off:before { content: \"\\e996\"; }\n.gmi-cloud:before { content: \"\\e2bd\"; }\n.gmi-cloud-circle:before { content: \"\\e2be\"; }\n.gmi-cloud-done:before { content: \"\\e2bf\"; }\n.gmi-cloud-download:before { content: \"\\e2c0\"; }\n.gmi-cloud-off:before { content: \"\\e2c1\"; }\n.gmi-cloud-queue:before { content: \"\\e2c2\"; }\n.gmi-cloud-upload:before { content: \"\\e2c3\"; }\n.gmi-code:before { content: \"\\e86f\"; }\n.gmi-collections:before { content: \"\\e3b6\"; }\n.gmi-collections-bookmark:before { content: \"\\e431\"; }\n.gmi-color-lens:before { content: \"\\e3b7\"; }\n.gmi-colorize:before { content: \"\\e3b8\"; }\n.gmi-comment:before { content: \"\\e0b9\"; }\n.gmi-commute:before { content: \"\\e940\"; }\n.gmi-compare:before { content: \"\\e3b9\"; }\n.gmi-compare-arrows:before { content: \"\\e915\"; }\n.gmi-compass-calibration:before { content: \"\\e57c\"; }\n.gmi-compress:before { content: \"\\e94d\"; }\n.gmi-computer:before { content: \"\\e30a\"; }\n.gmi-confirmation-num:before { content: \"\\e638\"; }\n.gmi-confirmation-number:before { content: \"\\e638\"; }\n.gmi-connected-tv:before { content: \"\\e998\"; }\n.gmi-contact-mail:before { content: \"\\e0d0\"; }\n.gmi-contact-phone:before { content: \"\\e0cf\"; }\n.gmi-contact-support:before { content: \"\\e94c\"; }\n.gmi-contactless:before { content: \"\\ea71\"; }\n.gmi-contacts:before { content: \"\\e0ba\"; }\n.gmi-content-copy:before { content: \"\\e14d\"; }\n.gmi-content-cut:before { content: \"\\e14e\"; }\n.gmi-content-paste:before { content: \"\\e14f\"; }\n.gmi-control-camera:before { content: \"\\e074\"; }\n.gmi-control-point:before { content: \"\\e3ba\"; }\n.gmi-control-point-duplicate:before { content: \"\\e3bb\"; }\n.gmi-copyright:before { content: \"\\e90c\"; }\n.gmi-create:before { content: \"\\e150\"; }\n.gmi-create-new-folder:before { content: \"\\e2cc\"; }\n.gmi-credit-card:before { content: \"\\e870\"; }\n.gmi-crop:before { content: \"\\e3be\"; }\n.gmi-crop-16-9:before { content: \"\\e3bc\"; }\n.gmi-crop-3-2:before { content: \"\\e3bd\"; }\n.gmi-crop-5-4:before { content: \"\\e3bf\"; }\n.gmi-crop-7-5:before { content: \"\\e3c0\"; }\n.gmi-crop-din:before { content: \"\\e3c1\"; }\n.gmi-crop-free:before { content: \"\\e3c2\"; }\n.gmi-crop-landscape:before { content: \"\\e3c3\"; }\n.gmi-crop-original:before { content: \"\\e3c4\"; }\n.gmi-crop-portrait:before { content: \"\\e3c5\"; }\n.gmi-crop-rotate:before { content: \"\\e437\"; }\n.gmi-crop-square:before { content: \"\\e3c6\"; }\n.gmi-dangerous:before { content: \"\\e99a\"; }\n.gmi-dashboard:before { content: \"\\e871\"; }\n.gmi-dashboard-customize:before { content: \"\\e99b\"; }\n.gmi-data-usage:before { content: \"\\e1af\"; }\n.gmi-date-range:before { content: \"\\e916\"; }\n.gmi-deck:before { content: \"\\ea42\"; }\n.gmi-dehaze:before { content: \"\\e3c7\"; }\n.gmi-delete:before { content: \"\\e872\"; }\n.gmi-delete-forever:before { content: \"\\e92b\"; }\n.gmi-delete-outline:before { content: \"\\e92e\"; }\n.gmi-delete-sweep:before { content: \"\\e16c\"; }\n.gmi-delivery-dining:before { content: \"\\ea72\"; }\n.gmi-departure-board:before { content: \"\\e576\"; }\n.gmi-description:before { content: \"\\e873\"; }\n.gmi-desktop-access-disabled:before { content: \"\\e99d\"; }\n.gmi-desktop-mac:before { content: \"\\e30b\"; }\n.gmi-desktop-windows:before { content: \"\\e30c\"; }\n.gmi-details:before { content: \"\\e3c8\"; }\n.gmi-developer-board:before { content: \"\\e30d\"; }\n.gmi-developer-mode:before { content: \"\\e1b0\"; }\n.gmi-device-hub:before { content: \"\\e335\"; }\n.gmi-device-thermostat:before { content: \"\\e1ff\"; }\n.gmi-device-unknown:before { content: \"\\e339\"; }\n.gmi-devices:before { content: \"\\e1b1\"; }\n.gmi-devices-other:before { content: \"\\e337\"; }\n.gmi-dialer-sip:before { content: \"\\e0bb\"; }\n.gmi-dialpad:before { content: \"\\e0bc\"; }\n.gmi-dinner-dining:before { content: \"\\ea57\"; }\n.gmi-directions:before { content: \"\\e52e\"; }\n.gmi-directions-bike:before { content: \"\\e52f\"; }\n.gmi-directions-boat:before { content: \"\\e532\"; }\n.gmi-directions-bus:before { content: \"\\e530\"; }\n.gmi-directions-car:before { content: \"\\e531\"; }\n.gmi-directions-ferry:before { content: \"\\e532\"; }\n.gmi-directions-railway:before { content: \"\\e534\"; }\n.gmi-directions-run:before { content: \"\\e566\"; }\n.gmi-directions-subway:before { content: \"\\e533\"; }\n.gmi-directions-train:before { content: \"\\e534\"; }\n.gmi-directions-transit:before { content: \"\\e535\"; }\n.gmi-directions-walk:before { content: \"\\e536\"; }\n.gmi-disc-full:before { content: \"\\e610\"; }\n.gmi-dnd-forwardslash:before { content: \"\\e611\"; }\n.gmi-dns:before { content: \"\\e875\"; }\n.gmi-do-not-disturb:before { content: \"\\e612\"; }\n.gmi-do-not-disturb-alt:before { content: \"\\e611\"; }\n.gmi-do-not-disturb-off:before { content: \"\\e643\"; }\n.gmi-do-not-disturb-on:before { content: \"\\e644\"; }\n.gmi-dock:before { content: \"\\e30e\"; }\n.gmi-domain:before { content: \"\\e7ee\"; }\n.gmi-domain-disabled:before { content: \"\\e0ef\"; }\n.gmi-done:before { content: \"\\e876\"; }\n.gmi-done-all:before { content: \"\\e877\"; }\n.gmi-done-outline:before { content: \"\\e92f\"; }\n.gmi-donut-large:before { content: \"\\e917\"; }\n.gmi-donut-small:before { content: \"\\e918\"; }\n.gmi-double-arrow:before { content: \"\\ea50\"; }\n.gmi-drafts:before { content: \"\\e151\"; }\n.gmi-drag-handle:before { content: \"\\e25d\"; }\n.gmi-drag-indicator:before { content: \"\\e945\"; }\n.gmi-drive-eta:before { content: \"\\e613\"; }\n.gmi-drive-file-move-outline:before { content: \"\\e9a1\"; }\n.gmi-drive-file-rename-outline:before { content: \"\\e9a2\"; }\n.gmi-drive-folder-upload:before { content: \"\\e9a3\"; }\n.gmi-dry-cleaning:before { content: \"\\ea58\"; }\n.gmi-duo:before { content: \"\\e9a5\"; }\n.gmi-dvr:before { content: \"\\e1b2\"; }\n.gmi-dynamic-feed:before { content: \"\\ea14\"; }\n.gmi-eco:before { content: \"\\ea35\"; }\n.gmi-edit:before { content: \"\\e3c9\"; }\n.gmi-edit-attributes:before { content: \"\\e578\"; }\n.gmi-edit-location:before { content: \"\\e568\"; }\n.gmi-edit-off:before { content: \"\\e950\"; }\n.gmi-eject:before { content: \"\\e8fb\"; }\n.gmi-email:before { content: \"\\e0be\"; }\n.gmi-emoji-emotions:before { content: \"\\ea22\"; }\n.gmi-emoji-events:before { content: \"\\ea23\"; }\n.gmi-emoji-flags:before { content: \"\\ea1a\"; }\n.gmi-emoji-food-beverage:before { content: \"\\ea1b\"; }\n.gmi-emoji-nature:before { content: \"\\ea1c\"; }\n.gmi-emoji-objects:before { content: \"\\ea24\"; }\n.gmi-emoji-people:before { content: \"\\ea1d\"; }\n.gmi-emoji-symbols:before { content: \"\\ea1e\"; }\n.gmi-emoji-transportation:before { content: \"\\ea1f\"; }\n.gmi-enhance-photo-translate:before { content: \"\\e8fc\"; }\n.gmi-enhanced-encryption:before { content: \"\\e63f\"; }\n.gmi-equalizer:before { content: \"\\e01d\"; }\n.gmi-error:before { content: \"\\e000\"; }\n.gmi-error-outline:before { content: \"\\e001\"; }\n.gmi-euro:before { content: \"\\ea15\"; }\n.gmi-euro-symbol:before { content: \"\\e926\"; }\n.gmi-ev-station:before { content: \"\\e56d\"; }\n.gmi-event:before { content: \"\\e878\"; }\n.gmi-event-available:before { content: \"\\e614\"; }\n.gmi-event-busy:before { content: \"\\e615\"; }\n.gmi-event-note:before { content: \"\\e616\"; }\n.gmi-event-seat:before { content: \"\\e903\"; }\n.gmi-exit-to-app:before { content: \"\\e879\"; }\n.gmi-expand:before { content: \"\\e94f\"; }\n.gmi-expand-less:before { content: \"\\e5ce\"; }\n.gmi-expand-more:before { content: \"\\e5cf\"; }\n.gmi-explicit:before { content: \"\\e01e\"; }\n.gmi-explore:before { content: \"\\e87a\"; }\n.gmi-explore-off:before { content: \"\\e9a8\"; }\n.gmi-exposure:before { content: \"\\e3ca\"; }\n.gmi-exposure-minus-1:before { content: \"\\e3cb\"; }\n.gmi-exposure-minus-2:before { content: \"\\e3cc\"; }\n.gmi-exposure-neg-1:before { content: \"\\e3cb\"; }\n.gmi-exposure-neg-2:before { content: \"\\e3cc\"; }\n.gmi-exposure-plus-1:before { content: \"\\e3cd\"; }\n.gmi-exposure-plus-2:before { content: \"\\e3ce\"; }\n.gmi-exposure-zero:before { content: \"\\e3cf\"; }\n.gmi-extension:before { content: \"\\e87b\"; }\n.gmi-face:before { content: \"\\e87c\"; }\n.gmi-fast-forward:before { content: \"\\e01f\"; }\n.gmi-fast-rewind:before { content: \"\\e020\"; }\n.gmi-fastfood:before { content: \"\\e57a\"; }\n.gmi-favorite:before { content: \"\\e87d\"; }\n.gmi-favorite-border:before { content: \"\\e87e\"; }\n.gmi-favorite-outline:before { content: \"\\e87e\"; }\n.gmi-featured-play-list:before { content: \"\\e06d\"; }\n.gmi-featured-video:before { content: \"\\e06e\"; }\n.gmi-feedback:before { content: \"\\e87f\"; }\n.gmi-festival:before { content: \"\\ea68\"; }\n.gmi-fiber-dvr:before { content: \"\\e05d\"; }\n.gmi-fiber-manual-record:before { content: \"\\e061\"; }\n.gmi-fiber-new:before { content: \"\\e05e\"; }\n.gmi-fiber-pin:before { content: \"\\e06a\"; }\n.gmi-fiber-smart-record:before { content: \"\\e062\"; }\n.gmi-file-copy:before { content: \"\\e173\"; }\n.gmi-file-download:before { content: \"\\e2c4\"; }\n.gmi-file-download-done:before { content: \"\\e9aa\"; }\n.gmi-file-present:before { content: \"\\ea0e\"; }\n.gmi-file-upload:before { content: \"\\e2c6\"; }\n.gmi-filter:before { content: \"\\e3d3\"; }\n.gmi-filter-1:before { content: \"\\e3d0\"; }\n.gmi-filter-2:before { content: \"\\e3d1\"; }\n.gmi-filter-3:before { content: \"\\e3d2\"; }\n.gmi-filter-4:before { content: \"\\e3d4\"; }\n.gmi-filter-5:before { content: \"\\e3d5\"; }\n.gmi-filter-6:before { content: \"\\e3d6\"; }\n.gmi-filter-7:before { content: \"\\e3d7\"; }\n.gmi-filter-8:before { content: \"\\e3d8\"; }\n.gmi-filter-9:before { content: \"\\e3d9\"; }\n.gmi-filter-9-plus:before { content: \"\\e3da\"; }\n.gmi-filter-b-and-w:before { content: \"\\e3db\"; }\n.gmi-filter-center-focus:before { content: \"\\e3dc\"; }\n.gmi-filter-drama:before { content: \"\\e3dd\"; }\n.gmi-filter-frames:before { content: \"\\e3de\"; }\n.gmi-filter-hdr:before { content: \"\\e3df\"; }\n.gmi-filter-list:before { content: \"\\e152\"; }\n.gmi-filter-list-alt:before { content: \"\\e94e\"; }\n.gmi-filter-none:before { content: \"\\e3e0\"; }\n.gmi-filter-tilt-shift:before { content: \"\\e3e2\"; }\n.gmi-filter-vintage:before { content: \"\\e3e3\"; }\n.gmi-find-in-page:before { content: \"\\e880\"; }\n.gmi-find-replace:before { content: \"\\e881\"; }\n.gmi-fingerprint:before { content: \"\\e90d\"; }\n.gmi-fireplace:before { content: \"\\ea43\"; }\n.gmi-first-page:before { content: \"\\e5dc\"; }\n.gmi-fit-screen:before { content: \"\\ea10\"; }\n.gmi-fitness-center:before { content: \"\\eb43\"; }\n.gmi-flag:before { content: \"\\e153\"; }\n.gmi-flare:before { content: \"\\e3e4\"; }\n.gmi-flash-auto:before { content: \"\\e3e5\"; }\n.gmi-flash-off:before { content: \"\\e3e6\"; }\n.gmi-flash-on:before { content: \"\\e3e7\"; }\n.gmi-flight:before { content: \"\\e539\"; }\n.gmi-flight-land:before { content: \"\\e904\"; }\n.gmi-flight-takeoff:before { content: \"\\e905\"; }\n.gmi-flip:before { content: \"\\e3e8\"; }\n.gmi-flip-camera-android:before { content: \"\\ea37\"; }\n.gmi-flip-camera-ios:before { content: \"\\ea38\"; }\n.gmi-flip-to-back:before { content: \"\\e882\"; }\n.gmi-flip-to-front:before { content: \"\\e883\"; }\n.gmi-folder:before { content: \"\\e2c7\"; }\n.gmi-folder-open:before { content: \"\\e2c8\"; }\n.gmi-folder-shared:before { content: \"\\e2c9\"; }\n.gmi-folder-special:before { content: \"\\e617\"; }\n.gmi-font-download:before { content: \"\\e167\"; }\n.gmi-format-align-center:before { content: \"\\e234\"; }\n.gmi-format-align-justify:before { content: \"\\e235\"; }\n.gmi-format-align-left:before { content: \"\\e236\"; }\n.gmi-format-align-right:before { content: \"\\e237\"; }\n.gmi-format-bold:before { content: \"\\e238\"; }\n.gmi-format-clear:before { content: \"\\e239\"; }\n.gmi-format-color-fill:before { content: \"\\e23a\"; }\n.gmi-format-color-reset:before { content: \"\\e23b\"; }\n.gmi-format-color-text:before { content: \"\\e23c\"; }\n.gmi-format-indent-decrease:before { content: \"\\e23d\"; }\n.gmi-format-indent-increase:before { content: \"\\e23e\"; }\n.gmi-format-italic:before { content: \"\\e23f\"; }\n.gmi-format-line-spacing:before { content: \"\\e240\"; }\n.gmi-format-list-bulleted:before { content: \"\\e241\"; }\n.gmi-format-list-numbered:before { content: \"\\e242\"; }\n.gmi-format-list-numbered-rtl:before { content: \"\\e267\"; }\n.gmi-format-paint:before { content: \"\\e243\"; }\n.gmi-format-quote:before { content: \"\\e244\"; }\n.gmi-format-shapes:before { content: \"\\e25e\"; }\n.gmi-format-size:before { content: \"\\e245\"; }\n.gmi-format-strikethrough:before { content: \"\\e246\"; }\n.gmi-format-textdirection-l-to-r:before { content: \"\\e247\"; }\n.gmi-format-textdirection-r-to-l:before { content: \"\\e248\"; }\n.gmi-format-underline:before { content: \"\\e249\"; }\n.gmi-format-underlined:before { content: \"\\e249\"; }\n.gmi-forum:before { content: \"\\e0bf\"; }\n.gmi-forward:before { content: \"\\e154\"; }\n.gmi-forward-10:before { content: \"\\e056\"; }\n.gmi-forward-30:before { content: \"\\e057\"; }\n.gmi-forward-5:before { content: \"\\e058\"; }\n.gmi-free-breakfast:before { content: \"\\eb44\"; }\n.gmi-fullscreen:before { content: \"\\e5d0\"; }\n.gmi-fullscreen-exit:before { content: \"\\e5d1\"; }\n.gmi-functions:before { content: \"\\e24a\"; }\n.gmi-g-translate:before { content: \"\\e927\"; }\n.gmi-gamepad:before { content: \"\\e30f\"; }\n.gmi-games:before { content: \"\\e021\"; }\n.gmi-gavel:before { content: \"\\e90e\"; }\n.gmi-gesture:before { content: \"\\e155\"; }\n.gmi-get-app:before { content: \"\\e884\"; }\n.gmi-gif:before { content: \"\\e908\"; }\n.gmi-goat:before { content: \"\\dbff\"; }\n.gmi-golf-course:before { content: \"\\eb45\"; }\n.gmi-gps-fixed:before { content: \"\\e1b3\"; }\n.gmi-gps-not-fixed:before { content: \"\\e1b4\"; }\n.gmi-gps-off:before { content: \"\\e1b5\"; }\n.gmi-grade:before { content: \"\\e885\"; }\n.gmi-gradient:before { content: \"\\e3e9\"; }\n.gmi-grain:before { content: \"\\e3ea\"; }\n.gmi-graphic-eq:before { content: \"\\e1b8\"; }\n.gmi-grid-off:before { content: \"\\e3eb\"; }\n.gmi-grid-on:before { content: \"\\e3ec\"; }\n.gmi-grid-view:before { content: \"\\e9b0\"; }\n.gmi-group:before { content: \"\\e7ef\"; }\n.gmi-group-add:before { content: \"\\e7f0\"; }\n.gmi-group-work:before { content: \"\\e886\"; }\n.gmi-hail:before { content: \"\\e9b1\"; }\n.gmi-hardware:before { content: \"\\ea59\"; }\n.gmi-hd:before { content: \"\\e052\"; }\n.gmi-hdr-off:before { content: \"\\e3ed\"; }\n.gmi-hdr-on:before { content: \"\\e3ee\"; }\n.gmi-hdr-strong:before { content: \"\\e3f1\"; }\n.gmi-hdr-weak:before { content: \"\\e3f2\"; }\n.gmi-headset:before { content: \"\\e310\"; }\n.gmi-headset-mic:before { content: \"\\e311\"; }\n.gmi-headset-off:before { content: \"\\e33a\"; }\n.gmi-healing:before { content: \"\\e3f3\"; }\n.gmi-hearing:before { content: \"\\e023\"; }\n.gmi-height:before { content: \"\\ea16\"; }\n.gmi-help:before { content: \"\\e887\"; }\n.gmi-help-outline:before { content: \"\\e8fd\"; }\n.gmi-high-quality:before { content: \"\\e024\"; }\n.gmi-highlight:before { content: \"\\e25f\"; }\n.gmi-highlight-off:before { content: \"\\e888\"; }\n.gmi-highlight-remove:before { content: \"\\e888\"; }\n.gmi-history:before { content: \"\\e889\"; }\n.gmi-home:before { content: \"\\e88a\"; }\n.gmi-home-filled:before { content: \"\\e9b2\"; }\n.gmi-home-work:before { content: \"\\ea09\"; }\n.gmi-horizontal-split:before { content: \"\\e947\"; }\n.gmi-hot-tub:before { content: \"\\eb46\"; }\n.gmi-hotel:before { content: \"\\e53a\"; }\n.gmi-hourglass-empty:before { content: \"\\e88b\"; }\n.gmi-hourglass-full:before { content: \"\\e88c\"; }\n.gmi-house:before { content: \"\\ea44\"; }\n.gmi-how-to-reg:before { content: \"\\e174\"; }\n.gmi-how-to-vote:before { content: \"\\e175\"; }\n.gmi-http:before { content: \"\\e902\"; }\n.gmi-https:before { content: \"\\e88d\"; }\n.gmi-icecream:before { content: \"\\ea69\"; }\n.gmi-image:before { content: \"\\e3f4\"; }\n.gmi-image-aspect-ratio:before { content: \"\\e3f5\"; }\n.gmi-image-search:before { content: \"\\e43f\"; }\n.gmi-imagesearch-roller:before { content: \"\\e9b4\"; }\n.gmi-import-contacts:before { content: \"\\e0e0\"; }\n.gmi-import-export:before { content: \"\\e0c3\"; }\n.gmi-important-devices:before { content: \"\\e912\"; }\n.gmi-inbox:before { content: \"\\e156\"; }\n.gmi-indeterminate-check-box:before { content: \"\\e909\"; }\n.gmi-info:before { content: \"\\e88e\"; }\n.gmi-info-outline:before { content: \"\\e88f\"; }\n.gmi-input:before { content: \"\\e890\"; }\n.gmi-insert-chart:before { content: \"\\e24b\"; }\n.gmi-insert-chart-outlined:before { content: \"\\e26a\"; }\n.gmi-insert-comment:before { content: \"\\e24c\"; }\n.gmi-insert-drive-file:before { content: \"\\e24d\"; }\n.gmi-insert-emoticon:before { content: \"\\e24e\"; }\n.gmi-insert-invitation:before { content: \"\\e24f\"; }\n.gmi-insert-link:before { content: \"\\e250\"; }\n.gmi-insert-photo:before { content: \"\\e251\"; }\n.gmi-inventory:before { content: \"\\e179\"; }\n.gmi-invert-colors:before { content: \"\\e891\"; }\n.gmi-invert-colors-off:before { content: \"\\e0c4\"; }\n.gmi-invert-colors-on:before { content: \"\\e891\"; }\n.gmi-iso:before { content: \"\\e3f6\"; }\n.gmi-keyboard:before { content: \"\\e312\"; }\n.gmi-keyboard-arrow-down:before { content: \"\\e313\"; }\n.gmi-keyboard-arrow-left:before { content: \"\\e314\"; }\n.gmi-keyboard-arrow-right:before { content: \"\\e315\"; }\n.gmi-keyboard-arrow-up:before { content: \"\\e316\"; }\n.gmi-keyboard-backspace:before { content: \"\\e317\"; }\n.gmi-keyboard-capslock:before { content: \"\\e318\"; }\n.gmi-keyboard-control:before { content: \"\\e5d3\"; }\n.gmi-keyboard-hide:before { content: \"\\e31a\"; }\n.gmi-keyboard-return:before { content: \"\\e31b\"; }\n.gmi-keyboard-tab:before { content: \"\\e31c\"; }\n.gmi-keyboard-voice:before { content: \"\\e31d\"; }\n.gmi-king-bed:before { content: \"\\ea45\"; }\n.gmi-kitchen:before { content: \"\\eb47\"; }\n.gmi-label:before { content: \"\\e892\"; }\n.gmi-label-important:before { content: \"\\e937\"; }\n.gmi-label-important-outline:before { content: \"\\e948\"; }\n.gmi-label-off:before { content: \"\\e9b6\"; }\n.gmi-label-outline:before { content: \"\\e893\"; }\n.gmi-landscape:before { content: \"\\e3f7\"; }\n.gmi-language:before { content: \"\\e894\"; }\n.gmi-laptop:before { content: \"\\e31e\"; }\n.gmi-laptop-chromebook:before { content: \"\\e31f\"; }\n.gmi-laptop-mac:before { content: \"\\e320\"; }\n.gmi-laptop-windows:before { content: \"\\e321\"; }\n.gmi-last-page:before { content: \"\\e5dd\"; }\n.gmi-launch:before { content: \"\\e895\"; }\n.gmi-layers:before { content: \"\\e53b\"; }\n.gmi-layers-clear:before { content: \"\\e53c\"; }\n.gmi-leak-add:before { content: \"\\e3f8\"; }\n.gmi-leak-remove:before { content: \"\\e3f9\"; }\n.gmi-lens:before { content: \"\\e3fa\"; }\n.gmi-library-add:before { content: \"\\e02e\"; }\n.gmi-library-add-check:before { content: \"\\e9b7\"; }\n.gmi-library-books:before { content: \"\\e02f\"; }\n.gmi-library-music:before { content: \"\\e030\"; }\n.gmi-lightbulb:before { content: \"\\e0f0\"; }\n.gmi-lightbulb-outline:before { content: \"\\e90f\"; }\n.gmi-line-style:before { content: \"\\e919\"; }\n.gmi-line-weight:before { content: \"\\e91a\"; }\n.gmi-linear-scale:before { content: \"\\e260\"; }\n.gmi-link:before { content: \"\\e157\"; }\n.gmi-link-off:before { content: \"\\e16f\"; }\n.gmi-linked-camera:before { content: \"\\e438\"; }\n.gmi-liquor:before { content: \"\\ea60\"; }\n.gmi-list:before { content: \"\\e896\"; }\n.gmi-list-alt:before { content: \"\\e0ee\"; }\n.gmi-live-help:before { content: \"\\e0c6\"; }\n.gmi-live-tv:before { content: \"\\e639\"; }\n.gmi-local-activity:before { content: \"\\e53f\"; }\n.gmi-local-airport:before { content: \"\\e53d\"; }\n.gmi-local-atm:before { content: \"\\e53e\"; }\n.gmi-local-attraction:before { content: \"\\e53f\"; }\n.gmi-local-bar:before { content: \"\\e540\"; }\n.gmi-local-cafe:before { content: \"\\e541\"; }\n.gmi-local-car-wash:before { content: \"\\e542\"; }\n.gmi-local-convenience-store:before { content: \"\\e543\"; }\n.gmi-local-dining:before { content: \"\\e556\"; }\n.gmi-local-drink:before { content: \"\\e544\"; }\n.gmi-local-florist:before { content: \"\\e545\"; }\n.gmi-local-gas-station:before { content: \"\\e546\"; }\n.gmi-local-grocery-store:before { content: \"\\e547\"; }\n.gmi-local-hospital:before { content: \"\\e548\"; }\n.gmi-local-hotel:before { content: \"\\e549\"; }\n.gmi-local-laundry-service:before { content: \"\\e54a\"; }\n.gmi-local-library:before { content: \"\\e54b\"; }\n.gmi-local-mall:before { content: \"\\e54c\"; }\n.gmi-local-movies:before { content: \"\\e54d\"; }\n.gmi-local-offer:before { content: \"\\e54e\"; }\n.gmi-local-parking:before { content: \"\\e54f\"; }\n.gmi-local-pharmacy:before { content: \"\\e550\"; }\n.gmi-local-phone:before { content: \"\\e551\"; }\n.gmi-local-pizza:before { content: \"\\e552\"; }\n.gmi-local-play:before { content: \"\\e553\"; }\n.gmi-local-post-office:before { content: \"\\e554\"; }\n.gmi-local-print-shop:before { content: \"\\e555\"; }\n.gmi-local-printshop:before { content: \"\\e555\"; }\n.gmi-local-restaurant:before { content: \"\\e556\"; }\n.gmi-local-see:before { content: \"\\e557\"; }\n.gmi-local-shipping:before { content: \"\\e558\"; }\n.gmi-local-taxi:before { content: \"\\e559\"; }\n.gmi-location-city:before { content: \"\\e7f1\"; }\n.gmi-location-disabled:before { content: \"\\e1b6\"; }\n.gmi-location-history:before { content: \"\\e55a\"; }\n.gmi-location-off:before { content: \"\\e0c7\"; }\n.gmi-location-on:before { content: \"\\e0c8\"; }\n.gmi-location-searching:before { content: \"\\e1b7\"; }\n.gmi-lock:before { content: \"\\e897\"; }\n.gmi-lock-open:before { content: \"\\e898\"; }\n.gmi-lock-outline:before { content: \"\\e899\"; }\n.gmi-logout:before { content: \"\\e9ba\"; }\n.gmi-looks:before { content: \"\\e3fc\"; }\n.gmi-looks-3:before { content: \"\\e3fb\"; }\n.gmi-looks-4:before { content: \"\\e3fd\"; }\n.gmi-looks-5:before { content: \"\\e3fe\"; }\n.gmi-looks-6:before { content: \"\\e3ff\"; }\n.gmi-looks-one:before { content: \"\\e400\"; }\n.gmi-looks-two:before { content: \"\\e401\"; }\n.gmi-loop:before { content: \"\\e028\"; }\n.gmi-loupe:before { content: \"\\e402\"; }\n.gmi-low-priority:before { content: \"\\e16d\"; }\n.gmi-loyalty:before { content: \"\\e89a\"; }\n.gmi-lunch-dining:before { content: \"\\ea61\"; }\n.gmi-mail:before { content: \"\\e158\"; }\n.gmi-mail-outline:before { content: \"\\e0e1\"; }\n.gmi-map:before { content: \"\\e55b\"; }\n.gmi-margin:before { content: \"\\e9bb\"; }\n.gmi-mark-as-unread:before { content: \"\\e9bc\"; }\n.gmi-markunread:before { content: \"\\e159\"; }\n.gmi-markunread-mailbox:before { content: \"\\e89b\"; }\n.gmi-maximize:before { content: \"\\e930\"; }\n.gmi-meeting-room:before { content: \"\\eb4f\"; }\n.gmi-memory:before { content: \"\\e322\"; }\n.gmi-menu:before { content: \"\\e5d2\"; }\n.gmi-menu-book:before { content: \"\\ea19\"; }\n.gmi-menu-open:before { content: \"\\e9bd\"; }\n.gmi-merge-type:before { content: \"\\e252\"; }\n.gmi-message:before { content: \"\\e0c9\"; }\n.gmi-messenger:before { content: \"\\e0ca\"; }\n.gmi-messenger-outline:before { content: \"\\e0cb\"; }\n.gmi-mic:before { content: \"\\e029\"; }\n.gmi-mic-none:before { content: \"\\e02a\"; }\n.gmi-mic-off:before { content: \"\\e02b\"; }\n.gmi-minimize:before { content: \"\\e931\"; }\n.gmi-missed-video-call:before { content: \"\\e073\"; }\n.gmi-mms:before { content: \"\\e618\"; }\n.gmi-mobile-friendly:before { content: \"\\e200\"; }\n.gmi-mobile-off:before { content: \"\\e201\"; }\n.gmi-mobile-screen-share:before { content: \"\\e0e7\"; }\n.gmi-mode-comment:before { content: \"\\e253\"; }\n.gmi-mode-edit:before { content: \"\\e254\"; }\n.gmi-monetization-on:before { content: \"\\e263\"; }\n.gmi-money:before { content: \"\\e57d\"; }\n.gmi-money-off:before { content: \"\\e25c\"; }\n.gmi-monochrome-photos:before { content: \"\\e403\"; }\n.gmi-mood:before { content: \"\\e7f2\"; }\n.gmi-mood-bad:before { content: \"\\e7f3\"; }\n.gmi-more:before { content: \"\\e619\"; }\n.gmi-more-horiz:before { content: \"\\e5d3\"; }\n.gmi-more-vert:before { content: \"\\e5d4\"; }\n.gmi-motorcycle:before { content: \"\\e91b\"; }\n.gmi-mouse:before { content: \"\\e323\"; }\n.gmi-move-to-inbox:before { content: \"\\e168\"; }\n.gmi-movie:before { content: \"\\e02c\"; }\n.gmi-movie-creation:before { content: \"\\e404\"; }\n.gmi-movie-filter:before { content: \"\\e43a\"; }\n.gmi-mp:before { content: \"\\e9c3\"; }\n.gmi-multiline-chart:before { content: \"\\e6df\"; }\n.gmi-multitrack-audio:before { content: \"\\e1b8\"; }\n.gmi-museum:before { content: \"\\ea36\"; }\n.gmi-music-note:before { content: \"\\e405\"; }\n.gmi-music-off:before { content: \"\\e440\"; }\n.gmi-music-video:before { content: \"\\e063\"; }\n.gmi-my-library-add:before { content: \"\\e02e\"; }\n.gmi-my-library-books:before { content: \"\\e02f\"; }\n.gmi-my-library-music:before { content: \"\\e030\"; }\n.gmi-my-location:before { content: \"\\e55c\"; }\n.gmi-nature:before { content: \"\\e406\"; }\n.gmi-nature-people:before { content: \"\\e407\"; }\n.gmi-navigate-before:before { content: \"\\e408\"; }\n.gmi-navigate-next:before { content: \"\\e409\"; }\n.gmi-navigation:before { content: \"\\e55d\"; }\n.gmi-near-me:before { content: \"\\e569\"; }\n.gmi-network-cell:before { content: \"\\e1b9\"; }\n.gmi-network-check:before { content: \"\\e640\"; }\n.gmi-network-locked:before { content: \"\\e61a\"; }\n.gmi-network-wifi:before { content: \"\\e1ba\"; }\n.gmi-new-releases:before { content: \"\\e031\"; }\n.gmi-next-week:before { content: \"\\e16a\"; }\n.gmi-nfc:before { content: \"\\e1bb\"; }\n.gmi-nightlife:before { content: \"\\ea62\"; }\n.gmi-nights-stay:before { content: \"\\ea46\"; }\n.gmi-no-encryption:before { content: \"\\e641\"; }\n.gmi-no-meeting-room:before { content: \"\\eb4e\"; }\n.gmi-no-sim:before { content: \"\\e0cc\"; }\n.gmi-not-interested:before { content: \"\\e033\"; }\n.gmi-not-listed-location:before { content: \"\\e575\"; }\n.gmi-note:before { content: \"\\e06f\"; }\n.gmi-note-add:before { content: \"\\e89c\"; }\n.gmi-notes:before { content: \"\\e26c\"; }\n.gmi-notification-important:before { content: \"\\e004\"; }\n.gmi-notifications:before { content: \"\\e7f4\"; }\n.gmi-notifications-active:before { content: \"\\e7f7\"; }\n.gmi-notifications-none:before { content: \"\\e7f5\"; }\n.gmi-notifications-off:before { content: \"\\e7f6\"; }\n.gmi-notifications-on:before { content: \"\\e7f7\"; }\n.gmi-notifications-paused:before { content: \"\\e7f8\"; }\n.gmi-now-wallpaper:before { content: \"\\e1bc\"; }\n.gmi-now-widgets:before { content: \"\\e1bd\"; }\n.gmi-offline-bolt:before { content: \"\\e932\"; }\n.gmi-offline-pin:before { content: \"\\e90a\"; }\n.gmi-offline-share:before { content: \"\\e9c5\"; }\n.gmi-ondemand-video:before { content: \"\\e63a\"; }\n.gmi-opacity:before { content: \"\\e91c\"; }\n.gmi-open-in-browser:before { content: \"\\e89d\"; }\n.gmi-open-in-new:before { content: \"\\e89e\"; }\n.gmi-open-with:before { content: \"\\e89f\"; }\n.gmi-outdoor-grill:before { content: \"\\ea47\"; }\n.gmi-outlined-flag:before { content: \"\\e16e\"; }\n.gmi-padding:before { content: \"\\e9c8\"; }\n.gmi-pages:before { content: \"\\e7f9\"; }\n.gmi-pageview:before { content: \"\\e8a0\"; }\n.gmi-palette:before { content: \"\\e40a\"; }\n.gmi-pan-tool:before { content: \"\\e925\"; }\n.gmi-panorama:before { content: \"\\e40b\"; }\n.gmi-panorama-fish-eye:before { content: \"\\e40c\"; }\n.gmi-panorama-fisheye:before { content: \"\\e40c\"; }\n.gmi-panorama-horizontal:before { content: \"\\e40d\"; }\n.gmi-panorama-photosphere:before { content: \"\\e9c9\"; }\n.gmi-panorama-photosphere-select:before { content: \"\\e9ca\"; }\n.gmi-panorama-vertical:before { content: \"\\e40e\"; }\n.gmi-panorama-wide-angle:before { content: \"\\e40f\"; }\n.gmi-park:before { content: \"\\ea63\"; }\n.gmi-party-mode:before { content: \"\\e7fa\"; }\n.gmi-pause:before { content: \"\\e034\"; }\n.gmi-pause-circle-filled:before { content: \"\\e035\"; }\n.gmi-pause-circle-outline:before { content: \"\\e036\"; }\n.gmi-pause-presentation:before { content: \"\\e0ea\"; }\n.gmi-payment:before { content: \"\\e8a1\"; }\n.gmi-people:before { content: \"\\e7fb\"; }\n.gmi-people-alt:before { content: \"\\ea21\"; }\n.gmi-people-outline:before { content: \"\\e7fc\"; }\n.gmi-perm-camera-mic:before { content: \"\\e8a2\"; }\n.gmi-perm-contact-cal:before { content: \"\\e8a3\"; }\n.gmi-perm-contact-calendar:before { content: \"\\e8a3\"; }\n.gmi-perm-data-setting:before { content: \"\\e8a4\"; }\n.gmi-perm-device-info:before { content: \"\\e8a5\"; }\n.gmi-perm-device-information:before { content: \"\\e8a5\"; }\n.gmi-perm-identity:before { content: \"\\e8a6\"; }\n.gmi-perm-media:before { content: \"\\e8a7\"; }\n.gmi-perm-phone-msg:before { content: \"\\e8a8\"; }\n.gmi-perm-scan-wifi:before { content: \"\\e8a9\"; }\n.gmi-person:before { content: \"\\e7fd\"; }\n.gmi-person-add:before { content: \"\\e7fe\"; }\n.gmi-person-add-disabled:before { content: \"\\e9cb\"; }\n.gmi-person-outline:before { content: \"\\e7ff\"; }\n.gmi-person-pin:before { content: \"\\e55a\"; }\n.gmi-person-pin-circle:before { content: \"\\e56a\"; }\n.gmi-personal-video:before { content: \"\\e63b\"; }\n.gmi-pets:before { content: \"\\e91d\"; }\n.gmi-phone:before { content: \"\\e0cd\"; }\n.gmi-phone-android:before { content: \"\\e324\"; }\n.gmi-phone-bluetooth-speaker:before { content: \"\\e61b\"; }\n.gmi-phone-callback:before { content: \"\\e649\"; }\n.gmi-phone-disabled:before { content: \"\\e9cc\"; }\n.gmi-phone-enabled:before { content: \"\\e9cd\"; }\n.gmi-phone-forwarded:before { content: \"\\e61c\"; }\n.gmi-phone-in-talk:before { content: \"\\e61d\"; }\n.gmi-phone-iphone:before { content: \"\\e325\"; }\n.gmi-phone-locked:before { content: \"\\e61e\"; }\n.gmi-phone-missed:before { content: \"\\e61f\"; }\n.gmi-phone-paused:before { content: \"\\e620\"; }\n.gmi-phonelink:before { content: \"\\e326\"; }\n.gmi-phonelink-erase:before { content: \"\\e0db\"; }\n.gmi-phonelink-lock:before { content: \"\\e0dc\"; }\n.gmi-phonelink-off:before { content: \"\\e327\"; }\n.gmi-phonelink-ring:before { content: \"\\e0dd\"; }\n.gmi-phonelink-setup:before { content: \"\\e0de\"; }\n.gmi-photo:before { content: \"\\e410\"; }\n.gmi-photo-album:before { content: \"\\e411\"; }\n.gmi-photo-camera:before { content: \"\\e412\"; }\n.gmi-photo-filter:before { content: \"\\e43b\"; }\n.gmi-photo-library:before { content: \"\\e413\"; }\n.gmi-photo-size-select-actual:before { content: \"\\e432\"; }\n.gmi-photo-size-select-large:before { content: \"\\e433\"; }\n.gmi-photo-size-select-small:before { content: \"\\e434\"; }\n.gmi-picture-as-pdf:before { content: \"\\e415\"; }\n.gmi-picture-in-picture:before { content: \"\\e8aa\"; }\n.gmi-picture-in-picture-alt:before { content: \"\\e911\"; }\n.gmi-pie-chart:before { content: \"\\e6c4\"; }\n.gmi-pie-chart-outlined:before { content: \"\\e6c5\"; }\n.gmi-pin-drop:before { content: \"\\e55e\"; }\n.gmi-pivot-table-chart:before { content: \"\\e9ce\"; }\n.gmi-place:before { content: \"\\e55f\"; }\n.gmi-play-arrow:before { content: \"\\e037\"; }\n.gmi-play-circle-fill:before { content: \"\\e038\"; }\n.gmi-play-circle-filled:before { content: \"\\e038\"; }\n.gmi-play-circle-outline:before { content: \"\\e039\"; }\n.gmi-play-for-work:before { content: \"\\e906\"; }\n.gmi-playlist-add:before { content: \"\\e03b\"; }\n.gmi-playlist-add-check:before { content: \"\\e065\"; }\n.gmi-playlist-play:before { content: \"\\e05f\"; }\n.gmi-plus-one:before { content: \"\\e800\"; }\n.gmi-policy:before { content: \"\\ea17\"; }\n.gmi-poll:before { content: \"\\e801\"; }\n.gmi-polymer:before { content: \"\\e8ab\"; }\n.gmi-pool:before { content: \"\\eb48\"; }\n.gmi-portable-wifi-off:before { content: \"\\e0ce\"; }\n.gmi-portrait:before { content: \"\\e416\"; }\n.gmi-post-add:before { content: \"\\ea20\"; }\n.gmi-power:before { content: \"\\e63c\"; }\n.gmi-power-input:before { content: \"\\e336\"; }\n.gmi-power-off:before { content: \"\\e646\"; }\n.gmi-power-settings-new:before { content: \"\\e8ac\"; }\n.gmi-pregnant-woman:before { content: \"\\e91e\"; }\n.gmi-present-to-all:before { content: \"\\e0df\"; }\n.gmi-print:before { content: \"\\e8ad\"; }\n.gmi-print-disabled:before { content: \"\\e9cf\"; }\n.gmi-priority-high:before { content: \"\\e645\"; }\n.gmi-public:before { content: \"\\e80b\"; }\n.gmi-publish:before { content: \"\\e255\"; }\n.gmi-query-builder:before { content: \"\\e8ae\"; }\n.gmi-question-answer:before { content: \"\\e8af\"; }\n.gmi-queue:before { content: \"\\e03c\"; }\n.gmi-queue-music:before { content: \"\\e03d\"; }\n.gmi-queue-play-next:before { content: \"\\e066\"; }\n.gmi-quick-contacts-dialer:before { content: \"\\e0cf\"; }\n.gmi-quick-contacts-mail:before { content: \"\\e0d0\"; }\n.gmi-radio:before { content: \"\\e03e\"; }\n.gmi-radio-button-checked:before { content: \"\\e837\"; }\n.gmi-radio-button-off:before { content: \"\\e836\"; }\n.gmi-radio-button-on:before { content: \"\\e837\"; }\n.gmi-radio-button-unchecked:before { content: \"\\e836\"; }\n.gmi-railway-alert:before { content: \"\\e9d1\"; }\n.gmi-ramen-dining:before { content: \"\\ea64\"; }\n.gmi-rate-review:before { content: \"\\e560\"; }\n.gmi-receipt:before { content: \"\\e8b0\"; }\n.gmi-recent-actors:before { content: \"\\e03f\"; }\n.gmi-recommend:before { content: \"\\e9d2\"; }\n.gmi-record-voice-over:before { content: \"\\e91f\"; }\n.gmi-redeem:before { content: \"\\e8b1\"; }\n.gmi-redo:before { content: \"\\e15a\"; }\n.gmi-refresh:before { content: \"\\e5d5\"; }\n.gmi-remove:before { content: \"\\e15b\"; }\n.gmi-remove-circle:before { content: \"\\e15c\"; }\n.gmi-remove-circle-outline:before { content: \"\\e15d\"; }\n.gmi-remove-done:before { content: \"\\e9d3\"; }\n.gmi-remove-from-queue:before { content: \"\\e067\"; }\n.gmi-remove-moderator:before { content: \"\\e9d4\"; }\n.gmi-remove-red-eye:before { content: \"\\e417\"; }\n.gmi-remove-shopping-cart:before { content: \"\\e928\"; }\n.gmi-reorder:before { content: \"\\e8fe\"; }\n.gmi-repeat:before { content: \"\\e040\"; }\n.gmi-repeat-on:before { content: \"\\e9d6\"; }\n.gmi-repeat-one:before { content: \"\\e041\"; }\n.gmi-repeat-one-on:before { content: \"\\e9d7\"; }\n.gmi-replay:before { content: \"\\e042\"; }\n.gmi-replay-10:before { content: \"\\e059\"; }\n.gmi-replay-30:before { content: \"\\e05a\"; }\n.gmi-replay-5:before { content: \"\\e05b\"; }\n.gmi-replay-circle-filled:before { content: \"\\e9d8\"; }\n.gmi-reply:before { content: \"\\e15e\"; }\n.gmi-reply-all:before { content: \"\\e15f\"; }\n.gmi-report:before { content: \"\\e160\"; }\n.gmi-report-off:before { content: \"\\e170\"; }\n.gmi-report-problem:before { content: \"\\e8b2\"; }\n.gmi-reset-tv:before { content: \"\\e9d9\"; }\n.gmi-restaurant:before { content: \"\\e56c\"; }\n.gmi-restaurant-menu:before { content: \"\\e561\"; }\n.gmi-restore:before { content: \"\\e8b3\"; }\n.gmi-restore-from-trash:before { content: \"\\e938\"; }\n.gmi-restore-page:before { content: \"\\e929\"; }\n.gmi-ring-volume:before { content: \"\\e0d1\"; }\n.gmi-room:before { content: \"\\e8b4\"; }\n.gmi-room-service:before { content: \"\\eb49\"; }\n.gmi-rotate-90-degrees-ccw:before { content: \"\\e418\"; }\n.gmi-rotate-left:before { content: \"\\e419\"; }\n.gmi-rotate-right:before { content: \"\\e41a\"; }\n.gmi-rounded-corner:before { content: \"\\e920\"; }\n.gmi-router:before { content: \"\\e328\"; }\n.gmi-rowing:before { content: \"\\e921\"; }\n.gmi-rss-feed:before { content: \"\\e0e5\"; }\n.gmi-rtt:before { content: \"\\e9ad\"; }\n.gmi-rv-hookup:before { content: \"\\e642\"; }\n.gmi-satellite:before { content: \"\\e562\"; }\n.gmi-save:before { content: \"\\e161\"; }\n.gmi-save-alt:before { content: \"\\e171\"; }\n.gmi-saved-search:before { content: \"\\ea11\"; }\n.gmi-scanner:before { content: \"\\e329\"; }\n.gmi-scatter-plot:before { content: \"\\e268\"; }\n.gmi-schedule:before { content: \"\\e8b5\"; }\n.gmi-schedule-send:before { content: \"\\ea0a\"; }\n.gmi-school:before { content: \"\\e80c\"; }\n.gmi-score:before { content: \"\\e269\"; }\n.gmi-screen-lock-landscape:before { content: \"\\e1be\"; }\n.gmi-screen-lock-portrait:before { content: \"\\e1bf\"; }\n.gmi-screen-lock-rotation:before { content: \"\\e1c0\"; }\n.gmi-screen-rotation:before { content: \"\\e1c1\"; }\n.gmi-screen-share:before { content: \"\\e0e2\"; }\n.gmi-sd:before { content: \"\\e9dd\"; }\n.gmi-sd-card:before { content: \"\\e623\"; }\n.gmi-sd-storage:before { content: \"\\e1c2\"; }\n.gmi-search:before { content: \"\\e8b6\"; }\n.gmi-security:before { content: \"\\e32a\"; }\n.gmi-segment:before { content: \"\\e94b\"; }\n.gmi-select-all:before { content: \"\\e162\"; }\n.gmi-send:before { content: \"\\e163\"; }\n.gmi-send-and-archive:before { content: \"\\ea0c\"; }\n.gmi-sentiment-dissatisfied:before { content: \"\\e811\"; }\n.gmi-sentiment-neutral:before { content: \"\\e812\"; }\n.gmi-sentiment-satisfied:before { content: \"\\e813\"; }\n.gmi-sentiment-satisfied-alt:before { content: \"\\e0ed\"; }\n.gmi-sentiment-very-dissatisfied:before { content: \"\\e814\"; }\n.gmi-sentiment-very-satisfied:before { content: \"\\e815\"; }\n.gmi-settings:before { content: \"\\e8b8\"; }\n.gmi-settings-applications:before { content: \"\\e8b9\"; }\n.gmi-settings-backup-restore:before { content: \"\\e8ba\"; }\n.gmi-settings-bluetooth:before { content: \"\\e8bb\"; }\n.gmi-settings-brightness:before { content: \"\\e8bd\"; }\n.gmi-settings-cell:before { content: \"\\e8bc\"; }\n.gmi-settings-display:before { content: \"\\e8bd\"; }\n.gmi-settings-ethernet:before { content: \"\\e8be\"; }\n.gmi-settings-input-antenna:before { content: \"\\e8bf\"; }\n.gmi-settings-input-component:before { content: \"\\e8c0\"; }\n.gmi-settings-input-composite:before { content: \"\\e8c1\"; }\n.gmi-settings-input-hdmi:before { content: \"\\e8c2\"; }\n.gmi-settings-input-svideo:before { content: \"\\e8c3\"; }\n.gmi-settings-overscan:before { content: \"\\e8c4\"; }\n.gmi-settings-phone:before { content: \"\\e8c5\"; }\n.gmi-settings-power:before { content: \"\\e8c6\"; }\n.gmi-settings-remote:before { content: \"\\e8c7\"; }\n.gmi-settings-system-daydream:before { content: \"\\e1c3\"; }\n.gmi-settings-voice:before { content: \"\\e8c8\"; }\n.gmi-share:before { content: \"\\e80d\"; }\n.gmi-shield:before { content: \"\\e9e0\"; }\n.gmi-shop:before { content: \"\\e8c9\"; }\n.gmi-shop-two:before { content: \"\\e8ca\"; }\n.gmi-shopping-basket:before { content: \"\\e8cb\"; }\n.gmi-shopping-cart:before { content: \"\\e8cc\"; }\n.gmi-short-text:before { content: \"\\e261\"; }\n.gmi-show-chart:before { content: \"\\e6e1\"; }\n.gmi-shuffle:before { content: \"\\e043\"; }\n.gmi-shuffle-on:before { content: \"\\e9e1\"; }\n.gmi-shutter-speed:before { content: \"\\e43d\"; }\n.gmi-signal-cellular-4-bar:before { content: \"\\e1c8\"; }\n.gmi-signal-cellular-alt:before { content: \"\\e202\"; }\n.gmi-signal-cellular-connected-no-internet-4-bar:before { content: \"\\e1cd\"; }\n.gmi-signal-cellular-no-sim:before { content: \"\\e1ce\"; }\n.gmi-signal-cellular-null:before { content: \"\\e1cf\"; }\n.gmi-signal-cellular-off:before { content: \"\\e1d0\"; }\n.gmi-signal-wifi-4-bar:before { content: \"\\e1d8\"; }\n.gmi-signal-wifi-4-bar-lock:before { content: \"\\e1d9\"; }\n.gmi-signal-wifi-off:before { content: \"\\e1da\"; }\n.gmi-sim-card:before { content: \"\\e32b\"; }\n.gmi-sim-card-alert:before { content: \"\\e624\"; }\n.gmi-single-bed:before { content: \"\\ea48\"; }\n.gmi-skip-next:before { content: \"\\e044\"; }\n.gmi-skip-previous:before { content: \"\\e045\"; }\n.gmi-slideshow:before { content: \"\\e41b\"; }\n.gmi-slow-motion-video:before { content: \"\\e068\"; }\n.gmi-smartphone:before { content: \"\\e32c\"; }\n.gmi-smoke-free:before { content: \"\\eb4a\"; }\n.gmi-smoking-rooms:before { content: \"\\eb4b\"; }\n.gmi-sms:before { content: \"\\e625\"; }\n.gmi-sms-failed:before { content: \"\\e626\"; }\n.gmi-snooze:before { content: \"\\e046\"; }\n.gmi-sort:before { content: \"\\e164\"; }\n.gmi-sort-by-alpha:before { content: \"\\e053\"; }\n.gmi-spa:before { content: \"\\eb4c\"; }\n.gmi-space-bar:before { content: \"\\e256\"; }\n.gmi-speaker:before { content: \"\\e32d\"; }\n.gmi-speaker-group:before { content: \"\\e32e\"; }\n.gmi-speaker-notes:before { content: \"\\e8cd\"; }\n.gmi-speaker-notes-off:before { content: \"\\e92a\"; }\n.gmi-speaker-phone:before { content: \"\\e0d2\"; }\n.gmi-speed:before { content: \"\\e9e4\"; }\n.gmi-spellcheck:before { content: \"\\e8ce\"; }\n.gmi-sports:before { content: \"\\ea30\"; }\n.gmi-sports-baseball:before { content: \"\\ea51\"; }\n.gmi-sports-basketball:before { content: \"\\ea26\"; }\n.gmi-sports-cricket:before { content: \"\\ea27\"; }\n.gmi-sports-esports:before { content: \"\\ea28\"; }\n.gmi-sports-football:before { content: \"\\ea29\"; }\n.gmi-sports-golf:before { content: \"\\ea2a\"; }\n.gmi-sports-handball:before { content: \"\\ea33\"; }\n.gmi-sports-hockey:before { content: \"\\ea2b\"; }\n.gmi-sports-kabaddi:before { content: \"\\ea34\"; }\n.gmi-sports-mma:before { content: \"\\ea2c\"; }\n.gmi-sports-motorsports:before { content: \"\\ea2d\"; }\n.gmi-sports-rugby:before { content: \"\\ea2e\"; }\n.gmi-sports-soccer:before { content: \"\\ea2f\"; }\n.gmi-sports-tennis:before { content: \"\\ea32\"; }\n.gmi-sports-volleyball:before { content: \"\\ea31\"; }\n.gmi-square-foot:before { content: \"\\ea49\"; }\n.gmi-stacked-bar-chart:before { content: \"\\e9e6\"; }\n.gmi-star:before { content: \"\\e838\"; }\n.gmi-star-border:before { content: \"\\e83a\"; }\n.gmi-star-half:before { content: \"\\e839\"; }\n.gmi-star-outline:before { content: \"\\e83a\"; }\n.gmi-stars:before { content: \"\\e8d0\"; }\n.gmi-stay-current-landscape:before { content: \"\\e0d3\"; }\n.gmi-stay-current-portrait:before { content: \"\\e0d4\"; }\n.gmi-stay-primary-landscape:before { content: \"\\e0d5\"; }\n.gmi-stay-primary-portrait:before { content: \"\\e0d6\"; }\n.gmi-stop:before { content: \"\\e047\"; }\n.gmi-stop-screen-share:before { content: \"\\e0e3\"; }\n.gmi-storage:before { content: \"\\e1db\"; }\n.gmi-store:before { content: \"\\e8d1\"; }\n.gmi-store-mall-directory:before { content: \"\\e563\"; }\n.gmi-storefront:before { content: \"\\ea12\"; }\n.gmi-straighten:before { content: \"\\e41c\"; }\n.gmi-stream:before { content: \"\\e9e9\"; }\n.gmi-streetview:before { content: \"\\e56e\"; }\n.gmi-strikethrough-s:before { content: \"\\e257\"; }\n.gmi-style:before { content: \"\\e41d\"; }\n.gmi-subdirectory-arrow-left:before { content: \"\\e5d9\"; }\n.gmi-subdirectory-arrow-right:before { content: \"\\e5da\"; }\n.gmi-subject:before { content: \"\\e8d2\"; }\n.gmi-subscriptions:before { content: \"\\e064\"; }\n.gmi-subtitles:before { content: \"\\e048\"; }\n.gmi-subway:before { content: \"\\e56f\"; }\n.gmi-supervised-user-circle:before { content: \"\\e939\"; }\n.gmi-supervisor-account:before { content: \"\\e8d3\"; }\n.gmi-surround-sound:before { content: \"\\e049\"; }\n.gmi-swap-calls:before { content: \"\\e0d7\"; }\n.gmi-swap-horiz:before { content: \"\\e8d4\"; }\n.gmi-swap-horizontal-circle:before { content: \"\\e933\"; }\n.gmi-swap-vert:before { content: \"\\e8d5\"; }\n.gmi-swap-vert-circle:before { content: \"\\e8d6\"; }\n.gmi-swap-vertical-circle:before { content: \"\\e8d6\"; }\n.gmi-swipe:before { content: \"\\e9ec\"; }\n.gmi-switch-account:before { content: \"\\e9ed\"; }\n.gmi-switch-camera:before { content: \"\\e41e\"; }\n.gmi-switch-video:before { content: \"\\e41f\"; }\n.gmi-sync:before { content: \"\\e627\"; }\n.gmi-sync-alt:before { content: \"\\ea18\"; }\n.gmi-sync-disabled:before { content: \"\\e628\"; }\n.gmi-sync-problem:before { content: \"\\e629\"; }\n.gmi-system-update:before { content: \"\\e62a\"; }\n.gmi-system-update-alt:before { content: \"\\e8d7\"; }\n.gmi-system-update-tv:before { content: \"\\e8d7\"; }\n.gmi-tab:before { content: \"\\e8d8\"; }\n.gmi-tab-unselected:before { content: \"\\e8d9\"; }\n.gmi-table-chart:before { content: \"\\e265\"; }\n.gmi-tablet:before { content: \"\\e32f\"; }\n.gmi-tablet-android:before { content: \"\\e330\"; }\n.gmi-tablet-mac:before { content: \"\\e331\"; }\n.gmi-tag:before { content: \"\\e9ef\"; }\n.gmi-tag-faces:before { content: \"\\e420\"; }\n.gmi-takeout-dining:before { content: \"\\ea74\"; }\n.gmi-tap-and-play:before { content: \"\\e62b\"; }\n.gmi-terrain:before { content: \"\\e564\"; }\n.gmi-text-fields:before { content: \"\\e262\"; }\n.gmi-text-format:before { content: \"\\e165\"; }\n.gmi-text-rotate-up:before { content: \"\\e93a\"; }\n.gmi-text-rotate-vertical:before { content: \"\\e93b\"; }\n.gmi-text-rotation-angledown:before { content: \"\\e93c\"; }\n.gmi-text-rotation-angleup:before { content: \"\\e93d\"; }\n.gmi-text-rotation-down:before { content: \"\\e93e\"; }\n.gmi-text-rotation-none:before { content: \"\\e93f\"; }\n.gmi-textsms:before { content: \"\\e0d8\"; }\n.gmi-texture:before { content: \"\\e421\"; }\n.gmi-theater-comedy:before { content: \"\\ea66\"; }\n.gmi-theaters:before { content: \"\\e8da\"; }\n.gmi-thumb-down:before { content: \"\\e8db\"; }\n.gmi-thumb-down-alt:before { content: \"\\e816\"; }\n.gmi-thumb-down-off-alt:before { content: \"\\e9f2\"; }\n.gmi-thumb-up:before { content: \"\\e8dc\"; }\n.gmi-thumb-up-alt:before { content: \"\\e817\"; }\n.gmi-thumb-up-off-alt:before { content: \"\\e9f3\"; }\n.gmi-thumbs-up-down:before { content: \"\\e8dd\"; }\n.gmi-time-to-leave:before { content: \"\\e62c\"; }\n.gmi-timelapse:before { content: \"\\e422\"; }\n.gmi-timeline:before { content: \"\\e922\"; }\n.gmi-timer:before { content: \"\\e425\"; }\n.gmi-timer_10:before { content: \"\\e423\"; }\n.gmi-timer_3:before { content: \"\\e424\"; }\n.gmi-timer-off:before { content: \"\\e426\"; }\n.gmi-title:before { content: \"\\e264\"; }\n.gmi-toc:before { content: \"\\e8de\"; }\n.gmi-today:before { content: \"\\e8df\"; }\n.gmi-toggle-off:before { content: \"\\e9f5\"; }\n.gmi-toggle-on:before { content: \"\\e9f6\"; }\n.gmi-toll:before { content: \"\\e8e0\"; }\n.gmi-tonality:before { content: \"\\e427\"; }\n.gmi-touch-app:before { content: \"\\e913\"; }\n.gmi-toys:before { content: \"\\e332\"; }\n.gmi-track-changes:before { content: \"\\e8e1\"; }\n.gmi-traffic:before { content: \"\\e565\"; }\n.gmi-train:before { content: \"\\e570\"; }\n.gmi-tram:before { content: \"\\e571\"; }\n.gmi-transfer-within-a-station:before { content: \"\\e572\"; }\n.gmi-transform:before { content: \"\\e428\"; }\n.gmi-transit-enterexit:before { content: \"\\e579\"; }\n.gmi-translate:before { content: \"\\e8e2\"; }\n.gmi-trending-down:before { content: \"\\e8e3\"; }\n.gmi-trending-flat:before { content: \"\\e8e4\"; }\n.gmi-trending-neutral:before { content: \"\\e8e4\"; }\n.gmi-trending-up:before { content: \"\\e8e5\"; }\n.gmi-trip-origin:before { content: \"\\e57b\"; }\n.gmi-tune:before { content: \"\\e429\"; }\n.gmi-turned-in:before { content: \"\\e8e6\"; }\n.gmi-turned-in-not:before { content: \"\\e8e7\"; }\n.gmi-tv:before { content: \"\\e333\"; }\n.gmi-tv-off:before { content: \"\\e647\"; }\n.gmi-two-wheeler:before { content: \"\\e9f9\"; }\n.gmi-unarchive:before { content: \"\\e169\"; }\n.gmi-undo:before { content: \"\\e166\"; }\n.gmi-unfold-less:before { content: \"\\e5d6\"; }\n.gmi-unfold-more:before { content: \"\\e5d7\"; }\n.gmi-unsubscribe:before { content: \"\\e0eb\"; }\n.gmi-update:before { content: \"\\e923\"; }\n.gmi-upload-file:before { content: \"\\e9fc\"; }\n.gmi-usb:before { content: \"\\e1e0\"; }\n.gmi-verified-user:before { content: \"\\e8e8\"; }\n.gmi-vertical-align-bottom:before { content: \"\\e258\"; }\n.gmi-vertical-align-center:before { content: \"\\e259\"; }\n.gmi-vertical-align-top:before { content: \"\\e25a\"; }\n.gmi-vertical-split:before { content: \"\\e949\"; }\n.gmi-vibration:before { content: \"\\e62d\"; }\n.gmi-video-call:before { content: \"\\e070\"; }\n.gmi-video-collection:before { content: \"\\e04a\"; }\n.gmi-video-label:before { content: \"\\e071\"; }\n.gmi-video-library:before { content: \"\\e04a\"; }\n.gmi-videocam:before { content: \"\\e04b\"; }\n.gmi-videocam-off:before { content: \"\\e04c\"; }\n.gmi-videogame-asset:before { content: \"\\e338\"; }\n.gmi-view-agenda:before { content: \"\\e8e9\"; }\n.gmi-view-array:before { content: \"\\e8ea\"; }\n.gmi-view-carousel:before { content: \"\\e8eb\"; }\n.gmi-view-column:before { content: \"\\e8ec\"; }\n.gmi-view-comfortable:before { content: \"\\e42a\"; }\n.gmi-view-comfy:before { content: \"\\e42a\"; }\n.gmi-view-compact:before { content: \"\\e42b\"; }\n.gmi-view-day:before { content: \"\\e8ed\"; }\n.gmi-view-headline:before { content: \"\\e8ee\"; }\n.gmi-view-in-ar:before { content: \"\\e9fe\"; }\n.gmi-view-list:before { content: \"\\e8ef\"; }\n.gmi-view-module:before { content: \"\\e8f0\"; }\n.gmi-view-quilt:before { content: \"\\e8f1\"; }\n.gmi-view-stream:before { content: \"\\e8f2\"; }\n.gmi-view-week:before { content: \"\\e8f3\"; }\n.gmi-vignette:before { content: \"\\e435\"; }\n.gmi-visibility:before { content: \"\\e8f4\"; }\n.gmi-visibility-off:before { content: \"\\e8f5\"; }\n.gmi-voice-chat:before { content: \"\\e62e\"; }\n.gmi-voice-over-off:before { content: \"\\e94a\"; }\n.gmi-voicemail:before { content: \"\\e0d9\"; }\n.gmi-volume-down:before { content: \"\\e04d\"; }\n.gmi-volume-mute:before { content: \"\\e04e\"; }\n.gmi-volume-off:before { content: \"\\e04f\"; }\n.gmi-volume-up:before { content: \"\\e050\"; }\n.gmi-volunteer-activism:before { content: \"\\ea70\"; }\n.gmi-vpn-key:before { content: \"\\e0da\"; }\n.gmi-vpn-lock:before { content: \"\\e62f\"; }\n.gmi-wallet-giftcard:before { content: \"\\e8f6\"; }\n.gmi-wallet-membership:before { content: \"\\e8f7\"; }\n.gmi-wallet-travel:before { content: \"\\e8f8\"; }\n.gmi-wallpaper:before { content: \"\\e1bc\"; }\n.gmi-warning:before { content: \"\\e002\"; }\n.gmi-watch:before { content: \"\\e334\"; }\n.gmi-watch-later:before { content: \"\\e924\"; }\n.gmi-waterfall-chart:before { content: \"\\ea00\"; }\n.gmi-waves:before { content: \"\\e176\"; }\n.gmi-wb-auto:before { content: \"\\e42c\"; }\n.gmi-wb-cloudy:before { content: \"\\e42d\"; }\n.gmi-wb-incandescent:before { content: \"\\e42e\"; }\n.gmi-wb-iridescent:before { content: \"\\e436\"; }\n.gmi-wb-shade:before { content: \"\\ea01\"; }\n.gmi-wb-sunny:before { content: \"\\e430\"; }\n.gmi-wb-twighlight:before { content: \"\\ea02\"; }\n.gmi-wc:before { content: \"\\e63d\"; }\n.gmi-web:before { content: \"\\e051\"; }\n.gmi-web-asset:before { content: \"\\e069\"; }\n.gmi-weekend:before { content: \"\\e16b\"; }\n.gmi-whatshot:before { content: \"\\e80e\"; }\n.gmi-where-to-vote:before { content: \"\\e177\"; }\n.gmi-widgets:before { content: \"\\e1bd\"; }\n.gmi-wifi:before { content: \"\\e63e\"; }\n.gmi-wifi-lock:before { content: \"\\e1e1\"; }\n.gmi-wifi-off:before { content: \"\\e648\"; }\n.gmi-wifi-tethering:before { content: \"\\e1e2\"; }\n.gmi-work:before { content: \"\\e8f9\"; }\n.gmi-work-off:before { content: \"\\e942\"; }\n.gmi-work-outline:before { content: \"\\e943\"; }\n.gmi-workspaces-filled:before { content: \"\\ea0d\"; }\n.gmi-workspaces-outline:before { content: \"\\ea0f\"; }\n.gmi-wrap-text:before { content: \"\\e25b\"; }\n.gmi-youtube-searched-for:before { content: \"\\e8fa\"; }\n.gmi-zoom-in:before { content: \"\\e8ff\"; }\n.gmi-zoom-out:before { content: \"\\e900\"; }\n.gmi-zoom-out-map:before { content: \"\\e56b\"; }"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/ikonli-material2-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.material2 {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.material2;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.material2.Material2ALIkonHandler,\n            org.kordamp.ikonli.material2.Material2MZIkonHandler,\n            org.kordamp.ikonli.material2.Material2OutlinedALIkonHandler,\n            org.kordamp.ikonli.material2.Material2OutlinedMZIkonHandler,\n            org.kordamp.ikonli.material2.Material2RoundALIkonHandler,\n            org.kordamp.ikonli.material2.Material2RoundMZIkonHandler,\n            org.kordamp.ikonli.material2.Material2SharpALIkonHandler,\n            org.kordamp.ikonli.material2.Material2SharpMZIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.material2.Material2ALIkonProvider,\n            org.kordamp.ikonli.material2.Material2MZIkonProvider,\n            org.kordamp.ikonli.material2.Material2OutlinedALIkonProvider,\n            org.kordamp.ikonli.material2.Material2OutlinedMZIkonProvider,\n            org.kordamp.ikonli.material2.Material2RoundALIkonProvider,\n            org.kordamp.ikonli.material2.Material2RoundMZIkonProvider,\n            org.kordamp.ikonli.material2.Material2SharpALIkonProvider,\n            org.kordamp.ikonli.material2.Material2SharpMZIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2AL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Material2AL implements Ikon {\n    MDAL_360(\"mdal-360\", '\\ue000'),\n    MDAL_3D_ROTATION(\"mdal-3d_rotation\", '\\ue001'),\n    MDAL_4K(\"mdal-4k\", '\\ue002'),\n    MDAL_5G(\"mdal-5g\", '\\ue74a'),\n    MDAL_6_FT_APART(\"mdal-6_ft_apart\", '\\ue89a'),\n    AC_UNIT(\"mdal-ac_unit\", '\\ue004'),\n    ACCESS_ALARM(\"mdal-access_alarm\", '\\ue005'),\n    ACCESS_ALARMS(\"mdal-access_alarms\", '\\ue007'),\n    ACCESS_TIME(\"mdal-access_time\", '\\ue009'),\n    ACCESSIBILITY(\"mdal-accessibility\", '\\ue00b'),\n    ACCESSIBILITY_NEW(\"mdal-accessibility_new\", '\\ue00c'),\n    ACCESSIBLE(\"mdal-accessible\", '\\ue00d'),\n    ACCESSIBLE_FORWARD(\"mdal-accessible_forward\", '\\ue00e'),\n    ACCOUNT_BALANCE(\"mdal-account_balance\", '\\ue00f'),\n    ACCOUNT_BALANCE_WALLET(\"mdal-account_balance_wallet\", '\\ue011'),\n    ACCOUNT_BOX(\"mdal-account_box\", '\\ue013'),\n    ACCOUNT_CIRCLE(\"mdal-account_circle\", '\\ue015'),\n    ACCOUNT_TREE(\"mdal-account_tree\", '\\ue017'),\n    AD_UNITS(\"mdal-ad_units\", '\\ue74b'),\n    ADB(\"mdal-adb\", '\\ue019'),\n    ADD(\"mdal-add\", '\\ue01a'),\n    ADD_A_PHOTO(\"mdal-add_a_photo\", '\\ue01b'),\n    ADD_ALARM(\"mdal-add_alarm\", '\\ue01d'),\n    ADD_ALERT(\"mdal-add_alert\", '\\ue01f'),\n    ADD_BOX(\"mdal-add_box\", '\\ue021'),\n    ADD_BUSINESS(\"mdal-add_business\", '\\ue74d'),\n    ADD_CIRCLE(\"mdal-add_circle\", '\\ue023'),\n    ADD_CIRCLE_OUTLINE(\"mdal-add_circle_outline\", '\\ue025'),\n    ADD_COMMENT(\"mdal-add_comment\", '\\ue026'),\n    ADD_IC_CALL(\"mdal-add_ic_call\", '\\ue744'),\n    ADD_LOCATION(\"mdal-add_location\", '\\ue028'),\n    ADD_LOCATION_ALT(\"mdal-add_location_alt\", '\\ue74f'),\n    ADD_PHOTO_ALTERNATE(\"mdal-add_photo_alternate\", '\\ue02a'),\n    ADD_ROAD(\"mdal-add_road\", '\\ue751'),\n    ADD_SHOPPING_CART(\"mdal-add_shopping_cart\", '\\ue02c'),\n    ADD_TASK(\"mdal-add_task\", '\\ue8b3'),\n    ADD_TO_HOME_SCREEN(\"mdal-add_to_home_screen\", '\\ue02d'),\n    ADD_TO_PHOTOS(\"mdal-add_to_photos\", '\\ue02e'),\n    ADD_TO_QUEUE(\"mdal-add_to_queue\", '\\ue030'),\n    ADDCHART(\"mdal-addchart\", '\\ue752'),\n    ADJUST(\"mdal-adjust\", '\\ue032'),\n    ADMIN_PANEL_SETTINGS(\"mdal-admin_panel_settings\", '\\ue753'),\n    AGRICULTURE(\"mdal-agriculture\", '\\ue755'),\n    AIRLINE_SEAT_FLAT(\"mdal-airline_seat_flat\", '\\ue033'),\n    AIRLINE_SEAT_FLAT_ANGLED(\"mdal-airline_seat_flat_angled\", '\\ue035'),\n    AIRLINE_SEAT_INDIVIDUAL_SUITE(\"mdal-airline_seat_individual_suite\", '\\ue037'),\n    AIRLINE_SEAT_LEGROOM_EXTRA(\"mdal-airline_seat_legroom_extra\", '\\ue039'),\n    AIRLINE_SEAT_LEGROOM_NORMAL(\"mdal-airline_seat_legroom_normal\", '\\ue03a'),\n    AIRLINE_SEAT_LEGROOM_REDUCED(\"mdal-airline_seat_legroom_reduced\", '\\ue03b'),\n    AIRLINE_SEAT_RECLINE_EXTRA(\"mdal-airline_seat_recline_extra\", '\\ue03c'),\n    AIRLINE_SEAT_RECLINE_NORMAL(\"mdal-airline_seat_recline_normal\", '\\ue03d'),\n    AIRPLANEMODE_ACTIVE(\"mdal-airplanemode_active\", '\\ue03e'),\n    AIRPLANEMODE_INACTIVE(\"mdal-airplanemode_inactive\", '\\ue03f'),\n    AIRPLAY(\"mdal-airplay\", '\\ue040'),\n    AIRPORT_SHUTTLE(\"mdal-airport_shuttle\", '\\ue041'),\n    ALARM(\"mdal-alarm\", '\\ue043'),\n    ALARM_ADD(\"mdal-alarm_add\", '\\ue045'),\n    ALARM_OFF(\"mdal-alarm_off\", '\\ue047'),\n    ALARM_ON(\"mdal-alarm_on\", '\\ue048'),\n    ALBUM(\"mdal-album\", '\\ue04a'),\n    ALIGN_HORIZONTAL_CENTER(\"mdal-align_horizontal_center\", '\\ue8ca'),\n    ALIGN_HORIZONTAL_LEFT(\"mdal-align_horizontal_left\", '\\ue8cb'),\n    ALIGN_HORIZONTAL_RIGHT(\"mdal-align_horizontal_right\", '\\ue8cc'),\n    ALIGN_VERTICAL_BOTTOM(\"mdal-align_vertical_bottom\", '\\ue8cd'),\n    ALIGN_VERTICAL_CENTER(\"mdal-align_vertical_center\", '\\ue8ce'),\n    ALIGN_VERTICAL_TOP(\"mdal-align_vertical_top\", '\\ue8cf'),\n    ALL_INBOX(\"mdal-all_inbox\", '\\ue04c'),\n    ALL_INCLUSIVE(\"mdal-all_inclusive\", '\\ue04e'),\n    ALL_OUT(\"mdal-all_out\", '\\ue04f'),\n    ALT_ROUTE(\"mdal-alt_route\", '\\ue757'),\n    ALTERNATE_EMAIL(\"mdal-alternate_email\", '\\ue051'),\n    AMP_STORIES(\"mdal-amp_stories\", '\\ue053'),\n    ANALYTICS(\"mdal-analytics\", '\\ue758'),\n    ANCHOR(\"mdal-anchor\", '\\ue75a'),\n    ANDROID(\"mdal-android\", '\\ue055'),\n    ANNOUNCEMENT(\"mdal-announcement\", '\\ue056'),\n    APARTMENT(\"mdal-apartment\", '\\ue058'),\n    API(\"mdal-api\", '\\ue75b'),\n    APP_BLOCKING(\"mdal-app_blocking\", '\\ue75c'),\n    APP_SETTINGS_ALT(\"mdal-app_settings_alt\", '\\ue75e'),\n    APPS(\"mdal-apps\", '\\ue059'),\n    ARCHITECTURE(\"mdal-architecture\", '\\ue760'),\n    ARCHIVE(\"mdal-archive\", '\\ue05a'),\n    ARROW_BACK(\"mdal-arrow_back\", '\\ue05c'),\n    ARROW_BACK_IOS(\"mdal-arrow_back_ios\", '\\ue05d'),\n    ARROW_CIRCLE_DOWN(\"mdal-arrow_circle_down\", '\\ue761'),\n    ARROW_CIRCLE_UP(\"mdal-arrow_circle_up\", '\\ue763'),\n    ARROW_DOWNWARD(\"mdal-arrow_downward\", '\\ue05e'),\n    ARROW_DROP_DOWN(\"mdal-arrow_drop_down\", '\\ue05f'),\n    ARROW_DROP_DOWN_CIRCLE(\"mdal-arrow_drop_down_circle\", '\\ue060'),\n    ARROW_DROP_UP(\"mdal-arrow_drop_up\", '\\ue062'),\n    ARROW_FORWARD(\"mdal-arrow_forward\", '\\ue063'),\n    ARROW_FORWARD_IOS(\"mdal-arrow_forward_ios\", '\\ue064'),\n    ARROW_LEFT(\"mdal-arrow_left\", '\\ue065'),\n    ARROW_RIGHT(\"mdal-arrow_right\", '\\ue066'),\n    ARROW_RIGHT_ALT(\"mdal-arrow_right_alt\", '\\ue067'),\n    ARROW_UPWARD(\"mdal-arrow_upward\", '\\ue068'),\n    ART_TRACK(\"mdal-art_track\", '\\ue069'),\n    ARTICLE(\"mdal-article\", '\\ue765'),\n    ASPECT_RATIO(\"mdal-aspect_ratio\", '\\ue06a'),\n    ASSESSMENT(\"mdal-assessment\", '\\ue06c'),\n    ASSIGNMENT(\"mdal-assignment\", '\\ue06e'),\n    ASSIGNMENT_IND(\"mdal-assignment_ind\", '\\ue070'),\n    ASSIGNMENT_LATE(\"mdal-assignment_late\", '\\ue072'),\n    ASSIGNMENT_RETURN(\"mdal-assignment_return\", '\\ue074'),\n    ASSIGNMENT_RETURNED(\"mdal-assignment_returned\", '\\ue076'),\n    ASSIGNMENT_TURNED_IN(\"mdal-assignment_turned_in\", '\\ue078'),\n    ASSISTANT(\"mdal-assistant\", '\\ue07a'),\n    ASSISTANT_PHOTO(\"mdal-assistant_photo\", '\\ue07c'),\n    ATM(\"mdal-atm\", '\\ue07e'),\n    ATTACH_EMAIL(\"mdal-attach_email\", '\\ue767'),\n    ATTACH_FILE(\"mdal-attach_file\", '\\ue07f'),\n    ATTACH_MONEY(\"mdal-attach_money\", '\\ue080'),\n    ATTACHMENT(\"mdal-attachment\", '\\ue081'),\n    AUDIOTRACK(\"mdal-audiotrack\", '\\ue082'),\n    AUTO_DELETE(\"mdal-auto_delete\", '\\ue768'),\n    AUTORENEW(\"mdal-autorenew\", '\\ue084'),\n    AV_TIMER(\"mdal-av_timer\", '\\ue085'),\n    BABY_CHANGING_STATION(\"mdal-baby_changing_station\", '\\ue76a'),\n    BACKPACK(\"mdal-backpack\", '\\ue76b'),\n    BACKSPACE(\"mdal-backspace\", '\\ue086'),\n    BACKUP(\"mdal-backup\", '\\ue088'),\n    BACKUP_TABLE(\"mdal-backup_table\", '\\ue76d'),\n    BALLOT(\"mdal-ballot\", '\\ue08a'),\n    BAR_CHART(\"mdal-bar_chart\", '\\ue08c'),\n    BARCODE(\"mdal-barcode\", '\\ue08d'),\n    BATCH_PREDICTION(\"mdal-batch_prediction\", '\\ue76f'),\n    BATHTUB(\"mdal-bathtub\", '\\ue08e'),\n    BATTERY_20(\"mdal-battery_20\", '\\ue090'),\n    BATTERY_30(\"mdal-battery_30\", '\\ue092'),\n    BATTERY_50(\"mdal-battery_50\", '\\ue094'),\n    BATTERY_60(\"mdal-battery_60\", '\\ue096'),\n    BATTERY_80(\"mdal-battery_80\", '\\ue098'),\n    BATTERY_90(\"mdal-battery_90\", '\\ue09a'),\n    BATTERY_ALERT(\"mdal-battery_alert\", '\\ue09c'),\n    BATTERY_CHARGING_20(\"mdal-battery_charging_20\", '\\ue09d'),\n    BATTERY_CHARGING_30(\"mdal-battery_charging_30\", '\\ue09f'),\n    BATTERY_CHARGING_50(\"mdal-battery_charging_50\", '\\ue0a1'),\n    BATTERY_CHARGING_60(\"mdal-battery_charging_60\", '\\ue0a3'),\n    BATTERY_CHARGING_80(\"mdal-battery_charging_80\", '\\ue0a5'),\n    BATTERY_CHARGING_90(\"mdal-battery_charging_90\", '\\ue0a7'),\n    BATTERY_CHARGING_FULL(\"mdal-battery_charging_full\", '\\ue0a9'),\n    BATTERY_FULL(\"mdal-battery_full\", '\\ue0aa'),\n    BATTERY_STD(\"mdal-battery_std\", '\\ue0ab'),\n    BATTERY_UNKNOWN(\"mdal-battery_unknown\", '\\ue0ac'),\n    BEACH_ACCESS(\"mdal-beach_access\", '\\ue0ad'),\n    BEDTIME(\"mdal-bedtime\", '\\ue771'),\n    BEENHERE(\"mdal-beenhere\", '\\ue0af'),\n    BENTO(\"mdal-bento\", '\\ue864'),\n    BIKE_SCOOTER(\"mdal-bike_scooter\", '\\ue773'),\n    BIOTECH(\"mdal-biotech\", '\\ue774'),\n    BLOCK(\"mdal-block\", '\\ue0b1'),\n    BLUETOOTH(\"mdal-bluetooth\", '\\ue0b2'),\n    BLUETOOTH_AUDIO(\"mdal-bluetooth_audio\", '\\ue0b3'),\n    BLUETOOTH_CONNECTED(\"mdal-bluetooth_connected\", '\\ue0b4'),\n    BLUETOOTH_DISABLED(\"mdal-bluetooth_disabled\", '\\ue0b5'),\n    BLUETOOTH_SEARCHING(\"mdal-bluetooth_searching\", '\\ue0b6'),\n    BLUR_CIRCULAR(\"mdal-blur_circular\", '\\ue0b7'),\n    BLUR_LINEAR(\"mdal-blur_linear\", '\\ue0b8'),\n    BLUR_OFF(\"mdal-blur_off\", '\\ue0b9'),\n    BLUR_ON(\"mdal-blur_on\", '\\ue0ba'),\n    BOOK(\"mdal-book\", '\\ue0bb'),\n    BOOK_ONLINE(\"mdal-book_online\", '\\ue89b'),\n    BOOKMARK(\"mdal-bookmark\", '\\ue0bd'),\n    BOOKMARK_BORDER(\"mdal-bookmark_border\", '\\ue0bf'),\n    BOOKMARKS(\"mdal-bookmarks\", '\\ue0c0'),\n    BORDER_ALL(\"mdal-border_all\", '\\ue0c2'),\n    BORDER_BOTTOM(\"mdal-border_bottom\", '\\ue0c3'),\n    BORDER_CLEAR(\"mdal-border_clear\", '\\ue0c4'),\n    BORDER_COLOR(\"mdal-border_color\", '\\ue0c5'),\n    BORDER_HORIZONTAL(\"mdal-border_horizontal\", '\\ue0c7'),\n    BORDER_INNER(\"mdal-border_inner\", '\\ue0c8'),\n    BORDER_LEFT(\"mdal-border_left\", '\\ue0c9'),\n    BORDER_OUTER(\"mdal-border_outer\", '\\ue0ca'),\n    BORDER_RIGHT(\"mdal-border_right\", '\\ue0cb'),\n    BORDER_STYLE(\"mdal-border_style\", '\\ue0cc'),\n    BORDER_TOP(\"mdal-border_top\", '\\ue0cd'),\n    BORDER_VERTICAL(\"mdal-border_vertical\", '\\ue0ce'),\n    BRANDING_WATERMARK(\"mdal-branding_watermark\", '\\ue0cf'),\n    BRIGHTNESS_1(\"mdal-brightness_1\", '\\ue0d1'),\n    BRIGHTNESS_2(\"mdal-brightness_2\", '\\ue0d3'),\n    BRIGHTNESS_3(\"mdal-brightness_3\", '\\ue0d5'),\n    BRIGHTNESS_4(\"mdal-brightness_4\", '\\ue0d7'),\n    BRIGHTNESS_5(\"mdal-brightness_5\", '\\ue0d9'),\n    BRIGHTNESS_6(\"mdal-brightness_6\", '\\ue0db'),\n    BRIGHTNESS_7(\"mdal-brightness_7\", '\\ue0dd'),\n    BRIGHTNESS_AUTO(\"mdal-brightness_auto\", '\\ue0df'),\n    BRIGHTNESS_HIGH(\"mdal-brightness_high\", '\\ue0e1'),\n    BRIGHTNESS_LOW(\"mdal-brightness_low\", '\\ue0e3'),\n    BRIGHTNESS_MEDIUM(\"mdal-brightness_medium\", '\\ue0e5'),\n    BROKEN_IMAGE(\"mdal-broken_image\", '\\ue0e7'),\n    BROWSER_NOT_SUPPORTED(\"mdal-browser_not_supported\", '\\ue776'),\n    BRUSH(\"mdal-brush\", '\\ue0e9'),\n    BUBBLE_CHART(\"mdal-bubble_chart\", '\\ue0eb'),\n    BUG_REPORT(\"mdal-bug_report\", '\\ue0ed'),\n    BUILD(\"mdal-build\", '\\ue0ef'),\n    BUILD_CIRCLE(\"mdal-build_circle\", '\\ue777'),\n    BURST_MODE(\"mdal-burst_mode\", '\\ue0f1'),\n    BUSINESS(\"mdal-business\", '\\ue0f3'),\n    BUSINESS_CENTER(\"mdal-business_center\", '\\ue0f5'),\n    CACHED(\"mdal-cached\", '\\ue0f7'),\n    CAKE(\"mdal-cake\", '\\ue0f8'),\n    CALCULATE(\"mdal-calculate\", '\\ue779'),\n    CALENDAR_TODAY(\"mdal-calendar_today\", '\\ue0fa'),\n    CALENDAR_VIEW_DAY(\"mdal-calendar_view_day\", '\\ue0fc'),\n    CALL(\"mdal-call\", '\\ue0fe'),\n    CALL_END(\"mdal-call_end\", '\\ue100'),\n    CALL_MADE(\"mdal-call_made\", '\\ue102'),\n    CALL_MERGE(\"mdal-call_merge\", '\\ue103'),\n    CALL_MISSED(\"mdal-call_missed\", '\\ue104'),\n    CALL_MISSED_OUTGOING(\"mdal-call_missed_outgoing\", '\\ue105'),\n    CALL_RECEIVED(\"mdal-call_received\", '\\ue106'),\n    CALL_SPLIT(\"mdal-call_split\", '\\ue107'),\n    CALL_TO_ACTION(\"mdal-call_to_action\", '\\ue108'),\n    CAMERA(\"mdal-camera\", '\\ue10a'),\n    CAMERA_ALT(\"mdal-camera_alt\", '\\ue10c'),\n    CAMERA_ENHANCE(\"mdal-camera_enhance\", '\\ue10e'),\n    CAMERA_FRONT(\"mdal-camera_front\", '\\ue110'),\n    CAMERA_REAR(\"mdal-camera_rear\", '\\ue112'),\n    CAMERA_ROLL(\"mdal-camera_roll\", '\\ue114'),\n    CAMPAIGN(\"mdal-campaign\", '\\ue77b'),\n    CANCEL(\"mdal-cancel\", '\\ue116'),\n    CANCEL_PRESENTATION(\"mdal-cancel_presentation\", '\\ue118'),\n    CANCEL_SCHEDULE_SEND(\"mdal-cancel_schedule_send\", '\\ue11a'),\n    CARD_GIFTCARD(\"mdal-card_giftcard\", '\\ue11c'),\n    CARD_MEMBERSHIP(\"mdal-card_membership\", '\\ue11e'),\n    CARD_TRAVEL(\"mdal-card_travel\", '\\ue120'),\n    CARPENTER(\"mdal-carpenter\", '\\ue866'),\n    CASINO(\"mdal-casino\", '\\ue122'),\n    CAST(\"mdal-cast\", '\\ue124'),\n    CAST_CONNECTED(\"mdal-cast_connected\", '\\ue125'),\n    CAST_FOR_EDUCATION(\"mdal-cast_for_education\", '\\ue127'),\n    CATEGORY(\"mdal-category\", '\\ue128'),\n    CELL_WIFI(\"mdal-cell_wifi\", '\\ue12a'),\n    CENTER_FOCUS_STRONG(\"mdal-center_focus_strong\", '\\ue12c'),\n    CENTER_FOCUS_WEAK(\"mdal-center_focus_weak\", '\\ue12e'),\n    CHANGE_HISTORY(\"mdal-change_history\", '\\ue130'),\n    CHARGING_STATION(\"mdal-charging_station\", '\\ue77d'),\n    CHAT(\"mdal-chat\", '\\ue132'),\n    CHAT_BUBBLE(\"mdal-chat_bubble\", '\\ue134'),\n    CHAT_BUBBLE_OUTLINE(\"mdal-chat_bubble_outline\", '\\ue136'),\n    CHECK(\"mdal-check\", '\\ue137'),\n    CHECK_BOX(\"mdal-check_box\", '\\ue138'),\n    CHECK_BOX_OUTLINE_BLANK(\"mdal-check_box_outline_blank\", '\\ue13a'),\n    CHECK_CIRCLE(\"mdal-check_circle\", '\\ue13b'),\n    CHECK_CIRCLE_OUTLINE(\"mdal-check_circle_outline\", '\\ue13d'),\n    CHECKROOM(\"mdal-checkroom\", '\\ue77f'),\n    CHEVRON_LEFT(\"mdal-chevron_left\", '\\ue13e'),\n    CHEVRON_RIGHT(\"mdal-chevron_right\", '\\ue13f'),\n    CHILD_CARE(\"mdal-child_care\", '\\ue140'),\n    CHILD_FRIENDLY(\"mdal-child_friendly\", '\\ue142'),\n    CHROME_READER_MODE(\"mdal-chrome_reader_mode\", '\\ue144'),\n    CLASS(\"mdal-class\", '\\ue146'),\n    CLEAN_HANDS(\"mdal-clean_hands\", '\\ue89d'),\n    CLEANING_SERVICES(\"mdal-cleaning_services\", '\\ue780'),\n    CLEAR(\"mdal-clear\", '\\ue148'),\n    CLEAR_ALL(\"mdal-clear_all\", '\\ue149'),\n    CLOSE(\"mdal-close\", '\\ue14a'),\n    CLOSE_FULLSCREEN(\"mdal-close_fullscreen\", '\\ue782'),\n    CLOSED_CAPTION(\"mdal-closed_caption\", '\\ue14b'),\n    CLOSED_CAPTION_DISABLED(\"mdal-closed_caption_disabled\", '\\ue868'),\n    CLOUD(\"mdal-cloud\", '\\ue14d'),\n    CLOUD_CIRCLE(\"mdal-cloud_circle\", '\\ue14f'),\n    CLOUD_DONE(\"mdal-cloud_done\", '\\ue151'),\n    CLOUD_DOWNLOAD(\"mdal-cloud_download\", '\\ue153'),\n    CLOUD_OFF(\"mdal-cloud_off\", '\\ue155'),\n    CLOUD_QUEUE(\"mdal-cloud_queue\", '\\ue157'),\n    CLOUD_UPLOAD(\"mdal-cloud_upload\", '\\ue159'),\n    CODE(\"mdal-code\", '\\ue15b'),\n    COLLECTIONS(\"mdal-collections\", '\\ue15c'),\n    COLLECTIONS_BOOKMARK(\"mdal-collections_bookmark\", '\\ue15e'),\n    COLOR_LENS(\"mdal-color_lens\", '\\ue160'),\n    COLORIZE(\"mdal-colorize\", '\\ue162'),\n    COMMENT(\"mdal-comment\", '\\ue164'),\n    COMMENT_BANK(\"mdal-comment_bank\", '\\ue783'),\n    COMMUTE(\"mdal-commute\", '\\ue166'),\n    COMPARE(\"mdal-compare\", '\\ue167'),\n    COMPARE_ARROWS(\"mdal-compare_arrows\", '\\ue169'),\n    COMPASS_CALIBRATION(\"mdal-compass_calibration\", '\\ue16a'),\n    COMPUTER(\"mdal-computer\", '\\ue16c'),\n    CONFIRMATION_NUMBER(\"mdal-confirmation_number\", '\\ue16e'),\n    CONNECT_WITHOUT_CONTACT(\"mdal-connect_without_contact\", '\\ue89f'),\n    CONSTRUCTION(\"mdal-construction\", '\\ue785'),\n    CONTACT_MAIL(\"mdal-contact_mail\", '\\ue170'),\n    CONTACT_PAGE(\"mdal-contact_page\", '\\ue8b4'),\n    CONTACT_PHONE(\"mdal-contact_phone\", '\\ue172'),\n    CONTACT_SUPPORT(\"mdal-contact_support\", '\\ue174'),\n    CONTACTLESS(\"mdal-contactless\", '\\ue176'),\n    CONTACTS(\"mdal-contacts\", '\\ue178'),\n    CONTENT_COPY(\"mdal-content_copy\", '\\ue17a'),\n    CONTENT_CUT(\"mdal-content_cut\", '\\ue17c'),\n    CONTENT_PASTE(\"mdal-content_paste\", '\\ue17e'),\n    CONTROL_CAMERA(\"mdal-control_camera\", '\\ue180'),\n    CONTROL_POINT(\"mdal-control_point\", '\\ue181'),\n    CONTROL_POINT_DUPLICATE(\"mdal-control_point_duplicate\", '\\ue183'),\n    COPYRIGHT(\"mdal-copyright\", '\\ue185'),\n    CORONAVIRUS(\"mdal-coronavirus\", '\\ue8a0'),\n    CORPORATE_FARE(\"mdal-corporate_fare\", '\\ue786'),\n    COUNTERTOPS(\"mdal-countertops\", '\\ue86a'),\n    CREATE(\"mdal-create\", '\\ue187'),\n    CREATE_NEW_FOLDER(\"mdal-create_new_folder\", '\\ue189'),\n    CREDIT_CARD(\"mdal-credit_card\", '\\ue18b'),\n    CROP(\"mdal-crop\", '\\ue18d'),\n    CROP_16_9(\"mdal-crop_16_9\", '\\ue18e'),\n    CROP_3_2(\"mdal-crop_3_2\", '\\ue18f'),\n    CROP_5_4(\"mdal-crop_5_4\", '\\ue190'),\n    CROP_7_5(\"mdal-crop_7_5\", '\\ue191'),\n    CROP_DIN(\"mdal-crop_din\", '\\ue192'),\n    CROP_FREE(\"mdal-crop_free\", '\\ue193'),\n    CROP_LANDSCAPE(\"mdal-crop_landscape\", '\\ue194'),\n    CROP_ORIGINAL(\"mdal-crop_original\", '\\ue195'),\n    CROP_PORTRAIT(\"mdal-crop_portrait\", '\\ue196'),\n    CROP_ROTATE(\"mdal-crop_rotate\", '\\ue197'),\n    CROP_SQUARE(\"mdal-crop_square\", '\\ue198'),\n    DASHBOARD(\"mdal-dashboard\", '\\ue199'),\n    DATA_USAGE(\"mdal-data_usage\", '\\ue19b'),\n    DATE_RANGE(\"mdal-date_range\", '\\ue19c'),\n    DECK(\"mdal-deck\", '\\ue19e'),\n    DEHAZE(\"mdal-dehaze\", '\\ue1a0'),\n    DELETE(\"mdal-delete\", '\\ue1a1'),\n    DELETE_FOREVER(\"mdal-delete_forever\", '\\ue1a3'),\n    DELETE_OUTLINE(\"mdal-delete_outline\", '\\ue1a5'),\n    DELETE_SWEEP(\"mdal-delete_sweep\", '\\ue1a6'),\n    DEPARTURE_BOARD(\"mdal-departure_board\", '\\ue1a8'),\n    DESCRIPTION(\"mdal-description\", '\\ue1aa'),\n    DESIGN_SERVICES(\"mdal-design_services\", '\\ue788'),\n    DESKTOP_ACCESS_DISABLED(\"mdal-desktop_access_disabled\", '\\ue1ac'),\n    DESKTOP_MAC(\"mdal-desktop_mac\", '\\ue1ae'),\n    DESKTOP_WINDOWS(\"mdal-desktop_windows\", '\\ue1b0'),\n    DETAILS(\"mdal-details\", '\\ue1b2'),\n    DEVELOPER_BOARD(\"mdal-developer_board\", '\\ue1b4'),\n    DEVELOPER_MODE(\"mdal-developer_mode\", '\\ue1b6'),\n    DEVICE_HUB(\"mdal-device_hub\", '\\ue1b7'),\n    DEVICE_UNKNOWN(\"mdal-device_unknown\", '\\ue1b8'),\n    DEVICES(\"mdal-devices\", '\\ue1ba'),\n    DEVICES_OTHER(\"mdal-devices_other\", '\\ue1bc'),\n    DIALER_SIP(\"mdal-dialer_sip\", '\\ue1be'),\n    DIALPAD(\"mdal-dialpad\", '\\ue1c0'),\n    DIRECTIONS(\"mdal-directions\", '\\ue1c1'),\n    DIRECTIONS_BIKE(\"mdal-directions_bike\", '\\ue1c3'),\n    DIRECTIONS_BOAT(\"mdal-directions_boat\", '\\ue1c4'),\n    DIRECTIONS_BUS(\"mdal-directions_bus\", '\\ue1c6'),\n    DIRECTIONS_CAR(\"mdal-directions_car\", '\\ue1c8'),\n    DIRECTIONS_OFF(\"mdal-directions_off\", '\\ue78a'),\n    DIRECTIONS_RAILWAY(\"mdal-directions_railway\", '\\ue1ca'),\n    DIRECTIONS_RUN(\"mdal-directions_run\", '\\ue1cc'),\n    DIRECTIONS_SUBWAY(\"mdal-directions_subway\", '\\ue1cd'),\n    DIRECTIONS_TRANSIT(\"mdal-directions_transit\", '\\ue1cf'),\n    DIRECTIONS_WALK(\"mdal-directions_walk\", '\\ue1d1'),\n    DISABLED_BY_DEFAULT(\"mdal-disabled_by_default\", '\\ue8b6'),\n    DISC_FULL(\"mdal-disc_full\", '\\ue1d2'),\n    DIVIDE(\"mdal-divide\", '\\ue1d4'),\n    DNS(\"mdal-dns\", '\\ue1d6'),\n    DO_NOT_DISTURB(\"mdal-do_not_disturb\", '\\ue1d8'),\n    DO_NOT_DISTURB_ALT(\"mdal-do_not_disturb_alt\", '\\ue1da'),\n    DO_NOT_DISTURB_OFF(\"mdal-do_not_disturb_off\", '\\ue1dc'),\n    DO_NOT_STEP(\"mdal-do_not_step\", '\\ue78b'),\n    DO_NOT_TOUCH(\"mdal-do_not_touch\", '\\ue78d'),\n    DOCK(\"mdal-dock\", '\\ue1de'),\n    DOMAIN(\"mdal-domain\", '\\ue1e0'),\n    DOMAIN_DISABLED(\"mdal-domain_disabled\", '\\ue1e2'),\n    DOMAIN_VERIFICATION(\"mdal-domain_verification\", '\\ue78f'),\n    DONE(\"mdal-done\", '\\ue1e4'),\n    DONE_ALL(\"mdal-done_all\", '\\ue1e5'),\n    DONE_OUTLINE(\"mdal-done_outline\", '\\ue1e6'),\n    DONUT_LARGE(\"mdal-donut_large\", '\\ue1e7'),\n    DONUT_SMALL(\"mdal-donut_small\", '\\ue1e8'),\n    DOUBLE_ARROW(\"mdal-double_arrow\", '\\ue1ea'),\n    DRAFTS(\"mdal-drafts\", '\\ue1eb'),\n    DRAG_HANDLE(\"mdal-drag_handle\", '\\ue1ed'),\n    DRAG_INDICATOR(\"mdal-drag_indicator\", '\\ue1ee'),\n    DRIVE_ETA(\"mdal-drive_eta\", '\\ue1ef'),\n    DRY(\"mdal-dry\", '\\ue791'),\n    DUO(\"mdal-duo\", '\\ue1f1'),\n    DVR(\"mdal-dvr\", '\\ue1f2'),\n    DYNAMIC_FEED(\"mdal-dynamic_feed\", '\\ue1f4'),\n    DYNAMIC_FORM(\"mdal-dynamic_form\", '\\ue793'),\n    EAST(\"mdal-east\", '\\ue86c'),\n    ECO(\"mdal-eco\", '\\ue1f6'),\n    EDIT(\"mdal-edit\", '\\ue1f8'),\n    EDIT_ATTRIBUTES(\"mdal-edit_attributes\", '\\ue1fa'),\n    EDIT_LOCATION(\"mdal-edit_location\", '\\ue1fc'),\n    EDIT_ROAD(\"mdal-edit_road\", '\\ue795'),\n    EJECT(\"mdal-eject\", '\\ue1fe'),\n    ELDERLY(\"mdal-elderly\", '\\ue8a2'),\n    ELECTRIC_BIKE(\"mdal-electric_bike\", '\\ue797'),\n    ELECTRIC_CAR(\"mdal-electric_car\", '\\ue798'),\n    ELECTRIC_MOPED(\"mdal-electric_moped\", '\\ue79a'),\n    ELECTRIC_SCOOTER(\"mdal-electric_scooter\", '\\ue79c'),\n    ELECTRICAL_SERVICES(\"mdal-electrical_services\", '\\ue79d'),\n    ELEVATOR(\"mdal-elevator\", '\\ue79e'),\n    EMAIL(\"mdal-email\", '\\ue200'),\n    EMOJI_EMOTIONS(\"mdal-emoji_emotions\", '\\ue202'),\n    EMOJI_EVENTS(\"mdal-emoji_events\", '\\ue204'),\n    EMOJI_FLAGS(\"mdal-emoji_flags\", '\\ue206'),\n    EMOJI_FOOD_BEVERAGE(\"mdal-emoji_food_beverage\", '\\ue208'),\n    EMOJI_NATURE(\"mdal-emoji_nature\", '\\ue20a'),\n    EMOJI_OBJECTS(\"mdal-emoji_objects\", '\\ue20c'),\n    EMOJI_PEOPLE(\"mdal-emoji_people\", '\\ue20e'),\n    EMOJI_SYMBOLS(\"mdal-emoji_symbols\", '\\ue20f'),\n    EMOJI_TRANSPORTATION(\"mdal-emoji_transportation\", '\\ue210'),\n    ENGINEERING(\"mdal-engineering\", '\\ue7a0'),\n    ENHANCED_ENCRYPTION(\"mdal-enhanced_encryption\", '\\ue211'),\n    EQUALIZER(\"mdal-equalizer\", '\\ue213'),\n    EQUALS(\"mdal-equals\", '\\ue214'),\n    ERROR(\"mdal-error\", '\\ue215'),\n    ERROR_OUTLINE(\"mdal-error_outline\", '\\ue217'),\n    ESCALATOR(\"mdal-escalator\", '\\ue7a2'),\n    ESCALATOR_WARNING(\"mdal-escalator_warning\", '\\ue7a4'),\n    EURO(\"mdal-euro\", '\\ue218'),\n    EURO_SYMBOL(\"mdal-euro_symbol\", '\\ue219'),\n    EV_STATION(\"mdal-ev_station\", '\\ue21a'),\n    EVENT(\"mdal-event\", '\\ue21c'),\n    EVENT_AVAILABLE(\"mdal-event_available\", '\\ue21e'),\n    EVENT_BUSY(\"mdal-event_busy\", '\\ue220'),\n    EVENT_NOTE(\"mdal-event_note\", '\\ue222'),\n    EVENT_SEAT(\"mdal-event_seat\", '\\ue224'),\n    EXIT_TO_APP(\"mdal-exit_to_app\", '\\ue226'),\n    EXPAND_LESS(\"mdal-expand_less\", '\\ue227'),\n    EXPAND_MORE(\"mdal-expand_more\", '\\ue228'),\n    EXPLICIT(\"mdal-explicit\", '\\ue229'),\n    EXPLORE(\"mdal-explore\", '\\ue22b'),\n    EXPLORE_OFF(\"mdal-explore_off\", '\\ue22d'),\n    EXPOSURE(\"mdal-exposure\", '\\ue22f'),\n    EXPOSURE_NEG_1(\"mdal-exposure_neg_1\", '\\ue231'),\n    EXPOSURE_NEG_2(\"mdal-exposure_neg_2\", '\\ue232'),\n    EXPOSURE_PLUS_1(\"mdal-exposure_plus_1\", '\\ue233'),\n    EXPOSURE_PLUS_2(\"mdal-exposure_plus_2\", '\\ue234'),\n    EXPOSURE_ZERO(\"mdal-exposure_zero\", '\\ue235'),\n    EXTENSION(\"mdal-extension\", '\\ue236'),\n    FACE(\"mdal-face\", '\\ue238'),\n    FACEBOOK(\"mdal-facebook\", '\\ue8b8'),\n    FACT_CHECK(\"mdal-fact_check\", '\\ue7a5'),\n    FAMILY_RESTROOM(\"mdal-family_restroom\", '\\ue7a7'),\n    FAST_FORWARD(\"mdal-fast_forward\", '\\ue23a'),\n    FAST_REWIND(\"mdal-fast_rewind\", '\\ue23c'),\n    FASTFOOD(\"mdal-fastfood\", '\\ue23e'),\n    FAVORITE(\"mdal-favorite\", '\\ue240'),\n    FAVORITE_BORDER(\"mdal-favorite_border\", '\\ue242'),\n    FEATURED_PLAY_LIST(\"mdal-featured_play_list\", '\\ue243'),\n    FEATURED_VIDEO(\"mdal-featured_video\", '\\ue245'),\n    FEEDBACK(\"mdal-feedback\", '\\ue247'),\n    FENCE(\"mdal-fence\", '\\ue86d'),\n    FIBER_DVR(\"mdal-fiber_dvr\", '\\ue249'),\n    FIBER_MANUAL_RECORD(\"mdal-fiber_manual_record\", '\\ue24b'),\n    FIBER_NEW(\"mdal-fiber_new\", '\\ue24d'),\n    FIBER_PIN(\"mdal-fiber_pin\", '\\ue24f'),\n    FIBER_SMART_RECORD(\"mdal-fiber_smart_record\", '\\ue251'),\n    FILE_COPY(\"mdal-file_copy\", '\\ue253'),\n    FILE_UPLOAD(\"mdal-file_upload\", '\\ue255'),\n    FILTER(\"mdal-filter\", '\\ue257'),\n    FILTER_1(\"mdal-filter_1\", '\\ue259'),\n    FILTER_2(\"mdal-filter_2\", '\\ue25b'),\n    FILTER_3(\"mdal-filter_3\", '\\ue25d'),\n    FILTER_4(\"mdal-filter_4\", '\\ue25f'),\n    FILTER_5(\"mdal-filter_5\", '\\ue261'),\n    FILTER_6(\"mdal-filter_6\", '\\ue263'),\n    FILTER_7(\"mdal-filter_7\", '\\ue265'),\n    FILTER_8(\"mdal-filter_8\", '\\ue267'),\n    FILTER_9(\"mdal-filter_9\", '\\ue269'),\n    FILTER_9_PLUS(\"mdal-filter_9_plus\", '\\ue26b'),\n    FILTER_ALT(\"mdal-filter_alt\", '\\ue7a8'),\n    FILTER_B_AND_W(\"mdal-filter_b_and_w\", '\\ue26d'),\n    FILTER_CENTER_FOCUS(\"mdal-filter_center_focus\", '\\ue26f'),\n    FILTER_DRAMA(\"mdal-filter_drama\", '\\ue270'),\n    FILTER_FRAMES(\"mdal-filter_frames\", '\\ue272'),\n    FILTER_HDR(\"mdal-filter_hdr\", '\\ue274'),\n    FILTER_LIST(\"mdal-filter_list\", '\\ue276'),\n    FILTER_NONE(\"mdal-filter_none\", '\\ue277'),\n    FILTER_TILT_SHIFT(\"mdal-filter_tilt_shift\", '\\ue279'),\n    FILTER_VINTAGE(\"mdal-filter_vintage\", '\\ue27a'),\n    FIND_IN_PAGE(\"mdal-find_in_page\", '\\ue27c'),\n    FIND_REPLACE(\"mdal-find_replace\", '\\ue27e'),\n    FINGERPRINT(\"mdal-fingerprint\", '\\ue27f'),\n    FIRE_EXTINGUISHER(\"mdal-fire_extinguisher\", '\\ue86f'),\n    FIREPLACE(\"mdal-fireplace\", '\\ue280'),\n    FIRST_PAGE(\"mdal-first_page\", '\\ue282'),\n    FITNESS_CENTER(\"mdal-fitness_center\", '\\ue283'),\n    FLAG(\"mdal-flag\", '\\ue284'),\n    FLAKY(\"mdal-flaky\", '\\ue7aa'),\n    FLARE(\"mdal-flare\", '\\ue286'),\n    FLASH_AUTO(\"mdal-flash_auto\", '\\ue287'),\n    FLASH_OFF(\"mdal-flash_off\", '\\ue288'),\n    FLASH_ON(\"mdal-flash_on\", '\\ue289'),\n    FLIGHT(\"mdal-flight\", '\\ue28a'),\n    FLIGHT_LAND(\"mdal-flight_land\", '\\ue28b'),\n    FLIGHT_TAKEOFF(\"mdal-flight_takeoff\", '\\ue28c'),\n    FLIP(\"mdal-flip\", '\\ue28d'),\n    FLIP_CAMERA_ANDROID(\"mdal-flip_camera_android\", '\\ue28e'),\n    FLIP_CAMERA_IOS(\"mdal-flip_camera_ios\", '\\ue290'),\n    FLIP_TO_BACK(\"mdal-flip_to_back\", '\\ue292'),\n    FLIP_TO_FRONT(\"mdal-flip_to_front\", '\\ue293'),\n    FOLDER(\"mdal-folder\", '\\ue294'),\n    FOLDER_OPEN(\"mdal-folder_open\", '\\ue296'),\n    FOLDER_SHARED(\"mdal-folder_shared\", '\\ue298'),\n    FOLDER_SPECIAL(\"mdal-folder_special\", '\\ue29a'),\n    FOLLOW_THE_SIGNS(\"mdal-follow_the_signs\", '\\ue8a3'),\n    FONT_DOWNLOAD(\"mdal-font_download\", '\\ue29c'),\n    FOOD_BANK(\"mdal-food_bank\", '\\ue870'),\n    FORMAT_ALIGN_CENTER(\"mdal-format_align_center\", '\\ue29e'),\n    FORMAT_ALIGN_JUSTIFY(\"mdal-format_align_justify\", '\\ue29f'),\n    FORMAT_ALIGN_LEFT(\"mdal-format_align_left\", '\\ue2a0'),\n    FORMAT_ALIGN_RIGHT(\"mdal-format_align_right\", '\\ue2a1'),\n    FORMAT_BOLD(\"mdal-format_bold\", '\\ue2a2'),\n    FORMAT_CLEAR(\"mdal-format_clear\", '\\ue2a3'),\n    FORMAT_COLOR_FILL(\"mdal-format_color_fill\", '\\ue2a4'),\n    FORMAT_COLOR_RESET(\"mdal-format_color_reset\", '\\ue2a6'),\n    FORMAT_COLOR_TEXT(\"mdal-format_color_text\", '\\ue2a8'),\n    FORMAT_INDENT_DECREASE(\"mdal-format_indent_decrease\", '\\ue2aa'),\n    FORMAT_INDENT_INCREASE(\"mdal-format_indent_increase\", '\\ue2ab'),\n    FORMAT_ITALIC(\"mdal-format_italic\", '\\ue2ac'),\n    FORMAT_LINE_SPACING(\"mdal-format_line_spacing\", '\\ue2ad'),\n    FORMAT_LIST_BULLETED(\"mdal-format_list_bulleted\", '\\ue2ae'),\n    FORMAT_LIST_NUMBERED(\"mdal-format_list_numbered\", '\\ue2af'),\n    FORMAT_LIST_NUMBERED_RTL(\"mdal-format_list_numbered_rtl\", '\\ue2b0'),\n    FORMAT_PAINT(\"mdal-format_paint\", '\\ue2b1'),\n    FORMAT_QUOTE(\"mdal-format_quote\", '\\ue2b3'),\n    FORMAT_SHAPES(\"mdal-format_shapes\", '\\ue2b5'),\n    FORMAT_SIZE(\"mdal-format_size\", '\\ue2b7'),\n    FORMAT_STRIKETHROUGH(\"mdal-format_strikethrough\", '\\ue2b8'),\n    FORMAT_TEXTDIRECTION_L_TO_R(\"mdal-format_textdirection_l_to_r\", '\\ue2b9'),\n    FORMAT_TEXTDIRECTION_R_TO_L(\"mdal-format_textdirection_r_to_l\", '\\ue2bb'),\n    FORMAT_UNDERLINED(\"mdal-format_underlined\", '\\ue2bd'),\n    FORUM(\"mdal-forum\", '\\ue2be'),\n    FORWARD(\"mdal-forward\", '\\ue2c0'),\n    FORWARD_10(\"mdal-forward_10\", '\\ue2c2'),\n    FORWARD_30(\"mdal-forward_30\", '\\ue2c3'),\n    FORWARD_5(\"mdal-forward_5\", '\\ue2c4'),\n    FORWARD_TO_INBOX(\"mdal-forward_to_inbox\", '\\ue7ab'),\n    FOUNDATION(\"mdal-foundation\", '\\ue872'),\n    FREE_BREAKFAST(\"mdal-free_breakfast\", '\\ue2c5'),\n    FULLSCREEN(\"mdal-fullscreen\", '\\ue2c7'),\n    FULLSCREEN_EXIT(\"mdal-fullscreen_exit\", '\\ue2c8'),\n    FUNCTIONS(\"mdal-functions\", '\\ue2c9'),\n    G_TRANSLATE(\"mdal-g_translate\", '\\ue2ca'),\n    GAMEPAD(\"mdal-gamepad\", '\\ue2cb'),\n    GAMES(\"mdal-games\", '\\ue2cd'),\n    GAVEL(\"mdal-gavel\", '\\ue2cf'),\n    GESTURE(\"mdal-gesture\", '\\ue2d0'),\n    GET_APP(\"mdal-get_app\", '\\ue2d1'),\n    GIF(\"mdal-gif\", '\\ue2d3'),\n    GOLF_COURSE(\"mdal-golf_course\", '\\ue2d5'),\n    GPS_FIXED(\"mdal-gps_fixed\", '\\ue2d7'),\n    GPS_NOT_FIXED(\"mdal-gps_not_fixed\", '\\ue2d9'),\n    GPS_OFF(\"mdal-gps_off\", '\\ue2da'),\n    GRADE(\"mdal-grade\", '\\ue2db'),\n    GRADIENT(\"mdal-gradient\", '\\ue2dd'),\n    GRADING(\"mdal-grading\", '\\ue7ad'),\n    GRAIN(\"mdal-grain\", '\\ue2de'),\n    GRAPHIC_EQ(\"mdal-graphic_eq\", '\\ue2df'),\n    GRASS(\"mdal-grass\", '\\ue874'),\n    GREATER_THAN(\"mdal-greater_than\", '\\ue2e0'),\n    GREATER_THAN_EQUAL(\"mdal-greater_than_equal\", '\\ue2e1'),\n    GRID_OFF(\"mdal-grid_off\", '\\ue2e2'),\n    GRID_ON(\"mdal-grid_on\", '\\ue2e4'),\n    GROUP(\"mdal-group\", '\\ue2e6'),\n    GROUP_ADD(\"mdal-group_add\", '\\ue2e8'),\n    GROUP_WORK(\"mdal-group_work\", '\\ue2ea'),\n    GROUPS(\"mdal-groups\", '\\ue8b9'),\n    HANDYMAN(\"mdal-handyman\", '\\ue7ae'),\n    HD(\"mdal-hd\", '\\ue2ec'),\n    HDR_OFF(\"mdal-hdr_off\", '\\ue2ee'),\n    HDR_ON(\"mdal-hdr_on\", '\\ue2ef'),\n    HDR_STRONG(\"mdal-hdr_strong\", '\\ue2f0'),\n    HDR_WEAK(\"mdal-hdr_weak\", '\\ue2f2'),\n    HEADSET(\"mdal-headset\", '\\ue2f4'),\n    HEADSET_MIC(\"mdal-headset_mic\", '\\ue2f6'),\n    HEALING(\"mdal-healing\", '\\ue2f8'),\n    HEARING(\"mdal-hearing\", '\\ue2fa'),\n    HEARING_DISABLED(\"mdal-hearing_disabled\", '\\ue7b0'),\n    HEIGHT(\"mdal-height\", '\\ue2fb'),\n    HELP(\"mdal-help\", '\\ue2fc'),\n    HELP_CENTER(\"mdal-help_center\", '\\ue7b1'),\n    HELP_OUTLINE(\"mdal-help_outline\", '\\ue2fe'),\n    HIGH_QUALITY(\"mdal-high_quality\", '\\ue2ff'),\n    HIGHLIGHT(\"mdal-highlight\", '\\ue301'),\n    HIGHLIGHT_ALT(\"mdal-highlight_alt\", '\\ue7b3'),\n    HIGHLIGHT_OFF(\"mdal-highlight_off\", '\\ue303'),\n    HISTORY(\"mdal-history\", '\\ue305'),\n    HISTORY_EDU(\"mdal-history_edu\", '\\ue7b4'),\n    HISTORY_TOGGLE_OFF(\"mdal-history_toggle_off\", '\\ue7b6'),\n    HOME(\"mdal-home\", '\\ue306'),\n    HOME_REPAIR_SERVICE(\"mdal-home_repair_service\", '\\ue7b7'),\n    HOME_WORK(\"mdal-home_work\", '\\ue308'),\n    HORIZONTAL_DISTRIBUTE(\"mdal-horizontal_distribute\", '\\ue8d0'),\n    HORIZONTAL_RULE(\"mdal-horizontal_rule\", '\\ue7b9'),\n    HORIZONTAL_SPLIT(\"mdal-horizontal_split\", '\\ue30a'),\n    HOT_TUB(\"mdal-hot_tub\", '\\ue30c'),\n    HOTEL(\"mdal-hotel\", '\\ue30d'),\n    HOURGLASS_BOTTOM(\"mdal-hourglass_bottom\", '\\ue7ba'),\n    HOURGLASS_DISABLED(\"mdal-hourglass_disabled\", '\\ue7bc'),\n    HOURGLASS_EMPTY(\"mdal-hourglass_empty\", '\\ue30f'),\n    HOURGLASS_FULL(\"mdal-hourglass_full\", '\\ue310'),\n    HOURGLASS_TOP(\"mdal-hourglass_top\", '\\ue7bd'),\n    HOUSE(\"mdal-house\", '\\ue312'),\n    HOUSE_SIDING(\"mdal-house_siding\", '\\ue875'),\n    HOW_TO_REG(\"mdal-how_to_reg\", '\\ue314'),\n    HOW_TO_VOTE(\"mdal-how_to_vote\", '\\ue316'),\n    HTTP(\"mdal-http\", '\\ue318'),\n    HTTPS(\"mdal-https\", '\\ue319'),\n    HVAC(\"mdal-hvac\", '\\ue7bf'),\n    IMAGE(\"mdal-image\", '\\ue31b'),\n    IMAGE_ASPECT_RATIO(\"mdal-image_aspect_ratio\", '\\ue31d'),\n    IMAGE_NOT_SUPPORTED(\"mdal-image_not_supported\", '\\ue7c1'),\n    IMAGE_SEARCH(\"mdal-image_search\", '\\ue31f'),\n    IMPORT_CONTACTS(\"mdal-import_contacts\", '\\ue321'),\n    IMPORT_EXPORT(\"mdal-import_export\", '\\ue323'),\n    IMPORTANT_DEVICES(\"mdal-important_devices\", '\\ue324'),\n    INBOX(\"mdal-inbox\", '\\ue326'),\n    INDETERMINATE_CHECK_BOX(\"mdal-indeterminate_check_box\", '\\ue328'),\n    INFO(\"mdal-info\", '\\ue32a'),\n    INPUT(\"mdal-input\", '\\ue32c'),\n    INSERT_CHART(\"mdal-insert_chart\", '\\ue32d'),\n    INSERT_CHART_OUTLINED(\"mdal-insert_chart_outlined\", '\\ue32f'),\n    INSERT_COMMENT(\"mdal-insert_comment\", '\\ue330'),\n    INSERT_DRIVE_FILE(\"mdal-insert_drive_file\", '\\ue332'),\n    INSERT_EMOTICON(\"mdal-insert_emoticon\", '\\ue334'),\n    INSERT_INVITATION(\"mdal-insert_invitation\", '\\ue336'),\n    INSERT_LINK(\"mdal-insert_link\", '\\ue338'),\n    INSERT_PHOTO(\"mdal-insert_photo\", '\\ue339'),\n    INSIGHTS(\"mdal-insights\", '\\ue7c3'),\n    INTEGRATION_INSTRUCTIONS(\"mdal-integration_instructions\", '\\ue7c4'),\n    INVERT_COLORS(\"mdal-invert_colors\", '\\ue33b'),\n    INVERT_COLORS_OFF(\"mdal-invert_colors_off\", '\\ue33d'),\n    ISO(\"mdal-iso\", '\\ue33f'),\n    KEYBOARD(\"mdal-keyboard\", '\\ue341'),\n    KEYBOARD_ARROW_DOWN(\"mdal-keyboard_arrow_down\", '\\ue343'),\n    KEYBOARD_ARROW_LEFT(\"mdal-keyboard_arrow_left\", '\\ue344'),\n    KEYBOARD_ARROW_RIGHT(\"mdal-keyboard_arrow_right\", '\\ue345'),\n    KEYBOARD_ARROW_UP(\"mdal-keyboard_arrow_up\", '\\ue346'),\n    KEYBOARD_BACKSPACE(\"mdal-keyboard_backspace\", '\\ue347'),\n    KEYBOARD_CAPSLOCK(\"mdal-keyboard_capslock\", '\\ue348'),\n    KEYBOARD_HIDE(\"mdal-keyboard_hide\", '\\ue349'),\n    KEYBOARD_RETURN(\"mdal-keyboard_return\", '\\ue34b'),\n    KEYBOARD_TAB(\"mdal-keyboard_tab\", '\\ue34c'),\n    KEYBOARD_VOICE(\"mdal-keyboard_voice\", '\\ue34d'),\n    KING_BED(\"mdal-king_bed\", '\\ue34f'),\n    KITCHEN(\"mdal-kitchen\", '\\ue351'),\n    LABEL(\"mdal-label\", '\\ue353'),\n    LABEL_IMPORTANT(\"mdal-label_important\", '\\ue355'),\n    LABEL_OFF(\"mdal-label_off\", '\\ue357'),\n    LANDSCAPE(\"mdal-landscape\", '\\ue359'),\n    LANGUAGE(\"mdal-language\", '\\ue35b'),\n    LAPTOP(\"mdal-laptop\", '\\ue35d'),\n    LAPTOP_CHROMEBOOK(\"mdal-laptop_chromebook\", '\\ue35f'),\n    LAPTOP_MAC(\"mdal-laptop_mac\", '\\ue361'),\n    LAPTOP_WINDOWS(\"mdal-laptop_windows\", '\\ue363'),\n    LAST_PAGE(\"mdal-last_page\", '\\ue365'),\n    LAUNCH(\"mdal-launch\", '\\ue366'),\n    LAYERS(\"mdal-layers\", '\\ue367'),\n    LAYERS_CLEAR(\"mdal-layers_clear\", '\\ue369'),\n    LEADERBOARD(\"mdal-leaderboard\", '\\ue877'),\n    LEAK_ADD(\"mdal-leak_add\", '\\ue36b'),\n    LEAK_REMOVE(\"mdal-leak_remove\", '\\ue36c'),\n    LEAVE_BAGS_AT_HOME(\"mdal-leave_bags_at_home\", '\\ue8a5'),\n    LEGEND_TOGGLE(\"mdal-legend_toggle\", '\\ue7c6'),\n    LENS(\"mdal-lens\", '\\ue36d'),\n    LESS_THAN(\"mdal-less_than\", '\\ue36f'),\n    LESS_THAN_EQUAL(\"mdal-less_than_equal\", '\\ue370'),\n    LIBRARY_ADD(\"mdal-library_add\", '\\ue371'),\n    LIBRARY_ADD_CHECK(\"mdal-library_add_check\", '\\ue746'),\n    LIBRARY_BOOKS(\"mdal-library_books\", '\\ue373'),\n    LIBRARY_MUSIC(\"mdal-library_music\", '\\ue375'),\n    LIGHTBULB(\"mdal-lightbulb\", '\\ue377'),\n    LINE_STYLE(\"mdal-line_style\", '\\ue379'),\n    LINE_WEIGHT(\"mdal-line_weight\", '\\ue37a'),\n    LINEAR_SCALE(\"mdal-linear_scale\", '\\ue37b'),\n    LINK(\"mdal-link\", '\\ue37c'),\n    LINK_OFF(\"mdal-link_off\", '\\ue37e'),\n    LINKED_CAMERA(\"mdal-linked_camera\", '\\ue37f'),\n    LIST(\"mdal-list\", '\\ue381'),\n    LIST_ALT(\"mdal-list_alt\", '\\ue382'),\n    LIVE_HELP(\"mdal-live_help\", '\\ue384'),\n    LIVE_TV(\"mdal-live_tv\", '\\ue386'),\n    LOCAL_ACTIVITY(\"mdal-local_activity\", '\\ue388'),\n    LOCAL_AIRPORT(\"mdal-local_airport\", '\\ue38a'),\n    LOCAL_ATM(\"mdal-local_atm\", '\\ue38b'),\n    LOCAL_BAR(\"mdal-local_bar\", '\\ue38d'),\n    LOCAL_CAFE(\"mdal-local_cafe\", '\\ue38f'),\n    LOCAL_CAR_WASH(\"mdal-local_car_wash\", '\\ue391'),\n    LOCAL_CONVENIENCE_STORE(\"mdal-local_convenience_store\", '\\ue393'),\n    LOCAL_DINING(\"mdal-local_dining\", '\\ue395'),\n    LOCAL_DRINK(\"mdal-local_drink\", '\\ue396'),\n    LOCAL_FIRE_DEPARTMENT(\"mdal-local_fire_department\", '\\ue8a7'),\n    LOCAL_FLORIST(\"mdal-local_florist\", '\\ue398'),\n    LOCAL_GAS_STATION(\"mdal-local_gas_station\", '\\ue39a'),\n    LOCAL_GROCERY_STORE(\"mdal-local_grocery_store\", '\\ue39c'),\n    LOCAL_HOSPITAL(\"mdal-local_hospital\", '\\ue39e'),\n    LOCAL_HOTEL(\"mdal-local_hotel\", '\\ue3a0'),\n    LOCAL_LAUNDRY_SERVICE(\"mdal-local_laundry_service\", '\\ue3a2'),\n    LOCAL_LIBRARY(\"mdal-local_library\", '\\ue3a4'),\n    LOCAL_MALL(\"mdal-local_mall\", '\\ue3a6'),\n    LOCAL_MOVIES(\"mdal-local_movies\", '\\ue3a8'),\n    LOCAL_OFFER(\"mdal-local_offer\", '\\ue3aa'),\n    LOCAL_PARKING(\"mdal-local_parking\", '\\ue3ac'),\n    LOCAL_PHARMACY(\"mdal-local_pharmacy\", '\\ue3ad'),\n    LOCAL_PHONE(\"mdal-local_phone\", '\\ue3af'),\n    LOCAL_PIZZA(\"mdal-local_pizza\", '\\ue3b1'),\n    LOCAL_PLAY(\"mdal-local_play\", '\\ue3b3'),\n    LOCAL_POLICE(\"mdal-local_police\", '\\ue8a9'),\n    LOCAL_POST_OFFICE(\"mdal-local_post_office\", '\\ue3b5'),\n    LOCAL_PRINTSHOP(\"mdal-local_printshop\", '\\ue3b7'),\n    LOCAL_SEE(\"mdal-local_see\", '\\ue3b9'),\n    LOCAL_SHIPPING(\"mdal-local_shipping\", '\\ue3bb'),\n    LOCAL_TAXI(\"mdal-local_taxi\", '\\ue3bd'),\n    LOCATION_CITY(\"mdal-location_city\", '\\ue3bf'),\n    LOCATION_DISABLED(\"mdal-location_disabled\", '\\ue3c0'),\n    LOCATION_OFF(\"mdal-location_off\", '\\ue3c1'),\n    LOCATION_ON(\"mdal-location_on\", '\\ue3c2'),\n    LOCATION_SEARCHING(\"mdal-location_searching\", '\\ue3c4'),\n    LOCK(\"mdal-lock\", '\\ue3c5'),\n    LOCK_OPEN(\"mdal-lock_open\", '\\ue3c7'),\n    LOG_IN(\"mdal-log_in\", '\\ue3c9'),\n    LOG_OUT(\"mdal-log_out\", '\\ue3ca'),\n    LOGIN(\"mdal-login\", '\\ue7c7'),\n    LOOKS(\"mdal-looks\", '\\ue3cb'),\n    LOOKS_3(\"mdal-looks_3\", '\\ue3cc'),\n    LOOKS_4(\"mdal-looks_4\", '\\ue3ce'),\n    LOOKS_5(\"mdal-looks_5\", '\\ue3d0'),\n    LOOKS_6(\"mdal-looks_6\", '\\ue3d2'),\n    LOOKS_ONE(\"mdal-looks_one\", '\\ue3d4'),\n    LOOKS_TWO(\"mdal-looks_two\", '\\ue3d6'),\n    LOOP(\"mdal-loop\", '\\ue3d8'),\n    LOUPE(\"mdal-loupe\", '\\ue3d9'),\n    LOW_PRIORITY(\"mdal-low_priority\", '\\ue3db'),\n    LOYALTY(\"mdal-loyalty\", '\\ue3dc'),\n    LUGGAGE(\"mdal-luggage\", '\\ue8bb');\n\n    public static Material2AL findByDescription(String description) {\n        for (Material2AL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Material2AL(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2ALIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Material2ALIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/material2/20200820/fonts/MaterialIcons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdal-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Material2AL.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Material Icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2ALIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class Material2ALIkonProvider implements IkonProvider<Material2AL> {\n    @Override\n    public Class<Material2AL> getIkon() {\n        return Material2AL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2MZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Material2MZ implements Ikon {\n    MAIL(\"mdmz-mail\", '\\ue3de'),\n    MAIL_OUTLINE(\"mdmz-mail_outline\", '\\ue3e0'),\n    MAP(\"mdmz-map\", '\\ue3e1'),\n    MAPS_UGC(\"mdmz-maps_ugc\", '\\ue7c8'),\n    MARK_CHAT_READ(\"mdmz-mark_chat_read\", '\\ue7ca'),\n    MARK_CHAT_UNREAD(\"mdmz-mark_chat_unread\", '\\ue7cc'),\n    MARK_EMAIL_READ(\"mdmz-mark_email_read\", '\\ue7ce'),\n    MARK_EMAIL_UNREAD(\"mdmz-mark_email_unread\", '\\ue7d0'),\n    MARKUNREAD(\"mdmz-markunread\", '\\ue3e3'),\n    MARKUNREAD_MAILBOX(\"mdmz-markunread_mailbox\", '\\ue3e5'),\n    MASKS(\"mdmz-masks\", '\\ue8ab'),\n    MAXIMIZE(\"mdmz-maximize\", '\\ue3e7'),\n    MEDIATION(\"mdmz-mediation\", '\\ue7d2'),\n    MEDICAL_SERVICES(\"mdmz-medical_services\", '\\ue7d3'),\n    MEETING_ROOM(\"mdmz-meeting_room\", '\\ue3e8'),\n    MEMORY(\"mdmz-memory\", '\\ue3ea'),\n    MENU(\"mdmz-menu\", '\\ue3ec'),\n    MENU_BOOK(\"mdmz-menu_book\", '\\ue3ed'),\n    MENU_OPEN(\"mdmz-menu_open\", '\\ue3ef'),\n    MERGE_TYPE(\"mdmz-merge_type\", '\\ue3f0'),\n    MESSAGE(\"mdmz-message\", '\\ue3f1'),\n    MIC(\"mdmz-mic\", '\\ue3f3'),\n    MIC_NONE(\"mdmz-mic_none\", '\\ue3f5'),\n    MIC_OFF(\"mdmz-mic_off\", '\\ue3f7'),\n    MICROWAVE(\"mdmz-microwave\", '\\ue879'),\n    MILITARY_TECH(\"mdmz-military_tech\", '\\ue7d5'),\n    MINIMIZE(\"mdmz-minimize\", '\\ue3f9'),\n    MINUS(\"mdmz-minus\", '\\ue3fa'),\n    MISCELLANEOUS_SERVICES(\"mdmz-miscellaneous_services\", '\\ue7d7'),\n    MISSED_VIDEO_CALL(\"mdmz-missed_video_call\", '\\ue3fb'),\n    MMS(\"mdmz-mms\", '\\ue3fd'),\n    MOBILE_FRIENDLY(\"mdmz-mobile_friendly\", '\\ue3ff'),\n    MOBILE_OFF(\"mdmz-mobile_off\", '\\ue400'),\n    MOBILE_SCREEN_SHARE(\"mdmz-mobile_screen_share\", '\\ue401'),\n    MODE_COMMENT(\"mdmz-mode_comment\", '\\ue403'),\n    MODEL_TRAINING(\"mdmz-model_training\", '\\ue7d8'),\n    MONETIZATION_ON(\"mdmz-monetization_on\", '\\ue405'),\n    MONEY(\"mdmz-money\", '\\ue407'),\n    MONEY_OFF(\"mdmz-money_off\", '\\ue409'),\n    MONOCHROME_PHOTOS(\"mdmz-monochrome_photos\", '\\ue40a'),\n    MOOD(\"mdmz-mood\", '\\ue40c'),\n    MOOD_BAD(\"mdmz-mood_bad\", '\\ue40e'),\n    MOPED(\"mdmz-moped\", '\\ue7d9'),\n    MORE(\"mdmz-more\", '\\ue410'),\n    MORE_HORIZ(\"mdmz-more_horiz\", '\\ue412'),\n    MORE_TIME(\"mdmz-more_time\", '\\ue7db'),\n    MORE_VERT(\"mdmz-more_vert\", '\\ue413'),\n    MOTION_PHOTOS_ON(\"mdmz-motion_photos_on\", '\\ue8ad'),\n    MOTION_PHOTOS_PAUSE(\"mdmz-motion_photos_pause\", '\\ue8bd'),\n    MOTION_PHOTOS_PAUSED(\"mdmz-motion_photos_paused\", '\\ue8ae'),\n    MOTORCYCLE(\"mdmz-motorcycle\", '\\ue414'),\n    MOUSE(\"mdmz-mouse\", '\\ue416'),\n    MOVE_TO_INBOX(\"mdmz-move_to_inbox\", '\\ue418'),\n    MOVIE(\"mdmz-movie\", '\\ue41a'),\n    MOVIE_CREATION(\"mdmz-movie_creation\", '\\ue41c'),\n    MOVIE_FILTER(\"mdmz-movie_filter\", '\\ue41e'),\n    MULTILINE_CHART(\"mdmz-multiline_chart\", '\\ue420'),\n    MULTIPLE_STOP(\"mdmz-multiple_stop\", '\\ue7dc'),\n    MUSEUM(\"mdmz-museum\", '\\ue421'),\n    MUSIC_NOTE(\"mdmz-music_note\", '\\ue423'),\n    MUSIC_OFF(\"mdmz-music_off\", '\\ue425'),\n    MUSIC_VIDEO(\"mdmz-music_video\", '\\ue427'),\n    MY_LOCATION(\"mdmz-my_location\", '\\ue429'),\n    NAT(\"mdmz-nat\", '\\ue7dd'),\n    NATURE(\"mdmz-nature\", '\\ue42b'),\n    NATURE_PEOPLE(\"mdmz-nature_people\", '\\ue42d'),\n    NAVIGATE_BEFORE(\"mdmz-navigate_before\", '\\ue42f'),\n    NAVIGATE_NEXT(\"mdmz-navigate_next\", '\\ue430'),\n    NAVIGATION(\"mdmz-navigation\", '\\ue431'),\n    NEAR_ME(\"mdmz-near_me\", '\\ue433'),\n    NEAR_ME_DISABLED(\"mdmz-near_me_disabled\", '\\ue87b'),\n    NETWORK_CELL(\"mdmz-network_cell\", '\\ue435'),\n    NETWORK_CHECK(\"mdmz-network_check\", '\\ue437'),\n    NETWORK_LOCKED(\"mdmz-network_locked\", '\\ue438'),\n    NETWORK_WIFI(\"mdmz-network_wifi\", '\\ue439'),\n    NEW_RELEASES(\"mdmz-new_releases\", '\\ue43b'),\n    NEXT_PLAN(\"mdmz-next_plan\", '\\ue7df'),\n    NEXT_WEEK(\"mdmz-next_week\", '\\ue43d'),\n    NFC(\"mdmz-nfc\", '\\ue43f'),\n    NIGHT_SHELTER(\"mdmz-night_shelter\", '\\ue87d'),\n    NIGHTS_STAY(\"mdmz-nights_stay\", '\\ue440'),\n    NO_BACKPACK(\"mdmz-no_backpack\", '\\ue8be'),\n    NO_CELL(\"mdmz-no_cell\", '\\ue7e1'),\n    NO_DRINKS(\"mdmz-no_drinks\", '\\ue7e3'),\n    NO_ENCRYPTION(\"mdmz-no_encryption\", '\\ue442'),\n    NO_FLASH(\"mdmz-no_flash\", '\\ue7e5'),\n    NO_FOOD(\"mdmz-no_food\", '\\ue7e7'),\n    NO_LUGGAGE(\"mdmz-no_luggage\", '\\ue8c0'),\n    NO_MEALS(\"mdmz-no_meals\", '\\ue87f'),\n    NO_MEETING_ROOM(\"mdmz-no_meeting_room\", '\\ue444'),\n    NO_PHOTOGRAPHY(\"mdmz-no_photography\", '\\ue7e9'),\n    NO_SIM(\"mdmz-no_sim\", '\\ue446'),\n    NO_STROLLER(\"mdmz-no_stroller\", '\\ue7eb'),\n    NO_TRANSFER(\"mdmz-no_transfer\", '\\ue880'),\n    NORTH(\"mdmz-north\", '\\ue882'),\n    NORTH_EAST(\"mdmz-north_east\", '\\ue883'),\n    NORTH_WEST(\"mdmz-north_west\", '\\ue884'),\n    NOT_ACCESSIBLE(\"mdmz-not_accessible\", '\\ue7ed'),\n    NOT_EQUAL(\"mdmz-not_equal\", '\\ue448'),\n    NOT_INTERESTED(\"mdmz-not_interested\", '\\ue449'),\n    NOT_LISTED_LOCATION(\"mdmz-not_listed_location\", '\\ue44a'),\n    NOT_STARTED(\"mdmz-not_started\", '\\ue7ee'),\n    NOTE(\"mdmz-note\", '\\ue44c'),\n    NOTE_ADD(\"mdmz-note_add\", '\\ue44e'),\n    NOTES(\"mdmz-notes\", '\\ue450'),\n    NOTIFICATION_IMPORTANT(\"mdmz-notification_important\", '\\ue451'),\n    NOTIFICATIONS(\"mdmz-notifications\", '\\ue453'),\n    NOTIFICATIONS_ACTIVE(\"mdmz-notifications_active\", '\\ue455'),\n    NOTIFICATIONS_NONE(\"mdmz-notifications_none\", '\\ue457'),\n    NOTIFICATIONS_OFF(\"mdmz-notifications_off\", '\\ue459'),\n    NOTIFICATIONS_PAUSED(\"mdmz-notifications_paused\", '\\ue45b'),\n    OFFLINE_BOLT(\"mdmz-offline_bolt\", '\\ue45d'),\n    OFFLINE_PIN(\"mdmz-offline_pin\", '\\ue45f'),\n    ONDEMAND_VIDEO(\"mdmz-ondemand_video\", '\\ue461'),\n    ONLINE_PREDICTION(\"mdmz-online_prediction\", '\\ue7f0'),\n    OPACITY(\"mdmz-opacity\", '\\ue463'),\n    OPEN_IN_BROWSER(\"mdmz-open_in_browser\", '\\ue465'),\n    OPEN_IN_FULL(\"mdmz-open_in_full\", '\\ue7f1'),\n    OPEN_IN_NEW(\"mdmz-open_in_new\", '\\ue466'),\n    OPEN_WITH(\"mdmz-open_with\", '\\ue467'),\n    OUTBOND(\"mdmz-outbond\", '\\ue8c2'),\n    OUTDOOR_GRILL(\"mdmz-outdoor_grill\", '\\ue468'),\n    OUTLET(\"mdmz-outlet\", '\\ue7f2'),\n    OUTLINED_FLAG(\"mdmz-outlined_flag\", '\\ue46a'),\n    PAGES(\"mdmz-pages\", '\\ue46b'),\n    PAGEVIEW(\"mdmz-pageview\", '\\ue46d'),\n    PALETTE(\"mdmz-palette\", '\\ue46f'),\n    PAN_TOOL(\"mdmz-pan_tool\", '\\ue471'),\n    PANORAMA(\"mdmz-panorama\", '\\ue473'),\n    PANORAMA_FISH_EYE(\"mdmz-panorama_fish_eye\", '\\ue475'),\n    PANORAMA_HORIZONTAL(\"mdmz-panorama_horizontal\", '\\ue477'),\n    PANORAMA_VERTICAL(\"mdmz-panorama_vertical\", '\\ue479'),\n    PANORAMA_WIDE_ANGLE(\"mdmz-panorama_wide_angle\", '\\ue47b'),\n    PARTY_MODE(\"mdmz-party_mode\", '\\ue47d'),\n    PAUSE(\"mdmz-pause\", '\\ue47f'),\n    PAUSE_CIRCLE_FILLED(\"mdmz-pause_circle_filled\", '\\ue480'),\n    PAUSE_CIRCLE_OUTLINE(\"mdmz-pause_circle_outline\", '\\ue482'),\n    PAUSE_PRESENTATION(\"mdmz-pause_presentation\", '\\ue483'),\n    PAYMENT(\"mdmz-payment\", '\\ue485'),\n    PAYMENTS(\"mdmz-payments\", '\\ue7f4'),\n    PEDAL_BIKE(\"mdmz-pedal_bike\", '\\ue7f6'),\n    PENDING(\"mdmz-pending\", '\\ue7f7'),\n    PENDING_ACTIONS(\"mdmz-pending_actions\", '\\ue7f9'),\n    PEOPLE(\"mdmz-people\", '\\ue487'),\n    PEOPLE_ALT(\"mdmz-people_alt\", '\\ue489'),\n    PEOPLE_OUTLINE(\"mdmz-people_outline\", '\\ue48b'),\n    PERCENTAGE(\"mdmz-percentage\", '\\ue48d'),\n    PERM_CAMERA_MIC(\"mdmz-perm_camera_mic\", '\\ue48f'),\n    PERM_CONTACT_CALENDAR(\"mdmz-perm_contact_calendar\", '\\ue491'),\n    PERM_DATA_SETTING(\"mdmz-perm_data_setting\", '\\ue493'),\n    PERM_DEVICE_INFORMATION(\"mdmz-perm_device_information\", '\\ue494'),\n    PERM_IDENTITY(\"mdmz-perm_identity\", '\\ue496'),\n    PERM_MEDIA(\"mdmz-perm_media\", '\\ue498'),\n    PERM_PHONE_MSG(\"mdmz-perm_phone_msg\", '\\ue49a'),\n    PERM_SCAN_WIFI(\"mdmz-perm_scan_wifi\", '\\ue49c'),\n    PERSON(\"mdmz-person\", '\\ue49e'),\n    PERSON_ADD(\"mdmz-person_add\", '\\ue4a0'),\n    PERSON_ADD_ALT_1(\"mdmz-person_add_alt_1\", '\\ue7fb'),\n    PERSON_ADD_DISABLED(\"mdmz-person_add_disabled\", '\\ue4a2'),\n    PERSON_OUTLINE(\"mdmz-person_outline\", '\\ue4a4'),\n    PERSON_PIN(\"mdmz-person_pin\", '\\ue4a6'),\n    PERSON_PIN_CIRCLE(\"mdmz-person_pin_circle\", '\\ue4a8'),\n    PERSON_REMOVE(\"mdmz-person_remove\", '\\ue7fd'),\n    PERSON_REMOVE_ALT_1(\"mdmz-person_remove_alt_1\", '\\ue7ff'),\n    PERSON_SEARCH(\"mdmz-person_search\", '\\ue801'),\n    PERSONAL_VIDEO(\"mdmz-personal_video\", '\\ue4aa'),\n    PEST_CONTROL(\"mdmz-pest_control\", '\\ue803'),\n    PEST_CONTROL_RODENT(\"mdmz-pest_control_rodent\", '\\ue805'),\n    PETS(\"mdmz-pets\", '\\ue4ac'),\n    PHONE(\"mdmz-phone\", '\\ue4ad'),\n    PHONE_ANDROID(\"mdmz-phone_android\", '\\ue4af'),\n    PHONE_BLUETOOTH_SPEAKER(\"mdmz-phone_bluetooth_speaker\", '\\ue4b1'),\n    PHONE_CALLBACK(\"mdmz-phone_callback\", '\\ue4b3'),\n    PHONE_DISABLED(\"mdmz-phone_disabled\", '\\ue4b5'),\n    PHONE_ENABLED(\"mdmz-phone_enabled\", '\\ue4b6'),\n    PHONE_FORWARDED(\"mdmz-phone_forwarded\", '\\ue4b7'),\n    PHONE_IN_TALK(\"mdmz-phone_in_talk\", '\\ue4b9'),\n    PHONE_IPHONE(\"mdmz-phone_iphone\", '\\ue4bb'),\n    PHONE_LOCKED(\"mdmz-phone_locked\", '\\ue4bd'),\n    PHONE_MISSED(\"mdmz-phone_missed\", '\\ue4bf'),\n    PHONE_PAUSED(\"mdmz-phone_paused\", '\\ue4c1'),\n    PHONELINK(\"mdmz-phonelink\", '\\ue4c3'),\n    PHONELINK_ERASE(\"mdmz-phonelink_erase\", '\\ue4c5'),\n    PHONELINK_LOCK(\"mdmz-phonelink_lock\", '\\ue4c6'),\n    PHONELINK_OFF(\"mdmz-phonelink_off\", '\\ue4c7'),\n    PHONELINK_RING(\"mdmz-phonelink_ring\", '\\ue4c9'),\n    PHONELINK_SETUP(\"mdmz-phonelink_setup\", '\\ue4cb'),\n    PHOTO(\"mdmz-photo\", '\\ue4cc'),\n    PHOTO_ALBUM(\"mdmz-photo_album\", '\\ue4ce'),\n    PHOTO_CAMERA(\"mdmz-photo_camera\", '\\ue4d0'),\n    PHOTO_FILTER(\"mdmz-photo_filter\", '\\ue4d2'),\n    PHOTO_LIBRARY(\"mdmz-photo_library\", '\\ue4d3'),\n    PHOTO_SIZE_SELECT_ACTUAL(\"mdmz-photo_size_select_actual\", '\\ue4d5'),\n    PHOTO_SIZE_SELECT_LARGE(\"mdmz-photo_size_select_large\", '\\ue4d7'),\n    PHOTO_SIZE_SELECT_SMALL(\"mdmz-photo_size_select_small\", '\\ue4d8'),\n    PICTURE_AS_PDF(\"mdmz-picture_as_pdf\", '\\ue4d9'),\n    PICTURE_IN_PICTURE(\"mdmz-picture_in_picture\", '\\ue4db'),\n    PICTURE_IN_PICTURE_ALT(\"mdmz-picture_in_picture_alt\", '\\ue4dd'),\n    PIE_CHART(\"mdmz-pie_chart\", '\\ue4df'),\n    PIN(\"mdmz-pin\", '\\ue4e1'),\n    PIN_DROP(\"mdmz-pin_drop\", '\\ue4e3'),\n    PIN_OFF(\"mdmz-pin_off\", '\\ue4e5'),\n    PLACE(\"mdmz-place\", '\\ue4e7'),\n    PLAGIARISM(\"mdmz-plagiarism\", '\\ue807'),\n    PLAY_ARROW(\"mdmz-play_arrow\", '\\ue4e9'),\n    PLAY_CIRCLE_FILLED(\"mdmz-play_circle_filled\", '\\ue4eb'),\n    PLAY_CIRCLE_FILLED_WHITE(\"mdmz-play_circle_filled_white\", '\\ue4ed'),\n    PLAY_CIRCLE_OUTLINE(\"mdmz-play_circle_outline\", '\\ue4ef'),\n    PLAY_FOR_WORK(\"mdmz-play_for_work\", '\\ue4f0'),\n    PLAYLIST_ADD(\"mdmz-playlist_add\", '\\ue4f1'),\n    PLAYLIST_ADD_CHECK(\"mdmz-playlist_add_check\", '\\ue4f2'),\n    PLAYLIST_PLAY(\"mdmz-playlist_play\", '\\ue4f3'),\n    PLUMBING(\"mdmz-plumbing\", '\\ue809'),\n    PLUS(\"mdmz-plus\", '\\ue4f4'),\n    PLUS_MINUS(\"mdmz-plus_minus\", '\\ue4f5'),\n    PLUS_MINUS_ALT(\"mdmz-plus_minus_alt\", '\\ue4f6'),\n    PLUS_ONE(\"mdmz-plus_one\", '\\ue4f7'),\n    POINT_OF_SALE(\"mdmz-point_of_sale\", '\\ue80a'),\n    POLICY(\"mdmz-policy\", '\\ue4f8'),\n    POLL(\"mdmz-poll\", '\\ue4fa'),\n    POLYMER(\"mdmz-polymer\", '\\ue4fc'),\n    POOL(\"mdmz-pool\", '\\ue4fd'),\n    PORTABLE_WIFI_OFF(\"mdmz-portable_wifi_off\", '\\ue4ff'),\n    PORTRAIT(\"mdmz-portrait\", '\\ue500'),\n    POST_ADD(\"mdmz-post_add\", '\\ue502'),\n    POWER(\"mdmz-power\", '\\ue503'),\n    POWER_INPUT(\"mdmz-power_input\", '\\ue505'),\n    POWER_OFF(\"mdmz-power_off\", '\\ue506'),\n    POWER_SETTINGS_NEW(\"mdmz-power_settings_new\", '\\ue508'),\n    PREGNANT_WOMAN(\"mdmz-pregnant_woman\", '\\ue509'),\n    PRESENT_TO_ALL(\"mdmz-present_to_all\", '\\ue50a'),\n    PREVIEW(\"mdmz-preview\", '\\ue80c'),\n    PRINT(\"mdmz-print\", '\\ue50c'),\n    PRINT_DISABLED(\"mdmz-print_disabled\", '\\ue50e'),\n    PRIORITY_HIGH(\"mdmz-priority_high\", '\\ue510'),\n    PRIVACY_TIP(\"mdmz-privacy_tip\", '\\ue80e'),\n    PSYCHOLOGY(\"mdmz-psychology\", '\\ue810'),\n    PUBLIC(\"mdmz-public\", '\\ue511'),\n    PUBLIC_OFF(\"mdmz-public_off\", '\\ue812'),\n    PUBLISH(\"mdmz-publish\", '\\ue513'),\n    PUBLISHED_WITH_CHANGES(\"mdmz-published_with_changes\", '\\ue8c4'),\n    PUSH_PIN(\"mdmz-push_pin\", '\\ue814'),\n    QR_CODE(\"mdmz-qr_code\", '\\ue816'),\n    QR_CODE_2(\"mdmz-qr_code_2\", '\\ue8d1'),\n    QR_CODE_SCANNER(\"mdmz-qr_code_scanner\", '\\ue885'),\n    QRCODE(\"mdmz-qrcode\", '\\ue515'),\n    QUERY_BUILDER(\"mdmz-query_builder\", '\\ue517'),\n    QUESTION_ANSWER(\"mdmz-question_answer\", '\\ue519'),\n    QUEUE(\"mdmz-queue\", '\\ue51b'),\n    QUEUE_MUSIC(\"mdmz-queue_music\", '\\ue51d'),\n    QUEUE_PLAY_NEXT(\"mdmz-queue_play_next\", '\\ue51f'),\n    QUICKREPLY(\"mdmz-quickreply\", '\\ue818'),\n    RADIO(\"mdmz-radio\", '\\ue520'),\n    RADIO_BUTTON_CHECKED(\"mdmz-radio_button_checked\", '\\ue522'),\n    RADIO_BUTTON_UNCHECKED(\"mdmz-radio_button_unchecked\", '\\ue523'),\n    RATE_REVIEW(\"mdmz-rate_review\", '\\ue524'),\n    READ_MORE(\"mdmz-read_more\", '\\ue81a'),\n    RECEIPT(\"mdmz-receipt\", '\\ue526'),\n    RECEIPT_LONG(\"mdmz-receipt_long\", '\\ue81b'),\n    RECENT_ACTORS(\"mdmz-recent_actors\", '\\ue528'),\n    RECORD_VOICE_OVER(\"mdmz-record_voice_over\", '\\ue52a'),\n    REDEEM(\"mdmz-redeem\", '\\ue52c'),\n    REDO(\"mdmz-redo\", '\\ue52e'),\n    REDUCE_CAPACITY(\"mdmz-reduce_capacity\", '\\ue8af'),\n    REFRESH(\"mdmz-refresh\", '\\ue52f'),\n    REMOVE(\"mdmz-remove\", '\\ue530'),\n    REMOVE_CIRCLE(\"mdmz-remove_circle\", '\\ue531'),\n    REMOVE_CIRCLE_OUTLINE(\"mdmz-remove_circle_outline\", '\\ue533'),\n    REMOVE_FROM_QUEUE(\"mdmz-remove_from_queue\", '\\ue534'),\n    REMOVE_RED_EYE(\"mdmz-remove_red_eye\", '\\ue536'),\n    REMOVE_SHOPPING_CART(\"mdmz-remove_shopping_cart\", '\\ue538'),\n    REORDER(\"mdmz-reorder\", '\\ue53a'),\n    REPEAT(\"mdmz-repeat\", '\\ue53b'),\n    REPEAT_ONE(\"mdmz-repeat_one\", '\\ue53c'),\n    REPLAY(\"mdmz-replay\", '\\ue53d'),\n    REPLAY_10(\"mdmz-replay_10\", '\\ue53e'),\n    REPLAY_30(\"mdmz-replay_30\", '\\ue53f'),\n    REPLAY_5(\"mdmz-replay_5\", '\\ue540'),\n    REPLY(\"mdmz-reply\", '\\ue541'),\n    REPLY_ALL(\"mdmz-reply_all\", '\\ue542'),\n    REPORT(\"mdmz-report\", '\\ue543'),\n    REPORT_OFF(\"mdmz-report_off\", '\\ue545'),\n    REPORT_PROBLEM(\"mdmz-report_problem\", '\\ue547'),\n    REQUEST_PAGE(\"mdmz-request_page\", '\\ue8c5'),\n    REQUEST_QUOTE(\"mdmz-request_quote\", '\\ue81d'),\n    RESTAURANT(\"mdmz-restaurant\", '\\ue549'),\n    RESTAURANT_MENU(\"mdmz-restaurant_menu\", '\\ue54a'),\n    RESTORE(\"mdmz-restore\", '\\ue54b'),\n    RESTORE_FROM_TRASH(\"mdmz-restore_from_trash\", '\\ue54c'),\n    RESTORE_PAGE(\"mdmz-restore_page\", '\\ue54e'),\n    RICE_BOWL(\"mdmz-rice_bowl\", '\\ue886'),\n    RING_VOLUME(\"mdmz-ring_volume\", '\\ue550'),\n    ROCKET(\"mdmz-rocket\", '\\ue552'),\n    ROOFING(\"mdmz-roofing\", '\\ue888'),\n    ROOM(\"mdmz-room\", '\\ue554'),\n    ROOM_PREFERENCES(\"mdmz-room_preferences\", '\\ue81f'),\n    ROOM_SERVICE(\"mdmz-room_service\", '\\ue556'),\n    ROTATE_90_DEGREES_CCW(\"mdmz-rotate_90_degrees_ccw\", '\\ue558'),\n    ROTATE_LEFT(\"mdmz-rotate_left\", '\\ue55a'),\n    ROTATE_RIGHT(\"mdmz-rotate_right\", '\\ue55b'),\n    ROUNDED_CORNER(\"mdmz-rounded_corner\", '\\ue55c'),\n    ROUTER(\"mdmz-router\", '\\ue55d'),\n    ROWING(\"mdmz-rowing\", '\\ue55f'),\n    RSS_FEED(\"mdmz-rss_feed\", '\\ue560'),\n    RULE(\"mdmz-rule\", '\\ue821'),\n    RULE_FOLDER(\"mdmz-rule_folder\", '\\ue822'),\n    RUN_CIRCLE(\"mdmz-run_circle\", '\\ue824'),\n    RV_HOOKUP(\"mdmz-rv_hookup\", '\\ue561'),\n    SANITIZER(\"mdmz-sanitizer\", '\\ue8b0'),\n    SATELLITE(\"mdmz-satellite\", '\\ue563'),\n    SAVE(\"mdmz-save\", '\\ue565'),\n    SAVE_ALT(\"mdmz-save_alt\", '\\ue567'),\n    SCANNER(\"mdmz-scanner\", '\\ue568'),\n    SCATTER_PLOT(\"mdmz-scatter_plot\", '\\ue56a'),\n    SCHEDULE(\"mdmz-schedule\", '\\ue56c'),\n    SCHOOL(\"mdmz-school\", '\\ue56e'),\n    SCIENCE(\"mdmz-science\", '\\ue826'),\n    SCORE(\"mdmz-score\", '\\ue570'),\n    SCREEN_LOCK_LANDSCAPE(\"mdmz-screen_lock_landscape\", '\\ue572'),\n    SCREEN_LOCK_PORTRAIT(\"mdmz-screen_lock_portrait\", '\\ue574'),\n    SCREEN_LOCK_ROTATION(\"mdmz-screen_lock_rotation\", '\\ue576'),\n    SCREEN_ROTATION(\"mdmz-screen_rotation\", '\\ue577'),\n    SCREEN_SHARE(\"mdmz-screen_share\", '\\ue579'),\n    SD_CARD(\"mdmz-sd_card\", '\\ue57b'),\n    SD_STORAGE(\"mdmz-sd_storage\", '\\ue57d'),\n    SEARCH(\"mdmz-search\", '\\ue57f'),\n    SEARCH_OFF(\"mdmz-search_off\", '\\ue828'),\n    SECURITY(\"mdmz-security\", '\\ue580'),\n    SELECT_ALL(\"mdmz-select_all\", '\\ue582'),\n    SELF_IMPROVEMENT(\"mdmz-self_improvement\", '\\ue829'),\n    SEND(\"mdmz-send\", '\\ue583'),\n    SENSOR_DOOR(\"mdmz-sensor_door\", '\\ue82a'),\n    SENSOR_WINDOW(\"mdmz-sensor_window\", '\\ue82c'),\n    SENTIMENT_DISSATISFIED(\"mdmz-sentiment_dissatisfied\", '\\ue585'),\n    SENTIMENT_NEUTRAL(\"mdmz-sentiment_neutral\", '\\ue587'),\n    SENTIMENT_SATISFIED(\"mdmz-sentiment_satisfied\", '\\ue589'),\n    SENTIMENT_SATISFIED_ALT(\"mdmz-sentiment_satisfied_alt\", '\\ue58b'),\n    SENTIMENT_SLIGHTLY_DISSATISFIED(\"mdmz-sentiment_slightly_dissatisfied\", '\\ue58d'),\n    SENTIMENT_VERY_DISSATISFIED(\"mdmz-sentiment_very_dissatisfied\", '\\ue58f'),\n    SENTIMENT_VERY_SATISFIED(\"mdmz-sentiment_very_satisfied\", '\\ue591'),\n    SET_MEAL(\"mdmz-set_meal\", '\\ue88a'),\n    SETTINGS(\"mdmz-settings\", '\\ue593'),\n    SETTINGS_APPLICATIONS(\"mdmz-settings_applications\", '\\ue595'),\n    SETTINGS_BACKUP_RESTORE(\"mdmz-settings_backup_restore\", '\\ue597'),\n    SETTINGS_BLUETOOTH(\"mdmz-settings_bluetooth\", '\\ue598'),\n    SETTINGS_BRIGHTNESS(\"mdmz-settings_brightness\", '\\ue599'),\n    SETTINGS_CELL(\"mdmz-settings_cell\", '\\ue59b'),\n    SETTINGS_ETHERNET(\"mdmz-settings_ethernet\", '\\ue59d'),\n    SETTINGS_INPUT_ANTENNA(\"mdmz-settings_input_antenna\", '\\ue59e'),\n    SETTINGS_INPUT_COMPONENT(\"mdmz-settings_input_component\", '\\ue59f'),\n    SETTINGS_INPUT_COMPOSITE(\"mdmz-settings_input_composite\", '\\ue5a1'),\n    SETTINGS_INPUT_HDMI(\"mdmz-settings_input_hdmi\", '\\ue5a3'),\n    SETTINGS_INPUT_SVIDEO(\"mdmz-settings_input_svideo\", '\\ue5a5'),\n    SETTINGS_OVERSCAN(\"mdmz-settings_overscan\", '\\ue5a7'),\n    SETTINGS_PHONE(\"mdmz-settings_phone\", '\\ue5a9'),\n    SETTINGS_POWER(\"mdmz-settings_power\", '\\ue5ab'),\n    SETTINGS_REMOTE(\"mdmz-settings_remote\", '\\ue5ac'),\n    SETTINGS_SYSTEM_DAYDREAM(\"mdmz-settings_system_daydream\", '\\ue5ae'),\n    SETTINGS_VOICE(\"mdmz-settings_voice\", '\\ue5b0'),\n    SHARE(\"mdmz-share\", '\\ue5b2'),\n    SHOP(\"mdmz-shop\", '\\ue5b4'),\n    SHOP_TWO(\"mdmz-shop_two\", '\\ue5b6'),\n    SHOPPING_BAG(\"mdmz-shopping_bag\", '\\ue82e'),\n    SHOPPING_BASKET(\"mdmz-shopping_basket\", '\\ue5b8'),\n    SHOPPING_CART(\"mdmz-shopping_cart\", '\\ue5ba'),\n    SHORT_TEXT(\"mdmz-short_text\", '\\ue5bc'),\n    SHOW_CHART(\"mdmz-show_chart\", '\\ue5bd'),\n    SHUFFLE(\"mdmz-shuffle\", '\\ue5be'),\n    SHUTTER_SPEED(\"mdmz-shutter_speed\", '\\ue5bf'),\n    SICK(\"mdmz-sick\", '\\ue8b2'),\n    SIGNAL_CELLULAR_0_BAR(\"mdmz-signal_cellular_0_bar\", '\\ue5c1'),\n    SIGNAL_CELLULAR_1_BAR(\"mdmz-signal_cellular_1_bar\", '\\ue5c3'),\n    SIGNAL_CELLULAR_2_BAR(\"mdmz-signal_cellular_2_bar\", '\\ue5c5'),\n    SIGNAL_CELLULAR_3_BAR(\"mdmz-signal_cellular_3_bar\", '\\ue5c7'),\n    SIGNAL_CELLULAR_4_BAR(\"mdmz-signal_cellular_4_bar\", '\\ue5c9'),\n    SIGNAL_CELLULAR_ALT(\"mdmz-signal_cellular_alt\", '\\ue5ca'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR(\"mdmz-signal_cellular_connected_no_internet_0_bar\", '\\ue5cb'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_1_BAR(\"mdmz-signal_cellular_connected_no_internet_1_bar\", '\\ue5cd'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_2_BAR(\"mdmz-signal_cellular_connected_no_internet_2_bar\", '\\ue5cf'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_3_BAR(\"mdmz-signal_cellular_connected_no_internet_3_bar\", '\\ue5d1'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR(\"mdmz-signal_cellular_connected_no_internet_4_bar\", '\\ue5d3'),\n    SIGNAL_CELLULAR_NO_SIM(\"mdmz-signal_cellular_no_sim\", '\\ue5d4'),\n    SIGNAL_CELLULAR_NULL(\"mdmz-signal_cellular_null\", '\\ue5d6'),\n    SIGNAL_CELLULAR_OFF(\"mdmz-signal_cellular_off\", '\\ue5d7'),\n    SIGNAL_WIFI_0_BAR(\"mdmz-signal_wifi_0_bar\", '\\ue5d8'),\n    SIGNAL_WIFI_1_BAR(\"mdmz-signal_wifi_1_bar\", '\\ue5da'),\n    SIGNAL_WIFI_1_BAR_LOCK(\"mdmz-signal_wifi_1_bar_lock\", '\\ue5dc'),\n    SIGNAL_WIFI_2_BAR(\"mdmz-signal_wifi_2_bar\", '\\ue5de'),\n    SIGNAL_WIFI_2_BAR_LOCK(\"mdmz-signal_wifi_2_bar_lock\", '\\ue5e0'),\n    SIGNAL_WIFI_3_BAR(\"mdmz-signal_wifi_3_bar\", '\\ue5e2'),\n    SIGNAL_WIFI_3_BAR_LOCK(\"mdmz-signal_wifi_3_bar_lock\", '\\ue5e4'),\n    SIGNAL_WIFI_4_BAR(\"mdmz-signal_wifi_4_bar\", '\\ue5e6'),\n    SIGNAL_WIFI_4_BAR_LOCK(\"mdmz-signal_wifi_4_bar_lock\", '\\ue5e7'),\n    SIGNAL_WIFI_OFF(\"mdmz-signal_wifi_off\", '\\ue5e8'),\n    SIM_CARD(\"mdmz-sim_card\", '\\ue5e9'),\n    SIM_CARD_ALERT(\"mdmz-sim_card_alert\", '\\ue5eb'),\n    SINGLE_BED(\"mdmz-single_bed\", '\\ue5ed'),\n    SKIP_NEXT(\"mdmz-skip_next\", '\\ue5ef'),\n    SKIP_PREVIOUS(\"mdmz-skip_previous\", '\\ue5f1'),\n    SLIDESHOW(\"mdmz-slideshow\", '\\ue5f3'),\n    SLOW_MOTION_VIDEO(\"mdmz-slow_motion_video\", '\\ue5f5'),\n    SMART_BUTTON(\"mdmz-smart_button\", '\\ue830'),\n    SMARTPHONE(\"mdmz-smartphone\", '\\ue5f6'),\n    SMOKE_FREE(\"mdmz-smoke_free\", '\\ue5f8'),\n    SMOKING_ROOMS(\"mdmz-smoking_rooms\", '\\ue5f9'),\n    SMS(\"mdmz-sms\", '\\ue5fb'),\n    SMS_FAILED(\"mdmz-sms_failed\", '\\ue5fd'),\n    SNIPPET_FOLDER(\"mdmz-snippet_folder\", '\\ue831'),\n    SNOOZE(\"mdmz-snooze\", '\\ue5ff'),\n    SOAP(\"mdmz-soap\", '\\ue833'),\n    SORT(\"mdmz-sort\", '\\ue600'),\n    SORT_BY_ALPHA(\"mdmz-sort_by_alpha\", '\\ue601'),\n    SOURCE(\"mdmz-source\", '\\ue835'),\n    SOUTH(\"mdmz-south\", '\\ue88c'),\n    SOUTH_EAST(\"mdmz-south_east\", '\\ue88d'),\n    SOUTH_WEST(\"mdmz-south_west\", '\\ue88e'),\n    SPA(\"mdmz-spa\", '\\ue602'),\n    SPACE_BAR(\"mdmz-space_bar\", '\\ue604'),\n    SPEAKER(\"mdmz-speaker\", '\\ue605'),\n    SPEAKER_GROUP(\"mdmz-speaker_group\", '\\ue607'),\n    SPEAKER_NOTES(\"mdmz-speaker_notes\", '\\ue609'),\n    SPEAKER_NOTES_OFF(\"mdmz-speaker_notes_off\", '\\ue60b'),\n    SPEAKER_PHONE(\"mdmz-speaker_phone\", '\\ue60d'),\n    SPEED(\"mdmz-speed\", '\\ue60f'),\n    SPELLCHECK(\"mdmz-spellcheck\", '\\ue610'),\n    SPORTS(\"mdmz-sports\", '\\ue611'),\n    SPORTS_BAR(\"mdmz-sports_bar\", '\\ue88f'),\n    SPORTS_BASEBALL(\"mdmz-sports_baseball\", '\\ue612'),\n    SPORTS_BASKETBALL(\"mdmz-sports_basketball\", '\\ue614'),\n    SPORTS_CRICKET(\"mdmz-sports_cricket\", '\\ue616'),\n    SPORTS_ESPORTS(\"mdmz-sports_esports\", '\\ue618'),\n    SPORTS_FOOTBALL(\"mdmz-sports_football\", '\\ue61a'),\n    SPORTS_GOLF(\"mdmz-sports_golf\", '\\ue61c'),\n    SPORTS_HANDBALL(\"mdmz-sports_handball\", '\\ue61e'),\n    SPORTS_HOCKEY(\"mdmz-sports_hockey\", '\\ue61f'),\n    SPORTS_KABADDI(\"mdmz-sports_kabaddi\", '\\ue620'),\n    SPORTS_MMA(\"mdmz-sports_mma\", '\\ue621'),\n    SPORTS_MOTORSPORTS(\"mdmz-sports_motorsports\", '\\ue623'),\n    SPORTS_RUGBY(\"mdmz-sports_rugby\", '\\ue625'),\n    SPORTS_SOCCER(\"mdmz-sports_soccer\", '\\ue627'),\n    SPORTS_TENNIS(\"mdmz-sports_tennis\", '\\ue629'),\n    SPORTS_VOLLEYBALL(\"mdmz-sports_volleyball\", '\\ue62a'),\n    SQUARE_FOOT(\"mdmz-square_foot\", '\\ue62c'),\n    STACKED_LINE_CHART(\"mdmz-stacked_line_chart\", '\\ue8c7'),\n    STAIRS(\"mdmz-stairs\", '\\ue837'),\n    STAR(\"mdmz-star\", '\\ue62e'),\n    STAR_BORDER(\"mdmz-star_border\", '\\ue630'),\n    STAR_HALF(\"mdmz-star_half\", '\\ue631'),\n    STAR_OUTLINE(\"mdmz-star_outline\", '\\ue748'),\n    STAR_RATE(\"mdmz-star_rate\", '\\ue632'),\n    STARS(\"mdmz-stars\", '\\ue633'),\n    STAY_CURRENT_LANDSCAPE(\"mdmz-stay_current_landscape\", '\\ue635'),\n    STAY_CURRENT_PORTRAIT(\"mdmz-stay_current_portrait\", '\\ue637'),\n    STAY_PRIMARY_LANDSCAPE(\"mdmz-stay_primary_landscape\", '\\ue639'),\n    STAY_PRIMARY_PORTRAIT(\"mdmz-stay_primary_portrait\", '\\ue63b'),\n    STICKY_NOTE_2(\"mdmz-sticky_note_2\", '\\ue891'),\n    STOP(\"mdmz-stop\", '\\ue63d'),\n    STOP_CIRCLE(\"mdmz-stop_circle\", '\\ue63f'),\n    STOP_SCREEN_SHARE(\"mdmz-stop_screen_share\", '\\ue641'),\n    STORAGE(\"mdmz-storage\", '\\ue643'),\n    STORE(\"mdmz-store\", '\\ue644'),\n    STORE_MALL_DIRECTORY(\"mdmz-store_mall_directory\", '\\ue646'),\n    STOREFRONT(\"mdmz-storefront\", '\\ue648'),\n    STRAIGHTEN(\"mdmz-straighten\", '\\ue64a'),\n    STREETVIEW(\"mdmz-streetview\", '\\ue64c'),\n    STRIKETHROUGH_S(\"mdmz-strikethrough_s\", '\\ue64d'),\n    STROLLER(\"mdmz-stroller\", '\\ue839'),\n    STYLE(\"mdmz-style\", '\\ue64e'),\n    SUBDIRECTORY_ARROW_LEFT(\"mdmz-subdirectory_arrow_left\", '\\ue650'),\n    SUBDIRECTORY_ARROW_RIGHT(\"mdmz-subdirectory_arrow_right\", '\\ue651'),\n    SUBJECT(\"mdmz-subject\", '\\ue652'),\n    SUBSCRIPT(\"mdmz-subscript\", '\\ue83b'),\n    SUBSCRIPTIONS(\"mdmz-subscriptions\", '\\ue653'),\n    SUBTITLES(\"mdmz-subtitles\", '\\ue655'),\n    SUBTITLES_OFF(\"mdmz-subtitles_off\", '\\ue83c'),\n    SUBWAY(\"mdmz-subway\", '\\ue657'),\n    SUPERSCRIPT(\"mdmz-superscript\", '\\ue83e'),\n    SUPERVISED_USER_CIRCLE(\"mdmz-supervised_user_circle\", '\\ue659'),\n    SUPERVISOR_ACCOUNT(\"mdmz-supervisor_account\", '\\ue65b'),\n    SUPPORT(\"mdmz-support\", '\\ue83f'),\n    SUPPORT_AGENT(\"mdmz-support_agent\", '\\ue841'),\n    SURROUND_SOUND(\"mdmz-surround_sound\", '\\ue65d'),\n    SWAP_CALLS(\"mdmz-swap_calls\", '\\ue65f'),\n    SWAP_HORIZ(\"mdmz-swap_horiz\", '\\ue660'),\n    SWAP_HORIZONTAL_CIRCLE(\"mdmz-swap_horizontal_circle\", '\\ue661'),\n    SWAP_VERT(\"mdmz-swap_vert\", '\\ue663'),\n    SWAP_VERTICAL_CIRCLE(\"mdmz-swap_vertical_circle\", '\\ue664'),\n    SWITCH_CAMERA(\"mdmz-switch_camera\", '\\ue666'),\n    SWITCH_LEFT(\"mdmz-switch_left\", '\\ue842'),\n    SWITCH_RIGHT(\"mdmz-switch_right\", '\\ue844'),\n    SWITCH_VIDEO(\"mdmz-switch_video\", '\\ue668'),\n    SYNC(\"mdmz-sync\", '\\ue66a'),\n    SYNC_ALT(\"mdmz-sync_alt\", '\\ue66b'),\n    SYNC_DISABLED(\"mdmz-sync_disabled\", '\\ue66c'),\n    SYNC_PROBLEM(\"mdmz-sync_problem\", '\\ue66d'),\n    SYSTEM_UPDATE(\"mdmz-system_update\", '\\ue66e'),\n    SYSTEM_UPDATE_ALT(\"mdmz-system_update_alt\", '\\ue670'),\n    TAB(\"mdmz-tab\", '\\ue671'),\n    TAB_UNSELECTED(\"mdmz-tab_unselected\", '\\ue672'),\n    TABLE_CHART(\"mdmz-table_chart\", '\\ue673'),\n    TABLE_ROWS(\"mdmz-table_rows\", '\\ue846'),\n    TABLE_VIEW(\"mdmz-table_view\", '\\ue848'),\n    TABLET(\"mdmz-tablet\", '\\ue675'),\n    TABLET_ANDROID(\"mdmz-tablet_android\", '\\ue677'),\n    TABLET_MAC(\"mdmz-tablet_mac\", '\\ue679'),\n    TAG_FACES(\"mdmz-tag_faces\", '\\ue67b'),\n    TAP_AND_PLAY(\"mdmz-tap_and_play\", '\\ue67d'),\n    TAPAS(\"mdmz-tapas\", '\\ue893'),\n    TERRAIN(\"mdmz-terrain\", '\\ue67e'),\n    TEXT_FIELDS(\"mdmz-text_fields\", '\\ue680'),\n    TEXT_FORMAT(\"mdmz-text_format\", '\\ue681'),\n    TEXT_ROTATE_UP(\"mdmz-text_rotate_up\", '\\ue682'),\n    TEXT_ROTATE_VERTICAL(\"mdmz-text_rotate_vertical\", '\\ue683'),\n    TEXT_ROTATION_ANGLEDOWN(\"mdmz-text_rotation_angledown\", '\\ue684'),\n    TEXT_ROTATION_ANGLEUP(\"mdmz-text_rotation_angleup\", '\\ue685'),\n    TEXT_ROTATION_DOWN(\"mdmz-text_rotation_down\", '\\ue686'),\n    TEXT_ROTATION_NONE(\"mdmz-text_rotation_none\", '\\ue687'),\n    TEXT_SNIPPET(\"mdmz-text_snippet\", '\\ue84a'),\n    TEXTSMS(\"mdmz-textsms\", '\\ue688'),\n    TEXTURE(\"mdmz-texture\", '\\ue68a'),\n    THEATERS(\"mdmz-theaters\", '\\ue68b'),\n    THUMB_DOWN(\"mdmz-thumb_down\", '\\ue68d'),\n    THUMB_DOWN_ALT(\"mdmz-thumb_down_alt\", '\\ue68f'),\n    THUMB_UP(\"mdmz-thumb_up\", '\\ue691'),\n    THUMB_UP_ALT(\"mdmz-thumb_up_alt\", '\\ue693'),\n    THUMBS_UP_DOWN(\"mdmz-thumbs_up_down\", '\\ue695'),\n    TIME_TO_LEAVE(\"mdmz-time_to_leave\", '\\ue697'),\n    TIMELAPSE(\"mdmz-timelapse\", '\\ue699'),\n    TIMELINE(\"mdmz-timeline\", '\\ue69b'),\n    TIMER(\"mdmz-timer\", '\\ue69c'),\n    TIMER_10(\"mdmz-timer_10\", '\\ue69e'),\n    TIMER_3(\"mdmz-timer_3\", '\\ue69f'),\n    TIMER_OFF(\"mdmz-timer_off\", '\\ue6a0'),\n    TITLE(\"mdmz-title\", '\\ue6a2'),\n    TOC(\"mdmz-toc\", '\\ue6a3'),\n    TODAY(\"mdmz-today\", '\\ue6a4'),\n    TOGGLE_OFF(\"mdmz-toggle_off\", '\\ue6a6'),\n    TOGGLE_ON(\"mdmz-toggle_on\", '\\ue6a8'),\n    TOLL(\"mdmz-toll\", '\\ue6aa'),\n    TONALITY(\"mdmz-tonality\", '\\ue6ac'),\n    TOPIC(\"mdmz-topic\", '\\ue84c'),\n    TOUCH_APP(\"mdmz-touch_app\", '\\ue6ae'),\n    TOUR(\"mdmz-tour\", '\\ue84e'),\n    TOYS(\"mdmz-toys\", '\\ue6b0'),\n    TRACK_CHANGES(\"mdmz-track_changes\", '\\ue6b2'),\n    TRAFFIC(\"mdmz-traffic\", '\\ue6b3'),\n    TRAIN(\"mdmz-train\", '\\ue6b5'),\n    TRAM(\"mdmz-tram\", '\\ue6b7'),\n    TRANSFER_WITHIN_A_STATION(\"mdmz-transfer_within_a_station\", '\\ue6b9'),\n    TRANSFORM(\"mdmz-transform\", '\\ue6ba'),\n    TRANSIT_ENTEREXIT(\"mdmz-transit_enterexit\", '\\ue6bb'),\n    TRANSLATE(\"mdmz-translate\", '\\ue6bc'),\n    TRENDING_DOWN(\"mdmz-trending_down\", '\\ue6bd'),\n    TRENDING_FLAT(\"mdmz-trending_flat\", '\\ue6be'),\n    TRENDING_UP(\"mdmz-trending_up\", '\\ue6bf'),\n    TRIP_ORIGIN(\"mdmz-trip_origin\", '\\ue6c0'),\n    TTY(\"mdmz-tty\", '\\ue850'),\n    TUNE(\"mdmz-tune\", '\\ue6c1'),\n    TURNED_IN(\"mdmz-turned_in\", '\\ue6c2'),\n    TURNED_IN_NOT(\"mdmz-turned_in_not\", '\\ue6c4'),\n    TV(\"mdmz-tv\", '\\ue6c5'),\n    TV_OFF(\"mdmz-tv_off\", '\\ue6c7'),\n    TWO_WHEELER(\"mdmz-two_wheeler\", '\\ue749'),\n    UMBRELLA(\"mdmz-umbrella\", '\\ue852'),\n    UNARCHIVE(\"mdmz-unarchive\", '\\ue6c9'),\n    UNDO(\"mdmz-undo\", '\\ue6cb'),\n    UNFOLD_LESS(\"mdmz-unfold_less\", '\\ue6cc'),\n    UNFOLD_MORE(\"mdmz-unfold_more\", '\\ue6cd'),\n    UNPUBLISHED(\"mdmz-unpublished\", '\\ue8c8'),\n    UNSUBSCRIBE(\"mdmz-unsubscribe\", '\\ue6ce'),\n    UPDATE(\"mdmz-update\", '\\ue6d0'),\n    UPDATE_DISABLED(\"mdmz-update_disabled\", '\\ue8d2'),\n    UPGRADE(\"mdmz-upgrade\", '\\ue854'),\n    USB(\"mdmz-usb\", '\\ue6d1'),\n    VERIFIED(\"mdmz-verified\", '\\ue855'),\n    VERIFIED_USER(\"mdmz-verified_user\", '\\ue6d2'),\n    VERTICAL_ALIGN_BOTTOM(\"mdmz-vertical_align_bottom\", '\\ue6d4'),\n    VERTICAL_ALIGN_CENTER(\"mdmz-vertical_align_center\", '\\ue6d5'),\n    VERTICAL_ALIGN_TOP(\"mdmz-vertical_align_top\", '\\ue6d6'),\n    VERTICAL_DISTRIBUTE(\"mdmz-vertical_distribute\", '\\ue8d3'),\n    VERTICAL_SPLIT(\"mdmz-vertical_split\", '\\ue6d7'),\n    VIBRATION(\"mdmz-vibration\", '\\ue6d9'),\n    VIDEO_CALL(\"mdmz-video_call\", '\\ue6db'),\n    VIDEO_LABEL(\"mdmz-video_label\", '\\ue6dd'),\n    VIDEO_LIBRARY(\"mdmz-video_library\", '\\ue6df'),\n    VIDEO_SETTINGS(\"mdmz-video_settings\", '\\ue857'),\n    VIDEOCAM(\"mdmz-videocam\", '\\ue6e1'),\n    VIDEOCAM_OFF(\"mdmz-videocam_off\", '\\ue6e3'),\n    VIDEOGAME_ASSET(\"mdmz-videogame_asset\", '\\ue6e5'),\n    VIEW_AGENDA(\"mdmz-view_agenda\", '\\ue6e7'),\n    VIEW_ARRAY(\"mdmz-view_array\", '\\ue6e9'),\n    VIEW_CAROUSEL(\"mdmz-view_carousel\", '\\ue6eb'),\n    VIEW_COLUMN(\"mdmz-view_column\", '\\ue6ed'),\n    VIEW_COMFY(\"mdmz-view_comfy\", '\\ue6ef'),\n    VIEW_COMPACT(\"mdmz-view_compact\", '\\ue6f1'),\n    VIEW_DAY(\"mdmz-view_day\", '\\ue6f3'),\n    VIEW_HEADLINE(\"mdmz-view_headline\", '\\ue6f5'),\n    VIEW_LIST(\"mdmz-view_list\", '\\ue6f6'),\n    VIEW_MODULE(\"mdmz-view_module\", '\\ue6f8'),\n    VIEW_QUILT(\"mdmz-view_quilt\", '\\ue6fa'),\n    VIEW_SIDEBAR(\"mdmz-view_sidebar\", '\\ue858'),\n    VIEW_STREAM(\"mdmz-view_stream\", '\\ue6fc'),\n    VIEW_WEEK(\"mdmz-view_week\", '\\ue6fe'),\n    VIGNETTE(\"mdmz-vignette\", '\\ue700'),\n    VISIBILITY(\"mdmz-visibility\", '\\ue702'),\n    VISIBILITY_OFF(\"mdmz-visibility_off\", '\\ue704'),\n    VOICE_CHAT(\"mdmz-voice_chat\", '\\ue706'),\n    VOICE_OVER_OFF(\"mdmz-voice_over_off\", '\\ue708'),\n    VOICEMAIL(\"mdmz-voicemail\", '\\ue70a'),\n    VOLUME_DOWN(\"mdmz-volume_down\", '\\ue70b'),\n    VOLUME_MUTE(\"mdmz-volume_mute\", '\\ue70d'),\n    VOLUME_OFF(\"mdmz-volume_off\", '\\ue70f'),\n    VOLUME_UP(\"mdmz-volume_up\", '\\ue711'),\n    VPN_KEY(\"mdmz-vpn_key\", '\\ue713'),\n    VPN_LOCK(\"mdmz-vpn_lock\", '\\ue715'),\n    WALLPAPER(\"mdmz-wallpaper\", '\\ue717'),\n    WARNING(\"mdmz-warning\", '\\ue718'),\n    WASH(\"mdmz-wash\", '\\ue85a'),\n    WATCH(\"mdmz-watch\", '\\ue71a'),\n    WATCH_LATER(\"mdmz-watch_later\", '\\ue71c'),\n    WATER_DAMAGE(\"mdmz-water_damage\", '\\ue895'),\n    WAVES(\"mdmz-waves\", '\\ue71e'),\n    WB_AUTO(\"mdmz-wb_auto\", '\\ue71f'),\n    WB_CLOUDY(\"mdmz-wb_cloudy\", '\\ue721'),\n    WB_INCANDESCENT(\"mdmz-wb_incandescent\", '\\ue723'),\n    WB_IRIDESCENT(\"mdmz-wb_iridescent\", '\\ue725'),\n    WB_SUNNY(\"mdmz-wb_sunny\", '\\ue727'),\n    WC(\"mdmz-wc\", '\\ue729'),\n    WEB(\"mdmz-web\", '\\ue72a'),\n    WEB_ASSET(\"mdmz-web_asset\", '\\ue72c'),\n    WEEKEND(\"mdmz-weekend\", '\\ue72e'),\n    WEST(\"mdmz-west\", '\\ue897'),\n    WHATSHOT(\"mdmz-whatshot\", '\\ue730'),\n    WHEELCHAIR_PICKUP(\"mdmz-wheelchair_pickup\", '\\ue85c'),\n    WHERE_TO_VOTE(\"mdmz-where_to_vote\", '\\ue732'),\n    WIDGETS(\"mdmz-widgets\", '\\ue734'),\n    WIFI(\"mdmz-wifi\", '\\ue736'),\n    WIFI_CALLING(\"mdmz-wifi_calling\", '\\ue85d'),\n    WIFI_LOCK(\"mdmz-wifi_lock\", '\\ue737'),\n    WIFI_OFF(\"mdmz-wifi_off\", '\\ue738'),\n    WIFI_PROTECTED_SETUP(\"mdmz-wifi_protected_setup\", '\\ue85f'),\n    WIFI_TETHERING(\"mdmz-wifi_tethering\", '\\ue739'),\n    WINE_BAR(\"mdmz-wine_bar\", '\\ue898'),\n    WORK(\"mdmz-work\", '\\ue73a'),\n    WORK_OFF(\"mdmz-work_off\", '\\ue73c'),\n    WORK_OUTLINE(\"mdmz-work_outline\", '\\ue73e'),\n    WRAP_TEXT(\"mdmz-wrap_text\", '\\ue73f'),\n    WRONG_LOCATION(\"mdmz-wrong_location\", '\\ue860'),\n    WYSIWYG(\"mdmz-wysiwyg\", '\\ue861'),\n    YOUTUBE_SEARCHED_FOR(\"mdmz-youtube_searched_for\", '\\ue740'),\n    ZOOM_IN(\"mdmz-zoom_in\", '\\ue741'),\n    ZOOM_OUT(\"mdmz-zoom_out\", '\\ue742'),\n    ZOOM_OUT_MAP(\"mdmz-zoom_out_map\", '\\ue743');\n\n    public static Material2MZ findByDescription(String description) {\n        for (Material2MZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Material2MZ(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2MZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Material2MZIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/material2/20200820/fonts/MaterialIcons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdmz-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Material2MZ.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Material Icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2MZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class Material2MZIkonProvider implements IkonProvider<Material2MZ> {\n    @Override\n    public Class<Material2MZ> getIkon() {\n        return Material2MZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2OutlinedAL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Material2OutlinedAL implements Ikon {\n    MDOAL_360(\"mdoal-360\", '\\ue000'),\n    MDOAL_3D_ROTATION(\"mdoal-3d_rotation\", '\\ue001'),\n    MDOAL_4K(\"mdoal-4k\", '\\ue002'),\n    MDOAL_5G(\"mdoal-5g\", '\\ue74a'),\n    MDOAL_6_FT_APART(\"mdoal-6_ft_apart\", '\\ue89a'),\n    AC_UNIT(\"mdoal-ac_unit\", '\\ue004'),\n    ACCESS_ALARM(\"mdoal-access_alarm\", '\\ue005'),\n    ACCESS_ALARMS(\"mdoal-access_alarms\", '\\ue007'),\n    ACCESS_TIME(\"mdoal-access_time\", '\\ue009'),\n    ACCESSIBILITY(\"mdoal-accessibility\", '\\ue00b'),\n    ACCESSIBILITY_NEW(\"mdoal-accessibility_new\", '\\ue00c'),\n    ACCESSIBLE(\"mdoal-accessible\", '\\ue00d'),\n    ACCESSIBLE_FORWARD(\"mdoal-accessible_forward\", '\\ue00e'),\n    ACCOUNT_BALANCE(\"mdoal-account_balance\", '\\ue00f'),\n    ACCOUNT_BALANCE_WALLET(\"mdoal-account_balance_wallet\", '\\ue011'),\n    ACCOUNT_BOX(\"mdoal-account_box\", '\\ue013'),\n    ACCOUNT_CIRCLE(\"mdoal-account_circle\", '\\ue015'),\n    ACCOUNT_TREE(\"mdoal-account_tree\", '\\ue017'),\n    AD_UNITS(\"mdoal-ad_units\", '\\ue74b'),\n    ADB(\"mdoal-adb\", '\\ue019'),\n    ADD(\"mdoal-add\", '\\ue01a'),\n    ADD_A_PHOTO(\"mdoal-add_a_photo\", '\\ue01b'),\n    ADD_ALARM(\"mdoal-add_alarm\", '\\ue01d'),\n    ADD_ALERT(\"mdoal-add_alert\", '\\ue01f'),\n    ADD_BOX(\"mdoal-add_box\", '\\ue021'),\n    ADD_BUSINESS(\"mdoal-add_business\", '\\ue74d'),\n    ADD_CIRCLE(\"mdoal-add_circle\", '\\ue023'),\n    ADD_CIRCLE_OUTLINE(\"mdoal-add_circle_outline\", '\\ue025'),\n    ADD_COMMENT(\"mdoal-add_comment\", '\\ue026'),\n    ADD_IC_CALL(\"mdoal-add_ic_call\", '\\ue744'),\n    ADD_LOCATION(\"mdoal-add_location\", '\\ue028'),\n    ADD_LOCATION_ALT(\"mdoal-add_location_alt\", '\\ue74f'),\n    ADD_PHOTO_ALTERNATE(\"mdoal-add_photo_alternate\", '\\ue02a'),\n    ADD_ROAD(\"mdoal-add_road\", '\\ue751'),\n    ADD_SHOPPING_CART(\"mdoal-add_shopping_cart\", '\\ue02c'),\n    ADD_TASK(\"mdoal-add_task\", '\\ue8b3'),\n    ADD_TO_HOME_SCREEN(\"mdoal-add_to_home_screen\", '\\ue02d'),\n    ADD_TO_PHOTOS(\"mdoal-add_to_photos\", '\\ue02e'),\n    ADD_TO_QUEUE(\"mdoal-add_to_queue\", '\\ue030'),\n    ADDCHART(\"mdoal-addchart\", '\\ue752'),\n    ADJUST(\"mdoal-adjust\", '\\ue032'),\n    ADMIN_PANEL_SETTINGS(\"mdoal-admin_panel_settings\", '\\ue753'),\n    AGRICULTURE(\"mdoal-agriculture\", '\\ue755'),\n    AIRLINE_SEAT_FLAT(\"mdoal-airline_seat_flat\", '\\ue033'),\n    AIRLINE_SEAT_FLAT_ANGLED(\"mdoal-airline_seat_flat_angled\", '\\ue035'),\n    AIRLINE_SEAT_INDIVIDUAL_SUITE(\"mdoal-airline_seat_individual_suite\", '\\ue037'),\n    AIRLINE_SEAT_LEGROOM_EXTRA(\"mdoal-airline_seat_legroom_extra\", '\\ue039'),\n    AIRLINE_SEAT_LEGROOM_NORMAL(\"mdoal-airline_seat_legroom_normal\", '\\ue03a'),\n    AIRLINE_SEAT_LEGROOM_REDUCED(\"mdoal-airline_seat_legroom_reduced\", '\\ue03b'),\n    AIRLINE_SEAT_RECLINE_EXTRA(\"mdoal-airline_seat_recline_extra\", '\\ue03c'),\n    AIRLINE_SEAT_RECLINE_NORMAL(\"mdoal-airline_seat_recline_normal\", '\\ue03d'),\n    AIRPLANEMODE_ACTIVE(\"mdoal-airplanemode_active\", '\\ue03e'),\n    AIRPLANEMODE_INACTIVE(\"mdoal-airplanemode_inactive\", '\\ue03f'),\n    AIRPLAY(\"mdoal-airplay\", '\\ue040'),\n    AIRPORT_SHUTTLE(\"mdoal-airport_shuttle\", '\\ue041'),\n    ALARM(\"mdoal-alarm\", '\\ue043'),\n    ALARM_ADD(\"mdoal-alarm_add\", '\\ue045'),\n    ALARM_OFF(\"mdoal-alarm_off\", '\\ue047'),\n    ALARM_ON(\"mdoal-alarm_on\", '\\ue048'),\n    ALBUM(\"mdoal-album\", '\\ue04a'),\n    ALIGN_HORIZONTAL_CENTER(\"mdoal-align_horizontal_center\", '\\ue8ca'),\n    ALIGN_HORIZONTAL_LEFT(\"mdoal-align_horizontal_left\", '\\ue8cb'),\n    ALIGN_HORIZONTAL_RIGHT(\"mdoal-align_horizontal_right\", '\\ue8cc'),\n    ALIGN_VERTICAL_BOTTOM(\"mdoal-align_vertical_bottom\", '\\ue8cd'),\n    ALIGN_VERTICAL_CENTER(\"mdoal-align_vertical_center\", '\\ue8ce'),\n    ALIGN_VERTICAL_TOP(\"mdoal-align_vertical_top\", '\\ue8cf'),\n    ALL_INBOX(\"mdoal-all_inbox\", '\\ue04c'),\n    ALL_INCLUSIVE(\"mdoal-all_inclusive\", '\\ue04e'),\n    ALL_OUT(\"mdoal-all_out\", '\\ue04f'),\n    ALT_ROUTE(\"mdoal-alt_route\", '\\ue757'),\n    ALTERNATE_EMAIL(\"mdoal-alternate_email\", '\\ue051'),\n    AMP_STORIES(\"mdoal-amp_stories\", '\\ue053'),\n    ANALYTICS(\"mdoal-analytics\", '\\ue758'),\n    ANCHOR(\"mdoal-anchor\", '\\ue75a'),\n    ANDROID(\"mdoal-android\", '\\ue055'),\n    ANNOUNCEMENT(\"mdoal-announcement\", '\\ue056'),\n    APARTMENT(\"mdoal-apartment\", '\\ue058'),\n    API(\"mdoal-api\", '\\ue75b'),\n    APP_BLOCKING(\"mdoal-app_blocking\", '\\ue75c'),\n    APP_SETTINGS_ALT(\"mdoal-app_settings_alt\", '\\ue75e'),\n    APPS(\"mdoal-apps\", '\\ue059'),\n    ARCHITECTURE(\"mdoal-architecture\", '\\ue760'),\n    ARCHIVE(\"mdoal-archive\", '\\ue05a'),\n    ARROW_BACK(\"mdoal-arrow_back\", '\\ue05c'),\n    ARROW_BACK_IOS(\"mdoal-arrow_back_ios\", '\\ue05d'),\n    ARROW_CIRCLE_DOWN(\"mdoal-arrow_circle_down\", '\\ue761'),\n    ARROW_CIRCLE_UP(\"mdoal-arrow_circle_up\", '\\ue763'),\n    ARROW_DOWNWARD(\"mdoal-arrow_downward\", '\\ue05e'),\n    ARROW_DROP_DOWN(\"mdoal-arrow_drop_down\", '\\ue05f'),\n    ARROW_DROP_DOWN_CIRCLE(\"mdoal-arrow_drop_down_circle\", '\\ue060'),\n    ARROW_DROP_UP(\"mdoal-arrow_drop_up\", '\\ue062'),\n    ARROW_FORWARD(\"mdoal-arrow_forward\", '\\ue063'),\n    ARROW_FORWARD_IOS(\"mdoal-arrow_forward_ios\", '\\ue064'),\n    ARROW_LEFT(\"mdoal-arrow_left\", '\\ue065'),\n    ARROW_RIGHT(\"mdoal-arrow_right\", '\\ue066'),\n    ARROW_RIGHT_ALT(\"mdoal-arrow_right_alt\", '\\ue067'),\n    ARROW_UPWARD(\"mdoal-arrow_upward\", '\\ue068'),\n    ART_TRACK(\"mdoal-art_track\", '\\ue069'),\n    ARTICLE(\"mdoal-article\", '\\ue765'),\n    ASPECT_RATIO(\"mdoal-aspect_ratio\", '\\ue06a'),\n    ASSESSMENT(\"mdoal-assessment\", '\\ue06c'),\n    ASSIGNMENT(\"mdoal-assignment\", '\\ue06e'),\n    ASSIGNMENT_IND(\"mdoal-assignment_ind\", '\\ue070'),\n    ASSIGNMENT_LATE(\"mdoal-assignment_late\", '\\ue072'),\n    ASSIGNMENT_RETURN(\"mdoal-assignment_return\", '\\ue074'),\n    ASSIGNMENT_RETURNED(\"mdoal-assignment_returned\", '\\ue076'),\n    ASSIGNMENT_TURNED_IN(\"mdoal-assignment_turned_in\", '\\ue078'),\n    ASSISTANT(\"mdoal-assistant\", '\\ue07a'),\n    ASSISTANT_PHOTO(\"mdoal-assistant_photo\", '\\ue07c'),\n    ATM(\"mdoal-atm\", '\\ue07e'),\n    ATTACH_EMAIL(\"mdoal-attach_email\", '\\ue767'),\n    ATTACH_FILE(\"mdoal-attach_file\", '\\ue07f'),\n    ATTACH_MONEY(\"mdoal-attach_money\", '\\ue080'),\n    ATTACHMENT(\"mdoal-attachment\", '\\ue081'),\n    AUDIOTRACK(\"mdoal-audiotrack\", '\\ue082'),\n    AUTO_DELETE(\"mdoal-auto_delete\", '\\ue768'),\n    AUTORENEW(\"mdoal-autorenew\", '\\ue084'),\n    AV_TIMER(\"mdoal-av_timer\", '\\ue085'),\n    BABY_CHANGING_STATION(\"mdoal-baby_changing_station\", '\\ue76a'),\n    BACKPACK(\"mdoal-backpack\", '\\ue76b'),\n    BACKSPACE(\"mdoal-backspace\", '\\ue086'),\n    BACKUP(\"mdoal-backup\", '\\ue088'),\n    BACKUP_TABLE(\"mdoal-backup_table\", '\\ue76d'),\n    BALLOT(\"mdoal-ballot\", '\\ue08a'),\n    BAR_CHART(\"mdoal-bar_chart\", '\\ue08c'),\n    BARCODE(\"mdoal-barcode\", '\\ue08d'),\n    BATCH_PREDICTION(\"mdoal-batch_prediction\", '\\ue76f'),\n    BATHTUB(\"mdoal-bathtub\", '\\ue08e'),\n    BATTERY_20(\"mdoal-battery_20\", '\\ue090'),\n    BATTERY_30(\"mdoal-battery_30\", '\\ue092'),\n    BATTERY_50(\"mdoal-battery_50\", '\\ue094'),\n    BATTERY_60(\"mdoal-battery_60\", '\\ue096'),\n    BATTERY_80(\"mdoal-battery_80\", '\\ue098'),\n    BATTERY_90(\"mdoal-battery_90\", '\\ue09a'),\n    BATTERY_ALERT(\"mdoal-battery_alert\", '\\ue09c'),\n    BATTERY_CHARGING_20(\"mdoal-battery_charging_20\", '\\ue09d'),\n    BATTERY_CHARGING_30(\"mdoal-battery_charging_30\", '\\ue09f'),\n    BATTERY_CHARGING_50(\"mdoal-battery_charging_50\", '\\ue0a1'),\n    BATTERY_CHARGING_60(\"mdoal-battery_charging_60\", '\\ue0a3'),\n    BATTERY_CHARGING_80(\"mdoal-battery_charging_80\", '\\ue0a5'),\n    BATTERY_CHARGING_90(\"mdoal-battery_charging_90\", '\\ue0a7'),\n    BATTERY_CHARGING_FULL(\"mdoal-battery_charging_full\", '\\ue0a9'),\n    BATTERY_FULL(\"mdoal-battery_full\", '\\ue0aa'),\n    BATTERY_STD(\"mdoal-battery_std\", '\\ue0ab'),\n    BATTERY_UNKNOWN(\"mdoal-battery_unknown\", '\\ue0ac'),\n    BEACH_ACCESS(\"mdoal-beach_access\", '\\ue0ad'),\n    BEDTIME(\"mdoal-bedtime\", '\\ue771'),\n    BEENHERE(\"mdoal-beenhere\", '\\ue0af'),\n    BENTO(\"mdoal-bento\", '\\ue864'),\n    BIKE_SCOOTER(\"mdoal-bike_scooter\", '\\ue773'),\n    BIOTECH(\"mdoal-biotech\", '\\ue774'),\n    BLOCK(\"mdoal-block\", '\\ue0b1'),\n    BLUETOOTH(\"mdoal-bluetooth\", '\\ue0b2'),\n    BLUETOOTH_AUDIO(\"mdoal-bluetooth_audio\", '\\ue0b3'),\n    BLUETOOTH_CONNECTED(\"mdoal-bluetooth_connected\", '\\ue0b4'),\n    BLUETOOTH_DISABLED(\"mdoal-bluetooth_disabled\", '\\ue0b5'),\n    BLUETOOTH_SEARCHING(\"mdoal-bluetooth_searching\", '\\ue0b6'),\n    BLUR_CIRCULAR(\"mdoal-blur_circular\", '\\ue0b7'),\n    BLUR_LINEAR(\"mdoal-blur_linear\", '\\ue0b8'),\n    BLUR_OFF(\"mdoal-blur_off\", '\\ue0b9'),\n    BLUR_ON(\"mdoal-blur_on\", '\\ue0ba'),\n    BOOK(\"mdoal-book\", '\\ue0bb'),\n    BOOK_ONLINE(\"mdoal-book_online\", '\\ue89b'),\n    BOOKMARK(\"mdoal-bookmark\", '\\ue0bd'),\n    BOOKMARK_BORDER(\"mdoal-bookmark_border\", '\\ue0bf'),\n    BOOKMARKS(\"mdoal-bookmarks\", '\\ue0c0'),\n    BORDER_ALL(\"mdoal-border_all\", '\\ue0c2'),\n    BORDER_BOTTOM(\"mdoal-border_bottom\", '\\ue0c3'),\n    BORDER_CLEAR(\"mdoal-border_clear\", '\\ue0c4'),\n    BORDER_COLOR(\"mdoal-border_color\", '\\ue0c5'),\n    BORDER_HORIZONTAL(\"mdoal-border_horizontal\", '\\ue0c7'),\n    BORDER_INNER(\"mdoal-border_inner\", '\\ue0c8'),\n    BORDER_LEFT(\"mdoal-border_left\", '\\ue0c9'),\n    BORDER_OUTER(\"mdoal-border_outer\", '\\ue0ca'),\n    BORDER_RIGHT(\"mdoal-border_right\", '\\ue0cb'),\n    BORDER_STYLE(\"mdoal-border_style\", '\\ue0cc'),\n    BORDER_TOP(\"mdoal-border_top\", '\\ue0cd'),\n    BORDER_VERTICAL(\"mdoal-border_vertical\", '\\ue0ce'),\n    BRANDING_WATERMARK(\"mdoal-branding_watermark\", '\\ue0cf'),\n    BRIGHTNESS_1(\"mdoal-brightness_1\", '\\ue0d1'),\n    BRIGHTNESS_2(\"mdoal-brightness_2\", '\\ue0d3'),\n    BRIGHTNESS_3(\"mdoal-brightness_3\", '\\ue0d5'),\n    BRIGHTNESS_4(\"mdoal-brightness_4\", '\\ue0d7'),\n    BRIGHTNESS_5(\"mdoal-brightness_5\", '\\ue0d9'),\n    BRIGHTNESS_6(\"mdoal-brightness_6\", '\\ue0db'),\n    BRIGHTNESS_7(\"mdoal-brightness_7\", '\\ue0dd'),\n    BRIGHTNESS_AUTO(\"mdoal-brightness_auto\", '\\ue0df'),\n    BRIGHTNESS_HIGH(\"mdoal-brightness_high\", '\\ue0e1'),\n    BRIGHTNESS_LOW(\"mdoal-brightness_low\", '\\ue0e3'),\n    BRIGHTNESS_MEDIUM(\"mdoal-brightness_medium\", '\\ue0e5'),\n    BROKEN_IMAGE(\"mdoal-broken_image\", '\\ue0e7'),\n    BROWSER_NOT_SUPPORTED(\"mdoal-browser_not_supported\", '\\ue776'),\n    BRUSH(\"mdoal-brush\", '\\ue0e9'),\n    BUBBLE_CHART(\"mdoal-bubble_chart\", '\\ue0eb'),\n    BUG_REPORT(\"mdoal-bug_report\", '\\ue0ed'),\n    BUILD(\"mdoal-build\", '\\ue0ef'),\n    BUILD_CIRCLE(\"mdoal-build_circle\", '\\ue777'),\n    BURST_MODE(\"mdoal-burst_mode\", '\\ue0f1'),\n    BUSINESS(\"mdoal-business\", '\\ue0f3'),\n    BUSINESS_CENTER(\"mdoal-business_center\", '\\ue0f5'),\n    CACHED(\"mdoal-cached\", '\\ue0f7'),\n    CAKE(\"mdoal-cake\", '\\ue0f8'),\n    CALCULATE(\"mdoal-calculate\", '\\ue779'),\n    CALENDAR_TODAY(\"mdoal-calendar_today\", '\\ue0fa'),\n    CALENDAR_VIEW_DAY(\"mdoal-calendar_view_day\", '\\ue0fc'),\n    CALL(\"mdoal-call\", '\\ue0fe'),\n    CALL_END(\"mdoal-call_end\", '\\ue100'),\n    CALL_MADE(\"mdoal-call_made\", '\\ue102'),\n    CALL_MERGE(\"mdoal-call_merge\", '\\ue103'),\n    CALL_MISSED(\"mdoal-call_missed\", '\\ue104'),\n    CALL_MISSED_OUTGOING(\"mdoal-call_missed_outgoing\", '\\ue105'),\n    CALL_RECEIVED(\"mdoal-call_received\", '\\ue106'),\n    CALL_SPLIT(\"mdoal-call_split\", '\\ue107'),\n    CALL_TO_ACTION(\"mdoal-call_to_action\", '\\ue108'),\n    CAMERA(\"mdoal-camera\", '\\ue10a'),\n    CAMERA_ALT(\"mdoal-camera_alt\", '\\ue10c'),\n    CAMERA_ENHANCE(\"mdoal-camera_enhance\", '\\ue10e'),\n    CAMERA_FRONT(\"mdoal-camera_front\", '\\ue110'),\n    CAMERA_REAR(\"mdoal-camera_rear\", '\\ue112'),\n    CAMERA_ROLL(\"mdoal-camera_roll\", '\\ue114'),\n    CAMPAIGN(\"mdoal-campaign\", '\\ue77b'),\n    CANCEL(\"mdoal-cancel\", '\\ue116'),\n    CANCEL_PRESENTATION(\"mdoal-cancel_presentation\", '\\ue118'),\n    CANCEL_SCHEDULE_SEND(\"mdoal-cancel_schedule_send\", '\\ue11a'),\n    CARD_GIFTCARD(\"mdoal-card_giftcard\", '\\ue11c'),\n    CARD_MEMBERSHIP(\"mdoal-card_membership\", '\\ue11e'),\n    CARD_TRAVEL(\"mdoal-card_travel\", '\\ue120'),\n    CARPENTER(\"mdoal-carpenter\", '\\ue866'),\n    CASINO(\"mdoal-casino\", '\\ue122'),\n    CAST(\"mdoal-cast\", '\\ue124'),\n    CAST_CONNECTED(\"mdoal-cast_connected\", '\\ue125'),\n    CAST_FOR_EDUCATION(\"mdoal-cast_for_education\", '\\ue127'),\n    CATEGORY(\"mdoal-category\", '\\ue128'),\n    CELL_WIFI(\"mdoal-cell_wifi\", '\\ue12a'),\n    CENTER_FOCUS_STRONG(\"mdoal-center_focus_strong\", '\\ue12c'),\n    CENTER_FOCUS_WEAK(\"mdoal-center_focus_weak\", '\\ue12e'),\n    CHANGE_HISTORY(\"mdoal-change_history\", '\\ue130'),\n    CHARGING_STATION(\"mdoal-charging_station\", '\\ue77d'),\n    CHAT(\"mdoal-chat\", '\\ue132'),\n    CHAT_BUBBLE(\"mdoal-chat_bubble\", '\\ue134'),\n    CHAT_BUBBLE_OUTLINE(\"mdoal-chat_bubble_outline\", '\\ue136'),\n    CHECK(\"mdoal-check\", '\\ue137'),\n    CHECK_BOX(\"mdoal-check_box\", '\\ue138'),\n    CHECK_BOX_OUTLINE_BLANK(\"mdoal-check_box_outline_blank\", '\\ue13a'),\n    CHECK_CIRCLE(\"mdoal-check_circle\", '\\ue13b'),\n    CHECK_CIRCLE_OUTLINE(\"mdoal-check_circle_outline\", '\\ue13d'),\n    CHECKROOM(\"mdoal-checkroom\", '\\ue77f'),\n    CHEVRON_LEFT(\"mdoal-chevron_left\", '\\ue13e'),\n    CHEVRON_RIGHT(\"mdoal-chevron_right\", '\\ue13f'),\n    CHILD_CARE(\"mdoal-child_care\", '\\ue140'),\n    CHILD_FRIENDLY(\"mdoal-child_friendly\", '\\ue142'),\n    CHROME_READER_MODE(\"mdoal-chrome_reader_mode\", '\\ue144'),\n    CLASS(\"mdoal-class\", '\\ue146'),\n    CLEAN_HANDS(\"mdoal-clean_hands\", '\\ue89d'),\n    CLEANING_SERVICES(\"mdoal-cleaning_services\", '\\ue780'),\n    CLEAR(\"mdoal-clear\", '\\ue148'),\n    CLEAR_ALL(\"mdoal-clear_all\", '\\ue149'),\n    CLOSE(\"mdoal-close\", '\\ue14a'),\n    CLOSE_FULLSCREEN(\"mdoal-close_fullscreen\", '\\ue782'),\n    CLOSED_CAPTION(\"mdoal-closed_caption\", '\\ue14b'),\n    CLOSED_CAPTION_DISABLED(\"mdoal-closed_caption_disabled\", '\\ue868'),\n    CLOUD(\"mdoal-cloud\", '\\ue14d'),\n    CLOUD_CIRCLE(\"mdoal-cloud_circle\", '\\ue14f'),\n    CLOUD_DONE(\"mdoal-cloud_done\", '\\ue151'),\n    CLOUD_DOWNLOAD(\"mdoal-cloud_download\", '\\ue153'),\n    CLOUD_OFF(\"mdoal-cloud_off\", '\\ue155'),\n    CLOUD_QUEUE(\"mdoal-cloud_queue\", '\\ue157'),\n    CLOUD_UPLOAD(\"mdoal-cloud_upload\", '\\ue159'),\n    CODE(\"mdoal-code\", '\\ue15b'),\n    COLLECTIONS(\"mdoal-collections\", '\\ue15c'),\n    COLLECTIONS_BOOKMARK(\"mdoal-collections_bookmark\", '\\ue15e'),\n    COLOR_LENS(\"mdoal-color_lens\", '\\ue160'),\n    COLORIZE(\"mdoal-colorize\", '\\ue162'),\n    COMMENT(\"mdoal-comment\", '\\ue164'),\n    COMMENT_BANK(\"mdoal-comment_bank\", '\\ue783'),\n    COMMUTE(\"mdoal-commute\", '\\ue166'),\n    COMPARE(\"mdoal-compare\", '\\ue167'),\n    COMPARE_ARROWS(\"mdoal-compare_arrows\", '\\ue169'),\n    COMPASS_CALIBRATION(\"mdoal-compass_calibration\", '\\ue16a'),\n    COMPUTER(\"mdoal-computer\", '\\ue16c'),\n    CONFIRMATION_NUMBER(\"mdoal-confirmation_number\", '\\ue16e'),\n    CONNECT_WITHOUT_CONTACT(\"mdoal-connect_without_contact\", '\\ue89f'),\n    CONSTRUCTION(\"mdoal-construction\", '\\ue785'),\n    CONTACT_MAIL(\"mdoal-contact_mail\", '\\ue170'),\n    CONTACT_PAGE(\"mdoal-contact_page\", '\\ue8b4'),\n    CONTACT_PHONE(\"mdoal-contact_phone\", '\\ue172'),\n    CONTACT_SUPPORT(\"mdoal-contact_support\", '\\ue174'),\n    CONTACTLESS(\"mdoal-contactless\", '\\ue176'),\n    CONTACTS(\"mdoal-contacts\", '\\ue178'),\n    CONTENT_COPY(\"mdoal-content_copy\", '\\ue17a'),\n    CONTENT_CUT(\"mdoal-content_cut\", '\\ue17c'),\n    CONTENT_PASTE(\"mdoal-content_paste\", '\\ue17e'),\n    CONTROL_CAMERA(\"mdoal-control_camera\", '\\ue180'),\n    CONTROL_POINT(\"mdoal-control_point\", '\\ue181'),\n    CONTROL_POINT_DUPLICATE(\"mdoal-control_point_duplicate\", '\\ue183'),\n    COPYRIGHT(\"mdoal-copyright\", '\\ue185'),\n    CORONAVIRUS(\"mdoal-coronavirus\", '\\ue8a0'),\n    CORPORATE_FARE(\"mdoal-corporate_fare\", '\\ue786'),\n    COUNTERTOPS(\"mdoal-countertops\", '\\ue86a'),\n    CREATE(\"mdoal-create\", '\\ue187'),\n    CREATE_NEW_FOLDER(\"mdoal-create_new_folder\", '\\ue189'),\n    CREDIT_CARD(\"mdoal-credit_card\", '\\ue18b'),\n    CROP(\"mdoal-crop\", '\\ue18d'),\n    CROP_16_9(\"mdoal-crop_16_9\", '\\ue18e'),\n    CROP_3_2(\"mdoal-crop_3_2\", '\\ue18f'),\n    CROP_5_4(\"mdoal-crop_5_4\", '\\ue190'),\n    CROP_7_5(\"mdoal-crop_7_5\", '\\ue191'),\n    CROP_DIN(\"mdoal-crop_din\", '\\ue192'),\n    CROP_FREE(\"mdoal-crop_free\", '\\ue193'),\n    CROP_LANDSCAPE(\"mdoal-crop_landscape\", '\\ue194'),\n    CROP_ORIGINAL(\"mdoal-crop_original\", '\\ue195'),\n    CROP_PORTRAIT(\"mdoal-crop_portrait\", '\\ue196'),\n    CROP_ROTATE(\"mdoal-crop_rotate\", '\\ue197'),\n    CROP_SQUARE(\"mdoal-crop_square\", '\\ue198'),\n    DASHBOARD(\"mdoal-dashboard\", '\\ue199'),\n    DATA_USAGE(\"mdoal-data_usage\", '\\ue19b'),\n    DATE_RANGE(\"mdoal-date_range\", '\\ue19c'),\n    DECK(\"mdoal-deck\", '\\ue19e'),\n    DEHAZE(\"mdoal-dehaze\", '\\ue1a0'),\n    DELETE(\"mdoal-delete\", '\\ue1a1'),\n    DELETE_FOREVER(\"mdoal-delete_forever\", '\\ue1a3'),\n    DELETE_OUTLINE(\"mdoal-delete_outline\", '\\ue1a5'),\n    DELETE_SWEEP(\"mdoal-delete_sweep\", '\\ue1a6'),\n    DEPARTURE_BOARD(\"mdoal-departure_board\", '\\ue1a8'),\n    DESCRIPTION(\"mdoal-description\", '\\ue1aa'),\n    DESIGN_SERVICES(\"mdoal-design_services\", '\\ue788'),\n    DESKTOP_ACCESS_DISABLED(\"mdoal-desktop_access_disabled\", '\\ue1ac'),\n    DESKTOP_MAC(\"mdoal-desktop_mac\", '\\ue1ae'),\n    DESKTOP_WINDOWS(\"mdoal-desktop_windows\", '\\ue1b0'),\n    DETAILS(\"mdoal-details\", '\\ue1b2'),\n    DEVELOPER_BOARD(\"mdoal-developer_board\", '\\ue1b4'),\n    DEVELOPER_MODE(\"mdoal-developer_mode\", '\\ue1b6'),\n    DEVICE_HUB(\"mdoal-device_hub\", '\\ue1b7'),\n    DEVICE_UNKNOWN(\"mdoal-device_unknown\", '\\ue1b8'),\n    DEVICES(\"mdoal-devices\", '\\ue1ba'),\n    DEVICES_OTHER(\"mdoal-devices_other\", '\\ue1bc'),\n    DIALER_SIP(\"mdoal-dialer_sip\", '\\ue1be'),\n    DIALPAD(\"mdoal-dialpad\", '\\ue1c0'),\n    DIRECTIONS(\"mdoal-directions\", '\\ue1c1'),\n    DIRECTIONS_BIKE(\"mdoal-directions_bike\", '\\ue1c3'),\n    DIRECTIONS_BOAT(\"mdoal-directions_boat\", '\\ue1c4'),\n    DIRECTIONS_BUS(\"mdoal-directions_bus\", '\\ue1c6'),\n    DIRECTIONS_CAR(\"mdoal-directions_car\", '\\ue1c8'),\n    DIRECTIONS_OFF(\"mdoal-directions_off\", '\\ue78a'),\n    DIRECTIONS_RAILWAY(\"mdoal-directions_railway\", '\\ue1ca'),\n    DIRECTIONS_RUN(\"mdoal-directions_run\", '\\ue1cc'),\n    DIRECTIONS_SUBWAY(\"mdoal-directions_subway\", '\\ue1cd'),\n    DIRECTIONS_TRANSIT(\"mdoal-directions_transit\", '\\ue1cf'),\n    DIRECTIONS_WALK(\"mdoal-directions_walk\", '\\ue1d1'),\n    DISABLED_BY_DEFAULT(\"mdoal-disabled_by_default\", '\\ue8b6'),\n    DISC_FULL(\"mdoal-disc_full\", '\\ue1d2'),\n    DIVIDE(\"mdoal-divide\", '\\ue1d4'),\n    DNS(\"mdoal-dns\", '\\ue1d6'),\n    DO_NOT_DISTURB(\"mdoal-do_not_disturb\", '\\ue1d8'),\n    DO_NOT_DISTURB_ALT(\"mdoal-do_not_disturb_alt\", '\\ue1da'),\n    DO_NOT_DISTURB_OFF(\"mdoal-do_not_disturb_off\", '\\ue1dc'),\n    DO_NOT_STEP(\"mdoal-do_not_step\", '\\ue78b'),\n    DO_NOT_TOUCH(\"mdoal-do_not_touch\", '\\ue78d'),\n    DOCK(\"mdoal-dock\", '\\ue1de'),\n    DOMAIN(\"mdoal-domain\", '\\ue1e0'),\n    DOMAIN_DISABLED(\"mdoal-domain_disabled\", '\\ue1e2'),\n    DOMAIN_VERIFICATION(\"mdoal-domain_verification\", '\\ue78f'),\n    DONE(\"mdoal-done\", '\\ue1e4'),\n    DONE_ALL(\"mdoal-done_all\", '\\ue1e5'),\n    DONE_OUTLINE(\"mdoal-done_outline\", '\\ue1e6'),\n    DONUT_LARGE(\"mdoal-donut_large\", '\\ue1e7'),\n    DONUT_SMALL(\"mdoal-donut_small\", '\\ue1e8'),\n    DOUBLE_ARROW(\"mdoal-double_arrow\", '\\ue1ea'),\n    DRAFTS(\"mdoal-drafts\", '\\ue1eb'),\n    DRAG_HANDLE(\"mdoal-drag_handle\", '\\ue1ed'),\n    DRAG_INDICATOR(\"mdoal-drag_indicator\", '\\ue1ee'),\n    DRIVE_ETA(\"mdoal-drive_eta\", '\\ue1ef'),\n    DRY(\"mdoal-dry\", '\\ue791'),\n    DUO(\"mdoal-duo\", '\\ue1f1'),\n    DVR(\"mdoal-dvr\", '\\ue1f2'),\n    DYNAMIC_FEED(\"mdoal-dynamic_feed\", '\\ue1f4'),\n    DYNAMIC_FORM(\"mdoal-dynamic_form\", '\\ue793'),\n    EAST(\"mdoal-east\", '\\ue86c'),\n    ECO(\"mdoal-eco\", '\\ue1f6'),\n    EDIT(\"mdoal-edit\", '\\ue1f8'),\n    EDIT_ATTRIBUTES(\"mdoal-edit_attributes\", '\\ue1fa'),\n    EDIT_LOCATION(\"mdoal-edit_location\", '\\ue1fc'),\n    EDIT_ROAD(\"mdoal-edit_road\", '\\ue795'),\n    EJECT(\"mdoal-eject\", '\\ue1fe'),\n    ELDERLY(\"mdoal-elderly\", '\\ue8a2'),\n    ELECTRIC_BIKE(\"mdoal-electric_bike\", '\\ue797'),\n    ELECTRIC_CAR(\"mdoal-electric_car\", '\\ue798'),\n    ELECTRIC_MOPED(\"mdoal-electric_moped\", '\\ue79a'),\n    ELECTRIC_SCOOTER(\"mdoal-electric_scooter\", '\\ue79c'),\n    ELECTRICAL_SERVICES(\"mdoal-electrical_services\", '\\ue79d'),\n    ELEVATOR(\"mdoal-elevator\", '\\ue79e'),\n    EMAIL(\"mdoal-email\", '\\ue200'),\n    EMOJI_EMOTIONS(\"mdoal-emoji_emotions\", '\\ue202'),\n    EMOJI_EVENTS(\"mdoal-emoji_events\", '\\ue204'),\n    EMOJI_FLAGS(\"mdoal-emoji_flags\", '\\ue206'),\n    EMOJI_FOOD_BEVERAGE(\"mdoal-emoji_food_beverage\", '\\ue208'),\n    EMOJI_NATURE(\"mdoal-emoji_nature\", '\\ue20a'),\n    EMOJI_OBJECTS(\"mdoal-emoji_objects\", '\\ue20c'),\n    EMOJI_PEOPLE(\"mdoal-emoji_people\", '\\ue20e'),\n    EMOJI_SYMBOLS(\"mdoal-emoji_symbols\", '\\ue20f'),\n    EMOJI_TRANSPORTATION(\"mdoal-emoji_transportation\", '\\ue210'),\n    ENGINEERING(\"mdoal-engineering\", '\\ue7a0'),\n    ENHANCED_ENCRYPTION(\"mdoal-enhanced_encryption\", '\\ue211'),\n    EQUALIZER(\"mdoal-equalizer\", '\\ue213'),\n    EQUALS(\"mdoal-equals\", '\\ue214'),\n    ERROR(\"mdoal-error\", '\\ue215'),\n    ERROR_OUTLINE(\"mdoal-error_outline\", '\\ue217'),\n    ESCALATOR(\"mdoal-escalator\", '\\ue7a2'),\n    ESCALATOR_WARNING(\"mdoal-escalator_warning\", '\\ue7a4'),\n    EURO(\"mdoal-euro\", '\\ue218'),\n    EURO_SYMBOL(\"mdoal-euro_symbol\", '\\ue219'),\n    EV_STATION(\"mdoal-ev_station\", '\\ue21a'),\n    EVENT(\"mdoal-event\", '\\ue21c'),\n    EVENT_AVAILABLE(\"mdoal-event_available\", '\\ue21e'),\n    EVENT_BUSY(\"mdoal-event_busy\", '\\ue220'),\n    EVENT_NOTE(\"mdoal-event_note\", '\\ue222'),\n    EVENT_SEAT(\"mdoal-event_seat\", '\\ue224'),\n    EXIT_TO_APP(\"mdoal-exit_to_app\", '\\ue226'),\n    EXPAND_LESS(\"mdoal-expand_less\", '\\ue227'),\n    EXPAND_MORE(\"mdoal-expand_more\", '\\ue228'),\n    EXPLICIT(\"mdoal-explicit\", '\\ue229'),\n    EXPLORE(\"mdoal-explore\", '\\ue22b'),\n    EXPLORE_OFF(\"mdoal-explore_off\", '\\ue22d'),\n    EXPOSURE(\"mdoal-exposure\", '\\ue22f'),\n    EXPOSURE_NEG_1(\"mdoal-exposure_neg_1\", '\\ue231'),\n    EXPOSURE_NEG_2(\"mdoal-exposure_neg_2\", '\\ue232'),\n    EXPOSURE_PLUS_1(\"mdoal-exposure_plus_1\", '\\ue233'),\n    EXPOSURE_PLUS_2(\"mdoal-exposure_plus_2\", '\\ue234'),\n    EXPOSURE_ZERO(\"mdoal-exposure_zero\", '\\ue235'),\n    EXTENSION(\"mdoal-extension\", '\\ue236'),\n    FACE(\"mdoal-face\", '\\ue238'),\n    FACEBOOK(\"mdoal-facebook\", '\\ue8b8'),\n    FACT_CHECK(\"mdoal-fact_check\", '\\ue7a5'),\n    FAMILY_RESTROOM(\"mdoal-family_restroom\", '\\ue7a7'),\n    FAST_FORWARD(\"mdoal-fast_forward\", '\\ue23a'),\n    FAST_REWIND(\"mdoal-fast_rewind\", '\\ue23c'),\n    FASTFOOD(\"mdoal-fastfood\", '\\ue23e'),\n    FAVORITE(\"mdoal-favorite\", '\\ue240'),\n    FAVORITE_BORDER(\"mdoal-favorite_border\", '\\ue242'),\n    FEATURED_PLAY_LIST(\"mdoal-featured_play_list\", '\\ue243'),\n    FEATURED_VIDEO(\"mdoal-featured_video\", '\\ue245'),\n    FEEDBACK(\"mdoal-feedback\", '\\ue247'),\n    FENCE(\"mdoal-fence\", '\\ue86d'),\n    FIBER_DVR(\"mdoal-fiber_dvr\", '\\ue249'),\n    FIBER_MANUAL_RECORD(\"mdoal-fiber_manual_record\", '\\ue24b'),\n    FIBER_NEW(\"mdoal-fiber_new\", '\\ue24d'),\n    FIBER_PIN(\"mdoal-fiber_pin\", '\\ue24f'),\n    FIBER_SMART_RECORD(\"mdoal-fiber_smart_record\", '\\ue251'),\n    FILE_COPY(\"mdoal-file_copy\", '\\ue253'),\n    FILE_UPLOAD(\"mdoal-file_upload\", '\\ue255'),\n    FILTER(\"mdoal-filter\", '\\ue257'),\n    FILTER_1(\"mdoal-filter_1\", '\\ue259'),\n    FILTER_2(\"mdoal-filter_2\", '\\ue25b'),\n    FILTER_3(\"mdoal-filter_3\", '\\ue25d'),\n    FILTER_4(\"mdoal-filter_4\", '\\ue25f'),\n    FILTER_5(\"mdoal-filter_5\", '\\ue261'),\n    FILTER_6(\"mdoal-filter_6\", '\\ue263'),\n    FILTER_7(\"mdoal-filter_7\", '\\ue265'),\n    FILTER_8(\"mdoal-filter_8\", '\\ue267'),\n    FILTER_9(\"mdoal-filter_9\", '\\ue269'),\n    FILTER_9_PLUS(\"mdoal-filter_9_plus\", '\\ue26b'),\n    FILTER_ALT(\"mdoal-filter_alt\", '\\ue7a8'),\n    FILTER_B_AND_W(\"mdoal-filter_b_and_w\", '\\ue26d'),\n    FILTER_CENTER_FOCUS(\"mdoal-filter_center_focus\", '\\ue26f'),\n    FILTER_DRAMA(\"mdoal-filter_drama\", '\\ue270'),\n    FILTER_FRAMES(\"mdoal-filter_frames\", '\\ue272'),\n    FILTER_HDR(\"mdoal-filter_hdr\", '\\ue274'),\n    FILTER_LIST(\"mdoal-filter_list\", '\\ue276'),\n    FILTER_NONE(\"mdoal-filter_none\", '\\ue277'),\n    FILTER_TILT_SHIFT(\"mdoal-filter_tilt_shift\", '\\ue279'),\n    FILTER_VINTAGE(\"mdoal-filter_vintage\", '\\ue27a'),\n    FIND_IN_PAGE(\"mdoal-find_in_page\", '\\ue27c'),\n    FIND_REPLACE(\"mdoal-find_replace\", '\\ue27e'),\n    FINGERPRINT(\"mdoal-fingerprint\", '\\ue27f'),\n    FIRE_EXTINGUISHER(\"mdoal-fire_extinguisher\", '\\ue86f'),\n    FIREPLACE(\"mdoal-fireplace\", '\\ue280'),\n    FIRST_PAGE(\"mdoal-first_page\", '\\ue282'),\n    FITNESS_CENTER(\"mdoal-fitness_center\", '\\ue283'),\n    FLAG(\"mdoal-flag\", '\\ue284'),\n    FLAKY(\"mdoal-flaky\", '\\ue7aa'),\n    FLARE(\"mdoal-flare\", '\\ue286'),\n    FLASH_AUTO(\"mdoal-flash_auto\", '\\ue287'),\n    FLASH_OFF(\"mdoal-flash_off\", '\\ue288'),\n    FLASH_ON(\"mdoal-flash_on\", '\\ue289'),\n    FLIGHT(\"mdoal-flight\", '\\ue28a'),\n    FLIGHT_LAND(\"mdoal-flight_land\", '\\ue28b'),\n    FLIGHT_TAKEOFF(\"mdoal-flight_takeoff\", '\\ue28c'),\n    FLIP(\"mdoal-flip\", '\\ue28d'),\n    FLIP_CAMERA_ANDROID(\"mdoal-flip_camera_android\", '\\ue28e'),\n    FLIP_CAMERA_IOS(\"mdoal-flip_camera_ios\", '\\ue290'),\n    FLIP_TO_BACK(\"mdoal-flip_to_back\", '\\ue292'),\n    FLIP_TO_FRONT(\"mdoal-flip_to_front\", '\\ue293'),\n    FOLDER(\"mdoal-folder\", '\\ue294'),\n    FOLDER_OPEN(\"mdoal-folder_open\", '\\ue296'),\n    FOLDER_SHARED(\"mdoal-folder_shared\", '\\ue298'),\n    FOLDER_SPECIAL(\"mdoal-folder_special\", '\\ue29a'),\n    FOLLOW_THE_SIGNS(\"mdoal-follow_the_signs\", '\\ue8a3'),\n    FONT_DOWNLOAD(\"mdoal-font_download\", '\\ue29c'),\n    FOOD_BANK(\"mdoal-food_bank\", '\\ue870'),\n    FORMAT_ALIGN_CENTER(\"mdoal-format_align_center\", '\\ue29e'),\n    FORMAT_ALIGN_JUSTIFY(\"mdoal-format_align_justify\", '\\ue29f'),\n    FORMAT_ALIGN_LEFT(\"mdoal-format_align_left\", '\\ue2a0'),\n    FORMAT_ALIGN_RIGHT(\"mdoal-format_align_right\", '\\ue2a1'),\n    FORMAT_BOLD(\"mdoal-format_bold\", '\\ue2a2'),\n    FORMAT_CLEAR(\"mdoal-format_clear\", '\\ue2a3'),\n    FORMAT_COLOR_FILL(\"mdoal-format_color_fill\", '\\ue2a4'),\n    FORMAT_COLOR_RESET(\"mdoal-format_color_reset\", '\\ue2a6'),\n    FORMAT_COLOR_TEXT(\"mdoal-format_color_text\", '\\ue2a8'),\n    FORMAT_INDENT_DECREASE(\"mdoal-format_indent_decrease\", '\\ue2aa'),\n    FORMAT_INDENT_INCREASE(\"mdoal-format_indent_increase\", '\\ue2ab'),\n    FORMAT_ITALIC(\"mdoal-format_italic\", '\\ue2ac'),\n    FORMAT_LINE_SPACING(\"mdoal-format_line_spacing\", '\\ue2ad'),\n    FORMAT_LIST_BULLETED(\"mdoal-format_list_bulleted\", '\\ue2ae'),\n    FORMAT_LIST_NUMBERED(\"mdoal-format_list_numbered\", '\\ue2af'),\n    FORMAT_LIST_NUMBERED_RTL(\"mdoal-format_list_numbered_rtl\", '\\ue2b0'),\n    FORMAT_PAINT(\"mdoal-format_paint\", '\\ue2b1'),\n    FORMAT_QUOTE(\"mdoal-format_quote\", '\\ue2b3'),\n    FORMAT_SHAPES(\"mdoal-format_shapes\", '\\ue2b5'),\n    FORMAT_SIZE(\"mdoal-format_size\", '\\ue2b7'),\n    FORMAT_STRIKETHROUGH(\"mdoal-format_strikethrough\", '\\ue2b8'),\n    FORMAT_TEXTDIRECTION_L_TO_R(\"mdoal-format_textdirection_l_to_r\", '\\ue2b9'),\n    FORMAT_TEXTDIRECTION_R_TO_L(\"mdoal-format_textdirection_r_to_l\", '\\ue2bb'),\n    FORMAT_UNDERLINED(\"mdoal-format_underlined\", '\\ue2bd'),\n    FORUM(\"mdoal-forum\", '\\ue2be'),\n    FORWARD(\"mdoal-forward\", '\\ue2c0'),\n    FORWARD_10(\"mdoal-forward_10\", '\\ue2c2'),\n    FORWARD_30(\"mdoal-forward_30\", '\\ue2c3'),\n    FORWARD_5(\"mdoal-forward_5\", '\\ue2c4'),\n    FORWARD_TO_INBOX(\"mdoal-forward_to_inbox\", '\\ue7ab'),\n    FOUNDATION(\"mdoal-foundation\", '\\ue872'),\n    FREE_BREAKFAST(\"mdoal-free_breakfast\", '\\ue2c5'),\n    FULLSCREEN(\"mdoal-fullscreen\", '\\ue2c7'),\n    FULLSCREEN_EXIT(\"mdoal-fullscreen_exit\", '\\ue2c8'),\n    FUNCTIONS(\"mdoal-functions\", '\\ue2c9'),\n    G_TRANSLATE(\"mdoal-g_translate\", '\\ue2ca'),\n    GAMEPAD(\"mdoal-gamepad\", '\\ue2cb'),\n    GAMES(\"mdoal-games\", '\\ue2cd'),\n    GAVEL(\"mdoal-gavel\", '\\ue2cf'),\n    GESTURE(\"mdoal-gesture\", '\\ue2d0'),\n    GET_APP(\"mdoal-get_app\", '\\ue2d1'),\n    GIF(\"mdoal-gif\", '\\ue2d3'),\n    GOLF_COURSE(\"mdoal-golf_course\", '\\ue2d5'),\n    GPS_FIXED(\"mdoal-gps_fixed\", '\\ue2d7'),\n    GPS_NOT_FIXED(\"mdoal-gps_not_fixed\", '\\ue2d9'),\n    GPS_OFF(\"mdoal-gps_off\", '\\ue2da'),\n    GRADE(\"mdoal-grade\", '\\ue2db'),\n    GRADIENT(\"mdoal-gradient\", '\\ue2dd'),\n    GRADING(\"mdoal-grading\", '\\ue7ad'),\n    GRAIN(\"mdoal-grain\", '\\ue2de'),\n    GRAPHIC_EQ(\"mdoal-graphic_eq\", '\\ue2df'),\n    GRASS(\"mdoal-grass\", '\\ue874'),\n    GREATER_THAN(\"mdoal-greater_than\", '\\ue2e0'),\n    GREATER_THAN_EQUAL(\"mdoal-greater_than_equal\", '\\ue2e1'),\n    GRID_OFF(\"mdoal-grid_off\", '\\ue2e2'),\n    GRID_ON(\"mdoal-grid_on\", '\\ue2e4'),\n    GROUP(\"mdoal-group\", '\\ue2e6'),\n    GROUP_ADD(\"mdoal-group_add\", '\\ue2e8'),\n    GROUP_WORK(\"mdoal-group_work\", '\\ue2ea'),\n    GROUPS(\"mdoal-groups\", '\\ue8b9'),\n    HANDYMAN(\"mdoal-handyman\", '\\ue7ae'),\n    HD(\"mdoal-hd\", '\\ue2ec'),\n    HDR_OFF(\"mdoal-hdr_off\", '\\ue2ee'),\n    HDR_ON(\"mdoal-hdr_on\", '\\ue2ef'),\n    HDR_STRONG(\"mdoal-hdr_strong\", '\\ue2f0'),\n    HDR_WEAK(\"mdoal-hdr_weak\", '\\ue2f2'),\n    HEADSET(\"mdoal-headset\", '\\ue2f4'),\n    HEADSET_MIC(\"mdoal-headset_mic\", '\\ue2f6'),\n    HEALING(\"mdoal-healing\", '\\ue2f8'),\n    HEARING(\"mdoal-hearing\", '\\ue2fa'),\n    HEARING_DISABLED(\"mdoal-hearing_disabled\", '\\ue7b0'),\n    HEIGHT(\"mdoal-height\", '\\ue2fb'),\n    HELP(\"mdoal-help\", '\\ue2fc'),\n    HELP_CENTER(\"mdoal-help_center\", '\\ue7b1'),\n    HELP_OUTLINE(\"mdoal-help_outline\", '\\ue2fe'),\n    HIGH_QUALITY(\"mdoal-high_quality\", '\\ue2ff'),\n    HIGHLIGHT(\"mdoal-highlight\", '\\ue301'),\n    HIGHLIGHT_ALT(\"mdoal-highlight_alt\", '\\ue7b3'),\n    HIGHLIGHT_OFF(\"mdoal-highlight_off\", '\\ue303'),\n    HISTORY(\"mdoal-history\", '\\ue305'),\n    HISTORY_EDU(\"mdoal-history_edu\", '\\ue7b4'),\n    HISTORY_TOGGLE_OFF(\"mdoal-history_toggle_off\", '\\ue7b6'),\n    HOME(\"mdoal-home\", '\\ue306'),\n    HOME_REPAIR_SERVICE(\"mdoal-home_repair_service\", '\\ue7b7'),\n    HOME_WORK(\"mdoal-home_work\", '\\ue308'),\n    HORIZONTAL_DISTRIBUTE(\"mdoal-horizontal_distribute\", '\\ue8d0'),\n    HORIZONTAL_RULE(\"mdoal-horizontal_rule\", '\\ue7b9'),\n    HORIZONTAL_SPLIT(\"mdoal-horizontal_split\", '\\ue30a'),\n    HOT_TUB(\"mdoal-hot_tub\", '\\ue30c'),\n    HOTEL(\"mdoal-hotel\", '\\ue30d'),\n    HOURGLASS_BOTTOM(\"mdoal-hourglass_bottom\", '\\ue7ba'),\n    HOURGLASS_DISABLED(\"mdoal-hourglass_disabled\", '\\ue7bc'),\n    HOURGLASS_EMPTY(\"mdoal-hourglass_empty\", '\\ue30f'),\n    HOURGLASS_FULL(\"mdoal-hourglass_full\", '\\ue310'),\n    HOURGLASS_TOP(\"mdoal-hourglass_top\", '\\ue7bd'),\n    HOUSE(\"mdoal-house\", '\\ue312'),\n    HOUSE_SIDING(\"mdoal-house_siding\", '\\ue875'),\n    HOW_TO_REG(\"mdoal-how_to_reg\", '\\ue314'),\n    HOW_TO_VOTE(\"mdoal-how_to_vote\", '\\ue316'),\n    HTTP(\"mdoal-http\", '\\ue318'),\n    HTTPS(\"mdoal-https\", '\\ue319'),\n    HVAC(\"mdoal-hvac\", '\\ue7bf'),\n    IMAGE(\"mdoal-image\", '\\ue31b'),\n    IMAGE_ASPECT_RATIO(\"mdoal-image_aspect_ratio\", '\\ue31d'),\n    IMAGE_NOT_SUPPORTED(\"mdoal-image_not_supported\", '\\ue7c1'),\n    IMAGE_SEARCH(\"mdoal-image_search\", '\\ue31f'),\n    IMPORT_CONTACTS(\"mdoal-import_contacts\", '\\ue321'),\n    IMPORT_EXPORT(\"mdoal-import_export\", '\\ue323'),\n    IMPORTANT_DEVICES(\"mdoal-important_devices\", '\\ue324'),\n    INBOX(\"mdoal-inbox\", '\\ue326'),\n    INDETERMINATE_CHECK_BOX(\"mdoal-indeterminate_check_box\", '\\ue328'),\n    INFO(\"mdoal-info\", '\\ue32a'),\n    INPUT(\"mdoal-input\", '\\ue32c'),\n    INSERT_CHART(\"mdoal-insert_chart\", '\\ue32d'),\n    INSERT_CHART_OUTLINED(\"mdoal-insert_chart_outlined\", '\\ue32f'),\n    INSERT_COMMENT(\"mdoal-insert_comment\", '\\ue330'),\n    INSERT_DRIVE_FILE(\"mdoal-insert_drive_file\", '\\ue332'),\n    INSERT_EMOTICON(\"mdoal-insert_emoticon\", '\\ue334'),\n    INSERT_INVITATION(\"mdoal-insert_invitation\", '\\ue336'),\n    INSERT_LINK(\"mdoal-insert_link\", '\\ue338'),\n    INSERT_PHOTO(\"mdoal-insert_photo\", '\\ue339'),\n    INSIGHTS(\"mdoal-insights\", '\\ue7c3'),\n    INTEGRATION_INSTRUCTIONS(\"mdoal-integration_instructions\", '\\ue7c4'),\n    INVERT_COLORS(\"mdoal-invert_colors\", '\\ue33b'),\n    INVERT_COLORS_OFF(\"mdoal-invert_colors_off\", '\\ue33d'),\n    ISO(\"mdoal-iso\", '\\ue33f'),\n    KEYBOARD(\"mdoal-keyboard\", '\\ue341'),\n    KEYBOARD_ARROW_DOWN(\"mdoal-keyboard_arrow_down\", '\\ue343'),\n    KEYBOARD_ARROW_LEFT(\"mdoal-keyboard_arrow_left\", '\\ue344'),\n    KEYBOARD_ARROW_RIGHT(\"mdoal-keyboard_arrow_right\", '\\ue345'),\n    KEYBOARD_ARROW_UP(\"mdoal-keyboard_arrow_up\", '\\ue346'),\n    KEYBOARD_BACKSPACE(\"mdoal-keyboard_backspace\", '\\ue347'),\n    KEYBOARD_CAPSLOCK(\"mdoal-keyboard_capslock\", '\\ue348'),\n    KEYBOARD_HIDE(\"mdoal-keyboard_hide\", '\\ue349'),\n    KEYBOARD_RETURN(\"mdoal-keyboard_return\", '\\ue34b'),\n    KEYBOARD_TAB(\"mdoal-keyboard_tab\", '\\ue34c'),\n    KEYBOARD_VOICE(\"mdoal-keyboard_voice\", '\\ue34d'),\n    KING_BED(\"mdoal-king_bed\", '\\ue34f'),\n    KITCHEN(\"mdoal-kitchen\", '\\ue351'),\n    LABEL(\"mdoal-label\", '\\ue353'),\n    LABEL_IMPORTANT(\"mdoal-label_important\", '\\ue355'),\n    LABEL_OFF(\"mdoal-label_off\", '\\ue357'),\n    LANDSCAPE(\"mdoal-landscape\", '\\ue359'),\n    LANGUAGE(\"mdoal-language\", '\\ue35b'),\n    LAPTOP(\"mdoal-laptop\", '\\ue35d'),\n    LAPTOP_CHROMEBOOK(\"mdoal-laptop_chromebook\", '\\ue35f'),\n    LAPTOP_MAC(\"mdoal-laptop_mac\", '\\ue361'),\n    LAPTOP_WINDOWS(\"mdoal-laptop_windows\", '\\ue363'),\n    LAST_PAGE(\"mdoal-last_page\", '\\ue365'),\n    LAUNCH(\"mdoal-launch\", '\\ue366'),\n    LAYERS(\"mdoal-layers\", '\\ue367'),\n    LAYERS_CLEAR(\"mdoal-layers_clear\", '\\ue369'),\n    LEADERBOARD(\"mdoal-leaderboard\", '\\ue877'),\n    LEAK_ADD(\"mdoal-leak_add\", '\\ue36b'),\n    LEAK_REMOVE(\"mdoal-leak_remove\", '\\ue36c'),\n    LEAVE_BAGS_AT_HOME(\"mdoal-leave_bags_at_home\", '\\ue8a5'),\n    LEGEND_TOGGLE(\"mdoal-legend_toggle\", '\\ue7c6'),\n    LENS(\"mdoal-lens\", '\\ue36d'),\n    LESS_THAN(\"mdoal-less_than\", '\\ue36f'),\n    LESS_THAN_EQUAL(\"mdoal-less_than_equal\", '\\ue370'),\n    LIBRARY_ADD(\"mdoal-library_add\", '\\ue371'),\n    LIBRARY_ADD_CHECK(\"mdoal-library_add_check\", '\\ue746'),\n    LIBRARY_BOOKS(\"mdoal-library_books\", '\\ue373'),\n    LIBRARY_MUSIC(\"mdoal-library_music\", '\\ue375'),\n    LIGHTBULB(\"mdoal-lightbulb\", '\\ue377'),\n    LINE_STYLE(\"mdoal-line_style\", '\\ue379'),\n    LINE_WEIGHT(\"mdoal-line_weight\", '\\ue37a'),\n    LINEAR_SCALE(\"mdoal-linear_scale\", '\\ue37b'),\n    LINK(\"mdoal-link\", '\\ue37c'),\n    LINK_OFF(\"mdoal-link_off\", '\\ue37e'),\n    LINKED_CAMERA(\"mdoal-linked_camera\", '\\ue37f'),\n    LIST(\"mdoal-list\", '\\ue381'),\n    LIST_ALT(\"mdoal-list_alt\", '\\ue382'),\n    LIVE_HELP(\"mdoal-live_help\", '\\ue384'),\n    LIVE_TV(\"mdoal-live_tv\", '\\ue386'),\n    LOCAL_ACTIVITY(\"mdoal-local_activity\", '\\ue388'),\n    LOCAL_AIRPORT(\"mdoal-local_airport\", '\\ue38a'),\n    LOCAL_ATM(\"mdoal-local_atm\", '\\ue38b'),\n    LOCAL_BAR(\"mdoal-local_bar\", '\\ue38d'),\n    LOCAL_CAFE(\"mdoal-local_cafe\", '\\ue38f'),\n    LOCAL_CAR_WASH(\"mdoal-local_car_wash\", '\\ue391'),\n    LOCAL_CONVENIENCE_STORE(\"mdoal-local_convenience_store\", '\\ue393'),\n    LOCAL_DINING(\"mdoal-local_dining\", '\\ue395'),\n    LOCAL_DRINK(\"mdoal-local_drink\", '\\ue396'),\n    LOCAL_FIRE_DEPARTMENT(\"mdoal-local_fire_department\", '\\ue8a7'),\n    LOCAL_FLORIST(\"mdoal-local_florist\", '\\ue398'),\n    LOCAL_GAS_STATION(\"mdoal-local_gas_station\", '\\ue39a'),\n    LOCAL_GROCERY_STORE(\"mdoal-local_grocery_store\", '\\ue39c'),\n    LOCAL_HOSPITAL(\"mdoal-local_hospital\", '\\ue39e'),\n    LOCAL_HOTEL(\"mdoal-local_hotel\", '\\ue3a0'),\n    LOCAL_LAUNDRY_SERVICE(\"mdoal-local_laundry_service\", '\\ue3a2'),\n    LOCAL_LIBRARY(\"mdoal-local_library\", '\\ue3a4'),\n    LOCAL_MALL(\"mdoal-local_mall\", '\\ue3a6'),\n    LOCAL_MOVIES(\"mdoal-local_movies\", '\\ue3a8'),\n    LOCAL_OFFER(\"mdoal-local_offer\", '\\ue3aa'),\n    LOCAL_PARKING(\"mdoal-local_parking\", '\\ue3ac'),\n    LOCAL_PHARMACY(\"mdoal-local_pharmacy\", '\\ue3ad'),\n    LOCAL_PHONE(\"mdoal-local_phone\", '\\ue3af'),\n    LOCAL_PIZZA(\"mdoal-local_pizza\", '\\ue3b1'),\n    LOCAL_PLAY(\"mdoal-local_play\", '\\ue3b3'),\n    LOCAL_POLICE(\"mdoal-local_police\", '\\ue8a9'),\n    LOCAL_POST_OFFICE(\"mdoal-local_post_office\", '\\ue3b5'),\n    LOCAL_PRINTSHOP(\"mdoal-local_printshop\", '\\ue3b7'),\n    LOCAL_SEE(\"mdoal-local_see\", '\\ue3b9'),\n    LOCAL_SHIPPING(\"mdoal-local_shipping\", '\\ue3bb'),\n    LOCAL_TAXI(\"mdoal-local_taxi\", '\\ue3bd'),\n    LOCATION_CITY(\"mdoal-location_city\", '\\ue3bf'),\n    LOCATION_DISABLED(\"mdoal-location_disabled\", '\\ue3c0'),\n    LOCATION_OFF(\"mdoal-location_off\", '\\ue3c1'),\n    LOCATION_ON(\"mdoal-location_on\", '\\ue3c2'),\n    LOCATION_SEARCHING(\"mdoal-location_searching\", '\\ue3c4'),\n    LOCK(\"mdoal-lock\", '\\ue3c5'),\n    LOCK_OPEN(\"mdoal-lock_open\", '\\ue3c7'),\n    LOG_IN(\"mdoal-log_in\", '\\ue3c9'),\n    LOG_OUT(\"mdoal-log_out\", '\\ue3ca'),\n    LOGIN(\"mdoal-login\", '\\ue7c7'),\n    LOOKS(\"mdoal-looks\", '\\ue3cb'),\n    LOOKS_3(\"mdoal-looks_3\", '\\ue3cc'),\n    LOOKS_4(\"mdoal-looks_4\", '\\ue3ce'),\n    LOOKS_5(\"mdoal-looks_5\", '\\ue3d0'),\n    LOOKS_6(\"mdoal-looks_6\", '\\ue3d2'),\n    LOOKS_ONE(\"mdoal-looks_one\", '\\ue3d4'),\n    LOOKS_TWO(\"mdoal-looks_two\", '\\ue3d6'),\n    LOOP(\"mdoal-loop\", '\\ue3d8'),\n    LOUPE(\"mdoal-loupe\", '\\ue3d9'),\n    LOW_PRIORITY(\"mdoal-low_priority\", '\\ue3db'),\n    LOYALTY(\"mdoal-loyalty\", '\\ue3dc'),\n    LUGGAGE(\"mdoal-luggage\", '\\ue8bb');\n\n    public static Material2OutlinedAL findByDescription(String description) {\n        for (Material2OutlinedAL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Material2OutlinedAL(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2OutlinedALIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Material2OutlinedALIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/material2/20200820/fonts/MaterialIcons-Outlined.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdoal-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Material2OutlinedAL.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Material Icons Outlined\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2OutlinedALIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class Material2OutlinedALIkonProvider implements IkonProvider<Material2OutlinedAL> {\n    @Override\n    public Class<Material2OutlinedAL> getIkon() {\n        return Material2OutlinedAL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2OutlinedMZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Material2OutlinedMZ implements Ikon {\n    MAIL(\"mdomz-mail\", '\\ue3de'),\n    MAIL_OUTLINE(\"mdomz-mail_outline\", '\\ue3e0'),\n    MAP(\"mdomz-map\", '\\ue3e1'),\n    MAPS_UGC(\"mdomz-maps_ugc\", '\\ue7c8'),\n    MARK_CHAT_READ(\"mdomz-mark_chat_read\", '\\ue7ca'),\n    MARK_CHAT_UNREAD(\"mdomz-mark_chat_unread\", '\\ue7cc'),\n    MARK_EMAIL_READ(\"mdomz-mark_email_read\", '\\ue7ce'),\n    MARK_EMAIL_UNREAD(\"mdomz-mark_email_unread\", '\\ue7d0'),\n    MARKUNREAD(\"mdomz-markunread\", '\\ue3e3'),\n    MARKUNREAD_MAILBOX(\"mdomz-markunread_mailbox\", '\\ue3e5'),\n    MASKS(\"mdomz-masks\", '\\ue8ab'),\n    MAXIMIZE(\"mdomz-maximize\", '\\ue3e7'),\n    MEDIATION(\"mdomz-mediation\", '\\ue7d2'),\n    MEDICAL_SERVICES(\"mdomz-medical_services\", '\\ue7d3'),\n    MEETING_ROOM(\"mdomz-meeting_room\", '\\ue3e8'),\n    MEMORY(\"mdomz-memory\", '\\ue3ea'),\n    MENU(\"mdomz-menu\", '\\ue3ec'),\n    MENU_BOOK(\"mdomz-menu_book\", '\\ue3ed'),\n    MENU_OPEN(\"mdomz-menu_open\", '\\ue3ef'),\n    MERGE_TYPE(\"mdomz-merge_type\", '\\ue3f0'),\n    MESSAGE(\"mdomz-message\", '\\ue3f1'),\n    MIC(\"mdomz-mic\", '\\ue3f3'),\n    MIC_NONE(\"mdomz-mic_none\", '\\ue3f5'),\n    MIC_OFF(\"mdomz-mic_off\", '\\ue3f7'),\n    MICROWAVE(\"mdomz-microwave\", '\\ue879'),\n    MILITARY_TECH(\"mdomz-military_tech\", '\\ue7d5'),\n    MINIMIZE(\"mdomz-minimize\", '\\ue3f9'),\n    MINUS(\"mdomz-minus\", '\\ue3fa'),\n    MISCELLANEOUS_SERVICES(\"mdomz-miscellaneous_services\", '\\ue7d7'),\n    MISSED_VIDEO_CALL(\"mdomz-missed_video_call\", '\\ue3fb'),\n    MMS(\"mdomz-mms\", '\\ue3fd'),\n    MOBILE_FRIENDLY(\"mdomz-mobile_friendly\", '\\ue3ff'),\n    MOBILE_OFF(\"mdomz-mobile_off\", '\\ue400'),\n    MOBILE_SCREEN_SHARE(\"mdomz-mobile_screen_share\", '\\ue401'),\n    MODE_COMMENT(\"mdomz-mode_comment\", '\\ue403'),\n    MODEL_TRAINING(\"mdomz-model_training\", '\\ue7d8'),\n    MONETIZATION_ON(\"mdomz-monetization_on\", '\\ue405'),\n    MONEY(\"mdomz-money\", '\\ue407'),\n    MONEY_OFF(\"mdomz-money_off\", '\\ue409'),\n    MONOCHROME_PHOTOS(\"mdomz-monochrome_photos\", '\\ue40a'),\n    MOOD(\"mdomz-mood\", '\\ue40c'),\n    MOOD_BAD(\"mdomz-mood_bad\", '\\ue40e'),\n    MOPED(\"mdomz-moped\", '\\ue7d9'),\n    MORE(\"mdomz-more\", '\\ue410'),\n    MORE_HORIZ(\"mdomz-more_horiz\", '\\ue412'),\n    MORE_TIME(\"mdomz-more_time\", '\\ue7db'),\n    MORE_VERT(\"mdomz-more_vert\", '\\ue413'),\n    MOTION_PHOTOS_ON(\"mdomz-motion_photos_on\", '\\ue8ad'),\n    MOTION_PHOTOS_PAUSE(\"mdomz-motion_photos_pause\", '\\ue8bd'),\n    MOTION_PHOTOS_PAUSED(\"mdomz-motion_photos_paused\", '\\ue8ae'),\n    MOTORCYCLE(\"mdomz-motorcycle\", '\\ue414'),\n    MOUSE(\"mdomz-mouse\", '\\ue416'),\n    MOVE_TO_INBOX(\"mdomz-move_to_inbox\", '\\ue418'),\n    MOVIE(\"mdomz-movie\", '\\ue41a'),\n    MOVIE_CREATION(\"mdomz-movie_creation\", '\\ue41c'),\n    MOVIE_FILTER(\"mdomz-movie_filter\", '\\ue41e'),\n    MULTILINE_CHART(\"mdomz-multiline_chart\", '\\ue420'),\n    MULTIPLE_STOP(\"mdomz-multiple_stop\", '\\ue7dc'),\n    MUSEUM(\"mdomz-museum\", '\\ue421'),\n    MUSIC_NOTE(\"mdomz-music_note\", '\\ue423'),\n    MUSIC_OFF(\"mdomz-music_off\", '\\ue425'),\n    MUSIC_VIDEO(\"mdomz-music_video\", '\\ue427'),\n    MY_LOCATION(\"mdomz-my_location\", '\\ue429'),\n    NAT(\"mdomz-nat\", '\\ue7dd'),\n    NATURE(\"mdomz-nature\", '\\ue42b'),\n    NATURE_PEOPLE(\"mdomz-nature_people\", '\\ue42d'),\n    NAVIGATE_BEFORE(\"mdomz-navigate_before\", '\\ue42f'),\n    NAVIGATE_NEXT(\"mdomz-navigate_next\", '\\ue430'),\n    NAVIGATION(\"mdomz-navigation\", '\\ue431'),\n    NEAR_ME(\"mdomz-near_me\", '\\ue433'),\n    NEAR_ME_DISABLED(\"mdomz-near_me_disabled\", '\\ue87b'),\n    NETWORK_CELL(\"mdomz-network_cell\", '\\ue435'),\n    NETWORK_CHECK(\"mdomz-network_check\", '\\ue437'),\n    NETWORK_LOCKED(\"mdomz-network_locked\", '\\ue438'),\n    NETWORK_WIFI(\"mdomz-network_wifi\", '\\ue439'),\n    NEW_RELEASES(\"mdomz-new_releases\", '\\ue43b'),\n    NEXT_PLAN(\"mdomz-next_plan\", '\\ue7df'),\n    NEXT_WEEK(\"mdomz-next_week\", '\\ue43d'),\n    NFC(\"mdomz-nfc\", '\\ue43f'),\n    NIGHT_SHELTER(\"mdomz-night_shelter\", '\\ue87d'),\n    NIGHTS_STAY(\"mdomz-nights_stay\", '\\ue440'),\n    NO_BACKPACK(\"mdomz-no_backpack\", '\\ue8be'),\n    NO_CELL(\"mdomz-no_cell\", '\\ue7e1'),\n    NO_DRINKS(\"mdomz-no_drinks\", '\\ue7e3'),\n    NO_ENCRYPTION(\"mdomz-no_encryption\", '\\ue442'),\n    NO_FLASH(\"mdomz-no_flash\", '\\ue7e5'),\n    NO_FOOD(\"mdomz-no_food\", '\\ue7e7'),\n    NO_LUGGAGE(\"mdomz-no_luggage\", '\\ue8c0'),\n    NO_MEALS(\"mdomz-no_meals\", '\\ue87f'),\n    NO_MEETING_ROOM(\"mdomz-no_meeting_room\", '\\ue444'),\n    NO_PHOTOGRAPHY(\"mdomz-no_photography\", '\\ue7e9'),\n    NO_SIM(\"mdomz-no_sim\", '\\ue446'),\n    NO_STROLLER(\"mdomz-no_stroller\", '\\ue7eb'),\n    NO_TRANSFER(\"mdomz-no_transfer\", '\\ue880'),\n    NORTH(\"mdomz-north\", '\\ue882'),\n    NORTH_EAST(\"mdomz-north_east\", '\\ue883'),\n    NORTH_WEST(\"mdomz-north_west\", '\\ue884'),\n    NOT_ACCESSIBLE(\"mdomz-not_accessible\", '\\ue7ed'),\n    NOT_EQUAL(\"mdomz-not_equal\", '\\ue448'),\n    NOT_INTERESTED(\"mdomz-not_interested\", '\\ue449'),\n    NOT_LISTED_LOCATION(\"mdomz-not_listed_location\", '\\ue44a'),\n    NOT_STARTED(\"mdomz-not_started\", '\\ue7ee'),\n    NOTE(\"mdomz-note\", '\\ue44c'),\n    NOTE_ADD(\"mdomz-note_add\", '\\ue44e'),\n    NOTES(\"mdomz-notes\", '\\ue450'),\n    NOTIFICATION_IMPORTANT(\"mdomz-notification_important\", '\\ue451'),\n    NOTIFICATIONS(\"mdomz-notifications\", '\\ue453'),\n    NOTIFICATIONS_ACTIVE(\"mdomz-notifications_active\", '\\ue455'),\n    NOTIFICATIONS_NONE(\"mdomz-notifications_none\", '\\ue457'),\n    NOTIFICATIONS_OFF(\"mdomz-notifications_off\", '\\ue459'),\n    NOTIFICATIONS_PAUSED(\"mdomz-notifications_paused\", '\\ue45b'),\n    OFFLINE_BOLT(\"mdomz-offline_bolt\", '\\ue45d'),\n    OFFLINE_PIN(\"mdomz-offline_pin\", '\\ue45f'),\n    ONDEMAND_VIDEO(\"mdomz-ondemand_video\", '\\ue461'),\n    ONLINE_PREDICTION(\"mdomz-online_prediction\", '\\ue7f0'),\n    OPACITY(\"mdomz-opacity\", '\\ue463'),\n    OPEN_IN_BROWSER(\"mdomz-open_in_browser\", '\\ue465'),\n    OPEN_IN_FULL(\"mdomz-open_in_full\", '\\ue7f1'),\n    OPEN_IN_NEW(\"mdomz-open_in_new\", '\\ue466'),\n    OPEN_WITH(\"mdomz-open_with\", '\\ue467'),\n    OUTBOND(\"mdomz-outbond\", '\\ue8c2'),\n    OUTDOOR_GRILL(\"mdomz-outdoor_grill\", '\\ue468'),\n    OUTLET(\"mdomz-outlet\", '\\ue7f2'),\n    OUTLINED_FLAG(\"mdomz-outlined_flag\", '\\ue46a'),\n    PAGES(\"mdomz-pages\", '\\ue46b'),\n    PAGEVIEW(\"mdomz-pageview\", '\\ue46d'),\n    PALETTE(\"mdomz-palette\", '\\ue46f'),\n    PAN_TOOL(\"mdomz-pan_tool\", '\\ue471'),\n    PANORAMA(\"mdomz-panorama\", '\\ue473'),\n    PANORAMA_FISH_EYE(\"mdomz-panorama_fish_eye\", '\\ue475'),\n    PANORAMA_HORIZONTAL(\"mdomz-panorama_horizontal\", '\\ue477'),\n    PANORAMA_VERTICAL(\"mdomz-panorama_vertical\", '\\ue479'),\n    PANORAMA_WIDE_ANGLE(\"mdomz-panorama_wide_angle\", '\\ue47b'),\n    PARTY_MODE(\"mdomz-party_mode\", '\\ue47d'),\n    PAUSE(\"mdomz-pause\", '\\ue47f'),\n    PAUSE_CIRCLE_FILLED(\"mdomz-pause_circle_filled\", '\\ue480'),\n    PAUSE_CIRCLE_OUTLINE(\"mdomz-pause_circle_outline\", '\\ue482'),\n    PAUSE_PRESENTATION(\"mdomz-pause_presentation\", '\\ue483'),\n    PAYMENT(\"mdomz-payment\", '\\ue485'),\n    PAYMENTS(\"mdomz-payments\", '\\ue7f4'),\n    PEDAL_BIKE(\"mdomz-pedal_bike\", '\\ue7f6'),\n    PENDING(\"mdomz-pending\", '\\ue7f7'),\n    PENDING_ACTIONS(\"mdomz-pending_actions\", '\\ue7f9'),\n    PEOPLE(\"mdomz-people\", '\\ue487'),\n    PEOPLE_ALT(\"mdomz-people_alt\", '\\ue489'),\n    PEOPLE_OUTLINE(\"mdomz-people_outline\", '\\ue48b'),\n    PERCENTAGE(\"mdomz-percentage\", '\\ue48d'),\n    PERM_CAMERA_MIC(\"mdomz-perm_camera_mic\", '\\ue48f'),\n    PERM_CONTACT_CALENDAR(\"mdomz-perm_contact_calendar\", '\\ue491'),\n    PERM_DATA_SETTING(\"mdomz-perm_data_setting\", '\\ue493'),\n    PERM_DEVICE_INFORMATION(\"mdomz-perm_device_information\", '\\ue494'),\n    PERM_IDENTITY(\"mdomz-perm_identity\", '\\ue496'),\n    PERM_MEDIA(\"mdomz-perm_media\", '\\ue498'),\n    PERM_PHONE_MSG(\"mdomz-perm_phone_msg\", '\\ue49a'),\n    PERM_SCAN_WIFI(\"mdomz-perm_scan_wifi\", '\\ue49c'),\n    PERSON(\"mdomz-person\", '\\ue49e'),\n    PERSON_ADD(\"mdomz-person_add\", '\\ue4a0'),\n    PERSON_ADD_ALT_1(\"mdomz-person_add_alt_1\", '\\ue7fb'),\n    PERSON_ADD_DISABLED(\"mdomz-person_add_disabled\", '\\ue4a2'),\n    PERSON_OUTLINE(\"mdomz-person_outline\", '\\ue4a4'),\n    PERSON_PIN(\"mdomz-person_pin\", '\\ue4a6'),\n    PERSON_PIN_CIRCLE(\"mdomz-person_pin_circle\", '\\ue4a8'),\n    PERSON_REMOVE(\"mdomz-person_remove\", '\\ue7fd'),\n    PERSON_REMOVE_ALT_1(\"mdomz-person_remove_alt_1\", '\\ue7ff'),\n    PERSON_SEARCH(\"mdomz-person_search\", '\\ue801'),\n    PERSONAL_VIDEO(\"mdomz-personal_video\", '\\ue4aa'),\n    PEST_CONTROL(\"mdomz-pest_control\", '\\ue803'),\n    PEST_CONTROL_RODENT(\"mdomz-pest_control_rodent\", '\\ue805'),\n    PETS(\"mdomz-pets\", '\\ue4ac'),\n    PHONE(\"mdomz-phone\", '\\ue4ad'),\n    PHONE_ANDROID(\"mdomz-phone_android\", '\\ue4af'),\n    PHONE_BLUETOOTH_SPEAKER(\"mdomz-phone_bluetooth_speaker\", '\\ue4b1'),\n    PHONE_CALLBACK(\"mdomz-phone_callback\", '\\ue4b3'),\n    PHONE_DISABLED(\"mdomz-phone_disabled\", '\\ue4b5'),\n    PHONE_ENABLED(\"mdomz-phone_enabled\", '\\ue4b6'),\n    PHONE_FORWARDED(\"mdomz-phone_forwarded\", '\\ue4b7'),\n    PHONE_IN_TALK(\"mdomz-phone_in_talk\", '\\ue4b9'),\n    PHONE_IPHONE(\"mdomz-phone_iphone\", '\\ue4bb'),\n    PHONE_LOCKED(\"mdomz-phone_locked\", '\\ue4bd'),\n    PHONE_MISSED(\"mdomz-phone_missed\", '\\ue4bf'),\n    PHONE_PAUSED(\"mdomz-phone_paused\", '\\ue4c1'),\n    PHONELINK(\"mdomz-phonelink\", '\\ue4c3'),\n    PHONELINK_ERASE(\"mdomz-phonelink_erase\", '\\ue4c5'),\n    PHONELINK_LOCK(\"mdomz-phonelink_lock\", '\\ue4c6'),\n    PHONELINK_OFF(\"mdomz-phonelink_off\", '\\ue4c7'),\n    PHONELINK_RING(\"mdomz-phonelink_ring\", '\\ue4c9'),\n    PHONELINK_SETUP(\"mdomz-phonelink_setup\", '\\ue4cb'),\n    PHOTO(\"mdomz-photo\", '\\ue4cc'),\n    PHOTO_ALBUM(\"mdomz-photo_album\", '\\ue4ce'),\n    PHOTO_CAMERA(\"mdomz-photo_camera\", '\\ue4d0'),\n    PHOTO_FILTER(\"mdomz-photo_filter\", '\\ue4d2'),\n    PHOTO_LIBRARY(\"mdomz-photo_library\", '\\ue4d3'),\n    PHOTO_SIZE_SELECT_ACTUAL(\"mdomz-photo_size_select_actual\", '\\ue4d5'),\n    PHOTO_SIZE_SELECT_LARGE(\"mdomz-photo_size_select_large\", '\\ue4d7'),\n    PHOTO_SIZE_SELECT_SMALL(\"mdomz-photo_size_select_small\", '\\ue4d8'),\n    PICTURE_AS_PDF(\"mdomz-picture_as_pdf\", '\\ue4d9'),\n    PICTURE_IN_PICTURE(\"mdomz-picture_in_picture\", '\\ue4db'),\n    PICTURE_IN_PICTURE_ALT(\"mdomz-picture_in_picture_alt\", '\\ue4dd'),\n    PIE_CHART(\"mdomz-pie_chart\", '\\ue4df'),\n    PIN(\"mdomz-pin\", '\\ue4e1'),\n    PIN_DROP(\"mdomz-pin_drop\", '\\ue4e3'),\n    PIN_OFF(\"mdomz-pin_off\", '\\ue4e5'),\n    PLACE(\"mdomz-place\", '\\ue4e7'),\n    PLAGIARISM(\"mdomz-plagiarism\", '\\ue807'),\n    PLAY_ARROW(\"mdomz-play_arrow\", '\\ue4e9'),\n    PLAY_CIRCLE_FILLED(\"mdomz-play_circle_filled\", '\\ue4eb'),\n    PLAY_CIRCLE_FILLED_WHITE(\"mdomz-play_circle_filled_white\", '\\ue4ed'),\n    PLAY_CIRCLE_OUTLINE(\"mdomz-play_circle_outline\", '\\ue4ef'),\n    PLAY_FOR_WORK(\"mdomz-play_for_work\", '\\ue4f0'),\n    PLAYLIST_ADD(\"mdomz-playlist_add\", '\\ue4f1'),\n    PLAYLIST_ADD_CHECK(\"mdomz-playlist_add_check\", '\\ue4f2'),\n    PLAYLIST_PLAY(\"mdomz-playlist_play\", '\\ue4f3'),\n    PLUMBING(\"mdomz-plumbing\", '\\ue809'),\n    PLUS(\"mdomz-plus\", '\\ue4f4'),\n    PLUS_MINUS(\"mdomz-plus_minus\", '\\ue4f5'),\n    PLUS_MINUS_ALT(\"mdomz-plus_minus_alt\", '\\ue4f6'),\n    PLUS_ONE(\"mdomz-plus_one\", '\\ue4f7'),\n    POINT_OF_SALE(\"mdomz-point_of_sale\", '\\ue80a'),\n    POLICY(\"mdomz-policy\", '\\ue4f8'),\n    POLL(\"mdomz-poll\", '\\ue4fa'),\n    POLYMER(\"mdomz-polymer\", '\\ue4fc'),\n    POOL(\"mdomz-pool\", '\\ue4fd'),\n    PORTABLE_WIFI_OFF(\"mdomz-portable_wifi_off\", '\\ue4ff'),\n    PORTRAIT(\"mdomz-portrait\", '\\ue500'),\n    POST_ADD(\"mdomz-post_add\", '\\ue502'),\n    POWER(\"mdomz-power\", '\\ue503'),\n    POWER_INPUT(\"mdomz-power_input\", '\\ue505'),\n    POWER_OFF(\"mdomz-power_off\", '\\ue506'),\n    POWER_SETTINGS_NEW(\"mdomz-power_settings_new\", '\\ue508'),\n    PREGNANT_WOMAN(\"mdomz-pregnant_woman\", '\\ue509'),\n    PRESENT_TO_ALL(\"mdomz-present_to_all\", '\\ue50a'),\n    PREVIEW(\"mdomz-preview\", '\\ue80c'),\n    PRINT(\"mdomz-print\", '\\ue50c'),\n    PRINT_DISABLED(\"mdomz-print_disabled\", '\\ue50e'),\n    PRIORITY_HIGH(\"mdomz-priority_high\", '\\ue510'),\n    PRIVACY_TIP(\"mdomz-privacy_tip\", '\\ue80e'),\n    PSYCHOLOGY(\"mdomz-psychology\", '\\ue810'),\n    PUBLIC(\"mdomz-public\", '\\ue511'),\n    PUBLIC_OFF(\"mdomz-public_off\", '\\ue812'),\n    PUBLISH(\"mdomz-publish\", '\\ue513'),\n    PUBLISHED_WITH_CHANGES(\"mdomz-published_with_changes\", '\\ue8c4'),\n    PUSH_PIN(\"mdomz-push_pin\", '\\ue814'),\n    QR_CODE(\"mdomz-qr_code\", '\\ue816'),\n    QR_CODE_2(\"mdomz-qr_code_2\", '\\ue8d1'),\n    QR_CODE_SCANNER(\"mdomz-qr_code_scanner\", '\\ue885'),\n    QRCODE(\"mdomz-qrcode\", '\\ue515'),\n    QUERY_BUILDER(\"mdomz-query_builder\", '\\ue517'),\n    QUESTION_ANSWER(\"mdomz-question_answer\", '\\ue519'),\n    QUEUE(\"mdomz-queue\", '\\ue51b'),\n    QUEUE_MUSIC(\"mdomz-queue_music\", '\\ue51d'),\n    QUEUE_PLAY_NEXT(\"mdomz-queue_play_next\", '\\ue51f'),\n    QUICKREPLY(\"mdomz-quickreply\", '\\ue818'),\n    RADIO(\"mdomz-radio\", '\\ue520'),\n    RADIO_BUTTON_CHECKED(\"mdomz-radio_button_checked\", '\\ue522'),\n    RADIO_BUTTON_UNCHECKED(\"mdomz-radio_button_unchecked\", '\\ue523'),\n    RATE_REVIEW(\"mdomz-rate_review\", '\\ue524'),\n    READ_MORE(\"mdomz-read_more\", '\\ue81a'),\n    RECEIPT(\"mdomz-receipt\", '\\ue526'),\n    RECEIPT_LONG(\"mdomz-receipt_long\", '\\ue81b'),\n    RECENT_ACTORS(\"mdomz-recent_actors\", '\\ue528'),\n    RECORD_VOICE_OVER(\"mdomz-record_voice_over\", '\\ue52a'),\n    REDEEM(\"mdomz-redeem\", '\\ue52c'),\n    REDO(\"mdomz-redo\", '\\ue52e'),\n    REDUCE_CAPACITY(\"mdomz-reduce_capacity\", '\\ue8af'),\n    REFRESH(\"mdomz-refresh\", '\\ue52f'),\n    REMOVE(\"mdomz-remove\", '\\ue530'),\n    REMOVE_CIRCLE(\"mdomz-remove_circle\", '\\ue531'),\n    REMOVE_CIRCLE_OUTLINE(\"mdomz-remove_circle_outline\", '\\ue533'),\n    REMOVE_FROM_QUEUE(\"mdomz-remove_from_queue\", '\\ue534'),\n    REMOVE_RED_EYE(\"mdomz-remove_red_eye\", '\\ue536'),\n    REMOVE_SHOPPING_CART(\"mdomz-remove_shopping_cart\", '\\ue538'),\n    REORDER(\"mdomz-reorder\", '\\ue53a'),\n    REPEAT(\"mdomz-repeat\", '\\ue53b'),\n    REPEAT_ONE(\"mdomz-repeat_one\", '\\ue53c'),\n    REPLAY(\"mdomz-replay\", '\\ue53d'),\n    REPLAY_10(\"mdomz-replay_10\", '\\ue53e'),\n    REPLAY_30(\"mdomz-replay_30\", '\\ue53f'),\n    REPLAY_5(\"mdomz-replay_5\", '\\ue540'),\n    REPLY(\"mdomz-reply\", '\\ue541'),\n    REPLY_ALL(\"mdomz-reply_all\", '\\ue542'),\n    REPORT(\"mdomz-report\", '\\ue543'),\n    REPORT_OFF(\"mdomz-report_off\", '\\ue545'),\n    REPORT_PROBLEM(\"mdomz-report_problem\", '\\ue547'),\n    REQUEST_PAGE(\"mdomz-request_page\", '\\ue8c5'),\n    REQUEST_QUOTE(\"mdomz-request_quote\", '\\ue81d'),\n    RESTAURANT(\"mdomz-restaurant\", '\\ue549'),\n    RESTAURANT_MENU(\"mdomz-restaurant_menu\", '\\ue54a'),\n    RESTORE(\"mdomz-restore\", '\\ue54b'),\n    RESTORE_FROM_TRASH(\"mdomz-restore_from_trash\", '\\ue54c'),\n    RESTORE_PAGE(\"mdomz-restore_page\", '\\ue54e'),\n    RICE_BOWL(\"mdomz-rice_bowl\", '\\ue886'),\n    RING_VOLUME(\"mdomz-ring_volume\", '\\ue550'),\n    ROCKET(\"mdomz-rocket\", '\\ue552'),\n    ROOFING(\"mdomz-roofing\", '\\ue888'),\n    ROOM(\"mdomz-room\", '\\ue554'),\n    ROOM_PREFERENCES(\"mdomz-room_preferences\", '\\ue81f'),\n    ROOM_SERVICE(\"mdomz-room_service\", '\\ue556'),\n    ROTATE_90_DEGREES_CCW(\"mdomz-rotate_90_degrees_ccw\", '\\ue558'),\n    ROTATE_LEFT(\"mdomz-rotate_left\", '\\ue55a'),\n    ROTATE_RIGHT(\"mdomz-rotate_right\", '\\ue55b'),\n    ROUNDED_CORNER(\"mdomz-rounded_corner\", '\\ue55c'),\n    ROUTER(\"mdomz-router\", '\\ue55d'),\n    ROWING(\"mdomz-rowing\", '\\ue55f'),\n    RSS_FEED(\"mdomz-rss_feed\", '\\ue560'),\n    RULE(\"mdomz-rule\", '\\ue821'),\n    RULE_FOLDER(\"mdomz-rule_folder\", '\\ue822'),\n    RUN_CIRCLE(\"mdomz-run_circle\", '\\ue824'),\n    RV_HOOKUP(\"mdomz-rv_hookup\", '\\ue561'),\n    SANITIZER(\"mdomz-sanitizer\", '\\ue8b0'),\n    SATELLITE(\"mdomz-satellite\", '\\ue563'),\n    SAVE(\"mdomz-save\", '\\ue565'),\n    SAVE_ALT(\"mdomz-save_alt\", '\\ue567'),\n    SCANNER(\"mdomz-scanner\", '\\ue568'),\n    SCATTER_PLOT(\"mdomz-scatter_plot\", '\\ue56a'),\n    SCHEDULE(\"mdomz-schedule\", '\\ue56c'),\n    SCHOOL(\"mdomz-school\", '\\ue56e'),\n    SCIENCE(\"mdomz-science\", '\\ue826'),\n    SCORE(\"mdomz-score\", '\\ue570'),\n    SCREEN_LOCK_LANDSCAPE(\"mdomz-screen_lock_landscape\", '\\ue572'),\n    SCREEN_LOCK_PORTRAIT(\"mdomz-screen_lock_portrait\", '\\ue574'),\n    SCREEN_LOCK_ROTATION(\"mdomz-screen_lock_rotation\", '\\ue576'),\n    SCREEN_ROTATION(\"mdomz-screen_rotation\", '\\ue577'),\n    SCREEN_SHARE(\"mdomz-screen_share\", '\\ue579'),\n    SD_CARD(\"mdomz-sd_card\", '\\ue57b'),\n    SD_STORAGE(\"mdomz-sd_storage\", '\\ue57d'),\n    SEARCH(\"mdomz-search\", '\\ue57f'),\n    SEARCH_OFF(\"mdomz-search_off\", '\\ue828'),\n    SECURITY(\"mdomz-security\", '\\ue580'),\n    SELECT_ALL(\"mdomz-select_all\", '\\ue582'),\n    SELF_IMPROVEMENT(\"mdomz-self_improvement\", '\\ue829'),\n    SEND(\"mdomz-send\", '\\ue583'),\n    SENSOR_DOOR(\"mdomz-sensor_door\", '\\ue82a'),\n    SENSOR_WINDOW(\"mdomz-sensor_window\", '\\ue82c'),\n    SENTIMENT_DISSATISFIED(\"mdomz-sentiment_dissatisfied\", '\\ue585'),\n    SENTIMENT_NEUTRAL(\"mdomz-sentiment_neutral\", '\\ue587'),\n    SENTIMENT_SATISFIED(\"mdomz-sentiment_satisfied\", '\\ue589'),\n    SENTIMENT_SATISFIED_ALT(\"mdomz-sentiment_satisfied_alt\", '\\ue58b'),\n    SENTIMENT_SLIGHTLY_DISSATISFIED(\"mdomz-sentiment_slightly_dissatisfied\", '\\ue58d'),\n    SENTIMENT_VERY_DISSATISFIED(\"mdomz-sentiment_very_dissatisfied\", '\\ue58f'),\n    SENTIMENT_VERY_SATISFIED(\"mdomz-sentiment_very_satisfied\", '\\ue591'),\n    SET_MEAL(\"mdomz-set_meal\", '\\ue88a'),\n    SETTINGS(\"mdomz-settings\", '\\ue593'),\n    SETTINGS_APPLICATIONS(\"mdomz-settings_applications\", '\\ue595'),\n    SETTINGS_BACKUP_RESTORE(\"mdomz-settings_backup_restore\", '\\ue597'),\n    SETTINGS_BLUETOOTH(\"mdomz-settings_bluetooth\", '\\ue598'),\n    SETTINGS_BRIGHTNESS(\"mdomz-settings_brightness\", '\\ue599'),\n    SETTINGS_CELL(\"mdomz-settings_cell\", '\\ue59b'),\n    SETTINGS_ETHERNET(\"mdomz-settings_ethernet\", '\\ue59d'),\n    SETTINGS_INPUT_ANTENNA(\"mdomz-settings_input_antenna\", '\\ue59e'),\n    SETTINGS_INPUT_COMPONENT(\"mdomz-settings_input_component\", '\\ue59f'),\n    SETTINGS_INPUT_COMPOSITE(\"mdomz-settings_input_composite\", '\\ue5a1'),\n    SETTINGS_INPUT_HDMI(\"mdomz-settings_input_hdmi\", '\\ue5a3'),\n    SETTINGS_INPUT_SVIDEO(\"mdomz-settings_input_svideo\", '\\ue5a5'),\n    SETTINGS_OVERSCAN(\"mdomz-settings_overscan\", '\\ue5a7'),\n    SETTINGS_PHONE(\"mdomz-settings_phone\", '\\ue5a9'),\n    SETTINGS_POWER(\"mdomz-settings_power\", '\\ue5ab'),\n    SETTINGS_REMOTE(\"mdomz-settings_remote\", '\\ue5ac'),\n    SETTINGS_SYSTEM_DAYDREAM(\"mdomz-settings_system_daydream\", '\\ue5ae'),\n    SETTINGS_VOICE(\"mdomz-settings_voice\", '\\ue5b0'),\n    SHARE(\"mdomz-share\", '\\ue5b2'),\n    SHOP(\"mdomz-shop\", '\\ue5b4'),\n    SHOP_TWO(\"mdomz-shop_two\", '\\ue5b6'),\n    SHOPPING_BAG(\"mdomz-shopping_bag\", '\\ue82e'),\n    SHOPPING_BASKET(\"mdomz-shopping_basket\", '\\ue5b8'),\n    SHOPPING_CART(\"mdomz-shopping_cart\", '\\ue5ba'),\n    SHORT_TEXT(\"mdomz-short_text\", '\\ue5bc'),\n    SHOW_CHART(\"mdomz-show_chart\", '\\ue5bd'),\n    SHUFFLE(\"mdomz-shuffle\", '\\ue5be'),\n    SHUTTER_SPEED(\"mdomz-shutter_speed\", '\\ue5bf'),\n    SICK(\"mdomz-sick\", '\\ue8b2'),\n    SIGNAL_CELLULAR_0_BAR(\"mdomz-signal_cellular_0_bar\", '\\ue5c1'),\n    SIGNAL_CELLULAR_1_BAR(\"mdomz-signal_cellular_1_bar\", '\\ue5c3'),\n    SIGNAL_CELLULAR_2_BAR(\"mdomz-signal_cellular_2_bar\", '\\ue5c5'),\n    SIGNAL_CELLULAR_3_BAR(\"mdomz-signal_cellular_3_bar\", '\\ue5c7'),\n    SIGNAL_CELLULAR_4_BAR(\"mdomz-signal_cellular_4_bar\", '\\ue5c9'),\n    SIGNAL_CELLULAR_ALT(\"mdomz-signal_cellular_alt\", '\\ue5ca'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR(\"mdomz-signal_cellular_connected_no_internet_0_bar\", '\\ue5cb'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_1_BAR(\"mdomz-signal_cellular_connected_no_internet_1_bar\", '\\ue5cd'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_2_BAR(\"mdomz-signal_cellular_connected_no_internet_2_bar\", '\\ue5cf'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_3_BAR(\"mdomz-signal_cellular_connected_no_internet_3_bar\", '\\ue5d1'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR(\"mdomz-signal_cellular_connected_no_internet_4_bar\", '\\ue5d3'),\n    SIGNAL_CELLULAR_NO_SIM(\"mdomz-signal_cellular_no_sim\", '\\ue5d4'),\n    SIGNAL_CELLULAR_NULL(\"mdomz-signal_cellular_null\", '\\ue5d6'),\n    SIGNAL_CELLULAR_OFF(\"mdomz-signal_cellular_off\", '\\ue5d7'),\n    SIGNAL_WIFI_0_BAR(\"mdomz-signal_wifi_0_bar\", '\\ue5d8'),\n    SIGNAL_WIFI_1_BAR(\"mdomz-signal_wifi_1_bar\", '\\ue5da'),\n    SIGNAL_WIFI_1_BAR_LOCK(\"mdomz-signal_wifi_1_bar_lock\", '\\ue5dc'),\n    SIGNAL_WIFI_2_BAR(\"mdomz-signal_wifi_2_bar\", '\\ue5de'),\n    SIGNAL_WIFI_2_BAR_LOCK(\"mdomz-signal_wifi_2_bar_lock\", '\\ue5e0'),\n    SIGNAL_WIFI_3_BAR(\"mdomz-signal_wifi_3_bar\", '\\ue5e2'),\n    SIGNAL_WIFI_3_BAR_LOCK(\"mdomz-signal_wifi_3_bar_lock\", '\\ue5e4'),\n    SIGNAL_WIFI_4_BAR(\"mdomz-signal_wifi_4_bar\", '\\ue5e6'),\n    SIGNAL_WIFI_4_BAR_LOCK(\"mdomz-signal_wifi_4_bar_lock\", '\\ue5e7'),\n    SIGNAL_WIFI_OFF(\"mdomz-signal_wifi_off\", '\\ue5e8'),\n    SIM_CARD(\"mdomz-sim_card\", '\\ue5e9'),\n    SIM_CARD_ALERT(\"mdomz-sim_card_alert\", '\\ue5eb'),\n    SINGLE_BED(\"mdomz-single_bed\", '\\ue5ed'),\n    SKIP_NEXT(\"mdomz-skip_next\", '\\ue5ef'),\n    SKIP_PREVIOUS(\"mdomz-skip_previous\", '\\ue5f1'),\n    SLIDESHOW(\"mdomz-slideshow\", '\\ue5f3'),\n    SLOW_MOTION_VIDEO(\"mdomz-slow_motion_video\", '\\ue5f5'),\n    SMART_BUTTON(\"mdomz-smart_button\", '\\ue830'),\n    SMARTPHONE(\"mdomz-smartphone\", '\\ue5f6'),\n    SMOKE_FREE(\"mdomz-smoke_free\", '\\ue5f8'),\n    SMOKING_ROOMS(\"mdomz-smoking_rooms\", '\\ue5f9'),\n    SMS(\"mdomz-sms\", '\\ue5fb'),\n    SMS_FAILED(\"mdomz-sms_failed\", '\\ue5fd'),\n    SNIPPET_FOLDER(\"mdomz-snippet_folder\", '\\ue831'),\n    SNOOZE(\"mdomz-snooze\", '\\ue5ff'),\n    SOAP(\"mdomz-soap\", '\\ue833'),\n    SORT(\"mdomz-sort\", '\\ue600'),\n    SORT_BY_ALPHA(\"mdomz-sort_by_alpha\", '\\ue601'),\n    SOURCE(\"mdomz-source\", '\\ue835'),\n    SOUTH(\"mdomz-south\", '\\ue88c'),\n    SOUTH_EAST(\"mdomz-south_east\", '\\ue88d'),\n    SOUTH_WEST(\"mdomz-south_west\", '\\ue88e'),\n    SPA(\"mdomz-spa\", '\\ue602'),\n    SPACE_BAR(\"mdomz-space_bar\", '\\ue604'),\n    SPEAKER(\"mdomz-speaker\", '\\ue605'),\n    SPEAKER_GROUP(\"mdomz-speaker_group\", '\\ue607'),\n    SPEAKER_NOTES(\"mdomz-speaker_notes\", '\\ue609'),\n    SPEAKER_NOTES_OFF(\"mdomz-speaker_notes_off\", '\\ue60b'),\n    SPEAKER_PHONE(\"mdomz-speaker_phone\", '\\ue60d'),\n    SPEED(\"mdomz-speed\", '\\ue60f'),\n    SPELLCHECK(\"mdomz-spellcheck\", '\\ue610'),\n    SPORTS(\"mdomz-sports\", '\\ue611'),\n    SPORTS_BAR(\"mdomz-sports_bar\", '\\ue88f'),\n    SPORTS_BASEBALL(\"mdomz-sports_baseball\", '\\ue612'),\n    SPORTS_BASKETBALL(\"mdomz-sports_basketball\", '\\ue614'),\n    SPORTS_CRICKET(\"mdomz-sports_cricket\", '\\ue616'),\n    SPORTS_ESPORTS(\"mdomz-sports_esports\", '\\ue618'),\n    SPORTS_FOOTBALL(\"mdomz-sports_football\", '\\ue61a'),\n    SPORTS_GOLF(\"mdomz-sports_golf\", '\\ue61c'),\n    SPORTS_HANDBALL(\"mdomz-sports_handball\", '\\ue61e'),\n    SPORTS_HOCKEY(\"mdomz-sports_hockey\", '\\ue61f'),\n    SPORTS_KABADDI(\"mdomz-sports_kabaddi\", '\\ue620'),\n    SPORTS_MMA(\"mdomz-sports_mma\", '\\ue621'),\n    SPORTS_MOTORSPORTS(\"mdomz-sports_motorsports\", '\\ue623'),\n    SPORTS_RUGBY(\"mdomz-sports_rugby\", '\\ue625'),\n    SPORTS_SOCCER(\"mdomz-sports_soccer\", '\\ue627'),\n    SPORTS_TENNIS(\"mdomz-sports_tennis\", '\\ue629'),\n    SPORTS_VOLLEYBALL(\"mdomz-sports_volleyball\", '\\ue62a'),\n    SQUARE_FOOT(\"mdomz-square_foot\", '\\ue62c'),\n    STACKED_LINE_CHART(\"mdomz-stacked_line_chart\", '\\ue8c7'),\n    STAIRS(\"mdomz-stairs\", '\\ue837'),\n    STAR(\"mdomz-star\", '\\ue62e'),\n    STAR_BORDER(\"mdomz-star_border\", '\\ue630'),\n    STAR_HALF(\"mdomz-star_half\", '\\ue631'),\n    STAR_OUTLINE(\"mdomz-star_outline\", '\\ue748'),\n    STAR_RATE(\"mdomz-star_rate\", '\\ue632'),\n    STARS(\"mdomz-stars\", '\\ue633'),\n    STAY_CURRENT_LANDSCAPE(\"mdomz-stay_current_landscape\", '\\ue635'),\n    STAY_CURRENT_PORTRAIT(\"mdomz-stay_current_portrait\", '\\ue637'),\n    STAY_PRIMARY_LANDSCAPE(\"mdomz-stay_primary_landscape\", '\\ue639'),\n    STAY_PRIMARY_PORTRAIT(\"mdomz-stay_primary_portrait\", '\\ue63b'),\n    STICKY_NOTE_2(\"mdomz-sticky_note_2\", '\\ue891'),\n    STOP(\"mdomz-stop\", '\\ue63d'),\n    STOP_CIRCLE(\"mdomz-stop_circle\", '\\ue63f'),\n    STOP_SCREEN_SHARE(\"mdomz-stop_screen_share\", '\\ue641'),\n    STORAGE(\"mdomz-storage\", '\\ue643'),\n    STORE(\"mdomz-store\", '\\ue644'),\n    STORE_MALL_DIRECTORY(\"mdomz-store_mall_directory\", '\\ue646'),\n    STOREFRONT(\"mdomz-storefront\", '\\ue648'),\n    STRAIGHTEN(\"mdomz-straighten\", '\\ue64a'),\n    STREETVIEW(\"mdomz-streetview\", '\\ue64c'),\n    STRIKETHROUGH_S(\"mdomz-strikethrough_s\", '\\ue64d'),\n    STROLLER(\"mdomz-stroller\", '\\ue839'),\n    STYLE(\"mdomz-style\", '\\ue64e'),\n    SUBDIRECTORY_ARROW_LEFT(\"mdomz-subdirectory_arrow_left\", '\\ue650'),\n    SUBDIRECTORY_ARROW_RIGHT(\"mdomz-subdirectory_arrow_right\", '\\ue651'),\n    SUBJECT(\"mdomz-subject\", '\\ue652'),\n    SUBSCRIPT(\"mdomz-subscript\", '\\ue83b'),\n    SUBSCRIPTIONS(\"mdomz-subscriptions\", '\\ue653'),\n    SUBTITLES(\"mdomz-subtitles\", '\\ue655'),\n    SUBTITLES_OFF(\"mdomz-subtitles_off\", '\\ue83c'),\n    SUBWAY(\"mdomz-subway\", '\\ue657'),\n    SUPERSCRIPT(\"mdomz-superscript\", '\\ue83e'),\n    SUPERVISED_USER_CIRCLE(\"mdomz-supervised_user_circle\", '\\ue659'),\n    SUPERVISOR_ACCOUNT(\"mdomz-supervisor_account\", '\\ue65b'),\n    SUPPORT(\"mdomz-support\", '\\ue83f'),\n    SUPPORT_AGENT(\"mdomz-support_agent\", '\\ue841'),\n    SURROUND_SOUND(\"mdomz-surround_sound\", '\\ue65d'),\n    SWAP_CALLS(\"mdomz-swap_calls\", '\\ue65f'),\n    SWAP_HORIZ(\"mdomz-swap_horiz\", '\\ue660'),\n    SWAP_HORIZONTAL_CIRCLE(\"mdomz-swap_horizontal_circle\", '\\ue661'),\n    SWAP_VERT(\"mdomz-swap_vert\", '\\ue663'),\n    SWAP_VERTICAL_CIRCLE(\"mdomz-swap_vertical_circle\", '\\ue664'),\n    SWITCH_CAMERA(\"mdomz-switch_camera\", '\\ue666'),\n    SWITCH_LEFT(\"mdomz-switch_left\", '\\ue842'),\n    SWITCH_RIGHT(\"mdomz-switch_right\", '\\ue844'),\n    SWITCH_VIDEO(\"mdomz-switch_video\", '\\ue668'),\n    SYNC(\"mdomz-sync\", '\\ue66a'),\n    SYNC_ALT(\"mdomz-sync_alt\", '\\ue66b'),\n    SYNC_DISABLED(\"mdomz-sync_disabled\", '\\ue66c'),\n    SYNC_PROBLEM(\"mdomz-sync_problem\", '\\ue66d'),\n    SYSTEM_UPDATE(\"mdomz-system_update\", '\\ue66e'),\n    SYSTEM_UPDATE_ALT(\"mdomz-system_update_alt\", '\\ue670'),\n    TAB(\"mdomz-tab\", '\\ue671'),\n    TAB_UNSELECTED(\"mdomz-tab_unselected\", '\\ue672'),\n    TABLE_CHART(\"mdomz-table_chart\", '\\ue673'),\n    TABLE_ROWS(\"mdomz-table_rows\", '\\ue846'),\n    TABLE_VIEW(\"mdomz-table_view\", '\\ue848'),\n    TABLET(\"mdomz-tablet\", '\\ue675'),\n    TABLET_ANDROID(\"mdomz-tablet_android\", '\\ue677'),\n    TABLET_MAC(\"mdomz-tablet_mac\", '\\ue679'),\n    TAG_FACES(\"mdomz-tag_faces\", '\\ue67b'),\n    TAP_AND_PLAY(\"mdomz-tap_and_play\", '\\ue67d'),\n    TAPAS(\"mdomz-tapas\", '\\ue893'),\n    TERRAIN(\"mdomz-terrain\", '\\ue67e'),\n    TEXT_FIELDS(\"mdomz-text_fields\", '\\ue680'),\n    TEXT_FORMAT(\"mdomz-text_format\", '\\ue681'),\n    TEXT_ROTATE_UP(\"mdomz-text_rotate_up\", '\\ue682'),\n    TEXT_ROTATE_VERTICAL(\"mdomz-text_rotate_vertical\", '\\ue683'),\n    TEXT_ROTATION_ANGLEDOWN(\"mdomz-text_rotation_angledown\", '\\ue684'),\n    TEXT_ROTATION_ANGLEUP(\"mdomz-text_rotation_angleup\", '\\ue685'),\n    TEXT_ROTATION_DOWN(\"mdomz-text_rotation_down\", '\\ue686'),\n    TEXT_ROTATION_NONE(\"mdomz-text_rotation_none\", '\\ue687'),\n    TEXT_SNIPPET(\"mdomz-text_snippet\", '\\ue84a'),\n    TEXTSMS(\"mdomz-textsms\", '\\ue688'),\n    TEXTURE(\"mdomz-texture\", '\\ue68a'),\n    THEATERS(\"mdomz-theaters\", '\\ue68b'),\n    THUMB_DOWN(\"mdomz-thumb_down\", '\\ue68d'),\n    THUMB_DOWN_ALT(\"mdomz-thumb_down_alt\", '\\ue68f'),\n    THUMB_UP(\"mdomz-thumb_up\", '\\ue691'),\n    THUMB_UP_ALT(\"mdomz-thumb_up_alt\", '\\ue693'),\n    THUMBS_UP_DOWN(\"mdomz-thumbs_up_down\", '\\ue695'),\n    TIME_TO_LEAVE(\"mdomz-time_to_leave\", '\\ue697'),\n    TIMELAPSE(\"mdomz-timelapse\", '\\ue699'),\n    TIMELINE(\"mdomz-timeline\", '\\ue69b'),\n    TIMER(\"mdomz-timer\", '\\ue69c'),\n    TIMER_10(\"mdomz-timer_10\", '\\ue69e'),\n    TIMER_3(\"mdomz-timer_3\", '\\ue69f'),\n    TIMER_OFF(\"mdomz-timer_off\", '\\ue6a0'),\n    TITLE(\"mdomz-title\", '\\ue6a2'),\n    TOC(\"mdomz-toc\", '\\ue6a3'),\n    TODAY(\"mdomz-today\", '\\ue6a4'),\n    TOGGLE_OFF(\"mdomz-toggle_off\", '\\ue6a6'),\n    TOGGLE_ON(\"mdomz-toggle_on\", '\\ue6a8'),\n    TOLL(\"mdomz-toll\", '\\ue6aa'),\n    TONALITY(\"mdomz-tonality\", '\\ue6ac'),\n    TOPIC(\"mdomz-topic\", '\\ue84c'),\n    TOUCH_APP(\"mdomz-touch_app\", '\\ue6ae'),\n    TOUR(\"mdomz-tour\", '\\ue84e'),\n    TOYS(\"mdomz-toys\", '\\ue6b0'),\n    TRACK_CHANGES(\"mdomz-track_changes\", '\\ue6b2'),\n    TRAFFIC(\"mdomz-traffic\", '\\ue6b3'),\n    TRAIN(\"mdomz-train\", '\\ue6b5'),\n    TRAM(\"mdomz-tram\", '\\ue6b7'),\n    TRANSFER_WITHIN_A_STATION(\"mdomz-transfer_within_a_station\", '\\ue6b9'),\n    TRANSFORM(\"mdomz-transform\", '\\ue6ba'),\n    TRANSIT_ENTEREXIT(\"mdomz-transit_enterexit\", '\\ue6bb'),\n    TRANSLATE(\"mdomz-translate\", '\\ue6bc'),\n    TRENDING_DOWN(\"mdomz-trending_down\", '\\ue6bd'),\n    TRENDING_FLAT(\"mdomz-trending_flat\", '\\ue6be'),\n    TRENDING_UP(\"mdomz-trending_up\", '\\ue6bf'),\n    TRIP_ORIGIN(\"mdomz-trip_origin\", '\\ue6c0'),\n    TTY(\"mdomz-tty\", '\\ue850'),\n    TUNE(\"mdomz-tune\", '\\ue6c1'),\n    TURNED_IN(\"mdomz-turned_in\", '\\ue6c2'),\n    TURNED_IN_NOT(\"mdomz-turned_in_not\", '\\ue6c4'),\n    TV(\"mdomz-tv\", '\\ue6c5'),\n    TV_OFF(\"mdomz-tv_off\", '\\ue6c7'),\n    TWO_WHEELER(\"mdomz-two_wheeler\", '\\ue749'),\n    UMBRELLA(\"mdomz-umbrella\", '\\ue852'),\n    UNARCHIVE(\"mdomz-unarchive\", '\\ue6c9'),\n    UNDO(\"mdomz-undo\", '\\ue6cb'),\n    UNFOLD_LESS(\"mdomz-unfold_less\", '\\ue6cc'),\n    UNFOLD_MORE(\"mdomz-unfold_more\", '\\ue6cd'),\n    UNPUBLISHED(\"mdomz-unpublished\", '\\ue8c8'),\n    UNSUBSCRIBE(\"mdomz-unsubscribe\", '\\ue6ce'),\n    UPDATE(\"mdomz-update\", '\\ue6d0'),\n    UPDATE_DISABLED(\"mdomz-update_disabled\", '\\ue8d2'),\n    UPGRADE(\"mdomz-upgrade\", '\\ue854'),\n    USB(\"mdomz-usb\", '\\ue6d1'),\n    VERIFIED(\"mdomz-verified\", '\\ue855'),\n    VERIFIED_USER(\"mdomz-verified_user\", '\\ue6d2'),\n    VERTICAL_ALIGN_BOTTOM(\"mdomz-vertical_align_bottom\", '\\ue6d4'),\n    VERTICAL_ALIGN_CENTER(\"mdomz-vertical_align_center\", '\\ue6d5'),\n    VERTICAL_ALIGN_TOP(\"mdomz-vertical_align_top\", '\\ue6d6'),\n    VERTICAL_DISTRIBUTE(\"mdomz-vertical_distribute\", '\\ue8d3'),\n    VERTICAL_SPLIT(\"mdomz-vertical_split\", '\\ue6d7'),\n    VIBRATION(\"mdomz-vibration\", '\\ue6d9'),\n    VIDEO_CALL(\"mdomz-video_call\", '\\ue6db'),\n    VIDEO_LABEL(\"mdomz-video_label\", '\\ue6dd'),\n    VIDEO_LIBRARY(\"mdomz-video_library\", '\\ue6df'),\n    VIDEO_SETTINGS(\"mdomz-video_settings\", '\\ue857'),\n    VIDEOCAM(\"mdomz-videocam\", '\\ue6e1'),\n    VIDEOCAM_OFF(\"mdomz-videocam_off\", '\\ue6e3'),\n    VIDEOGAME_ASSET(\"mdomz-videogame_asset\", '\\ue6e5'),\n    VIEW_AGENDA(\"mdomz-view_agenda\", '\\ue6e7'),\n    VIEW_ARRAY(\"mdomz-view_array\", '\\ue6e9'),\n    VIEW_CAROUSEL(\"mdomz-view_carousel\", '\\ue6eb'),\n    VIEW_COLUMN(\"mdomz-view_column\", '\\ue6ed'),\n    VIEW_COMFY(\"mdomz-view_comfy\", '\\ue6ef'),\n    VIEW_COMPACT(\"mdomz-view_compact\", '\\ue6f1'),\n    VIEW_DAY(\"mdomz-view_day\", '\\ue6f3'),\n    VIEW_HEADLINE(\"mdomz-view_headline\", '\\ue6f5'),\n    VIEW_LIST(\"mdomz-view_list\", '\\ue6f6'),\n    VIEW_MODULE(\"mdomz-view_module\", '\\ue6f8'),\n    VIEW_QUILT(\"mdomz-view_quilt\", '\\ue6fa'),\n    VIEW_SIDEBAR(\"mdomz-view_sidebar\", '\\ue858'),\n    VIEW_STREAM(\"mdomz-view_stream\", '\\ue6fc'),\n    VIEW_WEEK(\"mdomz-view_week\", '\\ue6fe'),\n    VIGNETTE(\"mdomz-vignette\", '\\ue700'),\n    VISIBILITY(\"mdomz-visibility\", '\\ue702'),\n    VISIBILITY_OFF(\"mdomz-visibility_off\", '\\ue704'),\n    VOICE_CHAT(\"mdomz-voice_chat\", '\\ue706'),\n    VOICE_OVER_OFF(\"mdomz-voice_over_off\", '\\ue708'),\n    VOICEMAIL(\"mdomz-voicemail\", '\\ue70a'),\n    VOLUME_DOWN(\"mdomz-volume_down\", '\\ue70b'),\n    VOLUME_MUTE(\"mdomz-volume_mute\", '\\ue70d'),\n    VOLUME_OFF(\"mdomz-volume_off\", '\\ue70f'),\n    VOLUME_UP(\"mdomz-volume_up\", '\\ue711'),\n    VPN_KEY(\"mdomz-vpn_key\", '\\ue713'),\n    VPN_LOCK(\"mdomz-vpn_lock\", '\\ue715'),\n    WALLPAPER(\"mdomz-wallpaper\", '\\ue717'),\n    WARNING(\"mdomz-warning\", '\\ue718'),\n    WASH(\"mdomz-wash\", '\\ue85a'),\n    WATCH(\"mdomz-watch\", '\\ue71a'),\n    WATCH_LATER(\"mdomz-watch_later\", '\\ue71c'),\n    WATER_DAMAGE(\"mdomz-water_damage\", '\\ue895'),\n    WAVES(\"mdomz-waves\", '\\ue71e'),\n    WB_AUTO(\"mdomz-wb_auto\", '\\ue71f'),\n    WB_CLOUDY(\"mdomz-wb_cloudy\", '\\ue721'),\n    WB_INCANDESCENT(\"mdomz-wb_incandescent\", '\\ue723'),\n    WB_IRIDESCENT(\"mdomz-wb_iridescent\", '\\ue725'),\n    WB_SUNNY(\"mdomz-wb_sunny\", '\\ue727'),\n    WC(\"mdomz-wc\", '\\ue729'),\n    WEB(\"mdomz-web\", '\\ue72a'),\n    WEB_ASSET(\"mdomz-web_asset\", '\\ue72c'),\n    WEEKEND(\"mdomz-weekend\", '\\ue72e'),\n    WEST(\"mdomz-west\", '\\ue897'),\n    WHATSHOT(\"mdomz-whatshot\", '\\ue730'),\n    WHEELCHAIR_PICKUP(\"mdomz-wheelchair_pickup\", '\\ue85c'),\n    WHERE_TO_VOTE(\"mdomz-where_to_vote\", '\\ue732'),\n    WIDGETS(\"mdomz-widgets\", '\\ue734'),\n    WIFI(\"mdomz-wifi\", '\\ue736'),\n    WIFI_CALLING(\"mdomz-wifi_calling\", '\\ue85d'),\n    WIFI_LOCK(\"mdomz-wifi_lock\", '\\ue737'),\n    WIFI_OFF(\"mdomz-wifi_off\", '\\ue738'),\n    WIFI_PROTECTED_SETUP(\"mdomz-wifi_protected_setup\", '\\ue85f'),\n    WIFI_TETHERING(\"mdomz-wifi_tethering\", '\\ue739'),\n    WINE_BAR(\"mdomz-wine_bar\", '\\ue898'),\n    WORK(\"mdomz-work\", '\\ue73a'),\n    WORK_OFF(\"mdomz-work_off\", '\\ue73c'),\n    WORK_OUTLINE(\"mdomz-work_outline\", '\\ue73e'),\n    WRAP_TEXT(\"mdomz-wrap_text\", '\\ue73f'),\n    WRONG_LOCATION(\"mdomz-wrong_location\", '\\ue860'),\n    WYSIWYG(\"mdomz-wysiwyg\", '\\ue861'),\n    YOUTUBE_SEARCHED_FOR(\"mdomz-youtube_searched_for\", '\\ue740'),\n    ZOOM_IN(\"mdomz-zoom_in\", '\\ue741'),\n    ZOOM_OUT(\"mdomz-zoom_out\", '\\ue742'),\n    ZOOM_OUT_MAP(\"mdomz-zoom_out_map\", '\\ue743');\n\n    public static Material2OutlinedMZ findByDescription(String description) {\n        for (Material2OutlinedMZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Material2OutlinedMZ(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2OutlinedMZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Material2OutlinedMZIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/material2/20200820/fonts/MaterialIcons-Outlined.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdomz-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Material2OutlinedMZ.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Material Icons Outlined\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2OutlinedMZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class Material2OutlinedMZIkonProvider implements IkonProvider<Material2OutlinedMZ> {\n    @Override\n    public Class<Material2OutlinedMZ> getIkon() {\n        return Material2OutlinedMZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2RoundAL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Material2RoundAL implements Ikon {\n    MDRAL_360(\"mdral-360\", '\\ue000'),\n    MDRAL_3D_ROTATION(\"mdral-3d_rotation\", '\\ue001'),\n    MDRAL_4K(\"mdral-4k\", '\\ue002'),\n    MDRAL_5G(\"mdral-5g\", '\\ue74a'),\n    MDRAL_6_FT_APART(\"mdral-6_ft_apart\", '\\ue89a'),\n    AC_UNIT(\"mdral-ac_unit\", '\\ue004'),\n    ACCESS_ALARM(\"mdral-access_alarm\", '\\ue005'),\n    ACCESS_ALARMS(\"mdral-access_alarms\", '\\ue007'),\n    ACCESS_TIME(\"mdral-access_time\", '\\ue009'),\n    ACCESSIBILITY(\"mdral-accessibility\", '\\ue00b'),\n    ACCESSIBILITY_NEW(\"mdral-accessibility_new\", '\\ue00c'),\n    ACCESSIBLE(\"mdral-accessible\", '\\ue00d'),\n    ACCESSIBLE_FORWARD(\"mdral-accessible_forward\", '\\ue00e'),\n    ACCOUNT_BALANCE(\"mdral-account_balance\", '\\ue00f'),\n    ACCOUNT_BALANCE_WALLET(\"mdral-account_balance_wallet\", '\\ue011'),\n    ACCOUNT_BOX(\"mdral-account_box\", '\\ue013'),\n    ACCOUNT_CIRCLE(\"mdral-account_circle\", '\\ue015'),\n    ACCOUNT_TREE(\"mdral-account_tree\", '\\ue017'),\n    AD_UNITS(\"mdral-ad_units\", '\\ue74b'),\n    ADB(\"mdral-adb\", '\\ue019'),\n    ADD(\"mdral-add\", '\\ue01a'),\n    ADD_A_PHOTO(\"mdral-add_a_photo\", '\\ue01b'),\n    ADD_ALARM(\"mdral-add_alarm\", '\\ue01d'),\n    ADD_ALERT(\"mdral-add_alert\", '\\ue01f'),\n    ADD_BOX(\"mdral-add_box\", '\\ue021'),\n    ADD_BUSINESS(\"mdral-add_business\", '\\ue74d'),\n    ADD_CIRCLE(\"mdral-add_circle\", '\\ue023'),\n    ADD_CIRCLE_OUTLINE(\"mdral-add_circle_outline\", '\\ue025'),\n    ADD_COMMENT(\"mdral-add_comment\", '\\ue026'),\n    ADD_IC_CALL(\"mdral-add_ic_call\", '\\ue744'),\n    ADD_LOCATION(\"mdral-add_location\", '\\ue028'),\n    ADD_LOCATION_ALT(\"mdral-add_location_alt\", '\\ue74f'),\n    ADD_PHOTO_ALTERNATE(\"mdral-add_photo_alternate\", '\\ue02a'),\n    ADD_ROAD(\"mdral-add_road\", '\\ue751'),\n    ADD_SHOPPING_CART(\"mdral-add_shopping_cart\", '\\ue02c'),\n    ADD_TASK(\"mdral-add_task\", '\\ue8b3'),\n    ADD_TO_HOME_SCREEN(\"mdral-add_to_home_screen\", '\\ue02d'),\n    ADD_TO_PHOTOS(\"mdral-add_to_photos\", '\\ue02e'),\n    ADD_TO_QUEUE(\"mdral-add_to_queue\", '\\ue030'),\n    ADDCHART(\"mdral-addchart\", '\\ue752'),\n    ADJUST(\"mdral-adjust\", '\\ue032'),\n    ADMIN_PANEL_SETTINGS(\"mdral-admin_panel_settings\", '\\ue753'),\n    AGRICULTURE(\"mdral-agriculture\", '\\ue755'),\n    AIRLINE_SEAT_FLAT(\"mdral-airline_seat_flat\", '\\ue033'),\n    AIRLINE_SEAT_FLAT_ANGLED(\"mdral-airline_seat_flat_angled\", '\\ue035'),\n    AIRLINE_SEAT_INDIVIDUAL_SUITE(\"mdral-airline_seat_individual_suite\", '\\ue037'),\n    AIRLINE_SEAT_LEGROOM_EXTRA(\"mdral-airline_seat_legroom_extra\", '\\ue039'),\n    AIRLINE_SEAT_LEGROOM_NORMAL(\"mdral-airline_seat_legroom_normal\", '\\ue03a'),\n    AIRLINE_SEAT_LEGROOM_REDUCED(\"mdral-airline_seat_legroom_reduced\", '\\ue03b'),\n    AIRLINE_SEAT_RECLINE_EXTRA(\"mdral-airline_seat_recline_extra\", '\\ue03c'),\n    AIRLINE_SEAT_RECLINE_NORMAL(\"mdral-airline_seat_recline_normal\", '\\ue03d'),\n    AIRPLANEMODE_ACTIVE(\"mdral-airplanemode_active\", '\\ue03e'),\n    AIRPLANEMODE_INACTIVE(\"mdral-airplanemode_inactive\", '\\ue03f'),\n    AIRPLAY(\"mdral-airplay\", '\\ue040'),\n    AIRPORT_SHUTTLE(\"mdral-airport_shuttle\", '\\ue041'),\n    ALARM(\"mdral-alarm\", '\\ue043'),\n    ALARM_ADD(\"mdral-alarm_add\", '\\ue045'),\n    ALARM_OFF(\"mdral-alarm_off\", '\\ue047'),\n    ALARM_ON(\"mdral-alarm_on\", '\\ue048'),\n    ALBUM(\"mdral-album\", '\\ue04a'),\n    ALIGN_HORIZONTAL_CENTER(\"mdral-align_horizontal_center\", '\\ue8ca'),\n    ALIGN_HORIZONTAL_LEFT(\"mdral-align_horizontal_left\", '\\ue8cb'),\n    ALIGN_HORIZONTAL_RIGHT(\"mdral-align_horizontal_right\", '\\ue8cc'),\n    ALIGN_VERTICAL_BOTTOM(\"mdral-align_vertical_bottom\", '\\ue8cd'),\n    ALIGN_VERTICAL_CENTER(\"mdral-align_vertical_center\", '\\ue8ce'),\n    ALIGN_VERTICAL_TOP(\"mdral-align_vertical_top\", '\\ue8cf'),\n    ALL_INBOX(\"mdral-all_inbox\", '\\ue04c'),\n    ALL_INCLUSIVE(\"mdral-all_inclusive\", '\\ue04e'),\n    ALL_OUT(\"mdral-all_out\", '\\ue04f'),\n    ALT_ROUTE(\"mdral-alt_route\", '\\ue757'),\n    ALTERNATE_EMAIL(\"mdral-alternate_email\", '\\ue051'),\n    AMP_STORIES(\"mdral-amp_stories\", '\\ue053'),\n    ANALYTICS(\"mdral-analytics\", '\\ue758'),\n    ANCHOR(\"mdral-anchor\", '\\ue75a'),\n    ANDROID(\"mdral-android\", '\\ue055'),\n    ANNOUNCEMENT(\"mdral-announcement\", '\\ue056'),\n    APARTMENT(\"mdral-apartment\", '\\ue058'),\n    API(\"mdral-api\", '\\ue75b'),\n    APP_BLOCKING(\"mdral-app_blocking\", '\\ue75c'),\n    APP_SETTINGS_ALT(\"mdral-app_settings_alt\", '\\ue75e'),\n    APPS(\"mdral-apps\", '\\ue059'),\n    ARCHITECTURE(\"mdral-architecture\", '\\ue760'),\n    ARCHIVE(\"mdral-archive\", '\\ue05a'),\n    ARROW_BACK(\"mdral-arrow_back\", '\\ue05c'),\n    ARROW_BACK_IOS(\"mdral-arrow_back_ios\", '\\ue05d'),\n    ARROW_CIRCLE_DOWN(\"mdral-arrow_circle_down\", '\\ue761'),\n    ARROW_CIRCLE_UP(\"mdral-arrow_circle_up\", '\\ue763'),\n    ARROW_DOWNWARD(\"mdral-arrow_downward\", '\\ue05e'),\n    ARROW_DROP_DOWN(\"mdral-arrow_drop_down\", '\\ue05f'),\n    ARROW_DROP_DOWN_CIRCLE(\"mdral-arrow_drop_down_circle\", '\\ue060'),\n    ARROW_DROP_UP(\"mdral-arrow_drop_up\", '\\ue062'),\n    ARROW_FORWARD(\"mdral-arrow_forward\", '\\ue063'),\n    ARROW_FORWARD_IOS(\"mdral-arrow_forward_ios\", '\\ue064'),\n    ARROW_LEFT(\"mdral-arrow_left\", '\\ue065'),\n    ARROW_RIGHT(\"mdral-arrow_right\", '\\ue066'),\n    ARROW_RIGHT_ALT(\"mdral-arrow_right_alt\", '\\ue067'),\n    ARROW_UPWARD(\"mdral-arrow_upward\", '\\ue068'),\n    ART_TRACK(\"mdral-art_track\", '\\ue069'),\n    ARTICLE(\"mdral-article\", '\\ue765'),\n    ASPECT_RATIO(\"mdral-aspect_ratio\", '\\ue06a'),\n    ASSESSMENT(\"mdral-assessment\", '\\ue06c'),\n    ASSIGNMENT(\"mdral-assignment\", '\\ue06e'),\n    ASSIGNMENT_IND(\"mdral-assignment_ind\", '\\ue070'),\n    ASSIGNMENT_LATE(\"mdral-assignment_late\", '\\ue072'),\n    ASSIGNMENT_RETURN(\"mdral-assignment_return\", '\\ue074'),\n    ASSIGNMENT_RETURNED(\"mdral-assignment_returned\", '\\ue076'),\n    ASSIGNMENT_TURNED_IN(\"mdral-assignment_turned_in\", '\\ue078'),\n    ASSISTANT(\"mdral-assistant\", '\\ue07a'),\n    ASSISTANT_PHOTO(\"mdral-assistant_photo\", '\\ue07c'),\n    ATM(\"mdral-atm\", '\\ue07e'),\n    ATTACH_EMAIL(\"mdral-attach_email\", '\\ue767'),\n    ATTACH_FILE(\"mdral-attach_file\", '\\ue07f'),\n    ATTACH_MONEY(\"mdral-attach_money\", '\\ue080'),\n    ATTACHMENT(\"mdral-attachment\", '\\ue081'),\n    AUDIOTRACK(\"mdral-audiotrack\", '\\ue082'),\n    AUTO_DELETE(\"mdral-auto_delete\", '\\ue768'),\n    AUTORENEW(\"mdral-autorenew\", '\\ue084'),\n    AV_TIMER(\"mdral-av_timer\", '\\ue085'),\n    BABY_CHANGING_STATION(\"mdral-baby_changing_station\", '\\ue76a'),\n    BACKPACK(\"mdral-backpack\", '\\ue76b'),\n    BACKSPACE(\"mdral-backspace\", '\\ue086'),\n    BACKUP(\"mdral-backup\", '\\ue088'),\n    BACKUP_TABLE(\"mdral-backup_table\", '\\ue76d'),\n    BALLOT(\"mdral-ballot\", '\\ue08a'),\n    BAR_CHART(\"mdral-bar_chart\", '\\ue08c'),\n    BARCODE(\"mdral-barcode\", '\\ue08d'),\n    BATCH_PREDICTION(\"mdral-batch_prediction\", '\\ue76f'),\n    BATHTUB(\"mdral-bathtub\", '\\ue08e'),\n    BATTERY_20(\"mdral-battery_20\", '\\ue090'),\n    BATTERY_30(\"mdral-battery_30\", '\\ue092'),\n    BATTERY_50(\"mdral-battery_50\", '\\ue094'),\n    BATTERY_60(\"mdral-battery_60\", '\\ue096'),\n    BATTERY_80(\"mdral-battery_80\", '\\ue098'),\n    BATTERY_90(\"mdral-battery_90\", '\\ue09a'),\n    BATTERY_ALERT(\"mdral-battery_alert\", '\\ue09c'),\n    BATTERY_CHARGING_20(\"mdral-battery_charging_20\", '\\ue09d'),\n    BATTERY_CHARGING_30(\"mdral-battery_charging_30\", '\\ue09f'),\n    BATTERY_CHARGING_50(\"mdral-battery_charging_50\", '\\ue0a1'),\n    BATTERY_CHARGING_60(\"mdral-battery_charging_60\", '\\ue0a3'),\n    BATTERY_CHARGING_80(\"mdral-battery_charging_80\", '\\ue0a5'),\n    BATTERY_CHARGING_90(\"mdral-battery_charging_90\", '\\ue0a7'),\n    BATTERY_CHARGING_FULL(\"mdral-battery_charging_full\", '\\ue0a9'),\n    BATTERY_FULL(\"mdral-battery_full\", '\\ue0aa'),\n    BATTERY_STD(\"mdral-battery_std\", '\\ue0ab'),\n    BATTERY_UNKNOWN(\"mdral-battery_unknown\", '\\ue0ac'),\n    BEACH_ACCESS(\"mdral-beach_access\", '\\ue0ad'),\n    BEDTIME(\"mdral-bedtime\", '\\ue771'),\n    BEENHERE(\"mdral-beenhere\", '\\ue0af'),\n    BENTO(\"mdral-bento\", '\\ue864'),\n    BIKE_SCOOTER(\"mdral-bike_scooter\", '\\ue773'),\n    BIOTECH(\"mdral-biotech\", '\\ue774'),\n    BLOCK(\"mdral-block\", '\\ue0b1'),\n    BLUETOOTH(\"mdral-bluetooth\", '\\ue0b2'),\n    BLUETOOTH_AUDIO(\"mdral-bluetooth_audio\", '\\ue0b3'),\n    BLUETOOTH_CONNECTED(\"mdral-bluetooth_connected\", '\\ue0b4'),\n    BLUETOOTH_DISABLED(\"mdral-bluetooth_disabled\", '\\ue0b5'),\n    BLUETOOTH_SEARCHING(\"mdral-bluetooth_searching\", '\\ue0b6'),\n    BLUR_CIRCULAR(\"mdral-blur_circular\", '\\ue0b7'),\n    BLUR_LINEAR(\"mdral-blur_linear\", '\\ue0b8'),\n    BLUR_OFF(\"mdral-blur_off\", '\\ue0b9'),\n    BLUR_ON(\"mdral-blur_on\", '\\ue0ba'),\n    BOOK(\"mdral-book\", '\\ue0bb'),\n    BOOK_ONLINE(\"mdral-book_online\", '\\ue89b'),\n    BOOKMARK(\"mdral-bookmark\", '\\ue0bd'),\n    BOOKMARK_BORDER(\"mdral-bookmark_border\", '\\ue0bf'),\n    BOOKMARKS(\"mdral-bookmarks\", '\\ue0c0'),\n    BORDER_ALL(\"mdral-border_all\", '\\ue0c2'),\n    BORDER_BOTTOM(\"mdral-border_bottom\", '\\ue0c3'),\n    BORDER_CLEAR(\"mdral-border_clear\", '\\ue0c4'),\n    BORDER_COLOR(\"mdral-border_color\", '\\ue0c5'),\n    BORDER_HORIZONTAL(\"mdral-border_horizontal\", '\\ue0c7'),\n    BORDER_INNER(\"mdral-border_inner\", '\\ue0c8'),\n    BORDER_LEFT(\"mdral-border_left\", '\\ue0c9'),\n    BORDER_OUTER(\"mdral-border_outer\", '\\ue0ca'),\n    BORDER_RIGHT(\"mdral-border_right\", '\\ue0cb'),\n    BORDER_STYLE(\"mdral-border_style\", '\\ue0cc'),\n    BORDER_TOP(\"mdral-border_top\", '\\ue0cd'),\n    BORDER_VERTICAL(\"mdral-border_vertical\", '\\ue0ce'),\n    BRANDING_WATERMARK(\"mdral-branding_watermark\", '\\ue0cf'),\n    BRIGHTNESS_1(\"mdral-brightness_1\", '\\ue0d1'),\n    BRIGHTNESS_2(\"mdral-brightness_2\", '\\ue0d3'),\n    BRIGHTNESS_3(\"mdral-brightness_3\", '\\ue0d5'),\n    BRIGHTNESS_4(\"mdral-brightness_4\", '\\ue0d7'),\n    BRIGHTNESS_5(\"mdral-brightness_5\", '\\ue0d9'),\n    BRIGHTNESS_6(\"mdral-brightness_6\", '\\ue0db'),\n    BRIGHTNESS_7(\"mdral-brightness_7\", '\\ue0dd'),\n    BRIGHTNESS_AUTO(\"mdral-brightness_auto\", '\\ue0df'),\n    BRIGHTNESS_HIGH(\"mdral-brightness_high\", '\\ue0e1'),\n    BRIGHTNESS_LOW(\"mdral-brightness_low\", '\\ue0e3'),\n    BRIGHTNESS_MEDIUM(\"mdral-brightness_medium\", '\\ue0e5'),\n    BROKEN_IMAGE(\"mdral-broken_image\", '\\ue0e7'),\n    BROWSER_NOT_SUPPORTED(\"mdral-browser_not_supported\", '\\ue776'),\n    BRUSH(\"mdral-brush\", '\\ue0e9'),\n    BUBBLE_CHART(\"mdral-bubble_chart\", '\\ue0eb'),\n    BUG_REPORT(\"mdral-bug_report\", '\\ue0ed'),\n    BUILD(\"mdral-build\", '\\ue0ef'),\n    BUILD_CIRCLE(\"mdral-build_circle\", '\\ue777'),\n    BURST_MODE(\"mdral-burst_mode\", '\\ue0f1'),\n    BUSINESS(\"mdral-business\", '\\ue0f3'),\n    BUSINESS_CENTER(\"mdral-business_center\", '\\ue0f5'),\n    CACHED(\"mdral-cached\", '\\ue0f7'),\n    CAKE(\"mdral-cake\", '\\ue0f8'),\n    CALCULATE(\"mdral-calculate\", '\\ue779'),\n    CALENDAR_TODAY(\"mdral-calendar_today\", '\\ue0fa'),\n    CALENDAR_VIEW_DAY(\"mdral-calendar_view_day\", '\\ue0fc'),\n    CALL(\"mdral-call\", '\\ue0fe'),\n    CALL_END(\"mdral-call_end\", '\\ue100'),\n    CALL_MADE(\"mdral-call_made\", '\\ue102'),\n    CALL_MERGE(\"mdral-call_merge\", '\\ue103'),\n    CALL_MISSED(\"mdral-call_missed\", '\\ue104'),\n    CALL_MISSED_OUTGOING(\"mdral-call_missed_outgoing\", '\\ue105'),\n    CALL_RECEIVED(\"mdral-call_received\", '\\ue106'),\n    CALL_SPLIT(\"mdral-call_split\", '\\ue107'),\n    CALL_TO_ACTION(\"mdral-call_to_action\", '\\ue108'),\n    CAMERA(\"mdral-camera\", '\\ue10a'),\n    CAMERA_ALT(\"mdral-camera_alt\", '\\ue10c'),\n    CAMERA_ENHANCE(\"mdral-camera_enhance\", '\\ue10e'),\n    CAMERA_FRONT(\"mdral-camera_front\", '\\ue110'),\n    CAMERA_REAR(\"mdral-camera_rear\", '\\ue112'),\n    CAMERA_ROLL(\"mdral-camera_roll\", '\\ue114'),\n    CAMPAIGN(\"mdral-campaign\", '\\ue77b'),\n    CANCEL(\"mdral-cancel\", '\\ue116'),\n    CANCEL_PRESENTATION(\"mdral-cancel_presentation\", '\\ue118'),\n    CANCEL_SCHEDULE_SEND(\"mdral-cancel_schedule_send\", '\\ue11a'),\n    CARD_GIFTCARD(\"mdral-card_giftcard\", '\\ue11c'),\n    CARD_MEMBERSHIP(\"mdral-card_membership\", '\\ue11e'),\n    CARD_TRAVEL(\"mdral-card_travel\", '\\ue120'),\n    CARPENTER(\"mdral-carpenter\", '\\ue866'),\n    CASINO(\"mdral-casino\", '\\ue122'),\n    CAST(\"mdral-cast\", '\\ue124'),\n    CAST_CONNECTED(\"mdral-cast_connected\", '\\ue125'),\n    CAST_FOR_EDUCATION(\"mdral-cast_for_education\", '\\ue127'),\n    CATEGORY(\"mdral-category\", '\\ue128'),\n    CELL_WIFI(\"mdral-cell_wifi\", '\\ue12a'),\n    CENTER_FOCUS_STRONG(\"mdral-center_focus_strong\", '\\ue12c'),\n    CENTER_FOCUS_WEAK(\"mdral-center_focus_weak\", '\\ue12e'),\n    CHANGE_HISTORY(\"mdral-change_history\", '\\ue130'),\n    CHARGING_STATION(\"mdral-charging_station\", '\\ue77d'),\n    CHAT(\"mdral-chat\", '\\ue132'),\n    CHAT_BUBBLE(\"mdral-chat_bubble\", '\\ue134'),\n    CHAT_BUBBLE_OUTLINE(\"mdral-chat_bubble_outline\", '\\ue136'),\n    CHECK(\"mdral-check\", '\\ue137'),\n    CHECK_BOX(\"mdral-check_box\", '\\ue138'),\n    CHECK_BOX_OUTLINE_BLANK(\"mdral-check_box_outline_blank\", '\\ue13a'),\n    CHECK_CIRCLE(\"mdral-check_circle\", '\\ue13b'),\n    CHECK_CIRCLE_OUTLINE(\"mdral-check_circle_outline\", '\\ue13d'),\n    CHECKROOM(\"mdral-checkroom\", '\\ue77f'),\n    CHEVRON_LEFT(\"mdral-chevron_left\", '\\ue13e'),\n    CHEVRON_RIGHT(\"mdral-chevron_right\", '\\ue13f'),\n    CHILD_CARE(\"mdral-child_care\", '\\ue140'),\n    CHILD_FRIENDLY(\"mdral-child_friendly\", '\\ue142'),\n    CHROME_READER_MODE(\"mdral-chrome_reader_mode\", '\\ue144'),\n    CLASS(\"mdral-class\", '\\ue146'),\n    CLEAN_HANDS(\"mdral-clean_hands\", '\\ue89d'),\n    CLEANING_SERVICES(\"mdral-cleaning_services\", '\\ue780'),\n    CLEAR(\"mdral-clear\", '\\ue148'),\n    CLEAR_ALL(\"mdral-clear_all\", '\\ue149'),\n    CLOSE(\"mdral-close\", '\\ue14a'),\n    CLOSE_FULLSCREEN(\"mdral-close_fullscreen\", '\\ue782'),\n    CLOSED_CAPTION(\"mdral-closed_caption\", '\\ue14b'),\n    CLOSED_CAPTION_DISABLED(\"mdral-closed_caption_disabled\", '\\ue868'),\n    CLOUD(\"mdral-cloud\", '\\ue14d'),\n    CLOUD_CIRCLE(\"mdral-cloud_circle\", '\\ue14f'),\n    CLOUD_DONE(\"mdral-cloud_done\", '\\ue151'),\n    CLOUD_DOWNLOAD(\"mdral-cloud_download\", '\\ue153'),\n    CLOUD_OFF(\"mdral-cloud_off\", '\\ue155'),\n    CLOUD_QUEUE(\"mdral-cloud_queue\", '\\ue157'),\n    CLOUD_UPLOAD(\"mdral-cloud_upload\", '\\ue159'),\n    CODE(\"mdral-code\", '\\ue15b'),\n    COLLECTIONS(\"mdral-collections\", '\\ue15c'),\n    COLLECTIONS_BOOKMARK(\"mdral-collections_bookmark\", '\\ue15e'),\n    COLOR_LENS(\"mdral-color_lens\", '\\ue160'),\n    COLORIZE(\"mdral-colorize\", '\\ue162'),\n    COMMENT(\"mdral-comment\", '\\ue164'),\n    COMMENT_BANK(\"mdral-comment_bank\", '\\ue783'),\n    COMMUTE(\"mdral-commute\", '\\ue166'),\n    COMPARE(\"mdral-compare\", '\\ue167'),\n    COMPARE_ARROWS(\"mdral-compare_arrows\", '\\ue169'),\n    COMPASS_CALIBRATION(\"mdral-compass_calibration\", '\\ue16a'),\n    COMPUTER(\"mdral-computer\", '\\ue16c'),\n    CONFIRMATION_NUMBER(\"mdral-confirmation_number\", '\\ue16e'),\n    CONNECT_WITHOUT_CONTACT(\"mdral-connect_without_contact\", '\\ue89f'),\n    CONSTRUCTION(\"mdral-construction\", '\\ue785'),\n    CONTACT_MAIL(\"mdral-contact_mail\", '\\ue170'),\n    CONTACT_PAGE(\"mdral-contact_page\", '\\ue8b4'),\n    CONTACT_PHONE(\"mdral-contact_phone\", '\\ue172'),\n    CONTACT_SUPPORT(\"mdral-contact_support\", '\\ue174'),\n    CONTACTLESS(\"mdral-contactless\", '\\ue176'),\n    CONTACTS(\"mdral-contacts\", '\\ue178'),\n    CONTENT_COPY(\"mdral-content_copy\", '\\ue17a'),\n    CONTENT_CUT(\"mdral-content_cut\", '\\ue17c'),\n    CONTENT_PASTE(\"mdral-content_paste\", '\\ue17e'),\n    CONTROL_CAMERA(\"mdral-control_camera\", '\\ue180'),\n    CONTROL_POINT(\"mdral-control_point\", '\\ue181'),\n    CONTROL_POINT_DUPLICATE(\"mdral-control_point_duplicate\", '\\ue183'),\n    COPYRIGHT(\"mdral-copyright\", '\\ue185'),\n    CORONAVIRUS(\"mdral-coronavirus\", '\\ue8a0'),\n    CORPORATE_FARE(\"mdral-corporate_fare\", '\\ue786'),\n    COUNTERTOPS(\"mdral-countertops\", '\\ue86a'),\n    CREATE(\"mdral-create\", '\\ue187'),\n    CREATE_NEW_FOLDER(\"mdral-create_new_folder\", '\\ue189'),\n    CREDIT_CARD(\"mdral-credit_card\", '\\ue18b'),\n    CROP(\"mdral-crop\", '\\ue18d'),\n    CROP_16_9(\"mdral-crop_16_9\", '\\ue18e'),\n    CROP_3_2(\"mdral-crop_3_2\", '\\ue18f'),\n    CROP_5_4(\"mdral-crop_5_4\", '\\ue190'),\n    CROP_7_5(\"mdral-crop_7_5\", '\\ue191'),\n    CROP_DIN(\"mdral-crop_din\", '\\ue192'),\n    CROP_FREE(\"mdral-crop_free\", '\\ue193'),\n    CROP_LANDSCAPE(\"mdral-crop_landscape\", '\\ue194'),\n    CROP_ORIGINAL(\"mdral-crop_original\", '\\ue195'),\n    CROP_PORTRAIT(\"mdral-crop_portrait\", '\\ue196'),\n    CROP_ROTATE(\"mdral-crop_rotate\", '\\ue197'),\n    CROP_SQUARE(\"mdral-crop_square\", '\\ue198'),\n    DASHBOARD(\"mdral-dashboard\", '\\ue199'),\n    DATA_USAGE(\"mdral-data_usage\", '\\ue19b'),\n    DATE_RANGE(\"mdral-date_range\", '\\ue19c'),\n    DECK(\"mdral-deck\", '\\ue19e'),\n    DEHAZE(\"mdral-dehaze\", '\\ue1a0'),\n    DELETE(\"mdral-delete\", '\\ue1a1'),\n    DELETE_FOREVER(\"mdral-delete_forever\", '\\ue1a3'),\n    DELETE_OUTLINE(\"mdral-delete_outline\", '\\ue1a5'),\n    DELETE_SWEEP(\"mdral-delete_sweep\", '\\ue1a6'),\n    DEPARTURE_BOARD(\"mdral-departure_board\", '\\ue1a8'),\n    DESCRIPTION(\"mdral-description\", '\\ue1aa'),\n    DESIGN_SERVICES(\"mdral-design_services\", '\\ue788'),\n    DESKTOP_ACCESS_DISABLED(\"mdral-desktop_access_disabled\", '\\ue1ac'),\n    DESKTOP_MAC(\"mdral-desktop_mac\", '\\ue1ae'),\n    DESKTOP_WINDOWS(\"mdral-desktop_windows\", '\\ue1b0'),\n    DETAILS(\"mdral-details\", '\\ue1b2'),\n    DEVELOPER_BOARD(\"mdral-developer_board\", '\\ue1b4'),\n    DEVELOPER_MODE(\"mdral-developer_mode\", '\\ue1b6'),\n    DEVICE_HUB(\"mdral-device_hub\", '\\ue1b7'),\n    DEVICE_UNKNOWN(\"mdral-device_unknown\", '\\ue1b8'),\n    DEVICES(\"mdral-devices\", '\\ue1ba'),\n    DEVICES_OTHER(\"mdral-devices_other\", '\\ue1bc'),\n    DIALER_SIP(\"mdral-dialer_sip\", '\\ue1be'),\n    DIALPAD(\"mdral-dialpad\", '\\ue1c0'),\n    DIRECTIONS(\"mdral-directions\", '\\ue1c1'),\n    DIRECTIONS_BIKE(\"mdral-directions_bike\", '\\ue1c3'),\n    DIRECTIONS_BOAT(\"mdral-directions_boat\", '\\ue1c4'),\n    DIRECTIONS_BUS(\"mdral-directions_bus\", '\\ue1c6'),\n    DIRECTIONS_CAR(\"mdral-directions_car\", '\\ue1c8'),\n    DIRECTIONS_OFF(\"mdral-directions_off\", '\\ue78a'),\n    DIRECTIONS_RAILWAY(\"mdral-directions_railway\", '\\ue1ca'),\n    DIRECTIONS_RUN(\"mdral-directions_run\", '\\ue1cc'),\n    DIRECTIONS_SUBWAY(\"mdral-directions_subway\", '\\ue1cd'),\n    DIRECTIONS_TRANSIT(\"mdral-directions_transit\", '\\ue1cf'),\n    DIRECTIONS_WALK(\"mdral-directions_walk\", '\\ue1d1'),\n    DISABLED_BY_DEFAULT(\"mdral-disabled_by_default\", '\\ue8b6'),\n    DISC_FULL(\"mdral-disc_full\", '\\ue1d2'),\n    DIVIDE(\"mdral-divide\", '\\ue1d4'),\n    DNS(\"mdral-dns\", '\\ue1d6'),\n    DO_NOT_DISTURB(\"mdral-do_not_disturb\", '\\ue1d8'),\n    DO_NOT_DISTURB_ALT(\"mdral-do_not_disturb_alt\", '\\ue1da'),\n    DO_NOT_DISTURB_OFF(\"mdral-do_not_disturb_off\", '\\ue1dc'),\n    DO_NOT_STEP(\"mdral-do_not_step\", '\\ue78b'),\n    DO_NOT_TOUCH(\"mdral-do_not_touch\", '\\ue78d'),\n    DOCK(\"mdral-dock\", '\\ue1de'),\n    DOMAIN(\"mdral-domain\", '\\ue1e0'),\n    DOMAIN_DISABLED(\"mdral-domain_disabled\", '\\ue1e2'),\n    DOMAIN_VERIFICATION(\"mdral-domain_verification\", '\\ue78f'),\n    DONE(\"mdral-done\", '\\ue1e4'),\n    DONE_ALL(\"mdral-done_all\", '\\ue1e5'),\n    DONE_OUTLINE(\"mdral-done_outline\", '\\ue1e6'),\n    DONUT_LARGE(\"mdral-donut_large\", '\\ue1e7'),\n    DONUT_SMALL(\"mdral-donut_small\", '\\ue1e8'),\n    DOUBLE_ARROW(\"mdral-double_arrow\", '\\ue1ea'),\n    DRAFTS(\"mdral-drafts\", '\\ue1eb'),\n    DRAG_HANDLE(\"mdral-drag_handle\", '\\ue1ed'),\n    DRAG_INDICATOR(\"mdral-drag_indicator\", '\\ue1ee'),\n    DRIVE_ETA(\"mdral-drive_eta\", '\\ue1ef'),\n    DRY(\"mdral-dry\", '\\ue791'),\n    DUO(\"mdral-duo\", '\\ue1f1'),\n    DVR(\"mdral-dvr\", '\\ue1f2'),\n    DYNAMIC_FEED(\"mdral-dynamic_feed\", '\\ue1f4'),\n    DYNAMIC_FORM(\"mdral-dynamic_form\", '\\ue793'),\n    EAST(\"mdral-east\", '\\ue86c'),\n    ECO(\"mdral-eco\", '\\ue1f6'),\n    EDIT(\"mdral-edit\", '\\ue1f8'),\n    EDIT_ATTRIBUTES(\"mdral-edit_attributes\", '\\ue1fa'),\n    EDIT_LOCATION(\"mdral-edit_location\", '\\ue1fc'),\n    EDIT_ROAD(\"mdral-edit_road\", '\\ue795'),\n    EJECT(\"mdral-eject\", '\\ue1fe'),\n    ELDERLY(\"mdral-elderly\", '\\ue8a2'),\n    ELECTRIC_BIKE(\"mdral-electric_bike\", '\\ue797'),\n    ELECTRIC_CAR(\"mdral-electric_car\", '\\ue798'),\n    ELECTRIC_MOPED(\"mdral-electric_moped\", '\\ue79a'),\n    ELECTRIC_SCOOTER(\"mdral-electric_scooter\", '\\ue79c'),\n    ELECTRICAL_SERVICES(\"mdral-electrical_services\", '\\ue79d'),\n    ELEVATOR(\"mdral-elevator\", '\\ue79e'),\n    EMAIL(\"mdral-email\", '\\ue200'),\n    EMOJI_EMOTIONS(\"mdral-emoji_emotions\", '\\ue202'),\n    EMOJI_EVENTS(\"mdral-emoji_events\", '\\ue204'),\n    EMOJI_FLAGS(\"mdral-emoji_flags\", '\\ue206'),\n    EMOJI_FOOD_BEVERAGE(\"mdral-emoji_food_beverage\", '\\ue208'),\n    EMOJI_NATURE(\"mdral-emoji_nature\", '\\ue20a'),\n    EMOJI_OBJECTS(\"mdral-emoji_objects\", '\\ue20c'),\n    EMOJI_PEOPLE(\"mdral-emoji_people\", '\\ue20e'),\n    EMOJI_SYMBOLS(\"mdral-emoji_symbols\", '\\ue20f'),\n    EMOJI_TRANSPORTATION(\"mdral-emoji_transportation\", '\\ue210'),\n    ENGINEERING(\"mdral-engineering\", '\\ue7a0'),\n    ENHANCED_ENCRYPTION(\"mdral-enhanced_encryption\", '\\ue211'),\n    EQUALIZER(\"mdral-equalizer\", '\\ue213'),\n    EQUALS(\"mdral-equals\", '\\ue214'),\n    ERROR(\"mdral-error\", '\\ue215'),\n    ERROR_OUTLINE(\"mdral-error_outline\", '\\ue217'),\n    ESCALATOR(\"mdral-escalator\", '\\ue7a2'),\n    ESCALATOR_WARNING(\"mdral-escalator_warning\", '\\ue7a4'),\n    EURO(\"mdral-euro\", '\\ue218'),\n    EURO_SYMBOL(\"mdral-euro_symbol\", '\\ue219'),\n    EV_STATION(\"mdral-ev_station\", '\\ue21a'),\n    EVENT(\"mdral-event\", '\\ue21c'),\n    EVENT_AVAILABLE(\"mdral-event_available\", '\\ue21e'),\n    EVENT_BUSY(\"mdral-event_busy\", '\\ue220'),\n    EVENT_NOTE(\"mdral-event_note\", '\\ue222'),\n    EVENT_SEAT(\"mdral-event_seat\", '\\ue224'),\n    EXIT_TO_APP(\"mdral-exit_to_app\", '\\ue226'),\n    EXPAND_LESS(\"mdral-expand_less\", '\\ue227'),\n    EXPAND_MORE(\"mdral-expand_more\", '\\ue228'),\n    EXPLICIT(\"mdral-explicit\", '\\ue229'),\n    EXPLORE(\"mdral-explore\", '\\ue22b'),\n    EXPLORE_OFF(\"mdral-explore_off\", '\\ue22d'),\n    EXPOSURE(\"mdral-exposure\", '\\ue22f'),\n    EXPOSURE_NEG_1(\"mdral-exposure_neg_1\", '\\ue231'),\n    EXPOSURE_NEG_2(\"mdral-exposure_neg_2\", '\\ue232'),\n    EXPOSURE_PLUS_1(\"mdral-exposure_plus_1\", '\\ue233'),\n    EXPOSURE_PLUS_2(\"mdral-exposure_plus_2\", '\\ue234'),\n    EXPOSURE_ZERO(\"mdral-exposure_zero\", '\\ue235'),\n    EXTENSION(\"mdral-extension\", '\\ue236'),\n    FACE(\"mdral-face\", '\\ue238'),\n    FACEBOOK(\"mdral-facebook\", '\\ue8b8'),\n    FACT_CHECK(\"mdral-fact_check\", '\\ue7a5'),\n    FAMILY_RESTROOM(\"mdral-family_restroom\", '\\ue7a7'),\n    FAST_FORWARD(\"mdral-fast_forward\", '\\ue23a'),\n    FAST_REWIND(\"mdral-fast_rewind\", '\\ue23c'),\n    FASTFOOD(\"mdral-fastfood\", '\\ue23e'),\n    FAVORITE(\"mdral-favorite\", '\\ue240'),\n    FAVORITE_BORDER(\"mdral-favorite_border\", '\\ue242'),\n    FEATURED_PLAY_LIST(\"mdral-featured_play_list\", '\\ue243'),\n    FEATURED_VIDEO(\"mdral-featured_video\", '\\ue245'),\n    FEEDBACK(\"mdral-feedback\", '\\ue247'),\n    FENCE(\"mdral-fence\", '\\ue86d'),\n    FIBER_DVR(\"mdral-fiber_dvr\", '\\ue249'),\n    FIBER_MANUAL_RECORD(\"mdral-fiber_manual_record\", '\\ue24b'),\n    FIBER_NEW(\"mdral-fiber_new\", '\\ue24d'),\n    FIBER_PIN(\"mdral-fiber_pin\", '\\ue24f'),\n    FIBER_SMART_RECORD(\"mdral-fiber_smart_record\", '\\ue251'),\n    FILE_COPY(\"mdral-file_copy\", '\\ue253'),\n    FILE_UPLOAD(\"mdral-file_upload\", '\\ue255'),\n    FILTER(\"mdral-filter\", '\\ue257'),\n    FILTER_1(\"mdral-filter_1\", '\\ue259'),\n    FILTER_2(\"mdral-filter_2\", '\\ue25b'),\n    FILTER_3(\"mdral-filter_3\", '\\ue25d'),\n    FILTER_4(\"mdral-filter_4\", '\\ue25f'),\n    FILTER_5(\"mdral-filter_5\", '\\ue261'),\n    FILTER_6(\"mdral-filter_6\", '\\ue263'),\n    FILTER_7(\"mdral-filter_7\", '\\ue265'),\n    FILTER_8(\"mdral-filter_8\", '\\ue267'),\n    FILTER_9(\"mdral-filter_9\", '\\ue269'),\n    FILTER_9_PLUS(\"mdral-filter_9_plus\", '\\ue26b'),\n    FILTER_ALT(\"mdral-filter_alt\", '\\ue7a8'),\n    FILTER_B_AND_W(\"mdral-filter_b_and_w\", '\\ue26d'),\n    FILTER_CENTER_FOCUS(\"mdral-filter_center_focus\", '\\ue26f'),\n    FILTER_DRAMA(\"mdral-filter_drama\", '\\ue270'),\n    FILTER_FRAMES(\"mdral-filter_frames\", '\\ue272'),\n    FILTER_HDR(\"mdral-filter_hdr\", '\\ue274'),\n    FILTER_LIST(\"mdral-filter_list\", '\\ue276'),\n    FILTER_NONE(\"mdral-filter_none\", '\\ue277'),\n    FILTER_TILT_SHIFT(\"mdral-filter_tilt_shift\", '\\ue279'),\n    FILTER_VINTAGE(\"mdral-filter_vintage\", '\\ue27a'),\n    FIND_IN_PAGE(\"mdral-find_in_page\", '\\ue27c'),\n    FIND_REPLACE(\"mdral-find_replace\", '\\ue27e'),\n    FINGERPRINT(\"mdral-fingerprint\", '\\ue27f'),\n    FIRE_EXTINGUISHER(\"mdral-fire_extinguisher\", '\\ue86f'),\n    FIREPLACE(\"mdral-fireplace\", '\\ue280'),\n    FIRST_PAGE(\"mdral-first_page\", '\\ue282'),\n    FITNESS_CENTER(\"mdral-fitness_center\", '\\ue283'),\n    FLAG(\"mdral-flag\", '\\ue284'),\n    FLAKY(\"mdral-flaky\", '\\ue7aa'),\n    FLARE(\"mdral-flare\", '\\ue286'),\n    FLASH_AUTO(\"mdral-flash_auto\", '\\ue287'),\n    FLASH_OFF(\"mdral-flash_off\", '\\ue288'),\n    FLASH_ON(\"mdral-flash_on\", '\\ue289'),\n    FLIGHT(\"mdral-flight\", '\\ue28a'),\n    FLIGHT_LAND(\"mdral-flight_land\", '\\ue28b'),\n    FLIGHT_TAKEOFF(\"mdral-flight_takeoff\", '\\ue28c'),\n    FLIP(\"mdral-flip\", '\\ue28d'),\n    FLIP_CAMERA_ANDROID(\"mdral-flip_camera_android\", '\\ue28e'),\n    FLIP_CAMERA_IOS(\"mdral-flip_camera_ios\", '\\ue290'),\n    FLIP_TO_BACK(\"mdral-flip_to_back\", '\\ue292'),\n    FLIP_TO_FRONT(\"mdral-flip_to_front\", '\\ue293'),\n    FOLDER(\"mdral-folder\", '\\ue294'),\n    FOLDER_OPEN(\"mdral-folder_open\", '\\ue296'),\n    FOLDER_SHARED(\"mdral-folder_shared\", '\\ue298'),\n    FOLDER_SPECIAL(\"mdral-folder_special\", '\\ue29a'),\n    FOLLOW_THE_SIGNS(\"mdral-follow_the_signs\", '\\ue8a3'),\n    FONT_DOWNLOAD(\"mdral-font_download\", '\\ue29c'),\n    FOOD_BANK(\"mdral-food_bank\", '\\ue870'),\n    FORMAT_ALIGN_CENTER(\"mdral-format_align_center\", '\\ue29e'),\n    FORMAT_ALIGN_JUSTIFY(\"mdral-format_align_justify\", '\\ue29f'),\n    FORMAT_ALIGN_LEFT(\"mdral-format_align_left\", '\\ue2a0'),\n    FORMAT_ALIGN_RIGHT(\"mdral-format_align_right\", '\\ue2a1'),\n    FORMAT_BOLD(\"mdral-format_bold\", '\\ue2a2'),\n    FORMAT_CLEAR(\"mdral-format_clear\", '\\ue2a3'),\n    FORMAT_COLOR_FILL(\"mdral-format_color_fill\", '\\ue2a4'),\n    FORMAT_COLOR_RESET(\"mdral-format_color_reset\", '\\ue2a6'),\n    FORMAT_COLOR_TEXT(\"mdral-format_color_text\", '\\ue2a8'),\n    FORMAT_INDENT_DECREASE(\"mdral-format_indent_decrease\", '\\ue2aa'),\n    FORMAT_INDENT_INCREASE(\"mdral-format_indent_increase\", '\\ue2ab'),\n    FORMAT_ITALIC(\"mdral-format_italic\", '\\ue2ac'),\n    FORMAT_LINE_SPACING(\"mdral-format_line_spacing\", '\\ue2ad'),\n    FORMAT_LIST_BULLETED(\"mdral-format_list_bulleted\", '\\ue2ae'),\n    FORMAT_LIST_NUMBERED(\"mdral-format_list_numbered\", '\\ue2af'),\n    FORMAT_LIST_NUMBERED_RTL(\"mdral-format_list_numbered_rtl\", '\\ue2b0'),\n    FORMAT_PAINT(\"mdral-format_paint\", '\\ue2b1'),\n    FORMAT_QUOTE(\"mdral-format_quote\", '\\ue2b3'),\n    FORMAT_SHAPES(\"mdral-format_shapes\", '\\ue2b5'),\n    FORMAT_SIZE(\"mdral-format_size\", '\\ue2b7'),\n    FORMAT_STRIKETHROUGH(\"mdral-format_strikethrough\", '\\ue2b8'),\n    FORMAT_TEXTDIRECTION_L_TO_R(\"mdral-format_textdirection_l_to_r\", '\\ue2b9'),\n    FORMAT_TEXTDIRECTION_R_TO_L(\"mdral-format_textdirection_r_to_l\", '\\ue2bb'),\n    FORMAT_UNDERLINED(\"mdral-format_underlined\", '\\ue2bd'),\n    FORUM(\"mdral-forum\", '\\ue2be'),\n    FORWARD(\"mdral-forward\", '\\ue2c0'),\n    FORWARD_10(\"mdral-forward_10\", '\\ue2c2'),\n    FORWARD_30(\"mdral-forward_30\", '\\ue2c3'),\n    FORWARD_5(\"mdral-forward_5\", '\\ue2c4'),\n    FORWARD_TO_INBOX(\"mdral-forward_to_inbox\", '\\ue7ab'),\n    FOUNDATION(\"mdral-foundation\", '\\ue872'),\n    FREE_BREAKFAST(\"mdral-free_breakfast\", '\\ue2c5'),\n    FULLSCREEN(\"mdral-fullscreen\", '\\ue2c7'),\n    FULLSCREEN_EXIT(\"mdral-fullscreen_exit\", '\\ue2c8'),\n    FUNCTIONS(\"mdral-functions\", '\\ue2c9'),\n    G_TRANSLATE(\"mdral-g_translate\", '\\ue2ca'),\n    GAMEPAD(\"mdral-gamepad\", '\\ue2cb'),\n    GAMES(\"mdral-games\", '\\ue2cd'),\n    GAVEL(\"mdral-gavel\", '\\ue2cf'),\n    GESTURE(\"mdral-gesture\", '\\ue2d0'),\n    GET_APP(\"mdral-get_app\", '\\ue2d1'),\n    GIF(\"mdral-gif\", '\\ue2d3'),\n    GOLF_COURSE(\"mdral-golf_course\", '\\ue2d5'),\n    GPS_FIXED(\"mdral-gps_fixed\", '\\ue2d7'),\n    GPS_NOT_FIXED(\"mdral-gps_not_fixed\", '\\ue2d9'),\n    GPS_OFF(\"mdral-gps_off\", '\\ue2da'),\n    GRADE(\"mdral-grade\", '\\ue2db'),\n    GRADIENT(\"mdral-gradient\", '\\ue2dd'),\n    GRADING(\"mdral-grading\", '\\ue7ad'),\n    GRAIN(\"mdral-grain\", '\\ue2de'),\n    GRAPHIC_EQ(\"mdral-graphic_eq\", '\\ue2df'),\n    GRASS(\"mdral-grass\", '\\ue874'),\n    GREATER_THAN(\"mdral-greater_than\", '\\ue2e0'),\n    GREATER_THAN_EQUAL(\"mdral-greater_than_equal\", '\\ue2e1'),\n    GRID_OFF(\"mdral-grid_off\", '\\ue2e2'),\n    GRID_ON(\"mdral-grid_on\", '\\ue2e4'),\n    GROUP(\"mdral-group\", '\\ue2e6'),\n    GROUP_ADD(\"mdral-group_add\", '\\ue2e8'),\n    GROUP_WORK(\"mdral-group_work\", '\\ue2ea'),\n    GROUPS(\"mdral-groups\", '\\ue8b9'),\n    HANDYMAN(\"mdral-handyman\", '\\ue7ae'),\n    HD(\"mdral-hd\", '\\ue2ec'),\n    HDR_OFF(\"mdral-hdr_off\", '\\ue2ee'),\n    HDR_ON(\"mdral-hdr_on\", '\\ue2ef'),\n    HDR_STRONG(\"mdral-hdr_strong\", '\\ue2f0'),\n    HDR_WEAK(\"mdral-hdr_weak\", '\\ue2f2'),\n    HEADSET(\"mdral-headset\", '\\ue2f4'),\n    HEADSET_MIC(\"mdral-headset_mic\", '\\ue2f6'),\n    HEALING(\"mdral-healing\", '\\ue2f8'),\n    HEARING(\"mdral-hearing\", '\\ue2fa'),\n    HEARING_DISABLED(\"mdral-hearing_disabled\", '\\ue7b0'),\n    HEIGHT(\"mdral-height\", '\\ue2fb'),\n    HELP(\"mdral-help\", '\\ue2fc'),\n    HELP_CENTER(\"mdral-help_center\", '\\ue7b1'),\n    HELP_OUTLINE(\"mdral-help_outline\", '\\ue2fe'),\n    HIGH_QUALITY(\"mdral-high_quality\", '\\ue2ff'),\n    HIGHLIGHT(\"mdral-highlight\", '\\ue301'),\n    HIGHLIGHT_ALT(\"mdral-highlight_alt\", '\\ue7b3'),\n    HIGHLIGHT_OFF(\"mdral-highlight_off\", '\\ue303'),\n    HISTORY(\"mdral-history\", '\\ue305'),\n    HISTORY_EDU(\"mdral-history_edu\", '\\ue7b4'),\n    HISTORY_TOGGLE_OFF(\"mdral-history_toggle_off\", '\\ue7b6'),\n    HOME(\"mdral-home\", '\\ue306'),\n    HOME_REPAIR_SERVICE(\"mdral-home_repair_service\", '\\ue7b7'),\n    HOME_WORK(\"mdral-home_work\", '\\ue308'),\n    HORIZONTAL_DISTRIBUTE(\"mdral-horizontal_distribute\", '\\ue8d0'),\n    HORIZONTAL_RULE(\"mdral-horizontal_rule\", '\\ue7b9'),\n    HORIZONTAL_SPLIT(\"mdral-horizontal_split\", '\\ue30a'),\n    HOT_TUB(\"mdral-hot_tub\", '\\ue30c'),\n    HOTEL(\"mdral-hotel\", '\\ue30d'),\n    HOURGLASS_BOTTOM(\"mdral-hourglass_bottom\", '\\ue7ba'),\n    HOURGLASS_DISABLED(\"mdral-hourglass_disabled\", '\\ue7bc'),\n    HOURGLASS_EMPTY(\"mdral-hourglass_empty\", '\\ue30f'),\n    HOURGLASS_FULL(\"mdral-hourglass_full\", '\\ue310'),\n    HOURGLASS_TOP(\"mdral-hourglass_top\", '\\ue7bd'),\n    HOUSE(\"mdral-house\", '\\ue312'),\n    HOUSE_SIDING(\"mdral-house_siding\", '\\ue875'),\n    HOW_TO_REG(\"mdral-how_to_reg\", '\\ue314'),\n    HOW_TO_VOTE(\"mdral-how_to_vote\", '\\ue316'),\n    HTTP(\"mdral-http\", '\\ue318'),\n    HTTPS(\"mdral-https\", '\\ue319'),\n    HVAC(\"mdral-hvac\", '\\ue7bf'),\n    IMAGE(\"mdral-image\", '\\ue31b'),\n    IMAGE_ASPECT_RATIO(\"mdral-image_aspect_ratio\", '\\ue31d'),\n    IMAGE_NOT_SUPPORTED(\"mdral-image_not_supported\", '\\ue7c1'),\n    IMAGE_SEARCH(\"mdral-image_search\", '\\ue31f'),\n    IMPORT_CONTACTS(\"mdral-import_contacts\", '\\ue321'),\n    IMPORT_EXPORT(\"mdral-import_export\", '\\ue323'),\n    IMPORTANT_DEVICES(\"mdral-important_devices\", '\\ue324'),\n    INBOX(\"mdral-inbox\", '\\ue326'),\n    INDETERMINATE_CHECK_BOX(\"mdral-indeterminate_check_box\", '\\ue328'),\n    INFO(\"mdral-info\", '\\ue32a'),\n    INPUT(\"mdral-input\", '\\ue32c'),\n    INSERT_CHART(\"mdral-insert_chart\", '\\ue32d'),\n    INSERT_CHART_OUTLINED(\"mdral-insert_chart_outlined\", '\\ue32f'),\n    INSERT_COMMENT(\"mdral-insert_comment\", '\\ue330'),\n    INSERT_DRIVE_FILE(\"mdral-insert_drive_file\", '\\ue332'),\n    INSERT_EMOTICON(\"mdral-insert_emoticon\", '\\ue334'),\n    INSERT_INVITATION(\"mdral-insert_invitation\", '\\ue336'),\n    INSERT_LINK(\"mdral-insert_link\", '\\ue338'),\n    INSERT_PHOTO(\"mdral-insert_photo\", '\\ue339'),\n    INSIGHTS(\"mdral-insights\", '\\ue7c3'),\n    INTEGRATION_INSTRUCTIONS(\"mdral-integration_instructions\", '\\ue7c4'),\n    INVERT_COLORS(\"mdral-invert_colors\", '\\ue33b'),\n    INVERT_COLORS_OFF(\"mdral-invert_colors_off\", '\\ue33d'),\n    ISO(\"mdral-iso\", '\\ue33f'),\n    KEYBOARD(\"mdral-keyboard\", '\\ue341'),\n    KEYBOARD_ARROW_DOWN(\"mdral-keyboard_arrow_down\", '\\ue343'),\n    KEYBOARD_ARROW_LEFT(\"mdral-keyboard_arrow_left\", '\\ue344'),\n    KEYBOARD_ARROW_RIGHT(\"mdral-keyboard_arrow_right\", '\\ue345'),\n    KEYBOARD_ARROW_UP(\"mdral-keyboard_arrow_up\", '\\ue346'),\n    KEYBOARD_BACKSPACE(\"mdral-keyboard_backspace\", '\\ue347'),\n    KEYBOARD_CAPSLOCK(\"mdral-keyboard_capslock\", '\\ue348'),\n    KEYBOARD_HIDE(\"mdral-keyboard_hide\", '\\ue349'),\n    KEYBOARD_RETURN(\"mdral-keyboard_return\", '\\ue34b'),\n    KEYBOARD_TAB(\"mdral-keyboard_tab\", '\\ue34c'),\n    KEYBOARD_VOICE(\"mdral-keyboard_voice\", '\\ue34d'),\n    KING_BED(\"mdral-king_bed\", '\\ue34f'),\n    KITCHEN(\"mdral-kitchen\", '\\ue351'),\n    LABEL(\"mdral-label\", '\\ue353'),\n    LABEL_IMPORTANT(\"mdral-label_important\", '\\ue355'),\n    LABEL_OFF(\"mdral-label_off\", '\\ue357'),\n    LANDSCAPE(\"mdral-landscape\", '\\ue359'),\n    LANGUAGE(\"mdral-language\", '\\ue35b'),\n    LAPTOP(\"mdral-laptop\", '\\ue35d'),\n    LAPTOP_CHROMEBOOK(\"mdral-laptop_chromebook\", '\\ue35f'),\n    LAPTOP_MAC(\"mdral-laptop_mac\", '\\ue361'),\n    LAPTOP_WINDOWS(\"mdral-laptop_windows\", '\\ue363'),\n    LAST_PAGE(\"mdral-last_page\", '\\ue365'),\n    LAUNCH(\"mdral-launch\", '\\ue366'),\n    LAYERS(\"mdral-layers\", '\\ue367'),\n    LAYERS_CLEAR(\"mdral-layers_clear\", '\\ue369'),\n    LEADERBOARD(\"mdral-leaderboard\", '\\ue877'),\n    LEAK_ADD(\"mdral-leak_add\", '\\ue36b'),\n    LEAK_REMOVE(\"mdral-leak_remove\", '\\ue36c'),\n    LEAVE_BAGS_AT_HOME(\"mdral-leave_bags_at_home\", '\\ue8a5'),\n    LEGEND_TOGGLE(\"mdral-legend_toggle\", '\\ue7c6'),\n    LENS(\"mdral-lens\", '\\ue36d'),\n    LESS_THAN(\"mdral-less_than\", '\\ue36f'),\n    LESS_THAN_EQUAL(\"mdral-less_than_equal\", '\\ue370'),\n    LIBRARY_ADD(\"mdral-library_add\", '\\ue371'),\n    LIBRARY_ADD_CHECK(\"mdral-library_add_check\", '\\ue746'),\n    LIBRARY_BOOKS(\"mdral-library_books\", '\\ue373'),\n    LIBRARY_MUSIC(\"mdral-library_music\", '\\ue375'),\n    LIGHTBULB(\"mdral-lightbulb\", '\\ue377'),\n    LINE_STYLE(\"mdral-line_style\", '\\ue379'),\n    LINE_WEIGHT(\"mdral-line_weight\", '\\ue37a'),\n    LINEAR_SCALE(\"mdral-linear_scale\", '\\ue37b'),\n    LINK(\"mdral-link\", '\\ue37c'),\n    LINK_OFF(\"mdral-link_off\", '\\ue37e'),\n    LINKED_CAMERA(\"mdral-linked_camera\", '\\ue37f'),\n    LIST(\"mdral-list\", '\\ue381'),\n    LIST_ALT(\"mdral-list_alt\", '\\ue382'),\n    LIVE_HELP(\"mdral-live_help\", '\\ue384'),\n    LIVE_TV(\"mdral-live_tv\", '\\ue386'),\n    LOCAL_ACTIVITY(\"mdral-local_activity\", '\\ue388'),\n    LOCAL_AIRPORT(\"mdral-local_airport\", '\\ue38a'),\n    LOCAL_ATM(\"mdral-local_atm\", '\\ue38b'),\n    LOCAL_BAR(\"mdral-local_bar\", '\\ue38d'),\n    LOCAL_CAFE(\"mdral-local_cafe\", '\\ue38f'),\n    LOCAL_CAR_WASH(\"mdral-local_car_wash\", '\\ue391'),\n    LOCAL_CONVENIENCE_STORE(\"mdral-local_convenience_store\", '\\ue393'),\n    LOCAL_DINING(\"mdral-local_dining\", '\\ue395'),\n    LOCAL_DRINK(\"mdral-local_drink\", '\\ue396'),\n    LOCAL_FIRE_DEPARTMENT(\"mdral-local_fire_department\", '\\ue8a7'),\n    LOCAL_FLORIST(\"mdral-local_florist\", '\\ue398'),\n    LOCAL_GAS_STATION(\"mdral-local_gas_station\", '\\ue39a'),\n    LOCAL_GROCERY_STORE(\"mdral-local_grocery_store\", '\\ue39c'),\n    LOCAL_HOSPITAL(\"mdral-local_hospital\", '\\ue39e'),\n    LOCAL_HOTEL(\"mdral-local_hotel\", '\\ue3a0'),\n    LOCAL_LAUNDRY_SERVICE(\"mdral-local_laundry_service\", '\\ue3a2'),\n    LOCAL_LIBRARY(\"mdral-local_library\", '\\ue3a4'),\n    LOCAL_MALL(\"mdral-local_mall\", '\\ue3a6'),\n    LOCAL_MOVIES(\"mdral-local_movies\", '\\ue3a8'),\n    LOCAL_OFFER(\"mdral-local_offer\", '\\ue3aa'),\n    LOCAL_PARKING(\"mdral-local_parking\", '\\ue3ac'),\n    LOCAL_PHARMACY(\"mdral-local_pharmacy\", '\\ue3ad'),\n    LOCAL_PHONE(\"mdral-local_phone\", '\\ue3af'),\n    LOCAL_PIZZA(\"mdral-local_pizza\", '\\ue3b1'),\n    LOCAL_PLAY(\"mdral-local_play\", '\\ue3b3'),\n    LOCAL_POLICE(\"mdral-local_police\", '\\ue8a9'),\n    LOCAL_POST_OFFICE(\"mdral-local_post_office\", '\\ue3b5'),\n    LOCAL_PRINTSHOP(\"mdral-local_printshop\", '\\ue3b7'),\n    LOCAL_SEE(\"mdral-local_see\", '\\ue3b9'),\n    LOCAL_SHIPPING(\"mdral-local_shipping\", '\\ue3bb'),\n    LOCAL_TAXI(\"mdral-local_taxi\", '\\ue3bd'),\n    LOCATION_CITY(\"mdral-location_city\", '\\ue3bf'),\n    LOCATION_DISABLED(\"mdral-location_disabled\", '\\ue3c0'),\n    LOCATION_OFF(\"mdral-location_off\", '\\ue3c1'),\n    LOCATION_ON(\"mdral-location_on\", '\\ue3c2'),\n    LOCATION_SEARCHING(\"mdral-location_searching\", '\\ue3c4'),\n    LOCK(\"mdral-lock\", '\\ue3c5'),\n    LOCK_OPEN(\"mdral-lock_open\", '\\ue3c7'),\n    LOG_IN(\"mdral-log_in\", '\\ue3c9'),\n    LOG_OUT(\"mdral-log_out\", '\\ue3ca'),\n    LOGIN(\"mdral-login\", '\\ue7c7'),\n    LOOKS(\"mdral-looks\", '\\ue3cb'),\n    LOOKS_3(\"mdral-looks_3\", '\\ue3cc'),\n    LOOKS_4(\"mdral-looks_4\", '\\ue3ce'),\n    LOOKS_5(\"mdral-looks_5\", '\\ue3d0'),\n    LOOKS_6(\"mdral-looks_6\", '\\ue3d2'),\n    LOOKS_ONE(\"mdral-looks_one\", '\\ue3d4'),\n    LOOKS_TWO(\"mdral-looks_two\", '\\ue3d6'),\n    LOOP(\"mdral-loop\", '\\ue3d8'),\n    LOUPE(\"mdral-loupe\", '\\ue3d9'),\n    LOW_PRIORITY(\"mdral-low_priority\", '\\ue3db'),\n    LOYALTY(\"mdral-loyalty\", '\\ue3dc'),\n    LUGGAGE(\"mdral-luggage\", '\\ue8bb');\n\n    public static Material2RoundAL findByDescription(String description) {\n        for (Material2RoundAL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Material2RoundAL(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2RoundALIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Material2RoundALIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/material2/20200820/fonts/MaterialIcons-Round.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdral-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Material2RoundAL.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Material Icons Round\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2RoundALIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class Material2RoundALIkonProvider implements IkonProvider<Material2RoundAL> {\n    @Override\n    public Class<Material2RoundAL> getIkon() {\n        return Material2RoundAL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2RoundMZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Material2RoundMZ implements Ikon {\n    MAIL(\"mdrmz-mail\", '\\ue3de'),\n    MAIL_OUTLINE(\"mdrmz-mail_outline\", '\\ue3e0'),\n    MAP(\"mdrmz-map\", '\\ue3e1'),\n    MAPS_UGC(\"mdrmz-maps_ugc\", '\\ue7c8'),\n    MARK_CHAT_READ(\"mdrmz-mark_chat_read\", '\\ue7ca'),\n    MARK_CHAT_UNREAD(\"mdrmz-mark_chat_unread\", '\\ue7cc'),\n    MARK_EMAIL_READ(\"mdrmz-mark_email_read\", '\\ue7ce'),\n    MARK_EMAIL_UNREAD(\"mdrmz-mark_email_unread\", '\\ue7d0'),\n    MARKUNREAD(\"mdrmz-markunread\", '\\ue3e3'),\n    MARKUNREAD_MAILBOX(\"mdrmz-markunread_mailbox\", '\\ue3e5'),\n    MASKS(\"mdrmz-masks\", '\\ue8ab'),\n    MAXIMIZE(\"mdrmz-maximize\", '\\ue3e7'),\n    MEDIATION(\"mdrmz-mediation\", '\\ue7d2'),\n    MEDICAL_SERVICES(\"mdrmz-medical_services\", '\\ue7d3'),\n    MEETING_ROOM(\"mdrmz-meeting_room\", '\\ue3e8'),\n    MEMORY(\"mdrmz-memory\", '\\ue3ea'),\n    MENU(\"mdrmz-menu\", '\\ue3ec'),\n    MENU_BOOK(\"mdrmz-menu_book\", '\\ue3ed'),\n    MENU_OPEN(\"mdrmz-menu_open\", '\\ue3ef'),\n    MERGE_TYPE(\"mdrmz-merge_type\", '\\ue3f0'),\n    MESSAGE(\"mdrmz-message\", '\\ue3f1'),\n    MIC(\"mdrmz-mic\", '\\ue3f3'),\n    MIC_NONE(\"mdrmz-mic_none\", '\\ue3f5'),\n    MIC_OFF(\"mdrmz-mic_off\", '\\ue3f7'),\n    MICROWAVE(\"mdrmz-microwave\", '\\ue879'),\n    MILITARY_TECH(\"mdrmz-military_tech\", '\\ue7d5'),\n    MINIMIZE(\"mdrmz-minimize\", '\\ue3f9'),\n    MINUS(\"mdrmz-minus\", '\\ue3fa'),\n    MISCELLANEOUS_SERVICES(\"mdrmz-miscellaneous_services\", '\\ue7d7'),\n    MISSED_VIDEO_CALL(\"mdrmz-missed_video_call\", '\\ue3fb'),\n    MMS(\"mdrmz-mms\", '\\ue3fd'),\n    MOBILE_FRIENDLY(\"mdrmz-mobile_friendly\", '\\ue3ff'),\n    MOBILE_OFF(\"mdrmz-mobile_off\", '\\ue400'),\n    MOBILE_SCREEN_SHARE(\"mdrmz-mobile_screen_share\", '\\ue401'),\n    MODE_COMMENT(\"mdrmz-mode_comment\", '\\ue403'),\n    MODEL_TRAINING(\"mdrmz-model_training\", '\\ue7d8'),\n    MONETIZATION_ON(\"mdrmz-monetization_on\", '\\ue405'),\n    MONEY(\"mdrmz-money\", '\\ue407'),\n    MONEY_OFF(\"mdrmz-money_off\", '\\ue409'),\n    MONOCHROME_PHOTOS(\"mdrmz-monochrome_photos\", '\\ue40a'),\n    MOOD(\"mdrmz-mood\", '\\ue40c'),\n    MOOD_BAD(\"mdrmz-mood_bad\", '\\ue40e'),\n    MOPED(\"mdrmz-moped\", '\\ue7d9'),\n    MORE(\"mdrmz-more\", '\\ue410'),\n    MORE_HORIZ(\"mdrmz-more_horiz\", '\\ue412'),\n    MORE_TIME(\"mdrmz-more_time\", '\\ue7db'),\n    MORE_VERT(\"mdrmz-more_vert\", '\\ue413'),\n    MOTION_PHOTOS_ON(\"mdrmz-motion_photos_on\", '\\ue8ad'),\n    MOTION_PHOTOS_PAUSE(\"mdrmz-motion_photos_pause\", '\\ue8bd'),\n    MOTION_PHOTOS_PAUSED(\"mdrmz-motion_photos_paused\", '\\ue8ae'),\n    MOTORCYCLE(\"mdrmz-motorcycle\", '\\ue414'),\n    MOUSE(\"mdrmz-mouse\", '\\ue416'),\n    MOVE_TO_INBOX(\"mdrmz-move_to_inbox\", '\\ue418'),\n    MOVIE(\"mdrmz-movie\", '\\ue41a'),\n    MOVIE_CREATION(\"mdrmz-movie_creation\", '\\ue41c'),\n    MOVIE_FILTER(\"mdrmz-movie_filter\", '\\ue41e'),\n    MULTILINE_CHART(\"mdrmz-multiline_chart\", '\\ue420'),\n    MULTIPLE_STOP(\"mdrmz-multiple_stop\", '\\ue7dc'),\n    MUSEUM(\"mdrmz-museum\", '\\ue421'),\n    MUSIC_NOTE(\"mdrmz-music_note\", '\\ue423'),\n    MUSIC_OFF(\"mdrmz-music_off\", '\\ue425'),\n    MUSIC_VIDEO(\"mdrmz-music_video\", '\\ue427'),\n    MY_LOCATION(\"mdrmz-my_location\", '\\ue429'),\n    NAT(\"mdrmz-nat\", '\\ue7dd'),\n    NATURE(\"mdrmz-nature\", '\\ue42b'),\n    NATURE_PEOPLE(\"mdrmz-nature_people\", '\\ue42d'),\n    NAVIGATE_BEFORE(\"mdrmz-navigate_before\", '\\ue42f'),\n    NAVIGATE_NEXT(\"mdrmz-navigate_next\", '\\ue430'),\n    NAVIGATION(\"mdrmz-navigation\", '\\ue431'),\n    NEAR_ME(\"mdrmz-near_me\", '\\ue433'),\n    NEAR_ME_DISABLED(\"mdrmz-near_me_disabled\", '\\ue87b'),\n    NETWORK_CELL(\"mdrmz-network_cell\", '\\ue435'),\n    NETWORK_CHECK(\"mdrmz-network_check\", '\\ue437'),\n    NETWORK_LOCKED(\"mdrmz-network_locked\", '\\ue438'),\n    NETWORK_WIFI(\"mdrmz-network_wifi\", '\\ue439'),\n    NEW_RELEASES(\"mdrmz-new_releases\", '\\ue43b'),\n    NEXT_PLAN(\"mdrmz-next_plan\", '\\ue7df'),\n    NEXT_WEEK(\"mdrmz-next_week\", '\\ue43d'),\n    NFC(\"mdrmz-nfc\", '\\ue43f'),\n    NIGHT_SHELTER(\"mdrmz-night_shelter\", '\\ue87d'),\n    NIGHTS_STAY(\"mdrmz-nights_stay\", '\\ue440'),\n    NO_BACKPACK(\"mdrmz-no_backpack\", '\\ue8be'),\n    NO_CELL(\"mdrmz-no_cell\", '\\ue7e1'),\n    NO_DRINKS(\"mdrmz-no_drinks\", '\\ue7e3'),\n    NO_ENCRYPTION(\"mdrmz-no_encryption\", '\\ue442'),\n    NO_FLASH(\"mdrmz-no_flash\", '\\ue7e5'),\n    NO_FOOD(\"mdrmz-no_food\", '\\ue7e7'),\n    NO_LUGGAGE(\"mdrmz-no_luggage\", '\\ue8c0'),\n    NO_MEALS(\"mdrmz-no_meals\", '\\ue87f'),\n    NO_MEETING_ROOM(\"mdrmz-no_meeting_room\", '\\ue444'),\n    NO_PHOTOGRAPHY(\"mdrmz-no_photography\", '\\ue7e9'),\n    NO_SIM(\"mdrmz-no_sim\", '\\ue446'),\n    NO_STROLLER(\"mdrmz-no_stroller\", '\\ue7eb'),\n    NO_TRANSFER(\"mdrmz-no_transfer\", '\\ue880'),\n    NORTH(\"mdrmz-north\", '\\ue882'),\n    NORTH_EAST(\"mdrmz-north_east\", '\\ue883'),\n    NORTH_WEST(\"mdrmz-north_west\", '\\ue884'),\n    NOT_ACCESSIBLE(\"mdrmz-not_accessible\", '\\ue7ed'),\n    NOT_EQUAL(\"mdrmz-not_equal\", '\\ue448'),\n    NOT_INTERESTED(\"mdrmz-not_interested\", '\\ue449'),\n    NOT_LISTED_LOCATION(\"mdrmz-not_listed_location\", '\\ue44a'),\n    NOT_STARTED(\"mdrmz-not_started\", '\\ue7ee'),\n    NOTE(\"mdrmz-note\", '\\ue44c'),\n    NOTE_ADD(\"mdrmz-note_add\", '\\ue44e'),\n    NOTES(\"mdrmz-notes\", '\\ue450'),\n    NOTIFICATION_IMPORTANT(\"mdrmz-notification_important\", '\\ue451'),\n    NOTIFICATIONS(\"mdrmz-notifications\", '\\ue453'),\n    NOTIFICATIONS_ACTIVE(\"mdrmz-notifications_active\", '\\ue455'),\n    NOTIFICATIONS_NONE(\"mdrmz-notifications_none\", '\\ue457'),\n    NOTIFICATIONS_OFF(\"mdrmz-notifications_off\", '\\ue459'),\n    NOTIFICATIONS_PAUSED(\"mdrmz-notifications_paused\", '\\ue45b'),\n    OFFLINE_BOLT(\"mdrmz-offline_bolt\", '\\ue45d'),\n    OFFLINE_PIN(\"mdrmz-offline_pin\", '\\ue45f'),\n    ONDEMAND_VIDEO(\"mdrmz-ondemand_video\", '\\ue461'),\n    ONLINE_PREDICTION(\"mdrmz-online_prediction\", '\\ue7f0'),\n    OPACITY(\"mdrmz-opacity\", '\\ue463'),\n    OPEN_IN_BROWSER(\"mdrmz-open_in_browser\", '\\ue465'),\n    OPEN_IN_FULL(\"mdrmz-open_in_full\", '\\ue7f1'),\n    OPEN_IN_NEW(\"mdrmz-open_in_new\", '\\ue466'),\n    OPEN_WITH(\"mdrmz-open_with\", '\\ue467'),\n    OUTBOND(\"mdrmz-outbond\", '\\ue8c2'),\n    OUTDOOR_GRILL(\"mdrmz-outdoor_grill\", '\\ue468'),\n    OUTLET(\"mdrmz-outlet\", '\\ue7f2'),\n    OUTLINED_FLAG(\"mdrmz-outlined_flag\", '\\ue46a'),\n    PAGES(\"mdrmz-pages\", '\\ue46b'),\n    PAGEVIEW(\"mdrmz-pageview\", '\\ue46d'),\n    PALETTE(\"mdrmz-palette\", '\\ue46f'),\n    PAN_TOOL(\"mdrmz-pan_tool\", '\\ue471'),\n    PANORAMA(\"mdrmz-panorama\", '\\ue473'),\n    PANORAMA_FISH_EYE(\"mdrmz-panorama_fish_eye\", '\\ue475'),\n    PANORAMA_HORIZONTAL(\"mdrmz-panorama_horizontal\", '\\ue477'),\n    PANORAMA_VERTICAL(\"mdrmz-panorama_vertical\", '\\ue479'),\n    PANORAMA_WIDE_ANGLE(\"mdrmz-panorama_wide_angle\", '\\ue47b'),\n    PARTY_MODE(\"mdrmz-party_mode\", '\\ue47d'),\n    PAUSE(\"mdrmz-pause\", '\\ue47f'),\n    PAUSE_CIRCLE_FILLED(\"mdrmz-pause_circle_filled\", '\\ue480'),\n    PAUSE_CIRCLE_OUTLINE(\"mdrmz-pause_circle_outline\", '\\ue482'),\n    PAUSE_PRESENTATION(\"mdrmz-pause_presentation\", '\\ue483'),\n    PAYMENT(\"mdrmz-payment\", '\\ue485'),\n    PAYMENTS(\"mdrmz-payments\", '\\ue7f4'),\n    PEDAL_BIKE(\"mdrmz-pedal_bike\", '\\ue7f6'),\n    PENDING(\"mdrmz-pending\", '\\ue7f7'),\n    PENDING_ACTIONS(\"mdrmz-pending_actions\", '\\ue7f9'),\n    PEOPLE(\"mdrmz-people\", '\\ue487'),\n    PEOPLE_ALT(\"mdrmz-people_alt\", '\\ue489'),\n    PEOPLE_OUTLINE(\"mdrmz-people_outline\", '\\ue48b'),\n    PERCENTAGE(\"mdrmz-percentage\", '\\ue48d'),\n    PERM_CAMERA_MIC(\"mdrmz-perm_camera_mic\", '\\ue48f'),\n    PERM_CONTACT_CALENDAR(\"mdrmz-perm_contact_calendar\", '\\ue491'),\n    PERM_DATA_SETTING(\"mdrmz-perm_data_setting\", '\\ue493'),\n    PERM_DEVICE_INFORMATION(\"mdrmz-perm_device_information\", '\\ue494'),\n    PERM_IDENTITY(\"mdrmz-perm_identity\", '\\ue496'),\n    PERM_MEDIA(\"mdrmz-perm_media\", '\\ue498'),\n    PERM_PHONE_MSG(\"mdrmz-perm_phone_msg\", '\\ue49a'),\n    PERM_SCAN_WIFI(\"mdrmz-perm_scan_wifi\", '\\ue49c'),\n    PERSON(\"mdrmz-person\", '\\ue49e'),\n    PERSON_ADD(\"mdrmz-person_add\", '\\ue4a0'),\n    PERSON_ADD_ALT_1(\"mdrmz-person_add_alt_1\", '\\ue7fb'),\n    PERSON_ADD_DISABLED(\"mdrmz-person_add_disabled\", '\\ue4a2'),\n    PERSON_OUTLINE(\"mdrmz-person_outline\", '\\ue4a4'),\n    PERSON_PIN(\"mdrmz-person_pin\", '\\ue4a6'),\n    PERSON_PIN_CIRCLE(\"mdrmz-person_pin_circle\", '\\ue4a8'),\n    PERSON_REMOVE(\"mdrmz-person_remove\", '\\ue7fd'),\n    PERSON_REMOVE_ALT_1(\"mdrmz-person_remove_alt_1\", '\\ue7ff'),\n    PERSON_SEARCH(\"mdrmz-person_search\", '\\ue801'),\n    PERSONAL_VIDEO(\"mdrmz-personal_video\", '\\ue4aa'),\n    PEST_CONTROL(\"mdrmz-pest_control\", '\\ue803'),\n    PEST_CONTROL_RODENT(\"mdrmz-pest_control_rodent\", '\\ue805'),\n    PETS(\"mdrmz-pets\", '\\ue4ac'),\n    PHONE(\"mdrmz-phone\", '\\ue4ad'),\n    PHONE_ANDROID(\"mdrmz-phone_android\", '\\ue4af'),\n    PHONE_BLUETOOTH_SPEAKER(\"mdrmz-phone_bluetooth_speaker\", '\\ue4b1'),\n    PHONE_CALLBACK(\"mdrmz-phone_callback\", '\\ue4b3'),\n    PHONE_DISABLED(\"mdrmz-phone_disabled\", '\\ue4b5'),\n    PHONE_ENABLED(\"mdrmz-phone_enabled\", '\\ue4b6'),\n    PHONE_FORWARDED(\"mdrmz-phone_forwarded\", '\\ue4b7'),\n    PHONE_IN_TALK(\"mdrmz-phone_in_talk\", '\\ue4b9'),\n    PHONE_IPHONE(\"mdrmz-phone_iphone\", '\\ue4bb'),\n    PHONE_LOCKED(\"mdrmz-phone_locked\", '\\ue4bd'),\n    PHONE_MISSED(\"mdrmz-phone_missed\", '\\ue4bf'),\n    PHONE_PAUSED(\"mdrmz-phone_paused\", '\\ue4c1'),\n    PHONELINK(\"mdrmz-phonelink\", '\\ue4c3'),\n    PHONELINK_ERASE(\"mdrmz-phonelink_erase\", '\\ue4c5'),\n    PHONELINK_LOCK(\"mdrmz-phonelink_lock\", '\\ue4c6'),\n    PHONELINK_OFF(\"mdrmz-phonelink_off\", '\\ue4c7'),\n    PHONELINK_RING(\"mdrmz-phonelink_ring\", '\\ue4c9'),\n    PHONELINK_SETUP(\"mdrmz-phonelink_setup\", '\\ue4cb'),\n    PHOTO(\"mdrmz-photo\", '\\ue4cc'),\n    PHOTO_ALBUM(\"mdrmz-photo_album\", '\\ue4ce'),\n    PHOTO_CAMERA(\"mdrmz-photo_camera\", '\\ue4d0'),\n    PHOTO_FILTER(\"mdrmz-photo_filter\", '\\ue4d2'),\n    PHOTO_LIBRARY(\"mdrmz-photo_library\", '\\ue4d3'),\n    PHOTO_SIZE_SELECT_ACTUAL(\"mdrmz-photo_size_select_actual\", '\\ue4d5'),\n    PHOTO_SIZE_SELECT_LARGE(\"mdrmz-photo_size_select_large\", '\\ue4d7'),\n    PHOTO_SIZE_SELECT_SMALL(\"mdrmz-photo_size_select_small\", '\\ue4d8'),\n    PICTURE_AS_PDF(\"mdrmz-picture_as_pdf\", '\\ue4d9'),\n    PICTURE_IN_PICTURE(\"mdrmz-picture_in_picture\", '\\ue4db'),\n    PICTURE_IN_PICTURE_ALT(\"mdrmz-picture_in_picture_alt\", '\\ue4dd'),\n    PIE_CHART(\"mdrmz-pie_chart\", '\\ue4df'),\n    PIN(\"mdrmz-pin\", '\\ue4e1'),\n    PIN_DROP(\"mdrmz-pin_drop\", '\\ue4e3'),\n    PIN_OFF(\"mdrmz-pin_off\", '\\ue4e5'),\n    PLACE(\"mdrmz-place\", '\\ue4e7'),\n    PLAGIARISM(\"mdrmz-plagiarism\", '\\ue807'),\n    PLAY_ARROW(\"mdrmz-play_arrow\", '\\ue4e9'),\n    PLAY_CIRCLE_FILLED(\"mdrmz-play_circle_filled\", '\\ue4eb'),\n    PLAY_CIRCLE_FILLED_WHITE(\"mdrmz-play_circle_filled_white\", '\\ue4ed'),\n    PLAY_CIRCLE_OUTLINE(\"mdrmz-play_circle_outline\", '\\ue4ef'),\n    PLAY_FOR_WORK(\"mdrmz-play_for_work\", '\\ue4f0'),\n    PLAYLIST_ADD(\"mdrmz-playlist_add\", '\\ue4f1'),\n    PLAYLIST_ADD_CHECK(\"mdrmz-playlist_add_check\", '\\ue4f2'),\n    PLAYLIST_PLAY(\"mdrmz-playlist_play\", '\\ue4f3'),\n    PLUMBING(\"mdrmz-plumbing\", '\\ue809'),\n    PLUS(\"mdrmz-plus\", '\\ue4f4'),\n    PLUS_MINUS(\"mdrmz-plus_minus\", '\\ue4f5'),\n    PLUS_MINUS_ALT(\"mdrmz-plus_minus_alt\", '\\ue4f6'),\n    PLUS_ONE(\"mdrmz-plus_one\", '\\ue4f7'),\n    POINT_OF_SALE(\"mdrmz-point_of_sale\", '\\ue80a'),\n    POLICY(\"mdrmz-policy\", '\\ue4f8'),\n    POLL(\"mdrmz-poll\", '\\ue4fa'),\n    POLYMER(\"mdrmz-polymer\", '\\ue4fc'),\n    POOL(\"mdrmz-pool\", '\\ue4fd'),\n    PORTABLE_WIFI_OFF(\"mdrmz-portable_wifi_off\", '\\ue4ff'),\n    PORTRAIT(\"mdrmz-portrait\", '\\ue500'),\n    POST_ADD(\"mdrmz-post_add\", '\\ue502'),\n    POWER(\"mdrmz-power\", '\\ue503'),\n    POWER_INPUT(\"mdrmz-power_input\", '\\ue505'),\n    POWER_OFF(\"mdrmz-power_off\", '\\ue506'),\n    POWER_SETTINGS_NEW(\"mdrmz-power_settings_new\", '\\ue508'),\n    PREGNANT_WOMAN(\"mdrmz-pregnant_woman\", '\\ue509'),\n    PRESENT_TO_ALL(\"mdrmz-present_to_all\", '\\ue50a'),\n    PREVIEW(\"mdrmz-preview\", '\\ue80c'),\n    PRINT(\"mdrmz-print\", '\\ue50c'),\n    PRINT_DISABLED(\"mdrmz-print_disabled\", '\\ue50e'),\n    PRIORITY_HIGH(\"mdrmz-priority_high\", '\\ue510'),\n    PRIVACY_TIP(\"mdrmz-privacy_tip\", '\\ue80e'),\n    PSYCHOLOGY(\"mdrmz-psychology\", '\\ue810'),\n    PUBLIC(\"mdrmz-public\", '\\ue511'),\n    PUBLIC_OFF(\"mdrmz-public_off\", '\\ue812'),\n    PUBLISH(\"mdrmz-publish\", '\\ue513'),\n    PUBLISHED_WITH_CHANGES(\"mdrmz-published_with_changes\", '\\ue8c4'),\n    PUSH_PIN(\"mdrmz-push_pin\", '\\ue814'),\n    QR_CODE(\"mdrmz-qr_code\", '\\ue816'),\n    QR_CODE_2(\"mdrmz-qr_code_2\", '\\ue8d1'),\n    QR_CODE_SCANNER(\"mdrmz-qr_code_scanner\", '\\ue885'),\n    QRCODE(\"mdrmz-qrcode\", '\\ue515'),\n    QUERY_BUILDER(\"mdrmz-query_builder\", '\\ue517'),\n    QUESTION_ANSWER(\"mdrmz-question_answer\", '\\ue519'),\n    QUEUE(\"mdrmz-queue\", '\\ue51b'),\n    QUEUE_MUSIC(\"mdrmz-queue_music\", '\\ue51d'),\n    QUEUE_PLAY_NEXT(\"mdrmz-queue_play_next\", '\\ue51f'),\n    QUICKREPLY(\"mdrmz-quickreply\", '\\ue818'),\n    RADIO(\"mdrmz-radio\", '\\ue520'),\n    RADIO_BUTTON_CHECKED(\"mdrmz-radio_button_checked\", '\\ue522'),\n    RADIO_BUTTON_UNCHECKED(\"mdrmz-radio_button_unchecked\", '\\ue523'),\n    RATE_REVIEW(\"mdrmz-rate_review\", '\\ue524'),\n    READ_MORE(\"mdrmz-read_more\", '\\ue81a'),\n    RECEIPT(\"mdrmz-receipt\", '\\ue526'),\n    RECEIPT_LONG(\"mdrmz-receipt_long\", '\\ue81b'),\n    RECENT_ACTORS(\"mdrmz-recent_actors\", '\\ue528'),\n    RECORD_VOICE_OVER(\"mdrmz-record_voice_over\", '\\ue52a'),\n    REDEEM(\"mdrmz-redeem\", '\\ue52c'),\n    REDO(\"mdrmz-redo\", '\\ue52e'),\n    REDUCE_CAPACITY(\"mdrmz-reduce_capacity\", '\\ue8af'),\n    REFRESH(\"mdrmz-refresh\", '\\ue52f'),\n    REMOVE(\"mdrmz-remove\", '\\ue530'),\n    REMOVE_CIRCLE(\"mdrmz-remove_circle\", '\\ue531'),\n    REMOVE_CIRCLE_OUTLINE(\"mdrmz-remove_circle_outline\", '\\ue533'),\n    REMOVE_FROM_QUEUE(\"mdrmz-remove_from_queue\", '\\ue534'),\n    REMOVE_RED_EYE(\"mdrmz-remove_red_eye\", '\\ue536'),\n    REMOVE_SHOPPING_CART(\"mdrmz-remove_shopping_cart\", '\\ue538'),\n    REORDER(\"mdrmz-reorder\", '\\ue53a'),\n    REPEAT(\"mdrmz-repeat\", '\\ue53b'),\n    REPEAT_ONE(\"mdrmz-repeat_one\", '\\ue53c'),\n    REPLAY(\"mdrmz-replay\", '\\ue53d'),\n    REPLAY_10(\"mdrmz-replay_10\", '\\ue53e'),\n    REPLAY_30(\"mdrmz-replay_30\", '\\ue53f'),\n    REPLAY_5(\"mdrmz-replay_5\", '\\ue540'),\n    REPLY(\"mdrmz-reply\", '\\ue541'),\n    REPLY_ALL(\"mdrmz-reply_all\", '\\ue542'),\n    REPORT(\"mdrmz-report\", '\\ue543'),\n    REPORT_OFF(\"mdrmz-report_off\", '\\ue545'),\n    REPORT_PROBLEM(\"mdrmz-report_problem\", '\\ue547'),\n    REQUEST_PAGE(\"mdrmz-request_page\", '\\ue8c5'),\n    REQUEST_QUOTE(\"mdrmz-request_quote\", '\\ue81d'),\n    RESTAURANT(\"mdrmz-restaurant\", '\\ue549'),\n    RESTAURANT_MENU(\"mdrmz-restaurant_menu\", '\\ue54a'),\n    RESTORE(\"mdrmz-restore\", '\\ue54b'),\n    RESTORE_FROM_TRASH(\"mdrmz-restore_from_trash\", '\\ue54c'),\n    RESTORE_PAGE(\"mdrmz-restore_page\", '\\ue54e'),\n    RICE_BOWL(\"mdrmz-rice_bowl\", '\\ue886'),\n    RING_VOLUME(\"mdrmz-ring_volume\", '\\ue550'),\n    ROCKET(\"mdrmz-rocket\", '\\ue552'),\n    ROOFING(\"mdrmz-roofing\", '\\ue888'),\n    ROOM(\"mdrmz-room\", '\\ue554'),\n    ROOM_PREFERENCES(\"mdrmz-room_preferences\", '\\ue81f'),\n    ROOM_SERVICE(\"mdrmz-room_service\", '\\ue556'),\n    ROTATE_90_DEGREES_CCW(\"mdrmz-rotate_90_degrees_ccw\", '\\ue558'),\n    ROTATE_LEFT(\"mdrmz-rotate_left\", '\\ue55a'),\n    ROTATE_RIGHT(\"mdrmz-rotate_right\", '\\ue55b'),\n    ROUNDED_CORNER(\"mdrmz-rounded_corner\", '\\ue55c'),\n    ROUTER(\"mdrmz-router\", '\\ue55d'),\n    ROWING(\"mdrmz-rowing\", '\\ue55f'),\n    RSS_FEED(\"mdrmz-rss_feed\", '\\ue560'),\n    RULE(\"mdrmz-rule\", '\\ue821'),\n    RULE_FOLDER(\"mdrmz-rule_folder\", '\\ue822'),\n    RUN_CIRCLE(\"mdrmz-run_circle\", '\\ue824'),\n    RV_HOOKUP(\"mdrmz-rv_hookup\", '\\ue561'),\n    SANITIZER(\"mdrmz-sanitizer\", '\\ue8b0'),\n    SATELLITE(\"mdrmz-satellite\", '\\ue563'),\n    SAVE(\"mdrmz-save\", '\\ue565'),\n    SAVE_ALT(\"mdrmz-save_alt\", '\\ue567'),\n    SCANNER(\"mdrmz-scanner\", '\\ue568'),\n    SCATTER_PLOT(\"mdrmz-scatter_plot\", '\\ue56a'),\n    SCHEDULE(\"mdrmz-schedule\", '\\ue56c'),\n    SCHOOL(\"mdrmz-school\", '\\ue56e'),\n    SCIENCE(\"mdrmz-science\", '\\ue826'),\n    SCORE(\"mdrmz-score\", '\\ue570'),\n    SCREEN_LOCK_LANDSCAPE(\"mdrmz-screen_lock_landscape\", '\\ue572'),\n    SCREEN_LOCK_PORTRAIT(\"mdrmz-screen_lock_portrait\", '\\ue574'),\n    SCREEN_LOCK_ROTATION(\"mdrmz-screen_lock_rotation\", '\\ue576'),\n    SCREEN_ROTATION(\"mdrmz-screen_rotation\", '\\ue577'),\n    SCREEN_SHARE(\"mdrmz-screen_share\", '\\ue579'),\n    SD_CARD(\"mdrmz-sd_card\", '\\ue57b'),\n    SD_STORAGE(\"mdrmz-sd_storage\", '\\ue57d'),\n    SEARCH(\"mdrmz-search\", '\\ue57f'),\n    SEARCH_OFF(\"mdrmz-search_off\", '\\ue828'),\n    SECURITY(\"mdrmz-security\", '\\ue580'),\n    SELECT_ALL(\"mdrmz-select_all\", '\\ue582'),\n    SELF_IMPROVEMENT(\"mdrmz-self_improvement\", '\\ue829'),\n    SEND(\"mdrmz-send\", '\\ue583'),\n    SENSOR_DOOR(\"mdrmz-sensor_door\", '\\ue82a'),\n    SENSOR_WINDOW(\"mdrmz-sensor_window\", '\\ue82c'),\n    SENTIMENT_DISSATISFIED(\"mdrmz-sentiment_dissatisfied\", '\\ue585'),\n    SENTIMENT_NEUTRAL(\"mdrmz-sentiment_neutral\", '\\ue587'),\n    SENTIMENT_SATISFIED(\"mdrmz-sentiment_satisfied\", '\\ue589'),\n    SENTIMENT_SATISFIED_ALT(\"mdrmz-sentiment_satisfied_alt\", '\\ue58b'),\n    SENTIMENT_SLIGHTLY_DISSATISFIED(\"mdrmz-sentiment_slightly_dissatisfied\", '\\ue58d'),\n    SENTIMENT_VERY_DISSATISFIED(\"mdrmz-sentiment_very_dissatisfied\", '\\ue58f'),\n    SENTIMENT_VERY_SATISFIED(\"mdrmz-sentiment_very_satisfied\", '\\ue591'),\n    SET_MEAL(\"mdrmz-set_meal\", '\\ue88a'),\n    SETTINGS(\"mdrmz-settings\", '\\ue593'),\n    SETTINGS_APPLICATIONS(\"mdrmz-settings_applications\", '\\ue595'),\n    SETTINGS_BACKUP_RESTORE(\"mdrmz-settings_backup_restore\", '\\ue597'),\n    SETTINGS_BLUETOOTH(\"mdrmz-settings_bluetooth\", '\\ue598'),\n    SETTINGS_BRIGHTNESS(\"mdrmz-settings_brightness\", '\\ue599'),\n    SETTINGS_CELL(\"mdrmz-settings_cell\", '\\ue59b'),\n    SETTINGS_ETHERNET(\"mdrmz-settings_ethernet\", '\\ue59d'),\n    SETTINGS_INPUT_ANTENNA(\"mdrmz-settings_input_antenna\", '\\ue59e'),\n    SETTINGS_INPUT_COMPONENT(\"mdrmz-settings_input_component\", '\\ue59f'),\n    SETTINGS_INPUT_COMPOSITE(\"mdrmz-settings_input_composite\", '\\ue5a1'),\n    SETTINGS_INPUT_HDMI(\"mdrmz-settings_input_hdmi\", '\\ue5a3'),\n    SETTINGS_INPUT_SVIDEO(\"mdrmz-settings_input_svideo\", '\\ue5a5'),\n    SETTINGS_OVERSCAN(\"mdrmz-settings_overscan\", '\\ue5a7'),\n    SETTINGS_PHONE(\"mdrmz-settings_phone\", '\\ue5a9'),\n    SETTINGS_POWER(\"mdrmz-settings_power\", '\\ue5ab'),\n    SETTINGS_REMOTE(\"mdrmz-settings_remote\", '\\ue5ac'),\n    SETTINGS_SYSTEM_DAYDREAM(\"mdrmz-settings_system_daydream\", '\\ue5ae'),\n    SETTINGS_VOICE(\"mdrmz-settings_voice\", '\\ue5b0'),\n    SHARE(\"mdrmz-share\", '\\ue5b2'),\n    SHOP(\"mdrmz-shop\", '\\ue5b4'),\n    SHOP_TWO(\"mdrmz-shop_two\", '\\ue5b6'),\n    SHOPPING_BAG(\"mdrmz-shopping_bag\", '\\ue82e'),\n    SHOPPING_BASKET(\"mdrmz-shopping_basket\", '\\ue5b8'),\n    SHOPPING_CART(\"mdrmz-shopping_cart\", '\\ue5ba'),\n    SHORT_TEXT(\"mdrmz-short_text\", '\\ue5bc'),\n    SHOW_CHART(\"mdrmz-show_chart\", '\\ue5bd'),\n    SHUFFLE(\"mdrmz-shuffle\", '\\ue5be'),\n    SHUTTER_SPEED(\"mdrmz-shutter_speed\", '\\ue5bf'),\n    SICK(\"mdrmz-sick\", '\\ue8b2'),\n    SIGNAL_CELLULAR_0_BAR(\"mdrmz-signal_cellular_0_bar\", '\\ue5c1'),\n    SIGNAL_CELLULAR_1_BAR(\"mdrmz-signal_cellular_1_bar\", '\\ue5c3'),\n    SIGNAL_CELLULAR_2_BAR(\"mdrmz-signal_cellular_2_bar\", '\\ue5c5'),\n    SIGNAL_CELLULAR_3_BAR(\"mdrmz-signal_cellular_3_bar\", '\\ue5c7'),\n    SIGNAL_CELLULAR_4_BAR(\"mdrmz-signal_cellular_4_bar\", '\\ue5c9'),\n    SIGNAL_CELLULAR_ALT(\"mdrmz-signal_cellular_alt\", '\\ue5ca'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR(\"mdrmz-signal_cellular_connected_no_internet_0_bar\", '\\ue5cb'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_1_BAR(\"mdrmz-signal_cellular_connected_no_internet_1_bar\", '\\ue5cd'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_2_BAR(\"mdrmz-signal_cellular_connected_no_internet_2_bar\", '\\ue5cf'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_3_BAR(\"mdrmz-signal_cellular_connected_no_internet_3_bar\", '\\ue5d1'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR(\"mdrmz-signal_cellular_connected_no_internet_4_bar\", '\\ue5d3'),\n    SIGNAL_CELLULAR_NO_SIM(\"mdrmz-signal_cellular_no_sim\", '\\ue5d4'),\n    SIGNAL_CELLULAR_NULL(\"mdrmz-signal_cellular_null\", '\\ue5d6'),\n    SIGNAL_CELLULAR_OFF(\"mdrmz-signal_cellular_off\", '\\ue5d7'),\n    SIGNAL_WIFI_0_BAR(\"mdrmz-signal_wifi_0_bar\", '\\ue5d8'),\n    SIGNAL_WIFI_1_BAR(\"mdrmz-signal_wifi_1_bar\", '\\ue5da'),\n    SIGNAL_WIFI_1_BAR_LOCK(\"mdrmz-signal_wifi_1_bar_lock\", '\\ue5dc'),\n    SIGNAL_WIFI_2_BAR(\"mdrmz-signal_wifi_2_bar\", '\\ue5de'),\n    SIGNAL_WIFI_2_BAR_LOCK(\"mdrmz-signal_wifi_2_bar_lock\", '\\ue5e0'),\n    SIGNAL_WIFI_3_BAR(\"mdrmz-signal_wifi_3_bar\", '\\ue5e2'),\n    SIGNAL_WIFI_3_BAR_LOCK(\"mdrmz-signal_wifi_3_bar_lock\", '\\ue5e4'),\n    SIGNAL_WIFI_4_BAR(\"mdrmz-signal_wifi_4_bar\", '\\ue5e6'),\n    SIGNAL_WIFI_4_BAR_LOCK(\"mdrmz-signal_wifi_4_bar_lock\", '\\ue5e7'),\n    SIGNAL_WIFI_OFF(\"mdrmz-signal_wifi_off\", '\\ue5e8'),\n    SIM_CARD(\"mdrmz-sim_card\", '\\ue5e9'),\n    SIM_CARD_ALERT(\"mdrmz-sim_card_alert\", '\\ue5eb'),\n    SINGLE_BED(\"mdrmz-single_bed\", '\\ue5ed'),\n    SKIP_NEXT(\"mdrmz-skip_next\", '\\ue5ef'),\n    SKIP_PREVIOUS(\"mdrmz-skip_previous\", '\\ue5f1'),\n    SLIDESHOW(\"mdrmz-slideshow\", '\\ue5f3'),\n    SLOW_MOTION_VIDEO(\"mdrmz-slow_motion_video\", '\\ue5f5'),\n    SMART_BUTTON(\"mdrmz-smart_button\", '\\ue830'),\n    SMARTPHONE(\"mdrmz-smartphone\", '\\ue5f6'),\n    SMOKE_FREE(\"mdrmz-smoke_free\", '\\ue5f8'),\n    SMOKING_ROOMS(\"mdrmz-smoking_rooms\", '\\ue5f9'),\n    SMS(\"mdrmz-sms\", '\\ue5fb'),\n    SMS_FAILED(\"mdrmz-sms_failed\", '\\ue5fd'),\n    SNIPPET_FOLDER(\"mdrmz-snippet_folder\", '\\ue831'),\n    SNOOZE(\"mdrmz-snooze\", '\\ue5ff'),\n    SOAP(\"mdrmz-soap\", '\\ue833'),\n    SORT(\"mdrmz-sort\", '\\ue600'),\n    SORT_BY_ALPHA(\"mdrmz-sort_by_alpha\", '\\ue601'),\n    SOURCE(\"mdrmz-source\", '\\ue835'),\n    SOUTH(\"mdrmz-south\", '\\ue88c'),\n    SOUTH_EAST(\"mdrmz-south_east\", '\\ue88d'),\n    SOUTH_WEST(\"mdrmz-south_west\", '\\ue88e'),\n    SPA(\"mdrmz-spa\", '\\ue602'),\n    SPACE_BAR(\"mdrmz-space_bar\", '\\ue604'),\n    SPEAKER(\"mdrmz-speaker\", '\\ue605'),\n    SPEAKER_GROUP(\"mdrmz-speaker_group\", '\\ue607'),\n    SPEAKER_NOTES(\"mdrmz-speaker_notes\", '\\ue609'),\n    SPEAKER_NOTES_OFF(\"mdrmz-speaker_notes_off\", '\\ue60b'),\n    SPEAKER_PHONE(\"mdrmz-speaker_phone\", '\\ue60d'),\n    SPEED(\"mdrmz-speed\", '\\ue60f'),\n    SPELLCHECK(\"mdrmz-spellcheck\", '\\ue610'),\n    SPORTS(\"mdrmz-sports\", '\\ue611'),\n    SPORTS_BAR(\"mdrmz-sports_bar\", '\\ue88f'),\n    SPORTS_BASEBALL(\"mdrmz-sports_baseball\", '\\ue612'),\n    SPORTS_BASKETBALL(\"mdrmz-sports_basketball\", '\\ue614'),\n    SPORTS_CRICKET(\"mdrmz-sports_cricket\", '\\ue616'),\n    SPORTS_ESPORTS(\"mdrmz-sports_esports\", '\\ue618'),\n    SPORTS_FOOTBALL(\"mdrmz-sports_football\", '\\ue61a'),\n    SPORTS_GOLF(\"mdrmz-sports_golf\", '\\ue61c'),\n    SPORTS_HANDBALL(\"mdrmz-sports_handball\", '\\ue61e'),\n    SPORTS_HOCKEY(\"mdrmz-sports_hockey\", '\\ue61f'),\n    SPORTS_KABADDI(\"mdrmz-sports_kabaddi\", '\\ue620'),\n    SPORTS_MMA(\"mdrmz-sports_mma\", '\\ue621'),\n    SPORTS_MOTORSPORTS(\"mdrmz-sports_motorsports\", '\\ue623'),\n    SPORTS_RUGBY(\"mdrmz-sports_rugby\", '\\ue625'),\n    SPORTS_SOCCER(\"mdrmz-sports_soccer\", '\\ue627'),\n    SPORTS_TENNIS(\"mdrmz-sports_tennis\", '\\ue629'),\n    SPORTS_VOLLEYBALL(\"mdrmz-sports_volleyball\", '\\ue62a'),\n    SQUARE_FOOT(\"mdrmz-square_foot\", '\\ue62c'),\n    STACKED_LINE_CHART(\"mdrmz-stacked_line_chart\", '\\ue8c7'),\n    STAIRS(\"mdrmz-stairs\", '\\ue837'),\n    STAR(\"mdrmz-star\", '\\ue62e'),\n    STAR_BORDER(\"mdrmz-star_border\", '\\ue630'),\n    STAR_HALF(\"mdrmz-star_half\", '\\ue631'),\n    STAR_OUTLINE(\"mdrmz-star_outline\", '\\ue748'),\n    STAR_RATE(\"mdrmz-star_rate\", '\\ue632'),\n    STARS(\"mdrmz-stars\", '\\ue633'),\n    STAY_CURRENT_LANDSCAPE(\"mdrmz-stay_current_landscape\", '\\ue635'),\n    STAY_CURRENT_PORTRAIT(\"mdrmz-stay_current_portrait\", '\\ue637'),\n    STAY_PRIMARY_LANDSCAPE(\"mdrmz-stay_primary_landscape\", '\\ue639'),\n    STAY_PRIMARY_PORTRAIT(\"mdrmz-stay_primary_portrait\", '\\ue63b'),\n    STICKY_NOTE_2(\"mdrmz-sticky_note_2\", '\\ue891'),\n    STOP(\"mdrmz-stop\", '\\ue63d'),\n    STOP_CIRCLE(\"mdrmz-stop_circle\", '\\ue63f'),\n    STOP_SCREEN_SHARE(\"mdrmz-stop_screen_share\", '\\ue641'),\n    STORAGE(\"mdrmz-storage\", '\\ue643'),\n    STORE(\"mdrmz-store\", '\\ue644'),\n    STORE_MALL_DIRECTORY(\"mdrmz-store_mall_directory\", '\\ue646'),\n    STOREFRONT(\"mdrmz-storefront\", '\\ue648'),\n    STRAIGHTEN(\"mdrmz-straighten\", '\\ue64a'),\n    STREETVIEW(\"mdrmz-streetview\", '\\ue64c'),\n    STRIKETHROUGH_S(\"mdrmz-strikethrough_s\", '\\ue64d'),\n    STROLLER(\"mdrmz-stroller\", '\\ue839'),\n    STYLE(\"mdrmz-style\", '\\ue64e'),\n    SUBDIRECTORY_ARROW_LEFT(\"mdrmz-subdirectory_arrow_left\", '\\ue650'),\n    SUBDIRECTORY_ARROW_RIGHT(\"mdrmz-subdirectory_arrow_right\", '\\ue651'),\n    SUBJECT(\"mdrmz-subject\", '\\ue652'),\n    SUBSCRIPT(\"mdrmz-subscript\", '\\ue83b'),\n    SUBSCRIPTIONS(\"mdrmz-subscriptions\", '\\ue653'),\n    SUBTITLES(\"mdrmz-subtitles\", '\\ue655'),\n    SUBTITLES_OFF(\"mdrmz-subtitles_off\", '\\ue83c'),\n    SUBWAY(\"mdrmz-subway\", '\\ue657'),\n    SUPERSCRIPT(\"mdrmz-superscript\", '\\ue83e'),\n    SUPERVISED_USER_CIRCLE(\"mdrmz-supervised_user_circle\", '\\ue659'),\n    SUPERVISOR_ACCOUNT(\"mdrmz-supervisor_account\", '\\ue65b'),\n    SUPPORT(\"mdrmz-support\", '\\ue83f'),\n    SUPPORT_AGENT(\"mdrmz-support_agent\", '\\ue841'),\n    SURROUND_SOUND(\"mdrmz-surround_sound\", '\\ue65d'),\n    SWAP_CALLS(\"mdrmz-swap_calls\", '\\ue65f'),\n    SWAP_HORIZ(\"mdrmz-swap_horiz\", '\\ue660'),\n    SWAP_HORIZONTAL_CIRCLE(\"mdrmz-swap_horizontal_circle\", '\\ue661'),\n    SWAP_VERT(\"mdrmz-swap_vert\", '\\ue663'),\n    SWAP_VERTICAL_CIRCLE(\"mdrmz-swap_vertical_circle\", '\\ue664'),\n    SWITCH_CAMERA(\"mdrmz-switch_camera\", '\\ue666'),\n    SWITCH_LEFT(\"mdrmz-switch_left\", '\\ue842'),\n    SWITCH_RIGHT(\"mdrmz-switch_right\", '\\ue844'),\n    SWITCH_VIDEO(\"mdrmz-switch_video\", '\\ue668'),\n    SYNC(\"mdrmz-sync\", '\\ue66a'),\n    SYNC_ALT(\"mdrmz-sync_alt\", '\\ue66b'),\n    SYNC_DISABLED(\"mdrmz-sync_disabled\", '\\ue66c'),\n    SYNC_PROBLEM(\"mdrmz-sync_problem\", '\\ue66d'),\n    SYSTEM_UPDATE(\"mdrmz-system_update\", '\\ue66e'),\n    SYSTEM_UPDATE_ALT(\"mdrmz-system_update_alt\", '\\ue670'),\n    TAB(\"mdrmz-tab\", '\\ue671'),\n    TAB_UNSELECTED(\"mdrmz-tab_unselected\", '\\ue672'),\n    TABLE_CHART(\"mdrmz-table_chart\", '\\ue673'),\n    TABLE_ROWS(\"mdrmz-table_rows\", '\\ue846'),\n    TABLE_VIEW(\"mdrmz-table_view\", '\\ue848'),\n    TABLET(\"mdrmz-tablet\", '\\ue675'),\n    TABLET_ANDROID(\"mdrmz-tablet_android\", '\\ue677'),\n    TABLET_MAC(\"mdrmz-tablet_mac\", '\\ue679'),\n    TAG_FACES(\"mdrmz-tag_faces\", '\\ue67b'),\n    TAP_AND_PLAY(\"mdrmz-tap_and_play\", '\\ue67d'),\n    TAPAS(\"mdrmz-tapas\", '\\ue893'),\n    TERRAIN(\"mdrmz-terrain\", '\\ue67e'),\n    TEXT_FIELDS(\"mdrmz-text_fields\", '\\ue680'),\n    TEXT_FORMAT(\"mdrmz-text_format\", '\\ue681'),\n    TEXT_ROTATE_UP(\"mdrmz-text_rotate_up\", '\\ue682'),\n    TEXT_ROTATE_VERTICAL(\"mdrmz-text_rotate_vertical\", '\\ue683'),\n    TEXT_ROTATION_ANGLEDOWN(\"mdrmz-text_rotation_angledown\", '\\ue684'),\n    TEXT_ROTATION_ANGLEUP(\"mdrmz-text_rotation_angleup\", '\\ue685'),\n    TEXT_ROTATION_DOWN(\"mdrmz-text_rotation_down\", '\\ue686'),\n    TEXT_ROTATION_NONE(\"mdrmz-text_rotation_none\", '\\ue687'),\n    TEXT_SNIPPET(\"mdrmz-text_snippet\", '\\ue84a'),\n    TEXTSMS(\"mdrmz-textsms\", '\\ue688'),\n    TEXTURE(\"mdrmz-texture\", '\\ue68a'),\n    THEATERS(\"mdrmz-theaters\", '\\ue68b'),\n    THUMB_DOWN(\"mdrmz-thumb_down\", '\\ue68d'),\n    THUMB_DOWN_ALT(\"mdrmz-thumb_down_alt\", '\\ue68f'),\n    THUMB_UP(\"mdrmz-thumb_up\", '\\ue691'),\n    THUMB_UP_ALT(\"mdrmz-thumb_up_alt\", '\\ue693'),\n    THUMBS_UP_DOWN(\"mdrmz-thumbs_up_down\", '\\ue695'),\n    TIME_TO_LEAVE(\"mdrmz-time_to_leave\", '\\ue697'),\n    TIMELAPSE(\"mdrmz-timelapse\", '\\ue699'),\n    TIMELINE(\"mdrmz-timeline\", '\\ue69b'),\n    TIMER(\"mdrmz-timer\", '\\ue69c'),\n    TIMER_10(\"mdrmz-timer_10\", '\\ue69e'),\n    TIMER_3(\"mdrmz-timer_3\", '\\ue69f'),\n    TIMER_OFF(\"mdrmz-timer_off\", '\\ue6a0'),\n    TITLE(\"mdrmz-title\", '\\ue6a2'),\n    TOC(\"mdrmz-toc\", '\\ue6a3'),\n    TODAY(\"mdrmz-today\", '\\ue6a4'),\n    TOGGLE_OFF(\"mdrmz-toggle_off\", '\\ue6a6'),\n    TOGGLE_ON(\"mdrmz-toggle_on\", '\\ue6a8'),\n    TOLL(\"mdrmz-toll\", '\\ue6aa'),\n    TONALITY(\"mdrmz-tonality\", '\\ue6ac'),\n    TOPIC(\"mdrmz-topic\", '\\ue84c'),\n    TOUCH_APP(\"mdrmz-touch_app\", '\\ue6ae'),\n    TOUR(\"mdrmz-tour\", '\\ue84e'),\n    TOYS(\"mdrmz-toys\", '\\ue6b0'),\n    TRACK_CHANGES(\"mdrmz-track_changes\", '\\ue6b2'),\n    TRAFFIC(\"mdrmz-traffic\", '\\ue6b3'),\n    TRAIN(\"mdrmz-train\", '\\ue6b5'),\n    TRAM(\"mdrmz-tram\", '\\ue6b7'),\n    TRANSFER_WITHIN_A_STATION(\"mdrmz-transfer_within_a_station\", '\\ue6b9'),\n    TRANSFORM(\"mdrmz-transform\", '\\ue6ba'),\n    TRANSIT_ENTEREXIT(\"mdrmz-transit_enterexit\", '\\ue6bb'),\n    TRANSLATE(\"mdrmz-translate\", '\\ue6bc'),\n    TRENDING_DOWN(\"mdrmz-trending_down\", '\\ue6bd'),\n    TRENDING_FLAT(\"mdrmz-trending_flat\", '\\ue6be'),\n    TRENDING_UP(\"mdrmz-trending_up\", '\\ue6bf'),\n    TRIP_ORIGIN(\"mdrmz-trip_origin\", '\\ue6c0'),\n    TTY(\"mdrmz-tty\", '\\ue850'),\n    TUNE(\"mdrmz-tune\", '\\ue6c1'),\n    TURNED_IN(\"mdrmz-turned_in\", '\\ue6c2'),\n    TURNED_IN_NOT(\"mdrmz-turned_in_not\", '\\ue6c4'),\n    TV(\"mdrmz-tv\", '\\ue6c5'),\n    TV_OFF(\"mdrmz-tv_off\", '\\ue6c7'),\n    TWO_WHEELER(\"mdrmz-two_wheeler\", '\\ue749'),\n    UMBRELLA(\"mdrmz-umbrella\", '\\ue852'),\n    UNARCHIVE(\"mdrmz-unarchive\", '\\ue6c9'),\n    UNDO(\"mdrmz-undo\", '\\ue6cb'),\n    UNFOLD_LESS(\"mdrmz-unfold_less\", '\\ue6cc'),\n    UNFOLD_MORE(\"mdrmz-unfold_more\", '\\ue6cd'),\n    UNPUBLISHED(\"mdrmz-unpublished\", '\\ue8c8'),\n    UNSUBSCRIBE(\"mdrmz-unsubscribe\", '\\ue6ce'),\n    UPDATE(\"mdrmz-update\", '\\ue6d0'),\n    UPDATE_DISABLED(\"mdrmz-update_disabled\", '\\ue8d2'),\n    UPGRADE(\"mdrmz-upgrade\", '\\ue854'),\n    USB(\"mdrmz-usb\", '\\ue6d1'),\n    VERIFIED(\"mdrmz-verified\", '\\ue855'),\n    VERIFIED_USER(\"mdrmz-verified_user\", '\\ue6d2'),\n    VERTICAL_ALIGN_BOTTOM(\"mdrmz-vertical_align_bottom\", '\\ue6d4'),\n    VERTICAL_ALIGN_CENTER(\"mdrmz-vertical_align_center\", '\\ue6d5'),\n    VERTICAL_ALIGN_TOP(\"mdrmz-vertical_align_top\", '\\ue6d6'),\n    VERTICAL_DISTRIBUTE(\"mdrmz-vertical_distribute\", '\\ue8d3'),\n    VERTICAL_SPLIT(\"mdrmz-vertical_split\", '\\ue6d7'),\n    VIBRATION(\"mdrmz-vibration\", '\\ue6d9'),\n    VIDEO_CALL(\"mdrmz-video_call\", '\\ue6db'),\n    VIDEO_LABEL(\"mdrmz-video_label\", '\\ue6dd'),\n    VIDEO_LIBRARY(\"mdrmz-video_library\", '\\ue6df'),\n    VIDEO_SETTINGS(\"mdrmz-video_settings\", '\\ue857'),\n    VIDEOCAM(\"mdrmz-videocam\", '\\ue6e1'),\n    VIDEOCAM_OFF(\"mdrmz-videocam_off\", '\\ue6e3'),\n    VIDEOGAME_ASSET(\"mdrmz-videogame_asset\", '\\ue6e5'),\n    VIEW_AGENDA(\"mdrmz-view_agenda\", '\\ue6e7'),\n    VIEW_ARRAY(\"mdrmz-view_array\", '\\ue6e9'),\n    VIEW_CAROUSEL(\"mdrmz-view_carousel\", '\\ue6eb'),\n    VIEW_COLUMN(\"mdrmz-view_column\", '\\ue6ed'),\n    VIEW_COMFY(\"mdrmz-view_comfy\", '\\ue6ef'),\n    VIEW_COMPACT(\"mdrmz-view_compact\", '\\ue6f1'),\n    VIEW_DAY(\"mdrmz-view_day\", '\\ue6f3'),\n    VIEW_HEADLINE(\"mdrmz-view_headline\", '\\ue6f5'),\n    VIEW_LIST(\"mdrmz-view_list\", '\\ue6f6'),\n    VIEW_MODULE(\"mdrmz-view_module\", '\\ue6f8'),\n    VIEW_QUILT(\"mdrmz-view_quilt\", '\\ue6fa'),\n    VIEW_SIDEBAR(\"mdrmz-view_sidebar\", '\\ue858'),\n    VIEW_STREAM(\"mdrmz-view_stream\", '\\ue6fc'),\n    VIEW_WEEK(\"mdrmz-view_week\", '\\ue6fe'),\n    VIGNETTE(\"mdrmz-vignette\", '\\ue700'),\n    VISIBILITY(\"mdrmz-visibility\", '\\ue702'),\n    VISIBILITY_OFF(\"mdrmz-visibility_off\", '\\ue704'),\n    VOICE_CHAT(\"mdrmz-voice_chat\", '\\ue706'),\n    VOICE_OVER_OFF(\"mdrmz-voice_over_off\", '\\ue708'),\n    VOICEMAIL(\"mdrmz-voicemail\", '\\ue70a'),\n    VOLUME_DOWN(\"mdrmz-volume_down\", '\\ue70b'),\n    VOLUME_MUTE(\"mdrmz-volume_mute\", '\\ue70d'),\n    VOLUME_OFF(\"mdrmz-volume_off\", '\\ue70f'),\n    VOLUME_UP(\"mdrmz-volume_up\", '\\ue711'),\n    VPN_KEY(\"mdrmz-vpn_key\", '\\ue713'),\n    VPN_LOCK(\"mdrmz-vpn_lock\", '\\ue715'),\n    WALLPAPER(\"mdrmz-wallpaper\", '\\ue717'),\n    WARNING(\"mdrmz-warning\", '\\ue718'),\n    WASH(\"mdrmz-wash\", '\\ue85a'),\n    WATCH(\"mdrmz-watch\", '\\ue71a'),\n    WATCH_LATER(\"mdrmz-watch_later\", '\\ue71c'),\n    WATER_DAMAGE(\"mdrmz-water_damage\", '\\ue895'),\n    WAVES(\"mdrmz-waves\", '\\ue71e'),\n    WB_AUTO(\"mdrmz-wb_auto\", '\\ue71f'),\n    WB_CLOUDY(\"mdrmz-wb_cloudy\", '\\ue721'),\n    WB_INCANDESCENT(\"mdrmz-wb_incandescent\", '\\ue723'),\n    WB_IRIDESCENT(\"mdrmz-wb_iridescent\", '\\ue725'),\n    WB_SUNNY(\"mdrmz-wb_sunny\", '\\ue727'),\n    WC(\"mdrmz-wc\", '\\ue729'),\n    WEB(\"mdrmz-web\", '\\ue72a'),\n    WEB_ASSET(\"mdrmz-web_asset\", '\\ue72c'),\n    WEEKEND(\"mdrmz-weekend\", '\\ue72e'),\n    WEST(\"mdrmz-west\", '\\ue897'),\n    WHATSHOT(\"mdrmz-whatshot\", '\\ue730'),\n    WHEELCHAIR_PICKUP(\"mdrmz-wheelchair_pickup\", '\\ue85c'),\n    WHERE_TO_VOTE(\"mdrmz-where_to_vote\", '\\ue732'),\n    WIDGETS(\"mdrmz-widgets\", '\\ue734'),\n    WIFI(\"mdrmz-wifi\", '\\ue736'),\n    WIFI_CALLING(\"mdrmz-wifi_calling\", '\\ue85d'),\n    WIFI_LOCK(\"mdrmz-wifi_lock\", '\\ue737'),\n    WIFI_OFF(\"mdrmz-wifi_off\", '\\ue738'),\n    WIFI_PROTECTED_SETUP(\"mdrmz-wifi_protected_setup\", '\\ue85f'),\n    WIFI_TETHERING(\"mdrmz-wifi_tethering\", '\\ue739'),\n    WINE_BAR(\"mdrmz-wine_bar\", '\\ue898'),\n    WORK(\"mdrmz-work\", '\\ue73a'),\n    WORK_OFF(\"mdrmz-work_off\", '\\ue73c'),\n    WORK_OUTLINE(\"mdrmz-work_outline\", '\\ue73e'),\n    WRAP_TEXT(\"mdrmz-wrap_text\", '\\ue73f'),\n    WRONG_LOCATION(\"mdrmz-wrong_location\", '\\ue860'),\n    WYSIWYG(\"mdrmz-wysiwyg\", '\\ue861'),\n    YOUTUBE_SEARCHED_FOR(\"mdrmz-youtube_searched_for\", '\\ue740'),\n    ZOOM_IN(\"mdrmz-zoom_in\", '\\ue741'),\n    ZOOM_OUT(\"mdrmz-zoom_out\", '\\ue742'),\n    ZOOM_OUT_MAP(\"mdrmz-zoom_out_map\", '\\ue743');\n\n    public static Material2RoundMZ findByDescription(String description) {\n        for (Material2RoundMZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Material2RoundMZ(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2RoundMZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Material2RoundMZIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/material2/20200820/fonts/MaterialIcons-Round.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdrmz-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Material2RoundMZ.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Material Icons Round\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2RoundMZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class Material2RoundMZIkonProvider implements IkonProvider<Material2RoundMZ> {\n    @Override\n    public Class<Material2RoundMZ> getIkon() {\n        return Material2RoundMZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2SharpAL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Material2SharpAL implements Ikon {\n    MDSAL_360(\"mdsal-360\", '\\ue000'),\n    MDSAL_3D_ROTATION(\"mdsal-3d_rotation\", '\\ue001'),\n    MDSAL_4K(\"mdsal-4k\", '\\ue002'),\n    MDSAL_5G(\"mdsal-5g\", '\\ue74a'),\n    MDSAL_6_FT_APART(\"mdsal-6_ft_apart\", '\\ue89a'),\n    AC_UNIT(\"mdsal-ac_unit\", '\\ue004'),\n    ACCESS_ALARM(\"mdsal-access_alarm\", '\\ue005'),\n    ACCESS_ALARMS(\"mdsal-access_alarms\", '\\ue007'),\n    ACCESS_TIME(\"mdsal-access_time\", '\\ue009'),\n    ACCESSIBILITY(\"mdsal-accessibility\", '\\ue00b'),\n    ACCESSIBILITY_NEW(\"mdsal-accessibility_new\", '\\ue00c'),\n    ACCESSIBLE(\"mdsal-accessible\", '\\ue00d'),\n    ACCESSIBLE_FORWARD(\"mdsal-accessible_forward\", '\\ue00e'),\n    ACCOUNT_BALANCE(\"mdsal-account_balance\", '\\ue00f'),\n    ACCOUNT_BALANCE_WALLET(\"mdsal-account_balance_wallet\", '\\ue011'),\n    ACCOUNT_BOX(\"mdsal-account_box\", '\\ue013'),\n    ACCOUNT_CIRCLE(\"mdsal-account_circle\", '\\ue015'),\n    ACCOUNT_TREE(\"mdsal-account_tree\", '\\ue017'),\n    AD_UNITS(\"mdsal-ad_units\", '\\ue74b'),\n    ADB(\"mdsal-adb\", '\\ue019'),\n    ADD(\"mdsal-add\", '\\ue01a'),\n    ADD_A_PHOTO(\"mdsal-add_a_photo\", '\\ue01b'),\n    ADD_ALARM(\"mdsal-add_alarm\", '\\ue01d'),\n    ADD_ALERT(\"mdsal-add_alert\", '\\ue01f'),\n    ADD_BOX(\"mdsal-add_box\", '\\ue021'),\n    ADD_BUSINESS(\"mdsal-add_business\", '\\ue74d'),\n    ADD_CIRCLE(\"mdsal-add_circle\", '\\ue023'),\n    ADD_CIRCLE_OUTLINE(\"mdsal-add_circle_outline\", '\\ue025'),\n    ADD_COMMENT(\"mdsal-add_comment\", '\\ue026'),\n    ADD_IC_CALL(\"mdsal-add_ic_call\", '\\ue744'),\n    ADD_LOCATION(\"mdsal-add_location\", '\\ue028'),\n    ADD_LOCATION_ALT(\"mdsal-add_location_alt\", '\\ue74f'),\n    ADD_PHOTO_ALTERNATE(\"mdsal-add_photo_alternate\", '\\ue02a'),\n    ADD_ROAD(\"mdsal-add_road\", '\\ue751'),\n    ADD_SHOPPING_CART(\"mdsal-add_shopping_cart\", '\\ue02c'),\n    ADD_TASK(\"mdsal-add_task\", '\\ue8b3'),\n    ADD_TO_HOME_SCREEN(\"mdsal-add_to_home_screen\", '\\ue02d'),\n    ADD_TO_PHOTOS(\"mdsal-add_to_photos\", '\\ue02e'),\n    ADD_TO_QUEUE(\"mdsal-add_to_queue\", '\\ue030'),\n    ADDCHART(\"mdsal-addchart\", '\\ue752'),\n    ADJUST(\"mdsal-adjust\", '\\ue032'),\n    ADMIN_PANEL_SETTINGS(\"mdsal-admin_panel_settings\", '\\ue753'),\n    AGRICULTURE(\"mdsal-agriculture\", '\\ue755'),\n    AIRLINE_SEAT_FLAT(\"mdsal-airline_seat_flat\", '\\ue033'),\n    AIRLINE_SEAT_FLAT_ANGLED(\"mdsal-airline_seat_flat_angled\", '\\ue035'),\n    AIRLINE_SEAT_INDIVIDUAL_SUITE(\"mdsal-airline_seat_individual_suite\", '\\ue037'),\n    AIRLINE_SEAT_LEGROOM_EXTRA(\"mdsal-airline_seat_legroom_extra\", '\\ue039'),\n    AIRLINE_SEAT_LEGROOM_NORMAL(\"mdsal-airline_seat_legroom_normal\", '\\ue03a'),\n    AIRLINE_SEAT_LEGROOM_REDUCED(\"mdsal-airline_seat_legroom_reduced\", '\\ue03b'),\n    AIRLINE_SEAT_RECLINE_EXTRA(\"mdsal-airline_seat_recline_extra\", '\\ue03c'),\n    AIRLINE_SEAT_RECLINE_NORMAL(\"mdsal-airline_seat_recline_normal\", '\\ue03d'),\n    AIRPLANEMODE_ACTIVE(\"mdsal-airplanemode_active\", '\\ue03e'),\n    AIRPLANEMODE_INACTIVE(\"mdsal-airplanemode_inactive\", '\\ue03f'),\n    AIRPLAY(\"mdsal-airplay\", '\\ue040'),\n    AIRPORT_SHUTTLE(\"mdsal-airport_shuttle\", '\\ue041'),\n    ALARM(\"mdsal-alarm\", '\\ue043'),\n    ALARM_ADD(\"mdsal-alarm_add\", '\\ue045'),\n    ALARM_OFF(\"mdsal-alarm_off\", '\\ue047'),\n    ALARM_ON(\"mdsal-alarm_on\", '\\ue048'),\n    ALBUM(\"mdsal-album\", '\\ue04a'),\n    ALIGN_HORIZONTAL_CENTER(\"mdsal-align_horizontal_center\", '\\ue8ca'),\n    ALIGN_HORIZONTAL_LEFT(\"mdsal-align_horizontal_left\", '\\ue8cb'),\n    ALIGN_HORIZONTAL_RIGHT(\"mdsal-align_horizontal_right\", '\\ue8cc'),\n    ALIGN_VERTICAL_BOTTOM(\"mdsal-align_vertical_bottom\", '\\ue8cd'),\n    ALIGN_VERTICAL_CENTER(\"mdsal-align_vertical_center\", '\\ue8ce'),\n    ALIGN_VERTICAL_TOP(\"mdsal-align_vertical_top\", '\\ue8cf'),\n    ALL_INBOX(\"mdsal-all_inbox\", '\\ue04c'),\n    ALL_INCLUSIVE(\"mdsal-all_inclusive\", '\\ue04e'),\n    ALL_OUT(\"mdsal-all_out\", '\\ue04f'),\n    ALT_ROUTE(\"mdsal-alt_route\", '\\ue757'),\n    ALTERNATE_EMAIL(\"mdsal-alternate_email\", '\\ue051'),\n    AMP_STORIES(\"mdsal-amp_stories\", '\\ue053'),\n    ANALYTICS(\"mdsal-analytics\", '\\ue758'),\n    ANCHOR(\"mdsal-anchor\", '\\ue75a'),\n    ANDROID(\"mdsal-android\", '\\ue055'),\n    ANNOUNCEMENT(\"mdsal-announcement\", '\\ue056'),\n    APARTMENT(\"mdsal-apartment\", '\\ue058'),\n    API(\"mdsal-api\", '\\ue75b'),\n    APP_BLOCKING(\"mdsal-app_blocking\", '\\ue75c'),\n    APP_SETTINGS_ALT(\"mdsal-app_settings_alt\", '\\ue75e'),\n    APPS(\"mdsal-apps\", '\\ue059'),\n    ARCHITECTURE(\"mdsal-architecture\", '\\ue760'),\n    ARCHIVE(\"mdsal-archive\", '\\ue05a'),\n    ARROW_BACK(\"mdsal-arrow_back\", '\\ue05c'),\n    ARROW_BACK_IOS(\"mdsal-arrow_back_ios\", '\\ue05d'),\n    ARROW_CIRCLE_DOWN(\"mdsal-arrow_circle_down\", '\\ue761'),\n    ARROW_CIRCLE_UP(\"mdsal-arrow_circle_up\", '\\ue763'),\n    ARROW_DOWNWARD(\"mdsal-arrow_downward\", '\\ue05e'),\n    ARROW_DROP_DOWN(\"mdsal-arrow_drop_down\", '\\ue05f'),\n    ARROW_DROP_DOWN_CIRCLE(\"mdsal-arrow_drop_down_circle\", '\\ue060'),\n    ARROW_DROP_UP(\"mdsal-arrow_drop_up\", '\\ue062'),\n    ARROW_FORWARD(\"mdsal-arrow_forward\", '\\ue063'),\n    ARROW_FORWARD_IOS(\"mdsal-arrow_forward_ios\", '\\ue064'),\n    ARROW_LEFT(\"mdsal-arrow_left\", '\\ue065'),\n    ARROW_RIGHT(\"mdsal-arrow_right\", '\\ue066'),\n    ARROW_RIGHT_ALT(\"mdsal-arrow_right_alt\", '\\ue067'),\n    ARROW_UPWARD(\"mdsal-arrow_upward\", '\\ue068'),\n    ART_TRACK(\"mdsal-art_track\", '\\ue069'),\n    ARTICLE(\"mdsal-article\", '\\ue765'),\n    ASPECT_RATIO(\"mdsal-aspect_ratio\", '\\ue06a'),\n    ASSESSMENT(\"mdsal-assessment\", '\\ue06c'),\n    ASSIGNMENT(\"mdsal-assignment\", '\\ue06e'),\n    ASSIGNMENT_IND(\"mdsal-assignment_ind\", '\\ue070'),\n    ASSIGNMENT_LATE(\"mdsal-assignment_late\", '\\ue072'),\n    ASSIGNMENT_RETURN(\"mdsal-assignment_return\", '\\ue074'),\n    ASSIGNMENT_RETURNED(\"mdsal-assignment_returned\", '\\ue076'),\n    ASSIGNMENT_TURNED_IN(\"mdsal-assignment_turned_in\", '\\ue078'),\n    ASSISTANT(\"mdsal-assistant\", '\\ue07a'),\n    ASSISTANT_PHOTO(\"mdsal-assistant_photo\", '\\ue07c'),\n    ATM(\"mdsal-atm\", '\\ue07e'),\n    ATTACH_EMAIL(\"mdsal-attach_email\", '\\ue767'),\n    ATTACH_FILE(\"mdsal-attach_file\", '\\ue07f'),\n    ATTACH_MONEY(\"mdsal-attach_money\", '\\ue080'),\n    ATTACHMENT(\"mdsal-attachment\", '\\ue081'),\n    AUDIOTRACK(\"mdsal-audiotrack\", '\\ue082'),\n    AUTO_DELETE(\"mdsal-auto_delete\", '\\ue768'),\n    AUTORENEW(\"mdsal-autorenew\", '\\ue084'),\n    AV_TIMER(\"mdsal-av_timer\", '\\ue085'),\n    BABY_CHANGING_STATION(\"mdsal-baby_changing_station\", '\\ue76a'),\n    BACKPACK(\"mdsal-backpack\", '\\ue76b'),\n    BACKSPACE(\"mdsal-backspace\", '\\ue086'),\n    BACKUP(\"mdsal-backup\", '\\ue088'),\n    BACKUP_TABLE(\"mdsal-backup_table\", '\\ue76d'),\n    BALLOT(\"mdsal-ballot\", '\\ue08a'),\n    BAR_CHART(\"mdsal-bar_chart\", '\\ue08c'),\n    BARCODE(\"mdsal-barcode\", '\\ue08d'),\n    BATCH_PREDICTION(\"mdsal-batch_prediction\", '\\ue76f'),\n    BATHTUB(\"mdsal-bathtub\", '\\ue08e'),\n    BATTERY_20(\"mdsal-battery_20\", '\\ue090'),\n    BATTERY_30(\"mdsal-battery_30\", '\\ue092'),\n    BATTERY_50(\"mdsal-battery_50\", '\\ue094'),\n    BATTERY_60(\"mdsal-battery_60\", '\\ue096'),\n    BATTERY_80(\"mdsal-battery_80\", '\\ue098'),\n    BATTERY_90(\"mdsal-battery_90\", '\\ue09a'),\n    BATTERY_ALERT(\"mdsal-battery_alert\", '\\ue09c'),\n    BATTERY_CHARGING_20(\"mdsal-battery_charging_20\", '\\ue09d'),\n    BATTERY_CHARGING_30(\"mdsal-battery_charging_30\", '\\ue09f'),\n    BATTERY_CHARGING_50(\"mdsal-battery_charging_50\", '\\ue0a1'),\n    BATTERY_CHARGING_60(\"mdsal-battery_charging_60\", '\\ue0a3'),\n    BATTERY_CHARGING_80(\"mdsal-battery_charging_80\", '\\ue0a5'),\n    BATTERY_CHARGING_90(\"mdsal-battery_charging_90\", '\\ue0a7'),\n    BATTERY_CHARGING_FULL(\"mdsal-battery_charging_full\", '\\ue0a9'),\n    BATTERY_FULL(\"mdsal-battery_full\", '\\ue0aa'),\n    BATTERY_STD(\"mdsal-battery_std\", '\\ue0ab'),\n    BATTERY_UNKNOWN(\"mdsal-battery_unknown\", '\\ue0ac'),\n    BEACH_ACCESS(\"mdsal-beach_access\", '\\ue0ad'),\n    BEDTIME(\"mdsal-bedtime\", '\\ue771'),\n    BEENHERE(\"mdsal-beenhere\", '\\ue0af'),\n    BENTO(\"mdsal-bento\", '\\ue864'),\n    BIKE_SCOOTER(\"mdsal-bike_scooter\", '\\ue773'),\n    BIOTECH(\"mdsal-biotech\", '\\ue774'),\n    BLOCK(\"mdsal-block\", '\\ue0b1'),\n    BLUETOOTH(\"mdsal-bluetooth\", '\\ue0b2'),\n    BLUETOOTH_AUDIO(\"mdsal-bluetooth_audio\", '\\ue0b3'),\n    BLUETOOTH_CONNECTED(\"mdsal-bluetooth_connected\", '\\ue0b4'),\n    BLUETOOTH_DISABLED(\"mdsal-bluetooth_disabled\", '\\ue0b5'),\n    BLUETOOTH_SEARCHING(\"mdsal-bluetooth_searching\", '\\ue0b6'),\n    BLUR_CIRCULAR(\"mdsal-blur_circular\", '\\ue0b7'),\n    BLUR_LINEAR(\"mdsal-blur_linear\", '\\ue0b8'),\n    BLUR_OFF(\"mdsal-blur_off\", '\\ue0b9'),\n    BLUR_ON(\"mdsal-blur_on\", '\\ue0ba'),\n    BOOK(\"mdsal-book\", '\\ue0bb'),\n    BOOK_ONLINE(\"mdsal-book_online\", '\\ue89b'),\n    BOOKMARK(\"mdsal-bookmark\", '\\ue0bd'),\n    BOOKMARK_BORDER(\"mdsal-bookmark_border\", '\\ue0bf'),\n    BOOKMARKS(\"mdsal-bookmarks\", '\\ue0c0'),\n    BORDER_ALL(\"mdsal-border_all\", '\\ue0c2'),\n    BORDER_BOTTOM(\"mdsal-border_bottom\", '\\ue0c3'),\n    BORDER_CLEAR(\"mdsal-border_clear\", '\\ue0c4'),\n    BORDER_COLOR(\"mdsal-border_color\", '\\ue0c5'),\n    BORDER_HORIZONTAL(\"mdsal-border_horizontal\", '\\ue0c7'),\n    BORDER_INNER(\"mdsal-border_inner\", '\\ue0c8'),\n    BORDER_LEFT(\"mdsal-border_left\", '\\ue0c9'),\n    BORDER_OUTER(\"mdsal-border_outer\", '\\ue0ca'),\n    BORDER_RIGHT(\"mdsal-border_right\", '\\ue0cb'),\n    BORDER_STYLE(\"mdsal-border_style\", '\\ue0cc'),\n    BORDER_TOP(\"mdsal-border_top\", '\\ue0cd'),\n    BORDER_VERTICAL(\"mdsal-border_vertical\", '\\ue0ce'),\n    BRANDING_WATERMARK(\"mdsal-branding_watermark\", '\\ue0cf'),\n    BRIGHTNESS_1(\"mdsal-brightness_1\", '\\ue0d1'),\n    BRIGHTNESS_2(\"mdsal-brightness_2\", '\\ue0d3'),\n    BRIGHTNESS_3(\"mdsal-brightness_3\", '\\ue0d5'),\n    BRIGHTNESS_4(\"mdsal-brightness_4\", '\\ue0d7'),\n    BRIGHTNESS_5(\"mdsal-brightness_5\", '\\ue0d9'),\n    BRIGHTNESS_6(\"mdsal-brightness_6\", '\\ue0db'),\n    BRIGHTNESS_7(\"mdsal-brightness_7\", '\\ue0dd'),\n    BRIGHTNESS_AUTO(\"mdsal-brightness_auto\", '\\ue0df'),\n    BRIGHTNESS_HIGH(\"mdsal-brightness_high\", '\\ue0e1'),\n    BRIGHTNESS_LOW(\"mdsal-brightness_low\", '\\ue0e3'),\n    BRIGHTNESS_MEDIUM(\"mdsal-brightness_medium\", '\\ue0e5'),\n    BROKEN_IMAGE(\"mdsal-broken_image\", '\\ue0e7'),\n    BROWSER_NOT_SUPPORTED(\"mdsal-browser_not_supported\", '\\ue776'),\n    BRUSH(\"mdsal-brush\", '\\ue0e9'),\n    BUBBLE_CHART(\"mdsal-bubble_chart\", '\\ue0eb'),\n    BUG_REPORT(\"mdsal-bug_report\", '\\ue0ed'),\n    BUILD(\"mdsal-build\", '\\ue0ef'),\n    BUILD_CIRCLE(\"mdsal-build_circle\", '\\ue777'),\n    BURST_MODE(\"mdsal-burst_mode\", '\\ue0f1'),\n    BUSINESS(\"mdsal-business\", '\\ue0f3'),\n    BUSINESS_CENTER(\"mdsal-business_center\", '\\ue0f5'),\n    CACHED(\"mdsal-cached\", '\\ue0f7'),\n    CAKE(\"mdsal-cake\", '\\ue0f8'),\n    CALCULATE(\"mdsal-calculate\", '\\ue779'),\n    CALENDAR_TODAY(\"mdsal-calendar_today\", '\\ue0fa'),\n    CALENDAR_VIEW_DAY(\"mdsal-calendar_view_day\", '\\ue0fc'),\n    CALL(\"mdsal-call\", '\\ue0fe'),\n    CALL_END(\"mdsal-call_end\", '\\ue100'),\n    CALL_MADE(\"mdsal-call_made\", '\\ue102'),\n    CALL_MERGE(\"mdsal-call_merge\", '\\ue103'),\n    CALL_MISSED(\"mdsal-call_missed\", '\\ue104'),\n    CALL_MISSED_OUTGOING(\"mdsal-call_missed_outgoing\", '\\ue105'),\n    CALL_RECEIVED(\"mdsal-call_received\", '\\ue106'),\n    CALL_SPLIT(\"mdsal-call_split\", '\\ue107'),\n    CALL_TO_ACTION(\"mdsal-call_to_action\", '\\ue108'),\n    CAMERA(\"mdsal-camera\", '\\ue10a'),\n    CAMERA_ALT(\"mdsal-camera_alt\", '\\ue10c'),\n    CAMERA_ENHANCE(\"mdsal-camera_enhance\", '\\ue10e'),\n    CAMERA_FRONT(\"mdsal-camera_front\", '\\ue110'),\n    CAMERA_REAR(\"mdsal-camera_rear\", '\\ue112'),\n    CAMERA_ROLL(\"mdsal-camera_roll\", '\\ue114'),\n    CAMPAIGN(\"mdsal-campaign\", '\\ue77b'),\n    CANCEL(\"mdsal-cancel\", '\\ue116'),\n    CANCEL_PRESENTATION(\"mdsal-cancel_presentation\", '\\ue118'),\n    CANCEL_SCHEDULE_SEND(\"mdsal-cancel_schedule_send\", '\\ue11a'),\n    CARD_GIFTCARD(\"mdsal-card_giftcard\", '\\ue11c'),\n    CARD_MEMBERSHIP(\"mdsal-card_membership\", '\\ue11e'),\n    CARD_TRAVEL(\"mdsal-card_travel\", '\\ue120'),\n    CARPENTER(\"mdsal-carpenter\", '\\ue866'),\n    CASINO(\"mdsal-casino\", '\\ue122'),\n    CAST(\"mdsal-cast\", '\\ue124'),\n    CAST_CONNECTED(\"mdsal-cast_connected\", '\\ue125'),\n    CAST_FOR_EDUCATION(\"mdsal-cast_for_education\", '\\ue127'),\n    CATEGORY(\"mdsal-category\", '\\ue128'),\n    CELL_WIFI(\"mdsal-cell_wifi\", '\\ue12a'),\n    CENTER_FOCUS_STRONG(\"mdsal-center_focus_strong\", '\\ue12c'),\n    CENTER_FOCUS_WEAK(\"mdsal-center_focus_weak\", '\\ue12e'),\n    CHANGE_HISTORY(\"mdsal-change_history\", '\\ue130'),\n    CHARGING_STATION(\"mdsal-charging_station\", '\\ue77d'),\n    CHAT(\"mdsal-chat\", '\\ue132'),\n    CHAT_BUBBLE(\"mdsal-chat_bubble\", '\\ue134'),\n    CHAT_BUBBLE_OUTLINE(\"mdsal-chat_bubble_outline\", '\\ue136'),\n    CHECK(\"mdsal-check\", '\\ue137'),\n    CHECK_BOX(\"mdsal-check_box\", '\\ue138'),\n    CHECK_BOX_OUTLINE_BLANK(\"mdsal-check_box_outline_blank\", '\\ue13a'),\n    CHECK_CIRCLE(\"mdsal-check_circle\", '\\ue13b'),\n    CHECK_CIRCLE_OUTLINE(\"mdsal-check_circle_outline\", '\\ue13d'),\n    CHECKROOM(\"mdsal-checkroom\", '\\ue77f'),\n    CHEVRON_LEFT(\"mdsal-chevron_left\", '\\ue13e'),\n    CHEVRON_RIGHT(\"mdsal-chevron_right\", '\\ue13f'),\n    CHILD_CARE(\"mdsal-child_care\", '\\ue140'),\n    CHILD_FRIENDLY(\"mdsal-child_friendly\", '\\ue142'),\n    CHROME_READER_MODE(\"mdsal-chrome_reader_mode\", '\\ue144'),\n    CLASS(\"mdsal-class\", '\\ue146'),\n    CLEAN_HANDS(\"mdsal-clean_hands\", '\\ue89d'),\n    CLEANING_SERVICES(\"mdsal-cleaning_services\", '\\ue780'),\n    CLEAR(\"mdsal-clear\", '\\ue148'),\n    CLEAR_ALL(\"mdsal-clear_all\", '\\ue149'),\n    CLOSE(\"mdsal-close\", '\\ue14a'),\n    CLOSE_FULLSCREEN(\"mdsal-close_fullscreen\", '\\ue782'),\n    CLOSED_CAPTION(\"mdsal-closed_caption\", '\\ue14b'),\n    CLOSED_CAPTION_DISABLED(\"mdsal-closed_caption_disabled\", '\\ue868'),\n    CLOUD(\"mdsal-cloud\", '\\ue14d'),\n    CLOUD_CIRCLE(\"mdsal-cloud_circle\", '\\ue14f'),\n    CLOUD_DONE(\"mdsal-cloud_done\", '\\ue151'),\n    CLOUD_DOWNLOAD(\"mdsal-cloud_download\", '\\ue153'),\n    CLOUD_OFF(\"mdsal-cloud_off\", '\\ue155'),\n    CLOUD_QUEUE(\"mdsal-cloud_queue\", '\\ue157'),\n    CLOUD_UPLOAD(\"mdsal-cloud_upload\", '\\ue159'),\n    CODE(\"mdsal-code\", '\\ue15b'),\n    COLLECTIONS(\"mdsal-collections\", '\\ue15c'),\n    COLLECTIONS_BOOKMARK(\"mdsal-collections_bookmark\", '\\ue15e'),\n    COLOR_LENS(\"mdsal-color_lens\", '\\ue160'),\n    COLORIZE(\"mdsal-colorize\", '\\ue162'),\n    COMMENT(\"mdsal-comment\", '\\ue164'),\n    COMMENT_BANK(\"mdsal-comment_bank\", '\\ue783'),\n    COMMUTE(\"mdsal-commute\", '\\ue166'),\n    COMPARE(\"mdsal-compare\", '\\ue167'),\n    COMPARE_ARROWS(\"mdsal-compare_arrows\", '\\ue169'),\n    COMPASS_CALIBRATION(\"mdsal-compass_calibration\", '\\ue16a'),\n    COMPUTER(\"mdsal-computer\", '\\ue16c'),\n    CONFIRMATION_NUMBER(\"mdsal-confirmation_number\", '\\ue16e'),\n    CONNECT_WITHOUT_CONTACT(\"mdsal-connect_without_contact\", '\\ue89f'),\n    CONSTRUCTION(\"mdsal-construction\", '\\ue785'),\n    CONTACT_MAIL(\"mdsal-contact_mail\", '\\ue170'),\n    CONTACT_PAGE(\"mdsal-contact_page\", '\\ue8b4'),\n    CONTACT_PHONE(\"mdsal-contact_phone\", '\\ue172'),\n    CONTACT_SUPPORT(\"mdsal-contact_support\", '\\ue174'),\n    CONTACTLESS(\"mdsal-contactless\", '\\ue176'),\n    CONTACTS(\"mdsal-contacts\", '\\ue178'),\n    CONTENT_COPY(\"mdsal-content_copy\", '\\ue17a'),\n    CONTENT_CUT(\"mdsal-content_cut\", '\\ue17c'),\n    CONTENT_PASTE(\"mdsal-content_paste\", '\\ue17e'),\n    CONTROL_CAMERA(\"mdsal-control_camera\", '\\ue180'),\n    CONTROL_POINT(\"mdsal-control_point\", '\\ue181'),\n    CONTROL_POINT_DUPLICATE(\"mdsal-control_point_duplicate\", '\\ue183'),\n    COPYRIGHT(\"mdsal-copyright\", '\\ue185'),\n    CORONAVIRUS(\"mdsal-coronavirus\", '\\ue8a0'),\n    CORPORATE_FARE(\"mdsal-corporate_fare\", '\\ue786'),\n    COUNTERTOPS(\"mdsal-countertops\", '\\ue86a'),\n    CREATE(\"mdsal-create\", '\\ue187'),\n    CREATE_NEW_FOLDER(\"mdsal-create_new_folder\", '\\ue189'),\n    CREDIT_CARD(\"mdsal-credit_card\", '\\ue18b'),\n    CROP(\"mdsal-crop\", '\\ue18d'),\n    CROP_16_9(\"mdsal-crop_16_9\", '\\ue18e'),\n    CROP_3_2(\"mdsal-crop_3_2\", '\\ue18f'),\n    CROP_5_4(\"mdsal-crop_5_4\", '\\ue190'),\n    CROP_7_5(\"mdsal-crop_7_5\", '\\ue191'),\n    CROP_DIN(\"mdsal-crop_din\", '\\ue192'),\n    CROP_FREE(\"mdsal-crop_free\", '\\ue193'),\n    CROP_LANDSCAPE(\"mdsal-crop_landscape\", '\\ue194'),\n    CROP_ORIGINAL(\"mdsal-crop_original\", '\\ue195'),\n    CROP_PORTRAIT(\"mdsal-crop_portrait\", '\\ue196'),\n    CROP_ROTATE(\"mdsal-crop_rotate\", '\\ue197'),\n    CROP_SQUARE(\"mdsal-crop_square\", '\\ue198'),\n    DASHBOARD(\"mdsal-dashboard\", '\\ue199'),\n    DATA_USAGE(\"mdsal-data_usage\", '\\ue19b'),\n    DATE_RANGE(\"mdsal-date_range\", '\\ue19c'),\n    DECK(\"mdsal-deck\", '\\ue19e'),\n    DEHAZE(\"mdsal-dehaze\", '\\ue1a0'),\n    DELETE(\"mdsal-delete\", '\\ue1a1'),\n    DELETE_FOREVER(\"mdsal-delete_forever\", '\\ue1a3'),\n    DELETE_OUTLINE(\"mdsal-delete_outline\", '\\ue1a5'),\n    DELETE_SWEEP(\"mdsal-delete_sweep\", '\\ue1a6'),\n    DEPARTURE_BOARD(\"mdsal-departure_board\", '\\ue1a8'),\n    DESCRIPTION(\"mdsal-description\", '\\ue1aa'),\n    DESIGN_SERVICES(\"mdsal-design_services\", '\\ue788'),\n    DESKTOP_ACCESS_DISABLED(\"mdsal-desktop_access_disabled\", '\\ue1ac'),\n    DESKTOP_MAC(\"mdsal-desktop_mac\", '\\ue1ae'),\n    DESKTOP_WINDOWS(\"mdsal-desktop_windows\", '\\ue1b0'),\n    DETAILS(\"mdsal-details\", '\\ue1b2'),\n    DEVELOPER_BOARD(\"mdsal-developer_board\", '\\ue1b4'),\n    DEVELOPER_MODE(\"mdsal-developer_mode\", '\\ue1b6'),\n    DEVICE_HUB(\"mdsal-device_hub\", '\\ue1b7'),\n    DEVICE_UNKNOWN(\"mdsal-device_unknown\", '\\ue1b8'),\n    DEVICES(\"mdsal-devices\", '\\ue1ba'),\n    DEVICES_OTHER(\"mdsal-devices_other\", '\\ue1bc'),\n    DIALER_SIP(\"mdsal-dialer_sip\", '\\ue1be'),\n    DIALPAD(\"mdsal-dialpad\", '\\ue1c0'),\n    DIRECTIONS(\"mdsal-directions\", '\\ue1c1'),\n    DIRECTIONS_BIKE(\"mdsal-directions_bike\", '\\ue1c3'),\n    DIRECTIONS_BOAT(\"mdsal-directions_boat\", '\\ue1c4'),\n    DIRECTIONS_BUS(\"mdsal-directions_bus\", '\\ue1c6'),\n    DIRECTIONS_CAR(\"mdsal-directions_car\", '\\ue1c8'),\n    DIRECTIONS_OFF(\"mdsal-directions_off\", '\\ue78a'),\n    DIRECTIONS_RAILWAY(\"mdsal-directions_railway\", '\\ue1ca'),\n    DIRECTIONS_RUN(\"mdsal-directions_run\", '\\ue1cc'),\n    DIRECTIONS_SUBWAY(\"mdsal-directions_subway\", '\\ue1cd'),\n    DIRECTIONS_TRANSIT(\"mdsal-directions_transit\", '\\ue1cf'),\n    DIRECTIONS_WALK(\"mdsal-directions_walk\", '\\ue1d1'),\n    DISABLED_BY_DEFAULT(\"mdsal-disabled_by_default\", '\\ue8b6'),\n    DISC_FULL(\"mdsal-disc_full\", '\\ue1d2'),\n    DIVIDE(\"mdsal-divide\", '\\ue1d4'),\n    DNS(\"mdsal-dns\", '\\ue1d6'),\n    DO_NOT_DISTURB(\"mdsal-do_not_disturb\", '\\ue1d8'),\n    DO_NOT_DISTURB_ALT(\"mdsal-do_not_disturb_alt\", '\\ue1da'),\n    DO_NOT_DISTURB_OFF(\"mdsal-do_not_disturb_off\", '\\ue1dc'),\n    DO_NOT_STEP(\"mdsal-do_not_step\", '\\ue78b'),\n    DO_NOT_TOUCH(\"mdsal-do_not_touch\", '\\ue78d'),\n    DOCK(\"mdsal-dock\", '\\ue1de'),\n    DOMAIN(\"mdsal-domain\", '\\ue1e0'),\n    DOMAIN_DISABLED(\"mdsal-domain_disabled\", '\\ue1e2'),\n    DOMAIN_VERIFICATION(\"mdsal-domain_verification\", '\\ue78f'),\n    DONE(\"mdsal-done\", '\\ue1e4'),\n    DONE_ALL(\"mdsal-done_all\", '\\ue1e5'),\n    DONE_OUTLINE(\"mdsal-done_outline\", '\\ue1e6'),\n    DONUT_LARGE(\"mdsal-donut_large\", '\\ue1e7'),\n    DONUT_SMALL(\"mdsal-donut_small\", '\\ue1e8'),\n    DOUBLE_ARROW(\"mdsal-double_arrow\", '\\ue1ea'),\n    DRAFTS(\"mdsal-drafts\", '\\ue1eb'),\n    DRAG_HANDLE(\"mdsal-drag_handle\", '\\ue1ed'),\n    DRAG_INDICATOR(\"mdsal-drag_indicator\", '\\ue1ee'),\n    DRIVE_ETA(\"mdsal-drive_eta\", '\\ue1ef'),\n    DRY(\"mdsal-dry\", '\\ue791'),\n    DUO(\"mdsal-duo\", '\\ue1f1'),\n    DVR(\"mdsal-dvr\", '\\ue1f2'),\n    DYNAMIC_FEED(\"mdsal-dynamic_feed\", '\\ue1f4'),\n    DYNAMIC_FORM(\"mdsal-dynamic_form\", '\\ue793'),\n    EAST(\"mdsal-east\", '\\ue86c'),\n    ECO(\"mdsal-eco\", '\\ue1f6'),\n    EDIT(\"mdsal-edit\", '\\ue1f8'),\n    EDIT_ATTRIBUTES(\"mdsal-edit_attributes\", '\\ue1fa'),\n    EDIT_LOCATION(\"mdsal-edit_location\", '\\ue1fc'),\n    EDIT_ROAD(\"mdsal-edit_road\", '\\ue795'),\n    EJECT(\"mdsal-eject\", '\\ue1fe'),\n    ELDERLY(\"mdsal-elderly\", '\\ue8a2'),\n    ELECTRIC_BIKE(\"mdsal-electric_bike\", '\\ue797'),\n    ELECTRIC_CAR(\"mdsal-electric_car\", '\\ue798'),\n    ELECTRIC_MOPED(\"mdsal-electric_moped\", '\\ue79a'),\n    ELECTRIC_SCOOTER(\"mdsal-electric_scooter\", '\\ue79c'),\n    ELECTRICAL_SERVICES(\"mdsal-electrical_services\", '\\ue79d'),\n    ELEVATOR(\"mdsal-elevator\", '\\ue79e'),\n    EMAIL(\"mdsal-email\", '\\ue200'),\n    EMOJI_EMOTIONS(\"mdsal-emoji_emotions\", '\\ue202'),\n    EMOJI_EVENTS(\"mdsal-emoji_events\", '\\ue204'),\n    EMOJI_FLAGS(\"mdsal-emoji_flags\", '\\ue206'),\n    EMOJI_FOOD_BEVERAGE(\"mdsal-emoji_food_beverage\", '\\ue208'),\n    EMOJI_NATURE(\"mdsal-emoji_nature\", '\\ue20a'),\n    EMOJI_OBJECTS(\"mdsal-emoji_objects\", '\\ue20c'),\n    EMOJI_PEOPLE(\"mdsal-emoji_people\", '\\ue20e'),\n    EMOJI_SYMBOLS(\"mdsal-emoji_symbols\", '\\ue20f'),\n    EMOJI_TRANSPORTATION(\"mdsal-emoji_transportation\", '\\ue210'),\n    ENGINEERING(\"mdsal-engineering\", '\\ue7a0'),\n    ENHANCED_ENCRYPTION(\"mdsal-enhanced_encryption\", '\\ue211'),\n    EQUALIZER(\"mdsal-equalizer\", '\\ue213'),\n    EQUALS(\"mdsal-equals\", '\\ue214'),\n    ERROR(\"mdsal-error\", '\\ue215'),\n    ERROR_OUTLINE(\"mdsal-error_outline\", '\\ue217'),\n    ESCALATOR(\"mdsal-escalator\", '\\ue7a2'),\n    ESCALATOR_WARNING(\"mdsal-escalator_warning\", '\\ue7a4'),\n    EURO(\"mdsal-euro\", '\\ue218'),\n    EURO_SYMBOL(\"mdsal-euro_symbol\", '\\ue219'),\n    EV_STATION(\"mdsal-ev_station\", '\\ue21a'),\n    EVENT(\"mdsal-event\", '\\ue21c'),\n    EVENT_AVAILABLE(\"mdsal-event_available\", '\\ue21e'),\n    EVENT_BUSY(\"mdsal-event_busy\", '\\ue220'),\n    EVENT_NOTE(\"mdsal-event_note\", '\\ue222'),\n    EVENT_SEAT(\"mdsal-event_seat\", '\\ue224'),\n    EXIT_TO_APP(\"mdsal-exit_to_app\", '\\ue226'),\n    EXPAND_LESS(\"mdsal-expand_less\", '\\ue227'),\n    EXPAND_MORE(\"mdsal-expand_more\", '\\ue228'),\n    EXPLICIT(\"mdsal-explicit\", '\\ue229'),\n    EXPLORE(\"mdsal-explore\", '\\ue22b'),\n    EXPLORE_OFF(\"mdsal-explore_off\", '\\ue22d'),\n    EXPOSURE(\"mdsal-exposure\", '\\ue22f'),\n    EXPOSURE_NEG_1(\"mdsal-exposure_neg_1\", '\\ue231'),\n    EXPOSURE_NEG_2(\"mdsal-exposure_neg_2\", '\\ue232'),\n    EXPOSURE_PLUS_1(\"mdsal-exposure_plus_1\", '\\ue233'),\n    EXPOSURE_PLUS_2(\"mdsal-exposure_plus_2\", '\\ue234'),\n    EXPOSURE_ZERO(\"mdsal-exposure_zero\", '\\ue235'),\n    EXTENSION(\"mdsal-extension\", '\\ue236'),\n    FACE(\"mdsal-face\", '\\ue238'),\n    FACEBOOK(\"mdsal-facebook\", '\\ue8b8'),\n    FACT_CHECK(\"mdsal-fact_check\", '\\ue7a5'),\n    FAMILY_RESTROOM(\"mdsal-family_restroom\", '\\ue7a7'),\n    FAST_FORWARD(\"mdsal-fast_forward\", '\\ue23a'),\n    FAST_REWIND(\"mdsal-fast_rewind\", '\\ue23c'),\n    FASTFOOD(\"mdsal-fastfood\", '\\ue23e'),\n    FAVORITE(\"mdsal-favorite\", '\\ue240'),\n    FAVORITE_BORDER(\"mdsal-favorite_border\", '\\ue242'),\n    FEATURED_PLAY_LIST(\"mdsal-featured_play_list\", '\\ue243'),\n    FEATURED_VIDEO(\"mdsal-featured_video\", '\\ue245'),\n    FEEDBACK(\"mdsal-feedback\", '\\ue247'),\n    FENCE(\"mdsal-fence\", '\\ue86d'),\n    FIBER_DVR(\"mdsal-fiber_dvr\", '\\ue249'),\n    FIBER_MANUAL_RECORD(\"mdsal-fiber_manual_record\", '\\ue24b'),\n    FIBER_NEW(\"mdsal-fiber_new\", '\\ue24d'),\n    FIBER_PIN(\"mdsal-fiber_pin\", '\\ue24f'),\n    FIBER_SMART_RECORD(\"mdsal-fiber_smart_record\", '\\ue251'),\n    FILE_COPY(\"mdsal-file_copy\", '\\ue253'),\n    FILE_UPLOAD(\"mdsal-file_upload\", '\\ue255'),\n    FILTER(\"mdsal-filter\", '\\ue257'),\n    FILTER_1(\"mdsal-filter_1\", '\\ue259'),\n    FILTER_2(\"mdsal-filter_2\", '\\ue25b'),\n    FILTER_3(\"mdsal-filter_3\", '\\ue25d'),\n    FILTER_4(\"mdsal-filter_4\", '\\ue25f'),\n    FILTER_5(\"mdsal-filter_5\", '\\ue261'),\n    FILTER_6(\"mdsal-filter_6\", '\\ue263'),\n    FILTER_7(\"mdsal-filter_7\", '\\ue265'),\n    FILTER_8(\"mdsal-filter_8\", '\\ue267'),\n    FILTER_9(\"mdsal-filter_9\", '\\ue269'),\n    FILTER_9_PLUS(\"mdsal-filter_9_plus\", '\\ue26b'),\n    FILTER_ALT(\"mdsal-filter_alt\", '\\ue7a8'),\n    FILTER_B_AND_W(\"mdsal-filter_b_and_w\", '\\ue26d'),\n    FILTER_CENTER_FOCUS(\"mdsal-filter_center_focus\", '\\ue26f'),\n    FILTER_DRAMA(\"mdsal-filter_drama\", '\\ue270'),\n    FILTER_FRAMES(\"mdsal-filter_frames\", '\\ue272'),\n    FILTER_HDR(\"mdsal-filter_hdr\", '\\ue274'),\n    FILTER_LIST(\"mdsal-filter_list\", '\\ue276'),\n    FILTER_NONE(\"mdsal-filter_none\", '\\ue277'),\n    FILTER_TILT_SHIFT(\"mdsal-filter_tilt_shift\", '\\ue279'),\n    FILTER_VINTAGE(\"mdsal-filter_vintage\", '\\ue27a'),\n    FIND_IN_PAGE(\"mdsal-find_in_page\", '\\ue27c'),\n    FIND_REPLACE(\"mdsal-find_replace\", '\\ue27e'),\n    FINGERPRINT(\"mdsal-fingerprint\", '\\ue27f'),\n    FIRE_EXTINGUISHER(\"mdsal-fire_extinguisher\", '\\ue86f'),\n    FIREPLACE(\"mdsal-fireplace\", '\\ue280'),\n    FIRST_PAGE(\"mdsal-first_page\", '\\ue282'),\n    FITNESS_CENTER(\"mdsal-fitness_center\", '\\ue283'),\n    FLAG(\"mdsal-flag\", '\\ue284'),\n    FLAKY(\"mdsal-flaky\", '\\ue7aa'),\n    FLARE(\"mdsal-flare\", '\\ue286'),\n    FLASH_AUTO(\"mdsal-flash_auto\", '\\ue287'),\n    FLASH_OFF(\"mdsal-flash_off\", '\\ue288'),\n    FLASH_ON(\"mdsal-flash_on\", '\\ue289'),\n    FLIGHT(\"mdsal-flight\", '\\ue28a'),\n    FLIGHT_LAND(\"mdsal-flight_land\", '\\ue28b'),\n    FLIGHT_TAKEOFF(\"mdsal-flight_takeoff\", '\\ue28c'),\n    FLIP(\"mdsal-flip\", '\\ue28d'),\n    FLIP_CAMERA_ANDROID(\"mdsal-flip_camera_android\", '\\ue28e'),\n    FLIP_CAMERA_IOS(\"mdsal-flip_camera_ios\", '\\ue290'),\n    FLIP_TO_BACK(\"mdsal-flip_to_back\", '\\ue292'),\n    FLIP_TO_FRONT(\"mdsal-flip_to_front\", '\\ue293'),\n    FOLDER(\"mdsal-folder\", '\\ue294'),\n    FOLDER_OPEN(\"mdsal-folder_open\", '\\ue296'),\n    FOLDER_SHARED(\"mdsal-folder_shared\", '\\ue298'),\n    FOLDER_SPECIAL(\"mdsal-folder_special\", '\\ue29a'),\n    FOLLOW_THE_SIGNS(\"mdsal-follow_the_signs\", '\\ue8a3'),\n    FONT_DOWNLOAD(\"mdsal-font_download\", '\\ue29c'),\n    FOOD_BANK(\"mdsal-food_bank\", '\\ue870'),\n    FORMAT_ALIGN_CENTER(\"mdsal-format_align_center\", '\\ue29e'),\n    FORMAT_ALIGN_JUSTIFY(\"mdsal-format_align_justify\", '\\ue29f'),\n    FORMAT_ALIGN_LEFT(\"mdsal-format_align_left\", '\\ue2a0'),\n    FORMAT_ALIGN_RIGHT(\"mdsal-format_align_right\", '\\ue2a1'),\n    FORMAT_BOLD(\"mdsal-format_bold\", '\\ue2a2'),\n    FORMAT_CLEAR(\"mdsal-format_clear\", '\\ue2a3'),\n    FORMAT_COLOR_FILL(\"mdsal-format_color_fill\", '\\ue2a4'),\n    FORMAT_COLOR_RESET(\"mdsal-format_color_reset\", '\\ue2a6'),\n    FORMAT_COLOR_TEXT(\"mdsal-format_color_text\", '\\ue2a8'),\n    FORMAT_INDENT_DECREASE(\"mdsal-format_indent_decrease\", '\\ue2aa'),\n    FORMAT_INDENT_INCREASE(\"mdsal-format_indent_increase\", '\\ue2ab'),\n    FORMAT_ITALIC(\"mdsal-format_italic\", '\\ue2ac'),\n    FORMAT_LINE_SPACING(\"mdsal-format_line_spacing\", '\\ue2ad'),\n    FORMAT_LIST_BULLETED(\"mdsal-format_list_bulleted\", '\\ue2ae'),\n    FORMAT_LIST_NUMBERED(\"mdsal-format_list_numbered\", '\\ue2af'),\n    FORMAT_LIST_NUMBERED_RTL(\"mdsal-format_list_numbered_rtl\", '\\ue2b0'),\n    FORMAT_PAINT(\"mdsal-format_paint\", '\\ue2b1'),\n    FORMAT_QUOTE(\"mdsal-format_quote\", '\\ue2b3'),\n    FORMAT_SHAPES(\"mdsal-format_shapes\", '\\ue2b5'),\n    FORMAT_SIZE(\"mdsal-format_size\", '\\ue2b7'),\n    FORMAT_STRIKETHROUGH(\"mdsal-format_strikethrough\", '\\ue2b8'),\n    FORMAT_TEXTDIRECTION_L_TO_R(\"mdsal-format_textdirection_l_to_r\", '\\ue2b9'),\n    FORMAT_TEXTDIRECTION_R_TO_L(\"mdsal-format_textdirection_r_to_l\", '\\ue2bb'),\n    FORMAT_UNDERLINED(\"mdsal-format_underlined\", '\\ue2bd'),\n    FORUM(\"mdsal-forum\", '\\ue2be'),\n    FORWARD(\"mdsal-forward\", '\\ue2c0'),\n    FORWARD_10(\"mdsal-forward_10\", '\\ue2c2'),\n    FORWARD_30(\"mdsal-forward_30\", '\\ue2c3'),\n    FORWARD_5(\"mdsal-forward_5\", '\\ue2c4'),\n    FORWARD_TO_INBOX(\"mdsal-forward_to_inbox\", '\\ue7ab'),\n    FOUNDATION(\"mdsal-foundation\", '\\ue872'),\n    FREE_BREAKFAST(\"mdsal-free_breakfast\", '\\ue2c5'),\n    FULLSCREEN(\"mdsal-fullscreen\", '\\ue2c7'),\n    FULLSCREEN_EXIT(\"mdsal-fullscreen_exit\", '\\ue2c8'),\n    FUNCTIONS(\"mdsal-functions\", '\\ue2c9'),\n    G_TRANSLATE(\"mdsal-g_translate\", '\\ue2ca'),\n    GAMEPAD(\"mdsal-gamepad\", '\\ue2cb'),\n    GAMES(\"mdsal-games\", '\\ue2cd'),\n    GAVEL(\"mdsal-gavel\", '\\ue2cf'),\n    GESTURE(\"mdsal-gesture\", '\\ue2d0'),\n    GET_APP(\"mdsal-get_app\", '\\ue2d1'),\n    GIF(\"mdsal-gif\", '\\ue2d3'),\n    GOLF_COURSE(\"mdsal-golf_course\", '\\ue2d5'),\n    GPS_FIXED(\"mdsal-gps_fixed\", '\\ue2d7'),\n    GPS_NOT_FIXED(\"mdsal-gps_not_fixed\", '\\ue2d9'),\n    GPS_OFF(\"mdsal-gps_off\", '\\ue2da'),\n    GRADE(\"mdsal-grade\", '\\ue2db'),\n    GRADIENT(\"mdsal-gradient\", '\\ue2dd'),\n    GRADING(\"mdsal-grading\", '\\ue7ad'),\n    GRAIN(\"mdsal-grain\", '\\ue2de'),\n    GRAPHIC_EQ(\"mdsal-graphic_eq\", '\\ue2df'),\n    GRASS(\"mdsal-grass\", '\\ue874'),\n    GREATER_THAN(\"mdsal-greater_than\", '\\ue2e0'),\n    GREATER_THAN_EQUAL(\"mdsal-greater_than_equal\", '\\ue2e1'),\n    GRID_OFF(\"mdsal-grid_off\", '\\ue2e2'),\n    GRID_ON(\"mdsal-grid_on\", '\\ue2e4'),\n    GROUP(\"mdsal-group\", '\\ue2e6'),\n    GROUP_ADD(\"mdsal-group_add\", '\\ue2e8'),\n    GROUP_WORK(\"mdsal-group_work\", '\\ue2ea'),\n    GROUPS(\"mdsal-groups\", '\\ue8b9'),\n    HANDYMAN(\"mdsal-handyman\", '\\ue7ae'),\n    HD(\"mdsal-hd\", '\\ue2ec'),\n    HDR_OFF(\"mdsal-hdr_off\", '\\ue2ee'),\n    HDR_ON(\"mdsal-hdr_on\", '\\ue2ef'),\n    HDR_STRONG(\"mdsal-hdr_strong\", '\\ue2f0'),\n    HDR_WEAK(\"mdsal-hdr_weak\", '\\ue2f2'),\n    HEADSET(\"mdsal-headset\", '\\ue2f4'),\n    HEADSET_MIC(\"mdsal-headset_mic\", '\\ue2f6'),\n    HEALING(\"mdsal-healing\", '\\ue2f8'),\n    HEARING(\"mdsal-hearing\", '\\ue2fa'),\n    HEARING_DISABLED(\"mdsal-hearing_disabled\", '\\ue7b0'),\n    HEIGHT(\"mdsal-height\", '\\ue2fb'),\n    HELP(\"mdsal-help\", '\\ue2fc'),\n    HELP_CENTER(\"mdsal-help_center\", '\\ue7b1'),\n    HELP_OUTLINE(\"mdsal-help_outline\", '\\ue2fe'),\n    HIGH_QUALITY(\"mdsal-high_quality\", '\\ue2ff'),\n    HIGHLIGHT(\"mdsal-highlight\", '\\ue301'),\n    HIGHLIGHT_ALT(\"mdsal-highlight_alt\", '\\ue7b3'),\n    HIGHLIGHT_OFF(\"mdsal-highlight_off\", '\\ue303'),\n    HISTORY(\"mdsal-history\", '\\ue305'),\n    HISTORY_EDU(\"mdsal-history_edu\", '\\ue7b4'),\n    HISTORY_TOGGLE_OFF(\"mdsal-history_toggle_off\", '\\ue7b6'),\n    HOME(\"mdsal-home\", '\\ue306'),\n    HOME_REPAIR_SERVICE(\"mdsal-home_repair_service\", '\\ue7b7'),\n    HOME_WORK(\"mdsal-home_work\", '\\ue308'),\n    HORIZONTAL_DISTRIBUTE(\"mdsal-horizontal_distribute\", '\\ue8d0'),\n    HORIZONTAL_RULE(\"mdsal-horizontal_rule\", '\\ue7b9'),\n    HORIZONTAL_SPLIT(\"mdsal-horizontal_split\", '\\ue30a'),\n    HOT_TUB(\"mdsal-hot_tub\", '\\ue30c'),\n    HOTEL(\"mdsal-hotel\", '\\ue30d'),\n    HOURGLASS_BOTTOM(\"mdsal-hourglass_bottom\", '\\ue7ba'),\n    HOURGLASS_DISABLED(\"mdsal-hourglass_disabled\", '\\ue7bc'),\n    HOURGLASS_EMPTY(\"mdsal-hourglass_empty\", '\\ue30f'),\n    HOURGLASS_FULL(\"mdsal-hourglass_full\", '\\ue310'),\n    HOURGLASS_TOP(\"mdsal-hourglass_top\", '\\ue7bd'),\n    HOUSE(\"mdsal-house\", '\\ue312'),\n    HOUSE_SIDING(\"mdsal-house_siding\", '\\ue875'),\n    HOW_TO_REG(\"mdsal-how_to_reg\", '\\ue314'),\n    HOW_TO_VOTE(\"mdsal-how_to_vote\", '\\ue316'),\n    HTTP(\"mdsal-http\", '\\ue318'),\n    HTTPS(\"mdsal-https\", '\\ue319'),\n    HVAC(\"mdsal-hvac\", '\\ue7bf'),\n    IMAGE(\"mdsal-image\", '\\ue31b'),\n    IMAGE_ASPECT_RATIO(\"mdsal-image_aspect_ratio\", '\\ue31d'),\n    IMAGE_NOT_SUPPORTED(\"mdsal-image_not_supported\", '\\ue7c1'),\n    IMAGE_SEARCH(\"mdsal-image_search\", '\\ue31f'),\n    IMPORT_CONTACTS(\"mdsal-import_contacts\", '\\ue321'),\n    IMPORT_EXPORT(\"mdsal-import_export\", '\\ue323'),\n    IMPORTANT_DEVICES(\"mdsal-important_devices\", '\\ue324'),\n    INBOX(\"mdsal-inbox\", '\\ue326'),\n    INDETERMINATE_CHECK_BOX(\"mdsal-indeterminate_check_box\", '\\ue328'),\n    INFO(\"mdsal-info\", '\\ue32a'),\n    INPUT(\"mdsal-input\", '\\ue32c'),\n    INSERT_CHART(\"mdsal-insert_chart\", '\\ue32d'),\n    INSERT_CHART_OUTLINED(\"mdsal-insert_chart_outlined\", '\\ue32f'),\n    INSERT_COMMENT(\"mdsal-insert_comment\", '\\ue330'),\n    INSERT_DRIVE_FILE(\"mdsal-insert_drive_file\", '\\ue332'),\n    INSERT_EMOTICON(\"mdsal-insert_emoticon\", '\\ue334'),\n    INSERT_INVITATION(\"mdsal-insert_invitation\", '\\ue336'),\n    INSERT_LINK(\"mdsal-insert_link\", '\\ue338'),\n    INSERT_PHOTO(\"mdsal-insert_photo\", '\\ue339'),\n    INSIGHTS(\"mdsal-insights\", '\\ue7c3'),\n    INTEGRATION_INSTRUCTIONS(\"mdsal-integration_instructions\", '\\ue7c4'),\n    INVERT_COLORS(\"mdsal-invert_colors\", '\\ue33b'),\n    INVERT_COLORS_OFF(\"mdsal-invert_colors_off\", '\\ue33d'),\n    ISO(\"mdsal-iso\", '\\ue33f'),\n    KEYBOARD(\"mdsal-keyboard\", '\\ue341'),\n    KEYBOARD_ARROW_DOWN(\"mdsal-keyboard_arrow_down\", '\\ue343'),\n    KEYBOARD_ARROW_LEFT(\"mdsal-keyboard_arrow_left\", '\\ue344'),\n    KEYBOARD_ARROW_RIGHT(\"mdsal-keyboard_arrow_right\", '\\ue345'),\n    KEYBOARD_ARROW_UP(\"mdsal-keyboard_arrow_up\", '\\ue346'),\n    KEYBOARD_BACKSPACE(\"mdsal-keyboard_backspace\", '\\ue347'),\n    KEYBOARD_CAPSLOCK(\"mdsal-keyboard_capslock\", '\\ue348'),\n    KEYBOARD_HIDE(\"mdsal-keyboard_hide\", '\\ue349'),\n    KEYBOARD_RETURN(\"mdsal-keyboard_return\", '\\ue34b'),\n    KEYBOARD_TAB(\"mdsal-keyboard_tab\", '\\ue34c'),\n    KEYBOARD_VOICE(\"mdsal-keyboard_voice\", '\\ue34d'),\n    KING_BED(\"mdsal-king_bed\", '\\ue34f'),\n    KITCHEN(\"mdsal-kitchen\", '\\ue351'),\n    LABEL(\"mdsal-label\", '\\ue353'),\n    LABEL_IMPORTANT(\"mdsal-label_important\", '\\ue355'),\n    LABEL_OFF(\"mdsal-label_off\", '\\ue357'),\n    LANDSCAPE(\"mdsal-landscape\", '\\ue359'),\n    LANGUAGE(\"mdsal-language\", '\\ue35b'),\n    LAPTOP(\"mdsal-laptop\", '\\ue35d'),\n    LAPTOP_CHROMEBOOK(\"mdsal-laptop_chromebook\", '\\ue35f'),\n    LAPTOP_MAC(\"mdsal-laptop_mac\", '\\ue361'),\n    LAPTOP_WINDOWS(\"mdsal-laptop_windows\", '\\ue363'),\n    LAST_PAGE(\"mdsal-last_page\", '\\ue365'),\n    LAUNCH(\"mdsal-launch\", '\\ue366'),\n    LAYERS(\"mdsal-layers\", '\\ue367'),\n    LAYERS_CLEAR(\"mdsal-layers_clear\", '\\ue369'),\n    LEADERBOARD(\"mdsal-leaderboard\", '\\ue877'),\n    LEAK_ADD(\"mdsal-leak_add\", '\\ue36b'),\n    LEAK_REMOVE(\"mdsal-leak_remove\", '\\ue36c'),\n    LEAVE_BAGS_AT_HOME(\"mdsal-leave_bags_at_home\", '\\ue8a5'),\n    LEGEND_TOGGLE(\"mdsal-legend_toggle\", '\\ue7c6'),\n    LENS(\"mdsal-lens\", '\\ue36d'),\n    LESS_THAN(\"mdsal-less_than\", '\\ue36f'),\n    LESS_THAN_EQUAL(\"mdsal-less_than_equal\", '\\ue370'),\n    LIBRARY_ADD(\"mdsal-library_add\", '\\ue371'),\n    LIBRARY_ADD_CHECK(\"mdsal-library_add_check\", '\\ue746'),\n    LIBRARY_BOOKS(\"mdsal-library_books\", '\\ue373'),\n    LIBRARY_MUSIC(\"mdsal-library_music\", '\\ue375'),\n    LIGHTBULB(\"mdsal-lightbulb\", '\\ue377'),\n    LINE_STYLE(\"mdsal-line_style\", '\\ue379'),\n    LINE_WEIGHT(\"mdsal-line_weight\", '\\ue37a'),\n    LINEAR_SCALE(\"mdsal-linear_scale\", '\\ue37b'),\n    LINK(\"mdsal-link\", '\\ue37c'),\n    LINK_OFF(\"mdsal-link_off\", '\\ue37e'),\n    LINKED_CAMERA(\"mdsal-linked_camera\", '\\ue37f'),\n    LIST(\"mdsal-list\", '\\ue381'),\n    LIST_ALT(\"mdsal-list_alt\", '\\ue382'),\n    LIVE_HELP(\"mdsal-live_help\", '\\ue384'),\n    LIVE_TV(\"mdsal-live_tv\", '\\ue386'),\n    LOCAL_ACTIVITY(\"mdsal-local_activity\", '\\ue388'),\n    LOCAL_AIRPORT(\"mdsal-local_airport\", '\\ue38a'),\n    LOCAL_ATM(\"mdsal-local_atm\", '\\ue38b'),\n    LOCAL_BAR(\"mdsal-local_bar\", '\\ue38d'),\n    LOCAL_CAFE(\"mdsal-local_cafe\", '\\ue38f'),\n    LOCAL_CAR_WASH(\"mdsal-local_car_wash\", '\\ue391'),\n    LOCAL_CONVENIENCE_STORE(\"mdsal-local_convenience_store\", '\\ue393'),\n    LOCAL_DINING(\"mdsal-local_dining\", '\\ue395'),\n    LOCAL_DRINK(\"mdsal-local_drink\", '\\ue396'),\n    LOCAL_FIRE_DEPARTMENT(\"mdsal-local_fire_department\", '\\ue8a7'),\n    LOCAL_FLORIST(\"mdsal-local_florist\", '\\ue398'),\n    LOCAL_GAS_STATION(\"mdsal-local_gas_station\", '\\ue39a'),\n    LOCAL_GROCERY_STORE(\"mdsal-local_grocery_store\", '\\ue39c'),\n    LOCAL_HOSPITAL(\"mdsal-local_hospital\", '\\ue39e'),\n    LOCAL_HOTEL(\"mdsal-local_hotel\", '\\ue3a0'),\n    LOCAL_LAUNDRY_SERVICE(\"mdsal-local_laundry_service\", '\\ue3a2'),\n    LOCAL_LIBRARY(\"mdsal-local_library\", '\\ue3a4'),\n    LOCAL_MALL(\"mdsal-local_mall\", '\\ue3a6'),\n    LOCAL_MOVIES(\"mdsal-local_movies\", '\\ue3a8'),\n    LOCAL_OFFER(\"mdsal-local_offer\", '\\ue3aa'),\n    LOCAL_PARKING(\"mdsal-local_parking\", '\\ue3ac'),\n    LOCAL_PHARMACY(\"mdsal-local_pharmacy\", '\\ue3ad'),\n    LOCAL_PHONE(\"mdsal-local_phone\", '\\ue3af'),\n    LOCAL_PIZZA(\"mdsal-local_pizza\", '\\ue3b1'),\n    LOCAL_PLAY(\"mdsal-local_play\", '\\ue3b3'),\n    LOCAL_POLICE(\"mdsal-local_police\", '\\ue8a9'),\n    LOCAL_POST_OFFICE(\"mdsal-local_post_office\", '\\ue3b5'),\n    LOCAL_PRINTSHOP(\"mdsal-local_printshop\", '\\ue3b7'),\n    LOCAL_SEE(\"mdsal-local_see\", '\\ue3b9'),\n    LOCAL_SHIPPING(\"mdsal-local_shipping\", '\\ue3bb'),\n    LOCAL_TAXI(\"mdsal-local_taxi\", '\\ue3bd'),\n    LOCATION_CITY(\"mdsal-location_city\", '\\ue3bf'),\n    LOCATION_DISABLED(\"mdsal-location_disabled\", '\\ue3c0'),\n    LOCATION_OFF(\"mdsal-location_off\", '\\ue3c1'),\n    LOCATION_ON(\"mdsal-location_on\", '\\ue3c2'),\n    LOCATION_SEARCHING(\"mdsal-location_searching\", '\\ue3c4'),\n    LOCK(\"mdsal-lock\", '\\ue3c5'),\n    LOCK_OPEN(\"mdsal-lock_open\", '\\ue3c7'),\n    LOG_IN(\"mdsal-log_in\", '\\ue3c9'),\n    LOG_OUT(\"mdsal-log_out\", '\\ue3ca'),\n    LOGIN(\"mdsal-login\", '\\ue7c7'),\n    LOOKS(\"mdsal-looks\", '\\ue3cb'),\n    LOOKS_3(\"mdsal-looks_3\", '\\ue3cc'),\n    LOOKS_4(\"mdsal-looks_4\", '\\ue3ce'),\n    LOOKS_5(\"mdsal-looks_5\", '\\ue3d0'),\n    LOOKS_6(\"mdsal-looks_6\", '\\ue3d2'),\n    LOOKS_ONE(\"mdsal-looks_one\", '\\ue3d4'),\n    LOOKS_TWO(\"mdsal-looks_two\", '\\ue3d6'),\n    LOOP(\"mdsal-loop\", '\\ue3d8'),\n    LOUPE(\"mdsal-loupe\", '\\ue3d9'),\n    LOW_PRIORITY(\"mdsal-low_priority\", '\\ue3db'),\n    LOYALTY(\"mdsal-loyalty\", '\\ue3dc'),\n    LUGGAGE(\"mdsal-luggage\", '\\ue8bb');\n\n    public static Material2SharpAL findByDescription(String description) {\n        for (Material2SharpAL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Material2SharpAL(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2SharpALIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Material2SharpALIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/material2/20200820/fonts/MaterialIcons-Sharp.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdsal-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Material2SharpAL.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Material Icons Sharp\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2SharpALIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class Material2SharpALIkonProvider implements IkonProvider<Material2SharpAL> {\n    @Override\n    public Class<Material2SharpAL> getIkon() {\n        return Material2SharpAL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2SharpMZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Material2SharpMZ implements Ikon {\n    MAIL(\"mdsmz-mail\", '\\ue3de'),\n    MAIL_OUTLINE(\"mdsmz-mail_outline\", '\\ue3e0'),\n    MAP(\"mdsmz-map\", '\\ue3e1'),\n    MAPS_UGC(\"mdsmz-maps_ugc\", '\\ue7c8'),\n    MARK_CHAT_READ(\"mdsmz-mark_chat_read\", '\\ue7ca'),\n    MARK_CHAT_UNREAD(\"mdsmz-mark_chat_unread\", '\\ue7cc'),\n    MARK_EMAIL_READ(\"mdsmz-mark_email_read\", '\\ue7ce'),\n    MARK_EMAIL_UNREAD(\"mdsmz-mark_email_unread\", '\\ue7d0'),\n    MARKUNREAD(\"mdsmz-markunread\", '\\ue3e3'),\n    MARKUNREAD_MAILBOX(\"mdsmz-markunread_mailbox\", '\\ue3e5'),\n    MASKS(\"mdsmz-masks\", '\\ue8ab'),\n    MAXIMIZE(\"mdsmz-maximize\", '\\ue3e7'),\n    MEDIATION(\"mdsmz-mediation\", '\\ue7d2'),\n    MEDICAL_SERVICES(\"mdsmz-medical_services\", '\\ue7d3'),\n    MEETING_ROOM(\"mdsmz-meeting_room\", '\\ue3e8'),\n    MEMORY(\"mdsmz-memory\", '\\ue3ea'),\n    MENU(\"mdsmz-menu\", '\\ue3ec'),\n    MENU_BOOK(\"mdsmz-menu_book\", '\\ue3ed'),\n    MENU_OPEN(\"mdsmz-menu_open\", '\\ue3ef'),\n    MERGE_TYPE(\"mdsmz-merge_type\", '\\ue3f0'),\n    MESSAGE(\"mdsmz-message\", '\\ue3f1'),\n    MIC(\"mdsmz-mic\", '\\ue3f3'),\n    MIC_NONE(\"mdsmz-mic_none\", '\\ue3f5'),\n    MIC_OFF(\"mdsmz-mic_off\", '\\ue3f7'),\n    MICROWAVE(\"mdsmz-microwave\", '\\ue879'),\n    MILITARY_TECH(\"mdsmz-military_tech\", '\\ue7d5'),\n    MINIMIZE(\"mdsmz-minimize\", '\\ue3f9'),\n    MINUS(\"mdsmz-minus\", '\\ue3fa'),\n    MISCELLANEOUS_SERVICES(\"mdsmz-miscellaneous_services\", '\\ue7d7'),\n    MISSED_VIDEO_CALL(\"mdsmz-missed_video_call\", '\\ue3fb'),\n    MMS(\"mdsmz-mms\", '\\ue3fd'),\n    MOBILE_FRIENDLY(\"mdsmz-mobile_friendly\", '\\ue3ff'),\n    MOBILE_OFF(\"mdsmz-mobile_off\", '\\ue400'),\n    MOBILE_SCREEN_SHARE(\"mdsmz-mobile_screen_share\", '\\ue401'),\n    MODE_COMMENT(\"mdsmz-mode_comment\", '\\ue403'),\n    MODEL_TRAINING(\"mdsmz-model_training\", '\\ue7d8'),\n    MONETIZATION_ON(\"mdsmz-monetization_on\", '\\ue405'),\n    MONEY(\"mdsmz-money\", '\\ue407'),\n    MONEY_OFF(\"mdsmz-money_off\", '\\ue409'),\n    MONOCHROME_PHOTOS(\"mdsmz-monochrome_photos\", '\\ue40a'),\n    MOOD(\"mdsmz-mood\", '\\ue40c'),\n    MOOD_BAD(\"mdsmz-mood_bad\", '\\ue40e'),\n    MOPED(\"mdsmz-moped\", '\\ue7d9'),\n    MORE(\"mdsmz-more\", '\\ue410'),\n    MORE_HORIZ(\"mdsmz-more_horiz\", '\\ue412'),\n    MORE_TIME(\"mdsmz-more_time\", '\\ue7db'),\n    MORE_VERT(\"mdsmz-more_vert\", '\\ue413'),\n    MOTION_PHOTOS_ON(\"mdsmz-motion_photos_on\", '\\ue8ad'),\n    MOTION_PHOTOS_PAUSE(\"mdsmz-motion_photos_pause\", '\\ue8bd'),\n    MOTION_PHOTOS_PAUSED(\"mdsmz-motion_photos_paused\", '\\ue8ae'),\n    MOTORCYCLE(\"mdsmz-motorcycle\", '\\ue414'),\n    MOUSE(\"mdsmz-mouse\", '\\ue416'),\n    MOVE_TO_INBOX(\"mdsmz-move_to_inbox\", '\\ue418'),\n    MOVIE(\"mdsmz-movie\", '\\ue41a'),\n    MOVIE_CREATION(\"mdsmz-movie_creation\", '\\ue41c'),\n    MOVIE_FILTER(\"mdsmz-movie_filter\", '\\ue41e'),\n    MULTILINE_CHART(\"mdsmz-multiline_chart\", '\\ue420'),\n    MULTIPLE_STOP(\"mdsmz-multiple_stop\", '\\ue7dc'),\n    MUSEUM(\"mdsmz-museum\", '\\ue421'),\n    MUSIC_NOTE(\"mdsmz-music_note\", '\\ue423'),\n    MUSIC_OFF(\"mdsmz-music_off\", '\\ue425'),\n    MUSIC_VIDEO(\"mdsmz-music_video\", '\\ue427'),\n    MY_LOCATION(\"mdsmz-my_location\", '\\ue429'),\n    NAT(\"mdsmz-nat\", '\\ue7dd'),\n    NATURE(\"mdsmz-nature\", '\\ue42b'),\n    NATURE_PEOPLE(\"mdsmz-nature_people\", '\\ue42d'),\n    NAVIGATE_BEFORE(\"mdsmz-navigate_before\", '\\ue42f'),\n    NAVIGATE_NEXT(\"mdsmz-navigate_next\", '\\ue430'),\n    NAVIGATION(\"mdsmz-navigation\", '\\ue431'),\n    NEAR_ME(\"mdsmz-near_me\", '\\ue433'),\n    NEAR_ME_DISABLED(\"mdsmz-near_me_disabled\", '\\ue87b'),\n    NETWORK_CELL(\"mdsmz-network_cell\", '\\ue435'),\n    NETWORK_CHECK(\"mdsmz-network_check\", '\\ue437'),\n    NETWORK_LOCKED(\"mdsmz-network_locked\", '\\ue438'),\n    NETWORK_WIFI(\"mdsmz-network_wifi\", '\\ue439'),\n    NEW_RELEASES(\"mdsmz-new_releases\", '\\ue43b'),\n    NEXT_PLAN(\"mdsmz-next_plan\", '\\ue7df'),\n    NEXT_WEEK(\"mdsmz-next_week\", '\\ue43d'),\n    NFC(\"mdsmz-nfc\", '\\ue43f'),\n    NIGHT_SHELTER(\"mdsmz-night_shelter\", '\\ue87d'),\n    NIGHTS_STAY(\"mdsmz-nights_stay\", '\\ue440'),\n    NO_BACKPACK(\"mdsmz-no_backpack\", '\\ue8be'),\n    NO_CELL(\"mdsmz-no_cell\", '\\ue7e1'),\n    NO_DRINKS(\"mdsmz-no_drinks\", '\\ue7e3'),\n    NO_ENCRYPTION(\"mdsmz-no_encryption\", '\\ue442'),\n    NO_FLASH(\"mdsmz-no_flash\", '\\ue7e5'),\n    NO_FOOD(\"mdsmz-no_food\", '\\ue7e7'),\n    NO_LUGGAGE(\"mdsmz-no_luggage\", '\\ue8c0'),\n    NO_MEALS(\"mdsmz-no_meals\", '\\ue87f'),\n    NO_MEETING_ROOM(\"mdsmz-no_meeting_room\", '\\ue444'),\n    NO_PHOTOGRAPHY(\"mdsmz-no_photography\", '\\ue7e9'),\n    NO_SIM(\"mdsmz-no_sim\", '\\ue446'),\n    NO_STROLLER(\"mdsmz-no_stroller\", '\\ue7eb'),\n    NO_TRANSFER(\"mdsmz-no_transfer\", '\\ue880'),\n    NORTH(\"mdsmz-north\", '\\ue882'),\n    NORTH_EAST(\"mdsmz-north_east\", '\\ue883'),\n    NORTH_WEST(\"mdsmz-north_west\", '\\ue884'),\n    NOT_ACCESSIBLE(\"mdsmz-not_accessible\", '\\ue7ed'),\n    NOT_EQUAL(\"mdsmz-not_equal\", '\\ue448'),\n    NOT_INTERESTED(\"mdsmz-not_interested\", '\\ue449'),\n    NOT_LISTED_LOCATION(\"mdsmz-not_listed_location\", '\\ue44a'),\n    NOT_STARTED(\"mdsmz-not_started\", '\\ue7ee'),\n    NOTE(\"mdsmz-note\", '\\ue44c'),\n    NOTE_ADD(\"mdsmz-note_add\", '\\ue44e'),\n    NOTES(\"mdsmz-notes\", '\\ue450'),\n    NOTIFICATION_IMPORTANT(\"mdsmz-notification_important\", '\\ue451'),\n    NOTIFICATIONS(\"mdsmz-notifications\", '\\ue453'),\n    NOTIFICATIONS_ACTIVE(\"mdsmz-notifications_active\", '\\ue455'),\n    NOTIFICATIONS_NONE(\"mdsmz-notifications_none\", '\\ue457'),\n    NOTIFICATIONS_OFF(\"mdsmz-notifications_off\", '\\ue459'),\n    NOTIFICATIONS_PAUSED(\"mdsmz-notifications_paused\", '\\ue45b'),\n    OFFLINE_BOLT(\"mdsmz-offline_bolt\", '\\ue45d'),\n    OFFLINE_PIN(\"mdsmz-offline_pin\", '\\ue45f'),\n    ONDEMAND_VIDEO(\"mdsmz-ondemand_video\", '\\ue461'),\n    ONLINE_PREDICTION(\"mdsmz-online_prediction\", '\\ue7f0'),\n    OPACITY(\"mdsmz-opacity\", '\\ue463'),\n    OPEN_IN_BROWSER(\"mdsmz-open_in_browser\", '\\ue465'),\n    OPEN_IN_FULL(\"mdsmz-open_in_full\", '\\ue7f1'),\n    OPEN_IN_NEW(\"mdsmz-open_in_new\", '\\ue466'),\n    OPEN_WITH(\"mdsmz-open_with\", '\\ue467'),\n    OUTBOND(\"mdsmz-outbond\", '\\ue8c2'),\n    OUTDOOR_GRILL(\"mdsmz-outdoor_grill\", '\\ue468'),\n    OUTLET(\"mdsmz-outlet\", '\\ue7f2'),\n    OUTLINED_FLAG(\"mdsmz-outlined_flag\", '\\ue46a'),\n    PAGES(\"mdsmz-pages\", '\\ue46b'),\n    PAGEVIEW(\"mdsmz-pageview\", '\\ue46d'),\n    PALETTE(\"mdsmz-palette\", '\\ue46f'),\n    PAN_TOOL(\"mdsmz-pan_tool\", '\\ue471'),\n    PANORAMA(\"mdsmz-panorama\", '\\ue473'),\n    PANORAMA_FISH_EYE(\"mdsmz-panorama_fish_eye\", '\\ue475'),\n    PANORAMA_HORIZONTAL(\"mdsmz-panorama_horizontal\", '\\ue477'),\n    PANORAMA_VERTICAL(\"mdsmz-panorama_vertical\", '\\ue479'),\n    PANORAMA_WIDE_ANGLE(\"mdsmz-panorama_wide_angle\", '\\ue47b'),\n    PARTY_MODE(\"mdsmz-party_mode\", '\\ue47d'),\n    PAUSE(\"mdsmz-pause\", '\\ue47f'),\n    PAUSE_CIRCLE_FILLED(\"mdsmz-pause_circle_filled\", '\\ue480'),\n    PAUSE_CIRCLE_OUTLINE(\"mdsmz-pause_circle_outline\", '\\ue482'),\n    PAUSE_PRESENTATION(\"mdsmz-pause_presentation\", '\\ue483'),\n    PAYMENT(\"mdsmz-payment\", '\\ue485'),\n    PAYMENTS(\"mdsmz-payments\", '\\ue7f4'),\n    PEDAL_BIKE(\"mdsmz-pedal_bike\", '\\ue7f6'),\n    PENDING(\"mdsmz-pending\", '\\ue7f7'),\n    PENDING_ACTIONS(\"mdsmz-pending_actions\", '\\ue7f9'),\n    PEOPLE(\"mdsmz-people\", '\\ue487'),\n    PEOPLE_ALT(\"mdsmz-people_alt\", '\\ue489'),\n    PEOPLE_OUTLINE(\"mdsmz-people_outline\", '\\ue48b'),\n    PERCENTAGE(\"mdsmz-percentage\", '\\ue48d'),\n    PERM_CAMERA_MIC(\"mdsmz-perm_camera_mic\", '\\ue48f'),\n    PERM_CONTACT_CALENDAR(\"mdsmz-perm_contact_calendar\", '\\ue491'),\n    PERM_DATA_SETTING(\"mdsmz-perm_data_setting\", '\\ue493'),\n    PERM_DEVICE_INFORMATION(\"mdsmz-perm_device_information\", '\\ue494'),\n    PERM_IDENTITY(\"mdsmz-perm_identity\", '\\ue496'),\n    PERM_MEDIA(\"mdsmz-perm_media\", '\\ue498'),\n    PERM_PHONE_MSG(\"mdsmz-perm_phone_msg\", '\\ue49a'),\n    PERM_SCAN_WIFI(\"mdsmz-perm_scan_wifi\", '\\ue49c'),\n    PERSON(\"mdsmz-person\", '\\ue49e'),\n    PERSON_ADD(\"mdsmz-person_add\", '\\ue4a0'),\n    PERSON_ADD_ALT_1(\"mdsmz-person_add_alt_1\", '\\ue7fb'),\n    PERSON_ADD_DISABLED(\"mdsmz-person_add_disabled\", '\\ue4a2'),\n    PERSON_OUTLINE(\"mdsmz-person_outline\", '\\ue4a4'),\n    PERSON_PIN(\"mdsmz-person_pin\", '\\ue4a6'),\n    PERSON_PIN_CIRCLE(\"mdsmz-person_pin_circle\", '\\ue4a8'),\n    PERSON_REMOVE(\"mdsmz-person_remove\", '\\ue7fd'),\n    PERSON_REMOVE_ALT_1(\"mdsmz-person_remove_alt_1\", '\\ue7ff'),\n    PERSON_SEARCH(\"mdsmz-person_search\", '\\ue801'),\n    PERSONAL_VIDEO(\"mdsmz-personal_video\", '\\ue4aa'),\n    PEST_CONTROL(\"mdsmz-pest_control\", '\\ue803'),\n    PEST_CONTROL_RODENT(\"mdsmz-pest_control_rodent\", '\\ue805'),\n    PETS(\"mdsmz-pets\", '\\ue4ac'),\n    PHONE(\"mdsmz-phone\", '\\ue4ad'),\n    PHONE_ANDROID(\"mdsmz-phone_android\", '\\ue4af'),\n    PHONE_BLUETOOTH_SPEAKER(\"mdsmz-phone_bluetooth_speaker\", '\\ue4b1'),\n    PHONE_CALLBACK(\"mdsmz-phone_callback\", '\\ue4b3'),\n    PHONE_DISABLED(\"mdsmz-phone_disabled\", '\\ue4b5'),\n    PHONE_ENABLED(\"mdsmz-phone_enabled\", '\\ue4b6'),\n    PHONE_FORWARDED(\"mdsmz-phone_forwarded\", '\\ue4b7'),\n    PHONE_IN_TALK(\"mdsmz-phone_in_talk\", '\\ue4b9'),\n    PHONE_IPHONE(\"mdsmz-phone_iphone\", '\\ue4bb'),\n    PHONE_LOCKED(\"mdsmz-phone_locked\", '\\ue4bd'),\n    PHONE_MISSED(\"mdsmz-phone_missed\", '\\ue4bf'),\n    PHONE_PAUSED(\"mdsmz-phone_paused\", '\\ue4c1'),\n    PHONELINK(\"mdsmz-phonelink\", '\\ue4c3'),\n    PHONELINK_ERASE(\"mdsmz-phonelink_erase\", '\\ue4c5'),\n    PHONELINK_LOCK(\"mdsmz-phonelink_lock\", '\\ue4c6'),\n    PHONELINK_OFF(\"mdsmz-phonelink_off\", '\\ue4c7'),\n    PHONELINK_RING(\"mdsmz-phonelink_ring\", '\\ue4c9'),\n    PHONELINK_SETUP(\"mdsmz-phonelink_setup\", '\\ue4cb'),\n    PHOTO(\"mdsmz-photo\", '\\ue4cc'),\n    PHOTO_ALBUM(\"mdsmz-photo_album\", '\\ue4ce'),\n    PHOTO_CAMERA(\"mdsmz-photo_camera\", '\\ue4d0'),\n    PHOTO_FILTER(\"mdsmz-photo_filter\", '\\ue4d2'),\n    PHOTO_LIBRARY(\"mdsmz-photo_library\", '\\ue4d3'),\n    PHOTO_SIZE_SELECT_ACTUAL(\"mdsmz-photo_size_select_actual\", '\\ue4d5'),\n    PHOTO_SIZE_SELECT_LARGE(\"mdsmz-photo_size_select_large\", '\\ue4d7'),\n    PHOTO_SIZE_SELECT_SMALL(\"mdsmz-photo_size_select_small\", '\\ue4d8'),\n    PICTURE_AS_PDF(\"mdsmz-picture_as_pdf\", '\\ue4d9'),\n    PICTURE_IN_PICTURE(\"mdsmz-picture_in_picture\", '\\ue4db'),\n    PICTURE_IN_PICTURE_ALT(\"mdsmz-picture_in_picture_alt\", '\\ue4dd'),\n    PIE_CHART(\"mdsmz-pie_chart\", '\\ue4df'),\n    PIN(\"mdsmz-pin\", '\\ue4e1'),\n    PIN_DROP(\"mdsmz-pin_drop\", '\\ue4e3'),\n    PIN_OFF(\"mdsmz-pin_off\", '\\ue4e5'),\n    PLACE(\"mdsmz-place\", '\\ue4e7'),\n    PLAGIARISM(\"mdsmz-plagiarism\", '\\ue807'),\n    PLAY_ARROW(\"mdsmz-play_arrow\", '\\ue4e9'),\n    PLAY_CIRCLE_FILLED(\"mdsmz-play_circle_filled\", '\\ue4eb'),\n    PLAY_CIRCLE_FILLED_WHITE(\"mdsmz-play_circle_filled_white\", '\\ue4ed'),\n    PLAY_CIRCLE_OUTLINE(\"mdsmz-play_circle_outline\", '\\ue4ef'),\n    PLAY_FOR_WORK(\"mdsmz-play_for_work\", '\\ue4f0'),\n    PLAYLIST_ADD(\"mdsmz-playlist_add\", '\\ue4f1'),\n    PLAYLIST_ADD_CHECK(\"mdsmz-playlist_add_check\", '\\ue4f2'),\n    PLAYLIST_PLAY(\"mdsmz-playlist_play\", '\\ue4f3'),\n    PLUMBING(\"mdsmz-plumbing\", '\\ue809'),\n    PLUS(\"mdsmz-plus\", '\\ue4f4'),\n    PLUS_MINUS(\"mdsmz-plus_minus\", '\\ue4f5'),\n    PLUS_MINUS_ALT(\"mdsmz-plus_minus_alt\", '\\ue4f6'),\n    PLUS_ONE(\"mdsmz-plus_one\", '\\ue4f7'),\n    POINT_OF_SALE(\"mdsmz-point_of_sale\", '\\ue80a'),\n    POLICY(\"mdsmz-policy\", '\\ue4f8'),\n    POLL(\"mdsmz-poll\", '\\ue4fa'),\n    POLYMER(\"mdsmz-polymer\", '\\ue4fc'),\n    POOL(\"mdsmz-pool\", '\\ue4fd'),\n    PORTABLE_WIFI_OFF(\"mdsmz-portable_wifi_off\", '\\ue4ff'),\n    PORTRAIT(\"mdsmz-portrait\", '\\ue500'),\n    POST_ADD(\"mdsmz-post_add\", '\\ue502'),\n    POWER(\"mdsmz-power\", '\\ue503'),\n    POWER_INPUT(\"mdsmz-power_input\", '\\ue505'),\n    POWER_OFF(\"mdsmz-power_off\", '\\ue506'),\n    POWER_SETTINGS_NEW(\"mdsmz-power_settings_new\", '\\ue508'),\n    PREGNANT_WOMAN(\"mdsmz-pregnant_woman\", '\\ue509'),\n    PRESENT_TO_ALL(\"mdsmz-present_to_all\", '\\ue50a'),\n    PREVIEW(\"mdsmz-preview\", '\\ue80c'),\n    PRINT(\"mdsmz-print\", '\\ue50c'),\n    PRINT_DISABLED(\"mdsmz-print_disabled\", '\\ue50e'),\n    PRIORITY_HIGH(\"mdsmz-priority_high\", '\\ue510'),\n    PRIVACY_TIP(\"mdsmz-privacy_tip\", '\\ue80e'),\n    PSYCHOLOGY(\"mdsmz-psychology\", '\\ue810'),\n    PUBLIC(\"mdsmz-public\", '\\ue511'),\n    PUBLIC_OFF(\"mdsmz-public_off\", '\\ue812'),\n    PUBLISH(\"mdsmz-publish\", '\\ue513'),\n    PUBLISHED_WITH_CHANGES(\"mdsmz-published_with_changes\", '\\ue8c4'),\n    PUSH_PIN(\"mdsmz-push_pin\", '\\ue814'),\n    QR_CODE(\"mdsmz-qr_code\", '\\ue816'),\n    QR_CODE_2(\"mdsmz-qr_code_2\", '\\ue8d1'),\n    QR_CODE_SCANNER(\"mdsmz-qr_code_scanner\", '\\ue885'),\n    QRCODE(\"mdsmz-qrcode\", '\\ue515'),\n    QUERY_BUILDER(\"mdsmz-query_builder\", '\\ue517'),\n    QUESTION_ANSWER(\"mdsmz-question_answer\", '\\ue519'),\n    QUEUE(\"mdsmz-queue\", '\\ue51b'),\n    QUEUE_MUSIC(\"mdsmz-queue_music\", '\\ue51d'),\n    QUEUE_PLAY_NEXT(\"mdsmz-queue_play_next\", '\\ue51f'),\n    QUICKREPLY(\"mdsmz-quickreply\", '\\ue818'),\n    RADIO(\"mdsmz-radio\", '\\ue520'),\n    RADIO_BUTTON_CHECKED(\"mdsmz-radio_button_checked\", '\\ue522'),\n    RADIO_BUTTON_UNCHECKED(\"mdsmz-radio_button_unchecked\", '\\ue523'),\n    RATE_REVIEW(\"mdsmz-rate_review\", '\\ue524'),\n    READ_MORE(\"mdsmz-read_more\", '\\ue81a'),\n    RECEIPT(\"mdsmz-receipt\", '\\ue526'),\n    RECEIPT_LONG(\"mdsmz-receipt_long\", '\\ue81b'),\n    RECENT_ACTORS(\"mdsmz-recent_actors\", '\\ue528'),\n    RECORD_VOICE_OVER(\"mdsmz-record_voice_over\", '\\ue52a'),\n    REDEEM(\"mdsmz-redeem\", '\\ue52c'),\n    REDO(\"mdsmz-redo\", '\\ue52e'),\n    REDUCE_CAPACITY(\"mdsmz-reduce_capacity\", '\\ue8af'),\n    REFRESH(\"mdsmz-refresh\", '\\ue52f'),\n    REMOVE(\"mdsmz-remove\", '\\ue530'),\n    REMOVE_CIRCLE(\"mdsmz-remove_circle\", '\\ue531'),\n    REMOVE_CIRCLE_OUTLINE(\"mdsmz-remove_circle_outline\", '\\ue533'),\n    REMOVE_FROM_QUEUE(\"mdsmz-remove_from_queue\", '\\ue534'),\n    REMOVE_RED_EYE(\"mdsmz-remove_red_eye\", '\\ue536'),\n    REMOVE_SHOPPING_CART(\"mdsmz-remove_shopping_cart\", '\\ue538'),\n    REORDER(\"mdsmz-reorder\", '\\ue53a'),\n    REPEAT(\"mdsmz-repeat\", '\\ue53b'),\n    REPEAT_ONE(\"mdsmz-repeat_one\", '\\ue53c'),\n    REPLAY(\"mdsmz-replay\", '\\ue53d'),\n    REPLAY_10(\"mdsmz-replay_10\", '\\ue53e'),\n    REPLAY_30(\"mdsmz-replay_30\", '\\ue53f'),\n    REPLAY_5(\"mdsmz-replay_5\", '\\ue540'),\n    REPLY(\"mdsmz-reply\", '\\ue541'),\n    REPLY_ALL(\"mdsmz-reply_all\", '\\ue542'),\n    REPORT(\"mdsmz-report\", '\\ue543'),\n    REPORT_OFF(\"mdsmz-report_off\", '\\ue545'),\n    REPORT_PROBLEM(\"mdsmz-report_problem\", '\\ue547'),\n    REQUEST_PAGE(\"mdsmz-request_page\", '\\ue8c5'),\n    REQUEST_QUOTE(\"mdsmz-request_quote\", '\\ue81d'),\n    RESTAURANT(\"mdsmz-restaurant\", '\\ue549'),\n    RESTAURANT_MENU(\"mdsmz-restaurant_menu\", '\\ue54a'),\n    RESTORE(\"mdsmz-restore\", '\\ue54b'),\n    RESTORE_FROM_TRASH(\"mdsmz-restore_from_trash\", '\\ue54c'),\n    RESTORE_PAGE(\"mdsmz-restore_page\", '\\ue54e'),\n    RICE_BOWL(\"mdsmz-rice_bowl\", '\\ue886'),\n    RING_VOLUME(\"mdsmz-ring_volume\", '\\ue550'),\n    ROCKET(\"mdsmz-rocket\", '\\ue552'),\n    ROOFING(\"mdsmz-roofing\", '\\ue888'),\n    ROOM(\"mdsmz-room\", '\\ue554'),\n    ROOM_PREFERENCES(\"mdsmz-room_preferences\", '\\ue81f'),\n    ROOM_SERVICE(\"mdsmz-room_service\", '\\ue556'),\n    ROTATE_90_DEGREES_CCW(\"mdsmz-rotate_90_degrees_ccw\", '\\ue558'),\n    ROTATE_LEFT(\"mdsmz-rotate_left\", '\\ue55a'),\n    ROTATE_RIGHT(\"mdsmz-rotate_right\", '\\ue55b'),\n    ROUNDED_CORNER(\"mdsmz-rounded_corner\", '\\ue55c'),\n    ROUTER(\"mdsmz-router\", '\\ue55d'),\n    ROWING(\"mdsmz-rowing\", '\\ue55f'),\n    RSS_FEED(\"mdsmz-rss_feed\", '\\ue560'),\n    RULE(\"mdsmz-rule\", '\\ue821'),\n    RULE_FOLDER(\"mdsmz-rule_folder\", '\\ue822'),\n    RUN_CIRCLE(\"mdsmz-run_circle\", '\\ue824'),\n    RV_HOOKUP(\"mdsmz-rv_hookup\", '\\ue561'),\n    SANITIZER(\"mdsmz-sanitizer\", '\\ue8b0'),\n    SATELLITE(\"mdsmz-satellite\", '\\ue563'),\n    SAVE(\"mdsmz-save\", '\\ue565'),\n    SAVE_ALT(\"mdsmz-save_alt\", '\\ue567'),\n    SCANNER(\"mdsmz-scanner\", '\\ue568'),\n    SCATTER_PLOT(\"mdsmz-scatter_plot\", '\\ue56a'),\n    SCHEDULE(\"mdsmz-schedule\", '\\ue56c'),\n    SCHOOL(\"mdsmz-school\", '\\ue56e'),\n    SCIENCE(\"mdsmz-science\", '\\ue826'),\n    SCORE(\"mdsmz-score\", '\\ue570'),\n    SCREEN_LOCK_LANDSCAPE(\"mdsmz-screen_lock_landscape\", '\\ue572'),\n    SCREEN_LOCK_PORTRAIT(\"mdsmz-screen_lock_portrait\", '\\ue574'),\n    SCREEN_LOCK_ROTATION(\"mdsmz-screen_lock_rotation\", '\\ue576'),\n    SCREEN_ROTATION(\"mdsmz-screen_rotation\", '\\ue577'),\n    SCREEN_SHARE(\"mdsmz-screen_share\", '\\ue579'),\n    SD_CARD(\"mdsmz-sd_card\", '\\ue57b'),\n    SD_STORAGE(\"mdsmz-sd_storage\", '\\ue57d'),\n    SEARCH(\"mdsmz-search\", '\\ue57f'),\n    SEARCH_OFF(\"mdsmz-search_off\", '\\ue828'),\n    SECURITY(\"mdsmz-security\", '\\ue580'),\n    SELECT_ALL(\"mdsmz-select_all\", '\\ue582'),\n    SELF_IMPROVEMENT(\"mdsmz-self_improvement\", '\\ue829'),\n    SEND(\"mdsmz-send\", '\\ue583'),\n    SENSOR_DOOR(\"mdsmz-sensor_door\", '\\ue82a'),\n    SENSOR_WINDOW(\"mdsmz-sensor_window\", '\\ue82c'),\n    SENTIMENT_DISSATISFIED(\"mdsmz-sentiment_dissatisfied\", '\\ue585'),\n    SENTIMENT_NEUTRAL(\"mdsmz-sentiment_neutral\", '\\ue587'),\n    SENTIMENT_SATISFIED(\"mdsmz-sentiment_satisfied\", '\\ue589'),\n    SENTIMENT_SATISFIED_ALT(\"mdsmz-sentiment_satisfied_alt\", '\\ue58b'),\n    SENTIMENT_SLIGHTLY_DISSATISFIED(\"mdsmz-sentiment_slightly_dissatisfied\", '\\ue58d'),\n    SENTIMENT_VERY_DISSATISFIED(\"mdsmz-sentiment_very_dissatisfied\", '\\ue58f'),\n    SENTIMENT_VERY_SATISFIED(\"mdsmz-sentiment_very_satisfied\", '\\ue591'),\n    SET_MEAL(\"mdsmz-set_meal\", '\\ue88a'),\n    SETTINGS(\"mdsmz-settings\", '\\ue593'),\n    SETTINGS_APPLICATIONS(\"mdsmz-settings_applications\", '\\ue595'),\n    SETTINGS_BACKUP_RESTORE(\"mdsmz-settings_backup_restore\", '\\ue597'),\n    SETTINGS_BLUETOOTH(\"mdsmz-settings_bluetooth\", '\\ue598'),\n    SETTINGS_BRIGHTNESS(\"mdsmz-settings_brightness\", '\\ue599'),\n    SETTINGS_CELL(\"mdsmz-settings_cell\", '\\ue59b'),\n    SETTINGS_ETHERNET(\"mdsmz-settings_ethernet\", '\\ue59d'),\n    SETTINGS_INPUT_ANTENNA(\"mdsmz-settings_input_antenna\", '\\ue59e'),\n    SETTINGS_INPUT_COMPONENT(\"mdsmz-settings_input_component\", '\\ue59f'),\n    SETTINGS_INPUT_COMPOSITE(\"mdsmz-settings_input_composite\", '\\ue5a1'),\n    SETTINGS_INPUT_HDMI(\"mdsmz-settings_input_hdmi\", '\\ue5a3'),\n    SETTINGS_INPUT_SVIDEO(\"mdsmz-settings_input_svideo\", '\\ue5a5'),\n    SETTINGS_OVERSCAN(\"mdsmz-settings_overscan\", '\\ue5a7'),\n    SETTINGS_PHONE(\"mdsmz-settings_phone\", '\\ue5a9'),\n    SETTINGS_POWER(\"mdsmz-settings_power\", '\\ue5ab'),\n    SETTINGS_REMOTE(\"mdsmz-settings_remote\", '\\ue5ac'),\n    SETTINGS_SYSTEM_DAYDREAM(\"mdsmz-settings_system_daydream\", '\\ue5ae'),\n    SETTINGS_VOICE(\"mdsmz-settings_voice\", '\\ue5b0'),\n    SHARE(\"mdsmz-share\", '\\ue5b2'),\n    SHOP(\"mdsmz-shop\", '\\ue5b4'),\n    SHOP_TWO(\"mdsmz-shop_two\", '\\ue5b6'),\n    SHOPPING_BAG(\"mdsmz-shopping_bag\", '\\ue82e'),\n    SHOPPING_BASKET(\"mdsmz-shopping_basket\", '\\ue5b8'),\n    SHOPPING_CART(\"mdsmz-shopping_cart\", '\\ue5ba'),\n    SHORT_TEXT(\"mdsmz-short_text\", '\\ue5bc'),\n    SHOW_CHART(\"mdsmz-show_chart\", '\\ue5bd'),\n    SHUFFLE(\"mdsmz-shuffle\", '\\ue5be'),\n    SHUTTER_SPEED(\"mdsmz-shutter_speed\", '\\ue5bf'),\n    SICK(\"mdsmz-sick\", '\\ue8b2'),\n    SIGNAL_CELLULAR_0_BAR(\"mdsmz-signal_cellular_0_bar\", '\\ue5c1'),\n    SIGNAL_CELLULAR_1_BAR(\"mdsmz-signal_cellular_1_bar\", '\\ue5c3'),\n    SIGNAL_CELLULAR_2_BAR(\"mdsmz-signal_cellular_2_bar\", '\\ue5c5'),\n    SIGNAL_CELLULAR_3_BAR(\"mdsmz-signal_cellular_3_bar\", '\\ue5c7'),\n    SIGNAL_CELLULAR_4_BAR(\"mdsmz-signal_cellular_4_bar\", '\\ue5c9'),\n    SIGNAL_CELLULAR_ALT(\"mdsmz-signal_cellular_alt\", '\\ue5ca'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_0_BAR(\"mdsmz-signal_cellular_connected_no_internet_0_bar\", '\\ue5cb'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_1_BAR(\"mdsmz-signal_cellular_connected_no_internet_1_bar\", '\\ue5cd'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_2_BAR(\"mdsmz-signal_cellular_connected_no_internet_2_bar\", '\\ue5cf'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_3_BAR(\"mdsmz-signal_cellular_connected_no_internet_3_bar\", '\\ue5d1'),\n    SIGNAL_CELLULAR_CONNECTED_NO_INTERNET_4_BAR(\"mdsmz-signal_cellular_connected_no_internet_4_bar\", '\\ue5d3'),\n    SIGNAL_CELLULAR_NO_SIM(\"mdsmz-signal_cellular_no_sim\", '\\ue5d4'),\n    SIGNAL_CELLULAR_NULL(\"mdsmz-signal_cellular_null\", '\\ue5d6'),\n    SIGNAL_CELLULAR_OFF(\"mdsmz-signal_cellular_off\", '\\ue5d7'),\n    SIGNAL_WIFI_0_BAR(\"mdsmz-signal_wifi_0_bar\", '\\ue5d8'),\n    SIGNAL_WIFI_1_BAR(\"mdsmz-signal_wifi_1_bar\", '\\ue5da'),\n    SIGNAL_WIFI_1_BAR_LOCK(\"mdsmz-signal_wifi_1_bar_lock\", '\\ue5dc'),\n    SIGNAL_WIFI_2_BAR(\"mdsmz-signal_wifi_2_bar\", '\\ue5de'),\n    SIGNAL_WIFI_2_BAR_LOCK(\"mdsmz-signal_wifi_2_bar_lock\", '\\ue5e0'),\n    SIGNAL_WIFI_3_BAR(\"mdsmz-signal_wifi_3_bar\", '\\ue5e2'),\n    SIGNAL_WIFI_3_BAR_LOCK(\"mdsmz-signal_wifi_3_bar_lock\", '\\ue5e4'),\n    SIGNAL_WIFI_4_BAR(\"mdsmz-signal_wifi_4_bar\", '\\ue5e6'),\n    SIGNAL_WIFI_4_BAR_LOCK(\"mdsmz-signal_wifi_4_bar_lock\", '\\ue5e7'),\n    SIGNAL_WIFI_OFF(\"mdsmz-signal_wifi_off\", '\\ue5e8'),\n    SIM_CARD(\"mdsmz-sim_card\", '\\ue5e9'),\n    SIM_CARD_ALERT(\"mdsmz-sim_card_alert\", '\\ue5eb'),\n    SINGLE_BED(\"mdsmz-single_bed\", '\\ue5ed'),\n    SKIP_NEXT(\"mdsmz-skip_next\", '\\ue5ef'),\n    SKIP_PREVIOUS(\"mdsmz-skip_previous\", '\\ue5f1'),\n    SLIDESHOW(\"mdsmz-slideshow\", '\\ue5f3'),\n    SLOW_MOTION_VIDEO(\"mdsmz-slow_motion_video\", '\\ue5f5'),\n    SMART_BUTTON(\"mdsmz-smart_button\", '\\ue830'),\n    SMARTPHONE(\"mdsmz-smartphone\", '\\ue5f6'),\n    SMOKE_FREE(\"mdsmz-smoke_free\", '\\ue5f8'),\n    SMOKING_ROOMS(\"mdsmz-smoking_rooms\", '\\ue5f9'),\n    SMS(\"mdsmz-sms\", '\\ue5fb'),\n    SMS_FAILED(\"mdsmz-sms_failed\", '\\ue5fd'),\n    SNIPPET_FOLDER(\"mdsmz-snippet_folder\", '\\ue831'),\n    SNOOZE(\"mdsmz-snooze\", '\\ue5ff'),\n    SOAP(\"mdsmz-soap\", '\\ue833'),\n    SORT(\"mdsmz-sort\", '\\ue600'),\n    SORT_BY_ALPHA(\"mdsmz-sort_by_alpha\", '\\ue601'),\n    SOURCE(\"mdsmz-source\", '\\ue835'),\n    SOUTH(\"mdsmz-south\", '\\ue88c'),\n    SOUTH_EAST(\"mdsmz-south_east\", '\\ue88d'),\n    SOUTH_WEST(\"mdsmz-south_west\", '\\ue88e'),\n    SPA(\"mdsmz-spa\", '\\ue602'),\n    SPACE_BAR(\"mdsmz-space_bar\", '\\ue604'),\n    SPEAKER(\"mdsmz-speaker\", '\\ue605'),\n    SPEAKER_GROUP(\"mdsmz-speaker_group\", '\\ue607'),\n    SPEAKER_NOTES(\"mdsmz-speaker_notes\", '\\ue609'),\n    SPEAKER_NOTES_OFF(\"mdsmz-speaker_notes_off\", '\\ue60b'),\n    SPEAKER_PHONE(\"mdsmz-speaker_phone\", '\\ue60d'),\n    SPEED(\"mdsmz-speed\", '\\ue60f'),\n    SPELLCHECK(\"mdsmz-spellcheck\", '\\ue610'),\n    SPORTS(\"mdsmz-sports\", '\\ue611'),\n    SPORTS_BAR(\"mdsmz-sports_bar\", '\\ue88f'),\n    SPORTS_BASEBALL(\"mdsmz-sports_baseball\", '\\ue612'),\n    SPORTS_BASKETBALL(\"mdsmz-sports_basketball\", '\\ue614'),\n    SPORTS_CRICKET(\"mdsmz-sports_cricket\", '\\ue616'),\n    SPORTS_ESPORTS(\"mdsmz-sports_esports\", '\\ue618'),\n    SPORTS_FOOTBALL(\"mdsmz-sports_football\", '\\ue61a'),\n    SPORTS_GOLF(\"mdsmz-sports_golf\", '\\ue61c'),\n    SPORTS_HANDBALL(\"mdsmz-sports_handball\", '\\ue61e'),\n    SPORTS_HOCKEY(\"mdsmz-sports_hockey\", '\\ue61f'),\n    SPORTS_KABADDI(\"mdsmz-sports_kabaddi\", '\\ue620'),\n    SPORTS_MMA(\"mdsmz-sports_mma\", '\\ue621'),\n    SPORTS_MOTORSPORTS(\"mdsmz-sports_motorsports\", '\\ue623'),\n    SPORTS_RUGBY(\"mdsmz-sports_rugby\", '\\ue625'),\n    SPORTS_SOCCER(\"mdsmz-sports_soccer\", '\\ue627'),\n    SPORTS_TENNIS(\"mdsmz-sports_tennis\", '\\ue629'),\n    SPORTS_VOLLEYBALL(\"mdsmz-sports_volleyball\", '\\ue62a'),\n    SQUARE_FOOT(\"mdsmz-square_foot\", '\\ue62c'),\n    STACKED_LINE_CHART(\"mdsmz-stacked_line_chart\", '\\ue8c7'),\n    STAIRS(\"mdsmz-stairs\", '\\ue837'),\n    STAR(\"mdsmz-star\", '\\ue62e'),\n    STAR_BORDER(\"mdsmz-star_border\", '\\ue630'),\n    STAR_HALF(\"mdsmz-star_half\", '\\ue631'),\n    STAR_OUTLINE(\"mdsmz-star_outline\", '\\ue748'),\n    STAR_RATE(\"mdsmz-star_rate\", '\\ue632'),\n    STARS(\"mdsmz-stars\", '\\ue633'),\n    STAY_CURRENT_LANDSCAPE(\"mdsmz-stay_current_landscape\", '\\ue635'),\n    STAY_CURRENT_PORTRAIT(\"mdsmz-stay_current_portrait\", '\\ue637'),\n    STAY_PRIMARY_LANDSCAPE(\"mdsmz-stay_primary_landscape\", '\\ue639'),\n    STAY_PRIMARY_PORTRAIT(\"mdsmz-stay_primary_portrait\", '\\ue63b'),\n    STICKY_NOTE_2(\"mdsmz-sticky_note_2\", '\\ue891'),\n    STOP(\"mdsmz-stop\", '\\ue63d'),\n    STOP_CIRCLE(\"mdsmz-stop_circle\", '\\ue63f'),\n    STOP_SCREEN_SHARE(\"mdsmz-stop_screen_share\", '\\ue641'),\n    STORAGE(\"mdsmz-storage\", '\\ue643'),\n    STORE(\"mdsmz-store\", '\\ue644'),\n    STORE_MALL_DIRECTORY(\"mdsmz-store_mall_directory\", '\\ue646'),\n    STOREFRONT(\"mdsmz-storefront\", '\\ue648'),\n    STRAIGHTEN(\"mdsmz-straighten\", '\\ue64a'),\n    STREETVIEW(\"mdsmz-streetview\", '\\ue64c'),\n    STRIKETHROUGH_S(\"mdsmz-strikethrough_s\", '\\ue64d'),\n    STROLLER(\"mdsmz-stroller\", '\\ue839'),\n    STYLE(\"mdsmz-style\", '\\ue64e'),\n    SUBDIRECTORY_ARROW_LEFT(\"mdsmz-subdirectory_arrow_left\", '\\ue650'),\n    SUBDIRECTORY_ARROW_RIGHT(\"mdsmz-subdirectory_arrow_right\", '\\ue651'),\n    SUBJECT(\"mdsmz-subject\", '\\ue652'),\n    SUBSCRIPT(\"mdsmz-subscript\", '\\ue83b'),\n    SUBSCRIPTIONS(\"mdsmz-subscriptions\", '\\ue653'),\n    SUBTITLES(\"mdsmz-subtitles\", '\\ue655'),\n    SUBTITLES_OFF(\"mdsmz-subtitles_off\", '\\ue83c'),\n    SUBWAY(\"mdsmz-subway\", '\\ue657'),\n    SUPERSCRIPT(\"mdsmz-superscript\", '\\ue83e'),\n    SUPERVISED_USER_CIRCLE(\"mdsmz-supervised_user_circle\", '\\ue659'),\n    SUPERVISOR_ACCOUNT(\"mdsmz-supervisor_account\", '\\ue65b'),\n    SUPPORT(\"mdsmz-support\", '\\ue83f'),\n    SUPPORT_AGENT(\"mdsmz-support_agent\", '\\ue841'),\n    SURROUND_SOUND(\"mdsmz-surround_sound\", '\\ue65d'),\n    SWAP_CALLS(\"mdsmz-swap_calls\", '\\ue65f'),\n    SWAP_HORIZ(\"mdsmz-swap_horiz\", '\\ue660'),\n    SWAP_HORIZONTAL_CIRCLE(\"mdsmz-swap_horizontal_circle\", '\\ue661'),\n    SWAP_VERT(\"mdsmz-swap_vert\", '\\ue663'),\n    SWAP_VERTICAL_CIRCLE(\"mdsmz-swap_vertical_circle\", '\\ue664'),\n    SWITCH_CAMERA(\"mdsmz-switch_camera\", '\\ue666'),\n    SWITCH_LEFT(\"mdsmz-switch_left\", '\\ue842'),\n    SWITCH_RIGHT(\"mdsmz-switch_right\", '\\ue844'),\n    SWITCH_VIDEO(\"mdsmz-switch_video\", '\\ue668'),\n    SYNC(\"mdsmz-sync\", '\\ue66a'),\n    SYNC_ALT(\"mdsmz-sync_alt\", '\\ue66b'),\n    SYNC_DISABLED(\"mdsmz-sync_disabled\", '\\ue66c'),\n    SYNC_PROBLEM(\"mdsmz-sync_problem\", '\\ue66d'),\n    SYSTEM_UPDATE(\"mdsmz-system_update\", '\\ue66e'),\n    SYSTEM_UPDATE_ALT(\"mdsmz-system_update_alt\", '\\ue670'),\n    TAB(\"mdsmz-tab\", '\\ue671'),\n    TAB_UNSELECTED(\"mdsmz-tab_unselected\", '\\ue672'),\n    TABLE_CHART(\"mdsmz-table_chart\", '\\ue673'),\n    TABLE_ROWS(\"mdsmz-table_rows\", '\\ue846'),\n    TABLE_VIEW(\"mdsmz-table_view\", '\\ue848'),\n    TABLET(\"mdsmz-tablet\", '\\ue675'),\n    TABLET_ANDROID(\"mdsmz-tablet_android\", '\\ue677'),\n    TABLET_MAC(\"mdsmz-tablet_mac\", '\\ue679'),\n    TAG_FACES(\"mdsmz-tag_faces\", '\\ue67b'),\n    TAP_AND_PLAY(\"mdsmz-tap_and_play\", '\\ue67d'),\n    TAPAS(\"mdsmz-tapas\", '\\ue893'),\n    TERRAIN(\"mdsmz-terrain\", '\\ue67e'),\n    TEXT_FIELDS(\"mdsmz-text_fields\", '\\ue680'),\n    TEXT_FORMAT(\"mdsmz-text_format\", '\\ue681'),\n    TEXT_ROTATE_UP(\"mdsmz-text_rotate_up\", '\\ue682'),\n    TEXT_ROTATE_VERTICAL(\"mdsmz-text_rotate_vertical\", '\\ue683'),\n    TEXT_ROTATION_ANGLEDOWN(\"mdsmz-text_rotation_angledown\", '\\ue684'),\n    TEXT_ROTATION_ANGLEUP(\"mdsmz-text_rotation_angleup\", '\\ue685'),\n    TEXT_ROTATION_DOWN(\"mdsmz-text_rotation_down\", '\\ue686'),\n    TEXT_ROTATION_NONE(\"mdsmz-text_rotation_none\", '\\ue687'),\n    TEXT_SNIPPET(\"mdsmz-text_snippet\", '\\ue84a'),\n    TEXTSMS(\"mdsmz-textsms\", '\\ue688'),\n    TEXTURE(\"mdsmz-texture\", '\\ue68a'),\n    THEATERS(\"mdsmz-theaters\", '\\ue68b'),\n    THUMB_DOWN(\"mdsmz-thumb_down\", '\\ue68d'),\n    THUMB_DOWN_ALT(\"mdsmz-thumb_down_alt\", '\\ue68f'),\n    THUMB_UP(\"mdsmz-thumb_up\", '\\ue691'),\n    THUMB_UP_ALT(\"mdsmz-thumb_up_alt\", '\\ue693'),\n    THUMBS_UP_DOWN(\"mdsmz-thumbs_up_down\", '\\ue695'),\n    TIME_TO_LEAVE(\"mdsmz-time_to_leave\", '\\ue697'),\n    TIMELAPSE(\"mdsmz-timelapse\", '\\ue699'),\n    TIMELINE(\"mdsmz-timeline\", '\\ue69b'),\n    TIMER(\"mdsmz-timer\", '\\ue69c'),\n    TIMER_10(\"mdsmz-timer_10\", '\\ue69e'),\n    TIMER_3(\"mdsmz-timer_3\", '\\ue69f'),\n    TIMER_OFF(\"mdsmz-timer_off\", '\\ue6a0'),\n    TITLE(\"mdsmz-title\", '\\ue6a2'),\n    TOC(\"mdsmz-toc\", '\\ue6a3'),\n    TODAY(\"mdsmz-today\", '\\ue6a4'),\n    TOGGLE_OFF(\"mdsmz-toggle_off\", '\\ue6a6'),\n    TOGGLE_ON(\"mdsmz-toggle_on\", '\\ue6a8'),\n    TOLL(\"mdsmz-toll\", '\\ue6aa'),\n    TONALITY(\"mdsmz-tonality\", '\\ue6ac'),\n    TOPIC(\"mdsmz-topic\", '\\ue84c'),\n    TOUCH_APP(\"mdsmz-touch_app\", '\\ue6ae'),\n    TOUR(\"mdsmz-tour\", '\\ue84e'),\n    TOYS(\"mdsmz-toys\", '\\ue6b0'),\n    TRACK_CHANGES(\"mdsmz-track_changes\", '\\ue6b2'),\n    TRAFFIC(\"mdsmz-traffic\", '\\ue6b3'),\n    TRAIN(\"mdsmz-train\", '\\ue6b5'),\n    TRAM(\"mdsmz-tram\", '\\ue6b7'),\n    TRANSFER_WITHIN_A_STATION(\"mdsmz-transfer_within_a_station\", '\\ue6b9'),\n    TRANSFORM(\"mdsmz-transform\", '\\ue6ba'),\n    TRANSIT_ENTEREXIT(\"mdsmz-transit_enterexit\", '\\ue6bb'),\n    TRANSLATE(\"mdsmz-translate\", '\\ue6bc'),\n    TRENDING_DOWN(\"mdsmz-trending_down\", '\\ue6bd'),\n    TRENDING_FLAT(\"mdsmz-trending_flat\", '\\ue6be'),\n    TRENDING_UP(\"mdsmz-trending_up\", '\\ue6bf'),\n    TRIP_ORIGIN(\"mdsmz-trip_origin\", '\\ue6c0'),\n    TTY(\"mdsmz-tty\", '\\ue850'),\n    TUNE(\"mdsmz-tune\", '\\ue6c1'),\n    TURNED_IN(\"mdsmz-turned_in\", '\\ue6c2'),\n    TURNED_IN_NOT(\"mdsmz-turned_in_not\", '\\ue6c4'),\n    TV(\"mdsmz-tv\", '\\ue6c5'),\n    TV_OFF(\"mdsmz-tv_off\", '\\ue6c7'),\n    TWO_WHEELER(\"mdsmz-two_wheeler\", '\\ue749'),\n    UMBRELLA(\"mdsmz-umbrella\", '\\ue852'),\n    UNARCHIVE(\"mdsmz-unarchive\", '\\ue6c9'),\n    UNDO(\"mdsmz-undo\", '\\ue6cb'),\n    UNFOLD_LESS(\"mdsmz-unfold_less\", '\\ue6cc'),\n    UNFOLD_MORE(\"mdsmz-unfold_more\", '\\ue6cd'),\n    UNPUBLISHED(\"mdsmz-unpublished\", '\\ue8c8'),\n    UNSUBSCRIBE(\"mdsmz-unsubscribe\", '\\ue6ce'),\n    UPDATE(\"mdsmz-update\", '\\ue6d0'),\n    UPDATE_DISABLED(\"mdsmz-update_disabled\", '\\ue8d2'),\n    UPGRADE(\"mdsmz-upgrade\", '\\ue854'),\n    USB(\"mdsmz-usb\", '\\ue6d1'),\n    VERIFIED(\"mdsmz-verified\", '\\ue855'),\n    VERIFIED_USER(\"mdsmz-verified_user\", '\\ue6d2'),\n    VERTICAL_ALIGN_BOTTOM(\"mdsmz-vertical_align_bottom\", '\\ue6d4'),\n    VERTICAL_ALIGN_CENTER(\"mdsmz-vertical_align_center\", '\\ue6d5'),\n    VERTICAL_ALIGN_TOP(\"mdsmz-vertical_align_top\", '\\ue6d6'),\n    VERTICAL_DISTRIBUTE(\"mdsmz-vertical_distribute\", '\\ue8d3'),\n    VERTICAL_SPLIT(\"mdsmz-vertical_split\", '\\ue6d7'),\n    VIBRATION(\"mdsmz-vibration\", '\\ue6d9'),\n    VIDEO_CALL(\"mdsmz-video_call\", '\\ue6db'),\n    VIDEO_LABEL(\"mdsmz-video_label\", '\\ue6dd'),\n    VIDEO_LIBRARY(\"mdsmz-video_library\", '\\ue6df'),\n    VIDEO_SETTINGS(\"mdsmz-video_settings\", '\\ue857'),\n    VIDEOCAM(\"mdsmz-videocam\", '\\ue6e1'),\n    VIDEOCAM_OFF(\"mdsmz-videocam_off\", '\\ue6e3'),\n    VIDEOGAME_ASSET(\"mdsmz-videogame_asset\", '\\ue6e5'),\n    VIEW_AGENDA(\"mdsmz-view_agenda\", '\\ue6e7'),\n    VIEW_ARRAY(\"mdsmz-view_array\", '\\ue6e9'),\n    VIEW_CAROUSEL(\"mdsmz-view_carousel\", '\\ue6eb'),\n    VIEW_COLUMN(\"mdsmz-view_column\", '\\ue6ed'),\n    VIEW_COMFY(\"mdsmz-view_comfy\", '\\ue6ef'),\n    VIEW_COMPACT(\"mdsmz-view_compact\", '\\ue6f1'),\n    VIEW_DAY(\"mdsmz-view_day\", '\\ue6f3'),\n    VIEW_HEADLINE(\"mdsmz-view_headline\", '\\ue6f5'),\n    VIEW_LIST(\"mdsmz-view_list\", '\\ue6f6'),\n    VIEW_MODULE(\"mdsmz-view_module\", '\\ue6f8'),\n    VIEW_QUILT(\"mdsmz-view_quilt\", '\\ue6fa'),\n    VIEW_SIDEBAR(\"mdsmz-view_sidebar\", '\\ue858'),\n    VIEW_STREAM(\"mdsmz-view_stream\", '\\ue6fc'),\n    VIEW_WEEK(\"mdsmz-view_week\", '\\ue6fe'),\n    VIGNETTE(\"mdsmz-vignette\", '\\ue700'),\n    VISIBILITY(\"mdsmz-visibility\", '\\ue702'),\n    VISIBILITY_OFF(\"mdsmz-visibility_off\", '\\ue704'),\n    VOICE_CHAT(\"mdsmz-voice_chat\", '\\ue706'),\n    VOICE_OVER_OFF(\"mdsmz-voice_over_off\", '\\ue708'),\n    VOICEMAIL(\"mdsmz-voicemail\", '\\ue70a'),\n    VOLUME_DOWN(\"mdsmz-volume_down\", '\\ue70b'),\n    VOLUME_MUTE(\"mdsmz-volume_mute\", '\\ue70d'),\n    VOLUME_OFF(\"mdsmz-volume_off\", '\\ue70f'),\n    VOLUME_UP(\"mdsmz-volume_up\", '\\ue711'),\n    VPN_KEY(\"mdsmz-vpn_key\", '\\ue713'),\n    VPN_LOCK(\"mdsmz-vpn_lock\", '\\ue715'),\n    WALLPAPER(\"mdsmz-wallpaper\", '\\ue717'),\n    WARNING(\"mdsmz-warning\", '\\ue718'),\n    WASH(\"mdsmz-wash\", '\\ue85a'),\n    WATCH(\"mdsmz-watch\", '\\ue71a'),\n    WATCH_LATER(\"mdsmz-watch_later\", '\\ue71c'),\n    WATER_DAMAGE(\"mdsmz-water_damage\", '\\ue895'),\n    WAVES(\"mdsmz-waves\", '\\ue71e'),\n    WB_AUTO(\"mdsmz-wb_auto\", '\\ue71f'),\n    WB_CLOUDY(\"mdsmz-wb_cloudy\", '\\ue721'),\n    WB_INCANDESCENT(\"mdsmz-wb_incandescent\", '\\ue723'),\n    WB_IRIDESCENT(\"mdsmz-wb_iridescent\", '\\ue725'),\n    WB_SUNNY(\"mdsmz-wb_sunny\", '\\ue727'),\n    WC(\"mdsmz-wc\", '\\ue729'),\n    WEB(\"mdsmz-web\", '\\ue72a'),\n    WEB_ASSET(\"mdsmz-web_asset\", '\\ue72c'),\n    WEEKEND(\"mdsmz-weekend\", '\\ue72e'),\n    WEST(\"mdsmz-west\", '\\ue897'),\n    WHATSHOT(\"mdsmz-whatshot\", '\\ue730'),\n    WHEELCHAIR_PICKUP(\"mdsmz-wheelchair_pickup\", '\\ue85c'),\n    WHERE_TO_VOTE(\"mdsmz-where_to_vote\", '\\ue732'),\n    WIDGETS(\"mdsmz-widgets\", '\\ue734'),\n    WIFI(\"mdsmz-wifi\", '\\ue736'),\n    WIFI_CALLING(\"mdsmz-wifi_calling\", '\\ue85d'),\n    WIFI_LOCK(\"mdsmz-wifi_lock\", '\\ue737'),\n    WIFI_OFF(\"mdsmz-wifi_off\", '\\ue738'),\n    WIFI_PROTECTED_SETUP(\"mdsmz-wifi_protected_setup\", '\\ue85f'),\n    WIFI_TETHERING(\"mdsmz-wifi_tethering\", '\\ue739'),\n    WINE_BAR(\"mdsmz-wine_bar\", '\\ue898'),\n    WORK(\"mdsmz-work\", '\\ue73a'),\n    WORK_OFF(\"mdsmz-work_off\", '\\ue73c'),\n    WORK_OUTLINE(\"mdsmz-work_outline\", '\\ue73e'),\n    WRAP_TEXT(\"mdsmz-wrap_text\", '\\ue73f'),\n    WRONG_LOCATION(\"mdsmz-wrong_location\", '\\ue860'),\n    WYSIWYG(\"mdsmz-wysiwyg\", '\\ue861'),\n    YOUTUBE_SEARCHED_FOR(\"mdsmz-youtube_searched_for\", '\\ue740'),\n    ZOOM_IN(\"mdsmz-zoom_in\", '\\ue741'),\n    ZOOM_OUT(\"mdsmz-zoom_out\", '\\ue742'),\n    ZOOM_OUT_MAP(\"mdsmz-zoom_out_map\", '\\ue743');\n\n    public static Material2SharpMZ findByDescription(String description) {\n        for (Material2SharpMZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Material2SharpMZ(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2SharpMZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Material2SharpMZIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/material2/20200820/fonts/MaterialIcons-Sharp.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdsmz-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Material2SharpMZ.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Material Icons Sharp\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/java/org/kordamp/ikonli/material2/Material2SharpMZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.material2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class Material2SharpMZIkonProvider implements IkonProvider<Material2SharpMZ> {\n    @Override\n    public Class<Material2SharpMZ> getIkon() {\n        return Material2SharpMZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/resources/META-INF/resources/material2/20200820/css/md-baseline.css",
    "content": "@font-face {\n  font-family: \"Material Icons\";\n  font-style: normal;\n  font-weight: 400;\n  font-display: block;\n  src: url(\"../fonts/MaterialIcons.ttf\");\n  /* For IE6-8 */\n  src: url(\"../fonts/MaterialIcons.woff2\") format(\"woff2\"), url(\"../fonts/MaterialIcons.woff\") format(\"woff\"), url(\"../fonts/MaterialIcons.ttf\") format(\"truetype\");\n}\n\n.md {\n  font-family: \"Material Icons\";\n  font-weight: normal;\n  font-style: normal;\n  font-size: 24px;\n  display: inline-block;\n  line-height: 1;\n  text-transform: none;\n  letter-spacing: normal;\n  -ms-word-wrap: normal;\n  word-wrap: normal;\n  white-space: nowrap;\n  direction: ltr;\n  text-rendering: optimizeLegibility;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  position: relative;\n}\n\n.md:before {\n  position: absolute;\n  left: 0;\n  right: 0;\n  top: 0;\n  bottom: 0;\n  opacity: .3;\n}\n\n.md:after {\n  opacity: 1;\n}\n\n/* Rules for sizing the icon. */\n.md-18 {\n  font-size: 18px;\n}\n\n.md-24 {\n  font-size: 24px;\n}\n\n.md-36 {\n  font-size: 36px;\n}\n\n.md-48 {\n  font-size: 48px;\n}\n\n/* Rules for using icons as black on a light background. */\n.md-dark {\n  color: rgba(0, 0, 0, 0.54);\n}\n\n.md-dark.md-inactive {\n  color: rgba(0, 0, 0, 0.26);\n}\n\n/* Rules for using icons as white on a dark background. */\n.md-light {\n  color: white;\n}\n\n.md-light.md-inactive {\n  color: rgba(255, 255, 255, 0.3);\n}\n\n/* Icons. */\n.md-360:after {\n  content: '\\e000';\n}\n\n.md-3d_rotation:after {\n  content: '\\e001';\n}\n\n.md-4k:after {\n  content: '\\e002';\n}\n\n.md-ac_unit:after {\n  content: '\\e004';\n}\n\n.md-access_alarm:after {\n  content: '\\e005';\n}\n\n.md-access_alarms:after {\n  content: '\\e007';\n}\n\n.md-access_time:after {\n  content: '\\e009';\n}\n\n.md-accessibility:after {\n  content: '\\e00b';\n}\n\n.md-accessibility_new:after {\n  content: '\\e00c';\n}\n\n.md-accessible:after {\n  content: '\\e00d';\n}\n\n.md-accessible_forward:after {\n  content: '\\e00e';\n}\n\n.md-account_balance:after {\n  content: '\\e00f';\n}\n\n.md-account_balance_wallet:after {\n  content: '\\e011';\n}\n\n.md-account_box:after {\n  content: '\\e013';\n}\n\n.md-account_circle:after {\n  content: '\\e015';\n}\n\n.md-account_tree:after {\n  content: '\\e017';\n}\n\n.md-adb:after {\n  content: '\\e019';\n}\n\n.md-add:after {\n  content: '\\e01a';\n}\n\n.md-add_a_photo:after {\n  content: '\\e01b';\n}\n\n.md-add_alarm:after {\n  content: '\\e01d';\n}\n\n.md-add_alert:after {\n  content: '\\e01f';\n}\n\n.md-add_box:after {\n  content: '\\e021';\n}\n\n.md-add_circle:after {\n  content: '\\e023';\n}\n\n.md-add_circle_outline:after {\n  content: '\\e025';\n}\n\n.md-add_comment:after {\n  content: '\\e026';\n}\n\n.md-add_location:after {\n  content: '\\e028';\n}\n\n.md-add_photo_alternate:after {\n  content: '\\e02a';\n}\n\n.md-add_shopping_cart:after {\n  content: '\\e02c';\n}\n\n.md-add_to_home_screen:after {\n  content: '\\e02d';\n}\n\n.md-add_to_photos:after {\n  content: '\\e02e';\n}\n\n.md-add_to_queue:after {\n  content: '\\e030';\n}\n\n.md-adjust:after {\n  content: '\\e032';\n}\n\n.md-airline_seat_flat:after {\n  content: '\\e033';\n}\n\n.md-airline_seat_flat_angled:after {\n  content: '\\e035';\n}\n\n.md-airline_seat_individual_suite:after {\n  content: '\\e037';\n}\n\n.md-airline_seat_legroom_extra:after {\n  content: '\\e039';\n}\n\n.md-airline_seat_legroom_normal:after {\n  content: '\\e03a';\n}\n\n.md-airline_seat_legroom_reduced:after {\n  content: '\\e03b';\n}\n\n.md-airline_seat_recline_extra:after {\n  content: '\\e03c';\n}\n\n.md-airline_seat_recline_normal:after {\n  content: '\\e03d';\n}\n\n.md-airplanemode_active:after {\n  content: '\\e03e';\n}\n\n.md-airplanemode_inactive:after {\n  content: '\\e03f';\n}\n\n.md-airplay:after {\n  content: '\\e040';\n}\n\n.md-airport_shuttle:after {\n  content: '\\e041';\n}\n\n.md-alarm:after {\n  content: '\\e043';\n}\n\n.md-alarm_add:after {\n  content: '\\e045';\n}\n\n.md-alarm_off:after {\n  content: '\\e047';\n}\n\n.md-alarm_on:after {\n  content: '\\e048';\n}\n\n.md-album:after {\n  content: '\\e04a';\n}\n\n.md-all_inbox:after {\n  content: '\\e04c';\n}\n\n.md-all_inclusive:after {\n  content: '\\e04e';\n}\n\n.md-all_out:after {\n  content: '\\e04f';\n}\n\n.md-alternate_email:after {\n  content: '\\e051';\n}\n\n.md-amp_stories:after {\n  content: '\\e053';\n}\n\n.md-android:after {\n  content: '\\e055';\n}\n\n.md-announcement:after {\n  content: '\\e056';\n}\n\n.md-apartment:after {\n  content: '\\e058';\n}\n\n.md-apps:after {\n  content: '\\e059';\n}\n\n.md-archive:after {\n  content: '\\e05a';\n}\n\n.md-arrow_back:after {\n  content: '\\e05c';\n}\n\n.md-arrow_back_ios:after {\n  content: '\\e05d';\n}\n\n.md-arrow_downward:after {\n  content: '\\e05e';\n}\n\n.md-arrow_drop_down:after {\n  content: '\\e05f';\n}\n\n.md-arrow_drop_down_circle:after {\n  content: '\\e060';\n}\n\n.md-arrow_drop_up:after {\n  content: '\\e062';\n}\n\n.md-arrow_forward:after {\n  content: '\\e063';\n}\n\n.md-arrow_forward_ios:after {\n  content: '\\e064';\n}\n\n.md-arrow_left:after {\n  content: '\\e065';\n}\n\n.md-arrow_right:after {\n  content: '\\e066';\n}\n\n.md-arrow_right_alt:after {\n  content: '\\e067';\n}\n\n.md-arrow_upward:after {\n  content: '\\e068';\n}\n\n.md-art_track:after {\n  content: '\\e069';\n}\n\n.md-aspect_ratio:after {\n  content: '\\e06a';\n}\n\n.md-assessment:after {\n  content: '\\e06c';\n}\n\n.md-assignment:after {\n  content: '\\e06e';\n}\n\n.md-assignment_ind:after {\n  content: '\\e070';\n}\n\n.md-assignment_late:after {\n  content: '\\e072';\n}\n\n.md-assignment_return:after {\n  content: '\\e074';\n}\n\n.md-assignment_returned:after {\n  content: '\\e076';\n}\n\n.md-assignment_turned_in:after {\n  content: '\\e078';\n}\n\n.md-assistant:after {\n  content: '\\e07a';\n}\n\n.md-assistant_photo:after {\n  content: '\\e07c';\n}\n\n.md-atm:after {\n  content: '\\e07e';\n}\n\n.md-attach_file:after {\n  content: '\\e07f';\n}\n\n.md-attach_money:after {\n  content: '\\e080';\n}\n\n.md-attachment:after {\n  content: '\\e081';\n}\n\n.md-audiotrack:after {\n  content: '\\e082';\n}\n\n.md-autorenew:after {\n  content: '\\e084';\n}\n\n.md-av_timer:after {\n  content: '\\e085';\n}\n\n.md-backspace:after {\n  content: '\\e086';\n}\n\n.md-backup:after {\n  content: '\\e088';\n}\n\n.md-ballot:after {\n  content: '\\e08a';\n}\n\n.md-bar_chart:after {\n  content: '\\e08c';\n}\n\n.md-barcode:after {\n  content: '\\e08d';\n}\n\n.md-bathtub:after {\n  content: '\\e08e';\n}\n\n.md-battery_20:after {\n  content: '\\e090';\n}\n\n.md-battery_20:before {\n  content: '\\e091';\n}\n\n.md-battery_30:after {\n  content: '\\e092';\n}\n\n.md-battery_30:before {\n  content: '\\e093';\n}\n\n.md-battery_50:after {\n  content: '\\e094';\n}\n\n.md-battery_50:before {\n  content: '\\e095';\n}\n\n.md-battery_60:after {\n  content: '\\e096';\n}\n\n.md-battery_60:before {\n  content: '\\e097';\n}\n\n.md-battery_80:after {\n  content: '\\e098';\n}\n\n.md-battery_80:before {\n  content: '\\e099';\n}\n\n.md-battery_90:after {\n  content: '\\e09a';\n}\n\n.md-battery_90:before {\n  content: '\\e09b';\n}\n\n.md-battery_alert:after {\n  content: '\\e09c';\n}\n\n.md-battery_charging_20:after {\n  content: '\\e09d';\n}\n\n.md-battery_charging_20:before {\n  content: '\\e09e';\n}\n\n.md-battery_charging_30:after {\n  content: '\\e09f';\n}\n\n.md-battery_charging_30:before {\n  content: '\\e0a0';\n}\n\n.md-battery_charging_50:after {\n  content: '\\e0a1';\n}\n\n.md-battery_charging_50:before {\n  content: '\\e0a2';\n}\n\n.md-battery_charging_60:after {\n  content: '\\e0a3';\n}\n\n.md-battery_charging_60:before {\n  content: '\\e0a4';\n}\n\n.md-battery_charging_80:after {\n  content: '\\e0a5';\n}\n\n.md-battery_charging_80:before {\n  content: '\\e0a6';\n}\n\n.md-battery_charging_90:after {\n  content: '\\e0a7';\n}\n\n.md-battery_charging_90:before {\n  content: '\\e0a8';\n}\n\n.md-battery_charging_full:after {\n  content: '\\e0a9';\n}\n\n.md-battery_full:after {\n  content: '\\e0aa';\n}\n\n.md-battery_std:after {\n  content: '\\e0ab';\n}\n\n.md-battery_unknown:after {\n  content: '\\e0ac';\n}\n\n.md-beach_access:after {\n  content: '\\e0ad';\n}\n\n.md-beenhere:after {\n  content: '\\e0af';\n}\n\n.md-block:after {\n  content: '\\e0b1';\n}\n\n.md-bluetooth:after {\n  content: '\\e0b2';\n}\n\n.md-bluetooth_audio:after {\n  content: '\\e0b3';\n}\n\n.md-bluetooth_connected:after {\n  content: '\\e0b4';\n}\n\n.md-bluetooth_disabled:after {\n  content: '\\e0b5';\n}\n\n.md-bluetooth_searching:after {\n  content: '\\e0b6';\n}\n\n.md-blur_circular:after {\n  content: '\\e0b7';\n}\n\n.md-blur_linear:after {\n  content: '\\e0b8';\n}\n\n.md-blur_off:after {\n  content: '\\e0b9';\n}\n\n.md-blur_on:after {\n  content: '\\e0ba';\n}\n\n.md-book:after {\n  content: '\\e0bb';\n}\n\n.md-bookmark:after {\n  content: '\\e0bd';\n}\n\n.md-bookmark_border:after {\n  content: '\\e0bf';\n}\n\n.md-bookmarks:after {\n  content: '\\e0c0';\n}\n\n.md-border_all:after {\n  content: '\\e0c2';\n}\n\n.md-border_bottom:after {\n  content: '\\e0c3';\n}\n\n.md-border_clear:after {\n  content: '\\e0c4';\n}\n\n.md-border_color:after {\n  content: '\\e0c5';\n}\n\n.md-border_color:before {\n  content: '\\e0c6';\n}\n\n.md-border_horizontal:after {\n  content: '\\e0c7';\n}\n\n.md-border_inner:after {\n  content: '\\e0c8';\n}\n\n.md-border_left:after {\n  content: '\\e0c9';\n}\n\n.md-border_outer:after {\n  content: '\\e0ca';\n}\n\n.md-border_right:after {\n  content: '\\e0cb';\n}\n\n.md-border_style:after {\n  content: '\\e0cc';\n}\n\n.md-border_top:after {\n  content: '\\e0cd';\n}\n\n.md-border_vertical:after {\n  content: '\\e0ce';\n}\n\n.md-branding_watermark:after {\n  content: '\\e0cf';\n}\n\n.md-brightness_1:after {\n  content: '\\e0d1';\n}\n\n.md-brightness_2:after {\n  content: '\\e0d3';\n}\n\n.md-brightness_3:after {\n  content: '\\e0d5';\n}\n\n.md-brightness_4:after {\n  content: '\\e0d7';\n}\n\n.md-brightness_5:after {\n  content: '\\e0d9';\n}\n\n.md-brightness_6:after {\n  content: '\\e0db';\n}\n\n.md-brightness_7:after {\n  content: '\\e0dd';\n}\n\n.md-brightness_auto:after {\n  content: '\\e0df';\n}\n\n.md-brightness_high:after {\n  content: '\\e0e1';\n}\n\n.md-brightness_low:after {\n  content: '\\e0e3';\n}\n\n.md-brightness_medium:after {\n  content: '\\e0e5';\n}\n\n.md-broken_image:after {\n  content: '\\e0e7';\n}\n\n.md-brush:after {\n  content: '\\e0e9';\n}\n\n.md-bubble_chart:after {\n  content: '\\e0eb';\n}\n\n.md-bug_report:after {\n  content: '\\e0ed';\n}\n\n.md-build:after {\n  content: '\\e0ef';\n}\n\n.md-burst_mode:after {\n  content: '\\e0f1';\n}\n\n.md-business:after {\n  content: '\\e0f3';\n}\n\n.md-business_center:after {\n  content: '\\e0f5';\n}\n\n.md-cached:after {\n  content: '\\e0f7';\n}\n\n.md-cake:after {\n  content: '\\e0f8';\n}\n\n.md-calendar_today:after {\n  content: '\\e0fa';\n}\n\n.md-calendar_view_day:after {\n  content: '\\e0fc';\n}\n\n.md-call:after {\n  content: '\\e0fe';\n}\n\n.md-call_end:after {\n  content: '\\e100';\n}\n\n.md-call_made:after {\n  content: '\\e102';\n}\n\n.md-call_merge:after {\n  content: '\\e103';\n}\n\n.md-call_missed:after {\n  content: '\\e104';\n}\n\n.md-call_missed_outgoing:after {\n  content: '\\e105';\n}\n\n.md-call_received:after {\n  content: '\\e106';\n}\n\n.md-call_split:after {\n  content: '\\e107';\n}\n\n.md-call_to_action:after {\n  content: '\\e108';\n}\n\n.md-camera:after {\n  content: '\\e10a';\n}\n\n.md-camera_alt:after {\n  content: '\\e10c';\n}\n\n.md-camera_enhance:after {\n  content: '\\e10e';\n}\n\n.md-camera_front:after {\n  content: '\\e110';\n}\n\n.md-camera_rear:after {\n  content: '\\e112';\n}\n\n.md-camera_roll:after {\n  content: '\\e114';\n}\n\n.md-cancel:after {\n  content: '\\e116';\n}\n\n.md-cancel_presentation:after {\n  content: '\\e118';\n}\n\n.md-cancel_schedule_send:after {\n  content: '\\e11a';\n}\n\n.md-card_giftcard:after {\n  content: '\\e11c';\n}\n\n.md-card_membership:after {\n  content: '\\e11e';\n}\n\n.md-card_travel:after {\n  content: '\\e120';\n}\n\n.md-casino:after {\n  content: '\\e122';\n}\n\n.md-cast:after {\n  content: '\\e124';\n}\n\n.md-cast_connected:after {\n  content: '\\e125';\n}\n\n.md-cast_for_education:after {\n  content: '\\e127';\n}\n\n.md-category:after {\n  content: '\\e128';\n}\n\n.md-cell_wifi:after {\n  content: '\\e12a';\n}\n\n.md-cell_wifi:before {\n  content: '\\e12b';\n}\n\n.md-center_focus_strong:after {\n  content: '\\e12c';\n}\n\n.md-center_focus_weak:after {\n  content: '\\e12e';\n}\n\n.md-change_history:after {\n  content: '\\e130';\n}\n\n.md-chat:after {\n  content: '\\e132';\n}\n\n.md-chat_bubble:after {\n  content: '\\e134';\n}\n\n.md-chat_bubble_outline:after {\n  content: '\\e136';\n}\n\n.md-check:after {\n  content: '\\e137';\n}\n\n.md-check_box:after {\n  content: '\\e138';\n}\n\n.md-check_box_outline_blank:after {\n  content: '\\e13a';\n}\n\n.md-check_circle:after {\n  content: '\\e13b';\n}\n\n.md-check_circle_outline:after {\n  content: '\\e13d';\n}\n\n.md-chevron_left:after {\n  content: '\\e13e';\n}\n\n.md-chevron_right:after {\n  content: '\\e13f';\n}\n\n.md-child_care:after {\n  content: '\\e140';\n}\n\n.md-child_friendly:after {\n  content: '\\e142';\n}\n\n.md-chrome_reader_mode:after {\n  content: '\\e144';\n}\n\n.md-class:after {\n  content: '\\e146';\n}\n\n.md-clear:after {\n  content: '\\e148';\n}\n\n.md-clear_all:after {\n  content: '\\e149';\n}\n\n.md-close:after {\n  content: '\\e14a';\n}\n\n.md-closed_caption:after {\n  content: '\\e14b';\n}\n\n.md-cloud:after {\n  content: '\\e14d';\n}\n\n.md-cloud_circle:after {\n  content: '\\e14f';\n}\n\n.md-cloud_done:after {\n  content: '\\e151';\n}\n\n.md-cloud_download:after {\n  content: '\\e153';\n}\n\n.md-cloud_off:after {\n  content: '\\e155';\n}\n\n.md-cloud_queue:after {\n  content: '\\e157';\n}\n\n.md-cloud_upload:after {\n  content: '\\e159';\n}\n\n.md-code:after {\n  content: '\\e15b';\n}\n\n.md-collections:after {\n  content: '\\e15c';\n}\n\n.md-collections_bookmark:after {\n  content: '\\e15e';\n}\n\n.md-color_lens:after {\n  content: '\\e160';\n}\n\n.md-colorize:after {\n  content: '\\e162';\n}\n\n.md-comment:after {\n  content: '\\e164';\n}\n\n.md-commute:after {\n  content: '\\e166';\n}\n\n.md-compare:after {\n  content: '\\e167';\n}\n\n.md-compare_arrows:after {\n  content: '\\e169';\n}\n\n.md-compass_calibration:after {\n  content: '\\e16a';\n}\n\n.md-computer:after {\n  content: '\\e16c';\n}\n\n.md-confirmation_number:after {\n  content: '\\e16e';\n}\n\n.md-contact_mail:after {\n  content: '\\e170';\n}\n\n.md-contact_phone:after {\n  content: '\\e172';\n}\n\n.md-contact_support:after {\n  content: '\\e174';\n}\n\n.md-contactless:after {\n  content: '\\e176';\n}\n\n.md-contacts:after {\n  content: '\\e178';\n}\n\n.md-content_copy:after {\n  content: '\\e17a';\n}\n\n.md-content_cut:after {\n  content: '\\e17c';\n}\n\n.md-content_paste:after {\n  content: '\\e17e';\n}\n\n.md-control_camera:after {\n  content: '\\e180';\n}\n\n.md-control_point:after {\n  content: '\\e181';\n}\n\n.md-control_point_duplicate:after {\n  content: '\\e183';\n}\n\n.md-copyright:after {\n  content: '\\e185';\n}\n\n.md-create:after {\n  content: '\\e187';\n}\n\n.md-create_new_folder:after {\n  content: '\\e189';\n}\n\n.md-credit_card:after {\n  content: '\\e18b';\n}\n\n.md-crop:after {\n  content: '\\e18d';\n}\n\n.md-crop_16_9:after {\n  content: '\\e18e';\n}\n\n.md-crop_3_2:after {\n  content: '\\e18f';\n}\n\n.md-crop_5_4:after {\n  content: '\\e190';\n}\n\n.md-crop_7_5:after {\n  content: '\\e191';\n}\n\n.md-crop_din:after {\n  content: '\\e192';\n}\n\n.md-crop_free:after {\n  content: '\\e193';\n}\n\n.md-crop_landscape:after {\n  content: '\\e194';\n}\n\n.md-crop_original:after {\n  content: '\\e195';\n}\n\n.md-crop_portrait:after {\n  content: '\\e196';\n}\n\n.md-crop_rotate:after {\n  content: '\\e197';\n}\n\n.md-crop_square:after {\n  content: '\\e198';\n}\n\n.md-dashboard:after {\n  content: '\\e199';\n}\n\n.md-data_usage:after {\n  content: '\\e19b';\n}\n\n.md-date_range:after {\n  content: '\\e19c';\n}\n\n.md-deck:after {\n  content: '\\e19e';\n}\n\n.md-dehaze:after {\n  content: '\\e1a0';\n}\n\n.md-delete:after {\n  content: '\\e1a1';\n}\n\n.md-delete_forever:after {\n  content: '\\e1a3';\n}\n\n.md-delete_outline:after {\n  content: '\\e1a5';\n}\n\n.md-delete_sweep:after {\n  content: '\\e1a6';\n}\n\n.md-departure_board:after {\n  content: '\\e1a8';\n}\n\n.md-description:after {\n  content: '\\e1aa';\n}\n\n.md-desktop_access_disabled:after {\n  content: '\\e1ac';\n}\n\n.md-desktop_mac:after {\n  content: '\\e1ae';\n}\n\n.md-desktop_windows:after {\n  content: '\\e1b0';\n}\n\n.md-details:after {\n  content: '\\e1b2';\n}\n\n.md-developer_board:after {\n  content: '\\e1b4';\n}\n\n.md-developer_mode:after {\n  content: '\\e1b6';\n}\n\n.md-device_hub:after {\n  content: '\\e1b7';\n}\n\n.md-device_unknown:after {\n  content: '\\e1b8';\n}\n\n.md-devices:after {\n  content: '\\e1ba';\n}\n\n.md-devices_other:after {\n  content: '\\e1bc';\n}\n\n.md-dialer_sip:after {\n  content: '\\e1be';\n}\n\n.md-dialpad:after {\n  content: '\\e1c0';\n}\n\n.md-directions:after {\n  content: '\\e1c1';\n}\n\n.md-directions_bike:after {\n  content: '\\e1c3';\n}\n\n.md-directions_boat:after {\n  content: '\\e1c4';\n}\n\n.md-directions_bus:after {\n  content: '\\e1c6';\n}\n\n.md-directions_car:after {\n  content: '\\e1c8';\n}\n\n.md-directions_railway:after {\n  content: '\\e1ca';\n}\n\n.md-directions_run:after {\n  content: '\\e1cc';\n}\n\n.md-directions_subway:after {\n  content: '\\e1cd';\n}\n\n.md-directions_transit:after {\n  content: '\\e1cf';\n}\n\n.md-directions_walk:after {\n  content: '\\e1d1';\n}\n\n.md-disc_full:after {\n  content: '\\e1d2';\n}\n\n.md-divide:after {\n  content: '\\e1d4';\n}\n\n.md-dns:after {\n  content: '\\e1d6';\n}\n\n.md-do_not_disturb:after {\n  content: '\\e1d8';\n}\n\n.md-do_not_disturb_alt:after {\n  content: '\\e1da';\n}\n\n.md-do_not_disturb_off:after {\n  content: '\\e1dc';\n}\n\n.md-dock:after {\n  content: '\\e1de';\n}\n\n.md-domain:after {\n  content: '\\e1e0';\n}\n\n.md-domain_disabled:after {\n  content: '\\e1e2';\n}\n\n.md-done:after {\n  content: '\\e1e4';\n}\n\n.md-done_all:after {\n  content: '\\e1e5';\n}\n\n.md-done_outline:after {\n  content: '\\e1e6';\n}\n\n.md-donut_large:after {\n  content: '\\e1e7';\n}\n\n.md-donut_small:after {\n  content: '\\e1e8';\n}\n\n.md-double_arrow:after {\n  content: '\\e1ea';\n}\n\n.md-drafts:after {\n  content: '\\e1eb';\n}\n\n.md-drag_handle:after {\n  content: '\\e1ed';\n}\n\n.md-drag_indicator:after {\n  content: '\\e1ee';\n}\n\n.md-drive_eta:after {\n  content: '\\e1ef';\n}\n\n.md-duo:after {\n  content: '\\e1f1';\n}\n\n.md-dvr:after {\n  content: '\\e1f2';\n}\n\n.md-dynamic_feed:after {\n  content: '\\e1f4';\n}\n\n.md-eco:after {\n  content: '\\e1f6';\n}\n\n.md-edit:after {\n  content: '\\e1f8';\n}\n\n.md-edit_attributes:after {\n  content: '\\e1fa';\n}\n\n.md-edit_location:after {\n  content: '\\e1fc';\n}\n\n.md-eject:after {\n  content: '\\e1fe';\n}\n\n.md-email:after {\n  content: '\\e200';\n}\n\n.md-emoji_emotions:after {\n  content: '\\e202';\n}\n\n.md-emoji_events:after {\n  content: '\\e204';\n}\n\n.md-emoji_flags:after {\n  content: '\\e206';\n}\n\n.md-emoji_food_beverage:after {\n  content: '\\e208';\n}\n\n.md-emoji_nature:after {\n  content: '\\e20a';\n}\n\n.md-emoji_objects:after {\n  content: '\\e20c';\n}\n\n.md-emoji_people:after {\n  content: '\\e20e';\n}\n\n.md-emoji_symbols:after {\n  content: '\\e20f';\n}\n\n.md-emoji_transportation:after {\n  content: '\\e210';\n}\n\n.md-enhanced_encryption:after {\n  content: '\\e211';\n}\n\n.md-equalizer:after {\n  content: '\\e213';\n}\n\n.md-equals:after {\n  content: '\\e214';\n}\n\n.md-error:after {\n  content: '\\e215';\n}\n\n.md-error_outline:after {\n  content: '\\e217';\n}\n\n.md-euro:after {\n  content: '\\e218';\n}\n\n.md-euro_symbol:after {\n  content: '\\e219';\n}\n\n.md-ev_station:after {\n  content: '\\e21a';\n}\n\n.md-event:after {\n  content: '\\e21c';\n}\n\n.md-event_available:after {\n  content: '\\e21e';\n}\n\n.md-event_busy:after {\n  content: '\\e220';\n}\n\n.md-event_note:after {\n  content: '\\e222';\n}\n\n.md-event_seat:after {\n  content: '\\e224';\n}\n\n.md-exit_to_app:after {\n  content: '\\e226';\n}\n\n.md-expand_less:after {\n  content: '\\e227';\n}\n\n.md-expand_more:after {\n  content: '\\e228';\n}\n\n.md-explicit:after {\n  content: '\\e229';\n}\n\n.md-explore:after {\n  content: '\\e22b';\n}\n\n.md-explore_off:after {\n  content: '\\e22d';\n}\n\n.md-exposure:after {\n  content: '\\e22f';\n}\n\n.md-exposure_neg_1:after {\n  content: '\\e231';\n}\n\n.md-exposure_neg_2:after {\n  content: '\\e232';\n}\n\n.md-exposure_plus_1:after {\n  content: '\\e233';\n}\n\n.md-exposure_plus_2:after {\n  content: '\\e234';\n}\n\n.md-exposure_zero:after {\n  content: '\\e235';\n}\n\n.md-extension:after {\n  content: '\\e236';\n}\n\n.md-face:after {\n  content: '\\e238';\n}\n\n.md-fast_forward:after {\n  content: '\\e23a';\n}\n\n.md-fast_rewind:after {\n  content: '\\e23c';\n}\n\n.md-fastfood:after {\n  content: '\\e23e';\n}\n\n.md-favorite:after {\n  content: '\\e240';\n}\n\n.md-favorite_border:after {\n  content: '\\e242';\n}\n\n.md-featured_play_list:after {\n  content: '\\e243';\n}\n\n.md-featured_video:after {\n  content: '\\e245';\n}\n\n.md-feedback:after {\n  content: '\\e247';\n}\n\n.md-fiber_dvr:after {\n  content: '\\e249';\n}\n\n.md-fiber_manual_record:after {\n  content: '\\e24b';\n}\n\n.md-fiber_new:after {\n  content: '\\e24d';\n}\n\n.md-fiber_pin:after {\n  content: '\\e24f';\n}\n\n.md-fiber_smart_record:after {\n  content: '\\e251';\n}\n\n.md-file_copy:after {\n  content: '\\e253';\n}\n\n.md-file_upload:after {\n  content: '\\e255';\n}\n\n.md-filter:after {\n  content: '\\e257';\n}\n\n.md-filter_1:after {\n  content: '\\e259';\n}\n\n.md-filter_2:after {\n  content: '\\e25b';\n}\n\n.md-filter_3:after {\n  content: '\\e25d';\n}\n\n.md-filter_4:after {\n  content: '\\e25f';\n}\n\n.md-filter_5:after {\n  content: '\\e261';\n}\n\n.md-filter_6:after {\n  content: '\\e263';\n}\n\n.md-filter_7:after {\n  content: '\\e265';\n}\n\n.md-filter_8:after {\n  content: '\\e267';\n}\n\n.md-filter_9:after {\n  content: '\\e269';\n}\n\n.md-filter_9_plus:after {\n  content: '\\e26b';\n}\n\n.md-filter_b_and_w:after {\n  content: '\\e26d';\n}\n\n.md-filter_center_focus:after {\n  content: '\\e26f';\n}\n\n.md-filter_drama:after {\n  content: '\\e270';\n}\n\n.md-filter_frames:after {\n  content: '\\e272';\n}\n\n.md-filter_hdr:after {\n  content: '\\e274';\n}\n\n.md-filter_list:after {\n  content: '\\e276';\n}\n\n.md-filter_none:after {\n  content: '\\e277';\n}\n\n.md-filter_tilt_shift:after {\n  content: '\\e279';\n}\n\n.md-filter_vintage:after {\n  content: '\\e27a';\n}\n\n.md-find_in_page:after {\n  content: '\\e27c';\n}\n\n.md-find_replace:after {\n  content: '\\e27e';\n}\n\n.md-fingerprint:after {\n  content: '\\e27f';\n}\n\n.md-fireplace:after {\n  content: '\\e280';\n}\n\n.md-first_page:after {\n  content: '\\e282';\n}\n\n.md-fitness_center:after {\n  content: '\\e283';\n}\n\n.md-flag:after {\n  content: '\\e284';\n}\n\n.md-flare:after {\n  content: '\\e286';\n}\n\n.md-flash_auto:after {\n  content: '\\e287';\n}\n\n.md-flash_off:after {\n  content: '\\e288';\n}\n\n.md-flash_on:after {\n  content: '\\e289';\n}\n\n.md-flight:after {\n  content: '\\e28a';\n}\n\n.md-flight_land:after {\n  content: '\\e28b';\n}\n\n.md-flight_takeoff:after {\n  content: '\\e28c';\n}\n\n.md-flip:after {\n  content: '\\e28d';\n}\n\n.md-flip_camera_android:after {\n  content: '\\e28e';\n}\n\n.md-flip_camera_ios:after {\n  content: '\\e290';\n}\n\n.md-flip_to_back:after {\n  content: '\\e292';\n}\n\n.md-flip_to_front:after {\n  content: '\\e293';\n}\n\n.md-folder:after {\n  content: '\\e294';\n}\n\n.md-folder_open:after {\n  content: '\\e296';\n}\n\n.md-folder_shared:after {\n  content: '\\e298';\n}\n\n.md-folder_special:after {\n  content: '\\e29a';\n}\n\n.md-font_download:after {\n  content: '\\e29c';\n}\n\n.md-format_align_center:after {\n  content: '\\e29e';\n}\n\n.md-format_align_justify:after {\n  content: '\\e29f';\n}\n\n.md-format_align_left:after {\n  content: '\\e2a0';\n}\n\n.md-format_align_right:after {\n  content: '\\e2a1';\n}\n\n.md-format_bold:after {\n  content: '\\e2a2';\n}\n\n.md-format_clear:after {\n  content: '\\e2a3';\n}\n\n.md-format_color_fill:after {\n  content: '\\e2a4';\n}\n\n.md-format_color_fill:before {\n  content: '\\e2a5';\n}\n\n.md-format_color_reset:after {\n  content: '\\e2a6';\n}\n\n.md-format_color_text:after {\n  content: '\\e2a8';\n}\n\n.md-format_color_text:before {\n  content: '\\e2a9';\n}\n\n.md-format_indent_decrease:after {\n  content: '\\e2aa';\n}\n\n.md-format_indent_increase:after {\n  content: '\\e2ab';\n}\n\n.md-format_italic:after {\n  content: '\\e2ac';\n}\n\n.md-format_line_spacing:after {\n  content: '\\e2ad';\n}\n\n.md-format_list_bulleted:after {\n  content: '\\e2ae';\n}\n\n.md-format_list_numbered:after {\n  content: '\\e2af';\n}\n\n.md-format_list_numbered_rtl:after {\n  content: '\\e2b0';\n}\n\n.md-format_paint:after {\n  content: '\\e2b1';\n}\n\n.md-format_quote:after {\n  content: '\\e2b3';\n}\n\n.md-format_shapes:after {\n  content: '\\e2b5';\n}\n\n.md-format_size:after {\n  content: '\\e2b7';\n}\n\n.md-format_strikethrough:after {\n  content: '\\e2b8';\n}\n\n.md-format_textdirection_l_to_r:after {\n  content: '\\e2b9';\n}\n\n.md-format_textdirection_r_to_l:after {\n  content: '\\e2bb';\n}\n\n.md-format_underlined:after {\n  content: '\\e2bd';\n}\n\n.md-forum:after {\n  content: '\\e2be';\n}\n\n.md-forward:after {\n  content: '\\e2c0';\n}\n\n.md-forward_10:after {\n  content: '\\e2c2';\n}\n\n.md-forward_30:after {\n  content: '\\e2c3';\n}\n\n.md-forward_5:after {\n  content: '\\e2c4';\n}\n\n.md-free_breakfast:after {\n  content: '\\e2c5';\n}\n\n.md-fullscreen:after {\n  content: '\\e2c7';\n}\n\n.md-fullscreen_exit:after {\n  content: '\\e2c8';\n}\n\n.md-functions:after {\n  content: '\\e2c9';\n}\n\n.md-g_translate:after {\n  content: '\\e2ca';\n}\n\n.md-gamepad:after {\n  content: '\\e2cb';\n}\n\n.md-games:after {\n  content: '\\e2cd';\n}\n\n.md-gavel:after {\n  content: '\\e2cf';\n}\n\n.md-gesture:after {\n  content: '\\e2d0';\n}\n\n.md-get_app:after {\n  content: '\\e2d1';\n}\n\n.md-gif:after {\n  content: '\\e2d3';\n}\n\n.md-golf_course:after {\n  content: '\\e2d5';\n}\n\n.md-gps_fixed:after {\n  content: '\\e2d7';\n}\n\n.md-gps_not_fixed:after {\n  content: '\\e2d9';\n}\n\n.md-gps_off:after {\n  content: '\\e2da';\n}\n\n.md-grade:after {\n  content: '\\e2db';\n}\n\n.md-gradient:after {\n  content: '\\e2dd';\n}\n\n.md-grain:after {\n  content: '\\e2de';\n}\n\n.md-graphic_eq:after {\n  content: '\\e2df';\n}\n\n.md-greater_than:after {\n  content: '\\e2e0';\n}\n\n.md-greater_than_equal:after {\n  content: '\\e2e1';\n}\n\n.md-grid_off:after {\n  content: '\\e2e2';\n}\n\n.md-grid_on:after {\n  content: '\\e2e4';\n}\n\n.md-group:after {\n  content: '\\e2e6';\n}\n\n.md-group_add:after {\n  content: '\\e2e8';\n}\n\n.md-group_work:after {\n  content: '\\e2ea';\n}\n\n.md-hd:after {\n  content: '\\e2ec';\n}\n\n.md-hdr_off:after {\n  content: '\\e2ee';\n}\n\n.md-hdr_on:after {\n  content: '\\e2ef';\n}\n\n.md-hdr_strong:after {\n  content: '\\e2f0';\n}\n\n.md-hdr_weak:after {\n  content: '\\e2f2';\n}\n\n.md-headset:after {\n  content: '\\e2f4';\n}\n\n.md-headset_mic:after {\n  content: '\\e2f6';\n}\n\n.md-healing:after {\n  content: '\\e2f8';\n}\n\n.md-hearing:after {\n  content: '\\e2fa';\n}\n\n.md-height:after {\n  content: '\\e2fb';\n}\n\n.md-help:after {\n  content: '\\e2fc';\n}\n\n.md-help_outline:after {\n  content: '\\e2fe';\n}\n\n.md-high_quality:after {\n  content: '\\e2ff';\n}\n\n.md-highlight:after {\n  content: '\\e301';\n}\n\n.md-highlight_off:after {\n  content: '\\e303';\n}\n\n.md-history:after {\n  content: '\\e305';\n}\n\n.md-home:after {\n  content: '\\e306';\n}\n\n.md-home_work:after {\n  content: '\\e308';\n}\n\n.md-horizontal_split:after {\n  content: '\\e30a';\n}\n\n.md-hot_tub:after {\n  content: '\\e30c';\n}\n\n.md-hotel:after {\n  content: '\\e30d';\n}\n\n.md-hourglass_empty:after {\n  content: '\\e30f';\n}\n\n.md-hourglass_full:after {\n  content: '\\e310';\n}\n\n.md-house:after {\n  content: '\\e312';\n}\n\n.md-how_to_reg:after {\n  content: '\\e314';\n}\n\n.md-how_to_vote:after {\n  content: '\\e316';\n}\n\n.md-http:after {\n  content: '\\e318';\n}\n\n.md-https:after {\n  content: '\\e319';\n}\n\n.md-image:after {\n  content: '\\e31b';\n}\n\n.md-image_aspect_ratio:after {\n  content: '\\e31d';\n}\n\n.md-image_search:after {\n  content: '\\e31f';\n}\n\n.md-import_contacts:after {\n  content: '\\e321';\n}\n\n.md-import_export:after {\n  content: '\\e323';\n}\n\n.md-important_devices:after {\n  content: '\\e324';\n}\n\n.md-inbox:after {\n  content: '\\e326';\n}\n\n.md-indeterminate_check_box:after {\n  content: '\\e328';\n}\n\n.md-info:after {\n  content: '\\e32a';\n}\n\n.md-input:after {\n  content: '\\e32c';\n}\n\n.md-insert_chart:after {\n  content: '\\e32d';\n}\n\n.md-insert_chart_outlined:after {\n  content: '\\e32f';\n}\n\n.md-insert_comment:after {\n  content: '\\e330';\n}\n\n.md-insert_drive_file:after {\n  content: '\\e332';\n}\n\n.md-insert_emoticon:after {\n  content: '\\e334';\n}\n\n.md-insert_invitation:after {\n  content: '\\e336';\n}\n\n.md-insert_link:after {\n  content: '\\e338';\n}\n\n.md-insert_photo:after {\n  content: '\\e339';\n}\n\n.md-invert_colors:after {\n  content: '\\e33b';\n}\n\n.md-invert_colors_off:after {\n  content: '\\e33d';\n}\n\n.md-iso:after {\n  content: '\\e33f';\n}\n\n.md-keyboard:after {\n  content: '\\e341';\n}\n\n.md-keyboard_arrow_down:after {\n  content: '\\e343';\n}\n\n.md-keyboard_arrow_left:after {\n  content: '\\e344';\n}\n\n.md-keyboard_arrow_right:after {\n  content: '\\e345';\n}\n\n.md-keyboard_arrow_up:after {\n  content: '\\e346';\n}\n\n.md-keyboard_backspace:after {\n  content: '\\e347';\n}\n\n.md-keyboard_capslock:after {\n  content: '\\e348';\n}\n\n.md-keyboard_hide:after {\n  content: '\\e349';\n}\n\n.md-keyboard_return:after {\n  content: '\\e34b';\n}\n\n.md-keyboard_tab:after {\n  content: '\\e34c';\n}\n\n.md-keyboard_voice:after {\n  content: '\\e34d';\n}\n\n.md-king_bed:after {\n  content: '\\e34f';\n}\n\n.md-kitchen:after {\n  content: '\\e351';\n}\n\n.md-label:after {\n  content: '\\e353';\n}\n\n.md-label_important:after {\n  content: '\\e355';\n}\n\n.md-label_off:after {\n  content: '\\e357';\n}\n\n.md-landscape:after {\n  content: '\\e359';\n}\n\n.md-language:after {\n  content: '\\e35b';\n}\n\n.md-laptop:after {\n  content: '\\e35d';\n}\n\n.md-laptop_chromebook:after {\n  content: '\\e35f';\n}\n\n.md-laptop_mac:after {\n  content: '\\e361';\n}\n\n.md-laptop_windows:after {\n  content: '\\e363';\n}\n\n.md-last_page:after {\n  content: '\\e365';\n}\n\n.md-launch:after {\n  content: '\\e366';\n}\n\n.md-layers:after {\n  content: '\\e367';\n}\n\n.md-layers_clear:after {\n  content: '\\e369';\n}\n\n.md-leak_add:after {\n  content: '\\e36b';\n}\n\n.md-leak_remove:after {\n  content: '\\e36c';\n}\n\n.md-lens:after {\n  content: '\\e36d';\n}\n\n.md-less_than:after {\n  content: '\\e36f';\n}\n\n.md-less_than_equal:after {\n  content: '\\e370';\n}\n\n.md-library_add:after {\n  content: '\\e371';\n}\n\n.md-library_books:after {\n  content: '\\e373';\n}\n\n.md-library_music:after {\n  content: '\\e375';\n}\n\n.md-lightbulb:after {\n  content: '\\e377';\n}\n\n.md-line_style:after {\n  content: '\\e379';\n}\n\n.md-line_weight:after {\n  content: '\\e37a';\n}\n\n.md-linear_scale:after {\n  content: '\\e37b';\n}\n\n.md-link:after {\n  content: '\\e37c';\n}\n\n.md-link_off:after {\n  content: '\\e37e';\n}\n\n.md-linked_camera:after {\n  content: '\\e37f';\n}\n\n.md-list:after {\n  content: '\\e381';\n}\n\n.md-list_alt:after {\n  content: '\\e382';\n}\n\n.md-live_help:after {\n  content: '\\e384';\n}\n\n.md-live_tv:after {\n  content: '\\e386';\n}\n\n.md-local_activity:after {\n  content: '\\e388';\n}\n\n.md-local_airport:after {\n  content: '\\e38a';\n}\n\n.md-local_atm:after {\n  content: '\\e38b';\n}\n\n.md-local_bar:after {\n  content: '\\e38d';\n}\n\n.md-local_cafe:after {\n  content: '\\e38f';\n}\n\n.md-local_car_wash:after {\n  content: '\\e391';\n}\n\n.md-local_convenience_store:after {\n  content: '\\e393';\n}\n\n.md-local_dining:after {\n  content: '\\e395';\n}\n\n.md-local_drink:after {\n  content: '\\e396';\n}\n\n.md-local_florist:after {\n  content: '\\e398';\n}\n\n.md-local_gas_station:after {\n  content: '\\e39a';\n}\n\n.md-local_grocery_store:after {\n  content: '\\e39c';\n}\n\n.md-local_hospital:after {\n  content: '\\e39e';\n}\n\n.md-local_hotel:after {\n  content: '\\e3a0';\n}\n\n.md-local_laundry_service:after {\n  content: '\\e3a2';\n}\n\n.md-local_library:after {\n  content: '\\e3a4';\n}\n\n.md-local_mall:after {\n  content: '\\e3a6';\n}\n\n.md-local_movies:after {\n  content: '\\e3a8';\n}\n\n.md-local_offer:after {\n  content: '\\e3aa';\n}\n\n.md-local_parking:after {\n  content: '\\e3ac';\n}\n\n.md-local_pharmacy:after {\n  content: '\\e3ad';\n}\n\n.md-local_phone:after {\n  content: '\\e3af';\n}\n\n.md-local_pizza:after {\n  content: '\\e3b1';\n}\n\n.md-local_play:after {\n  content: '\\e3b3';\n}\n\n.md-local_post_office:after {\n  content: '\\e3b5';\n}\n\n.md-local_printshop:after {\n  content: '\\e3b7';\n}\n\n.md-local_see:after {\n  content: '\\e3b9';\n}\n\n.md-local_shipping:after {\n  content: '\\e3bb';\n}\n\n.md-local_taxi:after {\n  content: '\\e3bd';\n}\n\n.md-location_city:after {\n  content: '\\e3bf';\n}\n\n.md-location_disabled:after {\n  content: '\\e3c0';\n}\n\n.md-location_off:after {\n  content: '\\e3c1';\n}\n\n.md-location_on:after {\n  content: '\\e3c2';\n}\n\n.md-location_searching:after {\n  content: '\\e3c4';\n}\n\n.md-lock:after {\n  content: '\\e3c5';\n}\n\n.md-lock_open:after {\n  content: '\\e3c7';\n}\n\n.md-log_in:after {\n  content: '\\e3c9';\n}\n\n.md-log_out:after {\n  content: '\\e3ca';\n}\n\n.md-looks:after {\n  content: '\\e3cb';\n}\n\n.md-looks_3:after {\n  content: '\\e3cc';\n}\n\n.md-looks_4:after {\n  content: '\\e3ce';\n}\n\n.md-looks_5:after {\n  content: '\\e3d0';\n}\n\n.md-looks_6:after {\n  content: '\\e3d2';\n}\n\n.md-looks_one:after {\n  content: '\\e3d4';\n}\n\n.md-looks_two:after {\n  content: '\\e3d6';\n}\n\n.md-loop:after {\n  content: '\\e3d8';\n}\n\n.md-loupe:after {\n  content: '\\e3d9';\n}\n\n.md-low_priority:after {\n  content: '\\e3db';\n}\n\n.md-loyalty:after {\n  content: '\\e3dc';\n}\n\n.md-mail:after {\n  content: '\\e3de';\n}\n\n.md-mail_outline:after {\n  content: '\\e3e0';\n}\n\n.md-map:after {\n  content: '\\e3e1';\n}\n\n.md-markunread:after {\n  content: '\\e3e3';\n}\n\n.md-markunread_mailbox:after {\n  content: '\\e3e5';\n}\n\n.md-maximize:after {\n  content: '\\e3e7';\n}\n\n.md-meeting_room:after {\n  content: '\\e3e8';\n}\n\n.md-memory:after {\n  content: '\\e3ea';\n}\n\n.md-menu:after {\n  content: '\\e3ec';\n}\n\n.md-menu_book:after {\n  content: '\\e3ed';\n}\n\n.md-menu_open:after {\n  content: '\\e3ef';\n}\n\n.md-merge_type:after {\n  content: '\\e3f0';\n}\n\n.md-message:after {\n  content: '\\e3f1';\n}\n\n.md-mic:after {\n  content: '\\e3f3';\n}\n\n.md-mic_none:after {\n  content: '\\e3f5';\n}\n\n.md-mic_off:after {\n  content: '\\e3f7';\n}\n\n.md-minimize:after {\n  content: '\\e3f9';\n}\n\n.md-minus:after {\n  content: '\\e3fa';\n}\n\n.md-missed_video_call:after {\n  content: '\\e3fb';\n}\n\n.md-mms:after {\n  content: '\\e3fd';\n}\n\n.md-mobile_friendly:after {\n  content: '\\e3ff';\n}\n\n.md-mobile_off:after {\n  content: '\\e400';\n}\n\n.md-mobile_screen_share:after {\n  content: '\\e401';\n}\n\n.md-mode_comment:after {\n  content: '\\e403';\n}\n\n.md-monetization_on:after {\n  content: '\\e405';\n}\n\n.md-money:after {\n  content: '\\e407';\n}\n\n.md-money_off:after {\n  content: '\\e409';\n}\n\n.md-monochrome_photos:after {\n  content: '\\e40a';\n}\n\n.md-mood:after {\n  content: '\\e40c';\n}\n\n.md-mood_bad:after {\n  content: '\\e40e';\n}\n\n.md-more:after {\n  content: '\\e410';\n}\n\n.md-more_horiz:after {\n  content: '\\e412';\n}\n\n.md-more_vert:after {\n  content: '\\e413';\n}\n\n.md-motorcycle:after {\n  content: '\\e414';\n}\n\n.md-mouse:after {\n  content: '\\e416';\n}\n\n.md-move_to_inbox:after {\n  content: '\\e418';\n}\n\n.md-movie:after {\n  content: '\\e41a';\n}\n\n.md-movie_creation:after {\n  content: '\\e41c';\n}\n\n.md-movie_filter:after {\n  content: '\\e41e';\n}\n\n.md-multiline_chart:after {\n  content: '\\e420';\n}\n\n.md-museum:after {\n  content: '\\e421';\n}\n\n.md-music_note:after {\n  content: '\\e423';\n}\n\n.md-music_off:after {\n  content: '\\e425';\n}\n\n.md-music_video:after {\n  content: '\\e427';\n}\n\n.md-my_location:after {\n  content: '\\e429';\n}\n\n.md-nature:after {\n  content: '\\e42b';\n}\n\n.md-nature_people:after {\n  content: '\\e42d';\n}\n\n.md-navigate_before:after {\n  content: '\\e42f';\n}\n\n.md-navigate_next:after {\n  content: '\\e430';\n}\n\n.md-navigation:after {\n  content: '\\e431';\n}\n\n.md-near_me:after {\n  content: '\\e433';\n}\n\n.md-network_cell:after {\n  content: '\\e435';\n}\n\n.md-network_cell:before {\n  content: '\\e436';\n}\n\n.md-network_check:after {\n  content: '\\e437';\n}\n\n.md-network_locked:after {\n  content: '\\e438';\n}\n\n.md-network_wifi:after {\n  content: '\\e439';\n}\n\n.md-network_wifi:before {\n  content: '\\e43a';\n}\n\n.md-new_releases:after {\n  content: '\\e43b';\n}\n\n.md-next_week:after {\n  content: '\\e43d';\n}\n\n.md-nfc:after {\n  content: '\\e43f';\n}\n\n.md-nights_stay:after {\n  content: '\\e440';\n}\n\n.md-no_encryption:after {\n  content: '\\e442';\n}\n\n.md-no_meeting_room:after {\n  content: '\\e444';\n}\n\n.md-no_sim:after {\n  content: '\\e446';\n}\n\n.md-not_equal:after {\n  content: '\\e448';\n}\n\n.md-not_interested:after {\n  content: '\\e449';\n}\n\n.md-not_listed_location:after {\n  content: '\\e44a';\n}\n\n.md-note:after {\n  content: '\\e44c';\n}\n\n.md-note_add:after {\n  content: '\\e44e';\n}\n\n.md-notes:after {\n  content: '\\e450';\n}\n\n.md-notification_important:after {\n  content: '\\e451';\n}\n\n.md-notifications:after {\n  content: '\\e453';\n}\n\n.md-notifications_active:after {\n  content: '\\e455';\n}\n\n.md-notifications_none:after {\n  content: '\\e457';\n}\n\n.md-notifications_off:after {\n  content: '\\e459';\n}\n\n.md-notifications_paused:after {\n  content: '\\e45b';\n}\n\n.md-offline_bolt:after {\n  content: '\\e45d';\n}\n\n.md-offline_pin:after {\n  content: '\\e45f';\n}\n\n.md-ondemand_video:after {\n  content: '\\e461';\n}\n\n.md-opacity:after {\n  content: '\\e463';\n}\n\n.md-open_in_browser:after {\n  content: '\\e465';\n}\n\n.md-open_in_new:after {\n  content: '\\e466';\n}\n\n.md-open_with:after {\n  content: '\\e467';\n}\n\n.md-outdoor_grill:after {\n  content: '\\e468';\n}\n\n.md-outlined_flag:after {\n  content: '\\e46a';\n}\n\n.md-pages:after {\n  content: '\\e46b';\n}\n\n.md-pageview:after {\n  content: '\\e46d';\n}\n\n.md-palette:after {\n  content: '\\e46f';\n}\n\n.md-pan_tool:after {\n  content: '\\e471';\n}\n\n.md-panorama:after {\n  content: '\\e473';\n}\n\n.md-panorama_fish_eye:after {\n  content: '\\e475';\n}\n\n.md-panorama_horizontal:after {\n  content: '\\e477';\n}\n\n.md-panorama_vertical:after {\n  content: '\\e479';\n}\n\n.md-panorama_wide_angle:after {\n  content: '\\e47b';\n}\n\n.md-party_mode:after {\n  content: '\\e47d';\n}\n\n.md-pause:after {\n  content: '\\e47f';\n}\n\n.md-pause_circle_filled:after {\n  content: '\\e480';\n}\n\n.md-pause_circle_outline:after {\n  content: '\\e482';\n}\n\n.md-pause_presentation:after {\n  content: '\\e483';\n}\n\n.md-payment:after {\n  content: '\\e485';\n}\n\n.md-people:after {\n  content: '\\e487';\n}\n\n.md-people_alt:after {\n  content: '\\e489';\n}\n\n.md-people_outline:after {\n  content: '\\e48b';\n}\n\n.md-percentage:after {\n  content: '\\e48d';\n}\n\n.md-perm_camera_mic:after {\n  content: '\\e48f';\n}\n\n.md-perm_contact_calendar:after {\n  content: '\\e491';\n}\n\n.md-perm_data_setting:after {\n  content: '\\e493';\n}\n\n.md-perm_device_information:after {\n  content: '\\e494';\n}\n\n.md-perm_identity:after {\n  content: '\\e496';\n}\n\n.md-perm_media:after {\n  content: '\\e498';\n}\n\n.md-perm_phone_msg:after {\n  content: '\\e49a';\n}\n\n.md-perm_scan_wifi:after {\n  content: '\\e49c';\n}\n\n.md-person:after {\n  content: '\\e49e';\n}\n\n.md-person_add:after {\n  content: '\\e4a0';\n}\n\n.md-person_add_disabled:after {\n  content: '\\e4a2';\n}\n\n.md-person_outline:after {\n  content: '\\e4a4';\n}\n\n.md-person_pin:after {\n  content: '\\e4a6';\n}\n\n.md-person_pin_circle:after {\n  content: '\\e4a8';\n}\n\n.md-personal_video:after {\n  content: '\\e4aa';\n}\n\n.md-pets:after {\n  content: '\\e4ac';\n}\n\n.md-phone:after {\n  content: '\\e4ad';\n}\n\n.md-phone_android:after {\n  content: '\\e4af';\n}\n\n.md-phone_bluetooth_speaker:after {\n  content: '\\e4b1';\n}\n\n.md-phone_callback:after {\n  content: '\\e4b3';\n}\n\n.md-phone_disabled:after {\n  content: '\\e4b5';\n}\n\n.md-phone_enabled:after {\n  content: '\\e4b6';\n}\n\n.md-phone_forwarded:after {\n  content: '\\e4b7';\n}\n\n.md-phone_in_talk:after {\n  content: '\\e4b9';\n}\n\n.md-phone_iphone:after {\n  content: '\\e4bb';\n}\n\n.md-phone_locked:after {\n  content: '\\e4bd';\n}\n\n.md-phone_missed:after {\n  content: '\\e4bf';\n}\n\n.md-phone_paused:after {\n  content: '\\e4c1';\n}\n\n.md-phonelink:after {\n  content: '\\e4c3';\n}\n\n.md-phonelink_erase:after {\n  content: '\\e4c5';\n}\n\n.md-phonelink_lock:after {\n  content: '\\e4c6';\n}\n\n.md-phonelink_off:after {\n  content: '\\e4c7';\n}\n\n.md-phonelink_ring:after {\n  content: '\\e4c9';\n}\n\n.md-phonelink_setup:after {\n  content: '\\e4cb';\n}\n\n.md-photo:after {\n  content: '\\e4cc';\n}\n\n.md-photo_album:after {\n  content: '\\e4ce';\n}\n\n.md-photo_camera:after {\n  content: '\\e4d0';\n}\n\n.md-photo_filter:after {\n  content: '\\e4d2';\n}\n\n.md-photo_library:after {\n  content: '\\e4d3';\n}\n\n.md-photo_size_select_actual:after {\n  content: '\\e4d5';\n}\n\n.md-photo_size_select_large:after {\n  content: '\\e4d7';\n}\n\n.md-photo_size_select_small:after {\n  content: '\\e4d8';\n}\n\n.md-picture_as_pdf:after {\n  content: '\\e4d9';\n}\n\n.md-picture_in_picture:after {\n  content: '\\e4db';\n}\n\n.md-picture_in_picture_alt:after {\n  content: '\\e4dd';\n}\n\n.md-pie_chart:after {\n  content: '\\e4df';\n}\n\n.md-pin:after {\n  content: '\\e4e1';\n}\n\n.md-pin_drop:after {\n  content: '\\e4e3';\n}\n\n.md-pin_off:after {\n  content: '\\e4e5';\n}\n\n.md-place:after {\n  content: '\\e4e7';\n}\n\n.md-play_arrow:after {\n  content: '\\e4e9';\n}\n\n.md-play_circle_filled:after {\n  content: '\\e4eb';\n}\n\n.md-play_circle_filled_white:after {\n  content: '\\e4ed';\n}\n\n.md-play_circle_outline:after {\n  content: '\\e4ef';\n}\n\n.md-play_for_work:after {\n  content: '\\e4f0';\n}\n\n.md-playlist_add:after {\n  content: '\\e4f1';\n}\n\n.md-playlist_add_check:after {\n  content: '\\e4f2';\n}\n\n.md-playlist_play:after {\n  content: '\\e4f3';\n}\n\n.md-plus:after {\n  content: '\\e4f4';\n}\n\n.md-plus_minus:after {\n  content: '\\e4f5';\n}\n\n.md-plus_minus_alt:after {\n  content: '\\e4f6';\n}\n\n.md-plus_one:after {\n  content: '\\e4f7';\n}\n\n.md-policy:after {\n  content: '\\e4f8';\n}\n\n.md-poll:after {\n  content: '\\e4fa';\n}\n\n.md-polymer:after {\n  content: '\\e4fc';\n}\n\n.md-pool:after {\n  content: '\\e4fd';\n}\n\n.md-portable_wifi_off:after {\n  content: '\\e4ff';\n}\n\n.md-portrait:after {\n  content: '\\e500';\n}\n\n.md-post_add:after {\n  content: '\\e502';\n}\n\n.md-power:after {\n  content: '\\e503';\n}\n\n.md-power_input:after {\n  content: '\\e505';\n}\n\n.md-power_off:after {\n  content: '\\e506';\n}\n\n.md-power_settings_new:after {\n  content: '\\e508';\n}\n\n.md-pregnant_woman:after {\n  content: '\\e509';\n}\n\n.md-present_to_all:after {\n  content: '\\e50a';\n}\n\n.md-print:after {\n  content: '\\e50c';\n}\n\n.md-print_disabled:after {\n  content: '\\e50e';\n}\n\n.md-priority_high:after {\n  content: '\\e510';\n}\n\n.md-public:after {\n  content: '\\e511';\n}\n\n.md-publish:after {\n  content: '\\e513';\n}\n\n.md-qrcode:after {\n  content: '\\e515';\n}\n\n.md-query_builder:after {\n  content: '\\e517';\n}\n\n.md-question_answer:after {\n  content: '\\e519';\n}\n\n.md-queue:after {\n  content: '\\e51b';\n}\n\n.md-queue_music:after {\n  content: '\\e51d';\n}\n\n.md-queue_play_next:after {\n  content: '\\e51f';\n}\n\n.md-radio:after {\n  content: '\\e520';\n}\n\n.md-radio_button_checked:after {\n  content: '\\e522';\n}\n\n.md-radio_button_unchecked:after {\n  content: '\\e523';\n}\n\n.md-rate_review:after {\n  content: '\\e524';\n}\n\n.md-receipt:after {\n  content: '\\e526';\n}\n\n.md-recent_actors:after {\n  content: '\\e528';\n}\n\n.md-record_voice_over:after {\n  content: '\\e52a';\n}\n\n.md-redeem:after {\n  content: '\\e52c';\n}\n\n.md-redo:after {\n  content: '\\e52e';\n}\n\n.md-refresh:after {\n  content: '\\e52f';\n}\n\n.md-remove:after {\n  content: '\\e530';\n}\n\n.md-remove_circle:after {\n  content: '\\e531';\n}\n\n.md-remove_circle_outline:after {\n  content: '\\e533';\n}\n\n.md-remove_from_queue:after {\n  content: '\\e534';\n}\n\n.md-remove_red_eye:after {\n  content: '\\e536';\n}\n\n.md-remove_shopping_cart:after {\n  content: '\\e538';\n}\n\n.md-reorder:after {\n  content: '\\e53a';\n}\n\n.md-repeat:after {\n  content: '\\e53b';\n}\n\n.md-repeat_one:after {\n  content: '\\e53c';\n}\n\n.md-replay:after {\n  content: '\\e53d';\n}\n\n.md-replay_10:after {\n  content: '\\e53e';\n}\n\n.md-replay_30:after {\n  content: '\\e53f';\n}\n\n.md-replay_5:after {\n  content: '\\e540';\n}\n\n.md-reply:after {\n  content: '\\e541';\n}\n\n.md-reply_all:after {\n  content: '\\e542';\n}\n\n.md-report:after {\n  content: '\\e543';\n}\n\n.md-report_off:after {\n  content: '\\e545';\n}\n\n.md-report_problem:after {\n  content: '\\e547';\n}\n\n.md-restaurant:after {\n  content: '\\e549';\n}\n\n.md-restaurant_menu:after {\n  content: '\\e54a';\n}\n\n.md-restore:after {\n  content: '\\e54b';\n}\n\n.md-restore_from_trash:after {\n  content: '\\e54c';\n}\n\n.md-restore_page:after {\n  content: '\\e54e';\n}\n\n.md-ring_volume:after {\n  content: '\\e550';\n}\n\n.md-rocket:after {\n  content: '\\e552';\n}\n\n.md-room:after {\n  content: '\\e554';\n}\n\n.md-room_service:after {\n  content: '\\e556';\n}\n\n.md-rotate_90_degrees_ccw:after {\n  content: '\\e558';\n}\n\n.md-rotate_left:after {\n  content: '\\e55a';\n}\n\n.md-rotate_right:after {\n  content: '\\e55b';\n}\n\n.md-rounded_corner:after {\n  content: '\\e55c';\n}\n\n.md-router:after {\n  content: '\\e55d';\n}\n\n.md-rowing:after {\n  content: '\\e55f';\n}\n\n.md-rss_feed:after {\n  content: '\\e560';\n}\n\n.md-rv_hookup:after {\n  content: '\\e561';\n}\n\n.md-satellite:after {\n  content: '\\e563';\n}\n\n.md-save:after {\n  content: '\\e565';\n}\n\n.md-save_alt:after {\n  content: '\\e567';\n}\n\n.md-scanner:after {\n  content: '\\e568';\n}\n\n.md-scatter_plot:after {\n  content: '\\e56a';\n}\n\n.md-schedule:after {\n  content: '\\e56c';\n}\n\n.md-school:after {\n  content: '\\e56e';\n}\n\n.md-score:after {\n  content: '\\e570';\n}\n\n.md-screen_lock_landscape:after {\n  content: '\\e572';\n}\n\n.md-screen_lock_portrait:after {\n  content: '\\e574';\n}\n\n.md-screen_lock_rotation:after {\n  content: '\\e576';\n}\n\n.md-screen_rotation:after {\n  content: '\\e577';\n}\n\n.md-screen_share:after {\n  content: '\\e579';\n}\n\n.md-sd_card:after {\n  content: '\\e57b';\n}\n\n.md-sd_storage:after {\n  content: '\\e57d';\n}\n\n.md-search:after {\n  content: '\\e57f';\n}\n\n.md-security:after {\n  content: '\\e580';\n}\n\n.md-select_all:after {\n  content: '\\e582';\n}\n\n.md-send:after {\n  content: '\\e583';\n}\n\n.md-sentiment_dissatisfied:after {\n  content: '\\e585';\n}\n\n.md-sentiment_neutral:after {\n  content: '\\e587';\n}\n\n.md-sentiment_satisfied:after {\n  content: '\\e589';\n}\n\n.md-sentiment_satisfied_alt:after {\n  content: '\\e58b';\n}\n\n.md-sentiment_slightly_dissatisfied:after {\n  content: '\\e58d';\n}\n\n.md-sentiment_very_dissatisfied:after {\n  content: '\\e58f';\n}\n\n.md-sentiment_very_satisfied:after {\n  content: '\\e591';\n}\n\n.md-settings:after {\n  content: '\\e593';\n}\n\n.md-settings_applications:after {\n  content: '\\e595';\n}\n\n.md-settings_backup_restore:after {\n  content: '\\e597';\n}\n\n.md-settings_bluetooth:after {\n  content: '\\e598';\n}\n\n.md-settings_brightness:after {\n  content: '\\e599';\n}\n\n.md-settings_cell:after {\n  content: '\\e59b';\n}\n\n.md-settings_ethernet:after {\n  content: '\\e59d';\n}\n\n.md-settings_input_antenna:after {\n  content: '\\e59e';\n}\n\n.md-settings_input_component:after {\n  content: '\\e59f';\n}\n\n.md-settings_input_composite:after {\n  content: '\\e5a1';\n}\n\n.md-settings_input_hdmi:after {\n  content: '\\e5a3';\n}\n\n.md-settings_input_svideo:after {\n  content: '\\e5a5';\n}\n\n.md-settings_overscan:after {\n  content: '\\e5a7';\n}\n\n.md-settings_phone:after {\n  content: '\\e5a9';\n}\n\n.md-settings_power:after {\n  content: '\\e5ab';\n}\n\n.md-settings_remote:after {\n  content: '\\e5ac';\n}\n\n.md-settings_system_daydream:after {\n  content: '\\e5ae';\n}\n\n.md-settings_voice:after {\n  content: '\\e5b0';\n}\n\n.md-share:after {\n  content: '\\e5b2';\n}\n\n.md-shop:after {\n  content: '\\e5b4';\n}\n\n.md-shop_two:after {\n  content: '\\e5b6';\n}\n\n.md-shopping_basket:after {\n  content: '\\e5b8';\n}\n\n.md-shopping_cart:after {\n  content: '\\e5ba';\n}\n\n.md-short_text:after {\n  content: '\\e5bc';\n}\n\n.md-show_chart:after {\n  content: '\\e5bd';\n}\n\n.md-shuffle:after {\n  content: '\\e5be';\n}\n\n.md-shutter_speed:after {\n  content: '\\e5bf';\n}\n\n.md-signal_cellular_0_bar:after {\n  content: '\\e5c1';\n}\n\n.md-signal_cellular_0_bar:before {\n  content: '\\e5c2';\n}\n\n.md-signal_cellular_1_bar:after {\n  content: '\\e5c3';\n}\n\n.md-signal_cellular_1_bar:before {\n  content: '\\e5c4';\n}\n\n.md-signal_cellular_2_bar:after {\n  content: '\\e5c5';\n}\n\n.md-signal_cellular_2_bar:before {\n  content: '\\e5c6';\n}\n\n.md-signal_cellular_3_bar:after {\n  content: '\\e5c7';\n}\n\n.md-signal_cellular_3_bar:before {\n  content: '\\e5c8';\n}\n\n.md-signal_cellular_4_bar:after {\n  content: '\\e5c9';\n}\n\n.md-signal_cellular_alt:after {\n  content: '\\e5ca';\n}\n\n.md-signal_cellular_connected_no_internet_0_bar:after {\n  content: '\\e5cb';\n}\n\n.md-signal_cellular_connected_no_internet_0_bar:before {\n  content: '\\e5cc';\n}\n\n.md-signal_cellular_connected_no_internet_1_bar:after {\n  content: '\\e5cd';\n}\n\n.md-signal_cellular_connected_no_internet_1_bar:before {\n  content: '\\e5ce';\n}\n\n.md-signal_cellular_connected_no_internet_2_bar:after {\n  content: '\\e5cf';\n}\n\n.md-signal_cellular_connected_no_internet_2_bar:before {\n  content: '\\e5d0';\n}\n\n.md-signal_cellular_connected_no_internet_3_bar:after {\n  content: '\\e5d1';\n}\n\n.md-signal_cellular_connected_no_internet_3_bar:before {\n  content: '\\e5d2';\n}\n\n.md-signal_cellular_connected_no_internet_4_bar:after {\n  content: '\\e5d3';\n}\n\n.md-signal_cellular_no_sim:after {\n  content: '\\e5d4';\n}\n\n.md-signal_cellular_null:after {\n  content: '\\e5d6';\n}\n\n.md-signal_cellular_off:after {\n  content: '\\e5d7';\n}\n\n.md-signal_wifi_0_bar:after {\n  content: '\\e5d8';\n}\n\n.md-signal_wifi_0_bar:before {\n  content: '\\e5d9';\n}\n\n.md-signal_wifi_1_bar:after {\n  content: '\\e5da';\n}\n\n.md-signal_wifi_1_bar:before {\n  content: '\\e5db';\n}\n\n.md-signal_wifi_1_bar_lock:after {\n  content: '\\e5dc';\n}\n\n.md-signal_wifi_1_bar_lock:before {\n  content: '\\e5dd';\n}\n\n.md-signal_wifi_2_bar:after {\n  content: '\\e5de';\n}\n\n.md-signal_wifi_2_bar:before {\n  content: '\\e5df';\n}\n\n.md-signal_wifi_2_bar_lock:after {\n  content: '\\e5e0';\n}\n\n.md-signal_wifi_2_bar_lock:before {\n  content: '\\e5e1';\n}\n\n.md-signal_wifi_3_bar:after {\n  content: '\\e5e2';\n}\n\n.md-signal_wifi_3_bar:before {\n  content: '\\e5e3';\n}\n\n.md-signal_wifi_3_bar_lock:after {\n  content: '\\e5e4';\n}\n\n.md-signal_wifi_3_bar_lock:before {\n  content: '\\e5e5';\n}\n\n.md-signal_wifi_4_bar:after {\n  content: '\\e5e6';\n}\n\n.md-signal_wifi_4_bar_lock:after {\n  content: '\\e5e7';\n}\n\n.md-signal_wifi_off:after {\n  content: '\\e5e8';\n}\n\n.md-sim_card:after {\n  content: '\\e5e9';\n}\n\n.md-sim_card_alert:after {\n  content: '\\e5eb';\n}\n\n.md-single_bed:after {\n  content: '\\e5ed';\n}\n\n.md-skip_next:after {\n  content: '\\e5ef';\n}\n\n.md-skip_previous:after {\n  content: '\\e5f1';\n}\n\n.md-slideshow:after {\n  content: '\\e5f3';\n}\n\n.md-slow_motion_video:after {\n  content: '\\e5f5';\n}\n\n.md-smartphone:after {\n  content: '\\e5f6';\n}\n\n.md-smoke_free:after {\n  content: '\\e5f8';\n}\n\n.md-smoking_rooms:after {\n  content: '\\e5f9';\n}\n\n.md-sms:after {\n  content: '\\e5fb';\n}\n\n.md-sms_failed:after {\n  content: '\\e5fd';\n}\n\n.md-snooze:after {\n  content: '\\e5ff';\n}\n\n.md-sort:after {\n  content: '\\e600';\n}\n\n.md-sort_by_alpha:after {\n  content: '\\e601';\n}\n\n.md-spa:after {\n  content: '\\e602';\n}\n\n.md-space_bar:after {\n  content: '\\e604';\n}\n\n.md-speaker:after {\n  content: '\\e605';\n}\n\n.md-speaker_group:after {\n  content: '\\e607';\n}\n\n.md-speaker_notes:after {\n  content: '\\e609';\n}\n\n.md-speaker_notes_off:after {\n  content: '\\e60b';\n}\n\n.md-speaker_phone:after {\n  content: '\\e60d';\n}\n\n.md-speed:after {\n  content: '\\e60f';\n}\n\n.md-spellcheck:after {\n  content: '\\e610';\n}\n\n.md-sports:after {\n  content: '\\e611';\n}\n\n.md-sports_baseball:after {\n  content: '\\e612';\n}\n\n.md-sports_basketball:after {\n  content: '\\e614';\n}\n\n.md-sports_cricket:after {\n  content: '\\e616';\n}\n\n.md-sports_esports:after {\n  content: '\\e618';\n}\n\n.md-sports_football:after {\n  content: '\\e61a';\n}\n\n.md-sports_golf:after {\n  content: '\\e61c';\n}\n\n.md-sports_handball:after {\n  content: '\\e61e';\n}\n\n.md-sports_hockey:after {\n  content: '\\e61f';\n}\n\n.md-sports_kabaddi:after {\n  content: '\\e620';\n}\n\n.md-sports_mma:after {\n  content: '\\e621';\n}\n\n.md-sports_motorsports:after {\n  content: '\\e623';\n}\n\n.md-sports_rugby:after {\n  content: '\\e625';\n}\n\n.md-sports_soccer:after {\n  content: '\\e627';\n}\n\n.md-sports_tennis:after {\n  content: '\\e629';\n}\n\n.md-sports_volleyball:after {\n  content: '\\e62a';\n}\n\n.md-square_foot:after {\n  content: '\\e62c';\n}\n\n.md-star:after {\n  content: '\\e62e';\n}\n\n.md-star_border:after {\n  content: '\\e630';\n}\n\n.md-star_half:after {\n  content: '\\e631';\n}\n\n.md-star_rate:after {\n  content: '\\e632';\n}\n\n.md-stars:after {\n  content: '\\e633';\n}\n\n.md-stay_current_landscape:after {\n  content: '\\e635';\n}\n\n.md-stay_current_portrait:after {\n  content: '\\e637';\n}\n\n.md-stay_primary_landscape:after {\n  content: '\\e639';\n}\n\n.md-stay_primary_portrait:after {\n  content: '\\e63b';\n}\n\n.md-stop:after {\n  content: '\\e63d';\n}\n\n.md-stop_circle:after {\n  content: '\\e63f';\n}\n\n.md-stop_screen_share:after {\n  content: '\\e641';\n}\n\n.md-storage:after {\n  content: '\\e643';\n}\n\n.md-store:after {\n  content: '\\e644';\n}\n\n.md-store_mall_directory:after {\n  content: '\\e646';\n}\n\n.md-storefront:after {\n  content: '\\e648';\n}\n\n.md-straighten:after {\n  content: '\\e64a';\n}\n\n.md-streetview:after {\n  content: '\\e64c';\n}\n\n.md-strikethrough_s:after {\n  content: '\\e64d';\n}\n\n.md-style:after {\n  content: '\\e64e';\n}\n\n.md-subdirectory_arrow_left:after {\n  content: '\\e650';\n}\n\n.md-subdirectory_arrow_right:after {\n  content: '\\e651';\n}\n\n.md-subject:after {\n  content: '\\e652';\n}\n\n.md-subscriptions:after {\n  content: '\\e653';\n}\n\n.md-subtitles:after {\n  content: '\\e655';\n}\n\n.md-subway:after {\n  content: '\\e657';\n}\n\n.md-supervised_user_circle:after {\n  content: '\\e659';\n}\n\n.md-supervisor_account:after {\n  content: '\\e65b';\n}\n\n.md-surround_sound:after {\n  content: '\\e65d';\n}\n\n.md-swap_calls:after {\n  content: '\\e65f';\n}\n\n.md-swap_horiz:after {\n  content: '\\e660';\n}\n\n.md-swap_horizontal_circle:after {\n  content: '\\e661';\n}\n\n.md-swap_vert:after {\n  content: '\\e663';\n}\n\n.md-swap_vertical_circle:after {\n  content: '\\e664';\n}\n\n.md-switch_camera:after {\n  content: '\\e666';\n}\n\n.md-switch_video:after {\n  content: '\\e668';\n}\n\n.md-sync:after {\n  content: '\\e66a';\n}\n\n.md-sync_alt:after {\n  content: '\\e66b';\n}\n\n.md-sync_disabled:after {\n  content: '\\e66c';\n}\n\n.md-sync_problem:after {\n  content: '\\e66d';\n}\n\n.md-system_update:after {\n  content: '\\e66e';\n}\n\n.md-system_update_alt:after {\n  content: '\\e670';\n}\n\n.md-tab:after {\n  content: '\\e671';\n}\n\n.md-tab_unselected:after {\n  content: '\\e672';\n}\n\n.md-table_chart:after {\n  content: '\\e673';\n}\n\n.md-tablet:after {\n  content: '\\e675';\n}\n\n.md-tablet_android:after {\n  content: '\\e677';\n}\n\n.md-tablet_mac:after {\n  content: '\\e679';\n}\n\n.md-tag_faces:after {\n  content: '\\e67b';\n}\n\n.md-tap_and_play:after {\n  content: '\\e67d';\n}\n\n.md-terrain:after {\n  content: '\\e67e';\n}\n\n.md-text_fields:after {\n  content: '\\e680';\n}\n\n.md-text_format:after {\n  content: '\\e681';\n}\n\n.md-text_rotate_up:after {\n  content: '\\e682';\n}\n\n.md-text_rotate_vertical:after {\n  content: '\\e683';\n}\n\n.md-text_rotation_angledown:after {\n  content: '\\e684';\n}\n\n.md-text_rotation_angleup:after {\n  content: '\\e685';\n}\n\n.md-text_rotation_down:after {\n  content: '\\e686';\n}\n\n.md-text_rotation_none:after {\n  content: '\\e687';\n}\n\n.md-textsms:after {\n  content: '\\e688';\n}\n\n.md-texture:after {\n  content: '\\e68a';\n}\n\n.md-theaters:after {\n  content: '\\e68b';\n}\n\n.md-thumb_down:after {\n  content: '\\e68d';\n}\n\n.md-thumb_down_alt:after {\n  content: '\\e68f';\n}\n\n.md-thumb_up:after {\n  content: '\\e691';\n}\n\n.md-thumb_up_alt:after {\n  content: '\\e693';\n}\n\n.md-thumbs_up_down:after {\n  content: '\\e695';\n}\n\n.md-time_to_leave:after {\n  content: '\\e697';\n}\n\n.md-timelapse:after {\n  content: '\\e699';\n}\n\n.md-timeline:after {\n  content: '\\e69b';\n}\n\n.md-timer:after {\n  content: '\\e69c';\n}\n\n.md-timer_10:after {\n  content: '\\e69e';\n}\n\n.md-timer_3:after {\n  content: '\\e69f';\n}\n\n.md-timer_off:after {\n  content: '\\e6a0';\n}\n\n.md-title:after {\n  content: '\\e6a2';\n}\n\n.md-toc:after {\n  content: '\\e6a3';\n}\n\n.md-today:after {\n  content: '\\e6a4';\n}\n\n.md-toggle_off:after {\n  content: '\\e6a6';\n}\n\n.md-toggle_on:after {\n  content: '\\e6a8';\n}\n\n.md-toll:after {\n  content: '\\e6aa';\n}\n\n.md-tonality:after {\n  content: '\\e6ac';\n}\n\n.md-touch_app:after {\n  content: '\\e6ae';\n}\n\n.md-toys:after {\n  content: '\\e6b0';\n}\n\n.md-track_changes:after {\n  content: '\\e6b2';\n}\n\n.md-traffic:after {\n  content: '\\e6b3';\n}\n\n.md-train:after {\n  content: '\\e6b5';\n}\n\n.md-tram:after {\n  content: '\\e6b7';\n}\n\n.md-transfer_within_a_station:after {\n  content: '\\e6b9';\n}\n\n.md-transform:after {\n  content: '\\e6ba';\n}\n\n.md-transit_enterexit:after {\n  content: '\\e6bb';\n}\n\n.md-translate:after {\n  content: '\\e6bc';\n}\n\n.md-trending_down:after {\n  content: '\\e6bd';\n}\n\n.md-trending_flat:after {\n  content: '\\e6be';\n}\n\n.md-trending_up:after {\n  content: '\\e6bf';\n}\n\n.md-trip_origin:after {\n  content: '\\e6c0';\n}\n\n.md-tune:after {\n  content: '\\e6c1';\n}\n\n.md-turned_in:after {\n  content: '\\e6c2';\n}\n\n.md-turned_in_not:after {\n  content: '\\e6c4';\n}\n\n.md-tv:after {\n  content: '\\e6c5';\n}\n\n.md-tv_off:after {\n  content: '\\e6c7';\n}\n\n.md-unarchive:after {\n  content: '\\e6c9';\n}\n\n.md-undo:after {\n  content: '\\e6cb';\n}\n\n.md-unfold_less:after {\n  content: '\\e6cc';\n}\n\n.md-unfold_more:after {\n  content: '\\e6cd';\n}\n\n.md-unsubscribe:after {\n  content: '\\e6ce';\n}\n\n.md-update:after {\n  content: '\\e6d0';\n}\n\n.md-usb:after {\n  content: '\\e6d1';\n}\n\n.md-verified_user:after {\n  content: '\\e6d2';\n}\n\n.md-vertical_align_bottom:after {\n  content: '\\e6d4';\n}\n\n.md-vertical_align_center:after {\n  content: '\\e6d5';\n}\n\n.md-vertical_align_top:after {\n  content: '\\e6d6';\n}\n\n.md-vertical_split:after {\n  content: '\\e6d7';\n}\n\n.md-vibration:after {\n  content: '\\e6d9';\n}\n\n.md-video_call:after {\n  content: '\\e6db';\n}\n\n.md-video_label:after {\n  content: '\\e6dd';\n}\n\n.md-video_library:after {\n  content: '\\e6df';\n}\n\n.md-videocam:after {\n  content: '\\e6e1';\n}\n\n.md-videocam_off:after {\n  content: '\\e6e3';\n}\n\n.md-videogame_asset:after {\n  content: '\\e6e5';\n}\n\n.md-view_agenda:after {\n  content: '\\e6e7';\n}\n\n.md-view_array:after {\n  content: '\\e6e9';\n}\n\n.md-view_carousel:after {\n  content: '\\e6eb';\n}\n\n.md-view_column:after {\n  content: '\\e6ed';\n}\n\n.md-view_comfy:after {\n  content: '\\e6ef';\n}\n\n.md-view_compact:after {\n  content: '\\e6f1';\n}\n\n.md-view_day:after {\n  content: '\\e6f3';\n}\n\n.md-view_headline:after {\n  content: '\\e6f5';\n}\n\n.md-view_list:after {\n  content: '\\e6f6';\n}\n\n.md-view_module:after {\n  content: '\\e6f8';\n}\n\n.md-view_quilt:after {\n  content: '\\e6fa';\n}\n\n.md-view_stream:after {\n  content: '\\e6fc';\n}\n\n.md-view_week:after {\n  content: '\\e6fe';\n}\n\n.md-vignette:after {\n  content: '\\e700';\n}\n\n.md-visibility:after {\n  content: '\\e702';\n}\n\n.md-visibility_off:after {\n  content: '\\e704';\n}\n\n.md-voice_chat:after {\n  content: '\\e706';\n}\n\n.md-voice_over_off:after {\n  content: '\\e708';\n}\n\n.md-voicemail:after {\n  content: '\\e70a';\n}\n\n.md-volume_down:after {\n  content: '\\e70b';\n}\n\n.md-volume_mute:after {\n  content: '\\e70d';\n}\n\n.md-volume_off:after {\n  content: '\\e70f';\n}\n\n.md-volume_up:after {\n  content: '\\e711';\n}\n\n.md-vpn_key:after {\n  content: '\\e713';\n}\n\n.md-vpn_lock:after {\n  content: '\\e715';\n}\n\n.md-wallpaper:after {\n  content: '\\e717';\n}\n\n.md-warning:after {\n  content: '\\e718';\n}\n\n.md-watch:after {\n  content: '\\e71a';\n}\n\n.md-watch_later:after {\n  content: '\\e71c';\n}\n\n.md-waves:after {\n  content: '\\e71e';\n}\n\n.md-wb_auto:after {\n  content: '\\e71f';\n}\n\n.md-wb_cloudy:after {\n  content: '\\e721';\n}\n\n.md-wb_incandescent:after {\n  content: '\\e723';\n}\n\n.md-wb_iridescent:after {\n  content: '\\e725';\n}\n\n.md-wb_sunny:after {\n  content: '\\e727';\n}\n\n.md-wc:after {\n  content: '\\e729';\n}\n\n.md-web:after {\n  content: '\\e72a';\n}\n\n.md-web_asset:after {\n  content: '\\e72c';\n}\n\n.md-weekend:after {\n  content: '\\e72e';\n}\n\n.md-whatshot:after {\n  content: '\\e730';\n}\n\n.md-where_to_vote:after {\n  content: '\\e732';\n}\n\n.md-widgets:after {\n  content: '\\e734';\n}\n\n.md-wifi:after {\n  content: '\\e736';\n}\n\n.md-wifi_lock:after {\n  content: '\\e737';\n}\n\n.md-wifi_off:after {\n  content: '\\e738';\n}\n\n.md-wifi_tethering:after {\n  content: '\\e739';\n}\n\n.md-work:after {\n  content: '\\e73a';\n}\n\n.md-work_off:after {\n  content: '\\e73c';\n}\n\n.md-work_outline:after {\n  content: '\\e73e';\n}\n\n.md-wrap_text:after {\n  content: '\\e73f';\n}\n\n.md-youtube_searched_for:after {\n  content: '\\e740';\n}\n\n.md-zoom_in:after {\n  content: '\\e741';\n}\n\n.md-zoom_out:after {\n  content: '\\e742';\n}\n\n.md-zoom_out_map:after {\n  content: '\\e743';\n}\n\n.md-add_ic_call:after {\n  content: '\\e744';\n}\n\n.md-library_add_check:after {\n  content: '\\e746';\n}\n\n.md-star_outline:after {\n  content: '\\e748';\n}\n\n.md-two_wheeler:after {\n  content: '\\e749';\n}\n\n.md-5g:after {\n  content: '\\e74a';\n}\n\n.md-ad_units:after {\n  content: '\\e74b';\n}\n\n.md-add_business:after {\n  content: '\\e74d';\n}\n\n.md-add_location_alt:after {\n  content: '\\e74f';\n}\n\n.md-add_road:after {\n  content: '\\e751';\n}\n\n.md-addchart:after {\n  content: '\\e752';\n}\n\n.md-admin_panel_settings:after {\n  content: '\\e753';\n}\n\n.md-agriculture:after {\n  content: '\\e755';\n}\n\n.md-alt_route:after {\n  content: '\\e757';\n}\n\n.md-analytics:after {\n  content: '\\e758';\n}\n\n.md-anchor:after {\n  content: '\\e75a';\n}\n\n.md-api:after {\n  content: '\\e75b';\n}\n\n.md-app_blocking:after {\n  content: '\\e75c';\n}\n\n.md-app_settings_alt:after {\n  content: '\\e75e';\n}\n\n.md-architecture:after {\n  content: '\\e760';\n}\n\n.md-arrow_circle_down:after {\n  content: '\\e761';\n}\n\n.md-arrow_circle_up:after {\n  content: '\\e763';\n}\n\n.md-article:after {\n  content: '\\e765';\n}\n\n.md-attach_email:after {\n  content: '\\e767';\n}\n\n.md-auto_delete:after {\n  content: '\\e768';\n}\n\n.md-baby_changing_station:after {\n  content: '\\e76a';\n}\n\n.md-backpack:after {\n  content: '\\e76b';\n}\n\n.md-backup_table:after {\n  content: '\\e76d';\n}\n\n.md-batch_prediction:after {\n  content: '\\e76f';\n}\n\n.md-bedtime:after {\n  content: '\\e771';\n}\n\n.md-bike_scooter:after {\n  content: '\\e773';\n}\n\n.md-biotech:after {\n  content: '\\e774';\n}\n\n.md-browser_not_supported:after {\n  content: '\\e776';\n}\n\n.md-build_circle:after {\n  content: '\\e777';\n}\n\n.md-calculate:after {\n  content: '\\e779';\n}\n\n.md-campaign:after {\n  content: '\\e77b';\n}\n\n.md-charging_station:after {\n  content: '\\e77d';\n}\n\n.md-checkroom:after {\n  content: '\\e77f';\n}\n\n.md-cleaning_services:after {\n  content: '\\e780';\n}\n\n.md-close_fullscreen:after {\n  content: '\\e782';\n}\n\n.md-comment_bank:after {\n  content: '\\e783';\n}\n\n.md-construction:after {\n  content: '\\e785';\n}\n\n.md-corporate_fare:after {\n  content: '\\e786';\n}\n\n.md-design_services:after {\n  content: '\\e788';\n}\n\n.md-directions_off:after {\n  content: '\\e78a';\n}\n\n.md-do_not_step:after {\n  content: '\\e78b';\n}\n\n.md-do_not_touch:after {\n  content: '\\e78d';\n}\n\n.md-domain_verification:after {\n  content: '\\e78f';\n}\n\n.md-dry:after {\n  content: '\\e791';\n}\n\n.md-dynamic_form:after {\n  content: '\\e793';\n}\n\n.md-edit_road:after {\n  content: '\\e795';\n}\n\n.md-electric_bike:after {\n  content: '\\e797';\n}\n\n.md-electric_car:after {\n  content: '\\e798';\n}\n\n.md-electric_moped:after {\n  content: '\\e79a';\n}\n\n.md-electric_scooter:after {\n  content: '\\e79c';\n}\n\n.md-electrical_services:after {\n  content: '\\e79d';\n}\n\n.md-elevator:after {\n  content: '\\e79e';\n}\n\n.md-engineering:after {\n  content: '\\e7a0';\n}\n\n.md-escalator:after {\n  content: '\\e7a2';\n}\n\n.md-escalator_warning:after {\n  content: '\\e7a4';\n}\n\n.md-fact_check:after {\n  content: '\\e7a5';\n}\n\n.md-family_restroom:after {\n  content: '\\e7a7';\n}\n\n.md-filter_alt:after {\n  content: '\\e7a8';\n}\n\n.md-flaky:after {\n  content: '\\e7aa';\n}\n\n.md-forward_to_inbox:after {\n  content: '\\e7ab';\n}\n\n.md-grading:after {\n  content: '\\e7ad';\n}\n\n.md-handyman:after {\n  content: '\\e7ae';\n}\n\n.md-hearing_disabled:after {\n  content: '\\e7b0';\n}\n\n.md-help_center:after {\n  content: '\\e7b1';\n}\n\n.md-highlight_alt:after {\n  content: '\\e7b3';\n}\n\n.md-history_edu:after {\n  content: '\\e7b4';\n}\n\n.md-history_toggle_off:after {\n  content: '\\e7b6';\n}\n\n.md-home_repair_service:after {\n  content: '\\e7b7';\n}\n\n.md-horizontal_rule:after {\n  content: '\\e7b9';\n}\n\n.md-hourglass_bottom:after {\n  content: '\\e7ba';\n}\n\n.md-hourglass_disabled:after {\n  content: '\\e7bc';\n}\n\n.md-hourglass_top:after {\n  content: '\\e7bd';\n}\n\n.md-hvac:after {\n  content: '\\e7bf';\n}\n\n.md-image_not_supported:after {\n  content: '\\e7c1';\n}\n\n.md-insights:after {\n  content: '\\e7c3';\n}\n\n.md-integration_instructions:after {\n  content: '\\e7c4';\n}\n\n.md-legend_toggle:after {\n  content: '\\e7c6';\n}\n\n.md-login:after {\n  content: '\\e7c7';\n}\n\n.md-maps_ugc:after {\n  content: '\\e7c8';\n}\n\n.md-mark_chat_read:after {\n  content: '\\e7ca';\n}\n\n.md-mark_chat_unread:after {\n  content: '\\e7cc';\n}\n\n.md-mark_email_read:after {\n  content: '\\e7ce';\n}\n\n.md-mark_email_unread:after {\n  content: '\\e7d0';\n}\n\n.md-mediation:after {\n  content: '\\e7d2';\n}\n\n.md-medical_services:after {\n  content: '\\e7d3';\n}\n\n.md-military_tech:after {\n  content: '\\e7d5';\n}\n\n.md-miscellaneous_services:after {\n  content: '\\e7d7';\n}\n\n.md-model_training:after {\n  content: '\\e7d8';\n}\n\n.md-moped:after {\n  content: '\\e7d9';\n}\n\n.md-more_time:after {\n  content: '\\e7db';\n}\n\n.md-multiple_stop:after {\n  content: '\\e7dc';\n}\n\n.md-nat:after {\n  content: '\\e7dd';\n}\n\n.md-next_plan:after {\n  content: '\\e7df';\n}\n\n.md-no_cell:after {\n  content: '\\e7e1';\n}\n\n.md-no_drinks:after {\n  content: '\\e7e3';\n}\n\n.md-no_flash:after {\n  content: '\\e7e5';\n}\n\n.md-no_food:after {\n  content: '\\e7e7';\n}\n\n.md-no_photography:after {\n  content: '\\e7e9';\n}\n\n.md-no_stroller:after {\n  content: '\\e7eb';\n}\n\n.md-not_accessible:after {\n  content: '\\e7ed';\n}\n\n.md-not_started:after {\n  content: '\\e7ee';\n}\n\n.md-online_prediction:after {\n  content: '\\e7f0';\n}\n\n.md-open_in_full:after {\n  content: '\\e7f1';\n}\n\n.md-outlet:after {\n  content: '\\e7f2';\n}\n\n.md-payments:after {\n  content: '\\e7f4';\n}\n\n.md-pedal_bike:after {\n  content: '\\e7f6';\n}\n\n.md-pending:after {\n  content: '\\e7f7';\n}\n\n.md-pending_actions:after {\n  content: '\\e7f9';\n}\n\n.md-person_add_alt_1:after {\n  content: '\\e7fb';\n}\n\n.md-person_remove:after {\n  content: '\\e7fd';\n}\n\n.md-person_remove_alt_1:after {\n  content: '\\e7ff';\n}\n\n.md-person_search:after {\n  content: '\\e801';\n}\n\n.md-pest_control:after {\n  content: '\\e803';\n}\n\n.md-pest_control_rodent:after {\n  content: '\\e805';\n}\n\n.md-plagiarism:after {\n  content: '\\e807';\n}\n\n.md-plumbing:after {\n  content: '\\e809';\n}\n\n.md-point_of_sale:after {\n  content: '\\e80a';\n}\n\n.md-preview:after {\n  content: '\\e80c';\n}\n\n.md-privacy_tip:after {\n  content: '\\e80e';\n}\n\n.md-psychology:after {\n  content: '\\e810';\n}\n\n.md-public_off:after {\n  content: '\\e812';\n}\n\n.md-push_pin:after {\n  content: '\\e814';\n}\n\n.md-qr_code:after {\n  content: '\\e816';\n}\n\n.md-quickreply:after {\n  content: '\\e818';\n}\n\n.md-read_more:after {\n  content: '\\e81a';\n}\n\n.md-receipt_long:after {\n  content: '\\e81b';\n}\n\n.md-request_quote:after {\n  content: '\\e81d';\n}\n\n.md-room_preferences:after {\n  content: '\\e81f';\n}\n\n.md-rule:after {\n  content: '\\e821';\n}\n\n.md-rule_folder:after {\n  content: '\\e822';\n}\n\n.md-run_circle:after {\n  content: '\\e824';\n}\n\n.md-science:after {\n  content: '\\e826';\n}\n\n.md-search_off:after {\n  content: '\\e828';\n}\n\n.md-self_improvement:after {\n  content: '\\e829';\n}\n\n.md-sensor_door:after {\n  content: '\\e82a';\n}\n\n.md-sensor_window:after {\n  content: '\\e82c';\n}\n\n.md-shopping_bag:after {\n  content: '\\e82e';\n}\n\n.md-smart_button:after {\n  content: '\\e830';\n}\n\n.md-snippet_folder:after {\n  content: '\\e831';\n}\n\n.md-soap:after {\n  content: '\\e833';\n}\n\n.md-source:after {\n  content: '\\e835';\n}\n\n.md-stairs:after {\n  content: '\\e837';\n}\n\n.md-stroller:after {\n  content: '\\e839';\n}\n\n.md-subscript:after {\n  content: '\\e83b';\n}\n\n.md-subtitles_off:after {\n  content: '\\e83c';\n}\n\n.md-superscript:after {\n  content: '\\e83e';\n}\n\n.md-support:after {\n  content: '\\e83f';\n}\n\n.md-support_agent:after {\n  content: '\\e841';\n}\n\n.md-switch_left:after {\n  content: '\\e842';\n}\n\n.md-switch_right:after {\n  content: '\\e844';\n}\n\n.md-table_rows:after {\n  content: '\\e846';\n}\n\n.md-table_view:after {\n  content: '\\e848';\n}\n\n.md-text_snippet:after {\n  content: '\\e84a';\n}\n\n.md-topic:after {\n  content: '\\e84c';\n}\n\n.md-tour:after {\n  content: '\\e84e';\n}\n\n.md-tty:after {\n  content: '\\e850';\n}\n\n.md-umbrella:after {\n  content: '\\e852';\n}\n\n.md-upgrade:after {\n  content: '\\e854';\n}\n\n.md-verified:after {\n  content: '\\e855';\n}\n\n.md-video_settings:after {\n  content: '\\e857';\n}\n\n.md-view_sidebar:after {\n  content: '\\e858';\n}\n\n.md-wash:after {\n  content: '\\e85a';\n}\n\n.md-wheelchair_pickup:after {\n  content: '\\e85c';\n}\n\n.md-wifi_calling:after {\n  content: '\\e85d';\n}\n\n.md-wifi_protected_setup:after {\n  content: '\\e85f';\n}\n\n.md-wrong_location:after {\n  content: '\\e860';\n}\n\n.md-wysiwyg:after {\n  content: '\\e861';\n}\n\n.md-bento:after {\n  content: '\\e864';\n}\n\n.md-carpenter:after {\n  content: '\\e866';\n}\n\n.md-closed_caption_disabled:after {\n  content: '\\e868';\n}\n\n.md-countertops:after {\n  content: '\\e86a';\n}\n\n.md-east:after {\n  content: '\\e86c';\n}\n\n.md-fence:after {\n  content: '\\e86d';\n}\n\n.md-fire_extinguisher:after {\n  content: '\\e86f';\n}\n\n.md-food_bank:after {\n  content: '\\e870';\n}\n\n.md-foundation:after {\n  content: '\\e872';\n}\n\n.md-grass:after {\n  content: '\\e874';\n}\n\n.md-house_siding:after {\n  content: '\\e875';\n}\n\n.md-leaderboard:after {\n  content: '\\e877';\n}\n\n.md-microwave:after {\n  content: '\\e879';\n}\n\n.md-near_me_disabled:after {\n  content: '\\e87b';\n}\n\n.md-night_shelter:after {\n  content: '\\e87d';\n}\n\n.md-no_meals:after {\n  content: '\\e87f';\n}\n\n.md-no_transfer:after {\n  content: '\\e880';\n}\n\n.md-north:after {\n  content: '\\e882';\n}\n\n.md-north_east:after {\n  content: '\\e883';\n}\n\n.md-north_west:after {\n  content: '\\e884';\n}\n\n.md-qr_code_scanner:after {\n  content: '\\e885';\n}\n\n.md-rice_bowl:after {\n  content: '\\e886';\n}\n\n.md-roofing:after {\n  content: '\\e888';\n}\n\n.md-set_meal:after {\n  content: '\\e88a';\n}\n\n.md-south:after {\n  content: '\\e88c';\n}\n\n.md-south_east:after {\n  content: '\\e88d';\n}\n\n.md-south_west:after {\n  content: '\\e88e';\n}\n\n.md-sports_bar:after {\n  content: '\\e88f';\n}\n\n.md-sticky_note_2:after {\n  content: '\\e891';\n}\n\n.md-tapas:after {\n  content: '\\e893';\n}\n\n.md-water_damage:after {\n  content: '\\e895';\n}\n\n.md-west:after {\n  content: '\\e897';\n}\n\n.md-wine_bar:after {\n  content: '\\e898';\n}\n\n.md-6_ft_apart:after {\n  content: '\\e89a';\n}\n\n.md-book_online:after {\n  content: '\\e89b';\n}\n\n.md-clean_hands:after {\n  content: '\\e89d';\n}\n\n.md-connect_without_contact:after {\n  content: '\\e89f';\n}\n\n.md-coronavirus:after {\n  content: '\\e8a0';\n}\n\n.md-elderly:after {\n  content: '\\e8a2';\n}\n\n.md-follow_the_signs:after {\n  content: '\\e8a3';\n}\n\n.md-leave_bags_at_home:after {\n  content: '\\e8a5';\n}\n\n.md-local_fire_department:after {\n  content: '\\e8a7';\n}\n\n.md-local_police:after {\n  content: '\\e8a9';\n}\n\n.md-masks:after {\n  content: '\\e8ab';\n}\n\n.md-motion_photos_on:after {\n  content: '\\e8ad';\n}\n\n.md-motion_photos_paused:after {\n  content: '\\e8ae';\n}\n\n.md-reduce_capacity:after {\n  content: '\\e8af';\n}\n\n.md-sanitizer:after {\n  content: '\\e8b0';\n}\n\n.md-sick:after {\n  content: '\\e8b2';\n}\n\n.md-add_task:after {\n  content: '\\e8b3';\n}\n\n.md-contact_page:after {\n  content: '\\e8b4';\n}\n\n.md-disabled_by_default:after {\n  content: '\\e8b6';\n}\n\n.md-facebook:after {\n  content: '\\e8b8';\n}\n\n.md-groups:after {\n  content: '\\e8b9';\n}\n\n.md-luggage:after {\n  content: '\\e8bb';\n}\n\n.md-motion_photos_pause:after {\n  content: '\\e8bd';\n}\n\n.md-no_backpack:after {\n  content: '\\e8be';\n}\n\n.md-no_luggage:after {\n  content: '\\e8c0';\n}\n\n.md-outbond:after {\n  content: '\\e8c2';\n}\n\n.md-published_with_changes:after {\n  content: '\\e8c4';\n}\n\n.md-request_page:after {\n  content: '\\e8c5';\n}\n\n.md-stacked_line_chart:after {\n  content: '\\e8c7';\n}\n\n.md-unpublished:after {\n  content: '\\e8c8';\n}\n\n.md-align_horizontal_center:after {\n  content: '\\e8ca';\n}\n\n.md-align_horizontal_left:after {\n  content: '\\e8cb';\n}\n\n.md-align_horizontal_right:after {\n  content: '\\e8cc';\n}\n\n.md-align_vertical_bottom:after {\n  content: '\\e8cd';\n}\n\n.md-align_vertical_center:after {\n  content: '\\e8ce';\n}\n\n.md-align_vertical_top:after {\n  content: '\\e8cf';\n}\n\n.md-horizontal_distribute:after {\n  content: '\\e8d0';\n}\n\n.md-qr_code_2:after {\n  content: '\\e8d1';\n}\n\n.md-update_disabled:after {\n  content: '\\e8d2';\n}\n\n.md-vertical_distribute:after {\n  content: '\\e8d3';\n}\n"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/resources/META-INF/resources/material2/20200820/css/md-outlined.css",
    "content": "@font-face {\n  font-family: \"Material Icons Outlined\";\n  font-style: normal;\n  font-weight: 400;\n  font-display: block;\n  src: url(\"../fonts/MaterialIcons-Outlined.ttf\");\n  /* For IE6-8 */\n  src: url(\"../fonts/MaterialIcons-Outlined.woff2\") format(\"woff2\"), url(\"../fonts/MaterialIcons-Outlined.woff\") format(\"woff\"), url(\"../fonts/MaterialIcons-Outlined.ttf\") format(\"truetype\");\n}\n\n.mdo {\n  font-family: \"Material Icons Outlined\";\n  font-weight: normal;\n  font-style: normal;\n  font-size: 24px;\n  display: inline-block;\n  line-height: 1;\n  text-transform: none;\n  letter-spacing: normal;\n  -ms-word-wrap: normal;\n  word-wrap: normal;\n  white-space: nowrap;\n  direction: ltr;\n  text-rendering: optimizeLegibility;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  position: relative;\n}\n\n.mdo:before {\n  position: absolute;\n  left: 0;\n  right: 0;\n  top: 0;\n  bottom: 0;\n  opacity: .3;\n}\n\n.mdo:after {\n  opacity: 1;\n}\n\n/* Rules for sizing the icon. */\n.mdo-18 {\n  font-size: 18px;\n}\n\n.mdo-24 {\n  font-size: 24px;\n}\n\n.mdo-36 {\n  font-size: 36px;\n}\n\n.mdo-48 {\n  font-size: 48px;\n}\n\n/* Rules for using icons as black on a light background. */\n.mdo-dark {\n  color: rgba(0, 0, 0, 0.54);\n}\n\n.mdo-dark.mdo-inactive {\n  color: rgba(0, 0, 0, 0.26);\n}\n\n/* Rules for using icons as white on a dark background. */\n.mdo-light {\n  color: white;\n}\n\n.mdo-light.mdo-inactive {\n  color: rgba(255, 255, 255, 0.3);\n}\n\n/* Icons. */\n.mdo-360:after {\n  content: '\\e000';\n}\n\n.mdo-3d_rotation:after {\n  content: '\\e001';\n}\n\n.mdo-4k:after {\n  content: '\\e002';\n}\n\n.mdo-ac_unit:after {\n  content: '\\e004';\n}\n\n.mdo-access_alarm:after {\n  content: '\\e005';\n}\n\n.mdo-access_alarms:after {\n  content: '\\e007';\n}\n\n.mdo-access_time:after {\n  content: '\\e009';\n}\n\n.mdo-accessibility:after {\n  content: '\\e00b';\n}\n\n.mdo-accessibility_new:after {\n  content: '\\e00c';\n}\n\n.mdo-accessible:after {\n  content: '\\e00d';\n}\n\n.mdo-accessible_forward:after {\n  content: '\\e00e';\n}\n\n.mdo-account_balance:after {\n  content: '\\e00f';\n}\n\n.mdo-account_balance_wallet:after {\n  content: '\\e011';\n}\n\n.mdo-account_box:after {\n  content: '\\e013';\n}\n\n.mdo-account_circle:after {\n  content: '\\e015';\n}\n\n.mdo-account_tree:after {\n  content: '\\e017';\n}\n\n.mdo-adb:after {\n  content: '\\e019';\n}\n\n.mdo-add:after {\n  content: '\\e01a';\n}\n\n.mdo-add_a_photo:after {\n  content: '\\e01b';\n}\n\n.mdo-add_alarm:after {\n  content: '\\e01d';\n}\n\n.mdo-add_alert:after {\n  content: '\\e01f';\n}\n\n.mdo-add_box:after {\n  content: '\\e021';\n}\n\n.mdo-add_circle:after {\n  content: '\\e023';\n}\n\n.mdo-add_circle_outline:after {\n  content: '\\e025';\n}\n\n.mdo-add_comment:after {\n  content: '\\e026';\n}\n\n.mdo-add_location:after {\n  content: '\\e028';\n}\n\n.mdo-add_photo_alternate:after {\n  content: '\\e02a';\n}\n\n.mdo-add_shopping_cart:after {\n  content: '\\e02c';\n}\n\n.mdo-add_to_home_screen:after {\n  content: '\\e02d';\n}\n\n.mdo-add_to_photos:after {\n  content: '\\e02e';\n}\n\n.mdo-add_to_queue:after {\n  content: '\\e030';\n}\n\n.mdo-adjust:after {\n  content: '\\e032';\n}\n\n.mdo-airline_seat_flat:after {\n  content: '\\e033';\n}\n\n.mdo-airline_seat_flat_angled:after {\n  content: '\\e035';\n}\n\n.mdo-airline_seat_individual_suite:after {\n  content: '\\e037';\n}\n\n.mdo-airline_seat_legroom_extra:after {\n  content: '\\e039';\n}\n\n.mdo-airline_seat_legroom_normal:after {\n  content: '\\e03a';\n}\n\n.mdo-airline_seat_legroom_reduced:after {\n  content: '\\e03b';\n}\n\n.mdo-airline_seat_recline_extra:after {\n  content: '\\e03c';\n}\n\n.mdo-airline_seat_recline_normal:after {\n  content: '\\e03d';\n}\n\n.mdo-airplanemode_active:after {\n  content: '\\e03e';\n}\n\n.mdo-airplanemode_inactive:after {\n  content: '\\e03f';\n}\n\n.mdo-airplay:after {\n  content: '\\e040';\n}\n\n.mdo-airport_shuttle:after {\n  content: '\\e041';\n}\n\n.mdo-alarm:after {\n  content: '\\e043';\n}\n\n.mdo-alarm_add:after {\n  content: '\\e045';\n}\n\n.mdo-alarm_off:after {\n  content: '\\e047';\n}\n\n.mdo-alarm_on:after {\n  content: '\\e048';\n}\n\n.mdo-album:after {\n  content: '\\e04a';\n}\n\n.mdo-all_inbox:after {\n  content: '\\e04c';\n}\n\n.mdo-all_inclusive:after {\n  content: '\\e04e';\n}\n\n.mdo-all_out:after {\n  content: '\\e04f';\n}\n\n.mdo-alternate_email:after {\n  content: '\\e051';\n}\n\n.mdo-amp_stories:after {\n  content: '\\e053';\n}\n\n.mdo-android:after {\n  content: '\\e055';\n}\n\n.mdo-announcement:after {\n  content: '\\e056';\n}\n\n.mdo-apartment:after {\n  content: '\\e058';\n}\n\n.mdo-apps:after {\n  content: '\\e059';\n}\n\n.mdo-archive:after {\n  content: '\\e05a';\n}\n\n.mdo-arrow_back:after {\n  content: '\\e05c';\n}\n\n.mdo-arrow_back_ios:after {\n  content: '\\e05d';\n}\n\n.mdo-arrow_downward:after {\n  content: '\\e05e';\n}\n\n.mdo-arrow_drop_down:after {\n  content: '\\e05f';\n}\n\n.mdo-arrow_drop_down_circle:after {\n  content: '\\e060';\n}\n\n.mdo-arrow_drop_up:after {\n  content: '\\e062';\n}\n\n.mdo-arrow_forward:after {\n  content: '\\e063';\n}\n\n.mdo-arrow_forward_ios:after {\n  content: '\\e064';\n}\n\n.mdo-arrow_left:after {\n  content: '\\e065';\n}\n\n.mdo-arrow_right:after {\n  content: '\\e066';\n}\n\n.mdo-arrow_right_alt:after {\n  content: '\\e067';\n}\n\n.mdo-arrow_upward:after {\n  content: '\\e068';\n}\n\n.mdo-art_track:after {\n  content: '\\e069';\n}\n\n.mdo-aspect_ratio:after {\n  content: '\\e06a';\n}\n\n.mdo-assessment:after {\n  content: '\\e06c';\n}\n\n.mdo-assignment:after {\n  content: '\\e06e';\n}\n\n.mdo-assignment_ind:after {\n  content: '\\e070';\n}\n\n.mdo-assignment_late:after {\n  content: '\\e072';\n}\n\n.mdo-assignment_return:after {\n  content: '\\e074';\n}\n\n.mdo-assignment_returned:after {\n  content: '\\e076';\n}\n\n.mdo-assignment_turned_in:after {\n  content: '\\e078';\n}\n\n.mdo-assistant:after {\n  content: '\\e07a';\n}\n\n.mdo-assistant_photo:after {\n  content: '\\e07c';\n}\n\n.mdo-atm:after {\n  content: '\\e07e';\n}\n\n.mdo-attach_file:after {\n  content: '\\e07f';\n}\n\n.mdo-attach_money:after {\n  content: '\\e080';\n}\n\n.mdo-attachment:after {\n  content: '\\e081';\n}\n\n.mdo-audiotrack:after {\n  content: '\\e082';\n}\n\n.mdo-autorenew:after {\n  content: '\\e084';\n}\n\n.mdo-av_timer:after {\n  content: '\\e085';\n}\n\n.mdo-backspace:after {\n  content: '\\e086';\n}\n\n.mdo-backup:after {\n  content: '\\e088';\n}\n\n.mdo-ballot:after {\n  content: '\\e08a';\n}\n\n.mdo-bar_chart:after {\n  content: '\\e08c';\n}\n\n.mdo-barcode:after {\n  content: '\\e08d';\n}\n\n.mdo-bathtub:after {\n  content: '\\e08e';\n}\n\n.mdo-battery_20:after {\n  content: '\\e090';\n}\n\n.mdo-battery_20:before {\n  content: '\\e091';\n}\n\n.mdo-battery_30:after {\n  content: '\\e092';\n}\n\n.mdo-battery_30:before {\n  content: '\\e093';\n}\n\n.mdo-battery_50:after {\n  content: '\\e094';\n}\n\n.mdo-battery_50:before {\n  content: '\\e095';\n}\n\n.mdo-battery_60:after {\n  content: '\\e096';\n}\n\n.mdo-battery_60:before {\n  content: '\\e097';\n}\n\n.mdo-battery_80:after {\n  content: '\\e098';\n}\n\n.mdo-battery_80:before {\n  content: '\\e099';\n}\n\n.mdo-battery_90:after {\n  content: '\\e09a';\n}\n\n.mdo-battery_90:before {\n  content: '\\e09b';\n}\n\n.mdo-battery_alert:after {\n  content: '\\e09c';\n}\n\n.mdo-battery_charging_20:after {\n  content: '\\e09d';\n}\n\n.mdo-battery_charging_20:before {\n  content: '\\e09e';\n}\n\n.mdo-battery_charging_30:after {\n  content: '\\e09f';\n}\n\n.mdo-battery_charging_30:before {\n  content: '\\e0a0';\n}\n\n.mdo-battery_charging_50:after {\n  content: '\\e0a1';\n}\n\n.mdo-battery_charging_50:before {\n  content: '\\e0a2';\n}\n\n.mdo-battery_charging_60:after {\n  content: '\\e0a3';\n}\n\n.mdo-battery_charging_60:before {\n  content: '\\e0a4';\n}\n\n.mdo-battery_charging_80:after {\n  content: '\\e0a5';\n}\n\n.mdo-battery_charging_80:before {\n  content: '\\e0a6';\n}\n\n.mdo-battery_charging_90:after {\n  content: '\\e0a7';\n}\n\n.mdo-battery_charging_90:before {\n  content: '\\e0a8';\n}\n\n.mdo-battery_charging_full:after {\n  content: '\\e0a9';\n}\n\n.mdo-battery_full:after {\n  content: '\\e0aa';\n}\n\n.mdo-battery_std:after {\n  content: '\\e0ab';\n}\n\n.mdo-battery_unknown:after {\n  content: '\\e0ac';\n}\n\n.mdo-beach_access:after {\n  content: '\\e0ad';\n}\n\n.mdo-beenhere:after {\n  content: '\\e0af';\n}\n\n.mdo-block:after {\n  content: '\\e0b1';\n}\n\n.mdo-bluetooth:after {\n  content: '\\e0b2';\n}\n\n.mdo-bluetooth_audio:after {\n  content: '\\e0b3';\n}\n\n.mdo-bluetooth_connected:after {\n  content: '\\e0b4';\n}\n\n.mdo-bluetooth_disabled:after {\n  content: '\\e0b5';\n}\n\n.mdo-bluetooth_searching:after {\n  content: '\\e0b6';\n}\n\n.mdo-blur_circular:after {\n  content: '\\e0b7';\n}\n\n.mdo-blur_linear:after {\n  content: '\\e0b8';\n}\n\n.mdo-blur_off:after {\n  content: '\\e0b9';\n}\n\n.mdo-blur_on:after {\n  content: '\\e0ba';\n}\n\n.mdo-book:after {\n  content: '\\e0bb';\n}\n\n.mdo-bookmark:after {\n  content: '\\e0bd';\n}\n\n.mdo-bookmark_border:after {\n  content: '\\e0bf';\n}\n\n.mdo-bookmarks:after {\n  content: '\\e0c0';\n}\n\n.mdo-border_all:after {\n  content: '\\e0c2';\n}\n\n.mdo-border_bottom:after {\n  content: '\\e0c3';\n}\n\n.mdo-border_clear:after {\n  content: '\\e0c4';\n}\n\n.mdo-border_color:after {\n  content: '\\e0c5';\n}\n\n.mdo-border_color:before {\n  content: '\\e0c6';\n}\n\n.mdo-border_horizontal:after {\n  content: '\\e0c7';\n}\n\n.mdo-border_inner:after {\n  content: '\\e0c8';\n}\n\n.mdo-border_left:after {\n  content: '\\e0c9';\n}\n\n.mdo-border_outer:after {\n  content: '\\e0ca';\n}\n\n.mdo-border_right:after {\n  content: '\\e0cb';\n}\n\n.mdo-border_style:after {\n  content: '\\e0cc';\n}\n\n.mdo-border_top:after {\n  content: '\\e0cd';\n}\n\n.mdo-border_vertical:after {\n  content: '\\e0ce';\n}\n\n.mdo-branding_watermark:after {\n  content: '\\e0cf';\n}\n\n.mdo-brightness_1:after {\n  content: '\\e0d1';\n}\n\n.mdo-brightness_2:after {\n  content: '\\e0d3';\n}\n\n.mdo-brightness_3:after {\n  content: '\\e0d5';\n}\n\n.mdo-brightness_4:after {\n  content: '\\e0d7';\n}\n\n.mdo-brightness_5:after {\n  content: '\\e0d9';\n}\n\n.mdo-brightness_6:after {\n  content: '\\e0db';\n}\n\n.mdo-brightness_7:after {\n  content: '\\e0dd';\n}\n\n.mdo-brightness_auto:after {\n  content: '\\e0df';\n}\n\n.mdo-brightness_high:after {\n  content: '\\e0e1';\n}\n\n.mdo-brightness_low:after {\n  content: '\\e0e3';\n}\n\n.mdo-brightness_medium:after {\n  content: '\\e0e5';\n}\n\n.mdo-broken_image:after {\n  content: '\\e0e7';\n}\n\n.mdo-brush:after {\n  content: '\\e0e9';\n}\n\n.mdo-bubble_chart:after {\n  content: '\\e0eb';\n}\n\n.mdo-bug_report:after {\n  content: '\\e0ed';\n}\n\n.mdo-build:after {\n  content: '\\e0ef';\n}\n\n.mdo-burst_mode:after {\n  content: '\\e0f1';\n}\n\n.mdo-business:after {\n  content: '\\e0f3';\n}\n\n.mdo-business_center:after {\n  content: '\\e0f5';\n}\n\n.mdo-cached:after {\n  content: '\\e0f7';\n}\n\n.mdo-cake:after {\n  content: '\\e0f8';\n}\n\n.mdo-calendar_today:after {\n  content: '\\e0fa';\n}\n\n.mdo-calendar_view_day:after {\n  content: '\\e0fc';\n}\n\n.mdo-call:after {\n  content: '\\e0fe';\n}\n\n.mdo-call_end:after {\n  content: '\\e100';\n}\n\n.mdo-call_made:after {\n  content: '\\e102';\n}\n\n.mdo-call_merge:after {\n  content: '\\e103';\n}\n\n.mdo-call_missed:after {\n  content: '\\e104';\n}\n\n.mdo-call_missed_outgoing:after {\n  content: '\\e105';\n}\n\n.mdo-call_received:after {\n  content: '\\e106';\n}\n\n.mdo-call_split:after {\n  content: '\\e107';\n}\n\n.mdo-call_to_action:after {\n  content: '\\e108';\n}\n\n.mdo-camera:after {\n  content: '\\e10a';\n}\n\n.mdo-camera_alt:after {\n  content: '\\e10c';\n}\n\n.mdo-camera_enhance:after {\n  content: '\\e10e';\n}\n\n.mdo-camera_front:after {\n  content: '\\e110';\n}\n\n.mdo-camera_rear:after {\n  content: '\\e112';\n}\n\n.mdo-camera_roll:after {\n  content: '\\e114';\n}\n\n.mdo-cancel:after {\n  content: '\\e116';\n}\n\n.mdo-cancel_presentation:after {\n  content: '\\e118';\n}\n\n.mdo-cancel_schedule_send:after {\n  content: '\\e11a';\n}\n\n.mdo-card_giftcard:after {\n  content: '\\e11c';\n}\n\n.mdo-card_membership:after {\n  content: '\\e11e';\n}\n\n.mdo-card_travel:after {\n  content: '\\e120';\n}\n\n.mdo-casino:after {\n  content: '\\e122';\n}\n\n.mdo-cast:after {\n  content: '\\e124';\n}\n\n.mdo-cast_connected:after {\n  content: '\\e125';\n}\n\n.mdo-cast_for_education:after {\n  content: '\\e127';\n}\n\n.mdo-category:after {\n  content: '\\e128';\n}\n\n.mdo-cell_wifi:after {\n  content: '\\e12a';\n}\n\n.mdo-cell_wifi:before {\n  content: '\\e12b';\n}\n\n.mdo-center_focus_strong:after {\n  content: '\\e12c';\n}\n\n.mdo-center_focus_weak:after {\n  content: '\\e12e';\n}\n\n.mdo-change_history:after {\n  content: '\\e130';\n}\n\n.mdo-chat:after {\n  content: '\\e132';\n}\n\n.mdo-chat_bubble:after {\n  content: '\\e134';\n}\n\n.mdo-chat_bubble_outline:after {\n  content: '\\e136';\n}\n\n.mdo-check:after {\n  content: '\\e137';\n}\n\n.mdo-check_box:after {\n  content: '\\e138';\n}\n\n.mdo-check_box_outline_blank:after {\n  content: '\\e13a';\n}\n\n.mdo-check_circle:after {\n  content: '\\e13b';\n}\n\n.mdo-check_circle_outline:after {\n  content: '\\e13d';\n}\n\n.mdo-chevron_left:after {\n  content: '\\e13e';\n}\n\n.mdo-chevron_right:after {\n  content: '\\e13f';\n}\n\n.mdo-child_care:after {\n  content: '\\e140';\n}\n\n.mdo-child_friendly:after {\n  content: '\\e142';\n}\n\n.mdo-chrome_reader_mode:after {\n  content: '\\e144';\n}\n\n.mdo-class:after {\n  content: '\\e146';\n}\n\n.mdo-clear:after {\n  content: '\\e148';\n}\n\n.mdo-clear_all:after {\n  content: '\\e149';\n}\n\n.mdo-close:after {\n  content: '\\e14a';\n}\n\n.mdo-closed_caption:after {\n  content: '\\e14b';\n}\n\n.mdo-cloud:after {\n  content: '\\e14d';\n}\n\n.mdo-cloud_circle:after {\n  content: '\\e14f';\n}\n\n.mdo-cloud_done:after {\n  content: '\\e151';\n}\n\n.mdo-cloud_download:after {\n  content: '\\e153';\n}\n\n.mdo-cloud_off:after {\n  content: '\\e155';\n}\n\n.mdo-cloud_queue:after {\n  content: '\\e157';\n}\n\n.mdo-cloud_upload:after {\n  content: '\\e159';\n}\n\n.mdo-code:after {\n  content: '\\e15b';\n}\n\n.mdo-collections:after {\n  content: '\\e15c';\n}\n\n.mdo-collections_bookmark:after {\n  content: '\\e15e';\n}\n\n.mdo-color_lens:after {\n  content: '\\e160';\n}\n\n.mdo-colorize:after {\n  content: '\\e162';\n}\n\n.mdo-comment:after {\n  content: '\\e164';\n}\n\n.mdo-commute:after {\n  content: '\\e166';\n}\n\n.mdo-compare:after {\n  content: '\\e167';\n}\n\n.mdo-compare_arrows:after {\n  content: '\\e169';\n}\n\n.mdo-compass_calibration:after {\n  content: '\\e16a';\n}\n\n.mdo-computer:after {\n  content: '\\e16c';\n}\n\n.mdo-confirmation_number:after {\n  content: '\\e16e';\n}\n\n.mdo-contact_mail:after {\n  content: '\\e170';\n}\n\n.mdo-contact_phone:after {\n  content: '\\e172';\n}\n\n.mdo-contact_support:after {\n  content: '\\e174';\n}\n\n.mdo-contactless:after {\n  content: '\\e176';\n}\n\n.mdo-contacts:after {\n  content: '\\e178';\n}\n\n.mdo-content_copy:after {\n  content: '\\e17a';\n}\n\n.mdo-content_cut:after {\n  content: '\\e17c';\n}\n\n.mdo-content_paste:after {\n  content: '\\e17e';\n}\n\n.mdo-control_camera:after {\n  content: '\\e180';\n}\n\n.mdo-control_point:after {\n  content: '\\e181';\n}\n\n.mdo-control_point_duplicate:after {\n  content: '\\e183';\n}\n\n.mdo-copyright:after {\n  content: '\\e185';\n}\n\n.mdo-create:after {\n  content: '\\e187';\n}\n\n.mdo-create_new_folder:after {\n  content: '\\e189';\n}\n\n.mdo-credit_card:after {\n  content: '\\e18b';\n}\n\n.mdo-crop:after {\n  content: '\\e18d';\n}\n\n.mdo-crop_16_9:after {\n  content: '\\e18e';\n}\n\n.mdo-crop_3_2:after {\n  content: '\\e18f';\n}\n\n.mdo-crop_5_4:after {\n  content: '\\e190';\n}\n\n.mdo-crop_7_5:after {\n  content: '\\e191';\n}\n\n.mdo-crop_din:after {\n  content: '\\e192';\n}\n\n.mdo-crop_free:after {\n  content: '\\e193';\n}\n\n.mdo-crop_landscape:after {\n  content: '\\e194';\n}\n\n.mdo-crop_original:after {\n  content: '\\e195';\n}\n\n.mdo-crop_portrait:after {\n  content: '\\e196';\n}\n\n.mdo-crop_rotate:after {\n  content: '\\e197';\n}\n\n.mdo-crop_square:after {\n  content: '\\e198';\n}\n\n.mdo-dashboard:after {\n  content: '\\e199';\n}\n\n.mdo-data_usage:after {\n  content: '\\e19b';\n}\n\n.mdo-date_range:after {\n  content: '\\e19c';\n}\n\n.mdo-deck:after {\n  content: '\\e19e';\n}\n\n.mdo-dehaze:after {\n  content: '\\e1a0';\n}\n\n.mdo-delete:after {\n  content: '\\e1a1';\n}\n\n.mdo-delete_forever:after {\n  content: '\\e1a3';\n}\n\n.mdo-delete_outline:after {\n  content: '\\e1a5';\n}\n\n.mdo-delete_sweep:after {\n  content: '\\e1a6';\n}\n\n.mdo-departure_board:after {\n  content: '\\e1a8';\n}\n\n.mdo-description:after {\n  content: '\\e1aa';\n}\n\n.mdo-desktop_access_disabled:after {\n  content: '\\e1ac';\n}\n\n.mdo-desktop_mac:after {\n  content: '\\e1ae';\n}\n\n.mdo-desktop_windows:after {\n  content: '\\e1b0';\n}\n\n.mdo-details:after {\n  content: '\\e1b2';\n}\n\n.mdo-developer_board:after {\n  content: '\\e1b4';\n}\n\n.mdo-developer_mode:after {\n  content: '\\e1b6';\n}\n\n.mdo-device_hub:after {\n  content: '\\e1b7';\n}\n\n.mdo-device_unknown:after {\n  content: '\\e1b8';\n}\n\n.mdo-devices:after {\n  content: '\\e1ba';\n}\n\n.mdo-devices_other:after {\n  content: '\\e1bc';\n}\n\n.mdo-dialer_sip:after {\n  content: '\\e1be';\n}\n\n.mdo-dialpad:after {\n  content: '\\e1c0';\n}\n\n.mdo-directions:after {\n  content: '\\e1c1';\n}\n\n.mdo-directions_bike:after {\n  content: '\\e1c3';\n}\n\n.mdo-directions_boat:after {\n  content: '\\e1c4';\n}\n\n.mdo-directions_bus:after {\n  content: '\\e1c6';\n}\n\n.mdo-directions_car:after {\n  content: '\\e1c8';\n}\n\n.mdo-directions_railway:after {\n  content: '\\e1ca';\n}\n\n.mdo-directions_run:after {\n  content: '\\e1cc';\n}\n\n.mdo-directions_subway:after {\n  content: '\\e1cd';\n}\n\n.mdo-directions_transit:after {\n  content: '\\e1cf';\n}\n\n.mdo-directions_walk:after {\n  content: '\\e1d1';\n}\n\n.mdo-disc_full:after {\n  content: '\\e1d2';\n}\n\n.mdo-divide:after {\n  content: '\\e1d4';\n}\n\n.mdo-dns:after {\n  content: '\\e1d6';\n}\n\n.mdo-do_not_disturb:after {\n  content: '\\e1d8';\n}\n\n.mdo-do_not_disturb_alt:after {\n  content: '\\e1da';\n}\n\n.mdo-do_not_disturb_off:after {\n  content: '\\e1dc';\n}\n\n.mdo-dock:after {\n  content: '\\e1de';\n}\n\n.mdo-domain:after {\n  content: '\\e1e0';\n}\n\n.mdo-domain_disabled:after {\n  content: '\\e1e2';\n}\n\n.mdo-done:after {\n  content: '\\e1e4';\n}\n\n.mdo-done_all:after {\n  content: '\\e1e5';\n}\n\n.mdo-done_outline:after {\n  content: '\\e1e6';\n}\n\n.mdo-donut_large:after {\n  content: '\\e1e7';\n}\n\n.mdo-donut_small:after {\n  content: '\\e1e8';\n}\n\n.mdo-double_arrow:after {\n  content: '\\e1ea';\n}\n\n.mdo-drafts:after {\n  content: '\\e1eb';\n}\n\n.mdo-drag_handle:after {\n  content: '\\e1ed';\n}\n\n.mdo-drag_indicator:after {\n  content: '\\e1ee';\n}\n\n.mdo-drive_eta:after {\n  content: '\\e1ef';\n}\n\n.mdo-duo:after {\n  content: '\\e1f1';\n}\n\n.mdo-dvr:after {\n  content: '\\e1f2';\n}\n\n.mdo-dynamic_feed:after {\n  content: '\\e1f4';\n}\n\n.mdo-eco:after {\n  content: '\\e1f6';\n}\n\n.mdo-edit:after {\n  content: '\\e1f8';\n}\n\n.mdo-edit_attributes:after {\n  content: '\\e1fa';\n}\n\n.mdo-edit_location:after {\n  content: '\\e1fc';\n}\n\n.mdo-eject:after {\n  content: '\\e1fe';\n}\n\n.mdo-email:after {\n  content: '\\e200';\n}\n\n.mdo-emoji_emotions:after {\n  content: '\\e202';\n}\n\n.mdo-emoji_events:after {\n  content: '\\e204';\n}\n\n.mdo-emoji_flags:after {\n  content: '\\e206';\n}\n\n.mdo-emoji_food_beverage:after {\n  content: '\\e208';\n}\n\n.mdo-emoji_nature:after {\n  content: '\\e20a';\n}\n\n.mdo-emoji_objects:after {\n  content: '\\e20c';\n}\n\n.mdo-emoji_people:after {\n  content: '\\e20e';\n}\n\n.mdo-emoji_symbols:after {\n  content: '\\e20f';\n}\n\n.mdo-emoji_transportation:after {\n  content: '\\e210';\n}\n\n.mdo-enhanced_encryption:after {\n  content: '\\e211';\n}\n\n.mdo-equalizer:after {\n  content: '\\e213';\n}\n\n.mdo-equals:after {\n  content: '\\e214';\n}\n\n.mdo-error:after {\n  content: '\\e215';\n}\n\n.mdo-error_outline:after {\n  content: '\\e217';\n}\n\n.mdo-euro:after {\n  content: '\\e218';\n}\n\n.mdo-euro_symbol:after {\n  content: '\\e219';\n}\n\n.mdo-ev_station:after {\n  content: '\\e21a';\n}\n\n.mdo-event:after {\n  content: '\\e21c';\n}\n\n.mdo-event_available:after {\n  content: '\\e21e';\n}\n\n.mdo-event_busy:after {\n  content: '\\e220';\n}\n\n.mdo-event_note:after {\n  content: '\\e222';\n}\n\n.mdo-event_seat:after {\n  content: '\\e224';\n}\n\n.mdo-exit_to_app:after {\n  content: '\\e226';\n}\n\n.mdo-expand_less:after {\n  content: '\\e227';\n}\n\n.mdo-expand_more:after {\n  content: '\\e228';\n}\n\n.mdo-explicit:after {\n  content: '\\e229';\n}\n\n.mdo-explore:after {\n  content: '\\e22b';\n}\n\n.mdo-explore_off:after {\n  content: '\\e22d';\n}\n\n.mdo-exposure:after {\n  content: '\\e22f';\n}\n\n.mdo-exposure_neg_1:after {\n  content: '\\e231';\n}\n\n.mdo-exposure_neg_2:after {\n  content: '\\e232';\n}\n\n.mdo-exposure_plus_1:after {\n  content: '\\e233';\n}\n\n.mdo-exposure_plus_2:after {\n  content: '\\e234';\n}\n\n.mdo-exposure_zero:after {\n  content: '\\e235';\n}\n\n.mdo-extension:after {\n  content: '\\e236';\n}\n\n.mdo-face:after {\n  content: '\\e238';\n}\n\n.mdo-fast_forward:after {\n  content: '\\e23a';\n}\n\n.mdo-fast_rewind:after {\n  content: '\\e23c';\n}\n\n.mdo-fastfood:after {\n  content: '\\e23e';\n}\n\n.mdo-favorite:after {\n  content: '\\e240';\n}\n\n.mdo-favorite_border:after {\n  content: '\\e242';\n}\n\n.mdo-featured_play_list:after {\n  content: '\\e243';\n}\n\n.mdo-featured_video:after {\n  content: '\\e245';\n}\n\n.mdo-feedback:after {\n  content: '\\e247';\n}\n\n.mdo-fiber_dvr:after {\n  content: '\\e249';\n}\n\n.mdo-fiber_manual_record:after {\n  content: '\\e24b';\n}\n\n.mdo-fiber_new:after {\n  content: '\\e24d';\n}\n\n.mdo-fiber_pin:after {\n  content: '\\e24f';\n}\n\n.mdo-fiber_smart_record:after {\n  content: '\\e251';\n}\n\n.mdo-file_copy:after {\n  content: '\\e253';\n}\n\n.mdo-file_upload:after {\n  content: '\\e255';\n}\n\n.mdo-filter:after {\n  content: '\\e257';\n}\n\n.mdo-filter_1:after {\n  content: '\\e259';\n}\n\n.mdo-filter_2:after {\n  content: '\\e25b';\n}\n\n.mdo-filter_3:after {\n  content: '\\e25d';\n}\n\n.mdo-filter_4:after {\n  content: '\\e25f';\n}\n\n.mdo-filter_5:after {\n  content: '\\e261';\n}\n\n.mdo-filter_6:after {\n  content: '\\e263';\n}\n\n.mdo-filter_7:after {\n  content: '\\e265';\n}\n\n.mdo-filter_8:after {\n  content: '\\e267';\n}\n\n.mdo-filter_9:after {\n  content: '\\e269';\n}\n\n.mdo-filter_9_plus:after {\n  content: '\\e26b';\n}\n\n.mdo-filter_b_and_w:after {\n  content: '\\e26d';\n}\n\n.mdo-filter_center_focus:after {\n  content: '\\e26f';\n}\n\n.mdo-filter_drama:after {\n  content: '\\e270';\n}\n\n.mdo-filter_frames:after {\n  content: '\\e272';\n}\n\n.mdo-filter_hdr:after {\n  content: '\\e274';\n}\n\n.mdo-filter_list:after {\n  content: '\\e276';\n}\n\n.mdo-filter_none:after {\n  content: '\\e277';\n}\n\n.mdo-filter_tilt_shift:after {\n  content: '\\e279';\n}\n\n.mdo-filter_vintage:after {\n  content: '\\e27a';\n}\n\n.mdo-find_in_page:after {\n  content: '\\e27c';\n}\n\n.mdo-find_replace:after {\n  content: '\\e27e';\n}\n\n.mdo-fingerprint:after {\n  content: '\\e27f';\n}\n\n.mdo-fireplace:after {\n  content: '\\e280';\n}\n\n.mdo-first_page:after {\n  content: '\\e282';\n}\n\n.mdo-fitness_center:after {\n  content: '\\e283';\n}\n\n.mdo-flag:after {\n  content: '\\e284';\n}\n\n.mdo-flare:after {\n  content: '\\e286';\n}\n\n.mdo-flash_auto:after {\n  content: '\\e287';\n}\n\n.mdo-flash_off:after {\n  content: '\\e288';\n}\n\n.mdo-flash_on:after {\n  content: '\\e289';\n}\n\n.mdo-flight:after {\n  content: '\\e28a';\n}\n\n.mdo-flight_land:after {\n  content: '\\e28b';\n}\n\n.mdo-flight_takeoff:after {\n  content: '\\e28c';\n}\n\n.mdo-flip:after {\n  content: '\\e28d';\n}\n\n.mdo-flip_camera_android:after {\n  content: '\\e28e';\n}\n\n.mdo-flip_camera_ios:after {\n  content: '\\e290';\n}\n\n.mdo-flip_to_back:after {\n  content: '\\e292';\n}\n\n.mdo-flip_to_front:after {\n  content: '\\e293';\n}\n\n.mdo-folder:after {\n  content: '\\e294';\n}\n\n.mdo-folder_open:after {\n  content: '\\e296';\n}\n\n.mdo-folder_shared:after {\n  content: '\\e298';\n}\n\n.mdo-folder_special:after {\n  content: '\\e29a';\n}\n\n.mdo-font_download:after {\n  content: '\\e29c';\n}\n\n.mdo-format_align_center:after {\n  content: '\\e29e';\n}\n\n.mdo-format_align_justify:after {\n  content: '\\e29f';\n}\n\n.mdo-format_align_left:after {\n  content: '\\e2a0';\n}\n\n.mdo-format_align_right:after {\n  content: '\\e2a1';\n}\n\n.mdo-format_bold:after {\n  content: '\\e2a2';\n}\n\n.mdo-format_clear:after {\n  content: '\\e2a3';\n}\n\n.mdo-format_color_fill:after {\n  content: '\\e2a4';\n}\n\n.mdo-format_color_fill:before {\n  content: '\\e2a5';\n}\n\n.mdo-format_color_reset:after {\n  content: '\\e2a6';\n}\n\n.mdo-format_color_text:after {\n  content: '\\e2a8';\n}\n\n.mdo-format_color_text:before {\n  content: '\\e2a9';\n}\n\n.mdo-format_indent_decrease:after {\n  content: '\\e2aa';\n}\n\n.mdo-format_indent_increase:after {\n  content: '\\e2ab';\n}\n\n.mdo-format_italic:after {\n  content: '\\e2ac';\n}\n\n.mdo-format_line_spacing:after {\n  content: '\\e2ad';\n}\n\n.mdo-format_list_bulleted:after {\n  content: '\\e2ae';\n}\n\n.mdo-format_list_numbered:after {\n  content: '\\e2af';\n}\n\n.mdo-format_list_numbered_rtl:after {\n  content: '\\e2b0';\n}\n\n.mdo-format_paint:after {\n  content: '\\e2b1';\n}\n\n.mdo-format_quote:after {\n  content: '\\e2b3';\n}\n\n.mdo-format_shapes:after {\n  content: '\\e2b5';\n}\n\n.mdo-format_size:after {\n  content: '\\e2b7';\n}\n\n.mdo-format_strikethrough:after {\n  content: '\\e2b8';\n}\n\n.mdo-format_textdirection_l_to_r:after {\n  content: '\\e2b9';\n}\n\n.mdo-format_textdirection_r_to_l:after {\n  content: '\\e2bb';\n}\n\n.mdo-format_underlined:after {\n  content: '\\e2bd';\n}\n\n.mdo-forum:after {\n  content: '\\e2be';\n}\n\n.mdo-forward:after {\n  content: '\\e2c0';\n}\n\n.mdo-forward_10:after {\n  content: '\\e2c2';\n}\n\n.mdo-forward_30:after {\n  content: '\\e2c3';\n}\n\n.mdo-forward_5:after {\n  content: '\\e2c4';\n}\n\n.mdo-free_breakfast:after {\n  content: '\\e2c5';\n}\n\n.mdo-fullscreen:after {\n  content: '\\e2c7';\n}\n\n.mdo-fullscreen_exit:after {\n  content: '\\e2c8';\n}\n\n.mdo-functions:after {\n  content: '\\e2c9';\n}\n\n.mdo-g_translate:after {\n  content: '\\e2ca';\n}\n\n.mdo-gamepad:after {\n  content: '\\e2cb';\n}\n\n.mdo-games:after {\n  content: '\\e2cd';\n}\n\n.mdo-gavel:after {\n  content: '\\e2cf';\n}\n\n.mdo-gesture:after {\n  content: '\\e2d0';\n}\n\n.mdo-get_app:after {\n  content: '\\e2d1';\n}\n\n.mdo-gif:after {\n  content: '\\e2d3';\n}\n\n.mdo-golf_course:after {\n  content: '\\e2d5';\n}\n\n.mdo-gps_fixed:after {\n  content: '\\e2d7';\n}\n\n.mdo-gps_not_fixed:after {\n  content: '\\e2d9';\n}\n\n.mdo-gps_off:after {\n  content: '\\e2da';\n}\n\n.mdo-grade:after {\n  content: '\\e2db';\n}\n\n.mdo-gradient:after {\n  content: '\\e2dd';\n}\n\n.mdo-grain:after {\n  content: '\\e2de';\n}\n\n.mdo-graphic_eq:after {\n  content: '\\e2df';\n}\n\n.mdo-greater_than:after {\n  content: '\\e2e0';\n}\n\n.mdo-greater_than_equal:after {\n  content: '\\e2e1';\n}\n\n.mdo-grid_off:after {\n  content: '\\e2e2';\n}\n\n.mdo-grid_on:after {\n  content: '\\e2e4';\n}\n\n.mdo-group:after {\n  content: '\\e2e6';\n}\n\n.mdo-group_add:after {\n  content: '\\e2e8';\n}\n\n.mdo-group_work:after {\n  content: '\\e2ea';\n}\n\n.mdo-hd:after {\n  content: '\\e2ec';\n}\n\n.mdo-hdr_off:after {\n  content: '\\e2ee';\n}\n\n.mdo-hdr_on:after {\n  content: '\\e2ef';\n}\n\n.mdo-hdr_strong:after {\n  content: '\\e2f0';\n}\n\n.mdo-hdr_weak:after {\n  content: '\\e2f2';\n}\n\n.mdo-headset:after {\n  content: '\\e2f4';\n}\n\n.mdo-headset_mic:after {\n  content: '\\e2f6';\n}\n\n.mdo-healing:after {\n  content: '\\e2f8';\n}\n\n.mdo-hearing:after {\n  content: '\\e2fa';\n}\n\n.mdo-height:after {\n  content: '\\e2fb';\n}\n\n.mdo-help:after {\n  content: '\\e2fc';\n}\n\n.mdo-help_outline:after {\n  content: '\\e2fe';\n}\n\n.mdo-high_quality:after {\n  content: '\\e2ff';\n}\n\n.mdo-highlight:after {\n  content: '\\e301';\n}\n\n.mdo-highlight_off:after {\n  content: '\\e303';\n}\n\n.mdo-history:after {\n  content: '\\e305';\n}\n\n.mdo-home:after {\n  content: '\\e306';\n}\n\n.mdo-home_work:after {\n  content: '\\e308';\n}\n\n.mdo-horizontal_split:after {\n  content: '\\e30a';\n}\n\n.mdo-hot_tub:after {\n  content: '\\e30c';\n}\n\n.mdo-hotel:after {\n  content: '\\e30d';\n}\n\n.mdo-hourglass_empty:after {\n  content: '\\e30f';\n}\n\n.mdo-hourglass_full:after {\n  content: '\\e310';\n}\n\n.mdo-house:after {\n  content: '\\e312';\n}\n\n.mdo-how_to_reg:after {\n  content: '\\e314';\n}\n\n.mdo-how_to_vote:after {\n  content: '\\e316';\n}\n\n.mdo-http:after {\n  content: '\\e318';\n}\n\n.mdo-https:after {\n  content: '\\e319';\n}\n\n.mdo-image:after {\n  content: '\\e31b';\n}\n\n.mdo-image_aspect_ratio:after {\n  content: '\\e31d';\n}\n\n.mdo-image_search:after {\n  content: '\\e31f';\n}\n\n.mdo-import_contacts:after {\n  content: '\\e321';\n}\n\n.mdo-import_export:after {\n  content: '\\e323';\n}\n\n.mdo-important_devices:after {\n  content: '\\e324';\n}\n\n.mdo-inbox:after {\n  content: '\\e326';\n}\n\n.mdo-indeterminate_check_box:after {\n  content: '\\e328';\n}\n\n.mdo-info:after {\n  content: '\\e32a';\n}\n\n.mdo-input:after {\n  content: '\\e32c';\n}\n\n.mdo-insert_chart:after {\n  content: '\\e32d';\n}\n\n.mdo-insert_chart_outlined:after {\n  content: '\\e32f';\n}\n\n.mdo-insert_comment:after {\n  content: '\\e330';\n}\n\n.mdo-insert_drive_file:after {\n  content: '\\e332';\n}\n\n.mdo-insert_emoticon:after {\n  content: '\\e334';\n}\n\n.mdo-insert_invitation:after {\n  content: '\\e336';\n}\n\n.mdo-insert_link:after {\n  content: '\\e338';\n}\n\n.mdo-insert_photo:after {\n  content: '\\e339';\n}\n\n.mdo-invert_colors:after {\n  content: '\\e33b';\n}\n\n.mdo-invert_colors_off:after {\n  content: '\\e33d';\n}\n\n.mdo-iso:after {\n  content: '\\e33f';\n}\n\n.mdo-keyboard:after {\n  content: '\\e341';\n}\n\n.mdo-keyboard_arrow_down:after {\n  content: '\\e343';\n}\n\n.mdo-keyboard_arrow_left:after {\n  content: '\\e344';\n}\n\n.mdo-keyboard_arrow_right:after {\n  content: '\\e345';\n}\n\n.mdo-keyboard_arrow_up:after {\n  content: '\\e346';\n}\n\n.mdo-keyboard_backspace:after {\n  content: '\\e347';\n}\n\n.mdo-keyboard_capslock:after {\n  content: '\\e348';\n}\n\n.mdo-keyboard_hide:after {\n  content: '\\e349';\n}\n\n.mdo-keyboard_return:after {\n  content: '\\e34b';\n}\n\n.mdo-keyboard_tab:after {\n  content: '\\e34c';\n}\n\n.mdo-keyboard_voice:after {\n  content: '\\e34d';\n}\n\n.mdo-king_bed:after {\n  content: '\\e34f';\n}\n\n.mdo-kitchen:after {\n  content: '\\e351';\n}\n\n.mdo-label:after {\n  content: '\\e353';\n}\n\n.mdo-label_important:after {\n  content: '\\e355';\n}\n\n.mdo-label_off:after {\n  content: '\\e357';\n}\n\n.mdo-landscape:after {\n  content: '\\e359';\n}\n\n.mdo-language:after {\n  content: '\\e35b';\n}\n\n.mdo-laptop:after {\n  content: '\\e35d';\n}\n\n.mdo-laptop_chromebook:after {\n  content: '\\e35f';\n}\n\n.mdo-laptop_mac:after {\n  content: '\\e361';\n}\n\n.mdo-laptop_windows:after {\n  content: '\\e363';\n}\n\n.mdo-last_page:after {\n  content: '\\e365';\n}\n\n.mdo-launch:after {\n  content: '\\e366';\n}\n\n.mdo-layers:after {\n  content: '\\e367';\n}\n\n.mdo-layers_clear:after {\n  content: '\\e369';\n}\n\n.mdo-leak_add:after {\n  content: '\\e36b';\n}\n\n.mdo-leak_remove:after {\n  content: '\\e36c';\n}\n\n.mdo-lens:after {\n  content: '\\e36d';\n}\n\n.mdo-less_than:after {\n  content: '\\e36f';\n}\n\n.mdo-less_than_equal:after {\n  content: '\\e370';\n}\n\n.mdo-library_add:after {\n  content: '\\e371';\n}\n\n.mdo-library_books:after {\n  content: '\\e373';\n}\n\n.mdo-library_music:after {\n  content: '\\e375';\n}\n\n.mdo-lightbulb:after {\n  content: '\\e377';\n}\n\n.mdo-line_style:after {\n  content: '\\e379';\n}\n\n.mdo-line_weight:after {\n  content: '\\e37a';\n}\n\n.mdo-linear_scale:after {\n  content: '\\e37b';\n}\n\n.mdo-link:after {\n  content: '\\e37c';\n}\n\n.mdo-link_off:after {\n  content: '\\e37e';\n}\n\n.mdo-linked_camera:after {\n  content: '\\e37f';\n}\n\n.mdo-list:after {\n  content: '\\e381';\n}\n\n.mdo-list_alt:after {\n  content: '\\e382';\n}\n\n.mdo-live_help:after {\n  content: '\\e384';\n}\n\n.mdo-live_tv:after {\n  content: '\\e386';\n}\n\n.mdo-local_activity:after {\n  content: '\\e388';\n}\n\n.mdo-local_airport:after {\n  content: '\\e38a';\n}\n\n.mdo-local_atm:after {\n  content: '\\e38b';\n}\n\n.mdo-local_bar:after {\n  content: '\\e38d';\n}\n\n.mdo-local_cafe:after {\n  content: '\\e38f';\n}\n\n.mdo-local_car_wash:after {\n  content: '\\e391';\n}\n\n.mdo-local_convenience_store:after {\n  content: '\\e393';\n}\n\n.mdo-local_dining:after {\n  content: '\\e395';\n}\n\n.mdo-local_drink:after {\n  content: '\\e396';\n}\n\n.mdo-local_florist:after {\n  content: '\\e398';\n}\n\n.mdo-local_gas_station:after {\n  content: '\\e39a';\n}\n\n.mdo-local_grocery_store:after {\n  content: '\\e39c';\n}\n\n.mdo-local_hospital:after {\n  content: '\\e39e';\n}\n\n.mdo-local_hotel:after {\n  content: '\\e3a0';\n}\n\n.mdo-local_laundry_service:after {\n  content: '\\e3a2';\n}\n\n.mdo-local_library:after {\n  content: '\\e3a4';\n}\n\n.mdo-local_mall:after {\n  content: '\\e3a6';\n}\n\n.mdo-local_movies:after {\n  content: '\\e3a8';\n}\n\n.mdo-local_offer:after {\n  content: '\\e3aa';\n}\n\n.mdo-local_parking:after {\n  content: '\\e3ac';\n}\n\n.mdo-local_pharmacy:after {\n  content: '\\e3ad';\n}\n\n.mdo-local_phone:after {\n  content: '\\e3af';\n}\n\n.mdo-local_pizza:after {\n  content: '\\e3b1';\n}\n\n.mdo-local_play:after {\n  content: '\\e3b3';\n}\n\n.mdo-local_post_office:after {\n  content: '\\e3b5';\n}\n\n.mdo-local_printshop:after {\n  content: '\\e3b7';\n}\n\n.mdo-local_see:after {\n  content: '\\e3b9';\n}\n\n.mdo-local_shipping:after {\n  content: '\\e3bb';\n}\n\n.mdo-local_taxi:after {\n  content: '\\e3bd';\n}\n\n.mdo-location_city:after {\n  content: '\\e3bf';\n}\n\n.mdo-location_disabled:after {\n  content: '\\e3c0';\n}\n\n.mdo-location_off:after {\n  content: '\\e3c1';\n}\n\n.mdo-location_on:after {\n  content: '\\e3c2';\n}\n\n.mdo-location_searching:after {\n  content: '\\e3c4';\n}\n\n.mdo-lock:after {\n  content: '\\e3c5';\n}\n\n.mdo-lock_open:after {\n  content: '\\e3c7';\n}\n\n.mdo-log_in:after {\n  content: '\\e3c9';\n}\n\n.mdo-log_out:after {\n  content: '\\e3ca';\n}\n\n.mdo-looks:after {\n  content: '\\e3cb';\n}\n\n.mdo-looks_3:after {\n  content: '\\e3cc';\n}\n\n.mdo-looks_4:after {\n  content: '\\e3ce';\n}\n\n.mdo-looks_5:after {\n  content: '\\e3d0';\n}\n\n.mdo-looks_6:after {\n  content: '\\e3d2';\n}\n\n.mdo-looks_one:after {\n  content: '\\e3d4';\n}\n\n.mdo-looks_two:after {\n  content: '\\e3d6';\n}\n\n.mdo-loop:after {\n  content: '\\e3d8';\n}\n\n.mdo-loupe:after {\n  content: '\\e3d9';\n}\n\n.mdo-low_priority:after {\n  content: '\\e3db';\n}\n\n.mdo-loyalty:after {\n  content: '\\e3dc';\n}\n\n.mdo-mail:after {\n  content: '\\e3de';\n}\n\n.mdo-mail_outline:after {\n  content: '\\e3e0';\n}\n\n.mdo-map:after {\n  content: '\\e3e1';\n}\n\n.mdo-markunread:after {\n  content: '\\e3e3';\n}\n\n.mdo-markunread_mailbox:after {\n  content: '\\e3e5';\n}\n\n.mdo-maximize:after {\n  content: '\\e3e7';\n}\n\n.mdo-meeting_room:after {\n  content: '\\e3e8';\n}\n\n.mdo-memory:after {\n  content: '\\e3ea';\n}\n\n.mdo-menu:after {\n  content: '\\e3ec';\n}\n\n.mdo-menu_book:after {\n  content: '\\e3ed';\n}\n\n.mdo-menu_open:after {\n  content: '\\e3ef';\n}\n\n.mdo-merge_type:after {\n  content: '\\e3f0';\n}\n\n.mdo-message:after {\n  content: '\\e3f1';\n}\n\n.mdo-mic:after {\n  content: '\\e3f3';\n}\n\n.mdo-mic_none:after {\n  content: '\\e3f5';\n}\n\n.mdo-mic_off:after {\n  content: '\\e3f7';\n}\n\n.mdo-minimize:after {\n  content: '\\e3f9';\n}\n\n.mdo-minus:after {\n  content: '\\e3fa';\n}\n\n.mdo-missed_video_call:after {\n  content: '\\e3fb';\n}\n\n.mdo-mms:after {\n  content: '\\e3fd';\n}\n\n.mdo-mobile_friendly:after {\n  content: '\\e3ff';\n}\n\n.mdo-mobile_off:after {\n  content: '\\e400';\n}\n\n.mdo-mobile_screen_share:after {\n  content: '\\e401';\n}\n\n.mdo-mode_comment:after {\n  content: '\\e403';\n}\n\n.mdo-monetization_on:after {\n  content: '\\e405';\n}\n\n.mdo-money:after {\n  content: '\\e407';\n}\n\n.mdo-money_off:after {\n  content: '\\e409';\n}\n\n.mdo-monochrome_photos:after {\n  content: '\\e40a';\n}\n\n.mdo-mood:after {\n  content: '\\e40c';\n}\n\n.mdo-mood_bad:after {\n  content: '\\e40e';\n}\n\n.mdo-more:after {\n  content: '\\e410';\n}\n\n.mdo-more_horiz:after {\n  content: '\\e412';\n}\n\n.mdo-more_vert:after {\n  content: '\\e413';\n}\n\n.mdo-motorcycle:after {\n  content: '\\e414';\n}\n\n.mdo-mouse:after {\n  content: '\\e416';\n}\n\n.mdo-move_to_inbox:after {\n  content: '\\e418';\n}\n\n.mdo-movie:after {\n  content: '\\e41a';\n}\n\n.mdo-movie_creation:after {\n  content: '\\e41c';\n}\n\n.mdo-movie_filter:after {\n  content: '\\e41e';\n}\n\n.mdo-multiline_chart:after {\n  content: '\\e420';\n}\n\n.mdo-museum:after {\n  content: '\\e421';\n}\n\n.mdo-music_note:after {\n  content: '\\e423';\n}\n\n.mdo-music_off:after {\n  content: '\\e425';\n}\n\n.mdo-music_video:after {\n  content: '\\e427';\n}\n\n.mdo-my_location:after {\n  content: '\\e429';\n}\n\n.mdo-nature:after {\n  content: '\\e42b';\n}\n\n.mdo-nature_people:after {\n  content: '\\e42d';\n}\n\n.mdo-navigate_before:after {\n  content: '\\e42f';\n}\n\n.mdo-navigate_next:after {\n  content: '\\e430';\n}\n\n.mdo-navigation:after {\n  content: '\\e431';\n}\n\n.mdo-near_me:after {\n  content: '\\e433';\n}\n\n.mdo-network_cell:after {\n  content: '\\e435';\n}\n\n.mdo-network_cell:before {\n  content: '\\e436';\n}\n\n.mdo-network_check:after {\n  content: '\\e437';\n}\n\n.mdo-network_locked:after {\n  content: '\\e438';\n}\n\n.mdo-network_wifi:after {\n  content: '\\e439';\n}\n\n.mdo-network_wifi:before {\n  content: '\\e43a';\n}\n\n.mdo-new_releases:after {\n  content: '\\e43b';\n}\n\n.mdo-next_week:after {\n  content: '\\e43d';\n}\n\n.mdo-nfc:after {\n  content: '\\e43f';\n}\n\n.mdo-nights_stay:after {\n  content: '\\e440';\n}\n\n.mdo-no_encryption:after {\n  content: '\\e442';\n}\n\n.mdo-no_meeting_room:after {\n  content: '\\e444';\n}\n\n.mdo-no_sim:after {\n  content: '\\e446';\n}\n\n.mdo-not_equal:after {\n  content: '\\e448';\n}\n\n.mdo-not_interested:after {\n  content: '\\e449';\n}\n\n.mdo-not_listed_location:after {\n  content: '\\e44a';\n}\n\n.mdo-note:after {\n  content: '\\e44c';\n}\n\n.mdo-note_add:after {\n  content: '\\e44e';\n}\n\n.mdo-notes:after {\n  content: '\\e450';\n}\n\n.mdo-notification_important:after {\n  content: '\\e451';\n}\n\n.mdo-notifications:after {\n  content: '\\e453';\n}\n\n.mdo-notifications_active:after {\n  content: '\\e455';\n}\n\n.mdo-notifications_none:after {\n  content: '\\e457';\n}\n\n.mdo-notifications_off:after {\n  content: '\\e459';\n}\n\n.mdo-notifications_paused:after {\n  content: '\\e45b';\n}\n\n.mdo-offline_bolt:after {\n  content: '\\e45d';\n}\n\n.mdo-offline_pin:after {\n  content: '\\e45f';\n}\n\n.mdo-ondemand_video:after {\n  content: '\\e461';\n}\n\n.mdo-opacity:after {\n  content: '\\e463';\n}\n\n.mdo-open_in_browser:after {\n  content: '\\e465';\n}\n\n.mdo-open_in_new:after {\n  content: '\\e466';\n}\n\n.mdo-open_with:after {\n  content: '\\e467';\n}\n\n.mdo-outdoor_grill:after {\n  content: '\\e468';\n}\n\n.mdo-outlined_flag:after {\n  content: '\\e46a';\n}\n\n.mdo-pages:after {\n  content: '\\e46b';\n}\n\n.mdo-pageview:after {\n  content: '\\e46d';\n}\n\n.mdo-palette:after {\n  content: '\\e46f';\n}\n\n.mdo-pan_tool:after {\n  content: '\\e471';\n}\n\n.mdo-panorama:after {\n  content: '\\e473';\n}\n\n.mdo-panorama_fish_eye:after {\n  content: '\\e475';\n}\n\n.mdo-panorama_horizontal:after {\n  content: '\\e477';\n}\n\n.mdo-panorama_vertical:after {\n  content: '\\e479';\n}\n\n.mdo-panorama_wide_angle:after {\n  content: '\\e47b';\n}\n\n.mdo-party_mode:after {\n  content: '\\e47d';\n}\n\n.mdo-pause:after {\n  content: '\\e47f';\n}\n\n.mdo-pause_circle_filled:after {\n  content: '\\e480';\n}\n\n.mdo-pause_circle_outline:after {\n  content: '\\e482';\n}\n\n.mdo-pause_presentation:after {\n  content: '\\e483';\n}\n\n.mdo-payment:after {\n  content: '\\e485';\n}\n\n.mdo-people:after {\n  content: '\\e487';\n}\n\n.mdo-people_alt:after {\n  content: '\\e489';\n}\n\n.mdo-people_outline:after {\n  content: '\\e48b';\n}\n\n.mdo-percentage:after {\n  content: '\\e48d';\n}\n\n.mdo-perm_camera_mic:after {\n  content: '\\e48f';\n}\n\n.mdo-perm_contact_calendar:after {\n  content: '\\e491';\n}\n\n.mdo-perm_data_setting:after {\n  content: '\\e493';\n}\n\n.mdo-perm_device_information:after {\n  content: '\\e494';\n}\n\n.mdo-perm_identity:after {\n  content: '\\e496';\n}\n\n.mdo-perm_media:after {\n  content: '\\e498';\n}\n\n.mdo-perm_phone_msg:after {\n  content: '\\e49a';\n}\n\n.mdo-perm_scan_wifi:after {\n  content: '\\e49c';\n}\n\n.mdo-person:after {\n  content: '\\e49e';\n}\n\n.mdo-person_add:after {\n  content: '\\e4a0';\n}\n\n.mdo-person_add_disabled:after {\n  content: '\\e4a2';\n}\n\n.mdo-person_outline:after {\n  content: '\\e4a4';\n}\n\n.mdo-person_pin:after {\n  content: '\\e4a6';\n}\n\n.mdo-person_pin_circle:after {\n  content: '\\e4a8';\n}\n\n.mdo-personal_video:after {\n  content: '\\e4aa';\n}\n\n.mdo-pets:after {\n  content: '\\e4ac';\n}\n\n.mdo-phone:after {\n  content: '\\e4ad';\n}\n\n.mdo-phone_android:after {\n  content: '\\e4af';\n}\n\n.mdo-phone_bluetooth_speaker:after {\n  content: '\\e4b1';\n}\n\n.mdo-phone_callback:after {\n  content: '\\e4b3';\n}\n\n.mdo-phone_disabled:after {\n  content: '\\e4b5';\n}\n\n.mdo-phone_enabled:after {\n  content: '\\e4b6';\n}\n\n.mdo-phone_forwarded:after {\n  content: '\\e4b7';\n}\n\n.mdo-phone_in_talk:after {\n  content: '\\e4b9';\n}\n\n.mdo-phone_iphone:after {\n  content: '\\e4bb';\n}\n\n.mdo-phone_locked:after {\n  content: '\\e4bd';\n}\n\n.mdo-phone_missed:after {\n  content: '\\e4bf';\n}\n\n.mdo-phone_paused:after {\n  content: '\\e4c1';\n}\n\n.mdo-phonelink:after {\n  content: '\\e4c3';\n}\n\n.mdo-phonelink_erase:after {\n  content: '\\e4c5';\n}\n\n.mdo-phonelink_lock:after {\n  content: '\\e4c6';\n}\n\n.mdo-phonelink_off:after {\n  content: '\\e4c7';\n}\n\n.mdo-phonelink_ring:after {\n  content: '\\e4c9';\n}\n\n.mdo-phonelink_setup:after {\n  content: '\\e4cb';\n}\n\n.mdo-photo:after {\n  content: '\\e4cc';\n}\n\n.mdo-photo_album:after {\n  content: '\\e4ce';\n}\n\n.mdo-photo_camera:after {\n  content: '\\e4d0';\n}\n\n.mdo-photo_filter:after {\n  content: '\\e4d2';\n}\n\n.mdo-photo_library:after {\n  content: '\\e4d3';\n}\n\n.mdo-photo_size_select_actual:after {\n  content: '\\e4d5';\n}\n\n.mdo-photo_size_select_large:after {\n  content: '\\e4d7';\n}\n\n.mdo-photo_size_select_small:after {\n  content: '\\e4d8';\n}\n\n.mdo-picture_as_pdf:after {\n  content: '\\e4d9';\n}\n\n.mdo-picture_in_picture:after {\n  content: '\\e4db';\n}\n\n.mdo-picture_in_picture_alt:after {\n  content: '\\e4dd';\n}\n\n.mdo-pie_chart:after {\n  content: '\\e4df';\n}\n\n.mdo-pin:after {\n  content: '\\e4e1';\n}\n\n.mdo-pin_drop:after {\n  content: '\\e4e3';\n}\n\n.mdo-pin_off:after {\n  content: '\\e4e5';\n}\n\n.mdo-place:after {\n  content: '\\e4e7';\n}\n\n.mdo-play_arrow:after {\n  content: '\\e4e9';\n}\n\n.mdo-play_circle_filled:after {\n  content: '\\e4eb';\n}\n\n.mdo-play_circle_filled_white:after {\n  content: '\\e4ed';\n}\n\n.mdo-play_circle_outline:after {\n  content: '\\e4ef';\n}\n\n.mdo-play_for_work:after {\n  content: '\\e4f0';\n}\n\n.mdo-playlist_add:after {\n  content: '\\e4f1';\n}\n\n.mdo-playlist_add_check:after {\n  content: '\\e4f2';\n}\n\n.mdo-playlist_play:after {\n  content: '\\e4f3';\n}\n\n.mdo-plus:after {\n  content: '\\e4f4';\n}\n\n.mdo-plus_minus:after {\n  content: '\\e4f5';\n}\n\n.mdo-plus_minus_alt:after {\n  content: '\\e4f6';\n}\n\n.mdo-plus_one:after {\n  content: '\\e4f7';\n}\n\n.mdo-policy:after {\n  content: '\\e4f8';\n}\n\n.mdo-poll:after {\n  content: '\\e4fa';\n}\n\n.mdo-polymer:after {\n  content: '\\e4fc';\n}\n\n.mdo-pool:after {\n  content: '\\e4fd';\n}\n\n.mdo-portable_wifi_off:after {\n  content: '\\e4ff';\n}\n\n.mdo-portrait:after {\n  content: '\\e500';\n}\n\n.mdo-post_add:after {\n  content: '\\e502';\n}\n\n.mdo-power:after {\n  content: '\\e503';\n}\n\n.mdo-power_input:after {\n  content: '\\e505';\n}\n\n.mdo-power_off:after {\n  content: '\\e506';\n}\n\n.mdo-power_settings_new:after {\n  content: '\\e508';\n}\n\n.mdo-pregnant_woman:after {\n  content: '\\e509';\n}\n\n.mdo-present_to_all:after {\n  content: '\\e50a';\n}\n\n.mdo-print:after {\n  content: '\\e50c';\n}\n\n.mdo-print_disabled:after {\n  content: '\\e50e';\n}\n\n.mdo-priority_high:after {\n  content: '\\e510';\n}\n\n.mdo-public:after {\n  content: '\\e511';\n}\n\n.mdo-publish:after {\n  content: '\\e513';\n}\n\n.mdo-qrcode:after {\n  content: '\\e515';\n}\n\n.mdo-query_builder:after {\n  content: '\\e517';\n}\n\n.mdo-question_answer:after {\n  content: '\\e519';\n}\n\n.mdo-queue:after {\n  content: '\\e51b';\n}\n\n.mdo-queue_music:after {\n  content: '\\e51d';\n}\n\n.mdo-queue_play_next:after {\n  content: '\\e51f';\n}\n\n.mdo-radio:after {\n  content: '\\e520';\n}\n\n.mdo-radio_button_checked:after {\n  content: '\\e522';\n}\n\n.mdo-radio_button_unchecked:after {\n  content: '\\e523';\n}\n\n.mdo-rate_review:after {\n  content: '\\e524';\n}\n\n.mdo-receipt:after {\n  content: '\\e526';\n}\n\n.mdo-recent_actors:after {\n  content: '\\e528';\n}\n\n.mdo-record_voice_over:after {\n  content: '\\e52a';\n}\n\n.mdo-redeem:after {\n  content: '\\e52c';\n}\n\n.mdo-redo:after {\n  content: '\\e52e';\n}\n\n.mdo-refresh:after {\n  content: '\\e52f';\n}\n\n.mdo-remove:after {\n  content: '\\e530';\n}\n\n.mdo-remove_circle:after {\n  content: '\\e531';\n}\n\n.mdo-remove_circle_outline:after {\n  content: '\\e533';\n}\n\n.mdo-remove_from_queue:after {\n  content: '\\e534';\n}\n\n.mdo-remove_red_eye:after {\n  content: '\\e536';\n}\n\n.mdo-remove_shopping_cart:after {\n  content: '\\e538';\n}\n\n.mdo-reorder:after {\n  content: '\\e53a';\n}\n\n.mdo-repeat:after {\n  content: '\\e53b';\n}\n\n.mdo-repeat_one:after {\n  content: '\\e53c';\n}\n\n.mdo-replay:after {\n  content: '\\e53d';\n}\n\n.mdo-replay_10:after {\n  content: '\\e53e';\n}\n\n.mdo-replay_30:after {\n  content: '\\e53f';\n}\n\n.mdo-replay_5:after {\n  content: '\\e540';\n}\n\n.mdo-reply:after {\n  content: '\\e541';\n}\n\n.mdo-reply_all:after {\n  content: '\\e542';\n}\n\n.mdo-report:after {\n  content: '\\e543';\n}\n\n.mdo-report_off:after {\n  content: '\\e545';\n}\n\n.mdo-report_problem:after {\n  content: '\\e547';\n}\n\n.mdo-restaurant:after {\n  content: '\\e549';\n}\n\n.mdo-restaurant_menu:after {\n  content: '\\e54a';\n}\n\n.mdo-restore:after {\n  content: '\\e54b';\n}\n\n.mdo-restore_from_trash:after {\n  content: '\\e54c';\n}\n\n.mdo-restore_page:after {\n  content: '\\e54e';\n}\n\n.mdo-ring_volume:after {\n  content: '\\e550';\n}\n\n.mdo-rocket:after {\n  content: '\\e552';\n}\n\n.mdo-room:after {\n  content: '\\e554';\n}\n\n.mdo-room_service:after {\n  content: '\\e556';\n}\n\n.mdo-rotate_90_degrees_ccw:after {\n  content: '\\e558';\n}\n\n.mdo-rotate_left:after {\n  content: '\\e55a';\n}\n\n.mdo-rotate_right:after {\n  content: '\\e55b';\n}\n\n.mdo-rounded_corner:after {\n  content: '\\e55c';\n}\n\n.mdo-router:after {\n  content: '\\e55d';\n}\n\n.mdo-rowing:after {\n  content: '\\e55f';\n}\n\n.mdo-rss_feed:after {\n  content: '\\e560';\n}\n\n.mdo-rv_hookup:after {\n  content: '\\e561';\n}\n\n.mdo-satellite:after {\n  content: '\\e563';\n}\n\n.mdo-save:after {\n  content: '\\e565';\n}\n\n.mdo-save_alt:after {\n  content: '\\e567';\n}\n\n.mdo-scanner:after {\n  content: '\\e568';\n}\n\n.mdo-scatter_plot:after {\n  content: '\\e56a';\n}\n\n.mdo-schedule:after {\n  content: '\\e56c';\n}\n\n.mdo-school:after {\n  content: '\\e56e';\n}\n\n.mdo-score:after {\n  content: '\\e570';\n}\n\n.mdo-screen_lock_landscape:after {\n  content: '\\e572';\n}\n\n.mdo-screen_lock_portrait:after {\n  content: '\\e574';\n}\n\n.mdo-screen_lock_rotation:after {\n  content: '\\e576';\n}\n\n.mdo-screen_rotation:after {\n  content: '\\e577';\n}\n\n.mdo-screen_share:after {\n  content: '\\e579';\n}\n\n.mdo-sd_card:after {\n  content: '\\e57b';\n}\n\n.mdo-sd_storage:after {\n  content: '\\e57d';\n}\n\n.mdo-search:after {\n  content: '\\e57f';\n}\n\n.mdo-security:after {\n  content: '\\e580';\n}\n\n.mdo-select_all:after {\n  content: '\\e582';\n}\n\n.mdo-send:after {\n  content: '\\e583';\n}\n\n.mdo-sentiment_dissatisfied:after {\n  content: '\\e585';\n}\n\n.mdo-sentiment_neutral:after {\n  content: '\\e587';\n}\n\n.mdo-sentiment_satisfied:after {\n  content: '\\e589';\n}\n\n.mdo-sentiment_satisfied_alt:after {\n  content: '\\e58b';\n}\n\n.mdo-sentiment_slightly_dissatisfied:after {\n  content: '\\e58d';\n}\n\n.mdo-sentiment_very_dissatisfied:after {\n  content: '\\e58f';\n}\n\n.mdo-sentiment_very_satisfied:after {\n  content: '\\e591';\n}\n\n.mdo-settings:after {\n  content: '\\e593';\n}\n\n.mdo-settings_applications:after {\n  content: '\\e595';\n}\n\n.mdo-settings_backup_restore:after {\n  content: '\\e597';\n}\n\n.mdo-settings_bluetooth:after {\n  content: '\\e598';\n}\n\n.mdo-settings_brightness:after {\n  content: '\\e599';\n}\n\n.mdo-settings_cell:after {\n  content: '\\e59b';\n}\n\n.mdo-settings_ethernet:after {\n  content: '\\e59d';\n}\n\n.mdo-settings_input_antenna:after {\n  content: '\\e59e';\n}\n\n.mdo-settings_input_component:after {\n  content: '\\e59f';\n}\n\n.mdo-settings_input_composite:after {\n  content: '\\e5a1';\n}\n\n.mdo-settings_input_hdmi:after {\n  content: '\\e5a3';\n}\n\n.mdo-settings_input_svideo:after {\n  content: '\\e5a5';\n}\n\n.mdo-settings_overscan:after {\n  content: '\\e5a7';\n}\n\n.mdo-settings_phone:after {\n  content: '\\e5a9';\n}\n\n.mdo-settings_power:after {\n  content: '\\e5ab';\n}\n\n.mdo-settings_remote:after {\n  content: '\\e5ac';\n}\n\n.mdo-settings_system_daydream:after {\n  content: '\\e5ae';\n}\n\n.mdo-settings_voice:after {\n  content: '\\e5b0';\n}\n\n.mdo-share:after {\n  content: '\\e5b2';\n}\n\n.mdo-shop:after {\n  content: '\\e5b4';\n}\n\n.mdo-shop_two:after {\n  content: '\\e5b6';\n}\n\n.mdo-shopping_basket:after {\n  content: '\\e5b8';\n}\n\n.mdo-shopping_cart:after {\n  content: '\\e5ba';\n}\n\n.mdo-short_text:after {\n  content: '\\e5bc';\n}\n\n.mdo-show_chart:after {\n  content: '\\e5bd';\n}\n\n.mdo-shuffle:after {\n  content: '\\e5be';\n}\n\n.mdo-shutter_speed:after {\n  content: '\\e5bf';\n}\n\n.mdo-signal_cellular_0_bar:after {\n  content: '\\e5c1';\n}\n\n.mdo-signal_cellular_0_bar:before {\n  content: '\\e5c2';\n}\n\n.mdo-signal_cellular_1_bar:after {\n  content: '\\e5c3';\n}\n\n.mdo-signal_cellular_1_bar:before {\n  content: '\\e5c4';\n}\n\n.mdo-signal_cellular_2_bar:after {\n  content: '\\e5c5';\n}\n\n.mdo-signal_cellular_2_bar:before {\n  content: '\\e5c6';\n}\n\n.mdo-signal_cellular_3_bar:after {\n  content: '\\e5c7';\n}\n\n.mdo-signal_cellular_3_bar:before {\n  content: '\\e5c8';\n}\n\n.mdo-signal_cellular_4_bar:after {\n  content: '\\e5c9';\n}\n\n.mdo-signal_cellular_alt:after {\n  content: '\\e5ca';\n}\n\n.mdo-signal_cellular_connected_no_internet_0_bar:after {\n  content: '\\e5cb';\n}\n\n.mdo-signal_cellular_connected_no_internet_0_bar:before {\n  content: '\\e5cc';\n}\n\n.mdo-signal_cellular_connected_no_internet_1_bar:after {\n  content: '\\e5cd';\n}\n\n.mdo-signal_cellular_connected_no_internet_1_bar:before {\n  content: '\\e5ce';\n}\n\n.mdo-signal_cellular_connected_no_internet_2_bar:after {\n  content: '\\e5cf';\n}\n\n.mdo-signal_cellular_connected_no_internet_2_bar:before {\n  content: '\\e5d0';\n}\n\n.mdo-signal_cellular_connected_no_internet_3_bar:after {\n  content: '\\e5d1';\n}\n\n.mdo-signal_cellular_connected_no_internet_3_bar:before {\n  content: '\\e5d2';\n}\n\n.mdo-signal_cellular_connected_no_internet_4_bar:after {\n  content: '\\e5d3';\n}\n\n.mdo-signal_cellular_no_sim:after {\n  content: '\\e5d4';\n}\n\n.mdo-signal_cellular_null:after {\n  content: '\\e5d6';\n}\n\n.mdo-signal_cellular_off:after {\n  content: '\\e5d7';\n}\n\n.mdo-signal_wifi_0_bar:after {\n  content: '\\e5d8';\n}\n\n.mdo-signal_wifi_0_bar:before {\n  content: '\\e5d9';\n}\n\n.mdo-signal_wifi_1_bar:after {\n  content: '\\e5da';\n}\n\n.mdo-signal_wifi_1_bar:before {\n  content: '\\e5db';\n}\n\n.mdo-signal_wifi_1_bar_lock:after {\n  content: '\\e5dc';\n}\n\n.mdo-signal_wifi_1_bar_lock:before {\n  content: '\\e5dd';\n}\n\n.mdo-signal_wifi_2_bar:after {\n  content: '\\e5de';\n}\n\n.mdo-signal_wifi_2_bar:before {\n  content: '\\e5df';\n}\n\n.mdo-signal_wifi_2_bar_lock:after {\n  content: '\\e5e0';\n}\n\n.mdo-signal_wifi_2_bar_lock:before {\n  content: '\\e5e1';\n}\n\n.mdo-signal_wifi_3_bar:after {\n  content: '\\e5e2';\n}\n\n.mdo-signal_wifi_3_bar:before {\n  content: '\\e5e3';\n}\n\n.mdo-signal_wifi_3_bar_lock:after {\n  content: '\\e5e4';\n}\n\n.mdo-signal_wifi_3_bar_lock:before {\n  content: '\\e5e5';\n}\n\n.mdo-signal_wifi_4_bar:after {\n  content: '\\e5e6';\n}\n\n.mdo-signal_wifi_4_bar_lock:after {\n  content: '\\e5e7';\n}\n\n.mdo-signal_wifi_off:after {\n  content: '\\e5e8';\n}\n\n.mdo-sim_card:after {\n  content: '\\e5e9';\n}\n\n.mdo-sim_card_alert:after {\n  content: '\\e5eb';\n}\n\n.mdo-single_bed:after {\n  content: '\\e5ed';\n}\n\n.mdo-skip_next:after {\n  content: '\\e5ef';\n}\n\n.mdo-skip_previous:after {\n  content: '\\e5f1';\n}\n\n.mdo-slideshow:after {\n  content: '\\e5f3';\n}\n\n.mdo-slow_motion_video:after {\n  content: '\\e5f5';\n}\n\n.mdo-smartphone:after {\n  content: '\\e5f6';\n}\n\n.mdo-smoke_free:after {\n  content: '\\e5f8';\n}\n\n.mdo-smoking_rooms:after {\n  content: '\\e5f9';\n}\n\n.mdo-sms:after {\n  content: '\\e5fb';\n}\n\n.mdo-sms_failed:after {\n  content: '\\e5fd';\n}\n\n.mdo-snooze:after {\n  content: '\\e5ff';\n}\n\n.mdo-sort:after {\n  content: '\\e600';\n}\n\n.mdo-sort_by_alpha:after {\n  content: '\\e601';\n}\n\n.mdo-spa:after {\n  content: '\\e602';\n}\n\n.mdo-space_bar:after {\n  content: '\\e604';\n}\n\n.mdo-speaker:after {\n  content: '\\e605';\n}\n\n.mdo-speaker_group:after {\n  content: '\\e607';\n}\n\n.mdo-speaker_notes:after {\n  content: '\\e609';\n}\n\n.mdo-speaker_notes_off:after {\n  content: '\\e60b';\n}\n\n.mdo-speaker_phone:after {\n  content: '\\e60d';\n}\n\n.mdo-speed:after {\n  content: '\\e60f';\n}\n\n.mdo-spellcheck:after {\n  content: '\\e610';\n}\n\n.mdo-sports:after {\n  content: '\\e611';\n}\n\n.mdo-sports_baseball:after {\n  content: '\\e612';\n}\n\n.mdo-sports_basketball:after {\n  content: '\\e614';\n}\n\n.mdo-sports_cricket:after {\n  content: '\\e616';\n}\n\n.mdo-sports_esports:after {\n  content: '\\e618';\n}\n\n.mdo-sports_football:after {\n  content: '\\e61a';\n}\n\n.mdo-sports_golf:after {\n  content: '\\e61c';\n}\n\n.mdo-sports_handball:after {\n  content: '\\e61e';\n}\n\n.mdo-sports_hockey:after {\n  content: '\\e61f';\n}\n\n.mdo-sports_kabaddi:after {\n  content: '\\e620';\n}\n\n.mdo-sports_mma:after {\n  content: '\\e621';\n}\n\n.mdo-sports_motorsports:after {\n  content: '\\e623';\n}\n\n.mdo-sports_rugby:after {\n  content: '\\e625';\n}\n\n.mdo-sports_soccer:after {\n  content: '\\e627';\n}\n\n.mdo-sports_tennis:after {\n  content: '\\e629';\n}\n\n.mdo-sports_volleyball:after {\n  content: '\\e62a';\n}\n\n.mdo-square_foot:after {\n  content: '\\e62c';\n}\n\n.mdo-star:after {\n  content: '\\e62e';\n}\n\n.mdo-star_border:after {\n  content: '\\e630';\n}\n\n.mdo-star_half:after {\n  content: '\\e631';\n}\n\n.mdo-star_rate:after {\n  content: '\\e632';\n}\n\n.mdo-stars:after {\n  content: '\\e633';\n}\n\n.mdo-stay_current_landscape:after {\n  content: '\\e635';\n}\n\n.mdo-stay_current_portrait:after {\n  content: '\\e637';\n}\n\n.mdo-stay_primary_landscape:after {\n  content: '\\e639';\n}\n\n.mdo-stay_primary_portrait:after {\n  content: '\\e63b';\n}\n\n.mdo-stop:after {\n  content: '\\e63d';\n}\n\n.mdo-stop_circle:after {\n  content: '\\e63f';\n}\n\n.mdo-stop_screen_share:after {\n  content: '\\e641';\n}\n\n.mdo-storage:after {\n  content: '\\e643';\n}\n\n.mdo-store:after {\n  content: '\\e644';\n}\n\n.mdo-store_mall_directory:after {\n  content: '\\e646';\n}\n\n.mdo-storefront:after {\n  content: '\\e648';\n}\n\n.mdo-straighten:after {\n  content: '\\e64a';\n}\n\n.mdo-streetview:after {\n  content: '\\e64c';\n}\n\n.mdo-strikethrough_s:after {\n  content: '\\e64d';\n}\n\n.mdo-style:after {\n  content: '\\e64e';\n}\n\n.mdo-subdirectory_arrow_left:after {\n  content: '\\e650';\n}\n\n.mdo-subdirectory_arrow_right:after {\n  content: '\\e651';\n}\n\n.mdo-subject:after {\n  content: '\\e652';\n}\n\n.mdo-subscriptions:after {\n  content: '\\e653';\n}\n\n.mdo-subtitles:after {\n  content: '\\e655';\n}\n\n.mdo-subway:after {\n  content: '\\e657';\n}\n\n.mdo-supervised_user_circle:after {\n  content: '\\e659';\n}\n\n.mdo-supervisor_account:after {\n  content: '\\e65b';\n}\n\n.mdo-surround_sound:after {\n  content: '\\e65d';\n}\n\n.mdo-swap_calls:after {\n  content: '\\e65f';\n}\n\n.mdo-swap_horiz:after {\n  content: '\\e660';\n}\n\n.mdo-swap_horizontal_circle:after {\n  content: '\\e661';\n}\n\n.mdo-swap_vert:after {\n  content: '\\e663';\n}\n\n.mdo-swap_vertical_circle:after {\n  content: '\\e664';\n}\n\n.mdo-switch_camera:after {\n  content: '\\e666';\n}\n\n.mdo-switch_video:after {\n  content: '\\e668';\n}\n\n.mdo-sync:after {\n  content: '\\e66a';\n}\n\n.mdo-sync_alt:after {\n  content: '\\e66b';\n}\n\n.mdo-sync_disabled:after {\n  content: '\\e66c';\n}\n\n.mdo-sync_problem:after {\n  content: '\\e66d';\n}\n\n.mdo-system_update:after {\n  content: '\\e66e';\n}\n\n.mdo-system_update_alt:after {\n  content: '\\e670';\n}\n\n.mdo-tab:after {\n  content: '\\e671';\n}\n\n.mdo-tab_unselected:after {\n  content: '\\e672';\n}\n\n.mdo-table_chart:after {\n  content: '\\e673';\n}\n\n.mdo-tablet:after {\n  content: '\\e675';\n}\n\n.mdo-tablet_android:after {\n  content: '\\e677';\n}\n\n.mdo-tablet_mac:after {\n  content: '\\e679';\n}\n\n.mdo-tag_faces:after {\n  content: '\\e67b';\n}\n\n.mdo-tap_and_play:after {\n  content: '\\e67d';\n}\n\n.mdo-terrain:after {\n  content: '\\e67e';\n}\n\n.mdo-text_fields:after {\n  content: '\\e680';\n}\n\n.mdo-text_format:after {\n  content: '\\e681';\n}\n\n.mdo-text_rotate_up:after {\n  content: '\\e682';\n}\n\n.mdo-text_rotate_vertical:after {\n  content: '\\e683';\n}\n\n.mdo-text_rotation_angledown:after {\n  content: '\\e684';\n}\n\n.mdo-text_rotation_angleup:after {\n  content: '\\e685';\n}\n\n.mdo-text_rotation_down:after {\n  content: '\\e686';\n}\n\n.mdo-text_rotation_none:after {\n  content: '\\e687';\n}\n\n.mdo-textsms:after {\n  content: '\\e688';\n}\n\n.mdo-texture:after {\n  content: '\\e68a';\n}\n\n.mdo-theaters:after {\n  content: '\\e68b';\n}\n\n.mdo-thumb_down:after {\n  content: '\\e68d';\n}\n\n.mdo-thumb_down_alt:after {\n  content: '\\e68f';\n}\n\n.mdo-thumb_up:after {\n  content: '\\e691';\n}\n\n.mdo-thumb_up_alt:after {\n  content: '\\e693';\n}\n\n.mdo-thumbs_up_down:after {\n  content: '\\e695';\n}\n\n.mdo-time_to_leave:after {\n  content: '\\e697';\n}\n\n.mdo-timelapse:after {\n  content: '\\e699';\n}\n\n.mdo-timeline:after {\n  content: '\\e69b';\n}\n\n.mdo-timer:after {\n  content: '\\e69c';\n}\n\n.mdo-timer_10:after {\n  content: '\\e69e';\n}\n\n.mdo-timer_3:after {\n  content: '\\e69f';\n}\n\n.mdo-timer_off:after {\n  content: '\\e6a0';\n}\n\n.mdo-title:after {\n  content: '\\e6a2';\n}\n\n.mdo-toc:after {\n  content: '\\e6a3';\n}\n\n.mdo-today:after {\n  content: '\\e6a4';\n}\n\n.mdo-toggle_off:after {\n  content: '\\e6a6';\n}\n\n.mdo-toggle_on:after {\n  content: '\\e6a8';\n}\n\n.mdo-toll:after {\n  content: '\\e6aa';\n}\n\n.mdo-tonality:after {\n  content: '\\e6ac';\n}\n\n.mdo-touch_app:after {\n  content: '\\e6ae';\n}\n\n.mdo-toys:after {\n  content: '\\e6b0';\n}\n\n.mdo-track_changes:after {\n  content: '\\e6b2';\n}\n\n.mdo-traffic:after {\n  content: '\\e6b3';\n}\n\n.mdo-train:after {\n  content: '\\e6b5';\n}\n\n.mdo-tram:after {\n  content: '\\e6b7';\n}\n\n.mdo-transfer_within_a_station:after {\n  content: '\\e6b9';\n}\n\n.mdo-transform:after {\n  content: '\\e6ba';\n}\n\n.mdo-transit_enterexit:after {\n  content: '\\e6bb';\n}\n\n.mdo-translate:after {\n  content: '\\e6bc';\n}\n\n.mdo-trending_down:after {\n  content: '\\e6bd';\n}\n\n.mdo-trending_flat:after {\n  content: '\\e6be';\n}\n\n.mdo-trending_up:after {\n  content: '\\e6bf';\n}\n\n.mdo-trip_origin:after {\n  content: '\\e6c0';\n}\n\n.mdo-tune:after {\n  content: '\\e6c1';\n}\n\n.mdo-turned_in:after {\n  content: '\\e6c2';\n}\n\n.mdo-turned_in_not:after {\n  content: '\\e6c4';\n}\n\n.mdo-tv:after {\n  content: '\\e6c5';\n}\n\n.mdo-tv_off:after {\n  content: '\\e6c7';\n}\n\n.mdo-unarchive:after {\n  content: '\\e6c9';\n}\n\n.mdo-undo:after {\n  content: '\\e6cb';\n}\n\n.mdo-unfold_less:after {\n  content: '\\e6cc';\n}\n\n.mdo-unfold_more:after {\n  content: '\\e6cd';\n}\n\n.mdo-unsubscribe:after {\n  content: '\\e6ce';\n}\n\n.mdo-update:after {\n  content: '\\e6d0';\n}\n\n.mdo-usb:after {\n  content: '\\e6d1';\n}\n\n.mdo-verified_user:after {\n  content: '\\e6d2';\n}\n\n.mdo-vertical_align_bottom:after {\n  content: '\\e6d4';\n}\n\n.mdo-vertical_align_center:after {\n  content: '\\e6d5';\n}\n\n.mdo-vertical_align_top:after {\n  content: '\\e6d6';\n}\n\n.mdo-vertical_split:after {\n  content: '\\e6d7';\n}\n\n.mdo-vibration:after {\n  content: '\\e6d9';\n}\n\n.mdo-video_call:after {\n  content: '\\e6db';\n}\n\n.mdo-video_label:after {\n  content: '\\e6dd';\n}\n\n.mdo-video_library:after {\n  content: '\\e6df';\n}\n\n.mdo-videocam:after {\n  content: '\\e6e1';\n}\n\n.mdo-videocam_off:after {\n  content: '\\e6e3';\n}\n\n.mdo-videogame_asset:after {\n  content: '\\e6e5';\n}\n\n.mdo-view_agenda:after {\n  content: '\\e6e7';\n}\n\n.mdo-view_array:after {\n  content: '\\e6e9';\n}\n\n.mdo-view_carousel:after {\n  content: '\\e6eb';\n}\n\n.mdo-view_column:after {\n  content: '\\e6ed';\n}\n\n.mdo-view_comfy:after {\n  content: '\\e6ef';\n}\n\n.mdo-view_compact:after {\n  content: '\\e6f1';\n}\n\n.mdo-view_day:after {\n  content: '\\e6f3';\n}\n\n.mdo-view_headline:after {\n  content: '\\e6f5';\n}\n\n.mdo-view_list:after {\n  content: '\\e6f6';\n}\n\n.mdo-view_module:after {\n  content: '\\e6f8';\n}\n\n.mdo-view_quilt:after {\n  content: '\\e6fa';\n}\n\n.mdo-view_stream:after {\n  content: '\\e6fc';\n}\n\n.mdo-view_week:after {\n  content: '\\e6fe';\n}\n\n.mdo-vignette:after {\n  content: '\\e700';\n}\n\n.mdo-visibility:after {\n  content: '\\e702';\n}\n\n.mdo-visibility_off:after {\n  content: '\\e704';\n}\n\n.mdo-voice_chat:after {\n  content: '\\e706';\n}\n\n.mdo-voice_over_off:after {\n  content: '\\e708';\n}\n\n.mdo-voicemail:after {\n  content: '\\e70a';\n}\n\n.mdo-volume_down:after {\n  content: '\\e70b';\n}\n\n.mdo-volume_mute:after {\n  content: '\\e70d';\n}\n\n.mdo-volume_off:after {\n  content: '\\e70f';\n}\n\n.mdo-volume_up:after {\n  content: '\\e711';\n}\n\n.mdo-vpn_key:after {\n  content: '\\e713';\n}\n\n.mdo-vpn_lock:after {\n  content: '\\e715';\n}\n\n.mdo-wallpaper:after {\n  content: '\\e717';\n}\n\n.mdo-warning:after {\n  content: '\\e718';\n}\n\n.mdo-watch:after {\n  content: '\\e71a';\n}\n\n.mdo-watch_later:after {\n  content: '\\e71c';\n}\n\n.mdo-waves:after {\n  content: '\\e71e';\n}\n\n.mdo-wb_auto:after {\n  content: '\\e71f';\n}\n\n.mdo-wb_cloudy:after {\n  content: '\\e721';\n}\n\n.mdo-wb_incandescent:after {\n  content: '\\e723';\n}\n\n.mdo-wb_iridescent:after {\n  content: '\\e725';\n}\n\n.mdo-wb_sunny:after {\n  content: '\\e727';\n}\n\n.mdo-wc:after {\n  content: '\\e729';\n}\n\n.mdo-web:after {\n  content: '\\e72a';\n}\n\n.mdo-web_asset:after {\n  content: '\\e72c';\n}\n\n.mdo-weekend:after {\n  content: '\\e72e';\n}\n\n.mdo-whatshot:after {\n  content: '\\e730';\n}\n\n.mdo-where_to_vote:after {\n  content: '\\e732';\n}\n\n.mdo-widgets:after {\n  content: '\\e734';\n}\n\n.mdo-wifi:after {\n  content: '\\e736';\n}\n\n.mdo-wifi_lock:after {\n  content: '\\e737';\n}\n\n.mdo-wifi_off:after {\n  content: '\\e738';\n}\n\n.mdo-wifi_tethering:after {\n  content: '\\e739';\n}\n\n.mdo-work:after {\n  content: '\\e73a';\n}\n\n.mdo-work_off:after {\n  content: '\\e73c';\n}\n\n.mdo-work_outline:after {\n  content: '\\e73e';\n}\n\n.mdo-wrap_text:after {\n  content: '\\e73f';\n}\n\n.mdo-youtube_searched_for:after {\n  content: '\\e740';\n}\n\n.mdo-zoom_in:after {\n  content: '\\e741';\n}\n\n.mdo-zoom_out:after {\n  content: '\\e742';\n}\n\n.mdo-zoom_out_map:after {\n  content: '\\e743';\n}\n\n.mdo-add_ic_call:after {\n  content: '\\e744';\n}\n\n.mdo-library_add_check:after {\n  content: '\\e746';\n}\n\n.mdo-star_outline:after {\n  content: '\\e748';\n}\n\n.mdo-two_wheeler:after {\n  content: '\\e749';\n}\n\n.mdo-5g:after {\n  content: '\\e74a';\n}\n\n.mdo-ad_units:after {\n  content: '\\e74b';\n}\n\n.mdo-add_business:after {\n  content: '\\e74d';\n}\n\n.mdo-add_location_alt:after {\n  content: '\\e74f';\n}\n\n.mdo-add_road:after {\n  content: '\\e751';\n}\n\n.mdo-addchart:after {\n  content: '\\e752';\n}\n\n.mdo-admin_panel_settings:after {\n  content: '\\e753';\n}\n\n.mdo-agriculture:after {\n  content: '\\e755';\n}\n\n.mdo-alt_route:after {\n  content: '\\e757';\n}\n\n.mdo-analytics:after {\n  content: '\\e758';\n}\n\n.mdo-anchor:after {\n  content: '\\e75a';\n}\n\n.mdo-api:after {\n  content: '\\e75b';\n}\n\n.mdo-app_blocking:after {\n  content: '\\e75c';\n}\n\n.mdo-app_settings_alt:after {\n  content: '\\e75e';\n}\n\n.mdo-architecture:after {\n  content: '\\e760';\n}\n\n.mdo-arrow_circle_down:after {\n  content: '\\e761';\n}\n\n.mdo-arrow_circle_up:after {\n  content: '\\e763';\n}\n\n.mdo-article:after {\n  content: '\\e765';\n}\n\n.mdo-attach_email:after {\n  content: '\\e767';\n}\n\n.mdo-auto_delete:after {\n  content: '\\e768';\n}\n\n.mdo-baby_changing_station:after {\n  content: '\\e76a';\n}\n\n.mdo-backpack:after {\n  content: '\\e76b';\n}\n\n.mdo-backup_table:after {\n  content: '\\e76d';\n}\n\n.mdo-batch_prediction:after {\n  content: '\\e76f';\n}\n\n.mdo-bedtime:after {\n  content: '\\e771';\n}\n\n.mdo-bike_scooter:after {\n  content: '\\e773';\n}\n\n.mdo-biotech:after {\n  content: '\\e774';\n}\n\n.mdo-browser_not_supported:after {\n  content: '\\e776';\n}\n\n.mdo-build_circle:after {\n  content: '\\e777';\n}\n\n.mdo-calculate:after {\n  content: '\\e779';\n}\n\n.mdo-campaign:after {\n  content: '\\e77b';\n}\n\n.mdo-charging_station:after {\n  content: '\\e77d';\n}\n\n.mdo-checkroom:after {\n  content: '\\e77f';\n}\n\n.mdo-cleaning_services:after {\n  content: '\\e780';\n}\n\n.mdo-close_fullscreen:after {\n  content: '\\e782';\n}\n\n.mdo-comment_bank:after {\n  content: '\\e783';\n}\n\n.mdo-construction:after {\n  content: '\\e785';\n}\n\n.mdo-corporate_fare:after {\n  content: '\\e786';\n}\n\n.mdo-design_services:after {\n  content: '\\e788';\n}\n\n.mdo-directions_off:after {\n  content: '\\e78a';\n}\n\n.mdo-do_not_step:after {\n  content: '\\e78b';\n}\n\n.mdo-do_not_touch:after {\n  content: '\\e78d';\n}\n\n.mdo-domain_verification:after {\n  content: '\\e78f';\n}\n\n.mdo-dry:after {\n  content: '\\e791';\n}\n\n.mdo-dynamic_form:after {\n  content: '\\e793';\n}\n\n.mdo-edit_road:after {\n  content: '\\e795';\n}\n\n.mdo-electric_bike:after {\n  content: '\\e797';\n}\n\n.mdo-electric_car:after {\n  content: '\\e798';\n}\n\n.mdo-electric_moped:after {\n  content: '\\e79a';\n}\n\n.mdo-electric_scooter:after {\n  content: '\\e79c';\n}\n\n.mdo-electrical_services:after {\n  content: '\\e79d';\n}\n\n.mdo-elevator:after {\n  content: '\\e79e';\n}\n\n.mdo-engineering:after {\n  content: '\\e7a0';\n}\n\n.mdo-escalator:after {\n  content: '\\e7a2';\n}\n\n.mdo-escalator_warning:after {\n  content: '\\e7a4';\n}\n\n.mdo-fact_check:after {\n  content: '\\e7a5';\n}\n\n.mdo-family_restroom:after {\n  content: '\\e7a7';\n}\n\n.mdo-filter_alt:after {\n  content: '\\e7a8';\n}\n\n.mdo-flaky:after {\n  content: '\\e7aa';\n}\n\n.mdo-forward_to_inbox:after {\n  content: '\\e7ab';\n}\n\n.mdo-grading:after {\n  content: '\\e7ad';\n}\n\n.mdo-handyman:after {\n  content: '\\e7ae';\n}\n\n.mdo-hearing_disabled:after {\n  content: '\\e7b0';\n}\n\n.mdo-help_center:after {\n  content: '\\e7b1';\n}\n\n.mdo-highlight_alt:after {\n  content: '\\e7b3';\n}\n\n.mdo-history_edu:after {\n  content: '\\e7b4';\n}\n\n.mdo-history_toggle_off:after {\n  content: '\\e7b6';\n}\n\n.mdo-home_repair_service:after {\n  content: '\\e7b7';\n}\n\n.mdo-horizontal_rule:after {\n  content: '\\e7b9';\n}\n\n.mdo-hourglass_bottom:after {\n  content: '\\e7ba';\n}\n\n.mdo-hourglass_disabled:after {\n  content: '\\e7bc';\n}\n\n.mdo-hourglass_top:after {\n  content: '\\e7bd';\n}\n\n.mdo-hvac:after {\n  content: '\\e7bf';\n}\n\n.mdo-image_not_supported:after {\n  content: '\\e7c1';\n}\n\n.mdo-insights:after {\n  content: '\\e7c3';\n}\n\n.mdo-integration_instructions:after {\n  content: '\\e7c4';\n}\n\n.mdo-legend_toggle:after {\n  content: '\\e7c6';\n}\n\n.mdo-login:after {\n  content: '\\e7c7';\n}\n\n.mdo-maps_ugc:after {\n  content: '\\e7c8';\n}\n\n.mdo-mark_chat_read:after {\n  content: '\\e7ca';\n}\n\n.mdo-mark_chat_unread:after {\n  content: '\\e7cc';\n}\n\n.mdo-mark_email_read:after {\n  content: '\\e7ce';\n}\n\n.mdo-mark_email_unread:after {\n  content: '\\e7d0';\n}\n\n.mdo-mediation:after {\n  content: '\\e7d2';\n}\n\n.mdo-medical_services:after {\n  content: '\\e7d3';\n}\n\n.mdo-military_tech:after {\n  content: '\\e7d5';\n}\n\n.mdo-miscellaneous_services:after {\n  content: '\\e7d7';\n}\n\n.mdo-model_training:after {\n  content: '\\e7d8';\n}\n\n.mdo-moped:after {\n  content: '\\e7d9';\n}\n\n.mdo-more_time:after {\n  content: '\\e7db';\n}\n\n.mdo-multiple_stop:after {\n  content: '\\e7dc';\n}\n\n.mdo-nat:after {\n  content: '\\e7dd';\n}\n\n.mdo-next_plan:after {\n  content: '\\e7df';\n}\n\n.mdo-no_cell:after {\n  content: '\\e7e1';\n}\n\n.mdo-no_drinks:after {\n  content: '\\e7e3';\n}\n\n.mdo-no_flash:after {\n  content: '\\e7e5';\n}\n\n.mdo-no_food:after {\n  content: '\\e7e7';\n}\n\n.mdo-no_photography:after {\n  content: '\\e7e9';\n}\n\n.mdo-no_stroller:after {\n  content: '\\e7eb';\n}\n\n.mdo-not_accessible:after {\n  content: '\\e7ed';\n}\n\n.mdo-not_started:after {\n  content: '\\e7ee';\n}\n\n.mdo-online_prediction:after {\n  content: '\\e7f0';\n}\n\n.mdo-open_in_full:after {\n  content: '\\e7f1';\n}\n\n.mdo-outlet:after {\n  content: '\\e7f2';\n}\n\n.mdo-payments:after {\n  content: '\\e7f4';\n}\n\n.mdo-pedal_bike:after {\n  content: '\\e7f6';\n}\n\n.mdo-pending:after {\n  content: '\\e7f7';\n}\n\n.mdo-pending_actions:after {\n  content: '\\e7f9';\n}\n\n.mdo-person_add_alt_1:after {\n  content: '\\e7fb';\n}\n\n.mdo-person_remove:after {\n  content: '\\e7fd';\n}\n\n.mdo-person_remove_alt_1:after {\n  content: '\\e7ff';\n}\n\n.mdo-person_search:after {\n  content: '\\e801';\n}\n\n.mdo-pest_control:after {\n  content: '\\e803';\n}\n\n.mdo-pest_control_rodent:after {\n  content: '\\e805';\n}\n\n.mdo-plagiarism:after {\n  content: '\\e807';\n}\n\n.mdo-plumbing:after {\n  content: '\\e809';\n}\n\n.mdo-point_of_sale:after {\n  content: '\\e80a';\n}\n\n.mdo-preview:after {\n  content: '\\e80c';\n}\n\n.mdo-privacy_tip:after {\n  content: '\\e80e';\n}\n\n.mdo-psychology:after {\n  content: '\\e810';\n}\n\n.mdo-public_off:after {\n  content: '\\e812';\n}\n\n.mdo-push_pin:after {\n  content: '\\e814';\n}\n\n.mdo-qr_code:after {\n  content: '\\e816';\n}\n\n.mdo-quickreply:after {\n  content: '\\e818';\n}\n\n.mdo-read_more:after {\n  content: '\\e81a';\n}\n\n.mdo-receipt_long:after {\n  content: '\\e81b';\n}\n\n.mdo-request_quote:after {\n  content: '\\e81d';\n}\n\n.mdo-room_preferences:after {\n  content: '\\e81f';\n}\n\n.mdo-rule:after {\n  content: '\\e821';\n}\n\n.mdo-rule_folder:after {\n  content: '\\e822';\n}\n\n.mdo-run_circle:after {\n  content: '\\e824';\n}\n\n.mdo-science:after {\n  content: '\\e826';\n}\n\n.mdo-search_off:after {\n  content: '\\e828';\n}\n\n.mdo-self_improvement:after {\n  content: '\\e829';\n}\n\n.mdo-sensor_door:after {\n  content: '\\e82a';\n}\n\n.mdo-sensor_window:after {\n  content: '\\e82c';\n}\n\n.mdo-shopping_bag:after {\n  content: '\\e82e';\n}\n\n.mdo-smart_button:after {\n  content: '\\e830';\n}\n\n.mdo-snippet_folder:after {\n  content: '\\e831';\n}\n\n.mdo-soap:after {\n  content: '\\e833';\n}\n\n.mdo-source:after {\n  content: '\\e835';\n}\n\n.mdo-stairs:after {\n  content: '\\e837';\n}\n\n.mdo-stroller:after {\n  content: '\\e839';\n}\n\n.mdo-subscript:after {\n  content: '\\e83b';\n}\n\n.mdo-subtitles_off:after {\n  content: '\\e83c';\n}\n\n.mdo-superscript:after {\n  content: '\\e83e';\n}\n\n.mdo-support:after {\n  content: '\\e83f';\n}\n\n.mdo-support_agent:after {\n  content: '\\e841';\n}\n\n.mdo-switch_left:after {\n  content: '\\e842';\n}\n\n.mdo-switch_right:after {\n  content: '\\e844';\n}\n\n.mdo-table_rows:after {\n  content: '\\e846';\n}\n\n.mdo-table_view:after {\n  content: '\\e848';\n}\n\n.mdo-text_snippet:after {\n  content: '\\e84a';\n}\n\n.mdo-topic:after {\n  content: '\\e84c';\n}\n\n.mdo-tour:after {\n  content: '\\e84e';\n}\n\n.mdo-tty:after {\n  content: '\\e850';\n}\n\n.mdo-umbrella:after {\n  content: '\\e852';\n}\n\n.mdo-upgrade:after {\n  content: '\\e854';\n}\n\n.mdo-verified:after {\n  content: '\\e855';\n}\n\n.mdo-video_settings:after {\n  content: '\\e857';\n}\n\n.mdo-view_sidebar:after {\n  content: '\\e858';\n}\n\n.mdo-wash:after {\n  content: '\\e85a';\n}\n\n.mdo-wheelchair_pickup:after {\n  content: '\\e85c';\n}\n\n.mdo-wifi_calling:after {\n  content: '\\e85d';\n}\n\n.mdo-wifi_protected_setup:after {\n  content: '\\e85f';\n}\n\n.mdo-wrong_location:after {\n  content: '\\e860';\n}\n\n.mdo-wysiwyg:after {\n  content: '\\e861';\n}\n\n.mdo-bento:after {\n  content: '\\e864';\n}\n\n.mdo-carpenter:after {\n  content: '\\e866';\n}\n\n.mdo-closed_caption_disabled:after {\n  content: '\\e868';\n}\n\n.mdo-countertops:after {\n  content: '\\e86a';\n}\n\n.mdo-east:after {\n  content: '\\e86c';\n}\n\n.mdo-fence:after {\n  content: '\\e86d';\n}\n\n.mdo-fire_extinguisher:after {\n  content: '\\e86f';\n}\n\n.mdo-food_bank:after {\n  content: '\\e870';\n}\n\n.mdo-foundation:after {\n  content: '\\e872';\n}\n\n.mdo-grass:after {\n  content: '\\e874';\n}\n\n.mdo-house_siding:after {\n  content: '\\e875';\n}\n\n.mdo-leaderboard:after {\n  content: '\\e877';\n}\n\n.mdo-microwave:after {\n  content: '\\e879';\n}\n\n.mdo-near_me_disabled:after {\n  content: '\\e87b';\n}\n\n.mdo-night_shelter:after {\n  content: '\\e87d';\n}\n\n.mdo-no_meals:after {\n  content: '\\e87f';\n}\n\n.mdo-no_transfer:after {\n  content: '\\e880';\n}\n\n.mdo-north:after {\n  content: '\\e882';\n}\n\n.mdo-north_east:after {\n  content: '\\e883';\n}\n\n.mdo-north_west:after {\n  content: '\\e884';\n}\n\n.mdo-qr_code_scanner:after {\n  content: '\\e885';\n}\n\n.mdo-rice_bowl:after {\n  content: '\\e886';\n}\n\n.mdo-roofing:after {\n  content: '\\e888';\n}\n\n.mdo-set_meal:after {\n  content: '\\e88a';\n}\n\n.mdo-south:after {\n  content: '\\e88c';\n}\n\n.mdo-south_east:after {\n  content: '\\e88d';\n}\n\n.mdo-south_west:after {\n  content: '\\e88e';\n}\n\n.mdo-sports_bar:after {\n  content: '\\e88f';\n}\n\n.mdo-sticky_note_2:after {\n  content: '\\e891';\n}\n\n.mdo-tapas:after {\n  content: '\\e893';\n}\n\n.mdo-water_damage:after {\n  content: '\\e895';\n}\n\n.mdo-west:after {\n  content: '\\e897';\n}\n\n.mdo-wine_bar:after {\n  content: '\\e898';\n}\n\n.mdo-6_ft_apart:after {\n  content: '\\e89a';\n}\n\n.mdo-book_online:after {\n  content: '\\e89b';\n}\n\n.mdo-clean_hands:after {\n  content: '\\e89d';\n}\n\n.mdo-connect_without_contact:after {\n  content: '\\e89f';\n}\n\n.mdo-coronavirus:after {\n  content: '\\e8a0';\n}\n\n.mdo-elderly:after {\n  content: '\\e8a2';\n}\n\n.mdo-follow_the_signs:after {\n  content: '\\e8a3';\n}\n\n.mdo-leave_bags_at_home:after {\n  content: '\\e8a5';\n}\n\n.mdo-local_fire_department:after {\n  content: '\\e8a7';\n}\n\n.mdo-local_police:after {\n  content: '\\e8a9';\n}\n\n.mdo-masks:after {\n  content: '\\e8ab';\n}\n\n.mdo-motion_photos_on:after {\n  content: '\\e8ad';\n}\n\n.mdo-motion_photos_paused:after {\n  content: '\\e8ae';\n}\n\n.mdo-reduce_capacity:after {\n  content: '\\e8af';\n}\n\n.mdo-sanitizer:after {\n  content: '\\e8b0';\n}\n\n.mdo-sick:after {\n  content: '\\e8b2';\n}\n\n.mdo-add_task:after {\n  content: '\\e8b3';\n}\n\n.mdo-contact_page:after {\n  content: '\\e8b4';\n}\n\n.mdo-disabled_by_default:after {\n  content: '\\e8b6';\n}\n\n.mdo-facebook:after {\n  content: '\\e8b8';\n}\n\n.mdo-groups:after {\n  content: '\\e8b9';\n}\n\n.mdo-luggage:after {\n  content: '\\e8bb';\n}\n\n.mdo-motion_photos_pause:after {\n  content: '\\e8bd';\n}\n\n.mdo-no_backpack:after {\n  content: '\\e8be';\n}\n\n.mdo-no_luggage:after {\n  content: '\\e8c0';\n}\n\n.mdo-outbond:after {\n  content: '\\e8c2';\n}\n\n.mdo-published_with_changes:after {\n  content: '\\e8c4';\n}\n\n.mdo-request_page:after {\n  content: '\\e8c5';\n}\n\n.mdo-stacked_line_chart:after {\n  content: '\\e8c7';\n}\n\n.mdo-unpublished:after {\n  content: '\\e8c8';\n}\n\n.mdo-align_horizontal_center:after {\n  content: '\\e8ca';\n}\n\n.mdo-align_horizontal_left:after {\n  content: '\\e8cb';\n}\n\n.mdo-align_horizontal_right:after {\n  content: '\\e8cc';\n}\n\n.mdo-align_vertical_bottom:after {\n  content: '\\e8cd';\n}\n\n.mdo-align_vertical_center:after {\n  content: '\\e8ce';\n}\n\n.mdo-align_vertical_top:after {\n  content: '\\e8cf';\n}\n\n.mdo-horizontal_distribute:after {\n  content: '\\e8d0';\n}\n\n.mdo-qr_code_2:after {\n  content: '\\e8d1';\n}\n\n.mdo-update_disabled:after {\n  content: '\\e8d2';\n}\n\n.mdo-vertical_distribute:after {\n  content: '\\e8d3';\n}\n"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/resources/META-INF/resources/material2/20200820/css/md-round.css",
    "content": "@font-face {\n  font-family: \"Material Icons Round\";\n  font-style: normal;\n  font-weight: 400;\n  font-display: block;\n  src: url(\"../fonts/MaterialIcons-Round.ttf\");\n  /* For IE6-8 */\n  src: url(\"../fonts/MaterialIcons-Round.woff2\") format(\"woff2\"), url(\"../fonts/MaterialIcons-Round.woff\") format(\"woff\"), url(\"../fonts/MaterialIcons-Round.ttf\") format(\"truetype\");\n}\n\n.mdr {\n  font-family: \"Material Icons Round\";\n  font-weight: normal;\n  font-style: normal;\n  font-size: 24px;\n  display: inline-block;\n  line-height: 1;\n  text-transform: none;\n  letter-spacing: normal;\n  -ms-word-wrap: normal;\n  word-wrap: normal;\n  white-space: nowrap;\n  direction: ltr;\n  text-rendering: optimizeLegibility;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  position: relative;\n}\n\n.mdr:before {\n  position: absolute;\n  left: 0;\n  right: 0;\n  top: 0;\n  bottom: 0;\n  opacity: .3;\n}\n\n.mdr:after {\n  opacity: 1;\n}\n\n/* Rules for sizing the icon. */\n.mdr-18 {\n  font-size: 18px;\n}\n\n.mdr-24 {\n  font-size: 24px;\n}\n\n.mdr-36 {\n  font-size: 36px;\n}\n\n.mdr-48 {\n  font-size: 48px;\n}\n\n/* Rules for using icons as black on a light background. */\n.mdr-dark {\n  color: rgba(0, 0, 0, 0.54);\n}\n\n.mdr-dark.mdr-inactive {\n  color: rgba(0, 0, 0, 0.26);\n}\n\n/* Rules for using icons as white on a dark background. */\n.mdr-light {\n  color: white;\n}\n\n.mdr-light.mdr-inactive {\n  color: rgba(255, 255, 255, 0.3);\n}\n\n/* Icons. */\n.mdr-360:after {\n  content: '\\e000';\n}\n\n.mdr-3d_rotation:after {\n  content: '\\e001';\n}\n\n.mdr-4k:after {\n  content: '\\e002';\n}\n\n.mdr-ac_unit:after {\n  content: '\\e004';\n}\n\n.mdr-access_alarm:after {\n  content: '\\e005';\n}\n\n.mdr-access_alarms:after {\n  content: '\\e007';\n}\n\n.mdr-access_time:after {\n  content: '\\e009';\n}\n\n.mdr-accessibility:after {\n  content: '\\e00b';\n}\n\n.mdr-accessibility_new:after {\n  content: '\\e00c';\n}\n\n.mdr-accessible:after {\n  content: '\\e00d';\n}\n\n.mdr-accessible_forward:after {\n  content: '\\e00e';\n}\n\n.mdr-account_balance:after {\n  content: '\\e00f';\n}\n\n.mdr-account_balance_wallet:after {\n  content: '\\e011';\n}\n\n.mdr-account_box:after {\n  content: '\\e013';\n}\n\n.mdr-account_circle:after {\n  content: '\\e015';\n}\n\n.mdr-account_tree:after {\n  content: '\\e017';\n}\n\n.mdr-adb:after {\n  content: '\\e019';\n}\n\n.mdr-add:after {\n  content: '\\e01a';\n}\n\n.mdr-add_a_photo:after {\n  content: '\\e01b';\n}\n\n.mdr-add_alarm:after {\n  content: '\\e01d';\n}\n\n.mdr-add_alert:after {\n  content: '\\e01f';\n}\n\n.mdr-add_box:after {\n  content: '\\e021';\n}\n\n.mdr-add_circle:after {\n  content: '\\e023';\n}\n\n.mdr-add_circle_outline:after {\n  content: '\\e025';\n}\n\n.mdr-add_comment:after {\n  content: '\\e026';\n}\n\n.mdr-add_location:after {\n  content: '\\e028';\n}\n\n.mdr-add_photo_alternate:after {\n  content: '\\e02a';\n}\n\n.mdr-add_shopping_cart:after {\n  content: '\\e02c';\n}\n\n.mdr-add_to_home_screen:after {\n  content: '\\e02d';\n}\n\n.mdr-add_to_photos:after {\n  content: '\\e02e';\n}\n\n.mdr-add_to_queue:after {\n  content: '\\e030';\n}\n\n.mdr-adjust:after {\n  content: '\\e032';\n}\n\n.mdr-airline_seat_flat:after {\n  content: '\\e033';\n}\n\n.mdr-airline_seat_flat_angled:after {\n  content: '\\e035';\n}\n\n.mdr-airline_seat_individual_suite:after {\n  content: '\\e037';\n}\n\n.mdr-airline_seat_legroom_extra:after {\n  content: '\\e039';\n}\n\n.mdr-airline_seat_legroom_normal:after {\n  content: '\\e03a';\n}\n\n.mdr-airline_seat_legroom_reduced:after {\n  content: '\\e03b';\n}\n\n.mdr-airline_seat_recline_extra:after {\n  content: '\\e03c';\n}\n\n.mdr-airline_seat_recline_normal:after {\n  content: '\\e03d';\n}\n\n.mdr-airplanemode_active:after {\n  content: '\\e03e';\n}\n\n.mdr-airplanemode_inactive:after {\n  content: '\\e03f';\n}\n\n.mdr-airplay:after {\n  content: '\\e040';\n}\n\n.mdr-airport_shuttle:after {\n  content: '\\e041';\n}\n\n.mdr-alarm:after {\n  content: '\\e043';\n}\n\n.mdr-alarm_add:after {\n  content: '\\e045';\n}\n\n.mdr-alarm_off:after {\n  content: '\\e047';\n}\n\n.mdr-alarm_on:after {\n  content: '\\e048';\n}\n\n.mdr-album:after {\n  content: '\\e04a';\n}\n\n.mdr-all_inbox:after {\n  content: '\\e04c';\n}\n\n.mdr-all_inclusive:after {\n  content: '\\e04e';\n}\n\n.mdr-all_out:after {\n  content: '\\e04f';\n}\n\n.mdr-alternate_email:after {\n  content: '\\e051';\n}\n\n.mdr-amp_stories:after {\n  content: '\\e053';\n}\n\n.mdr-android:after {\n  content: '\\e055';\n}\n\n.mdr-announcement:after {\n  content: '\\e056';\n}\n\n.mdr-apartment:after {\n  content: '\\e058';\n}\n\n.mdr-apps:after {\n  content: '\\e059';\n}\n\n.mdr-archive:after {\n  content: '\\e05a';\n}\n\n.mdr-arrow_back:after {\n  content: '\\e05c';\n}\n\n.mdr-arrow_back_ios:after {\n  content: '\\e05d';\n}\n\n.mdr-arrow_downward:after {\n  content: '\\e05e';\n}\n\n.mdr-arrow_drop_down:after {\n  content: '\\e05f';\n}\n\n.mdr-arrow_drop_down_circle:after {\n  content: '\\e060';\n}\n\n.mdr-arrow_drop_up:after {\n  content: '\\e062';\n}\n\n.mdr-arrow_forward:after {\n  content: '\\e063';\n}\n\n.mdr-arrow_forward_ios:after {\n  content: '\\e064';\n}\n\n.mdr-arrow_left:after {\n  content: '\\e065';\n}\n\n.mdr-arrow_right:after {\n  content: '\\e066';\n}\n\n.mdr-arrow_right_alt:after {\n  content: '\\e067';\n}\n\n.mdr-arrow_upward:after {\n  content: '\\e068';\n}\n\n.mdr-art_track:after {\n  content: '\\e069';\n}\n\n.mdr-aspect_ratio:after {\n  content: '\\e06a';\n}\n\n.mdr-assessment:after {\n  content: '\\e06c';\n}\n\n.mdr-assignment:after {\n  content: '\\e06e';\n}\n\n.mdr-assignment_ind:after {\n  content: '\\e070';\n}\n\n.mdr-assignment_late:after {\n  content: '\\e072';\n}\n\n.mdr-assignment_return:after {\n  content: '\\e074';\n}\n\n.mdr-assignment_returned:after {\n  content: '\\e076';\n}\n\n.mdr-assignment_turned_in:after {\n  content: '\\e078';\n}\n\n.mdr-assistant:after {\n  content: '\\e07a';\n}\n\n.mdr-assistant_photo:after {\n  content: '\\e07c';\n}\n\n.mdr-atm:after {\n  content: '\\e07e';\n}\n\n.mdr-attach_file:after {\n  content: '\\e07f';\n}\n\n.mdr-attach_money:after {\n  content: '\\e080';\n}\n\n.mdr-attachment:after {\n  content: '\\e081';\n}\n\n.mdr-audiotrack:after {\n  content: '\\e082';\n}\n\n.mdr-autorenew:after {\n  content: '\\e084';\n}\n\n.mdr-av_timer:after {\n  content: '\\e085';\n}\n\n.mdr-backspace:after {\n  content: '\\e086';\n}\n\n.mdr-backup:after {\n  content: '\\e088';\n}\n\n.mdr-ballot:after {\n  content: '\\e08a';\n}\n\n.mdr-bar_chart:after {\n  content: '\\e08c';\n}\n\n.mdr-barcode:after {\n  content: '\\e08d';\n}\n\n.mdr-bathtub:after {\n  content: '\\e08e';\n}\n\n.mdr-battery_20:after {\n  content: '\\e090';\n}\n\n.mdr-battery_20:before {\n  content: '\\e091';\n}\n\n.mdr-battery_30:after {\n  content: '\\e092';\n}\n\n.mdr-battery_30:before {\n  content: '\\e093';\n}\n\n.mdr-battery_50:after {\n  content: '\\e094';\n}\n\n.mdr-battery_50:before {\n  content: '\\e095';\n}\n\n.mdr-battery_60:after {\n  content: '\\e096';\n}\n\n.mdr-battery_60:before {\n  content: '\\e097';\n}\n\n.mdr-battery_80:after {\n  content: '\\e098';\n}\n\n.mdr-battery_80:before {\n  content: '\\e099';\n}\n\n.mdr-battery_90:after {\n  content: '\\e09a';\n}\n\n.mdr-battery_90:before {\n  content: '\\e09b';\n}\n\n.mdr-battery_alert:after {\n  content: '\\e09c';\n}\n\n.mdr-battery_charging_20:after {\n  content: '\\e09d';\n}\n\n.mdr-battery_charging_20:before {\n  content: '\\e09e';\n}\n\n.mdr-battery_charging_30:after {\n  content: '\\e09f';\n}\n\n.mdr-battery_charging_30:before {\n  content: '\\e0a0';\n}\n\n.mdr-battery_charging_50:after {\n  content: '\\e0a1';\n}\n\n.mdr-battery_charging_50:before {\n  content: '\\e0a2';\n}\n\n.mdr-battery_charging_60:after {\n  content: '\\e0a3';\n}\n\n.mdr-battery_charging_60:before {\n  content: '\\e0a4';\n}\n\n.mdr-battery_charging_80:after {\n  content: '\\e0a5';\n}\n\n.mdr-battery_charging_80:before {\n  content: '\\e0a6';\n}\n\n.mdr-battery_charging_90:after {\n  content: '\\e0a7';\n}\n\n.mdr-battery_charging_90:before {\n  content: '\\e0a8';\n}\n\n.mdr-battery_charging_full:after {\n  content: '\\e0a9';\n}\n\n.mdr-battery_full:after {\n  content: '\\e0aa';\n}\n\n.mdr-battery_std:after {\n  content: '\\e0ab';\n}\n\n.mdr-battery_unknown:after {\n  content: '\\e0ac';\n}\n\n.mdr-beach_access:after {\n  content: '\\e0ad';\n}\n\n.mdr-beenhere:after {\n  content: '\\e0af';\n}\n\n.mdr-block:after {\n  content: '\\e0b1';\n}\n\n.mdr-bluetooth:after {\n  content: '\\e0b2';\n}\n\n.mdr-bluetooth_audio:after {\n  content: '\\e0b3';\n}\n\n.mdr-bluetooth_connected:after {\n  content: '\\e0b4';\n}\n\n.mdr-bluetooth_disabled:after {\n  content: '\\e0b5';\n}\n\n.mdr-bluetooth_searching:after {\n  content: '\\e0b6';\n}\n\n.mdr-blur_circular:after {\n  content: '\\e0b7';\n}\n\n.mdr-blur_linear:after {\n  content: '\\e0b8';\n}\n\n.mdr-blur_off:after {\n  content: '\\e0b9';\n}\n\n.mdr-blur_on:after {\n  content: '\\e0ba';\n}\n\n.mdr-book:after {\n  content: '\\e0bb';\n}\n\n.mdr-bookmark:after {\n  content: '\\e0bd';\n}\n\n.mdr-bookmark_border:after {\n  content: '\\e0bf';\n}\n\n.mdr-bookmarks:after {\n  content: '\\e0c0';\n}\n\n.mdr-border_all:after {\n  content: '\\e0c2';\n}\n\n.mdr-border_bottom:after {\n  content: '\\e0c3';\n}\n\n.mdr-border_clear:after {\n  content: '\\e0c4';\n}\n\n.mdr-border_color:after {\n  content: '\\e0c5';\n}\n\n.mdr-border_color:before {\n  content: '\\e0c6';\n}\n\n.mdr-border_horizontal:after {\n  content: '\\e0c7';\n}\n\n.mdr-border_inner:after {\n  content: '\\e0c8';\n}\n\n.mdr-border_left:after {\n  content: '\\e0c9';\n}\n\n.mdr-border_outer:after {\n  content: '\\e0ca';\n}\n\n.mdr-border_right:after {\n  content: '\\e0cb';\n}\n\n.mdr-border_style:after {\n  content: '\\e0cc';\n}\n\n.mdr-border_top:after {\n  content: '\\e0cd';\n}\n\n.mdr-border_vertical:after {\n  content: '\\e0ce';\n}\n\n.mdr-branding_watermark:after {\n  content: '\\e0cf';\n}\n\n.mdr-brightness_1:after {\n  content: '\\e0d1';\n}\n\n.mdr-brightness_2:after {\n  content: '\\e0d3';\n}\n\n.mdr-brightness_3:after {\n  content: '\\e0d5';\n}\n\n.mdr-brightness_4:after {\n  content: '\\e0d7';\n}\n\n.mdr-brightness_5:after {\n  content: '\\e0d9';\n}\n\n.mdr-brightness_6:after {\n  content: '\\e0db';\n}\n\n.mdr-brightness_7:after {\n  content: '\\e0dd';\n}\n\n.mdr-brightness_auto:after {\n  content: '\\e0df';\n}\n\n.mdr-brightness_high:after {\n  content: '\\e0e1';\n}\n\n.mdr-brightness_low:after {\n  content: '\\e0e3';\n}\n\n.mdr-brightness_medium:after {\n  content: '\\e0e5';\n}\n\n.mdr-broken_image:after {\n  content: '\\e0e7';\n}\n\n.mdr-brush:after {\n  content: '\\e0e9';\n}\n\n.mdr-bubble_chart:after {\n  content: '\\e0eb';\n}\n\n.mdr-bug_report:after {\n  content: '\\e0ed';\n}\n\n.mdr-build:after {\n  content: '\\e0ef';\n}\n\n.mdr-burst_mode:after {\n  content: '\\e0f1';\n}\n\n.mdr-business:after {\n  content: '\\e0f3';\n}\n\n.mdr-business_center:after {\n  content: '\\e0f5';\n}\n\n.mdr-cached:after {\n  content: '\\e0f7';\n}\n\n.mdr-cake:after {\n  content: '\\e0f8';\n}\n\n.mdr-calendar_today:after {\n  content: '\\e0fa';\n}\n\n.mdr-calendar_view_day:after {\n  content: '\\e0fc';\n}\n\n.mdr-call:after {\n  content: '\\e0fe';\n}\n\n.mdr-call_end:after {\n  content: '\\e100';\n}\n\n.mdr-call_made:after {\n  content: '\\e102';\n}\n\n.mdr-call_merge:after {\n  content: '\\e103';\n}\n\n.mdr-call_missed:after {\n  content: '\\e104';\n}\n\n.mdr-call_missed_outgoing:after {\n  content: '\\e105';\n}\n\n.mdr-call_received:after {\n  content: '\\e106';\n}\n\n.mdr-call_split:after {\n  content: '\\e107';\n}\n\n.mdr-call_to_action:after {\n  content: '\\e108';\n}\n\n.mdr-camera:after {\n  content: '\\e10a';\n}\n\n.mdr-camera_alt:after {\n  content: '\\e10c';\n}\n\n.mdr-camera_enhance:after {\n  content: '\\e10e';\n}\n\n.mdr-camera_front:after {\n  content: '\\e110';\n}\n\n.mdr-camera_rear:after {\n  content: '\\e112';\n}\n\n.mdr-camera_roll:after {\n  content: '\\e114';\n}\n\n.mdr-cancel:after {\n  content: '\\e116';\n}\n\n.mdr-cancel_presentation:after {\n  content: '\\e118';\n}\n\n.mdr-cancel_schedule_send:after {\n  content: '\\e11a';\n}\n\n.mdr-card_giftcard:after {\n  content: '\\e11c';\n}\n\n.mdr-card_membership:after {\n  content: '\\e11e';\n}\n\n.mdr-card_travel:after {\n  content: '\\e120';\n}\n\n.mdr-casino:after {\n  content: '\\e122';\n}\n\n.mdr-cast:after {\n  content: '\\e124';\n}\n\n.mdr-cast_connected:after {\n  content: '\\e125';\n}\n\n.mdr-cast_for_education:after {\n  content: '\\e127';\n}\n\n.mdr-category:after {\n  content: '\\e128';\n}\n\n.mdr-cell_wifi:after {\n  content: '\\e12a';\n}\n\n.mdr-cell_wifi:before {\n  content: '\\e12b';\n}\n\n.mdr-center_focus_strong:after {\n  content: '\\e12c';\n}\n\n.mdr-center_focus_weak:after {\n  content: '\\e12e';\n}\n\n.mdr-change_history:after {\n  content: '\\e130';\n}\n\n.mdr-chat:after {\n  content: '\\e132';\n}\n\n.mdr-chat_bubble:after {\n  content: '\\e134';\n}\n\n.mdr-chat_bubble_outline:after {\n  content: '\\e136';\n}\n\n.mdr-check:after {\n  content: '\\e137';\n}\n\n.mdr-check_box:after {\n  content: '\\e138';\n}\n\n.mdr-check_box_outline_blank:after {\n  content: '\\e13a';\n}\n\n.mdr-check_circle:after {\n  content: '\\e13b';\n}\n\n.mdr-check_circle_outline:after {\n  content: '\\e13d';\n}\n\n.mdr-chevron_left:after {\n  content: '\\e13e';\n}\n\n.mdr-chevron_right:after {\n  content: '\\e13f';\n}\n\n.mdr-child_care:after {\n  content: '\\e140';\n}\n\n.mdr-child_friendly:after {\n  content: '\\e142';\n}\n\n.mdr-chrome_reader_mode:after {\n  content: '\\e144';\n}\n\n.mdr-class:after {\n  content: '\\e146';\n}\n\n.mdr-clear:after {\n  content: '\\e148';\n}\n\n.mdr-clear_all:after {\n  content: '\\e149';\n}\n\n.mdr-close:after {\n  content: '\\e14a';\n}\n\n.mdr-closed_caption:after {\n  content: '\\e14b';\n}\n\n.mdr-cloud:after {\n  content: '\\e14d';\n}\n\n.mdr-cloud_circle:after {\n  content: '\\e14f';\n}\n\n.mdr-cloud_done:after {\n  content: '\\e151';\n}\n\n.mdr-cloud_download:after {\n  content: '\\e153';\n}\n\n.mdr-cloud_off:after {\n  content: '\\e155';\n}\n\n.mdr-cloud_queue:after {\n  content: '\\e157';\n}\n\n.mdr-cloud_upload:after {\n  content: '\\e159';\n}\n\n.mdr-code:after {\n  content: '\\e15b';\n}\n\n.mdr-collections:after {\n  content: '\\e15c';\n}\n\n.mdr-collections_bookmark:after {\n  content: '\\e15e';\n}\n\n.mdr-color_lens:after {\n  content: '\\e160';\n}\n\n.mdr-colorize:after {\n  content: '\\e162';\n}\n\n.mdr-comment:after {\n  content: '\\e164';\n}\n\n.mdr-commute:after {\n  content: '\\e166';\n}\n\n.mdr-compare:after {\n  content: '\\e167';\n}\n\n.mdr-compare_arrows:after {\n  content: '\\e169';\n}\n\n.mdr-compass_calibration:after {\n  content: '\\e16a';\n}\n\n.mdr-computer:after {\n  content: '\\e16c';\n}\n\n.mdr-confirmation_number:after {\n  content: '\\e16e';\n}\n\n.mdr-contact_mail:after {\n  content: '\\e170';\n}\n\n.mdr-contact_phone:after {\n  content: '\\e172';\n}\n\n.mdr-contact_support:after {\n  content: '\\e174';\n}\n\n.mdr-contactless:after {\n  content: '\\e176';\n}\n\n.mdr-contacts:after {\n  content: '\\e178';\n}\n\n.mdr-content_copy:after {\n  content: '\\e17a';\n}\n\n.mdr-content_cut:after {\n  content: '\\e17c';\n}\n\n.mdr-content_paste:after {\n  content: '\\e17e';\n}\n\n.mdr-control_camera:after {\n  content: '\\e180';\n}\n\n.mdr-control_point:after {\n  content: '\\e181';\n}\n\n.mdr-control_point_duplicate:after {\n  content: '\\e183';\n}\n\n.mdr-copyright:after {\n  content: '\\e185';\n}\n\n.mdr-create:after {\n  content: '\\e187';\n}\n\n.mdr-create_new_folder:after {\n  content: '\\e189';\n}\n\n.mdr-credit_card:after {\n  content: '\\e18b';\n}\n\n.mdr-crop:after {\n  content: '\\e18d';\n}\n\n.mdr-crop_16_9:after {\n  content: '\\e18e';\n}\n\n.mdr-crop_3_2:after {\n  content: '\\e18f';\n}\n\n.mdr-crop_5_4:after {\n  content: '\\e190';\n}\n\n.mdr-crop_7_5:after {\n  content: '\\e191';\n}\n\n.mdr-crop_din:after {\n  content: '\\e192';\n}\n\n.mdr-crop_free:after {\n  content: '\\e193';\n}\n\n.mdr-crop_landscape:after {\n  content: '\\e194';\n}\n\n.mdr-crop_original:after {\n  content: '\\e195';\n}\n\n.mdr-crop_portrait:after {\n  content: '\\e196';\n}\n\n.mdr-crop_rotate:after {\n  content: '\\e197';\n}\n\n.mdr-crop_square:after {\n  content: '\\e198';\n}\n\n.mdr-dashboard:after {\n  content: '\\e199';\n}\n\n.mdr-data_usage:after {\n  content: '\\e19b';\n}\n\n.mdr-date_range:after {\n  content: '\\e19c';\n}\n\n.mdr-deck:after {\n  content: '\\e19e';\n}\n\n.mdr-dehaze:after {\n  content: '\\e1a0';\n}\n\n.mdr-delete:after {\n  content: '\\e1a1';\n}\n\n.mdr-delete_forever:after {\n  content: '\\e1a3';\n}\n\n.mdr-delete_outline:after {\n  content: '\\e1a5';\n}\n\n.mdr-delete_sweep:after {\n  content: '\\e1a6';\n}\n\n.mdr-departure_board:after {\n  content: '\\e1a8';\n}\n\n.mdr-description:after {\n  content: '\\e1aa';\n}\n\n.mdr-desktop_access_disabled:after {\n  content: '\\e1ac';\n}\n\n.mdr-desktop_mac:after {\n  content: '\\e1ae';\n}\n\n.mdr-desktop_windows:after {\n  content: '\\e1b0';\n}\n\n.mdr-details:after {\n  content: '\\e1b2';\n}\n\n.mdr-developer_board:after {\n  content: '\\e1b4';\n}\n\n.mdr-developer_mode:after {\n  content: '\\e1b6';\n}\n\n.mdr-device_hub:after {\n  content: '\\e1b7';\n}\n\n.mdr-device_unknown:after {\n  content: '\\e1b8';\n}\n\n.mdr-devices:after {\n  content: '\\e1ba';\n}\n\n.mdr-devices_other:after {\n  content: '\\e1bc';\n}\n\n.mdr-dialer_sip:after {\n  content: '\\e1be';\n}\n\n.mdr-dialpad:after {\n  content: '\\e1c0';\n}\n\n.mdr-directions:after {\n  content: '\\e1c1';\n}\n\n.mdr-directions_bike:after {\n  content: '\\e1c3';\n}\n\n.mdr-directions_boat:after {\n  content: '\\e1c4';\n}\n\n.mdr-directions_bus:after {\n  content: '\\e1c6';\n}\n\n.mdr-directions_car:after {\n  content: '\\e1c8';\n}\n\n.mdr-directions_railway:after {\n  content: '\\e1ca';\n}\n\n.mdr-directions_run:after {\n  content: '\\e1cc';\n}\n\n.mdr-directions_subway:after {\n  content: '\\e1cd';\n}\n\n.mdr-directions_transit:after {\n  content: '\\e1cf';\n}\n\n.mdr-directions_walk:after {\n  content: '\\e1d1';\n}\n\n.mdr-disc_full:after {\n  content: '\\e1d2';\n}\n\n.mdr-divide:after {\n  content: '\\e1d4';\n}\n\n.mdr-dns:after {\n  content: '\\e1d6';\n}\n\n.mdr-do_not_disturb:after {\n  content: '\\e1d8';\n}\n\n.mdr-do_not_disturb_alt:after {\n  content: '\\e1da';\n}\n\n.mdr-do_not_disturb_off:after {\n  content: '\\e1dc';\n}\n\n.mdr-dock:after {\n  content: '\\e1de';\n}\n\n.mdr-domain:after {\n  content: '\\e1e0';\n}\n\n.mdr-domain_disabled:after {\n  content: '\\e1e2';\n}\n\n.mdr-done:after {\n  content: '\\e1e4';\n}\n\n.mdr-done_all:after {\n  content: '\\e1e5';\n}\n\n.mdr-done_outline:after {\n  content: '\\e1e6';\n}\n\n.mdr-donut_large:after {\n  content: '\\e1e7';\n}\n\n.mdr-donut_small:after {\n  content: '\\e1e8';\n}\n\n.mdr-double_arrow:after {\n  content: '\\e1ea';\n}\n\n.mdr-drafts:after {\n  content: '\\e1eb';\n}\n\n.mdr-drag_handle:after {\n  content: '\\e1ed';\n}\n\n.mdr-drag_indicator:after {\n  content: '\\e1ee';\n}\n\n.mdr-drive_eta:after {\n  content: '\\e1ef';\n}\n\n.mdr-duo:after {\n  content: '\\e1f1';\n}\n\n.mdr-dvr:after {\n  content: '\\e1f2';\n}\n\n.mdr-dynamic_feed:after {\n  content: '\\e1f4';\n}\n\n.mdr-eco:after {\n  content: '\\e1f6';\n}\n\n.mdr-edit:after {\n  content: '\\e1f8';\n}\n\n.mdr-edit_attributes:after {\n  content: '\\e1fa';\n}\n\n.mdr-edit_location:after {\n  content: '\\e1fc';\n}\n\n.mdr-eject:after {\n  content: '\\e1fe';\n}\n\n.mdr-email:after {\n  content: '\\e200';\n}\n\n.mdr-emoji_emotions:after {\n  content: '\\e202';\n}\n\n.mdr-emoji_events:after {\n  content: '\\e204';\n}\n\n.mdr-emoji_flags:after {\n  content: '\\e206';\n}\n\n.mdr-emoji_food_beverage:after {\n  content: '\\e208';\n}\n\n.mdr-emoji_nature:after {\n  content: '\\e20a';\n}\n\n.mdr-emoji_objects:after {\n  content: '\\e20c';\n}\n\n.mdr-emoji_people:after {\n  content: '\\e20e';\n}\n\n.mdr-emoji_symbols:after {\n  content: '\\e20f';\n}\n\n.mdr-emoji_transportation:after {\n  content: '\\e210';\n}\n\n.mdr-enhanced_encryption:after {\n  content: '\\e211';\n}\n\n.mdr-equalizer:after {\n  content: '\\e213';\n}\n\n.mdr-equals:after {\n  content: '\\e214';\n}\n\n.mdr-error:after {\n  content: '\\e215';\n}\n\n.mdr-error_outline:after {\n  content: '\\e217';\n}\n\n.mdr-euro:after {\n  content: '\\e218';\n}\n\n.mdr-euro_symbol:after {\n  content: '\\e219';\n}\n\n.mdr-ev_station:after {\n  content: '\\e21a';\n}\n\n.mdr-event:after {\n  content: '\\e21c';\n}\n\n.mdr-event_available:after {\n  content: '\\e21e';\n}\n\n.mdr-event_busy:after {\n  content: '\\e220';\n}\n\n.mdr-event_note:after {\n  content: '\\e222';\n}\n\n.mdr-event_seat:after {\n  content: '\\e224';\n}\n\n.mdr-exit_to_app:after {\n  content: '\\e226';\n}\n\n.mdr-expand_less:after {\n  content: '\\e227';\n}\n\n.mdr-expand_more:after {\n  content: '\\e228';\n}\n\n.mdr-explicit:after {\n  content: '\\e229';\n}\n\n.mdr-explore:after {\n  content: '\\e22b';\n}\n\n.mdr-explore_off:after {\n  content: '\\e22d';\n}\n\n.mdr-exposure:after {\n  content: '\\e22f';\n}\n\n.mdr-exposure_neg_1:after {\n  content: '\\e231';\n}\n\n.mdr-exposure_neg_2:after {\n  content: '\\e232';\n}\n\n.mdr-exposure_plus_1:after {\n  content: '\\e233';\n}\n\n.mdr-exposure_plus_2:after {\n  content: '\\e234';\n}\n\n.mdr-exposure_zero:after {\n  content: '\\e235';\n}\n\n.mdr-extension:after {\n  content: '\\e236';\n}\n\n.mdr-face:after {\n  content: '\\e238';\n}\n\n.mdr-fast_forward:after {\n  content: '\\e23a';\n}\n\n.mdr-fast_rewind:after {\n  content: '\\e23c';\n}\n\n.mdr-fastfood:after {\n  content: '\\e23e';\n}\n\n.mdr-favorite:after {\n  content: '\\e240';\n}\n\n.mdr-favorite_border:after {\n  content: '\\e242';\n}\n\n.mdr-featured_play_list:after {\n  content: '\\e243';\n}\n\n.mdr-featured_video:after {\n  content: '\\e245';\n}\n\n.mdr-feedback:after {\n  content: '\\e247';\n}\n\n.mdr-fiber_dvr:after {\n  content: '\\e249';\n}\n\n.mdr-fiber_manual_record:after {\n  content: '\\e24b';\n}\n\n.mdr-fiber_new:after {\n  content: '\\e24d';\n}\n\n.mdr-fiber_pin:after {\n  content: '\\e24f';\n}\n\n.mdr-fiber_smart_record:after {\n  content: '\\e251';\n}\n\n.mdr-file_copy:after {\n  content: '\\e253';\n}\n\n.mdr-file_upload:after {\n  content: '\\e255';\n}\n\n.mdr-filter:after {\n  content: '\\e257';\n}\n\n.mdr-filter_1:after {\n  content: '\\e259';\n}\n\n.mdr-filter_2:after {\n  content: '\\e25b';\n}\n\n.mdr-filter_3:after {\n  content: '\\e25d';\n}\n\n.mdr-filter_4:after {\n  content: '\\e25f';\n}\n\n.mdr-filter_5:after {\n  content: '\\e261';\n}\n\n.mdr-filter_6:after {\n  content: '\\e263';\n}\n\n.mdr-filter_7:after {\n  content: '\\e265';\n}\n\n.mdr-filter_8:after {\n  content: '\\e267';\n}\n\n.mdr-filter_9:after {\n  content: '\\e269';\n}\n\n.mdr-filter_9_plus:after {\n  content: '\\e26b';\n}\n\n.mdr-filter_b_and_w:after {\n  content: '\\e26d';\n}\n\n.mdr-filter_center_focus:after {\n  content: '\\e26f';\n}\n\n.mdr-filter_drama:after {\n  content: '\\e270';\n}\n\n.mdr-filter_frames:after {\n  content: '\\e272';\n}\n\n.mdr-filter_hdr:after {\n  content: '\\e274';\n}\n\n.mdr-filter_list:after {\n  content: '\\e276';\n}\n\n.mdr-filter_none:after {\n  content: '\\e277';\n}\n\n.mdr-filter_tilt_shift:after {\n  content: '\\e279';\n}\n\n.mdr-filter_vintage:after {\n  content: '\\e27a';\n}\n\n.mdr-find_in_page:after {\n  content: '\\e27c';\n}\n\n.mdr-find_replace:after {\n  content: '\\e27e';\n}\n\n.mdr-fingerprint:after {\n  content: '\\e27f';\n}\n\n.mdr-fireplace:after {\n  content: '\\e280';\n}\n\n.mdr-first_page:after {\n  content: '\\e282';\n}\n\n.mdr-fitness_center:after {\n  content: '\\e283';\n}\n\n.mdr-flag:after {\n  content: '\\e284';\n}\n\n.mdr-flare:after {\n  content: '\\e286';\n}\n\n.mdr-flash_auto:after {\n  content: '\\e287';\n}\n\n.mdr-flash_off:after {\n  content: '\\e288';\n}\n\n.mdr-flash_on:after {\n  content: '\\e289';\n}\n\n.mdr-flight:after {\n  content: '\\e28a';\n}\n\n.mdr-flight_land:after {\n  content: '\\e28b';\n}\n\n.mdr-flight_takeoff:after {\n  content: '\\e28c';\n}\n\n.mdr-flip:after {\n  content: '\\e28d';\n}\n\n.mdr-flip_camera_android:after {\n  content: '\\e28e';\n}\n\n.mdr-flip_camera_ios:after {\n  content: '\\e290';\n}\n\n.mdr-flip_to_back:after {\n  content: '\\e292';\n}\n\n.mdr-flip_to_front:after {\n  content: '\\e293';\n}\n\n.mdr-folder:after {\n  content: '\\e294';\n}\n\n.mdr-folder_open:after {\n  content: '\\e296';\n}\n\n.mdr-folder_shared:after {\n  content: '\\e298';\n}\n\n.mdr-folder_special:after {\n  content: '\\e29a';\n}\n\n.mdr-font_download:after {\n  content: '\\e29c';\n}\n\n.mdr-format_align_center:after {\n  content: '\\e29e';\n}\n\n.mdr-format_align_justify:after {\n  content: '\\e29f';\n}\n\n.mdr-format_align_left:after {\n  content: '\\e2a0';\n}\n\n.mdr-format_align_right:after {\n  content: '\\e2a1';\n}\n\n.mdr-format_bold:after {\n  content: '\\e2a2';\n}\n\n.mdr-format_clear:after {\n  content: '\\e2a3';\n}\n\n.mdr-format_color_fill:after {\n  content: '\\e2a4';\n}\n\n.mdr-format_color_fill:before {\n  content: '\\e2a5';\n}\n\n.mdr-format_color_reset:after {\n  content: '\\e2a6';\n}\n\n.mdr-format_color_text:after {\n  content: '\\e2a8';\n}\n\n.mdr-format_color_text:before {\n  content: '\\e2a9';\n}\n\n.mdr-format_indent_decrease:after {\n  content: '\\e2aa';\n}\n\n.mdr-format_indent_increase:after {\n  content: '\\e2ab';\n}\n\n.mdr-format_italic:after {\n  content: '\\e2ac';\n}\n\n.mdr-format_line_spacing:after {\n  content: '\\e2ad';\n}\n\n.mdr-format_list_bulleted:after {\n  content: '\\e2ae';\n}\n\n.mdr-format_list_numbered:after {\n  content: '\\e2af';\n}\n\n.mdr-format_list_numbered_rtl:after {\n  content: '\\e2b0';\n}\n\n.mdr-format_paint:after {\n  content: '\\e2b1';\n}\n\n.mdr-format_quote:after {\n  content: '\\e2b3';\n}\n\n.mdr-format_shapes:after {\n  content: '\\e2b5';\n}\n\n.mdr-format_size:after {\n  content: '\\e2b7';\n}\n\n.mdr-format_strikethrough:after {\n  content: '\\e2b8';\n}\n\n.mdr-format_textdirection_l_to_r:after {\n  content: '\\e2b9';\n}\n\n.mdr-format_textdirection_r_to_l:after {\n  content: '\\e2bb';\n}\n\n.mdr-format_underlined:after {\n  content: '\\e2bd';\n}\n\n.mdr-forum:after {\n  content: '\\e2be';\n}\n\n.mdr-forward:after {\n  content: '\\e2c0';\n}\n\n.mdr-forward_10:after {\n  content: '\\e2c2';\n}\n\n.mdr-forward_30:after {\n  content: '\\e2c3';\n}\n\n.mdr-forward_5:after {\n  content: '\\e2c4';\n}\n\n.mdr-free_breakfast:after {\n  content: '\\e2c5';\n}\n\n.mdr-fullscreen:after {\n  content: '\\e2c7';\n}\n\n.mdr-fullscreen_exit:after {\n  content: '\\e2c8';\n}\n\n.mdr-functions:after {\n  content: '\\e2c9';\n}\n\n.mdr-g_translate:after {\n  content: '\\e2ca';\n}\n\n.mdr-gamepad:after {\n  content: '\\e2cb';\n}\n\n.mdr-games:after {\n  content: '\\e2cd';\n}\n\n.mdr-gavel:after {\n  content: '\\e2cf';\n}\n\n.mdr-gesture:after {\n  content: '\\e2d0';\n}\n\n.mdr-get_app:after {\n  content: '\\e2d1';\n}\n\n.mdr-gif:after {\n  content: '\\e2d3';\n}\n\n.mdr-golf_course:after {\n  content: '\\e2d5';\n}\n\n.mdr-gps_fixed:after {\n  content: '\\e2d7';\n}\n\n.mdr-gps_not_fixed:after {\n  content: '\\e2d9';\n}\n\n.mdr-gps_off:after {\n  content: '\\e2da';\n}\n\n.mdr-grade:after {\n  content: '\\e2db';\n}\n\n.mdr-gradient:after {\n  content: '\\e2dd';\n}\n\n.mdr-grain:after {\n  content: '\\e2de';\n}\n\n.mdr-graphic_eq:after {\n  content: '\\e2df';\n}\n\n.mdr-greater_than:after {\n  content: '\\e2e0';\n}\n\n.mdr-greater_than_equal:after {\n  content: '\\e2e1';\n}\n\n.mdr-grid_off:after {\n  content: '\\e2e2';\n}\n\n.mdr-grid_on:after {\n  content: '\\e2e4';\n}\n\n.mdr-group:after {\n  content: '\\e2e6';\n}\n\n.mdr-group_add:after {\n  content: '\\e2e8';\n}\n\n.mdr-group_work:after {\n  content: '\\e2ea';\n}\n\n.mdr-hd:after {\n  content: '\\e2ec';\n}\n\n.mdr-hdr_off:after {\n  content: '\\e2ee';\n}\n\n.mdr-hdr_on:after {\n  content: '\\e2ef';\n}\n\n.mdr-hdr_strong:after {\n  content: '\\e2f0';\n}\n\n.mdr-hdr_weak:after {\n  content: '\\e2f2';\n}\n\n.mdr-headset:after {\n  content: '\\e2f4';\n}\n\n.mdr-headset_mic:after {\n  content: '\\e2f6';\n}\n\n.mdr-healing:after {\n  content: '\\e2f8';\n}\n\n.mdr-hearing:after {\n  content: '\\e2fa';\n}\n\n.mdr-height:after {\n  content: '\\e2fb';\n}\n\n.mdr-help:after {\n  content: '\\e2fc';\n}\n\n.mdr-help_outline:after {\n  content: '\\e2fe';\n}\n\n.mdr-high_quality:after {\n  content: '\\e2ff';\n}\n\n.mdr-highlight:after {\n  content: '\\e301';\n}\n\n.mdr-highlight_off:after {\n  content: '\\e303';\n}\n\n.mdr-history:after {\n  content: '\\e305';\n}\n\n.mdr-home:after {\n  content: '\\e306';\n}\n\n.mdr-home_work:after {\n  content: '\\e308';\n}\n\n.mdr-horizontal_split:after {\n  content: '\\e30a';\n}\n\n.mdr-hot_tub:after {\n  content: '\\e30c';\n}\n\n.mdr-hotel:after {\n  content: '\\e30d';\n}\n\n.mdr-hourglass_empty:after {\n  content: '\\e30f';\n}\n\n.mdr-hourglass_full:after {\n  content: '\\e310';\n}\n\n.mdr-house:after {\n  content: '\\e312';\n}\n\n.mdr-how_to_reg:after {\n  content: '\\e314';\n}\n\n.mdr-how_to_vote:after {\n  content: '\\e316';\n}\n\n.mdr-http:after {\n  content: '\\e318';\n}\n\n.mdr-https:after {\n  content: '\\e319';\n}\n\n.mdr-image:after {\n  content: '\\e31b';\n}\n\n.mdr-image_aspect_ratio:after {\n  content: '\\e31d';\n}\n\n.mdr-image_search:after {\n  content: '\\e31f';\n}\n\n.mdr-import_contacts:after {\n  content: '\\e321';\n}\n\n.mdr-import_export:after {\n  content: '\\e323';\n}\n\n.mdr-important_devices:after {\n  content: '\\e324';\n}\n\n.mdr-inbox:after {\n  content: '\\e326';\n}\n\n.mdr-indeterminate_check_box:after {\n  content: '\\e328';\n}\n\n.mdr-info:after {\n  content: '\\e32a';\n}\n\n.mdr-input:after {\n  content: '\\e32c';\n}\n\n.mdr-insert_chart:after {\n  content: '\\e32d';\n}\n\n.mdr-insert_chart_outlined:after {\n  content: '\\e32f';\n}\n\n.mdr-insert_comment:after {\n  content: '\\e330';\n}\n\n.mdr-insert_drive_file:after {\n  content: '\\e332';\n}\n\n.mdr-insert_emoticon:after {\n  content: '\\e334';\n}\n\n.mdr-insert_invitation:after {\n  content: '\\e336';\n}\n\n.mdr-insert_link:after {\n  content: '\\e338';\n}\n\n.mdr-insert_photo:after {\n  content: '\\e339';\n}\n\n.mdr-invert_colors:after {\n  content: '\\e33b';\n}\n\n.mdr-invert_colors_off:after {\n  content: '\\e33d';\n}\n\n.mdr-iso:after {\n  content: '\\e33f';\n}\n\n.mdr-keyboard:after {\n  content: '\\e341';\n}\n\n.mdr-keyboard_arrow_down:after {\n  content: '\\e343';\n}\n\n.mdr-keyboard_arrow_left:after {\n  content: '\\e344';\n}\n\n.mdr-keyboard_arrow_right:after {\n  content: '\\e345';\n}\n\n.mdr-keyboard_arrow_up:after {\n  content: '\\e346';\n}\n\n.mdr-keyboard_backspace:after {\n  content: '\\e347';\n}\n\n.mdr-keyboard_capslock:after {\n  content: '\\e348';\n}\n\n.mdr-keyboard_hide:after {\n  content: '\\e349';\n}\n\n.mdr-keyboard_return:after {\n  content: '\\e34b';\n}\n\n.mdr-keyboard_tab:after {\n  content: '\\e34c';\n}\n\n.mdr-keyboard_voice:after {\n  content: '\\e34d';\n}\n\n.mdr-king_bed:after {\n  content: '\\e34f';\n}\n\n.mdr-kitchen:after {\n  content: '\\e351';\n}\n\n.mdr-label:after {\n  content: '\\e353';\n}\n\n.mdr-label_important:after {\n  content: '\\e355';\n}\n\n.mdr-label_off:after {\n  content: '\\e357';\n}\n\n.mdr-landscape:after {\n  content: '\\e359';\n}\n\n.mdr-language:after {\n  content: '\\e35b';\n}\n\n.mdr-laptop:after {\n  content: '\\e35d';\n}\n\n.mdr-laptop_chromebook:after {\n  content: '\\e35f';\n}\n\n.mdr-laptop_mac:after {\n  content: '\\e361';\n}\n\n.mdr-laptop_windows:after {\n  content: '\\e363';\n}\n\n.mdr-last_page:after {\n  content: '\\e365';\n}\n\n.mdr-launch:after {\n  content: '\\e366';\n}\n\n.mdr-layers:after {\n  content: '\\e367';\n}\n\n.mdr-layers_clear:after {\n  content: '\\e369';\n}\n\n.mdr-leak_add:after {\n  content: '\\e36b';\n}\n\n.mdr-leak_remove:after {\n  content: '\\e36c';\n}\n\n.mdr-lens:after {\n  content: '\\e36d';\n}\n\n.mdr-less_than:after {\n  content: '\\e36f';\n}\n\n.mdr-less_than_equal:after {\n  content: '\\e370';\n}\n\n.mdr-library_add:after {\n  content: '\\e371';\n}\n\n.mdr-library_books:after {\n  content: '\\e373';\n}\n\n.mdr-library_music:after {\n  content: '\\e375';\n}\n\n.mdr-lightbulb:after {\n  content: '\\e377';\n}\n\n.mdr-line_style:after {\n  content: '\\e379';\n}\n\n.mdr-line_weight:after {\n  content: '\\e37a';\n}\n\n.mdr-linear_scale:after {\n  content: '\\e37b';\n}\n\n.mdr-link:after {\n  content: '\\e37c';\n}\n\n.mdr-link_off:after {\n  content: '\\e37e';\n}\n\n.mdr-linked_camera:after {\n  content: '\\e37f';\n}\n\n.mdr-list:after {\n  content: '\\e381';\n}\n\n.mdr-list_alt:after {\n  content: '\\e382';\n}\n\n.mdr-live_help:after {\n  content: '\\e384';\n}\n\n.mdr-live_tv:after {\n  content: '\\e386';\n}\n\n.mdr-local_activity:after {\n  content: '\\e388';\n}\n\n.mdr-local_airport:after {\n  content: '\\e38a';\n}\n\n.mdr-local_atm:after {\n  content: '\\e38b';\n}\n\n.mdr-local_bar:after {\n  content: '\\e38d';\n}\n\n.mdr-local_cafe:after {\n  content: '\\e38f';\n}\n\n.mdr-local_car_wash:after {\n  content: '\\e391';\n}\n\n.mdr-local_convenience_store:after {\n  content: '\\e393';\n}\n\n.mdr-local_dining:after {\n  content: '\\e395';\n}\n\n.mdr-local_drink:after {\n  content: '\\e396';\n}\n\n.mdr-local_florist:after {\n  content: '\\e398';\n}\n\n.mdr-local_gas_station:after {\n  content: '\\e39a';\n}\n\n.mdr-local_grocery_store:after {\n  content: '\\e39c';\n}\n\n.mdr-local_hospital:after {\n  content: '\\e39e';\n}\n\n.mdr-local_hotel:after {\n  content: '\\e3a0';\n}\n\n.mdr-local_laundry_service:after {\n  content: '\\e3a2';\n}\n\n.mdr-local_library:after {\n  content: '\\e3a4';\n}\n\n.mdr-local_mall:after {\n  content: '\\e3a6';\n}\n\n.mdr-local_movies:after {\n  content: '\\e3a8';\n}\n\n.mdr-local_offer:after {\n  content: '\\e3aa';\n}\n\n.mdr-local_parking:after {\n  content: '\\e3ac';\n}\n\n.mdr-local_pharmacy:after {\n  content: '\\e3ad';\n}\n\n.mdr-local_phone:after {\n  content: '\\e3af';\n}\n\n.mdr-local_pizza:after {\n  content: '\\e3b1';\n}\n\n.mdr-local_play:after {\n  content: '\\e3b3';\n}\n\n.mdr-local_post_office:after {\n  content: '\\e3b5';\n}\n\n.mdr-local_printshop:after {\n  content: '\\e3b7';\n}\n\n.mdr-local_see:after {\n  content: '\\e3b9';\n}\n\n.mdr-local_shipping:after {\n  content: '\\e3bb';\n}\n\n.mdr-local_taxi:after {\n  content: '\\e3bd';\n}\n\n.mdr-location_city:after {\n  content: '\\e3bf';\n}\n\n.mdr-location_disabled:after {\n  content: '\\e3c0';\n}\n\n.mdr-location_off:after {\n  content: '\\e3c1';\n}\n\n.mdr-location_on:after {\n  content: '\\e3c2';\n}\n\n.mdr-location_searching:after {\n  content: '\\e3c4';\n}\n\n.mdr-lock:after {\n  content: '\\e3c5';\n}\n\n.mdr-lock_open:after {\n  content: '\\e3c7';\n}\n\n.mdr-log_in:after {\n  content: '\\e3c9';\n}\n\n.mdr-log_out:after {\n  content: '\\e3ca';\n}\n\n.mdr-looks:after {\n  content: '\\e3cb';\n}\n\n.mdr-looks_3:after {\n  content: '\\e3cc';\n}\n\n.mdr-looks_4:after {\n  content: '\\e3ce';\n}\n\n.mdr-looks_5:after {\n  content: '\\e3d0';\n}\n\n.mdr-looks_6:after {\n  content: '\\e3d2';\n}\n\n.mdr-looks_one:after {\n  content: '\\e3d4';\n}\n\n.mdr-looks_two:after {\n  content: '\\e3d6';\n}\n\n.mdr-loop:after {\n  content: '\\e3d8';\n}\n\n.mdr-loupe:after {\n  content: '\\e3d9';\n}\n\n.mdr-low_priority:after {\n  content: '\\e3db';\n}\n\n.mdr-loyalty:after {\n  content: '\\e3dc';\n}\n\n.mdr-mail:after {\n  content: '\\e3de';\n}\n\n.mdr-mail_outline:after {\n  content: '\\e3e0';\n}\n\n.mdr-map:after {\n  content: '\\e3e1';\n}\n\n.mdr-markunread:after {\n  content: '\\e3e3';\n}\n\n.mdr-markunread_mailbox:after {\n  content: '\\e3e5';\n}\n\n.mdr-maximize:after {\n  content: '\\e3e7';\n}\n\n.mdr-meeting_room:after {\n  content: '\\e3e8';\n}\n\n.mdr-memory:after {\n  content: '\\e3ea';\n}\n\n.mdr-menu:after {\n  content: '\\e3ec';\n}\n\n.mdr-menu_book:after {\n  content: '\\e3ed';\n}\n\n.mdr-menu_open:after {\n  content: '\\e3ef';\n}\n\n.mdr-merge_type:after {\n  content: '\\e3f0';\n}\n\n.mdr-message:after {\n  content: '\\e3f1';\n}\n\n.mdr-mic:after {\n  content: '\\e3f3';\n}\n\n.mdr-mic_none:after {\n  content: '\\e3f5';\n}\n\n.mdr-mic_off:after {\n  content: '\\e3f7';\n}\n\n.mdr-minimize:after {\n  content: '\\e3f9';\n}\n\n.mdr-minus:after {\n  content: '\\e3fa';\n}\n\n.mdr-missed_video_call:after {\n  content: '\\e3fb';\n}\n\n.mdr-mms:after {\n  content: '\\e3fd';\n}\n\n.mdr-mobile_friendly:after {\n  content: '\\e3ff';\n}\n\n.mdr-mobile_off:after {\n  content: '\\e400';\n}\n\n.mdr-mobile_screen_share:after {\n  content: '\\e401';\n}\n\n.mdr-mode_comment:after {\n  content: '\\e403';\n}\n\n.mdr-monetization_on:after {\n  content: '\\e405';\n}\n\n.mdr-money:after {\n  content: '\\e407';\n}\n\n.mdr-money_off:after {\n  content: '\\e409';\n}\n\n.mdr-monochrome_photos:after {\n  content: '\\e40a';\n}\n\n.mdr-mood:after {\n  content: '\\e40c';\n}\n\n.mdr-mood_bad:after {\n  content: '\\e40e';\n}\n\n.mdr-more:after {\n  content: '\\e410';\n}\n\n.mdr-more_horiz:after {\n  content: '\\e412';\n}\n\n.mdr-more_vert:after {\n  content: '\\e413';\n}\n\n.mdr-motorcycle:after {\n  content: '\\e414';\n}\n\n.mdr-mouse:after {\n  content: '\\e416';\n}\n\n.mdr-move_to_inbox:after {\n  content: '\\e418';\n}\n\n.mdr-movie:after {\n  content: '\\e41a';\n}\n\n.mdr-movie_creation:after {\n  content: '\\e41c';\n}\n\n.mdr-movie_filter:after {\n  content: '\\e41e';\n}\n\n.mdr-multiline_chart:after {\n  content: '\\e420';\n}\n\n.mdr-museum:after {\n  content: '\\e421';\n}\n\n.mdr-music_note:after {\n  content: '\\e423';\n}\n\n.mdr-music_off:after {\n  content: '\\e425';\n}\n\n.mdr-music_video:after {\n  content: '\\e427';\n}\n\n.mdr-my_location:after {\n  content: '\\e429';\n}\n\n.mdr-nature:after {\n  content: '\\e42b';\n}\n\n.mdr-nature_people:after {\n  content: '\\e42d';\n}\n\n.mdr-navigate_before:after {\n  content: '\\e42f';\n}\n\n.mdr-navigate_next:after {\n  content: '\\e430';\n}\n\n.mdr-navigation:after {\n  content: '\\e431';\n}\n\n.mdr-near_me:after {\n  content: '\\e433';\n}\n\n.mdr-network_cell:after {\n  content: '\\e435';\n}\n\n.mdr-network_cell:before {\n  content: '\\e436';\n}\n\n.mdr-network_check:after {\n  content: '\\e437';\n}\n\n.mdr-network_locked:after {\n  content: '\\e438';\n}\n\n.mdr-network_wifi:after {\n  content: '\\e439';\n}\n\n.mdr-network_wifi:before {\n  content: '\\e43a';\n}\n\n.mdr-new_releases:after {\n  content: '\\e43b';\n}\n\n.mdr-next_week:after {\n  content: '\\e43d';\n}\n\n.mdr-nfc:after {\n  content: '\\e43f';\n}\n\n.mdr-nights_stay:after {\n  content: '\\e440';\n}\n\n.mdr-no_encryption:after {\n  content: '\\e442';\n}\n\n.mdr-no_meeting_room:after {\n  content: '\\e444';\n}\n\n.mdr-no_sim:after {\n  content: '\\e446';\n}\n\n.mdr-not_equal:after {\n  content: '\\e448';\n}\n\n.mdr-not_interested:after {\n  content: '\\e449';\n}\n\n.mdr-not_listed_location:after {\n  content: '\\e44a';\n}\n\n.mdr-note:after {\n  content: '\\e44c';\n}\n\n.mdr-note_add:after {\n  content: '\\e44e';\n}\n\n.mdr-notes:after {\n  content: '\\e450';\n}\n\n.mdr-notification_important:after {\n  content: '\\e451';\n}\n\n.mdr-notifications:after {\n  content: '\\e453';\n}\n\n.mdr-notifications_active:after {\n  content: '\\e455';\n}\n\n.mdr-notifications_none:after {\n  content: '\\e457';\n}\n\n.mdr-notifications_off:after {\n  content: '\\e459';\n}\n\n.mdr-notifications_paused:after {\n  content: '\\e45b';\n}\n\n.mdr-offline_bolt:after {\n  content: '\\e45d';\n}\n\n.mdr-offline_pin:after {\n  content: '\\e45f';\n}\n\n.mdr-ondemand_video:after {\n  content: '\\e461';\n}\n\n.mdr-opacity:after {\n  content: '\\e463';\n}\n\n.mdr-open_in_browser:after {\n  content: '\\e465';\n}\n\n.mdr-open_in_new:after {\n  content: '\\e466';\n}\n\n.mdr-open_with:after {\n  content: '\\e467';\n}\n\n.mdr-outdoor_grill:after {\n  content: '\\e468';\n}\n\n.mdr-outlined_flag:after {\n  content: '\\e46a';\n}\n\n.mdr-pages:after {\n  content: '\\e46b';\n}\n\n.mdr-pageview:after {\n  content: '\\e46d';\n}\n\n.mdr-palette:after {\n  content: '\\e46f';\n}\n\n.mdr-pan_tool:after {\n  content: '\\e471';\n}\n\n.mdr-panorama:after {\n  content: '\\e473';\n}\n\n.mdr-panorama_fish_eye:after {\n  content: '\\e475';\n}\n\n.mdr-panorama_horizontal:after {\n  content: '\\e477';\n}\n\n.mdr-panorama_vertical:after {\n  content: '\\e479';\n}\n\n.mdr-panorama_wide_angle:after {\n  content: '\\e47b';\n}\n\n.mdr-party_mode:after {\n  content: '\\e47d';\n}\n\n.mdr-pause:after {\n  content: '\\e47f';\n}\n\n.mdr-pause_circle_filled:after {\n  content: '\\e480';\n}\n\n.mdr-pause_circle_outline:after {\n  content: '\\e482';\n}\n\n.mdr-pause_presentation:after {\n  content: '\\e483';\n}\n\n.mdr-payment:after {\n  content: '\\e485';\n}\n\n.mdr-people:after {\n  content: '\\e487';\n}\n\n.mdr-people_alt:after {\n  content: '\\e489';\n}\n\n.mdr-people_outline:after {\n  content: '\\e48b';\n}\n\n.mdr-percentage:after {\n  content: '\\e48d';\n}\n\n.mdr-perm_camera_mic:after {\n  content: '\\e48f';\n}\n\n.mdr-perm_contact_calendar:after {\n  content: '\\e491';\n}\n\n.mdr-perm_data_setting:after {\n  content: '\\e493';\n}\n\n.mdr-perm_device_information:after {\n  content: '\\e494';\n}\n\n.mdr-perm_identity:after {\n  content: '\\e496';\n}\n\n.mdr-perm_media:after {\n  content: '\\e498';\n}\n\n.mdr-perm_phone_msg:after {\n  content: '\\e49a';\n}\n\n.mdr-perm_scan_wifi:after {\n  content: '\\e49c';\n}\n\n.mdr-person:after {\n  content: '\\e49e';\n}\n\n.mdr-person_add:after {\n  content: '\\e4a0';\n}\n\n.mdr-person_add_disabled:after {\n  content: '\\e4a2';\n}\n\n.mdr-person_outline:after {\n  content: '\\e4a4';\n}\n\n.mdr-person_pin:after {\n  content: '\\e4a6';\n}\n\n.mdr-person_pin_circle:after {\n  content: '\\e4a8';\n}\n\n.mdr-personal_video:after {\n  content: '\\e4aa';\n}\n\n.mdr-pets:after {\n  content: '\\e4ac';\n}\n\n.mdr-phone:after {\n  content: '\\e4ad';\n}\n\n.mdr-phone_android:after {\n  content: '\\e4af';\n}\n\n.mdr-phone_bluetooth_speaker:after {\n  content: '\\e4b1';\n}\n\n.mdr-phone_callback:after {\n  content: '\\e4b3';\n}\n\n.mdr-phone_disabled:after {\n  content: '\\e4b5';\n}\n\n.mdr-phone_enabled:after {\n  content: '\\e4b6';\n}\n\n.mdr-phone_forwarded:after {\n  content: '\\e4b7';\n}\n\n.mdr-phone_in_talk:after {\n  content: '\\e4b9';\n}\n\n.mdr-phone_iphone:after {\n  content: '\\e4bb';\n}\n\n.mdr-phone_locked:after {\n  content: '\\e4bd';\n}\n\n.mdr-phone_missed:after {\n  content: '\\e4bf';\n}\n\n.mdr-phone_paused:after {\n  content: '\\e4c1';\n}\n\n.mdr-phonelink:after {\n  content: '\\e4c3';\n}\n\n.mdr-phonelink_erase:after {\n  content: '\\e4c5';\n}\n\n.mdr-phonelink_lock:after {\n  content: '\\e4c6';\n}\n\n.mdr-phonelink_off:after {\n  content: '\\e4c7';\n}\n\n.mdr-phonelink_ring:after {\n  content: '\\e4c9';\n}\n\n.mdr-phonelink_setup:after {\n  content: '\\e4cb';\n}\n\n.mdr-photo:after {\n  content: '\\e4cc';\n}\n\n.mdr-photo_album:after {\n  content: '\\e4ce';\n}\n\n.mdr-photo_camera:after {\n  content: '\\e4d0';\n}\n\n.mdr-photo_filter:after {\n  content: '\\e4d2';\n}\n\n.mdr-photo_library:after {\n  content: '\\e4d3';\n}\n\n.mdr-photo_size_select_actual:after {\n  content: '\\e4d5';\n}\n\n.mdr-photo_size_select_large:after {\n  content: '\\e4d7';\n}\n\n.mdr-photo_size_select_small:after {\n  content: '\\e4d8';\n}\n\n.mdr-picture_as_pdf:after {\n  content: '\\e4d9';\n}\n\n.mdr-picture_in_picture:after {\n  content: '\\e4db';\n}\n\n.mdr-picture_in_picture_alt:after {\n  content: '\\e4dd';\n}\n\n.mdr-pie_chart:after {\n  content: '\\e4df';\n}\n\n.mdr-pin:after {\n  content: '\\e4e1';\n}\n\n.mdr-pin_drop:after {\n  content: '\\e4e3';\n}\n\n.mdr-pin_off:after {\n  content: '\\e4e5';\n}\n\n.mdr-place:after {\n  content: '\\e4e7';\n}\n\n.mdr-play_arrow:after {\n  content: '\\e4e9';\n}\n\n.mdr-play_circle_filled:after {\n  content: '\\e4eb';\n}\n\n.mdr-play_circle_filled_white:after {\n  content: '\\e4ed';\n}\n\n.mdr-play_circle_outline:after {\n  content: '\\e4ef';\n}\n\n.mdr-play_for_work:after {\n  content: '\\e4f0';\n}\n\n.mdr-playlist_add:after {\n  content: '\\e4f1';\n}\n\n.mdr-playlist_add_check:after {\n  content: '\\e4f2';\n}\n\n.mdr-playlist_play:after {\n  content: '\\e4f3';\n}\n\n.mdr-plus:after {\n  content: '\\e4f4';\n}\n\n.mdr-plus_minus:after {\n  content: '\\e4f5';\n}\n\n.mdr-plus_minus_alt:after {\n  content: '\\e4f6';\n}\n\n.mdr-plus_one:after {\n  content: '\\e4f7';\n}\n\n.mdr-policy:after {\n  content: '\\e4f8';\n}\n\n.mdr-poll:after {\n  content: '\\e4fa';\n}\n\n.mdr-polymer:after {\n  content: '\\e4fc';\n}\n\n.mdr-pool:after {\n  content: '\\e4fd';\n}\n\n.mdr-portable_wifi_off:after {\n  content: '\\e4ff';\n}\n\n.mdr-portrait:after {\n  content: '\\e500';\n}\n\n.mdr-post_add:after {\n  content: '\\e502';\n}\n\n.mdr-power:after {\n  content: '\\e503';\n}\n\n.mdr-power_input:after {\n  content: '\\e505';\n}\n\n.mdr-power_off:after {\n  content: '\\e506';\n}\n\n.mdr-power_settings_new:after {\n  content: '\\e508';\n}\n\n.mdr-pregnant_woman:after {\n  content: '\\e509';\n}\n\n.mdr-present_to_all:after {\n  content: '\\e50a';\n}\n\n.mdr-print:after {\n  content: '\\e50c';\n}\n\n.mdr-print_disabled:after {\n  content: '\\e50e';\n}\n\n.mdr-priority_high:after {\n  content: '\\e510';\n}\n\n.mdr-public:after {\n  content: '\\e511';\n}\n\n.mdr-publish:after {\n  content: '\\e513';\n}\n\n.mdr-qrcode:after {\n  content: '\\e515';\n}\n\n.mdr-query_builder:after {\n  content: '\\e517';\n}\n\n.mdr-question_answer:after {\n  content: '\\e519';\n}\n\n.mdr-queue:after {\n  content: '\\e51b';\n}\n\n.mdr-queue_music:after {\n  content: '\\e51d';\n}\n\n.mdr-queue_play_next:after {\n  content: '\\e51f';\n}\n\n.mdr-radio:after {\n  content: '\\e520';\n}\n\n.mdr-radio_button_checked:after {\n  content: '\\e522';\n}\n\n.mdr-radio_button_unchecked:after {\n  content: '\\e523';\n}\n\n.mdr-rate_review:after {\n  content: '\\e524';\n}\n\n.mdr-receipt:after {\n  content: '\\e526';\n}\n\n.mdr-recent_actors:after {\n  content: '\\e528';\n}\n\n.mdr-record_voice_over:after {\n  content: '\\e52a';\n}\n\n.mdr-redeem:after {\n  content: '\\e52c';\n}\n\n.mdr-redo:after {\n  content: '\\e52e';\n}\n\n.mdr-refresh:after {\n  content: '\\e52f';\n}\n\n.mdr-remove:after {\n  content: '\\e530';\n}\n\n.mdr-remove_circle:after {\n  content: '\\e531';\n}\n\n.mdr-remove_circle_outline:after {\n  content: '\\e533';\n}\n\n.mdr-remove_from_queue:after {\n  content: '\\e534';\n}\n\n.mdr-remove_red_eye:after {\n  content: '\\e536';\n}\n\n.mdr-remove_shopping_cart:after {\n  content: '\\e538';\n}\n\n.mdr-reorder:after {\n  content: '\\e53a';\n}\n\n.mdr-repeat:after {\n  content: '\\e53b';\n}\n\n.mdr-repeat_one:after {\n  content: '\\e53c';\n}\n\n.mdr-replay:after {\n  content: '\\e53d';\n}\n\n.mdr-replay_10:after {\n  content: '\\e53e';\n}\n\n.mdr-replay_30:after {\n  content: '\\e53f';\n}\n\n.mdr-replay_5:after {\n  content: '\\e540';\n}\n\n.mdr-reply:after {\n  content: '\\e541';\n}\n\n.mdr-reply_all:after {\n  content: '\\e542';\n}\n\n.mdr-report:after {\n  content: '\\e543';\n}\n\n.mdr-report_off:after {\n  content: '\\e545';\n}\n\n.mdr-report_problem:after {\n  content: '\\e547';\n}\n\n.mdr-restaurant:after {\n  content: '\\e549';\n}\n\n.mdr-restaurant_menu:after {\n  content: '\\e54a';\n}\n\n.mdr-restore:after {\n  content: '\\e54b';\n}\n\n.mdr-restore_from_trash:after {\n  content: '\\e54c';\n}\n\n.mdr-restore_page:after {\n  content: '\\e54e';\n}\n\n.mdr-ring_volume:after {\n  content: '\\e550';\n}\n\n.mdr-rocket:after {\n  content: '\\e552';\n}\n\n.mdr-room:after {\n  content: '\\e554';\n}\n\n.mdr-room_service:after {\n  content: '\\e556';\n}\n\n.mdr-rotate_90_degrees_ccw:after {\n  content: '\\e558';\n}\n\n.mdr-rotate_left:after {\n  content: '\\e55a';\n}\n\n.mdr-rotate_right:after {\n  content: '\\e55b';\n}\n\n.mdr-rounded_corner:after {\n  content: '\\e55c';\n}\n\n.mdr-router:after {\n  content: '\\e55d';\n}\n\n.mdr-rowing:after {\n  content: '\\e55f';\n}\n\n.mdr-rss_feed:after {\n  content: '\\e560';\n}\n\n.mdr-rv_hookup:after {\n  content: '\\e561';\n}\n\n.mdr-satellite:after {\n  content: '\\e563';\n}\n\n.mdr-save:after {\n  content: '\\e565';\n}\n\n.mdr-save_alt:after {\n  content: '\\e567';\n}\n\n.mdr-scanner:after {\n  content: '\\e568';\n}\n\n.mdr-scatter_plot:after {\n  content: '\\e56a';\n}\n\n.mdr-schedule:after {\n  content: '\\e56c';\n}\n\n.mdr-school:after {\n  content: '\\e56e';\n}\n\n.mdr-score:after {\n  content: '\\e570';\n}\n\n.mdr-screen_lock_landscape:after {\n  content: '\\e572';\n}\n\n.mdr-screen_lock_portrait:after {\n  content: '\\e574';\n}\n\n.mdr-screen_lock_rotation:after {\n  content: '\\e576';\n}\n\n.mdr-screen_rotation:after {\n  content: '\\e577';\n}\n\n.mdr-screen_share:after {\n  content: '\\e579';\n}\n\n.mdr-sd_card:after {\n  content: '\\e57b';\n}\n\n.mdr-sd_storage:after {\n  content: '\\e57d';\n}\n\n.mdr-search:after {\n  content: '\\e57f';\n}\n\n.mdr-security:after {\n  content: '\\e580';\n}\n\n.mdr-select_all:after {\n  content: '\\e582';\n}\n\n.mdr-send:after {\n  content: '\\e583';\n}\n\n.mdr-sentiment_dissatisfied:after {\n  content: '\\e585';\n}\n\n.mdr-sentiment_neutral:after {\n  content: '\\e587';\n}\n\n.mdr-sentiment_satisfied:after {\n  content: '\\e589';\n}\n\n.mdr-sentiment_satisfied_alt:after {\n  content: '\\e58b';\n}\n\n.mdr-sentiment_slightly_dissatisfied:after {\n  content: '\\e58d';\n}\n\n.mdr-sentiment_very_dissatisfied:after {\n  content: '\\e58f';\n}\n\n.mdr-sentiment_very_satisfied:after {\n  content: '\\e591';\n}\n\n.mdr-settings:after {\n  content: '\\e593';\n}\n\n.mdr-settings_applications:after {\n  content: '\\e595';\n}\n\n.mdr-settings_backup_restore:after {\n  content: '\\e597';\n}\n\n.mdr-settings_bluetooth:after {\n  content: '\\e598';\n}\n\n.mdr-settings_brightness:after {\n  content: '\\e599';\n}\n\n.mdr-settings_cell:after {\n  content: '\\e59b';\n}\n\n.mdr-settings_ethernet:after {\n  content: '\\e59d';\n}\n\n.mdr-settings_input_antenna:after {\n  content: '\\e59e';\n}\n\n.mdr-settings_input_component:after {\n  content: '\\e59f';\n}\n\n.mdr-settings_input_composite:after {\n  content: '\\e5a1';\n}\n\n.mdr-settings_input_hdmi:after {\n  content: '\\e5a3';\n}\n\n.mdr-settings_input_svideo:after {\n  content: '\\e5a5';\n}\n\n.mdr-settings_overscan:after {\n  content: '\\e5a7';\n}\n\n.mdr-settings_phone:after {\n  content: '\\e5a9';\n}\n\n.mdr-settings_power:after {\n  content: '\\e5ab';\n}\n\n.mdr-settings_remote:after {\n  content: '\\e5ac';\n}\n\n.mdr-settings_system_daydream:after {\n  content: '\\e5ae';\n}\n\n.mdr-settings_voice:after {\n  content: '\\e5b0';\n}\n\n.mdr-share:after {\n  content: '\\e5b2';\n}\n\n.mdr-shop:after {\n  content: '\\e5b4';\n}\n\n.mdr-shop_two:after {\n  content: '\\e5b6';\n}\n\n.mdr-shopping_basket:after {\n  content: '\\e5b8';\n}\n\n.mdr-shopping_cart:after {\n  content: '\\e5ba';\n}\n\n.mdr-short_text:after {\n  content: '\\e5bc';\n}\n\n.mdr-show_chart:after {\n  content: '\\e5bd';\n}\n\n.mdr-shuffle:after {\n  content: '\\e5be';\n}\n\n.mdr-shutter_speed:after {\n  content: '\\e5bf';\n}\n\n.mdr-signal_cellular_0_bar:after {\n  content: '\\e5c1';\n}\n\n.mdr-signal_cellular_0_bar:before {\n  content: '\\e5c2';\n}\n\n.mdr-signal_cellular_1_bar:after {\n  content: '\\e5c3';\n}\n\n.mdr-signal_cellular_1_bar:before {\n  content: '\\e5c4';\n}\n\n.mdr-signal_cellular_2_bar:after {\n  content: '\\e5c5';\n}\n\n.mdr-signal_cellular_2_bar:before {\n  content: '\\e5c6';\n}\n\n.mdr-signal_cellular_3_bar:after {\n  content: '\\e5c7';\n}\n\n.mdr-signal_cellular_3_bar:before {\n  content: '\\e5c8';\n}\n\n.mdr-signal_cellular_4_bar:after {\n  content: '\\e5c9';\n}\n\n.mdr-signal_cellular_alt:after {\n  content: '\\e5ca';\n}\n\n.mdr-signal_cellular_connected_no_internet_0_bar:after {\n  content: '\\e5cb';\n}\n\n.mdr-signal_cellular_connected_no_internet_0_bar:before {\n  content: '\\e5cc';\n}\n\n.mdr-signal_cellular_connected_no_internet_1_bar:after {\n  content: '\\e5cd';\n}\n\n.mdr-signal_cellular_connected_no_internet_1_bar:before {\n  content: '\\e5ce';\n}\n\n.mdr-signal_cellular_connected_no_internet_2_bar:after {\n  content: '\\e5cf';\n}\n\n.mdr-signal_cellular_connected_no_internet_2_bar:before {\n  content: '\\e5d0';\n}\n\n.mdr-signal_cellular_connected_no_internet_3_bar:after {\n  content: '\\e5d1';\n}\n\n.mdr-signal_cellular_connected_no_internet_3_bar:before {\n  content: '\\e5d2';\n}\n\n.mdr-signal_cellular_connected_no_internet_4_bar:after {\n  content: '\\e5d3';\n}\n\n.mdr-signal_cellular_no_sim:after {\n  content: '\\e5d4';\n}\n\n.mdr-signal_cellular_null:after {\n  content: '\\e5d6';\n}\n\n.mdr-signal_cellular_off:after {\n  content: '\\e5d7';\n}\n\n.mdr-signal_wifi_0_bar:after {\n  content: '\\e5d8';\n}\n\n.mdr-signal_wifi_0_bar:before {\n  content: '\\e5d9';\n}\n\n.mdr-signal_wifi_1_bar:after {\n  content: '\\e5da';\n}\n\n.mdr-signal_wifi_1_bar:before {\n  content: '\\e5db';\n}\n\n.mdr-signal_wifi_1_bar_lock:after {\n  content: '\\e5dc';\n}\n\n.mdr-signal_wifi_1_bar_lock:before {\n  content: '\\e5dd';\n}\n\n.mdr-signal_wifi_2_bar:after {\n  content: '\\e5de';\n}\n\n.mdr-signal_wifi_2_bar:before {\n  content: '\\e5df';\n}\n\n.mdr-signal_wifi_2_bar_lock:after {\n  content: '\\e5e0';\n}\n\n.mdr-signal_wifi_2_bar_lock:before {\n  content: '\\e5e1';\n}\n\n.mdr-signal_wifi_3_bar:after {\n  content: '\\e5e2';\n}\n\n.mdr-signal_wifi_3_bar:before {\n  content: '\\e5e3';\n}\n\n.mdr-signal_wifi_3_bar_lock:after {\n  content: '\\e5e4';\n}\n\n.mdr-signal_wifi_3_bar_lock:before {\n  content: '\\e5e5';\n}\n\n.mdr-signal_wifi_4_bar:after {\n  content: '\\e5e6';\n}\n\n.mdr-signal_wifi_4_bar_lock:after {\n  content: '\\e5e7';\n}\n\n.mdr-signal_wifi_off:after {\n  content: '\\e5e8';\n}\n\n.mdr-sim_card:after {\n  content: '\\e5e9';\n}\n\n.mdr-sim_card_alert:after {\n  content: '\\e5eb';\n}\n\n.mdr-single_bed:after {\n  content: '\\e5ed';\n}\n\n.mdr-skip_next:after {\n  content: '\\e5ef';\n}\n\n.mdr-skip_previous:after {\n  content: '\\e5f1';\n}\n\n.mdr-slideshow:after {\n  content: '\\e5f3';\n}\n\n.mdr-slow_motion_video:after {\n  content: '\\e5f5';\n}\n\n.mdr-smartphone:after {\n  content: '\\e5f6';\n}\n\n.mdr-smoke_free:after {\n  content: '\\e5f8';\n}\n\n.mdr-smoking_rooms:after {\n  content: '\\e5f9';\n}\n\n.mdr-sms:after {\n  content: '\\e5fb';\n}\n\n.mdr-sms_failed:after {\n  content: '\\e5fd';\n}\n\n.mdr-snooze:after {\n  content: '\\e5ff';\n}\n\n.mdr-sort:after {\n  content: '\\e600';\n}\n\n.mdr-sort_by_alpha:after {\n  content: '\\e601';\n}\n\n.mdr-spa:after {\n  content: '\\e602';\n}\n\n.mdr-space_bar:after {\n  content: '\\e604';\n}\n\n.mdr-speaker:after {\n  content: '\\e605';\n}\n\n.mdr-speaker_group:after {\n  content: '\\e607';\n}\n\n.mdr-speaker_notes:after {\n  content: '\\e609';\n}\n\n.mdr-speaker_notes_off:after {\n  content: '\\e60b';\n}\n\n.mdr-speaker_phone:after {\n  content: '\\e60d';\n}\n\n.mdr-speed:after {\n  content: '\\e60f';\n}\n\n.mdr-spellcheck:after {\n  content: '\\e610';\n}\n\n.mdr-sports:after {\n  content: '\\e611';\n}\n\n.mdr-sports_baseball:after {\n  content: '\\e612';\n}\n\n.mdr-sports_basketball:after {\n  content: '\\e614';\n}\n\n.mdr-sports_cricket:after {\n  content: '\\e616';\n}\n\n.mdr-sports_esports:after {\n  content: '\\e618';\n}\n\n.mdr-sports_football:after {\n  content: '\\e61a';\n}\n\n.mdr-sports_golf:after {\n  content: '\\e61c';\n}\n\n.mdr-sports_handball:after {\n  content: '\\e61e';\n}\n\n.mdr-sports_hockey:after {\n  content: '\\e61f';\n}\n\n.mdr-sports_kabaddi:after {\n  content: '\\e620';\n}\n\n.mdr-sports_mma:after {\n  content: '\\e621';\n}\n\n.mdr-sports_motorsports:after {\n  content: '\\e623';\n}\n\n.mdr-sports_rugby:after {\n  content: '\\e625';\n}\n\n.mdr-sports_soccer:after {\n  content: '\\e627';\n}\n\n.mdr-sports_tennis:after {\n  content: '\\e629';\n}\n\n.mdr-sports_volleyball:after {\n  content: '\\e62a';\n}\n\n.mdr-square_foot:after {\n  content: '\\e62c';\n}\n\n.mdr-star:after {\n  content: '\\e62e';\n}\n\n.mdr-star_border:after {\n  content: '\\e630';\n}\n\n.mdr-star_half:after {\n  content: '\\e631';\n}\n\n.mdr-star_rate:after {\n  content: '\\e632';\n}\n\n.mdr-stars:after {\n  content: '\\e633';\n}\n\n.mdr-stay_current_landscape:after {\n  content: '\\e635';\n}\n\n.mdr-stay_current_portrait:after {\n  content: '\\e637';\n}\n\n.mdr-stay_primary_landscape:after {\n  content: '\\e639';\n}\n\n.mdr-stay_primary_portrait:after {\n  content: '\\e63b';\n}\n\n.mdr-stop:after {\n  content: '\\e63d';\n}\n\n.mdr-stop_circle:after {\n  content: '\\e63f';\n}\n\n.mdr-stop_screen_share:after {\n  content: '\\e641';\n}\n\n.mdr-storage:after {\n  content: '\\e643';\n}\n\n.mdr-store:after {\n  content: '\\e644';\n}\n\n.mdr-store_mall_directory:after {\n  content: '\\e646';\n}\n\n.mdr-storefront:after {\n  content: '\\e648';\n}\n\n.mdr-straighten:after {\n  content: '\\e64a';\n}\n\n.mdr-streetview:after {\n  content: '\\e64c';\n}\n\n.mdr-strikethrough_s:after {\n  content: '\\e64d';\n}\n\n.mdr-style:after {\n  content: '\\e64e';\n}\n\n.mdr-subdirectory_arrow_left:after {\n  content: '\\e650';\n}\n\n.mdr-subdirectory_arrow_right:after {\n  content: '\\e651';\n}\n\n.mdr-subject:after {\n  content: '\\e652';\n}\n\n.mdr-subscriptions:after {\n  content: '\\e653';\n}\n\n.mdr-subtitles:after {\n  content: '\\e655';\n}\n\n.mdr-subway:after {\n  content: '\\e657';\n}\n\n.mdr-supervised_user_circle:after {\n  content: '\\e659';\n}\n\n.mdr-supervisor_account:after {\n  content: '\\e65b';\n}\n\n.mdr-surround_sound:after {\n  content: '\\e65d';\n}\n\n.mdr-swap_calls:after {\n  content: '\\e65f';\n}\n\n.mdr-swap_horiz:after {\n  content: '\\e660';\n}\n\n.mdr-swap_horizontal_circle:after {\n  content: '\\e661';\n}\n\n.mdr-swap_vert:after {\n  content: '\\e663';\n}\n\n.mdr-swap_vertical_circle:after {\n  content: '\\e664';\n}\n\n.mdr-switch_camera:after {\n  content: '\\e666';\n}\n\n.mdr-switch_video:after {\n  content: '\\e668';\n}\n\n.mdr-sync:after {\n  content: '\\e66a';\n}\n\n.mdr-sync_alt:after {\n  content: '\\e66b';\n}\n\n.mdr-sync_disabled:after {\n  content: '\\e66c';\n}\n\n.mdr-sync_problem:after {\n  content: '\\e66d';\n}\n\n.mdr-system_update:after {\n  content: '\\e66e';\n}\n\n.mdr-system_update_alt:after {\n  content: '\\e670';\n}\n\n.mdr-tab:after {\n  content: '\\e671';\n}\n\n.mdr-tab_unselected:after {\n  content: '\\e672';\n}\n\n.mdr-table_chart:after {\n  content: '\\e673';\n}\n\n.mdr-tablet:after {\n  content: '\\e675';\n}\n\n.mdr-tablet_android:after {\n  content: '\\e677';\n}\n\n.mdr-tablet_mac:after {\n  content: '\\e679';\n}\n\n.mdr-tag_faces:after {\n  content: '\\e67b';\n}\n\n.mdr-tap_and_play:after {\n  content: '\\e67d';\n}\n\n.mdr-terrain:after {\n  content: '\\e67e';\n}\n\n.mdr-text_fields:after {\n  content: '\\e680';\n}\n\n.mdr-text_format:after {\n  content: '\\e681';\n}\n\n.mdr-text_rotate_up:after {\n  content: '\\e682';\n}\n\n.mdr-text_rotate_vertical:after {\n  content: '\\e683';\n}\n\n.mdr-text_rotation_angledown:after {\n  content: '\\e684';\n}\n\n.mdr-text_rotation_angleup:after {\n  content: '\\e685';\n}\n\n.mdr-text_rotation_down:after {\n  content: '\\e686';\n}\n\n.mdr-text_rotation_none:after {\n  content: '\\e687';\n}\n\n.mdr-textsms:after {\n  content: '\\e688';\n}\n\n.mdr-texture:after {\n  content: '\\e68a';\n}\n\n.mdr-theaters:after {\n  content: '\\e68b';\n}\n\n.mdr-thumb_down:after {\n  content: '\\e68d';\n}\n\n.mdr-thumb_down_alt:after {\n  content: '\\e68f';\n}\n\n.mdr-thumb_up:after {\n  content: '\\e691';\n}\n\n.mdr-thumb_up_alt:after {\n  content: '\\e693';\n}\n\n.mdr-thumbs_up_down:after {\n  content: '\\e695';\n}\n\n.mdr-time_to_leave:after {\n  content: '\\e697';\n}\n\n.mdr-timelapse:after {\n  content: '\\e699';\n}\n\n.mdr-timeline:after {\n  content: '\\e69b';\n}\n\n.mdr-timer:after {\n  content: '\\e69c';\n}\n\n.mdr-timer_10:after {\n  content: '\\e69e';\n}\n\n.mdr-timer_3:after {\n  content: '\\e69f';\n}\n\n.mdr-timer_off:after {\n  content: '\\e6a0';\n}\n\n.mdr-title:after {\n  content: '\\e6a2';\n}\n\n.mdr-toc:after {\n  content: '\\e6a3';\n}\n\n.mdr-today:after {\n  content: '\\e6a4';\n}\n\n.mdr-toggle_off:after {\n  content: '\\e6a6';\n}\n\n.mdr-toggle_on:after {\n  content: '\\e6a8';\n}\n\n.mdr-toll:after {\n  content: '\\e6aa';\n}\n\n.mdr-tonality:after {\n  content: '\\e6ac';\n}\n\n.mdr-touch_app:after {\n  content: '\\e6ae';\n}\n\n.mdr-toys:after {\n  content: '\\e6b0';\n}\n\n.mdr-track_changes:after {\n  content: '\\e6b2';\n}\n\n.mdr-traffic:after {\n  content: '\\e6b3';\n}\n\n.mdr-train:after {\n  content: '\\e6b5';\n}\n\n.mdr-tram:after {\n  content: '\\e6b7';\n}\n\n.mdr-transfer_within_a_station:after {\n  content: '\\e6b9';\n}\n\n.mdr-transform:after {\n  content: '\\e6ba';\n}\n\n.mdr-transit_enterexit:after {\n  content: '\\e6bb';\n}\n\n.mdr-translate:after {\n  content: '\\e6bc';\n}\n\n.mdr-trending_down:after {\n  content: '\\e6bd';\n}\n\n.mdr-trending_flat:after {\n  content: '\\e6be';\n}\n\n.mdr-trending_up:after {\n  content: '\\e6bf';\n}\n\n.mdr-trip_origin:after {\n  content: '\\e6c0';\n}\n\n.mdr-tune:after {\n  content: '\\e6c1';\n}\n\n.mdr-turned_in:after {\n  content: '\\e6c2';\n}\n\n.mdr-turned_in_not:after {\n  content: '\\e6c4';\n}\n\n.mdr-tv:after {\n  content: '\\e6c5';\n}\n\n.mdr-tv_off:after {\n  content: '\\e6c7';\n}\n\n.mdr-unarchive:after {\n  content: '\\e6c9';\n}\n\n.mdr-undo:after {\n  content: '\\e6cb';\n}\n\n.mdr-unfold_less:after {\n  content: '\\e6cc';\n}\n\n.mdr-unfold_more:after {\n  content: '\\e6cd';\n}\n\n.mdr-unsubscribe:after {\n  content: '\\e6ce';\n}\n\n.mdr-update:after {\n  content: '\\e6d0';\n}\n\n.mdr-usb:after {\n  content: '\\e6d1';\n}\n\n.mdr-verified_user:after {\n  content: '\\e6d2';\n}\n\n.mdr-vertical_align_bottom:after {\n  content: '\\e6d4';\n}\n\n.mdr-vertical_align_center:after {\n  content: '\\e6d5';\n}\n\n.mdr-vertical_align_top:after {\n  content: '\\e6d6';\n}\n\n.mdr-vertical_split:after {\n  content: '\\e6d7';\n}\n\n.mdr-vibration:after {\n  content: '\\e6d9';\n}\n\n.mdr-video_call:after {\n  content: '\\e6db';\n}\n\n.mdr-video_label:after {\n  content: '\\e6dd';\n}\n\n.mdr-video_library:after {\n  content: '\\e6df';\n}\n\n.mdr-videocam:after {\n  content: '\\e6e1';\n}\n\n.mdr-videocam_off:after {\n  content: '\\e6e3';\n}\n\n.mdr-videogame_asset:after {\n  content: '\\e6e5';\n}\n\n.mdr-view_agenda:after {\n  content: '\\e6e7';\n}\n\n.mdr-view_array:after {\n  content: '\\e6e9';\n}\n\n.mdr-view_carousel:after {\n  content: '\\e6eb';\n}\n\n.mdr-view_column:after {\n  content: '\\e6ed';\n}\n\n.mdr-view_comfy:after {\n  content: '\\e6ef';\n}\n\n.mdr-view_compact:after {\n  content: '\\e6f1';\n}\n\n.mdr-view_day:after {\n  content: '\\e6f3';\n}\n\n.mdr-view_headline:after {\n  content: '\\e6f5';\n}\n\n.mdr-view_list:after {\n  content: '\\e6f6';\n}\n\n.mdr-view_module:after {\n  content: '\\e6f8';\n}\n\n.mdr-view_quilt:after {\n  content: '\\e6fa';\n}\n\n.mdr-view_stream:after {\n  content: '\\e6fc';\n}\n\n.mdr-view_week:after {\n  content: '\\e6fe';\n}\n\n.mdr-vignette:after {\n  content: '\\e700';\n}\n\n.mdr-visibility:after {\n  content: '\\e702';\n}\n\n.mdr-visibility_off:after {\n  content: '\\e704';\n}\n\n.mdr-voice_chat:after {\n  content: '\\e706';\n}\n\n.mdr-voice_over_off:after {\n  content: '\\e708';\n}\n\n.mdr-voicemail:after {\n  content: '\\e70a';\n}\n\n.mdr-volume_down:after {\n  content: '\\e70b';\n}\n\n.mdr-volume_mute:after {\n  content: '\\e70d';\n}\n\n.mdr-volume_off:after {\n  content: '\\e70f';\n}\n\n.mdr-volume_up:after {\n  content: '\\e711';\n}\n\n.mdr-vpn_key:after {\n  content: '\\e713';\n}\n\n.mdr-vpn_lock:after {\n  content: '\\e715';\n}\n\n.mdr-wallpaper:after {\n  content: '\\e717';\n}\n\n.mdr-warning:after {\n  content: '\\e718';\n}\n\n.mdr-watch:after {\n  content: '\\e71a';\n}\n\n.mdr-watch_later:after {\n  content: '\\e71c';\n}\n\n.mdr-waves:after {\n  content: '\\e71e';\n}\n\n.mdr-wb_auto:after {\n  content: '\\e71f';\n}\n\n.mdr-wb_cloudy:after {\n  content: '\\e721';\n}\n\n.mdr-wb_incandescent:after {\n  content: '\\e723';\n}\n\n.mdr-wb_iridescent:after {\n  content: '\\e725';\n}\n\n.mdr-wb_sunny:after {\n  content: '\\e727';\n}\n\n.mdr-wc:after {\n  content: '\\e729';\n}\n\n.mdr-web:after {\n  content: '\\e72a';\n}\n\n.mdr-web_asset:after {\n  content: '\\e72c';\n}\n\n.mdr-weekend:after {\n  content: '\\e72e';\n}\n\n.mdr-whatshot:after {\n  content: '\\e730';\n}\n\n.mdr-where_to_vote:after {\n  content: '\\e732';\n}\n\n.mdr-widgets:after {\n  content: '\\e734';\n}\n\n.mdr-wifi:after {\n  content: '\\e736';\n}\n\n.mdr-wifi_lock:after {\n  content: '\\e737';\n}\n\n.mdr-wifi_off:after {\n  content: '\\e738';\n}\n\n.mdr-wifi_tethering:after {\n  content: '\\e739';\n}\n\n.mdr-work:after {\n  content: '\\e73a';\n}\n\n.mdr-work_off:after {\n  content: '\\e73c';\n}\n\n.mdr-work_outline:after {\n  content: '\\e73e';\n}\n\n.mdr-wrap_text:after {\n  content: '\\e73f';\n}\n\n.mdr-youtube_searched_for:after {\n  content: '\\e740';\n}\n\n.mdr-zoom_in:after {\n  content: '\\e741';\n}\n\n.mdr-zoom_out:after {\n  content: '\\e742';\n}\n\n.mdr-zoom_out_map:after {\n  content: '\\e743';\n}\n\n.mdr-add_ic_call:after {\n  content: '\\e744';\n}\n\n.mdr-library_add_check:after {\n  content: '\\e746';\n}\n\n.mdr-star_outline:after {\n  content: '\\e748';\n}\n\n.mdr-two_wheeler:after {\n  content: '\\e749';\n}\n\n.mdr-5g:after {\n  content: '\\e74a';\n}\n\n.mdr-ad_units:after {\n  content: '\\e74b';\n}\n\n.mdr-add_business:after {\n  content: '\\e74d';\n}\n\n.mdr-add_location_alt:after {\n  content: '\\e74f';\n}\n\n.mdr-add_road:after {\n  content: '\\e751';\n}\n\n.mdr-addchart:after {\n  content: '\\e752';\n}\n\n.mdr-admin_panel_settings:after {\n  content: '\\e753';\n}\n\n.mdr-agriculture:after {\n  content: '\\e755';\n}\n\n.mdr-alt_route:after {\n  content: '\\e757';\n}\n\n.mdr-analytics:after {\n  content: '\\e758';\n}\n\n.mdr-anchor:after {\n  content: '\\e75a';\n}\n\n.mdr-api:after {\n  content: '\\e75b';\n}\n\n.mdr-app_blocking:after {\n  content: '\\e75c';\n}\n\n.mdr-app_settings_alt:after {\n  content: '\\e75e';\n}\n\n.mdr-architecture:after {\n  content: '\\e760';\n}\n\n.mdr-arrow_circle_down:after {\n  content: '\\e761';\n}\n\n.mdr-arrow_circle_up:after {\n  content: '\\e763';\n}\n\n.mdr-article:after {\n  content: '\\e765';\n}\n\n.mdr-attach_email:after {\n  content: '\\e767';\n}\n\n.mdr-auto_delete:after {\n  content: '\\e768';\n}\n\n.mdr-baby_changing_station:after {\n  content: '\\e76a';\n}\n\n.mdr-backpack:after {\n  content: '\\e76b';\n}\n\n.mdr-backup_table:after {\n  content: '\\e76d';\n}\n\n.mdr-batch_prediction:after {\n  content: '\\e76f';\n}\n\n.mdr-bedtime:after {\n  content: '\\e771';\n}\n\n.mdr-bike_scooter:after {\n  content: '\\e773';\n}\n\n.mdr-biotech:after {\n  content: '\\e774';\n}\n\n.mdr-browser_not_supported:after {\n  content: '\\e776';\n}\n\n.mdr-build_circle:after {\n  content: '\\e777';\n}\n\n.mdr-calculate:after {\n  content: '\\e779';\n}\n\n.mdr-campaign:after {\n  content: '\\e77b';\n}\n\n.mdr-charging_station:after {\n  content: '\\e77d';\n}\n\n.mdr-checkroom:after {\n  content: '\\e77f';\n}\n\n.mdr-cleaning_services:after {\n  content: '\\e780';\n}\n\n.mdr-close_fullscreen:after {\n  content: '\\e782';\n}\n\n.mdr-comment_bank:after {\n  content: '\\e783';\n}\n\n.mdr-construction:after {\n  content: '\\e785';\n}\n\n.mdr-corporate_fare:after {\n  content: '\\e786';\n}\n\n.mdr-design_services:after {\n  content: '\\e788';\n}\n\n.mdr-directions_off:after {\n  content: '\\e78a';\n}\n\n.mdr-do_not_step:after {\n  content: '\\e78b';\n}\n\n.mdr-do_not_touch:after {\n  content: '\\e78d';\n}\n\n.mdr-domain_verification:after {\n  content: '\\e78f';\n}\n\n.mdr-dry:after {\n  content: '\\e791';\n}\n\n.mdr-dynamic_form:after {\n  content: '\\e793';\n}\n\n.mdr-edit_road:after {\n  content: '\\e795';\n}\n\n.mdr-electric_bike:after {\n  content: '\\e797';\n}\n\n.mdr-electric_car:after {\n  content: '\\e798';\n}\n\n.mdr-electric_moped:after {\n  content: '\\e79a';\n}\n\n.mdr-electric_scooter:after {\n  content: '\\e79c';\n}\n\n.mdr-electrical_services:after {\n  content: '\\e79d';\n}\n\n.mdr-elevator:after {\n  content: '\\e79e';\n}\n\n.mdr-engineering:after {\n  content: '\\e7a0';\n}\n\n.mdr-escalator:after {\n  content: '\\e7a2';\n}\n\n.mdr-escalator_warning:after {\n  content: '\\e7a4';\n}\n\n.mdr-fact_check:after {\n  content: '\\e7a5';\n}\n\n.mdr-family_restroom:after {\n  content: '\\e7a7';\n}\n\n.mdr-filter_alt:after {\n  content: '\\e7a8';\n}\n\n.mdr-flaky:after {\n  content: '\\e7aa';\n}\n\n.mdr-forward_to_inbox:after {\n  content: '\\e7ab';\n}\n\n.mdr-grading:after {\n  content: '\\e7ad';\n}\n\n.mdr-handyman:after {\n  content: '\\e7ae';\n}\n\n.mdr-hearing_disabled:after {\n  content: '\\e7b0';\n}\n\n.mdr-help_center:after {\n  content: '\\e7b1';\n}\n\n.mdr-highlight_alt:after {\n  content: '\\e7b3';\n}\n\n.mdr-history_edu:after {\n  content: '\\e7b4';\n}\n\n.mdr-history_toggle_off:after {\n  content: '\\e7b6';\n}\n\n.mdr-home_repair_service:after {\n  content: '\\e7b7';\n}\n\n.mdr-horizontal_rule:after {\n  content: '\\e7b9';\n}\n\n.mdr-hourglass_bottom:after {\n  content: '\\e7ba';\n}\n\n.mdr-hourglass_disabled:after {\n  content: '\\e7bc';\n}\n\n.mdr-hourglass_top:after {\n  content: '\\e7bd';\n}\n\n.mdr-hvac:after {\n  content: '\\e7bf';\n}\n\n.mdr-image_not_supported:after {\n  content: '\\e7c1';\n}\n\n.mdr-insights:after {\n  content: '\\e7c3';\n}\n\n.mdr-integration_instructions:after {\n  content: '\\e7c4';\n}\n\n.mdr-legend_toggle:after {\n  content: '\\e7c6';\n}\n\n.mdr-login:after {\n  content: '\\e7c7';\n}\n\n.mdr-maps_ugc:after {\n  content: '\\e7c8';\n}\n\n.mdr-mark_chat_read:after {\n  content: '\\e7ca';\n}\n\n.mdr-mark_chat_unread:after {\n  content: '\\e7cc';\n}\n\n.mdr-mark_email_read:after {\n  content: '\\e7ce';\n}\n\n.mdr-mark_email_unread:after {\n  content: '\\e7d0';\n}\n\n.mdr-mediation:after {\n  content: '\\e7d2';\n}\n\n.mdr-medical_services:after {\n  content: '\\e7d3';\n}\n\n.mdr-military_tech:after {\n  content: '\\e7d5';\n}\n\n.mdr-miscellaneous_services:after {\n  content: '\\e7d7';\n}\n\n.mdr-model_training:after {\n  content: '\\e7d8';\n}\n\n.mdr-moped:after {\n  content: '\\e7d9';\n}\n\n.mdr-more_time:after {\n  content: '\\e7db';\n}\n\n.mdr-multiple_stop:after {\n  content: '\\e7dc';\n}\n\n.mdr-nat:after {\n  content: '\\e7dd';\n}\n\n.mdr-next_plan:after {\n  content: '\\e7df';\n}\n\n.mdr-no_cell:after {\n  content: '\\e7e1';\n}\n\n.mdr-no_drinks:after {\n  content: '\\e7e3';\n}\n\n.mdr-no_flash:after {\n  content: '\\e7e5';\n}\n\n.mdr-no_food:after {\n  content: '\\e7e7';\n}\n\n.mdr-no_photography:after {\n  content: '\\e7e9';\n}\n\n.mdr-no_stroller:after {\n  content: '\\e7eb';\n}\n\n.mdr-not_accessible:after {\n  content: '\\e7ed';\n}\n\n.mdr-not_started:after {\n  content: '\\e7ee';\n}\n\n.mdr-online_prediction:after {\n  content: '\\e7f0';\n}\n\n.mdr-open_in_full:after {\n  content: '\\e7f1';\n}\n\n.mdr-outlet:after {\n  content: '\\e7f2';\n}\n\n.mdr-payments:after {\n  content: '\\e7f4';\n}\n\n.mdr-pedal_bike:after {\n  content: '\\e7f6';\n}\n\n.mdr-pending:after {\n  content: '\\e7f7';\n}\n\n.mdr-pending_actions:after {\n  content: '\\e7f9';\n}\n\n.mdr-person_add_alt_1:after {\n  content: '\\e7fb';\n}\n\n.mdr-person_remove:after {\n  content: '\\e7fd';\n}\n\n.mdr-person_remove_alt_1:after {\n  content: '\\e7ff';\n}\n\n.mdr-person_search:after {\n  content: '\\e801';\n}\n\n.mdr-pest_control:after {\n  content: '\\e803';\n}\n\n.mdr-pest_control_rodent:after {\n  content: '\\e805';\n}\n\n.mdr-plagiarism:after {\n  content: '\\e807';\n}\n\n.mdr-plumbing:after {\n  content: '\\e809';\n}\n\n.mdr-point_of_sale:after {\n  content: '\\e80a';\n}\n\n.mdr-preview:after {\n  content: '\\e80c';\n}\n\n.mdr-privacy_tip:after {\n  content: '\\e80e';\n}\n\n.mdr-psychology:after {\n  content: '\\e810';\n}\n\n.mdr-public_off:after {\n  content: '\\e812';\n}\n\n.mdr-push_pin:after {\n  content: '\\e814';\n}\n\n.mdr-qr_code:after {\n  content: '\\e816';\n}\n\n.mdr-quickreply:after {\n  content: '\\e818';\n}\n\n.mdr-read_more:after {\n  content: '\\e81a';\n}\n\n.mdr-receipt_long:after {\n  content: '\\e81b';\n}\n\n.mdr-request_quote:after {\n  content: '\\e81d';\n}\n\n.mdr-room_preferences:after {\n  content: '\\e81f';\n}\n\n.mdr-rule:after {\n  content: '\\e821';\n}\n\n.mdr-rule_folder:after {\n  content: '\\e822';\n}\n\n.mdr-run_circle:after {\n  content: '\\e824';\n}\n\n.mdr-science:after {\n  content: '\\e826';\n}\n\n.mdr-search_off:after {\n  content: '\\e828';\n}\n\n.mdr-self_improvement:after {\n  content: '\\e829';\n}\n\n.mdr-sensor_door:after {\n  content: '\\e82a';\n}\n\n.mdr-sensor_window:after {\n  content: '\\e82c';\n}\n\n.mdr-shopping_bag:after {\n  content: '\\e82e';\n}\n\n.mdr-smart_button:after {\n  content: '\\e830';\n}\n\n.mdr-snippet_folder:after {\n  content: '\\e831';\n}\n\n.mdr-soap:after {\n  content: '\\e833';\n}\n\n.mdr-source:after {\n  content: '\\e835';\n}\n\n.mdr-stairs:after {\n  content: '\\e837';\n}\n\n.mdr-stroller:after {\n  content: '\\e839';\n}\n\n.mdr-subscript:after {\n  content: '\\e83b';\n}\n\n.mdr-subtitles_off:after {\n  content: '\\e83c';\n}\n\n.mdr-superscript:after {\n  content: '\\e83e';\n}\n\n.mdr-support:after {\n  content: '\\e83f';\n}\n\n.mdr-support_agent:after {\n  content: '\\e841';\n}\n\n.mdr-switch_left:after {\n  content: '\\e842';\n}\n\n.mdr-switch_right:after {\n  content: '\\e844';\n}\n\n.mdr-table_rows:after {\n  content: '\\e846';\n}\n\n.mdr-table_view:after {\n  content: '\\e848';\n}\n\n.mdr-text_snippet:after {\n  content: '\\e84a';\n}\n\n.mdr-topic:after {\n  content: '\\e84c';\n}\n\n.mdr-tour:after {\n  content: '\\e84e';\n}\n\n.mdr-tty:after {\n  content: '\\e850';\n}\n\n.mdr-umbrella:after {\n  content: '\\e852';\n}\n\n.mdr-upgrade:after {\n  content: '\\e854';\n}\n\n.mdr-verified:after {\n  content: '\\e855';\n}\n\n.mdr-video_settings:after {\n  content: '\\e857';\n}\n\n.mdr-view_sidebar:after {\n  content: '\\e858';\n}\n\n.mdr-wash:after {\n  content: '\\e85a';\n}\n\n.mdr-wheelchair_pickup:after {\n  content: '\\e85c';\n}\n\n.mdr-wifi_calling:after {\n  content: '\\e85d';\n}\n\n.mdr-wifi_protected_setup:after {\n  content: '\\e85f';\n}\n\n.mdr-wrong_location:after {\n  content: '\\e860';\n}\n\n.mdr-wysiwyg:after {\n  content: '\\e861';\n}\n\n.mdr-bento:after {\n  content: '\\e864';\n}\n\n.mdr-carpenter:after {\n  content: '\\e866';\n}\n\n.mdr-closed_caption_disabled:after {\n  content: '\\e868';\n}\n\n.mdr-countertops:after {\n  content: '\\e86a';\n}\n\n.mdr-east:after {\n  content: '\\e86c';\n}\n\n.mdr-fence:after {\n  content: '\\e86d';\n}\n\n.mdr-fire_extinguisher:after {\n  content: '\\e86f';\n}\n\n.mdr-food_bank:after {\n  content: '\\e870';\n}\n\n.mdr-foundation:after {\n  content: '\\e872';\n}\n\n.mdr-grass:after {\n  content: '\\e874';\n}\n\n.mdr-house_siding:after {\n  content: '\\e875';\n}\n\n.mdr-leaderboard:after {\n  content: '\\e877';\n}\n\n.mdr-microwave:after {\n  content: '\\e879';\n}\n\n.mdr-near_me_disabled:after {\n  content: '\\e87b';\n}\n\n.mdr-night_shelter:after {\n  content: '\\e87d';\n}\n\n.mdr-no_meals:after {\n  content: '\\e87f';\n}\n\n.mdr-no_transfer:after {\n  content: '\\e880';\n}\n\n.mdr-north:after {\n  content: '\\e882';\n}\n\n.mdr-north_east:after {\n  content: '\\e883';\n}\n\n.mdr-north_west:after {\n  content: '\\e884';\n}\n\n.mdr-qr_code_scanner:after {\n  content: '\\e885';\n}\n\n.mdr-rice_bowl:after {\n  content: '\\e886';\n}\n\n.mdr-roofing:after {\n  content: '\\e888';\n}\n\n.mdr-set_meal:after {\n  content: '\\e88a';\n}\n\n.mdr-south:after {\n  content: '\\e88c';\n}\n\n.mdr-south_east:after {\n  content: '\\e88d';\n}\n\n.mdr-south_west:after {\n  content: '\\e88e';\n}\n\n.mdr-sports_bar:after {\n  content: '\\e88f';\n}\n\n.mdr-sticky_note_2:after {\n  content: '\\e891';\n}\n\n.mdr-tapas:after {\n  content: '\\e893';\n}\n\n.mdr-water_damage:after {\n  content: '\\e895';\n}\n\n.mdr-west:after {\n  content: '\\e897';\n}\n\n.mdr-wine_bar:after {\n  content: '\\e898';\n}\n\n.mdr-6_ft_apart:after {\n  content: '\\e89a';\n}\n\n.mdr-book_online:after {\n  content: '\\e89b';\n}\n\n.mdr-clean_hands:after {\n  content: '\\e89d';\n}\n\n.mdr-connect_without_contact:after {\n  content: '\\e89f';\n}\n\n.mdr-coronavirus:after {\n  content: '\\e8a0';\n}\n\n.mdr-elderly:after {\n  content: '\\e8a2';\n}\n\n.mdr-follow_the_signs:after {\n  content: '\\e8a3';\n}\n\n.mdr-leave_bags_at_home:after {\n  content: '\\e8a5';\n}\n\n.mdr-local_fire_department:after {\n  content: '\\e8a7';\n}\n\n.mdr-local_police:after {\n  content: '\\e8a9';\n}\n\n.mdr-masks:after {\n  content: '\\e8ab';\n}\n\n.mdr-motion_photos_on:after {\n  content: '\\e8ad';\n}\n\n.mdr-motion_photos_paused:after {\n  content: '\\e8ae';\n}\n\n.mdr-reduce_capacity:after {\n  content: '\\e8af';\n}\n\n.mdr-sanitizer:after {\n  content: '\\e8b0';\n}\n\n.mdr-sick:after {\n  content: '\\e8b2';\n}\n\n.mdr-add_task:after {\n  content: '\\e8b3';\n}\n\n.mdr-contact_page:after {\n  content: '\\e8b4';\n}\n\n.mdr-disabled_by_default:after {\n  content: '\\e8b6';\n}\n\n.mdr-facebook:after {\n  content: '\\e8b8';\n}\n\n.mdr-groups:after {\n  content: '\\e8b9';\n}\n\n.mdr-luggage:after {\n  content: '\\e8bb';\n}\n\n.mdr-motion_photos_pause:after {\n  content: '\\e8bd';\n}\n\n.mdr-no_backpack:after {\n  content: '\\e8be';\n}\n\n.mdr-no_luggage:after {\n  content: '\\e8c0';\n}\n\n.mdr-outbond:after {\n  content: '\\e8c2';\n}\n\n.mdr-published_with_changes:after {\n  content: '\\e8c4';\n}\n\n.mdr-request_page:after {\n  content: '\\e8c5';\n}\n\n.mdr-stacked_line_chart:after {\n  content: '\\e8c7';\n}\n\n.mdr-unpublished:after {\n  content: '\\e8c8';\n}\n\n.mdr-align_horizontal_center:after {\n  content: '\\e8ca';\n}\n\n.mdr-align_horizontal_left:after {\n  content: '\\e8cb';\n}\n\n.mdr-align_horizontal_right:after {\n  content: '\\e8cc';\n}\n\n.mdr-align_vertical_bottom:after {\n  content: '\\e8cd';\n}\n\n.mdr-align_vertical_center:after {\n  content: '\\e8ce';\n}\n\n.mdr-align_vertical_top:after {\n  content: '\\e8cf';\n}\n\n.mdr-horizontal_distribute:after {\n  content: '\\e8d0';\n}\n\n.mdr-qr_code_2:after {\n  content: '\\e8d1';\n}\n\n.mdr-update_disabled:after {\n  content: '\\e8d2';\n}\n\n.mdr-vertical_distribute:after {\n  content: '\\e8d3';\n}\n"
  },
  {
    "path": "icon-packs/ikonli-material2-pack/src/main/resources/META-INF/resources/material2/20200820/css/md-sharp.css",
    "content": "@font-face {\n  font-family: \"Material Icons Sharp\";\n  font-style: normal;\n  font-weight: 400;\n  font-display: block;\n  src: url(\"../fonts/MaterialIcons-Sharp.ttf\");\n  /* For IE6-8 */\n  src: url(\"../fonts/MaterialIcons-Sharp.woff2\") format(\"woff2\"), url(\"../fonts/MaterialIcons-Sharp.woff\") format(\"woff\"), url(\"../fonts/MaterialIcons-Sharp.ttf\") format(\"truetype\");\n}\n\n.mds {\n  font-family: \"Material Icons Sharp\";\n  font-weight: normal;\n  font-style: normal;\n  font-size: 24px;\n  display: inline-block;\n  line-height: 1;\n  text-transform: none;\n  letter-spacing: normal;\n  -ms-word-wrap: normal;\n  word-wrap: normal;\n  white-space: nowrap;\n  direction: ltr;\n  text-rendering: optimizeLegibility;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n  position: relative;\n}\n\n.mds:before {\n  position: absolute;\n  left: 0;\n  right: 0;\n  top: 0;\n  bottom: 0;\n  opacity: .3;\n}\n\n.mds:after {\n  opacity: 1;\n}\n\n/* Rules for sizing the icon. */\n.mds-18 {\n  font-size: 18px;\n}\n\n.mds-24 {\n  font-size: 24px;\n}\n\n.mds-36 {\n  font-size: 36px;\n}\n\n.mds-48 {\n  font-size: 48px;\n}\n\n/* Rules for using icons as black on a light background. */\n.mds-dark {\n  color: rgba(0, 0, 0, 0.54);\n}\n\n.mds-dark.mds-inactive {\n  color: rgba(0, 0, 0, 0.26);\n}\n\n/* Rules for using icons as white on a dark background. */\n.mds-light {\n  color: white;\n}\n\n.mds-light.mds-inactive {\n  color: rgba(255, 255, 255, 0.3);\n}\n\n/* Icons. */\n.mds-360:after {\n  content: '\\e000';\n}\n\n.mds-3d_rotation:after {\n  content: '\\e001';\n}\n\n.mds-4k:after {\n  content: '\\e002';\n}\n\n.mds-ac_unit:after {\n  content: '\\e004';\n}\n\n.mds-access_alarm:after {\n  content: '\\e005';\n}\n\n.mds-access_alarms:after {\n  content: '\\e007';\n}\n\n.mds-access_time:after {\n  content: '\\e009';\n}\n\n.mds-accessibility:after {\n  content: '\\e00b';\n}\n\n.mds-accessibility_new:after {\n  content: '\\e00c';\n}\n\n.mds-accessible:after {\n  content: '\\e00d';\n}\n\n.mds-accessible_forward:after {\n  content: '\\e00e';\n}\n\n.mds-account_balance:after {\n  content: '\\e00f';\n}\n\n.mds-account_balance_wallet:after {\n  content: '\\e011';\n}\n\n.mds-account_box:after {\n  content: '\\e013';\n}\n\n.mds-account_circle:after {\n  content: '\\e015';\n}\n\n.mds-account_tree:after {\n  content: '\\e017';\n}\n\n.mds-adb:after {\n  content: '\\e019';\n}\n\n.mds-add:after {\n  content: '\\e01a';\n}\n\n.mds-add_a_photo:after {\n  content: '\\e01b';\n}\n\n.mds-add_alarm:after {\n  content: '\\e01d';\n}\n\n.mds-add_alert:after {\n  content: '\\e01f';\n}\n\n.mds-add_box:after {\n  content: '\\e021';\n}\n\n.mds-add_circle:after {\n  content: '\\e023';\n}\n\n.mds-add_circle_outline:after {\n  content: '\\e025';\n}\n\n.mds-add_comment:after {\n  content: '\\e026';\n}\n\n.mds-add_location:after {\n  content: '\\e028';\n}\n\n.mds-add_photo_alternate:after {\n  content: '\\e02a';\n}\n\n.mds-add_shopping_cart:after {\n  content: '\\e02c';\n}\n\n.mds-add_to_home_screen:after {\n  content: '\\e02d';\n}\n\n.mds-add_to_photos:after {\n  content: '\\e02e';\n}\n\n.mds-add_to_queue:after {\n  content: '\\e030';\n}\n\n.mds-adjust:after {\n  content: '\\e032';\n}\n\n.mds-airline_seat_flat:after {\n  content: '\\e033';\n}\n\n.mds-airline_seat_flat_angled:after {\n  content: '\\e035';\n}\n\n.mds-airline_seat_individual_suite:after {\n  content: '\\e037';\n}\n\n.mds-airline_seat_legroom_extra:after {\n  content: '\\e039';\n}\n\n.mds-airline_seat_legroom_normal:after {\n  content: '\\e03a';\n}\n\n.mds-airline_seat_legroom_reduced:after {\n  content: '\\e03b';\n}\n\n.mds-airline_seat_recline_extra:after {\n  content: '\\e03c';\n}\n\n.mds-airline_seat_recline_normal:after {\n  content: '\\e03d';\n}\n\n.mds-airplanemode_active:after {\n  content: '\\e03e';\n}\n\n.mds-airplanemode_inactive:after {\n  content: '\\e03f';\n}\n\n.mds-airplay:after {\n  content: '\\e040';\n}\n\n.mds-airport_shuttle:after {\n  content: '\\e041';\n}\n\n.mds-alarm:after {\n  content: '\\e043';\n}\n\n.mds-alarm_add:after {\n  content: '\\e045';\n}\n\n.mds-alarm_off:after {\n  content: '\\e047';\n}\n\n.mds-alarm_on:after {\n  content: '\\e048';\n}\n\n.mds-album:after {\n  content: '\\e04a';\n}\n\n.mds-all_inbox:after {\n  content: '\\e04c';\n}\n\n.mds-all_inclusive:after {\n  content: '\\e04e';\n}\n\n.mds-all_out:after {\n  content: '\\e04f';\n}\n\n.mds-alternate_email:after {\n  content: '\\e051';\n}\n\n.mds-amp_stories:after {\n  content: '\\e053';\n}\n\n.mds-android:after {\n  content: '\\e055';\n}\n\n.mds-announcement:after {\n  content: '\\e056';\n}\n\n.mds-apartment:after {\n  content: '\\e058';\n}\n\n.mds-apps:after {\n  content: '\\e059';\n}\n\n.mds-archive:after {\n  content: '\\e05a';\n}\n\n.mds-arrow_back:after {\n  content: '\\e05c';\n}\n\n.mds-arrow_back_ios:after {\n  content: '\\e05d';\n}\n\n.mds-arrow_downward:after {\n  content: '\\e05e';\n}\n\n.mds-arrow_drop_down:after {\n  content: '\\e05f';\n}\n\n.mds-arrow_drop_down_circle:after {\n  content: '\\e060';\n}\n\n.mds-arrow_drop_up:after {\n  content: '\\e062';\n}\n\n.mds-arrow_forward:after {\n  content: '\\e063';\n}\n\n.mds-arrow_forward_ios:after {\n  content: '\\e064';\n}\n\n.mds-arrow_left:after {\n  content: '\\e065';\n}\n\n.mds-arrow_right:after {\n  content: '\\e066';\n}\n\n.mds-arrow_right_alt:after {\n  content: '\\e067';\n}\n\n.mds-arrow_upward:after {\n  content: '\\e068';\n}\n\n.mds-art_track:after {\n  content: '\\e069';\n}\n\n.mds-aspect_ratio:after {\n  content: '\\e06a';\n}\n\n.mds-assessment:after {\n  content: '\\e06c';\n}\n\n.mds-assignment:after {\n  content: '\\e06e';\n}\n\n.mds-assignment_ind:after {\n  content: '\\e070';\n}\n\n.mds-assignment_late:after {\n  content: '\\e072';\n}\n\n.mds-assignment_return:after {\n  content: '\\e074';\n}\n\n.mds-assignment_returned:after {\n  content: '\\e076';\n}\n\n.mds-assignment_turned_in:after {\n  content: '\\e078';\n}\n\n.mds-assistant:after {\n  content: '\\e07a';\n}\n\n.mds-assistant_photo:after {\n  content: '\\e07c';\n}\n\n.mds-atm:after {\n  content: '\\e07e';\n}\n\n.mds-attach_file:after {\n  content: '\\e07f';\n}\n\n.mds-attach_money:after {\n  content: '\\e080';\n}\n\n.mds-attachment:after {\n  content: '\\e081';\n}\n\n.mds-audiotrack:after {\n  content: '\\e082';\n}\n\n.mds-autorenew:after {\n  content: '\\e084';\n}\n\n.mds-av_timer:after {\n  content: '\\e085';\n}\n\n.mds-backspace:after {\n  content: '\\e086';\n}\n\n.mds-backup:after {\n  content: '\\e088';\n}\n\n.mds-ballot:after {\n  content: '\\e08a';\n}\n\n.mds-bar_chart:after {\n  content: '\\e08c';\n}\n\n.mds-barcode:after {\n  content: '\\e08d';\n}\n\n.mds-bathtub:after {\n  content: '\\e08e';\n}\n\n.mds-battery_20:after {\n  content: '\\e090';\n}\n\n.mds-battery_20:before {\n  content: '\\e091';\n}\n\n.mds-battery_30:after {\n  content: '\\e092';\n}\n\n.mds-battery_30:before {\n  content: '\\e093';\n}\n\n.mds-battery_50:after {\n  content: '\\e094';\n}\n\n.mds-battery_50:before {\n  content: '\\e095';\n}\n\n.mds-battery_60:after {\n  content: '\\e096';\n}\n\n.mds-battery_60:before {\n  content: '\\e097';\n}\n\n.mds-battery_80:after {\n  content: '\\e098';\n}\n\n.mds-battery_80:before {\n  content: '\\e099';\n}\n\n.mds-battery_90:after {\n  content: '\\e09a';\n}\n\n.mds-battery_90:before {\n  content: '\\e09b';\n}\n\n.mds-battery_alert:after {\n  content: '\\e09c';\n}\n\n.mds-battery_charging_20:after {\n  content: '\\e09d';\n}\n\n.mds-battery_charging_20:before {\n  content: '\\e09e';\n}\n\n.mds-battery_charging_30:after {\n  content: '\\e09f';\n}\n\n.mds-battery_charging_30:before {\n  content: '\\e0a0';\n}\n\n.mds-battery_charging_50:after {\n  content: '\\e0a1';\n}\n\n.mds-battery_charging_50:before {\n  content: '\\e0a2';\n}\n\n.mds-battery_charging_60:after {\n  content: '\\e0a3';\n}\n\n.mds-battery_charging_60:before {\n  content: '\\e0a4';\n}\n\n.mds-battery_charging_80:after {\n  content: '\\e0a5';\n}\n\n.mds-battery_charging_80:before {\n  content: '\\e0a6';\n}\n\n.mds-battery_charging_90:after {\n  content: '\\e0a7';\n}\n\n.mds-battery_charging_90:before {\n  content: '\\e0a8';\n}\n\n.mds-battery_charging_full:after {\n  content: '\\e0a9';\n}\n\n.mds-battery_full:after {\n  content: '\\e0aa';\n}\n\n.mds-battery_std:after {\n  content: '\\e0ab';\n}\n\n.mds-battery_unknown:after {\n  content: '\\e0ac';\n}\n\n.mds-beach_access:after {\n  content: '\\e0ad';\n}\n\n.mds-beenhere:after {\n  content: '\\e0af';\n}\n\n.mds-block:after {\n  content: '\\e0b1';\n}\n\n.mds-bluetooth:after {\n  content: '\\e0b2';\n}\n\n.mds-bluetooth_audio:after {\n  content: '\\e0b3';\n}\n\n.mds-bluetooth_connected:after {\n  content: '\\e0b4';\n}\n\n.mds-bluetooth_disabled:after {\n  content: '\\e0b5';\n}\n\n.mds-bluetooth_searching:after {\n  content: '\\e0b6';\n}\n\n.mds-blur_circular:after {\n  content: '\\e0b7';\n}\n\n.mds-blur_linear:after {\n  content: '\\e0b8';\n}\n\n.mds-blur_off:after {\n  content: '\\e0b9';\n}\n\n.mds-blur_on:after {\n  content: '\\e0ba';\n}\n\n.mds-book:after {\n  content: '\\e0bb';\n}\n\n.mds-bookmark:after {\n  content: '\\e0bd';\n}\n\n.mds-bookmark_border:after {\n  content: '\\e0bf';\n}\n\n.mds-bookmarks:after {\n  content: '\\e0c0';\n}\n\n.mds-border_all:after {\n  content: '\\e0c2';\n}\n\n.mds-border_bottom:after {\n  content: '\\e0c3';\n}\n\n.mds-border_clear:after {\n  content: '\\e0c4';\n}\n\n.mds-border_color:after {\n  content: '\\e0c5';\n}\n\n.mds-border_color:before {\n  content: '\\e0c6';\n}\n\n.mds-border_horizontal:after {\n  content: '\\e0c7';\n}\n\n.mds-border_inner:after {\n  content: '\\e0c8';\n}\n\n.mds-border_left:after {\n  content: '\\e0c9';\n}\n\n.mds-border_outer:after {\n  content: '\\e0ca';\n}\n\n.mds-border_right:after {\n  content: '\\e0cb';\n}\n\n.mds-border_style:after {\n  content: '\\e0cc';\n}\n\n.mds-border_top:after {\n  content: '\\e0cd';\n}\n\n.mds-border_vertical:after {\n  content: '\\e0ce';\n}\n\n.mds-branding_watermark:after {\n  content: '\\e0cf';\n}\n\n.mds-brightness_1:after {\n  content: '\\e0d1';\n}\n\n.mds-brightness_2:after {\n  content: '\\e0d3';\n}\n\n.mds-brightness_3:after {\n  content: '\\e0d5';\n}\n\n.mds-brightness_4:after {\n  content: '\\e0d7';\n}\n\n.mds-brightness_5:after {\n  content: '\\e0d9';\n}\n\n.mds-brightness_6:after {\n  content: '\\e0db';\n}\n\n.mds-brightness_7:after {\n  content: '\\e0dd';\n}\n\n.mds-brightness_auto:after {\n  content: '\\e0df';\n}\n\n.mds-brightness_high:after {\n  content: '\\e0e1';\n}\n\n.mds-brightness_low:after {\n  content: '\\e0e3';\n}\n\n.mds-brightness_medium:after {\n  content: '\\e0e5';\n}\n\n.mds-broken_image:after {\n  content: '\\e0e7';\n}\n\n.mds-brush:after {\n  content: '\\e0e9';\n}\n\n.mds-bubble_chart:after {\n  content: '\\e0eb';\n}\n\n.mds-bug_report:after {\n  content: '\\e0ed';\n}\n\n.mds-build:after {\n  content: '\\e0ef';\n}\n\n.mds-burst_mode:after {\n  content: '\\e0f1';\n}\n\n.mds-business:after {\n  content: '\\e0f3';\n}\n\n.mds-business_center:after {\n  content: '\\e0f5';\n}\n\n.mds-cached:after {\n  content: '\\e0f7';\n}\n\n.mds-cake:after {\n  content: '\\e0f8';\n}\n\n.mds-calendar_today:after {\n  content: '\\e0fa';\n}\n\n.mds-calendar_view_day:after {\n  content: '\\e0fc';\n}\n\n.mds-call:after {\n  content: '\\e0fe';\n}\n\n.mds-call_end:after {\n  content: '\\e100';\n}\n\n.mds-call_made:after {\n  content: '\\e102';\n}\n\n.mds-call_merge:after {\n  content: '\\e103';\n}\n\n.mds-call_missed:after {\n  content: '\\e104';\n}\n\n.mds-call_missed_outgoing:after {\n  content: '\\e105';\n}\n\n.mds-call_received:after {\n  content: '\\e106';\n}\n\n.mds-call_split:after {\n  content: '\\e107';\n}\n\n.mds-call_to_action:after {\n  content: '\\e108';\n}\n\n.mds-camera:after {\n  content: '\\e10a';\n}\n\n.mds-camera_alt:after {\n  content: '\\e10c';\n}\n\n.mds-camera_enhance:after {\n  content: '\\e10e';\n}\n\n.mds-camera_front:after {\n  content: '\\e110';\n}\n\n.mds-camera_rear:after {\n  content: '\\e112';\n}\n\n.mds-camera_roll:after {\n  content: '\\e114';\n}\n\n.mds-cancel:after {\n  content: '\\e116';\n}\n\n.mds-cancel_presentation:after {\n  content: '\\e118';\n}\n\n.mds-cancel_schedule_send:after {\n  content: '\\e11a';\n}\n\n.mds-card_giftcard:after {\n  content: '\\e11c';\n}\n\n.mds-card_membership:after {\n  content: '\\e11e';\n}\n\n.mds-card_travel:after {\n  content: '\\e120';\n}\n\n.mds-casino:after {\n  content: '\\e122';\n}\n\n.mds-cast:after {\n  content: '\\e124';\n}\n\n.mds-cast_connected:after {\n  content: '\\e125';\n}\n\n.mds-cast_for_education:after {\n  content: '\\e127';\n}\n\n.mds-category:after {\n  content: '\\e128';\n}\n\n.mds-cell_wifi:after {\n  content: '\\e12a';\n}\n\n.mds-cell_wifi:before {\n  content: '\\e12b';\n}\n\n.mds-center_focus_strong:after {\n  content: '\\e12c';\n}\n\n.mds-center_focus_weak:after {\n  content: '\\e12e';\n}\n\n.mds-change_history:after {\n  content: '\\e130';\n}\n\n.mds-chat:after {\n  content: '\\e132';\n}\n\n.mds-chat_bubble:after {\n  content: '\\e134';\n}\n\n.mds-chat_bubble_outline:after {\n  content: '\\e136';\n}\n\n.mds-check:after {\n  content: '\\e137';\n}\n\n.mds-check_box:after {\n  content: '\\e138';\n}\n\n.mds-check_box_outline_blank:after {\n  content: '\\e13a';\n}\n\n.mds-check_circle:after {\n  content: '\\e13b';\n}\n\n.mds-check_circle_outline:after {\n  content: '\\e13d';\n}\n\n.mds-chevron_left:after {\n  content: '\\e13e';\n}\n\n.mds-chevron_right:after {\n  content: '\\e13f';\n}\n\n.mds-child_care:after {\n  content: '\\e140';\n}\n\n.mds-child_friendly:after {\n  content: '\\e142';\n}\n\n.mds-chrome_reader_mode:after {\n  content: '\\e144';\n}\n\n.mds-class:after {\n  content: '\\e146';\n}\n\n.mds-clear:after {\n  content: '\\e148';\n}\n\n.mds-clear_all:after {\n  content: '\\e149';\n}\n\n.mds-close:after {\n  content: '\\e14a';\n}\n\n.mds-closed_caption:after {\n  content: '\\e14b';\n}\n\n.mds-cloud:after {\n  content: '\\e14d';\n}\n\n.mds-cloud_circle:after {\n  content: '\\e14f';\n}\n\n.mds-cloud_done:after {\n  content: '\\e151';\n}\n\n.mds-cloud_download:after {\n  content: '\\e153';\n}\n\n.mds-cloud_off:after {\n  content: '\\e155';\n}\n\n.mds-cloud_queue:after {\n  content: '\\e157';\n}\n\n.mds-cloud_upload:after {\n  content: '\\e159';\n}\n\n.mds-code:after {\n  content: '\\e15b';\n}\n\n.mds-collections:after {\n  content: '\\e15c';\n}\n\n.mds-collections_bookmark:after {\n  content: '\\e15e';\n}\n\n.mds-color_lens:after {\n  content: '\\e160';\n}\n\n.mds-colorize:after {\n  content: '\\e162';\n}\n\n.mds-comment:after {\n  content: '\\e164';\n}\n\n.mds-commute:after {\n  content: '\\e166';\n}\n\n.mds-compare:after {\n  content: '\\e167';\n}\n\n.mds-compare_arrows:after {\n  content: '\\e169';\n}\n\n.mds-compass_calibration:after {\n  content: '\\e16a';\n}\n\n.mds-computer:after {\n  content: '\\e16c';\n}\n\n.mds-confirmation_number:after {\n  content: '\\e16e';\n}\n\n.mds-contact_mail:after {\n  content: '\\e170';\n}\n\n.mds-contact_phone:after {\n  content: '\\e172';\n}\n\n.mds-contact_support:after {\n  content: '\\e174';\n}\n\n.mds-contactless:after {\n  content: '\\e176';\n}\n\n.mds-contacts:after {\n  content: '\\e178';\n}\n\n.mds-content_copy:after {\n  content: '\\e17a';\n}\n\n.mds-content_cut:after {\n  content: '\\e17c';\n}\n\n.mds-content_paste:after {\n  content: '\\e17e';\n}\n\n.mds-control_camera:after {\n  content: '\\e180';\n}\n\n.mds-control_point:after {\n  content: '\\e181';\n}\n\n.mds-control_point_duplicate:after {\n  content: '\\e183';\n}\n\n.mds-copyright:after {\n  content: '\\e185';\n}\n\n.mds-create:after {\n  content: '\\e187';\n}\n\n.mds-create_new_folder:after {\n  content: '\\e189';\n}\n\n.mds-credit_card:after {\n  content: '\\e18b';\n}\n\n.mds-crop:after {\n  content: '\\e18d';\n}\n\n.mds-crop_16_9:after {\n  content: '\\e18e';\n}\n\n.mds-crop_3_2:after {\n  content: '\\e18f';\n}\n\n.mds-crop_5_4:after {\n  content: '\\e190';\n}\n\n.mds-crop_7_5:after {\n  content: '\\e191';\n}\n\n.mds-crop_din:after {\n  content: '\\e192';\n}\n\n.mds-crop_free:after {\n  content: '\\e193';\n}\n\n.mds-crop_landscape:after {\n  content: '\\e194';\n}\n\n.mds-crop_original:after {\n  content: '\\e195';\n}\n\n.mds-crop_portrait:after {\n  content: '\\e196';\n}\n\n.mds-crop_rotate:after {\n  content: '\\e197';\n}\n\n.mds-crop_square:after {\n  content: '\\e198';\n}\n\n.mds-dashboard:after {\n  content: '\\e199';\n}\n\n.mds-data_usage:after {\n  content: '\\e19b';\n}\n\n.mds-date_range:after {\n  content: '\\e19c';\n}\n\n.mds-deck:after {\n  content: '\\e19e';\n}\n\n.mds-dehaze:after {\n  content: '\\e1a0';\n}\n\n.mds-delete:after {\n  content: '\\e1a1';\n}\n\n.mds-delete_forever:after {\n  content: '\\e1a3';\n}\n\n.mds-delete_outline:after {\n  content: '\\e1a5';\n}\n\n.mds-delete_sweep:after {\n  content: '\\e1a6';\n}\n\n.mds-departure_board:after {\n  content: '\\e1a8';\n}\n\n.mds-description:after {\n  content: '\\e1aa';\n}\n\n.mds-desktop_access_disabled:after {\n  content: '\\e1ac';\n}\n\n.mds-desktop_mac:after {\n  content: '\\e1ae';\n}\n\n.mds-desktop_windows:after {\n  content: '\\e1b0';\n}\n\n.mds-details:after {\n  content: '\\e1b2';\n}\n\n.mds-developer_board:after {\n  content: '\\e1b4';\n}\n\n.mds-developer_mode:after {\n  content: '\\e1b6';\n}\n\n.mds-device_hub:after {\n  content: '\\e1b7';\n}\n\n.mds-device_unknown:after {\n  content: '\\e1b8';\n}\n\n.mds-devices:after {\n  content: '\\e1ba';\n}\n\n.mds-devices_other:after {\n  content: '\\e1bc';\n}\n\n.mds-dialer_sip:after {\n  content: '\\e1be';\n}\n\n.mds-dialpad:after {\n  content: '\\e1c0';\n}\n\n.mds-directions:after {\n  content: '\\e1c1';\n}\n\n.mds-directions_bike:after {\n  content: '\\e1c3';\n}\n\n.mds-directions_boat:after {\n  content: '\\e1c4';\n}\n\n.mds-directions_bus:after {\n  content: '\\e1c6';\n}\n\n.mds-directions_car:after {\n  content: '\\e1c8';\n}\n\n.mds-directions_railway:after {\n  content: '\\e1ca';\n}\n\n.mds-directions_run:after {\n  content: '\\e1cc';\n}\n\n.mds-directions_subway:after {\n  content: '\\e1cd';\n}\n\n.mds-directions_transit:after {\n  content: '\\e1cf';\n}\n\n.mds-directions_walk:after {\n  content: '\\e1d1';\n}\n\n.mds-disc_full:after {\n  content: '\\e1d2';\n}\n\n.mds-divide:after {\n  content: '\\e1d4';\n}\n\n.mds-dns:after {\n  content: '\\e1d6';\n}\n\n.mds-do_not_disturb:after {\n  content: '\\e1d8';\n}\n\n.mds-do_not_disturb_alt:after {\n  content: '\\e1da';\n}\n\n.mds-do_not_disturb_off:after {\n  content: '\\e1dc';\n}\n\n.mds-dock:after {\n  content: '\\e1de';\n}\n\n.mds-domain:after {\n  content: '\\e1e0';\n}\n\n.mds-domain_disabled:after {\n  content: '\\e1e2';\n}\n\n.mds-done:after {\n  content: '\\e1e4';\n}\n\n.mds-done_all:after {\n  content: '\\e1e5';\n}\n\n.mds-done_outline:after {\n  content: '\\e1e6';\n}\n\n.mds-donut_large:after {\n  content: '\\e1e7';\n}\n\n.mds-donut_small:after {\n  content: '\\e1e8';\n}\n\n.mds-double_arrow:after {\n  content: '\\e1ea';\n}\n\n.mds-drafts:after {\n  content: '\\e1eb';\n}\n\n.mds-drag_handle:after {\n  content: '\\e1ed';\n}\n\n.mds-drag_indicator:after {\n  content: '\\e1ee';\n}\n\n.mds-drive_eta:after {\n  content: '\\e1ef';\n}\n\n.mds-duo:after {\n  content: '\\e1f1';\n}\n\n.mds-dvr:after {\n  content: '\\e1f2';\n}\n\n.mds-dynamic_feed:after {\n  content: '\\e1f4';\n}\n\n.mds-eco:after {\n  content: '\\e1f6';\n}\n\n.mds-edit:after {\n  content: '\\e1f8';\n}\n\n.mds-edit_attributes:after {\n  content: '\\e1fa';\n}\n\n.mds-edit_location:after {\n  content: '\\e1fc';\n}\n\n.mds-eject:after {\n  content: '\\e1fe';\n}\n\n.mds-email:after {\n  content: '\\e200';\n}\n\n.mds-emoji_emotions:after {\n  content: '\\e202';\n}\n\n.mds-emoji_events:after {\n  content: '\\e204';\n}\n\n.mds-emoji_flags:after {\n  content: '\\e206';\n}\n\n.mds-emoji_food_beverage:after {\n  content: '\\e208';\n}\n\n.mds-emoji_nature:after {\n  content: '\\e20a';\n}\n\n.mds-emoji_objects:after {\n  content: '\\e20c';\n}\n\n.mds-emoji_people:after {\n  content: '\\e20e';\n}\n\n.mds-emoji_symbols:after {\n  content: '\\e20f';\n}\n\n.mds-emoji_transportation:after {\n  content: '\\e210';\n}\n\n.mds-enhanced_encryption:after {\n  content: '\\e211';\n}\n\n.mds-equalizer:after {\n  content: '\\e213';\n}\n\n.mds-equals:after {\n  content: '\\e214';\n}\n\n.mds-error:after {\n  content: '\\e215';\n}\n\n.mds-error_outline:after {\n  content: '\\e217';\n}\n\n.mds-euro:after {\n  content: '\\e218';\n}\n\n.mds-euro_symbol:after {\n  content: '\\e219';\n}\n\n.mds-ev_station:after {\n  content: '\\e21a';\n}\n\n.mds-event:after {\n  content: '\\e21c';\n}\n\n.mds-event_available:after {\n  content: '\\e21e';\n}\n\n.mds-event_busy:after {\n  content: '\\e220';\n}\n\n.mds-event_note:after {\n  content: '\\e222';\n}\n\n.mds-event_seat:after {\n  content: '\\e224';\n}\n\n.mds-exit_to_app:after {\n  content: '\\e226';\n}\n\n.mds-expand_less:after {\n  content: '\\e227';\n}\n\n.mds-expand_more:after {\n  content: '\\e228';\n}\n\n.mds-explicit:after {\n  content: '\\e229';\n}\n\n.mds-explore:after {\n  content: '\\e22b';\n}\n\n.mds-explore_off:after {\n  content: '\\e22d';\n}\n\n.mds-exposure:after {\n  content: '\\e22f';\n}\n\n.mds-exposure_neg_1:after {\n  content: '\\e231';\n}\n\n.mds-exposure_neg_2:after {\n  content: '\\e232';\n}\n\n.mds-exposure_plus_1:after {\n  content: '\\e233';\n}\n\n.mds-exposure_plus_2:after {\n  content: '\\e234';\n}\n\n.mds-exposure_zero:after {\n  content: '\\e235';\n}\n\n.mds-extension:after {\n  content: '\\e236';\n}\n\n.mds-face:after {\n  content: '\\e238';\n}\n\n.mds-fast_forward:after {\n  content: '\\e23a';\n}\n\n.mds-fast_rewind:after {\n  content: '\\e23c';\n}\n\n.mds-fastfood:after {\n  content: '\\e23e';\n}\n\n.mds-favorite:after {\n  content: '\\e240';\n}\n\n.mds-favorite_border:after {\n  content: '\\e242';\n}\n\n.mds-featured_play_list:after {\n  content: '\\e243';\n}\n\n.mds-featured_video:after {\n  content: '\\e245';\n}\n\n.mds-feedback:after {\n  content: '\\e247';\n}\n\n.mds-fiber_dvr:after {\n  content: '\\e249';\n}\n\n.mds-fiber_manual_record:after {\n  content: '\\e24b';\n}\n\n.mds-fiber_new:after {\n  content: '\\e24d';\n}\n\n.mds-fiber_pin:after {\n  content: '\\e24f';\n}\n\n.mds-fiber_smart_record:after {\n  content: '\\e251';\n}\n\n.mds-file_copy:after {\n  content: '\\e253';\n}\n\n.mds-file_upload:after {\n  content: '\\e255';\n}\n\n.mds-filter:after {\n  content: '\\e257';\n}\n\n.mds-filter_1:after {\n  content: '\\e259';\n}\n\n.mds-filter_2:after {\n  content: '\\e25b';\n}\n\n.mds-filter_3:after {\n  content: '\\e25d';\n}\n\n.mds-filter_4:after {\n  content: '\\e25f';\n}\n\n.mds-filter_5:after {\n  content: '\\e261';\n}\n\n.mds-filter_6:after {\n  content: '\\e263';\n}\n\n.mds-filter_7:after {\n  content: '\\e265';\n}\n\n.mds-filter_8:after {\n  content: '\\e267';\n}\n\n.mds-filter_9:after {\n  content: '\\e269';\n}\n\n.mds-filter_9_plus:after {\n  content: '\\e26b';\n}\n\n.mds-filter_b_and_w:after {\n  content: '\\e26d';\n}\n\n.mds-filter_center_focus:after {\n  content: '\\e26f';\n}\n\n.mds-filter_drama:after {\n  content: '\\e270';\n}\n\n.mds-filter_frames:after {\n  content: '\\e272';\n}\n\n.mds-filter_hdr:after {\n  content: '\\e274';\n}\n\n.mds-filter_list:after {\n  content: '\\e276';\n}\n\n.mds-filter_none:after {\n  content: '\\e277';\n}\n\n.mds-filter_tilt_shift:after {\n  content: '\\e279';\n}\n\n.mds-filter_vintage:after {\n  content: '\\e27a';\n}\n\n.mds-find_in_page:after {\n  content: '\\e27c';\n}\n\n.mds-find_replace:after {\n  content: '\\e27e';\n}\n\n.mds-fingerprint:after {\n  content: '\\e27f';\n}\n\n.mds-fireplace:after {\n  content: '\\e280';\n}\n\n.mds-first_page:after {\n  content: '\\e282';\n}\n\n.mds-fitness_center:after {\n  content: '\\e283';\n}\n\n.mds-flag:after {\n  content: '\\e284';\n}\n\n.mds-flare:after {\n  content: '\\e286';\n}\n\n.mds-flash_auto:after {\n  content: '\\e287';\n}\n\n.mds-flash_off:after {\n  content: '\\e288';\n}\n\n.mds-flash_on:after {\n  content: '\\e289';\n}\n\n.mds-flight:after {\n  content: '\\e28a';\n}\n\n.mds-flight_land:after {\n  content: '\\e28b';\n}\n\n.mds-flight_takeoff:after {\n  content: '\\e28c';\n}\n\n.mds-flip:after {\n  content: '\\e28d';\n}\n\n.mds-flip_camera_android:after {\n  content: '\\e28e';\n}\n\n.mds-flip_camera_ios:after {\n  content: '\\e290';\n}\n\n.mds-flip_to_back:after {\n  content: '\\e292';\n}\n\n.mds-flip_to_front:after {\n  content: '\\e293';\n}\n\n.mds-folder:after {\n  content: '\\e294';\n}\n\n.mds-folder_open:after {\n  content: '\\e296';\n}\n\n.mds-folder_shared:after {\n  content: '\\e298';\n}\n\n.mds-folder_special:after {\n  content: '\\e29a';\n}\n\n.mds-font_download:after {\n  content: '\\e29c';\n}\n\n.mds-format_align_center:after {\n  content: '\\e29e';\n}\n\n.mds-format_align_justify:after {\n  content: '\\e29f';\n}\n\n.mds-format_align_left:after {\n  content: '\\e2a0';\n}\n\n.mds-format_align_right:after {\n  content: '\\e2a1';\n}\n\n.mds-format_bold:after {\n  content: '\\e2a2';\n}\n\n.mds-format_clear:after {\n  content: '\\e2a3';\n}\n\n.mds-format_color_fill:after {\n  content: '\\e2a4';\n}\n\n.mds-format_color_fill:before {\n  content: '\\e2a5';\n}\n\n.mds-format_color_reset:after {\n  content: '\\e2a6';\n}\n\n.mds-format_color_text:after {\n  content: '\\e2a8';\n}\n\n.mds-format_color_text:before {\n  content: '\\e2a9';\n}\n\n.mds-format_indent_decrease:after {\n  content: '\\e2aa';\n}\n\n.mds-format_indent_increase:after {\n  content: '\\e2ab';\n}\n\n.mds-format_italic:after {\n  content: '\\e2ac';\n}\n\n.mds-format_line_spacing:after {\n  content: '\\e2ad';\n}\n\n.mds-format_list_bulleted:after {\n  content: '\\e2ae';\n}\n\n.mds-format_list_numbered:after {\n  content: '\\e2af';\n}\n\n.mds-format_list_numbered_rtl:after {\n  content: '\\e2b0';\n}\n\n.mds-format_paint:after {\n  content: '\\e2b1';\n}\n\n.mds-format_quote:after {\n  content: '\\e2b3';\n}\n\n.mds-format_shapes:after {\n  content: '\\e2b5';\n}\n\n.mds-format_size:after {\n  content: '\\e2b7';\n}\n\n.mds-format_strikethrough:after {\n  content: '\\e2b8';\n}\n\n.mds-format_textdirection_l_to_r:after {\n  content: '\\e2b9';\n}\n\n.mds-format_textdirection_r_to_l:after {\n  content: '\\e2bb';\n}\n\n.mds-format_underlined:after {\n  content: '\\e2bd';\n}\n\n.mds-forum:after {\n  content: '\\e2be';\n}\n\n.mds-forward:after {\n  content: '\\e2c0';\n}\n\n.mds-forward_10:after {\n  content: '\\e2c2';\n}\n\n.mds-forward_30:after {\n  content: '\\e2c3';\n}\n\n.mds-forward_5:after {\n  content: '\\e2c4';\n}\n\n.mds-free_breakfast:after {\n  content: '\\e2c5';\n}\n\n.mds-fullscreen:after {\n  content: '\\e2c7';\n}\n\n.mds-fullscreen_exit:after {\n  content: '\\e2c8';\n}\n\n.mds-functions:after {\n  content: '\\e2c9';\n}\n\n.mds-g_translate:after {\n  content: '\\e2ca';\n}\n\n.mds-gamepad:after {\n  content: '\\e2cb';\n}\n\n.mds-games:after {\n  content: '\\e2cd';\n}\n\n.mds-gavel:after {\n  content: '\\e2cf';\n}\n\n.mds-gesture:after {\n  content: '\\e2d0';\n}\n\n.mds-get_app:after {\n  content: '\\e2d1';\n}\n\n.mds-gif:after {\n  content: '\\e2d3';\n}\n\n.mds-golf_course:after {\n  content: '\\e2d5';\n}\n\n.mds-gps_fixed:after {\n  content: '\\e2d7';\n}\n\n.mds-gps_not_fixed:after {\n  content: '\\e2d9';\n}\n\n.mds-gps_off:after {\n  content: '\\e2da';\n}\n\n.mds-grade:after {\n  content: '\\e2db';\n}\n\n.mds-gradient:after {\n  content: '\\e2dd';\n}\n\n.mds-grain:after {\n  content: '\\e2de';\n}\n\n.mds-graphic_eq:after {\n  content: '\\e2df';\n}\n\n.mds-greater_than:after {\n  content: '\\e2e0';\n}\n\n.mds-greater_than_equal:after {\n  content: '\\e2e1';\n}\n\n.mds-grid_off:after {\n  content: '\\e2e2';\n}\n\n.mds-grid_on:after {\n  content: '\\e2e4';\n}\n\n.mds-group:after {\n  content: '\\e2e6';\n}\n\n.mds-group_add:after {\n  content: '\\e2e8';\n}\n\n.mds-group_work:after {\n  content: '\\e2ea';\n}\n\n.mds-hd:after {\n  content: '\\e2ec';\n}\n\n.mds-hdr_off:after {\n  content: '\\e2ee';\n}\n\n.mds-hdr_on:after {\n  content: '\\e2ef';\n}\n\n.mds-hdr_strong:after {\n  content: '\\e2f0';\n}\n\n.mds-hdr_weak:after {\n  content: '\\e2f2';\n}\n\n.mds-headset:after {\n  content: '\\e2f4';\n}\n\n.mds-headset_mic:after {\n  content: '\\e2f6';\n}\n\n.mds-healing:after {\n  content: '\\e2f8';\n}\n\n.mds-hearing:after {\n  content: '\\e2fa';\n}\n\n.mds-height:after {\n  content: '\\e2fb';\n}\n\n.mds-help:after {\n  content: '\\e2fc';\n}\n\n.mds-help_outline:after {\n  content: '\\e2fe';\n}\n\n.mds-high_quality:after {\n  content: '\\e2ff';\n}\n\n.mds-highlight:after {\n  content: '\\e301';\n}\n\n.mds-highlight_off:after {\n  content: '\\e303';\n}\n\n.mds-history:after {\n  content: '\\e305';\n}\n\n.mds-home:after {\n  content: '\\e306';\n}\n\n.mds-home_work:after {\n  content: '\\e308';\n}\n\n.mds-horizontal_split:after {\n  content: '\\e30a';\n}\n\n.mds-hot_tub:after {\n  content: '\\e30c';\n}\n\n.mds-hotel:after {\n  content: '\\e30d';\n}\n\n.mds-hourglass_empty:after {\n  content: '\\e30f';\n}\n\n.mds-hourglass_full:after {\n  content: '\\e310';\n}\n\n.mds-house:after {\n  content: '\\e312';\n}\n\n.mds-how_to_reg:after {\n  content: '\\e314';\n}\n\n.mds-how_to_vote:after {\n  content: '\\e316';\n}\n\n.mds-http:after {\n  content: '\\e318';\n}\n\n.mds-https:after {\n  content: '\\e319';\n}\n\n.mds-image:after {\n  content: '\\e31b';\n}\n\n.mds-image_aspect_ratio:after {\n  content: '\\e31d';\n}\n\n.mds-image_search:after {\n  content: '\\e31f';\n}\n\n.mds-import_contacts:after {\n  content: '\\e321';\n}\n\n.mds-import_export:after {\n  content: '\\e323';\n}\n\n.mds-important_devices:after {\n  content: '\\e324';\n}\n\n.mds-inbox:after {\n  content: '\\e326';\n}\n\n.mds-indeterminate_check_box:after {\n  content: '\\e328';\n}\n\n.mds-info:after {\n  content: '\\e32a';\n}\n\n.mds-input:after {\n  content: '\\e32c';\n}\n\n.mds-insert_chart:after {\n  content: '\\e32d';\n}\n\n.mds-insert_chart_outlined:after {\n  content: '\\e32f';\n}\n\n.mds-insert_comment:after {\n  content: '\\e330';\n}\n\n.mds-insert_drive_file:after {\n  content: '\\e332';\n}\n\n.mds-insert_emoticon:after {\n  content: '\\e334';\n}\n\n.mds-insert_invitation:after {\n  content: '\\e336';\n}\n\n.mds-insert_link:after {\n  content: '\\e338';\n}\n\n.mds-insert_photo:after {\n  content: '\\e339';\n}\n\n.mds-invert_colors:after {\n  content: '\\e33b';\n}\n\n.mds-invert_colors_off:after {\n  content: '\\e33d';\n}\n\n.mds-iso:after {\n  content: '\\e33f';\n}\n\n.mds-keyboard:after {\n  content: '\\e341';\n}\n\n.mds-keyboard_arrow_down:after {\n  content: '\\e343';\n}\n\n.mds-keyboard_arrow_left:after {\n  content: '\\e344';\n}\n\n.mds-keyboard_arrow_right:after {\n  content: '\\e345';\n}\n\n.mds-keyboard_arrow_up:after {\n  content: '\\e346';\n}\n\n.mds-keyboard_backspace:after {\n  content: '\\e347';\n}\n\n.mds-keyboard_capslock:after {\n  content: '\\e348';\n}\n\n.mds-keyboard_hide:after {\n  content: '\\e349';\n}\n\n.mds-keyboard_return:after {\n  content: '\\e34b';\n}\n\n.mds-keyboard_tab:after {\n  content: '\\e34c';\n}\n\n.mds-keyboard_voice:after {\n  content: '\\e34d';\n}\n\n.mds-king_bed:after {\n  content: '\\e34f';\n}\n\n.mds-kitchen:after {\n  content: '\\e351';\n}\n\n.mds-label:after {\n  content: '\\e353';\n}\n\n.mds-label_important:after {\n  content: '\\e355';\n}\n\n.mds-label_off:after {\n  content: '\\e357';\n}\n\n.mds-landscape:after {\n  content: '\\e359';\n}\n\n.mds-language:after {\n  content: '\\e35b';\n}\n\n.mds-laptop:after {\n  content: '\\e35d';\n}\n\n.mds-laptop_chromebook:after {\n  content: '\\e35f';\n}\n\n.mds-laptop_mac:after {\n  content: '\\e361';\n}\n\n.mds-laptop_windows:after {\n  content: '\\e363';\n}\n\n.mds-last_page:after {\n  content: '\\e365';\n}\n\n.mds-launch:after {\n  content: '\\e366';\n}\n\n.mds-layers:after {\n  content: '\\e367';\n}\n\n.mds-layers_clear:after {\n  content: '\\e369';\n}\n\n.mds-leak_add:after {\n  content: '\\e36b';\n}\n\n.mds-leak_remove:after {\n  content: '\\e36c';\n}\n\n.mds-lens:after {\n  content: '\\e36d';\n}\n\n.mds-less_than:after {\n  content: '\\e36f';\n}\n\n.mds-less_than_equal:after {\n  content: '\\e370';\n}\n\n.mds-library_add:after {\n  content: '\\e371';\n}\n\n.mds-library_books:after {\n  content: '\\e373';\n}\n\n.mds-library_music:after {\n  content: '\\e375';\n}\n\n.mds-lightbulb:after {\n  content: '\\e377';\n}\n\n.mds-line_style:after {\n  content: '\\e379';\n}\n\n.mds-line_weight:after {\n  content: '\\e37a';\n}\n\n.mds-linear_scale:after {\n  content: '\\e37b';\n}\n\n.mds-link:after {\n  content: '\\e37c';\n}\n\n.mds-link_off:after {\n  content: '\\e37e';\n}\n\n.mds-linked_camera:after {\n  content: '\\e37f';\n}\n\n.mds-list:after {\n  content: '\\e381';\n}\n\n.mds-list_alt:after {\n  content: '\\e382';\n}\n\n.mds-live_help:after {\n  content: '\\e384';\n}\n\n.mds-live_tv:after {\n  content: '\\e386';\n}\n\n.mds-local_activity:after {\n  content: '\\e388';\n}\n\n.mds-local_airport:after {\n  content: '\\e38a';\n}\n\n.mds-local_atm:after {\n  content: '\\e38b';\n}\n\n.mds-local_bar:after {\n  content: '\\e38d';\n}\n\n.mds-local_cafe:after {\n  content: '\\e38f';\n}\n\n.mds-local_car_wash:after {\n  content: '\\e391';\n}\n\n.mds-local_convenience_store:after {\n  content: '\\e393';\n}\n\n.mds-local_dining:after {\n  content: '\\e395';\n}\n\n.mds-local_drink:after {\n  content: '\\e396';\n}\n\n.mds-local_florist:after {\n  content: '\\e398';\n}\n\n.mds-local_gas_station:after {\n  content: '\\e39a';\n}\n\n.mds-local_grocery_store:after {\n  content: '\\e39c';\n}\n\n.mds-local_hospital:after {\n  content: '\\e39e';\n}\n\n.mds-local_hotel:after {\n  content: '\\e3a0';\n}\n\n.mds-local_laundry_service:after {\n  content: '\\e3a2';\n}\n\n.mds-local_library:after {\n  content: '\\e3a4';\n}\n\n.mds-local_mall:after {\n  content: '\\e3a6';\n}\n\n.mds-local_movies:after {\n  content: '\\e3a8';\n}\n\n.mds-local_offer:after {\n  content: '\\e3aa';\n}\n\n.mds-local_parking:after {\n  content: '\\e3ac';\n}\n\n.mds-local_pharmacy:after {\n  content: '\\e3ad';\n}\n\n.mds-local_phone:after {\n  content: '\\e3af';\n}\n\n.mds-local_pizza:after {\n  content: '\\e3b1';\n}\n\n.mds-local_play:after {\n  content: '\\e3b3';\n}\n\n.mds-local_post_office:after {\n  content: '\\e3b5';\n}\n\n.mds-local_printshop:after {\n  content: '\\e3b7';\n}\n\n.mds-local_see:after {\n  content: '\\e3b9';\n}\n\n.mds-local_shipping:after {\n  content: '\\e3bb';\n}\n\n.mds-local_taxi:after {\n  content: '\\e3bd';\n}\n\n.mds-location_city:after {\n  content: '\\e3bf';\n}\n\n.mds-location_disabled:after {\n  content: '\\e3c0';\n}\n\n.mds-location_off:after {\n  content: '\\e3c1';\n}\n\n.mds-location_on:after {\n  content: '\\e3c2';\n}\n\n.mds-location_searching:after {\n  content: '\\e3c4';\n}\n\n.mds-lock:after {\n  content: '\\e3c5';\n}\n\n.mds-lock_open:after {\n  content: '\\e3c7';\n}\n\n.mds-log_in:after {\n  content: '\\e3c9';\n}\n\n.mds-log_out:after {\n  content: '\\e3ca';\n}\n\n.mds-looks:after {\n  content: '\\e3cb';\n}\n\n.mds-looks_3:after {\n  content: '\\e3cc';\n}\n\n.mds-looks_4:after {\n  content: '\\e3ce';\n}\n\n.mds-looks_5:after {\n  content: '\\e3d0';\n}\n\n.mds-looks_6:after {\n  content: '\\e3d2';\n}\n\n.mds-looks_one:after {\n  content: '\\e3d4';\n}\n\n.mds-looks_two:after {\n  content: '\\e3d6';\n}\n\n.mds-loop:after {\n  content: '\\e3d8';\n}\n\n.mds-loupe:after {\n  content: '\\e3d9';\n}\n\n.mds-low_priority:after {\n  content: '\\e3db';\n}\n\n.mds-loyalty:after {\n  content: '\\e3dc';\n}\n\n.mds-mail:after {\n  content: '\\e3de';\n}\n\n.mds-mail_outline:after {\n  content: '\\e3e0';\n}\n\n.mds-map:after {\n  content: '\\e3e1';\n}\n\n.mds-markunread:after {\n  content: '\\e3e3';\n}\n\n.mds-markunread_mailbox:after {\n  content: '\\e3e5';\n}\n\n.mds-maximize:after {\n  content: '\\e3e7';\n}\n\n.mds-meeting_room:after {\n  content: '\\e3e8';\n}\n\n.mds-memory:after {\n  content: '\\e3ea';\n}\n\n.mds-menu:after {\n  content: '\\e3ec';\n}\n\n.mds-menu_book:after {\n  content: '\\e3ed';\n}\n\n.mds-menu_open:after {\n  content: '\\e3ef';\n}\n\n.mds-merge_type:after {\n  content: '\\e3f0';\n}\n\n.mds-message:after {\n  content: '\\e3f1';\n}\n\n.mds-mic:after {\n  content: '\\e3f3';\n}\n\n.mds-mic_none:after {\n  content: '\\e3f5';\n}\n\n.mds-mic_off:after {\n  content: '\\e3f7';\n}\n\n.mds-minimize:after {\n  content: '\\e3f9';\n}\n\n.mds-minus:after {\n  content: '\\e3fa';\n}\n\n.mds-missed_video_call:after {\n  content: '\\e3fb';\n}\n\n.mds-mms:after {\n  content: '\\e3fd';\n}\n\n.mds-mobile_friendly:after {\n  content: '\\e3ff';\n}\n\n.mds-mobile_off:after {\n  content: '\\e400';\n}\n\n.mds-mobile_screen_share:after {\n  content: '\\e401';\n}\n\n.mds-mode_comment:after {\n  content: '\\e403';\n}\n\n.mds-monetization_on:after {\n  content: '\\e405';\n}\n\n.mds-money:after {\n  content: '\\e407';\n}\n\n.mds-money_off:after {\n  content: '\\e409';\n}\n\n.mds-monochrome_photos:after {\n  content: '\\e40a';\n}\n\n.mds-mood:after {\n  content: '\\e40c';\n}\n\n.mds-mood_bad:after {\n  content: '\\e40e';\n}\n\n.mds-more:after {\n  content: '\\e410';\n}\n\n.mds-more_horiz:after {\n  content: '\\e412';\n}\n\n.mds-more_vert:after {\n  content: '\\e413';\n}\n\n.mds-motorcycle:after {\n  content: '\\e414';\n}\n\n.mds-mouse:after {\n  content: '\\e416';\n}\n\n.mds-move_to_inbox:after {\n  content: '\\e418';\n}\n\n.mds-movie:after {\n  content: '\\e41a';\n}\n\n.mds-movie_creation:after {\n  content: '\\e41c';\n}\n\n.mds-movie_filter:after {\n  content: '\\e41e';\n}\n\n.mds-multiline_chart:after {\n  content: '\\e420';\n}\n\n.mds-museum:after {\n  content: '\\e421';\n}\n\n.mds-music_note:after {\n  content: '\\e423';\n}\n\n.mds-music_off:after {\n  content: '\\e425';\n}\n\n.mds-music_video:after {\n  content: '\\e427';\n}\n\n.mds-my_location:after {\n  content: '\\e429';\n}\n\n.mds-nature:after {\n  content: '\\e42b';\n}\n\n.mds-nature_people:after {\n  content: '\\e42d';\n}\n\n.mds-navigate_before:after {\n  content: '\\e42f';\n}\n\n.mds-navigate_next:after {\n  content: '\\e430';\n}\n\n.mds-navigation:after {\n  content: '\\e431';\n}\n\n.mds-near_me:after {\n  content: '\\e433';\n}\n\n.mds-network_cell:after {\n  content: '\\e435';\n}\n\n.mds-network_cell:before {\n  content: '\\e436';\n}\n\n.mds-network_check:after {\n  content: '\\e437';\n}\n\n.mds-network_locked:after {\n  content: '\\e438';\n}\n\n.mds-network_wifi:after {\n  content: '\\e439';\n}\n\n.mds-network_wifi:before {\n  content: '\\e43a';\n}\n\n.mds-new_releases:after {\n  content: '\\e43b';\n}\n\n.mds-next_week:after {\n  content: '\\e43d';\n}\n\n.mds-nfc:after {\n  content: '\\e43f';\n}\n\n.mds-nights_stay:after {\n  content: '\\e440';\n}\n\n.mds-no_encryption:after {\n  content: '\\e442';\n}\n\n.mds-no_meeting_room:after {\n  content: '\\e444';\n}\n\n.mds-no_sim:after {\n  content: '\\e446';\n}\n\n.mds-not_equal:after {\n  content: '\\e448';\n}\n\n.mds-not_interested:after {\n  content: '\\e449';\n}\n\n.mds-not_listed_location:after {\n  content: '\\e44a';\n}\n\n.mds-note:after {\n  content: '\\e44c';\n}\n\n.mds-note_add:after {\n  content: '\\e44e';\n}\n\n.mds-notes:after {\n  content: '\\e450';\n}\n\n.mds-notification_important:after {\n  content: '\\e451';\n}\n\n.mds-notifications:after {\n  content: '\\e453';\n}\n\n.mds-notifications_active:after {\n  content: '\\e455';\n}\n\n.mds-notifications_none:after {\n  content: '\\e457';\n}\n\n.mds-notifications_off:after {\n  content: '\\e459';\n}\n\n.mds-notifications_paused:after {\n  content: '\\e45b';\n}\n\n.mds-offline_bolt:after {\n  content: '\\e45d';\n}\n\n.mds-offline_pin:after {\n  content: '\\e45f';\n}\n\n.mds-ondemand_video:after {\n  content: '\\e461';\n}\n\n.mds-opacity:after {\n  content: '\\e463';\n}\n\n.mds-open_in_browser:after {\n  content: '\\e465';\n}\n\n.mds-open_in_new:after {\n  content: '\\e466';\n}\n\n.mds-open_with:after {\n  content: '\\e467';\n}\n\n.mds-outdoor_grill:after {\n  content: '\\e468';\n}\n\n.mds-outlined_flag:after {\n  content: '\\e46a';\n}\n\n.mds-pages:after {\n  content: '\\e46b';\n}\n\n.mds-pageview:after {\n  content: '\\e46d';\n}\n\n.mds-palette:after {\n  content: '\\e46f';\n}\n\n.mds-pan_tool:after {\n  content: '\\e471';\n}\n\n.mds-panorama:after {\n  content: '\\e473';\n}\n\n.mds-panorama_fish_eye:after {\n  content: '\\e475';\n}\n\n.mds-panorama_horizontal:after {\n  content: '\\e477';\n}\n\n.mds-panorama_vertical:after {\n  content: '\\e479';\n}\n\n.mds-panorama_wide_angle:after {\n  content: '\\e47b';\n}\n\n.mds-party_mode:after {\n  content: '\\e47d';\n}\n\n.mds-pause:after {\n  content: '\\e47f';\n}\n\n.mds-pause_circle_filled:after {\n  content: '\\e480';\n}\n\n.mds-pause_circle_outline:after {\n  content: '\\e482';\n}\n\n.mds-pause_presentation:after {\n  content: '\\e483';\n}\n\n.mds-payment:after {\n  content: '\\e485';\n}\n\n.mds-people:after {\n  content: '\\e487';\n}\n\n.mds-people_alt:after {\n  content: '\\e489';\n}\n\n.mds-people_outline:after {\n  content: '\\e48b';\n}\n\n.mds-percentage:after {\n  content: '\\e48d';\n}\n\n.mds-perm_camera_mic:after {\n  content: '\\e48f';\n}\n\n.mds-perm_contact_calendar:after {\n  content: '\\e491';\n}\n\n.mds-perm_data_setting:after {\n  content: '\\e493';\n}\n\n.mds-perm_device_information:after {\n  content: '\\e494';\n}\n\n.mds-perm_identity:after {\n  content: '\\e496';\n}\n\n.mds-perm_media:after {\n  content: '\\e498';\n}\n\n.mds-perm_phone_msg:after {\n  content: '\\e49a';\n}\n\n.mds-perm_scan_wifi:after {\n  content: '\\e49c';\n}\n\n.mds-person:after {\n  content: '\\e49e';\n}\n\n.mds-person_add:after {\n  content: '\\e4a0';\n}\n\n.mds-person_add_disabled:after {\n  content: '\\e4a2';\n}\n\n.mds-person_outline:after {\n  content: '\\e4a4';\n}\n\n.mds-person_pin:after {\n  content: '\\e4a6';\n}\n\n.mds-person_pin_circle:after {\n  content: '\\e4a8';\n}\n\n.mds-personal_video:after {\n  content: '\\e4aa';\n}\n\n.mds-pets:after {\n  content: '\\e4ac';\n}\n\n.mds-phone:after {\n  content: '\\e4ad';\n}\n\n.mds-phone_android:after {\n  content: '\\e4af';\n}\n\n.mds-phone_bluetooth_speaker:after {\n  content: '\\e4b1';\n}\n\n.mds-phone_callback:after {\n  content: '\\e4b3';\n}\n\n.mds-phone_disabled:after {\n  content: '\\e4b5';\n}\n\n.mds-phone_enabled:after {\n  content: '\\e4b6';\n}\n\n.mds-phone_forwarded:after {\n  content: '\\e4b7';\n}\n\n.mds-phone_in_talk:after {\n  content: '\\e4b9';\n}\n\n.mds-phone_iphone:after {\n  content: '\\e4bb';\n}\n\n.mds-phone_locked:after {\n  content: '\\e4bd';\n}\n\n.mds-phone_missed:after {\n  content: '\\e4bf';\n}\n\n.mds-phone_paused:after {\n  content: '\\e4c1';\n}\n\n.mds-phonelink:after {\n  content: '\\e4c3';\n}\n\n.mds-phonelink_erase:after {\n  content: '\\e4c5';\n}\n\n.mds-phonelink_lock:after {\n  content: '\\e4c6';\n}\n\n.mds-phonelink_off:after {\n  content: '\\e4c7';\n}\n\n.mds-phonelink_ring:after {\n  content: '\\e4c9';\n}\n\n.mds-phonelink_setup:after {\n  content: '\\e4cb';\n}\n\n.mds-photo:after {\n  content: '\\e4cc';\n}\n\n.mds-photo_album:after {\n  content: '\\e4ce';\n}\n\n.mds-photo_camera:after {\n  content: '\\e4d0';\n}\n\n.mds-photo_filter:after {\n  content: '\\e4d2';\n}\n\n.mds-photo_library:after {\n  content: '\\e4d3';\n}\n\n.mds-photo_size_select_actual:after {\n  content: '\\e4d5';\n}\n\n.mds-photo_size_select_large:after {\n  content: '\\e4d7';\n}\n\n.mds-photo_size_select_small:after {\n  content: '\\e4d8';\n}\n\n.mds-picture_as_pdf:after {\n  content: '\\e4d9';\n}\n\n.mds-picture_in_picture:after {\n  content: '\\e4db';\n}\n\n.mds-picture_in_picture_alt:after {\n  content: '\\e4dd';\n}\n\n.mds-pie_chart:after {\n  content: '\\e4df';\n}\n\n.mds-pin:after {\n  content: '\\e4e1';\n}\n\n.mds-pin_drop:after {\n  content: '\\e4e3';\n}\n\n.mds-pin_off:after {\n  content: '\\e4e5';\n}\n\n.mds-place:after {\n  content: '\\e4e7';\n}\n\n.mds-play_arrow:after {\n  content: '\\e4e9';\n}\n\n.mds-play_circle_filled:after {\n  content: '\\e4eb';\n}\n\n.mds-play_circle_filled_white:after {\n  content: '\\e4ed';\n}\n\n.mds-play_circle_outline:after {\n  content: '\\e4ef';\n}\n\n.mds-play_for_work:after {\n  content: '\\e4f0';\n}\n\n.mds-playlist_add:after {\n  content: '\\e4f1';\n}\n\n.mds-playlist_add_check:after {\n  content: '\\e4f2';\n}\n\n.mds-playlist_play:after {\n  content: '\\e4f3';\n}\n\n.mds-plus:after {\n  content: '\\e4f4';\n}\n\n.mds-plus_minus:after {\n  content: '\\e4f5';\n}\n\n.mds-plus_minus_alt:after {\n  content: '\\e4f6';\n}\n\n.mds-plus_one:after {\n  content: '\\e4f7';\n}\n\n.mds-policy:after {\n  content: '\\e4f8';\n}\n\n.mds-poll:after {\n  content: '\\e4fa';\n}\n\n.mds-polymer:after {\n  content: '\\e4fc';\n}\n\n.mds-pool:after {\n  content: '\\e4fd';\n}\n\n.mds-portable_wifi_off:after {\n  content: '\\e4ff';\n}\n\n.mds-portrait:after {\n  content: '\\e500';\n}\n\n.mds-post_add:after {\n  content: '\\e502';\n}\n\n.mds-power:after {\n  content: '\\e503';\n}\n\n.mds-power_input:after {\n  content: '\\e505';\n}\n\n.mds-power_off:after {\n  content: '\\e506';\n}\n\n.mds-power_settings_new:after {\n  content: '\\e508';\n}\n\n.mds-pregnant_woman:after {\n  content: '\\e509';\n}\n\n.mds-present_to_all:after {\n  content: '\\e50a';\n}\n\n.mds-print:after {\n  content: '\\e50c';\n}\n\n.mds-print_disabled:after {\n  content: '\\e50e';\n}\n\n.mds-priority_high:after {\n  content: '\\e510';\n}\n\n.mds-public:after {\n  content: '\\e511';\n}\n\n.mds-publish:after {\n  content: '\\e513';\n}\n\n.mds-qrcode:after {\n  content: '\\e515';\n}\n\n.mds-query_builder:after {\n  content: '\\e517';\n}\n\n.mds-question_answer:after {\n  content: '\\e519';\n}\n\n.mds-queue:after {\n  content: '\\e51b';\n}\n\n.mds-queue_music:after {\n  content: '\\e51d';\n}\n\n.mds-queue_play_next:after {\n  content: '\\e51f';\n}\n\n.mds-radio:after {\n  content: '\\e520';\n}\n\n.mds-radio_button_checked:after {\n  content: '\\e522';\n}\n\n.mds-radio_button_unchecked:after {\n  content: '\\e523';\n}\n\n.mds-rate_review:after {\n  content: '\\e524';\n}\n\n.mds-receipt:after {\n  content: '\\e526';\n}\n\n.mds-recent_actors:after {\n  content: '\\e528';\n}\n\n.mds-record_voice_over:after {\n  content: '\\e52a';\n}\n\n.mds-redeem:after {\n  content: '\\e52c';\n}\n\n.mds-redo:after {\n  content: '\\e52e';\n}\n\n.mds-refresh:after {\n  content: '\\e52f';\n}\n\n.mds-remove:after {\n  content: '\\e530';\n}\n\n.mds-remove_circle:after {\n  content: '\\e531';\n}\n\n.mds-remove_circle_outline:after {\n  content: '\\e533';\n}\n\n.mds-remove_from_queue:after {\n  content: '\\e534';\n}\n\n.mds-remove_red_eye:after {\n  content: '\\e536';\n}\n\n.mds-remove_shopping_cart:after {\n  content: '\\e538';\n}\n\n.mds-reorder:after {\n  content: '\\e53a';\n}\n\n.mds-repeat:after {\n  content: '\\e53b';\n}\n\n.mds-repeat_one:after {\n  content: '\\e53c';\n}\n\n.mds-replay:after {\n  content: '\\e53d';\n}\n\n.mds-replay_10:after {\n  content: '\\e53e';\n}\n\n.mds-replay_30:after {\n  content: '\\e53f';\n}\n\n.mds-replay_5:after {\n  content: '\\e540';\n}\n\n.mds-reply:after {\n  content: '\\e541';\n}\n\n.mds-reply_all:after {\n  content: '\\e542';\n}\n\n.mds-report:after {\n  content: '\\e543';\n}\n\n.mds-report_off:after {\n  content: '\\e545';\n}\n\n.mds-report_problem:after {\n  content: '\\e547';\n}\n\n.mds-restaurant:after {\n  content: '\\e549';\n}\n\n.mds-restaurant_menu:after {\n  content: '\\e54a';\n}\n\n.mds-restore:after {\n  content: '\\e54b';\n}\n\n.mds-restore_from_trash:after {\n  content: '\\e54c';\n}\n\n.mds-restore_page:after {\n  content: '\\e54e';\n}\n\n.mds-ring_volume:after {\n  content: '\\e550';\n}\n\n.mds-rocket:after {\n  content: '\\e552';\n}\n\n.mds-room:after {\n  content: '\\e554';\n}\n\n.mds-room_service:after {\n  content: '\\e556';\n}\n\n.mds-rotate_90_degrees_ccw:after {\n  content: '\\e558';\n}\n\n.mds-rotate_left:after {\n  content: '\\e55a';\n}\n\n.mds-rotate_right:after {\n  content: '\\e55b';\n}\n\n.mds-rounded_corner:after {\n  content: '\\e55c';\n}\n\n.mds-router:after {\n  content: '\\e55d';\n}\n\n.mds-rowing:after {\n  content: '\\e55f';\n}\n\n.mds-rss_feed:after {\n  content: '\\e560';\n}\n\n.mds-rv_hookup:after {\n  content: '\\e561';\n}\n\n.mds-satellite:after {\n  content: '\\e563';\n}\n\n.mds-save:after {\n  content: '\\e565';\n}\n\n.mds-save_alt:after {\n  content: '\\e567';\n}\n\n.mds-scanner:after {\n  content: '\\e568';\n}\n\n.mds-scatter_plot:after {\n  content: '\\e56a';\n}\n\n.mds-schedule:after {\n  content: '\\e56c';\n}\n\n.mds-school:after {\n  content: '\\e56e';\n}\n\n.mds-score:after {\n  content: '\\e570';\n}\n\n.mds-screen_lock_landscape:after {\n  content: '\\e572';\n}\n\n.mds-screen_lock_portrait:after {\n  content: '\\e574';\n}\n\n.mds-screen_lock_rotation:after {\n  content: '\\e576';\n}\n\n.mds-screen_rotation:after {\n  content: '\\e577';\n}\n\n.mds-screen_share:after {\n  content: '\\e579';\n}\n\n.mds-sd_card:after {\n  content: '\\e57b';\n}\n\n.mds-sd_storage:after {\n  content: '\\e57d';\n}\n\n.mds-search:after {\n  content: '\\e57f';\n}\n\n.mds-security:after {\n  content: '\\e580';\n}\n\n.mds-select_all:after {\n  content: '\\e582';\n}\n\n.mds-send:after {\n  content: '\\e583';\n}\n\n.mds-sentiment_dissatisfied:after {\n  content: '\\e585';\n}\n\n.mds-sentiment_neutral:after {\n  content: '\\e587';\n}\n\n.mds-sentiment_satisfied:after {\n  content: '\\e589';\n}\n\n.mds-sentiment_satisfied_alt:after {\n  content: '\\e58b';\n}\n\n.mds-sentiment_slightly_dissatisfied:after {\n  content: '\\e58d';\n}\n\n.mds-sentiment_very_dissatisfied:after {\n  content: '\\e58f';\n}\n\n.mds-sentiment_very_satisfied:after {\n  content: '\\e591';\n}\n\n.mds-settings:after {\n  content: '\\e593';\n}\n\n.mds-settings_applications:after {\n  content: '\\e595';\n}\n\n.mds-settings_backup_restore:after {\n  content: '\\e597';\n}\n\n.mds-settings_bluetooth:after {\n  content: '\\e598';\n}\n\n.mds-settings_brightness:after {\n  content: '\\e599';\n}\n\n.mds-settings_cell:after {\n  content: '\\e59b';\n}\n\n.mds-settings_ethernet:after {\n  content: '\\e59d';\n}\n\n.mds-settings_input_antenna:after {\n  content: '\\e59e';\n}\n\n.mds-settings_input_component:after {\n  content: '\\e59f';\n}\n\n.mds-settings_input_composite:after {\n  content: '\\e5a1';\n}\n\n.mds-settings_input_hdmi:after {\n  content: '\\e5a3';\n}\n\n.mds-settings_input_svideo:after {\n  content: '\\e5a5';\n}\n\n.mds-settings_overscan:after {\n  content: '\\e5a7';\n}\n\n.mds-settings_phone:after {\n  content: '\\e5a9';\n}\n\n.mds-settings_power:after {\n  content: '\\e5ab';\n}\n\n.mds-settings_remote:after {\n  content: '\\e5ac';\n}\n\n.mds-settings_system_daydream:after {\n  content: '\\e5ae';\n}\n\n.mds-settings_voice:after {\n  content: '\\e5b0';\n}\n\n.mds-share:after {\n  content: '\\e5b2';\n}\n\n.mds-shop:after {\n  content: '\\e5b4';\n}\n\n.mds-shop_two:after {\n  content: '\\e5b6';\n}\n\n.mds-shopping_basket:after {\n  content: '\\e5b8';\n}\n\n.mds-shopping_cart:after {\n  content: '\\e5ba';\n}\n\n.mds-short_text:after {\n  content: '\\e5bc';\n}\n\n.mds-show_chart:after {\n  content: '\\e5bd';\n}\n\n.mds-shuffle:after {\n  content: '\\e5be';\n}\n\n.mds-shutter_speed:after {\n  content: '\\e5bf';\n}\n\n.mds-signal_cellular_0_bar:after {\n  content: '\\e5c1';\n}\n\n.mds-signal_cellular_0_bar:before {\n  content: '\\e5c2';\n}\n\n.mds-signal_cellular_1_bar:after {\n  content: '\\e5c3';\n}\n\n.mds-signal_cellular_1_bar:before {\n  content: '\\e5c4';\n}\n\n.mds-signal_cellular_2_bar:after {\n  content: '\\e5c5';\n}\n\n.mds-signal_cellular_2_bar:before {\n  content: '\\e5c6';\n}\n\n.mds-signal_cellular_3_bar:after {\n  content: '\\e5c7';\n}\n\n.mds-signal_cellular_3_bar:before {\n  content: '\\e5c8';\n}\n\n.mds-signal_cellular_4_bar:after {\n  content: '\\e5c9';\n}\n\n.mds-signal_cellular_alt:after {\n  content: '\\e5ca';\n}\n\n.mds-signal_cellular_connected_no_internet_0_bar:after {\n  content: '\\e5cb';\n}\n\n.mds-signal_cellular_connected_no_internet_0_bar:before {\n  content: '\\e5cc';\n}\n\n.mds-signal_cellular_connected_no_internet_1_bar:after {\n  content: '\\e5cd';\n}\n\n.mds-signal_cellular_connected_no_internet_1_bar:before {\n  content: '\\e5ce';\n}\n\n.mds-signal_cellular_connected_no_internet_2_bar:after {\n  content: '\\e5cf';\n}\n\n.mds-signal_cellular_connected_no_internet_2_bar:before {\n  content: '\\e5d0';\n}\n\n.mds-signal_cellular_connected_no_internet_3_bar:after {\n  content: '\\e5d1';\n}\n\n.mds-signal_cellular_connected_no_internet_3_bar:before {\n  content: '\\e5d2';\n}\n\n.mds-signal_cellular_connected_no_internet_4_bar:after {\n  content: '\\e5d3';\n}\n\n.mds-signal_cellular_no_sim:after {\n  content: '\\e5d4';\n}\n\n.mds-signal_cellular_null:after {\n  content: '\\e5d6';\n}\n\n.mds-signal_cellular_off:after {\n  content: '\\e5d7';\n}\n\n.mds-signal_wifi_0_bar:after {\n  content: '\\e5d8';\n}\n\n.mds-signal_wifi_0_bar:before {\n  content: '\\e5d9';\n}\n\n.mds-signal_wifi_1_bar:after {\n  content: '\\e5da';\n}\n\n.mds-signal_wifi_1_bar:before {\n  content: '\\e5db';\n}\n\n.mds-signal_wifi_1_bar_lock:after {\n  content: '\\e5dc';\n}\n\n.mds-signal_wifi_1_bar_lock:before {\n  content: '\\e5dd';\n}\n\n.mds-signal_wifi_2_bar:after {\n  content: '\\e5de';\n}\n\n.mds-signal_wifi_2_bar:before {\n  content: '\\e5df';\n}\n\n.mds-signal_wifi_2_bar_lock:after {\n  content: '\\e5e0';\n}\n\n.mds-signal_wifi_2_bar_lock:before {\n  content: '\\e5e1';\n}\n\n.mds-signal_wifi_3_bar:after {\n  content: '\\e5e2';\n}\n\n.mds-signal_wifi_3_bar:before {\n  content: '\\e5e3';\n}\n\n.mds-signal_wifi_3_bar_lock:after {\n  content: '\\e5e4';\n}\n\n.mds-signal_wifi_3_bar_lock:before {\n  content: '\\e5e5';\n}\n\n.mds-signal_wifi_4_bar:after {\n  content: '\\e5e6';\n}\n\n.mds-signal_wifi_4_bar_lock:after {\n  content: '\\e5e7';\n}\n\n.mds-signal_wifi_off:after {\n  content: '\\e5e8';\n}\n\n.mds-sim_card:after {\n  content: '\\e5e9';\n}\n\n.mds-sim_card_alert:after {\n  content: '\\e5eb';\n}\n\n.mds-single_bed:after {\n  content: '\\e5ed';\n}\n\n.mds-skip_next:after {\n  content: '\\e5ef';\n}\n\n.mds-skip_previous:after {\n  content: '\\e5f1';\n}\n\n.mds-slideshow:after {\n  content: '\\e5f3';\n}\n\n.mds-slow_motion_video:after {\n  content: '\\e5f5';\n}\n\n.mds-smartphone:after {\n  content: '\\e5f6';\n}\n\n.mds-smoke_free:after {\n  content: '\\e5f8';\n}\n\n.mds-smoking_rooms:after {\n  content: '\\e5f9';\n}\n\n.mds-sms:after {\n  content: '\\e5fb';\n}\n\n.mds-sms_failed:after {\n  content: '\\e5fd';\n}\n\n.mds-snooze:after {\n  content: '\\e5ff';\n}\n\n.mds-sort:after {\n  content: '\\e600';\n}\n\n.mds-sort_by_alpha:after {\n  content: '\\e601';\n}\n\n.mds-spa:after {\n  content: '\\e602';\n}\n\n.mds-space_bar:after {\n  content: '\\e604';\n}\n\n.mds-speaker:after {\n  content: '\\e605';\n}\n\n.mds-speaker_group:after {\n  content: '\\e607';\n}\n\n.mds-speaker_notes:after {\n  content: '\\e609';\n}\n\n.mds-speaker_notes_off:after {\n  content: '\\e60b';\n}\n\n.mds-speaker_phone:after {\n  content: '\\e60d';\n}\n\n.mds-speed:after {\n  content: '\\e60f';\n}\n\n.mds-spellcheck:after {\n  content: '\\e610';\n}\n\n.mds-sports:after {\n  content: '\\e611';\n}\n\n.mds-sports_baseball:after {\n  content: '\\e612';\n}\n\n.mds-sports_basketball:after {\n  content: '\\e614';\n}\n\n.mds-sports_cricket:after {\n  content: '\\e616';\n}\n\n.mds-sports_esports:after {\n  content: '\\e618';\n}\n\n.mds-sports_football:after {\n  content: '\\e61a';\n}\n\n.mds-sports_golf:after {\n  content: '\\e61c';\n}\n\n.mds-sports_handball:after {\n  content: '\\e61e';\n}\n\n.mds-sports_hockey:after {\n  content: '\\e61f';\n}\n\n.mds-sports_kabaddi:after {\n  content: '\\e620';\n}\n\n.mds-sports_mma:after {\n  content: '\\e621';\n}\n\n.mds-sports_motorsports:after {\n  content: '\\e623';\n}\n\n.mds-sports_rugby:after {\n  content: '\\e625';\n}\n\n.mds-sports_soccer:after {\n  content: '\\e627';\n}\n\n.mds-sports_tennis:after {\n  content: '\\e629';\n}\n\n.mds-sports_volleyball:after {\n  content: '\\e62a';\n}\n\n.mds-square_foot:after {\n  content: '\\e62c';\n}\n\n.mds-star:after {\n  content: '\\e62e';\n}\n\n.mds-star_border:after {\n  content: '\\e630';\n}\n\n.mds-star_half:after {\n  content: '\\e631';\n}\n\n.mds-star_rate:after {\n  content: '\\e632';\n}\n\n.mds-stars:after {\n  content: '\\e633';\n}\n\n.mds-stay_current_landscape:after {\n  content: '\\e635';\n}\n\n.mds-stay_current_portrait:after {\n  content: '\\e637';\n}\n\n.mds-stay_primary_landscape:after {\n  content: '\\e639';\n}\n\n.mds-stay_primary_portrait:after {\n  content: '\\e63b';\n}\n\n.mds-stop:after {\n  content: '\\e63d';\n}\n\n.mds-stop_circle:after {\n  content: '\\e63f';\n}\n\n.mds-stop_screen_share:after {\n  content: '\\e641';\n}\n\n.mds-storage:after {\n  content: '\\e643';\n}\n\n.mds-store:after {\n  content: '\\e644';\n}\n\n.mds-store_mall_directory:after {\n  content: '\\e646';\n}\n\n.mds-storefront:after {\n  content: '\\e648';\n}\n\n.mds-straighten:after {\n  content: '\\e64a';\n}\n\n.mds-streetview:after {\n  content: '\\e64c';\n}\n\n.mds-strikethrough_s:after {\n  content: '\\e64d';\n}\n\n.mds-style:after {\n  content: '\\e64e';\n}\n\n.mds-subdirectory_arrow_left:after {\n  content: '\\e650';\n}\n\n.mds-subdirectory_arrow_right:after {\n  content: '\\e651';\n}\n\n.mds-subject:after {\n  content: '\\e652';\n}\n\n.mds-subscriptions:after {\n  content: '\\e653';\n}\n\n.mds-subtitles:after {\n  content: '\\e655';\n}\n\n.mds-subway:after {\n  content: '\\e657';\n}\n\n.mds-supervised_user_circle:after {\n  content: '\\e659';\n}\n\n.mds-supervisor_account:after {\n  content: '\\e65b';\n}\n\n.mds-surround_sound:after {\n  content: '\\e65d';\n}\n\n.mds-swap_calls:after {\n  content: '\\e65f';\n}\n\n.mds-swap_horiz:after {\n  content: '\\e660';\n}\n\n.mds-swap_horizontal_circle:after {\n  content: '\\e661';\n}\n\n.mds-swap_vert:after {\n  content: '\\e663';\n}\n\n.mds-swap_vertical_circle:after {\n  content: '\\e664';\n}\n\n.mds-switch_camera:after {\n  content: '\\e666';\n}\n\n.mds-switch_video:after {\n  content: '\\e668';\n}\n\n.mds-sync:after {\n  content: '\\e66a';\n}\n\n.mds-sync_alt:after {\n  content: '\\e66b';\n}\n\n.mds-sync_disabled:after {\n  content: '\\e66c';\n}\n\n.mds-sync_problem:after {\n  content: '\\e66d';\n}\n\n.mds-system_update:after {\n  content: '\\e66e';\n}\n\n.mds-system_update_alt:after {\n  content: '\\e670';\n}\n\n.mds-tab:after {\n  content: '\\e671';\n}\n\n.mds-tab_unselected:after {\n  content: '\\e672';\n}\n\n.mds-table_chart:after {\n  content: '\\e673';\n}\n\n.mds-tablet:after {\n  content: '\\e675';\n}\n\n.mds-tablet_android:after {\n  content: '\\e677';\n}\n\n.mds-tablet_mac:after {\n  content: '\\e679';\n}\n\n.mds-tag_faces:after {\n  content: '\\e67b';\n}\n\n.mds-tap_and_play:after {\n  content: '\\e67d';\n}\n\n.mds-terrain:after {\n  content: '\\e67e';\n}\n\n.mds-text_fields:after {\n  content: '\\e680';\n}\n\n.mds-text_format:after {\n  content: '\\e681';\n}\n\n.mds-text_rotate_up:after {\n  content: '\\e682';\n}\n\n.mds-text_rotate_vertical:after {\n  content: '\\e683';\n}\n\n.mds-text_rotation_angledown:after {\n  content: '\\e684';\n}\n\n.mds-text_rotation_angleup:after {\n  content: '\\e685';\n}\n\n.mds-text_rotation_down:after {\n  content: '\\e686';\n}\n\n.mds-text_rotation_none:after {\n  content: '\\e687';\n}\n\n.mds-textsms:after {\n  content: '\\e688';\n}\n\n.mds-texture:after {\n  content: '\\e68a';\n}\n\n.mds-theaters:after {\n  content: '\\e68b';\n}\n\n.mds-thumb_down:after {\n  content: '\\e68d';\n}\n\n.mds-thumb_down_alt:after {\n  content: '\\e68f';\n}\n\n.mds-thumb_up:after {\n  content: '\\e691';\n}\n\n.mds-thumb_up_alt:after {\n  content: '\\e693';\n}\n\n.mds-thumbs_up_down:after {\n  content: '\\e695';\n}\n\n.mds-time_to_leave:after {\n  content: '\\e697';\n}\n\n.mds-timelapse:after {\n  content: '\\e699';\n}\n\n.mds-timeline:after {\n  content: '\\e69b';\n}\n\n.mds-timer:after {\n  content: '\\e69c';\n}\n\n.mds-timer_10:after {\n  content: '\\e69e';\n}\n\n.mds-timer_3:after {\n  content: '\\e69f';\n}\n\n.mds-timer_off:after {\n  content: '\\e6a0';\n}\n\n.mds-title:after {\n  content: '\\e6a2';\n}\n\n.mds-toc:after {\n  content: '\\e6a3';\n}\n\n.mds-today:after {\n  content: '\\e6a4';\n}\n\n.mds-toggle_off:after {\n  content: '\\e6a6';\n}\n\n.mds-toggle_on:after {\n  content: '\\e6a8';\n}\n\n.mds-toll:after {\n  content: '\\e6aa';\n}\n\n.mds-tonality:after {\n  content: '\\e6ac';\n}\n\n.mds-touch_app:after {\n  content: '\\e6ae';\n}\n\n.mds-toys:after {\n  content: '\\e6b0';\n}\n\n.mds-track_changes:after {\n  content: '\\e6b2';\n}\n\n.mds-traffic:after {\n  content: '\\e6b3';\n}\n\n.mds-train:after {\n  content: '\\e6b5';\n}\n\n.mds-tram:after {\n  content: '\\e6b7';\n}\n\n.mds-transfer_within_a_station:after {\n  content: '\\e6b9';\n}\n\n.mds-transform:after {\n  content: '\\e6ba';\n}\n\n.mds-transit_enterexit:after {\n  content: '\\e6bb';\n}\n\n.mds-translate:after {\n  content: '\\e6bc';\n}\n\n.mds-trending_down:after {\n  content: '\\e6bd';\n}\n\n.mds-trending_flat:after {\n  content: '\\e6be';\n}\n\n.mds-trending_up:after {\n  content: '\\e6bf';\n}\n\n.mds-trip_origin:after {\n  content: '\\e6c0';\n}\n\n.mds-tune:after {\n  content: '\\e6c1';\n}\n\n.mds-turned_in:after {\n  content: '\\e6c2';\n}\n\n.mds-turned_in_not:after {\n  content: '\\e6c4';\n}\n\n.mds-tv:after {\n  content: '\\e6c5';\n}\n\n.mds-tv_off:after {\n  content: '\\e6c7';\n}\n\n.mds-unarchive:after {\n  content: '\\e6c9';\n}\n\n.mds-undo:after {\n  content: '\\e6cb';\n}\n\n.mds-unfold_less:after {\n  content: '\\e6cc';\n}\n\n.mds-unfold_more:after {\n  content: '\\e6cd';\n}\n\n.mds-unsubscribe:after {\n  content: '\\e6ce';\n}\n\n.mds-update:after {\n  content: '\\e6d0';\n}\n\n.mds-usb:after {\n  content: '\\e6d1';\n}\n\n.mds-verified_user:after {\n  content: '\\e6d2';\n}\n\n.mds-vertical_align_bottom:after {\n  content: '\\e6d4';\n}\n\n.mds-vertical_align_center:after {\n  content: '\\e6d5';\n}\n\n.mds-vertical_align_top:after {\n  content: '\\e6d6';\n}\n\n.mds-vertical_split:after {\n  content: '\\e6d7';\n}\n\n.mds-vibration:after {\n  content: '\\e6d9';\n}\n\n.mds-video_call:after {\n  content: '\\e6db';\n}\n\n.mds-video_label:after {\n  content: '\\e6dd';\n}\n\n.mds-video_library:after {\n  content: '\\e6df';\n}\n\n.mds-videocam:after {\n  content: '\\e6e1';\n}\n\n.mds-videocam_off:after {\n  content: '\\e6e3';\n}\n\n.mds-videogame_asset:after {\n  content: '\\e6e5';\n}\n\n.mds-view_agenda:after {\n  content: '\\e6e7';\n}\n\n.mds-view_array:after {\n  content: '\\e6e9';\n}\n\n.mds-view_carousel:after {\n  content: '\\e6eb';\n}\n\n.mds-view_column:after {\n  content: '\\e6ed';\n}\n\n.mds-view_comfy:after {\n  content: '\\e6ef';\n}\n\n.mds-view_compact:after {\n  content: '\\e6f1';\n}\n\n.mds-view_day:after {\n  content: '\\e6f3';\n}\n\n.mds-view_headline:after {\n  content: '\\e6f5';\n}\n\n.mds-view_list:after {\n  content: '\\e6f6';\n}\n\n.mds-view_module:after {\n  content: '\\e6f8';\n}\n\n.mds-view_quilt:after {\n  content: '\\e6fa';\n}\n\n.mds-view_stream:after {\n  content: '\\e6fc';\n}\n\n.mds-view_week:after {\n  content: '\\e6fe';\n}\n\n.mds-vignette:after {\n  content: '\\e700';\n}\n\n.mds-visibility:after {\n  content: '\\e702';\n}\n\n.mds-visibility_off:after {\n  content: '\\e704';\n}\n\n.mds-voice_chat:after {\n  content: '\\e706';\n}\n\n.mds-voice_over_off:after {\n  content: '\\e708';\n}\n\n.mds-voicemail:after {\n  content: '\\e70a';\n}\n\n.mds-volume_down:after {\n  content: '\\e70b';\n}\n\n.mds-volume_mute:after {\n  content: '\\e70d';\n}\n\n.mds-volume_off:after {\n  content: '\\e70f';\n}\n\n.mds-volume_up:after {\n  content: '\\e711';\n}\n\n.mds-vpn_key:after {\n  content: '\\e713';\n}\n\n.mds-vpn_lock:after {\n  content: '\\e715';\n}\n\n.mds-wallpaper:after {\n  content: '\\e717';\n}\n\n.mds-warning:after {\n  content: '\\e718';\n}\n\n.mds-watch:after {\n  content: '\\e71a';\n}\n\n.mds-watch_later:after {\n  content: '\\e71c';\n}\n\n.mds-waves:after {\n  content: '\\e71e';\n}\n\n.mds-wb_auto:after {\n  content: '\\e71f';\n}\n\n.mds-wb_cloudy:after {\n  content: '\\e721';\n}\n\n.mds-wb_incandescent:after {\n  content: '\\e723';\n}\n\n.mds-wb_iridescent:after {\n  content: '\\e725';\n}\n\n.mds-wb_sunny:after {\n  content: '\\e727';\n}\n\n.mds-wc:after {\n  content: '\\e729';\n}\n\n.mds-web:after {\n  content: '\\e72a';\n}\n\n.mds-web_asset:after {\n  content: '\\e72c';\n}\n\n.mds-weekend:after {\n  content: '\\e72e';\n}\n\n.mds-whatshot:after {\n  content: '\\e730';\n}\n\n.mds-where_to_vote:after {\n  content: '\\e732';\n}\n\n.mds-widgets:after {\n  content: '\\e734';\n}\n\n.mds-wifi:after {\n  content: '\\e736';\n}\n\n.mds-wifi_lock:after {\n  content: '\\e737';\n}\n\n.mds-wifi_off:after {\n  content: '\\e738';\n}\n\n.mds-wifi_tethering:after {\n  content: '\\e739';\n}\n\n.mds-work:after {\n  content: '\\e73a';\n}\n\n.mds-work_off:after {\n  content: '\\e73c';\n}\n\n.mds-work_outline:after {\n  content: '\\e73e';\n}\n\n.mds-wrap_text:after {\n  content: '\\e73f';\n}\n\n.mds-youtube_searched_for:after {\n  content: '\\e740';\n}\n\n.mds-zoom_in:after {\n  content: '\\e741';\n}\n\n.mds-zoom_out:after {\n  content: '\\e742';\n}\n\n.mds-zoom_out_map:after {\n  content: '\\e743';\n}\n\n.mds-add_ic_call:after {\n  content: '\\e744';\n}\n\n.mds-library_add_check:after {\n  content: '\\e746';\n}\n\n.mds-star_outline:after {\n  content: '\\e748';\n}\n\n.mds-two_wheeler:after {\n  content: '\\e749';\n}\n\n.mds-5g:after {\n  content: '\\e74a';\n}\n\n.mds-ad_units:after {\n  content: '\\e74b';\n}\n\n.mds-add_business:after {\n  content: '\\e74d';\n}\n\n.mds-add_location_alt:after {\n  content: '\\e74f';\n}\n\n.mds-add_road:after {\n  content: '\\e751';\n}\n\n.mds-addchart:after {\n  content: '\\e752';\n}\n\n.mds-admin_panel_settings:after {\n  content: '\\e753';\n}\n\n.mds-agriculture:after {\n  content: '\\e755';\n}\n\n.mds-alt_route:after {\n  content: '\\e757';\n}\n\n.mds-analytics:after {\n  content: '\\e758';\n}\n\n.mds-anchor:after {\n  content: '\\e75a';\n}\n\n.mds-api:after {\n  content: '\\e75b';\n}\n\n.mds-app_blocking:after {\n  content: '\\e75c';\n}\n\n.mds-app_settings_alt:after {\n  content: '\\e75e';\n}\n\n.mds-architecture:after {\n  content: '\\e760';\n}\n\n.mds-arrow_circle_down:after {\n  content: '\\e761';\n}\n\n.mds-arrow_circle_up:after {\n  content: '\\e763';\n}\n\n.mds-article:after {\n  content: '\\e765';\n}\n\n.mds-attach_email:after {\n  content: '\\e767';\n}\n\n.mds-auto_delete:after {\n  content: '\\e768';\n}\n\n.mds-baby_changing_station:after {\n  content: '\\e76a';\n}\n\n.mds-backpack:after {\n  content: '\\e76b';\n}\n\n.mds-backup_table:after {\n  content: '\\e76d';\n}\n\n.mds-batch_prediction:after {\n  content: '\\e76f';\n}\n\n.mds-bedtime:after {\n  content: '\\e771';\n}\n\n.mds-bike_scooter:after {\n  content: '\\e773';\n}\n\n.mds-biotech:after {\n  content: '\\e774';\n}\n\n.mds-browser_not_supported:after {\n  content: '\\e776';\n}\n\n.mds-build_circle:after {\n  content: '\\e777';\n}\n\n.mds-calculate:after {\n  content: '\\e779';\n}\n\n.mds-campaign:after {\n  content: '\\e77b';\n}\n\n.mds-charging_station:after {\n  content: '\\e77d';\n}\n\n.mds-checkroom:after {\n  content: '\\e77f';\n}\n\n.mds-cleaning_services:after {\n  content: '\\e780';\n}\n\n.mds-close_fullscreen:after {\n  content: '\\e782';\n}\n\n.mds-comment_bank:after {\n  content: '\\e783';\n}\n\n.mds-construction:after {\n  content: '\\e785';\n}\n\n.mds-corporate_fare:after {\n  content: '\\e786';\n}\n\n.mds-design_services:after {\n  content: '\\e788';\n}\n\n.mds-directions_off:after {\n  content: '\\e78a';\n}\n\n.mds-do_not_step:after {\n  content: '\\e78b';\n}\n\n.mds-do_not_touch:after {\n  content: '\\e78d';\n}\n\n.mds-domain_verification:after {\n  content: '\\e78f';\n}\n\n.mds-dry:after {\n  content: '\\e791';\n}\n\n.mds-dynamic_form:after {\n  content: '\\e793';\n}\n\n.mds-edit_road:after {\n  content: '\\e795';\n}\n\n.mds-electric_bike:after {\n  content: '\\e797';\n}\n\n.mds-electric_car:after {\n  content: '\\e798';\n}\n\n.mds-electric_moped:after {\n  content: '\\e79a';\n}\n\n.mds-electric_scooter:after {\n  content: '\\e79c';\n}\n\n.mds-electrical_services:after {\n  content: '\\e79d';\n}\n\n.mds-elevator:after {\n  content: '\\e79e';\n}\n\n.mds-engineering:after {\n  content: '\\e7a0';\n}\n\n.mds-escalator:after {\n  content: '\\e7a2';\n}\n\n.mds-escalator_warning:after {\n  content: '\\e7a4';\n}\n\n.mds-fact_check:after {\n  content: '\\e7a5';\n}\n\n.mds-family_restroom:after {\n  content: '\\e7a7';\n}\n\n.mds-filter_alt:after {\n  content: '\\e7a8';\n}\n\n.mds-flaky:after {\n  content: '\\e7aa';\n}\n\n.mds-forward_to_inbox:after {\n  content: '\\e7ab';\n}\n\n.mds-grading:after {\n  content: '\\e7ad';\n}\n\n.mds-handyman:after {\n  content: '\\e7ae';\n}\n\n.mds-hearing_disabled:after {\n  content: '\\e7b0';\n}\n\n.mds-help_center:after {\n  content: '\\e7b1';\n}\n\n.mds-highlight_alt:after {\n  content: '\\e7b3';\n}\n\n.mds-history_edu:after {\n  content: '\\e7b4';\n}\n\n.mds-history_toggle_off:after {\n  content: '\\e7b6';\n}\n\n.mds-home_repair_service:after {\n  content: '\\e7b7';\n}\n\n.mds-horizontal_rule:after {\n  content: '\\e7b9';\n}\n\n.mds-hourglass_bottom:after {\n  content: '\\e7ba';\n}\n\n.mds-hourglass_disabled:after {\n  content: '\\e7bc';\n}\n\n.mds-hourglass_top:after {\n  content: '\\e7bd';\n}\n\n.mds-hvac:after {\n  content: '\\e7bf';\n}\n\n.mds-image_not_supported:after {\n  content: '\\e7c1';\n}\n\n.mds-insights:after {\n  content: '\\e7c3';\n}\n\n.mds-integration_instructions:after {\n  content: '\\e7c4';\n}\n\n.mds-legend_toggle:after {\n  content: '\\e7c6';\n}\n\n.mds-login:after {\n  content: '\\e7c7';\n}\n\n.mds-maps_ugc:after {\n  content: '\\e7c8';\n}\n\n.mds-mark_chat_read:after {\n  content: '\\e7ca';\n}\n\n.mds-mark_chat_unread:after {\n  content: '\\e7cc';\n}\n\n.mds-mark_email_read:after {\n  content: '\\e7ce';\n}\n\n.mds-mark_email_unread:after {\n  content: '\\e7d0';\n}\n\n.mds-mediation:after {\n  content: '\\e7d2';\n}\n\n.mds-medical_services:after {\n  content: '\\e7d3';\n}\n\n.mds-military_tech:after {\n  content: '\\e7d5';\n}\n\n.mds-miscellaneous_services:after {\n  content: '\\e7d7';\n}\n\n.mds-model_training:after {\n  content: '\\e7d8';\n}\n\n.mds-moped:after {\n  content: '\\e7d9';\n}\n\n.mds-more_time:after {\n  content: '\\e7db';\n}\n\n.mds-multiple_stop:after {\n  content: '\\e7dc';\n}\n\n.mds-nat:after {\n  content: '\\e7dd';\n}\n\n.mds-next_plan:after {\n  content: '\\e7df';\n}\n\n.mds-no_cell:after {\n  content: '\\e7e1';\n}\n\n.mds-no_drinks:after {\n  content: '\\e7e3';\n}\n\n.mds-no_flash:after {\n  content: '\\e7e5';\n}\n\n.mds-no_food:after {\n  content: '\\e7e7';\n}\n\n.mds-no_photography:after {\n  content: '\\e7e9';\n}\n\n.mds-no_stroller:after {\n  content: '\\e7eb';\n}\n\n.mds-not_accessible:after {\n  content: '\\e7ed';\n}\n\n.mds-not_started:after {\n  content: '\\e7ee';\n}\n\n.mds-online_prediction:after {\n  content: '\\e7f0';\n}\n\n.mds-open_in_full:after {\n  content: '\\e7f1';\n}\n\n.mds-outlet:after {\n  content: '\\e7f2';\n}\n\n.mds-payments:after {\n  content: '\\e7f4';\n}\n\n.mds-pedal_bike:after {\n  content: '\\e7f6';\n}\n\n.mds-pending:after {\n  content: '\\e7f7';\n}\n\n.mds-pending_actions:after {\n  content: '\\e7f9';\n}\n\n.mds-person_add_alt_1:after {\n  content: '\\e7fb';\n}\n\n.mds-person_remove:after {\n  content: '\\e7fd';\n}\n\n.mds-person_remove_alt_1:after {\n  content: '\\e7ff';\n}\n\n.mds-person_search:after {\n  content: '\\e801';\n}\n\n.mds-pest_control:after {\n  content: '\\e803';\n}\n\n.mds-pest_control_rodent:after {\n  content: '\\e805';\n}\n\n.mds-plagiarism:after {\n  content: '\\e807';\n}\n\n.mds-plumbing:after {\n  content: '\\e809';\n}\n\n.mds-point_of_sale:after {\n  content: '\\e80a';\n}\n\n.mds-preview:after {\n  content: '\\e80c';\n}\n\n.mds-privacy_tip:after {\n  content: '\\e80e';\n}\n\n.mds-psychology:after {\n  content: '\\e810';\n}\n\n.mds-public_off:after {\n  content: '\\e812';\n}\n\n.mds-push_pin:after {\n  content: '\\e814';\n}\n\n.mds-qr_code:after {\n  content: '\\e816';\n}\n\n.mds-quickreply:after {\n  content: '\\e818';\n}\n\n.mds-read_more:after {\n  content: '\\e81a';\n}\n\n.mds-receipt_long:after {\n  content: '\\e81b';\n}\n\n.mds-request_quote:after {\n  content: '\\e81d';\n}\n\n.mds-room_preferences:after {\n  content: '\\e81f';\n}\n\n.mds-rule:after {\n  content: '\\e821';\n}\n\n.mds-rule_folder:after {\n  content: '\\e822';\n}\n\n.mds-run_circle:after {\n  content: '\\e824';\n}\n\n.mds-science:after {\n  content: '\\e826';\n}\n\n.mds-search_off:after {\n  content: '\\e828';\n}\n\n.mds-self_improvement:after {\n  content: '\\e829';\n}\n\n.mds-sensor_door:after {\n  content: '\\e82a';\n}\n\n.mds-sensor_window:after {\n  content: '\\e82c';\n}\n\n.mds-shopping_bag:after {\n  content: '\\e82e';\n}\n\n.mds-smart_button:after {\n  content: '\\e830';\n}\n\n.mds-snippet_folder:after {\n  content: '\\e831';\n}\n\n.mds-soap:after {\n  content: '\\e833';\n}\n\n.mds-source:after {\n  content: '\\e835';\n}\n\n.mds-stairs:after {\n  content: '\\e837';\n}\n\n.mds-stroller:after {\n  content: '\\e839';\n}\n\n.mds-subscript:after {\n  content: '\\e83b';\n}\n\n.mds-subtitles_off:after {\n  content: '\\e83c';\n}\n\n.mds-superscript:after {\n  content: '\\e83e';\n}\n\n.mds-support:after {\n  content: '\\e83f';\n}\n\n.mds-support_agent:after {\n  content: '\\e841';\n}\n\n.mds-switch_left:after {\n  content: '\\e842';\n}\n\n.mds-switch_right:after {\n  content: '\\e844';\n}\n\n.mds-table_rows:after {\n  content: '\\e846';\n}\n\n.mds-table_view:after {\n  content: '\\e848';\n}\n\n.mds-text_snippet:after {\n  content: '\\e84a';\n}\n\n.mds-topic:after {\n  content: '\\e84c';\n}\n\n.mds-tour:after {\n  content: '\\e84e';\n}\n\n.mds-tty:after {\n  content: '\\e850';\n}\n\n.mds-umbrella:after {\n  content: '\\e852';\n}\n\n.mds-upgrade:after {\n  content: '\\e854';\n}\n\n.mds-verified:after {\n  content: '\\e855';\n}\n\n.mds-video_settings:after {\n  content: '\\e857';\n}\n\n.mds-view_sidebar:after {\n  content: '\\e858';\n}\n\n.mds-wash:after {\n  content: '\\e85a';\n}\n\n.mds-wheelchair_pickup:after {\n  content: '\\e85c';\n}\n\n.mds-wifi_calling:after {\n  content: '\\e85d';\n}\n\n.mds-wifi_protected_setup:after {\n  content: '\\e85f';\n}\n\n.mds-wrong_location:after {\n  content: '\\e860';\n}\n\n.mds-wysiwyg:after {\n  content: '\\e861';\n}\n\n.mds-bento:after {\n  content: '\\e864';\n}\n\n.mds-carpenter:after {\n  content: '\\e866';\n}\n\n.mds-closed_caption_disabled:after {\n  content: '\\e868';\n}\n\n.mds-countertops:after {\n  content: '\\e86a';\n}\n\n.mds-east:after {\n  content: '\\e86c';\n}\n\n.mds-fence:after {\n  content: '\\e86d';\n}\n\n.mds-fire_extinguisher:after {\n  content: '\\e86f';\n}\n\n.mds-food_bank:after {\n  content: '\\e870';\n}\n\n.mds-foundation:after {\n  content: '\\e872';\n}\n\n.mds-grass:after {\n  content: '\\e874';\n}\n\n.mds-house_siding:after {\n  content: '\\e875';\n}\n\n.mds-leaderboard:after {\n  content: '\\e877';\n}\n\n.mds-microwave:after {\n  content: '\\e879';\n}\n\n.mds-near_me_disabled:after {\n  content: '\\e87b';\n}\n\n.mds-night_shelter:after {\n  content: '\\e87d';\n}\n\n.mds-no_meals:after {\n  content: '\\e87f';\n}\n\n.mds-no_transfer:after {\n  content: '\\e880';\n}\n\n.mds-north:after {\n  content: '\\e882';\n}\n\n.mds-north_east:after {\n  content: '\\e883';\n}\n\n.mds-north_west:after {\n  content: '\\e884';\n}\n\n.mds-qr_code_scanner:after {\n  content: '\\e885';\n}\n\n.mds-rice_bowl:after {\n  content: '\\e886';\n}\n\n.mds-roofing:after {\n  content: '\\e888';\n}\n\n.mds-set_meal:after {\n  content: '\\e88a';\n}\n\n.mds-south:after {\n  content: '\\e88c';\n}\n\n.mds-south_east:after {\n  content: '\\e88d';\n}\n\n.mds-south_west:after {\n  content: '\\e88e';\n}\n\n.mds-sports_bar:after {\n  content: '\\e88f';\n}\n\n.mds-sticky_note_2:after {\n  content: '\\e891';\n}\n\n.mds-tapas:after {\n  content: '\\e893';\n}\n\n.mds-water_damage:after {\n  content: '\\e895';\n}\n\n.mds-west:after {\n  content: '\\e897';\n}\n\n.mds-wine_bar:after {\n  content: '\\e898';\n}\n\n.mds-6_ft_apart:after {\n  content: '\\e89a';\n}\n\n.mds-book_online:after {\n  content: '\\e89b';\n}\n\n.mds-clean_hands:after {\n  content: '\\e89d';\n}\n\n.mds-connect_without_contact:after {\n  content: '\\e89f';\n}\n\n.mds-coronavirus:after {\n  content: '\\e8a0';\n}\n\n.mds-elderly:after {\n  content: '\\e8a2';\n}\n\n.mds-follow_the_signs:after {\n  content: '\\e8a3';\n}\n\n.mds-leave_bags_at_home:after {\n  content: '\\e8a5';\n}\n\n.mds-local_fire_department:after {\n  content: '\\e8a7';\n}\n\n.mds-local_police:after {\n  content: '\\e8a9';\n}\n\n.mds-masks:after {\n  content: '\\e8ab';\n}\n\n.mds-motion_photos_on:after {\n  content: '\\e8ad';\n}\n\n.mds-motion_photos_paused:after {\n  content: '\\e8ae';\n}\n\n.mds-reduce_capacity:after {\n  content: '\\e8af';\n}\n\n.mds-sanitizer:after {\n  content: '\\e8b0';\n}\n\n.mds-sick:after {\n  content: '\\e8b2';\n}\n\n.mds-add_task:after {\n  content: '\\e8b3';\n}\n\n.mds-contact_page:after {\n  content: '\\e8b4';\n}\n\n.mds-disabled_by_default:after {\n  content: '\\e8b6';\n}\n\n.mds-facebook:after {\n  content: '\\e8b8';\n}\n\n.mds-groups:after {\n  content: '\\e8b9';\n}\n\n.mds-luggage:after {\n  content: '\\e8bb';\n}\n\n.mds-motion_photos_pause:after {\n  content: '\\e8bd';\n}\n\n.mds-no_backpack:after {\n  content: '\\e8be';\n}\n\n.mds-no_luggage:after {\n  content: '\\e8c0';\n}\n\n.mds-outbond:after {\n  content: '\\e8c2';\n}\n\n.mds-published_with_changes:after {\n  content: '\\e8c4';\n}\n\n.mds-request_page:after {\n  content: '\\e8c5';\n}\n\n.mds-stacked_line_chart:after {\n  content: '\\e8c7';\n}\n\n.mds-unpublished:after {\n  content: '\\e8c8';\n}\n\n.mds-align_horizontal_center:after {\n  content: '\\e8ca';\n}\n\n.mds-align_horizontal_left:after {\n  content: '\\e8cb';\n}\n\n.mds-align_horizontal_right:after {\n  content: '\\e8cc';\n}\n\n.mds-align_vertical_bottom:after {\n  content: '\\e8cd';\n}\n\n.mds-align_vertical_center:after {\n  content: '\\e8ce';\n}\n\n.mds-align_vertical_top:after {\n  content: '\\e8cf';\n}\n\n.mds-horizontal_distribute:after {\n  content: '\\e8d0';\n}\n\n.mds-qr_code_2:after {\n  content: '\\e8d1';\n}\n\n.mds-update_disabled:after {\n  content: '\\e8d2';\n}\n\n.mds-vertical_distribute:after {\n  content: '\\e8d3';\n}\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign-pack/ikonli-materialdesign-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.materialdesign {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.materialdesign;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.materialdesign.MaterialDesignIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.materialdesign.MaterialDesignIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign-pack/src/main/java/org/kordamp/ikonli/materialdesign/MaterialDesign.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesign implements Ikon {\n    MDI_ACCESS_POINT(\"mdi-access-point\", '\\uf002'),\n    MDI_ACCESS_POINT_NETWORK(\"mdi-access-point-network\", '\\uf003'),\n    MDI_ACCOUNT(\"mdi-account\", '\\uf004'),\n    MDI_ACCOUNT_ALERT(\"mdi-account-alert\", '\\uf005'),\n    MDI_ACCOUNT_BOX(\"mdi-account-box\", '\\uf006'),\n    MDI_ACCOUNT_BOX_OUTLINE(\"mdi-account-box-outline\", '\\uf007'),\n    MDI_ACCOUNT_CARD_DETAILS(\"mdi-account-card-details\", '\\uf5d2'),\n    MDI_ACCOUNT_CHECK(\"mdi-account-check\", '\\uf008'),\n    MDI_ACCOUNT_CIRCLE(\"mdi-account-circle\", '\\uf009'),\n    MDI_ACCOUNT_CONVERT(\"mdi-account-convert\", '\\uf00a'),\n    MDI_ACCOUNT_KEY(\"mdi-account-key\", '\\uf00b'),\n    MDI_ACCOUNT_LOCATION(\"mdi-account-location\", '\\uf00c'),\n    MDI_ACCOUNT_MINUS(\"mdi-account-minus\", '\\uf00d'),\n    MDI_ACCOUNT_MULTIPLE(\"mdi-account-multiple\", '\\uf00e'),\n    MDI_ACCOUNT_MULTIPLE_MINUS(\"mdi-account-multiple-minus\", '\\uf5d3'),\n    MDI_ACCOUNT_MULTIPLE_OUTLINE(\"mdi-account-multiple-outline\", '\\uf00f'),\n    MDI_ACCOUNT_MULTIPLE_PLUS(\"mdi-account-multiple-plus\", '\\uf010'),\n    MDI_ACCOUNT_NETWORK(\"mdi-account-network\", '\\uf011'),\n    MDI_ACCOUNT_OFF(\"mdi-account-off\", '\\uf012'),\n    MDI_ACCOUNT_OUTLINE(\"mdi-account-outline\", '\\uf013'),\n    MDI_ACCOUNT_PLUS(\"mdi-account-plus\", '\\uf014'),\n    MDI_ACCOUNT_REMOVE(\"mdi-account-remove\", '\\uf015'),\n    MDI_ACCOUNT_SEARCH(\"mdi-account-search\", '\\uf016'),\n    MDI_ACCOUNT_SETTINGS(\"mdi-account-settings\", '\\uf630'),\n    MDI_ACCOUNT_SETTINGS_VARIANT(\"mdi-account-settings-variant\", '\\uf631'),\n    MDI_ACCOUNT_STAR(\"mdi-account-star\", '\\uf017'),\n    MDI_ACCOUNT_STAR_VARIANT(\"mdi-account-star-variant\", '\\uf018'),\n    MDI_ACCOUNT_SWITCH(\"mdi-account-switch\", '\\uf019'),\n    MDI_ADJUST(\"mdi-adjust\", '\\uf01a'),\n    MDI_AIRBALLOON(\"mdi-airballoon\", '\\uf01c'),\n    MDI_AIRPLANE(\"mdi-airplane\", '\\uf01d'),\n    MDI_AIRPLANE_LANDING(\"mdi-airplane-landing\", '\\uf5d4'),\n    MDI_AIRPLANE_OFF(\"mdi-airplane-off\", '\\uf01e'),\n    MDI_AIRPLANE_TAKEOFF(\"mdi-airplane-takeoff\", '\\uf5d5'),\n    MDI_AIRPLAY(\"mdi-airplay\", '\\uf01f'),\n    MDI_AIR_CONDITIONER(\"mdi-air-conditioner\", '\\uf01b'),\n    MDI_ALARM(\"mdi-alarm\", '\\uf020'),\n    MDI_ALARM_CHECK(\"mdi-alarm-check\", '\\uf021'),\n    MDI_ALARM_MULTIPLE(\"mdi-alarm-multiple\", '\\uf022'),\n    MDI_ALARM_OFF(\"mdi-alarm-off\", '\\uf023'),\n    MDI_ALARM_PLUS(\"mdi-alarm-plus\", '\\uf024'),\n    MDI_ALARM_SNOOZE(\"mdi-alarm-snooze\", '\\uf68d'),\n    MDI_ALBUM(\"mdi-album\", '\\uf025'),\n    MDI_ALERT(\"mdi-alert\", '\\uf026'),\n    MDI_ALERT_BOX(\"mdi-alert-box\", '\\uf027'),\n    MDI_ALERT_CIRCLE(\"mdi-alert-circle\", '\\uf028'),\n    MDI_ALERT_CIRCLE_OUTLINE(\"mdi-alert-circle-outline\", '\\uf5d6'),\n    MDI_ALERT_OCTAGON(\"mdi-alert-octagon\", '\\uf029'),\n    MDI_ALERT_OUTLINE(\"mdi-alert-outline\", '\\uf02a'),\n    MDI_ALPHA(\"mdi-alpha\", '\\uf02b'),\n    MDI_ALPHABETICAL(\"mdi-alphabetical\", '\\uf02c'),\n    MDI_ALTIMETER(\"mdi-altimeter\", '\\uf5d7'),\n    MDI_AMAZON(\"mdi-amazon\", '\\uf02d'),\n    MDI_AMAZON_CLOUDDRIVE(\"mdi-amazon-clouddrive\", '\\uf02e'),\n    MDI_AMBULANCE(\"mdi-ambulance\", '\\uf02f'),\n    MDI_AMPLIFIER(\"mdi-amplifier\", '\\uf030'),\n    MDI_ANCHOR(\"mdi-anchor\", '\\uf031'),\n    MDI_ANDROID(\"mdi-android\", '\\uf032'),\n    MDI_ANDROID_DEBUG_BRIDGE(\"mdi-android-debug-bridge\", '\\uf033'),\n    MDI_ANDROID_STUDIO(\"mdi-android-studio\", '\\uf034'),\n    MDI_ANGULAR(\"mdi-angular\", '\\uf6b1'),\n    MDI_ANIMATION(\"mdi-animation\", '\\uf5d8'),\n    MDI_APPLE(\"mdi-apple\", '\\uf035'),\n    MDI_APPLE_FINDER(\"mdi-apple-finder\", '\\uf036'),\n    MDI_APPLE_IOS(\"mdi-apple-ios\", '\\uf037'),\n    MDI_APPLE_KEYBOARD_CAPS(\"mdi-apple-keyboard-caps\", '\\uf632'),\n    MDI_APPLE_KEYBOARD_COMMAND(\"mdi-apple-keyboard-command\", '\\uf633'),\n    MDI_APPLE_KEYBOARD_CONTROL(\"mdi-apple-keyboard-control\", '\\uf634'),\n    MDI_APPLE_KEYBOARD_OPTION(\"mdi-apple-keyboard-option\", '\\uf635'),\n    MDI_APPLE_KEYBOARD_SHIFT(\"mdi-apple-keyboard-shift\", '\\uf636'),\n    MDI_APPLE_MOBILEME(\"mdi-apple-mobileme\", '\\uf038'),\n    MDI_APPLE_SAFARI(\"mdi-apple-safari\", '\\uf039'),\n    MDI_APPLICATION(\"mdi-application\", '\\uf614'),\n    MDI_APPNET(\"mdi-appnet\", '\\uf03a'),\n    MDI_APPS(\"mdi-apps\", '\\uf03b'),\n    MDI_ARCHIVE(\"mdi-archive\", '\\uf03c'),\n    MDI_ARRANGE_BRING_FORWARD(\"mdi-arrange-bring-forward\", '\\uf03d'),\n    MDI_ARRANGE_BRING_TO_FRONT(\"mdi-arrange-bring-to-front\", '\\uf03e'),\n    MDI_ARRANGE_SEND_BACKWARD(\"mdi-arrange-send-backward\", '\\uf03f'),\n    MDI_ARRANGE_SEND_TO_BACK(\"mdi-arrange-send-to-back\", '\\uf040'),\n    MDI_ARROW_ALL(\"mdi-arrow-all\", '\\uf041'),\n    MDI_ARROW_BOTTOM_LEFT(\"mdi-arrow-bottom-left\", '\\uf042'),\n    MDI_ARROW_BOTTOM_RIGHT(\"mdi-arrow-bottom-right\", '\\uf043'),\n    MDI_ARROW_COMPRESS(\"mdi-arrow-compress\", '\\uf615'),\n    MDI_ARROW_COMPRESS_ALL(\"mdi-arrow-compress-all\", '\\uf044'),\n    MDI_ARROW_DOWN(\"mdi-arrow-down\", '\\uf045'),\n    MDI_ARROW_DOWN_BOLD(\"mdi-arrow-down-bold\", '\\uf046'),\n    MDI_ARROW_DOWN_BOLD_CIRCLE(\"mdi-arrow-down-bold-circle\", '\\uf047'),\n    MDI_ARROW_DOWN_BOLD_CIRCLE_OUTLINE(\"mdi-arrow-down-bold-circle-outline\", '\\uf048'),\n    MDI_ARROW_DOWN_BOLD_HEXAGON_OUTLINE(\"mdi-arrow-down-bold-hexagon-outline\", '\\uf049'),\n    MDI_ARROW_DOWN_DROP_CIRCLE(\"mdi-arrow-down-drop-circle\", '\\uf04a'),\n    MDI_ARROW_DOWN_DROP_CIRCLE_OUTLINE(\"mdi-arrow-down-drop-circle-outline\", '\\uf04b'),\n    MDI_ARROW_EXPAND(\"mdi-arrow-expand\", '\\uf616'),\n    MDI_ARROW_EXPAND_ALL(\"mdi-arrow-expand-all\", '\\uf04c'),\n    MDI_ARROW_LEFT(\"mdi-arrow-left\", '\\uf04d'),\n    MDI_ARROW_LEFT_BOLD(\"mdi-arrow-left-bold\", '\\uf04e'),\n    MDI_ARROW_LEFT_BOLD_CIRCLE(\"mdi-arrow-left-bold-circle\", '\\uf04f'),\n    MDI_ARROW_LEFT_BOLD_CIRCLE_OUTLINE(\"mdi-arrow-left-bold-circle-outline\", '\\uf050'),\n    MDI_ARROW_LEFT_BOLD_HEXAGON_OUTLINE(\"mdi-arrow-left-bold-hexagon-outline\", '\\uf051'),\n    MDI_ARROW_LEFT_DROP_CIRCLE(\"mdi-arrow-left-drop-circle\", '\\uf052'),\n    MDI_ARROW_LEFT_DROP_CIRCLE_OUTLINE(\"mdi-arrow-left-drop-circle-outline\", '\\uf053'),\n    MDI_ARROW_RIGHT(\"mdi-arrow-right\", '\\uf054'),\n    MDI_ARROW_RIGHT_BOLD(\"mdi-arrow-right-bold\", '\\uf055'),\n    MDI_ARROW_RIGHT_BOLD_CIRCLE(\"mdi-arrow-right-bold-circle\", '\\uf056'),\n    MDI_ARROW_RIGHT_BOLD_CIRCLE_OUTLINE(\"mdi-arrow-right-bold-circle-outline\", '\\uf057'),\n    MDI_ARROW_RIGHT_BOLD_HEXAGON_OUTLINE(\"mdi-arrow-right-bold-hexagon-outline\", '\\uf058'),\n    MDI_ARROW_RIGHT_DROP_CIRCLE(\"mdi-arrow-right-drop-circle\", '\\uf059'),\n    MDI_ARROW_RIGHT_DROP_CIRCLE_OUTLINE(\"mdi-arrow-right-drop-circle-outline\", '\\uf05a'),\n    MDI_ARROW_TOP_LEFT(\"mdi-arrow-top-left\", '\\uf05b'),\n    MDI_ARROW_TOP_RIGHT(\"mdi-arrow-top-right\", '\\uf05c'),\n    MDI_ARROW_UP(\"mdi-arrow-up\", '\\uf05d'),\n    MDI_ARROW_UP_BOLD(\"mdi-arrow-up-bold\", '\\uf05e'),\n    MDI_ARROW_UP_BOLD_CIRCLE(\"mdi-arrow-up-bold-circle\", '\\uf05f'),\n    MDI_ARROW_UP_BOLD_CIRCLE_OUTLINE(\"mdi-arrow-up-bold-circle-outline\", '\\uf060'),\n    MDI_ARROW_UP_BOLD_HEXAGON_OUTLINE(\"mdi-arrow-up-bold-hexagon-outline\", '\\uf061'),\n    MDI_ARROW_UP_DROP_CIRCLE(\"mdi-arrow-up-drop-circle\", '\\uf062'),\n    MDI_ARROW_UP_DROP_CIRCLE_OUTLINE(\"mdi-arrow-up-drop-circle-outline\", '\\uf063'),\n    MDI_ASSISTANT(\"mdi-assistant\", '\\uf064'),\n    MDI_AT(\"mdi-at\", '\\uf065'),\n    MDI_ATTACHMENT(\"mdi-attachment\", '\\uf066'),\n    MDI_AUDIOBOOK(\"mdi-audiobook\", '\\uf067'),\n    MDI_AUTORENEW(\"mdi-autorenew\", '\\uf06a'),\n    MDI_AUTO_FIX(\"mdi-auto-fix\", '\\uf068'),\n    MDI_AUTO_UPLOAD(\"mdi-auto-upload\", '\\uf069'),\n    MDI_AV_TIMER(\"mdi-av-timer\", '\\uf06b'),\n    MDI_BABY(\"mdi-baby\", '\\uf06c'),\n    MDI_BABY_BUGGY(\"mdi-baby-buggy\", '\\uf68e'),\n    MDI_BACKBURGER(\"mdi-backburger\", '\\uf06d'),\n    MDI_BACKSPACE(\"mdi-backspace\", '\\uf06e'),\n    MDI_BACKUP_RESTORE(\"mdi-backup-restore\", '\\uf06f'),\n    MDI_BANDCAMP(\"mdi-bandcamp\", '\\uf674'),\n    MDI_BANK(\"mdi-bank\", '\\uf070'),\n    MDI_BARCODE(\"mdi-barcode\", '\\uf071'),\n    MDI_BARCODE_SCAN(\"mdi-barcode-scan\", '\\uf072'),\n    MDI_BARLEY(\"mdi-barley\", '\\uf073'),\n    MDI_BARREL(\"mdi-barrel\", '\\uf074'),\n    MDI_BASECAMP(\"mdi-basecamp\", '\\uf075'),\n    MDI_BASKET(\"mdi-basket\", '\\uf076'),\n    MDI_BASKET_FILL(\"mdi-basket-fill\", '\\uf077'),\n    MDI_BASKET_UNFILL(\"mdi-basket-unfill\", '\\uf078'),\n    MDI_BATTERY(\"mdi-battery\", '\\uf079'),\n    MDI_BATTERY_10(\"mdi-battery-10\", '\\uf07a'),\n    MDI_BATTERY_20(\"mdi-battery-20\", '\\uf07b'),\n    MDI_BATTERY_30(\"mdi-battery-30\", '\\uf07c'),\n    MDI_BATTERY_40(\"mdi-battery-40\", '\\uf07d'),\n    MDI_BATTERY_50(\"mdi-battery-50\", '\\uf07e'),\n    MDI_BATTERY_60(\"mdi-battery-60\", '\\uf07f'),\n    MDI_BATTERY_70(\"mdi-battery-70\", '\\uf080'),\n    MDI_BATTERY_80(\"mdi-battery-80\", '\\uf081'),\n    MDI_BATTERY_90(\"mdi-battery-90\", '\\uf082'),\n    MDI_BATTERY_ALERT(\"mdi-battery-alert\", '\\uf083'),\n    MDI_BATTERY_CHARGING(\"mdi-battery-charging\", '\\uf084'),\n    MDI_BATTERY_CHARGING_100(\"mdi-battery-charging-100\", '\\uf085'),\n    MDI_BATTERY_CHARGING_20(\"mdi-battery-charging-20\", '\\uf086'),\n    MDI_BATTERY_CHARGING_30(\"mdi-battery-charging-30\", '\\uf087'),\n    MDI_BATTERY_CHARGING_40(\"mdi-battery-charging-40\", '\\uf088'),\n    MDI_BATTERY_CHARGING_60(\"mdi-battery-charging-60\", '\\uf089'),\n    MDI_BATTERY_CHARGING_80(\"mdi-battery-charging-80\", '\\uf08a'),\n    MDI_BATTERY_CHARGING_90(\"mdi-battery-charging-90\", '\\uf08b'),\n    MDI_BATTERY_MINUS(\"mdi-battery-minus\", '\\uf08c'),\n    MDI_BATTERY_NEGATIVE(\"mdi-battery-negative\", '\\uf08d'),\n    MDI_BATTERY_OUTLINE(\"mdi-battery-outline\", '\\uf08e'),\n    MDI_BATTERY_PLUS(\"mdi-battery-plus\", '\\uf08f'),\n    MDI_BATTERY_POSITIVE(\"mdi-battery-positive\", '\\uf090'),\n    MDI_BATTERY_UNKNOWN(\"mdi-battery-unknown\", '\\uf091'),\n    MDI_BEACH(\"mdi-beach\", '\\uf092'),\n    MDI_BEAKER(\"mdi-beaker\", '\\uf68f'),\n    MDI_BEATS(\"mdi-beats\", '\\uf097'),\n    MDI_BEER(\"mdi-beer\", '\\uf098'),\n    MDI_BEHANCE(\"mdi-behance\", '\\uf099'),\n    MDI_BELL(\"mdi-bell\", '\\uf09a'),\n    MDI_BELL_OFF(\"mdi-bell-off\", '\\uf09b'),\n    MDI_BELL_OUTLINE(\"mdi-bell-outline\", '\\uf09c'),\n    MDI_BELL_PLUS(\"mdi-bell-plus\", '\\uf09d'),\n    MDI_BELL_RING(\"mdi-bell-ring\", '\\uf09e'),\n    MDI_BELL_RING_OUTLINE(\"mdi-bell-ring-outline\", '\\uf09f'),\n    MDI_BELL_SLEEP(\"mdi-bell-sleep\", '\\uf0a0'),\n    MDI_BETA(\"mdi-beta\", '\\uf0a1'),\n    MDI_BIBLE(\"mdi-bible\", '\\uf0a2'),\n    MDI_BIKE(\"mdi-bike\", '\\uf0a3'),\n    MDI_BING(\"mdi-bing\", '\\uf0a4'),\n    MDI_BINOCULARS(\"mdi-binoculars\", '\\uf0a5'),\n    MDI_BIO(\"mdi-bio\", '\\uf0a6'),\n    MDI_BIOHAZARD(\"mdi-biohazard\", '\\uf0a7'),\n    MDI_BITBUCKET(\"mdi-bitbucket\", '\\uf0a8'),\n    MDI_BLACKBERRY(\"mdi-blackberry\", '\\uf0aa'),\n    MDI_BLACK_MESA(\"mdi-black-mesa\", '\\uf0a9'),\n    MDI_BLENDER(\"mdi-blender\", '\\uf0ab'),\n    MDI_BLINDS(\"mdi-blinds\", '\\uf0ac'),\n    MDI_BLOCK_HELPER(\"mdi-block-helper\", '\\uf0ad'),\n    MDI_BLOGGER(\"mdi-blogger\", '\\uf0ae'),\n    MDI_BLUETOOTH(\"mdi-bluetooth\", '\\uf0af'),\n    MDI_BLUETOOTH_AUDIO(\"mdi-bluetooth-audio\", '\\uf0b0'),\n    MDI_BLUETOOTH_CONNECT(\"mdi-bluetooth-connect\", '\\uf0b1'),\n    MDI_BLUETOOTH_OFF(\"mdi-bluetooth-off\", '\\uf0b2'),\n    MDI_BLUETOOTH_SETTINGS(\"mdi-bluetooth-settings\", '\\uf0b3'),\n    MDI_BLUETOOTH_TRANSFER(\"mdi-bluetooth-transfer\", '\\uf0b4'),\n    MDI_BLUR(\"mdi-blur\", '\\uf0b5'),\n    MDI_BLUR_LINEAR(\"mdi-blur-linear\", '\\uf0b6'),\n    MDI_BLUR_OFF(\"mdi-blur-off\", '\\uf0b7'),\n    MDI_BLUR_RADIAL(\"mdi-blur-radial\", '\\uf0b8'),\n    MDI_BOMB(\"mdi-bomb\", '\\uf690'),\n    MDI_BONE(\"mdi-bone\", '\\uf0b9'),\n    MDI_BOOK(\"mdi-book\", '\\uf0ba'),\n    MDI_BOOKMARK(\"mdi-bookmark\", '\\uf0c0'),\n    MDI_BOOKMARK_CHECK(\"mdi-bookmark-check\", '\\uf0c1'),\n    MDI_BOOKMARK_MUSIC(\"mdi-bookmark-music\", '\\uf0c2'),\n    MDI_BOOKMARK_OUTLINE(\"mdi-bookmark-outline\", '\\uf0c3'),\n    MDI_BOOKMARK_PLUS(\"mdi-bookmark-plus\", '\\uf0c5'),\n    MDI_BOOKMARK_PLUS_OUTLINE(\"mdi-bookmark-plus-outline\", '\\uf0c4'),\n    MDI_BOOKMARK_REMOVE(\"mdi-bookmark-remove\", '\\uf0c6'),\n    MDI_BOOK_MINUS(\"mdi-book-minus\", '\\uf5d9'),\n    MDI_BOOK_MULTIPLE(\"mdi-book-multiple\", '\\uf0bb'),\n    MDI_BOOK_MULTIPLE_VARIANT(\"mdi-book-multiple-variant\", '\\uf0bc'),\n    MDI_BOOK_OPEN(\"mdi-book-open\", '\\uf0bd'),\n    MDI_BOOK_OPEN_PAGE_VARIANT(\"mdi-book-open-page-variant\", '\\uf5da'),\n    MDI_BOOK_OPEN_VARIANT(\"mdi-book-open-variant\", '\\uf0be'),\n    MDI_BOOK_PLUS(\"mdi-book-plus\", '\\uf5db'),\n    MDI_BOOK_VARIANT(\"mdi-book-variant\", '\\uf0bf'),\n    MDI_BOOMBOX(\"mdi-boombox\", '\\uf5dc'),\n    MDI_BORDER_ALL(\"mdi-border-all\", '\\uf0c7'),\n    MDI_BORDER_BOTTOM(\"mdi-border-bottom\", '\\uf0c8'),\n    MDI_BORDER_COLOR(\"mdi-border-color\", '\\uf0c9'),\n    MDI_BORDER_HORIZONTAL(\"mdi-border-horizontal\", '\\uf0ca'),\n    MDI_BORDER_INSIDE(\"mdi-border-inside\", '\\uf0cb'),\n    MDI_BORDER_LEFT(\"mdi-border-left\", '\\uf0cc'),\n    MDI_BORDER_NONE(\"mdi-border-none\", '\\uf0cd'),\n    MDI_BORDER_OUTSIDE(\"mdi-border-outside\", '\\uf0ce'),\n    MDI_BORDER_RIGHT(\"mdi-border-right\", '\\uf0cf'),\n    MDI_BORDER_STYLE(\"mdi-border-style\", '\\uf0d0'),\n    MDI_BORDER_TOP(\"mdi-border-top\", '\\uf0d1'),\n    MDI_BORDER_VERTICAL(\"mdi-border-vertical\", '\\uf0d2'),\n    MDI_BOWL(\"mdi-bowl\", '\\uf617'),\n    MDI_BOWLING(\"mdi-bowling\", '\\uf0d3'),\n    MDI_BOW_TIE(\"mdi-bow-tie\", '\\uf677'),\n    MDI_BOX(\"mdi-box\", '\\uf0d4'),\n    MDI_BOX_CUTTER(\"mdi-box-cutter\", '\\uf0d5'),\n    MDI_BOX_SHADOW(\"mdi-box-shadow\", '\\uf637'),\n    MDI_BRIDGE(\"mdi-bridge\", '\\uf618'),\n    MDI_BRIEFCASE(\"mdi-briefcase\", '\\uf0d6'),\n    MDI_BRIEFCASE_CHECK(\"mdi-briefcase-check\", '\\uf0d7'),\n    MDI_BRIEFCASE_DOWNLOAD(\"mdi-briefcase-download\", '\\uf0d8'),\n    MDI_BRIEFCASE_UPLOAD(\"mdi-briefcase-upload\", '\\uf0d9'),\n    MDI_BRIGHTNESS_1(\"mdi-brightness-1\", '\\uf0da'),\n    MDI_BRIGHTNESS_2(\"mdi-brightness-2\", '\\uf0db'),\n    MDI_BRIGHTNESS_3(\"mdi-brightness-3\", '\\uf0dc'),\n    MDI_BRIGHTNESS_4(\"mdi-brightness-4\", '\\uf0dd'),\n    MDI_BRIGHTNESS_5(\"mdi-brightness-5\", '\\uf0de'),\n    MDI_BRIGHTNESS_6(\"mdi-brightness-6\", '\\uf0df'),\n    MDI_BRIGHTNESS_7(\"mdi-brightness-7\", '\\uf0e0'),\n    MDI_BRIGHTNESS_AUTO(\"mdi-brightness-auto\", '\\uf0e1'),\n    MDI_BROOM(\"mdi-broom\", '\\uf0e2'),\n    MDI_BRUSH(\"mdi-brush\", '\\uf0e3'),\n    MDI_BUFFER(\"mdi-buffer\", '\\uf619'),\n    MDI_BUG(\"mdi-bug\", '\\uf0e4'),\n    MDI_BULLETIN_BOARD(\"mdi-bulletin-board\", '\\uf0e5'),\n    MDI_BULLHORN(\"mdi-bullhorn\", '\\uf0e6'),\n    MDI_BULLSEYE(\"mdi-bullseye\", '\\uf5dd'),\n    MDI_BURST_MODE(\"mdi-burst-mode\", '\\uf5de'),\n    MDI_BUS(\"mdi-bus\", '\\uf0e7'),\n    MDI_CACHED(\"mdi-cached\", '\\uf0e8'),\n    MDI_CAKE(\"mdi-cake\", '\\uf0e9'),\n    MDI_CAKE_LAYERED(\"mdi-cake-layered\", '\\uf0ea'),\n    MDI_CAKE_VARIANT(\"mdi-cake-variant\", '\\uf0eb'),\n    MDI_CALCULATOR(\"mdi-calculator\", '\\uf0ec'),\n    MDI_CALENDAR(\"mdi-calendar\", '\\uf0ed'),\n    MDI_CALENDAR_BLANK(\"mdi-calendar-blank\", '\\uf0ee'),\n    MDI_CALENDAR_CHECK(\"mdi-calendar-check\", '\\uf0ef'),\n    MDI_CALENDAR_CLOCK(\"mdi-calendar-clock\", '\\uf0f0'),\n    MDI_CALENDAR_MULTIPLE(\"mdi-calendar-multiple\", '\\uf0f1'),\n    MDI_CALENDAR_MULTIPLE_CHECK(\"mdi-calendar-multiple-check\", '\\uf0f2'),\n    MDI_CALENDAR_PLUS(\"mdi-calendar-plus\", '\\uf0f3'),\n    MDI_CALENDAR_QUESTION(\"mdi-calendar-question\", '\\uf691'),\n    MDI_CALENDAR_RANGE(\"mdi-calendar-range\", '\\uf678'),\n    MDI_CALENDAR_REMOVE(\"mdi-calendar-remove\", '\\uf0f4'),\n    MDI_CALENDAR_TEXT(\"mdi-calendar-text\", '\\uf0f5'),\n    MDI_CALENDAR_TODAY(\"mdi-calendar-today\", '\\uf0f6'),\n    MDI_CALL_MADE(\"mdi-call-made\", '\\uf0f7'),\n    MDI_CALL_MERGE(\"mdi-call-merge\", '\\uf0f8'),\n    MDI_CALL_MISSED(\"mdi-call-missed\", '\\uf0f9'),\n    MDI_CALL_RECEIVED(\"mdi-call-received\", '\\uf0fa'),\n    MDI_CALL_SPLIT(\"mdi-call-split\", '\\uf0fb'),\n    MDI_CAMCORDER(\"mdi-camcorder\", '\\uf0fc'),\n    MDI_CAMCORDER_BOX(\"mdi-camcorder-box\", '\\uf0fd'),\n    MDI_CAMCORDER_BOX_OFF(\"mdi-camcorder-box-off\", '\\uf0fe'),\n    MDI_CAMCORDER_OFF(\"mdi-camcorder-off\", '\\uf0ff'),\n    MDI_CAMERA(\"mdi-camera\", '\\uf100'),\n    MDI_CAMERA_BURST(\"mdi-camera-burst\", '\\uf692'),\n    MDI_CAMERA_ENHANCE(\"mdi-camera-enhance\", '\\uf101'),\n    MDI_CAMERA_FRONT(\"mdi-camera-front\", '\\uf102'),\n    MDI_CAMERA_FRONT_VARIANT(\"mdi-camera-front-variant\", '\\uf103'),\n    MDI_CAMERA_IRIS(\"mdi-camera-iris\", '\\uf104'),\n    MDI_CAMERA_OFF(\"mdi-camera-off\", '\\uf5df'),\n    MDI_CAMERA_PARTY_MODE(\"mdi-camera-party-mode\", '\\uf105'),\n    MDI_CAMERA_REAR(\"mdi-camera-rear\", '\\uf106'),\n    MDI_CAMERA_REAR_VARIANT(\"mdi-camera-rear-variant\", '\\uf107'),\n    MDI_CAMERA_SWITCH(\"mdi-camera-switch\", '\\uf108'),\n    MDI_CAMERA_TIMER(\"mdi-camera-timer\", '\\uf109'),\n    MDI_CANDLE(\"mdi-candle\", '\\uf5e2'),\n    MDI_CANDYCANE(\"mdi-candycane\", '\\uf10a'),\n    MDI_CAR(\"mdi-car\", '\\uf10b'),\n    MDI_CARDS(\"mdi-cards\", '\\uf638'),\n    MDI_CARDS_OUTLINE(\"mdi-cards-outline\", '\\uf639'),\n    MDI_CARDS_PLAYING_OUTLINE(\"mdi-cards-playing-outline\", '\\uf63a'),\n    MDI_CARROT(\"mdi-carrot\", '\\uf10f'),\n    MDI_CART(\"mdi-cart\", '\\uf110'),\n    MDI_CART_OFF(\"mdi-cart-off\", '\\uf66b'),\n    MDI_CART_OUTLINE(\"mdi-cart-outline\", '\\uf111'),\n    MDI_CART_PLUS(\"mdi-cart-plus\", '\\uf112'),\n    MDI_CAR_BATTERY(\"mdi-car-battery\", '\\uf10c'),\n    MDI_CAR_CONNECTED(\"mdi-car-connected\", '\\uf10d'),\n    MDI_CAR_WASH(\"mdi-car-wash\", '\\uf10e'),\n    MDI_CASE_SENSITIVE_ALT(\"mdi-case-sensitive-alt\", '\\uf113'),\n    MDI_CASH(\"mdi-cash\", '\\uf114'),\n    MDI_CASH_100(\"mdi-cash-100\", '\\uf115'),\n    MDI_CASH_MULTIPLE(\"mdi-cash-multiple\", '\\uf116'),\n    MDI_CASH_USD(\"mdi-cash-usd\", '\\uf117'),\n    MDI_CAST(\"mdi-cast\", '\\uf118'),\n    MDI_CASTLE(\"mdi-castle\", '\\uf11a'),\n    MDI_CAST_CONNECTED(\"mdi-cast-connected\", '\\uf119'),\n    MDI_CAT(\"mdi-cat\", '\\uf11b'),\n    MDI_CELLPHONE(\"mdi-cellphone\", '\\uf11c'),\n    MDI_CELLPHONE_ANDROID(\"mdi-cellphone-android\", '\\uf11d'),\n    MDI_CELLPHONE_BASIC(\"mdi-cellphone-basic\", '\\uf11e'),\n    MDI_CELLPHONE_DOCK(\"mdi-cellphone-dock\", '\\uf11f'),\n    MDI_CELLPHONE_IPHONE(\"mdi-cellphone-iphone\", '\\uf120'),\n    MDI_CELLPHONE_LINK(\"mdi-cellphone-link\", '\\uf121'),\n    MDI_CELLPHONE_LINK_OFF(\"mdi-cellphone-link-off\", '\\uf122'),\n    MDI_CELLPHONE_SETTINGS(\"mdi-cellphone-settings\", '\\uf123'),\n    MDI_CERTIFICATE(\"mdi-certificate\", '\\uf124'),\n    MDI_CHAIR_SCHOOL(\"mdi-chair-school\", '\\uf125'),\n    MDI_CHART_ARC(\"mdi-chart-arc\", '\\uf126'),\n    MDI_CHART_AREASPLINE(\"mdi-chart-areaspline\", '\\uf127'),\n    MDI_CHART_BAR(\"mdi-chart-bar\", '\\uf128'),\n    MDI_CHART_BUBBLE(\"mdi-chart-bubble\", '\\uf5e3'),\n    MDI_CHART_GANTT(\"mdi-chart-gantt\", '\\uf66c'),\n    MDI_CHART_HISTOGRAM(\"mdi-chart-histogram\", '\\uf129'),\n    MDI_CHART_LINE(\"mdi-chart-line\", '\\uf12a'),\n    MDI_CHART_PIE(\"mdi-chart-pie\", '\\uf12b'),\n    MDI_CHART_SCATTERPLOT_HEXBIN(\"mdi-chart-scatterplot-hexbin\", '\\uf66d'),\n    MDI_CHART_TIMELINE(\"mdi-chart-timeline\", '\\uf66e'),\n    MDI_CHECK(\"mdi-check\", '\\uf12c'),\n    MDI_CHECKBOX_BLANK(\"mdi-checkbox-blank\", '\\uf12e'),\n    MDI_CHECKBOX_BLANK_CIRCLE(\"mdi-checkbox-blank-circle\", '\\uf12f'),\n    MDI_CHECKBOX_BLANK_CIRCLE_OUTLINE(\"mdi-checkbox-blank-circle-outline\", '\\uf130'),\n    MDI_CHECKBOX_BLANK_OUTLINE(\"mdi-checkbox-blank-outline\", '\\uf131'),\n    MDI_CHECKBOX_MARKED(\"mdi-checkbox-marked\", '\\uf132'),\n    MDI_CHECKBOX_MARKED_CIRCLE(\"mdi-checkbox-marked-circle\", '\\uf133'),\n    MDI_CHECKBOX_MARKED_CIRCLE_OUTLINE(\"mdi-checkbox-marked-circle-outline\", '\\uf134'),\n    MDI_CHECKBOX_MARKED_OUTLINE(\"mdi-checkbox-marked-outline\", '\\uf135'),\n    MDI_CHECKBOX_MULTIPLE_BLANK(\"mdi-checkbox-multiple-blank\", '\\uf136'),\n    MDI_CHECKBOX_MULTIPLE_BLANK_CIRCLE(\"mdi-checkbox-multiple-blank-circle\", '\\uf63b'),\n    MDI_CHECKBOX_MULTIPLE_BLANK_CIRCLE_OUTLINE(\"mdi-checkbox-multiple-blank-circle-outline\", '\\uf63c'),\n    MDI_CHECKBOX_MULTIPLE_BLANK_OUTLINE(\"mdi-checkbox-multiple-blank-outline\", '\\uf137'),\n    MDI_CHECKBOX_MULTIPLE_MARKED(\"mdi-checkbox-multiple-marked\", '\\uf138'),\n    MDI_CHECKBOX_MULTIPLE_MARKED_CIRCLE(\"mdi-checkbox-multiple-marked-circle\", '\\uf63d'),\n    MDI_CHECKBOX_MULTIPLE_MARKED_CIRCLE_OUTLINE(\"mdi-checkbox-multiple-marked-circle-outline\", '\\uf63e'),\n    MDI_CHECKBOX_MULTIPLE_MARKED_OUTLINE(\"mdi-checkbox-multiple-marked-outline\", '\\uf139'),\n    MDI_CHECKERBOARD(\"mdi-checkerboard\", '\\uf13a'),\n    MDI_CHECK_ALL(\"mdi-check-all\", '\\uf12d'),\n    MDI_CHECK_CIRCLE(\"mdi-check-circle\", '\\uf5e0'),\n    MDI_CHECK_CIRCLE_OUTLINE(\"mdi-check-circle-outline\", '\\uf5e1'),\n    MDI_CHEMICAL_WEAPON(\"mdi-chemical-weapon\", '\\uf13b'),\n    MDI_CHEVRON_DOUBLE_DOWN(\"mdi-chevron-double-down\", '\\uf13c'),\n    MDI_CHEVRON_DOUBLE_LEFT(\"mdi-chevron-double-left\", '\\uf13d'),\n    MDI_CHEVRON_DOUBLE_RIGHT(\"mdi-chevron-double-right\", '\\uf13e'),\n    MDI_CHEVRON_DOUBLE_UP(\"mdi-chevron-double-up\", '\\uf13f'),\n    MDI_CHEVRON_DOWN(\"mdi-chevron-down\", '\\uf140'),\n    MDI_CHEVRON_LEFT(\"mdi-chevron-left\", '\\uf141'),\n    MDI_CHEVRON_RIGHT(\"mdi-chevron-right\", '\\uf142'),\n    MDI_CHEVRON_UP(\"mdi-chevron-up\", '\\uf143'),\n    MDI_CHIP(\"mdi-chip\", '\\uf61a'),\n    MDI_CHURCH(\"mdi-church\", '\\uf144'),\n    MDI_CISCO_WEBEX(\"mdi-cisco-webex\", '\\uf145'),\n    MDI_CITY(\"mdi-city\", '\\uf146'),\n    MDI_CLIPBOARD(\"mdi-clipboard\", '\\uf147'),\n    MDI_CLIPBOARD_ACCOUNT(\"mdi-clipboard-account\", '\\uf148'),\n    MDI_CLIPBOARD_ALERT(\"mdi-clipboard-alert\", '\\uf149'),\n    MDI_CLIPBOARD_ARROW_DOWN(\"mdi-clipboard-arrow-down\", '\\uf14a'),\n    MDI_CLIPBOARD_ARROW_LEFT(\"mdi-clipboard-arrow-left\", '\\uf14b'),\n    MDI_CLIPBOARD_CHECK(\"mdi-clipboard-check\", '\\uf14c'),\n    MDI_CLIPBOARD_OUTLINE(\"mdi-clipboard-outline\", '\\uf14d'),\n    MDI_CLIPBOARD_TEXT(\"mdi-clipboard-text\", '\\uf14e'),\n    MDI_CLIPPY(\"mdi-clippy\", '\\uf14f'),\n    MDI_CLOCK(\"mdi-clock\", '\\uf150'),\n    MDI_CLOCK_ALERT(\"mdi-clock-alert\", '\\uf5ce'),\n    MDI_CLOCK_END(\"mdi-clock-end\", '\\uf151'),\n    MDI_CLOCK_FAST(\"mdi-clock-fast\", '\\uf152'),\n    MDI_CLOCK_IN(\"mdi-clock-in\", '\\uf153'),\n    MDI_CLOCK_OUT(\"mdi-clock-out\", '\\uf154'),\n    MDI_CLOCK_START(\"mdi-clock-start\", '\\uf155'),\n    MDI_CLOSE(\"mdi-close\", '\\uf156'),\n    MDI_CLOSED_CAPTION(\"mdi-closed-caption\", '\\uf15e'),\n    MDI_CLOSE_BOX(\"mdi-close-box\", '\\uf157'),\n    MDI_CLOSE_BOX_OUTLINE(\"mdi-close-box-outline\", '\\uf158'),\n    MDI_CLOSE_CIRCLE(\"mdi-close-circle\", '\\uf159'),\n    MDI_CLOSE_CIRCLE_OUTLINE(\"mdi-close-circle-outline\", '\\uf15a'),\n    MDI_CLOSE_NETWORK(\"mdi-close-network\", '\\uf15b'),\n    MDI_CLOSE_OCTAGON(\"mdi-close-octagon\", '\\uf15c'),\n    MDI_CLOSE_OCTAGON_OUTLINE(\"mdi-close-octagon-outline\", '\\uf15d'),\n    MDI_CLOUD(\"mdi-cloud\", '\\uf15f'),\n    MDI_CLOUD_CHECK(\"mdi-cloud-check\", '\\uf160'),\n    MDI_CLOUD_CIRCLE(\"mdi-cloud-circle\", '\\uf161'),\n    MDI_CLOUD_DOWNLOAD(\"mdi-cloud-download\", '\\uf162'),\n    MDI_CLOUD_OUTLINE(\"mdi-cloud-outline\", '\\uf163'),\n    MDI_CLOUD_OUTLINE_OFF(\"mdi-cloud-outline-off\", '\\uf164'),\n    MDI_CLOUD_PRINT(\"mdi-cloud-print\", '\\uf165'),\n    MDI_CLOUD_PRINT_OUTLINE(\"mdi-cloud-print-outline\", '\\uf166'),\n    MDI_CLOUD_SYNC(\"mdi-cloud-sync\", '\\uf63f'),\n    MDI_CLOUD_UPLOAD(\"mdi-cloud-upload\", '\\uf167'),\n    MDI_CODEPEN(\"mdi-codepen\", '\\uf175'),\n    MDI_CODE_ARRAY(\"mdi-code-array\", '\\uf168'),\n    MDI_CODE_BRACES(\"mdi-code-braces\", '\\uf169'),\n    MDI_CODE_BRACKETS(\"mdi-code-brackets\", '\\uf16a'),\n    MDI_CODE_EQUAL(\"mdi-code-equal\", '\\uf16b'),\n    MDI_CODE_GREATER_THAN(\"mdi-code-greater-than\", '\\uf16c'),\n    MDI_CODE_GREATER_THAN_OR_EQUAL(\"mdi-code-greater-than-or-equal\", '\\uf16d'),\n    MDI_CODE_LESS_THAN(\"mdi-code-less-than\", '\\uf16e'),\n    MDI_CODE_LESS_THAN_OR_EQUAL(\"mdi-code-less-than-or-equal\", '\\uf16f'),\n    MDI_CODE_NOT_EQUAL(\"mdi-code-not-equal\", '\\uf170'),\n    MDI_CODE_NOT_EQUAL_VARIANT(\"mdi-code-not-equal-variant\", '\\uf171'),\n    MDI_CODE_PARENTHESES(\"mdi-code-parentheses\", '\\uf172'),\n    MDI_CODE_STRING(\"mdi-code-string\", '\\uf173'),\n    MDI_CODE_TAGS(\"mdi-code-tags\", '\\uf174'),\n    MDI_CODE_TAGS_CHECK(\"mdi-code-tags-check\", '\\uf693'),\n    MDI_COFFEE(\"mdi-coffee\", '\\uf176'),\n    MDI_COFFEE_TO_GO(\"mdi-coffee-to-go\", '\\uf177'),\n    MDI_COIN(\"mdi-coin\", '\\uf178'),\n    MDI_COINS(\"mdi-coins\", '\\uf694'),\n    MDI_COLLAGE(\"mdi-collage\", '\\uf640'),\n    MDI_COLOR_HELPER(\"mdi-color-helper\", '\\uf179'),\n    MDI_COMMENT(\"mdi-comment\", '\\uf17a'),\n    MDI_COMMENT_ACCOUNT(\"mdi-comment-account\", '\\uf17b'),\n    MDI_COMMENT_ACCOUNT_OUTLINE(\"mdi-comment-account-outline\", '\\uf17c'),\n    MDI_COMMENT_ALERT(\"mdi-comment-alert\", '\\uf17d'),\n    MDI_COMMENT_ALERT_OUTLINE(\"mdi-comment-alert-outline\", '\\uf17e'),\n    MDI_COMMENT_CHECK(\"mdi-comment-check\", '\\uf17f'),\n    MDI_COMMENT_CHECK_OUTLINE(\"mdi-comment-check-outline\", '\\uf180'),\n    MDI_COMMENT_MULTIPLE_OUTLINE(\"mdi-comment-multiple-outline\", '\\uf181'),\n    MDI_COMMENT_OUTLINE(\"mdi-comment-outline\", '\\uf182'),\n    MDI_COMMENT_PLUS_OUTLINE(\"mdi-comment-plus-outline\", '\\uf183'),\n    MDI_COMMENT_PROCESSING(\"mdi-comment-processing\", '\\uf184'),\n    MDI_COMMENT_PROCESSING_OUTLINE(\"mdi-comment-processing-outline\", '\\uf185'),\n    MDI_COMMENT_QUESTION_OUTLINE(\"mdi-comment-question-outline\", '\\uf186'),\n    MDI_COMMENT_REMOVE_OUTLINE(\"mdi-comment-remove-outline\", '\\uf187'),\n    MDI_COMMENT_TEXT(\"mdi-comment-text\", '\\uf188'),\n    MDI_COMMENT_TEXT_OUTLINE(\"mdi-comment-text-outline\", '\\uf189'),\n    MDI_COMPARE(\"mdi-compare\", '\\uf18a'),\n    MDI_COMPASS(\"mdi-compass\", '\\uf18b'),\n    MDI_COMPASS_OUTLINE(\"mdi-compass-outline\", '\\uf18c'),\n    MDI_CONSOLE(\"mdi-console\", '\\uf18d'),\n    MDI_CONTACT_MAIL(\"mdi-contact-mail\", '\\uf18e'),\n    MDI_CONTENT_COPY(\"mdi-content-copy\", '\\uf18f'),\n    MDI_CONTENT_CUT(\"mdi-content-cut\", '\\uf190'),\n    MDI_CONTENT_DUPLICATE(\"mdi-content-duplicate\", '\\uf191'),\n    MDI_CONTENT_PASTE(\"mdi-content-paste\", '\\uf192'),\n    MDI_CONTENT_SAVE(\"mdi-content-save\", '\\uf193'),\n    MDI_CONTENT_SAVE_ALL(\"mdi-content-save-all\", '\\uf194'),\n    MDI_CONTENT_SAVE_SETTINGS(\"mdi-content-save-settings\", '\\uf61b'),\n    MDI_CONTRAST(\"mdi-contrast\", '\\uf195'),\n    MDI_CONTRAST_BOX(\"mdi-contrast-box\", '\\uf196'),\n    MDI_CONTRAST_CIRCLE(\"mdi-contrast-circle\", '\\uf197'),\n    MDI_COOKIE(\"mdi-cookie\", '\\uf198'),\n    MDI_COPYRIGHT(\"mdi-copyright\", '\\uf5e6'),\n    MDI_COUNTER(\"mdi-counter\", '\\uf199'),\n    MDI_COW(\"mdi-cow\", '\\uf19a'),\n    MDI_CREATION(\"mdi-creation\", '\\uf1c9'),\n    MDI_CREDIT_CARD(\"mdi-credit-card\", '\\uf19b'),\n    MDI_CREDIT_CARD_MULTIPLE(\"mdi-credit-card-multiple\", '\\uf19c'),\n    MDI_CREDIT_CARD_OFF(\"mdi-credit-card-off\", '\\uf5e4'),\n    MDI_CREDIT_CARD_PLUS(\"mdi-credit-card-plus\", '\\uf675'),\n    MDI_CREDIT_CARD_SCAN(\"mdi-credit-card-scan\", '\\uf19d'),\n    MDI_CROP(\"mdi-crop\", '\\uf19e'),\n    MDI_CROP_FREE(\"mdi-crop-free\", '\\uf19f'),\n    MDI_CROP_LANDSCAPE(\"mdi-crop-landscape\", '\\uf1a0'),\n    MDI_CROP_PORTRAIT(\"mdi-crop-portrait\", '\\uf1a1'),\n    MDI_CROP_ROTATE(\"mdi-crop-rotate\", '\\uf695'),\n    MDI_CROP_SQUARE(\"mdi-crop-square\", '\\uf1a2'),\n    MDI_CROSSHAIRS(\"mdi-crosshairs\", '\\uf1a3'),\n    MDI_CROSSHAIRS_GPS(\"mdi-crosshairs-gps\", '\\uf1a4'),\n    MDI_CROWN(\"mdi-crown\", '\\uf1a5'),\n    MDI_CUBE(\"mdi-cube\", '\\uf1a6'),\n    MDI_CUBE_OUTLINE(\"mdi-cube-outline\", '\\uf1a7'),\n    MDI_CUBE_SEND(\"mdi-cube-send\", '\\uf1a8'),\n    MDI_CUBE_UNFOLDED(\"mdi-cube-unfolded\", '\\uf1a9'),\n    MDI_CUP(\"mdi-cup\", '\\uf1aa'),\n    MDI_CUP_OFF(\"mdi-cup-off\", '\\uf5e5'),\n    MDI_CUP_WATER(\"mdi-cup-water\", '\\uf1ab'),\n    MDI_CURRENCY_BTC(\"mdi-currency-btc\", '\\uf1ac'),\n    MDI_CURRENCY_EUR(\"mdi-currency-eur\", '\\uf1ad'),\n    MDI_CURRENCY_GBP(\"mdi-currency-gbp\", '\\uf1ae'),\n    MDI_CURRENCY_INR(\"mdi-currency-inr\", '\\uf1af'),\n    MDI_CURRENCY_NGN(\"mdi-currency-ngn\", '\\uf1b0'),\n    MDI_CURRENCY_RUB(\"mdi-currency-rub\", '\\uf1b1'),\n    MDI_CURRENCY_TRY(\"mdi-currency-try\", '\\uf1b2'),\n    MDI_CURRENCY_USD(\"mdi-currency-usd\", '\\uf1b3'),\n    MDI_CURRENCY_USD_OFF(\"mdi-currency-usd-off\", '\\uf679'),\n    MDI_CURSOR_DEFAULT(\"mdi-cursor-default\", '\\uf1b4'),\n    MDI_CURSOR_DEFAULT_OUTLINE(\"mdi-cursor-default-outline\", '\\uf1b5'),\n    MDI_CURSOR_MOVE(\"mdi-cursor-move\", '\\uf1b6'),\n    MDI_CURSOR_POINTER(\"mdi-cursor-pointer\", '\\uf1b7'),\n    MDI_CURSOR_TEXT(\"mdi-cursor-text\", '\\uf5e7'),\n    MDI_DATABASE(\"mdi-database\", '\\uf1b8'),\n    MDI_DATABASE_MINUS(\"mdi-database-minus\", '\\uf1b9'),\n    MDI_DATABASE_PLUS(\"mdi-database-plus\", '\\uf1ba'),\n    MDI_DEBUG_STEP_INTO(\"mdi-debug-step-into\", '\\uf1bb'),\n    MDI_DEBUG_STEP_OUT(\"mdi-debug-step-out\", '\\uf1bc'),\n    MDI_DEBUG_STEP_OVER(\"mdi-debug-step-over\", '\\uf1bd'),\n    MDI_DECIMAL_DECREASE(\"mdi-decimal-decrease\", '\\uf1be'),\n    MDI_DECIMAL_INCREASE(\"mdi-decimal-increase\", '\\uf1bf'),\n    MDI_DELETE(\"mdi-delete\", '\\uf1c0'),\n    MDI_DELETE_CIRCLE(\"mdi-delete-circle\", '\\uf682'),\n    MDI_DELETE_FOREVER(\"mdi-delete-forever\", '\\uf5e8'),\n    MDI_DELETE_SWEEP(\"mdi-delete-sweep\", '\\uf5e9'),\n    MDI_DELETE_VARIANT(\"mdi-delete-variant\", '\\uf1c1'),\n    MDI_DELTA(\"mdi-delta\", '\\uf1c2'),\n    MDI_DESKPHONE(\"mdi-deskphone\", '\\uf1c3'),\n    MDI_DESKTOP_MAC(\"mdi-desktop-mac\", '\\uf1c4'),\n    MDI_DESKTOP_TOWER(\"mdi-desktop-tower\", '\\uf1c5'),\n    MDI_DETAILS(\"mdi-details\", '\\uf1c6'),\n    MDI_DEVELOPER_BOARD(\"mdi-developer-board\", '\\uf696'),\n    MDI_DEVIANTART(\"mdi-deviantart\", '\\uf1c7'),\n    MDI_DIALPAD(\"mdi-dialpad\", '\\uf61c'),\n    MDI_DIAMOND(\"mdi-diamond\", '\\uf1c8'),\n    MDI_DICE_1(\"mdi-dice-1\", '\\uf1ca'),\n    MDI_DICE_2(\"mdi-dice-2\", '\\uf1cb'),\n    MDI_DICE_3(\"mdi-dice-3\", '\\uf1cc'),\n    MDI_DICE_4(\"mdi-dice-4\", '\\uf1cd'),\n    MDI_DICE_5(\"mdi-dice-5\", '\\uf1ce'),\n    MDI_DICE_6(\"mdi-dice-6\", '\\uf1cf'),\n    MDI_DICE_D20(\"mdi-dice-d20\", '\\uf5ea'),\n    MDI_DICE_D4(\"mdi-dice-d4\", '\\uf5eb'),\n    MDI_DICE_D6(\"mdi-dice-d6\", '\\uf5ec'),\n    MDI_DICE_D8(\"mdi-dice-d8\", '\\uf5ed'),\n    MDI_DICTIONARY(\"mdi-dictionary\", '\\uf61d'),\n    MDI_DIRECTIONS(\"mdi-directions\", '\\uf1d0'),\n    MDI_DIRECTIONS_FORK(\"mdi-directions-fork\", '\\uf641'),\n    MDI_DISCORD(\"mdi-discord\", '\\uf66f'),\n    MDI_DISK(\"mdi-disk\", '\\uf5ee'),\n    MDI_DISK_ALERT(\"mdi-disk-alert\", '\\uf1d1'),\n    MDI_DISQUS(\"mdi-disqus\", '\\uf1d2'),\n    MDI_DISQUS_OUTLINE(\"mdi-disqus-outline\", '\\uf1d3'),\n    MDI_DIVISION(\"mdi-division\", '\\uf1d4'),\n    MDI_DIVISION_BOX(\"mdi-division-box\", '\\uf1d5'),\n    MDI_DNA(\"mdi-dna\", '\\uf683'),\n    MDI_DNS(\"mdi-dns\", '\\uf1d6'),\n    MDI_DOLBY(\"mdi-dolby\", '\\uf6b2'),\n    MDI_DOMAIN(\"mdi-domain\", '\\uf1d7'),\n    MDI_DOTS_HORIZONTAL(\"mdi-dots-horizontal\", '\\uf1d8'),\n    MDI_DOTS_VERTICAL(\"mdi-dots-vertical\", '\\uf1d9'),\n    MDI_DOUBAN(\"mdi-douban\", '\\uf699'),\n    MDI_DOWNLOAD(\"mdi-download\", '\\uf1da'),\n    MDI_DO_NOT_DISTURB(\"mdi-do-not-disturb\", '\\uf697'),\n    MDI_DO_NOT_DISTURB_OFF(\"mdi-do-not-disturb-off\", '\\uf698'),\n    MDI_DRAG(\"mdi-drag\", '\\uf1db'),\n    MDI_DRAG_HORIZONTAL(\"mdi-drag-horizontal\", '\\uf1dc'),\n    MDI_DRAG_VERTICAL(\"mdi-drag-vertical\", '\\uf1dd'),\n    MDI_DRAWING(\"mdi-drawing\", '\\uf1de'),\n    MDI_DRAWING_BOX(\"mdi-drawing-box\", '\\uf1df'),\n    MDI_DRIBBBLE(\"mdi-dribbble\", '\\uf1e0'),\n    MDI_DRIBBBLE_BOX(\"mdi-dribbble-box\", '\\uf1e1'),\n    MDI_DRONE(\"mdi-drone\", '\\uf1e2'),\n    MDI_DROPBOX(\"mdi-dropbox\", '\\uf1e3'),\n    MDI_DRUPAL(\"mdi-drupal\", '\\uf1e4'),\n    MDI_DUCK(\"mdi-duck\", '\\uf1e5'),\n    MDI_DUMBBELL(\"mdi-dumbbell\", '\\uf1e6'),\n    MDI_EARTH(\"mdi-earth\", '\\uf1e7'),\n    MDI_EARTH_OFF(\"mdi-earth-off\", '\\uf1e8'),\n    MDI_EDGE(\"mdi-edge\", '\\uf1e9'),\n    MDI_EJECT(\"mdi-eject\", '\\uf1ea'),\n    MDI_ELEVATION_DECLINE(\"mdi-elevation-decline\", '\\uf1eb'),\n    MDI_ELEVATION_RISE(\"mdi-elevation-rise\", '\\uf1ec'),\n    MDI_ELEVATOR(\"mdi-elevator\", '\\uf1ed'),\n    MDI_EMAIL(\"mdi-email\", '\\uf1ee'),\n    MDI_EMAIL_OPEN(\"mdi-email-open\", '\\uf1ef'),\n    MDI_EMAIL_OPEN_OUTLINE(\"mdi-email-open-outline\", '\\uf5ef'),\n    MDI_EMAIL_OUTLINE(\"mdi-email-outline\", '\\uf1f0'),\n    MDI_EMAIL_SECURE(\"mdi-email-secure\", '\\uf1f1'),\n    MDI_EMAIL_VARIANT(\"mdi-email-variant\", '\\uf5f0'),\n    MDI_EMBY(\"mdi-emby\", '\\uf6b3'),\n    MDI_EMOTICON(\"mdi-emoticon\", '\\uf1f2'),\n    MDI_EMOTICON_COOL(\"mdi-emoticon-cool\", '\\uf1f3'),\n    MDI_EMOTICON_DEAD(\"mdi-emoticon-dead\", '\\uf69a'),\n    MDI_EMOTICON_DEVIL(\"mdi-emoticon-devil\", '\\uf1f4'),\n    MDI_EMOTICON_EXCITED(\"mdi-emoticon-excited\", '\\uf69b'),\n    MDI_EMOTICON_HAPPY(\"mdi-emoticon-happy\", '\\uf1f5'),\n    MDI_EMOTICON_NEUTRAL(\"mdi-emoticon-neutral\", '\\uf1f6'),\n    MDI_EMOTICON_POOP(\"mdi-emoticon-poop\", '\\uf1f7'),\n    MDI_EMOTICON_SAD(\"mdi-emoticon-sad\", '\\uf1f8'),\n    MDI_EMOTICON_TONGUE(\"mdi-emoticon-tongue\", '\\uf1f9'),\n    MDI_ENGINE(\"mdi-engine\", '\\uf1fa'),\n    MDI_ENGINE_OUTLINE(\"mdi-engine-outline\", '\\uf1fb'),\n    MDI_EQUAL(\"mdi-equal\", '\\uf1fc'),\n    MDI_EQUAL_BOX(\"mdi-equal-box\", '\\uf1fd'),\n    MDI_ERASER(\"mdi-eraser\", '\\uf1fe'),\n    MDI_ERASER_VARIANT(\"mdi-eraser-variant\", '\\uf642'),\n    MDI_ESCALATOR(\"mdi-escalator\", '\\uf1ff'),\n    MDI_ETHERNET(\"mdi-ethernet\", '\\uf200'),\n    MDI_ETHERNET_CABLE(\"mdi-ethernet-cable\", '\\uf201'),\n    MDI_ETHERNET_CABLE_OFF(\"mdi-ethernet-cable-off\", '\\uf202'),\n    MDI_ETSY(\"mdi-etsy\", '\\uf203'),\n    MDI_EVERNOTE(\"mdi-evernote\", '\\uf204'),\n    MDI_EV_STATION(\"mdi-ev-station\", '\\uf5f1'),\n    MDI_EXCLAMATION(\"mdi-exclamation\", '\\uf205'),\n    MDI_EXIT_TO_APP(\"mdi-exit-to-app\", '\\uf206'),\n    MDI_EXPORT(\"mdi-export\", '\\uf207'),\n    MDI_EYE(\"mdi-eye\", '\\uf208'),\n    MDI_EYEDROPPER(\"mdi-eyedropper\", '\\uf20a'),\n    MDI_EYEDROPPER_VARIANT(\"mdi-eyedropper-variant\", '\\uf20b'),\n    MDI_EYE_OFF(\"mdi-eye-off\", '\\uf209'),\n    MDI_FACE(\"mdi-face\", '\\uf643'),\n    MDI_FACEBOOK(\"mdi-facebook\", '\\uf20c'),\n    MDI_FACEBOOK_BOX(\"mdi-facebook-box\", '\\uf20d'),\n    MDI_FACEBOOK_MESSENGER(\"mdi-facebook-messenger\", '\\uf20e'),\n    MDI_FACE_PROFILE(\"mdi-face-profile\", '\\uf644'),\n    MDI_FACTORY(\"mdi-factory\", '\\uf20f'),\n    MDI_FAN(\"mdi-fan\", '\\uf210'),\n    MDI_FAST_FORWARD(\"mdi-fast-forward\", '\\uf211'),\n    MDI_FAX(\"mdi-fax\", '\\uf212'),\n    MDI_FERRY(\"mdi-ferry\", '\\uf213'),\n    MDI_FILE(\"mdi-file\", '\\uf214'),\n    MDI_FILE_CHART(\"mdi-file-chart\", '\\uf215'),\n    MDI_FILE_CHECK(\"mdi-file-check\", '\\uf216'),\n    MDI_FILE_CLOUD(\"mdi-file-cloud\", '\\uf217'),\n    MDI_FILE_DELIMITED(\"mdi-file-delimited\", '\\uf218'),\n    MDI_FILE_DOCUMENT(\"mdi-file-document\", '\\uf219'),\n    MDI_FILE_DOCUMENT_BOX(\"mdi-file-document-box\", '\\uf21a'),\n    MDI_FILE_EXCEL(\"mdi-file-excel\", '\\uf21b'),\n    MDI_FILE_EXCEL_BOX(\"mdi-file-excel-box\", '\\uf21c'),\n    MDI_FILE_EXPORT(\"mdi-file-export\", '\\uf21d'),\n    MDI_FILE_FIND(\"mdi-file-find\", '\\uf21e'),\n    MDI_FILE_HIDDEN(\"mdi-file-hidden\", '\\uf613'),\n    MDI_FILE_IMAGE(\"mdi-file-image\", '\\uf21f'),\n    MDI_FILE_IMPORT(\"mdi-file-import\", '\\uf220'),\n    MDI_FILE_LOCK(\"mdi-file-lock\", '\\uf221'),\n    MDI_FILE_MULTIPLE(\"mdi-file-multiple\", '\\uf222'),\n    MDI_FILE_MUSIC(\"mdi-file-music\", '\\uf223'),\n    MDI_FILE_OUTLINE(\"mdi-file-outline\", '\\uf224'),\n    MDI_FILE_PDF(\"mdi-file-pdf\", '\\uf225'),\n    MDI_FILE_PDF_BOX(\"mdi-file-pdf-box\", '\\uf226'),\n    MDI_FILE_POWERPOINT(\"mdi-file-powerpoint\", '\\uf227'),\n    MDI_FILE_POWERPOINT_BOX(\"mdi-file-powerpoint-box\", '\\uf228'),\n    MDI_FILE_PRESENTATION_BOX(\"mdi-file-presentation-box\", '\\uf229'),\n    MDI_FILE_RESTORE(\"mdi-file-restore\", '\\uf670'),\n    MDI_FILE_SEND(\"mdi-file-send\", '\\uf22a'),\n    MDI_FILE_TREE(\"mdi-file-tree\", '\\uf645'),\n    MDI_FILE_VIDEO(\"mdi-file-video\", '\\uf22b'),\n    MDI_FILE_WORD(\"mdi-file-word\", '\\uf22c'),\n    MDI_FILE_WORD_BOX(\"mdi-file-word-box\", '\\uf22d'),\n    MDI_FILE_XML(\"mdi-file-xml\", '\\uf22e'),\n    MDI_FILM(\"mdi-film\", '\\uf22f'),\n    MDI_FILMSTRIP(\"mdi-filmstrip\", '\\uf230'),\n    MDI_FILMSTRIP_OFF(\"mdi-filmstrip-off\", '\\uf231'),\n    MDI_FILTER(\"mdi-filter\", '\\uf232'),\n    MDI_FILTER_OUTLINE(\"mdi-filter-outline\", '\\uf233'),\n    MDI_FILTER_REMOVE(\"mdi-filter-remove\", '\\uf234'),\n    MDI_FILTER_REMOVE_OUTLINE(\"mdi-filter-remove-outline\", '\\uf235'),\n    MDI_FILTER_VARIANT(\"mdi-filter-variant\", '\\uf236'),\n    MDI_FINGERPRINT(\"mdi-fingerprint\", '\\uf237'),\n    MDI_FIRE(\"mdi-fire\", '\\uf238'),\n    MDI_FIREFOX(\"mdi-firefox\", '\\uf239'),\n    MDI_FISH(\"mdi-fish\", '\\uf23a'),\n    MDI_FLAG(\"mdi-flag\", '\\uf23b'),\n    MDI_FLAG_CHECKERED(\"mdi-flag-checkered\", '\\uf23c'),\n    MDI_FLAG_OUTLINE(\"mdi-flag-outline\", '\\uf23d'),\n    MDI_FLAG_OUTLINE_VARIANT(\"mdi-flag-outline-variant\", '\\uf23e'),\n    MDI_FLAG_TRIANGLE(\"mdi-flag-triangle\", '\\uf23f'),\n    MDI_FLAG_VARIANT(\"mdi-flag-variant\", '\\uf240'),\n    MDI_FLASH(\"mdi-flash\", '\\uf241'),\n    MDI_FLASHLIGHT(\"mdi-flashlight\", '\\uf244'),\n    MDI_FLASHLIGHT_OFF(\"mdi-flashlight-off\", '\\uf245'),\n    MDI_FLASH_AUTO(\"mdi-flash-auto\", '\\uf242'),\n    MDI_FLASH_OFF(\"mdi-flash-off\", '\\uf243'),\n    MDI_FLASH_RED_EYE(\"mdi-flash-red-eye\", '\\uf67a'),\n    MDI_FLASK(\"mdi-flask\", '\\uf093'),\n    MDI_FLASK_EMPTY(\"mdi-flask-empty\", '\\uf094'),\n    MDI_FLASK_EMPTY_OUTLINE(\"mdi-flask-empty-outline\", '\\uf095'),\n    MDI_FLASK_OUTLINE(\"mdi-flask-outline\", '\\uf096'),\n    MDI_FLATTR(\"mdi-flattr\", '\\uf246'),\n    MDI_FLIP_TO_BACK(\"mdi-flip-to-back\", '\\uf247'),\n    MDI_FLIP_TO_FRONT(\"mdi-flip-to-front\", '\\uf248'),\n    MDI_FLOPPY(\"mdi-floppy\", '\\uf249'),\n    MDI_FLOWER(\"mdi-flower\", '\\uf24a'),\n    MDI_FOLDER(\"mdi-folder\", '\\uf24b'),\n    MDI_FOLDER_ACCOUNT(\"mdi-folder-account\", '\\uf24c'),\n    MDI_FOLDER_DOWNLOAD(\"mdi-folder-download\", '\\uf24d'),\n    MDI_FOLDER_GOOGLE_DRIVE(\"mdi-folder-google-drive\", '\\uf24e'),\n    MDI_FOLDER_IMAGE(\"mdi-folder-image\", '\\uf24f'),\n    MDI_FOLDER_LOCK(\"mdi-folder-lock\", '\\uf250'),\n    MDI_FOLDER_LOCK_OPEN(\"mdi-folder-lock-open\", '\\uf251'),\n    MDI_FOLDER_MOVE(\"mdi-folder-move\", '\\uf252'),\n    MDI_FOLDER_MULTIPLE(\"mdi-folder-multiple\", '\\uf253'),\n    MDI_FOLDER_MULTIPLE_IMAGE(\"mdi-folder-multiple-image\", '\\uf254'),\n    MDI_FOLDER_MULTIPLE_OUTLINE(\"mdi-folder-multiple-outline\", '\\uf255'),\n    MDI_FOLDER_OUTLINE(\"mdi-folder-outline\", '\\uf256'),\n    MDI_FOLDER_PLUS(\"mdi-folder-plus\", '\\uf257'),\n    MDI_FOLDER_REMOVE(\"mdi-folder-remove\", '\\uf258'),\n    MDI_FOLDER_STAR(\"mdi-folder-star\", '\\uf69c'),\n    MDI_FOLDER_UPLOAD(\"mdi-folder-upload\", '\\uf259'),\n    MDI_FOOD(\"mdi-food\", '\\uf25a'),\n    MDI_FOOD_APPLE(\"mdi-food-apple\", '\\uf25b'),\n    MDI_FOOD_FORK_DRINK(\"mdi-food-fork-drink\", '\\uf5f2'),\n    MDI_FOOD_OFF(\"mdi-food-off\", '\\uf5f3'),\n    MDI_FOOD_VARIANT(\"mdi-food-variant\", '\\uf25c'),\n    MDI_FOOTBALL(\"mdi-football\", '\\uf25d'),\n    MDI_FOOTBALL_AUSTRALIAN(\"mdi-football-australian\", '\\uf25e'),\n    MDI_FOOTBALL_HELMET(\"mdi-football-helmet\", '\\uf25f'),\n    MDI_FORMAT_ALIGN_CENTER(\"mdi-format-align-center\", '\\uf260'),\n    MDI_FORMAT_ALIGN_JUSTIFY(\"mdi-format-align-justify\", '\\uf261'),\n    MDI_FORMAT_ALIGN_LEFT(\"mdi-format-align-left\", '\\uf262'),\n    MDI_FORMAT_ALIGN_RIGHT(\"mdi-format-align-right\", '\\uf263'),\n    MDI_FORMAT_ANNOTATION_PLUS(\"mdi-format-annotation-plus\", '\\uf646'),\n    MDI_FORMAT_BOLD(\"mdi-format-bold\", '\\uf264'),\n    MDI_FORMAT_CLEAR(\"mdi-format-clear\", '\\uf265'),\n    MDI_FORMAT_COLOR_FILL(\"mdi-format-color-fill\", '\\uf266'),\n    MDI_FORMAT_COLOR_TEXT(\"mdi-format-color-text\", '\\uf69d'),\n    MDI_FORMAT_FLOAT_CENTER(\"mdi-format-float-center\", '\\uf267'),\n    MDI_FORMAT_FLOAT_LEFT(\"mdi-format-float-left\", '\\uf268'),\n    MDI_FORMAT_FLOAT_NONE(\"mdi-format-float-none\", '\\uf269'),\n    MDI_FORMAT_FLOAT_RIGHT(\"mdi-format-float-right\", '\\uf26a'),\n    MDI_FORMAT_HEADER_1(\"mdi-format-header-1\", '\\uf26b'),\n    MDI_FORMAT_HEADER_2(\"mdi-format-header-2\", '\\uf26c'),\n    MDI_FORMAT_HEADER_3(\"mdi-format-header-3\", '\\uf26d'),\n    MDI_FORMAT_HEADER_4(\"mdi-format-header-4\", '\\uf26e'),\n    MDI_FORMAT_HEADER_5(\"mdi-format-header-5\", '\\uf26f'),\n    MDI_FORMAT_HEADER_6(\"mdi-format-header-6\", '\\uf270'),\n    MDI_FORMAT_HEADER_DECREASE(\"mdi-format-header-decrease\", '\\uf271'),\n    MDI_FORMAT_HEADER_EQUAL(\"mdi-format-header-equal\", '\\uf272'),\n    MDI_FORMAT_HEADER_INCREASE(\"mdi-format-header-increase\", '\\uf273'),\n    MDI_FORMAT_HEADER_POUND(\"mdi-format-header-pound\", '\\uf274'),\n    MDI_FORMAT_HORIZONTAL_ALIGN_CENTER(\"mdi-format-horizontal-align-center\", '\\uf61e'),\n    MDI_FORMAT_HORIZONTAL_ALIGN_LEFT(\"mdi-format-horizontal-align-left\", '\\uf61f'),\n    MDI_FORMAT_HORIZONTAL_ALIGN_RIGHT(\"mdi-format-horizontal-align-right\", '\\uf620'),\n    MDI_FORMAT_INDENT_DECREASE(\"mdi-format-indent-decrease\", '\\uf275'),\n    MDI_FORMAT_INDENT_INCREASE(\"mdi-format-indent-increase\", '\\uf276'),\n    MDI_FORMAT_ITALIC(\"mdi-format-italic\", '\\uf277'),\n    MDI_FORMAT_LINE_SPACING(\"mdi-format-line-spacing\", '\\uf278'),\n    MDI_FORMAT_LINE_STYLE(\"mdi-format-line-style\", '\\uf5c8'),\n    MDI_FORMAT_LINE_WEIGHT(\"mdi-format-line-weight\", '\\uf5c9'),\n    MDI_FORMAT_LIST_BULLETED(\"mdi-format-list-bulleted\", '\\uf279'),\n    MDI_FORMAT_LIST_BULLETED_TYPE(\"mdi-format-list-bulleted-type\", '\\uf27a'),\n    MDI_FORMAT_LIST_NUMBERS(\"mdi-format-list-numbers\", '\\uf27b'),\n    MDI_FORMAT_PAINT(\"mdi-format-paint\", '\\uf27c'),\n    MDI_FORMAT_PARAGRAPH(\"mdi-format-paragraph\", '\\uf27d'),\n    MDI_FORMAT_QUOTE(\"mdi-format-quote\", '\\uf27e'),\n    MDI_FORMAT_SECTION(\"mdi-format-section\", '\\uf69e'),\n    MDI_FORMAT_SIZE(\"mdi-format-size\", '\\uf27f'),\n    MDI_FORMAT_STRIKETHROUGH(\"mdi-format-strikethrough\", '\\uf280'),\n    MDI_FORMAT_STRIKETHROUGH_VARIANT(\"mdi-format-strikethrough-variant\", '\\uf281'),\n    MDI_FORMAT_SUBSCRIPT(\"mdi-format-subscript\", '\\uf282'),\n    MDI_FORMAT_SUPERSCRIPT(\"mdi-format-superscript\", '\\uf283'),\n    MDI_FORMAT_TEXT(\"mdi-format-text\", '\\uf284'),\n    MDI_FORMAT_TEXTDIRECTION_L_TO_R(\"mdi-format-textdirection-l-to-r\", '\\uf285'),\n    MDI_FORMAT_TEXTDIRECTION_R_TO_L(\"mdi-format-textdirection-r-to-l\", '\\uf286'),\n    MDI_FORMAT_TITLE(\"mdi-format-title\", '\\uf5f4'),\n    MDI_FORMAT_UNDERLINE(\"mdi-format-underline\", '\\uf287'),\n    MDI_FORMAT_VERTICAL_ALIGN_BOTTOM(\"mdi-format-vertical-align-bottom\", '\\uf621'),\n    MDI_FORMAT_VERTICAL_ALIGN_CENTER(\"mdi-format-vertical-align-center\", '\\uf622'),\n    MDI_FORMAT_VERTICAL_ALIGN_TOP(\"mdi-format-vertical-align-top\", '\\uf623'),\n    MDI_FORMAT_WRAP_INLINE(\"mdi-format-wrap-inline\", '\\uf288'),\n    MDI_FORMAT_WRAP_SQUARE(\"mdi-format-wrap-square\", '\\uf289'),\n    MDI_FORMAT_WRAP_TIGHT(\"mdi-format-wrap-tight\", '\\uf28a'),\n    MDI_FORMAT_WRAP_TOP_BOTTOM(\"mdi-format-wrap-top-bottom\", '\\uf28b'),\n    MDI_FORUM(\"mdi-forum\", '\\uf28c'),\n    MDI_FORWARD(\"mdi-forward\", '\\uf28d'),\n    MDI_FOURSQUARE(\"mdi-foursquare\", '\\uf28e'),\n    MDI_FRIDGE(\"mdi-fridge\", '\\uf28f'),\n    MDI_FRIDGE_FILLED(\"mdi-fridge-filled\", '\\uf290'),\n    MDI_FRIDGE_FILLED_BOTTOM(\"mdi-fridge-filled-bottom\", '\\uf291'),\n    MDI_FRIDGE_FILLED_TOP(\"mdi-fridge-filled-top\", '\\uf292'),\n    MDI_FULLSCREEN(\"mdi-fullscreen\", '\\uf293'),\n    MDI_FULLSCREEN_EXIT(\"mdi-fullscreen-exit\", '\\uf294'),\n    MDI_FUNCTION(\"mdi-function\", '\\uf295'),\n    MDI_GAMEPAD(\"mdi-gamepad\", '\\uf296'),\n    MDI_GAMEPAD_VARIANT(\"mdi-gamepad-variant\", '\\uf297'),\n    MDI_GAS_CYLINDER(\"mdi-gas-cylinder\", '\\uf647'),\n    MDI_GAS_STATION(\"mdi-gas-station\", '\\uf298'),\n    MDI_GATE(\"mdi-gate\", '\\uf299'),\n    MDI_GAUGE(\"mdi-gauge\", '\\uf29a'),\n    MDI_GAVEL(\"mdi-gavel\", '\\uf29b'),\n    MDI_GENDER_FEMALE(\"mdi-gender-female\", '\\uf29c'),\n    MDI_GENDER_MALE(\"mdi-gender-male\", '\\uf29d'),\n    MDI_GENDER_MALE_FEMALE(\"mdi-gender-male-female\", '\\uf29e'),\n    MDI_GENDER_TRANSGENDER(\"mdi-gender-transgender\", '\\uf29f'),\n    MDI_GHOST(\"mdi-ghost\", '\\uf2a0'),\n    MDI_GIFT(\"mdi-gift\", '\\uf2a1'),\n    MDI_GIT(\"mdi-git\", '\\uf2a2'),\n    MDI_GITHUB_BOX(\"mdi-github-box\", '\\uf2a3'),\n    MDI_GITHUB_CIRCLE(\"mdi-github-circle\", '\\uf2a4'),\n    MDI_GLASSDOOR(\"mdi-glassdoor\", '\\uf2a9'),\n    MDI_GLASSES(\"mdi-glasses\", '\\uf2aa'),\n    MDI_GLASS_FLUTE(\"mdi-glass-flute\", '\\uf2a5'),\n    MDI_GLASS_MUG(\"mdi-glass-mug\", '\\uf2a6'),\n    MDI_GLASS_STANGE(\"mdi-glass-stange\", '\\uf2a7'),\n    MDI_GLASS_TULIP(\"mdi-glass-tulip\", '\\uf2a8'),\n    MDI_GMAIL(\"mdi-gmail\", '\\uf2ab'),\n    MDI_GNOME(\"mdi-gnome\", '\\uf2ac'),\n    MDI_GONDOLA(\"mdi-gondola\", '\\uf685'),\n    MDI_GOOGLE(\"mdi-google\", '\\uf2ad'),\n    MDI_GOOGLE_CARDBOARD(\"mdi-google-cardboard\", '\\uf2ae'),\n    MDI_GOOGLE_CHROME(\"mdi-google-chrome\", '\\uf2af'),\n    MDI_GOOGLE_CIRCLES(\"mdi-google-circles\", '\\uf2b0'),\n    MDI_GOOGLE_CIRCLES_COMMUNITIES(\"mdi-google-circles-communities\", '\\uf2b1'),\n    MDI_GOOGLE_CIRCLES_EXTENDED(\"mdi-google-circles-extended\", '\\uf2b2'),\n    MDI_GOOGLE_CIRCLES_GROUP(\"mdi-google-circles-group\", '\\uf2b3'),\n    MDI_GOOGLE_CONTROLLER(\"mdi-google-controller\", '\\uf2b4'),\n    MDI_GOOGLE_CONTROLLER_OFF(\"mdi-google-controller-off\", '\\uf2b5'),\n    MDI_GOOGLE_DRIVE(\"mdi-google-drive\", '\\uf2b6'),\n    MDI_GOOGLE_EARTH(\"mdi-google-earth\", '\\uf2b7'),\n    MDI_GOOGLE_GLASS(\"mdi-google-glass\", '\\uf2b8'),\n    MDI_GOOGLE_MAPS(\"mdi-google-maps\", '\\uf5f5'),\n    MDI_GOOGLE_NEARBY(\"mdi-google-nearby\", '\\uf2b9'),\n    MDI_GOOGLE_PAGES(\"mdi-google-pages\", '\\uf2ba'),\n    MDI_GOOGLE_PHYSICAL_WEB(\"mdi-google-physical-web\", '\\uf2bb'),\n    MDI_GOOGLE_PLAY(\"mdi-google-play\", '\\uf2bc'),\n    MDI_GOOGLE_PLUS(\"mdi-google-plus\", '\\uf2bd'),\n    MDI_GOOGLE_PLUS_BOX(\"mdi-google-plus-box\", '\\uf2be'),\n    MDI_GOOGLE_TRANSLATE(\"mdi-google-translate\", '\\uf2bf'),\n    MDI_GOOGLE_WALLET(\"mdi-google-wallet\", '\\uf2c0'),\n    MDI_GRADIENT(\"mdi-gradient\", '\\uf69f'),\n    MDI_GREASE_PENCIL(\"mdi-grease-pencil\", '\\uf648'),\n    MDI_GRID(\"mdi-grid\", '\\uf2c1'),\n    MDI_GRID_OFF(\"mdi-grid-off\", '\\uf2c2'),\n    MDI_GROUP(\"mdi-group\", '\\uf2c3'),\n    MDI_GUITAR_ELECTRIC(\"mdi-guitar-electric\", '\\uf2c4'),\n    MDI_GUITAR_PICK(\"mdi-guitar-pick\", '\\uf2c5'),\n    MDI_GUITAR_PICK_OUTLINE(\"mdi-guitar-pick-outline\", '\\uf2c6'),\n    MDI_HACKERNEWS(\"mdi-hackernews\", '\\uf624'),\n    MDI_HAMBURGER(\"mdi-hamburger\", '\\uf684'),\n    MDI_HAND_POINTING_RIGHT(\"mdi-hand-pointing-right\", '\\uf2c7'),\n    MDI_HANGER(\"mdi-hanger\", '\\uf2c8'),\n    MDI_HANGOUTS(\"mdi-hangouts\", '\\uf2c9'),\n    MDI_HARDDISK(\"mdi-harddisk\", '\\uf2ca'),\n    MDI_HEADPHONES(\"mdi-headphones\", '\\uf2cb'),\n    MDI_HEADPHONES_BOX(\"mdi-headphones-box\", '\\uf2cc'),\n    MDI_HEADPHONES_SETTINGS(\"mdi-headphones-settings\", '\\uf2cd'),\n    MDI_HEADSET(\"mdi-headset\", '\\uf2ce'),\n    MDI_HEADSET_DOCK(\"mdi-headset-dock\", '\\uf2cf'),\n    MDI_HEADSET_OFF(\"mdi-headset-off\", '\\uf2d0'),\n    MDI_HEART(\"mdi-heart\", '\\uf2d1'),\n    MDI_HEART_BOX(\"mdi-heart-box\", '\\uf2d2'),\n    MDI_HEART_BOX_OUTLINE(\"mdi-heart-box-outline\", '\\uf2d3'),\n    MDI_HEART_BROKEN(\"mdi-heart-broken\", '\\uf2d4'),\n    MDI_HEART_OUTLINE(\"mdi-heart-outline\", '\\uf2d5'),\n    MDI_HEART_PULSE(\"mdi-heart-pulse\", '\\uf5f6'),\n    MDI_HELP(\"mdi-help\", '\\uf2d6'),\n    MDI_HELP_CIRCLE(\"mdi-help-circle\", '\\uf2d7'),\n    MDI_HELP_CIRCLE_OUTLINE(\"mdi-help-circle-outline\", '\\uf625'),\n    MDI_HEXAGON(\"mdi-hexagon\", '\\uf2d8'),\n    MDI_HEXAGON_OUTLINE(\"mdi-hexagon-outline\", '\\uf2d9'),\n    MDI_HIGHWAY(\"mdi-highway\", '\\uf5f7'),\n    MDI_HISTORY(\"mdi-history\", '\\uf2da'),\n    MDI_HOLOLENS(\"mdi-hololens\", '\\uf2db'),\n    MDI_HOME(\"mdi-home\", '\\uf2dc'),\n    MDI_HOME_MAP_MARKER(\"mdi-home-map-marker\", '\\uf5f8'),\n    MDI_HOME_MODERN(\"mdi-home-modern\", '\\uf2dd'),\n    MDI_HOME_OUTLINE(\"mdi-home-outline\", '\\uf6a0'),\n    MDI_HOME_VARIANT(\"mdi-home-variant\", '\\uf2de'),\n    MDI_HOPS(\"mdi-hops\", '\\uf2df'),\n    MDI_HOSPITAL(\"mdi-hospital\", '\\uf2e0'),\n    MDI_HOSPITAL_BUILDING(\"mdi-hospital-building\", '\\uf2e1'),\n    MDI_HOSPITAL_MARKER(\"mdi-hospital-marker\", '\\uf2e2'),\n    MDI_HOTEL(\"mdi-hotel\", '\\uf2e3'),\n    MDI_HOUZZ(\"mdi-houzz\", '\\uf2e4'),\n    MDI_HOUZZ_BOX(\"mdi-houzz-box\", '\\uf2e5'),\n    MDI_HUMAN(\"mdi-human\", '\\uf2e6'),\n    MDI_HUMAN_CHILD(\"mdi-human-child\", '\\uf2e7'),\n    MDI_HUMAN_FEMALE(\"mdi-human-female\", '\\uf649'),\n    MDI_HUMAN_GREETING(\"mdi-human-greeting\", '\\uf64a'),\n    MDI_HUMAN_HANDSDOWN(\"mdi-human-handsdown\", '\\uf64b'),\n    MDI_HUMAN_HANDSUP(\"mdi-human-handsup\", '\\uf64c'),\n    MDI_HUMAN_MALE(\"mdi-human-male\", '\\uf64d'),\n    MDI_HUMAN_MALE_FEMALE(\"mdi-human-male-female\", '\\uf2e8'),\n    MDI_HUMAN_PREGNANT(\"mdi-human-pregnant\", '\\uf5cf'),\n    MDI_IMAGE(\"mdi-image\", '\\uf2e9'),\n    MDI_IMAGE_ALBUM(\"mdi-image-album\", '\\uf2ea'),\n    MDI_IMAGE_AREA(\"mdi-image-area\", '\\uf2eb'),\n    MDI_IMAGE_AREA_CLOSE(\"mdi-image-area-close\", '\\uf2ec'),\n    MDI_IMAGE_BROKEN(\"mdi-image-broken\", '\\uf2ed'),\n    MDI_IMAGE_BROKEN_VARIANT(\"mdi-image-broken-variant\", '\\uf2ee'),\n    MDI_IMAGE_FILTER(\"mdi-image-filter\", '\\uf2ef'),\n    MDI_IMAGE_FILTER_BLACK_WHITE(\"mdi-image-filter-black-white\", '\\uf2f0'),\n    MDI_IMAGE_FILTER_CENTER_FOCUS(\"mdi-image-filter-center-focus\", '\\uf2f1'),\n    MDI_IMAGE_FILTER_CENTER_FOCUS_WEAK(\"mdi-image-filter-center-focus-weak\", '\\uf2f2'),\n    MDI_IMAGE_FILTER_DRAMA(\"mdi-image-filter-drama\", '\\uf2f3'),\n    MDI_IMAGE_FILTER_FRAMES(\"mdi-image-filter-frames\", '\\uf2f4'),\n    MDI_IMAGE_FILTER_HDR(\"mdi-image-filter-hdr\", '\\uf2f5'),\n    MDI_IMAGE_FILTER_NONE(\"mdi-image-filter-none\", '\\uf2f6'),\n    MDI_IMAGE_FILTER_TILT_SHIFT(\"mdi-image-filter-tilt-shift\", '\\uf2f7'),\n    MDI_IMAGE_FILTER_VINTAGE(\"mdi-image-filter-vintage\", '\\uf2f8'),\n    MDI_IMAGE_MULTIPLE(\"mdi-image-multiple\", '\\uf2f9'),\n    MDI_IMPORT(\"mdi-import\", '\\uf2fa'),\n    MDI_INBOX(\"mdi-inbox\", '\\uf686'),\n    MDI_INBOX_ARROW_DOWN(\"mdi-inbox-arrow-down\", '\\uf2fb'),\n    MDI_INBOX_ARROW_UP(\"mdi-inbox-arrow-up\", '\\uf3d1'),\n    MDI_INCOGNITO(\"mdi-incognito\", '\\uf5f9'),\n    MDI_INFORMATION(\"mdi-information\", '\\uf2fc'),\n    MDI_INFORMATION_OUTLINE(\"mdi-information-outline\", '\\uf2fd'),\n    MDI_INFORMATION_VARIANT(\"mdi-information-variant\", '\\uf64e'),\n    MDI_INSTAGRAM(\"mdi-instagram\", '\\uf2fe'),\n    MDI_INSTAPAPER(\"mdi-instapaper\", '\\uf2ff'),\n    MDI_INTERNET_EXPLORER(\"mdi-internet-explorer\", '\\uf300'),\n    MDI_INVERT_COLORS(\"mdi-invert-colors\", '\\uf301'),\n    MDI_ITUNES(\"mdi-itunes\", '\\uf676'),\n    MDI_JEEPNEY(\"mdi-jeepney\", '\\uf302'),\n    MDI_JIRA(\"mdi-jira\", '\\uf303'),\n    MDI_JSFIDDLE(\"mdi-jsfiddle\", '\\uf304'),\n    MDI_JSON(\"mdi-json\", '\\uf626'),\n    MDI_KEG(\"mdi-keg\", '\\uf305'),\n    MDI_KETTLE(\"mdi-kettle\", '\\uf5fa'),\n    MDI_KEY(\"mdi-key\", '\\uf306'),\n    MDI_KEYBOARD(\"mdi-keyboard\", '\\uf30c'),\n    MDI_KEYBOARD_BACKSPACE(\"mdi-keyboard-backspace\", '\\uf30d'),\n    MDI_KEYBOARD_CAPS(\"mdi-keyboard-caps\", '\\uf30e'),\n    MDI_KEYBOARD_CLOSE(\"mdi-keyboard-close\", '\\uf30f'),\n    MDI_KEYBOARD_OFF(\"mdi-keyboard-off\", '\\uf310'),\n    MDI_KEYBOARD_RETURN(\"mdi-keyboard-return\", '\\uf311'),\n    MDI_KEYBOARD_TAB(\"mdi-keyboard-tab\", '\\uf312'),\n    MDI_KEYBOARD_VARIANT(\"mdi-keyboard-variant\", '\\uf313'),\n    MDI_KEY_CHANGE(\"mdi-key-change\", '\\uf307'),\n    MDI_KEY_MINUS(\"mdi-key-minus\", '\\uf308'),\n    MDI_KEY_PLUS(\"mdi-key-plus\", '\\uf309'),\n    MDI_KEY_REMOVE(\"mdi-key-remove\", '\\uf30a'),\n    MDI_KEY_VARIANT(\"mdi-key-variant\", '\\uf30b'),\n    MDI_KODI(\"mdi-kodi\", '\\uf314'),\n    MDI_LABEL(\"mdi-label\", '\\uf315'),\n    MDI_LABEL_OUTLINE(\"mdi-label-outline\", '\\uf316'),\n    MDI_LAMBDA(\"mdi-lambda\", '\\uf627'),\n    MDI_LAMP(\"mdi-lamp\", '\\uf6b4'),\n    MDI_LAN(\"mdi-lan\", '\\uf317'),\n    MDI_LANGUAGE_C(\"mdi-language-c\", '\\uf671'),\n    MDI_LANGUAGE_CPP(\"mdi-language-cpp\", '\\uf672'),\n    MDI_LANGUAGE_CSHARP(\"mdi-language-csharp\", '\\uf31b'),\n    MDI_LANGUAGE_CSS3(\"mdi-language-css3\", '\\uf31c'),\n    MDI_LANGUAGE_HTML5(\"mdi-language-html5\", '\\uf31d'),\n    MDI_LANGUAGE_JAVASCRIPT(\"mdi-language-javascript\", '\\uf31e'),\n    MDI_LANGUAGE_PHP(\"mdi-language-php\", '\\uf31f'),\n    MDI_LANGUAGE_PYTHON(\"mdi-language-python\", '\\uf320'),\n    MDI_LANGUAGE_PYTHON_TEXT(\"mdi-language-python-text\", '\\uf321'),\n    MDI_LAN_CONNECT(\"mdi-lan-connect\", '\\uf318'),\n    MDI_LAN_DISCONNECT(\"mdi-lan-disconnect\", '\\uf319'),\n    MDI_LAN_PENDING(\"mdi-lan-pending\", '\\uf31a'),\n    MDI_LAPTOP(\"mdi-laptop\", '\\uf322'),\n    MDI_LAPTOP_CHROMEBOOK(\"mdi-laptop-chromebook\", '\\uf323'),\n    MDI_LAPTOP_MAC(\"mdi-laptop-mac\", '\\uf324'),\n    MDI_LAPTOP_WINDOWS(\"mdi-laptop-windows\", '\\uf325'),\n    MDI_LASTFM(\"mdi-lastfm\", '\\uf326'),\n    MDI_LAUNCH(\"mdi-launch\", '\\uf327'),\n    MDI_LAYERS(\"mdi-layers\", '\\uf328'),\n    MDI_LAYERS_OFF(\"mdi-layers-off\", '\\uf329'),\n    MDI_LEAD_PENCIL(\"mdi-lead-pencil\", '\\uf64f'),\n    MDI_LEAF(\"mdi-leaf\", '\\uf32a'),\n    MDI_LED_OFF(\"mdi-led-off\", '\\uf32b'),\n    MDI_LED_ON(\"mdi-led-on\", '\\uf32c'),\n    MDI_LED_OUTLINE(\"mdi-led-outline\", '\\uf32d'),\n    MDI_LED_VARIANT_OFF(\"mdi-led-variant-off\", '\\uf32e'),\n    MDI_LED_VARIANT_ON(\"mdi-led-variant-on\", '\\uf32f'),\n    MDI_LED_VARIANT_OUTLINE(\"mdi-led-variant-outline\", '\\uf330'),\n    MDI_LIBRARY(\"mdi-library\", '\\uf331'),\n    MDI_LIBRARY_BOOKS(\"mdi-library-books\", '\\uf332'),\n    MDI_LIBRARY_MUSIC(\"mdi-library-music\", '\\uf333'),\n    MDI_LIBRARY_PLUS(\"mdi-library-plus\", '\\uf334'),\n    MDI_LIGHTBULB(\"mdi-lightbulb\", '\\uf335'),\n    MDI_LIGHTBULB_OUTLINE(\"mdi-lightbulb-outline\", '\\uf336'),\n    MDI_LINK(\"mdi-link\", '\\uf337'),\n    MDI_LINKEDIN(\"mdi-linkedin\", '\\uf33b'),\n    MDI_LINKEDIN_BOX(\"mdi-linkedin-box\", '\\uf33c'),\n    MDI_LINK_OFF(\"mdi-link-off\", '\\uf338'),\n    MDI_LINK_VARIANT(\"mdi-link-variant\", '\\uf339'),\n    MDI_LINK_VARIANT_OFF(\"mdi-link-variant-off\", '\\uf33a'),\n    MDI_LINUX(\"mdi-linux\", '\\uf33d'),\n    MDI_LOCK(\"mdi-lock\", '\\uf33e'),\n    MDI_LOCK_OPEN(\"mdi-lock-open\", '\\uf33f'),\n    MDI_LOCK_OPEN_OUTLINE(\"mdi-lock-open-outline\", '\\uf340'),\n    MDI_LOCK_OUTLINE(\"mdi-lock-outline\", '\\uf341'),\n    MDI_LOCK_PLUS(\"mdi-lock-plus\", '\\uf5fb'),\n    MDI_LOGIN(\"mdi-login\", '\\uf342'),\n    MDI_LOGIN_VARIANT(\"mdi-login-variant\", '\\uf5fc'),\n    MDI_LOGOUT(\"mdi-logout\", '\\uf343'),\n    MDI_LOGOUT_VARIANT(\"mdi-logout-variant\", '\\uf5fd'),\n    MDI_LOOKS(\"mdi-looks\", '\\uf344'),\n    MDI_LOUPE(\"mdi-loupe\", '\\uf345'),\n    MDI_LUMX(\"mdi-lumx\", '\\uf346'),\n    MDI_MAGNET(\"mdi-magnet\", '\\uf347'),\n    MDI_MAGNET_ON(\"mdi-magnet-on\", '\\uf348'),\n    MDI_MAGNIFY(\"mdi-magnify\", '\\uf349'),\n    MDI_MAGNIFY_MINUS(\"mdi-magnify-minus\", '\\uf34a'),\n    MDI_MAGNIFY_PLUS(\"mdi-magnify-plus\", '\\uf34b'),\n    MDI_MAIL_RU(\"mdi-mail-ru\", '\\uf34c'),\n    MDI_MAP(\"mdi-map\", '\\uf34d'),\n    MDI_MAP_MARKER(\"mdi-map-marker\", '\\uf34e'),\n    MDI_MAP_MARKER_CIRCLE(\"mdi-map-marker-circle\", '\\uf34f'),\n    MDI_MAP_MARKER_MINUS(\"mdi-map-marker-minus\", '\\uf650'),\n    MDI_MAP_MARKER_MULTIPLE(\"mdi-map-marker-multiple\", '\\uf350'),\n    MDI_MAP_MARKER_OFF(\"mdi-map-marker-off\", '\\uf351'),\n    MDI_MAP_MARKER_PLUS(\"mdi-map-marker-plus\", '\\uf651'),\n    MDI_MAP_MARKER_RADIUS(\"mdi-map-marker-radius\", '\\uf352'),\n    MDI_MARGIN(\"mdi-margin\", '\\uf353'),\n    MDI_MARKDOWN(\"mdi-markdown\", '\\uf354'),\n    MDI_MARKER(\"mdi-marker\", '\\uf652'),\n    MDI_MARKER_CHECK(\"mdi-marker-check\", '\\uf355'),\n    MDI_MARTINI(\"mdi-martini\", '\\uf356'),\n    MDI_MATERIAL_UI(\"mdi-material-ui\", '\\uf357'),\n    MDI_MATH_COMPASS(\"mdi-math-compass\", '\\uf358'),\n    MDI_MATRIX(\"mdi-matrix\", '\\uf628'),\n    MDI_MAXCDN(\"mdi-maxcdn\", '\\uf359'),\n    MDI_MEDIUM(\"mdi-medium\", '\\uf35a'),\n    MDI_MEMORY(\"mdi-memory\", '\\uf35b'),\n    MDI_MENU(\"mdi-menu\", '\\uf35c'),\n    MDI_MENU_DOWN(\"mdi-menu-down\", '\\uf35d'),\n    MDI_MENU_DOWN_OUTLINE(\"mdi-menu-down-outline\", '\\uf6b5'),\n    MDI_MENU_LEFT(\"mdi-menu-left\", '\\uf35e'),\n    MDI_MENU_RIGHT(\"mdi-menu-right\", '\\uf35f'),\n    MDI_MENU_UP(\"mdi-menu-up\", '\\uf360'),\n    MDI_MENU_UP_OUTLINE(\"mdi-menu-up-outline\", '\\uf6b6'),\n    MDI_MESSAGE(\"mdi-message\", '\\uf361'),\n    MDI_MESSAGE_ALERT(\"mdi-message-alert\", '\\uf362'),\n    MDI_MESSAGE_BULLETED(\"mdi-message-bulleted\", '\\uf6a1'),\n    MDI_MESSAGE_BULLETED_OFF(\"mdi-message-bulleted-off\", '\\uf6a2'),\n    MDI_MESSAGE_DRAW(\"mdi-message-draw\", '\\uf363'),\n    MDI_MESSAGE_IMAGE(\"mdi-message-image\", '\\uf364'),\n    MDI_MESSAGE_OUTLINE(\"mdi-message-outline\", '\\uf365'),\n    MDI_MESSAGE_PLUS(\"mdi-message-plus\", '\\uf653'),\n    MDI_MESSAGE_PROCESSING(\"mdi-message-processing\", '\\uf366'),\n    MDI_MESSAGE_REPLY(\"mdi-message-reply\", '\\uf367'),\n    MDI_MESSAGE_REPLY_TEXT(\"mdi-message-reply-text\", '\\uf368'),\n    MDI_MESSAGE_TEXT(\"mdi-message-text\", '\\uf369'),\n    MDI_MESSAGE_TEXT_OUTLINE(\"mdi-message-text-outline\", '\\uf36a'),\n    MDI_MESSAGE_VIDEO(\"mdi-message-video\", '\\uf36b'),\n    MDI_METEOR(\"mdi-meteor\", '\\uf629'),\n    MDI_MICROPHONE(\"mdi-microphone\", '\\uf36c'),\n    MDI_MICROPHONE_OFF(\"mdi-microphone-off\", '\\uf36d'),\n    MDI_MICROPHONE_OUTLINE(\"mdi-microphone-outline\", '\\uf36e'),\n    MDI_MICROPHONE_SETTINGS(\"mdi-microphone-settings\", '\\uf36f'),\n    MDI_MICROPHONE_VARIANT(\"mdi-microphone-variant\", '\\uf370'),\n    MDI_MICROPHONE_VARIANT_OFF(\"mdi-microphone-variant-off\", '\\uf371'),\n    MDI_MICROSCOPE(\"mdi-microscope\", '\\uf654'),\n    MDI_MICROSOFT(\"mdi-microsoft\", '\\uf372'),\n    MDI_MINECRAFT(\"mdi-minecraft\", '\\uf373'),\n    MDI_MINUS(\"mdi-minus\", '\\uf374'),\n    MDI_MINUS_BOX(\"mdi-minus-box\", '\\uf375'),\n    MDI_MINUS_CIRCLE(\"mdi-minus-circle\", '\\uf376'),\n    MDI_MINUS_CIRCLE_OUTLINE(\"mdi-minus-circle-outline\", '\\uf377'),\n    MDI_MINUS_NETWORK(\"mdi-minus-network\", '\\uf378'),\n    MDI_MIXCLOUD(\"mdi-mixcloud\", '\\uf62a'),\n    MDI_MONITOR(\"mdi-monitor\", '\\uf379'),\n    MDI_MONITOR_MULTIPLE(\"mdi-monitor-multiple\", '\\uf37a'),\n    MDI_MORE(\"mdi-more\", '\\uf37b'),\n    MDI_MOTORBIKE(\"mdi-motorbike\", '\\uf37c'),\n    MDI_MOUSE(\"mdi-mouse\", '\\uf37d'),\n    MDI_MOUSE_OFF(\"mdi-mouse-off\", '\\uf37e'),\n    MDI_MOUSE_VARIANT(\"mdi-mouse-variant\", '\\uf37f'),\n    MDI_MOUSE_VARIANT_OFF(\"mdi-mouse-variant-off\", '\\uf380'),\n    MDI_MOVE_RESIZE(\"mdi-move-resize\", '\\uf655'),\n    MDI_MOVE_RESIZE_VARIANT(\"mdi-move-resize-variant\", '\\uf656'),\n    MDI_MOVIE(\"mdi-movie\", '\\uf381'),\n    MDI_MULTIPLICATION(\"mdi-multiplication\", '\\uf382'),\n    MDI_MULTIPLICATION_BOX(\"mdi-multiplication-box\", '\\uf383'),\n    MDI_MUSIC_BOX(\"mdi-music-box\", '\\uf384'),\n    MDI_MUSIC_BOX_OUTLINE(\"mdi-music-box-outline\", '\\uf385'),\n    MDI_MUSIC_CIRCLE(\"mdi-music-circle\", '\\uf386'),\n    MDI_MUSIC_NOTE(\"mdi-music-note\", '\\uf387'),\n    MDI_MUSIC_NOTE_BLUETOOTH(\"mdi-music-note-bluetooth\", '\\uf5fe'),\n    MDI_MUSIC_NOTE_BLUETOOTH_OFF(\"mdi-music-note-bluetooth-off\", '\\uf5ff'),\n    MDI_MUSIC_NOTE_EIGHTH(\"mdi-music-note-eighth\", '\\uf388'),\n    MDI_MUSIC_NOTE_HALF(\"mdi-music-note-half\", '\\uf389'),\n    MDI_MUSIC_NOTE_OFF(\"mdi-music-note-off\", '\\uf38a'),\n    MDI_MUSIC_NOTE_QUARTER(\"mdi-music-note-quarter\", '\\uf38b'),\n    MDI_MUSIC_NOTE_SIXTEENTH(\"mdi-music-note-sixteenth\", '\\uf38c'),\n    MDI_MUSIC_NOTE_WHOLE(\"mdi-music-note-whole\", '\\uf38d'),\n    MDI_NATURE(\"mdi-nature\", '\\uf38e'),\n    MDI_NATURE_PEOPLE(\"mdi-nature-people\", '\\uf38f'),\n    MDI_NAVIGATION(\"mdi-navigation\", '\\uf390'),\n    MDI_NEAR_ME(\"mdi-near-me\", '\\uf5cd'),\n    MDI_NEEDLE(\"mdi-needle\", '\\uf391'),\n    MDI_NEST_PROTECT(\"mdi-nest-protect\", '\\uf392'),\n    MDI_NEST_THERMOSTAT(\"mdi-nest-thermostat\", '\\uf393'),\n    MDI_NEWSPAPER(\"mdi-newspaper\", '\\uf395'),\n    MDI_NEW_BOX(\"mdi-new-box\", '\\uf394'),\n    MDI_NFC(\"mdi-nfc\", '\\uf396'),\n    MDI_NFC_TAP(\"mdi-nfc-tap\", '\\uf397'),\n    MDI_NFC_VARIANT(\"mdi-nfc-variant\", '\\uf398'),\n    MDI_NODEJS(\"mdi-nodejs\", '\\uf399'),\n    MDI_NOTE(\"mdi-note\", '\\uf39a'),\n    MDI_NOTE_MULTIPLE(\"mdi-note-multiple\", '\\uf6b7'),\n    MDI_NOTE_MULTIPLE_OUTLINE(\"mdi-note-multiple-outline\", '\\uf6b8'),\n    MDI_NOTE_OUTLINE(\"mdi-note-outline\", '\\uf39b'),\n    MDI_NOTE_PLUS(\"mdi-note-plus\", '\\uf39c'),\n    MDI_NOTE_PLUS_OUTLINE(\"mdi-note-plus-outline\", '\\uf39d'),\n    MDI_NOTE_TEXT(\"mdi-note-text\", '\\uf39e'),\n    MDI_NOTIFICATION_CLEAR_ALL(\"mdi-notification-clear-all\", '\\uf39f'),\n    MDI_NUKE(\"mdi-nuke\", '\\uf6a3'),\n    MDI_NUMERIC(\"mdi-numeric\", '\\uf3a0'),\n    MDI_NUMERIC_0_BOX(\"mdi-numeric-0-box\", '\\uf3a1'),\n    MDI_NUMERIC_0_BOX_MULTIPLE_OUTLINE(\"mdi-numeric-0-box-multiple-outline\", '\\uf3a2'),\n    MDI_NUMERIC_0_BOX_OUTLINE(\"mdi-numeric-0-box-outline\", '\\uf3a3'),\n    MDI_NUMERIC_1_BOX(\"mdi-numeric-1-box\", '\\uf3a4'),\n    MDI_NUMERIC_1_BOX_MULTIPLE_OUTLINE(\"mdi-numeric-1-box-multiple-outline\", '\\uf3a5'),\n    MDI_NUMERIC_1_BOX_OUTLINE(\"mdi-numeric-1-box-outline\", '\\uf3a6'),\n    MDI_NUMERIC_2_BOX(\"mdi-numeric-2-box\", '\\uf3a7'),\n    MDI_NUMERIC_2_BOX_MULTIPLE_OUTLINE(\"mdi-numeric-2-box-multiple-outline\", '\\uf3a8'),\n    MDI_NUMERIC_2_BOX_OUTLINE(\"mdi-numeric-2-box-outline\", '\\uf3a9'),\n    MDI_NUMERIC_3_BOX(\"mdi-numeric-3-box\", '\\uf3aa'),\n    MDI_NUMERIC_3_BOX_MULTIPLE_OUTLINE(\"mdi-numeric-3-box-multiple-outline\", '\\uf3ab'),\n    MDI_NUMERIC_3_BOX_OUTLINE(\"mdi-numeric-3-box-outline\", '\\uf3ac'),\n    MDI_NUMERIC_4_BOX(\"mdi-numeric-4-box\", '\\uf3ad'),\n    MDI_NUMERIC_4_BOX_MULTIPLE_OUTLINE(\"mdi-numeric-4-box-multiple-outline\", '\\uf3ae'),\n    MDI_NUMERIC_4_BOX_OUTLINE(\"mdi-numeric-4-box-outline\", '\\uf3af'),\n    MDI_NUMERIC_5_BOX(\"mdi-numeric-5-box\", '\\uf3b0'),\n    MDI_NUMERIC_5_BOX_MULTIPLE_OUTLINE(\"mdi-numeric-5-box-multiple-outline\", '\\uf3b1'),\n    MDI_NUMERIC_5_BOX_OUTLINE(\"mdi-numeric-5-box-outline\", '\\uf3b2'),\n    MDI_NUMERIC_6_BOX(\"mdi-numeric-6-box\", '\\uf3b3'),\n    MDI_NUMERIC_6_BOX_MULTIPLE_OUTLINE(\"mdi-numeric-6-box-multiple-outline\", '\\uf3b4'),\n    MDI_NUMERIC_6_BOX_OUTLINE(\"mdi-numeric-6-box-outline\", '\\uf3b5'),\n    MDI_NUMERIC_7_BOX(\"mdi-numeric-7-box\", '\\uf3b6'),\n    MDI_NUMERIC_7_BOX_MULTIPLE_OUTLINE(\"mdi-numeric-7-box-multiple-outline\", '\\uf3b7'),\n    MDI_NUMERIC_7_BOX_OUTLINE(\"mdi-numeric-7-box-outline\", '\\uf3b8'),\n    MDI_NUMERIC_8_BOX(\"mdi-numeric-8-box\", '\\uf3b9'),\n    MDI_NUMERIC_8_BOX_MULTIPLE_OUTLINE(\"mdi-numeric-8-box-multiple-outline\", '\\uf3ba'),\n    MDI_NUMERIC_8_BOX_OUTLINE(\"mdi-numeric-8-box-outline\", '\\uf3bb'),\n    MDI_NUMERIC_9_BOX(\"mdi-numeric-9-box\", '\\uf3bc'),\n    MDI_NUMERIC_9_BOX_MULTIPLE_OUTLINE(\"mdi-numeric-9-box-multiple-outline\", '\\uf3bd'),\n    MDI_NUMERIC_9_BOX_OUTLINE(\"mdi-numeric-9-box-outline\", '\\uf3be'),\n    MDI_NUMERIC_9_PLUS_BOX(\"mdi-numeric-9-plus-box\", '\\uf3bf'),\n    MDI_NUMERIC_9_PLUS_BOX_MULTIPLE_OUTLINE(\"mdi-numeric-9-plus-box-multiple-outline\", '\\uf3c0'),\n    MDI_NUMERIC_9_PLUS_BOX_OUTLINE(\"mdi-numeric-9-plus-box-outline\", '\\uf3c1'),\n    MDI_NUTRITION(\"mdi-nutrition\", '\\uf3c2'),\n    MDI_OAR(\"mdi-oar\", '\\uf67b'),\n    MDI_OCTAGON(\"mdi-octagon\", '\\uf3c3'),\n    MDI_OCTAGON_OUTLINE(\"mdi-octagon-outline\", '\\uf3c4'),\n    MDI_ODNOKLASSNIKI(\"mdi-odnoklassniki\", '\\uf3c5'),\n    MDI_OFFICE(\"mdi-office\", '\\uf3c6'),\n    MDI_OIL(\"mdi-oil\", '\\uf3c7'),\n    MDI_OIL_TEMPERATURE(\"mdi-oil-temperature\", '\\uf3c8'),\n    MDI_OMEGA(\"mdi-omega\", '\\uf3c9'),\n    MDI_ONEDRIVE(\"mdi-onedrive\", '\\uf3ca'),\n    MDI_OPACITY(\"mdi-opacity\", '\\uf5cc'),\n    MDI_OPENID(\"mdi-openid\", '\\uf3cd'),\n    MDI_OPEN_IN_APP(\"mdi-open-in-app\", '\\uf3cb'),\n    MDI_OPEN_IN_NEW(\"mdi-open-in-new\", '\\uf3cc'),\n    MDI_OPERA(\"mdi-opera\", '\\uf3ce'),\n    MDI_ORNAMENT(\"mdi-ornament\", '\\uf3cf'),\n    MDI_ORNAMENT_VARIANT(\"mdi-ornament-variant\", '\\uf3d0'),\n    MDI_OWL(\"mdi-owl\", '\\uf3d2'),\n    MDI_PACKAGE(\"mdi-package\", '\\uf3d3'),\n    MDI_PACKAGE_DOWN(\"mdi-package-down\", '\\uf3d4'),\n    MDI_PACKAGE_UP(\"mdi-package-up\", '\\uf3d5'),\n    MDI_PACKAGE_VARIANT(\"mdi-package-variant\", '\\uf3d6'),\n    MDI_PACKAGE_VARIANT_CLOSED(\"mdi-package-variant-closed\", '\\uf3d7'),\n    MDI_PAGE_FIRST(\"mdi-page-first\", '\\uf600'),\n    MDI_PAGE_LAST(\"mdi-page-last\", '\\uf601'),\n    MDI_PALETTE(\"mdi-palette\", '\\uf3d8'),\n    MDI_PALETTE_ADVANCED(\"mdi-palette-advanced\", '\\uf3d9'),\n    MDI_PANDA(\"mdi-panda\", '\\uf3da'),\n    MDI_PANDORA(\"mdi-pandora\", '\\uf3db'),\n    MDI_PANORAMA(\"mdi-panorama\", '\\uf3dc'),\n    MDI_PANORAMA_FISHEYE(\"mdi-panorama-fisheye\", '\\uf3dd'),\n    MDI_PANORAMA_HORIZONTAL(\"mdi-panorama-horizontal\", '\\uf3de'),\n    MDI_PANORAMA_VERTICAL(\"mdi-panorama-vertical\", '\\uf3df'),\n    MDI_PANORAMA_WIDE_ANGLE(\"mdi-panorama-wide-angle\", '\\uf3e0'),\n    MDI_PAPERCLIP(\"mdi-paperclip\", '\\uf3e2'),\n    MDI_PAPER_CUT_VERTICAL(\"mdi-paper-cut-vertical\", '\\uf3e1'),\n    MDI_PARKING(\"mdi-parking\", '\\uf3e3'),\n    MDI_PAUSE(\"mdi-pause\", '\\uf3e4'),\n    MDI_PAUSE_CIRCLE(\"mdi-pause-circle\", '\\uf3e5'),\n    MDI_PAUSE_CIRCLE_OUTLINE(\"mdi-pause-circle-outline\", '\\uf3e6'),\n    MDI_PAUSE_OCTAGON(\"mdi-pause-octagon\", '\\uf3e7'),\n    MDI_PAUSE_OCTAGON_OUTLINE(\"mdi-pause-octagon-outline\", '\\uf3e8'),\n    MDI_PAW(\"mdi-paw\", '\\uf3e9'),\n    MDI_PAW_OFF(\"mdi-paw-off\", '\\uf657'),\n    MDI_PEN(\"mdi-pen\", '\\uf3ea'),\n    MDI_PENCIL(\"mdi-pencil\", '\\uf3eb'),\n    MDI_PENCIL_BOX(\"mdi-pencil-box\", '\\uf3ec'),\n    MDI_PENCIL_BOX_OUTLINE(\"mdi-pencil-box-outline\", '\\uf3ed'),\n    MDI_PENCIL_LOCK(\"mdi-pencil-lock\", '\\uf3ee'),\n    MDI_PENCIL_OFF(\"mdi-pencil-off\", '\\uf3ef'),\n    MDI_PERCENT(\"mdi-percent\", '\\uf3f0'),\n    MDI_PHARMACY(\"mdi-pharmacy\", '\\uf3f1'),\n    MDI_PHONE(\"mdi-phone\", '\\uf3f2'),\n    MDI_PHONE_BLUETOOTH(\"mdi-phone-bluetooth\", '\\uf3f3'),\n    MDI_PHONE_CLASSIC(\"mdi-phone-classic\", '\\uf602'),\n    MDI_PHONE_FORWARD(\"mdi-phone-forward\", '\\uf3f4'),\n    MDI_PHONE_HANGUP(\"mdi-phone-hangup\", '\\uf3f5'),\n    MDI_PHONE_INCOMING(\"mdi-phone-incoming\", '\\uf3f7'),\n    MDI_PHONE_IN_TALK(\"mdi-phone-in-talk\", '\\uf3f6'),\n    MDI_PHONE_LOCKED(\"mdi-phone-locked\", '\\uf3f8'),\n    MDI_PHONE_LOG(\"mdi-phone-log\", '\\uf3f9'),\n    MDI_PHONE_MINUS(\"mdi-phone-minus\", '\\uf658'),\n    MDI_PHONE_MISSED(\"mdi-phone-missed\", '\\uf3fa'),\n    MDI_PHONE_OUTGOING(\"mdi-phone-outgoing\", '\\uf3fb'),\n    MDI_PHONE_PAUSED(\"mdi-phone-paused\", '\\uf3fc'),\n    MDI_PHONE_PLUS(\"mdi-phone-plus\", '\\uf659'),\n    MDI_PHONE_SETTINGS(\"mdi-phone-settings\", '\\uf3fd'),\n    MDI_PHONE_VOIP(\"mdi-phone-voip\", '\\uf3fe'),\n    MDI_PI(\"mdi-pi\", '\\uf3ff'),\n    MDI_PIANO(\"mdi-piano\", '\\uf67c'),\n    MDI_PIG(\"mdi-pig\", '\\uf401'),\n    MDI_PILL(\"mdi-pill\", '\\uf402'),\n    MDI_PIN(\"mdi-pin\", '\\uf403'),\n    MDI_PINE_TREE(\"mdi-pine-tree\", '\\uf405'),\n    MDI_PINE_TREE_BOX(\"mdi-pine-tree-box\", '\\uf406'),\n    MDI_PINTEREST(\"mdi-pinterest\", '\\uf407'),\n    MDI_PINTEREST_BOX(\"mdi-pinterest-box\", '\\uf408'),\n    MDI_PIN_OFF(\"mdi-pin-off\", '\\uf404'),\n    MDI_PIZZA(\"mdi-pizza\", '\\uf409'),\n    MDI_PI_BOX(\"mdi-pi-box\", '\\uf400'),\n    MDI_PLANE_SHIELD(\"mdi-plane-shield\", '\\uf6ba'),\n    MDI_PLAY(\"mdi-play\", '\\uf40a'),\n    MDI_PLAYLIST_CHECK(\"mdi-playlist-check\", '\\uf5c7'),\n    MDI_PLAYLIST_MINUS(\"mdi-playlist-minus\", '\\uf410'),\n    MDI_PLAYLIST_PLAY(\"mdi-playlist-play\", '\\uf411'),\n    MDI_PLAYLIST_PLUS(\"mdi-playlist-plus\", '\\uf412'),\n    MDI_PLAYLIST_REMOVE(\"mdi-playlist-remove\", '\\uf413'),\n    MDI_PLAYSTATION(\"mdi-playstation\", '\\uf414'),\n    MDI_PLAY_BOX_OUTLINE(\"mdi-play-box-outline\", '\\uf40b'),\n    MDI_PLAY_CIRCLE(\"mdi-play-circle\", '\\uf40c'),\n    MDI_PLAY_CIRCLE_OUTLINE(\"mdi-play-circle-outline\", '\\uf40d'),\n    MDI_PLAY_PAUSE(\"mdi-play-pause\", '\\uf40e'),\n    MDI_PLAY_PROTECTED_CONTENT(\"mdi-play-protected-content\", '\\uf40f'),\n    MDI_PLEX(\"mdi-plex\", '\\uf6b9'),\n    MDI_PLUS(\"mdi-plus\", '\\uf415'),\n    MDI_PLUS_BOX(\"mdi-plus-box\", '\\uf416'),\n    MDI_PLUS_CIRCLE(\"mdi-plus-circle\", '\\uf417'),\n    MDI_PLUS_CIRCLE_MULTIPLE_OUTLINE(\"mdi-plus-circle-multiple-outline\", '\\uf418'),\n    MDI_PLUS_CIRCLE_OUTLINE(\"mdi-plus-circle-outline\", '\\uf419'),\n    MDI_PLUS_NETWORK(\"mdi-plus-network\", '\\uf41a'),\n    MDI_PLUS_ONE(\"mdi-plus-one\", '\\uf41b'),\n    MDI_POCKET(\"mdi-pocket\", '\\uf41c'),\n    MDI_POKEBALL(\"mdi-pokeball\", '\\uf41d'),\n    MDI_POLAROID(\"mdi-polaroid\", '\\uf41e'),\n    MDI_POLL(\"mdi-poll\", '\\uf41f'),\n    MDI_POLL_BOX(\"mdi-poll-box\", '\\uf420'),\n    MDI_POLYMER(\"mdi-polymer\", '\\uf421'),\n    MDI_POOL(\"mdi-pool\", '\\uf606'),\n    MDI_POPCORN(\"mdi-popcorn\", '\\uf422'),\n    MDI_POT(\"mdi-pot\", '\\uf65a'),\n    MDI_POT_MIX(\"mdi-pot-mix\", '\\uf65b'),\n    MDI_POUND(\"mdi-pound\", '\\uf423'),\n    MDI_POUND_BOX(\"mdi-pound-box\", '\\uf424'),\n    MDI_POWER(\"mdi-power\", '\\uf425'),\n    MDI_POWER_PLUG(\"mdi-power-plug\", '\\uf6a4'),\n    MDI_POWER_PLUG_OFF(\"mdi-power-plug-off\", '\\uf6a5'),\n    MDI_POWER_SETTINGS(\"mdi-power-settings\", '\\uf426'),\n    MDI_POWER_SOCKET(\"mdi-power-socket\", '\\uf427'),\n    MDI_PRESENTATION(\"mdi-presentation\", '\\uf428'),\n    MDI_PRESENTATION_PLAY(\"mdi-presentation-play\", '\\uf429'),\n    MDI_PRINTER(\"mdi-printer\", '\\uf42a'),\n    MDI_PRINTER_3D(\"mdi-printer-3d\", '\\uf42b'),\n    MDI_PRINTER_ALERT(\"mdi-printer-alert\", '\\uf42c'),\n    MDI_PRIORITY_HIGH(\"mdi-priority-high\", '\\uf603'),\n    MDI_PRIORITY_LOW(\"mdi-priority-low\", '\\uf604'),\n    MDI_PROFESSIONAL_HEXAGON(\"mdi-professional-hexagon\", '\\uf42d'),\n    MDI_PROJECTOR(\"mdi-projector\", '\\uf42e'),\n    MDI_PROJECTOR_SCREEN(\"mdi-projector-screen\", '\\uf42f'),\n    MDI_PUBLISH(\"mdi-publish\", '\\uf6a6'),\n    MDI_PULSE(\"mdi-pulse\", '\\uf430'),\n    MDI_PUZZLE(\"mdi-puzzle\", '\\uf431'),\n    MDI_QQCHAT(\"mdi-qqchat\", '\\uf605'),\n    MDI_QRCODE(\"mdi-qrcode\", '\\uf432'),\n    MDI_QRCODE_SCAN(\"mdi-qrcode-scan\", '\\uf433'),\n    MDI_QUADCOPTER(\"mdi-quadcopter\", '\\uf434'),\n    MDI_QUALITY_HIGH(\"mdi-quality-high\", '\\uf435'),\n    MDI_QUICKTIME(\"mdi-quicktime\", '\\uf436'),\n    MDI_RADAR(\"mdi-radar\", '\\uf437'),\n    MDI_RADIATOR(\"mdi-radiator\", '\\uf438'),\n    MDI_RADIO(\"mdi-radio\", '\\uf439'),\n    MDI_RADIOACTIVE(\"mdi-radioactive\", '\\uf43c'),\n    MDI_RADIOBOX_BLANK(\"mdi-radiobox-blank\", '\\uf43d'),\n    MDI_RADIOBOX_MARKED(\"mdi-radiobox-marked\", '\\uf43e'),\n    MDI_RADIO_HANDHELD(\"mdi-radio-handheld\", '\\uf43a'),\n    MDI_RADIO_TOWER(\"mdi-radio-tower\", '\\uf43b'),\n    MDI_RASPBERRYPI(\"mdi-raspberrypi\", '\\uf43f'),\n    MDI_RAY_END(\"mdi-ray-end\", '\\uf440'),\n    MDI_RAY_END_ARROW(\"mdi-ray-end-arrow\", '\\uf441'),\n    MDI_RAY_START(\"mdi-ray-start\", '\\uf442'),\n    MDI_RAY_START_ARROW(\"mdi-ray-start-arrow\", '\\uf443'),\n    MDI_RAY_START_END(\"mdi-ray-start-end\", '\\uf444'),\n    MDI_RAY_VERTEX(\"mdi-ray-vertex\", '\\uf445'),\n    MDI_RDIO(\"mdi-rdio\", '\\uf446'),\n    MDI_READ(\"mdi-read\", '\\uf447'),\n    MDI_READABILITY(\"mdi-readability\", '\\uf448'),\n    MDI_RECEIPT(\"mdi-receipt\", '\\uf449'),\n    MDI_RECORD(\"mdi-record\", '\\uf44a'),\n    MDI_RECORD_REC(\"mdi-record-rec\", '\\uf44b'),\n    MDI_RECYCLE(\"mdi-recycle\", '\\uf44c'),\n    MDI_REDDIT(\"mdi-reddit\", '\\uf44d'),\n    MDI_REDO(\"mdi-redo\", '\\uf44e'),\n    MDI_REDO_VARIANT(\"mdi-redo-variant\", '\\uf44f'),\n    MDI_REFRESH(\"mdi-refresh\", '\\uf450'),\n    MDI_REGEX(\"mdi-regex\", '\\uf451'),\n    MDI_RELATIVE_SCALE(\"mdi-relative-scale\", '\\uf452'),\n    MDI_RELOAD(\"mdi-reload\", '\\uf453'),\n    MDI_REMOTE(\"mdi-remote\", '\\uf454'),\n    MDI_RENAME_BOX(\"mdi-rename-box\", '\\uf455'),\n    MDI_REORDER_HORIZONTAL(\"mdi-reorder-horizontal\", '\\uf687'),\n    MDI_REORDER_VERTICAL(\"mdi-reorder-vertical\", '\\uf688'),\n    MDI_REPEAT(\"mdi-repeat\", '\\uf456'),\n    MDI_REPEAT_OFF(\"mdi-repeat-off\", '\\uf457'),\n    MDI_REPEAT_ONCE(\"mdi-repeat-once\", '\\uf458'),\n    MDI_REPLAY(\"mdi-replay\", '\\uf459'),\n    MDI_REPLY(\"mdi-reply\", '\\uf45a'),\n    MDI_REPLY_ALL(\"mdi-reply-all\", '\\uf45b'),\n    MDI_REPRODUCTION(\"mdi-reproduction\", '\\uf45c'),\n    MDI_RESIZE_BOTTOM_RIGHT(\"mdi-resize-bottom-right\", '\\uf45d'),\n    MDI_RESPONSIVE(\"mdi-responsive\", '\\uf45e'),\n    MDI_RESTORE(\"mdi-restore\", '\\uf6a7'),\n    MDI_REWIND(\"mdi-rewind\", '\\uf45f'),\n    MDI_RIBBON(\"mdi-ribbon\", '\\uf460'),\n    MDI_ROAD(\"mdi-road\", '\\uf461'),\n    MDI_ROAD_VARIANT(\"mdi-road-variant\", '\\uf462'),\n    MDI_ROBOT(\"mdi-robot\", '\\uf6a8'),\n    MDI_ROCKET(\"mdi-rocket\", '\\uf463'),\n    MDI_ROTATE_3D(\"mdi-rotate-3d\", '\\uf464'),\n    MDI_ROTATE_90(\"mdi-rotate-90\", '\\uf6a9'),\n    MDI_ROTATE_LEFT(\"mdi-rotate-left\", '\\uf465'),\n    MDI_ROTATE_LEFT_VARIANT(\"mdi-rotate-left-variant\", '\\uf466'),\n    MDI_ROTATE_RIGHT(\"mdi-rotate-right\", '\\uf467'),\n    MDI_ROTATE_RIGHT_VARIANT(\"mdi-rotate-right-variant\", '\\uf468'),\n    MDI_ROUNDED_CORNER(\"mdi-rounded-corner\", '\\uf607'),\n    MDI_ROUTER_WIRELESS(\"mdi-router-wireless\", '\\uf469'),\n    MDI_ROUTES(\"mdi-routes\", '\\uf46a'),\n    MDI_ROWING(\"mdi-rowing\", '\\uf608'),\n    MDI_RSS(\"mdi-rss\", '\\uf46b'),\n    MDI_RSS_BOX(\"mdi-rss-box\", '\\uf46c'),\n    MDI_RULER(\"mdi-ruler\", '\\uf46d'),\n    MDI_RUN(\"mdi-run\", '\\uf46e'),\n    MDI_SALE(\"mdi-sale\", '\\uf46f'),\n    MDI_SATELLITE(\"mdi-satellite\", '\\uf470'),\n    MDI_SATELLITE_VARIANT(\"mdi-satellite-variant\", '\\uf471'),\n    MDI_SAXOPHONE(\"mdi-saxophone\", '\\uf609'),\n    MDI_SCALE(\"mdi-scale\", '\\uf472'),\n    MDI_SCALE_BALANCE(\"mdi-scale-balance\", '\\uf5d1'),\n    MDI_SCALE_BATHROOM(\"mdi-scale-bathroom\", '\\uf473'),\n    MDI_SCANNER(\"mdi-scanner\", '\\uf6aa'),\n    MDI_SCHOOL(\"mdi-school\", '\\uf474'),\n    MDI_SCREEN_ROTATION(\"mdi-screen-rotation\", '\\uf475'),\n    MDI_SCREEN_ROTATION_LOCK(\"mdi-screen-rotation-lock\", '\\uf476'),\n    MDI_SCREWDRIVER(\"mdi-screwdriver\", '\\uf477'),\n    MDI_SCRIPT(\"mdi-script\", '\\uf478'),\n    MDI_SD(\"mdi-sd\", '\\uf479'),\n    MDI_SEAL(\"mdi-seal\", '\\uf47a'),\n    MDI_SEAT_FLAT(\"mdi-seat-flat\", '\\uf47b'),\n    MDI_SEAT_FLAT_ANGLED(\"mdi-seat-flat-angled\", '\\uf47c'),\n    MDI_SEAT_INDIVIDUAL_SUITE(\"mdi-seat-individual-suite\", '\\uf47d'),\n    MDI_SEAT_LEGROOM_EXTRA(\"mdi-seat-legroom-extra\", '\\uf47e'),\n    MDI_SEAT_LEGROOM_NORMAL(\"mdi-seat-legroom-normal\", '\\uf47f'),\n    MDI_SEAT_LEGROOM_REDUCED(\"mdi-seat-legroom-reduced\", '\\uf480'),\n    MDI_SEAT_RECLINE_EXTRA(\"mdi-seat-recline-extra\", '\\uf481'),\n    MDI_SEAT_RECLINE_NORMAL(\"mdi-seat-recline-normal\", '\\uf482'),\n    MDI_SECURITY(\"mdi-security\", '\\uf483'),\n    MDI_SECURITY_HOME(\"mdi-security-home\", '\\uf689'),\n    MDI_SECURITY_NETWORK(\"mdi-security-network\", '\\uf484'),\n    MDI_SELECT(\"mdi-select\", '\\uf485'),\n    MDI_SELECTION(\"mdi-selection\", '\\uf489'),\n    MDI_SELECT_ALL(\"mdi-select-all\", '\\uf486'),\n    MDI_SELECT_INVERSE(\"mdi-select-inverse\", '\\uf487'),\n    MDI_SELECT_OFF(\"mdi-select-off\", '\\uf488'),\n    MDI_SEND(\"mdi-send\", '\\uf48a'),\n    MDI_SERIAL_PORT(\"mdi-serial-port\", '\\uf65c'),\n    MDI_SERVER(\"mdi-server\", '\\uf48b'),\n    MDI_SERVER_MINUS(\"mdi-server-minus\", '\\uf48c'),\n    MDI_SERVER_NETWORK(\"mdi-server-network\", '\\uf48d'),\n    MDI_SERVER_NETWORK_OFF(\"mdi-server-network-off\", '\\uf48e'),\n    MDI_SERVER_OFF(\"mdi-server-off\", '\\uf48f'),\n    MDI_SERVER_PLUS(\"mdi-server-plus\", '\\uf490'),\n    MDI_SERVER_REMOVE(\"mdi-server-remove\", '\\uf491'),\n    MDI_SERVER_SECURITY(\"mdi-server-security\", '\\uf492'),\n    MDI_SETTINGS(\"mdi-settings\", '\\uf493'),\n    MDI_SETTINGS_BOX(\"mdi-settings-box\", '\\uf494'),\n    MDI_SHAPE_CIRCLE_PLUS(\"mdi-shape-circle-plus\", '\\uf65d'),\n    MDI_SHAPE_PLUS(\"mdi-shape-plus\", '\\uf495'),\n    MDI_SHAPE_POLYGON_PLUS(\"mdi-shape-polygon-plus\", '\\uf65e'),\n    MDI_SHAPE_RECTANGLE_PLUS(\"mdi-shape-rectangle-plus\", '\\uf65f'),\n    MDI_SHAPE_SQUARE_PLUS(\"mdi-shape-square-plus\", '\\uf660'),\n    MDI_SHARE(\"mdi-share\", '\\uf496'),\n    MDI_SHARE_VARIANT(\"mdi-share-variant\", '\\uf497'),\n    MDI_SHIELD(\"mdi-shield\", '\\uf498'),\n    MDI_SHIELD_OUTLINE(\"mdi-shield-outline\", '\\uf499'),\n    MDI_SHOPPING(\"mdi-shopping\", '\\uf49a'),\n    MDI_SHOPPING_MUSIC(\"mdi-shopping-music\", '\\uf49b'),\n    MDI_SHREDDER(\"mdi-shredder\", '\\uf49c'),\n    MDI_SHUFFLE(\"mdi-shuffle\", '\\uf49d'),\n    MDI_SHUFFLE_DISABLED(\"mdi-shuffle-disabled\", '\\uf49e'),\n    MDI_SHUFFLE_VARIANT(\"mdi-shuffle-variant\", '\\uf49f'),\n    MDI_SIGMA(\"mdi-sigma\", '\\uf4a0'),\n    MDI_SIGMA_LOWER(\"mdi-sigma-lower\", '\\uf62b'),\n    MDI_SIGNAL(\"mdi-signal\", '\\uf4a2'),\n    MDI_SIGNAL_VARIANT(\"mdi-signal-variant\", '\\uf60a'),\n    MDI_SIGN_CAUTION(\"mdi-sign-caution\", '\\uf4a1'),\n    MDI_SILVERWARE(\"mdi-silverware\", '\\uf4a3'),\n    MDI_SILVERWARE_FORK(\"mdi-silverware-fork\", '\\uf4a4'),\n    MDI_SILVERWARE_SPOON(\"mdi-silverware-spoon\", '\\uf4a5'),\n    MDI_SILVERWARE_VARIANT(\"mdi-silverware-variant\", '\\uf4a6'),\n    MDI_SIM(\"mdi-sim\", '\\uf4a7'),\n    MDI_SIM_ALERT(\"mdi-sim-alert\", '\\uf4a8'),\n    MDI_SIM_OFF(\"mdi-sim-off\", '\\uf4a9'),\n    MDI_SITEMAP(\"mdi-sitemap\", '\\uf4aa'),\n    MDI_SKIP_BACKWARD(\"mdi-skip-backward\", '\\uf4ab'),\n    MDI_SKIP_FORWARD(\"mdi-skip-forward\", '\\uf4ac'),\n    MDI_SKIP_NEXT(\"mdi-skip-next\", '\\uf4ad'),\n    MDI_SKIP_NEXT_CIRCLE(\"mdi-skip-next-circle\", '\\uf661'),\n    MDI_SKIP_NEXT_CIRCLE_OUTLINE(\"mdi-skip-next-circle-outline\", '\\uf662'),\n    MDI_SKIP_PREVIOUS(\"mdi-skip-previous\", '\\uf4ae'),\n    MDI_SKIP_PREVIOUS_CIRCLE(\"mdi-skip-previous-circle\", '\\uf663'),\n    MDI_SKIP_PREVIOUS_CIRCLE_OUTLINE(\"mdi-skip-previous-circle-outline\", '\\uf664'),\n    MDI_SKULL(\"mdi-skull\", '\\uf68b'),\n    MDI_SKYPE(\"mdi-skype\", '\\uf4af'),\n    MDI_SKYPE_BUSINESS(\"mdi-skype-business\", '\\uf4b0'),\n    MDI_SLACK(\"mdi-slack\", '\\uf4b1'),\n    MDI_SLEEP(\"mdi-sleep\", '\\uf4b2'),\n    MDI_SLEEP_OFF(\"mdi-sleep-off\", '\\uf4b3'),\n    MDI_SMOKING(\"mdi-smoking\", '\\uf4b4'),\n    MDI_SMOKING_OFF(\"mdi-smoking-off\", '\\uf4b5'),\n    MDI_SNAPCHAT(\"mdi-snapchat\", '\\uf4b6'),\n    MDI_SNOWMAN(\"mdi-snowman\", '\\uf4b7'),\n    MDI_SOCCER(\"mdi-soccer\", '\\uf4b8'),\n    MDI_SOFA(\"mdi-sofa\", '\\uf4b9'),\n    MDI_SOLID(\"mdi-solid\", '\\uf68c'),\n    MDI_SORT(\"mdi-sort\", '\\uf4ba'),\n    MDI_SORT_ALPHABETICAL(\"mdi-sort-alphabetical\", '\\uf4bb'),\n    MDI_SORT_ASCENDING(\"mdi-sort-ascending\", '\\uf4bc'),\n    MDI_SORT_DESCENDING(\"mdi-sort-descending\", '\\uf4bd'),\n    MDI_SORT_NUMERIC(\"mdi-sort-numeric\", '\\uf4be'),\n    MDI_SORT_VARIANT(\"mdi-sort-variant\", '\\uf4bf'),\n    MDI_SOUNDCLOUD(\"mdi-soundcloud\", '\\uf4c0'),\n    MDI_SOURCE_BRANCH(\"mdi-source-branch\", '\\uf62c'),\n    MDI_SOURCE_FORK(\"mdi-source-fork\", '\\uf4c1'),\n    MDI_SOURCE_MERGE(\"mdi-source-merge\", '\\uf62d'),\n    MDI_SOURCE_PULL(\"mdi-source-pull\", '\\uf4c2'),\n    MDI_SPEAKER(\"mdi-speaker\", '\\uf4c3'),\n    MDI_SPEAKER_OFF(\"mdi-speaker-off\", '\\uf4c4'),\n    MDI_SPEEDOMETER(\"mdi-speedometer\", '\\uf4c5'),\n    MDI_SPELLCHECK(\"mdi-spellcheck\", '\\uf4c6'),\n    MDI_SPOTIFY(\"mdi-spotify\", '\\uf4c7'),\n    MDI_SPOTLIGHT(\"mdi-spotlight\", '\\uf4c8'),\n    MDI_SPOTLIGHT_BEAM(\"mdi-spotlight-beam\", '\\uf4c9'),\n    MDI_SPRAY(\"mdi-spray\", '\\uf665'),\n    MDI_SQUARE_INC(\"mdi-square-inc\", '\\uf4ca'),\n    MDI_SQUARE_INC_CASH(\"mdi-square-inc-cash\", '\\uf4cb'),\n    MDI_STACKEXCHANGE(\"mdi-stackexchange\", '\\uf60b'),\n    MDI_STACKOVERFLOW(\"mdi-stackoverflow\", '\\uf4cc'),\n    MDI_STAIRS(\"mdi-stairs\", '\\uf4cd'),\n    MDI_STAR(\"mdi-star\", '\\uf4ce'),\n    MDI_STAR_CIRCLE(\"mdi-star-circle\", '\\uf4cf'),\n    MDI_STAR_HALF(\"mdi-star-half\", '\\uf4d0'),\n    MDI_STAR_OFF(\"mdi-star-off\", '\\uf4d1'),\n    MDI_STAR_OUTLINE(\"mdi-star-outline\", '\\uf4d2'),\n    MDI_STEAM(\"mdi-steam\", '\\uf4d3'),\n    MDI_STEERING(\"mdi-steering\", '\\uf4d4'),\n    MDI_STEP_BACKWARD(\"mdi-step-backward\", '\\uf4d5'),\n    MDI_STEP_BACKWARD_2(\"mdi-step-backward-2\", '\\uf4d6'),\n    MDI_STEP_FORWARD(\"mdi-step-forward\", '\\uf4d7'),\n    MDI_STEP_FORWARD_2(\"mdi-step-forward-2\", '\\uf4d8'),\n    MDI_STETHOSCOPE(\"mdi-stethoscope\", '\\uf4d9'),\n    MDI_STICKER(\"mdi-sticker\", '\\uf5d0'),\n    MDI_STOCKING(\"mdi-stocking\", '\\uf4da'),\n    MDI_STOP(\"mdi-stop\", '\\uf4db'),\n    MDI_STOP_CIRCLE(\"mdi-stop-circle\", '\\uf666'),\n    MDI_STOP_CIRCLE_OUTLINE(\"mdi-stop-circle-outline\", '\\uf667'),\n    MDI_STORE(\"mdi-store\", '\\uf4dc'),\n    MDI_STORE_24_HOUR(\"mdi-store-24-hour\", '\\uf4dd'),\n    MDI_STOVE(\"mdi-stove\", '\\uf4de'),\n    MDI_SUBDIRECTORY_ARROW_LEFT(\"mdi-subdirectory-arrow-left\", '\\uf60c'),\n    MDI_SUBDIRECTORY_ARROW_RIGHT(\"mdi-subdirectory-arrow-right\", '\\uf60d'),\n    MDI_SUBWAY(\"mdi-subway\", '\\uf6ab'),\n    MDI_SUBWAY_VARIANT(\"mdi-subway-variant\", '\\uf4df'),\n    MDI_SUNGLASSES(\"mdi-sunglasses\", '\\uf4e0'),\n    MDI_SURROUND_SOUND(\"mdi-surround-sound\", '\\uf5c5'),\n    MDI_SWAP_HORIZONTAL(\"mdi-swap-horizontal\", '\\uf4e1'),\n    MDI_SWAP_VERTICAL(\"mdi-swap-vertical\", '\\uf4e2'),\n    MDI_SWIM(\"mdi-swim\", '\\uf4e3'),\n    MDI_SWITCH(\"mdi-switch\", '\\uf4e4'),\n    MDI_SWORD(\"mdi-sword\", '\\uf4e5'),\n    MDI_SYNC(\"mdi-sync\", '\\uf4e6'),\n    MDI_SYNC_ALERT(\"mdi-sync-alert\", '\\uf4e7'),\n    MDI_SYNC_OFF(\"mdi-sync-off\", '\\uf4e8'),\n    MDI_TAB(\"mdi-tab\", '\\uf4e9'),\n    MDI_TABLE(\"mdi-table\", '\\uf4eb'),\n    MDI_TABLET(\"mdi-tablet\", '\\uf4f6'),\n    MDI_TABLET_ANDROID(\"mdi-tablet-android\", '\\uf4f7'),\n    MDI_TABLET_IPAD(\"mdi-tablet-ipad\", '\\uf4f8'),\n    MDI_TABLE_COLUMN_PLUS_AFTER(\"mdi-table-column-plus-after\", '\\uf4ec'),\n    MDI_TABLE_COLUMN_PLUS_BEFORE(\"mdi-table-column-plus-before\", '\\uf4ed'),\n    MDI_TABLE_COLUMN_REMOVE(\"mdi-table-column-remove\", '\\uf4ee'),\n    MDI_TABLE_COLUMN_WIDTH(\"mdi-table-column-width\", '\\uf4ef'),\n    MDI_TABLE_EDIT(\"mdi-table-edit\", '\\uf4f0'),\n    MDI_TABLE_LARGE(\"mdi-table-large\", '\\uf4f1'),\n    MDI_TABLE_ROW_HEIGHT(\"mdi-table-row-height\", '\\uf4f2'),\n    MDI_TABLE_ROW_PLUS_AFTER(\"mdi-table-row-plus-after\", '\\uf4f3'),\n    MDI_TABLE_ROW_PLUS_BEFORE(\"mdi-table-row-plus-before\", '\\uf4f4'),\n    MDI_TABLE_ROW_REMOVE(\"mdi-table-row-remove\", '\\uf4f5'),\n    MDI_TAB_UNSELECTED(\"mdi-tab-unselected\", '\\uf4ea'),\n    MDI_TAG(\"mdi-tag\", '\\uf4f9'),\n    MDI_TAG_FACES(\"mdi-tag-faces\", '\\uf4fa'),\n    MDI_TAG_HEART(\"mdi-tag-heart\", '\\uf68a'),\n    MDI_TAG_MULTIPLE(\"mdi-tag-multiple\", '\\uf4fb'),\n    MDI_TAG_OUTLINE(\"mdi-tag-outline\", '\\uf4fc'),\n    MDI_TAG_TEXT_OUTLINE(\"mdi-tag-text-outline\", '\\uf4fd'),\n    MDI_TARGET(\"mdi-target\", '\\uf4fe'),\n    MDI_TAXI(\"mdi-taxi\", '\\uf4ff'),\n    MDI_TEAMVIEWER(\"mdi-teamviewer\", '\\uf500'),\n    MDI_TELEGRAM(\"mdi-telegram\", '\\uf501'),\n    MDI_TELEVISION(\"mdi-television\", '\\uf502'),\n    MDI_TELEVISION_GUIDE(\"mdi-television-guide\", '\\uf503'),\n    MDI_TEMPERATURE_CELSIUS(\"mdi-temperature-celsius\", '\\uf504'),\n    MDI_TEMPERATURE_FAHRENHEIT(\"mdi-temperature-fahrenheit\", '\\uf505'),\n    MDI_TEMPERATURE_KELVIN(\"mdi-temperature-kelvin\", '\\uf506'),\n    MDI_TENNIS(\"mdi-tennis\", '\\uf507'),\n    MDI_TENT(\"mdi-tent\", '\\uf508'),\n    MDI_TERRAIN(\"mdi-terrain\", '\\uf509'),\n    MDI_TEST_TUBE(\"mdi-test-tube\", '\\uf668'),\n    MDI_TEXTBOX(\"mdi-textbox\", '\\uf60e'),\n    MDI_TEXTURE(\"mdi-texture\", '\\uf50c'),\n    MDI_TEXT_SHADOW(\"mdi-text-shadow\", '\\uf669'),\n    MDI_TEXT_TO_SPEECH(\"mdi-text-to-speech\", '\\uf50a'),\n    MDI_TEXT_TO_SPEECH_OFF(\"mdi-text-to-speech-off\", '\\uf50b'),\n    MDI_THEATER(\"mdi-theater\", '\\uf50d'),\n    MDI_THEME_LIGHT_DARK(\"mdi-theme-light-dark\", '\\uf50e'),\n    MDI_THERMOMETER(\"mdi-thermometer\", '\\uf50f'),\n    MDI_THERMOMETER_LINES(\"mdi-thermometer-lines\", '\\uf510'),\n    MDI_THUMBS_UP_DOWN(\"mdi-thumbs-up-down\", '\\uf515'),\n    MDI_THUMB_DOWN(\"mdi-thumb-down\", '\\uf511'),\n    MDI_THUMB_DOWN_OUTLINE(\"mdi-thumb-down-outline\", '\\uf512'),\n    MDI_THUMB_UP(\"mdi-thumb-up\", '\\uf513'),\n    MDI_THUMB_UP_OUTLINE(\"mdi-thumb-up-outline\", '\\uf514'),\n    MDI_TICKET(\"mdi-ticket\", '\\uf516'),\n    MDI_TICKET_ACCOUNT(\"mdi-ticket-account\", '\\uf517'),\n    MDI_TICKET_CONFIRMATION(\"mdi-ticket-confirmation\", '\\uf518'),\n    MDI_TIE(\"mdi-tie\", '\\uf519'),\n    MDI_TIMELAPSE(\"mdi-timelapse\", '\\uf51a'),\n    MDI_TIMER(\"mdi-timer\", '\\uf51b'),\n    MDI_TIMER_10(\"mdi-timer-10\", '\\uf51c'),\n    MDI_TIMER_3(\"mdi-timer-3\", '\\uf51d'),\n    MDI_TIMER_OFF(\"mdi-timer-off\", '\\uf51e'),\n    MDI_TIMER_SAND(\"mdi-timer-sand\", '\\uf51f'),\n    MDI_TIMER_SAND_EMPTY(\"mdi-timer-sand-empty\", '\\uf6ac'),\n    MDI_TIMETABLE(\"mdi-timetable\", '\\uf520'),\n    MDI_TOGGLE_SWITCH(\"mdi-toggle-switch\", '\\uf521'),\n    MDI_TOGGLE_SWITCH_OFF(\"mdi-toggle-switch-off\", '\\uf522'),\n    MDI_TOOLTIP(\"mdi-tooltip\", '\\uf523'),\n    MDI_TOOLTIP_EDIT(\"mdi-tooltip-edit\", '\\uf524'),\n    MDI_TOOLTIP_IMAGE(\"mdi-tooltip-image\", '\\uf525'),\n    MDI_TOOLTIP_OUTLINE(\"mdi-tooltip-outline\", '\\uf526'),\n    MDI_TOOLTIP_OUTLINE_PLUS(\"mdi-tooltip-outline-plus\", '\\uf527'),\n    MDI_TOOLTIP_TEXT(\"mdi-tooltip-text\", '\\uf528'),\n    MDI_TOOTH(\"mdi-tooth\", '\\uf529'),\n    MDI_TOR(\"mdi-tor\", '\\uf52a'),\n    MDI_TOWER_BEACH(\"mdi-tower-beach\", '\\uf680'),\n    MDI_TOWER_FIRE(\"mdi-tower-fire\", '\\uf681'),\n    MDI_TRAFFIC_LIGHT(\"mdi-traffic-light\", '\\uf52b'),\n    MDI_TRAIN(\"mdi-train\", '\\uf52c'),\n    MDI_TRAM(\"mdi-tram\", '\\uf52d'),\n    MDI_TRANSCRIBE(\"mdi-transcribe\", '\\uf52e'),\n    MDI_TRANSCRIBE_CLOSE(\"mdi-transcribe-close\", '\\uf52f'),\n    MDI_TRANSFER(\"mdi-transfer\", '\\uf530'),\n    MDI_TRANSIT_TRANSFER(\"mdi-transit-transfer\", '\\uf6ad'),\n    MDI_TRANSLATE(\"mdi-translate\", '\\uf5ca'),\n    MDI_TREE(\"mdi-tree\", '\\uf531'),\n    MDI_TRELLO(\"mdi-trello\", '\\uf532'),\n    MDI_TRENDING_DOWN(\"mdi-trending-down\", '\\uf533'),\n    MDI_TRENDING_NEUTRAL(\"mdi-trending-neutral\", '\\uf534'),\n    MDI_TRENDING_UP(\"mdi-trending-up\", '\\uf535'),\n    MDI_TRIANGLE(\"mdi-triangle\", '\\uf536'),\n    MDI_TRIANGLE_OUTLINE(\"mdi-triangle-outline\", '\\uf537'),\n    MDI_TROPHY(\"mdi-trophy\", '\\uf538'),\n    MDI_TROPHY_AWARD(\"mdi-trophy-award\", '\\uf539'),\n    MDI_TROPHY_OUTLINE(\"mdi-trophy-outline\", '\\uf53a'),\n    MDI_TROPHY_VARIANT(\"mdi-trophy-variant\", '\\uf53b'),\n    MDI_TROPHY_VARIANT_OUTLINE(\"mdi-trophy-variant-outline\", '\\uf53c'),\n    MDI_TRUCK(\"mdi-truck\", '\\uf53d'),\n    MDI_TRUCK_DELIVERY(\"mdi-truck-delivery\", '\\uf53e'),\n    MDI_TSHIRT_CREW(\"mdi-tshirt-crew\", '\\uf53f'),\n    MDI_TSHIRT_V(\"mdi-tshirt-v\", '\\uf540'),\n    MDI_TUMBLR(\"mdi-tumblr\", '\\uf541'),\n    MDI_TUMBLR_REBLOG(\"mdi-tumblr-reblog\", '\\uf542'),\n    MDI_TUNE(\"mdi-tune\", '\\uf62e'),\n    MDI_TUNE_VERTICAL(\"mdi-tune-vertical\", '\\uf66a'),\n    MDI_TWITCH(\"mdi-twitch\", '\\uf543'),\n    MDI_TWITTER(\"mdi-twitter\", '\\uf544'),\n    MDI_TWITTER_BOX(\"mdi-twitter-box\", '\\uf545'),\n    MDI_TWITTER_CIRCLE(\"mdi-twitter-circle\", '\\uf546'),\n    MDI_TWITTER_RETWEET(\"mdi-twitter-retweet\", '\\uf547'),\n    MDI_UBUNTU(\"mdi-ubuntu\", '\\uf548'),\n    MDI_UMBRACO(\"mdi-umbraco\", '\\uf549'),\n    MDI_UMBRELLA(\"mdi-umbrella\", '\\uf54a'),\n    MDI_UMBRELLA_OUTLINE(\"mdi-umbrella-outline\", '\\uf54b'),\n    MDI_UNDO(\"mdi-undo\", '\\uf54c'),\n    MDI_UNDO_VARIANT(\"mdi-undo-variant\", '\\uf54d'),\n    MDI_UNFOLD_LESS(\"mdi-unfold-less\", '\\uf54e'),\n    MDI_UNFOLD_MORE(\"mdi-unfold-more\", '\\uf54f'),\n    MDI_UNGROUP(\"mdi-ungroup\", '\\uf550'),\n    MDI_UNITY(\"mdi-unity\", '\\uf6ae'),\n    MDI_UNTAPPD(\"mdi-untappd\", '\\uf551'),\n    MDI_UPDATE(\"mdi-update\", '\\uf6af'),\n    MDI_UPLOAD(\"mdi-upload\", '\\uf552'),\n    MDI_USB(\"mdi-usb\", '\\uf553'),\n    MDI_VECTOR_ARRANGE_ABOVE(\"mdi-vector-arrange-above\", '\\uf554'),\n    MDI_VECTOR_ARRANGE_BELOW(\"mdi-vector-arrange-below\", '\\uf555'),\n    MDI_VECTOR_CIRCLE(\"mdi-vector-circle\", '\\uf556'),\n    MDI_VECTOR_CIRCLE_VARIANT(\"mdi-vector-circle-variant\", '\\uf557'),\n    MDI_VECTOR_COMBINE(\"mdi-vector-combine\", '\\uf558'),\n    MDI_VECTOR_CURVE(\"mdi-vector-curve\", '\\uf559'),\n    MDI_VECTOR_DIFFERENCE(\"mdi-vector-difference\", '\\uf55a'),\n    MDI_VECTOR_DIFFERENCE_AB(\"mdi-vector-difference-ab\", '\\uf55b'),\n    MDI_VECTOR_DIFFERENCE_BA(\"mdi-vector-difference-ba\", '\\uf55c'),\n    MDI_VECTOR_INTERSECTION(\"mdi-vector-intersection\", '\\uf55d'),\n    MDI_VECTOR_LINE(\"mdi-vector-line\", '\\uf55e'),\n    MDI_VECTOR_POINT(\"mdi-vector-point\", '\\uf55f'),\n    MDI_VECTOR_POLYGON(\"mdi-vector-polygon\", '\\uf560'),\n    MDI_VECTOR_POLYLINE(\"mdi-vector-polyline\", '\\uf561'),\n    MDI_VECTOR_RECTANGLE(\"mdi-vector-rectangle\", '\\uf5c6'),\n    MDI_VECTOR_SELECTION(\"mdi-vector-selection\", '\\uf562'),\n    MDI_VECTOR_SQUARE(\"mdi-vector-square\", '\\uf001'),\n    MDI_VECTOR_TRIANGLE(\"mdi-vector-triangle\", '\\uf563'),\n    MDI_VECTOR_UNION(\"mdi-vector-union\", '\\uf564'),\n    MDI_VERIFIED(\"mdi-verified\", '\\uf565'),\n    MDI_VIBRATE(\"mdi-vibrate\", '\\uf566'),\n    MDI_VIDEO(\"mdi-video\", '\\uf567'),\n    MDI_VIDEO_OFF(\"mdi-video-off\", '\\uf568'),\n    MDI_VIDEO_SWITCH(\"mdi-video-switch\", '\\uf569'),\n    MDI_VIEW_AGENDA(\"mdi-view-agenda\", '\\uf56a'),\n    MDI_VIEW_ARRAY(\"mdi-view-array\", '\\uf56b'),\n    MDI_VIEW_CAROUSEL(\"mdi-view-carousel\", '\\uf56c'),\n    MDI_VIEW_COLUMN(\"mdi-view-column\", '\\uf56d'),\n    MDI_VIEW_DASHBOARD(\"mdi-view-dashboard\", '\\uf56e'),\n    MDI_VIEW_DAY(\"mdi-view-day\", '\\uf56f'),\n    MDI_VIEW_GRID(\"mdi-view-grid\", '\\uf570'),\n    MDI_VIEW_HEADLINE(\"mdi-view-headline\", '\\uf571'),\n    MDI_VIEW_LIST(\"mdi-view-list\", '\\uf572'),\n    MDI_VIEW_MODULE(\"mdi-view-module\", '\\uf573'),\n    MDI_VIEW_QUILT(\"mdi-view-quilt\", '\\uf574'),\n    MDI_VIEW_STREAM(\"mdi-view-stream\", '\\uf575'),\n    MDI_VIEW_WEEK(\"mdi-view-week\", '\\uf576'),\n    MDI_VIMEO(\"mdi-vimeo\", '\\uf577'),\n    MDI_VINE(\"mdi-vine\", '\\uf578'),\n    MDI_VIOLIN(\"mdi-violin\", '\\uf60f'),\n    MDI_VISUALSTUDIO(\"mdi-visualstudio\", '\\uf610'),\n    MDI_VK(\"mdi-vk\", '\\uf579'),\n    MDI_VK_BOX(\"mdi-vk-box\", '\\uf57a'),\n    MDI_VK_CIRCLE(\"mdi-vk-circle\", '\\uf57b'),\n    MDI_VLC(\"mdi-vlc\", '\\uf57c'),\n    MDI_VOICE(\"mdi-voice\", '\\uf5cb'),\n    MDI_VOICEMAIL(\"mdi-voicemail\", '\\uf57d'),\n    MDI_VOLUME_HIGH(\"mdi-volume-high\", '\\uf57e'),\n    MDI_VOLUME_LOW(\"mdi-volume-low\", '\\uf57f'),\n    MDI_VOLUME_MEDIUM(\"mdi-volume-medium\", '\\uf580'),\n    MDI_VOLUME_OFF(\"mdi-volume-off\", '\\uf581'),\n    MDI_VPN(\"mdi-vpn\", '\\uf582'),\n    MDI_WALK(\"mdi-walk\", '\\uf583'),\n    MDI_WALLET(\"mdi-wallet\", '\\uf584'),\n    MDI_WALLET_GIFTCARD(\"mdi-wallet-giftcard\", '\\uf585'),\n    MDI_WALLET_MEMBERSHIP(\"mdi-wallet-membership\", '\\uf586'),\n    MDI_WALLET_TRAVEL(\"mdi-wallet-travel\", '\\uf587'),\n    MDI_WAN(\"mdi-wan\", '\\uf588'),\n    MDI_WATCH(\"mdi-watch\", '\\uf589'),\n    MDI_WATCH_EXPORT(\"mdi-watch-export\", '\\uf58a'),\n    MDI_WATCH_IMPORT(\"mdi-watch-import\", '\\uf58b'),\n    MDI_WATCH_VIBRATE(\"mdi-watch-vibrate\", '\\uf6b0'),\n    MDI_WATER(\"mdi-water\", '\\uf58c'),\n    MDI_WATERMARK(\"mdi-watermark\", '\\uf612'),\n    MDI_WATER_OFF(\"mdi-water-off\", '\\uf58d'),\n    MDI_WATER_PERCENT(\"mdi-water-percent\", '\\uf58e'),\n    MDI_WATER_PUMP(\"mdi-water-pump\", '\\uf58f'),\n    MDI_WEATHER_CLOUDY(\"mdi-weather-cloudy\", '\\uf590'),\n    MDI_WEATHER_FOG(\"mdi-weather-fog\", '\\uf591'),\n    MDI_WEATHER_HAIL(\"mdi-weather-hail\", '\\uf592'),\n    MDI_WEATHER_LIGHTNING(\"mdi-weather-lightning\", '\\uf593'),\n    MDI_WEATHER_LIGHTNING_RAINY(\"mdi-weather-lightning-rainy\", '\\uf67d'),\n    MDI_WEATHER_NIGHT(\"mdi-weather-night\", '\\uf594'),\n    MDI_WEATHER_PARTLYCLOUDY(\"mdi-weather-partlycloudy\", '\\uf595'),\n    MDI_WEATHER_POURING(\"mdi-weather-pouring\", '\\uf596'),\n    MDI_WEATHER_RAINY(\"mdi-weather-rainy\", '\\uf597'),\n    MDI_WEATHER_SNOWY(\"mdi-weather-snowy\", '\\uf598'),\n    MDI_WEATHER_SNOWY_RAINY(\"mdi-weather-snowy-rainy\", '\\uf67e'),\n    MDI_WEATHER_SUNNY(\"mdi-weather-sunny\", '\\uf599'),\n    MDI_WEATHER_SUNSET(\"mdi-weather-sunset\", '\\uf59a'),\n    MDI_WEATHER_SUNSET_DOWN(\"mdi-weather-sunset-down\", '\\uf59b'),\n    MDI_WEATHER_SUNSET_UP(\"mdi-weather-sunset-up\", '\\uf59c'),\n    MDI_WEATHER_WINDY(\"mdi-weather-windy\", '\\uf59d'),\n    MDI_WEATHER_WINDY_VARIANT(\"mdi-weather-windy-variant\", '\\uf59e'),\n    MDI_WEB(\"mdi-web\", '\\uf59f'),\n    MDI_WEBCAM(\"mdi-webcam\", '\\uf5a0'),\n    MDI_WEBHOOK(\"mdi-webhook\", '\\uf62f'),\n    MDI_WECHAT(\"mdi-wechat\", '\\uf611'),\n    MDI_WEIGHT(\"mdi-weight\", '\\uf5a1'),\n    MDI_WEIGHT_KILOGRAM(\"mdi-weight-kilogram\", '\\uf5a2'),\n    MDI_WHATSAPP(\"mdi-whatsapp\", '\\uf5a3'),\n    MDI_WHEELCHAIR_ACCESSIBILITY(\"mdi-wheelchair-accessibility\", '\\uf5a4'),\n    MDI_WHITE_BALANCE_AUTO(\"mdi-white-balance-auto\", '\\uf5a5'),\n    MDI_WHITE_BALANCE_INCANDESCENT(\"mdi-white-balance-incandescent\", '\\uf5a6'),\n    MDI_WHITE_BALANCE_IRIDESCENT(\"mdi-white-balance-iridescent\", '\\uf5a7'),\n    MDI_WHITE_BALANCE_SUNNY(\"mdi-white-balance-sunny\", '\\uf5a8'),\n    MDI_WIFI(\"mdi-wifi\", '\\uf5a9'),\n    MDI_WIFI_OFF(\"mdi-wifi-off\", '\\uf5aa'),\n    MDI_WII(\"mdi-wii\", '\\uf5ab'),\n    MDI_WIKIPEDIA(\"mdi-wikipedia\", '\\uf5ac'),\n    MDI_WINDOWS(\"mdi-windows\", '\\uf5b3'),\n    MDI_WINDOW_CLOSE(\"mdi-window-close\", '\\uf5ad'),\n    MDI_WINDOW_CLOSED(\"mdi-window-closed\", '\\uf5ae'),\n    MDI_WINDOW_MAXIMIZE(\"mdi-window-maximize\", '\\uf5af'),\n    MDI_WINDOW_MINIMIZE(\"mdi-window-minimize\", '\\uf5b0'),\n    MDI_WINDOW_OPEN(\"mdi-window-open\", '\\uf5b1'),\n    MDI_WINDOW_RESTORE(\"mdi-window-restore\", '\\uf5b2'),\n    MDI_WORDPRESS(\"mdi-wordpress\", '\\uf5b4'),\n    MDI_WORKER(\"mdi-worker\", '\\uf5b5'),\n    MDI_WRAP(\"mdi-wrap\", '\\uf5b6'),\n    MDI_WRENCH(\"mdi-wrench\", '\\uf5b7'),\n    MDI_WUNDERLIST(\"mdi-wunderlist\", '\\uf5b8'),\n    MDI_XAML(\"mdi-xaml\", '\\uf673'),\n    MDI_XBOX(\"mdi-xbox\", '\\uf5b9'),\n    MDI_XBOX_CONTROLLER(\"mdi-xbox-controller\", '\\uf5ba'),\n    MDI_XBOX_CONTROLLER_OFF(\"mdi-xbox-controller-off\", '\\uf5bb'),\n    MDI_XDA(\"mdi-xda\", '\\uf5bc'),\n    MDI_XING(\"mdi-xing\", '\\uf5bd'),\n    MDI_XING_BOX(\"mdi-xing-box\", '\\uf5be'),\n    MDI_XING_CIRCLE(\"mdi-xing-circle\", '\\uf5bf'),\n    MDI_XML(\"mdi-xml\", '\\uf5c0'),\n    MDI_YEAST(\"mdi-yeast\", '\\uf5c1'),\n    MDI_YELP(\"mdi-yelp\", '\\uf5c2'),\n    MDI_YIN_YANG(\"mdi-yin-yang\", '\\uf67f'),\n    MDI_YOUTUBE_PLAY(\"mdi-youtube-play\", '\\uf5c3'),\n    MDI_ZIP_BOX(\"mdi-zip-box\", '\\uf5c4');\n\n    public static MaterialDesign findByDescription(String description) {\n        for (MaterialDesign font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    MaterialDesign(String description, char code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign-pack/src/main/java/org/kordamp/ikonli/materialdesign/MaterialDesignIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/materialdesign/1.7.22/fonts/MaterialDesignIcons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesign.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Material Design Icons Legacy\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign-pack/src/main/java/org/kordamp/ikonli/materialdesign/MaterialDesignIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class MaterialDesignIkonProvider implements IkonProvider<MaterialDesign> {\n    @Override\n    public Class<MaterialDesign> getIkon() {\n        return MaterialDesign.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign-pack/src/main/resources/META-INF/resources/materialdesign/1.7.22/css/materialdesignicons.css",
    "content": "/* MaterialDesignIcons.com */\n@font-face {\n  font-family: 'Material Design Icons Legacy';\n  src: url(../fonts/MaterialDesignIcons.eot);\n  font-weight: 400;\n  font-style: normal\n}\n\n@font-face {\n  font-family: 'Material Design Icons Legacy';\n  src: url(../fonts/MaterialDesignIcons.eot);\n  src: url(../fonts/MaterialDesignIcons.eot?#iefix) format(\"embedded-opentype\"),\n  url(../fonts/MaterialDesignIcons.woff) format(\"woff\"),\n  url(../fonts/MaterialDesignIcons.ttf) format(\"truetype\");\n  font-weight: 400;\n  font-style: normal\n}\n\n.mdi {\n  font-family: 'Material Design Icons Legacy';\n  display: inline-block;\n  vertical-align: middle;\n  line-height: 1;\n  font-weight: 400;\n  font-style: normal;\n  speak: none;\n  text-decoration: inherit;\n  text-transform: none;\n  text-rendering: optimizeLegibility;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale\n}\n\n.mdi-access-point:before {\n  content: \"\\F002\";\n}\n\n.mdi-access-point-network:before {\n  content: \"\\F003\";\n}\n\n.mdi-account:before {\n  content: \"\\F004\";\n}\n\n.mdi-account-alert:before {\n  content: \"\\F005\";\n}\n\n.mdi-account-box:before {\n  content: \"\\F006\";\n}\n\n.mdi-account-box-outline:before {\n  content: \"\\F007\";\n}\n\n.mdi-account-card-details:before {\n  content: \"\\F5D2\";\n}\n\n.mdi-account-check:before {\n  content: \"\\F008\";\n}\n\n.mdi-account-circle:before {\n  content: \"\\F009\";\n}\n\n.mdi-account-convert:before {\n  content: \"\\F00A\";\n}\n\n.mdi-account-key:before {\n  content: \"\\F00B\";\n}\n\n.mdi-account-location:before {\n  content: \"\\F00C\";\n}\n\n.mdi-account-minus:before {\n  content: \"\\F00D\";\n}\n\n.mdi-account-multiple:before {\n  content: \"\\F00E\";\n}\n\n.mdi-account-multiple-minus:before {\n  content: \"\\F5D3\";\n}\n\n.mdi-account-multiple-outline:before {\n  content: \"\\F00F\";\n}\n\n.mdi-account-multiple-plus:before {\n  content: \"\\F010\";\n}\n\n.mdi-account-network:before {\n  content: \"\\F011\";\n}\n\n.mdi-account-off:before {\n  content: \"\\F012\";\n}\n\n.mdi-account-outline:before {\n  content: \"\\F013\";\n}\n\n.mdi-account-plus:before {\n  content: \"\\F014\";\n}\n\n.mdi-account-remove:before {\n  content: \"\\F015\";\n}\n\n.mdi-account-search:before {\n  content: \"\\F016\";\n}\n\n.mdi-account-settings:before {\n  content: \"\\F630\";\n}\n\n.mdi-account-settings-variant:before {\n  content: \"\\F631\";\n}\n\n.mdi-account-star:before {\n  content: \"\\F017\";\n}\n\n.mdi-account-star-variant:before {\n  content: \"\\F018\";\n}\n\n.mdi-account-switch:before {\n  content: \"\\F019\";\n}\n\n.mdi-adjust:before {\n  content: \"\\F01A\";\n}\n\n.mdi-air-conditioner:before {\n  content: \"\\F01B\";\n}\n\n.mdi-airballoon:before {\n  content: \"\\F01C\";\n}\n\n.mdi-airplane:before {\n  content: \"\\F01D\";\n}\n\n.mdi-airplane-landing:before {\n  content: \"\\F5D4\";\n}\n\n.mdi-airplane-off:before {\n  content: \"\\F01E\";\n}\n\n.mdi-airplane-takeoff:before {\n  content: \"\\F5D5\";\n}\n\n.mdi-airplay:before {\n  content: \"\\F01F\";\n}\n\n.mdi-alarm:before {\n  content: \"\\F020\";\n}\n\n.mdi-alarm-check:before {\n  content: \"\\F021\";\n}\n\n.mdi-alarm-multiple:before {\n  content: \"\\F022\";\n}\n\n.mdi-alarm-off:before {\n  content: \"\\F023\";\n}\n\n.mdi-alarm-plus:before {\n  content: \"\\F024\";\n}\n\n.mdi-alarm-snooze:before {\n  content: \"\\F68D\";\n}\n\n.mdi-album:before {\n  content: \"\\F025\";\n}\n\n.mdi-alert:before {\n  content: \"\\F026\";\n}\n\n.mdi-alert-box:before {\n  content: \"\\F027\";\n}\n\n.mdi-alert-circle:before {\n  content: \"\\F028\";\n}\n\n.mdi-alert-circle-outline:before {\n  content: \"\\F5D6\";\n}\n\n.mdi-alert-octagon:before {\n  content: \"\\F029\";\n}\n\n.mdi-alert-outline:before {\n  content: \"\\F02A\";\n}\n\n.mdi-alpha:before {\n  content: \"\\F02B\";\n}\n\n.mdi-alphabetical:before {\n  content: \"\\F02C\";\n}\n\n.mdi-altimeter:before {\n  content: \"\\F5D7\";\n}\n\n.mdi-amazon:before {\n  content: \"\\F02D\";\n}\n\n.mdi-amazon-clouddrive:before {\n  content: \"\\F02E\";\n}\n\n.mdi-ambulance:before {\n  content: \"\\F02F\";\n}\n\n.mdi-amplifier:before {\n  content: \"\\F030\";\n}\n\n.mdi-anchor:before {\n  content: \"\\F031\";\n}\n\n.mdi-android:before {\n  content: \"\\F032\";\n}\n\n.mdi-android-debug-bridge:before {\n  content: \"\\F033\";\n}\n\n.mdi-android-studio:before {\n  content: \"\\F034\";\n}\n\n.mdi-angular:before {\n  content: \"\\F6B1\";\n}\n\n.mdi-animation:before {\n  content: \"\\F5D8\";\n}\n\n.mdi-apple:before {\n  content: \"\\F035\";\n}\n\n.mdi-apple-finder:before {\n  content: \"\\F036\";\n}\n\n.mdi-apple-ios:before {\n  content: \"\\F037\";\n}\n\n.mdi-apple-keyboard-caps:before {\n  content: \"\\F632\";\n}\n\n.mdi-apple-keyboard-command:before {\n  content: \"\\F633\";\n}\n\n.mdi-apple-keyboard-control:before {\n  content: \"\\F634\";\n}\n\n.mdi-apple-keyboard-option:before {\n  content: \"\\F635\";\n}\n\n.mdi-apple-keyboard-shift:before {\n  content: \"\\F636\";\n}\n\n.mdi-apple-mobileme:before {\n  content: \"\\F038\";\n}\n\n.mdi-apple-safari:before {\n  content: \"\\F039\";\n}\n\n.mdi-application:before {\n  content: \"\\F614\";\n}\n\n.mdi-appnet:before {\n  content: \"\\F03A\";\n}\n\n.mdi-apps:before {\n  content: \"\\F03B\";\n}\n\n.mdi-archive:before {\n  content: \"\\F03C\";\n}\n\n.mdi-arrange-bring-forward:before {\n  content: \"\\F03D\";\n}\n\n.mdi-arrange-bring-to-front:before {\n  content: \"\\F03E\";\n}\n\n.mdi-arrange-send-backward:before {\n  content: \"\\F03F\";\n}\n\n.mdi-arrange-send-to-back:before {\n  content: \"\\F040\";\n}\n\n.mdi-arrow-all:before {\n  content: \"\\F041\";\n}\n\n.mdi-arrow-bottom-left:before {\n  content: \"\\F042\";\n}\n\n.mdi-arrow-bottom-right:before {\n  content: \"\\F043\";\n}\n\n.mdi-arrow-compress:before {\n  content: \"\\F615\";\n}\n\n.mdi-arrow-compress-all:before {\n  content: \"\\F044\";\n}\n\n.mdi-arrow-down:before {\n  content: \"\\F045\";\n}\n\n.mdi-arrow-down-bold:before {\n  content: \"\\F046\";\n}\n\n.mdi-arrow-down-bold-circle:before {\n  content: \"\\F047\";\n}\n\n.mdi-arrow-down-bold-circle-outline:before {\n  content: \"\\F048\";\n}\n\n.mdi-arrow-down-bold-hexagon-outline:before {\n  content: \"\\F049\";\n}\n\n.mdi-arrow-down-drop-circle:before {\n  content: \"\\F04A\";\n}\n\n.mdi-arrow-down-drop-circle-outline:before {\n  content: \"\\F04B\";\n}\n\n.mdi-arrow-expand:before {\n  content: \"\\F616\";\n}\n\n.mdi-arrow-expand-all:before {\n  content: \"\\F04C\";\n}\n\n.mdi-arrow-left:before {\n  content: \"\\F04D\";\n}\n\n.mdi-arrow-left-bold:before {\n  content: \"\\F04E\";\n}\n\n.mdi-arrow-left-bold-circle:before {\n  content: \"\\F04F\";\n}\n\n.mdi-arrow-left-bold-circle-outline:before {\n  content: \"\\F050\";\n}\n\n.mdi-arrow-left-bold-hexagon-outline:before {\n  content: \"\\F051\";\n}\n\n.mdi-arrow-left-drop-circle:before {\n  content: \"\\F052\";\n}\n\n.mdi-arrow-left-drop-circle-outline:before {\n  content: \"\\F053\";\n}\n\n.mdi-arrow-right:before {\n  content: \"\\F054\";\n}\n\n.mdi-arrow-right-bold:before {\n  content: \"\\F055\";\n}\n\n.mdi-arrow-right-bold-circle:before {\n  content: \"\\F056\";\n}\n\n.mdi-arrow-right-bold-circle-outline:before {\n  content: \"\\F057\";\n}\n\n.mdi-arrow-right-bold-hexagon-outline:before {\n  content: \"\\F058\";\n}\n\n.mdi-arrow-right-drop-circle:before {\n  content: \"\\F059\";\n}\n\n.mdi-arrow-right-drop-circle-outline:before {\n  content: \"\\F05A\";\n}\n\n.mdi-arrow-top-left:before {\n  content: \"\\F05B\";\n}\n\n.mdi-arrow-top-right:before {\n  content: \"\\F05C\";\n}\n\n.mdi-arrow-up:before {\n  content: \"\\F05D\";\n}\n\n.mdi-arrow-up-bold:before {\n  content: \"\\F05E\";\n}\n\n.mdi-arrow-up-bold-circle:before {\n  content: \"\\F05F\";\n}\n\n.mdi-arrow-up-bold-circle-outline:before {\n  content: \"\\F060\";\n}\n\n.mdi-arrow-up-bold-hexagon-outline:before {\n  content: \"\\F061\";\n}\n\n.mdi-arrow-up-drop-circle:before {\n  content: \"\\F062\";\n}\n\n.mdi-arrow-up-drop-circle-outline:before {\n  content: \"\\F063\";\n}\n\n.mdi-assistant:before {\n  content: \"\\F064\";\n}\n\n.mdi-at:before {\n  content: \"\\F065\";\n}\n\n.mdi-attachment:before {\n  content: \"\\F066\";\n}\n\n.mdi-audiobook:before {\n  content: \"\\F067\";\n}\n\n.mdi-auto-fix:before {\n  content: \"\\F068\";\n}\n\n.mdi-auto-upload:before {\n  content: \"\\F069\";\n}\n\n.mdi-autorenew:before {\n  content: \"\\F06A\";\n}\n\n.mdi-av-timer:before {\n  content: \"\\F06B\";\n}\n\n.mdi-baby:before {\n  content: \"\\F06C\";\n}\n\n.mdi-baby-buggy:before {\n  content: \"\\F68E\";\n}\n\n.mdi-backburger:before {\n  content: \"\\F06D\";\n}\n\n.mdi-backspace:before {\n  content: \"\\F06E\";\n}\n\n.mdi-backup-restore:before {\n  content: \"\\F06F\";\n}\n\n.mdi-bandcamp:before {\n  content: \"\\F674\";\n}\n\n.mdi-bank:before {\n  content: \"\\F070\";\n}\n\n.mdi-barcode:before {\n  content: \"\\F071\";\n}\n\n.mdi-barcode-scan:before {\n  content: \"\\F072\";\n}\n\n.mdi-barley:before {\n  content: \"\\F073\";\n}\n\n.mdi-barrel:before {\n  content: \"\\F074\";\n}\n\n.mdi-basecamp:before {\n  content: \"\\F075\";\n}\n\n.mdi-basket:before {\n  content: \"\\F076\";\n}\n\n.mdi-basket-fill:before {\n  content: \"\\F077\";\n}\n\n.mdi-basket-unfill:before {\n  content: \"\\F078\";\n}\n\n.mdi-battery:before {\n  content: \"\\F079\";\n}\n\n.mdi-battery-10:before {\n  content: \"\\F07A\";\n}\n\n.mdi-battery-20:before {\n  content: \"\\F07B\";\n}\n\n.mdi-battery-30:before {\n  content: \"\\F07C\";\n}\n\n.mdi-battery-40:before {\n  content: \"\\F07D\";\n}\n\n.mdi-battery-50:before {\n  content: \"\\F07E\";\n}\n\n.mdi-battery-60:before {\n  content: \"\\F07F\";\n}\n\n.mdi-battery-70:before {\n  content: \"\\F080\";\n}\n\n.mdi-battery-80:before {\n  content: \"\\F081\";\n}\n\n.mdi-battery-90:before {\n  content: \"\\F082\";\n}\n\n.mdi-battery-alert:before {\n  content: \"\\F083\";\n}\n\n.mdi-battery-charging:before {\n  content: \"\\F084\";\n}\n\n.mdi-battery-charging-100:before {\n  content: \"\\F085\";\n}\n\n.mdi-battery-charging-20:before {\n  content: \"\\F086\";\n}\n\n.mdi-battery-charging-30:before {\n  content: \"\\F087\";\n}\n\n.mdi-battery-charging-40:before {\n  content: \"\\F088\";\n}\n\n.mdi-battery-charging-60:before {\n  content: \"\\F089\";\n}\n\n.mdi-battery-charging-80:before {\n  content: \"\\F08A\";\n}\n\n.mdi-battery-charging-90:before {\n  content: \"\\F08B\";\n}\n\n.mdi-battery-minus:before {\n  content: \"\\F08C\";\n}\n\n.mdi-battery-negative:before {\n  content: \"\\F08D\";\n}\n\n.mdi-battery-outline:before {\n  content: \"\\F08E\";\n}\n\n.mdi-battery-plus:before {\n  content: \"\\F08F\";\n}\n\n.mdi-battery-positive:before {\n  content: \"\\F090\";\n}\n\n.mdi-battery-unknown:before {\n  content: \"\\F091\";\n}\n\n.mdi-beach:before {\n  content: \"\\F092\";\n}\n\n.mdi-beaker:before {\n  content: \"\\F68F\";\n}\n\n.mdi-beats:before {\n  content: \"\\F097\";\n}\n\n.mdi-beer:before {\n  content: \"\\F098\";\n}\n\n.mdi-behance:before {\n  content: \"\\F099\";\n}\n\n.mdi-bell:before {\n  content: \"\\F09A\";\n}\n\n.mdi-bell-off:before {\n  content: \"\\F09B\";\n}\n\n.mdi-bell-outline:before {\n  content: \"\\F09C\";\n}\n\n.mdi-bell-plus:before {\n  content: \"\\F09D\";\n}\n\n.mdi-bell-ring:before {\n  content: \"\\F09E\";\n}\n\n.mdi-bell-ring-outline:before {\n  content: \"\\F09F\";\n}\n\n.mdi-bell-sleep:before {\n  content: \"\\F0A0\";\n}\n\n.mdi-beta:before {\n  content: \"\\F0A1\";\n}\n\n.mdi-bible:before {\n  content: \"\\F0A2\";\n}\n\n.mdi-bike:before {\n  content: \"\\F0A3\";\n}\n\n.mdi-bing:before {\n  content: \"\\F0A4\";\n}\n\n.mdi-binoculars:before {\n  content: \"\\F0A5\";\n}\n\n.mdi-bio:before {\n  content: \"\\F0A6\";\n}\n\n.mdi-biohazard:before {\n  content: \"\\F0A7\";\n}\n\n.mdi-bitbucket:before {\n  content: \"\\F0A8\";\n}\n\n.mdi-black-mesa:before {\n  content: \"\\F0A9\";\n}\n\n.mdi-blackberry:before {\n  content: \"\\F0AA\";\n}\n\n.mdi-blender:before {\n  content: \"\\F0AB\";\n}\n\n.mdi-blinds:before {\n  content: \"\\F0AC\";\n}\n\n.mdi-block-helper:before {\n  content: \"\\F0AD\";\n}\n\n.mdi-blogger:before {\n  content: \"\\F0AE\";\n}\n\n.mdi-bluetooth:before {\n  content: \"\\F0AF\";\n}\n\n.mdi-bluetooth-audio:before {\n  content: \"\\F0B0\";\n}\n\n.mdi-bluetooth-connect:before {\n  content: \"\\F0B1\";\n}\n\n.mdi-bluetooth-off:before {\n  content: \"\\F0B2\";\n}\n\n.mdi-bluetooth-settings:before {\n  content: \"\\F0B3\";\n}\n\n.mdi-bluetooth-transfer:before {\n  content: \"\\F0B4\";\n}\n\n.mdi-blur:before {\n  content: \"\\F0B5\";\n}\n\n.mdi-blur-linear:before {\n  content: \"\\F0B6\";\n}\n\n.mdi-blur-off:before {\n  content: \"\\F0B7\";\n}\n\n.mdi-blur-radial:before {\n  content: \"\\F0B8\";\n}\n\n.mdi-bomb:before {\n  content: \"\\F690\";\n}\n\n.mdi-bone:before {\n  content: \"\\F0B9\";\n}\n\n.mdi-book:before {\n  content: \"\\F0BA\";\n}\n\n.mdi-book-minus:before {\n  content: \"\\F5D9\";\n}\n\n.mdi-book-multiple:before {\n  content: \"\\F0BB\";\n}\n\n.mdi-book-multiple-variant:before {\n  content: \"\\F0BC\";\n}\n\n.mdi-book-open:before {\n  content: \"\\F0BD\";\n}\n\n.mdi-book-open-page-variant:before {\n  content: \"\\F5DA\";\n}\n\n.mdi-book-open-variant:before {\n  content: \"\\F0BE\";\n}\n\n.mdi-book-plus:before {\n  content: \"\\F5DB\";\n}\n\n.mdi-book-variant:before {\n  content: \"\\F0BF\";\n}\n\n.mdi-bookmark:before {\n  content: \"\\F0C0\";\n}\n\n.mdi-bookmark-check:before {\n  content: \"\\F0C1\";\n}\n\n.mdi-bookmark-music:before {\n  content: \"\\F0C2\";\n}\n\n.mdi-bookmark-outline:before {\n  content: \"\\F0C3\";\n}\n\n.mdi-bookmark-plus:before {\n  content: \"\\F0C5\";\n}\n\n.mdi-bookmark-plus-outline:before {\n  content: \"\\F0C4\";\n}\n\n.mdi-bookmark-remove:before {\n  content: \"\\F0C6\";\n}\n\n.mdi-boombox:before {\n  content: \"\\F5DC\";\n}\n\n.mdi-border-all:before {\n  content: \"\\F0C7\";\n}\n\n.mdi-border-bottom:before {\n  content: \"\\F0C8\";\n}\n\n.mdi-border-color:before {\n  content: \"\\F0C9\";\n}\n\n.mdi-border-horizontal:before {\n  content: \"\\F0CA\";\n}\n\n.mdi-border-inside:before {\n  content: \"\\F0CB\";\n}\n\n.mdi-border-left:before {\n  content: \"\\F0CC\";\n}\n\n.mdi-border-none:before {\n  content: \"\\F0CD\";\n}\n\n.mdi-border-outside:before {\n  content: \"\\F0CE\";\n}\n\n.mdi-border-right:before {\n  content: \"\\F0CF\";\n}\n\n.mdi-border-style:before {\n  content: \"\\F0D0\";\n}\n\n.mdi-border-top:before {\n  content: \"\\F0D1\";\n}\n\n.mdi-border-vertical:before {\n  content: \"\\F0D2\";\n}\n\n.mdi-bow-tie:before {\n  content: \"\\F677\";\n}\n\n.mdi-bowl:before {\n  content: \"\\F617\";\n}\n\n.mdi-bowling:before {\n  content: \"\\F0D3\";\n}\n\n.mdi-box:before {\n  content: \"\\F0D4\";\n}\n\n.mdi-box-cutter:before {\n  content: \"\\F0D5\";\n}\n\n.mdi-box-shadow:before {\n  content: \"\\F637\";\n}\n\n.mdi-bridge:before {\n  content: \"\\F618\";\n}\n\n.mdi-briefcase:before {\n  content: \"\\F0D6\";\n}\n\n.mdi-briefcase-check:before {\n  content: \"\\F0D7\";\n}\n\n.mdi-briefcase-download:before {\n  content: \"\\F0D8\";\n}\n\n.mdi-briefcase-upload:before {\n  content: \"\\F0D9\";\n}\n\n.mdi-brightness-1:before {\n  content: \"\\F0DA\";\n}\n\n.mdi-brightness-2:before {\n  content: \"\\F0DB\";\n}\n\n.mdi-brightness-3:before {\n  content: \"\\F0DC\";\n}\n\n.mdi-brightness-4:before {\n  content: \"\\F0DD\";\n}\n\n.mdi-brightness-5:before {\n  content: \"\\F0DE\";\n}\n\n.mdi-brightness-6:before {\n  content: \"\\F0DF\";\n}\n\n.mdi-brightness-7:before {\n  content: \"\\F0E0\";\n}\n\n.mdi-brightness-auto:before {\n  content: \"\\F0E1\";\n}\n\n.mdi-broom:before {\n  content: \"\\F0E2\";\n}\n\n.mdi-brush:before {\n  content: \"\\F0E3\";\n}\n\n.mdi-buffer:before {\n  content: \"\\F619\";\n}\n\n.mdi-bug:before {\n  content: \"\\F0E4\";\n}\n\n.mdi-bulletin-board:before {\n  content: \"\\F0E5\";\n}\n\n.mdi-bullhorn:before {\n  content: \"\\F0E6\";\n}\n\n.mdi-bullseye:before {\n  content: \"\\F5DD\";\n}\n\n.mdi-burst-mode:before {\n  content: \"\\F5DE\";\n}\n\n.mdi-bus:before {\n  content: \"\\F0E7\";\n}\n\n.mdi-cached:before {\n  content: \"\\F0E8\";\n}\n\n.mdi-cake:before {\n  content: \"\\F0E9\";\n}\n\n.mdi-cake-layered:before {\n  content: \"\\F0EA\";\n}\n\n.mdi-cake-variant:before {\n  content: \"\\F0EB\";\n}\n\n.mdi-calculator:before {\n  content: \"\\F0EC\";\n}\n\n.mdi-calendar:before {\n  content: \"\\F0ED\";\n}\n\n.mdi-calendar-blank:before {\n  content: \"\\F0EE\";\n}\n\n.mdi-calendar-check:before {\n  content: \"\\F0EF\";\n}\n\n.mdi-calendar-clock:before {\n  content: \"\\F0F0\";\n}\n\n.mdi-calendar-multiple:before {\n  content: \"\\F0F1\";\n}\n\n.mdi-calendar-multiple-check:before {\n  content: \"\\F0F2\";\n}\n\n.mdi-calendar-plus:before {\n  content: \"\\F0F3\";\n}\n\n.mdi-calendar-question:before {\n  content: \"\\F691\";\n}\n\n.mdi-calendar-range:before {\n  content: \"\\F678\";\n}\n\n.mdi-calendar-remove:before {\n  content: \"\\F0F4\";\n}\n\n.mdi-calendar-text:before {\n  content: \"\\F0F5\";\n}\n\n.mdi-calendar-today:before {\n  content: \"\\F0F6\";\n}\n\n.mdi-call-made:before {\n  content: \"\\F0F7\";\n}\n\n.mdi-call-merge:before {\n  content: \"\\F0F8\";\n}\n\n.mdi-call-missed:before {\n  content: \"\\F0F9\";\n}\n\n.mdi-call-received:before {\n  content: \"\\F0FA\";\n}\n\n.mdi-call-split:before {\n  content: \"\\F0FB\";\n}\n\n.mdi-camcorder:before {\n  content: \"\\F0FC\";\n}\n\n.mdi-camcorder-box:before {\n  content: \"\\F0FD\";\n}\n\n.mdi-camcorder-box-off:before {\n  content: \"\\F0FE\";\n}\n\n.mdi-camcorder-off:before {\n  content: \"\\F0FF\";\n}\n\n.mdi-camera:before {\n  content: \"\\F100\";\n}\n\n.mdi-camera-burst:before {\n  content: \"\\F692\";\n}\n\n.mdi-camera-enhance:before {\n  content: \"\\F101\";\n}\n\n.mdi-camera-front:before {\n  content: \"\\F102\";\n}\n\n.mdi-camera-front-variant:before {\n  content: \"\\F103\";\n}\n\n.mdi-camera-iris:before {\n  content: \"\\F104\";\n}\n\n.mdi-camera-off:before {\n  content: \"\\F5DF\";\n}\n\n.mdi-camera-party-mode:before {\n  content: \"\\F105\";\n}\n\n.mdi-camera-rear:before {\n  content: \"\\F106\";\n}\n\n.mdi-camera-rear-variant:before {\n  content: \"\\F107\";\n}\n\n.mdi-camera-switch:before {\n  content: \"\\F108\";\n}\n\n.mdi-camera-timer:before {\n  content: \"\\F109\";\n}\n\n.mdi-candle:before {\n  content: \"\\F5E2\";\n}\n\n.mdi-candycane:before {\n  content: \"\\F10A\";\n}\n\n.mdi-car:before {\n  content: \"\\F10B\";\n}\n\n.mdi-car-battery:before {\n  content: \"\\F10C\";\n}\n\n.mdi-car-connected:before {\n  content: \"\\F10D\";\n}\n\n.mdi-car-wash:before {\n  content: \"\\F10E\";\n}\n\n.mdi-cards:before {\n  content: \"\\F638\";\n}\n\n.mdi-cards-outline:before {\n  content: \"\\F639\";\n}\n\n.mdi-cards-playing-outline:before {\n  content: \"\\F63A\";\n}\n\n.mdi-carrot:before {\n  content: \"\\F10F\";\n}\n\n.mdi-cart:before {\n  content: \"\\F110\";\n}\n\n.mdi-cart-off:before {\n  content: \"\\F66B\";\n}\n\n.mdi-cart-outline:before {\n  content: \"\\F111\";\n}\n\n.mdi-cart-plus:before {\n  content: \"\\F112\";\n}\n\n.mdi-case-sensitive-alt:before {\n  content: \"\\F113\";\n}\n\n.mdi-cash:before {\n  content: \"\\F114\";\n}\n\n.mdi-cash-100:before {\n  content: \"\\F115\";\n}\n\n.mdi-cash-multiple:before {\n  content: \"\\F116\";\n}\n\n.mdi-cash-usd:before {\n  content: \"\\F117\";\n}\n\n.mdi-cast:before {\n  content: \"\\F118\";\n}\n\n.mdi-cast-connected:before {\n  content: \"\\F119\";\n}\n\n.mdi-castle:before {\n  content: \"\\F11A\";\n}\n\n.mdi-cat:before {\n  content: \"\\F11B\";\n}\n\n.mdi-cellphone:before {\n  content: \"\\F11C\";\n}\n\n.mdi-cellphone-android:before {\n  content: \"\\F11D\";\n}\n\n.mdi-cellphone-basic:before {\n  content: \"\\F11E\";\n}\n\n.mdi-cellphone-dock:before {\n  content: \"\\F11F\";\n}\n\n.mdi-cellphone-iphone:before {\n  content: \"\\F120\";\n}\n\n.mdi-cellphone-link:before {\n  content: \"\\F121\";\n}\n\n.mdi-cellphone-link-off:before {\n  content: \"\\F122\";\n}\n\n.mdi-cellphone-settings:before {\n  content: \"\\F123\";\n}\n\n.mdi-certificate:before {\n  content: \"\\F124\";\n}\n\n.mdi-chair-school:before {\n  content: \"\\F125\";\n}\n\n.mdi-chart-arc:before {\n  content: \"\\F126\";\n}\n\n.mdi-chart-areaspline:before {\n  content: \"\\F127\";\n}\n\n.mdi-chart-bar:before {\n  content: \"\\F128\";\n}\n\n.mdi-chart-bubble:before {\n  content: \"\\F5E3\";\n}\n\n.mdi-chart-gantt:before {\n  content: \"\\F66C\";\n}\n\n.mdi-chart-histogram:before {\n  content: \"\\F129\";\n}\n\n.mdi-chart-line:before {\n  content: \"\\F12A\";\n}\n\n.mdi-chart-pie:before {\n  content: \"\\F12B\";\n}\n\n.mdi-chart-scatterplot-hexbin:before {\n  content: \"\\F66D\";\n}\n\n.mdi-chart-timeline:before {\n  content: \"\\F66E\";\n}\n\n.mdi-check:before {\n  content: \"\\F12C\";\n}\n\n.mdi-check-all:before {\n  content: \"\\F12D\";\n}\n\n.mdi-check-circle:before {\n  content: \"\\F5E0\";\n}\n\n.mdi-check-circle-outline:before {\n  content: \"\\F5E1\";\n}\n\n.mdi-checkbox-blank:before {\n  content: \"\\F12E\";\n}\n\n.mdi-checkbox-blank-circle:before {\n  content: \"\\F12F\";\n}\n\n.mdi-checkbox-blank-circle-outline:before {\n  content: \"\\F130\";\n}\n\n.mdi-checkbox-blank-outline:before {\n  content: \"\\F131\";\n}\n\n.mdi-checkbox-marked:before {\n  content: \"\\F132\";\n}\n\n.mdi-checkbox-marked-circle:before {\n  content: \"\\F133\";\n}\n\n.mdi-checkbox-marked-circle-outline:before {\n  content: \"\\F134\";\n}\n\n.mdi-checkbox-marked-outline:before {\n  content: \"\\F135\";\n}\n\n.mdi-checkbox-multiple-blank:before {\n  content: \"\\F136\";\n}\n\n.mdi-checkbox-multiple-blank-circle:before {\n  content: \"\\F63B\";\n}\n\n.mdi-checkbox-multiple-blank-circle-outline:before {\n  content: \"\\F63C\";\n}\n\n.mdi-checkbox-multiple-blank-outline:before {\n  content: \"\\F137\";\n}\n\n.mdi-checkbox-multiple-marked:before {\n  content: \"\\F138\";\n}\n\n.mdi-checkbox-multiple-marked-circle:before {\n  content: \"\\F63D\";\n}\n\n.mdi-checkbox-multiple-marked-circle-outline:before {\n  content: \"\\F63E\";\n}\n\n.mdi-checkbox-multiple-marked-outline:before {\n  content: \"\\F139\";\n}\n\n.mdi-checkerboard:before {\n  content: \"\\F13A\";\n}\n\n.mdi-chemical-weapon:before {\n  content: \"\\F13B\";\n}\n\n.mdi-chevron-double-down:before {\n  content: \"\\F13C\";\n}\n\n.mdi-chevron-double-left:before {\n  content: \"\\F13D\";\n}\n\n.mdi-chevron-double-right:before {\n  content: \"\\F13E\";\n}\n\n.mdi-chevron-double-up:before {\n  content: \"\\F13F\";\n}\n\n.mdi-chevron-down:before {\n  content: \"\\F140\";\n}\n\n.mdi-chevron-left:before {\n  content: \"\\F141\";\n}\n\n.mdi-chevron-right:before {\n  content: \"\\F142\";\n}\n\n.mdi-chevron-up:before {\n  content: \"\\F143\";\n}\n\n.mdi-chip:before {\n  content: \"\\F61A\";\n}\n\n.mdi-church:before {\n  content: \"\\F144\";\n}\n\n.mdi-cisco-webex:before {\n  content: \"\\F145\";\n}\n\n.mdi-city:before {\n  content: \"\\F146\";\n}\n\n.mdi-clipboard:before {\n  content: \"\\F147\";\n}\n\n.mdi-clipboard-account:before {\n  content: \"\\F148\";\n}\n\n.mdi-clipboard-alert:before {\n  content: \"\\F149\";\n}\n\n.mdi-clipboard-arrow-down:before {\n  content: \"\\F14A\";\n}\n\n.mdi-clipboard-arrow-left:before {\n  content: \"\\F14B\";\n}\n\n.mdi-clipboard-check:before {\n  content: \"\\F14C\";\n}\n\n.mdi-clipboard-outline:before {\n  content: \"\\F14D\";\n}\n\n.mdi-clipboard-text:before {\n  content: \"\\F14E\";\n}\n\n.mdi-clippy:before {\n  content: \"\\F14F\";\n}\n\n.mdi-clock:before {\n  content: \"\\F150\";\n}\n\n.mdi-clock-alert:before {\n  content: \"\\F5CE\";\n}\n\n.mdi-clock-end:before {\n  content: \"\\F151\";\n}\n\n.mdi-clock-fast:before {\n  content: \"\\F152\";\n}\n\n.mdi-clock-in:before {\n  content: \"\\F153\";\n}\n\n.mdi-clock-out:before {\n  content: \"\\F154\";\n}\n\n.mdi-clock-start:before {\n  content: \"\\F155\";\n}\n\n.mdi-close:before {\n  content: \"\\F156\";\n}\n\n.mdi-close-box:before {\n  content: \"\\F157\";\n}\n\n.mdi-close-box-outline:before {\n  content: \"\\F158\";\n}\n\n.mdi-close-circle:before {\n  content: \"\\F159\";\n}\n\n.mdi-close-circle-outline:before {\n  content: \"\\F15A\";\n}\n\n.mdi-close-network:before {\n  content: \"\\F15B\";\n}\n\n.mdi-close-octagon:before {\n  content: \"\\F15C\";\n}\n\n.mdi-close-octagon-outline:before {\n  content: \"\\F15D\";\n}\n\n.mdi-closed-caption:before {\n  content: \"\\F15E\";\n}\n\n.mdi-cloud:before {\n  content: \"\\F15F\";\n}\n\n.mdi-cloud-check:before {\n  content: \"\\F160\";\n}\n\n.mdi-cloud-circle:before {\n  content: \"\\F161\";\n}\n\n.mdi-cloud-download:before {\n  content: \"\\F162\";\n}\n\n.mdi-cloud-outline:before {\n  content: \"\\F163\";\n}\n\n.mdi-cloud-outline-off:before {\n  content: \"\\F164\";\n}\n\n.mdi-cloud-print:before {\n  content: \"\\F165\";\n}\n\n.mdi-cloud-print-outline:before {\n  content: \"\\F166\";\n}\n\n.mdi-cloud-sync:before {\n  content: \"\\F63F\";\n}\n\n.mdi-cloud-upload:before {\n  content: \"\\F167\";\n}\n\n.mdi-code-array:before {\n  content: \"\\F168\";\n}\n\n.mdi-code-braces:before {\n  content: \"\\F169\";\n}\n\n.mdi-code-brackets:before {\n  content: \"\\F16A\";\n}\n\n.mdi-code-equal:before {\n  content: \"\\F16B\";\n}\n\n.mdi-code-greater-than:before {\n  content: \"\\F16C\";\n}\n\n.mdi-code-greater-than-or-equal:before {\n  content: \"\\F16D\";\n}\n\n.mdi-code-less-than:before {\n  content: \"\\F16E\";\n}\n\n.mdi-code-less-than-or-equal:before {\n  content: \"\\F16F\";\n}\n\n.mdi-code-not-equal:before {\n  content: \"\\F170\";\n}\n\n.mdi-code-not-equal-variant:before {\n  content: \"\\F171\";\n}\n\n.mdi-code-parentheses:before {\n  content: \"\\F172\";\n}\n\n.mdi-code-string:before {\n  content: \"\\F173\";\n}\n\n.mdi-code-tags:before {\n  content: \"\\F174\";\n}\n\n.mdi-code-tags-check:before {\n  content: \"\\F693\";\n}\n\n.mdi-codepen:before {\n  content: \"\\F175\";\n}\n\n.mdi-coffee:before {\n  content: \"\\F176\";\n}\n\n.mdi-coffee-to-go:before {\n  content: \"\\F177\";\n}\n\n.mdi-coin:before {\n  content: \"\\F178\";\n}\n\n.mdi-coins:before {\n  content: \"\\F694\";\n}\n\n.mdi-collage:before {\n  content: \"\\F640\";\n}\n\n.mdi-color-helper:before {\n  content: \"\\F179\";\n}\n\n.mdi-comment:before {\n  content: \"\\F17A\";\n}\n\n.mdi-comment-account:before {\n  content: \"\\F17B\";\n}\n\n.mdi-comment-account-outline:before {\n  content: \"\\F17C\";\n}\n\n.mdi-comment-alert:before {\n  content: \"\\F17D\";\n}\n\n.mdi-comment-alert-outline:before {\n  content: \"\\F17E\";\n}\n\n.mdi-comment-check:before {\n  content: \"\\F17F\";\n}\n\n.mdi-comment-check-outline:before {\n  content: \"\\F180\";\n}\n\n.mdi-comment-multiple-outline:before {\n  content: \"\\F181\";\n}\n\n.mdi-comment-outline:before {\n  content: \"\\F182\";\n}\n\n.mdi-comment-plus-outline:before {\n  content: \"\\F183\";\n}\n\n.mdi-comment-processing:before {\n  content: \"\\F184\";\n}\n\n.mdi-comment-processing-outline:before {\n  content: \"\\F185\";\n}\n\n.mdi-comment-question-outline:before {\n  content: \"\\F186\";\n}\n\n.mdi-comment-remove-outline:before {\n  content: \"\\F187\";\n}\n\n.mdi-comment-text:before {\n  content: \"\\F188\";\n}\n\n.mdi-comment-text-outline:before {\n  content: \"\\F189\";\n}\n\n.mdi-compare:before {\n  content: \"\\F18A\";\n}\n\n.mdi-compass:before {\n  content: \"\\F18B\";\n}\n\n.mdi-compass-outline:before {\n  content: \"\\F18C\";\n}\n\n.mdi-console:before {\n  content: \"\\F18D\";\n}\n\n.mdi-contact-mail:before {\n  content: \"\\F18E\";\n}\n\n.mdi-content-copy:before {\n  content: \"\\F18F\";\n}\n\n.mdi-content-cut:before {\n  content: \"\\F190\";\n}\n\n.mdi-content-duplicate:before {\n  content: \"\\F191\";\n}\n\n.mdi-content-paste:before {\n  content: \"\\F192\";\n}\n\n.mdi-content-save:before {\n  content: \"\\F193\";\n}\n\n.mdi-content-save-all:before {\n  content: \"\\F194\";\n}\n\n.mdi-content-save-settings:before {\n  content: \"\\F61B\";\n}\n\n.mdi-contrast:before {\n  content: \"\\F195\";\n}\n\n.mdi-contrast-box:before {\n  content: \"\\F196\";\n}\n\n.mdi-contrast-circle:before {\n  content: \"\\F197\";\n}\n\n.mdi-cookie:before {\n  content: \"\\F198\";\n}\n\n.mdi-copyright:before {\n  content: \"\\F5E6\";\n}\n\n.mdi-counter:before {\n  content: \"\\F199\";\n}\n\n.mdi-cow:before {\n  content: \"\\F19A\";\n}\n\n.mdi-creation:before {\n  content: \"\\F1C9\";\n}\n\n.mdi-credit-card:before {\n  content: \"\\F19B\";\n}\n\n.mdi-credit-card-multiple:before {\n  content: \"\\F19C\";\n}\n\n.mdi-credit-card-off:before {\n  content: \"\\F5E4\";\n}\n\n.mdi-credit-card-plus:before {\n  content: \"\\F675\";\n}\n\n.mdi-credit-card-scan:before {\n  content: \"\\F19D\";\n}\n\n.mdi-crop:before {\n  content: \"\\F19E\";\n}\n\n.mdi-crop-free:before {\n  content: \"\\F19F\";\n}\n\n.mdi-crop-landscape:before {\n  content: \"\\F1A0\";\n}\n\n.mdi-crop-portrait:before {\n  content: \"\\F1A1\";\n}\n\n.mdi-crop-rotate:before {\n  content: \"\\F695\";\n}\n\n.mdi-crop-square:before {\n  content: \"\\F1A2\";\n}\n\n.mdi-crosshairs:before {\n  content: \"\\F1A3\";\n}\n\n.mdi-crosshairs-gps:before {\n  content: \"\\F1A4\";\n}\n\n.mdi-crown:before {\n  content: \"\\F1A5\";\n}\n\n.mdi-cube:before {\n  content: \"\\F1A6\";\n}\n\n.mdi-cube-outline:before {\n  content: \"\\F1A7\";\n}\n\n.mdi-cube-send:before {\n  content: \"\\F1A8\";\n}\n\n.mdi-cube-unfolded:before {\n  content: \"\\F1A9\";\n}\n\n.mdi-cup:before {\n  content: \"\\F1AA\";\n}\n\n.mdi-cup-off:before {\n  content: \"\\F5E5\";\n}\n\n.mdi-cup-water:before {\n  content: \"\\F1AB\";\n}\n\n.mdi-currency-btc:before {\n  content: \"\\F1AC\";\n}\n\n.mdi-currency-eur:before {\n  content: \"\\F1AD\";\n}\n\n.mdi-currency-gbp:before {\n  content: \"\\F1AE\";\n}\n\n.mdi-currency-inr:before {\n  content: \"\\F1AF\";\n}\n\n.mdi-currency-ngn:before {\n  content: \"\\F1B0\";\n}\n\n.mdi-currency-rub:before {\n  content: \"\\F1B1\";\n}\n\n.mdi-currency-try:before {\n  content: \"\\F1B2\";\n}\n\n.mdi-currency-usd:before {\n  content: \"\\F1B3\";\n}\n\n.mdi-currency-usd-off:before {\n  content: \"\\F679\";\n}\n\n.mdi-cursor-default:before {\n  content: \"\\F1B4\";\n}\n\n.mdi-cursor-default-outline:before {\n  content: \"\\F1B5\";\n}\n\n.mdi-cursor-move:before {\n  content: \"\\F1B6\";\n}\n\n.mdi-cursor-pointer:before {\n  content: \"\\F1B7\";\n}\n\n.mdi-cursor-text:before {\n  content: \"\\F5E7\";\n}\n\n.mdi-database:before {\n  content: \"\\F1B8\";\n}\n\n.mdi-database-minus:before {\n  content: \"\\F1B9\";\n}\n\n.mdi-database-plus:before {\n  content: \"\\F1BA\";\n}\n\n.mdi-debug-step-into:before {\n  content: \"\\F1BB\";\n}\n\n.mdi-debug-step-out:before {\n  content: \"\\F1BC\";\n}\n\n.mdi-debug-step-over:before {\n  content: \"\\F1BD\";\n}\n\n.mdi-decimal-decrease:before {\n  content: \"\\F1BE\";\n}\n\n.mdi-decimal-increase:before {\n  content: \"\\F1BF\";\n}\n\n.mdi-delete:before {\n  content: \"\\F1C0\";\n}\n\n.mdi-delete-circle:before {\n  content: \"\\F682\";\n}\n\n.mdi-delete-forever:before {\n  content: \"\\F5E8\";\n}\n\n.mdi-delete-sweep:before {\n  content: \"\\F5E9\";\n}\n\n.mdi-delete-variant:before {\n  content: \"\\F1C1\";\n}\n\n.mdi-delta:before {\n  content: \"\\F1C2\";\n}\n\n.mdi-deskphone:before {\n  content: \"\\F1C3\";\n}\n\n.mdi-desktop-mac:before {\n  content: \"\\F1C4\";\n}\n\n.mdi-desktop-tower:before {\n  content: \"\\F1C5\";\n}\n\n.mdi-details:before {\n  content: \"\\F1C6\";\n}\n\n.mdi-developer-board:before {\n  content: \"\\F696\";\n}\n\n.mdi-deviantart:before {\n  content: \"\\F1C7\";\n}\n\n.mdi-dialpad:before {\n  content: \"\\F61C\";\n}\n\n.mdi-diamond:before {\n  content: \"\\F1C8\";\n}\n\n.mdi-dice-1:before {\n  content: \"\\F1CA\";\n}\n\n.mdi-dice-2:before {\n  content: \"\\F1CB\";\n}\n\n.mdi-dice-3:before {\n  content: \"\\F1CC\";\n}\n\n.mdi-dice-4:before {\n  content: \"\\F1CD\";\n}\n\n.mdi-dice-5:before {\n  content: \"\\F1CE\";\n}\n\n.mdi-dice-6:before {\n  content: \"\\F1CF\";\n}\n\n.mdi-dice-d20:before {\n  content: \"\\F5EA\";\n}\n\n.mdi-dice-d4:before {\n  content: \"\\F5EB\";\n}\n\n.mdi-dice-d6:before {\n  content: \"\\F5EC\";\n}\n\n.mdi-dice-d8:before {\n  content: \"\\F5ED\";\n}\n\n.mdi-dictionary:before {\n  content: \"\\F61D\";\n}\n\n.mdi-directions:before {\n  content: \"\\F1D0\";\n}\n\n.mdi-directions-fork:before {\n  content: \"\\F641\";\n}\n\n.mdi-discord:before {\n  content: \"\\F66F\";\n}\n\n.mdi-disk:before {\n  content: \"\\F5EE\";\n}\n\n.mdi-disk-alert:before {\n  content: \"\\F1D1\";\n}\n\n.mdi-disqus:before {\n  content: \"\\F1D2\";\n}\n\n.mdi-disqus-outline:before {\n  content: \"\\F1D3\";\n}\n\n.mdi-division:before {\n  content: \"\\F1D4\";\n}\n\n.mdi-division-box:before {\n  content: \"\\F1D5\";\n}\n\n.mdi-dna:before {\n  content: \"\\F683\";\n}\n\n.mdi-dns:before {\n  content: \"\\F1D6\";\n}\n\n.mdi-do-not-disturb:before {\n  content: \"\\F697\";\n}\n\n.mdi-do-not-disturb-off:before {\n  content: \"\\F698\";\n}\n\n.mdi-dolby:before {\n  content: \"\\F6B2\";\n}\n\n.mdi-domain:before {\n  content: \"\\F1D7\";\n}\n\n.mdi-dots-horizontal:before {\n  content: \"\\F1D8\";\n}\n\n.mdi-dots-vertical:before {\n  content: \"\\F1D9\";\n}\n\n.mdi-douban:before {\n  content: \"\\F699\";\n}\n\n.mdi-download:before {\n  content: \"\\F1DA\";\n}\n\n.mdi-drag:before {\n  content: \"\\F1DB\";\n}\n\n.mdi-drag-horizontal:before {\n  content: \"\\F1DC\";\n}\n\n.mdi-drag-vertical:before {\n  content: \"\\F1DD\";\n}\n\n.mdi-drawing:before {\n  content: \"\\F1DE\";\n}\n\n.mdi-drawing-box:before {\n  content: \"\\F1DF\";\n}\n\n.mdi-dribbble:before {\n  content: \"\\F1E0\";\n}\n\n.mdi-dribbble-box:before {\n  content: \"\\F1E1\";\n}\n\n.mdi-drone:before {\n  content: \"\\F1E2\";\n}\n\n.mdi-dropbox:before {\n  content: \"\\F1E3\";\n}\n\n.mdi-drupal:before {\n  content: \"\\F1E4\";\n}\n\n.mdi-duck:before {\n  content: \"\\F1E5\";\n}\n\n.mdi-dumbbell:before {\n  content: \"\\F1E6\";\n}\n\n.mdi-earth:before {\n  content: \"\\F1E7\";\n}\n\n.mdi-earth-off:before {\n  content: \"\\F1E8\";\n}\n\n.mdi-edge:before {\n  content: \"\\F1E9\";\n}\n\n.mdi-eject:before {\n  content: \"\\F1EA\";\n}\n\n.mdi-elevation-decline:before {\n  content: \"\\F1EB\";\n}\n\n.mdi-elevation-rise:before {\n  content: \"\\F1EC\";\n}\n\n.mdi-elevator:before {\n  content: \"\\F1ED\";\n}\n\n.mdi-email:before {\n  content: \"\\F1EE\";\n}\n\n.mdi-email-open:before {\n  content: \"\\F1EF\";\n}\n\n.mdi-email-open-outline:before {\n  content: \"\\F5EF\";\n}\n\n.mdi-email-outline:before {\n  content: \"\\F1F0\";\n}\n\n.mdi-email-secure:before {\n  content: \"\\F1F1\";\n}\n\n.mdi-email-variant:before {\n  content: \"\\F5F0\";\n}\n\n.mdi-emby:before {\n  content: \"\\F6B3\";\n}\n\n.mdi-emoticon:before {\n  content: \"\\F1F2\";\n}\n\n.mdi-emoticon-cool:before {\n  content: \"\\F1F3\";\n}\n\n.mdi-emoticon-dead:before {\n  content: \"\\F69A\";\n}\n\n.mdi-emoticon-devil:before {\n  content: \"\\F1F4\";\n}\n\n.mdi-emoticon-excited:before {\n  content: \"\\F69B\";\n}\n\n.mdi-emoticon-happy:before {\n  content: \"\\F1F5\";\n}\n\n.mdi-emoticon-neutral:before {\n  content: \"\\F1F6\";\n}\n\n.mdi-emoticon-poop:before {\n  content: \"\\F1F7\";\n}\n\n.mdi-emoticon-sad:before {\n  content: \"\\F1F8\";\n}\n\n.mdi-emoticon-tongue:before {\n  content: \"\\F1F9\";\n}\n\n.mdi-engine:before {\n  content: \"\\F1FA\";\n}\n\n.mdi-engine-outline:before {\n  content: \"\\F1FB\";\n}\n\n.mdi-equal:before {\n  content: \"\\F1FC\";\n}\n\n.mdi-equal-box:before {\n  content: \"\\F1FD\";\n}\n\n.mdi-eraser:before {\n  content: \"\\F1FE\";\n}\n\n.mdi-eraser-variant:before {\n  content: \"\\F642\";\n}\n\n.mdi-escalator:before {\n  content: \"\\F1FF\";\n}\n\n.mdi-ethernet:before {\n  content: \"\\F200\";\n}\n\n.mdi-ethernet-cable:before {\n  content: \"\\F201\";\n}\n\n.mdi-ethernet-cable-off:before {\n  content: \"\\F202\";\n}\n\n.mdi-etsy:before {\n  content: \"\\F203\";\n}\n\n.mdi-ev-station:before {\n  content: \"\\F5F1\";\n}\n\n.mdi-evernote:before {\n  content: \"\\F204\";\n}\n\n.mdi-exclamation:before {\n  content: \"\\F205\";\n}\n\n.mdi-exit-to-app:before {\n  content: \"\\F206\";\n}\n\n.mdi-export:before {\n  content: \"\\F207\";\n}\n\n.mdi-eye:before {\n  content: \"\\F208\";\n}\n\n.mdi-eye-off:before {\n  content: \"\\F209\";\n}\n\n.mdi-eyedropper:before {\n  content: \"\\F20A\";\n}\n\n.mdi-eyedropper-variant:before {\n  content: \"\\F20B\";\n}\n\n.mdi-face:before {\n  content: \"\\F643\";\n}\n\n.mdi-face-profile:before {\n  content: \"\\F644\";\n}\n\n.mdi-facebook:before {\n  content: \"\\F20C\";\n}\n\n.mdi-facebook-box:before {\n  content: \"\\F20D\";\n}\n\n.mdi-facebook-messenger:before {\n  content: \"\\F20E\";\n}\n\n.mdi-factory:before {\n  content: \"\\F20F\";\n}\n\n.mdi-fan:before {\n  content: \"\\F210\";\n}\n\n.mdi-fast-forward:before {\n  content: \"\\F211\";\n}\n\n.mdi-fax:before {\n  content: \"\\F212\";\n}\n\n.mdi-ferry:before {\n  content: \"\\F213\";\n}\n\n.mdi-file:before {\n  content: \"\\F214\";\n}\n\n.mdi-file-chart:before {\n  content: \"\\F215\";\n}\n\n.mdi-file-check:before {\n  content: \"\\F216\";\n}\n\n.mdi-file-cloud:before {\n  content: \"\\F217\";\n}\n\n.mdi-file-delimited:before {\n  content: \"\\F218\";\n}\n\n.mdi-file-document:before {\n  content: \"\\F219\";\n}\n\n.mdi-file-document-box:before {\n  content: \"\\F21A\";\n}\n\n.mdi-file-excel:before {\n  content: \"\\F21B\";\n}\n\n.mdi-file-excel-box:before {\n  content: \"\\F21C\";\n}\n\n.mdi-file-export:before {\n  content: \"\\F21D\";\n}\n\n.mdi-file-find:before {\n  content: \"\\F21E\";\n}\n\n.mdi-file-hidden:before {\n  content: \"\\F613\";\n}\n\n.mdi-file-image:before {\n  content: \"\\F21F\";\n}\n\n.mdi-file-import:before {\n  content: \"\\F220\";\n}\n\n.mdi-file-lock:before {\n  content: \"\\F221\";\n}\n\n.mdi-file-multiple:before {\n  content: \"\\F222\";\n}\n\n.mdi-file-music:before {\n  content: \"\\F223\";\n}\n\n.mdi-file-outline:before {\n  content: \"\\F224\";\n}\n\n.mdi-file-pdf:before {\n  content: \"\\F225\";\n}\n\n.mdi-file-pdf-box:before {\n  content: \"\\F226\";\n}\n\n.mdi-file-powerpoint:before {\n  content: \"\\F227\";\n}\n\n.mdi-file-powerpoint-box:before {\n  content: \"\\F228\";\n}\n\n.mdi-file-presentation-box:before {\n  content: \"\\F229\";\n}\n\n.mdi-file-restore:before {\n  content: \"\\F670\";\n}\n\n.mdi-file-send:before {\n  content: \"\\F22A\";\n}\n\n.mdi-file-tree:before {\n  content: \"\\F645\";\n}\n\n.mdi-file-video:before {\n  content: \"\\F22B\";\n}\n\n.mdi-file-word:before {\n  content: \"\\F22C\";\n}\n\n.mdi-file-word-box:before {\n  content: \"\\F22D\";\n}\n\n.mdi-file-xml:before {\n  content: \"\\F22E\";\n}\n\n.mdi-film:before {\n  content: \"\\F22F\";\n}\n\n.mdi-filmstrip:before {\n  content: \"\\F230\";\n}\n\n.mdi-filmstrip-off:before {\n  content: \"\\F231\";\n}\n\n.mdi-filter:before {\n  content: \"\\F232\";\n}\n\n.mdi-filter-outline:before {\n  content: \"\\F233\";\n}\n\n.mdi-filter-remove:before {\n  content: \"\\F234\";\n}\n\n.mdi-filter-remove-outline:before {\n  content: \"\\F235\";\n}\n\n.mdi-filter-variant:before {\n  content: \"\\F236\";\n}\n\n.mdi-fingerprint:before {\n  content: \"\\F237\";\n}\n\n.mdi-fire:before {\n  content: \"\\F238\";\n}\n\n.mdi-firefox:before {\n  content: \"\\F239\";\n}\n\n.mdi-fish:before {\n  content: \"\\F23A\";\n}\n\n.mdi-flag:before {\n  content: \"\\F23B\";\n}\n\n.mdi-flag-checkered:before {\n  content: \"\\F23C\";\n}\n\n.mdi-flag-outline:before {\n  content: \"\\F23D\";\n}\n\n.mdi-flag-outline-variant:before {\n  content: \"\\F23E\";\n}\n\n.mdi-flag-triangle:before {\n  content: \"\\F23F\";\n}\n\n.mdi-flag-variant:before {\n  content: \"\\F240\";\n}\n\n.mdi-flash:before {\n  content: \"\\F241\";\n}\n\n.mdi-flash-auto:before {\n  content: \"\\F242\";\n}\n\n.mdi-flash-off:before {\n  content: \"\\F243\";\n}\n\n.mdi-flash-red-eye:before {\n  content: \"\\F67A\";\n}\n\n.mdi-flashlight:before {\n  content: \"\\F244\";\n}\n\n.mdi-flashlight-off:before {\n  content: \"\\F245\";\n}\n\n.mdi-flask:before {\n  content: \"\\F093\";\n}\n\n.mdi-flask-empty:before {\n  content: \"\\F094\";\n}\n\n.mdi-flask-empty-outline:before {\n  content: \"\\F095\";\n}\n\n.mdi-flask-outline:before {\n  content: \"\\F096\";\n}\n\n.mdi-flattr:before {\n  content: \"\\F246\";\n}\n\n.mdi-flip-to-back:before {\n  content: \"\\F247\";\n}\n\n.mdi-flip-to-front:before {\n  content: \"\\F248\";\n}\n\n.mdi-floppy:before {\n  content: \"\\F249\";\n}\n\n.mdi-flower:before {\n  content: \"\\F24A\";\n}\n\n.mdi-folder:before {\n  content: \"\\F24B\";\n}\n\n.mdi-folder-account:before {\n  content: \"\\F24C\";\n}\n\n.mdi-folder-download:before {\n  content: \"\\F24D\";\n}\n\n.mdi-folder-google-drive:before {\n  content: \"\\F24E\";\n}\n\n.mdi-folder-image:before {\n  content: \"\\F24F\";\n}\n\n.mdi-folder-lock:before {\n  content: \"\\F250\";\n}\n\n.mdi-folder-lock-open:before {\n  content: \"\\F251\";\n}\n\n.mdi-folder-move:before {\n  content: \"\\F252\";\n}\n\n.mdi-folder-multiple:before {\n  content: \"\\F253\";\n}\n\n.mdi-folder-multiple-image:before {\n  content: \"\\F254\";\n}\n\n.mdi-folder-multiple-outline:before {\n  content: \"\\F255\";\n}\n\n.mdi-folder-outline:before {\n  content: \"\\F256\";\n}\n\n.mdi-folder-plus:before {\n  content: \"\\F257\";\n}\n\n.mdi-folder-remove:before {\n  content: \"\\F258\";\n}\n\n.mdi-folder-star:before {\n  content: \"\\F69C\";\n}\n\n.mdi-folder-upload:before {\n  content: \"\\F259\";\n}\n\n.mdi-food:before {\n  content: \"\\F25A\";\n}\n\n.mdi-food-apple:before {\n  content: \"\\F25B\";\n}\n\n.mdi-food-fork-drink:before {\n  content: \"\\F5F2\";\n}\n\n.mdi-food-off:before {\n  content: \"\\F5F3\";\n}\n\n.mdi-food-variant:before {\n  content: \"\\F25C\";\n}\n\n.mdi-football:before {\n  content: \"\\F25D\";\n}\n\n.mdi-football-australian:before {\n  content: \"\\F25E\";\n}\n\n.mdi-football-helmet:before {\n  content: \"\\F25F\";\n}\n\n.mdi-format-align-center:before {\n  content: \"\\F260\";\n}\n\n.mdi-format-align-justify:before {\n  content: \"\\F261\";\n}\n\n.mdi-format-align-left:before {\n  content: \"\\F262\";\n}\n\n.mdi-format-align-right:before {\n  content: \"\\F263\";\n}\n\n.mdi-format-annotation-plus:before {\n  content: \"\\F646\";\n}\n\n.mdi-format-bold:before {\n  content: \"\\F264\";\n}\n\n.mdi-format-clear:before {\n  content: \"\\F265\";\n}\n\n.mdi-format-color-fill:before {\n  content: \"\\F266\";\n}\n\n.mdi-format-color-text:before {\n  content: \"\\F69D\";\n}\n\n.mdi-format-float-center:before {\n  content: \"\\F267\";\n}\n\n.mdi-format-float-left:before {\n  content: \"\\F268\";\n}\n\n.mdi-format-float-none:before {\n  content: \"\\F269\";\n}\n\n.mdi-format-float-right:before {\n  content: \"\\F26A\";\n}\n\n.mdi-format-header-1:before {\n  content: \"\\F26B\";\n}\n\n.mdi-format-header-2:before {\n  content: \"\\F26C\";\n}\n\n.mdi-format-header-3:before {\n  content: \"\\F26D\";\n}\n\n.mdi-format-header-4:before {\n  content: \"\\F26E\";\n}\n\n.mdi-format-header-5:before {\n  content: \"\\F26F\";\n}\n\n.mdi-format-header-6:before {\n  content: \"\\F270\";\n}\n\n.mdi-format-header-decrease:before {\n  content: \"\\F271\";\n}\n\n.mdi-format-header-equal:before {\n  content: \"\\F272\";\n}\n\n.mdi-format-header-increase:before {\n  content: \"\\F273\";\n}\n\n.mdi-format-header-pound:before {\n  content: \"\\F274\";\n}\n\n.mdi-format-horizontal-align-center:before {\n  content: \"\\F61E\";\n}\n\n.mdi-format-horizontal-align-left:before {\n  content: \"\\F61F\";\n}\n\n.mdi-format-horizontal-align-right:before {\n  content: \"\\F620\";\n}\n\n.mdi-format-indent-decrease:before {\n  content: \"\\F275\";\n}\n\n.mdi-format-indent-increase:before {\n  content: \"\\F276\";\n}\n\n.mdi-format-italic:before {\n  content: \"\\F277\";\n}\n\n.mdi-format-line-spacing:before {\n  content: \"\\F278\";\n}\n\n.mdi-format-line-style:before {\n  content: \"\\F5C8\";\n}\n\n.mdi-format-line-weight:before {\n  content: \"\\F5C9\";\n}\n\n.mdi-format-list-bulleted:before {\n  content: \"\\F279\";\n}\n\n.mdi-format-list-bulleted-type:before {\n  content: \"\\F27A\";\n}\n\n.mdi-format-list-numbers:before {\n  content: \"\\F27B\";\n}\n\n.mdi-format-paint:before {\n  content: \"\\F27C\";\n}\n\n.mdi-format-paragraph:before {\n  content: \"\\F27D\";\n}\n\n.mdi-format-quote:before {\n  content: \"\\F27E\";\n}\n\n.mdi-format-section:before {\n  content: \"\\F69E\";\n}\n\n.mdi-format-size:before {\n  content: \"\\F27F\";\n}\n\n.mdi-format-strikethrough:before {\n  content: \"\\F280\";\n}\n\n.mdi-format-strikethrough-variant:before {\n  content: \"\\F281\";\n}\n\n.mdi-format-subscript:before {\n  content: \"\\F282\";\n}\n\n.mdi-format-superscript:before {\n  content: \"\\F283\";\n}\n\n.mdi-format-text:before {\n  content: \"\\F284\";\n}\n\n.mdi-format-textdirection-l-to-r:before {\n  content: \"\\F285\";\n}\n\n.mdi-format-textdirection-r-to-l:before {\n  content: \"\\F286\";\n}\n\n.mdi-format-title:before {\n  content: \"\\F5F4\";\n}\n\n.mdi-format-underline:before {\n  content: \"\\F287\";\n}\n\n.mdi-format-vertical-align-bottom:before {\n  content: \"\\F621\";\n}\n\n.mdi-format-vertical-align-center:before {\n  content: \"\\F622\";\n}\n\n.mdi-format-vertical-align-top:before {\n  content: \"\\F623\";\n}\n\n.mdi-format-wrap-inline:before {\n  content: \"\\F288\";\n}\n\n.mdi-format-wrap-square:before {\n  content: \"\\F289\";\n}\n\n.mdi-format-wrap-tight:before {\n  content: \"\\F28A\";\n}\n\n.mdi-format-wrap-top-bottom:before {\n  content: \"\\F28B\";\n}\n\n.mdi-forum:before {\n  content: \"\\F28C\";\n}\n\n.mdi-forward:before {\n  content: \"\\F28D\";\n}\n\n.mdi-foursquare:before {\n  content: \"\\F28E\";\n}\n\n.mdi-fridge:before {\n  content: \"\\F28F\";\n}\n\n.mdi-fridge-filled:before {\n  content: \"\\F290\";\n}\n\n.mdi-fridge-filled-bottom:before {\n  content: \"\\F291\";\n}\n\n.mdi-fridge-filled-top:before {\n  content: \"\\F292\";\n}\n\n.mdi-fullscreen:before {\n  content: \"\\F293\";\n}\n\n.mdi-fullscreen-exit:before {\n  content: \"\\F294\";\n}\n\n.mdi-function:before {\n  content: \"\\F295\";\n}\n\n.mdi-gamepad:before {\n  content: \"\\F296\";\n}\n\n.mdi-gamepad-variant:before {\n  content: \"\\F297\";\n}\n\n.mdi-gas-cylinder:before {\n  content: \"\\F647\";\n}\n\n.mdi-gas-station:before {\n  content: \"\\F298\";\n}\n\n.mdi-gate:before {\n  content: \"\\F299\";\n}\n\n.mdi-gauge:before {\n  content: \"\\F29A\";\n}\n\n.mdi-gavel:before {\n  content: \"\\F29B\";\n}\n\n.mdi-gender-female:before {\n  content: \"\\F29C\";\n}\n\n.mdi-gender-male:before {\n  content: \"\\F29D\";\n}\n\n.mdi-gender-male-female:before {\n  content: \"\\F29E\";\n}\n\n.mdi-gender-transgender:before {\n  content: \"\\F29F\";\n}\n\n.mdi-ghost:before {\n  content: \"\\F2A0\";\n}\n\n.mdi-gift:before {\n  content: \"\\F2A1\";\n}\n\n.mdi-git:before {\n  content: \"\\F2A2\";\n}\n\n.mdi-github-box:before {\n  content: \"\\F2A3\";\n}\n\n.mdi-github-circle:before {\n  content: \"\\F2A4\";\n}\n\n.mdi-glass-flute:before {\n  content: \"\\F2A5\";\n}\n\n.mdi-glass-mug:before {\n  content: \"\\F2A6\";\n}\n\n.mdi-glass-stange:before {\n  content: \"\\F2A7\";\n}\n\n.mdi-glass-tulip:before {\n  content: \"\\F2A8\";\n}\n\n.mdi-glassdoor:before {\n  content: \"\\F2A9\";\n}\n\n.mdi-glasses:before {\n  content: \"\\F2AA\";\n}\n\n.mdi-gmail:before {\n  content: \"\\F2AB\";\n}\n\n.mdi-gnome:before {\n  content: \"\\F2AC\";\n}\n\n.mdi-gondola:before {\n  content: \"\\F685\";\n}\n\n.mdi-google:before {\n  content: \"\\F2AD\";\n}\n\n.mdi-google-cardboard:before {\n  content: \"\\F2AE\";\n}\n\n.mdi-google-chrome:before {\n  content: \"\\F2AF\";\n}\n\n.mdi-google-circles:before {\n  content: \"\\F2B0\";\n}\n\n.mdi-google-circles-communities:before {\n  content: \"\\F2B1\";\n}\n\n.mdi-google-circles-extended:before {\n  content: \"\\F2B2\";\n}\n\n.mdi-google-circles-group:before {\n  content: \"\\F2B3\";\n}\n\n.mdi-google-controller:before {\n  content: \"\\F2B4\";\n}\n\n.mdi-google-controller-off:before {\n  content: \"\\F2B5\";\n}\n\n.mdi-google-drive:before {\n  content: \"\\F2B6\";\n}\n\n.mdi-google-earth:before {\n  content: \"\\F2B7\";\n}\n\n.mdi-google-glass:before {\n  content: \"\\F2B8\";\n}\n\n.mdi-google-maps:before {\n  content: \"\\F5F5\";\n}\n\n.mdi-google-nearby:before {\n  content: \"\\F2B9\";\n}\n\n.mdi-google-pages:before {\n  content: \"\\F2BA\";\n}\n\n.mdi-google-physical-web:before {\n  content: \"\\F2BB\";\n}\n\n.mdi-google-play:before {\n  content: \"\\F2BC\";\n}\n\n.mdi-google-plus:before {\n  content: \"\\F2BD\";\n}\n\n.mdi-google-plus-box:before {\n  content: \"\\F2BE\";\n}\n\n.mdi-google-translate:before {\n  content: \"\\F2BF\";\n}\n\n.mdi-google-wallet:before {\n  content: \"\\F2C0\";\n}\n\n.mdi-gradient:before {\n  content: \"\\F69F\";\n}\n\n.mdi-grease-pencil:before {\n  content: \"\\F648\";\n}\n\n.mdi-grid:before {\n  content: \"\\F2C1\";\n}\n\n.mdi-grid-off:before {\n  content: \"\\F2C2\";\n}\n\n.mdi-group:before {\n  content: \"\\F2C3\";\n}\n\n.mdi-guitar-electric:before {\n  content: \"\\F2C4\";\n}\n\n.mdi-guitar-pick:before {\n  content: \"\\F2C5\";\n}\n\n.mdi-guitar-pick-outline:before {\n  content: \"\\F2C6\";\n}\n\n.mdi-hackernews:before {\n  content: \"\\F624\";\n}\n\n.mdi-hamburger:before {\n  content: \"\\F684\";\n}\n\n.mdi-hand-pointing-right:before {\n  content: \"\\F2C7\";\n}\n\n.mdi-hanger:before {\n  content: \"\\F2C8\";\n}\n\n.mdi-hangouts:before {\n  content: \"\\F2C9\";\n}\n\n.mdi-harddisk:before {\n  content: \"\\F2CA\";\n}\n\n.mdi-headphones:before {\n  content: \"\\F2CB\";\n}\n\n.mdi-headphones-box:before {\n  content: \"\\F2CC\";\n}\n\n.mdi-headphones-settings:before {\n  content: \"\\F2CD\";\n}\n\n.mdi-headset:before {\n  content: \"\\F2CE\";\n}\n\n.mdi-headset-dock:before {\n  content: \"\\F2CF\";\n}\n\n.mdi-headset-off:before {\n  content: \"\\F2D0\";\n}\n\n.mdi-heart:before {\n  content: \"\\F2D1\";\n}\n\n.mdi-heart-box:before {\n  content: \"\\F2D2\";\n}\n\n.mdi-heart-box-outline:before {\n  content: \"\\F2D3\";\n}\n\n.mdi-heart-broken:before {\n  content: \"\\F2D4\";\n}\n\n.mdi-heart-outline:before {\n  content: \"\\F2D5\";\n}\n\n.mdi-heart-pulse:before {\n  content: \"\\F5F6\";\n}\n\n.mdi-help:before {\n  content: \"\\F2D6\";\n}\n\n.mdi-help-circle:before {\n  content: \"\\F2D7\";\n}\n\n.mdi-help-circle-outline:before {\n  content: \"\\F625\";\n}\n\n.mdi-hexagon:before {\n  content: \"\\F2D8\";\n}\n\n.mdi-hexagon-outline:before {\n  content: \"\\F2D9\";\n}\n\n.mdi-highway:before {\n  content: \"\\F5F7\";\n}\n\n.mdi-history:before {\n  content: \"\\F2DA\";\n}\n\n.mdi-hololens:before {\n  content: \"\\F2DB\";\n}\n\n.mdi-home:before {\n  content: \"\\F2DC\";\n}\n\n.mdi-home-map-marker:before {\n  content: \"\\F5F8\";\n}\n\n.mdi-home-modern:before {\n  content: \"\\F2DD\";\n}\n\n.mdi-home-outline:before {\n  content: \"\\F6A0\";\n}\n\n.mdi-home-variant:before {\n  content: \"\\F2DE\";\n}\n\n.mdi-hops:before {\n  content: \"\\F2DF\";\n}\n\n.mdi-hospital:before {\n  content: \"\\F2E0\";\n}\n\n.mdi-hospital-building:before {\n  content: \"\\F2E1\";\n}\n\n.mdi-hospital-marker:before {\n  content: \"\\F2E2\";\n}\n\n.mdi-hotel:before {\n  content: \"\\F2E3\";\n}\n\n.mdi-houzz:before {\n  content: \"\\F2E4\";\n}\n\n.mdi-houzz-box:before {\n  content: \"\\F2E5\";\n}\n\n.mdi-human:before {\n  content: \"\\F2E6\";\n}\n\n.mdi-human-child:before {\n  content: \"\\F2E7\";\n}\n\n.mdi-human-female:before {\n  content: \"\\F649\";\n}\n\n.mdi-human-greeting:before {\n  content: \"\\F64A\";\n}\n\n.mdi-human-handsdown:before {\n  content: \"\\F64B\";\n}\n\n.mdi-human-handsup:before {\n  content: \"\\F64C\";\n}\n\n.mdi-human-male:before {\n  content: \"\\F64D\";\n}\n\n.mdi-human-male-female:before {\n  content: \"\\F2E8\";\n}\n\n.mdi-human-pregnant:before {\n  content: \"\\F5CF\";\n}\n\n.mdi-image:before {\n  content: \"\\F2E9\";\n}\n\n.mdi-image-album:before {\n  content: \"\\F2EA\";\n}\n\n.mdi-image-area:before {\n  content: \"\\F2EB\";\n}\n\n.mdi-image-area-close:before {\n  content: \"\\F2EC\";\n}\n\n.mdi-image-broken:before {\n  content: \"\\F2ED\";\n}\n\n.mdi-image-broken-variant:before {\n  content: \"\\F2EE\";\n}\n\n.mdi-image-filter:before {\n  content: \"\\F2EF\";\n}\n\n.mdi-image-filter-black-white:before {\n  content: \"\\F2F0\";\n}\n\n.mdi-image-filter-center-focus:before {\n  content: \"\\F2F1\";\n}\n\n.mdi-image-filter-center-focus-weak:before {\n  content: \"\\F2F2\";\n}\n\n.mdi-image-filter-drama:before {\n  content: \"\\F2F3\";\n}\n\n.mdi-image-filter-frames:before {\n  content: \"\\F2F4\";\n}\n\n.mdi-image-filter-hdr:before {\n  content: \"\\F2F5\";\n}\n\n.mdi-image-filter-none:before {\n  content: \"\\F2F6\";\n}\n\n.mdi-image-filter-tilt-shift:before {\n  content: \"\\F2F7\";\n}\n\n.mdi-image-filter-vintage:before {\n  content: \"\\F2F8\";\n}\n\n.mdi-image-multiple:before {\n  content: \"\\F2F9\";\n}\n\n.mdi-import:before {\n  content: \"\\F2FA\";\n}\n\n.mdi-inbox:before {\n  content: \"\\F686\";\n}\n\n.mdi-inbox-arrow-down:before {\n  content: \"\\F2FB\";\n}\n\n.mdi-inbox-arrow-up:before {\n  content: \"\\F3D1\";\n}\n\n.mdi-incognito:before {\n  content: \"\\F5F9\";\n}\n\n.mdi-information:before {\n  content: \"\\F2FC\";\n}\n\n.mdi-information-outline:before {\n  content: \"\\F2FD\";\n}\n\n.mdi-information-variant:before {\n  content: \"\\F64E\";\n}\n\n.mdi-instagram:before {\n  content: \"\\F2FE\";\n}\n\n.mdi-instapaper:before {\n  content: \"\\F2FF\";\n}\n\n.mdi-internet-explorer:before {\n  content: \"\\F300\";\n}\n\n.mdi-invert-colors:before {\n  content: \"\\F301\";\n}\n\n.mdi-itunes:before {\n  content: \"\\F676\";\n}\n\n.mdi-jeepney:before {\n  content: \"\\F302\";\n}\n\n.mdi-jira:before {\n  content: \"\\F303\";\n}\n\n.mdi-jsfiddle:before {\n  content: \"\\F304\";\n}\n\n.mdi-json:before {\n  content: \"\\F626\";\n}\n\n.mdi-keg:before {\n  content: \"\\F305\";\n}\n\n.mdi-kettle:before {\n  content: \"\\F5FA\";\n}\n\n.mdi-key:before {\n  content: \"\\F306\";\n}\n\n.mdi-key-change:before {\n  content: \"\\F307\";\n}\n\n.mdi-key-minus:before {\n  content: \"\\F308\";\n}\n\n.mdi-key-plus:before {\n  content: \"\\F309\";\n}\n\n.mdi-key-remove:before {\n  content: \"\\F30A\";\n}\n\n.mdi-key-variant:before {\n  content: \"\\F30B\";\n}\n\n.mdi-keyboard:before {\n  content: \"\\F30C\";\n}\n\n.mdi-keyboard-backspace:before {\n  content: \"\\F30D\";\n}\n\n.mdi-keyboard-caps:before {\n  content: \"\\F30E\";\n}\n\n.mdi-keyboard-close:before {\n  content: \"\\F30F\";\n}\n\n.mdi-keyboard-off:before {\n  content: \"\\F310\";\n}\n\n.mdi-keyboard-return:before {\n  content: \"\\F311\";\n}\n\n.mdi-keyboard-tab:before {\n  content: \"\\F312\";\n}\n\n.mdi-keyboard-variant:before {\n  content: \"\\F313\";\n}\n\n.mdi-kodi:before {\n  content: \"\\F314\";\n}\n\n.mdi-label:before {\n  content: \"\\F315\";\n}\n\n.mdi-label-outline:before {\n  content: \"\\F316\";\n}\n\n.mdi-lambda:before {\n  content: \"\\F627\";\n}\n\n.mdi-lamp:before {\n  content: \"\\F6B4\";\n}\n\n.mdi-lan:before {\n  content: \"\\F317\";\n}\n\n.mdi-lan-connect:before {\n  content: \"\\F318\";\n}\n\n.mdi-lan-disconnect:before {\n  content: \"\\F319\";\n}\n\n.mdi-lan-pending:before {\n  content: \"\\F31A\";\n}\n\n.mdi-language-c:before {\n  content: \"\\F671\";\n}\n\n.mdi-language-cpp:before {\n  content: \"\\F672\";\n}\n\n.mdi-language-csharp:before {\n  content: \"\\F31B\";\n}\n\n.mdi-language-css3:before {\n  content: \"\\F31C\";\n}\n\n.mdi-language-html5:before {\n  content: \"\\F31D\";\n}\n\n.mdi-language-javascript:before {\n  content: \"\\F31E\";\n}\n\n.mdi-language-php:before {\n  content: \"\\F31F\";\n}\n\n.mdi-language-python:before {\n  content: \"\\F320\";\n}\n\n.mdi-language-python-text:before {\n  content: \"\\F321\";\n}\n\n.mdi-laptop:before {\n  content: \"\\F322\";\n}\n\n.mdi-laptop-chromebook:before {\n  content: \"\\F323\";\n}\n\n.mdi-laptop-mac:before {\n  content: \"\\F324\";\n}\n\n.mdi-laptop-windows:before {\n  content: \"\\F325\";\n}\n\n.mdi-lastfm:before {\n  content: \"\\F326\";\n}\n\n.mdi-launch:before {\n  content: \"\\F327\";\n}\n\n.mdi-layers:before {\n  content: \"\\F328\";\n}\n\n.mdi-layers-off:before {\n  content: \"\\F329\";\n}\n\n.mdi-lead-pencil:before {\n  content: \"\\F64F\";\n}\n\n.mdi-leaf:before {\n  content: \"\\F32A\";\n}\n\n.mdi-led-off:before {\n  content: \"\\F32B\";\n}\n\n.mdi-led-on:before {\n  content: \"\\F32C\";\n}\n\n.mdi-led-outline:before {\n  content: \"\\F32D\";\n}\n\n.mdi-led-variant-off:before {\n  content: \"\\F32E\";\n}\n\n.mdi-led-variant-on:before {\n  content: \"\\F32F\";\n}\n\n.mdi-led-variant-outline:before {\n  content: \"\\F330\";\n}\n\n.mdi-library:before {\n  content: \"\\F331\";\n}\n\n.mdi-library-books:before {\n  content: \"\\F332\";\n}\n\n.mdi-library-music:before {\n  content: \"\\F333\";\n}\n\n.mdi-library-plus:before {\n  content: \"\\F334\";\n}\n\n.mdi-lightbulb:before {\n  content: \"\\F335\";\n}\n\n.mdi-lightbulb-outline:before {\n  content: \"\\F336\";\n}\n\n.mdi-link:before {\n  content: \"\\F337\";\n}\n\n.mdi-link-off:before {\n  content: \"\\F338\";\n}\n\n.mdi-link-variant:before {\n  content: \"\\F339\";\n}\n\n.mdi-link-variant-off:before {\n  content: \"\\F33A\";\n}\n\n.mdi-linkedin:before {\n  content: \"\\F33B\";\n}\n\n.mdi-linkedin-box:before {\n  content: \"\\F33C\";\n}\n\n.mdi-linux:before {\n  content: \"\\F33D\";\n}\n\n.mdi-lock:before {\n  content: \"\\F33E\";\n}\n\n.mdi-lock-open:before {\n  content: \"\\F33F\";\n}\n\n.mdi-lock-open-outline:before {\n  content: \"\\F340\";\n}\n\n.mdi-lock-outline:before {\n  content: \"\\F341\";\n}\n\n.mdi-lock-plus:before {\n  content: \"\\F5FB\";\n}\n\n.mdi-login:before {\n  content: \"\\F342\";\n}\n\n.mdi-login-variant:before {\n  content: \"\\F5FC\";\n}\n\n.mdi-logout:before {\n  content: \"\\F343\";\n}\n\n.mdi-logout-variant:before {\n  content: \"\\F5FD\";\n}\n\n.mdi-looks:before {\n  content: \"\\F344\";\n}\n\n.mdi-loupe:before {\n  content: \"\\F345\";\n}\n\n.mdi-lumx:before {\n  content: \"\\F346\";\n}\n\n.mdi-magnet:before {\n  content: \"\\F347\";\n}\n\n.mdi-magnet-on:before {\n  content: \"\\F348\";\n}\n\n.mdi-magnify:before {\n  content: \"\\F349\";\n}\n\n.mdi-magnify-minus:before {\n  content: \"\\F34A\";\n}\n\n.mdi-magnify-plus:before {\n  content: \"\\F34B\";\n}\n\n.mdi-mail-ru:before {\n  content: \"\\F34C\";\n}\n\n.mdi-map:before {\n  content: \"\\F34D\";\n}\n\n.mdi-map-marker:before {\n  content: \"\\F34E\";\n}\n\n.mdi-map-marker-circle:before {\n  content: \"\\F34F\";\n}\n\n.mdi-map-marker-minus:before {\n  content: \"\\F650\";\n}\n\n.mdi-map-marker-multiple:before {\n  content: \"\\F350\";\n}\n\n.mdi-map-marker-off:before {\n  content: \"\\F351\";\n}\n\n.mdi-map-marker-plus:before {\n  content: \"\\F651\";\n}\n\n.mdi-map-marker-radius:before {\n  content: \"\\F352\";\n}\n\n.mdi-margin:before {\n  content: \"\\F353\";\n}\n\n.mdi-markdown:before {\n  content: \"\\F354\";\n}\n\n.mdi-marker:before {\n  content: \"\\F652\";\n}\n\n.mdi-marker-check:before {\n  content: \"\\F355\";\n}\n\n.mdi-martini:before {\n  content: \"\\F356\";\n}\n\n.mdi-material-ui:before {\n  content: \"\\F357\";\n}\n\n.mdi-math-compass:before {\n  content: \"\\F358\";\n}\n\n.mdi-matrix:before {\n  content: \"\\F628\";\n}\n\n.mdi-maxcdn:before {\n  content: \"\\F359\";\n}\n\n.mdi-medium:before {\n  content: \"\\F35A\";\n}\n\n.mdi-memory:before {\n  content: \"\\F35B\";\n}\n\n.mdi-menu:before {\n  content: \"\\F35C\";\n}\n\n.mdi-menu-down:before {\n  content: \"\\F35D\";\n}\n\n.mdi-menu-down-outline:before {\n  content: \"\\F6B5\";\n}\n\n.mdi-menu-left:before {\n  content: \"\\F35E\";\n}\n\n.mdi-menu-right:before {\n  content: \"\\F35F\";\n}\n\n.mdi-menu-up:before {\n  content: \"\\F360\";\n}\n\n.mdi-menu-up-outline:before {\n  content: \"\\F6B6\";\n}\n\n.mdi-message:before {\n  content: \"\\F361\";\n}\n\n.mdi-message-alert:before {\n  content: \"\\F362\";\n}\n\n.mdi-message-bulleted:before {\n  content: \"\\F6A1\";\n}\n\n.mdi-message-bulleted-off:before {\n  content: \"\\F6A2\";\n}\n\n.mdi-message-draw:before {\n  content: \"\\F363\";\n}\n\n.mdi-message-image:before {\n  content: \"\\F364\";\n}\n\n.mdi-message-outline:before {\n  content: \"\\F365\";\n}\n\n.mdi-message-plus:before {\n  content: \"\\F653\";\n}\n\n.mdi-message-processing:before {\n  content: \"\\F366\";\n}\n\n.mdi-message-reply:before {\n  content: \"\\F367\";\n}\n\n.mdi-message-reply-text:before {\n  content: \"\\F368\";\n}\n\n.mdi-message-text:before {\n  content: \"\\F369\";\n}\n\n.mdi-message-text-outline:before {\n  content: \"\\F36A\";\n}\n\n.mdi-message-video:before {\n  content: \"\\F36B\";\n}\n\n.mdi-meteor:before {\n  content: \"\\F629\";\n}\n\n.mdi-microphone:before {\n  content: \"\\F36C\";\n}\n\n.mdi-microphone-off:before {\n  content: \"\\F36D\";\n}\n\n.mdi-microphone-outline:before {\n  content: \"\\F36E\";\n}\n\n.mdi-microphone-settings:before {\n  content: \"\\F36F\";\n}\n\n.mdi-microphone-variant:before {\n  content: \"\\F370\";\n}\n\n.mdi-microphone-variant-off:before {\n  content: \"\\F371\";\n}\n\n.mdi-microscope:before {\n  content: \"\\F654\";\n}\n\n.mdi-microsoft:before {\n  content: \"\\F372\";\n}\n\n.mdi-minecraft:before {\n  content: \"\\F373\";\n}\n\n.mdi-minus:before {\n  content: \"\\F374\";\n}\n\n.mdi-minus-box:before {\n  content: \"\\F375\";\n}\n\n.mdi-minus-circle:before {\n  content: \"\\F376\";\n}\n\n.mdi-minus-circle-outline:before {\n  content: \"\\F377\";\n}\n\n.mdi-minus-network:before {\n  content: \"\\F378\";\n}\n\n.mdi-mixcloud:before {\n  content: \"\\F62A\";\n}\n\n.mdi-monitor:before {\n  content: \"\\F379\";\n}\n\n.mdi-monitor-multiple:before {\n  content: \"\\F37A\";\n}\n\n.mdi-more:before {\n  content: \"\\F37B\";\n}\n\n.mdi-motorbike:before {\n  content: \"\\F37C\";\n}\n\n.mdi-mouse:before {\n  content: \"\\F37D\";\n}\n\n.mdi-mouse-off:before {\n  content: \"\\F37E\";\n}\n\n.mdi-mouse-variant:before {\n  content: \"\\F37F\";\n}\n\n.mdi-mouse-variant-off:before {\n  content: \"\\F380\";\n}\n\n.mdi-move-resize:before {\n  content: \"\\F655\";\n}\n\n.mdi-move-resize-variant:before {\n  content: \"\\F656\";\n}\n\n.mdi-movie:before {\n  content: \"\\F381\";\n}\n\n.mdi-multiplication:before {\n  content: \"\\F382\";\n}\n\n.mdi-multiplication-box:before {\n  content: \"\\F383\";\n}\n\n.mdi-music-box:before {\n  content: \"\\F384\";\n}\n\n.mdi-music-box-outline:before {\n  content: \"\\F385\";\n}\n\n.mdi-music-circle:before {\n  content: \"\\F386\";\n}\n\n.mdi-music-note:before {\n  content: \"\\F387\";\n}\n\n.mdi-music-note-bluetooth:before {\n  content: \"\\F5FE\";\n}\n\n.mdi-music-note-bluetooth-off:before {\n  content: \"\\F5FF\";\n}\n\n.mdi-music-note-eighth:before {\n  content: \"\\F388\";\n}\n\n.mdi-music-note-half:before {\n  content: \"\\F389\";\n}\n\n.mdi-music-note-off:before {\n  content: \"\\F38A\";\n}\n\n.mdi-music-note-quarter:before {\n  content: \"\\F38B\";\n}\n\n.mdi-music-note-sixteenth:before {\n  content: \"\\F38C\";\n}\n\n.mdi-music-note-whole:before {\n  content: \"\\F38D\";\n}\n\n.mdi-nature:before {\n  content: \"\\F38E\";\n}\n\n.mdi-nature-people:before {\n  content: \"\\F38F\";\n}\n\n.mdi-navigation:before {\n  content: \"\\F390\";\n}\n\n.mdi-near-me:before {\n  content: \"\\F5CD\";\n}\n\n.mdi-needle:before {\n  content: \"\\F391\";\n}\n\n.mdi-nest-protect:before {\n  content: \"\\F392\";\n}\n\n.mdi-nest-thermostat:before {\n  content: \"\\F393\";\n}\n\n.mdi-new-box:before {\n  content: \"\\F394\";\n}\n\n.mdi-newspaper:before {\n  content: \"\\F395\";\n}\n\n.mdi-nfc:before {\n  content: \"\\F396\";\n}\n\n.mdi-nfc-tap:before {\n  content: \"\\F397\";\n}\n\n.mdi-nfc-variant:before {\n  content: \"\\F398\";\n}\n\n.mdi-nodejs:before {\n  content: \"\\F399\";\n}\n\n.mdi-note:before {\n  content: \"\\F39A\";\n}\n\n.mdi-note-multiple:before {\n  content: \"\\F6B7\";\n}\n\n.mdi-note-multiple-outline:before {\n  content: \"\\F6B8\";\n}\n\n.mdi-note-outline:before {\n  content: \"\\F39B\";\n}\n\n.mdi-note-plus:before {\n  content: \"\\F39C\";\n}\n\n.mdi-note-plus-outline:before {\n  content: \"\\F39D\";\n}\n\n.mdi-note-text:before {\n  content: \"\\F39E\";\n}\n\n.mdi-notification-clear-all:before {\n  content: \"\\F39F\";\n}\n\n.mdi-nuke:before {\n  content: \"\\F6A3\";\n}\n\n.mdi-numeric:before {\n  content: \"\\F3A0\";\n}\n\n.mdi-numeric-0-box:before {\n  content: \"\\F3A1\";\n}\n\n.mdi-numeric-0-box-multiple-outline:before {\n  content: \"\\F3A2\";\n}\n\n.mdi-numeric-0-box-outline:before {\n  content: \"\\F3A3\";\n}\n\n.mdi-numeric-1-box:before {\n  content: \"\\F3A4\";\n}\n\n.mdi-numeric-1-box-multiple-outline:before {\n  content: \"\\F3A5\";\n}\n\n.mdi-numeric-1-box-outline:before {\n  content: \"\\F3A6\";\n}\n\n.mdi-numeric-2-box:before {\n  content: \"\\F3A7\";\n}\n\n.mdi-numeric-2-box-multiple-outline:before {\n  content: \"\\F3A8\";\n}\n\n.mdi-numeric-2-box-outline:before {\n  content: \"\\F3A9\";\n}\n\n.mdi-numeric-3-box:before {\n  content: \"\\F3AA\";\n}\n\n.mdi-numeric-3-box-multiple-outline:before {\n  content: \"\\F3AB\";\n}\n\n.mdi-numeric-3-box-outline:before {\n  content: \"\\F3AC\";\n}\n\n.mdi-numeric-4-box:before {\n  content: \"\\F3AD\";\n}\n\n.mdi-numeric-4-box-multiple-outline:before {\n  content: \"\\F3AE\";\n}\n\n.mdi-numeric-4-box-outline:before {\n  content: \"\\F3AF\";\n}\n\n.mdi-numeric-5-box:before {\n  content: \"\\F3B0\";\n}\n\n.mdi-numeric-5-box-multiple-outline:before {\n  content: \"\\F3B1\";\n}\n\n.mdi-numeric-5-box-outline:before {\n  content: \"\\F3B2\";\n}\n\n.mdi-numeric-6-box:before {\n  content: \"\\F3B3\";\n}\n\n.mdi-numeric-6-box-multiple-outline:before {\n  content: \"\\F3B4\";\n}\n\n.mdi-numeric-6-box-outline:before {\n  content: \"\\F3B5\";\n}\n\n.mdi-numeric-7-box:before {\n  content: \"\\F3B6\";\n}\n\n.mdi-numeric-7-box-multiple-outline:before {\n  content: \"\\F3B7\";\n}\n\n.mdi-numeric-7-box-outline:before {\n  content: \"\\F3B8\";\n}\n\n.mdi-numeric-8-box:before {\n  content: \"\\F3B9\";\n}\n\n.mdi-numeric-8-box-multiple-outline:before {\n  content: \"\\F3BA\";\n}\n\n.mdi-numeric-8-box-outline:before {\n  content: \"\\F3BB\";\n}\n\n.mdi-numeric-9-box:before {\n  content: \"\\F3BC\";\n}\n\n.mdi-numeric-9-box-multiple-outline:before {\n  content: \"\\F3BD\";\n}\n\n.mdi-numeric-9-box-outline:before {\n  content: \"\\F3BE\";\n}\n\n.mdi-numeric-9-plus-box:before {\n  content: \"\\F3BF\";\n}\n\n.mdi-numeric-9-plus-box-multiple-outline:before {\n  content: \"\\F3C0\";\n}\n\n.mdi-numeric-9-plus-box-outline:before {\n  content: \"\\F3C1\";\n}\n\n.mdi-nutrition:before {\n  content: \"\\F3C2\";\n}\n\n.mdi-oar:before {\n  content: \"\\F67B\";\n}\n\n.mdi-octagon:before {\n  content: \"\\F3C3\";\n}\n\n.mdi-octagon-outline:before {\n  content: \"\\F3C4\";\n}\n\n.mdi-odnoklassniki:before {\n  content: \"\\F3C5\";\n}\n\n.mdi-office:before {\n  content: \"\\F3C6\";\n}\n\n.mdi-oil:before {\n  content: \"\\F3C7\";\n}\n\n.mdi-oil-temperature:before {\n  content: \"\\F3C8\";\n}\n\n.mdi-omega:before {\n  content: \"\\F3C9\";\n}\n\n.mdi-onedrive:before {\n  content: \"\\F3CA\";\n}\n\n.mdi-opacity:before {\n  content: \"\\F5CC\";\n}\n\n.mdi-open-in-app:before {\n  content: \"\\F3CB\";\n}\n\n.mdi-open-in-new:before {\n  content: \"\\F3CC\";\n}\n\n.mdi-openid:before {\n  content: \"\\F3CD\";\n}\n\n.mdi-opera:before {\n  content: \"\\F3CE\";\n}\n\n.mdi-ornament:before {\n  content: \"\\F3CF\";\n}\n\n.mdi-ornament-variant:before {\n  content: \"\\F3D0\";\n}\n\n.mdi-owl:before {\n  content: \"\\F3D2\";\n}\n\n.mdi-package:before {\n  content: \"\\F3D3\";\n}\n\n.mdi-package-down:before {\n  content: \"\\F3D4\";\n}\n\n.mdi-package-up:before {\n  content: \"\\F3D5\";\n}\n\n.mdi-package-variant:before {\n  content: \"\\F3D6\";\n}\n\n.mdi-package-variant-closed:before {\n  content: \"\\F3D7\";\n}\n\n.mdi-page-first:before {\n  content: \"\\F600\";\n}\n\n.mdi-page-last:before {\n  content: \"\\F601\";\n}\n\n.mdi-palette:before {\n  content: \"\\F3D8\";\n}\n\n.mdi-palette-advanced:before {\n  content: \"\\F3D9\";\n}\n\n.mdi-panda:before {\n  content: \"\\F3DA\";\n}\n\n.mdi-pandora:before {\n  content: \"\\F3DB\";\n}\n\n.mdi-panorama:before {\n  content: \"\\F3DC\";\n}\n\n.mdi-panorama-fisheye:before {\n  content: \"\\F3DD\";\n}\n\n.mdi-panorama-horizontal:before {\n  content: \"\\F3DE\";\n}\n\n.mdi-panorama-vertical:before {\n  content: \"\\F3DF\";\n}\n\n.mdi-panorama-wide-angle:before {\n  content: \"\\F3E0\";\n}\n\n.mdi-paper-cut-vertical:before {\n  content: \"\\F3E1\";\n}\n\n.mdi-paperclip:before {\n  content: \"\\F3E2\";\n}\n\n.mdi-parking:before {\n  content: \"\\F3E3\";\n}\n\n.mdi-pause:before {\n  content: \"\\F3E4\";\n}\n\n.mdi-pause-circle:before {\n  content: \"\\F3E5\";\n}\n\n.mdi-pause-circle-outline:before {\n  content: \"\\F3E6\";\n}\n\n.mdi-pause-octagon:before {\n  content: \"\\F3E7\";\n}\n\n.mdi-pause-octagon-outline:before {\n  content: \"\\F3E8\";\n}\n\n.mdi-paw:before {\n  content: \"\\F3E9\";\n}\n\n.mdi-paw-off:before {\n  content: \"\\F657\";\n}\n\n.mdi-pen:before {\n  content: \"\\F3EA\";\n}\n\n.mdi-pencil:before {\n  content: \"\\F3EB\";\n}\n\n.mdi-pencil-box:before {\n  content: \"\\F3EC\";\n}\n\n.mdi-pencil-box-outline:before {\n  content: \"\\F3ED\";\n}\n\n.mdi-pencil-lock:before {\n  content: \"\\F3EE\";\n}\n\n.mdi-pencil-off:before {\n  content: \"\\F3EF\";\n}\n\n.mdi-percent:before {\n  content: \"\\F3F0\";\n}\n\n.mdi-pharmacy:before {\n  content: \"\\F3F1\";\n}\n\n.mdi-phone:before {\n  content: \"\\F3F2\";\n}\n\n.mdi-phone-bluetooth:before {\n  content: \"\\F3F3\";\n}\n\n.mdi-phone-classic:before {\n  content: \"\\F602\";\n}\n\n.mdi-phone-forward:before {\n  content: \"\\F3F4\";\n}\n\n.mdi-phone-hangup:before {\n  content: \"\\F3F5\";\n}\n\n.mdi-phone-in-talk:before {\n  content: \"\\F3F6\";\n}\n\n.mdi-phone-incoming:before {\n  content: \"\\F3F7\";\n}\n\n.mdi-phone-locked:before {\n  content: \"\\F3F8\";\n}\n\n.mdi-phone-log:before {\n  content: \"\\F3F9\";\n}\n\n.mdi-phone-minus:before {\n  content: \"\\F658\";\n}\n\n.mdi-phone-missed:before {\n  content: \"\\F3FA\";\n}\n\n.mdi-phone-outgoing:before {\n  content: \"\\F3FB\";\n}\n\n.mdi-phone-paused:before {\n  content: \"\\F3FC\";\n}\n\n.mdi-phone-plus:before {\n  content: \"\\F659\";\n}\n\n.mdi-phone-settings:before {\n  content: \"\\F3FD\";\n}\n\n.mdi-phone-voip:before {\n  content: \"\\F3FE\";\n}\n\n.mdi-pi:before {\n  content: \"\\F3FF\";\n}\n\n.mdi-pi-box:before {\n  content: \"\\F400\";\n}\n\n.mdi-piano:before {\n  content: \"\\F67C\";\n}\n\n.mdi-pig:before {\n  content: \"\\F401\";\n}\n\n.mdi-pill:before {\n  content: \"\\F402\";\n}\n\n.mdi-pin:before {\n  content: \"\\F403\";\n}\n\n.mdi-pin-off:before {\n  content: \"\\F404\";\n}\n\n.mdi-pine-tree:before {\n  content: \"\\F405\";\n}\n\n.mdi-pine-tree-box:before {\n  content: \"\\F406\";\n}\n\n.mdi-pinterest:before {\n  content: \"\\F407\";\n}\n\n.mdi-pinterest-box:before {\n  content: \"\\F408\";\n}\n\n.mdi-pizza:before {\n  content: \"\\F409\";\n}\n\n.mdi-plane-shield:before {\n  content: \"\\F6BA\";\n}\n\n.mdi-play:before {\n  content: \"\\F40A\";\n}\n\n.mdi-play-box-outline:before {\n  content: \"\\F40B\";\n}\n\n.mdi-play-circle:before {\n  content: \"\\F40C\";\n}\n\n.mdi-play-circle-outline:before {\n  content: \"\\F40D\";\n}\n\n.mdi-play-pause:before {\n  content: \"\\F40E\";\n}\n\n.mdi-play-protected-content:before {\n  content: \"\\F40F\";\n}\n\n.mdi-playlist-check:before {\n  content: \"\\F5C7\";\n}\n\n.mdi-playlist-minus:before {\n  content: \"\\F410\";\n}\n\n.mdi-playlist-play:before {\n  content: \"\\F411\";\n}\n\n.mdi-playlist-plus:before {\n  content: \"\\F412\";\n}\n\n.mdi-playlist-remove:before {\n  content: \"\\F413\";\n}\n\n.mdi-playstation:before {\n  content: \"\\F414\";\n}\n\n.mdi-plex:before {\n  content: \"\\F6B9\";\n}\n\n.mdi-plus:before {\n  content: \"\\F415\";\n}\n\n.mdi-plus-box:before {\n  content: \"\\F416\";\n}\n\n.mdi-plus-circle:before {\n  content: \"\\F417\";\n}\n\n.mdi-plus-circle-multiple-outline:before {\n  content: \"\\F418\";\n}\n\n.mdi-plus-circle-outline:before {\n  content: \"\\F419\";\n}\n\n.mdi-plus-network:before {\n  content: \"\\F41A\";\n}\n\n.mdi-plus-one:before {\n  content: \"\\F41B\";\n}\n\n.mdi-pocket:before {\n  content: \"\\F41C\";\n}\n\n.mdi-pokeball:before {\n  content: \"\\F41D\";\n}\n\n.mdi-polaroid:before {\n  content: \"\\F41E\";\n}\n\n.mdi-poll:before {\n  content: \"\\F41F\";\n}\n\n.mdi-poll-box:before {\n  content: \"\\F420\";\n}\n\n.mdi-polymer:before {\n  content: \"\\F421\";\n}\n\n.mdi-pool:before {\n  content: \"\\F606\";\n}\n\n.mdi-popcorn:before {\n  content: \"\\F422\";\n}\n\n.mdi-pot:before {\n  content: \"\\F65A\";\n}\n\n.mdi-pot-mix:before {\n  content: \"\\F65B\";\n}\n\n.mdi-pound:before {\n  content: \"\\F423\";\n}\n\n.mdi-pound-box:before {\n  content: \"\\F424\";\n}\n\n.mdi-power:before {\n  content: \"\\F425\";\n}\n\n.mdi-power-plug:before {\n  content: \"\\F6A4\";\n}\n\n.mdi-power-plug-off:before {\n  content: \"\\F6A5\";\n}\n\n.mdi-power-settings:before {\n  content: \"\\F426\";\n}\n\n.mdi-power-socket:before {\n  content: \"\\F427\";\n}\n\n.mdi-presentation:before {\n  content: \"\\F428\";\n}\n\n.mdi-presentation-play:before {\n  content: \"\\F429\";\n}\n\n.mdi-printer:before {\n  content: \"\\F42A\";\n}\n\n.mdi-printer-3d:before {\n  content: \"\\F42B\";\n}\n\n.mdi-printer-alert:before {\n  content: \"\\F42C\";\n}\n\n.mdi-priority-high:before {\n  content: \"\\F603\";\n}\n\n.mdi-priority-low:before {\n  content: \"\\F604\";\n}\n\n.mdi-professional-hexagon:before {\n  content: \"\\F42D\";\n}\n\n.mdi-projector:before {\n  content: \"\\F42E\";\n}\n\n.mdi-projector-screen:before {\n  content: \"\\F42F\";\n}\n\n.mdi-publish:before {\n  content: \"\\F6A6\";\n}\n\n.mdi-pulse:before {\n  content: \"\\F430\";\n}\n\n.mdi-puzzle:before {\n  content: \"\\F431\";\n}\n\n.mdi-qqchat:before {\n  content: \"\\F605\";\n}\n\n.mdi-qrcode:before {\n  content: \"\\F432\";\n}\n\n.mdi-qrcode-scan:before {\n  content: \"\\F433\";\n}\n\n.mdi-quadcopter:before {\n  content: \"\\F434\";\n}\n\n.mdi-quality-high:before {\n  content: \"\\F435\";\n}\n\n.mdi-quicktime:before {\n  content: \"\\F436\";\n}\n\n.mdi-radar:before {\n  content: \"\\F437\";\n}\n\n.mdi-radiator:before {\n  content: \"\\F438\";\n}\n\n.mdi-radio:before {\n  content: \"\\F439\";\n}\n\n.mdi-radio-handheld:before {\n  content: \"\\F43A\";\n}\n\n.mdi-radio-tower:before {\n  content: \"\\F43B\";\n}\n\n.mdi-radioactive:before {\n  content: \"\\F43C\";\n}\n\n.mdi-radiobox-blank:before {\n  content: \"\\F43D\";\n}\n\n.mdi-radiobox-marked:before {\n  content: \"\\F43E\";\n}\n\n.mdi-raspberrypi:before {\n  content: \"\\F43F\";\n}\n\n.mdi-ray-end:before {\n  content: \"\\F440\";\n}\n\n.mdi-ray-end-arrow:before {\n  content: \"\\F441\";\n}\n\n.mdi-ray-start:before {\n  content: \"\\F442\";\n}\n\n.mdi-ray-start-arrow:before {\n  content: \"\\F443\";\n}\n\n.mdi-ray-start-end:before {\n  content: \"\\F444\";\n}\n\n.mdi-ray-vertex:before {\n  content: \"\\F445\";\n}\n\n.mdi-rdio:before {\n  content: \"\\F446\";\n}\n\n.mdi-read:before {\n  content: \"\\F447\";\n}\n\n.mdi-readability:before {\n  content: \"\\F448\";\n}\n\n.mdi-receipt:before {\n  content: \"\\F449\";\n}\n\n.mdi-record:before {\n  content: \"\\F44A\";\n}\n\n.mdi-record-rec:before {\n  content: \"\\F44B\";\n}\n\n.mdi-recycle:before {\n  content: \"\\F44C\";\n}\n\n.mdi-reddit:before {\n  content: \"\\F44D\";\n}\n\n.mdi-redo:before {\n  content: \"\\F44E\";\n}\n\n.mdi-redo-variant:before {\n  content: \"\\F44F\";\n}\n\n.mdi-refresh:before {\n  content: \"\\F450\";\n}\n\n.mdi-regex:before {\n  content: \"\\F451\";\n}\n\n.mdi-relative-scale:before {\n  content: \"\\F452\";\n}\n\n.mdi-reload:before {\n  content: \"\\F453\";\n}\n\n.mdi-remote:before {\n  content: \"\\F454\";\n}\n\n.mdi-rename-box:before {\n  content: \"\\F455\";\n}\n\n.mdi-reorder-horizontal:before {\n  content: \"\\F687\";\n}\n\n.mdi-reorder-vertical:before {\n  content: \"\\F688\";\n}\n\n.mdi-repeat:before {\n  content: \"\\F456\";\n}\n\n.mdi-repeat-off:before {\n  content: \"\\F457\";\n}\n\n.mdi-repeat-once:before {\n  content: \"\\F458\";\n}\n\n.mdi-replay:before {\n  content: \"\\F459\";\n}\n\n.mdi-reply:before {\n  content: \"\\F45A\";\n}\n\n.mdi-reply-all:before {\n  content: \"\\F45B\";\n}\n\n.mdi-reproduction:before {\n  content: \"\\F45C\";\n}\n\n.mdi-resize-bottom-right:before {\n  content: \"\\F45D\";\n}\n\n.mdi-responsive:before {\n  content: \"\\F45E\";\n}\n\n.mdi-restore:before {\n  content: \"\\F6A7\";\n}\n\n.mdi-rewind:before {\n  content: \"\\F45F\";\n}\n\n.mdi-ribbon:before {\n  content: \"\\F460\";\n}\n\n.mdi-road:before {\n  content: \"\\F461\";\n}\n\n.mdi-road-variant:before {\n  content: \"\\F462\";\n}\n\n.mdi-robot:before {\n  content: \"\\F6A8\";\n}\n\n.mdi-rocket:before {\n  content: \"\\F463\";\n}\n\n.mdi-rotate-3d:before {\n  content: \"\\F464\";\n}\n\n.mdi-rotate-90:before {\n  content: \"\\F6A9\";\n}\n\n.mdi-rotate-left:before {\n  content: \"\\F465\";\n}\n\n.mdi-rotate-left-variant:before {\n  content: \"\\F466\";\n}\n\n.mdi-rotate-right:before {\n  content: \"\\F467\";\n}\n\n.mdi-rotate-right-variant:before {\n  content: \"\\F468\";\n}\n\n.mdi-rounded-corner:before {\n  content: \"\\F607\";\n}\n\n.mdi-router-wireless:before {\n  content: \"\\F469\";\n}\n\n.mdi-routes:before {\n  content: \"\\F46A\";\n}\n\n.mdi-rowing:before {\n  content: \"\\F608\";\n}\n\n.mdi-rss:before {\n  content: \"\\F46B\";\n}\n\n.mdi-rss-box:before {\n  content: \"\\F46C\";\n}\n\n.mdi-ruler:before {\n  content: \"\\F46D\";\n}\n\n.mdi-run:before {\n  content: \"\\F46E\";\n}\n\n.mdi-sale:before {\n  content: \"\\F46F\";\n}\n\n.mdi-satellite:before {\n  content: \"\\F470\";\n}\n\n.mdi-satellite-variant:before {\n  content: \"\\F471\";\n}\n\n.mdi-saxophone:before {\n  content: \"\\F609\";\n}\n\n.mdi-scale:before {\n  content: \"\\F472\";\n}\n\n.mdi-scale-balance:before {\n  content: \"\\F5D1\";\n}\n\n.mdi-scale-bathroom:before {\n  content: \"\\F473\";\n}\n\n.mdi-scanner:before {\n  content: \"\\F6AA\";\n}\n\n.mdi-school:before {\n  content: \"\\F474\";\n}\n\n.mdi-screen-rotation:before {\n  content: \"\\F475\";\n}\n\n.mdi-screen-rotation-lock:before {\n  content: \"\\F476\";\n}\n\n.mdi-screwdriver:before {\n  content: \"\\F477\";\n}\n\n.mdi-script:before {\n  content: \"\\F478\";\n}\n\n.mdi-sd:before {\n  content: \"\\F479\";\n}\n\n.mdi-seal:before {\n  content: \"\\F47A\";\n}\n\n.mdi-seat-flat:before {\n  content: \"\\F47B\";\n}\n\n.mdi-seat-flat-angled:before {\n  content: \"\\F47C\";\n}\n\n.mdi-seat-individual-suite:before {\n  content: \"\\F47D\";\n}\n\n.mdi-seat-legroom-extra:before {\n  content: \"\\F47E\";\n}\n\n.mdi-seat-legroom-normal:before {\n  content: \"\\F47F\";\n}\n\n.mdi-seat-legroom-reduced:before {\n  content: \"\\F480\";\n}\n\n.mdi-seat-recline-extra:before {\n  content: \"\\F481\";\n}\n\n.mdi-seat-recline-normal:before {\n  content: \"\\F482\";\n}\n\n.mdi-security:before {\n  content: \"\\F483\";\n}\n\n.mdi-security-home:before {\n  content: \"\\F689\";\n}\n\n.mdi-security-network:before {\n  content: \"\\F484\";\n}\n\n.mdi-select:before {\n  content: \"\\F485\";\n}\n\n.mdi-select-all:before {\n  content: \"\\F486\";\n}\n\n.mdi-select-inverse:before {\n  content: \"\\F487\";\n}\n\n.mdi-select-off:before {\n  content: \"\\F488\";\n}\n\n.mdi-selection:before {\n  content: \"\\F489\";\n}\n\n.mdi-send:before {\n  content: \"\\F48A\";\n}\n\n.mdi-serial-port:before {\n  content: \"\\F65C\";\n}\n\n.mdi-server:before {\n  content: \"\\F48B\";\n}\n\n.mdi-server-minus:before {\n  content: \"\\F48C\";\n}\n\n.mdi-server-network:before {\n  content: \"\\F48D\";\n}\n\n.mdi-server-network-off:before {\n  content: \"\\F48E\";\n}\n\n.mdi-server-off:before {\n  content: \"\\F48F\";\n}\n\n.mdi-server-plus:before {\n  content: \"\\F490\";\n}\n\n.mdi-server-remove:before {\n  content: \"\\F491\";\n}\n\n.mdi-server-security:before {\n  content: \"\\F492\";\n}\n\n.mdi-settings:before {\n  content: \"\\F493\";\n}\n\n.mdi-settings-box:before {\n  content: \"\\F494\";\n}\n\n.mdi-shape-circle-plus:before {\n  content: \"\\F65D\";\n}\n\n.mdi-shape-plus:before {\n  content: \"\\F495\";\n}\n\n.mdi-shape-polygon-plus:before {\n  content: \"\\F65E\";\n}\n\n.mdi-shape-rectangle-plus:before {\n  content: \"\\F65F\";\n}\n\n.mdi-shape-square-plus:before {\n  content: \"\\F660\";\n}\n\n.mdi-share:before {\n  content: \"\\F496\";\n}\n\n.mdi-share-variant:before {\n  content: \"\\F497\";\n}\n\n.mdi-shield:before {\n  content: \"\\F498\";\n}\n\n.mdi-shield-outline:before {\n  content: \"\\F499\";\n}\n\n.mdi-shopping:before {\n  content: \"\\F49A\";\n}\n\n.mdi-shopping-music:before {\n  content: \"\\F49B\";\n}\n\n.mdi-shredder:before {\n  content: \"\\F49C\";\n}\n\n.mdi-shuffle:before {\n  content: \"\\F49D\";\n}\n\n.mdi-shuffle-disabled:before {\n  content: \"\\F49E\";\n}\n\n.mdi-shuffle-variant:before {\n  content: \"\\F49F\";\n}\n\n.mdi-sigma:before {\n  content: \"\\F4A0\";\n}\n\n.mdi-sigma-lower:before {\n  content: \"\\F62B\";\n}\n\n.mdi-sign-caution:before {\n  content: \"\\F4A1\";\n}\n\n.mdi-signal:before {\n  content: \"\\F4A2\";\n}\n\n.mdi-signal-variant:before {\n  content: \"\\F60A\";\n}\n\n.mdi-silverware:before {\n  content: \"\\F4A3\";\n}\n\n.mdi-silverware-fork:before {\n  content: \"\\F4A4\";\n}\n\n.mdi-silverware-spoon:before {\n  content: \"\\F4A5\";\n}\n\n.mdi-silverware-variant:before {\n  content: \"\\F4A6\";\n}\n\n.mdi-sim:before {\n  content: \"\\F4A7\";\n}\n\n.mdi-sim-alert:before {\n  content: \"\\F4A8\";\n}\n\n.mdi-sim-off:before {\n  content: \"\\F4A9\";\n}\n\n.mdi-sitemap:before {\n  content: \"\\F4AA\";\n}\n\n.mdi-skip-backward:before {\n  content: \"\\F4AB\";\n}\n\n.mdi-skip-forward:before {\n  content: \"\\F4AC\";\n}\n\n.mdi-skip-next:before {\n  content: \"\\F4AD\";\n}\n\n.mdi-skip-next-circle:before {\n  content: \"\\F661\";\n}\n\n.mdi-skip-next-circle-outline:before {\n  content: \"\\F662\";\n}\n\n.mdi-skip-previous:before {\n  content: \"\\F4AE\";\n}\n\n.mdi-skip-previous-circle:before {\n  content: \"\\F663\";\n}\n\n.mdi-skip-previous-circle-outline:before {\n  content: \"\\F664\";\n}\n\n.mdi-skull:before {\n  content: \"\\F68B\";\n}\n\n.mdi-skype:before {\n  content: \"\\F4AF\";\n}\n\n.mdi-skype-business:before {\n  content: \"\\F4B0\";\n}\n\n.mdi-slack:before {\n  content: \"\\F4B1\";\n}\n\n.mdi-sleep:before {\n  content: \"\\F4B2\";\n}\n\n.mdi-sleep-off:before {\n  content: \"\\F4B3\";\n}\n\n.mdi-smoking:before {\n  content: \"\\F4B4\";\n}\n\n.mdi-smoking-off:before {\n  content: \"\\F4B5\";\n}\n\n.mdi-snapchat:before {\n  content: \"\\F4B6\";\n}\n\n.mdi-snowman:before {\n  content: \"\\F4B7\";\n}\n\n.mdi-soccer:before {\n  content: \"\\F4B8\";\n}\n\n.mdi-sofa:before {\n  content: \"\\F4B9\";\n}\n\n.mdi-solid:before {\n  content: \"\\F68C\";\n}\n\n.mdi-sort:before {\n  content: \"\\F4BA\";\n}\n\n.mdi-sort-alphabetical:before {\n  content: \"\\F4BB\";\n}\n\n.mdi-sort-ascending:before {\n  content: \"\\F4BC\";\n}\n\n.mdi-sort-descending:before {\n  content: \"\\F4BD\";\n}\n\n.mdi-sort-numeric:before {\n  content: \"\\F4BE\";\n}\n\n.mdi-sort-variant:before {\n  content: \"\\F4BF\";\n}\n\n.mdi-soundcloud:before {\n  content: \"\\F4C0\";\n}\n\n.mdi-source-branch:before {\n  content: \"\\F62C\";\n}\n\n.mdi-source-fork:before {\n  content: \"\\F4C1\";\n}\n\n.mdi-source-merge:before {\n  content: \"\\F62D\";\n}\n\n.mdi-source-pull:before {\n  content: \"\\F4C2\";\n}\n\n.mdi-speaker:before {\n  content: \"\\F4C3\";\n}\n\n.mdi-speaker-off:before {\n  content: \"\\F4C4\";\n}\n\n.mdi-speedometer:before {\n  content: \"\\F4C5\";\n}\n\n.mdi-spellcheck:before {\n  content: \"\\F4C6\";\n}\n\n.mdi-spotify:before {\n  content: \"\\F4C7\";\n}\n\n.mdi-spotlight:before {\n  content: \"\\F4C8\";\n}\n\n.mdi-spotlight-beam:before {\n  content: \"\\F4C9\";\n}\n\n.mdi-spray:before {\n  content: \"\\F665\";\n}\n\n.mdi-square-inc:before {\n  content: \"\\F4CA\";\n}\n\n.mdi-square-inc-cash:before {\n  content: \"\\F4CB\";\n}\n\n.mdi-stackexchange:before {\n  content: \"\\F60B\";\n}\n\n.mdi-stackoverflow:before {\n  content: \"\\F4CC\";\n}\n\n.mdi-stairs:before {\n  content: \"\\F4CD\";\n}\n\n.mdi-star:before {\n  content: \"\\F4CE\";\n}\n\n.mdi-star-circle:before {\n  content: \"\\F4CF\";\n}\n\n.mdi-star-half:before {\n  content: \"\\F4D0\";\n}\n\n.mdi-star-off:before {\n  content: \"\\F4D1\";\n}\n\n.mdi-star-outline:before {\n  content: \"\\F4D2\";\n}\n\n.mdi-steam:before {\n  content: \"\\F4D3\";\n}\n\n.mdi-steering:before {\n  content: \"\\F4D4\";\n}\n\n.mdi-step-backward:before {\n  content: \"\\F4D5\";\n}\n\n.mdi-step-backward-2:before {\n  content: \"\\F4D6\";\n}\n\n.mdi-step-forward:before {\n  content: \"\\F4D7\";\n}\n\n.mdi-step-forward-2:before {\n  content: \"\\F4D8\";\n}\n\n.mdi-stethoscope:before {\n  content: \"\\F4D9\";\n}\n\n.mdi-sticker:before {\n  content: \"\\F5D0\";\n}\n\n.mdi-stocking:before {\n  content: \"\\F4DA\";\n}\n\n.mdi-stop:before {\n  content: \"\\F4DB\";\n}\n\n.mdi-stop-circle:before {\n  content: \"\\F666\";\n}\n\n.mdi-stop-circle-outline:before {\n  content: \"\\F667\";\n}\n\n.mdi-store:before {\n  content: \"\\F4DC\";\n}\n\n.mdi-store-24-hour:before {\n  content: \"\\F4DD\";\n}\n\n.mdi-stove:before {\n  content: \"\\F4DE\";\n}\n\n.mdi-subdirectory-arrow-left:before {\n  content: \"\\F60C\";\n}\n\n.mdi-subdirectory-arrow-right:before {\n  content: \"\\F60D\";\n}\n\n.mdi-subway:before {\n  content: \"\\F6AB\";\n}\n\n.mdi-subway-variant:before {\n  content: \"\\F4DF\";\n}\n\n.mdi-sunglasses:before {\n  content: \"\\F4E0\";\n}\n\n.mdi-surround-sound:before {\n  content: \"\\F5C5\";\n}\n\n.mdi-swap-horizontal:before {\n  content: \"\\F4E1\";\n}\n\n.mdi-swap-vertical:before {\n  content: \"\\F4E2\";\n}\n\n.mdi-swim:before {\n  content: \"\\F4E3\";\n}\n\n.mdi-switch:before {\n  content: \"\\F4E4\";\n}\n\n.mdi-sword:before {\n  content: \"\\F4E5\";\n}\n\n.mdi-sync:before {\n  content: \"\\F4E6\";\n}\n\n.mdi-sync-alert:before {\n  content: \"\\F4E7\";\n}\n\n.mdi-sync-off:before {\n  content: \"\\F4E8\";\n}\n\n.mdi-tab:before {\n  content: \"\\F4E9\";\n}\n\n.mdi-tab-unselected:before {\n  content: \"\\F4EA\";\n}\n\n.mdi-table:before {\n  content: \"\\F4EB\";\n}\n\n.mdi-table-column-plus-after:before {\n  content: \"\\F4EC\";\n}\n\n.mdi-table-column-plus-before:before {\n  content: \"\\F4ED\";\n}\n\n.mdi-table-column-remove:before {\n  content: \"\\F4EE\";\n}\n\n.mdi-table-column-width:before {\n  content: \"\\F4EF\";\n}\n\n.mdi-table-edit:before {\n  content: \"\\F4F0\";\n}\n\n.mdi-table-large:before {\n  content: \"\\F4F1\";\n}\n\n.mdi-table-row-height:before {\n  content: \"\\F4F2\";\n}\n\n.mdi-table-row-plus-after:before {\n  content: \"\\F4F3\";\n}\n\n.mdi-table-row-plus-before:before {\n  content: \"\\F4F4\";\n}\n\n.mdi-table-row-remove:before {\n  content: \"\\F4F5\";\n}\n\n.mdi-tablet:before {\n  content: \"\\F4F6\";\n}\n\n.mdi-tablet-android:before {\n  content: \"\\F4F7\";\n}\n\n.mdi-tablet-ipad:before {\n  content: \"\\F4F8\";\n}\n\n.mdi-tag:before {\n  content: \"\\F4F9\";\n}\n\n.mdi-tag-faces:before {\n  content: \"\\F4FA\";\n}\n\n.mdi-tag-heart:before {\n  content: \"\\F68A\";\n}\n\n.mdi-tag-multiple:before {\n  content: \"\\F4FB\";\n}\n\n.mdi-tag-outline:before {\n  content: \"\\F4FC\";\n}\n\n.mdi-tag-text-outline:before {\n  content: \"\\F4FD\";\n}\n\n.mdi-target:before {\n  content: \"\\F4FE\";\n}\n\n.mdi-taxi:before {\n  content: \"\\F4FF\";\n}\n\n.mdi-teamviewer:before {\n  content: \"\\F500\";\n}\n\n.mdi-telegram:before {\n  content: \"\\F501\";\n}\n\n.mdi-television:before {\n  content: \"\\F502\";\n}\n\n.mdi-television-guide:before {\n  content: \"\\F503\";\n}\n\n.mdi-temperature-celsius:before {\n  content: \"\\F504\";\n}\n\n.mdi-temperature-fahrenheit:before {\n  content: \"\\F505\";\n}\n\n.mdi-temperature-kelvin:before {\n  content: \"\\F506\";\n}\n\n.mdi-tennis:before {\n  content: \"\\F507\";\n}\n\n.mdi-tent:before {\n  content: \"\\F508\";\n}\n\n.mdi-terrain:before {\n  content: \"\\F509\";\n}\n\n.mdi-test-tube:before {\n  content: \"\\F668\";\n}\n\n.mdi-text-shadow:before {\n  content: \"\\F669\";\n}\n\n.mdi-text-to-speech:before {\n  content: \"\\F50A\";\n}\n\n.mdi-text-to-speech-off:before {\n  content: \"\\F50B\";\n}\n\n.mdi-textbox:before {\n  content: \"\\F60E\";\n}\n\n.mdi-texture:before {\n  content: \"\\F50C\";\n}\n\n.mdi-theater:before {\n  content: \"\\F50D\";\n}\n\n.mdi-theme-light-dark:before {\n  content: \"\\F50E\";\n}\n\n.mdi-thermometer:before {\n  content: \"\\F50F\";\n}\n\n.mdi-thermometer-lines:before {\n  content: \"\\F510\";\n}\n\n.mdi-thumb-down:before {\n  content: \"\\F511\";\n}\n\n.mdi-thumb-down-outline:before {\n  content: \"\\F512\";\n}\n\n.mdi-thumb-up:before {\n  content: \"\\F513\";\n}\n\n.mdi-thumb-up-outline:before {\n  content: \"\\F514\";\n}\n\n.mdi-thumbs-up-down:before {\n  content: \"\\F515\";\n}\n\n.mdi-ticket:before {\n  content: \"\\F516\";\n}\n\n.mdi-ticket-account:before {\n  content: \"\\F517\";\n}\n\n.mdi-ticket-confirmation:before {\n  content: \"\\F518\";\n}\n\n.mdi-tie:before {\n  content: \"\\F519\";\n}\n\n.mdi-timelapse:before {\n  content: \"\\F51A\";\n}\n\n.mdi-timer:before {\n  content: \"\\F51B\";\n}\n\n.mdi-timer-10:before {\n  content: \"\\F51C\";\n}\n\n.mdi-timer-3:before {\n  content: \"\\F51D\";\n}\n\n.mdi-timer-off:before {\n  content: \"\\F51E\";\n}\n\n.mdi-timer-sand:before {\n  content: \"\\F51F\";\n}\n\n.mdi-timer-sand-empty:before {\n  content: \"\\F6AC\";\n}\n\n.mdi-timetable:before {\n  content: \"\\F520\";\n}\n\n.mdi-toggle-switch:before {\n  content: \"\\F521\";\n}\n\n.mdi-toggle-switch-off:before {\n  content: \"\\F522\";\n}\n\n.mdi-tooltip:before {\n  content: \"\\F523\";\n}\n\n.mdi-tooltip-edit:before {\n  content: \"\\F524\";\n}\n\n.mdi-tooltip-image:before {\n  content: \"\\F525\";\n}\n\n.mdi-tooltip-outline:before {\n  content: \"\\F526\";\n}\n\n.mdi-tooltip-outline-plus:before {\n  content: \"\\F527\";\n}\n\n.mdi-tooltip-text:before {\n  content: \"\\F528\";\n}\n\n.mdi-tooth:before {\n  content: \"\\F529\";\n}\n\n.mdi-tor:before {\n  content: \"\\F52A\";\n}\n\n.mdi-tower-beach:before {\n  content: \"\\F680\";\n}\n\n.mdi-tower-fire:before {\n  content: \"\\F681\";\n}\n\n.mdi-traffic-light:before {\n  content: \"\\F52B\";\n}\n\n.mdi-train:before {\n  content: \"\\F52C\";\n}\n\n.mdi-tram:before {\n  content: \"\\F52D\";\n}\n\n.mdi-transcribe:before {\n  content: \"\\F52E\";\n}\n\n.mdi-transcribe-close:before {\n  content: \"\\F52F\";\n}\n\n.mdi-transfer:before {\n  content: \"\\F530\";\n}\n\n.mdi-transit-transfer:before {\n  content: \"\\F6AD\";\n}\n\n.mdi-translate:before {\n  content: \"\\F5CA\";\n}\n\n.mdi-tree:before {\n  content: \"\\F531\";\n}\n\n.mdi-trello:before {\n  content: \"\\F532\";\n}\n\n.mdi-trending-down:before {\n  content: \"\\F533\";\n}\n\n.mdi-trending-neutral:before {\n  content: \"\\F534\";\n}\n\n.mdi-trending-up:before {\n  content: \"\\F535\";\n}\n\n.mdi-triangle:before {\n  content: \"\\F536\";\n}\n\n.mdi-triangle-outline:before {\n  content: \"\\F537\";\n}\n\n.mdi-trophy:before {\n  content: \"\\F538\";\n}\n\n.mdi-trophy-award:before {\n  content: \"\\F539\";\n}\n\n.mdi-trophy-outline:before {\n  content: \"\\F53A\";\n}\n\n.mdi-trophy-variant:before {\n  content: \"\\F53B\";\n}\n\n.mdi-trophy-variant-outline:before {\n  content: \"\\F53C\";\n}\n\n.mdi-truck:before {\n  content: \"\\F53D\";\n}\n\n.mdi-truck-delivery:before {\n  content: \"\\F53E\";\n}\n\n.mdi-tshirt-crew:before {\n  content: \"\\F53F\";\n}\n\n.mdi-tshirt-v:before {\n  content: \"\\F540\";\n}\n\n.mdi-tumblr:before {\n  content: \"\\F541\";\n}\n\n.mdi-tumblr-reblog:before {\n  content: \"\\F542\";\n}\n\n.mdi-tune:before {\n  content: \"\\F62E\";\n}\n\n.mdi-tune-vertical:before {\n  content: \"\\F66A\";\n}\n\n.mdi-twitch:before {\n  content: \"\\F543\";\n}\n\n.mdi-twitter:before {\n  content: \"\\F544\";\n}\n\n.mdi-twitter-box:before {\n  content: \"\\F545\";\n}\n\n.mdi-twitter-circle:before {\n  content: \"\\F546\";\n}\n\n.mdi-twitter-retweet:before {\n  content: \"\\F547\";\n}\n\n.mdi-ubuntu:before {\n  content: \"\\F548\";\n}\n\n.mdi-umbraco:before {\n  content: \"\\F549\";\n}\n\n.mdi-umbrella:before {\n  content: \"\\F54A\";\n}\n\n.mdi-umbrella-outline:before {\n  content: \"\\F54B\";\n}\n\n.mdi-undo:before {\n  content: \"\\F54C\";\n}\n\n.mdi-undo-variant:before {\n  content: \"\\F54D\";\n}\n\n.mdi-unfold-less:before {\n  content: \"\\F54E\";\n}\n\n.mdi-unfold-more:before {\n  content: \"\\F54F\";\n}\n\n.mdi-ungroup:before {\n  content: \"\\F550\";\n}\n\n.mdi-unity:before {\n  content: \"\\F6AE\";\n}\n\n.mdi-untappd:before {\n  content: \"\\F551\";\n}\n\n.mdi-update:before {\n  content: \"\\F6AF\";\n}\n\n.mdi-upload:before {\n  content: \"\\F552\";\n}\n\n.mdi-usb:before {\n  content: \"\\F553\";\n}\n\n.mdi-vector-arrange-above:before {\n  content: \"\\F554\";\n}\n\n.mdi-vector-arrange-below:before {\n  content: \"\\F555\";\n}\n\n.mdi-vector-circle:before {\n  content: \"\\F556\";\n}\n\n.mdi-vector-circle-variant:before {\n  content: \"\\F557\";\n}\n\n.mdi-vector-combine:before {\n  content: \"\\F558\";\n}\n\n.mdi-vector-curve:before {\n  content: \"\\F559\";\n}\n\n.mdi-vector-difference:before {\n  content: \"\\F55A\";\n}\n\n.mdi-vector-difference-ab:before {\n  content: \"\\F55B\";\n}\n\n.mdi-vector-difference-ba:before {\n  content: \"\\F55C\";\n}\n\n.mdi-vector-intersection:before {\n  content: \"\\F55D\";\n}\n\n.mdi-vector-line:before {\n  content: \"\\F55E\";\n}\n\n.mdi-vector-point:before {\n  content: \"\\F55F\";\n}\n\n.mdi-vector-polygon:before {\n  content: \"\\F560\";\n}\n\n.mdi-vector-polyline:before {\n  content: \"\\F561\";\n}\n\n.mdi-vector-rectangle:before {\n  content: \"\\F5C6\";\n}\n\n.mdi-vector-selection:before {\n  content: \"\\F562\";\n}\n\n.mdi-vector-square:before {\n  content: \"\\F001\";\n}\n\n.mdi-vector-triangle:before {\n  content: \"\\F563\";\n}\n\n.mdi-vector-union:before {\n  content: \"\\F564\";\n}\n\n.mdi-verified:before {\n  content: \"\\F565\";\n}\n\n.mdi-vibrate:before {\n  content: \"\\F566\";\n}\n\n.mdi-video:before {\n  content: \"\\F567\";\n}\n\n.mdi-video-off:before {\n  content: \"\\F568\";\n}\n\n.mdi-video-switch:before {\n  content: \"\\F569\";\n}\n\n.mdi-view-agenda:before {\n  content: \"\\F56A\";\n}\n\n.mdi-view-array:before {\n  content: \"\\F56B\";\n}\n\n.mdi-view-carousel:before {\n  content: \"\\F56C\";\n}\n\n.mdi-view-column:before {\n  content: \"\\F56D\";\n}\n\n.mdi-view-dashboard:before {\n  content: \"\\F56E\";\n}\n\n.mdi-view-day:before {\n  content: \"\\F56F\";\n}\n\n.mdi-view-grid:before {\n  content: \"\\F570\";\n}\n\n.mdi-view-headline:before {\n  content: \"\\F571\";\n}\n\n.mdi-view-list:before {\n  content: \"\\F572\";\n}\n\n.mdi-view-module:before {\n  content: \"\\F573\";\n}\n\n.mdi-view-quilt:before {\n  content: \"\\F574\";\n}\n\n.mdi-view-stream:before {\n  content: \"\\F575\";\n}\n\n.mdi-view-week:before {\n  content: \"\\F576\";\n}\n\n.mdi-vimeo:before {\n  content: \"\\F577\";\n}\n\n.mdi-vine:before {\n  content: \"\\F578\";\n}\n\n.mdi-violin:before {\n  content: \"\\F60F\";\n}\n\n.mdi-visualstudio:before {\n  content: \"\\F610\";\n}\n\n.mdi-vk:before {\n  content: \"\\F579\";\n}\n\n.mdi-vk-box:before {\n  content: \"\\F57A\";\n}\n\n.mdi-vk-circle:before {\n  content: \"\\F57B\";\n}\n\n.mdi-vlc:before {\n  content: \"\\F57C\";\n}\n\n.mdi-voice:before {\n  content: \"\\F5CB\";\n}\n\n.mdi-voicemail:before {\n  content: \"\\F57D\";\n}\n\n.mdi-volume-high:before {\n  content: \"\\F57E\";\n}\n\n.mdi-volume-low:before {\n  content: \"\\F57F\";\n}\n\n.mdi-volume-medium:before {\n  content: \"\\F580\";\n}\n\n.mdi-volume-off:before {\n  content: \"\\F581\";\n}\n\n.mdi-vpn:before {\n  content: \"\\F582\";\n}\n\n.mdi-walk:before {\n  content: \"\\F583\";\n}\n\n.mdi-wallet:before {\n  content: \"\\F584\";\n}\n\n.mdi-wallet-giftcard:before {\n  content: \"\\F585\";\n}\n\n.mdi-wallet-membership:before {\n  content: \"\\F586\";\n}\n\n.mdi-wallet-travel:before {\n  content: \"\\F587\";\n}\n\n.mdi-wan:before {\n  content: \"\\F588\";\n}\n\n.mdi-watch:before {\n  content: \"\\F589\";\n}\n\n.mdi-watch-export:before {\n  content: \"\\F58A\";\n}\n\n.mdi-watch-import:before {\n  content: \"\\F58B\";\n}\n\n.mdi-watch-vibrate:before {\n  content: \"\\F6B0\";\n}\n\n.mdi-water:before {\n  content: \"\\F58C\";\n}\n\n.mdi-water-off:before {\n  content: \"\\F58D\";\n}\n\n.mdi-water-percent:before {\n  content: \"\\F58E\";\n}\n\n.mdi-water-pump:before {\n  content: \"\\F58F\";\n}\n\n.mdi-watermark:before {\n  content: \"\\F612\";\n}\n\n.mdi-weather-cloudy:before {\n  content: \"\\F590\";\n}\n\n.mdi-weather-fog:before {\n  content: \"\\F591\";\n}\n\n.mdi-weather-hail:before {\n  content: \"\\F592\";\n}\n\n.mdi-weather-lightning:before {\n  content: \"\\F593\";\n}\n\n.mdi-weather-lightning-rainy:before {\n  content: \"\\F67D\";\n}\n\n.mdi-weather-night:before {\n  content: \"\\F594\";\n}\n\n.mdi-weather-partlycloudy:before {\n  content: \"\\F595\";\n}\n\n.mdi-weather-pouring:before {\n  content: \"\\F596\";\n}\n\n.mdi-weather-rainy:before {\n  content: \"\\F597\";\n}\n\n.mdi-weather-snowy:before {\n  content: \"\\F598\";\n}\n\n.mdi-weather-snowy-rainy:before {\n  content: \"\\F67E\";\n}\n\n.mdi-weather-sunny:before {\n  content: \"\\F599\";\n}\n\n.mdi-weather-sunset:before {\n  content: \"\\F59A\";\n}\n\n.mdi-weather-sunset-down:before {\n  content: \"\\F59B\";\n}\n\n.mdi-weather-sunset-up:before {\n  content: \"\\F59C\";\n}\n\n.mdi-weather-windy:before {\n  content: \"\\F59D\";\n}\n\n.mdi-weather-windy-variant:before {\n  content: \"\\F59E\";\n}\n\n.mdi-web:before {\n  content: \"\\F59F\";\n}\n\n.mdi-webcam:before {\n  content: \"\\F5A0\";\n}\n\n.mdi-webhook:before {\n  content: \"\\F62F\";\n}\n\n.mdi-wechat:before {\n  content: \"\\F611\";\n}\n\n.mdi-weight:before {\n  content: \"\\F5A1\";\n}\n\n.mdi-weight-kilogram:before {\n  content: \"\\F5A2\";\n}\n\n.mdi-whatsapp:before {\n  content: \"\\F5A3\";\n}\n\n.mdi-wheelchair-accessibility:before {\n  content: \"\\F5A4\";\n}\n\n.mdi-white-balance-auto:before {\n  content: \"\\F5A5\";\n}\n\n.mdi-white-balance-incandescent:before {\n  content: \"\\F5A6\";\n}\n\n.mdi-white-balance-iridescent:before {\n  content: \"\\F5A7\";\n}\n\n.mdi-white-balance-sunny:before {\n  content: \"\\F5A8\";\n}\n\n.mdi-wifi:before {\n  content: \"\\F5A9\";\n}\n\n.mdi-wifi-off:before {\n  content: \"\\F5AA\";\n}\n\n.mdi-wii:before {\n  content: \"\\F5AB\";\n}\n\n.mdi-wikipedia:before {\n  content: \"\\F5AC\";\n}\n\n.mdi-window-close:before {\n  content: \"\\F5AD\";\n}\n\n.mdi-window-closed:before {\n  content: \"\\F5AE\";\n}\n\n.mdi-window-maximize:before {\n  content: \"\\F5AF\";\n}\n\n.mdi-window-minimize:before {\n  content: \"\\F5B0\";\n}\n\n.mdi-window-open:before {\n  content: \"\\F5B1\";\n}\n\n.mdi-window-restore:before {\n  content: \"\\F5B2\";\n}\n\n.mdi-windows:before {\n  content: \"\\F5B3\";\n}\n\n.mdi-wordpress:before {\n  content: \"\\F5B4\";\n}\n\n.mdi-worker:before {\n  content: \"\\F5B5\";\n}\n\n.mdi-wrap:before {\n  content: \"\\F5B6\";\n}\n\n.mdi-wrench:before {\n  content: \"\\F5B7\";\n}\n\n.mdi-wunderlist:before {\n  content: \"\\F5B8\";\n}\n\n.mdi-xaml:before {\n  content: \"\\F673\";\n}\n\n.mdi-xbox:before {\n  content: \"\\F5B9\";\n}\n\n.mdi-xbox-controller:before {\n  content: \"\\F5BA\";\n}\n\n.mdi-xbox-controller-off:before {\n  content: \"\\F5BB\";\n}\n\n.mdi-xda:before {\n  content: \"\\F5BC\";\n}\n\n.mdi-xing:before {\n  content: \"\\F5BD\";\n}\n\n.mdi-xing-box:before {\n  content: \"\\F5BE\";\n}\n\n.mdi-xing-circle:before {\n  content: \"\\F5BF\";\n}\n\n.mdi-xml:before {\n  content: \"\\F5C0\";\n}\n\n.mdi-yeast:before {\n  content: \"\\F5C1\";\n}\n\n.mdi-yelp:before {\n  content: \"\\F5C2\";\n}\n\n.mdi-yin-yang:before {\n  content: \"\\F67F\";\n}\n\n.mdi-youtube-play:before {\n  content: \"\\F5C3\";\n}\n\n.mdi-zip-box:before {\n  content: \"\\F5C4\";\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/ikonli-materialdesign2-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.materialdesign2 {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.materialdesign2;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.materialdesign2.MaterialDesignAIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignBIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignCIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignDIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignEIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignFIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignGIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignHIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignIIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignJIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignKIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignLIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignMIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignNIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignOIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignPIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignQIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignRIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignSIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignTIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignUIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignVIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignWIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignXIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignYIkonHandler,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignZIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.materialdesign2.MaterialDesignAIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignBIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignCIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignDIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignEIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignFIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignGIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignHIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignIIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignJIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignKIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignLIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignMIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignNIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignOIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignPIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignQIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignRIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignSIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignTIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignUIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignVIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignWIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignXIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignYIkonProvider,\n            org.kordamp.ikonli.materialdesign2.MaterialDesignZIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/AbstractMaterialDesignIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\npublic abstract class AbstractMaterialDesignIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/materialdesign2/7.4.47/fonts/materialdesignicons-webfont.ttf\";\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Material Design Icons\";\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignA.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignA implements Ikon {\n    AB_TESTING(\"mdi2a-ab-testing\", \"F01C9\"),\n    ABACUS(\"mdi2a-abacus\", \"F16E0\"),\n    ABJAD_ARABIC(\"mdi2a-abjad-arabic\", \"F1328\"),\n    ABJAD_HEBREW(\"mdi2a-abjad-hebrew\", \"F1329\"),\n    ABUGIDA_DEVANAGARI(\"mdi2a-abugida-devanagari\", \"F132A\"),\n    ABUGIDA_THAI(\"mdi2a-abugida-thai\", \"F132B\"),\n    ACCESS_POINT(\"mdi2a-access-point\", \"F0003\"),\n    ACCESS_POINT_CHECK(\"mdi2a-access-point-check\", \"F1538\"),\n    ACCESS_POINT_MINUS(\"mdi2a-access-point-minus\", \"F1539\"),\n    ACCESS_POINT_NETWORK(\"mdi2a-access-point-network\", \"F0002\"),\n    ACCESS_POINT_NETWORK_OFF(\"mdi2a-access-point-network-off\", \"F0BE1\"),\n    ACCESS_POINT_OFF(\"mdi2a-access-point-off\", \"F1511\"),\n    ACCESS_POINT_PLUS(\"mdi2a-access-point-plus\", \"F153A\"),\n    ACCESS_POINT_REMOVE(\"mdi2a-access-point-remove\", \"F153B\"),\n    ACCOUNT(\"mdi2a-account\", \"F0004\"),\n    ACCOUNT_ALERT(\"mdi2a-account-alert\", \"F0005\"),\n    ACCOUNT_ALERT_OUTLINE(\"mdi2a-account-alert-outline\", \"F0B50\"),\n    ACCOUNT_ARROW_DOWN(\"mdi2a-account-arrow-down\", \"F1868\"),\n    ACCOUNT_ARROW_DOWN_OUTLINE(\"mdi2a-account-arrow-down-outline\", \"F1869\"),\n    ACCOUNT_ARROW_LEFT(\"mdi2a-account-arrow-left\", \"F0B51\"),\n    ACCOUNT_ARROW_LEFT_OUTLINE(\"mdi2a-account-arrow-left-outline\", \"F0B52\"),\n    ACCOUNT_ARROW_RIGHT(\"mdi2a-account-arrow-right\", \"F0B53\"),\n    ACCOUNT_ARROW_RIGHT_OUTLINE(\"mdi2a-account-arrow-right-outline\", \"F0B54\"),\n    ACCOUNT_ARROW_UP(\"mdi2a-account-arrow-up\", \"F1867\"),\n    ACCOUNT_ARROW_UP_OUTLINE(\"mdi2a-account-arrow-up-outline\", \"F186A\"),\n    ACCOUNT_BADGE(\"mdi2a-account-badge\", \"F1B0A\"),\n    ACCOUNT_BADGE_OUTLINE(\"mdi2a-account-badge-outline\", \"F1B0B\"),\n    ACCOUNT_BOX(\"mdi2a-account-box\", \"F0006\"),\n    ACCOUNT_BOX_EDIT_OUTLINE(\"mdi2a-account-box-edit-outline\", \"F1CC8\"),\n    ACCOUNT_BOX_MINUS_OUTLINE(\"mdi2a-account-box-minus-outline\", \"F1CC9\"),\n    ACCOUNT_BOX_MULTIPLE(\"mdi2a-account-box-multiple\", \"F0934\"),\n    ACCOUNT_BOX_MULTIPLE_OUTLINE(\"mdi2a-account-box-multiple-outline\", \"F100A\"),\n    ACCOUNT_BOX_OUTLINE(\"mdi2a-account-box-outline\", \"F0007\"),\n    ACCOUNT_BOX_PLUS_OUTLINE(\"mdi2a-account-box-plus-outline\", \"F1CCA\"),\n    ACCOUNT_CANCEL(\"mdi2a-account-cancel\", \"F12DF\"),\n    ACCOUNT_CANCEL_OUTLINE(\"mdi2a-account-cancel-outline\", \"F12E0\"),\n    ACCOUNT_CARD(\"mdi2a-account-card\", \"F1BA4\"),\n    ACCOUNT_CARD_OUTLINE(\"mdi2a-account-card-outline\", \"F1BA5\"),\n    ACCOUNT_CASH(\"mdi2a-account-cash\", \"F1097\"),\n    ACCOUNT_CASH_OUTLINE(\"mdi2a-account-cash-outline\", \"F1098\"),\n    ACCOUNT_CHECK(\"mdi2a-account-check\", \"F0008\"),\n    ACCOUNT_CHECK_OUTLINE(\"mdi2a-account-check-outline\", \"F0BE2\"),\n    ACCOUNT_CHILD(\"mdi2a-account-child\", \"F0A89\"),\n    ACCOUNT_CHILD_CIRCLE(\"mdi2a-account-child-circle\", \"F0A8A\"),\n    ACCOUNT_CHILD_OUTLINE(\"mdi2a-account-child-outline\", \"F10C8\"),\n    ACCOUNT_CIRCLE(\"mdi2a-account-circle\", \"F0009\"),\n    ACCOUNT_CIRCLE_OUTLINE(\"mdi2a-account-circle-outline\", \"F0B55\"),\n    ACCOUNT_CLOCK(\"mdi2a-account-clock\", \"F0B56\"),\n    ACCOUNT_CLOCK_OUTLINE(\"mdi2a-account-clock-outline\", \"F0B57\"),\n    ACCOUNT_COG(\"mdi2a-account-cog\", \"F1370\"),\n    ACCOUNT_COG_OUTLINE(\"mdi2a-account-cog-outline\", \"F1371\"),\n    ACCOUNT_CONVERT(\"mdi2a-account-convert\", \"F000A\"),\n    ACCOUNT_CONVERT_OUTLINE(\"mdi2a-account-convert-outline\", \"F1301\"),\n    ACCOUNT_COWBOY_HAT(\"mdi2a-account-cowboy-hat\", \"F0E9B\"),\n    ACCOUNT_COWBOY_HAT_OUTLINE(\"mdi2a-account-cowboy-hat-outline\", \"F17F3\"),\n    ACCOUNT_CREDIT_CARD(\"mdi2a-account-credit-card\", \"F1BA6\"),\n    ACCOUNT_CREDIT_CARD_OUTLINE(\"mdi2a-account-credit-card-outline\", \"F1BA7\"),\n    ACCOUNT_DETAILS(\"mdi2a-account-details\", \"F0631\"),\n    ACCOUNT_DETAILS_OUTLINE(\"mdi2a-account-details-outline\", \"F1372\"),\n    ACCOUNT_EDIT(\"mdi2a-account-edit\", \"F06BC\"),\n    ACCOUNT_EDIT_OUTLINE(\"mdi2a-account-edit-outline\", \"F0FFB\"),\n    ACCOUNT_EYE(\"mdi2a-account-eye\", \"F0420\"),\n    ACCOUNT_EYE_OUTLINE(\"mdi2a-account-eye-outline\", \"F127B\"),\n    ACCOUNT_FILE(\"mdi2a-account-file\", \"F1CA7\"),\n    ACCOUNT_FILE_OUTLINE(\"mdi2a-account-file-outline\", \"F1CA8\"),\n    ACCOUNT_FILE_TEXT(\"mdi2a-account-file-text\", \"F1CA9\"),\n    ACCOUNT_FILE_TEXT_OUTLINE(\"mdi2a-account-file-text-outline\", \"F1CAA\"),\n    ACCOUNT_FILTER(\"mdi2a-account-filter\", \"F0936\"),\n    ACCOUNT_FILTER_OUTLINE(\"mdi2a-account-filter-outline\", \"F0F9D\"),\n    ACCOUNT_GROUP(\"mdi2a-account-group\", \"F0849\"),\n    ACCOUNT_GROUP_OUTLINE(\"mdi2a-account-group-outline\", \"F0B58\"),\n    ACCOUNT_HARD_HAT(\"mdi2a-account-hard-hat\", \"F05B5\"),\n    ACCOUNT_HARD_HAT_OUTLINE(\"mdi2a-account-hard-hat-outline\", \"F1A1F\"),\n    ACCOUNT_HEART(\"mdi2a-account-heart\", \"F0899\"),\n    ACCOUNT_HEART_OUTLINE(\"mdi2a-account-heart-outline\", \"F0BE3\"),\n    ACCOUNT_INJURY(\"mdi2a-account-injury\", \"F1815\"),\n    ACCOUNT_INJURY_OUTLINE(\"mdi2a-account-injury-outline\", \"F1816\"),\n    ACCOUNT_KEY(\"mdi2a-account-key\", \"F000B\"),\n    ACCOUNT_KEY_OUTLINE(\"mdi2a-account-key-outline\", \"F0BE4\"),\n    ACCOUNT_LOCK(\"mdi2a-account-lock\", \"F115E\"),\n    ACCOUNT_LOCK_OPEN(\"mdi2a-account-lock-open\", \"F1960\"),\n    ACCOUNT_LOCK_OPEN_OUTLINE(\"mdi2a-account-lock-open-outline\", \"F1961\"),\n    ACCOUNT_LOCK_OUTLINE(\"mdi2a-account-lock-outline\", \"F115F\"),\n    ACCOUNT_MINUS(\"mdi2a-account-minus\", \"F000D\"),\n    ACCOUNT_MINUS_OUTLINE(\"mdi2a-account-minus-outline\", \"F0AEC\"),\n    ACCOUNT_MULTIPLE(\"mdi2a-account-multiple\", \"F000E\"),\n    ACCOUNT_MULTIPLE_CHECK(\"mdi2a-account-multiple-check\", \"F08C5\"),\n    ACCOUNT_MULTIPLE_CHECK_OUTLINE(\"mdi2a-account-multiple-check-outline\", \"F11FE\"),\n    ACCOUNT_MULTIPLE_MINUS(\"mdi2a-account-multiple-minus\", \"F05D3\"),\n    ACCOUNT_MULTIPLE_MINUS_OUTLINE(\"mdi2a-account-multiple-minus-outline\", \"F0BE5\"),\n    ACCOUNT_MULTIPLE_OUTLINE(\"mdi2a-account-multiple-outline\", \"F000F\"),\n    ACCOUNT_MULTIPLE_PLUS(\"mdi2a-account-multiple-plus\", \"F0010\"),\n    ACCOUNT_MULTIPLE_PLUS_OUTLINE(\"mdi2a-account-multiple-plus-outline\", \"F0800\"),\n    ACCOUNT_MULTIPLE_REMOVE(\"mdi2a-account-multiple-remove\", \"F120A\"),\n    ACCOUNT_MULTIPLE_REMOVE_OUTLINE(\"mdi2a-account-multiple-remove-outline\", \"F120B\"),\n    ACCOUNT_MUSIC(\"mdi2a-account-music\", \"F0803\"),\n    ACCOUNT_MUSIC_OUTLINE(\"mdi2a-account-music-outline\", \"F0CE9\"),\n    ACCOUNT_NETWORK(\"mdi2a-account-network\", \"F0011\"),\n    ACCOUNT_NETWORK_OFF(\"mdi2a-account-network-off\", \"F1AF1\"),\n    ACCOUNT_NETWORK_OFF_OUTLINE(\"mdi2a-account-network-off-outline\", \"F1AF2\"),\n    ACCOUNT_NETWORK_OUTLINE(\"mdi2a-account-network-outline\", \"F0BE6\"),\n    ACCOUNT_OFF(\"mdi2a-account-off\", \"F0012\"),\n    ACCOUNT_OFF_OUTLINE(\"mdi2a-account-off-outline\", \"F0BE7\"),\n    ACCOUNT_OUTLINE(\"mdi2a-account-outline\", \"F0013\"),\n    ACCOUNT_PLUS(\"mdi2a-account-plus\", \"F0014\"),\n    ACCOUNT_PLUS_OUTLINE(\"mdi2a-account-plus-outline\", \"F0801\"),\n    ACCOUNT_QUESTION(\"mdi2a-account-question\", \"F0B59\"),\n    ACCOUNT_QUESTION_OUTLINE(\"mdi2a-account-question-outline\", \"F0B5A\"),\n    ACCOUNT_REACTIVATE(\"mdi2a-account-reactivate\", \"F152B\"),\n    ACCOUNT_REACTIVATE_OUTLINE(\"mdi2a-account-reactivate-outline\", \"F152C\"),\n    ACCOUNT_REMOVE(\"mdi2a-account-remove\", \"F0015\"),\n    ACCOUNT_REMOVE_OUTLINE(\"mdi2a-account-remove-outline\", \"F0AED\"),\n    ACCOUNT_SCHOOL(\"mdi2a-account-school\", \"F1A20\"),\n    ACCOUNT_SCHOOL_OUTLINE(\"mdi2a-account-school-outline\", \"F1A21\"),\n    ACCOUNT_SEARCH(\"mdi2a-account-search\", \"F0016\"),\n    ACCOUNT_SEARCH_OUTLINE(\"mdi2a-account-search-outline\", \"F0935\"),\n    ACCOUNT_SETTINGS(\"mdi2a-account-settings\", \"F0630\"),\n    ACCOUNT_SETTINGS_OUTLINE(\"mdi2a-account-settings-outline\", \"F10C9\"),\n    ACCOUNT_STAR(\"mdi2a-account-star\", \"F0017\"),\n    ACCOUNT_STAR_OUTLINE(\"mdi2a-account-star-outline\", \"F0BE8\"),\n    ACCOUNT_SUPERVISOR(\"mdi2a-account-supervisor\", \"F0A8B\"),\n    ACCOUNT_SUPERVISOR_CIRCLE(\"mdi2a-account-supervisor-circle\", \"F0A8C\"),\n    ACCOUNT_SUPERVISOR_CIRCLE_OUTLINE(\"mdi2a-account-supervisor-circle-outline\", \"F14EC\"),\n    ACCOUNT_SUPERVISOR_OUTLINE(\"mdi2a-account-supervisor-outline\", \"F112D\"),\n    ACCOUNT_SWITCH(\"mdi2a-account-switch\", \"F0019\"),\n    ACCOUNT_SWITCH_OUTLINE(\"mdi2a-account-switch-outline\", \"F04CB\"),\n    ACCOUNT_SYNC(\"mdi2a-account-sync\", \"F191B\"),\n    ACCOUNT_SYNC_OUTLINE(\"mdi2a-account-sync-outline\", \"F191C\"),\n    ACCOUNT_TAG(\"mdi2a-account-tag\", \"F1C1B\"),\n    ACCOUNT_TAG_OUTLINE(\"mdi2a-account-tag-outline\", \"F1C1C\"),\n    ACCOUNT_TIE(\"mdi2a-account-tie\", \"F0CE3\"),\n    ACCOUNT_TIE_HAT(\"mdi2a-account-tie-hat\", \"F1898\"),\n    ACCOUNT_TIE_HAT_OUTLINE(\"mdi2a-account-tie-hat-outline\", \"F1899\"),\n    ACCOUNT_TIE_OUTLINE(\"mdi2a-account-tie-outline\", \"F10CA\"),\n    ACCOUNT_TIE_VOICE(\"mdi2a-account-tie-voice\", \"F1308\"),\n    ACCOUNT_TIE_VOICE_OFF(\"mdi2a-account-tie-voice-off\", \"F130A\"),\n    ACCOUNT_TIE_VOICE_OFF_OUTLINE(\"mdi2a-account-tie-voice-off-outline\", \"F130B\"),\n    ACCOUNT_TIE_VOICE_OUTLINE(\"mdi2a-account-tie-voice-outline\", \"F1309\"),\n    ACCOUNT_TIE_WOMAN(\"mdi2a-account-tie-woman\", \"F1A8C\"),\n    ACCOUNT_VOICE(\"mdi2a-account-voice\", \"F05CB\"),\n    ACCOUNT_VOICE_OFF(\"mdi2a-account-voice-off\", \"F0ED4\"),\n    ACCOUNT_WRENCH(\"mdi2a-account-wrench\", \"F189A\"),\n    ACCOUNT_WRENCH_OUTLINE(\"mdi2a-account-wrench-outline\", \"F189B\"),\n    ADJUST(\"mdi2a-adjust\", \"F001A\"),\n    ADVERTISEMENTS(\"mdi2a-advertisements\", \"F192A\"),\n    ADVERTISEMENTS_OFF(\"mdi2a-advertisements-off\", \"F192B\"),\n    AIR_CONDITIONER(\"mdi2a-air-conditioner\", \"F001B\"),\n    AIR_FILTER(\"mdi2a-air-filter\", \"F0D43\"),\n    AIR_HORN(\"mdi2a-air-horn\", \"F0DAC\"),\n    AIR_HUMIDIFIER(\"mdi2a-air-humidifier\", \"F1099\"),\n    AIR_HUMIDIFIER_OFF(\"mdi2a-air-humidifier-off\", \"F1466\"),\n    AIR_PURIFIER(\"mdi2a-air-purifier\", \"F0D44\"),\n    AIR_PURIFIER_OFF(\"mdi2a-air-purifier-off\", \"F1B57\"),\n    AIRBAG(\"mdi2a-airbag\", \"F0BE9\"),\n    AIRBALLOON(\"mdi2a-airballoon\", \"F001C\"),\n    AIRBALLOON_OUTLINE(\"mdi2a-airballoon-outline\", \"F100B\"),\n    AIRPLANE(\"mdi2a-airplane\", \"F001D\"),\n    AIRPLANE_ALERT(\"mdi2a-airplane-alert\", \"F187A\"),\n    AIRPLANE_CHECK(\"mdi2a-airplane-check\", \"F187B\"),\n    AIRPLANE_CLOCK(\"mdi2a-airplane-clock\", \"F187C\"),\n    AIRPLANE_COG(\"mdi2a-airplane-cog\", \"F187D\"),\n    AIRPLANE_EDIT(\"mdi2a-airplane-edit\", \"F187E\"),\n    AIRPLANE_LANDING(\"mdi2a-airplane-landing\", \"F05D4\"),\n    AIRPLANE_MARKER(\"mdi2a-airplane-marker\", \"F187F\"),\n    AIRPLANE_MINUS(\"mdi2a-airplane-minus\", \"F1880\"),\n    AIRPLANE_OFF(\"mdi2a-airplane-off\", \"F001E\"),\n    AIRPLANE_PLUS(\"mdi2a-airplane-plus\", \"F1881\"),\n    AIRPLANE_REMOVE(\"mdi2a-airplane-remove\", \"F1882\"),\n    AIRPLANE_SEARCH(\"mdi2a-airplane-search\", \"F1883\"),\n    AIRPLANE_SETTINGS(\"mdi2a-airplane-settings\", \"F1884\"),\n    AIRPLANE_TAKEOFF(\"mdi2a-airplane-takeoff\", \"F05D5\"),\n    AIRPORT(\"mdi2a-airport\", \"F084B\"),\n    ALARM(\"mdi2a-alarm\", \"F0020\"),\n    ALARM_BELL(\"mdi2a-alarm-bell\", \"F078E\"),\n    ALARM_CHECK(\"mdi2a-alarm-check\", \"F0021\"),\n    ALARM_LIGHT(\"mdi2a-alarm-light\", \"F078F\"),\n    ALARM_LIGHT_OFF(\"mdi2a-alarm-light-off\", \"F171E\"),\n    ALARM_LIGHT_OFF_OUTLINE(\"mdi2a-alarm-light-off-outline\", \"F171F\"),\n    ALARM_LIGHT_OUTLINE(\"mdi2a-alarm-light-outline\", \"F0BEA\"),\n    ALARM_MULTIPLE(\"mdi2a-alarm-multiple\", \"F0022\"),\n    ALARM_NOTE(\"mdi2a-alarm-note\", \"F0E71\"),\n    ALARM_NOTE_OFF(\"mdi2a-alarm-note-off\", \"F0E72\"),\n    ALARM_OFF(\"mdi2a-alarm-off\", \"F0023\"),\n    ALARM_PANEL(\"mdi2a-alarm-panel\", \"F15C4\"),\n    ALARM_PANEL_OUTLINE(\"mdi2a-alarm-panel-outline\", \"F15C5\"),\n    ALARM_PLUS(\"mdi2a-alarm-plus\", \"F0024\"),\n    ALARM_SNOOZE(\"mdi2a-alarm-snooze\", \"F068E\"),\n    ALBUM(\"mdi2a-album\", \"F0025\"),\n    ALERT(\"mdi2a-alert\", \"F0026\"),\n    ALERT_BOX(\"mdi2a-alert-box\", \"F0027\"),\n    ALERT_BOX_OUTLINE(\"mdi2a-alert-box-outline\", \"F0CE4\"),\n    ALERT_CIRCLE(\"mdi2a-alert-circle\", \"F0028\"),\n    ALERT_CIRCLE_CHECK(\"mdi2a-alert-circle-check\", \"F11ED\"),\n    ALERT_CIRCLE_CHECK_OUTLINE(\"mdi2a-alert-circle-check-outline\", \"F11EE\"),\n    ALERT_CIRCLE_OUTLINE(\"mdi2a-alert-circle-outline\", \"F05D6\"),\n    ALERT_DECAGRAM(\"mdi2a-alert-decagram\", \"F06BD\"),\n    ALERT_DECAGRAM_OUTLINE(\"mdi2a-alert-decagram-outline\", \"F0CE5\"),\n    ALERT_MINUS(\"mdi2a-alert-minus\", \"F14BB\"),\n    ALERT_MINUS_OUTLINE(\"mdi2a-alert-minus-outline\", \"F14BE\"),\n    ALERT_OCTAGON(\"mdi2a-alert-octagon\", \"F0029\"),\n    ALERT_OCTAGON_OUTLINE(\"mdi2a-alert-octagon-outline\", \"F0CE6\"),\n    ALERT_OCTAGRAM(\"mdi2a-alert-octagram\", \"F0767\"),\n    ALERT_OCTAGRAM_OUTLINE(\"mdi2a-alert-octagram-outline\", \"F0CE7\"),\n    ALERT_OUTLINE(\"mdi2a-alert-outline\", \"F002A\"),\n    ALERT_PLUS(\"mdi2a-alert-plus\", \"F14BA\"),\n    ALERT_PLUS_OUTLINE(\"mdi2a-alert-plus-outline\", \"F14BD\"),\n    ALERT_REMOVE(\"mdi2a-alert-remove\", \"F14BC\"),\n    ALERT_REMOVE_OUTLINE(\"mdi2a-alert-remove-outline\", \"F14BF\"),\n    ALERT_RHOMBUS(\"mdi2a-alert-rhombus\", \"F11CE\"),\n    ALERT_RHOMBUS_OUTLINE(\"mdi2a-alert-rhombus-outline\", \"F11CF\"),\n    ALIEN(\"mdi2a-alien\", \"F089A\"),\n    ALIEN_OUTLINE(\"mdi2a-alien-outline\", \"F10CB\"),\n    ALIGN_HORIZONTAL_CENTER(\"mdi2a-align-horizontal-center\", \"F11C3\"),\n    ALIGN_HORIZONTAL_DISTRIBUTE(\"mdi2a-align-horizontal-distribute\", \"F1962\"),\n    ALIGN_HORIZONTAL_LEFT(\"mdi2a-align-horizontal-left\", \"F11C2\"),\n    ALIGN_HORIZONTAL_RIGHT(\"mdi2a-align-horizontal-right\", \"F11C4\"),\n    ALIGN_VERTICAL_BOTTOM(\"mdi2a-align-vertical-bottom\", \"F11C5\"),\n    ALIGN_VERTICAL_CENTER(\"mdi2a-align-vertical-center\", \"F11C6\"),\n    ALIGN_VERTICAL_DISTRIBUTE(\"mdi2a-align-vertical-distribute\", \"F1963\"),\n    ALIGN_VERTICAL_TOP(\"mdi2a-align-vertical-top\", \"F11C7\"),\n    ALL_INCLUSIVE(\"mdi2a-all-inclusive\", \"F06BE\"),\n    ALL_INCLUSIVE_BOX(\"mdi2a-all-inclusive-box\", \"F188D\"),\n    ALL_INCLUSIVE_BOX_OUTLINE(\"mdi2a-all-inclusive-box-outline\", \"F188E\"),\n    ALLERGY(\"mdi2a-allergy\", \"F1258\"),\n    ALPHA(\"mdi2a-alpha\", \"F002B\"),\n    ALPHA_A(\"mdi2a-alpha-a\", \"F0AEE\"),\n    ALPHA_A_BOX(\"mdi2a-alpha-a-box\", \"F0B08\"),\n    ALPHA_A_BOX_OUTLINE(\"mdi2a-alpha-a-box-outline\", \"F0BEB\"),\n    ALPHA_A_CIRCLE(\"mdi2a-alpha-a-circle\", \"F0BEC\"),\n    ALPHA_A_CIRCLE_OUTLINE(\"mdi2a-alpha-a-circle-outline\", \"F0BED\"),\n    ALPHA_B(\"mdi2a-alpha-b\", \"F0AEF\"),\n    ALPHA_B_BOX(\"mdi2a-alpha-b-box\", \"F0B09\"),\n    ALPHA_B_BOX_OUTLINE(\"mdi2a-alpha-b-box-outline\", \"F0BEE\"),\n    ALPHA_B_CIRCLE(\"mdi2a-alpha-b-circle\", \"F0BEF\"),\n    ALPHA_B_CIRCLE_OUTLINE(\"mdi2a-alpha-b-circle-outline\", \"F0BF0\"),\n    ALPHA_C(\"mdi2a-alpha-c\", \"F0AF0\"),\n    ALPHA_C_BOX(\"mdi2a-alpha-c-box\", \"F0B0A\"),\n    ALPHA_C_BOX_OUTLINE(\"mdi2a-alpha-c-box-outline\", \"F0BF1\"),\n    ALPHA_C_CIRCLE(\"mdi2a-alpha-c-circle\", \"F0BF2\"),\n    ALPHA_C_CIRCLE_OUTLINE(\"mdi2a-alpha-c-circle-outline\", \"F0BF3\"),\n    ALPHA_D(\"mdi2a-alpha-d\", \"F0AF1\"),\n    ALPHA_D_BOX(\"mdi2a-alpha-d-box\", \"F0B0B\"),\n    ALPHA_D_BOX_OUTLINE(\"mdi2a-alpha-d-box-outline\", \"F0BF4\"),\n    ALPHA_D_CIRCLE(\"mdi2a-alpha-d-circle\", \"F0BF5\"),\n    ALPHA_D_CIRCLE_OUTLINE(\"mdi2a-alpha-d-circle-outline\", \"F0BF6\"),\n    ALPHA_E(\"mdi2a-alpha-e\", \"F0AF2\"),\n    ALPHA_E_BOX(\"mdi2a-alpha-e-box\", \"F0B0C\"),\n    ALPHA_E_BOX_OUTLINE(\"mdi2a-alpha-e-box-outline\", \"F0BF7\"),\n    ALPHA_E_CIRCLE(\"mdi2a-alpha-e-circle\", \"F0BF8\"),\n    ALPHA_E_CIRCLE_OUTLINE(\"mdi2a-alpha-e-circle-outline\", \"F0BF9\"),\n    ALPHA_F(\"mdi2a-alpha-f\", \"F0AF3\"),\n    ALPHA_F_BOX(\"mdi2a-alpha-f-box\", \"F0B0D\"),\n    ALPHA_F_BOX_OUTLINE(\"mdi2a-alpha-f-box-outline\", \"F0BFA\"),\n    ALPHA_F_CIRCLE(\"mdi2a-alpha-f-circle\", \"F0BFB\"),\n    ALPHA_F_CIRCLE_OUTLINE(\"mdi2a-alpha-f-circle-outline\", \"F0BFC\"),\n    ALPHA_G(\"mdi2a-alpha-g\", \"F0AF4\"),\n    ALPHA_G_BOX(\"mdi2a-alpha-g-box\", \"F0B0E\"),\n    ALPHA_G_BOX_OUTLINE(\"mdi2a-alpha-g-box-outline\", \"F0BFD\"),\n    ALPHA_G_CIRCLE(\"mdi2a-alpha-g-circle\", \"F0BFE\"),\n    ALPHA_G_CIRCLE_OUTLINE(\"mdi2a-alpha-g-circle-outline\", \"F0BFF\"),\n    ALPHA_H(\"mdi2a-alpha-h\", \"F0AF5\"),\n    ALPHA_H_BOX(\"mdi2a-alpha-h-box\", \"F0B0F\"),\n    ALPHA_H_BOX_OUTLINE(\"mdi2a-alpha-h-box-outline\", \"F0C00\"),\n    ALPHA_H_CIRCLE(\"mdi2a-alpha-h-circle\", \"F0C01\"),\n    ALPHA_H_CIRCLE_OUTLINE(\"mdi2a-alpha-h-circle-outline\", \"F0C02\"),\n    ALPHA_I(\"mdi2a-alpha-i\", \"F0AF6\"),\n    ALPHA_I_BOX(\"mdi2a-alpha-i-box\", \"F0B10\"),\n    ALPHA_I_BOX_OUTLINE(\"mdi2a-alpha-i-box-outline\", \"F0C03\"),\n    ALPHA_I_CIRCLE(\"mdi2a-alpha-i-circle\", \"F0C04\"),\n    ALPHA_I_CIRCLE_OUTLINE(\"mdi2a-alpha-i-circle-outline\", \"F0C05\"),\n    ALPHA_J(\"mdi2a-alpha-j\", \"F0AF7\"),\n    ALPHA_J_BOX(\"mdi2a-alpha-j-box\", \"F0B11\"),\n    ALPHA_J_BOX_OUTLINE(\"mdi2a-alpha-j-box-outline\", \"F0C06\"),\n    ALPHA_J_CIRCLE(\"mdi2a-alpha-j-circle\", \"F0C07\"),\n    ALPHA_J_CIRCLE_OUTLINE(\"mdi2a-alpha-j-circle-outline\", \"F0C08\"),\n    ALPHA_K(\"mdi2a-alpha-k\", \"F0AF8\"),\n    ALPHA_K_BOX(\"mdi2a-alpha-k-box\", \"F0B12\"),\n    ALPHA_K_BOX_OUTLINE(\"mdi2a-alpha-k-box-outline\", \"F0C09\"),\n    ALPHA_K_CIRCLE(\"mdi2a-alpha-k-circle\", \"F0C0A\"),\n    ALPHA_K_CIRCLE_OUTLINE(\"mdi2a-alpha-k-circle-outline\", \"F0C0B\"),\n    ALPHA_L(\"mdi2a-alpha-l\", \"F0AF9\"),\n    ALPHA_L_BOX(\"mdi2a-alpha-l-box\", \"F0B13\"),\n    ALPHA_L_BOX_OUTLINE(\"mdi2a-alpha-l-box-outline\", \"F0C0C\"),\n    ALPHA_L_CIRCLE(\"mdi2a-alpha-l-circle\", \"F0C0D\"),\n    ALPHA_L_CIRCLE_OUTLINE(\"mdi2a-alpha-l-circle-outline\", \"F0C0E\"),\n    ALPHA_M(\"mdi2a-alpha-m\", \"F0AFA\"),\n    ALPHA_M_BOX(\"mdi2a-alpha-m-box\", \"F0B14\"),\n    ALPHA_M_BOX_OUTLINE(\"mdi2a-alpha-m-box-outline\", \"F0C0F\"),\n    ALPHA_M_CIRCLE(\"mdi2a-alpha-m-circle\", \"F0C10\"),\n    ALPHA_M_CIRCLE_OUTLINE(\"mdi2a-alpha-m-circle-outline\", \"F0C11\"),\n    ALPHA_N(\"mdi2a-alpha-n\", \"F0AFB\"),\n    ALPHA_N_BOX(\"mdi2a-alpha-n-box\", \"F0B15\"),\n    ALPHA_N_BOX_OUTLINE(\"mdi2a-alpha-n-box-outline\", \"F0C12\"),\n    ALPHA_N_CIRCLE(\"mdi2a-alpha-n-circle\", \"F0C13\"),\n    ALPHA_N_CIRCLE_OUTLINE(\"mdi2a-alpha-n-circle-outline\", \"F0C14\"),\n    ALPHA_O(\"mdi2a-alpha-o\", \"F0AFC\"),\n    ALPHA_O_BOX(\"mdi2a-alpha-o-box\", \"F0B16\"),\n    ALPHA_O_BOX_OUTLINE(\"mdi2a-alpha-o-box-outline\", \"F0C15\"),\n    ALPHA_O_CIRCLE(\"mdi2a-alpha-o-circle\", \"F0C16\"),\n    ALPHA_O_CIRCLE_OUTLINE(\"mdi2a-alpha-o-circle-outline\", \"F0C17\"),\n    ALPHA_P(\"mdi2a-alpha-p\", \"F0AFD\"),\n    ALPHA_P_BOX(\"mdi2a-alpha-p-box\", \"F0B17\"),\n    ALPHA_P_BOX_OUTLINE(\"mdi2a-alpha-p-box-outline\", \"F0C18\"),\n    ALPHA_P_CIRCLE(\"mdi2a-alpha-p-circle\", \"F0C19\"),\n    ALPHA_P_CIRCLE_OUTLINE(\"mdi2a-alpha-p-circle-outline\", \"F0C1A\"),\n    ALPHA_Q(\"mdi2a-alpha-q\", \"F0AFE\"),\n    ALPHA_Q_BOX(\"mdi2a-alpha-q-box\", \"F0B18\"),\n    ALPHA_Q_BOX_OUTLINE(\"mdi2a-alpha-q-box-outline\", \"F0C1B\"),\n    ALPHA_Q_CIRCLE(\"mdi2a-alpha-q-circle\", \"F0C1C\"),\n    ALPHA_Q_CIRCLE_OUTLINE(\"mdi2a-alpha-q-circle-outline\", \"F0C1D\"),\n    ALPHA_R(\"mdi2a-alpha-r\", \"F0AFF\"),\n    ALPHA_R_BOX(\"mdi2a-alpha-r-box\", \"F0B19\"),\n    ALPHA_R_BOX_OUTLINE(\"mdi2a-alpha-r-box-outline\", \"F0C1E\"),\n    ALPHA_R_CIRCLE(\"mdi2a-alpha-r-circle\", \"F0C1F\"),\n    ALPHA_R_CIRCLE_OUTLINE(\"mdi2a-alpha-r-circle-outline\", \"F0C20\"),\n    ALPHA_S(\"mdi2a-alpha-s\", \"F0B00\"),\n    ALPHA_S_BOX(\"mdi2a-alpha-s-box\", \"F0B1A\"),\n    ALPHA_S_BOX_OUTLINE(\"mdi2a-alpha-s-box-outline\", \"F0C21\"),\n    ALPHA_S_CIRCLE(\"mdi2a-alpha-s-circle\", \"F0C22\"),\n    ALPHA_S_CIRCLE_OUTLINE(\"mdi2a-alpha-s-circle-outline\", \"F0C23\"),\n    ALPHA_T(\"mdi2a-alpha-t\", \"F0B01\"),\n    ALPHA_T_BOX(\"mdi2a-alpha-t-box\", \"F0B1B\"),\n    ALPHA_T_BOX_OUTLINE(\"mdi2a-alpha-t-box-outline\", \"F0C24\"),\n    ALPHA_T_CIRCLE(\"mdi2a-alpha-t-circle\", \"F0C25\"),\n    ALPHA_T_CIRCLE_OUTLINE(\"mdi2a-alpha-t-circle-outline\", \"F0C26\"),\n    ALPHA_U(\"mdi2a-alpha-u\", \"F0B02\"),\n    ALPHA_U_BOX(\"mdi2a-alpha-u-box\", \"F0B1C\"),\n    ALPHA_U_BOX_OUTLINE(\"mdi2a-alpha-u-box-outline\", \"F0C27\"),\n    ALPHA_U_CIRCLE(\"mdi2a-alpha-u-circle\", \"F0C28\"),\n    ALPHA_U_CIRCLE_OUTLINE(\"mdi2a-alpha-u-circle-outline\", \"F0C29\"),\n    ALPHA_V(\"mdi2a-alpha-v\", \"F0B03\"),\n    ALPHA_V_BOX(\"mdi2a-alpha-v-box\", \"F0B1D\"),\n    ALPHA_V_BOX_OUTLINE(\"mdi2a-alpha-v-box-outline\", \"F0C2A\"),\n    ALPHA_V_CIRCLE(\"mdi2a-alpha-v-circle\", \"F0C2B\"),\n    ALPHA_V_CIRCLE_OUTLINE(\"mdi2a-alpha-v-circle-outline\", \"F0C2C\"),\n    ALPHA_W(\"mdi2a-alpha-w\", \"F0B04\"),\n    ALPHA_W_BOX(\"mdi2a-alpha-w-box\", \"F0B1E\"),\n    ALPHA_W_BOX_OUTLINE(\"mdi2a-alpha-w-box-outline\", \"F0C2D\"),\n    ALPHA_W_CIRCLE(\"mdi2a-alpha-w-circle\", \"F0C2E\"),\n    ALPHA_W_CIRCLE_OUTLINE(\"mdi2a-alpha-w-circle-outline\", \"F0C2F\"),\n    ALPHA_X(\"mdi2a-alpha-x\", \"F0B05\"),\n    ALPHA_X_BOX(\"mdi2a-alpha-x-box\", \"F0B1F\"),\n    ALPHA_X_BOX_OUTLINE(\"mdi2a-alpha-x-box-outline\", \"F0C30\"),\n    ALPHA_X_CIRCLE(\"mdi2a-alpha-x-circle\", \"F0C31\"),\n    ALPHA_X_CIRCLE_OUTLINE(\"mdi2a-alpha-x-circle-outline\", \"F0C32\"),\n    ALPHA_Y(\"mdi2a-alpha-y\", \"F0B06\"),\n    ALPHA_Y_BOX(\"mdi2a-alpha-y-box\", \"F0B20\"),\n    ALPHA_Y_BOX_OUTLINE(\"mdi2a-alpha-y-box-outline\", \"F0C33\"),\n    ALPHA_Y_CIRCLE(\"mdi2a-alpha-y-circle\", \"F0C34\"),\n    ALPHA_Y_CIRCLE_OUTLINE(\"mdi2a-alpha-y-circle-outline\", \"F0C35\"),\n    ALPHA_Z(\"mdi2a-alpha-z\", \"F0B07\"),\n    ALPHA_Z_BOX(\"mdi2a-alpha-z-box\", \"F0B21\"),\n    ALPHA_Z_BOX_OUTLINE(\"mdi2a-alpha-z-box-outline\", \"F0C36\"),\n    ALPHA_Z_CIRCLE(\"mdi2a-alpha-z-circle\", \"F0C37\"),\n    ALPHA_Z_CIRCLE_OUTLINE(\"mdi2a-alpha-z-circle-outline\", \"F0C38\"),\n    ALPHABET_AUREBESH(\"mdi2a-alphabet-aurebesh\", \"F132C\"),\n    ALPHABET_CYRILLIC(\"mdi2a-alphabet-cyrillic\", \"F132D\"),\n    ALPHABET_GREEK(\"mdi2a-alphabet-greek\", \"F132E\"),\n    ALPHABET_LATIN(\"mdi2a-alphabet-latin\", \"F132F\"),\n    ALPHABET_PIQAD(\"mdi2a-alphabet-piqad\", \"F1330\"),\n    ALPHABET_TENGWAR(\"mdi2a-alphabet-tengwar\", \"F1337\"),\n    ALPHABETICAL(\"mdi2a-alphabetical\", \"F002C\"),\n    ALPHABETICAL_OFF(\"mdi2a-alphabetical-off\", \"F100C\"),\n    ALPHABETICAL_VARIANT(\"mdi2a-alphabetical-variant\", \"F100D\"),\n    ALPHABETICAL_VARIANT_OFF(\"mdi2a-alphabetical-variant-off\", \"F100E\"),\n    ALTIMETER(\"mdi2a-altimeter\", \"F05D7\"),\n    AMBULANCE(\"mdi2a-ambulance\", \"F002F\"),\n    AMMUNITION(\"mdi2a-ammunition\", \"F0CE8\"),\n    AMPERSAND(\"mdi2a-ampersand\", \"F0A8D\"),\n    AMPLIFIER(\"mdi2a-amplifier\", \"F0030\"),\n    AMPLIFIER_OFF(\"mdi2a-amplifier-off\", \"F11B5\"),\n    ANCHOR(\"mdi2a-anchor\", \"F0031\"),\n    ANDROID(\"mdi2a-android\", \"F0032\"),\n    ANDROID_STUDIO(\"mdi2a-android-studio\", \"F0034\"),\n    ANGLE_ACUTE(\"mdi2a-angle-acute\", \"F0937\"),\n    ANGLE_OBTUSE(\"mdi2a-angle-obtuse\", \"F0938\"),\n    ANGLE_RIGHT(\"mdi2a-angle-right\", \"F0939\"),\n    ANGULAR(\"mdi2a-angular\", \"F06B2\"),\n    ANGULARJS(\"mdi2a-angularjs\", \"F06BF\"),\n    ANIMATION(\"mdi2a-animation\", \"F05D8\"),\n    ANIMATION_OUTLINE(\"mdi2a-animation-outline\", \"F0A8F\"),\n    ANIMATION_PLAY(\"mdi2a-animation-play\", \"F093A\"),\n    ANIMATION_PLAY_OUTLINE(\"mdi2a-animation-play-outline\", \"F0A90\"),\n    ANSIBLE(\"mdi2a-ansible\", \"F109A\"),\n    ANTENNA(\"mdi2a-antenna\", \"F1119\"),\n    ANVIL(\"mdi2a-anvil\", \"F089B\"),\n    APACHE_KAFKA(\"mdi2a-apache-kafka\", \"F100F\"),\n    API(\"mdi2a-api\", \"F109B\"),\n    API_OFF(\"mdi2a-api-off\", \"F1257\"),\n    APPLE(\"mdi2a-apple\", \"F0035\"),\n    APPLE_FINDER(\"mdi2a-apple-finder\", \"F0036\"),\n    APPLE_ICLOUD(\"mdi2a-apple-icloud\", \"F0038\"),\n    APPLE_IOS(\"mdi2a-apple-ios\", \"F0037\"),\n    APPLE_KEYBOARD_CAPS(\"mdi2a-apple-keyboard-caps\", \"F0632\"),\n    APPLE_KEYBOARD_COMMAND(\"mdi2a-apple-keyboard-command\", \"F0633\"),\n    APPLE_KEYBOARD_CONTROL(\"mdi2a-apple-keyboard-control\", \"F0634\"),\n    APPLE_KEYBOARD_OPTION(\"mdi2a-apple-keyboard-option\", \"F0635\"),\n    APPLE_KEYBOARD_SHIFT(\"mdi2a-apple-keyboard-shift\", \"F0636\"),\n    APPLE_SAFARI(\"mdi2a-apple-safari\", \"F0039\"),\n    APPLICATION(\"mdi2a-application\", \"F08C6\"),\n    APPLICATION_ARRAY(\"mdi2a-application-array\", \"F10F5\"),\n    APPLICATION_ARRAY_OUTLINE(\"mdi2a-application-array-outline\", \"F10F6\"),\n    APPLICATION_BRACES(\"mdi2a-application-braces\", \"F10F7\"),\n    APPLICATION_BRACES_OUTLINE(\"mdi2a-application-braces-outline\", \"F10F8\"),\n    APPLICATION_BRACKETS(\"mdi2a-application-brackets\", \"F0C8B\"),\n    APPLICATION_BRACKETS_OUTLINE(\"mdi2a-application-brackets-outline\", \"F0C8C\"),\n    APPLICATION_COG(\"mdi2a-application-cog\", \"F0675\"),\n    APPLICATION_COG_OUTLINE(\"mdi2a-application-cog-outline\", \"F1577\"),\n    APPLICATION_EDIT(\"mdi2a-application-edit\", \"F00AE\"),\n    APPLICATION_EDIT_OUTLINE(\"mdi2a-application-edit-outline\", \"F0619\"),\n    APPLICATION_EXPORT(\"mdi2a-application-export\", \"F0DAD\"),\n    APPLICATION_IMPORT(\"mdi2a-application-import\", \"F0DAE\"),\n    APPLICATION_OUTLINE(\"mdi2a-application-outline\", \"F0614\"),\n    APPLICATION_PARENTHESES(\"mdi2a-application-parentheses\", \"F10F9\"),\n    APPLICATION_PARENTHESES_OUTLINE(\"mdi2a-application-parentheses-outline\", \"F10FA\"),\n    APPLICATION_SETTINGS(\"mdi2a-application-settings\", \"F0B60\"),\n    APPLICATION_SETTINGS_OUTLINE(\"mdi2a-application-settings-outline\", \"F1555\"),\n    APPLICATION_VARIABLE(\"mdi2a-application-variable\", \"F10FB\"),\n    APPLICATION_VARIABLE_OUTLINE(\"mdi2a-application-variable-outline\", \"F10FC\"),\n    APPROXIMATELY_EQUAL(\"mdi2a-approximately-equal\", \"F0F9E\"),\n    APPROXIMATELY_EQUAL_BOX(\"mdi2a-approximately-equal-box\", \"F0F9F\"),\n    APPS(\"mdi2a-apps\", \"F003B\"),\n    APPS_BOX(\"mdi2a-apps-box\", \"F0D46\"),\n    ARCH(\"mdi2a-arch\", \"F08C7\"),\n    ARCHIVE(\"mdi2a-archive\", \"F003C\"),\n    ARCHIVE_ALERT(\"mdi2a-archive-alert\", \"F14FD\"),\n    ARCHIVE_ALERT_OUTLINE(\"mdi2a-archive-alert-outline\", \"F14FE\"),\n    ARCHIVE_ARROW_DOWN(\"mdi2a-archive-arrow-down\", \"F1259\"),\n    ARCHIVE_ARROW_DOWN_OUTLINE(\"mdi2a-archive-arrow-down-outline\", \"F125A\"),\n    ARCHIVE_ARROW_UP(\"mdi2a-archive-arrow-up\", \"F125B\"),\n    ARCHIVE_ARROW_UP_OUTLINE(\"mdi2a-archive-arrow-up-outline\", \"F125C\"),\n    ARCHIVE_CANCEL(\"mdi2a-archive-cancel\", \"F174B\"),\n    ARCHIVE_CANCEL_OUTLINE(\"mdi2a-archive-cancel-outline\", \"F174C\"),\n    ARCHIVE_CHECK(\"mdi2a-archive-check\", \"F174D\"),\n    ARCHIVE_CHECK_OUTLINE(\"mdi2a-archive-check-outline\", \"F174E\"),\n    ARCHIVE_CLOCK(\"mdi2a-archive-clock\", \"F174F\"),\n    ARCHIVE_CLOCK_OUTLINE(\"mdi2a-archive-clock-outline\", \"F1750\"),\n    ARCHIVE_COG(\"mdi2a-archive-cog\", \"F1751\"),\n    ARCHIVE_COG_OUTLINE(\"mdi2a-archive-cog-outline\", \"F1752\"),\n    ARCHIVE_EDIT(\"mdi2a-archive-edit\", \"F1753\"),\n    ARCHIVE_EDIT_OUTLINE(\"mdi2a-archive-edit-outline\", \"F1754\"),\n    ARCHIVE_EYE(\"mdi2a-archive-eye\", \"F1755\"),\n    ARCHIVE_EYE_OUTLINE(\"mdi2a-archive-eye-outline\", \"F1756\"),\n    ARCHIVE_LOCK(\"mdi2a-archive-lock\", \"F1757\"),\n    ARCHIVE_LOCK_OPEN(\"mdi2a-archive-lock-open\", \"F1758\"),\n    ARCHIVE_LOCK_OPEN_OUTLINE(\"mdi2a-archive-lock-open-outline\", \"F1759\"),\n    ARCHIVE_LOCK_OUTLINE(\"mdi2a-archive-lock-outline\", \"F175A\"),\n    ARCHIVE_MARKER(\"mdi2a-archive-marker\", \"F175B\"),\n    ARCHIVE_MARKER_OUTLINE(\"mdi2a-archive-marker-outline\", \"F175C\"),\n    ARCHIVE_MINUS(\"mdi2a-archive-minus\", \"F175D\"),\n    ARCHIVE_MINUS_OUTLINE(\"mdi2a-archive-minus-outline\", \"F175E\"),\n    ARCHIVE_MUSIC(\"mdi2a-archive-music\", \"F175F\"),\n    ARCHIVE_MUSIC_OUTLINE(\"mdi2a-archive-music-outline\", \"F1760\"),\n    ARCHIVE_OFF(\"mdi2a-archive-off\", \"F1761\"),\n    ARCHIVE_OFF_OUTLINE(\"mdi2a-archive-off-outline\", \"F1762\"),\n    ARCHIVE_OUTLINE(\"mdi2a-archive-outline\", \"F120E\"),\n    ARCHIVE_PLUS(\"mdi2a-archive-plus\", \"F1763\"),\n    ARCHIVE_PLUS_OUTLINE(\"mdi2a-archive-plus-outline\", \"F1764\"),\n    ARCHIVE_REFRESH(\"mdi2a-archive-refresh\", \"F1765\"),\n    ARCHIVE_REFRESH_OUTLINE(\"mdi2a-archive-refresh-outline\", \"F1766\"),\n    ARCHIVE_REMOVE(\"mdi2a-archive-remove\", \"F1767\"),\n    ARCHIVE_REMOVE_OUTLINE(\"mdi2a-archive-remove-outline\", \"F1768\"),\n    ARCHIVE_SEARCH(\"mdi2a-archive-search\", \"F1769\"),\n    ARCHIVE_SEARCH_OUTLINE(\"mdi2a-archive-search-outline\", \"F176A\"),\n    ARCHIVE_SETTINGS(\"mdi2a-archive-settings\", \"F176B\"),\n    ARCHIVE_SETTINGS_OUTLINE(\"mdi2a-archive-settings-outline\", \"F176C\"),\n    ARCHIVE_STAR(\"mdi2a-archive-star\", \"F176D\"),\n    ARCHIVE_STAR_OUTLINE(\"mdi2a-archive-star-outline\", \"F176E\"),\n    ARCHIVE_SYNC(\"mdi2a-archive-sync\", \"F176F\"),\n    ARCHIVE_SYNC_OUTLINE(\"mdi2a-archive-sync-outline\", \"F1770\"),\n    ARM_FLEX(\"mdi2a-arm-flex\", \"F0FD7\"),\n    ARM_FLEX_OUTLINE(\"mdi2a-arm-flex-outline\", \"F0FD6\"),\n    ARRANGE_BRING_FORWARD(\"mdi2a-arrange-bring-forward\", \"F003D\"),\n    ARRANGE_BRING_TO_FRONT(\"mdi2a-arrange-bring-to-front\", \"F003E\"),\n    ARRANGE_SEND_BACKWARD(\"mdi2a-arrange-send-backward\", \"F003F\"),\n    ARRANGE_SEND_TO_BACK(\"mdi2a-arrange-send-to-back\", \"F0040\"),\n    ARROW_ALL(\"mdi2a-arrow-all\", \"F0041\"),\n    ARROW_BOTTOM_LEFT(\"mdi2a-arrow-bottom-left\", \"F0042\"),\n    ARROW_BOTTOM_LEFT_BOLD_BOX(\"mdi2a-arrow-bottom-left-bold-box\", \"F1964\"),\n    ARROW_BOTTOM_LEFT_BOLD_BOX_OUTLINE(\"mdi2a-arrow-bottom-left-bold-box-outline\", \"F1965\"),\n    ARROW_BOTTOM_LEFT_BOLD_OUTLINE(\"mdi2a-arrow-bottom-left-bold-outline\", \"F09B7\"),\n    ARROW_BOTTOM_LEFT_THICK(\"mdi2a-arrow-bottom-left-thick\", \"F09B8\"),\n    ARROW_BOTTOM_LEFT_THIN(\"mdi2a-arrow-bottom-left-thin\", \"F19B6\"),\n    ARROW_BOTTOM_LEFT_THIN_CIRCLE_OUTLINE(\"mdi2a-arrow-bottom-left-thin-circle-outline\", \"F1596\"),\n    ARROW_BOTTOM_RIGHT(\"mdi2a-arrow-bottom-right\", \"F0043\"),\n    ARROW_BOTTOM_RIGHT_BOLD_BOX(\"mdi2a-arrow-bottom-right-bold-box\", \"F1966\"),\n    ARROW_BOTTOM_RIGHT_BOLD_BOX_OUTLINE(\"mdi2a-arrow-bottom-right-bold-box-outline\", \"F1967\"),\n    ARROW_BOTTOM_RIGHT_BOLD_OUTLINE(\"mdi2a-arrow-bottom-right-bold-outline\", \"F09B9\"),\n    ARROW_BOTTOM_RIGHT_THICK(\"mdi2a-arrow-bottom-right-thick\", \"F09BA\"),\n    ARROW_BOTTOM_RIGHT_THIN(\"mdi2a-arrow-bottom-right-thin\", \"F19B7\"),\n    ARROW_BOTTOM_RIGHT_THIN_CIRCLE_OUTLINE(\"mdi2a-arrow-bottom-right-thin-circle-outline\", \"F1595\"),\n    ARROW_COLLAPSE(\"mdi2a-arrow-collapse\", \"F0615\"),\n    ARROW_COLLAPSE_ALL(\"mdi2a-arrow-collapse-all\", \"F0044\"),\n    ARROW_COLLAPSE_DOWN(\"mdi2a-arrow-collapse-down\", \"F0792\"),\n    ARROW_COLLAPSE_HORIZONTAL(\"mdi2a-arrow-collapse-horizontal\", \"F084C\"),\n    ARROW_COLLAPSE_LEFT(\"mdi2a-arrow-collapse-left\", \"F0793\"),\n    ARROW_COLLAPSE_RIGHT(\"mdi2a-arrow-collapse-right\", \"F0794\"),\n    ARROW_COLLAPSE_UP(\"mdi2a-arrow-collapse-up\", \"F0795\"),\n    ARROW_COLLAPSE_VERTICAL(\"mdi2a-arrow-collapse-vertical\", \"F084D\"),\n    ARROW_DECISION(\"mdi2a-arrow-decision\", \"F09BB\"),\n    ARROW_DECISION_AUTO(\"mdi2a-arrow-decision-auto\", \"F09BC\"),\n    ARROW_DECISION_AUTO_OUTLINE(\"mdi2a-arrow-decision-auto-outline\", \"F09BD\"),\n    ARROW_DECISION_OUTLINE(\"mdi2a-arrow-decision-outline\", \"F09BE\"),\n    ARROW_DOWN(\"mdi2a-arrow-down\", \"F0045\"),\n    ARROW_DOWN_BOLD(\"mdi2a-arrow-down-bold\", \"F072E\"),\n    ARROW_DOWN_BOLD_BOX(\"mdi2a-arrow-down-bold-box\", \"F072F\"),\n    ARROW_DOWN_BOLD_BOX_OUTLINE(\"mdi2a-arrow-down-bold-box-outline\", \"F0730\"),\n    ARROW_DOWN_BOLD_CIRCLE(\"mdi2a-arrow-down-bold-circle\", \"F0047\"),\n    ARROW_DOWN_BOLD_CIRCLE_OUTLINE(\"mdi2a-arrow-down-bold-circle-outline\", \"F0048\"),\n    ARROW_DOWN_BOLD_HEXAGON_OUTLINE(\"mdi2a-arrow-down-bold-hexagon-outline\", \"F0049\"),\n    ARROW_DOWN_BOLD_OUTLINE(\"mdi2a-arrow-down-bold-outline\", \"F09BF\"),\n    ARROW_DOWN_BOX(\"mdi2a-arrow-down-box\", \"F06C0\"),\n    ARROW_DOWN_CIRCLE(\"mdi2a-arrow-down-circle\", \"F0CDB\"),\n    ARROW_DOWN_CIRCLE_OUTLINE(\"mdi2a-arrow-down-circle-outline\", \"F0CDC\"),\n    ARROW_DOWN_DROP_CIRCLE(\"mdi2a-arrow-down-drop-circle\", \"F004A\"),\n    ARROW_DOWN_DROP_CIRCLE_OUTLINE(\"mdi2a-arrow-down-drop-circle-outline\", \"F004B\"),\n    ARROW_DOWN_LEFT(\"mdi2a-arrow-down-left\", \"F17A1\"),\n    ARROW_DOWN_LEFT_BOLD(\"mdi2a-arrow-down-left-bold\", \"F17A2\"),\n    ARROW_DOWN_RIGHT(\"mdi2a-arrow-down-right\", \"F17A3\"),\n    ARROW_DOWN_RIGHT_BOLD(\"mdi2a-arrow-down-right-bold\", \"F17A4\"),\n    ARROW_DOWN_THICK(\"mdi2a-arrow-down-thick\", \"F0046\"),\n    ARROW_DOWN_THIN(\"mdi2a-arrow-down-thin\", \"F19B3\"),\n    ARROW_DOWN_THIN_CIRCLE_OUTLINE(\"mdi2a-arrow-down-thin-circle-outline\", \"F1599\"),\n    ARROW_EXPAND(\"mdi2a-arrow-expand\", \"F0616\"),\n    ARROW_EXPAND_ALL(\"mdi2a-arrow-expand-all\", \"F004C\"),\n    ARROW_EXPAND_DOWN(\"mdi2a-arrow-expand-down\", \"F0796\"),\n    ARROW_EXPAND_HORIZONTAL(\"mdi2a-arrow-expand-horizontal\", \"F084E\"),\n    ARROW_EXPAND_LEFT(\"mdi2a-arrow-expand-left\", \"F0797\"),\n    ARROW_EXPAND_RIGHT(\"mdi2a-arrow-expand-right\", \"F0798\"),\n    ARROW_EXPAND_UP(\"mdi2a-arrow-expand-up\", \"F0799\"),\n    ARROW_EXPAND_VERTICAL(\"mdi2a-arrow-expand-vertical\", \"F084F\"),\n    ARROW_HORIZONTAL_LOCK(\"mdi2a-arrow-horizontal-lock\", \"F115B\"),\n    ARROW_LEFT(\"mdi2a-arrow-left\", \"F004D\"),\n    ARROW_LEFT_BOLD(\"mdi2a-arrow-left-bold\", \"F0731\"),\n    ARROW_LEFT_BOLD_BOX(\"mdi2a-arrow-left-bold-box\", \"F0732\"),\n    ARROW_LEFT_BOLD_BOX_OUTLINE(\"mdi2a-arrow-left-bold-box-outline\", \"F0733\"),\n    ARROW_LEFT_BOLD_CIRCLE(\"mdi2a-arrow-left-bold-circle\", \"F004F\"),\n    ARROW_LEFT_BOLD_CIRCLE_OUTLINE(\"mdi2a-arrow-left-bold-circle-outline\", \"F0050\"),\n    ARROW_LEFT_BOLD_HEXAGON_OUTLINE(\"mdi2a-arrow-left-bold-hexagon-outline\", \"F0051\"),\n    ARROW_LEFT_BOLD_OUTLINE(\"mdi2a-arrow-left-bold-outline\", \"F09C0\"),\n    ARROW_LEFT_BOTTOM(\"mdi2a-arrow-left-bottom\", \"F17A5\"),\n    ARROW_LEFT_BOTTOM_BOLD(\"mdi2a-arrow-left-bottom-bold\", \"F17A6\"),\n    ARROW_LEFT_BOX(\"mdi2a-arrow-left-box\", \"F06C1\"),\n    ARROW_LEFT_CIRCLE(\"mdi2a-arrow-left-circle\", \"F0CDD\"),\n    ARROW_LEFT_CIRCLE_OUTLINE(\"mdi2a-arrow-left-circle-outline\", \"F0CDE\"),\n    ARROW_LEFT_DROP_CIRCLE(\"mdi2a-arrow-left-drop-circle\", \"F0052\"),\n    ARROW_LEFT_DROP_CIRCLE_OUTLINE(\"mdi2a-arrow-left-drop-circle-outline\", \"F0053\"),\n    ARROW_LEFT_RIGHT(\"mdi2a-arrow-left-right\", \"F0E73\"),\n    ARROW_LEFT_RIGHT_BOLD(\"mdi2a-arrow-left-right-bold\", \"F0E74\"),\n    ARROW_LEFT_RIGHT_BOLD_OUTLINE(\"mdi2a-arrow-left-right-bold-outline\", \"F09C1\"),\n    ARROW_LEFT_THICK(\"mdi2a-arrow-left-thick\", \"F004E\"),\n    ARROW_LEFT_THIN(\"mdi2a-arrow-left-thin\", \"F19B1\"),\n    ARROW_LEFT_THIN_CIRCLE_OUTLINE(\"mdi2a-arrow-left-thin-circle-outline\", \"F159A\"),\n    ARROW_LEFT_TOP(\"mdi2a-arrow-left-top\", \"F17A7\"),\n    ARROW_LEFT_TOP_BOLD(\"mdi2a-arrow-left-top-bold\", \"F17A8\"),\n    ARROW_OSCILLATING(\"mdi2a-arrow-oscillating\", \"F1C91\"),\n    ARROW_OSCILLATING_OFF(\"mdi2a-arrow-oscillating-off\", \"F1C92\"),\n    ARROW_PROJECTILE(\"mdi2a-arrow-projectile\", \"F1840\"),\n    ARROW_PROJECTILE_MULTIPLE(\"mdi2a-arrow-projectile-multiple\", \"F183F\"),\n    ARROW_RIGHT(\"mdi2a-arrow-right\", \"F0054\"),\n    ARROW_RIGHT_BOLD(\"mdi2a-arrow-right-bold\", \"F0734\"),\n    ARROW_RIGHT_BOLD_BOX(\"mdi2a-arrow-right-bold-box\", \"F0735\"),\n    ARROW_RIGHT_BOLD_BOX_OUTLINE(\"mdi2a-arrow-right-bold-box-outline\", \"F0736\"),\n    ARROW_RIGHT_BOLD_CIRCLE(\"mdi2a-arrow-right-bold-circle\", \"F0056\"),\n    ARROW_RIGHT_BOLD_CIRCLE_OUTLINE(\"mdi2a-arrow-right-bold-circle-outline\", \"F0057\"),\n    ARROW_RIGHT_BOLD_HEXAGON_OUTLINE(\"mdi2a-arrow-right-bold-hexagon-outline\", \"F0058\"),\n    ARROW_RIGHT_BOLD_OUTLINE(\"mdi2a-arrow-right-bold-outline\", \"F09C2\"),\n    ARROW_RIGHT_BOTTOM(\"mdi2a-arrow-right-bottom\", \"F17A9\"),\n    ARROW_RIGHT_BOTTOM_BOLD(\"mdi2a-arrow-right-bottom-bold\", \"F17AA\"),\n    ARROW_RIGHT_BOX(\"mdi2a-arrow-right-box\", \"F06C2\"),\n    ARROW_RIGHT_CIRCLE(\"mdi2a-arrow-right-circle\", \"F0CDF\"),\n    ARROW_RIGHT_CIRCLE_OUTLINE(\"mdi2a-arrow-right-circle-outline\", \"F0CE0\"),\n    ARROW_RIGHT_DROP_CIRCLE(\"mdi2a-arrow-right-drop-circle\", \"F0059\"),\n    ARROW_RIGHT_DROP_CIRCLE_OUTLINE(\"mdi2a-arrow-right-drop-circle-outline\", \"F005A\"),\n    ARROW_RIGHT_THICK(\"mdi2a-arrow-right-thick\", \"F0055\"),\n    ARROW_RIGHT_THIN(\"mdi2a-arrow-right-thin\", \"F19B0\"),\n    ARROW_RIGHT_THIN_CIRCLE_OUTLINE(\"mdi2a-arrow-right-thin-circle-outline\", \"F1598\"),\n    ARROW_RIGHT_TOP(\"mdi2a-arrow-right-top\", \"F17AB\"),\n    ARROW_RIGHT_TOP_BOLD(\"mdi2a-arrow-right-top-bold\", \"F17AC\"),\n    ARROW_SPLIT_HORIZONTAL(\"mdi2a-arrow-split-horizontal\", \"F093B\"),\n    ARROW_SPLIT_VERTICAL(\"mdi2a-arrow-split-vertical\", \"F093C\"),\n    ARROW_TOP_LEFT(\"mdi2a-arrow-top-left\", \"F005B\"),\n    ARROW_TOP_LEFT_BOLD_BOX(\"mdi2a-arrow-top-left-bold-box\", \"F1968\"),\n    ARROW_TOP_LEFT_BOLD_BOX_OUTLINE(\"mdi2a-arrow-top-left-bold-box-outline\", \"F1969\"),\n    ARROW_TOP_LEFT_BOLD_OUTLINE(\"mdi2a-arrow-top-left-bold-outline\", \"F09C3\"),\n    ARROW_TOP_LEFT_BOTTOM_RIGHT(\"mdi2a-arrow-top-left-bottom-right\", \"F0E75\"),\n    ARROW_TOP_LEFT_BOTTOM_RIGHT_BOLD(\"mdi2a-arrow-top-left-bottom-right-bold\", \"F0E76\"),\n    ARROW_TOP_LEFT_THICK(\"mdi2a-arrow-top-left-thick\", \"F09C4\"),\n    ARROW_TOP_LEFT_THIN(\"mdi2a-arrow-top-left-thin\", \"F19B5\"),\n    ARROW_TOP_LEFT_THIN_CIRCLE_OUTLINE(\"mdi2a-arrow-top-left-thin-circle-outline\", \"F1593\"),\n    ARROW_TOP_RIGHT(\"mdi2a-arrow-top-right\", \"F005C\"),\n    ARROW_TOP_RIGHT_BOLD_BOX(\"mdi2a-arrow-top-right-bold-box\", \"F196A\"),\n    ARROW_TOP_RIGHT_BOLD_BOX_OUTLINE(\"mdi2a-arrow-top-right-bold-box-outline\", \"F196B\"),\n    ARROW_TOP_RIGHT_BOLD_OUTLINE(\"mdi2a-arrow-top-right-bold-outline\", \"F09C5\"),\n    ARROW_TOP_RIGHT_BOTTOM_LEFT(\"mdi2a-arrow-top-right-bottom-left\", \"F0E77\"),\n    ARROW_TOP_RIGHT_BOTTOM_LEFT_BOLD(\"mdi2a-arrow-top-right-bottom-left-bold\", \"F0E78\"),\n    ARROW_TOP_RIGHT_THICK(\"mdi2a-arrow-top-right-thick\", \"F09C6\"),\n    ARROW_TOP_RIGHT_THIN(\"mdi2a-arrow-top-right-thin\", \"F19B4\"),\n    ARROW_TOP_RIGHT_THIN_CIRCLE_OUTLINE(\"mdi2a-arrow-top-right-thin-circle-outline\", \"F1594\"),\n    ARROW_U_DOWN_LEFT(\"mdi2a-arrow-u-down-left\", \"F17AD\"),\n    ARROW_U_DOWN_LEFT_BOLD(\"mdi2a-arrow-u-down-left-bold\", \"F17AE\"),\n    ARROW_U_DOWN_RIGHT(\"mdi2a-arrow-u-down-right\", \"F17AF\"),\n    ARROW_U_DOWN_RIGHT_BOLD(\"mdi2a-arrow-u-down-right-bold\", \"F17B0\"),\n    ARROW_U_LEFT_BOTTOM(\"mdi2a-arrow-u-left-bottom\", \"F17B1\"),\n    ARROW_U_LEFT_BOTTOM_BOLD(\"mdi2a-arrow-u-left-bottom-bold\", \"F17B2\"),\n    ARROW_U_LEFT_TOP(\"mdi2a-arrow-u-left-top\", \"F17B3\"),\n    ARROW_U_LEFT_TOP_BOLD(\"mdi2a-arrow-u-left-top-bold\", \"F17B4\"),\n    ARROW_U_RIGHT_BOTTOM(\"mdi2a-arrow-u-right-bottom\", \"F17B5\"),\n    ARROW_U_RIGHT_BOTTOM_BOLD(\"mdi2a-arrow-u-right-bottom-bold\", \"F17B6\"),\n    ARROW_U_RIGHT_TOP(\"mdi2a-arrow-u-right-top\", \"F17B7\"),\n    ARROW_U_RIGHT_TOP_BOLD(\"mdi2a-arrow-u-right-top-bold\", \"F17B8\"),\n    ARROW_U_UP_LEFT(\"mdi2a-arrow-u-up-left\", \"F17B9\"),\n    ARROW_U_UP_LEFT_BOLD(\"mdi2a-arrow-u-up-left-bold\", \"F17BA\"),\n    ARROW_U_UP_RIGHT(\"mdi2a-arrow-u-up-right\", \"F17BB\"),\n    ARROW_U_UP_RIGHT_BOLD(\"mdi2a-arrow-u-up-right-bold\", \"F17BC\"),\n    ARROW_UP(\"mdi2a-arrow-up\", \"F005D\"),\n    ARROW_UP_BOLD(\"mdi2a-arrow-up-bold\", \"F0737\"),\n    ARROW_UP_BOLD_BOX(\"mdi2a-arrow-up-bold-box\", \"F0738\"),\n    ARROW_UP_BOLD_BOX_OUTLINE(\"mdi2a-arrow-up-bold-box-outline\", \"F0739\"),\n    ARROW_UP_BOLD_CIRCLE(\"mdi2a-arrow-up-bold-circle\", \"F005F\"),\n    ARROW_UP_BOLD_CIRCLE_OUTLINE(\"mdi2a-arrow-up-bold-circle-outline\", \"F0060\"),\n    ARROW_UP_BOLD_HEXAGON_OUTLINE(\"mdi2a-arrow-up-bold-hexagon-outline\", \"F0061\"),\n    ARROW_UP_BOLD_OUTLINE(\"mdi2a-arrow-up-bold-outline\", \"F09C7\"),\n    ARROW_UP_BOX(\"mdi2a-arrow-up-box\", \"F06C3\"),\n    ARROW_UP_CIRCLE(\"mdi2a-arrow-up-circle\", \"F0CE1\"),\n    ARROW_UP_CIRCLE_OUTLINE(\"mdi2a-arrow-up-circle-outline\", \"F0CE2\"),\n    ARROW_UP_DOWN(\"mdi2a-arrow-up-down\", \"F0E79\"),\n    ARROW_UP_DOWN_BOLD(\"mdi2a-arrow-up-down-bold\", \"F0E7A\"),\n    ARROW_UP_DOWN_BOLD_OUTLINE(\"mdi2a-arrow-up-down-bold-outline\", \"F09C8\"),\n    ARROW_UP_DROP_CIRCLE(\"mdi2a-arrow-up-drop-circle\", \"F0062\"),\n    ARROW_UP_DROP_CIRCLE_OUTLINE(\"mdi2a-arrow-up-drop-circle-outline\", \"F0063\"),\n    ARROW_UP_LEFT(\"mdi2a-arrow-up-left\", \"F17BD\"),\n    ARROW_UP_LEFT_BOLD(\"mdi2a-arrow-up-left-bold\", \"F17BE\"),\n    ARROW_UP_RIGHT(\"mdi2a-arrow-up-right\", \"F17BF\"),\n    ARROW_UP_RIGHT_BOLD(\"mdi2a-arrow-up-right-bold\", \"F17C0\"),\n    ARROW_UP_THICK(\"mdi2a-arrow-up-thick\", \"F005E\"),\n    ARROW_UP_THIN(\"mdi2a-arrow-up-thin\", \"F19B2\"),\n    ARROW_UP_THIN_CIRCLE_OUTLINE(\"mdi2a-arrow-up-thin-circle-outline\", \"F1597\"),\n    ARROW_VERTICAL_LOCK(\"mdi2a-arrow-vertical-lock\", \"F115C\"),\n    ARTBOARD(\"mdi2a-artboard\", \"F1B9A\"),\n    ARTSTATION(\"mdi2a-artstation\", \"F0B5B\"),\n    ASPECT_RATIO(\"mdi2a-aspect-ratio\", \"F0A24\"),\n    ASSISTANT(\"mdi2a-assistant\", \"F0064\"),\n    ASTERISK(\"mdi2a-asterisk\", \"F06C4\"),\n    ASTERISK_CIRCLE_OUTLINE(\"mdi2a-asterisk-circle-outline\", \"F1A27\"),\n    AT(\"mdi2a-at\", \"F0065\"),\n    ATLASSIAN(\"mdi2a-atlassian\", \"F0804\"),\n    ATM(\"mdi2a-atm\", \"F0D47\"),\n    ATOM(\"mdi2a-atom\", \"F0768\"),\n    ATOM_VARIANT(\"mdi2a-atom-variant\", \"F0E7B\"),\n    ATTACHMENT(\"mdi2a-attachment\", \"F0066\"),\n    ATTACHMENT_CHECK(\"mdi2a-attachment-check\", \"F1AC1\"),\n    ATTACHMENT_LOCK(\"mdi2a-attachment-lock\", \"F19C4\"),\n    ATTACHMENT_MINUS(\"mdi2a-attachment-minus\", \"F1AC2\"),\n    ATTACHMENT_OFF(\"mdi2a-attachment-off\", \"F1AC3\"),\n    ATTACHMENT_PLUS(\"mdi2a-attachment-plus\", \"F1AC4\"),\n    ATTACHMENT_REMOVE(\"mdi2a-attachment-remove\", \"F1AC5\"),\n    ATV(\"mdi2a-atv\", \"F1B70\"),\n    AUDIO_INPUT_RCA(\"mdi2a-audio-input-rca\", \"F186B\"),\n    AUDIO_INPUT_STEREO_MINIJACK(\"mdi2a-audio-input-stereo-minijack\", \"F186C\"),\n    AUDIO_INPUT_XLR(\"mdi2a-audio-input-xlr\", \"F186D\"),\n    AUDIO_VIDEO(\"mdi2a-audio-video\", \"F093D\"),\n    AUDIO_VIDEO_OFF(\"mdi2a-audio-video-off\", \"F11B6\"),\n    AUGMENTED_REALITY(\"mdi2a-augmented-reality\", \"F0850\"),\n    AURORA(\"mdi2a-aurora\", \"F1BB9\"),\n    AUTO_DOWNLOAD(\"mdi2a-auto-download\", \"F137E\"),\n    AUTO_FIX(\"mdi2a-auto-fix\", \"F0068\"),\n    AUTO_MODE(\"mdi2a-auto-mode\", \"F1C20\"),\n    AUTO_UPLOAD(\"mdi2a-auto-upload\", \"F0069\"),\n    AUTORENEW(\"mdi2a-autorenew\", \"F006A\"),\n    AUTORENEW_OFF(\"mdi2a-autorenew-off\", \"F19E7\"),\n    AV_TIMER(\"mdi2a-av-timer\", \"F006B\"),\n    AWNING(\"mdi2a-awning\", \"F1B87\"),\n    AWNING_OUTLINE(\"mdi2a-awning-outline\", \"F1B88\"),\n    AWS(\"mdi2a-aws\", \"F0E0F\"),\n    AXE(\"mdi2a-axe\", \"F08C8\"),\n    AXE_BATTLE(\"mdi2a-axe-battle\", \"F1842\"),\n    AXIS(\"mdi2a-axis\", \"F0D48\"),\n    AXIS_ARROW(\"mdi2a-axis-arrow\", \"F0D49\"),\n    AXIS_ARROW_INFO(\"mdi2a-axis-arrow-info\", \"F140E\"),\n    AXIS_ARROW_LOCK(\"mdi2a-axis-arrow-lock\", \"F0D4A\"),\n    AXIS_LOCK(\"mdi2a-axis-lock\", \"F0D4B\"),\n    AXIS_X_ARROW(\"mdi2a-axis-x-arrow\", \"F0D4C\"),\n    AXIS_X_ARROW_LOCK(\"mdi2a-axis-x-arrow-lock\", \"F0D4D\"),\n    AXIS_X_ROTATE_CLOCKWISE(\"mdi2a-axis-x-rotate-clockwise\", \"F0D4E\"),\n    AXIS_X_ROTATE_COUNTERCLOCKWISE(\"mdi2a-axis-x-rotate-counterclockwise\", \"F0D4F\"),\n    AXIS_X_Y_ARROW_LOCK(\"mdi2a-axis-x-y-arrow-lock\", \"F0D50\"),\n    AXIS_Y_ARROW(\"mdi2a-axis-y-arrow\", \"F0D51\"),\n    AXIS_Y_ARROW_LOCK(\"mdi2a-axis-y-arrow-lock\", \"F0D52\"),\n    AXIS_Y_ROTATE_CLOCKWISE(\"mdi2a-axis-y-rotate-clockwise\", \"F0D53\"),\n    AXIS_Y_ROTATE_COUNTERCLOCKWISE(\"mdi2a-axis-y-rotate-counterclockwise\", \"F0D54\"),\n    AXIS_Z_ARROW(\"mdi2a-axis-z-arrow\", \"F0D55\"),\n    AXIS_Z_ARROW_LOCK(\"mdi2a-axis-z-arrow-lock\", \"F0D56\"),\n    AXIS_Z_ROTATE_CLOCKWISE(\"mdi2a-axis-z-rotate-clockwise\", \"F0D57\"),\n    AXIS_Z_ROTATE_COUNTERCLOCKWISE(\"mdi2a-axis-z-rotate-counterclockwise\", \"F0D58\");\n\n    public static MaterialDesignA findByDescription(String description) {\n        for (MaterialDesignA font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignA(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignAIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignAIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2a-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignA.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignAIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class MaterialDesignAIkonProvider implements IkonProvider<MaterialDesignA> {\n    @Override\n    public Class<MaterialDesignA> getIkon() {\n        return MaterialDesignA.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignB.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignB implements Ikon {\n    BABEL(\"mdi2b-babel\", \"F0A25\"),\n    BABY(\"mdi2b-baby\", \"F006C\"),\n    BABY_BOTTLE(\"mdi2b-baby-bottle\", \"F0F39\"),\n    BABY_BOTTLE_OUTLINE(\"mdi2b-baby-bottle-outline\", \"F0F3A\"),\n    BABY_BUGGY(\"mdi2b-baby-buggy\", \"F13E0\"),\n    BABY_BUGGY_OFF(\"mdi2b-baby-buggy-off\", \"F1AF3\"),\n    BABY_CARRIAGE(\"mdi2b-baby-carriage\", \"F068F\"),\n    BABY_CARRIAGE_OFF(\"mdi2b-baby-carriage-off\", \"F0FA0\"),\n    BABY_FACE(\"mdi2b-baby-face\", \"F0E7C\"),\n    BABY_FACE_OUTLINE(\"mdi2b-baby-face-outline\", \"F0E7D\"),\n    BACKBURGER(\"mdi2b-backburger\", \"F006D\"),\n    BACKSPACE(\"mdi2b-backspace\", \"F006E\"),\n    BACKSPACE_OUTLINE(\"mdi2b-backspace-outline\", \"F0B5C\"),\n    BACKSPACE_REVERSE(\"mdi2b-backspace-reverse\", \"F0E7E\"),\n    BACKSPACE_REVERSE_OUTLINE(\"mdi2b-backspace-reverse-outline\", \"F0E7F\"),\n    BACKUP_RESTORE(\"mdi2b-backup-restore\", \"F006F\"),\n    BACTERIA(\"mdi2b-bacteria\", \"F0ED5\"),\n    BACTERIA_OUTLINE(\"mdi2b-bacteria-outline\", \"F0ED6\"),\n    BADGE_ACCOUNT(\"mdi2b-badge-account\", \"F0DA7\"),\n    BADGE_ACCOUNT_ALERT(\"mdi2b-badge-account-alert\", \"F0DA8\"),\n    BADGE_ACCOUNT_ALERT_OUTLINE(\"mdi2b-badge-account-alert-outline\", \"F0DA9\"),\n    BADGE_ACCOUNT_HORIZONTAL(\"mdi2b-badge-account-horizontal\", \"F0E0D\"),\n    BADGE_ACCOUNT_HORIZONTAL_OUTLINE(\"mdi2b-badge-account-horizontal-outline\", \"F0E0E\"),\n    BADGE_ACCOUNT_OUTLINE(\"mdi2b-badge-account-outline\", \"F0DAA\"),\n    BADMINTON(\"mdi2b-badminton\", \"F0851\"),\n    BAG_CARRY_ON(\"mdi2b-bag-carry-on\", \"F0F3B\"),\n    BAG_CARRY_ON_CHECK(\"mdi2b-bag-carry-on-check\", \"F0D65\"),\n    BAG_CARRY_ON_OFF(\"mdi2b-bag-carry-on-off\", \"F0F3C\"),\n    BAG_CHECKED(\"mdi2b-bag-checked\", \"F0F3D\"),\n    BAG_PERSONAL(\"mdi2b-bag-personal\", \"F0E10\"),\n    BAG_PERSONAL_OFF(\"mdi2b-bag-personal-off\", \"F0E11\"),\n    BAG_PERSONAL_OFF_OUTLINE(\"mdi2b-bag-personal-off-outline\", \"F0E12\"),\n    BAG_PERSONAL_OUTLINE(\"mdi2b-bag-personal-outline\", \"F0E13\"),\n    BAG_PERSONAL_PLUS(\"mdi2b-bag-personal-plus\", \"F1CA4\"),\n    BAG_PERSONAL_PLUS_OUTLINE(\"mdi2b-bag-personal-plus-outline\", \"F1CA5\"),\n    BAG_PERSONAL_TAG(\"mdi2b-bag-personal-tag\", \"F1B0C\"),\n    BAG_PERSONAL_TAG_OUTLINE(\"mdi2b-bag-personal-tag-outline\", \"F1B0D\"),\n    BAG_SUITCASE(\"mdi2b-bag-suitcase\", \"F158B\"),\n    BAG_SUITCASE_OFF(\"mdi2b-bag-suitcase-off\", \"F158D\"),\n    BAG_SUITCASE_OFF_OUTLINE(\"mdi2b-bag-suitcase-off-outline\", \"F158E\"),\n    BAG_SUITCASE_OUTLINE(\"mdi2b-bag-suitcase-outline\", \"F158C\"),\n    BAGUETTE(\"mdi2b-baguette\", \"F0F3E\"),\n    BALCONY(\"mdi2b-balcony\", \"F1817\"),\n    BALLOON(\"mdi2b-balloon\", \"F0A26\"),\n    BALLOT(\"mdi2b-ballot\", \"F09C9\"),\n    BALLOT_OUTLINE(\"mdi2b-ballot-outline\", \"F09CA\"),\n    BALLOT_RECOUNT(\"mdi2b-ballot-recount\", \"F0C39\"),\n    BALLOT_RECOUNT_OUTLINE(\"mdi2b-ballot-recount-outline\", \"F0C3A\"),\n    BANDAGE(\"mdi2b-bandage\", \"F0DAF\"),\n    BANK(\"mdi2b-bank\", \"F0070\"),\n    BANK_CHECK(\"mdi2b-bank-check\", \"F1655\"),\n    BANK_CIRCLE(\"mdi2b-bank-circle\", \"F1C03\"),\n    BANK_CIRCLE_OUTLINE(\"mdi2b-bank-circle-outline\", \"F1C04\"),\n    BANK_MINUS(\"mdi2b-bank-minus\", \"F0DB0\"),\n    BANK_OFF(\"mdi2b-bank-off\", \"F1656\"),\n    BANK_OFF_OUTLINE(\"mdi2b-bank-off-outline\", \"F1657\"),\n    BANK_OUTLINE(\"mdi2b-bank-outline\", \"F0E80\"),\n    BANK_PLUS(\"mdi2b-bank-plus\", \"F0DB1\"),\n    BANK_REMOVE(\"mdi2b-bank-remove\", \"F0DB2\"),\n    BANK_TRANSFER(\"mdi2b-bank-transfer\", \"F0A27\"),\n    BANK_TRANSFER_IN(\"mdi2b-bank-transfer-in\", \"F0A28\"),\n    BANK_TRANSFER_OUT(\"mdi2b-bank-transfer-out\", \"F0A29\"),\n    BARCODE(\"mdi2b-barcode\", \"F0071\"),\n    BARCODE_OFF(\"mdi2b-barcode-off\", \"F1236\"),\n    BARCODE_SCAN(\"mdi2b-barcode-scan\", \"F0072\"),\n    BARLEY(\"mdi2b-barley\", \"F0073\"),\n    BARLEY_OFF(\"mdi2b-barley-off\", \"F0B5D\"),\n    BARN(\"mdi2b-barn\", \"F0B5E\"),\n    BARREL(\"mdi2b-barrel\", \"F0074\"),\n    BARREL_OUTLINE(\"mdi2b-barrel-outline\", \"F1A28\"),\n    BASEBALL(\"mdi2b-baseball\", \"F0852\"),\n    BASEBALL_BAT(\"mdi2b-baseball-bat\", \"F0853\"),\n    BASEBALL_DIAMOND(\"mdi2b-baseball-diamond\", \"F15EC\"),\n    BASEBALL_DIAMOND_OUTLINE(\"mdi2b-baseball-diamond-outline\", \"F15ED\"),\n    BASEBALL_OUTLINE(\"mdi2b-baseball-outline\", \"F1C5A\"),\n    BASH(\"mdi2b-bash\", \"F1183\"),\n    BASKET(\"mdi2b-basket\", \"F0076\"),\n    BASKET_CHECK(\"mdi2b-basket-check\", \"F18E5\"),\n    BASKET_CHECK_OUTLINE(\"mdi2b-basket-check-outline\", \"F18E6\"),\n    BASKET_FILL(\"mdi2b-basket-fill\", \"F0077\"),\n    BASKET_MINUS(\"mdi2b-basket-minus\", \"F1523\"),\n    BASKET_MINUS_OUTLINE(\"mdi2b-basket-minus-outline\", \"F1524\"),\n    BASKET_OFF(\"mdi2b-basket-off\", \"F1525\"),\n    BASKET_OFF_OUTLINE(\"mdi2b-basket-off-outline\", \"F1526\"),\n    BASKET_OUTLINE(\"mdi2b-basket-outline\", \"F1181\"),\n    BASKET_PLUS(\"mdi2b-basket-plus\", \"F1527\"),\n    BASKET_PLUS_OUTLINE(\"mdi2b-basket-plus-outline\", \"F1528\"),\n    BASKET_REMOVE(\"mdi2b-basket-remove\", \"F1529\"),\n    BASKET_REMOVE_OUTLINE(\"mdi2b-basket-remove-outline\", \"F152A\"),\n    BASKET_UNFILL(\"mdi2b-basket-unfill\", \"F0078\"),\n    BASKETBALL(\"mdi2b-basketball\", \"F0806\"),\n    BASKETBALL_HOOP(\"mdi2b-basketball-hoop\", \"F0C3B\"),\n    BASKETBALL_HOOP_OUTLINE(\"mdi2b-basketball-hoop-outline\", \"F0C3C\"),\n    BAT(\"mdi2b-bat\", \"F0B5F\"),\n    BATHTUB(\"mdi2b-bathtub\", \"F1818\"),\n    BATHTUB_OUTLINE(\"mdi2b-bathtub-outline\", \"F1819\"),\n    BATTERY(\"mdi2b-battery\", \"F0079\"),\n    BATTERY_10(\"mdi2b-battery-10\", \"F007A\"),\n    BATTERY_10_BLUETOOTH(\"mdi2b-battery-10-bluetooth\", \"F093E\"),\n    BATTERY_20(\"mdi2b-battery-20\", \"F007B\"),\n    BATTERY_20_BLUETOOTH(\"mdi2b-battery-20-bluetooth\", \"F093F\"),\n    BATTERY_30(\"mdi2b-battery-30\", \"F007C\"),\n    BATTERY_30_BLUETOOTH(\"mdi2b-battery-30-bluetooth\", \"F0940\"),\n    BATTERY_40(\"mdi2b-battery-40\", \"F007D\"),\n    BATTERY_40_BLUETOOTH(\"mdi2b-battery-40-bluetooth\", \"F0941\"),\n    BATTERY_50(\"mdi2b-battery-50\", \"F007E\"),\n    BATTERY_50_BLUETOOTH(\"mdi2b-battery-50-bluetooth\", \"F0942\"),\n    BATTERY_60(\"mdi2b-battery-60\", \"F007F\"),\n    BATTERY_60_BLUETOOTH(\"mdi2b-battery-60-bluetooth\", \"F0943\"),\n    BATTERY_70(\"mdi2b-battery-70\", \"F0080\"),\n    BATTERY_70_BLUETOOTH(\"mdi2b-battery-70-bluetooth\", \"F0944\"),\n    BATTERY_80(\"mdi2b-battery-80\", \"F0081\"),\n    BATTERY_80_BLUETOOTH(\"mdi2b-battery-80-bluetooth\", \"F0945\"),\n    BATTERY_90(\"mdi2b-battery-90\", \"F0082\"),\n    BATTERY_90_BLUETOOTH(\"mdi2b-battery-90-bluetooth\", \"F0946\"),\n    BATTERY_ALERT(\"mdi2b-battery-alert\", \"F0083\"),\n    BATTERY_ALERT_BLUETOOTH(\"mdi2b-battery-alert-bluetooth\", \"F0947\"),\n    BATTERY_ALERT_VARIANT(\"mdi2b-battery-alert-variant\", \"F10CC\"),\n    BATTERY_ALERT_VARIANT_OUTLINE(\"mdi2b-battery-alert-variant-outline\", \"F10CD\"),\n    BATTERY_ARROW_DOWN(\"mdi2b-battery-arrow-down\", \"F17DE\"),\n    BATTERY_ARROW_DOWN_OUTLINE(\"mdi2b-battery-arrow-down-outline\", \"F17DF\"),\n    BATTERY_ARROW_UP(\"mdi2b-battery-arrow-up\", \"F17E0\"),\n    BATTERY_ARROW_UP_OUTLINE(\"mdi2b-battery-arrow-up-outline\", \"F17E1\"),\n    BATTERY_BLUETOOTH(\"mdi2b-battery-bluetooth\", \"F0948\"),\n    BATTERY_BLUETOOTH_VARIANT(\"mdi2b-battery-bluetooth-variant\", \"F0949\"),\n    BATTERY_CHARGING(\"mdi2b-battery-charging\", \"F0084\"),\n    BATTERY_CHARGING_10(\"mdi2b-battery-charging-10\", \"F089C\"),\n    BATTERY_CHARGING_100(\"mdi2b-battery-charging-100\", \"F0085\"),\n    BATTERY_CHARGING_20(\"mdi2b-battery-charging-20\", \"F0086\"),\n    BATTERY_CHARGING_30(\"mdi2b-battery-charging-30\", \"F0087\"),\n    BATTERY_CHARGING_40(\"mdi2b-battery-charging-40\", \"F0088\"),\n    BATTERY_CHARGING_50(\"mdi2b-battery-charging-50\", \"F089D\"),\n    BATTERY_CHARGING_60(\"mdi2b-battery-charging-60\", \"F0089\"),\n    BATTERY_CHARGING_70(\"mdi2b-battery-charging-70\", \"F089E\"),\n    BATTERY_CHARGING_80(\"mdi2b-battery-charging-80\", \"F008A\"),\n    BATTERY_CHARGING_90(\"mdi2b-battery-charging-90\", \"F008B\"),\n    BATTERY_CHARGING_HIGH(\"mdi2b-battery-charging-high\", \"F12A6\"),\n    BATTERY_CHARGING_LOW(\"mdi2b-battery-charging-low\", \"F12A4\"),\n    BATTERY_CHARGING_MEDIUM(\"mdi2b-battery-charging-medium\", \"F12A5\"),\n    BATTERY_CHARGING_OUTLINE(\"mdi2b-battery-charging-outline\", \"F089F\"),\n    BATTERY_CHARGING_WIRELESS(\"mdi2b-battery-charging-wireless\", \"F0807\"),\n    BATTERY_CHARGING_WIRELESS_10(\"mdi2b-battery-charging-wireless-10\", \"F0808\"),\n    BATTERY_CHARGING_WIRELESS_20(\"mdi2b-battery-charging-wireless-20\", \"F0809\"),\n    BATTERY_CHARGING_WIRELESS_30(\"mdi2b-battery-charging-wireless-30\", \"F080A\"),\n    BATTERY_CHARGING_WIRELESS_40(\"mdi2b-battery-charging-wireless-40\", \"F080B\"),\n    BATTERY_CHARGING_WIRELESS_50(\"mdi2b-battery-charging-wireless-50\", \"F080C\"),\n    BATTERY_CHARGING_WIRELESS_60(\"mdi2b-battery-charging-wireless-60\", \"F080D\"),\n    BATTERY_CHARGING_WIRELESS_70(\"mdi2b-battery-charging-wireless-70\", \"F080E\"),\n    BATTERY_CHARGING_WIRELESS_80(\"mdi2b-battery-charging-wireless-80\", \"F080F\"),\n    BATTERY_CHARGING_WIRELESS_90(\"mdi2b-battery-charging-wireless-90\", \"F0810\"),\n    BATTERY_CHARGING_WIRELESS_ALERT(\"mdi2b-battery-charging-wireless-alert\", \"F0811\"),\n    BATTERY_CHARGING_WIRELESS_OUTLINE(\"mdi2b-battery-charging-wireless-outline\", \"F0812\"),\n    BATTERY_CHECK(\"mdi2b-battery-check\", \"F17E2\"),\n    BATTERY_CHECK_OUTLINE(\"mdi2b-battery-check-outline\", \"F17E3\"),\n    BATTERY_CLOCK(\"mdi2b-battery-clock\", \"F19E5\"),\n    BATTERY_CLOCK_OUTLINE(\"mdi2b-battery-clock-outline\", \"F19E6\"),\n    BATTERY_HEART(\"mdi2b-battery-heart\", \"F120F\"),\n    BATTERY_HEART_OUTLINE(\"mdi2b-battery-heart-outline\", \"F1210\"),\n    BATTERY_HEART_VARIANT(\"mdi2b-battery-heart-variant\", \"F1211\"),\n    BATTERY_HIGH(\"mdi2b-battery-high\", \"F12A3\"),\n    BATTERY_LOCK(\"mdi2b-battery-lock\", \"F179C\"),\n    BATTERY_LOCK_OPEN(\"mdi2b-battery-lock-open\", \"F179D\"),\n    BATTERY_LOW(\"mdi2b-battery-low\", \"F12A1\"),\n    BATTERY_MEDIUM(\"mdi2b-battery-medium\", \"F12A2\"),\n    BATTERY_MINUS(\"mdi2b-battery-minus\", \"F17E4\"),\n    BATTERY_MINUS_OUTLINE(\"mdi2b-battery-minus-outline\", \"F17E5\"),\n    BATTERY_MINUS_VARIANT(\"mdi2b-battery-minus-variant\", \"F008C\"),\n    BATTERY_NEGATIVE(\"mdi2b-battery-negative\", \"F008D\"),\n    BATTERY_OFF(\"mdi2b-battery-off\", \"F125D\"),\n    BATTERY_OFF_OUTLINE(\"mdi2b-battery-off-outline\", \"F125E\"),\n    BATTERY_OUTLINE(\"mdi2b-battery-outline\", \"F008E\"),\n    BATTERY_PLUS(\"mdi2b-battery-plus\", \"F17E6\"),\n    BATTERY_PLUS_OUTLINE(\"mdi2b-battery-plus-outline\", \"F17E7\"),\n    BATTERY_PLUS_VARIANT(\"mdi2b-battery-plus-variant\", \"F008F\"),\n    BATTERY_POSITIVE(\"mdi2b-battery-positive\", \"F0090\"),\n    BATTERY_REMOVE(\"mdi2b-battery-remove\", \"F17E8\"),\n    BATTERY_REMOVE_OUTLINE(\"mdi2b-battery-remove-outline\", \"F17E9\"),\n    BATTERY_SYNC(\"mdi2b-battery-sync\", \"F1834\"),\n    BATTERY_SYNC_OUTLINE(\"mdi2b-battery-sync-outline\", \"F1835\"),\n    BATTERY_UNKNOWN(\"mdi2b-battery-unknown\", \"F0091\"),\n    BATTERY_UNKNOWN_BLUETOOTH(\"mdi2b-battery-unknown-bluetooth\", \"F094A\"),\n    BEACH(\"mdi2b-beach\", \"F0092\"),\n    BEAKER(\"mdi2b-beaker\", \"F0CEA\"),\n    BEAKER_ALERT(\"mdi2b-beaker-alert\", \"F1229\"),\n    BEAKER_ALERT_OUTLINE(\"mdi2b-beaker-alert-outline\", \"F122A\"),\n    BEAKER_CHECK(\"mdi2b-beaker-check\", \"F122B\"),\n    BEAKER_CHECK_OUTLINE(\"mdi2b-beaker-check-outline\", \"F122C\"),\n    BEAKER_MINUS(\"mdi2b-beaker-minus\", \"F122D\"),\n    BEAKER_MINUS_OUTLINE(\"mdi2b-beaker-minus-outline\", \"F122E\"),\n    BEAKER_OUTLINE(\"mdi2b-beaker-outline\", \"F0690\"),\n    BEAKER_PLUS(\"mdi2b-beaker-plus\", \"F122F\"),\n    BEAKER_PLUS_OUTLINE(\"mdi2b-beaker-plus-outline\", \"F1230\"),\n    BEAKER_QUESTION(\"mdi2b-beaker-question\", \"F1231\"),\n    BEAKER_QUESTION_OUTLINE(\"mdi2b-beaker-question-outline\", \"F1232\"),\n    BEAKER_REMOVE(\"mdi2b-beaker-remove\", \"F1233\"),\n    BEAKER_REMOVE_OUTLINE(\"mdi2b-beaker-remove-outline\", \"F1234\"),\n    BED(\"mdi2b-bed\", \"F02E3\"),\n    BED_CLOCK(\"mdi2b-bed-clock\", \"F1B94\"),\n    BED_DOUBLE(\"mdi2b-bed-double\", \"F0FD4\"),\n    BED_DOUBLE_OUTLINE(\"mdi2b-bed-double-outline\", \"F0FD3\"),\n    BED_EMPTY(\"mdi2b-bed-empty\", \"F08A0\"),\n    BED_KING(\"mdi2b-bed-king\", \"F0FD2\"),\n    BED_KING_OUTLINE(\"mdi2b-bed-king-outline\", \"F0FD1\"),\n    BED_OUTLINE(\"mdi2b-bed-outline\", \"F0099\"),\n    BED_QUEEN(\"mdi2b-bed-queen\", \"F0FD0\"),\n    BED_QUEEN_OUTLINE(\"mdi2b-bed-queen-outline\", \"F0FDB\"),\n    BED_SINGLE(\"mdi2b-bed-single\", \"F106D\"),\n    BED_SINGLE_OUTLINE(\"mdi2b-bed-single-outline\", \"F106E\"),\n    BEE(\"mdi2b-bee\", \"F0FA1\"),\n    BEE_FLOWER(\"mdi2b-bee-flower\", \"F0FA2\"),\n    BEEHIVE_OFF_OUTLINE(\"mdi2b-beehive-off-outline\", \"F13ED\"),\n    BEEHIVE_OUTLINE(\"mdi2b-beehive-outline\", \"F10CE\"),\n    BEEKEEPER(\"mdi2b-beekeeper\", \"F14E2\"),\n    BEER(\"mdi2b-beer\", \"F0098\"),\n    BEER_OUTLINE(\"mdi2b-beer-outline\", \"F130C\"),\n    BELL(\"mdi2b-bell\", \"F009A\"),\n    BELL_ALERT(\"mdi2b-bell-alert\", \"F0D59\"),\n    BELL_ALERT_OUTLINE(\"mdi2b-bell-alert-outline\", \"F0E81\"),\n    BELL_BADGE(\"mdi2b-bell-badge\", \"F116B\"),\n    BELL_BADGE_OUTLINE(\"mdi2b-bell-badge-outline\", \"F0178\"),\n    BELL_CANCEL(\"mdi2b-bell-cancel\", \"F13E7\"),\n    BELL_CANCEL_OUTLINE(\"mdi2b-bell-cancel-outline\", \"F13E8\"),\n    BELL_CHECK(\"mdi2b-bell-check\", \"F11E5\"),\n    BELL_CHECK_OUTLINE(\"mdi2b-bell-check-outline\", \"F11E6\"),\n    BELL_CIRCLE(\"mdi2b-bell-circle\", \"F0D5A\"),\n    BELL_CIRCLE_OUTLINE(\"mdi2b-bell-circle-outline\", \"F0D5B\"),\n    BELL_COG(\"mdi2b-bell-cog\", \"F1A29\"),\n    BELL_COG_OUTLINE(\"mdi2b-bell-cog-outline\", \"F1A2A\"),\n    BELL_MINUS(\"mdi2b-bell-minus\", \"F13E9\"),\n    BELL_MINUS_OUTLINE(\"mdi2b-bell-minus-outline\", \"F13EA\"),\n    BELL_OFF(\"mdi2b-bell-off\", \"F009B\"),\n    BELL_OFF_OUTLINE(\"mdi2b-bell-off-outline\", \"F0A91\"),\n    BELL_OUTLINE(\"mdi2b-bell-outline\", \"F009C\"),\n    BELL_PLUS(\"mdi2b-bell-plus\", \"F009D\"),\n    BELL_PLUS_OUTLINE(\"mdi2b-bell-plus-outline\", \"F0A92\"),\n    BELL_REMOVE(\"mdi2b-bell-remove\", \"F13EB\"),\n    BELL_REMOVE_OUTLINE(\"mdi2b-bell-remove-outline\", \"F13EC\"),\n    BELL_RING(\"mdi2b-bell-ring\", \"F009E\"),\n    BELL_RING_OUTLINE(\"mdi2b-bell-ring-outline\", \"F009F\"),\n    BELL_SLEEP(\"mdi2b-bell-sleep\", \"F00A0\"),\n    BELL_SLEEP_OUTLINE(\"mdi2b-bell-sleep-outline\", \"F0A93\"),\n    BENCH(\"mdi2b-bench\", \"F1C21\"),\n    BENCH_BACK(\"mdi2b-bench-back\", \"F1C22\"),\n    BETA(\"mdi2b-beta\", \"F00A1\"),\n    BETAMAX(\"mdi2b-betamax\", \"F09CB\"),\n    BIATHLON(\"mdi2b-biathlon\", \"F0E14\"),\n    BICYCLE(\"mdi2b-bicycle\", \"F109C\"),\n    BICYCLE_BASKET(\"mdi2b-bicycle-basket\", \"F1235\"),\n    BICYCLE_CARGO(\"mdi2b-bicycle-cargo\", \"F189C\"),\n    BICYCLE_ELECTRIC(\"mdi2b-bicycle-electric\", \"F15B4\"),\n    BICYCLE_PENNY_FARTHING(\"mdi2b-bicycle-penny-farthing\", \"F15E9\"),\n    BIKE(\"mdi2b-bike\", \"F00A3\"),\n    BIKE_FAST(\"mdi2b-bike-fast\", \"F111F\"),\n    BIKE_PEDAL(\"mdi2b-bike-pedal\", \"F1C23\"),\n    BIKE_PEDAL_CLIPLESS(\"mdi2b-bike-pedal-clipless\", \"F1C24\"),\n    BIKE_PEDAL_MOUNTAIN(\"mdi2b-bike-pedal-mountain\", \"F1C25\"),\n    BILLBOARD(\"mdi2b-billboard\", \"F1010\"),\n    BILLIARDS(\"mdi2b-billiards\", \"F0B61\"),\n    BILLIARDS_RACK(\"mdi2b-billiards-rack\", \"F0B62\"),\n    BINOCULARS(\"mdi2b-binoculars\", \"F00A5\"),\n    BIO(\"mdi2b-bio\", \"F00A6\"),\n    BIOHAZARD(\"mdi2b-biohazard\", \"F00A7\"),\n    BIRD(\"mdi2b-bird\", \"F15C6\"),\n    BITBUCKET(\"mdi2b-bitbucket\", \"F00A8\"),\n    BITCOIN(\"mdi2b-bitcoin\", \"F0813\"),\n    BLACK_MESA(\"mdi2b-black-mesa\", \"F00A9\"),\n    BLENDER(\"mdi2b-blender\", \"F0CEB\"),\n    BLENDER_OUTLINE(\"mdi2b-blender-outline\", \"F181A\"),\n    BLENDER_SOFTWARE(\"mdi2b-blender-software\", \"F00AB\"),\n    BLINDS(\"mdi2b-blinds\", \"F00AC\"),\n    BLINDS_HORIZONTAL(\"mdi2b-blinds-horizontal\", \"F1A2B\"),\n    BLINDS_HORIZONTAL_CLOSED(\"mdi2b-blinds-horizontal-closed\", \"F1A2C\"),\n    BLINDS_OPEN(\"mdi2b-blinds-open\", \"F1011\"),\n    BLINDS_VERTICAL(\"mdi2b-blinds-vertical\", \"F1A2D\"),\n    BLINDS_VERTICAL_CLOSED(\"mdi2b-blinds-vertical-closed\", \"F1A2E\"),\n    BLOCK_HELPER(\"mdi2b-block-helper\", \"F00AD\"),\n    BLOOD_BAG(\"mdi2b-blood-bag\", \"F0CEC\"),\n    BLUETOOTH(\"mdi2b-bluetooth\", \"F00AF\"),\n    BLUETOOTH_AUDIO(\"mdi2b-bluetooth-audio\", \"F00B0\"),\n    BLUETOOTH_CONNECT(\"mdi2b-bluetooth-connect\", \"F00B1\"),\n    BLUETOOTH_OFF(\"mdi2b-bluetooth-off\", \"F00B2\"),\n    BLUETOOTH_SETTINGS(\"mdi2b-bluetooth-settings\", \"F00B3\"),\n    BLUETOOTH_TRANSFER(\"mdi2b-bluetooth-transfer\", \"F00B4\"),\n    BLUR(\"mdi2b-blur\", \"F00B5\"),\n    BLUR_LINEAR(\"mdi2b-blur-linear\", \"F00B6\"),\n    BLUR_OFF(\"mdi2b-blur-off\", \"F00B7\"),\n    BLUR_RADIAL(\"mdi2b-blur-radial\", \"F00B8\"),\n    BOLT(\"mdi2b-bolt\", \"F0DB3\"),\n    BOMB(\"mdi2b-bomb\", \"F0691\"),\n    BOMB_OFF(\"mdi2b-bomb-off\", \"F06C5\"),\n    BONE(\"mdi2b-bone\", \"F00B9\"),\n    BONE_OFF(\"mdi2b-bone-off\", \"F19E0\"),\n    BOOK(\"mdi2b-book\", \"F00BA\"),\n    BOOK_ACCOUNT(\"mdi2b-book-account\", \"F13AD\"),\n    BOOK_ACCOUNT_OUTLINE(\"mdi2b-book-account-outline\", \"F13AE\"),\n    BOOK_ALERT(\"mdi2b-book-alert\", \"F167C\"),\n    BOOK_ALERT_OUTLINE(\"mdi2b-book-alert-outline\", \"F167D\"),\n    BOOK_ALPHABET(\"mdi2b-book-alphabet\", \"F061D\"),\n    BOOK_ARROW_DOWN(\"mdi2b-book-arrow-down\", \"F167E\"),\n    BOOK_ARROW_DOWN_OUTLINE(\"mdi2b-book-arrow-down-outline\", \"F167F\"),\n    BOOK_ARROW_LEFT(\"mdi2b-book-arrow-left\", \"F1680\"),\n    BOOK_ARROW_LEFT_OUTLINE(\"mdi2b-book-arrow-left-outline\", \"F1681\"),\n    BOOK_ARROW_RIGHT(\"mdi2b-book-arrow-right\", \"F1682\"),\n    BOOK_ARROW_RIGHT_OUTLINE(\"mdi2b-book-arrow-right-outline\", \"F1683\"),\n    BOOK_ARROW_UP(\"mdi2b-book-arrow-up\", \"F1684\"),\n    BOOK_ARROW_UP_OUTLINE(\"mdi2b-book-arrow-up-outline\", \"F1685\"),\n    BOOK_CANCEL(\"mdi2b-book-cancel\", \"F1686\"),\n    BOOK_CANCEL_OUTLINE(\"mdi2b-book-cancel-outline\", \"F1687\"),\n    BOOK_CHECK(\"mdi2b-book-check\", \"F14F3\"),\n    BOOK_CHECK_OUTLINE(\"mdi2b-book-check-outline\", \"F14F4\"),\n    BOOK_CLOCK(\"mdi2b-book-clock\", \"F1688\"),\n    BOOK_CLOCK_OUTLINE(\"mdi2b-book-clock-outline\", \"F1689\"),\n    BOOK_COG(\"mdi2b-book-cog\", \"F168A\"),\n    BOOK_COG_OUTLINE(\"mdi2b-book-cog-outline\", \"F168B\"),\n    BOOK_CROSS(\"mdi2b-book-cross\", \"F00A2\"),\n    BOOK_EDIT(\"mdi2b-book-edit\", \"F168C\"),\n    BOOK_EDIT_OUTLINE(\"mdi2b-book-edit-outline\", \"F168D\"),\n    BOOK_EDUCATION(\"mdi2b-book-education\", \"F16C9\"),\n    BOOK_EDUCATION_OUTLINE(\"mdi2b-book-education-outline\", \"F16CA\"),\n    BOOK_HEART(\"mdi2b-book-heart\", \"F1A1D\"),\n    BOOK_HEART_OUTLINE(\"mdi2b-book-heart-outline\", \"F1A1E\"),\n    BOOK_INFORMATION_VARIANT(\"mdi2b-book-information-variant\", \"F106F\"),\n    BOOK_LOCK(\"mdi2b-book-lock\", \"F079A\"),\n    BOOK_LOCK_OPEN(\"mdi2b-book-lock-open\", \"F079B\"),\n    BOOK_LOCK_OPEN_OUTLINE(\"mdi2b-book-lock-open-outline\", \"F168E\"),\n    BOOK_LOCK_OUTLINE(\"mdi2b-book-lock-outline\", \"F168F\"),\n    BOOK_MARKER(\"mdi2b-book-marker\", \"F1690\"),\n    BOOK_MARKER_OUTLINE(\"mdi2b-book-marker-outline\", \"F1691\"),\n    BOOK_MINUS(\"mdi2b-book-minus\", \"F05D9\"),\n    BOOK_MINUS_MULTIPLE(\"mdi2b-book-minus-multiple\", \"F0A94\"),\n    BOOK_MINUS_MULTIPLE_OUTLINE(\"mdi2b-book-minus-multiple-outline\", \"F090B\"),\n    BOOK_MINUS_OUTLINE(\"mdi2b-book-minus-outline\", \"F1692\"),\n    BOOK_MULTIPLE(\"mdi2b-book-multiple\", \"F00BB\"),\n    BOOK_MULTIPLE_OUTLINE(\"mdi2b-book-multiple-outline\", \"F0436\"),\n    BOOK_MUSIC(\"mdi2b-book-music\", \"F0067\"),\n    BOOK_MUSIC_OUTLINE(\"mdi2b-book-music-outline\", \"F1693\"),\n    BOOK_OFF(\"mdi2b-book-off\", \"F1694\"),\n    BOOK_OFF_OUTLINE(\"mdi2b-book-off-outline\", \"F1695\"),\n    BOOK_OPEN(\"mdi2b-book-open\", \"F00BD\"),\n    BOOK_OPEN_BLANK_VARIANT(\"mdi2b-book-open-blank-variant\", \"F00BE\"),\n    BOOK_OPEN_BLANK_VARIANT_OUTLINE(\"mdi2b-book-open-blank-variant-outline\", \"F1CCB\"),\n    BOOK_OPEN_OUTLINE(\"mdi2b-book-open-outline\", \"F0B63\"),\n    BOOK_OPEN_PAGE_VARIANT(\"mdi2b-book-open-page-variant\", \"F05DA\"),\n    BOOK_OPEN_PAGE_VARIANT_OUTLINE(\"mdi2b-book-open-page-variant-outline\", \"F15D6\"),\n    BOOK_OPEN_VARIANT(\"mdi2b-book-open-variant\", \"F14F7\"),\n    BOOK_OPEN_VARIANT_OUTLINE(\"mdi2b-book-open-variant-outline\", \"F1CCC\"),\n    BOOK_OUTLINE(\"mdi2b-book-outline\", \"F0B64\"),\n    BOOK_PLAY(\"mdi2b-book-play\", \"F0E82\"),\n    BOOK_PLAY_OUTLINE(\"mdi2b-book-play-outline\", \"F0E83\"),\n    BOOK_PLUS(\"mdi2b-book-plus\", \"F05DB\"),\n    BOOK_PLUS_MULTIPLE(\"mdi2b-book-plus-multiple\", \"F0A95\"),\n    BOOK_PLUS_MULTIPLE_OUTLINE(\"mdi2b-book-plus-multiple-outline\", \"F0ADE\"),\n    BOOK_PLUS_OUTLINE(\"mdi2b-book-plus-outline\", \"F1696\"),\n    BOOK_REFRESH(\"mdi2b-book-refresh\", \"F1697\"),\n    BOOK_REFRESH_OUTLINE(\"mdi2b-book-refresh-outline\", \"F1698\"),\n    BOOK_REMOVE(\"mdi2b-book-remove\", \"F0A97\"),\n    BOOK_REMOVE_MULTIPLE(\"mdi2b-book-remove-multiple\", \"F0A96\"),\n    BOOK_REMOVE_MULTIPLE_OUTLINE(\"mdi2b-book-remove-multiple-outline\", \"F04CA\"),\n    BOOK_REMOVE_OUTLINE(\"mdi2b-book-remove-outline\", \"F1699\"),\n    BOOK_SEARCH(\"mdi2b-book-search\", \"F0E84\"),\n    BOOK_SEARCH_OUTLINE(\"mdi2b-book-search-outline\", \"F0E85\"),\n    BOOK_SETTINGS(\"mdi2b-book-settings\", \"F169A\"),\n    BOOK_SETTINGS_OUTLINE(\"mdi2b-book-settings-outline\", \"F169B\"),\n    BOOK_SYNC(\"mdi2b-book-sync\", \"F169C\"),\n    BOOK_SYNC_OUTLINE(\"mdi2b-book-sync-outline\", \"F16C8\"),\n    BOOK_VARIANT(\"mdi2b-book-variant\", \"F00BF\"),\n    BOOKMARK(\"mdi2b-bookmark\", \"F00C0\"),\n    BOOKMARK_BOX(\"mdi2b-bookmark-box\", \"F1B75\"),\n    BOOKMARK_BOX_MULTIPLE(\"mdi2b-bookmark-box-multiple\", \"F196C\"),\n    BOOKMARK_BOX_MULTIPLE_OUTLINE(\"mdi2b-bookmark-box-multiple-outline\", \"F196D\"),\n    BOOKMARK_BOX_OUTLINE(\"mdi2b-bookmark-box-outline\", \"F1B76\"),\n    BOOKMARK_CHECK(\"mdi2b-bookmark-check\", \"F00C1\"),\n    BOOKMARK_CHECK_OUTLINE(\"mdi2b-bookmark-check-outline\", \"F137B\"),\n    BOOKMARK_MINUS(\"mdi2b-bookmark-minus\", \"F09CC\"),\n    BOOKMARK_MINUS_OUTLINE(\"mdi2b-bookmark-minus-outline\", \"F09CD\"),\n    BOOKMARK_MULTIPLE(\"mdi2b-bookmark-multiple\", \"F0E15\"),\n    BOOKMARK_MULTIPLE_OUTLINE(\"mdi2b-bookmark-multiple-outline\", \"F0E16\"),\n    BOOKMARK_MUSIC(\"mdi2b-bookmark-music\", \"F00C2\"),\n    BOOKMARK_MUSIC_OUTLINE(\"mdi2b-bookmark-music-outline\", \"F1379\"),\n    BOOKMARK_OFF(\"mdi2b-bookmark-off\", \"F09CE\"),\n    BOOKMARK_OFF_OUTLINE(\"mdi2b-bookmark-off-outline\", \"F09CF\"),\n    BOOKMARK_OUTLINE(\"mdi2b-bookmark-outline\", \"F00C3\"),\n    BOOKMARK_PLUS(\"mdi2b-bookmark-plus\", \"F00C5\"),\n    BOOKMARK_PLUS_OUTLINE(\"mdi2b-bookmark-plus-outline\", \"F00C4\"),\n    BOOKMARK_REMOVE(\"mdi2b-bookmark-remove\", \"F00C6\"),\n    BOOKMARK_REMOVE_OUTLINE(\"mdi2b-bookmark-remove-outline\", \"F137A\"),\n    BOOKSHELF(\"mdi2b-bookshelf\", \"F125F\"),\n    BOOM_GATE(\"mdi2b-boom-gate\", \"F0E86\"),\n    BOOM_GATE_ALERT(\"mdi2b-boom-gate-alert\", \"F0E87\"),\n    BOOM_GATE_ALERT_OUTLINE(\"mdi2b-boom-gate-alert-outline\", \"F0E88\"),\n    BOOM_GATE_ARROW_DOWN(\"mdi2b-boom-gate-arrow-down\", \"F0E89\"),\n    BOOM_GATE_ARROW_DOWN_OUTLINE(\"mdi2b-boom-gate-arrow-down-outline\", \"F0E8A\"),\n    BOOM_GATE_ARROW_UP(\"mdi2b-boom-gate-arrow-up\", \"F0E8C\"),\n    BOOM_GATE_ARROW_UP_OUTLINE(\"mdi2b-boom-gate-arrow-up-outline\", \"F0E8D\"),\n    BOOM_GATE_OUTLINE(\"mdi2b-boom-gate-outline\", \"F0E8B\"),\n    BOOM_GATE_UP(\"mdi2b-boom-gate-up\", \"F17F9\"),\n    BOOM_GATE_UP_OUTLINE(\"mdi2b-boom-gate-up-outline\", \"F17FA\"),\n    BOOMBOX(\"mdi2b-boombox\", \"F05DC\"),\n    BOOMERANG(\"mdi2b-boomerang\", \"F10CF\"),\n    BOOTSTRAP(\"mdi2b-bootstrap\", \"F06C6\"),\n    BORDER_ALL(\"mdi2b-border-all\", \"F00C7\"),\n    BORDER_ALL_VARIANT(\"mdi2b-border-all-variant\", \"F08A1\"),\n    BORDER_BOTTOM(\"mdi2b-border-bottom\", \"F00C8\"),\n    BORDER_BOTTOM_VARIANT(\"mdi2b-border-bottom-variant\", \"F08A2\"),\n    BORDER_COLOR(\"mdi2b-border-color\", \"F00C9\"),\n    BORDER_HORIZONTAL(\"mdi2b-border-horizontal\", \"F00CA\"),\n    BORDER_INSIDE(\"mdi2b-border-inside\", \"F00CB\"),\n    BORDER_LEFT(\"mdi2b-border-left\", \"F00CC\"),\n    BORDER_LEFT_VARIANT(\"mdi2b-border-left-variant\", \"F08A3\"),\n    BORDER_NONE(\"mdi2b-border-none\", \"F00CD\"),\n    BORDER_NONE_VARIANT(\"mdi2b-border-none-variant\", \"F08A4\"),\n    BORDER_OUTSIDE(\"mdi2b-border-outside\", \"F00CE\"),\n    BORDER_RADIUS(\"mdi2b-border-radius\", \"F1AF4\"),\n    BORDER_RIGHT(\"mdi2b-border-right\", \"F00CF\"),\n    BORDER_RIGHT_VARIANT(\"mdi2b-border-right-variant\", \"F08A5\"),\n    BORDER_STYLE(\"mdi2b-border-style\", \"F00D0\"),\n    BORDER_TOP(\"mdi2b-border-top\", \"F00D1\"),\n    BORDER_TOP_VARIANT(\"mdi2b-border-top-variant\", \"F08A6\"),\n    BORDER_VERTICAL(\"mdi2b-border-vertical\", \"F00D2\"),\n    BOTTLE_SODA(\"mdi2b-bottle-soda\", \"F1070\"),\n    BOTTLE_SODA_CLASSIC(\"mdi2b-bottle-soda-classic\", \"F1071\"),\n    BOTTLE_SODA_CLASSIC_OUTLINE(\"mdi2b-bottle-soda-classic-outline\", \"F1363\"),\n    BOTTLE_SODA_OUTLINE(\"mdi2b-bottle-soda-outline\", \"F1072\"),\n    BOTTLE_TONIC(\"mdi2b-bottle-tonic\", \"F112E\"),\n    BOTTLE_TONIC_OUTLINE(\"mdi2b-bottle-tonic-outline\", \"F112F\"),\n    BOTTLE_TONIC_PLUS(\"mdi2b-bottle-tonic-plus\", \"F1130\"),\n    BOTTLE_TONIC_PLUS_OUTLINE(\"mdi2b-bottle-tonic-plus-outline\", \"F1131\"),\n    BOTTLE_TONIC_SKULL(\"mdi2b-bottle-tonic-skull\", \"F1132\"),\n    BOTTLE_TONIC_SKULL_OUTLINE(\"mdi2b-bottle-tonic-skull-outline\", \"F1133\"),\n    BOTTLE_WINE(\"mdi2b-bottle-wine\", \"F0854\"),\n    BOTTLE_WINE_OUTLINE(\"mdi2b-bottle-wine-outline\", \"F1310\"),\n    BOW_ARROW(\"mdi2b-bow-arrow\", \"F1841\"),\n    BOW_TIE(\"mdi2b-bow-tie\", \"F0678\"),\n    BOWL(\"mdi2b-bowl\", \"F028E\"),\n    BOWL_MIX(\"mdi2b-bowl-mix\", \"F0617\"),\n    BOWL_MIX_OUTLINE(\"mdi2b-bowl-mix-outline\", \"F02E4\"),\n    BOWL_OUTLINE(\"mdi2b-bowl-outline\", \"F02A9\"),\n    BOWLING(\"mdi2b-bowling\", \"F00D3\"),\n    BOX(\"mdi2b-box\", \"F00D4\"),\n    BOX_CUTTER(\"mdi2b-box-cutter\", \"F00D5\"),\n    BOX_CUTTER_OFF(\"mdi2b-box-cutter-off\", \"F0B4A\"),\n    BOX_SHADOW(\"mdi2b-box-shadow\", \"F0637\"),\n    BOXING_GLOVE(\"mdi2b-boxing-glove\", \"F0B65\"),\n    BRAILLE(\"mdi2b-braille\", \"F09D0\"),\n    BRAIN(\"mdi2b-brain\", \"F09D1\"),\n    BREAD_SLICE(\"mdi2b-bread-slice\", \"F0CEE\"),\n    BREAD_SLICE_OUTLINE(\"mdi2b-bread-slice-outline\", \"F0CEF\"),\n    BRIDGE(\"mdi2b-bridge\", \"F0618\"),\n    BRIEFCASE(\"mdi2b-briefcase\", \"F00D6\"),\n    BRIEFCASE_ACCOUNT(\"mdi2b-briefcase-account\", \"F0CF0\"),\n    BRIEFCASE_ACCOUNT_OUTLINE(\"mdi2b-briefcase-account-outline\", \"F0CF1\"),\n    BRIEFCASE_ARROW_LEFT_RIGHT(\"mdi2b-briefcase-arrow-left-right\", \"F1A8D\"),\n    BRIEFCASE_ARROW_LEFT_RIGHT_OUTLINE(\"mdi2b-briefcase-arrow-left-right-outline\", \"F1A8E\"),\n    BRIEFCASE_ARROW_UP_DOWN(\"mdi2b-briefcase-arrow-up-down\", \"F1A8F\"),\n    BRIEFCASE_ARROW_UP_DOWN_OUTLINE(\"mdi2b-briefcase-arrow-up-down-outline\", \"F1A90\"),\n    BRIEFCASE_CHECK(\"mdi2b-briefcase-check\", \"F00D7\"),\n    BRIEFCASE_CHECK_OUTLINE(\"mdi2b-briefcase-check-outline\", \"F131E\"),\n    BRIEFCASE_CLOCK(\"mdi2b-briefcase-clock\", \"F10D0\"),\n    BRIEFCASE_CLOCK_OUTLINE(\"mdi2b-briefcase-clock-outline\", \"F10D1\"),\n    BRIEFCASE_DOWNLOAD(\"mdi2b-briefcase-download\", \"F00D8\"),\n    BRIEFCASE_DOWNLOAD_OUTLINE(\"mdi2b-briefcase-download-outline\", \"F0C3D\"),\n    BRIEFCASE_EDIT(\"mdi2b-briefcase-edit\", \"F0A98\"),\n    BRIEFCASE_EDIT_OUTLINE(\"mdi2b-briefcase-edit-outline\", \"F0C3E\"),\n    BRIEFCASE_EYE(\"mdi2b-briefcase-eye\", \"F17D9\"),\n    BRIEFCASE_EYE_OUTLINE(\"mdi2b-briefcase-eye-outline\", \"F17DA\"),\n    BRIEFCASE_MINUS(\"mdi2b-briefcase-minus\", \"F0A2A\"),\n    BRIEFCASE_MINUS_OUTLINE(\"mdi2b-briefcase-minus-outline\", \"F0C3F\"),\n    BRIEFCASE_OFF(\"mdi2b-briefcase-off\", \"F1658\"),\n    BRIEFCASE_OFF_OUTLINE(\"mdi2b-briefcase-off-outline\", \"F1659\"),\n    BRIEFCASE_OUTLINE(\"mdi2b-briefcase-outline\", \"F0814\"),\n    BRIEFCASE_PLUS(\"mdi2b-briefcase-plus\", \"F0A2B\"),\n    BRIEFCASE_PLUS_OUTLINE(\"mdi2b-briefcase-plus-outline\", \"F0C40\"),\n    BRIEFCASE_REMOVE(\"mdi2b-briefcase-remove\", \"F0A2C\"),\n    BRIEFCASE_REMOVE_OUTLINE(\"mdi2b-briefcase-remove-outline\", \"F0C41\"),\n    BRIEFCASE_SEARCH(\"mdi2b-briefcase-search\", \"F0A2D\"),\n    BRIEFCASE_SEARCH_OUTLINE(\"mdi2b-briefcase-search-outline\", \"F0C42\"),\n    BRIEFCASE_UPLOAD(\"mdi2b-briefcase-upload\", \"F00D9\"),\n    BRIEFCASE_UPLOAD_OUTLINE(\"mdi2b-briefcase-upload-outline\", \"F0C43\"),\n    BRIEFCASE_VARIANT(\"mdi2b-briefcase-variant\", \"F1494\"),\n    BRIEFCASE_VARIANT_OFF(\"mdi2b-briefcase-variant-off\", \"F165A\"),\n    BRIEFCASE_VARIANT_OFF_OUTLINE(\"mdi2b-briefcase-variant-off-outline\", \"F165B\"),\n    BRIEFCASE_VARIANT_OUTLINE(\"mdi2b-briefcase-variant-outline\", \"F1495\"),\n    BRIGHTNESS_1(\"mdi2b-brightness-1\", \"F00DA\"),\n    BRIGHTNESS_2(\"mdi2b-brightness-2\", \"F00DB\"),\n    BRIGHTNESS_3(\"mdi2b-brightness-3\", \"F00DC\"),\n    BRIGHTNESS_4(\"mdi2b-brightness-4\", \"F00DD\"),\n    BRIGHTNESS_5(\"mdi2b-brightness-5\", \"F00DE\"),\n    BRIGHTNESS_6(\"mdi2b-brightness-6\", \"F00DF\"),\n    BRIGHTNESS_7(\"mdi2b-brightness-7\", \"F00E0\"),\n    BRIGHTNESS_AUTO(\"mdi2b-brightness-auto\", \"F00E1\"),\n    BRIGHTNESS_PERCENT(\"mdi2b-brightness-percent\", \"F0CF2\"),\n    BROADCAST(\"mdi2b-broadcast\", \"F1720\"),\n    BROADCAST_OFF(\"mdi2b-broadcast-off\", \"F1721\"),\n    BROOM(\"mdi2b-broom\", \"F00E2\"),\n    BRUSH(\"mdi2b-brush\", \"F00E3\"),\n    BRUSH_OFF(\"mdi2b-brush-off\", \"F1771\"),\n    BRUSH_OUTLINE(\"mdi2b-brush-outline\", \"F1A0D\"),\n    BRUSH_VARIANT(\"mdi2b-brush-variant\", \"F1813\"),\n    BUCKET(\"mdi2b-bucket\", \"F1415\"),\n    BUCKET_OUTLINE(\"mdi2b-bucket-outline\", \"F1416\"),\n    BUFFET(\"mdi2b-buffet\", \"F0578\"),\n    BUG(\"mdi2b-bug\", \"F00E4\"),\n    BUG_CHECK(\"mdi2b-bug-check\", \"F0A2E\"),\n    BUG_CHECK_OUTLINE(\"mdi2b-bug-check-outline\", \"F0A2F\"),\n    BUG_OUTLINE(\"mdi2b-bug-outline\", \"F0A30\"),\n    BUG_PAUSE(\"mdi2b-bug-pause\", \"F1AF5\"),\n    BUG_PAUSE_OUTLINE(\"mdi2b-bug-pause-outline\", \"F1AF6\"),\n    BUG_PLAY(\"mdi2b-bug-play\", \"F1AF7\"),\n    BUG_PLAY_OUTLINE(\"mdi2b-bug-play-outline\", \"F1AF8\"),\n    BUG_STOP(\"mdi2b-bug-stop\", \"F1AF9\"),\n    BUG_STOP_OUTLINE(\"mdi2b-bug-stop-outline\", \"F1AFA\"),\n    BUGLE(\"mdi2b-bugle\", \"F0DB4\"),\n    BULKHEAD_LIGHT(\"mdi2b-bulkhead-light\", \"F1A2F\"),\n    BULLDOZER(\"mdi2b-bulldozer\", \"F0B22\"),\n    BULLET(\"mdi2b-bullet\", \"F0CF3\"),\n    BULLETIN_BOARD(\"mdi2b-bulletin-board\", \"F00E5\"),\n    BULLHORN(\"mdi2b-bullhorn\", \"F00E6\"),\n    BULLHORN_OUTLINE(\"mdi2b-bullhorn-outline\", \"F0B23\"),\n    BULLHORN_VARIANT(\"mdi2b-bullhorn-variant\", \"F196E\"),\n    BULLHORN_VARIANT_OUTLINE(\"mdi2b-bullhorn-variant-outline\", \"F196F\"),\n    BULLSEYE(\"mdi2b-bullseye\", \"F05DD\"),\n    BULLSEYE_ARROW(\"mdi2b-bullseye-arrow\", \"F08C9\"),\n    BULMA(\"mdi2b-bulma\", \"F12E7\"),\n    BUNK_BED(\"mdi2b-bunk-bed\", \"F1302\"),\n    BUNK_BED_OUTLINE(\"mdi2b-bunk-bed-outline\", \"F0097\"),\n    BUS(\"mdi2b-bus\", \"F00E7\"),\n    BUS_ALERT(\"mdi2b-bus-alert\", \"F0A99\"),\n    BUS_ARTICULATED_END(\"mdi2b-bus-articulated-end\", \"F079C\"),\n    BUS_ARTICULATED_FRONT(\"mdi2b-bus-articulated-front\", \"F079D\"),\n    BUS_CLOCK(\"mdi2b-bus-clock\", \"F08CA\"),\n    BUS_DOUBLE_DECKER(\"mdi2b-bus-double-decker\", \"F079E\"),\n    BUS_ELECTRIC(\"mdi2b-bus-electric\", \"F191D\"),\n    BUS_MARKER(\"mdi2b-bus-marker\", \"F1212\"),\n    BUS_MULTIPLE(\"mdi2b-bus-multiple\", \"F0F3F\"),\n    BUS_SCHOOL(\"mdi2b-bus-school\", \"F079F\"),\n    BUS_SIDE(\"mdi2b-bus-side\", \"F07A0\"),\n    BUS_SIGN(\"mdi2b-bus-sign\", \"F1CC1\"),\n    BUS_STOP(\"mdi2b-bus-stop\", \"F1012\"),\n    BUS_STOP_COVERED(\"mdi2b-bus-stop-covered\", \"F1013\"),\n    BUS_STOP_UNCOVERED(\"mdi2b-bus-stop-uncovered\", \"F1014\"),\n    BUS_WRENCH(\"mdi2b-bus-wrench\", \"F1CC2\"),\n    BUTTERFLY(\"mdi2b-butterfly\", \"F1589\"),\n    BUTTERFLY_OUTLINE(\"mdi2b-butterfly-outline\", \"F158A\"),\n    BUTTON_CURSOR(\"mdi2b-button-cursor\", \"F1B4F\"),\n    BUTTON_POINTER(\"mdi2b-button-pointer\", \"F1B50\");\n\n    public static MaterialDesignB findByDescription(String description) {\n        for (MaterialDesignB font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignB(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignBIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignBIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2b-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignB.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignBIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignBIkonProvider implements IkonProvider<MaterialDesignB> {\n    @Override\n    public Class<MaterialDesignB> getIkon() {\n        return MaterialDesignB.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignC.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignC implements Ikon {\n    CABIN_A_FRAME(\"mdi2c-cabin-a-frame\", \"F188C\"),\n    CABLE_DATA(\"mdi2c-cable-data\", \"F1394\"),\n    CACHED(\"mdi2c-cached\", \"F00E8\"),\n    CACTUS(\"mdi2c-cactus\", \"F0DB5\"),\n    CAKE(\"mdi2c-cake\", \"F00E9\"),\n    CAKE_LAYERED(\"mdi2c-cake-layered\", \"F00EA\"),\n    CAKE_VARIANT(\"mdi2c-cake-variant\", \"F00EB\"),\n    CAKE_VARIANT_OUTLINE(\"mdi2c-cake-variant-outline\", \"F17F0\"),\n    CALCULATOR(\"mdi2c-calculator\", \"F00EC\"),\n    CALCULATOR_VARIANT(\"mdi2c-calculator-variant\", \"F0A9A\"),\n    CALCULATOR_VARIANT_OUTLINE(\"mdi2c-calculator-variant-outline\", \"F15A6\"),\n    CALENDAR(\"mdi2c-calendar\", \"F00ED\"),\n    CALENDAR_ACCOUNT(\"mdi2c-calendar-account\", \"F0ED7\"),\n    CALENDAR_ACCOUNT_OUTLINE(\"mdi2c-calendar-account-outline\", \"F0ED8\"),\n    CALENDAR_ALERT(\"mdi2c-calendar-alert\", \"F0A31\"),\n    CALENDAR_ALERT_OUTLINE(\"mdi2c-calendar-alert-outline\", \"F1B62\"),\n    CALENDAR_ARROW_LEFT(\"mdi2c-calendar-arrow-left\", \"F1134\"),\n    CALENDAR_ARROW_RIGHT(\"mdi2c-calendar-arrow-right\", \"F1135\"),\n    CALENDAR_BADGE(\"mdi2c-calendar-badge\", \"F1B9D\"),\n    CALENDAR_BADGE_OUTLINE(\"mdi2c-calendar-badge-outline\", \"F1B9E\"),\n    CALENDAR_BLANK(\"mdi2c-calendar-blank\", \"F00EE\"),\n    CALENDAR_BLANK_MULTIPLE(\"mdi2c-calendar-blank-multiple\", \"F1073\"),\n    CALENDAR_BLANK_OUTLINE(\"mdi2c-calendar-blank-outline\", \"F0B66\"),\n    CALENDAR_CHECK(\"mdi2c-calendar-check\", \"F00EF\"),\n    CALENDAR_CHECK_OUTLINE(\"mdi2c-calendar-check-outline\", \"F0C44\"),\n    CALENDAR_CLOCK(\"mdi2c-calendar-clock\", \"F00F0\"),\n    CALENDAR_CLOCK_OUTLINE(\"mdi2c-calendar-clock-outline\", \"F16E1\"),\n    CALENDAR_COLLAPSE_HORIZONTAL(\"mdi2c-calendar-collapse-horizontal\", \"F189D\"),\n    CALENDAR_COLLAPSE_HORIZONTAL_OUTLINE(\"mdi2c-calendar-collapse-horizontal-outline\", \"F1B63\"),\n    CALENDAR_CURSOR(\"mdi2c-calendar-cursor\", \"F157B\"),\n    CALENDAR_CURSOR_OUTLINE(\"mdi2c-calendar-cursor-outline\", \"F1B64\"),\n    CALENDAR_EDIT(\"mdi2c-calendar-edit\", \"F08A7\"),\n    CALENDAR_EDIT_OUTLINE(\"mdi2c-calendar-edit-outline\", \"F1B65\"),\n    CALENDAR_END(\"mdi2c-calendar-end\", \"F166C\"),\n    CALENDAR_END_OUTLINE(\"mdi2c-calendar-end-outline\", \"F1B66\"),\n    CALENDAR_EXPAND_HORIZONTAL(\"mdi2c-calendar-expand-horizontal\", \"F189E\"),\n    CALENDAR_EXPAND_HORIZONTAL_OUTLINE(\"mdi2c-calendar-expand-horizontal-outline\", \"F1B67\"),\n    CALENDAR_EXPORT(\"mdi2c-calendar-export\", \"F0B24\"),\n    CALENDAR_EXPORT_OUTLINE(\"mdi2c-calendar-export-outline\", \"F1B68\"),\n    CALENDAR_FILTER(\"mdi2c-calendar-filter\", \"F1A32\"),\n    CALENDAR_FILTER_OUTLINE(\"mdi2c-calendar-filter-outline\", \"F1A33\"),\n    CALENDAR_HEART(\"mdi2c-calendar-heart\", \"F09D2\"),\n    CALENDAR_HEART_OUTLINE(\"mdi2c-calendar-heart-outline\", \"F1B69\"),\n    CALENDAR_IMPORT(\"mdi2c-calendar-import\", \"F0B25\"),\n    CALENDAR_IMPORT_OUTLINE(\"mdi2c-calendar-import-outline\", \"F1B6A\"),\n    CALENDAR_LOCK(\"mdi2c-calendar-lock\", \"F1641\"),\n    CALENDAR_LOCK_OPEN(\"mdi2c-calendar-lock-open\", \"F1B5B\"),\n    CALENDAR_LOCK_OPEN_OUTLINE(\"mdi2c-calendar-lock-open-outline\", \"F1B5C\"),\n    CALENDAR_LOCK_OUTLINE(\"mdi2c-calendar-lock-outline\", \"F1642\"),\n    CALENDAR_MINUS(\"mdi2c-calendar-minus\", \"F0D5C\"),\n    CALENDAR_MINUS_OUTLINE(\"mdi2c-calendar-minus-outline\", \"F1B6B\"),\n    CALENDAR_MONTH(\"mdi2c-calendar-month\", \"F0E17\"),\n    CALENDAR_MONTH_OUTLINE(\"mdi2c-calendar-month-outline\", \"F0E18\"),\n    CALENDAR_MULTIPLE(\"mdi2c-calendar-multiple\", \"F00F1\"),\n    CALENDAR_MULTIPLE_CHECK(\"mdi2c-calendar-multiple-check\", \"F00F2\"),\n    CALENDAR_MULTISELECT(\"mdi2c-calendar-multiselect\", \"F0A32\"),\n    CALENDAR_MULTISELECT_OUTLINE(\"mdi2c-calendar-multiselect-outline\", \"F1B55\"),\n    CALENDAR_OUTLINE(\"mdi2c-calendar-outline\", \"F0B67\"),\n    CALENDAR_PLUS(\"mdi2c-calendar-plus\", \"F00F3\"),\n    CALENDAR_PLUS_OUTLINE(\"mdi2c-calendar-plus-outline\", \"F1B6C\"),\n    CALENDAR_QUESTION(\"mdi2c-calendar-question\", \"F0692\"),\n    CALENDAR_QUESTION_OUTLINE(\"mdi2c-calendar-question-outline\", \"F1B6D\"),\n    CALENDAR_RANGE(\"mdi2c-calendar-range\", \"F0679\"),\n    CALENDAR_RANGE_OUTLINE(\"mdi2c-calendar-range-outline\", \"F0B68\"),\n    CALENDAR_REFRESH(\"mdi2c-calendar-refresh\", \"F01E1\"),\n    CALENDAR_REFRESH_OUTLINE(\"mdi2c-calendar-refresh-outline\", \"F0203\"),\n    CALENDAR_REMOVE(\"mdi2c-calendar-remove\", \"F00F4\"),\n    CALENDAR_REMOVE_OUTLINE(\"mdi2c-calendar-remove-outline\", \"F0C45\"),\n    CALENDAR_SEARCH(\"mdi2c-calendar-search\", \"F094C\"),\n    CALENDAR_SEARCH_OUTLINE(\"mdi2c-calendar-search-outline\", \"F1B6E\"),\n    CALENDAR_STAR(\"mdi2c-calendar-star\", \"F09D3\"),\n    CALENDAR_STAR_FOUR_POINTS(\"mdi2c-calendar-star-four-points\", \"F1C1F\"),\n    CALENDAR_STAR_OUTLINE(\"mdi2c-calendar-star-outline\", \"F1B53\"),\n    CALENDAR_START(\"mdi2c-calendar-start\", \"F166D\"),\n    CALENDAR_START_OUTLINE(\"mdi2c-calendar-start-outline\", \"F1B6F\"),\n    CALENDAR_SYNC(\"mdi2c-calendar-sync\", \"F0E8E\"),\n    CALENDAR_SYNC_OUTLINE(\"mdi2c-calendar-sync-outline\", \"F0E8F\"),\n    CALENDAR_TEXT(\"mdi2c-calendar-text\", \"F00F5\"),\n    CALENDAR_TEXT_OUTLINE(\"mdi2c-calendar-text-outline\", \"F0C46\"),\n    CALENDAR_TODAY(\"mdi2c-calendar-today\", \"F00F6\"),\n    CALENDAR_TODAY_OUTLINE(\"mdi2c-calendar-today-outline\", \"F1A30\"),\n    CALENDAR_WEEK(\"mdi2c-calendar-week\", \"F0A33\"),\n    CALENDAR_WEEK_BEGIN(\"mdi2c-calendar-week-begin\", \"F0A34\"),\n    CALENDAR_WEEK_BEGIN_OUTLINE(\"mdi2c-calendar-week-begin-outline\", \"F1A31\"),\n    CALENDAR_WEEK_OUTLINE(\"mdi2c-calendar-week-outline\", \"F1A34\"),\n    CALENDAR_WEEKEND(\"mdi2c-calendar-weekend\", \"F0ED9\"),\n    CALENDAR_WEEKEND_OUTLINE(\"mdi2c-calendar-weekend-outline\", \"F0EDA\"),\n    CALL_MADE(\"mdi2c-call-made\", \"F00F7\"),\n    CALL_MERGE(\"mdi2c-call-merge\", \"F00F8\"),\n    CALL_MISSED(\"mdi2c-call-missed\", \"F00F9\"),\n    CALL_RECEIVED(\"mdi2c-call-received\", \"F00FA\"),\n    CALL_SPLIT(\"mdi2c-call-split\", \"F00FB\"),\n    CAMCORDER(\"mdi2c-camcorder\", \"F00FC\"),\n    CAMCORDER_OFF(\"mdi2c-camcorder-off\", \"F00FF\"),\n    CAMERA(\"mdi2c-camera\", \"F0100\"),\n    CAMERA_ACCOUNT(\"mdi2c-camera-account\", \"F08CB\"),\n    CAMERA_BURST(\"mdi2c-camera-burst\", \"F0693\"),\n    CAMERA_CONTROL(\"mdi2c-camera-control\", \"F0B69\"),\n    CAMERA_DOCUMENT(\"mdi2c-camera-document\", \"F1871\"),\n    CAMERA_DOCUMENT_OFF(\"mdi2c-camera-document-off\", \"F1872\"),\n    CAMERA_ENHANCE(\"mdi2c-camera-enhance\", \"F0101\"),\n    CAMERA_ENHANCE_OUTLINE(\"mdi2c-camera-enhance-outline\", \"F0B6A\"),\n    CAMERA_FLIP(\"mdi2c-camera-flip\", \"F15D9\"),\n    CAMERA_FLIP_OUTLINE(\"mdi2c-camera-flip-outline\", \"F15DA\"),\n    CAMERA_FRONT(\"mdi2c-camera-front\", \"F0102\"),\n    CAMERA_FRONT_VARIANT(\"mdi2c-camera-front-variant\", \"F0103\"),\n    CAMERA_GOPRO(\"mdi2c-camera-gopro\", \"F07A1\"),\n    CAMERA_IMAGE(\"mdi2c-camera-image\", \"F08CC\"),\n    CAMERA_IRIS(\"mdi2c-camera-iris\", \"F0104\"),\n    CAMERA_LOCK(\"mdi2c-camera-lock\", \"F1A14\"),\n    CAMERA_LOCK_OPEN(\"mdi2c-camera-lock-open\", \"F1C0D\"),\n    CAMERA_LOCK_OPEN_OUTLINE(\"mdi2c-camera-lock-open-outline\", \"F1C0E\"),\n    CAMERA_LOCK_OUTLINE(\"mdi2c-camera-lock-outline\", \"F1A15\"),\n    CAMERA_MARKER(\"mdi2c-camera-marker\", \"F19A7\"),\n    CAMERA_MARKER_OUTLINE(\"mdi2c-camera-marker-outline\", \"F19A8\"),\n    CAMERA_METERING_CENTER(\"mdi2c-camera-metering-center\", \"F07A2\"),\n    CAMERA_METERING_MATRIX(\"mdi2c-camera-metering-matrix\", \"F07A3\"),\n    CAMERA_METERING_PARTIAL(\"mdi2c-camera-metering-partial\", \"F07A4\"),\n    CAMERA_METERING_SPOT(\"mdi2c-camera-metering-spot\", \"F07A5\"),\n    CAMERA_OFF(\"mdi2c-camera-off\", \"F05DF\"),\n    CAMERA_OFF_OUTLINE(\"mdi2c-camera-off-outline\", \"F19BF\"),\n    CAMERA_OUTLINE(\"mdi2c-camera-outline\", \"F0D5D\"),\n    CAMERA_PARTY_MODE(\"mdi2c-camera-party-mode\", \"F0105\"),\n    CAMERA_PLUS(\"mdi2c-camera-plus\", \"F0EDB\"),\n    CAMERA_PLUS_OUTLINE(\"mdi2c-camera-plus-outline\", \"F0EDC\"),\n    CAMERA_REAR(\"mdi2c-camera-rear\", \"F0106\"),\n    CAMERA_REAR_VARIANT(\"mdi2c-camera-rear-variant\", \"F0107\"),\n    CAMERA_RETAKE(\"mdi2c-camera-retake\", \"F0E19\"),\n    CAMERA_RETAKE_OUTLINE(\"mdi2c-camera-retake-outline\", \"F0E1A\"),\n    CAMERA_SWITCH(\"mdi2c-camera-switch\", \"F0108\"),\n    CAMERA_SWITCH_OUTLINE(\"mdi2c-camera-switch-outline\", \"F084A\"),\n    CAMERA_TIMER(\"mdi2c-camera-timer\", \"F0109\"),\n    CAMERA_WIRELESS(\"mdi2c-camera-wireless\", \"F0DB6\"),\n    CAMERA_WIRELESS_OUTLINE(\"mdi2c-camera-wireless-outline\", \"F0DB7\"),\n    CAMPFIRE(\"mdi2c-campfire\", \"F0EDD\"),\n    CANCEL(\"mdi2c-cancel\", \"F073A\"),\n    CANDELABRA(\"mdi2c-candelabra\", \"F17D2\"),\n    CANDELABRA_FIRE(\"mdi2c-candelabra-fire\", \"F17D3\"),\n    CANDLE(\"mdi2c-candle\", \"F05E2\"),\n    CANDY(\"mdi2c-candy\", \"F1970\"),\n    CANDY_OFF(\"mdi2c-candy-off\", \"F1971\"),\n    CANDY_OFF_OUTLINE(\"mdi2c-candy-off-outline\", \"F1972\"),\n    CANDY_OUTLINE(\"mdi2c-candy-outline\", \"F1973\"),\n    CANDYCANE(\"mdi2c-candycane\", \"F010A\"),\n    CANNABIS(\"mdi2c-cannabis\", \"F07A6\"),\n    CANNABIS_OFF(\"mdi2c-cannabis-off\", \"F166E\"),\n    CAPS_LOCK(\"mdi2c-caps-lock\", \"F0A9B\"),\n    CAR(\"mdi2c-car\", \"F010B\"),\n    CAR_2_PLUS(\"mdi2c-car-2-plus\", \"F1015\"),\n    CAR_3_PLUS(\"mdi2c-car-3-plus\", \"F1016\"),\n    CAR_ARROW_LEFT(\"mdi2c-car-arrow-left\", \"F13B2\"),\n    CAR_ARROW_RIGHT(\"mdi2c-car-arrow-right\", \"F13B3\"),\n    CAR_BACK(\"mdi2c-car-back\", \"F0E1B\"),\n    CAR_BATTERY(\"mdi2c-car-battery\", \"F010C\"),\n    CAR_BRAKE_ABS(\"mdi2c-car-brake-abs\", \"F0C47\"),\n    CAR_BRAKE_ALERT(\"mdi2c-car-brake-alert\", \"F0C48\"),\n    CAR_BRAKE_FLUID_LEVEL(\"mdi2c-car-brake-fluid-level\", \"F1909\"),\n    CAR_BRAKE_HOLD(\"mdi2c-car-brake-hold\", \"F0D5E\"),\n    CAR_BRAKE_LOW_PRESSURE(\"mdi2c-car-brake-low-pressure\", \"F190A\"),\n    CAR_BRAKE_PARKING(\"mdi2c-car-brake-parking\", \"F0D5F\"),\n    CAR_BRAKE_RETARDER(\"mdi2c-car-brake-retarder\", \"F1017\"),\n    CAR_BRAKE_TEMPERATURE(\"mdi2c-car-brake-temperature\", \"F190B\"),\n    CAR_BRAKE_WORN_LININGS(\"mdi2c-car-brake-worn-linings\", \"F190C\"),\n    CAR_CHILD_SEAT(\"mdi2c-car-child-seat\", \"F0FA3\"),\n    CAR_CLOCK(\"mdi2c-car-clock\", \"F1974\"),\n    CAR_CLUTCH(\"mdi2c-car-clutch\", \"F1018\"),\n    CAR_COG(\"mdi2c-car-cog\", \"F13CC\"),\n    CAR_CONNECTED(\"mdi2c-car-connected\", \"F010D\"),\n    CAR_CONVERTIBLE(\"mdi2c-car-convertible\", \"F07A7\"),\n    CAR_COOLANT_LEVEL(\"mdi2c-car-coolant-level\", \"F1019\"),\n    CAR_CRUISE_CONTROL(\"mdi2c-car-cruise-control\", \"F0D60\"),\n    CAR_DEFROST_FRONT(\"mdi2c-car-defrost-front\", \"F0D61\"),\n    CAR_DEFROST_REAR(\"mdi2c-car-defrost-rear\", \"F0D62\"),\n    CAR_DOOR(\"mdi2c-car-door\", \"F0B6B\"),\n    CAR_DOOR_LOCK(\"mdi2c-car-door-lock\", \"F109D\"),\n    CAR_DOOR_LOCK_OPEN(\"mdi2c-car-door-lock-open\", \"F1C81\"),\n    CAR_ELECTRIC(\"mdi2c-car-electric\", \"F0B6C\"),\n    CAR_ELECTRIC_OUTLINE(\"mdi2c-car-electric-outline\", \"F15B5\"),\n    CAR_EMERGENCY(\"mdi2c-car-emergency\", \"F160F\"),\n    CAR_ESP(\"mdi2c-car-esp\", \"F0C49\"),\n    CAR_ESTATE(\"mdi2c-car-estate\", \"F07A8\"),\n    CAR_HATCHBACK(\"mdi2c-car-hatchback\", \"F07A9\"),\n    CAR_INFO(\"mdi2c-car-info\", \"F11BE\"),\n    CAR_KEY(\"mdi2c-car-key\", \"F0B6D\"),\n    CAR_LIFTED_PICKUP(\"mdi2c-car-lifted-pickup\", \"F152D\"),\n    CAR_LIGHT_ALERT(\"mdi2c-car-light-alert\", \"F190D\"),\n    CAR_LIGHT_DIMMED(\"mdi2c-car-light-dimmed\", \"F0C4A\"),\n    CAR_LIGHT_FOG(\"mdi2c-car-light-fog\", \"F0C4B\"),\n    CAR_LIGHT_HIGH(\"mdi2c-car-light-high\", \"F0C4C\"),\n    CAR_LIMOUSINE(\"mdi2c-car-limousine\", \"F08CD\"),\n    CAR_MULTIPLE(\"mdi2c-car-multiple\", \"F0B6E\"),\n    CAR_OFF(\"mdi2c-car-off\", \"F0E1C\"),\n    CAR_OUTLINE(\"mdi2c-car-outline\", \"F14ED\"),\n    CAR_PARKING_LIGHTS(\"mdi2c-car-parking-lights\", \"F0D63\"),\n    CAR_PICKUP(\"mdi2c-car-pickup\", \"F07AA\"),\n    CAR_SEARCH(\"mdi2c-car-search\", \"F1B8D\"),\n    CAR_SEARCH_OUTLINE(\"mdi2c-car-search-outline\", \"F1B8E\"),\n    CAR_SEAT(\"mdi2c-car-seat\", \"F0FA4\"),\n    CAR_SEAT_COOLER(\"mdi2c-car-seat-cooler\", \"F0FA5\"),\n    CAR_SEAT_HEATER(\"mdi2c-car-seat-heater\", \"F0FA6\"),\n    CAR_SELECT(\"mdi2c-car-select\", \"F1879\"),\n    CAR_SETTINGS(\"mdi2c-car-settings\", \"F13CD\"),\n    CAR_SHIFT_PATTERN(\"mdi2c-car-shift-pattern\", \"F0F40\"),\n    CAR_SIDE(\"mdi2c-car-side\", \"F07AB\"),\n    CAR_SPEED_LIMITER(\"mdi2c-car-speed-limiter\", \"F190E\"),\n    CAR_SPORTS(\"mdi2c-car-sports\", \"F07AC\"),\n    CAR_TIRE_ALERT(\"mdi2c-car-tire-alert\", \"F0C4D\"),\n    CAR_TRACTION_CONTROL(\"mdi2c-car-traction-control\", \"F0D64\"),\n    CAR_TURBOCHARGER(\"mdi2c-car-turbocharger\", \"F101A\"),\n    CAR_WASH(\"mdi2c-car-wash\", \"F010E\"),\n    CAR_WINDSHIELD(\"mdi2c-car-windshield\", \"F101B\"),\n    CAR_WINDSHIELD_OUTLINE(\"mdi2c-car-windshield-outline\", \"F101C\"),\n    CAR_WIRELESS(\"mdi2c-car-wireless\", \"F1878\"),\n    CAR_WRENCH(\"mdi2c-car-wrench\", \"F1814\"),\n    CARABINER(\"mdi2c-carabiner\", \"F14C0\"),\n    CARAVAN(\"mdi2c-caravan\", \"F07AD\"),\n    CARD(\"mdi2c-card\", \"F0B6F\"),\n    CARD_ACCOUNT_DETAILS(\"mdi2c-card-account-details\", \"F05D2\"),\n    CARD_ACCOUNT_DETAILS_OUTLINE(\"mdi2c-card-account-details-outline\", \"F0DAB\"),\n    CARD_ACCOUNT_DETAILS_STAR(\"mdi2c-card-account-details-star\", \"F02A3\"),\n    CARD_ACCOUNT_DETAILS_STAR_OUTLINE(\"mdi2c-card-account-details-star-outline\", \"F06DB\"),\n    CARD_ACCOUNT_MAIL(\"mdi2c-card-account-mail\", \"F018E\"),\n    CARD_ACCOUNT_MAIL_OUTLINE(\"mdi2c-card-account-mail-outline\", \"F0E98\"),\n    CARD_ACCOUNT_PHONE(\"mdi2c-card-account-phone\", \"F0E99\"),\n    CARD_ACCOUNT_PHONE_OUTLINE(\"mdi2c-card-account-phone-outline\", \"F0E9A\"),\n    CARD_BULLETED(\"mdi2c-card-bulleted\", \"F0B70\"),\n    CARD_BULLETED_OFF(\"mdi2c-card-bulleted-off\", \"F0B71\"),\n    CARD_BULLETED_OFF_OUTLINE(\"mdi2c-card-bulleted-off-outline\", \"F0B72\"),\n    CARD_BULLETED_OUTLINE(\"mdi2c-card-bulleted-outline\", \"F0B73\"),\n    CARD_BULLETED_SETTINGS(\"mdi2c-card-bulleted-settings\", \"F0B74\"),\n    CARD_BULLETED_SETTINGS_OUTLINE(\"mdi2c-card-bulleted-settings-outline\", \"F0B75\"),\n    CARD_MINUS(\"mdi2c-card-minus\", \"F1600\"),\n    CARD_MINUS_OUTLINE(\"mdi2c-card-minus-outline\", \"F1601\"),\n    CARD_MULTIPLE(\"mdi2c-card-multiple\", \"F17F1\"),\n    CARD_MULTIPLE_OUTLINE(\"mdi2c-card-multiple-outline\", \"F17F2\"),\n    CARD_OFF(\"mdi2c-card-off\", \"F1602\"),\n    CARD_OFF_OUTLINE(\"mdi2c-card-off-outline\", \"F1603\"),\n    CARD_OUTLINE(\"mdi2c-card-outline\", \"F0B76\"),\n    CARD_PLUS(\"mdi2c-card-plus\", \"F11FF\"),\n    CARD_PLUS_OUTLINE(\"mdi2c-card-plus-outline\", \"F1200\"),\n    CARD_REMOVE(\"mdi2c-card-remove\", \"F1604\"),\n    CARD_REMOVE_OUTLINE(\"mdi2c-card-remove-outline\", \"F1605\"),\n    CARD_SEARCH(\"mdi2c-card-search\", \"F1074\"),\n    CARD_SEARCH_OUTLINE(\"mdi2c-card-search-outline\", \"F1075\"),\n    CARD_TEXT(\"mdi2c-card-text\", \"F0B77\"),\n    CARD_TEXT_OUTLINE(\"mdi2c-card-text-outline\", \"F0B78\"),\n    CARDS(\"mdi2c-cards\", \"F0638\"),\n    CARDS_CLUB(\"mdi2c-cards-club\", \"F08CE\"),\n    CARDS_CLUB_OUTLINE(\"mdi2c-cards-club-outline\", \"F189F\"),\n    CARDS_DIAMOND(\"mdi2c-cards-diamond\", \"F08CF\"),\n    CARDS_DIAMOND_OUTLINE(\"mdi2c-cards-diamond-outline\", \"F101D\"),\n    CARDS_HEART(\"mdi2c-cards-heart\", \"F08D0\"),\n    CARDS_HEART_OUTLINE(\"mdi2c-cards-heart-outline\", \"F18A0\"),\n    CARDS_OUTLINE(\"mdi2c-cards-outline\", \"F0639\"),\n    CARDS_PLAYING(\"mdi2c-cards-playing\", \"F18A1\"),\n    CARDS_PLAYING_CLUB(\"mdi2c-cards-playing-club\", \"F18A2\"),\n    CARDS_PLAYING_CLUB_MULTIPLE(\"mdi2c-cards-playing-club-multiple\", \"F18A3\"),\n    CARDS_PLAYING_CLUB_MULTIPLE_OUTLINE(\"mdi2c-cards-playing-club-multiple-outline\", \"F18A4\"),\n    CARDS_PLAYING_CLUB_OUTLINE(\"mdi2c-cards-playing-club-outline\", \"F18A5\"),\n    CARDS_PLAYING_DIAMOND(\"mdi2c-cards-playing-diamond\", \"F18A6\"),\n    CARDS_PLAYING_DIAMOND_MULTIPLE(\"mdi2c-cards-playing-diamond-multiple\", \"F18A7\"),\n    CARDS_PLAYING_DIAMOND_MULTIPLE_OUTLINE(\"mdi2c-cards-playing-diamond-multiple-outline\", \"F18A8\"),\n    CARDS_PLAYING_DIAMOND_OUTLINE(\"mdi2c-cards-playing-diamond-outline\", \"F18A9\"),\n    CARDS_PLAYING_HEART(\"mdi2c-cards-playing-heart\", \"F18AA\"),\n    CARDS_PLAYING_HEART_MULTIPLE(\"mdi2c-cards-playing-heart-multiple\", \"F18AB\"),\n    CARDS_PLAYING_HEART_MULTIPLE_OUTLINE(\"mdi2c-cards-playing-heart-multiple-outline\", \"F18AC\"),\n    CARDS_PLAYING_HEART_OUTLINE(\"mdi2c-cards-playing-heart-outline\", \"F18AD\"),\n    CARDS_PLAYING_OUTLINE(\"mdi2c-cards-playing-outline\", \"F063A\"),\n    CARDS_PLAYING_SPADE(\"mdi2c-cards-playing-spade\", \"F18AE\"),\n    CARDS_PLAYING_SPADE_MULTIPLE(\"mdi2c-cards-playing-spade-multiple\", \"F18AF\"),\n    CARDS_PLAYING_SPADE_MULTIPLE_OUTLINE(\"mdi2c-cards-playing-spade-multiple-outline\", \"F18B0\"),\n    CARDS_PLAYING_SPADE_OUTLINE(\"mdi2c-cards-playing-spade-outline\", \"F18B1\"),\n    CARDS_SPADE(\"mdi2c-cards-spade\", \"F08D1\"),\n    CARDS_SPADE_OUTLINE(\"mdi2c-cards-spade-outline\", \"F18B2\"),\n    CARDS_VARIANT(\"mdi2c-cards-variant\", \"F06C7\"),\n    CARROT(\"mdi2c-carrot\", \"F010F\"),\n    CART(\"mdi2c-cart\", \"F0110\"),\n    CART_ARROW_DOWN(\"mdi2c-cart-arrow-down\", \"F0D66\"),\n    CART_ARROW_RIGHT(\"mdi2c-cart-arrow-right\", \"F0C4E\"),\n    CART_ARROW_UP(\"mdi2c-cart-arrow-up\", \"F0D67\"),\n    CART_CHECK(\"mdi2c-cart-check\", \"F15EA\"),\n    CART_HEART(\"mdi2c-cart-heart\", \"F18E0\"),\n    CART_MINUS(\"mdi2c-cart-minus\", \"F0D68\"),\n    CART_OFF(\"mdi2c-cart-off\", \"F066B\"),\n    CART_OUTLINE(\"mdi2c-cart-outline\", \"F0111\"),\n    CART_PERCENT(\"mdi2c-cart-percent\", \"F1BAE\"),\n    CART_PLUS(\"mdi2c-cart-plus\", \"F0112\"),\n    CART_REMOVE(\"mdi2c-cart-remove\", \"F0D69\"),\n    CART_VARIANT(\"mdi2c-cart-variant\", \"F15EB\"),\n    CASE_SENSITIVE_ALT(\"mdi2c-case-sensitive-alt\", \"F0113\"),\n    CASH(\"mdi2c-cash\", \"F0114\"),\n    CASH_100(\"mdi2c-cash-100\", \"F0115\"),\n    CASH_CHECK(\"mdi2c-cash-check\", \"F14EE\"),\n    CASH_CLOCK(\"mdi2c-cash-clock\", \"F1A91\"),\n    CASH_EDIT(\"mdi2c-cash-edit\", \"F1CAB\"),\n    CASH_FAST(\"mdi2c-cash-fast\", \"F185C\"),\n    CASH_LOCK(\"mdi2c-cash-lock\", \"F14EA\"),\n    CASH_LOCK_OPEN(\"mdi2c-cash-lock-open\", \"F14EB\"),\n    CASH_MARKER(\"mdi2c-cash-marker\", \"F0DB8\"),\n    CASH_MINUS(\"mdi2c-cash-minus\", \"F1260\"),\n    CASH_MULTIPLE(\"mdi2c-cash-multiple\", \"F0116\"),\n    CASH_OFF(\"mdi2c-cash-off\", \"F1C79\"),\n    CASH_PLUS(\"mdi2c-cash-plus\", \"F1261\"),\n    CASH_REFUND(\"mdi2c-cash-refund\", \"F0A9C\"),\n    CASH_REGISTER(\"mdi2c-cash-register\", \"F0CF4\"),\n    CASH_REMOVE(\"mdi2c-cash-remove\", \"F1262\"),\n    CASH_SYNC(\"mdi2c-cash-sync\", \"F1A92\"),\n    CASSETTE(\"mdi2c-cassette\", \"F09D4\"),\n    CAST(\"mdi2c-cast\", \"F0118\"),\n    CAST_AUDIO(\"mdi2c-cast-audio\", \"F101E\"),\n    CAST_AUDIO_VARIANT(\"mdi2c-cast-audio-variant\", \"F1749\"),\n    CAST_CONNECTED(\"mdi2c-cast-connected\", \"F0119\"),\n    CAST_EDUCATION(\"mdi2c-cast-education\", \"F0E1D\"),\n    CAST_OFF(\"mdi2c-cast-off\", \"F078A\"),\n    CAST_VARIANT(\"mdi2c-cast-variant\", \"F001F\"),\n    CASTLE(\"mdi2c-castle\", \"F011A\"),\n    CAT(\"mdi2c-cat\", \"F011B\"),\n    CCTV(\"mdi2c-cctv\", \"F07AE\"),\n    CCTV_OFF(\"mdi2c-cctv-off\", \"F185F\"),\n    CEILING_FAN(\"mdi2c-ceiling-fan\", \"F1797\"),\n    CEILING_FAN_LIGHT(\"mdi2c-ceiling-fan-light\", \"F1798\"),\n    CEILING_LIGHT(\"mdi2c-ceiling-light\", \"F0769\"),\n    CEILING_LIGHT_MULTIPLE(\"mdi2c-ceiling-light-multiple\", \"F18DD\"),\n    CEILING_LIGHT_MULTIPLE_OUTLINE(\"mdi2c-ceiling-light-multiple-outline\", \"F18DE\"),\n    CEILING_LIGHT_OUTLINE(\"mdi2c-ceiling-light-outline\", \"F17C7\"),\n    CELLPHONE(\"mdi2c-cellphone\", \"F011C\"),\n    CELLPHONE_ARROW_DOWN(\"mdi2c-cellphone-arrow-down\", \"F09D5\"),\n    CELLPHONE_ARROW_DOWN_VARIANT(\"mdi2c-cellphone-arrow-down-variant\", \"F19C5\"),\n    CELLPHONE_BASIC(\"mdi2c-cellphone-basic\", \"F011E\"),\n    CELLPHONE_CHARGING(\"mdi2c-cellphone-charging\", \"F1397\"),\n    CELLPHONE_CHECK(\"mdi2c-cellphone-check\", \"F17FD\"),\n    CELLPHONE_COG(\"mdi2c-cellphone-cog\", \"F0951\"),\n    CELLPHONE_DOCK(\"mdi2c-cellphone-dock\", \"F011F\"),\n    CELLPHONE_INFORMATION(\"mdi2c-cellphone-information\", \"F0F41\"),\n    CELLPHONE_KEY(\"mdi2c-cellphone-key\", \"F094E\"),\n    CELLPHONE_LINK(\"mdi2c-cellphone-link\", \"F0121\"),\n    CELLPHONE_LINK_OFF(\"mdi2c-cellphone-link-off\", \"F0122\"),\n    CELLPHONE_LOCK(\"mdi2c-cellphone-lock\", \"F094F\"),\n    CELLPHONE_MARKER(\"mdi2c-cellphone-marker\", \"F183A\"),\n    CELLPHONE_MESSAGE(\"mdi2c-cellphone-message\", \"F08D3\"),\n    CELLPHONE_MESSAGE_OFF(\"mdi2c-cellphone-message-off\", \"F10D2\"),\n    CELLPHONE_NFC(\"mdi2c-cellphone-nfc\", \"F0E90\"),\n    CELLPHONE_NFC_OFF(\"mdi2c-cellphone-nfc-off\", \"F12D8\"),\n    CELLPHONE_OFF(\"mdi2c-cellphone-off\", \"F0950\"),\n    CELLPHONE_PLAY(\"mdi2c-cellphone-play\", \"F101F\"),\n    CELLPHONE_REMOVE(\"mdi2c-cellphone-remove\", \"F094D\"),\n    CELLPHONE_SCREENSHOT(\"mdi2c-cellphone-screenshot\", \"F0A35\"),\n    CELLPHONE_SETTINGS(\"mdi2c-cellphone-settings\", \"F0123\"),\n    CELLPHONE_SOUND(\"mdi2c-cellphone-sound\", \"F0952\"),\n    CELLPHONE_TEXT(\"mdi2c-cellphone-text\", \"F08D2\"),\n    CELLPHONE_WIRELESS(\"mdi2c-cellphone-wireless\", \"F0815\"),\n    CENTOS(\"mdi2c-centos\", \"F111A\"),\n    CERTIFICATE(\"mdi2c-certificate\", \"F0124\"),\n    CERTIFICATE_OUTLINE(\"mdi2c-certificate-outline\", \"F1188\"),\n    CHAIR_ROLLING(\"mdi2c-chair-rolling\", \"F0F48\"),\n    CHAIR_SCHOOL(\"mdi2c-chair-school\", \"F0125\"),\n    CHANDELIER(\"mdi2c-chandelier\", \"F1793\"),\n    CHARITY(\"mdi2c-charity\", \"F0C4F\"),\n    CHARITY_SEARCH(\"mdi2c-charity-search\", \"F1C82\"),\n    CHART_ARC(\"mdi2c-chart-arc\", \"F0126\"),\n    CHART_AREASPLINE(\"mdi2c-chart-areaspline\", \"F0127\"),\n    CHART_AREASPLINE_VARIANT(\"mdi2c-chart-areaspline-variant\", \"F0E91\"),\n    CHART_BAR(\"mdi2c-chart-bar\", \"F0128\"),\n    CHART_BAR_STACKED(\"mdi2c-chart-bar-stacked\", \"F076A\"),\n    CHART_BELL_CURVE(\"mdi2c-chart-bell-curve\", \"F0C50\"),\n    CHART_BELL_CURVE_CUMULATIVE(\"mdi2c-chart-bell-curve-cumulative\", \"F0FA7\"),\n    CHART_BOX(\"mdi2c-chart-box\", \"F154D\"),\n    CHART_BOX_MULTIPLE(\"mdi2c-chart-box-multiple\", \"F1CCD\"),\n    CHART_BOX_MULTIPLE_OUTLINE(\"mdi2c-chart-box-multiple-outline\", \"F1CCE\"),\n    CHART_BOX_OUTLINE(\"mdi2c-chart-box-outline\", \"F154E\"),\n    CHART_BOX_PLUS_OUTLINE(\"mdi2c-chart-box-plus-outline\", \"F154F\"),\n    CHART_BUBBLE(\"mdi2c-chart-bubble\", \"F05E3\"),\n    CHART_DONUT(\"mdi2c-chart-donut\", \"F07AF\"),\n    CHART_DONUT_VARIANT(\"mdi2c-chart-donut-variant\", \"F07B0\"),\n    CHART_GANTT(\"mdi2c-chart-gantt\", \"F066C\"),\n    CHART_HISTOGRAM(\"mdi2c-chart-histogram\", \"F0129\"),\n    CHART_LINE(\"mdi2c-chart-line\", \"F012A\"),\n    CHART_LINE_STACKED(\"mdi2c-chart-line-stacked\", \"F076B\"),\n    CHART_LINE_VARIANT(\"mdi2c-chart-line-variant\", \"F07B1\"),\n    CHART_MULTILINE(\"mdi2c-chart-multiline\", \"F08D4\"),\n    CHART_MULTIPLE(\"mdi2c-chart-multiple\", \"F1213\"),\n    CHART_PIE(\"mdi2c-chart-pie\", \"F012B\"),\n    CHART_PIE_OUTLINE(\"mdi2c-chart-pie-outline\", \"F1BDF\"),\n    CHART_PPF(\"mdi2c-chart-ppf\", \"F1380\"),\n    CHART_SANKEY(\"mdi2c-chart-sankey\", \"F11DF\"),\n    CHART_SANKEY_VARIANT(\"mdi2c-chart-sankey-variant\", \"F11E0\"),\n    CHART_SCATTER_PLOT(\"mdi2c-chart-scatter-plot\", \"F0E92\"),\n    CHART_SCATTER_PLOT_HEXBIN(\"mdi2c-chart-scatter-plot-hexbin\", \"F066D\"),\n    CHART_TIMELINE(\"mdi2c-chart-timeline\", \"F066E\"),\n    CHART_TIMELINE_VARIANT(\"mdi2c-chart-timeline-variant\", \"F0E93\"),\n    CHART_TIMELINE_VARIANT_SHIMMER(\"mdi2c-chart-timeline-variant-shimmer\", \"F15B6\"),\n    CHART_TREE(\"mdi2c-chart-tree\", \"F0E94\"),\n    CHART_WATERFALL(\"mdi2c-chart-waterfall\", \"F1918\"),\n    CHAT(\"mdi2c-chat\", \"F0B79\"),\n    CHAT_ALERT(\"mdi2c-chat-alert\", \"F0B7A\"),\n    CHAT_ALERT_OUTLINE(\"mdi2c-chat-alert-outline\", \"F12C9\"),\n    CHAT_MINUS(\"mdi2c-chat-minus\", \"F1410\"),\n    CHAT_MINUS_OUTLINE(\"mdi2c-chat-minus-outline\", \"F1413\"),\n    CHAT_OUTLINE(\"mdi2c-chat-outline\", \"F0EDE\"),\n    CHAT_PLUS(\"mdi2c-chat-plus\", \"F140F\"),\n    CHAT_PLUS_OUTLINE(\"mdi2c-chat-plus-outline\", \"F1412\"),\n    CHAT_PROCESSING(\"mdi2c-chat-processing\", \"F0B7B\"),\n    CHAT_PROCESSING_OUTLINE(\"mdi2c-chat-processing-outline\", \"F12CA\"),\n    CHAT_QUESTION(\"mdi2c-chat-question\", \"F1738\"),\n    CHAT_QUESTION_OUTLINE(\"mdi2c-chat-question-outline\", \"F1739\"),\n    CHAT_REMOVE(\"mdi2c-chat-remove\", \"F1411\"),\n    CHAT_REMOVE_OUTLINE(\"mdi2c-chat-remove-outline\", \"F1414\"),\n    CHAT_SLEEP(\"mdi2c-chat-sleep\", \"F12D1\"),\n    CHAT_SLEEP_OUTLINE(\"mdi2c-chat-sleep-outline\", \"F12D2\"),\n    CHECK(\"mdi2c-check\", \"F012C\"),\n    CHECK_ALL(\"mdi2c-check-all\", \"F012D\"),\n    CHECK_BOLD(\"mdi2c-check-bold\", \"F0E1E\"),\n    CHECK_CIRCLE(\"mdi2c-check-circle\", \"F05E0\"),\n    CHECK_CIRCLE_OUTLINE(\"mdi2c-check-circle-outline\", \"F05E1\"),\n    CHECK_DECAGRAM(\"mdi2c-check-decagram\", \"F0791\"),\n    CHECK_DECAGRAM_OUTLINE(\"mdi2c-check-decagram-outline\", \"F1740\"),\n    CHECK_NETWORK(\"mdi2c-check-network\", \"F0C53\"),\n    CHECK_NETWORK_OUTLINE(\"mdi2c-check-network-outline\", \"F0C54\"),\n    CHECK_OUTLINE(\"mdi2c-check-outline\", \"F0855\"),\n    CHECK_UNDERLINE(\"mdi2c-check-underline\", \"F0E1F\"),\n    CHECK_UNDERLINE_CIRCLE(\"mdi2c-check-underline-circle\", \"F0E20\"),\n    CHECK_UNDERLINE_CIRCLE_OUTLINE(\"mdi2c-check-underline-circle-outline\", \"F0E21\"),\n    CHECKBOOK(\"mdi2c-checkbook\", \"F0A9D\"),\n    CHECKBOOK_ARROW_LEFT(\"mdi2c-checkbook-arrow-left\", \"F1C1D\"),\n    CHECKBOOK_ARROW_RIGHT(\"mdi2c-checkbook-arrow-right\", \"F1C1E\"),\n    CHECKBOX_BLANK(\"mdi2c-checkbox-blank\", \"F012E\"),\n    CHECKBOX_BLANK_BADGE(\"mdi2c-checkbox-blank-badge\", \"F1176\"),\n    CHECKBOX_BLANK_BADGE_OUTLINE(\"mdi2c-checkbox-blank-badge-outline\", \"F0117\"),\n    CHECKBOX_BLANK_CIRCLE(\"mdi2c-checkbox-blank-circle\", \"F012F\"),\n    CHECKBOX_BLANK_CIRCLE_OUTLINE(\"mdi2c-checkbox-blank-circle-outline\", \"F0130\"),\n    CHECKBOX_BLANK_OFF(\"mdi2c-checkbox-blank-off\", \"F12EC\"),\n    CHECKBOX_BLANK_OFF_OUTLINE(\"mdi2c-checkbox-blank-off-outline\", \"F12ED\"),\n    CHECKBOX_BLANK_OUTLINE(\"mdi2c-checkbox-blank-outline\", \"F0131\"),\n    CHECKBOX_INTERMEDIATE(\"mdi2c-checkbox-intermediate\", \"F0856\"),\n    CHECKBOX_INTERMEDIATE_VARIANT(\"mdi2c-checkbox-intermediate-variant\", \"F1B54\"),\n    CHECKBOX_MARKED(\"mdi2c-checkbox-marked\", \"F0132\"),\n    CHECKBOX_MARKED_CIRCLE(\"mdi2c-checkbox-marked-circle\", \"F0133\"),\n    CHECKBOX_MARKED_CIRCLE_AUTO_OUTLINE(\"mdi2c-checkbox-marked-circle-auto-outline\", \"F1C26\"),\n    CHECKBOX_MARKED_CIRCLE_MINUS_OUTLINE(\"mdi2c-checkbox-marked-circle-minus-outline\", \"F1C27\"),\n    CHECKBOX_MARKED_CIRCLE_OUTLINE(\"mdi2c-checkbox-marked-circle-outline\", \"F0134\"),\n    CHECKBOX_MARKED_CIRCLE_PLUS_OUTLINE(\"mdi2c-checkbox-marked-circle-plus-outline\", \"F1927\"),\n    CHECKBOX_MARKED_OUTLINE(\"mdi2c-checkbox-marked-outline\", \"F0135\"),\n    CHECKBOX_MULTIPLE_BLANK(\"mdi2c-checkbox-multiple-blank\", \"F0136\"),\n    CHECKBOX_MULTIPLE_BLANK_CIRCLE(\"mdi2c-checkbox-multiple-blank-circle\", \"F063B\"),\n    CHECKBOX_MULTIPLE_BLANK_CIRCLE_OUTLINE(\"mdi2c-checkbox-multiple-blank-circle-outline\", \"F063C\"),\n    CHECKBOX_MULTIPLE_BLANK_OUTLINE(\"mdi2c-checkbox-multiple-blank-outline\", \"F0137\"),\n    CHECKBOX_MULTIPLE_MARKED(\"mdi2c-checkbox-multiple-marked\", \"F0138\"),\n    CHECKBOX_MULTIPLE_MARKED_CIRCLE(\"mdi2c-checkbox-multiple-marked-circle\", \"F063D\"),\n    CHECKBOX_MULTIPLE_MARKED_CIRCLE_OUTLINE(\"mdi2c-checkbox-multiple-marked-circle-outline\", \"F063E\"),\n    CHECKBOX_MULTIPLE_MARKED_OUTLINE(\"mdi2c-checkbox-multiple-marked-outline\", \"F0139\"),\n    CHECKBOX_MULTIPLE_OUTLINE(\"mdi2c-checkbox-multiple-outline\", \"F0C51\"),\n    CHECKBOX_OUTLINE(\"mdi2c-checkbox-outline\", \"F0C52\"),\n    CHECKERBOARD(\"mdi2c-checkerboard\", \"F013A\"),\n    CHECKERBOARD_MINUS(\"mdi2c-checkerboard-minus\", \"F1202\"),\n    CHECKERBOARD_PLUS(\"mdi2c-checkerboard-plus\", \"F1201\"),\n    CHECKERBOARD_REMOVE(\"mdi2c-checkerboard-remove\", \"F1203\"),\n    CHEESE(\"mdi2c-cheese\", \"F12B9\"),\n    CHEESE_OFF(\"mdi2c-cheese-off\", \"F13EE\"),\n    CHEF_HAT(\"mdi2c-chef-hat\", \"F0B7C\"),\n    CHEMICAL_WEAPON(\"mdi2c-chemical-weapon\", \"F013B\"),\n    CHESS_BISHOP(\"mdi2c-chess-bishop\", \"F085C\"),\n    CHESS_KING(\"mdi2c-chess-king\", \"F0857\"),\n    CHESS_KNIGHT(\"mdi2c-chess-knight\", \"F0858\"),\n    CHESS_PAWN(\"mdi2c-chess-pawn\", \"F0859\"),\n    CHESS_QUEEN(\"mdi2c-chess-queen\", \"F085A\"),\n    CHESS_ROOK(\"mdi2c-chess-rook\", \"F085B\"),\n    CHEVRON_DOUBLE_DOWN(\"mdi2c-chevron-double-down\", \"F013C\"),\n    CHEVRON_DOUBLE_LEFT(\"mdi2c-chevron-double-left\", \"F013D\"),\n    CHEVRON_DOUBLE_RIGHT(\"mdi2c-chevron-double-right\", \"F013E\"),\n    CHEVRON_DOUBLE_UP(\"mdi2c-chevron-double-up\", \"F013F\"),\n    CHEVRON_DOWN(\"mdi2c-chevron-down\", \"F0140\"),\n    CHEVRON_DOWN_BOX(\"mdi2c-chevron-down-box\", \"F09D6\"),\n    CHEVRON_DOWN_BOX_OUTLINE(\"mdi2c-chevron-down-box-outline\", \"F09D7\"),\n    CHEVRON_DOWN_CIRCLE(\"mdi2c-chevron-down-circle\", \"F0B26\"),\n    CHEVRON_DOWN_CIRCLE_OUTLINE(\"mdi2c-chevron-down-circle-outline\", \"F0B27\"),\n    CHEVRON_LEFT(\"mdi2c-chevron-left\", \"F0141\"),\n    CHEVRON_LEFT_BOX(\"mdi2c-chevron-left-box\", \"F09D8\"),\n    CHEVRON_LEFT_BOX_OUTLINE(\"mdi2c-chevron-left-box-outline\", \"F09D9\"),\n    CHEVRON_LEFT_CIRCLE(\"mdi2c-chevron-left-circle\", \"F0B28\"),\n    CHEVRON_LEFT_CIRCLE_OUTLINE(\"mdi2c-chevron-left-circle-outline\", \"F0B29\"),\n    CHEVRON_RIGHT(\"mdi2c-chevron-right\", \"F0142\"),\n    CHEVRON_RIGHT_BOX(\"mdi2c-chevron-right-box\", \"F09DA\"),\n    CHEVRON_RIGHT_BOX_OUTLINE(\"mdi2c-chevron-right-box-outline\", \"F09DB\"),\n    CHEVRON_RIGHT_CIRCLE(\"mdi2c-chevron-right-circle\", \"F0B2A\"),\n    CHEVRON_RIGHT_CIRCLE_OUTLINE(\"mdi2c-chevron-right-circle-outline\", \"F0B2B\"),\n    CHEVRON_TRIPLE_DOWN(\"mdi2c-chevron-triple-down\", \"F0DB9\"),\n    CHEVRON_TRIPLE_LEFT(\"mdi2c-chevron-triple-left\", \"F0DBA\"),\n    CHEVRON_TRIPLE_RIGHT(\"mdi2c-chevron-triple-right\", \"F0DBB\"),\n    CHEVRON_TRIPLE_UP(\"mdi2c-chevron-triple-up\", \"F0DBC\"),\n    CHEVRON_UP(\"mdi2c-chevron-up\", \"F0143\"),\n    CHEVRON_UP_BOX(\"mdi2c-chevron-up-box\", \"F09DC\"),\n    CHEVRON_UP_BOX_OUTLINE(\"mdi2c-chevron-up-box-outline\", \"F09DD\"),\n    CHEVRON_UP_CIRCLE(\"mdi2c-chevron-up-circle\", \"F0B2C\"),\n    CHEVRON_UP_CIRCLE_OUTLINE(\"mdi2c-chevron-up-circle-outline\", \"F0B2D\"),\n    CHILI_ALERT(\"mdi2c-chili-alert\", \"F17EA\"),\n    CHILI_ALERT_OUTLINE(\"mdi2c-chili-alert-outline\", \"F17EB\"),\n    CHILI_HOT(\"mdi2c-chili-hot\", \"F07B2\"),\n    CHILI_HOT_OUTLINE(\"mdi2c-chili-hot-outline\", \"F17EC\"),\n    CHILI_MEDIUM(\"mdi2c-chili-medium\", \"F07B3\"),\n    CHILI_MEDIUM_OUTLINE(\"mdi2c-chili-medium-outline\", \"F17ED\"),\n    CHILI_MILD(\"mdi2c-chili-mild\", \"F07B4\"),\n    CHILI_MILD_OUTLINE(\"mdi2c-chili-mild-outline\", \"F17EE\"),\n    CHILI_OFF(\"mdi2c-chili-off\", \"F1467\"),\n    CHILI_OFF_OUTLINE(\"mdi2c-chili-off-outline\", \"F17EF\"),\n    CHIP(\"mdi2c-chip\", \"F061A\"),\n    CHURCH(\"mdi2c-church\", \"F0144\"),\n    CHURCH_OUTLINE(\"mdi2c-church-outline\", \"F1B02\"),\n    CIGAR(\"mdi2c-cigar\", \"F1189\"),\n    CIGAR_OFF(\"mdi2c-cigar-off\", \"F141B\"),\n    CIRCLE(\"mdi2c-circle\", \"F0765\"),\n    CIRCLE_BOX(\"mdi2c-circle-box\", \"F15DC\"),\n    CIRCLE_BOX_OUTLINE(\"mdi2c-circle-box-outline\", \"F15DD\"),\n    CIRCLE_DOUBLE(\"mdi2c-circle-double\", \"F0E95\"),\n    CIRCLE_EDIT_OUTLINE(\"mdi2c-circle-edit-outline\", \"F08D5\"),\n    CIRCLE_EXPAND(\"mdi2c-circle-expand\", \"F0E96\"),\n    CIRCLE_HALF(\"mdi2c-circle-half\", \"F1395\"),\n    CIRCLE_HALF_FULL(\"mdi2c-circle-half-full\", \"F1396\"),\n    CIRCLE_MEDIUM(\"mdi2c-circle-medium\", \"F09DE\"),\n    CIRCLE_MULTIPLE(\"mdi2c-circle-multiple\", \"F0B38\"),\n    CIRCLE_MULTIPLE_OUTLINE(\"mdi2c-circle-multiple-outline\", \"F0695\"),\n    CIRCLE_OFF_OUTLINE(\"mdi2c-circle-off-outline\", \"F10D3\"),\n    CIRCLE_OPACITY(\"mdi2c-circle-opacity\", \"F1853\"),\n    CIRCLE_OUTLINE(\"mdi2c-circle-outline\", \"F0766\"),\n    CIRCLE_SLICE_1(\"mdi2c-circle-slice-1\", \"F0A9E\"),\n    CIRCLE_SLICE_2(\"mdi2c-circle-slice-2\", \"F0A9F\"),\n    CIRCLE_SLICE_3(\"mdi2c-circle-slice-3\", \"F0AA0\"),\n    CIRCLE_SLICE_4(\"mdi2c-circle-slice-4\", \"F0AA1\"),\n    CIRCLE_SLICE_5(\"mdi2c-circle-slice-5\", \"F0AA2\"),\n    CIRCLE_SLICE_6(\"mdi2c-circle-slice-6\", \"F0AA3\"),\n    CIRCLE_SLICE_7(\"mdi2c-circle-slice-7\", \"F0AA4\"),\n    CIRCLE_SLICE_8(\"mdi2c-circle-slice-8\", \"F0AA5\"),\n    CIRCLE_SMALL(\"mdi2c-circle-small\", \"F09DF\"),\n    CIRCULAR_SAW(\"mdi2c-circular-saw\", \"F0E22\"),\n    CITY(\"mdi2c-city\", \"F0146\"),\n    CITY_SWITCH(\"mdi2c-city-switch\", \"F1C28\"),\n    CITY_VARIANT(\"mdi2c-city-variant\", \"F0A36\"),\n    CITY_VARIANT_OUTLINE(\"mdi2c-city-variant-outline\", \"F0A37\"),\n    CLIPBOARD(\"mdi2c-clipboard\", \"F0147\"),\n    CLIPBOARD_ACCOUNT(\"mdi2c-clipboard-account\", \"F0148\"),\n    CLIPBOARD_ACCOUNT_OUTLINE(\"mdi2c-clipboard-account-outline\", \"F0C55\"),\n    CLIPBOARD_ALERT(\"mdi2c-clipboard-alert\", \"F0149\"),\n    CLIPBOARD_ALERT_OUTLINE(\"mdi2c-clipboard-alert-outline\", \"F0CF7\"),\n    CLIPBOARD_ARROW_DOWN(\"mdi2c-clipboard-arrow-down\", \"F014A\"),\n    CLIPBOARD_ARROW_DOWN_OUTLINE(\"mdi2c-clipboard-arrow-down-outline\", \"F0C56\"),\n    CLIPBOARD_ARROW_LEFT(\"mdi2c-clipboard-arrow-left\", \"F014B\"),\n    CLIPBOARD_ARROW_LEFT_OUTLINE(\"mdi2c-clipboard-arrow-left-outline\", \"F0CF8\"),\n    CLIPBOARD_ARROW_RIGHT(\"mdi2c-clipboard-arrow-right\", \"F0CF9\"),\n    CLIPBOARD_ARROW_RIGHT_OUTLINE(\"mdi2c-clipboard-arrow-right-outline\", \"F0CFA\"),\n    CLIPBOARD_ARROW_UP(\"mdi2c-clipboard-arrow-up\", \"F0C57\"),\n    CLIPBOARD_ARROW_UP_OUTLINE(\"mdi2c-clipboard-arrow-up-outline\", \"F0C58\"),\n    CLIPBOARD_CHECK(\"mdi2c-clipboard-check\", \"F014E\"),\n    CLIPBOARD_CHECK_MULTIPLE(\"mdi2c-clipboard-check-multiple\", \"F1263\"),\n    CLIPBOARD_CHECK_MULTIPLE_OUTLINE(\"mdi2c-clipboard-check-multiple-outline\", \"F1264\"),\n    CLIPBOARD_CHECK_OUTLINE(\"mdi2c-clipboard-check-outline\", \"F08A8\"),\n    CLIPBOARD_CLOCK(\"mdi2c-clipboard-clock\", \"F16E2\"),\n    CLIPBOARD_CLOCK_OUTLINE(\"mdi2c-clipboard-clock-outline\", \"F16E3\"),\n    CLIPBOARD_EDIT(\"mdi2c-clipboard-edit\", \"F14E5\"),\n    CLIPBOARD_EDIT_OUTLINE(\"mdi2c-clipboard-edit-outline\", \"F14E6\"),\n    CLIPBOARD_FILE(\"mdi2c-clipboard-file\", \"F1265\"),\n    CLIPBOARD_FILE_OUTLINE(\"mdi2c-clipboard-file-outline\", \"F1266\"),\n    CLIPBOARD_FLOW(\"mdi2c-clipboard-flow\", \"F06C8\"),\n    CLIPBOARD_FLOW_OUTLINE(\"mdi2c-clipboard-flow-outline\", \"F1117\"),\n    CLIPBOARD_LIST(\"mdi2c-clipboard-list\", \"F10D4\"),\n    CLIPBOARD_LIST_OUTLINE(\"mdi2c-clipboard-list-outline\", \"F10D5\"),\n    CLIPBOARD_MINUS(\"mdi2c-clipboard-minus\", \"F1618\"),\n    CLIPBOARD_MINUS_OUTLINE(\"mdi2c-clipboard-minus-outline\", \"F1619\"),\n    CLIPBOARD_MULTIPLE(\"mdi2c-clipboard-multiple\", \"F1267\"),\n    CLIPBOARD_MULTIPLE_OUTLINE(\"mdi2c-clipboard-multiple-outline\", \"F1268\"),\n    CLIPBOARD_OFF(\"mdi2c-clipboard-off\", \"F161A\"),\n    CLIPBOARD_OFF_OUTLINE(\"mdi2c-clipboard-off-outline\", \"F161B\"),\n    CLIPBOARD_OUTLINE(\"mdi2c-clipboard-outline\", \"F014C\"),\n    CLIPBOARD_PLAY(\"mdi2c-clipboard-play\", \"F0C59\"),\n    CLIPBOARD_PLAY_MULTIPLE(\"mdi2c-clipboard-play-multiple\", \"F1269\"),\n    CLIPBOARD_PLAY_MULTIPLE_OUTLINE(\"mdi2c-clipboard-play-multiple-outline\", \"F126A\"),\n    CLIPBOARD_PLAY_OUTLINE(\"mdi2c-clipboard-play-outline\", \"F0C5A\"),\n    CLIPBOARD_PLUS(\"mdi2c-clipboard-plus\", \"F0751\"),\n    CLIPBOARD_PLUS_OUTLINE(\"mdi2c-clipboard-plus-outline\", \"F131F\"),\n    CLIPBOARD_PULSE(\"mdi2c-clipboard-pulse\", \"F085D\"),\n    CLIPBOARD_PULSE_OUTLINE(\"mdi2c-clipboard-pulse-outline\", \"F085E\"),\n    CLIPBOARD_REMOVE(\"mdi2c-clipboard-remove\", \"F161C\"),\n    CLIPBOARD_REMOVE_OUTLINE(\"mdi2c-clipboard-remove-outline\", \"F161D\"),\n    CLIPBOARD_SEARCH(\"mdi2c-clipboard-search\", \"F161E\"),\n    CLIPBOARD_SEARCH_OUTLINE(\"mdi2c-clipboard-search-outline\", \"F161F\"),\n    CLIPBOARD_TEXT(\"mdi2c-clipboard-text\", \"F014D\"),\n    CLIPBOARD_TEXT_CLOCK(\"mdi2c-clipboard-text-clock\", \"F18F9\"),\n    CLIPBOARD_TEXT_CLOCK_OUTLINE(\"mdi2c-clipboard-text-clock-outline\", \"F18FA\"),\n    CLIPBOARD_TEXT_MULTIPLE(\"mdi2c-clipboard-text-multiple\", \"F126B\"),\n    CLIPBOARD_TEXT_MULTIPLE_OUTLINE(\"mdi2c-clipboard-text-multiple-outline\", \"F126C\"),\n    CLIPBOARD_TEXT_OFF(\"mdi2c-clipboard-text-off\", \"F1620\"),\n    CLIPBOARD_TEXT_OFF_OUTLINE(\"mdi2c-clipboard-text-off-outline\", \"F1621\"),\n    CLIPBOARD_TEXT_OUTLINE(\"mdi2c-clipboard-text-outline\", \"F0A38\"),\n    CLIPBOARD_TEXT_PLAY(\"mdi2c-clipboard-text-play\", \"F0C5B\"),\n    CLIPBOARD_TEXT_PLAY_OUTLINE(\"mdi2c-clipboard-text-play-outline\", \"F0C5C\"),\n    CLIPBOARD_TEXT_SEARCH(\"mdi2c-clipboard-text-search\", \"F1622\"),\n    CLIPBOARD_TEXT_SEARCH_OUTLINE(\"mdi2c-clipboard-text-search-outline\", \"F1623\"),\n    CLIPPY(\"mdi2c-clippy\", \"F014F\"),\n    CLOCK(\"mdi2c-clock\", \"F0954\"),\n    CLOCK_ALERT(\"mdi2c-clock-alert\", \"F0955\"),\n    CLOCK_ALERT_OUTLINE(\"mdi2c-clock-alert-outline\", \"F05CE\"),\n    CLOCK_CHECK(\"mdi2c-clock-check\", \"F0FA8\"),\n    CLOCK_CHECK_OUTLINE(\"mdi2c-clock-check-outline\", \"F0FA9\"),\n    CLOCK_DIGITAL(\"mdi2c-clock-digital\", \"F0E97\"),\n    CLOCK_EDIT(\"mdi2c-clock-edit\", \"F19BA\"),\n    CLOCK_EDIT_OUTLINE(\"mdi2c-clock-edit-outline\", \"F19BB\"),\n    CLOCK_END(\"mdi2c-clock-end\", \"F0151\"),\n    CLOCK_FAST(\"mdi2c-clock-fast\", \"F0152\"),\n    CLOCK_IN(\"mdi2c-clock-in\", \"F0153\"),\n    CLOCK_MINUS(\"mdi2c-clock-minus\", \"F1863\"),\n    CLOCK_MINUS_OUTLINE(\"mdi2c-clock-minus-outline\", \"F1864\"),\n    CLOCK_OUT(\"mdi2c-clock-out\", \"F0154\"),\n    CLOCK_OUTLINE(\"mdi2c-clock-outline\", \"F0150\"),\n    CLOCK_PLUS(\"mdi2c-clock-plus\", \"F1861\"),\n    CLOCK_PLUS_OUTLINE(\"mdi2c-clock-plus-outline\", \"F1862\"),\n    CLOCK_REMOVE(\"mdi2c-clock-remove\", \"F1865\"),\n    CLOCK_REMOVE_OUTLINE(\"mdi2c-clock-remove-outline\", \"F1866\"),\n    CLOCK_STAR_FOUR_POINTS(\"mdi2c-clock-star-four-points\", \"F1C29\"),\n    CLOCK_STAR_FOUR_POINTS_OUTLINE(\"mdi2c-clock-star-four-points-outline\", \"F1C2A\"),\n    CLOCK_START(\"mdi2c-clock-start\", \"F0155\"),\n    CLOCK_TIME_EIGHT(\"mdi2c-clock-time-eight\", \"F1446\"),\n    CLOCK_TIME_EIGHT_OUTLINE(\"mdi2c-clock-time-eight-outline\", \"F1452\"),\n    CLOCK_TIME_ELEVEN(\"mdi2c-clock-time-eleven\", \"F1449\"),\n    CLOCK_TIME_ELEVEN_OUTLINE(\"mdi2c-clock-time-eleven-outline\", \"F1455\"),\n    CLOCK_TIME_FIVE(\"mdi2c-clock-time-five\", \"F1443\"),\n    CLOCK_TIME_FIVE_OUTLINE(\"mdi2c-clock-time-five-outline\", \"F144F\"),\n    CLOCK_TIME_FOUR(\"mdi2c-clock-time-four\", \"F1442\"),\n    CLOCK_TIME_FOUR_OUTLINE(\"mdi2c-clock-time-four-outline\", \"F144E\"),\n    CLOCK_TIME_NINE(\"mdi2c-clock-time-nine\", \"F1447\"),\n    CLOCK_TIME_NINE_OUTLINE(\"mdi2c-clock-time-nine-outline\", \"F1453\"),\n    CLOCK_TIME_ONE(\"mdi2c-clock-time-one\", \"F143F\"),\n    CLOCK_TIME_ONE_OUTLINE(\"mdi2c-clock-time-one-outline\", \"F144B\"),\n    CLOCK_TIME_SEVEN(\"mdi2c-clock-time-seven\", \"F1445\"),\n    CLOCK_TIME_SEVEN_OUTLINE(\"mdi2c-clock-time-seven-outline\", \"F1451\"),\n    CLOCK_TIME_SIX(\"mdi2c-clock-time-six\", \"F1444\"),\n    CLOCK_TIME_SIX_OUTLINE(\"mdi2c-clock-time-six-outline\", \"F1450\"),\n    CLOCK_TIME_TEN(\"mdi2c-clock-time-ten\", \"F1448\"),\n    CLOCK_TIME_TEN_OUTLINE(\"mdi2c-clock-time-ten-outline\", \"F1454\"),\n    CLOCK_TIME_THREE(\"mdi2c-clock-time-three\", \"F1441\"),\n    CLOCK_TIME_THREE_OUTLINE(\"mdi2c-clock-time-three-outline\", \"F144D\"),\n    CLOCK_TIME_TWELVE(\"mdi2c-clock-time-twelve\", \"F144A\"),\n    CLOCK_TIME_TWELVE_OUTLINE(\"mdi2c-clock-time-twelve-outline\", \"F1456\"),\n    CLOCK_TIME_TWO(\"mdi2c-clock-time-two\", \"F1440\"),\n    CLOCK_TIME_TWO_OUTLINE(\"mdi2c-clock-time-two-outline\", \"F144C\"),\n    CLOSE(\"mdi2c-close\", \"F0156\"),\n    CLOSE_BOX(\"mdi2c-close-box\", \"F0157\"),\n    CLOSE_BOX_MULTIPLE(\"mdi2c-close-box-multiple\", \"F0C5D\"),\n    CLOSE_BOX_MULTIPLE_OUTLINE(\"mdi2c-close-box-multiple-outline\", \"F0C5E\"),\n    CLOSE_BOX_OUTLINE(\"mdi2c-close-box-outline\", \"F0158\"),\n    CLOSE_CIRCLE(\"mdi2c-close-circle\", \"F0159\"),\n    CLOSE_CIRCLE_MULTIPLE(\"mdi2c-close-circle-multiple\", \"F062A\"),\n    CLOSE_CIRCLE_MULTIPLE_OUTLINE(\"mdi2c-close-circle-multiple-outline\", \"F0883\"),\n    CLOSE_CIRCLE_OUTLINE(\"mdi2c-close-circle-outline\", \"F015A\"),\n    CLOSE_NETWORK(\"mdi2c-close-network\", \"F015B\"),\n    CLOSE_NETWORK_OUTLINE(\"mdi2c-close-network-outline\", \"F0C5F\"),\n    CLOSE_OCTAGON(\"mdi2c-close-octagon\", \"F015C\"),\n    CLOSE_OCTAGON_OUTLINE(\"mdi2c-close-octagon-outline\", \"F015D\"),\n    CLOSE_OUTLINE(\"mdi2c-close-outline\", \"F06C9\"),\n    CLOSE_THICK(\"mdi2c-close-thick\", \"F1398\"),\n    CLOSED_CAPTION(\"mdi2c-closed-caption\", \"F015E\"),\n    CLOSED_CAPTION_OUTLINE(\"mdi2c-closed-caption-outline\", \"F0DBD\"),\n    CLOUD(\"mdi2c-cloud\", \"F015F\"),\n    CLOUD_ALERT(\"mdi2c-cloud-alert\", \"F09E0\"),\n    CLOUD_ALERT_OUTLINE(\"mdi2c-cloud-alert-outline\", \"F1BE0\"),\n    CLOUD_ARROW_DOWN(\"mdi2c-cloud-arrow-down\", \"F1BE1\"),\n    CLOUD_ARROW_DOWN_OUTLINE(\"mdi2c-cloud-arrow-down-outline\", \"F1BE2\"),\n    CLOUD_ARROW_LEFT(\"mdi2c-cloud-arrow-left\", \"F1BE3\"),\n    CLOUD_ARROW_LEFT_OUTLINE(\"mdi2c-cloud-arrow-left-outline\", \"F1BE4\"),\n    CLOUD_ARROW_RIGHT(\"mdi2c-cloud-arrow-right\", \"F1BE5\"),\n    CLOUD_ARROW_RIGHT_OUTLINE(\"mdi2c-cloud-arrow-right-outline\", \"F1BE6\"),\n    CLOUD_ARROW_UP(\"mdi2c-cloud-arrow-up\", \"F1BE7\"),\n    CLOUD_ARROW_UP_OUTLINE(\"mdi2c-cloud-arrow-up-outline\", \"F1BE8\"),\n    CLOUD_BRACES(\"mdi2c-cloud-braces\", \"F07B5\"),\n    CLOUD_CANCEL(\"mdi2c-cloud-cancel\", \"F1BE9\"),\n    CLOUD_CANCEL_OUTLINE(\"mdi2c-cloud-cancel-outline\", \"F1BEA\"),\n    CLOUD_CHECK(\"mdi2c-cloud-check\", \"F1BEB\"),\n    CLOUD_CHECK_OUTLINE(\"mdi2c-cloud-check-outline\", \"F1BEC\"),\n    CLOUD_CHECK_VARIANT(\"mdi2c-cloud-check-variant\", \"F0160\"),\n    CLOUD_CHECK_VARIANT_OUTLINE(\"mdi2c-cloud-check-variant-outline\", \"F12CC\"),\n    CLOUD_CIRCLE(\"mdi2c-cloud-circle\", \"F0161\"),\n    CLOUD_CIRCLE_OUTLINE(\"mdi2c-cloud-circle-outline\", \"F1BED\"),\n    CLOUD_CLOCK(\"mdi2c-cloud-clock\", \"F1BEE\"),\n    CLOUD_CLOCK_OUTLINE(\"mdi2c-cloud-clock-outline\", \"F1BEF\"),\n    CLOUD_COG(\"mdi2c-cloud-cog\", \"F1BF0\"),\n    CLOUD_COG_OUTLINE(\"mdi2c-cloud-cog-outline\", \"F1BF1\"),\n    CLOUD_DOWNLOAD(\"mdi2c-cloud-download\", \"F0162\"),\n    CLOUD_DOWNLOAD_OUTLINE(\"mdi2c-cloud-download-outline\", \"F0B7D\"),\n    CLOUD_KEY(\"mdi2c-cloud-key\", \"F1CA1\"),\n    CLOUD_KEY_OUTLINE(\"mdi2c-cloud-key-outline\", \"F1CA2\"),\n    CLOUD_LOCK(\"mdi2c-cloud-lock\", \"F11F1\"),\n    CLOUD_LOCK_OPEN(\"mdi2c-cloud-lock-open\", \"F1BF2\"),\n    CLOUD_LOCK_OPEN_OUTLINE(\"mdi2c-cloud-lock-open-outline\", \"F1BF3\"),\n    CLOUD_LOCK_OUTLINE(\"mdi2c-cloud-lock-outline\", \"F11F2\"),\n    CLOUD_MINUS(\"mdi2c-cloud-minus\", \"F1BF4\"),\n    CLOUD_MINUS_OUTLINE(\"mdi2c-cloud-minus-outline\", \"F1BF5\"),\n    CLOUD_OFF(\"mdi2c-cloud-off\", \"F1BF6\"),\n    CLOUD_OFF_OUTLINE(\"mdi2c-cloud-off-outline\", \"F0164\"),\n    CLOUD_OUTLINE(\"mdi2c-cloud-outline\", \"F0163\"),\n    CLOUD_PERCENT(\"mdi2c-cloud-percent\", \"F1A35\"),\n    CLOUD_PERCENT_OUTLINE(\"mdi2c-cloud-percent-outline\", \"F1A36\"),\n    CLOUD_PLUS(\"mdi2c-cloud-plus\", \"F1BF7\"),\n    CLOUD_PLUS_OUTLINE(\"mdi2c-cloud-plus-outline\", \"F1BF8\"),\n    CLOUD_PRINT(\"mdi2c-cloud-print\", \"F0165\"),\n    CLOUD_PRINT_OUTLINE(\"mdi2c-cloud-print-outline\", \"F0166\"),\n    CLOUD_QUESTION(\"mdi2c-cloud-question\", \"F0A39\"),\n    CLOUD_QUESTION_OUTLINE(\"mdi2c-cloud-question-outline\", \"F1BF9\"),\n    CLOUD_REFRESH(\"mdi2c-cloud-refresh\", \"F1BFA\"),\n    CLOUD_REFRESH_OUTLINE(\"mdi2c-cloud-refresh-outline\", \"F1BFB\"),\n    CLOUD_REFRESH_VARIANT(\"mdi2c-cloud-refresh-variant\", \"F052A\"),\n    CLOUD_REFRESH_VARIANT_OUTLINE(\"mdi2c-cloud-refresh-variant-outline\", \"F1BFC\"),\n    CLOUD_REMOVE(\"mdi2c-cloud-remove\", \"F1BFD\"),\n    CLOUD_REMOVE_OUTLINE(\"mdi2c-cloud-remove-outline\", \"F1BFE\"),\n    CLOUD_SEARCH(\"mdi2c-cloud-search\", \"F0956\"),\n    CLOUD_SEARCH_OUTLINE(\"mdi2c-cloud-search-outline\", \"F0957\"),\n    CLOUD_SYNC(\"mdi2c-cloud-sync\", \"F063F\"),\n    CLOUD_SYNC_OUTLINE(\"mdi2c-cloud-sync-outline\", \"F12D6\"),\n    CLOUD_TAGS(\"mdi2c-cloud-tags\", \"F07B6\"),\n    CLOUD_UPLOAD(\"mdi2c-cloud-upload\", \"F0167\"),\n    CLOUD_UPLOAD_OUTLINE(\"mdi2c-cloud-upload-outline\", \"F0B7E\"),\n    CLOUDS(\"mdi2c-clouds\", \"F1B95\"),\n    CLOVER(\"mdi2c-clover\", \"F0816\"),\n    CLOVER_OUTLINE(\"mdi2c-clover-outline\", \"F1C62\"),\n    COACH_LAMP(\"mdi2c-coach-lamp\", \"F1020\"),\n    COACH_LAMP_VARIANT(\"mdi2c-coach-lamp-variant\", \"F1A37\"),\n    COAT_RACK(\"mdi2c-coat-rack\", \"F109E\"),\n    CODE_ARRAY(\"mdi2c-code-array\", \"F0168\"),\n    CODE_BLOCK_BRACES(\"mdi2c-code-block-braces\", \"F1C83\"),\n    CODE_BLOCK_BRACKETS(\"mdi2c-code-block-brackets\", \"F1C84\"),\n    CODE_BLOCK_PARENTHESES(\"mdi2c-code-block-parentheses\", \"F1C85\"),\n    CODE_BLOCK_TAGS(\"mdi2c-code-block-tags\", \"F1C86\"),\n    CODE_BRACES(\"mdi2c-code-braces\", \"F0169\"),\n    CODE_BRACES_BOX(\"mdi2c-code-braces-box\", \"F10D6\"),\n    CODE_BRACKETS(\"mdi2c-code-brackets\", \"F016A\"),\n    CODE_EQUAL(\"mdi2c-code-equal\", \"F016B\"),\n    CODE_GREATER_THAN(\"mdi2c-code-greater-than\", \"F016C\"),\n    CODE_GREATER_THAN_OR_EQUAL(\"mdi2c-code-greater-than-or-equal\", \"F016D\"),\n    CODE_JSON(\"mdi2c-code-json\", \"F0626\"),\n    CODE_LESS_THAN(\"mdi2c-code-less-than\", \"F016E\"),\n    CODE_LESS_THAN_OR_EQUAL(\"mdi2c-code-less-than-or-equal\", \"F016F\"),\n    CODE_NOT_EQUAL(\"mdi2c-code-not-equal\", \"F0170\"),\n    CODE_NOT_EQUAL_VARIANT(\"mdi2c-code-not-equal-variant\", \"F0171\"),\n    CODE_PARENTHESES(\"mdi2c-code-parentheses\", \"F0172\"),\n    CODE_PARENTHESES_BOX(\"mdi2c-code-parentheses-box\", \"F10D7\"),\n    CODE_STRING(\"mdi2c-code-string\", \"F0173\"),\n    CODE_TAGS(\"mdi2c-code-tags\", \"F0174\"),\n    CODE_TAGS_CHECK(\"mdi2c-code-tags-check\", \"F0694\"),\n    CODEPEN(\"mdi2c-codepen\", \"F0175\"),\n    COFFEE(\"mdi2c-coffee\", \"F0176\"),\n    COFFEE_MAKER(\"mdi2c-coffee-maker\", \"F109F\"),\n    COFFEE_MAKER_CHECK(\"mdi2c-coffee-maker-check\", \"F1931\"),\n    COFFEE_MAKER_CHECK_OUTLINE(\"mdi2c-coffee-maker-check-outline\", \"F1932\"),\n    COFFEE_MAKER_OUTLINE(\"mdi2c-coffee-maker-outline\", \"F181B\"),\n    COFFEE_OFF(\"mdi2c-coffee-off\", \"F0FAA\"),\n    COFFEE_OFF_OUTLINE(\"mdi2c-coffee-off-outline\", \"F0FAB\"),\n    COFFEE_OUTLINE(\"mdi2c-coffee-outline\", \"F06CA\"),\n    COFFEE_TO_GO(\"mdi2c-coffee-to-go\", \"F0177\"),\n    COFFEE_TO_GO_OUTLINE(\"mdi2c-coffee-to-go-outline\", \"F130E\"),\n    COFFIN(\"mdi2c-coffin\", \"F0B7F\"),\n    COG(\"mdi2c-cog\", \"F0493\"),\n    COG_BOX(\"mdi2c-cog-box\", \"F0494\"),\n    COG_CLOCKWISE(\"mdi2c-cog-clockwise\", \"F11DD\"),\n    COG_COUNTERCLOCKWISE(\"mdi2c-cog-counterclockwise\", \"F11DE\"),\n    COG_OFF(\"mdi2c-cog-off\", \"F13CE\"),\n    COG_OFF_OUTLINE(\"mdi2c-cog-off-outline\", \"F13CF\"),\n    COG_OUTLINE(\"mdi2c-cog-outline\", \"F08BB\"),\n    COG_PAUSE(\"mdi2c-cog-pause\", \"F1933\"),\n    COG_PAUSE_OUTLINE(\"mdi2c-cog-pause-outline\", \"F1934\"),\n    COG_PLAY(\"mdi2c-cog-play\", \"F1935\"),\n    COG_PLAY_OUTLINE(\"mdi2c-cog-play-outline\", \"F1936\"),\n    COG_REFRESH(\"mdi2c-cog-refresh\", \"F145E\"),\n    COG_REFRESH_OUTLINE(\"mdi2c-cog-refresh-outline\", \"F145F\"),\n    COG_STOP(\"mdi2c-cog-stop\", \"F1937\"),\n    COG_STOP_OUTLINE(\"mdi2c-cog-stop-outline\", \"F1938\"),\n    COG_SYNC(\"mdi2c-cog-sync\", \"F1460\"),\n    COG_SYNC_OUTLINE(\"mdi2c-cog-sync-outline\", \"F1461\"),\n    COG_TRANSFER(\"mdi2c-cog-transfer\", \"F105B\"),\n    COG_TRANSFER_OUTLINE(\"mdi2c-cog-transfer-outline\", \"F105C\"),\n    COGS(\"mdi2c-cogs\", \"F08D6\"),\n    COLLAGE(\"mdi2c-collage\", \"F0640\"),\n    COLLAPSE_ALL(\"mdi2c-collapse-all\", \"F0AA6\"),\n    COLLAPSE_ALL_OUTLINE(\"mdi2c-collapse-all-outline\", \"F0AA7\"),\n    COLOR_HELPER(\"mdi2c-color-helper\", \"F0179\"),\n    COMMA(\"mdi2c-comma\", \"F0E23\"),\n    COMMA_BOX(\"mdi2c-comma-box\", \"F0E2B\"),\n    COMMA_BOX_OUTLINE(\"mdi2c-comma-box-outline\", \"F0E24\"),\n    COMMA_CIRCLE(\"mdi2c-comma-circle\", \"F0E25\"),\n    COMMA_CIRCLE_OUTLINE(\"mdi2c-comma-circle-outline\", \"F0E26\"),\n    COMMENT(\"mdi2c-comment\", \"F017A\"),\n    COMMENT_ACCOUNT(\"mdi2c-comment-account\", \"F017B\"),\n    COMMENT_ACCOUNT_OUTLINE(\"mdi2c-comment-account-outline\", \"F017C\"),\n    COMMENT_ALERT(\"mdi2c-comment-alert\", \"F017D\"),\n    COMMENT_ALERT_OUTLINE(\"mdi2c-comment-alert-outline\", \"F017E\"),\n    COMMENT_ARROW_LEFT(\"mdi2c-comment-arrow-left\", \"F09E1\"),\n    COMMENT_ARROW_LEFT_OUTLINE(\"mdi2c-comment-arrow-left-outline\", \"F09E2\"),\n    COMMENT_ARROW_RIGHT(\"mdi2c-comment-arrow-right\", \"F09E3\"),\n    COMMENT_ARROW_RIGHT_OUTLINE(\"mdi2c-comment-arrow-right-outline\", \"F09E4\"),\n    COMMENT_BOOKMARK(\"mdi2c-comment-bookmark\", \"F15AE\"),\n    COMMENT_BOOKMARK_OUTLINE(\"mdi2c-comment-bookmark-outline\", \"F15AF\"),\n    COMMENT_CHECK(\"mdi2c-comment-check\", \"F017F\"),\n    COMMENT_CHECK_OUTLINE(\"mdi2c-comment-check-outline\", \"F0180\"),\n    COMMENT_EDIT(\"mdi2c-comment-edit\", \"F11BF\"),\n    COMMENT_EDIT_OUTLINE(\"mdi2c-comment-edit-outline\", \"F12C4\"),\n    COMMENT_EYE(\"mdi2c-comment-eye\", \"F0A3A\"),\n    COMMENT_EYE_OUTLINE(\"mdi2c-comment-eye-outline\", \"F0A3B\"),\n    COMMENT_FLASH(\"mdi2c-comment-flash\", \"F15B0\"),\n    COMMENT_FLASH_OUTLINE(\"mdi2c-comment-flash-outline\", \"F15B1\"),\n    COMMENT_MINUS(\"mdi2c-comment-minus\", \"F15DF\"),\n    COMMENT_MINUS_OUTLINE(\"mdi2c-comment-minus-outline\", \"F15E0\"),\n    COMMENT_MULTIPLE(\"mdi2c-comment-multiple\", \"F085F\"),\n    COMMENT_MULTIPLE_OUTLINE(\"mdi2c-comment-multiple-outline\", \"F0181\"),\n    COMMENT_OFF(\"mdi2c-comment-off\", \"F15E1\"),\n    COMMENT_OFF_OUTLINE(\"mdi2c-comment-off-outline\", \"F15E2\"),\n    COMMENT_OUTLINE(\"mdi2c-comment-outline\", \"F0182\"),\n    COMMENT_PLUS(\"mdi2c-comment-plus\", \"F09E5\"),\n    COMMENT_PLUS_OUTLINE(\"mdi2c-comment-plus-outline\", \"F0183\"),\n    COMMENT_PROCESSING(\"mdi2c-comment-processing\", \"F0184\"),\n    COMMENT_PROCESSING_OUTLINE(\"mdi2c-comment-processing-outline\", \"F0185\"),\n    COMMENT_QUESTION(\"mdi2c-comment-question\", \"F0817\"),\n    COMMENT_QUESTION_OUTLINE(\"mdi2c-comment-question-outline\", \"F0186\"),\n    COMMENT_QUOTE(\"mdi2c-comment-quote\", \"F1021\"),\n    COMMENT_QUOTE_OUTLINE(\"mdi2c-comment-quote-outline\", \"F1022\"),\n    COMMENT_REMOVE(\"mdi2c-comment-remove\", \"F05DE\"),\n    COMMENT_REMOVE_OUTLINE(\"mdi2c-comment-remove-outline\", \"F0187\"),\n    COMMENT_SEARCH(\"mdi2c-comment-search\", \"F0A3C\"),\n    COMMENT_SEARCH_OUTLINE(\"mdi2c-comment-search-outline\", \"F0A3D\"),\n    COMMENT_TEXT(\"mdi2c-comment-text\", \"F0188\"),\n    COMMENT_TEXT_MULTIPLE(\"mdi2c-comment-text-multiple\", \"F0860\"),\n    COMMENT_TEXT_MULTIPLE_OUTLINE(\"mdi2c-comment-text-multiple-outline\", \"F0861\"),\n    COMMENT_TEXT_OUTLINE(\"mdi2c-comment-text-outline\", \"F0189\"),\n    COMPARE(\"mdi2c-compare\", \"F018A\"),\n    COMPARE_HORIZONTAL(\"mdi2c-compare-horizontal\", \"F1492\"),\n    COMPARE_REMOVE(\"mdi2c-compare-remove\", \"F18B3\"),\n    COMPARE_VERTICAL(\"mdi2c-compare-vertical\", \"F1493\"),\n    COMPASS(\"mdi2c-compass\", \"F018B\"),\n    COMPASS_OFF(\"mdi2c-compass-off\", \"F0B80\"),\n    COMPASS_OFF_OUTLINE(\"mdi2c-compass-off-outline\", \"F0B81\"),\n    COMPASS_OUTLINE(\"mdi2c-compass-outline\", \"F018C\"),\n    COMPASS_ROSE(\"mdi2c-compass-rose\", \"F1382\"),\n    COMPOST(\"mdi2c-compost\", \"F1A38\"),\n    CONE(\"mdi2c-cone\", \"F194C\"),\n    CONE_OFF(\"mdi2c-cone-off\", \"F194D\"),\n    CONNECTION(\"mdi2c-connection\", \"F1616\"),\n    CONSOLE(\"mdi2c-console\", \"F018D\"),\n    CONSOLE_LINE(\"mdi2c-console-line\", \"F07B7\"),\n    CONSOLE_NETWORK(\"mdi2c-console-network\", \"F08A9\"),\n    CONSOLE_NETWORK_OUTLINE(\"mdi2c-console-network-outline\", \"F0C60\"),\n    CONSOLIDATE(\"mdi2c-consolidate\", \"F10D8\"),\n    CONTACTLESS_PAYMENT(\"mdi2c-contactless-payment\", \"F0D6A\"),\n    CONTACTLESS_PAYMENT_CIRCLE(\"mdi2c-contactless-payment-circle\", \"F0321\"),\n    CONTACTLESS_PAYMENT_CIRCLE_OUTLINE(\"mdi2c-contactless-payment-circle-outline\", \"F0408\"),\n    CONTACTS(\"mdi2c-contacts\", \"F06CB\"),\n    CONTACTS_OUTLINE(\"mdi2c-contacts-outline\", \"F05B8\"),\n    CONTAIN(\"mdi2c-contain\", \"F0A3E\"),\n    CONTAIN_END(\"mdi2c-contain-end\", \"F0A3F\"),\n    CONTAIN_START(\"mdi2c-contain-start\", \"F0A40\"),\n    CONTENT_COPY(\"mdi2c-content-copy\", \"F018F\"),\n    CONTENT_CUT(\"mdi2c-content-cut\", \"F0190\"),\n    CONTENT_DUPLICATE(\"mdi2c-content-duplicate\", \"F0191\"),\n    CONTENT_PASTE(\"mdi2c-content-paste\", \"F0192\"),\n    CONTENT_SAVE(\"mdi2c-content-save\", \"F0193\"),\n    CONTENT_SAVE_ALERT(\"mdi2c-content-save-alert\", \"F0F42\"),\n    CONTENT_SAVE_ALERT_OUTLINE(\"mdi2c-content-save-alert-outline\", \"F0F43\"),\n    CONTENT_SAVE_ALL(\"mdi2c-content-save-all\", \"F0194\"),\n    CONTENT_SAVE_ALL_OUTLINE(\"mdi2c-content-save-all-outline\", \"F0F44\"),\n    CONTENT_SAVE_CHECK(\"mdi2c-content-save-check\", \"F18EA\"),\n    CONTENT_SAVE_CHECK_OUTLINE(\"mdi2c-content-save-check-outline\", \"F18EB\"),\n    CONTENT_SAVE_COG(\"mdi2c-content-save-cog\", \"F145B\"),\n    CONTENT_SAVE_COG_OUTLINE(\"mdi2c-content-save-cog-outline\", \"F145C\"),\n    CONTENT_SAVE_EDIT(\"mdi2c-content-save-edit\", \"F0CFB\"),\n    CONTENT_SAVE_EDIT_OUTLINE(\"mdi2c-content-save-edit-outline\", \"F0CFC\"),\n    CONTENT_SAVE_MINUS(\"mdi2c-content-save-minus\", \"F1B43\"),\n    CONTENT_SAVE_MINUS_OUTLINE(\"mdi2c-content-save-minus-outline\", \"F1B44\"),\n    CONTENT_SAVE_MOVE(\"mdi2c-content-save-move\", \"F0E27\"),\n    CONTENT_SAVE_MOVE_OUTLINE(\"mdi2c-content-save-move-outline\", \"F0E28\"),\n    CONTENT_SAVE_OFF(\"mdi2c-content-save-off\", \"F1643\"),\n    CONTENT_SAVE_OFF_OUTLINE(\"mdi2c-content-save-off-outline\", \"F1644\"),\n    CONTENT_SAVE_OUTLINE(\"mdi2c-content-save-outline\", \"F0818\"),\n    CONTENT_SAVE_PLUS(\"mdi2c-content-save-plus\", \"F1B41\"),\n    CONTENT_SAVE_PLUS_OUTLINE(\"mdi2c-content-save-plus-outline\", \"F1B42\"),\n    CONTENT_SAVE_SETTINGS(\"mdi2c-content-save-settings\", \"F061B\"),\n    CONTENT_SAVE_SETTINGS_OUTLINE(\"mdi2c-content-save-settings-outline\", \"F0B2E\"),\n    CONTRAST(\"mdi2c-contrast\", \"F0195\"),\n    CONTRAST_BOX(\"mdi2c-contrast-box\", \"F0196\"),\n    CONTRAST_CIRCLE(\"mdi2c-contrast-circle\", \"F0197\"),\n    CONTROLLER(\"mdi2c-controller\", \"F02B4\"),\n    CONTROLLER_CLASSIC(\"mdi2c-controller-classic\", \"F0B82\"),\n    CONTROLLER_CLASSIC_OUTLINE(\"mdi2c-controller-classic-outline\", \"F0B83\"),\n    CONTROLLER_OFF(\"mdi2c-controller-off\", \"F02B5\"),\n    COOKIE(\"mdi2c-cookie\", \"F0198\"),\n    COOKIE_ALERT(\"mdi2c-cookie-alert\", \"F16D0\"),\n    COOKIE_ALERT_OUTLINE(\"mdi2c-cookie-alert-outline\", \"F16D1\"),\n    COOKIE_CHECK(\"mdi2c-cookie-check\", \"F16D2\"),\n    COOKIE_CHECK_OUTLINE(\"mdi2c-cookie-check-outline\", \"F16D3\"),\n    COOKIE_CLOCK(\"mdi2c-cookie-clock\", \"F16E4\"),\n    COOKIE_CLOCK_OUTLINE(\"mdi2c-cookie-clock-outline\", \"F16E5\"),\n    COOKIE_COG(\"mdi2c-cookie-cog\", \"F16D4\"),\n    COOKIE_COG_OUTLINE(\"mdi2c-cookie-cog-outline\", \"F16D5\"),\n    COOKIE_EDIT(\"mdi2c-cookie-edit\", \"F16E6\"),\n    COOKIE_EDIT_OUTLINE(\"mdi2c-cookie-edit-outline\", \"F16E7\"),\n    COOKIE_LOCK(\"mdi2c-cookie-lock\", \"F16E8\"),\n    COOKIE_LOCK_OUTLINE(\"mdi2c-cookie-lock-outline\", \"F16E9\"),\n    COOKIE_MINUS(\"mdi2c-cookie-minus\", \"F16DA\"),\n    COOKIE_MINUS_OUTLINE(\"mdi2c-cookie-minus-outline\", \"F16DB\"),\n    COOKIE_OFF(\"mdi2c-cookie-off\", \"F16EA\"),\n    COOKIE_OFF_OUTLINE(\"mdi2c-cookie-off-outline\", \"F16EB\"),\n    COOKIE_OUTLINE(\"mdi2c-cookie-outline\", \"F16DE\"),\n    COOKIE_PLUS(\"mdi2c-cookie-plus\", \"F16D6\"),\n    COOKIE_PLUS_OUTLINE(\"mdi2c-cookie-plus-outline\", \"F16D7\"),\n    COOKIE_REFRESH(\"mdi2c-cookie-refresh\", \"F16EC\"),\n    COOKIE_REFRESH_OUTLINE(\"mdi2c-cookie-refresh-outline\", \"F16ED\"),\n    COOKIE_REMOVE(\"mdi2c-cookie-remove\", \"F16D8\"),\n    COOKIE_REMOVE_OUTLINE(\"mdi2c-cookie-remove-outline\", \"F16D9\"),\n    COOKIE_SETTINGS(\"mdi2c-cookie-settings\", \"F16DC\"),\n    COOKIE_SETTINGS_OUTLINE(\"mdi2c-cookie-settings-outline\", \"F16DD\"),\n    COOLANT_TEMPERATURE(\"mdi2c-coolant-temperature\", \"F03C8\"),\n    COPYLEFT(\"mdi2c-copyleft\", \"F1939\"),\n    COPYRIGHT(\"mdi2c-copyright\", \"F05E6\"),\n    CORDOVA(\"mdi2c-cordova\", \"F0958\"),\n    CORN(\"mdi2c-corn\", \"F07B8\"),\n    CORN_OFF(\"mdi2c-corn-off\", \"F13EF\"),\n    COSINE_WAVE(\"mdi2c-cosine-wave\", \"F1479\"),\n    COUNTER(\"mdi2c-counter\", \"F0199\"),\n    COUNTERTOP(\"mdi2c-countertop\", \"F181C\"),\n    COUNTERTOP_OUTLINE(\"mdi2c-countertop-outline\", \"F181D\"),\n    COW(\"mdi2c-cow\", \"F019A\"),\n    COW_OFF(\"mdi2c-cow-off\", \"F18FC\"),\n    CPU_32_BIT(\"mdi2c-cpu-32-bit\", \"F0EDF\"),\n    CPU_64_BIT(\"mdi2c-cpu-64-bit\", \"F0EE0\"),\n    CRADLE(\"mdi2c-cradle\", \"F198B\"),\n    CRADLE_OUTLINE(\"mdi2c-cradle-outline\", \"F1991\"),\n    CRANE(\"mdi2c-crane\", \"F0862\"),\n    CREATION(\"mdi2c-creation\", \"F0674\"),\n    CREATION_OUTLINE(\"mdi2c-creation-outline\", \"F1C2B\"),\n    CREATIVE_COMMONS(\"mdi2c-creative-commons\", \"F0D6B\"),\n    CREDIT_CARD(\"mdi2c-credit-card\", \"F0FEF\"),\n    CREDIT_CARD_CHECK(\"mdi2c-credit-card-check\", \"F13D0\"),\n    CREDIT_CARD_CHECK_OUTLINE(\"mdi2c-credit-card-check-outline\", \"F13D1\"),\n    CREDIT_CARD_CHIP(\"mdi2c-credit-card-chip\", \"F190F\"),\n    CREDIT_CARD_CHIP_OUTLINE(\"mdi2c-credit-card-chip-outline\", \"F1910\"),\n    CREDIT_CARD_CLOCK(\"mdi2c-credit-card-clock\", \"F0EE1\"),\n    CREDIT_CARD_CLOCK_OUTLINE(\"mdi2c-credit-card-clock-outline\", \"F0EE2\"),\n    CREDIT_CARD_EDIT(\"mdi2c-credit-card-edit\", \"F17D7\"),\n    CREDIT_CARD_EDIT_OUTLINE(\"mdi2c-credit-card-edit-outline\", \"F17D8\"),\n    CREDIT_CARD_FAST(\"mdi2c-credit-card-fast\", \"F1911\"),\n    CREDIT_CARD_FAST_OUTLINE(\"mdi2c-credit-card-fast-outline\", \"F1912\"),\n    CREDIT_CARD_LOCK(\"mdi2c-credit-card-lock\", \"F18E7\"),\n    CREDIT_CARD_LOCK_OUTLINE(\"mdi2c-credit-card-lock-outline\", \"F18E8\"),\n    CREDIT_CARD_MARKER(\"mdi2c-credit-card-marker\", \"F06A8\"),\n    CREDIT_CARD_MARKER_OUTLINE(\"mdi2c-credit-card-marker-outline\", \"F0DBE\"),\n    CREDIT_CARD_MINUS(\"mdi2c-credit-card-minus\", \"F0FAC\"),\n    CREDIT_CARD_MINUS_OUTLINE(\"mdi2c-credit-card-minus-outline\", \"F0FAD\"),\n    CREDIT_CARD_MULTIPLE(\"mdi2c-credit-card-multiple\", \"F0FF0\"),\n    CREDIT_CARD_MULTIPLE_OUTLINE(\"mdi2c-credit-card-multiple-outline\", \"F019C\"),\n    CREDIT_CARD_OFF(\"mdi2c-credit-card-off\", \"F0FF1\"),\n    CREDIT_CARD_OFF_OUTLINE(\"mdi2c-credit-card-off-outline\", \"F05E4\"),\n    CREDIT_CARD_OUTLINE(\"mdi2c-credit-card-outline\", \"F019B\"),\n    CREDIT_CARD_PLUS(\"mdi2c-credit-card-plus\", \"F0FF2\"),\n    CREDIT_CARD_PLUS_OUTLINE(\"mdi2c-credit-card-plus-outline\", \"F0676\"),\n    CREDIT_CARD_REFRESH(\"mdi2c-credit-card-refresh\", \"F1645\"),\n    CREDIT_CARD_REFRESH_OUTLINE(\"mdi2c-credit-card-refresh-outline\", \"F1646\"),\n    CREDIT_CARD_REFUND(\"mdi2c-credit-card-refund\", \"F0FF3\"),\n    CREDIT_CARD_REFUND_OUTLINE(\"mdi2c-credit-card-refund-outline\", \"F0AA8\"),\n    CREDIT_CARD_REMOVE(\"mdi2c-credit-card-remove\", \"F0FAE\"),\n    CREDIT_CARD_REMOVE_OUTLINE(\"mdi2c-credit-card-remove-outline\", \"F0FAF\"),\n    CREDIT_CARD_SCAN(\"mdi2c-credit-card-scan\", \"F0FF4\"),\n    CREDIT_CARD_SCAN_OUTLINE(\"mdi2c-credit-card-scan-outline\", \"F019D\"),\n    CREDIT_CARD_SEARCH(\"mdi2c-credit-card-search\", \"F1647\"),\n    CREDIT_CARD_SEARCH_OUTLINE(\"mdi2c-credit-card-search-outline\", \"F1648\"),\n    CREDIT_CARD_SETTINGS(\"mdi2c-credit-card-settings\", \"F0FF5\"),\n    CREDIT_CARD_SETTINGS_OUTLINE(\"mdi2c-credit-card-settings-outline\", \"F08D7\"),\n    CREDIT_CARD_SYNC(\"mdi2c-credit-card-sync\", \"F1649\"),\n    CREDIT_CARD_SYNC_OUTLINE(\"mdi2c-credit-card-sync-outline\", \"F164A\"),\n    CREDIT_CARD_WIRELESS(\"mdi2c-credit-card-wireless\", \"F0802\"),\n    CREDIT_CARD_WIRELESS_OFF(\"mdi2c-credit-card-wireless-off\", \"F057A\"),\n    CREDIT_CARD_WIRELESS_OFF_OUTLINE(\"mdi2c-credit-card-wireless-off-outline\", \"F057B\"),\n    CREDIT_CARD_WIRELESS_OUTLINE(\"mdi2c-credit-card-wireless-outline\", \"F0D6C\"),\n    CRICKET(\"mdi2c-cricket\", \"F0D6D\"),\n    CROP(\"mdi2c-crop\", \"F019E\"),\n    CROP_FREE(\"mdi2c-crop-free\", \"F019F\"),\n    CROP_LANDSCAPE(\"mdi2c-crop-landscape\", \"F01A0\"),\n    CROP_PORTRAIT(\"mdi2c-crop-portrait\", \"F01A1\"),\n    CROP_ROTATE(\"mdi2c-crop-rotate\", \"F0696\"),\n    CROP_SQUARE(\"mdi2c-crop-square\", \"F01A2\"),\n    CROSS(\"mdi2c-cross\", \"F0953\"),\n    CROSS_BOLNISI(\"mdi2c-cross-bolnisi\", \"F0CED\"),\n    CROSS_CELTIC(\"mdi2c-cross-celtic\", \"F0CF5\"),\n    CROSS_OUTLINE(\"mdi2c-cross-outline\", \"F0CF6\"),\n    CROSSHAIRS(\"mdi2c-crosshairs\", \"F01A3\"),\n    CROSSHAIRS_GPS(\"mdi2c-crosshairs-gps\", \"F01A4\"),\n    CROSSHAIRS_OFF(\"mdi2c-crosshairs-off\", \"F0F45\"),\n    CROSSHAIRS_QUESTION(\"mdi2c-crosshairs-question\", \"F1136\"),\n    CROWD(\"mdi2c-crowd\", \"F1975\"),\n    CROWN(\"mdi2c-crown\", \"F01A5\"),\n    CROWN_CIRCLE(\"mdi2c-crown-circle\", \"F17DC\"),\n    CROWN_CIRCLE_OUTLINE(\"mdi2c-crown-circle-outline\", \"F17DD\"),\n    CROWN_OUTLINE(\"mdi2c-crown-outline\", \"F11D0\"),\n    CRYENGINE(\"mdi2c-cryengine\", \"F0959\"),\n    CRYSTAL_BALL(\"mdi2c-crystal-ball\", \"F0B2F\"),\n    CUBE(\"mdi2c-cube\", \"F01A6\"),\n    CUBE_OFF(\"mdi2c-cube-off\", \"F141C\"),\n    CUBE_OFF_OUTLINE(\"mdi2c-cube-off-outline\", \"F141D\"),\n    CUBE_OUTLINE(\"mdi2c-cube-outline\", \"F01A7\"),\n    CUBE_SCAN(\"mdi2c-cube-scan\", \"F0B84\"),\n    CUBE_SEND(\"mdi2c-cube-send\", \"F01A8\"),\n    CUBE_UNFOLDED(\"mdi2c-cube-unfolded\", \"F01A9\"),\n    CUP(\"mdi2c-cup\", \"F01AA\"),\n    CUP_OFF(\"mdi2c-cup-off\", \"F05E5\"),\n    CUP_OFF_OUTLINE(\"mdi2c-cup-off-outline\", \"F137D\"),\n    CUP_OUTLINE(\"mdi2c-cup-outline\", \"F130F\"),\n    CUP_WATER(\"mdi2c-cup-water\", \"F01AB\"),\n    CUPBOARD(\"mdi2c-cupboard\", \"F0F46\"),\n    CUPBOARD_OUTLINE(\"mdi2c-cupboard-outline\", \"F0F47\"),\n    CUPCAKE(\"mdi2c-cupcake\", \"F095A\"),\n    CURLING(\"mdi2c-curling\", \"F0863\"),\n    CURRENCY_BDT(\"mdi2c-currency-bdt\", \"F0864\"),\n    CURRENCY_BRL(\"mdi2c-currency-brl\", \"F0B85\"),\n    CURRENCY_BTC(\"mdi2c-currency-btc\", \"F01AC\"),\n    CURRENCY_CNY(\"mdi2c-currency-cny\", \"F07BA\"),\n    CURRENCY_ETH(\"mdi2c-currency-eth\", \"F07BB\"),\n    CURRENCY_EUR(\"mdi2c-currency-eur\", \"F01AD\"),\n    CURRENCY_EUR_OFF(\"mdi2c-currency-eur-off\", \"F1315\"),\n    CURRENCY_FRA(\"mdi2c-currency-fra\", \"F1A39\"),\n    CURRENCY_GBP(\"mdi2c-currency-gbp\", \"F01AE\"),\n    CURRENCY_ILS(\"mdi2c-currency-ils\", \"F0C61\"),\n    CURRENCY_INR(\"mdi2c-currency-inr\", \"F01AF\"),\n    CURRENCY_JPY(\"mdi2c-currency-jpy\", \"F07BC\"),\n    CURRENCY_KRW(\"mdi2c-currency-krw\", \"F07BD\"),\n    CURRENCY_KZT(\"mdi2c-currency-kzt\", \"F0865\"),\n    CURRENCY_MNT(\"mdi2c-currency-mnt\", \"F1512\"),\n    CURRENCY_NGN(\"mdi2c-currency-ngn\", \"F01B0\"),\n    CURRENCY_PHP(\"mdi2c-currency-php\", \"F09E6\"),\n    CURRENCY_RIAL(\"mdi2c-currency-rial\", \"F0E9C\"),\n    CURRENCY_RUB(\"mdi2c-currency-rub\", \"F01B1\"),\n    CURRENCY_RUPEE(\"mdi2c-currency-rupee\", \"F1976\"),\n    CURRENCY_SIGN(\"mdi2c-currency-sign\", \"F07BE\"),\n    CURRENCY_THB(\"mdi2c-currency-thb\", \"F1C05\"),\n    CURRENCY_TRY(\"mdi2c-currency-try\", \"F01B2\"),\n    CURRENCY_TWD(\"mdi2c-currency-twd\", \"F07BF\"),\n    CURRENCY_UAH(\"mdi2c-currency-uah\", \"F1B9B\"),\n    CURRENCY_USD(\"mdi2c-currency-usd\", \"F01C1\"),\n    CURRENCY_USD_OFF(\"mdi2c-currency-usd-off\", \"F067A\"),\n    CURRENT_AC(\"mdi2c-current-ac\", \"F1480\"),\n    CURRENT_DC(\"mdi2c-current-dc\", \"F095C\"),\n    CURSOR_DEFAULT(\"mdi2c-cursor-default\", \"F01C0\"),\n    CURSOR_DEFAULT_CLICK(\"mdi2c-cursor-default-click\", \"F0CFD\"),\n    CURSOR_DEFAULT_CLICK_OUTLINE(\"mdi2c-cursor-default-click-outline\", \"F0CFE\"),\n    CURSOR_DEFAULT_GESTURE(\"mdi2c-cursor-default-gesture\", \"F1127\"),\n    CURSOR_DEFAULT_GESTURE_OUTLINE(\"mdi2c-cursor-default-gesture-outline\", \"F1128\"),\n    CURSOR_DEFAULT_OUTLINE(\"mdi2c-cursor-default-outline\", \"F01BF\"),\n    CURSOR_MOVE(\"mdi2c-cursor-move\", \"F01BE\"),\n    CURSOR_POINTER(\"mdi2c-cursor-pointer\", \"F01BD\"),\n    CURSOR_TEXT(\"mdi2c-cursor-text\", \"F05E7\"),\n    CURTAINS(\"mdi2c-curtains\", \"F1846\"),\n    CURTAINS_CLOSED(\"mdi2c-curtains-closed\", \"F1847\"),\n    CYLINDER(\"mdi2c-cylinder\", \"F194E\"),\n    CYLINDER_OFF(\"mdi2c-cylinder-off\", \"F194F\");\n\n    public static MaterialDesignC findByDescription(String description) {\n        for (MaterialDesignC font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignC(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignCIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignCIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2c-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignC.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignCIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignCIkonProvider implements IkonProvider<MaterialDesignC> {\n    @Override\n    public Class<MaterialDesignC> getIkon() {\n        return MaterialDesignC.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignD.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignD implements Ikon {\n    DANCE_BALLROOM(\"mdi2d-dance-ballroom\", \"F15FB\"),\n    DANCE_POLE(\"mdi2d-dance-pole\", \"F1578\"),\n    DATA_MATRIX(\"mdi2d-data-matrix\", \"F153C\"),\n    DATA_MATRIX_EDIT(\"mdi2d-data-matrix-edit\", \"F153D\"),\n    DATA_MATRIX_MINUS(\"mdi2d-data-matrix-minus\", \"F153E\"),\n    DATA_MATRIX_PLUS(\"mdi2d-data-matrix-plus\", \"F153F\"),\n    DATA_MATRIX_REMOVE(\"mdi2d-data-matrix-remove\", \"F1540\"),\n    DATA_MATRIX_SCAN(\"mdi2d-data-matrix-scan\", \"F1541\"),\n    DATABASE(\"mdi2d-database\", \"F01BC\"),\n    DATABASE_ALERT(\"mdi2d-database-alert\", \"F163A\"),\n    DATABASE_ALERT_OUTLINE(\"mdi2d-database-alert-outline\", \"F1624\"),\n    DATABASE_ARROW_DOWN(\"mdi2d-database-arrow-down\", \"F163B\"),\n    DATABASE_ARROW_DOWN_OUTLINE(\"mdi2d-database-arrow-down-outline\", \"F1625\"),\n    DATABASE_ARROW_LEFT(\"mdi2d-database-arrow-left\", \"F163C\"),\n    DATABASE_ARROW_LEFT_OUTLINE(\"mdi2d-database-arrow-left-outline\", \"F1626\"),\n    DATABASE_ARROW_RIGHT(\"mdi2d-database-arrow-right\", \"F163D\"),\n    DATABASE_ARROW_RIGHT_OUTLINE(\"mdi2d-database-arrow-right-outline\", \"F1627\"),\n    DATABASE_ARROW_UP(\"mdi2d-database-arrow-up\", \"F163E\"),\n    DATABASE_ARROW_UP_OUTLINE(\"mdi2d-database-arrow-up-outline\", \"F1628\"),\n    DATABASE_CHECK(\"mdi2d-database-check\", \"F0AA9\"),\n    DATABASE_CHECK_OUTLINE(\"mdi2d-database-check-outline\", \"F1629\"),\n    DATABASE_CLOCK(\"mdi2d-database-clock\", \"F163F\"),\n    DATABASE_CLOCK_OUTLINE(\"mdi2d-database-clock-outline\", \"F162A\"),\n    DATABASE_COG(\"mdi2d-database-cog\", \"F164B\"),\n    DATABASE_COG_OUTLINE(\"mdi2d-database-cog-outline\", \"F164C\"),\n    DATABASE_EDIT(\"mdi2d-database-edit\", \"F0B86\"),\n    DATABASE_EDIT_OUTLINE(\"mdi2d-database-edit-outline\", \"F162B\"),\n    DATABASE_EXPORT(\"mdi2d-database-export\", \"F095E\"),\n    DATABASE_EXPORT_OUTLINE(\"mdi2d-database-export-outline\", \"F162C\"),\n    DATABASE_EYE(\"mdi2d-database-eye\", \"F191F\"),\n    DATABASE_EYE_OFF(\"mdi2d-database-eye-off\", \"F1920\"),\n    DATABASE_EYE_OFF_OUTLINE(\"mdi2d-database-eye-off-outline\", \"F1921\"),\n    DATABASE_EYE_OUTLINE(\"mdi2d-database-eye-outline\", \"F1922\"),\n    DATABASE_IMPORT(\"mdi2d-database-import\", \"F095D\"),\n    DATABASE_IMPORT_OUTLINE(\"mdi2d-database-import-outline\", \"F162D\"),\n    DATABASE_LOCK(\"mdi2d-database-lock\", \"F0AAA\"),\n    DATABASE_LOCK_OUTLINE(\"mdi2d-database-lock-outline\", \"F162E\"),\n    DATABASE_MARKER(\"mdi2d-database-marker\", \"F12F6\"),\n    DATABASE_MARKER_OUTLINE(\"mdi2d-database-marker-outline\", \"F162F\"),\n    DATABASE_MINUS(\"mdi2d-database-minus\", \"F01BB\"),\n    DATABASE_MINUS_OUTLINE(\"mdi2d-database-minus-outline\", \"F1630\"),\n    DATABASE_OFF(\"mdi2d-database-off\", \"F1640\"),\n    DATABASE_OFF_OUTLINE(\"mdi2d-database-off-outline\", \"F1631\"),\n    DATABASE_OUTLINE(\"mdi2d-database-outline\", \"F1632\"),\n    DATABASE_PLUS(\"mdi2d-database-plus\", \"F01BA\"),\n    DATABASE_PLUS_OUTLINE(\"mdi2d-database-plus-outline\", \"F1633\"),\n    DATABASE_REFRESH(\"mdi2d-database-refresh\", \"F05C2\"),\n    DATABASE_REFRESH_OUTLINE(\"mdi2d-database-refresh-outline\", \"F1634\"),\n    DATABASE_REMOVE(\"mdi2d-database-remove\", \"F0D00\"),\n    DATABASE_REMOVE_OUTLINE(\"mdi2d-database-remove-outline\", \"F1635\"),\n    DATABASE_SEARCH(\"mdi2d-database-search\", \"F0866\"),\n    DATABASE_SEARCH_OUTLINE(\"mdi2d-database-search-outline\", \"F1636\"),\n    DATABASE_SETTINGS(\"mdi2d-database-settings\", \"F0D01\"),\n    DATABASE_SETTINGS_OUTLINE(\"mdi2d-database-settings-outline\", \"F1637\"),\n    DATABASE_SYNC(\"mdi2d-database-sync\", \"F0CFF\"),\n    DATABASE_SYNC_OUTLINE(\"mdi2d-database-sync-outline\", \"F1638\"),\n    DEATH_STAR(\"mdi2d-death-star\", \"F08D8\"),\n    DEATH_STAR_VARIANT(\"mdi2d-death-star-variant\", \"F08D9\"),\n    DEATHLY_HALLOWS(\"mdi2d-deathly-hallows\", \"F0B87\"),\n    DEBIAN(\"mdi2d-debian\", \"F08DA\"),\n    DEBUG_STEP_INTO(\"mdi2d-debug-step-into\", \"F01B9\"),\n    DEBUG_STEP_OUT(\"mdi2d-debug-step-out\", \"F01B8\"),\n    DEBUG_STEP_OVER(\"mdi2d-debug-step-over\", \"F01B7\"),\n    DECAGRAM(\"mdi2d-decagram\", \"F076C\"),\n    DECAGRAM_OUTLINE(\"mdi2d-decagram-outline\", \"F076D\"),\n    DECIMAL(\"mdi2d-decimal\", \"F10A1\"),\n    DECIMAL_COMMA(\"mdi2d-decimal-comma\", \"F10A2\"),\n    DECIMAL_COMMA_DECREASE(\"mdi2d-decimal-comma-decrease\", \"F10A3\"),\n    DECIMAL_COMMA_INCREASE(\"mdi2d-decimal-comma-increase\", \"F10A4\"),\n    DECIMAL_DECREASE(\"mdi2d-decimal-decrease\", \"F01B6\"),\n    DECIMAL_INCREASE(\"mdi2d-decimal-increase\", \"F01B5\"),\n    DELETE(\"mdi2d-delete\", \"F01B4\"),\n    DELETE_ALERT(\"mdi2d-delete-alert\", \"F10A5\"),\n    DELETE_ALERT_OUTLINE(\"mdi2d-delete-alert-outline\", \"F10A6\"),\n    DELETE_CIRCLE(\"mdi2d-delete-circle\", \"F0683\"),\n    DELETE_CIRCLE_OUTLINE(\"mdi2d-delete-circle-outline\", \"F0B88\"),\n    DELETE_CLOCK(\"mdi2d-delete-clock\", \"F1556\"),\n    DELETE_CLOCK_OUTLINE(\"mdi2d-delete-clock-outline\", \"F1557\"),\n    DELETE_EMPTY(\"mdi2d-delete-empty\", \"F06CC\"),\n    DELETE_EMPTY_OUTLINE(\"mdi2d-delete-empty-outline\", \"F0E9D\"),\n    DELETE_FOREVER(\"mdi2d-delete-forever\", \"F05E8\"),\n    DELETE_FOREVER_OUTLINE(\"mdi2d-delete-forever-outline\", \"F0B89\"),\n    DELETE_OFF(\"mdi2d-delete-off\", \"F10A7\"),\n    DELETE_OFF_OUTLINE(\"mdi2d-delete-off-outline\", \"F10A8\"),\n    DELETE_OUTLINE(\"mdi2d-delete-outline\", \"F09E7\"),\n    DELETE_RESTORE(\"mdi2d-delete-restore\", \"F0819\"),\n    DELETE_SWEEP(\"mdi2d-delete-sweep\", \"F05E9\"),\n    DELETE_SWEEP_OUTLINE(\"mdi2d-delete-sweep-outline\", \"F0C62\"),\n    DELETE_VARIANT(\"mdi2d-delete-variant\", \"F01B3\"),\n    DELTA(\"mdi2d-delta\", \"F01C2\"),\n    DESK(\"mdi2d-desk\", \"F1239\"),\n    DESK_LAMP(\"mdi2d-desk-lamp\", \"F095F\"),\n    DESK_LAMP_OFF(\"mdi2d-desk-lamp-off\", \"F1B1F\"),\n    DESK_LAMP_ON(\"mdi2d-desk-lamp-on\", \"F1B20\"),\n    DESKPHONE(\"mdi2d-deskphone\", \"F01C3\"),\n    DESKTOP_CLASSIC(\"mdi2d-desktop-classic\", \"F07C0\"),\n    DESKTOP_TOWER(\"mdi2d-desktop-tower\", \"F01C5\"),\n    DESKTOP_TOWER_MONITOR(\"mdi2d-desktop-tower-monitor\", \"F0AAB\"),\n    DETAILS(\"mdi2d-details\", \"F01C6\"),\n    DEV_TO(\"mdi2d-dev-to\", \"F0D6E\"),\n    DEVELOPER_BOARD(\"mdi2d-developer-board\", \"F0697\"),\n    DEVIANTART(\"mdi2d-deviantart\", \"F01C7\"),\n    DEVICES(\"mdi2d-devices\", \"F0FB0\"),\n    DHARMACHAKRA(\"mdi2d-dharmachakra\", \"F094B\"),\n    DIABETES(\"mdi2d-diabetes\", \"F1126\"),\n    DIALPAD(\"mdi2d-dialpad\", \"F061C\"),\n    DIAMETER(\"mdi2d-diameter\", \"F0C63\"),\n    DIAMETER_OUTLINE(\"mdi2d-diameter-outline\", \"F0C64\"),\n    DIAMETER_VARIANT(\"mdi2d-diameter-variant\", \"F0C65\"),\n    DIAMOND(\"mdi2d-diamond\", \"F0B8A\"),\n    DIAMOND_OUTLINE(\"mdi2d-diamond-outline\", \"F0B8B\"),\n    DIAMOND_STONE(\"mdi2d-diamond-stone\", \"F01C8\"),\n    DIAPER_OUTLINE(\"mdi2d-diaper-outline\", \"F1CCF\"),\n    DICE_1(\"mdi2d-dice-1\", \"F01CA\"),\n    DICE_1_OUTLINE(\"mdi2d-dice-1-outline\", \"F114A\"),\n    DICE_2(\"mdi2d-dice-2\", \"F01CB\"),\n    DICE_2_OUTLINE(\"mdi2d-dice-2-outline\", \"F114B\"),\n    DICE_3(\"mdi2d-dice-3\", \"F01CC\"),\n    DICE_3_OUTLINE(\"mdi2d-dice-3-outline\", \"F114C\"),\n    DICE_4(\"mdi2d-dice-4\", \"F01CD\"),\n    DICE_4_OUTLINE(\"mdi2d-dice-4-outline\", \"F114D\"),\n    DICE_5(\"mdi2d-dice-5\", \"F01CE\"),\n    DICE_5_OUTLINE(\"mdi2d-dice-5-outline\", \"F114E\"),\n    DICE_6(\"mdi2d-dice-6\", \"F01CF\"),\n    DICE_6_OUTLINE(\"mdi2d-dice-6-outline\", \"F114F\"),\n    DICE_D10(\"mdi2d-dice-d10\", \"F1153\"),\n    DICE_D10_OUTLINE(\"mdi2d-dice-d10-outline\", \"F076F\"),\n    DICE_D12(\"mdi2d-dice-d12\", \"F1154\"),\n    DICE_D12_OUTLINE(\"mdi2d-dice-d12-outline\", \"F0867\"),\n    DICE_D20(\"mdi2d-dice-d20\", \"F1155\"),\n    DICE_D20_OUTLINE(\"mdi2d-dice-d20-outline\", \"F05EA\"),\n    DICE_D4(\"mdi2d-dice-d4\", \"F1150\"),\n    DICE_D4_OUTLINE(\"mdi2d-dice-d4-outline\", \"F05EB\"),\n    DICE_D6(\"mdi2d-dice-d6\", \"F1151\"),\n    DICE_D6_OUTLINE(\"mdi2d-dice-d6-outline\", \"F05ED\"),\n    DICE_D8(\"mdi2d-dice-d8\", \"F1152\"),\n    DICE_D8_OUTLINE(\"mdi2d-dice-d8-outline\", \"F05EC\"),\n    DICE_MULTIPLE(\"mdi2d-dice-multiple\", \"F076E\"),\n    DICE_MULTIPLE_OUTLINE(\"mdi2d-dice-multiple-outline\", \"F1156\"),\n    DIGITAL_OCEAN(\"mdi2d-digital-ocean\", \"F1237\"),\n    DIP_SWITCH(\"mdi2d-dip-switch\", \"F07C1\"),\n    DIRECTIONS(\"mdi2d-directions\", \"F01D0\"),\n    DIRECTIONS_FORK(\"mdi2d-directions-fork\", \"F0641\"),\n    DISC(\"mdi2d-disc\", \"F05EE\"),\n    DISC_ALERT(\"mdi2d-disc-alert\", \"F01D1\"),\n    DISC_PLAYER(\"mdi2d-disc-player\", \"F0960\"),\n    DISHWASHER(\"mdi2d-dishwasher\", \"F0AAC\"),\n    DISHWASHER_ALERT(\"mdi2d-dishwasher-alert\", \"F11B8\"),\n    DISHWASHER_OFF(\"mdi2d-dishwasher-off\", \"F11B9\"),\n    DISQUS(\"mdi2d-disqus\", \"F01D2\"),\n    DISTRIBUTE_HORIZONTAL_CENTER(\"mdi2d-distribute-horizontal-center\", \"F11C9\"),\n    DISTRIBUTE_HORIZONTAL_LEFT(\"mdi2d-distribute-horizontal-left\", \"F11C8\"),\n    DISTRIBUTE_HORIZONTAL_RIGHT(\"mdi2d-distribute-horizontal-right\", \"F11CA\"),\n    DISTRIBUTE_VERTICAL_BOTTOM(\"mdi2d-distribute-vertical-bottom\", \"F11CB\"),\n    DISTRIBUTE_VERTICAL_CENTER(\"mdi2d-distribute-vertical-center\", \"F11CC\"),\n    DISTRIBUTE_VERTICAL_TOP(\"mdi2d-distribute-vertical-top\", \"F11CD\"),\n    DIVERSIFY(\"mdi2d-diversify\", \"F1877\"),\n    DIVING(\"mdi2d-diving\", \"F1977\"),\n    DIVING_FLIPPERS(\"mdi2d-diving-flippers\", \"F0DBF\"),\n    DIVING_HELMET(\"mdi2d-diving-helmet\", \"F0DC0\"),\n    DIVING_SCUBA(\"mdi2d-diving-scuba\", \"F1B77\"),\n    DIVING_SCUBA_FLAG(\"mdi2d-diving-scuba-flag\", \"F0DC2\"),\n    DIVING_SCUBA_MASK(\"mdi2d-diving-scuba-mask\", \"F0DC1\"),\n    DIVING_SCUBA_TANK(\"mdi2d-diving-scuba-tank\", \"F0DC3\"),\n    DIVING_SCUBA_TANK_MULTIPLE(\"mdi2d-diving-scuba-tank-multiple\", \"F0DC4\"),\n    DIVING_SNORKEL(\"mdi2d-diving-snorkel\", \"F0DC5\"),\n    DIVISION(\"mdi2d-division\", \"F01D4\"),\n    DIVISION_BOX(\"mdi2d-division-box\", \"F01D5\"),\n    DLNA(\"mdi2d-dlna\", \"F0A41\"),\n    DNA(\"mdi2d-dna\", \"F0684\"),\n    DNS(\"mdi2d-dns\", \"F01D6\"),\n    DNS_OUTLINE(\"mdi2d-dns-outline\", \"F0B8C\"),\n    DOCK_BOTTOM(\"mdi2d-dock-bottom\", \"F10A9\"),\n    DOCK_LEFT(\"mdi2d-dock-left\", \"F10AA\"),\n    DOCK_RIGHT(\"mdi2d-dock-right\", \"F10AB\"),\n    DOCK_TOP(\"mdi2d-dock-top\", \"F1513\"),\n    DOCK_WINDOW(\"mdi2d-dock-window\", \"F10AC\"),\n    DOCKER(\"mdi2d-docker\", \"F0868\"),\n    DOCTOR(\"mdi2d-doctor\", \"F0A42\"),\n    DOG(\"mdi2d-dog\", \"F0A43\"),\n    DOG_SERVICE(\"mdi2d-dog-service\", \"F0AAD\"),\n    DOG_SIDE(\"mdi2d-dog-side\", \"F0A44\"),\n    DOG_SIDE_OFF(\"mdi2d-dog-side-off\", \"F16EE\"),\n    DOLBY(\"mdi2d-dolby\", \"F06B3\"),\n    DOLLY(\"mdi2d-dolly\", \"F0E9E\"),\n    DOLPHIN(\"mdi2d-dolphin\", \"F18B4\"),\n    DOMAIN(\"mdi2d-domain\", \"F01D7\"),\n    DOMAIN_OFF(\"mdi2d-domain-off\", \"F0D6F\"),\n    DOMAIN_PLUS(\"mdi2d-domain-plus\", \"F10AD\"),\n    DOMAIN_REMOVE(\"mdi2d-domain-remove\", \"F10AE\"),\n    DOMAIN_SWITCH(\"mdi2d-domain-switch\", \"F1C2C\"),\n    DOME_LIGHT(\"mdi2d-dome-light\", \"F141E\"),\n    DOMINO_MASK(\"mdi2d-domino-mask\", \"F1023\"),\n    DONKEY(\"mdi2d-donkey\", \"F07C2\"),\n    DOOR(\"mdi2d-door\", \"F081A\"),\n    DOOR_CLOSED(\"mdi2d-door-closed\", \"F081B\"),\n    DOOR_CLOSED_CANCEL(\"mdi2d-door-closed-cancel\", \"F1C93\"),\n    DOOR_CLOSED_LOCK(\"mdi2d-door-closed-lock\", \"F10AF\"),\n    DOOR_OPEN(\"mdi2d-door-open\", \"F081C\"),\n    DOOR_SLIDING(\"mdi2d-door-sliding\", \"F181E\"),\n    DOOR_SLIDING_LOCK(\"mdi2d-door-sliding-lock\", \"F181F\"),\n    DOOR_SLIDING_OPEN(\"mdi2d-door-sliding-open\", \"F1820\"),\n    DOORBELL(\"mdi2d-doorbell\", \"F12E6\"),\n    DOORBELL_VIDEO(\"mdi2d-doorbell-video\", \"F0869\"),\n    DOT_NET(\"mdi2d-dot-net\", \"F0AAE\"),\n    DOTS_CIRCLE(\"mdi2d-dots-circle\", \"F1978\"),\n    DOTS_GRID(\"mdi2d-dots-grid\", \"F15FC\"),\n    DOTS_HEXAGON(\"mdi2d-dots-hexagon\", \"F15FF\"),\n    DOTS_HORIZONTAL(\"mdi2d-dots-horizontal\", \"F01D8\"),\n    DOTS_HORIZONTAL_CIRCLE(\"mdi2d-dots-horizontal-circle\", \"F07C3\"),\n    DOTS_HORIZONTAL_CIRCLE_OUTLINE(\"mdi2d-dots-horizontal-circle-outline\", \"F0B8D\"),\n    DOTS_SQUARE(\"mdi2d-dots-square\", \"F15FD\"),\n    DOTS_TRIANGLE(\"mdi2d-dots-triangle\", \"F15FE\"),\n    DOTS_VERTICAL(\"mdi2d-dots-vertical\", \"F01D9\"),\n    DOTS_VERTICAL_CIRCLE(\"mdi2d-dots-vertical-circle\", \"F07C4\"),\n    DOTS_VERTICAL_CIRCLE_OUTLINE(\"mdi2d-dots-vertical-circle-outline\", \"F0B8E\"),\n    DOWNLOAD(\"mdi2d-download\", \"F01DA\"),\n    DOWNLOAD_BOX(\"mdi2d-download-box\", \"F1462\"),\n    DOWNLOAD_BOX_OUTLINE(\"mdi2d-download-box-outline\", \"F1463\"),\n    DOWNLOAD_CIRCLE(\"mdi2d-download-circle\", \"F1464\"),\n    DOWNLOAD_CIRCLE_OUTLINE(\"mdi2d-download-circle-outline\", \"F1465\"),\n    DOWNLOAD_LOCK(\"mdi2d-download-lock\", \"F1320\"),\n    DOWNLOAD_LOCK_OUTLINE(\"mdi2d-download-lock-outline\", \"F1321\"),\n    DOWNLOAD_MULTIPLE(\"mdi2d-download-multiple\", \"F09E9\"),\n    DOWNLOAD_MULTIPLE_OUTLINE(\"mdi2d-download-multiple-outline\", \"F1CD0\"),\n    DOWNLOAD_NETWORK(\"mdi2d-download-network\", \"F06F4\"),\n    DOWNLOAD_NETWORK_OUTLINE(\"mdi2d-download-network-outline\", \"F0C66\"),\n    DOWNLOAD_OFF(\"mdi2d-download-off\", \"F10B0\"),\n    DOWNLOAD_OFF_OUTLINE(\"mdi2d-download-off-outline\", \"F10B1\"),\n    DOWNLOAD_OUTLINE(\"mdi2d-download-outline\", \"F0B8F\"),\n    DRAG(\"mdi2d-drag\", \"F01DB\"),\n    DRAG_HORIZONTAL(\"mdi2d-drag-horizontal\", \"F01DC\"),\n    DRAG_HORIZONTAL_VARIANT(\"mdi2d-drag-horizontal-variant\", \"F12F0\"),\n    DRAG_VARIANT(\"mdi2d-drag-variant\", \"F0B90\"),\n    DRAG_VERTICAL(\"mdi2d-drag-vertical\", \"F01DD\"),\n    DRAG_VERTICAL_VARIANT(\"mdi2d-drag-vertical-variant\", \"F12F1\"),\n    DRAMA_MASKS(\"mdi2d-drama-masks\", \"F0D02\"),\n    DRAW(\"mdi2d-draw\", \"F0F49\"),\n    DRAW_PEN(\"mdi2d-draw-pen\", \"F19B9\"),\n    DRAWING(\"mdi2d-drawing\", \"F01DE\"),\n    DRAWING_BOX(\"mdi2d-drawing-box\", \"F01DF\"),\n    DRESSER(\"mdi2d-dresser\", \"F0F4A\"),\n    DRESSER_OUTLINE(\"mdi2d-dresser-outline\", \"F0F4B\"),\n    DRONE(\"mdi2d-drone\", \"F01E2\"),\n    DROPBOX(\"mdi2d-dropbox\", \"F01E3\"),\n    DRUPAL(\"mdi2d-drupal\", \"F01E4\"),\n    DUCK(\"mdi2d-duck\", \"F01E5\"),\n    DUMBBELL(\"mdi2d-dumbbell\", \"F01E6\"),\n    DUMP_TRUCK(\"mdi2d-dump-truck\", \"F0C67\");\n\n    public static MaterialDesignD findByDescription(String description) {\n        for (MaterialDesignD font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignD(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignDIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignDIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2d-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignD.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignDIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignDIkonProvider implements IkonProvider<MaterialDesignD> {\n    @Override\n    public Class<MaterialDesignD> getIkon() {\n        return MaterialDesignD.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignE.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignE implements Ikon {\n    EAR_HEARING(\"mdi2e-ear-hearing\", \"F07C5\"),\n    EAR_HEARING_LOOP(\"mdi2e-ear-hearing-loop\", \"F1AEE\"),\n    EAR_HEARING_OFF(\"mdi2e-ear-hearing-off\", \"F0A45\"),\n    EARBUDS(\"mdi2e-earbuds\", \"F184F\"),\n    EARBUDS_OFF(\"mdi2e-earbuds-off\", \"F1850\"),\n    EARBUDS_OFF_OUTLINE(\"mdi2e-earbuds-off-outline\", \"F1851\"),\n    EARBUDS_OUTLINE(\"mdi2e-earbuds-outline\", \"F1852\"),\n    EARTH(\"mdi2e-earth\", \"F01E7\"),\n    EARTH_ARROW_DOWN(\"mdi2e-earth-arrow-down\", \"F1C87\"),\n    EARTH_ARROW_LEFT(\"mdi2e-earth-arrow-left\", \"F1C88\"),\n    EARTH_ARROW_RIGHT(\"mdi2e-earth-arrow-right\", \"F1311\"),\n    EARTH_ARROW_UP(\"mdi2e-earth-arrow-up\", \"F1C89\"),\n    EARTH_BOX(\"mdi2e-earth-box\", \"F06CD\"),\n    EARTH_BOX_MINUS(\"mdi2e-earth-box-minus\", \"F1407\"),\n    EARTH_BOX_OFF(\"mdi2e-earth-box-off\", \"F06CE\"),\n    EARTH_BOX_PLUS(\"mdi2e-earth-box-plus\", \"F1406\"),\n    EARTH_BOX_REMOVE(\"mdi2e-earth-box-remove\", \"F1408\"),\n    EARTH_MINUS(\"mdi2e-earth-minus\", \"F1404\"),\n    EARTH_OFF(\"mdi2e-earth-off\", \"F01E8\"),\n    EARTH_PLUS(\"mdi2e-earth-plus\", \"F1403\"),\n    EARTH_REMOVE(\"mdi2e-earth-remove\", \"F1405\"),\n    EGG(\"mdi2e-egg\", \"F0AAF\"),\n    EGG_EASTER(\"mdi2e-egg-easter\", \"F0AB0\"),\n    EGG_FRIED(\"mdi2e-egg-fried\", \"F184A\"),\n    EGG_OFF(\"mdi2e-egg-off\", \"F13F0\"),\n    EGG_OFF_OUTLINE(\"mdi2e-egg-off-outline\", \"F13F1\"),\n    EGG_OUTLINE(\"mdi2e-egg-outline\", \"F13F2\"),\n    EIFFEL_TOWER(\"mdi2e-eiffel-tower\", \"F156B\"),\n    EIGHT_TRACK(\"mdi2e-eight-track\", \"F09EA\"),\n    EJECT(\"mdi2e-eject\", \"F01EA\"),\n    EJECT_CIRCLE(\"mdi2e-eject-circle\", \"F1B23\"),\n    EJECT_CIRCLE_OUTLINE(\"mdi2e-eject-circle-outline\", \"F1B24\"),\n    EJECT_OUTLINE(\"mdi2e-eject-outline\", \"F0B91\"),\n    ELECTRIC_SWITCH(\"mdi2e-electric-switch\", \"F0E9F\"),\n    ELECTRIC_SWITCH_CLOSED(\"mdi2e-electric-switch-closed\", \"F10D9\"),\n    ELECTRON_FRAMEWORK(\"mdi2e-electron-framework\", \"F1024\"),\n    ELEPHANT(\"mdi2e-elephant\", \"F07C6\"),\n    ELEVATION_DECLINE(\"mdi2e-elevation-decline\", \"F01EB\"),\n    ELEVATION_RISE(\"mdi2e-elevation-rise\", \"F01EC\"),\n    ELEVATOR(\"mdi2e-elevator\", \"F01ED\"),\n    ELEVATOR_DOWN(\"mdi2e-elevator-down\", \"F12C2\"),\n    ELEVATOR_PASSENGER(\"mdi2e-elevator-passenger\", \"F1381\"),\n    ELEVATOR_PASSENGER_OFF(\"mdi2e-elevator-passenger-off\", \"F1979\"),\n    ELEVATOR_PASSENGER_OFF_OUTLINE(\"mdi2e-elevator-passenger-off-outline\", \"F197A\"),\n    ELEVATOR_PASSENGER_OUTLINE(\"mdi2e-elevator-passenger-outline\", \"F197B\"),\n    ELEVATOR_UP(\"mdi2e-elevator-up\", \"F12C1\"),\n    ELLIPSE(\"mdi2e-ellipse\", \"F0EA0\"),\n    ELLIPSE_OUTLINE(\"mdi2e-ellipse-outline\", \"F0EA1\"),\n    EMAIL(\"mdi2e-email\", \"F01EE\"),\n    EMAIL_ALERT(\"mdi2e-email-alert\", \"F06CF\"),\n    EMAIL_ALERT_OUTLINE(\"mdi2e-email-alert-outline\", \"F0D42\"),\n    EMAIL_ARROW_LEFT(\"mdi2e-email-arrow-left\", \"F10DA\"),\n    EMAIL_ARROW_LEFT_OUTLINE(\"mdi2e-email-arrow-left-outline\", \"F10DB\"),\n    EMAIL_ARROW_RIGHT(\"mdi2e-email-arrow-right\", \"F10DC\"),\n    EMAIL_ARROW_RIGHT_OUTLINE(\"mdi2e-email-arrow-right-outline\", \"F10DD\"),\n    EMAIL_BOX(\"mdi2e-email-box\", \"F0D03\"),\n    EMAIL_CHECK(\"mdi2e-email-check\", \"F0AB1\"),\n    EMAIL_CHECK_OUTLINE(\"mdi2e-email-check-outline\", \"F0AB2\"),\n    EMAIL_EDIT(\"mdi2e-email-edit\", \"F0EE3\"),\n    EMAIL_EDIT_OUTLINE(\"mdi2e-email-edit-outline\", \"F0EE4\"),\n    EMAIL_FAST(\"mdi2e-email-fast\", \"F186F\"),\n    EMAIL_FAST_OUTLINE(\"mdi2e-email-fast-outline\", \"F1870\"),\n    EMAIL_HEART_OUTLINE(\"mdi2e-email-heart-outline\", \"F1C5B\"),\n    EMAIL_LOCK(\"mdi2e-email-lock\", \"F01F1\"),\n    EMAIL_LOCK_OUTLINE(\"mdi2e-email-lock-outline\", \"F1B61\"),\n    EMAIL_MARK_AS_UNREAD(\"mdi2e-email-mark-as-unread\", \"F0B92\"),\n    EMAIL_MINUS(\"mdi2e-email-minus\", \"F0EE5\"),\n    EMAIL_MINUS_OUTLINE(\"mdi2e-email-minus-outline\", \"F0EE6\"),\n    EMAIL_MULTIPLE(\"mdi2e-email-multiple\", \"F0EE7\"),\n    EMAIL_MULTIPLE_OUTLINE(\"mdi2e-email-multiple-outline\", \"F0EE8\"),\n    EMAIL_NEWSLETTER(\"mdi2e-email-newsletter\", \"F0FB1\"),\n    EMAIL_OFF(\"mdi2e-email-off\", \"F13E3\"),\n    EMAIL_OFF_OUTLINE(\"mdi2e-email-off-outline\", \"F13E4\"),\n    EMAIL_OPEN(\"mdi2e-email-open\", \"F01EF\"),\n    EMAIL_OPEN_HEART_OUTLINE(\"mdi2e-email-open-heart-outline\", \"F1C5C\"),\n    EMAIL_OPEN_MULTIPLE(\"mdi2e-email-open-multiple\", \"F0EE9\"),\n    EMAIL_OPEN_MULTIPLE_OUTLINE(\"mdi2e-email-open-multiple-outline\", \"F0EEA\"),\n    EMAIL_OPEN_OUTLINE(\"mdi2e-email-open-outline\", \"F05EF\"),\n    EMAIL_OUTLINE(\"mdi2e-email-outline\", \"F01F0\"),\n    EMAIL_PLUS(\"mdi2e-email-plus\", \"F09EB\"),\n    EMAIL_PLUS_OUTLINE(\"mdi2e-email-plus-outline\", \"F09EC\"),\n    EMAIL_REMOVE(\"mdi2e-email-remove\", \"F1661\"),\n    EMAIL_REMOVE_OUTLINE(\"mdi2e-email-remove-outline\", \"F1662\"),\n    EMAIL_SEAL(\"mdi2e-email-seal\", \"F195B\"),\n    EMAIL_SEAL_OUTLINE(\"mdi2e-email-seal-outline\", \"F195C\"),\n    EMAIL_SEARCH(\"mdi2e-email-search\", \"F0961\"),\n    EMAIL_SEARCH_OUTLINE(\"mdi2e-email-search-outline\", \"F0962\"),\n    EMAIL_SYNC(\"mdi2e-email-sync\", \"F12C7\"),\n    EMAIL_SYNC_OUTLINE(\"mdi2e-email-sync-outline\", \"F12C8\"),\n    EMAIL_VARIANT(\"mdi2e-email-variant\", \"F05F0\"),\n    EMBER(\"mdi2e-ember\", \"F0B30\"),\n    EMBY(\"mdi2e-emby\", \"F06B4\"),\n    EMOTICON(\"mdi2e-emoticon\", \"F0C68\"),\n    EMOTICON_ANGRY(\"mdi2e-emoticon-angry\", \"F0C69\"),\n    EMOTICON_ANGRY_OUTLINE(\"mdi2e-emoticon-angry-outline\", \"F0C6A\"),\n    EMOTICON_CONFUSED(\"mdi2e-emoticon-confused\", \"F10DE\"),\n    EMOTICON_CONFUSED_OUTLINE(\"mdi2e-emoticon-confused-outline\", \"F10DF\"),\n    EMOTICON_COOL(\"mdi2e-emoticon-cool\", \"F0C6B\"),\n    EMOTICON_COOL_OUTLINE(\"mdi2e-emoticon-cool-outline\", \"F01F3\"),\n    EMOTICON_CRY(\"mdi2e-emoticon-cry\", \"F0C6C\"),\n    EMOTICON_CRY_OUTLINE(\"mdi2e-emoticon-cry-outline\", \"F0C6D\"),\n    EMOTICON_DEAD(\"mdi2e-emoticon-dead\", \"F0C6E\"),\n    EMOTICON_DEAD_OUTLINE(\"mdi2e-emoticon-dead-outline\", \"F069B\"),\n    EMOTICON_DEVIL(\"mdi2e-emoticon-devil\", \"F0C6F\"),\n    EMOTICON_DEVIL_OUTLINE(\"mdi2e-emoticon-devil-outline\", \"F01F4\"),\n    EMOTICON_EXCITED(\"mdi2e-emoticon-excited\", \"F0C70\"),\n    EMOTICON_EXCITED_OUTLINE(\"mdi2e-emoticon-excited-outline\", \"F069C\"),\n    EMOTICON_FROWN(\"mdi2e-emoticon-frown\", \"F0F4C\"),\n    EMOTICON_FROWN_OUTLINE(\"mdi2e-emoticon-frown-outline\", \"F0F4D\"),\n    EMOTICON_HAPPY(\"mdi2e-emoticon-happy\", \"F0C71\"),\n    EMOTICON_HAPPY_OUTLINE(\"mdi2e-emoticon-happy-outline\", \"F01F5\"),\n    EMOTICON_KISS(\"mdi2e-emoticon-kiss\", \"F0C72\"),\n    EMOTICON_KISS_OUTLINE(\"mdi2e-emoticon-kiss-outline\", \"F0C73\"),\n    EMOTICON_LOL(\"mdi2e-emoticon-lol\", \"F1214\"),\n    EMOTICON_LOL_OUTLINE(\"mdi2e-emoticon-lol-outline\", \"F1215\"),\n    EMOTICON_MINUS(\"mdi2e-emoticon-minus\", \"F1CB2\"),\n    EMOTICON_MINUS_OUTLINE(\"mdi2e-emoticon-minus-outline\", \"F1CB3\"),\n    EMOTICON_NEUTRAL(\"mdi2e-emoticon-neutral\", \"F0C74\"),\n    EMOTICON_NEUTRAL_OUTLINE(\"mdi2e-emoticon-neutral-outline\", \"F01F6\"),\n    EMOTICON_OUTLINE(\"mdi2e-emoticon-outline\", \"F01F2\"),\n    EMOTICON_PLUS(\"mdi2e-emoticon-plus\", \"F1CB4\"),\n    EMOTICON_PLUS_OUTLINE(\"mdi2e-emoticon-plus-outline\", \"F1CB5\"),\n    EMOTICON_POOP(\"mdi2e-emoticon-poop\", \"F01F7\"),\n    EMOTICON_POOP_OUTLINE(\"mdi2e-emoticon-poop-outline\", \"F0C75\"),\n    EMOTICON_REMOVE(\"mdi2e-emoticon-remove\", \"F1CB6\"),\n    EMOTICON_REMOVE_OUTLINE(\"mdi2e-emoticon-remove-outline\", \"F1CB7\"),\n    EMOTICON_SAD(\"mdi2e-emoticon-sad\", \"F0C76\"),\n    EMOTICON_SAD_OUTLINE(\"mdi2e-emoticon-sad-outline\", \"F01F8\"),\n    EMOTICON_SICK(\"mdi2e-emoticon-sick\", \"F157C\"),\n    EMOTICON_SICK_OUTLINE(\"mdi2e-emoticon-sick-outline\", \"F157D\"),\n    EMOTICON_TONGUE(\"mdi2e-emoticon-tongue\", \"F01F9\"),\n    EMOTICON_TONGUE_OUTLINE(\"mdi2e-emoticon-tongue-outline\", \"F0C77\"),\n    EMOTICON_WINK(\"mdi2e-emoticon-wink\", \"F0C78\"),\n    EMOTICON_WINK_OUTLINE(\"mdi2e-emoticon-wink-outline\", \"F0C79\"),\n    ENGINE(\"mdi2e-engine\", \"F01FA\"),\n    ENGINE_OFF(\"mdi2e-engine-off\", \"F0A46\"),\n    ENGINE_OFF_OUTLINE(\"mdi2e-engine-off-outline\", \"F0A47\"),\n    ENGINE_OUTLINE(\"mdi2e-engine-outline\", \"F01FB\"),\n    EPSILON(\"mdi2e-epsilon\", \"F10E0\"),\n    EQUAL(\"mdi2e-equal\", \"F01FC\"),\n    EQUAL_BOX(\"mdi2e-equal-box\", \"F01FD\"),\n    EQUALIZER(\"mdi2e-equalizer\", \"F0EA2\"),\n    EQUALIZER_OUTLINE(\"mdi2e-equalizer-outline\", \"F0EA3\"),\n    ERASER(\"mdi2e-eraser\", \"F01FE\"),\n    ERASER_VARIANT(\"mdi2e-eraser-variant\", \"F0642\"),\n    ESCALATOR(\"mdi2e-escalator\", \"F01FF\"),\n    ESCALATOR_BOX(\"mdi2e-escalator-box\", \"F1399\"),\n    ESCALATOR_DOWN(\"mdi2e-escalator-down\", \"F12C0\"),\n    ESCALATOR_UP(\"mdi2e-escalator-up\", \"F12BF\"),\n    ESLINT(\"mdi2e-eslint\", \"F0C7A\"),\n    ET(\"mdi2e-et\", \"F0AB3\"),\n    ETHEREUM(\"mdi2e-ethereum\", \"F086A\"),\n    ETHERNET(\"mdi2e-ethernet\", \"F0200\"),\n    ETHERNET_CABLE(\"mdi2e-ethernet-cable\", \"F0201\"),\n    ETHERNET_CABLE_OFF(\"mdi2e-ethernet-cable-off\", \"F0202\"),\n    ETHERNET_OFF(\"mdi2e-ethernet-off\", \"F1CD1\"),\n    EV_PLUG_CCS1(\"mdi2e-ev-plug-ccs1\", \"F1519\"),\n    EV_PLUG_CCS2(\"mdi2e-ev-plug-ccs2\", \"F151A\"),\n    EV_PLUG_CHADEMO(\"mdi2e-ev-plug-chademo\", \"F151B\"),\n    EV_PLUG_TESLA(\"mdi2e-ev-plug-tesla\", \"F151C\"),\n    EV_PLUG_TYPE1(\"mdi2e-ev-plug-type1\", \"F151D\"),\n    EV_PLUG_TYPE2(\"mdi2e-ev-plug-type2\", \"F151E\"),\n    EV_STATION(\"mdi2e-ev-station\", \"F05F1\"),\n    EVERNOTE(\"mdi2e-evernote\", \"F0204\"),\n    EXCAVATOR(\"mdi2e-excavator\", \"F1025\"),\n    EXCLAMATION(\"mdi2e-exclamation\", \"F0205\"),\n    EXCLAMATION_THICK(\"mdi2e-exclamation-thick\", \"F1238\"),\n    EXIT_RUN(\"mdi2e-exit-run\", \"F0A48\"),\n    EXIT_TO_APP(\"mdi2e-exit-to-app\", \"F0206\"),\n    EXPAND_ALL(\"mdi2e-expand-all\", \"F0AB4\"),\n    EXPAND_ALL_OUTLINE(\"mdi2e-expand-all-outline\", \"F0AB5\"),\n    EXPANSION_CARD(\"mdi2e-expansion-card\", \"F08AE\"),\n    EXPANSION_CARD_VARIANT(\"mdi2e-expansion-card-variant\", \"F0FB2\"),\n    EXPONENT(\"mdi2e-exponent\", \"F0963\"),\n    EXPONENT_BOX(\"mdi2e-exponent-box\", \"F0964\"),\n    EXPORT(\"mdi2e-export\", \"F0207\"),\n    EXPORT_VARIANT(\"mdi2e-export-variant\", \"F0B93\"),\n    EYE(\"mdi2e-eye\", \"F0208\"),\n    EYE_ARROW_LEFT(\"mdi2e-eye-arrow-left\", \"F18FD\"),\n    EYE_ARROW_LEFT_OUTLINE(\"mdi2e-eye-arrow-left-outline\", \"F18FE\"),\n    EYE_ARROW_RIGHT(\"mdi2e-eye-arrow-right\", \"F18FF\"),\n    EYE_ARROW_RIGHT_OUTLINE(\"mdi2e-eye-arrow-right-outline\", \"F1900\"),\n    EYE_CHECK(\"mdi2e-eye-check\", \"F0D04\"),\n    EYE_CHECK_OUTLINE(\"mdi2e-eye-check-outline\", \"F0D05\"),\n    EYE_CIRCLE(\"mdi2e-eye-circle\", \"F0B94\"),\n    EYE_CIRCLE_OUTLINE(\"mdi2e-eye-circle-outline\", \"F0B95\"),\n    EYE_CLOSED(\"mdi2e-eye-closed\", \"F1CA3\"),\n    EYE_LOCK(\"mdi2e-eye-lock\", \"F1C06\"),\n    EYE_LOCK_OPEN(\"mdi2e-eye-lock-open\", \"F1C07\"),\n    EYE_LOCK_OPEN_OUTLINE(\"mdi2e-eye-lock-open-outline\", \"F1C08\"),\n    EYE_LOCK_OUTLINE(\"mdi2e-eye-lock-outline\", \"F1C09\"),\n    EYE_MINUS(\"mdi2e-eye-minus\", \"F1026\"),\n    EYE_MINUS_OUTLINE(\"mdi2e-eye-minus-outline\", \"F1027\"),\n    EYE_OFF(\"mdi2e-eye-off\", \"F0209\"),\n    EYE_OFF_OUTLINE(\"mdi2e-eye-off-outline\", \"F06D1\"),\n    EYE_OUTLINE(\"mdi2e-eye-outline\", \"F06D0\"),\n    EYE_PLUS(\"mdi2e-eye-plus\", \"F086B\"),\n    EYE_PLUS_OUTLINE(\"mdi2e-eye-plus-outline\", \"F086C\"),\n    EYE_REFRESH(\"mdi2e-eye-refresh\", \"F197C\"),\n    EYE_REFRESH_OUTLINE(\"mdi2e-eye-refresh-outline\", \"F197D\"),\n    EYE_REMOVE(\"mdi2e-eye-remove\", \"F15E3\"),\n    EYE_REMOVE_OUTLINE(\"mdi2e-eye-remove-outline\", \"F15E4\"),\n    EYE_SETTINGS(\"mdi2e-eye-settings\", \"F086D\"),\n    EYE_SETTINGS_OUTLINE(\"mdi2e-eye-settings-outline\", \"F086E\"),\n    EYEDROPPER(\"mdi2e-eyedropper\", \"F020A\"),\n    EYEDROPPER_MINUS(\"mdi2e-eyedropper-minus\", \"F13DD\"),\n    EYEDROPPER_OFF(\"mdi2e-eyedropper-off\", \"F13DF\"),\n    EYEDROPPER_PLUS(\"mdi2e-eyedropper-plus\", \"F13DC\"),\n    EYEDROPPER_REMOVE(\"mdi2e-eyedropper-remove\", \"F13DE\"),\n    EYEDROPPER_VARIANT(\"mdi2e-eyedropper-variant\", \"F020B\");\n\n    public static MaterialDesignE findByDescription(String description) {\n        for (MaterialDesignE font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignE(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignEIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignEIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2e-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignE.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignEIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignEIkonProvider implements IkonProvider<MaterialDesignE> {\n    @Override\n    public Class<MaterialDesignE> getIkon() {\n        return MaterialDesignE.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignF.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignF implements Ikon {\n    FACE_AGENT(\"mdi2f-face-agent\", \"F0D70\"),\n    FACE_MAN(\"mdi2f-face-man\", \"F0643\"),\n    FACE_MAN_OUTLINE(\"mdi2f-face-man-outline\", \"F0B96\"),\n    FACE_MAN_PROFILE(\"mdi2f-face-man-profile\", \"F0644\"),\n    FACE_MAN_SHIMMER(\"mdi2f-face-man-shimmer\", \"F15CC\"),\n    FACE_MAN_SHIMMER_OUTLINE(\"mdi2f-face-man-shimmer-outline\", \"F15CD\"),\n    FACE_MASK(\"mdi2f-face-mask\", \"F1586\"),\n    FACE_MASK_OUTLINE(\"mdi2f-face-mask-outline\", \"F1587\"),\n    FACE_RECOGNITION(\"mdi2f-face-recognition\", \"F0C7B\"),\n    FACE_WOMAN(\"mdi2f-face-woman\", \"F1077\"),\n    FACE_WOMAN_OUTLINE(\"mdi2f-face-woman-outline\", \"F1078\"),\n    FACE_WOMAN_PROFILE(\"mdi2f-face-woman-profile\", \"F1076\"),\n    FACE_WOMAN_SHIMMER(\"mdi2f-face-woman-shimmer\", \"F15CE\"),\n    FACE_WOMAN_SHIMMER_OUTLINE(\"mdi2f-face-woman-shimmer-outline\", \"F15CF\"),\n    FACEBOOK(\"mdi2f-facebook\", \"F020C\"),\n    FACEBOOK_GAMING(\"mdi2f-facebook-gaming\", \"F07DD\"),\n    FACEBOOK_MESSENGER(\"mdi2f-facebook-messenger\", \"F020E\"),\n    FACEBOOK_WORKPLACE(\"mdi2f-facebook-workplace\", \"F0B31\"),\n    FACTORY(\"mdi2f-factory\", \"F020F\"),\n    FAMILY_TREE(\"mdi2f-family-tree\", \"F160E\"),\n    FAN(\"mdi2f-fan\", \"F0210\"),\n    FAN_ALERT(\"mdi2f-fan-alert\", \"F146C\"),\n    FAN_AUTO(\"mdi2f-fan-auto\", \"F171D\"),\n    FAN_CHEVRON_DOWN(\"mdi2f-fan-chevron-down\", \"F146D\"),\n    FAN_CHEVRON_UP(\"mdi2f-fan-chevron-up\", \"F146E\"),\n    FAN_CLOCK(\"mdi2f-fan-clock\", \"F1A3A\"),\n    FAN_MINUS(\"mdi2f-fan-minus\", \"F1470\"),\n    FAN_OFF(\"mdi2f-fan-off\", \"F081D\"),\n    FAN_PLUS(\"mdi2f-fan-plus\", \"F146F\"),\n    FAN_REMOVE(\"mdi2f-fan-remove\", \"F1471\"),\n    FAN_SPEED_1(\"mdi2f-fan-speed-1\", \"F1472\"),\n    FAN_SPEED_2(\"mdi2f-fan-speed-2\", \"F1473\"),\n    FAN_SPEED_3(\"mdi2f-fan-speed-3\", \"F1474\"),\n    FAST_FORWARD(\"mdi2f-fast-forward\", \"F0211\"),\n    FAST_FORWARD_10(\"mdi2f-fast-forward-10\", \"F0D71\"),\n    FAST_FORWARD_15(\"mdi2f-fast-forward-15\", \"F193A\"),\n    FAST_FORWARD_30(\"mdi2f-fast-forward-30\", \"F0D06\"),\n    FAST_FORWARD_45(\"mdi2f-fast-forward-45\", \"F1B12\"),\n    FAST_FORWARD_5(\"mdi2f-fast-forward-5\", \"F11F8\"),\n    FAST_FORWARD_60(\"mdi2f-fast-forward-60\", \"F160B\"),\n    FAST_FORWARD_OUTLINE(\"mdi2f-fast-forward-outline\", \"F06D2\"),\n    FAUCET(\"mdi2f-faucet\", \"F1B29\"),\n    FAUCET_VARIANT(\"mdi2f-faucet-variant\", \"F1B2A\"),\n    FAX(\"mdi2f-fax\", \"F0212\"),\n    FEATHER(\"mdi2f-feather\", \"F06D3\"),\n    FEATURE_SEARCH(\"mdi2f-feature-search\", \"F0A49\"),\n    FEATURE_SEARCH_OUTLINE(\"mdi2f-feature-search-outline\", \"F0A4A\"),\n    FEDORA(\"mdi2f-fedora\", \"F08DB\"),\n    FENCE(\"mdi2f-fence\", \"F179A\"),\n    FENCE_ELECTRIC(\"mdi2f-fence-electric\", \"F17F6\"),\n    FENCING(\"mdi2f-fencing\", \"F14C1\"),\n    FERRIS_WHEEL(\"mdi2f-ferris-wheel\", \"F0EA4\"),\n    FERRY(\"mdi2f-ferry\", \"F0213\"),\n    FILE(\"mdi2f-file\", \"F0214\"),\n    FILE_ACCOUNT(\"mdi2f-file-account\", \"F073B\"),\n    FILE_ACCOUNT_OUTLINE(\"mdi2f-file-account-outline\", \"F1028\"),\n    FILE_ALERT(\"mdi2f-file-alert\", \"F0A4B\"),\n    FILE_ALERT_OUTLINE(\"mdi2f-file-alert-outline\", \"F0A4C\"),\n    FILE_ARROW_LEFT_RIGHT(\"mdi2f-file-arrow-left-right\", \"F1A93\"),\n    FILE_ARROW_LEFT_RIGHT_OUTLINE(\"mdi2f-file-arrow-left-right-outline\", \"F1A94\"),\n    FILE_ARROW_UP_DOWN(\"mdi2f-file-arrow-up-down\", \"F1A95\"),\n    FILE_ARROW_UP_DOWN_OUTLINE(\"mdi2f-file-arrow-up-down-outline\", \"F1A96\"),\n    FILE_CABINET(\"mdi2f-file-cabinet\", \"F0AB6\"),\n    FILE_CAD(\"mdi2f-file-cad\", \"F0EEB\"),\n    FILE_CAD_BOX(\"mdi2f-file-cad-box\", \"F0EEC\"),\n    FILE_CANCEL(\"mdi2f-file-cancel\", \"F0DC6\"),\n    FILE_CANCEL_OUTLINE(\"mdi2f-file-cancel-outline\", \"F0DC7\"),\n    FILE_CERTIFICATE(\"mdi2f-file-certificate\", \"F1186\"),\n    FILE_CERTIFICATE_OUTLINE(\"mdi2f-file-certificate-outline\", \"F1187\"),\n    FILE_CHART(\"mdi2f-file-chart\", \"F0215\"),\n    FILE_CHART_CHECK(\"mdi2f-file-chart-check\", \"F19C6\"),\n    FILE_CHART_CHECK_OUTLINE(\"mdi2f-file-chart-check-outline\", \"F19C7\"),\n    FILE_CHART_OUTLINE(\"mdi2f-file-chart-outline\", \"F1029\"),\n    FILE_CHECK(\"mdi2f-file-check\", \"F0216\"),\n    FILE_CHECK_OUTLINE(\"mdi2f-file-check-outline\", \"F0E29\"),\n    FILE_CLOCK(\"mdi2f-file-clock\", \"F12E1\"),\n    FILE_CLOCK_OUTLINE(\"mdi2f-file-clock-outline\", \"F12E2\"),\n    FILE_CLOUD(\"mdi2f-file-cloud\", \"F0217\"),\n    FILE_CLOUD_OUTLINE(\"mdi2f-file-cloud-outline\", \"F102A\"),\n    FILE_CODE(\"mdi2f-file-code\", \"F022E\"),\n    FILE_CODE_OUTLINE(\"mdi2f-file-code-outline\", \"F102B\"),\n    FILE_COG(\"mdi2f-file-cog\", \"F107B\"),\n    FILE_COG_OUTLINE(\"mdi2f-file-cog-outline\", \"F107C\"),\n    FILE_COMPARE(\"mdi2f-file-compare\", \"F08AA\"),\n    FILE_DELIMITED(\"mdi2f-file-delimited\", \"F0218\"),\n    FILE_DELIMITED_OUTLINE(\"mdi2f-file-delimited-outline\", \"F0EA5\"),\n    FILE_DOCUMENT(\"mdi2f-file-document\", \"F0219\"),\n    FILE_DOCUMENT_ALERT(\"mdi2f-file-document-alert\", \"F1A97\"),\n    FILE_DOCUMENT_ALERT_OUTLINE(\"mdi2f-file-document-alert-outline\", \"F1A98\"),\n    FILE_DOCUMENT_ARROW_RIGHT(\"mdi2f-file-document-arrow-right\", \"F1C0F\"),\n    FILE_DOCUMENT_ARROW_RIGHT_OUTLINE(\"mdi2f-file-document-arrow-right-outline\", \"F1C10\"),\n    FILE_DOCUMENT_CHECK(\"mdi2f-file-document-check\", \"F1A99\"),\n    FILE_DOCUMENT_CHECK_OUTLINE(\"mdi2f-file-document-check-outline\", \"F1A9A\"),\n    FILE_DOCUMENT_EDIT(\"mdi2f-file-document-edit\", \"F0DC8\"),\n    FILE_DOCUMENT_EDIT_OUTLINE(\"mdi2f-file-document-edit-outline\", \"F0DC9\"),\n    FILE_DOCUMENT_MINUS(\"mdi2f-file-document-minus\", \"F1A9B\"),\n    FILE_DOCUMENT_MINUS_OUTLINE(\"mdi2f-file-document-minus-outline\", \"F1A9C\"),\n    FILE_DOCUMENT_MULTIPLE(\"mdi2f-file-document-multiple\", \"F1517\"),\n    FILE_DOCUMENT_MULTIPLE_OUTLINE(\"mdi2f-file-document-multiple-outline\", \"F1518\"),\n    FILE_DOCUMENT_OUTLINE(\"mdi2f-file-document-outline\", \"F09EE\"),\n    FILE_DOCUMENT_PLUS(\"mdi2f-file-document-plus\", \"F1A9D\"),\n    FILE_DOCUMENT_PLUS_OUTLINE(\"mdi2f-file-document-plus-outline\", \"F1A9E\"),\n    FILE_DOCUMENT_REFRESH(\"mdi2f-file-document-refresh\", \"F1C7A\"),\n    FILE_DOCUMENT_REFRESH_OUTLINE(\"mdi2f-file-document-refresh-outline\", \"F1C7B\"),\n    FILE_DOCUMENT_REMOVE(\"mdi2f-file-document-remove\", \"F1A9F\"),\n    FILE_DOCUMENT_REMOVE_OUTLINE(\"mdi2f-file-document-remove-outline\", \"F1AA0\"),\n    FILE_DOWNLOAD(\"mdi2f-file-download\", \"F0965\"),\n    FILE_DOWNLOAD_OUTLINE(\"mdi2f-file-download-outline\", \"F0966\"),\n    FILE_EDIT(\"mdi2f-file-edit\", \"F11E7\"),\n    FILE_EDIT_OUTLINE(\"mdi2f-file-edit-outline\", \"F11E8\"),\n    FILE_EXCEL(\"mdi2f-file-excel\", \"F021B\"),\n    FILE_EXCEL_BOX(\"mdi2f-file-excel-box\", \"F021C\"),\n    FILE_EXCEL_BOX_OUTLINE(\"mdi2f-file-excel-box-outline\", \"F102C\"),\n    FILE_EXCEL_OUTLINE(\"mdi2f-file-excel-outline\", \"F102D\"),\n    FILE_EXPORT(\"mdi2f-file-export\", \"F021D\"),\n    FILE_EXPORT_OUTLINE(\"mdi2f-file-export-outline\", \"F102E\"),\n    FILE_EYE(\"mdi2f-file-eye\", \"F0DCA\"),\n    FILE_EYE_OUTLINE(\"mdi2f-file-eye-outline\", \"F0DCB\"),\n    FILE_FIND(\"mdi2f-file-find\", \"F021E\"),\n    FILE_FIND_OUTLINE(\"mdi2f-file-find-outline\", \"F0B97\"),\n    FILE_GIF_BOX(\"mdi2f-file-gif-box\", \"F0D78\"),\n    FILE_HIDDEN(\"mdi2f-file-hidden\", \"F0613\"),\n    FILE_IMAGE(\"mdi2f-file-image\", \"F021F\"),\n    FILE_IMAGE_MARKER(\"mdi2f-file-image-marker\", \"F1772\"),\n    FILE_IMAGE_MARKER_OUTLINE(\"mdi2f-file-image-marker-outline\", \"F1773\"),\n    FILE_IMAGE_MINUS(\"mdi2f-file-image-minus\", \"F193B\"),\n    FILE_IMAGE_MINUS_OUTLINE(\"mdi2f-file-image-minus-outline\", \"F193C\"),\n    FILE_IMAGE_OUTLINE(\"mdi2f-file-image-outline\", \"F0EB0\"),\n    FILE_IMAGE_PLUS(\"mdi2f-file-image-plus\", \"F193D\"),\n    FILE_IMAGE_PLUS_OUTLINE(\"mdi2f-file-image-plus-outline\", \"F193E\"),\n    FILE_IMAGE_REMOVE(\"mdi2f-file-image-remove\", \"F193F\"),\n    FILE_IMAGE_REMOVE_OUTLINE(\"mdi2f-file-image-remove-outline\", \"F1940\"),\n    FILE_IMPORT(\"mdi2f-file-import\", \"F0220\"),\n    FILE_IMPORT_OUTLINE(\"mdi2f-file-import-outline\", \"F102F\"),\n    FILE_JPG_BOX(\"mdi2f-file-jpg-box\", \"F0225\"),\n    FILE_KEY(\"mdi2f-file-key\", \"F1184\"),\n    FILE_KEY_OUTLINE(\"mdi2f-file-key-outline\", \"F1185\"),\n    FILE_LINK(\"mdi2f-file-link\", \"F1177\"),\n    FILE_LINK_OUTLINE(\"mdi2f-file-link-outline\", \"F1178\"),\n    FILE_LOCK(\"mdi2f-file-lock\", \"F0221\"),\n    FILE_LOCK_OPEN(\"mdi2f-file-lock-open\", \"F19C8\"),\n    FILE_LOCK_OPEN_OUTLINE(\"mdi2f-file-lock-open-outline\", \"F19C9\"),\n    FILE_LOCK_OUTLINE(\"mdi2f-file-lock-outline\", \"F1030\"),\n    FILE_MARKER(\"mdi2f-file-marker\", \"F1774\"),\n    FILE_MARKER_OUTLINE(\"mdi2f-file-marker-outline\", \"F1775\"),\n    FILE_MINUS(\"mdi2f-file-minus\", \"F1AA1\"),\n    FILE_MINUS_OUTLINE(\"mdi2f-file-minus-outline\", \"F1AA2\"),\n    FILE_MOVE(\"mdi2f-file-move\", \"F0AB9\"),\n    FILE_MOVE_OUTLINE(\"mdi2f-file-move-outline\", \"F1031\"),\n    FILE_MULTIPLE(\"mdi2f-file-multiple\", \"F0222\"),\n    FILE_MULTIPLE_OUTLINE(\"mdi2f-file-multiple-outline\", \"F1032\"),\n    FILE_MUSIC(\"mdi2f-file-music\", \"F0223\"),\n    FILE_MUSIC_OUTLINE(\"mdi2f-file-music-outline\", \"F0E2A\"),\n    FILE_OUTLINE(\"mdi2f-file-outline\", \"F0224\"),\n    FILE_PDF_BOX(\"mdi2f-file-pdf-box\", \"F0226\"),\n    FILE_PERCENT(\"mdi2f-file-percent\", \"F081E\"),\n    FILE_PERCENT_OUTLINE(\"mdi2f-file-percent-outline\", \"F1033\"),\n    FILE_PHONE(\"mdi2f-file-phone\", \"F1179\"),\n    FILE_PHONE_OUTLINE(\"mdi2f-file-phone-outline\", \"F117A\"),\n    FILE_PLUS(\"mdi2f-file-plus\", \"F0752\"),\n    FILE_PLUS_OUTLINE(\"mdi2f-file-plus-outline\", \"F0EED\"),\n    FILE_PNG_BOX(\"mdi2f-file-png-box\", \"F0E2D\"),\n    FILE_POWERPOINT(\"mdi2f-file-powerpoint\", \"F0227\"),\n    FILE_POWERPOINT_BOX(\"mdi2f-file-powerpoint-box\", \"F0228\"),\n    FILE_POWERPOINT_BOX_OUTLINE(\"mdi2f-file-powerpoint-box-outline\", \"F1034\"),\n    FILE_POWERPOINT_OUTLINE(\"mdi2f-file-powerpoint-outline\", \"F1035\"),\n    FILE_PRESENTATION_BOX(\"mdi2f-file-presentation-box\", \"F0229\"),\n    FILE_QUESTION(\"mdi2f-file-question\", \"F086F\"),\n    FILE_QUESTION_OUTLINE(\"mdi2f-file-question-outline\", \"F1036\"),\n    FILE_REFRESH(\"mdi2f-file-refresh\", \"F0918\"),\n    FILE_REFRESH_OUTLINE(\"mdi2f-file-refresh-outline\", \"F0541\"),\n    FILE_REMOVE(\"mdi2f-file-remove\", \"F0B98\"),\n    FILE_REMOVE_OUTLINE(\"mdi2f-file-remove-outline\", \"F1037\"),\n    FILE_REPLACE(\"mdi2f-file-replace\", \"F0B32\"),\n    FILE_REPLACE_OUTLINE(\"mdi2f-file-replace-outline\", \"F0B33\"),\n    FILE_RESTORE(\"mdi2f-file-restore\", \"F0670\"),\n    FILE_RESTORE_OUTLINE(\"mdi2f-file-restore-outline\", \"F1038\"),\n    FILE_ROTATE_LEFT(\"mdi2f-file-rotate-left\", \"F1A3B\"),\n    FILE_ROTATE_LEFT_OUTLINE(\"mdi2f-file-rotate-left-outline\", \"F1A3C\"),\n    FILE_ROTATE_RIGHT(\"mdi2f-file-rotate-right\", \"F1A3D\"),\n    FILE_ROTATE_RIGHT_OUTLINE(\"mdi2f-file-rotate-right-outline\", \"F1A3E\"),\n    FILE_SEARCH(\"mdi2f-file-search\", \"F0C7C\"),\n    FILE_SEARCH_OUTLINE(\"mdi2f-file-search-outline\", \"F0C7D\"),\n    FILE_SEND(\"mdi2f-file-send\", \"F022A\"),\n    FILE_SEND_OUTLINE(\"mdi2f-file-send-outline\", \"F1039\"),\n    FILE_SETTINGS(\"mdi2f-file-settings\", \"F1079\"),\n    FILE_SETTINGS_OUTLINE(\"mdi2f-file-settings-outline\", \"F107A\"),\n    FILE_SIGN(\"mdi2f-file-sign\", \"F19C3\"),\n    FILE_STAR(\"mdi2f-file-star\", \"F103A\"),\n    FILE_STAR_FOUR_POINTS(\"mdi2f-file-star-four-points\", \"F1C2D\"),\n    FILE_STAR_FOUR_POINTS_OUTLINE(\"mdi2f-file-star-four-points-outline\", \"F1C2E\"),\n    FILE_STAR_OUTLINE(\"mdi2f-file-star-outline\", \"F103B\"),\n    FILE_SWAP(\"mdi2f-file-swap\", \"F0FB4\"),\n    FILE_SWAP_OUTLINE(\"mdi2f-file-swap-outline\", \"F0FB5\"),\n    FILE_SYNC(\"mdi2f-file-sync\", \"F1216\"),\n    FILE_SYNC_OUTLINE(\"mdi2f-file-sync-outline\", \"F1217\"),\n    FILE_TABLE(\"mdi2f-file-table\", \"F0C7E\"),\n    FILE_TABLE_BOX(\"mdi2f-file-table-box\", \"F10E1\"),\n    FILE_TABLE_BOX_MULTIPLE(\"mdi2f-file-table-box-multiple\", \"F10E2\"),\n    FILE_TABLE_BOX_MULTIPLE_OUTLINE(\"mdi2f-file-table-box-multiple-outline\", \"F10E3\"),\n    FILE_TABLE_BOX_OUTLINE(\"mdi2f-file-table-box-outline\", \"F10E4\"),\n    FILE_TABLE_OUTLINE(\"mdi2f-file-table-outline\", \"F0C7F\"),\n    FILE_TREE(\"mdi2f-file-tree\", \"F0645\"),\n    FILE_TREE_OUTLINE(\"mdi2f-file-tree-outline\", \"F13D2\"),\n    FILE_UNDO(\"mdi2f-file-undo\", \"F08DC\"),\n    FILE_UNDO_OUTLINE(\"mdi2f-file-undo-outline\", \"F103C\"),\n    FILE_UPLOAD(\"mdi2f-file-upload\", \"F0A4D\"),\n    FILE_UPLOAD_OUTLINE(\"mdi2f-file-upload-outline\", \"F0A4E\"),\n    FILE_VIDEO(\"mdi2f-file-video\", \"F022B\"),\n    FILE_VIDEO_OUTLINE(\"mdi2f-file-video-outline\", \"F0E2C\"),\n    FILE_WORD(\"mdi2f-file-word\", \"F022C\"),\n    FILE_WORD_BOX(\"mdi2f-file-word-box\", \"F022D\"),\n    FILE_WORD_BOX_OUTLINE(\"mdi2f-file-word-box-outline\", \"F103D\"),\n    FILE_WORD_OUTLINE(\"mdi2f-file-word-outline\", \"F103E\"),\n    FILE_XML_BOX(\"mdi2f-file-xml-box\", \"F1B4B\"),\n    FILM(\"mdi2f-film\", \"F022F\"),\n    FILMSTRIP(\"mdi2f-filmstrip\", \"F0230\"),\n    FILMSTRIP_BOX(\"mdi2f-filmstrip-box\", \"F0332\"),\n    FILMSTRIP_BOX_MULTIPLE(\"mdi2f-filmstrip-box-multiple\", \"F0D18\"),\n    FILMSTRIP_OFF(\"mdi2f-filmstrip-off\", \"F0231\"),\n    FILTER(\"mdi2f-filter\", \"F0232\"),\n    FILTER_CHECK(\"mdi2f-filter-check\", \"F18EC\"),\n    FILTER_CHECK_OUTLINE(\"mdi2f-filter-check-outline\", \"F18ED\"),\n    FILTER_COG(\"mdi2f-filter-cog\", \"F1AA3\"),\n    FILTER_COG_OUTLINE(\"mdi2f-filter-cog-outline\", \"F1AA4\"),\n    FILTER_MENU(\"mdi2f-filter-menu\", \"F10E5\"),\n    FILTER_MENU_OUTLINE(\"mdi2f-filter-menu-outline\", \"F10E6\"),\n    FILTER_MINUS(\"mdi2f-filter-minus\", \"F0EEE\"),\n    FILTER_MINUS_OUTLINE(\"mdi2f-filter-minus-outline\", \"F0EEF\"),\n    FILTER_MULTIPLE(\"mdi2f-filter-multiple\", \"F1A3F\"),\n    FILTER_MULTIPLE_OUTLINE(\"mdi2f-filter-multiple-outline\", \"F1A40\"),\n    FILTER_OFF(\"mdi2f-filter-off\", \"F14EF\"),\n    FILTER_OFF_OUTLINE(\"mdi2f-filter-off-outline\", \"F14F0\"),\n    FILTER_OUTLINE(\"mdi2f-filter-outline\", \"F0233\"),\n    FILTER_PLUS(\"mdi2f-filter-plus\", \"F0EF0\"),\n    FILTER_PLUS_OUTLINE(\"mdi2f-filter-plus-outline\", \"F0EF1\"),\n    FILTER_REMOVE(\"mdi2f-filter-remove\", \"F0234\"),\n    FILTER_REMOVE_OUTLINE(\"mdi2f-filter-remove-outline\", \"F0235\"),\n    FILTER_SETTINGS(\"mdi2f-filter-settings\", \"F1AA5\"),\n    FILTER_SETTINGS_OUTLINE(\"mdi2f-filter-settings-outline\", \"F1AA6\"),\n    FILTER_VARIANT(\"mdi2f-filter-variant\", \"F0236\"),\n    FILTER_VARIANT_MINUS(\"mdi2f-filter-variant-minus\", \"F1112\"),\n    FILTER_VARIANT_PLUS(\"mdi2f-filter-variant-plus\", \"F1113\"),\n    FILTER_VARIANT_REMOVE(\"mdi2f-filter-variant-remove\", \"F103F\"),\n    FINANCE(\"mdi2f-finance\", \"F081F\"),\n    FIND_REPLACE(\"mdi2f-find-replace\", \"F06D4\"),\n    FINGERPRINT(\"mdi2f-fingerprint\", \"F0237\"),\n    FINGERPRINT_OFF(\"mdi2f-fingerprint-off\", \"F0EB1\"),\n    FIRE(\"mdi2f-fire\", \"F0238\"),\n    FIRE_ALERT(\"mdi2f-fire-alert\", \"F15D7\"),\n    FIRE_CIRCLE(\"mdi2f-fire-circle\", \"F1807\"),\n    FIRE_EXTINGUISHER(\"mdi2f-fire-extinguisher\", \"F0EF2\"),\n    FIRE_HYDRANT(\"mdi2f-fire-hydrant\", \"F1137\"),\n    FIRE_HYDRANT_ALERT(\"mdi2f-fire-hydrant-alert\", \"F1138\"),\n    FIRE_HYDRANT_OFF(\"mdi2f-fire-hydrant-off\", \"F1139\"),\n    FIRE_OFF(\"mdi2f-fire-off\", \"F1722\"),\n    FIRE_STATION(\"mdi2f-fire-station\", \"F1CC3\"),\n    FIRE_TRUCK(\"mdi2f-fire-truck\", \"F08AB\"),\n    FIREBASE(\"mdi2f-firebase\", \"F0967\"),\n    FIREFOX(\"mdi2f-firefox\", \"F0239\"),\n    FIREPLACE(\"mdi2f-fireplace\", \"F0E2E\"),\n    FIREPLACE_OFF(\"mdi2f-fireplace-off\", \"F0E2F\"),\n    FIREWIRE(\"mdi2f-firewire\", \"F05BE\"),\n    FIREWORK(\"mdi2f-firework\", \"F0E30\"),\n    FIREWORK_OFF(\"mdi2f-firework-off\", \"F1723\"),\n    FISH(\"mdi2f-fish\", \"F023A\"),\n    FISH_OFF(\"mdi2f-fish-off\", \"F13F3\"),\n    FISHBOWL(\"mdi2f-fishbowl\", \"F0EF3\"),\n    FISHBOWL_OUTLINE(\"mdi2f-fishbowl-outline\", \"F0EF4\"),\n    FIT_TO_PAGE(\"mdi2f-fit-to-page\", \"F0EF5\"),\n    FIT_TO_PAGE_OUTLINE(\"mdi2f-fit-to-page-outline\", \"F0EF6\"),\n    FIT_TO_SCREEN(\"mdi2f-fit-to-screen\", \"F18F4\"),\n    FIT_TO_SCREEN_OUTLINE(\"mdi2f-fit-to-screen-outline\", \"F18F5\"),\n    FLAG(\"mdi2f-flag\", \"F023B\"),\n    FLAG_CHECKERED(\"mdi2f-flag-checkered\", \"F023C\"),\n    FLAG_MINUS(\"mdi2f-flag-minus\", \"F0B99\"),\n    FLAG_MINUS_OUTLINE(\"mdi2f-flag-minus-outline\", \"F10B2\"),\n    FLAG_OFF(\"mdi2f-flag-off\", \"F18EE\"),\n    FLAG_OFF_OUTLINE(\"mdi2f-flag-off-outline\", \"F18EF\"),\n    FLAG_OUTLINE(\"mdi2f-flag-outline\", \"F023D\"),\n    FLAG_PLUS(\"mdi2f-flag-plus\", \"F0B9A\"),\n    FLAG_PLUS_OUTLINE(\"mdi2f-flag-plus-outline\", \"F10B3\"),\n    FLAG_REMOVE(\"mdi2f-flag-remove\", \"F0B9B\"),\n    FLAG_REMOVE_OUTLINE(\"mdi2f-flag-remove-outline\", \"F10B4\"),\n    FLAG_TRIANGLE(\"mdi2f-flag-triangle\", \"F023F\"),\n    FLAG_VARIANT(\"mdi2f-flag-variant\", \"F0240\"),\n    FLAG_VARIANT_MINUS(\"mdi2f-flag-variant-minus\", \"F1BB4\"),\n    FLAG_VARIANT_MINUS_OUTLINE(\"mdi2f-flag-variant-minus-outline\", \"F1BB5\"),\n    FLAG_VARIANT_OFF(\"mdi2f-flag-variant-off\", \"F1BB0\"),\n    FLAG_VARIANT_OFF_OUTLINE(\"mdi2f-flag-variant-off-outline\", \"F1BB1\"),\n    FLAG_VARIANT_OUTLINE(\"mdi2f-flag-variant-outline\", \"F023E\"),\n    FLAG_VARIANT_PLUS(\"mdi2f-flag-variant-plus\", \"F1BB2\"),\n    FLAG_VARIANT_PLUS_OUTLINE(\"mdi2f-flag-variant-plus-outline\", \"F1BB3\"),\n    FLAG_VARIANT_REMOVE(\"mdi2f-flag-variant-remove\", \"F1BB6\"),\n    FLAG_VARIANT_REMOVE_OUTLINE(\"mdi2f-flag-variant-remove-outline\", \"F1BB7\"),\n    FLARE(\"mdi2f-flare\", \"F0D72\"),\n    FLASH(\"mdi2f-flash\", \"F0241\"),\n    FLASH_ALERT(\"mdi2f-flash-alert\", \"F0EF7\"),\n    FLASH_ALERT_OUTLINE(\"mdi2f-flash-alert-outline\", \"F0EF8\"),\n    FLASH_AUTO(\"mdi2f-flash-auto\", \"F0242\"),\n    FLASH_OFF(\"mdi2f-flash-off\", \"F0243\"),\n    FLASH_OFF_OUTLINE(\"mdi2f-flash-off-outline\", \"F1B45\"),\n    FLASH_OUTLINE(\"mdi2f-flash-outline\", \"F06D5\"),\n    FLASH_RED_EYE(\"mdi2f-flash-red-eye\", \"F067B\"),\n    FLASH_TRIANGLE(\"mdi2f-flash-triangle\", \"F1B1D\"),\n    FLASH_TRIANGLE_OUTLINE(\"mdi2f-flash-triangle-outline\", \"F1B1E\"),\n    FLASHLIGHT(\"mdi2f-flashlight\", \"F0244\"),\n    FLASHLIGHT_OFF(\"mdi2f-flashlight-off\", \"F0245\"),\n    FLASK(\"mdi2f-flask\", \"F0093\"),\n    FLASK_EMPTY(\"mdi2f-flask-empty\", \"F0094\"),\n    FLASK_EMPTY_MINUS(\"mdi2f-flask-empty-minus\", \"F123A\"),\n    FLASK_EMPTY_MINUS_OUTLINE(\"mdi2f-flask-empty-minus-outline\", \"F123B\"),\n    FLASK_EMPTY_OFF(\"mdi2f-flask-empty-off\", \"F13F4\"),\n    FLASK_EMPTY_OFF_OUTLINE(\"mdi2f-flask-empty-off-outline\", \"F13F5\"),\n    FLASK_EMPTY_OUTLINE(\"mdi2f-flask-empty-outline\", \"F0095\"),\n    FLASK_EMPTY_PLUS(\"mdi2f-flask-empty-plus\", \"F123C\"),\n    FLASK_EMPTY_PLUS_OUTLINE(\"mdi2f-flask-empty-plus-outline\", \"F123D\"),\n    FLASK_EMPTY_REMOVE(\"mdi2f-flask-empty-remove\", \"F123E\"),\n    FLASK_EMPTY_REMOVE_OUTLINE(\"mdi2f-flask-empty-remove-outline\", \"F123F\"),\n    FLASK_MINUS(\"mdi2f-flask-minus\", \"F1240\"),\n    FLASK_MINUS_OUTLINE(\"mdi2f-flask-minus-outline\", \"F1241\"),\n    FLASK_OFF(\"mdi2f-flask-off\", \"F13F6\"),\n    FLASK_OFF_OUTLINE(\"mdi2f-flask-off-outline\", \"F13F7\"),\n    FLASK_OUTLINE(\"mdi2f-flask-outline\", \"F0096\"),\n    FLASK_PLUS(\"mdi2f-flask-plus\", \"F1242\"),\n    FLASK_PLUS_OUTLINE(\"mdi2f-flask-plus-outline\", \"F1243\"),\n    FLASK_REMOVE(\"mdi2f-flask-remove\", \"F1244\"),\n    FLASK_REMOVE_OUTLINE(\"mdi2f-flask-remove-outline\", \"F1245\"),\n    FLASK_ROUND_BOTTOM(\"mdi2f-flask-round-bottom\", \"F124B\"),\n    FLASK_ROUND_BOTTOM_EMPTY(\"mdi2f-flask-round-bottom-empty\", \"F124C\"),\n    FLASK_ROUND_BOTTOM_EMPTY_OUTLINE(\"mdi2f-flask-round-bottom-empty-outline\", \"F124D\"),\n    FLASK_ROUND_BOTTOM_OUTLINE(\"mdi2f-flask-round-bottom-outline\", \"F124E\"),\n    FLEUR_DE_LIS(\"mdi2f-fleur-de-lis\", \"F1303\"),\n    FLIP_HORIZONTAL(\"mdi2f-flip-horizontal\", \"F10E7\"),\n    FLIP_TO_BACK(\"mdi2f-flip-to-back\", \"F0247\"),\n    FLIP_TO_FRONT(\"mdi2f-flip-to-front\", \"F0248\"),\n    FLIP_VERTICAL(\"mdi2f-flip-vertical\", \"F10E8\"),\n    FLOOR_LAMP(\"mdi2f-floor-lamp\", \"F08DD\"),\n    FLOOR_LAMP_DUAL(\"mdi2f-floor-lamp-dual\", \"F1040\"),\n    FLOOR_LAMP_DUAL_OUTLINE(\"mdi2f-floor-lamp-dual-outline\", \"F17CE\"),\n    FLOOR_LAMP_OUTLINE(\"mdi2f-floor-lamp-outline\", \"F17C8\"),\n    FLOOR_LAMP_TORCHIERE(\"mdi2f-floor-lamp-torchiere\", \"F1747\"),\n    FLOOR_LAMP_TORCHIERE_OUTLINE(\"mdi2f-floor-lamp-torchiere-outline\", \"F17D6\"),\n    FLOOR_LAMP_TORCHIERE_VARIANT(\"mdi2f-floor-lamp-torchiere-variant\", \"F1041\"),\n    FLOOR_LAMP_TORCHIERE_VARIANT_OUTLINE(\"mdi2f-floor-lamp-torchiere-variant-outline\", \"F17CF\"),\n    FLOOR_PLAN(\"mdi2f-floor-plan\", \"F0821\"),\n    FLOPPY(\"mdi2f-floppy\", \"F0249\"),\n    FLOPPY_VARIANT(\"mdi2f-floppy-variant\", \"F09EF\"),\n    FLOWER(\"mdi2f-flower\", \"F024A\"),\n    FLOWER_OUTLINE(\"mdi2f-flower-outline\", \"F09F0\"),\n    FLOWER_POLLEN(\"mdi2f-flower-pollen\", \"F1885\"),\n    FLOWER_POLLEN_OUTLINE(\"mdi2f-flower-pollen-outline\", \"F1886\"),\n    FLOWER_POPPY(\"mdi2f-flower-poppy\", \"F0D08\"),\n    FLOWER_TULIP(\"mdi2f-flower-tulip\", \"F09F1\"),\n    FLOWER_TULIP_OUTLINE(\"mdi2f-flower-tulip-outline\", \"F09F2\"),\n    FOCUS_AUTO(\"mdi2f-focus-auto\", \"F0F4E\"),\n    FOCUS_FIELD(\"mdi2f-focus-field\", \"F0F4F\"),\n    FOCUS_FIELD_HORIZONTAL(\"mdi2f-focus-field-horizontal\", \"F0F50\"),\n    FOCUS_FIELD_VERTICAL(\"mdi2f-focus-field-vertical\", \"F0F51\"),\n    FOLDER(\"mdi2f-folder\", \"F024B\"),\n    FOLDER_ACCOUNT(\"mdi2f-folder-account\", \"F024C\"),\n    FOLDER_ACCOUNT_OUTLINE(\"mdi2f-folder-account-outline\", \"F0B9C\"),\n    FOLDER_ALERT(\"mdi2f-folder-alert\", \"F0DCC\"),\n    FOLDER_ALERT_OUTLINE(\"mdi2f-folder-alert-outline\", \"F0DCD\"),\n    FOLDER_ARROW_DOWN(\"mdi2f-folder-arrow-down\", \"F19E8\"),\n    FOLDER_ARROW_DOWN_OUTLINE(\"mdi2f-folder-arrow-down-outline\", \"F19E9\"),\n    FOLDER_ARROW_LEFT(\"mdi2f-folder-arrow-left\", \"F19EA\"),\n    FOLDER_ARROW_LEFT_OUTLINE(\"mdi2f-folder-arrow-left-outline\", \"F19EB\"),\n    FOLDER_ARROW_LEFT_RIGHT(\"mdi2f-folder-arrow-left-right\", \"F19EC\"),\n    FOLDER_ARROW_LEFT_RIGHT_OUTLINE(\"mdi2f-folder-arrow-left-right-outline\", \"F19ED\"),\n    FOLDER_ARROW_RIGHT(\"mdi2f-folder-arrow-right\", \"F19EE\"),\n    FOLDER_ARROW_RIGHT_OUTLINE(\"mdi2f-folder-arrow-right-outline\", \"F19EF\"),\n    FOLDER_ARROW_UP(\"mdi2f-folder-arrow-up\", \"F19F0\"),\n    FOLDER_ARROW_UP_DOWN(\"mdi2f-folder-arrow-up-down\", \"F19F1\"),\n    FOLDER_ARROW_UP_DOWN_OUTLINE(\"mdi2f-folder-arrow-up-down-outline\", \"F19F2\"),\n    FOLDER_ARROW_UP_OUTLINE(\"mdi2f-folder-arrow-up-outline\", \"F19F3\"),\n    FOLDER_CANCEL(\"mdi2f-folder-cancel\", \"F19F4\"),\n    FOLDER_CANCEL_OUTLINE(\"mdi2f-folder-cancel-outline\", \"F19F5\"),\n    FOLDER_CHECK(\"mdi2f-folder-check\", \"F197E\"),\n    FOLDER_CHECK_OUTLINE(\"mdi2f-folder-check-outline\", \"F197F\"),\n    FOLDER_CLOCK(\"mdi2f-folder-clock\", \"F0ABA\"),\n    FOLDER_CLOCK_OUTLINE(\"mdi2f-folder-clock-outline\", \"F0ABB\"),\n    FOLDER_COG(\"mdi2f-folder-cog\", \"F107F\"),\n    FOLDER_COG_OUTLINE(\"mdi2f-folder-cog-outline\", \"F1080\"),\n    FOLDER_DOWNLOAD(\"mdi2f-folder-download\", \"F024D\"),\n    FOLDER_DOWNLOAD_OUTLINE(\"mdi2f-folder-download-outline\", \"F10E9\"),\n    FOLDER_EDIT(\"mdi2f-folder-edit\", \"F08DE\"),\n    FOLDER_EDIT_OUTLINE(\"mdi2f-folder-edit-outline\", \"F0DCE\"),\n    FOLDER_EYE(\"mdi2f-folder-eye\", \"F178A\"),\n    FOLDER_EYE_OUTLINE(\"mdi2f-folder-eye-outline\", \"F178B\"),\n    FOLDER_FILE(\"mdi2f-folder-file\", \"F19F6\"),\n    FOLDER_FILE_OUTLINE(\"mdi2f-folder-file-outline\", \"F19F7\"),\n    FOLDER_GOOGLE_DRIVE(\"mdi2f-folder-google-drive\", \"F024E\"),\n    FOLDER_HEART(\"mdi2f-folder-heart\", \"F10EA\"),\n    FOLDER_HEART_OUTLINE(\"mdi2f-folder-heart-outline\", \"F10EB\"),\n    FOLDER_HIDDEN(\"mdi2f-folder-hidden\", \"F179E\"),\n    FOLDER_HOME(\"mdi2f-folder-home\", \"F10B5\"),\n    FOLDER_HOME_OUTLINE(\"mdi2f-folder-home-outline\", \"F10B6\"),\n    FOLDER_IMAGE(\"mdi2f-folder-image\", \"F024F\"),\n    FOLDER_INFORMATION(\"mdi2f-folder-information\", \"F10B7\"),\n    FOLDER_INFORMATION_OUTLINE(\"mdi2f-folder-information-outline\", \"F10B8\"),\n    FOLDER_KEY(\"mdi2f-folder-key\", \"F08AC\"),\n    FOLDER_KEY_NETWORK(\"mdi2f-folder-key-network\", \"F08AD\"),\n    FOLDER_KEY_NETWORK_OUTLINE(\"mdi2f-folder-key-network-outline\", \"F0C80\"),\n    FOLDER_KEY_OUTLINE(\"mdi2f-folder-key-outline\", \"F10EC\"),\n    FOLDER_LOCK(\"mdi2f-folder-lock\", \"F0250\"),\n    FOLDER_LOCK_OPEN(\"mdi2f-folder-lock-open\", \"F0251\"),\n    FOLDER_LOCK_OPEN_OUTLINE(\"mdi2f-folder-lock-open-outline\", \"F1AA7\"),\n    FOLDER_LOCK_OUTLINE(\"mdi2f-folder-lock-outline\", \"F1AA8\"),\n    FOLDER_MARKER(\"mdi2f-folder-marker\", \"F126D\"),\n    FOLDER_MARKER_OUTLINE(\"mdi2f-folder-marker-outline\", \"F126E\"),\n    FOLDER_MINUS(\"mdi2f-folder-minus\", \"F1B49\"),\n    FOLDER_MINUS_OUTLINE(\"mdi2f-folder-minus-outline\", \"F1B4A\"),\n    FOLDER_MOVE(\"mdi2f-folder-move\", \"F0252\"),\n    FOLDER_MOVE_OUTLINE(\"mdi2f-folder-move-outline\", \"F1246\"),\n    FOLDER_MULTIPLE(\"mdi2f-folder-multiple\", \"F0253\"),\n    FOLDER_MULTIPLE_IMAGE(\"mdi2f-folder-multiple-image\", \"F0254\"),\n    FOLDER_MULTIPLE_OUTLINE(\"mdi2f-folder-multiple-outline\", \"F0255\"),\n    FOLDER_MULTIPLE_PLUS(\"mdi2f-folder-multiple-plus\", \"F147E\"),\n    FOLDER_MULTIPLE_PLUS_OUTLINE(\"mdi2f-folder-multiple-plus-outline\", \"F147F\"),\n    FOLDER_MUSIC(\"mdi2f-folder-music\", \"F1359\"),\n    FOLDER_MUSIC_OUTLINE(\"mdi2f-folder-music-outline\", \"F135A\"),\n    FOLDER_NETWORK(\"mdi2f-folder-network\", \"F0870\"),\n    FOLDER_NETWORK_OUTLINE(\"mdi2f-folder-network-outline\", \"F0C81\"),\n    FOLDER_OFF(\"mdi2f-folder-off\", \"F19F8\"),\n    FOLDER_OFF_OUTLINE(\"mdi2f-folder-off-outline\", \"F19F9\"),\n    FOLDER_OPEN(\"mdi2f-folder-open\", \"F0770\"),\n    FOLDER_OPEN_OUTLINE(\"mdi2f-folder-open-outline\", \"F0DCF\"),\n    FOLDER_OUTLINE(\"mdi2f-folder-outline\", \"F0256\"),\n    FOLDER_PLAY(\"mdi2f-folder-play\", \"F19FA\"),\n    FOLDER_PLAY_OUTLINE(\"mdi2f-folder-play-outline\", \"F19FB\"),\n    FOLDER_PLUS(\"mdi2f-folder-plus\", \"F0257\"),\n    FOLDER_PLUS_OUTLINE(\"mdi2f-folder-plus-outline\", \"F0B9D\"),\n    FOLDER_POUND(\"mdi2f-folder-pound\", \"F0D09\"),\n    FOLDER_POUND_OUTLINE(\"mdi2f-folder-pound-outline\", \"F0D0A\"),\n    FOLDER_QUESTION(\"mdi2f-folder-question\", \"F19CA\"),\n    FOLDER_QUESTION_OUTLINE(\"mdi2f-folder-question-outline\", \"F19CB\"),\n    FOLDER_REFRESH(\"mdi2f-folder-refresh\", \"F0749\"),\n    FOLDER_REFRESH_OUTLINE(\"mdi2f-folder-refresh-outline\", \"F0542\"),\n    FOLDER_REMOVE(\"mdi2f-folder-remove\", \"F0258\"),\n    FOLDER_REMOVE_OUTLINE(\"mdi2f-folder-remove-outline\", \"F0B9E\"),\n    FOLDER_SEARCH(\"mdi2f-folder-search\", \"F0968\"),\n    FOLDER_SEARCH_OUTLINE(\"mdi2f-folder-search-outline\", \"F0969\"),\n    FOLDER_SETTINGS(\"mdi2f-folder-settings\", \"F107D\"),\n    FOLDER_SETTINGS_OUTLINE(\"mdi2f-folder-settings-outline\", \"F107E\"),\n    FOLDER_STAR(\"mdi2f-folder-star\", \"F069D\"),\n    FOLDER_STAR_MULTIPLE(\"mdi2f-folder-star-multiple\", \"F13D3\"),\n    FOLDER_STAR_MULTIPLE_OUTLINE(\"mdi2f-folder-star-multiple-outline\", \"F13D4\"),\n    FOLDER_STAR_OUTLINE(\"mdi2f-folder-star-outline\", \"F0B9F\"),\n    FOLDER_SWAP(\"mdi2f-folder-swap\", \"F0FB6\"),\n    FOLDER_SWAP_OUTLINE(\"mdi2f-folder-swap-outline\", \"F0FB7\"),\n    FOLDER_SYNC(\"mdi2f-folder-sync\", \"F0D0B\"),\n    FOLDER_SYNC_OUTLINE(\"mdi2f-folder-sync-outline\", \"F0D0C\"),\n    FOLDER_TABLE(\"mdi2f-folder-table\", \"F12E3\"),\n    FOLDER_TABLE_OUTLINE(\"mdi2f-folder-table-outline\", \"F12E4\"),\n    FOLDER_TEXT(\"mdi2f-folder-text\", \"F0C82\"),\n    FOLDER_TEXT_OUTLINE(\"mdi2f-folder-text-outline\", \"F0C83\"),\n    FOLDER_UPLOAD(\"mdi2f-folder-upload\", \"F0259\"),\n    FOLDER_UPLOAD_OUTLINE(\"mdi2f-folder-upload-outline\", \"F10ED\"),\n    FOLDER_WRENCH(\"mdi2f-folder-wrench\", \"F19FC\"),\n    FOLDER_WRENCH_OUTLINE(\"mdi2f-folder-wrench-outline\", \"F19FD\"),\n    FOLDER_ZIP(\"mdi2f-folder-zip\", \"F06EB\"),\n    FOLDER_ZIP_OUTLINE(\"mdi2f-folder-zip-outline\", \"F07B9\"),\n    FONT_AWESOME(\"mdi2f-font-awesome\", \"F003A\"),\n    FOOD(\"mdi2f-food\", \"F025A\"),\n    FOOD_APPLE(\"mdi2f-food-apple\", \"F025B\"),\n    FOOD_APPLE_OUTLINE(\"mdi2f-food-apple-outline\", \"F0C84\"),\n    FOOD_CROISSANT(\"mdi2f-food-croissant\", \"F07C8\"),\n    FOOD_DRUMSTICK(\"mdi2f-food-drumstick\", \"F141F\"),\n    FOOD_DRUMSTICK_OFF(\"mdi2f-food-drumstick-off\", \"F1468\"),\n    FOOD_DRUMSTICK_OFF_OUTLINE(\"mdi2f-food-drumstick-off-outline\", \"F1469\"),\n    FOOD_DRUMSTICK_OUTLINE(\"mdi2f-food-drumstick-outline\", \"F1420\"),\n    FOOD_FORK_DRINK(\"mdi2f-food-fork-drink\", \"F05F2\"),\n    FOOD_HALAL(\"mdi2f-food-halal\", \"F1572\"),\n    FOOD_HOT_DOG(\"mdi2f-food-hot-dog\", \"F184B\"),\n    FOOD_KOSHER(\"mdi2f-food-kosher\", \"F1573\"),\n    FOOD_OFF(\"mdi2f-food-off\", \"F05F3\"),\n    FOOD_OFF_OUTLINE(\"mdi2f-food-off-outline\", \"F1915\"),\n    FOOD_OUTLINE(\"mdi2f-food-outline\", \"F1916\"),\n    FOOD_STEAK(\"mdi2f-food-steak\", \"F146A\"),\n    FOOD_STEAK_OFF(\"mdi2f-food-steak-off\", \"F146B\"),\n    FOOD_TAKEOUT_BOX(\"mdi2f-food-takeout-box\", \"F1836\"),\n    FOOD_TAKEOUT_BOX_OUTLINE(\"mdi2f-food-takeout-box-outline\", \"F1837\"),\n    FOOD_TURKEY(\"mdi2f-food-turkey\", \"F171C\"),\n    FOOD_VARIANT(\"mdi2f-food-variant\", \"F025C\"),\n    FOOD_VARIANT_OFF(\"mdi2f-food-variant-off\", \"F13E5\"),\n    FOOT_PRINT(\"mdi2f-foot-print\", \"F0F52\"),\n    FOOTBALL(\"mdi2f-football\", \"F025D\"),\n    FOOTBALL_AUSTRALIAN(\"mdi2f-football-australian\", \"F025E\"),\n    FOOTBALL_HELMET(\"mdi2f-football-helmet\", \"F025F\"),\n    FOREST(\"mdi2f-forest\", \"F1897\"),\n    FOREST_OUTLINE(\"mdi2f-forest-outline\", \"F1C63\"),\n    FORKLIFT(\"mdi2f-forklift\", \"F07C9\"),\n    FORM_DROPDOWN(\"mdi2f-form-dropdown\", \"F1400\"),\n    FORM_SELECT(\"mdi2f-form-select\", \"F1401\"),\n    FORM_TEXTAREA(\"mdi2f-form-textarea\", \"F1095\"),\n    FORM_TEXTBOX(\"mdi2f-form-textbox\", \"F060E\"),\n    FORM_TEXTBOX_LOCK(\"mdi2f-form-textbox-lock\", \"F135D\"),\n    FORM_TEXTBOX_PASSWORD(\"mdi2f-form-textbox-password\", \"F07F5\"),\n    FORMAT_ALIGN_BOTTOM(\"mdi2f-format-align-bottom\", \"F0753\"),\n    FORMAT_ALIGN_CENTER(\"mdi2f-format-align-center\", \"F0260\"),\n    FORMAT_ALIGN_JUSTIFY(\"mdi2f-format-align-justify\", \"F0261\"),\n    FORMAT_ALIGN_LEFT(\"mdi2f-format-align-left\", \"F0262\"),\n    FORMAT_ALIGN_MIDDLE(\"mdi2f-format-align-middle\", \"F0754\"),\n    FORMAT_ALIGN_RIGHT(\"mdi2f-format-align-right\", \"F0263\"),\n    FORMAT_ALIGN_TOP(\"mdi2f-format-align-top\", \"F0755\"),\n    FORMAT_ANNOTATION_MINUS(\"mdi2f-format-annotation-minus\", \"F0ABC\"),\n    FORMAT_ANNOTATION_PLUS(\"mdi2f-format-annotation-plus\", \"F0646\"),\n    FORMAT_BOLD(\"mdi2f-format-bold\", \"F0264\"),\n    FORMAT_CLEAR(\"mdi2f-format-clear\", \"F0265\"),\n    FORMAT_COLOR_FILL(\"mdi2f-format-color-fill\", \"F0266\"),\n    FORMAT_COLOR_HIGHLIGHT(\"mdi2f-format-color-highlight\", \"F0E31\"),\n    FORMAT_COLOR_MARKER_CANCEL(\"mdi2f-format-color-marker-cancel\", \"F1313\"),\n    FORMAT_COLOR_TEXT(\"mdi2f-format-color-text\", \"F069E\"),\n    FORMAT_COLUMNS(\"mdi2f-format-columns\", \"F08DF\"),\n    FORMAT_FLOAT_CENTER(\"mdi2f-format-float-center\", \"F0267\"),\n    FORMAT_FLOAT_LEFT(\"mdi2f-format-float-left\", \"F0268\"),\n    FORMAT_FLOAT_NONE(\"mdi2f-format-float-none\", \"F0269\"),\n    FORMAT_FLOAT_RIGHT(\"mdi2f-format-float-right\", \"F026A\"),\n    FORMAT_FONT(\"mdi2f-format-font\", \"F06D6\"),\n    FORMAT_FONT_SIZE_DECREASE(\"mdi2f-format-font-size-decrease\", \"F09F3\"),\n    FORMAT_FONT_SIZE_INCREASE(\"mdi2f-format-font-size-increase\", \"F09F4\"),\n    FORMAT_HEADER_1(\"mdi2f-format-header-1\", \"F026B\"),\n    FORMAT_HEADER_2(\"mdi2f-format-header-2\", \"F026C\"),\n    FORMAT_HEADER_3(\"mdi2f-format-header-3\", \"F026D\"),\n    FORMAT_HEADER_4(\"mdi2f-format-header-4\", \"F026E\"),\n    FORMAT_HEADER_5(\"mdi2f-format-header-5\", \"F026F\"),\n    FORMAT_HEADER_6(\"mdi2f-format-header-6\", \"F0270\"),\n    FORMAT_HEADER_DECREASE(\"mdi2f-format-header-decrease\", \"F0271\"),\n    FORMAT_HEADER_EQUAL(\"mdi2f-format-header-equal\", \"F0272\"),\n    FORMAT_HEADER_INCREASE(\"mdi2f-format-header-increase\", \"F0273\"),\n    FORMAT_HEADER_POUND(\"mdi2f-format-header-pound\", \"F0274\"),\n    FORMAT_HORIZONTAL_ALIGN_CENTER(\"mdi2f-format-horizontal-align-center\", \"F061E\"),\n    FORMAT_HORIZONTAL_ALIGN_LEFT(\"mdi2f-format-horizontal-align-left\", \"F061F\"),\n    FORMAT_HORIZONTAL_ALIGN_RIGHT(\"mdi2f-format-horizontal-align-right\", \"F0620\"),\n    FORMAT_INDENT_DECREASE(\"mdi2f-format-indent-decrease\", \"F0275\"),\n    FORMAT_INDENT_INCREASE(\"mdi2f-format-indent-increase\", \"F0276\"),\n    FORMAT_ITALIC(\"mdi2f-format-italic\", \"F0277\"),\n    FORMAT_LETTER_CASE(\"mdi2f-format-letter-case\", \"F0B34\"),\n    FORMAT_LETTER_CASE_LOWER(\"mdi2f-format-letter-case-lower\", \"F0B35\"),\n    FORMAT_LETTER_CASE_UPPER(\"mdi2f-format-letter-case-upper\", \"F0B36\"),\n    FORMAT_LETTER_ENDS_WITH(\"mdi2f-format-letter-ends-with\", \"F0FB8\"),\n    FORMAT_LETTER_MATCHES(\"mdi2f-format-letter-matches\", \"F0FB9\"),\n    FORMAT_LETTER_SPACING(\"mdi2f-format-letter-spacing\", \"F1956\"),\n    FORMAT_LETTER_SPACING_VARIANT(\"mdi2f-format-letter-spacing-variant\", \"F1AFB\"),\n    FORMAT_LETTER_STARTS_WITH(\"mdi2f-format-letter-starts-with\", \"F0FBA\"),\n    FORMAT_LINE_HEIGHT(\"mdi2f-format-line-height\", \"F1AFC\"),\n    FORMAT_LINE_SPACING(\"mdi2f-format-line-spacing\", \"F0278\"),\n    FORMAT_LINE_STYLE(\"mdi2f-format-line-style\", \"F05C8\"),\n    FORMAT_LINE_WEIGHT(\"mdi2f-format-line-weight\", \"F05C9\"),\n    FORMAT_LIST_BULLETED(\"mdi2f-format-list-bulleted\", \"F0279\"),\n    FORMAT_LIST_BULLETED_SQUARE(\"mdi2f-format-list-bulleted-square\", \"F0DD0\"),\n    FORMAT_LIST_BULLETED_TRIANGLE(\"mdi2f-format-list-bulleted-triangle\", \"F0EB2\"),\n    FORMAT_LIST_BULLETED_TYPE(\"mdi2f-format-list-bulleted-type\", \"F027A\"),\n    FORMAT_LIST_CHECKBOX(\"mdi2f-format-list-checkbox\", \"F096A\"),\n    FORMAT_LIST_CHECKS(\"mdi2f-format-list-checks\", \"F0756\"),\n    FORMAT_LIST_GROUP(\"mdi2f-format-list-group\", \"F1860\"),\n    FORMAT_LIST_GROUP_PLUS(\"mdi2f-format-list-group-plus\", \"F1B56\"),\n    FORMAT_LIST_NUMBERED(\"mdi2f-format-list-numbered\", \"F027B\"),\n    FORMAT_LIST_NUMBERED_RTL(\"mdi2f-format-list-numbered-rtl\", \"F0D0D\"),\n    FORMAT_LIST_TEXT(\"mdi2f-format-list-text\", \"F126F\"),\n    FORMAT_OVERLINE(\"mdi2f-format-overline\", \"F0EB3\"),\n    FORMAT_PAGE_BREAK(\"mdi2f-format-page-break\", \"F06D7\"),\n    FORMAT_PAGE_SPLIT(\"mdi2f-format-page-split\", \"F1917\"),\n    FORMAT_PAINT(\"mdi2f-format-paint\", \"F027C\"),\n    FORMAT_PARAGRAPH(\"mdi2f-format-paragraph\", \"F027D\"),\n    FORMAT_PARAGRAPH_SPACING(\"mdi2f-format-paragraph-spacing\", \"F1AFD\"),\n    FORMAT_PILCROW(\"mdi2f-format-pilcrow\", \"F06D8\"),\n    FORMAT_PILCROW_ARROW_LEFT(\"mdi2f-format-pilcrow-arrow-left\", \"F0286\"),\n    FORMAT_PILCROW_ARROW_RIGHT(\"mdi2f-format-pilcrow-arrow-right\", \"F0285\"),\n    FORMAT_QUOTE_CLOSE(\"mdi2f-format-quote-close\", \"F027E\"),\n    FORMAT_QUOTE_CLOSE_OUTLINE(\"mdi2f-format-quote-close-outline\", \"F11A8\"),\n    FORMAT_QUOTE_OPEN(\"mdi2f-format-quote-open\", \"F0757\"),\n    FORMAT_QUOTE_OPEN_OUTLINE(\"mdi2f-format-quote-open-outline\", \"F11A7\"),\n    FORMAT_ROTATE_90(\"mdi2f-format-rotate-90\", \"F06AA\"),\n    FORMAT_SECTION(\"mdi2f-format-section\", \"F069F\"),\n    FORMAT_SIZE(\"mdi2f-format-size\", \"F027F\"),\n    FORMAT_STRIKETHROUGH(\"mdi2f-format-strikethrough\", \"F0280\"),\n    FORMAT_STRIKETHROUGH_VARIANT(\"mdi2f-format-strikethrough-variant\", \"F0281\"),\n    FORMAT_SUBSCRIPT(\"mdi2f-format-subscript\", \"F0282\"),\n    FORMAT_SUPERSCRIPT(\"mdi2f-format-superscript\", \"F0283\"),\n    FORMAT_TEXT(\"mdi2f-format-text\", \"F0284\"),\n    FORMAT_TEXT_ROTATION_ANGLE_DOWN(\"mdi2f-format-text-rotation-angle-down\", \"F0FBB\"),\n    FORMAT_TEXT_ROTATION_ANGLE_UP(\"mdi2f-format-text-rotation-angle-up\", \"F0FBC\"),\n    FORMAT_TEXT_ROTATION_DOWN(\"mdi2f-format-text-rotation-down\", \"F0D73\"),\n    FORMAT_TEXT_ROTATION_DOWN_VERTICAL(\"mdi2f-format-text-rotation-down-vertical\", \"F0FBD\"),\n    FORMAT_TEXT_ROTATION_NONE(\"mdi2f-format-text-rotation-none\", \"F0D74\"),\n    FORMAT_TEXT_ROTATION_UP(\"mdi2f-format-text-rotation-up\", \"F0FBE\"),\n    FORMAT_TEXT_ROTATION_VERTICAL(\"mdi2f-format-text-rotation-vertical\", \"F0FBF\"),\n    FORMAT_TEXT_VARIANT(\"mdi2f-format-text-variant\", \"F0E32\"),\n    FORMAT_TEXT_VARIANT_OUTLINE(\"mdi2f-format-text-variant-outline\", \"F150F\"),\n    FORMAT_TEXT_WRAPPING_CLIP(\"mdi2f-format-text-wrapping-clip\", \"F0D0E\"),\n    FORMAT_TEXT_WRAPPING_OVERFLOW(\"mdi2f-format-text-wrapping-overflow\", \"F0D0F\"),\n    FORMAT_TEXT_WRAPPING_WRAP(\"mdi2f-format-text-wrapping-wrap\", \"F0D10\"),\n    FORMAT_TEXTBOX(\"mdi2f-format-textbox\", \"F0D11\"),\n    FORMAT_TITLE(\"mdi2f-format-title\", \"F05F4\"),\n    FORMAT_UNDERLINE(\"mdi2f-format-underline\", \"F0287\"),\n    FORMAT_UNDERLINE_WAVY(\"mdi2f-format-underline-wavy\", \"F18E9\"),\n    FORMAT_VERTICAL_ALIGN_BOTTOM(\"mdi2f-format-vertical-align-bottom\", \"F0621\"),\n    FORMAT_VERTICAL_ALIGN_CENTER(\"mdi2f-format-vertical-align-center\", \"F0622\"),\n    FORMAT_VERTICAL_ALIGN_TOP(\"mdi2f-format-vertical-align-top\", \"F0623\"),\n    FORMAT_WRAP_INLINE(\"mdi2f-format-wrap-inline\", \"F0288\"),\n    FORMAT_WRAP_SQUARE(\"mdi2f-format-wrap-square\", \"F0289\"),\n    FORMAT_WRAP_TIGHT(\"mdi2f-format-wrap-tight\", \"F028A\"),\n    FORMAT_WRAP_TOP_BOTTOM(\"mdi2f-format-wrap-top-bottom\", \"F028B\"),\n    FORUM(\"mdi2f-forum\", \"F028C\"),\n    FORUM_MINUS(\"mdi2f-forum-minus\", \"F1AA9\"),\n    FORUM_MINUS_OUTLINE(\"mdi2f-forum-minus-outline\", \"F1AAA\"),\n    FORUM_OUTLINE(\"mdi2f-forum-outline\", \"F0822\"),\n    FORUM_PLUS(\"mdi2f-forum-plus\", \"F1AAB\"),\n    FORUM_PLUS_OUTLINE(\"mdi2f-forum-plus-outline\", \"F1AAC\"),\n    FORUM_REMOVE(\"mdi2f-forum-remove\", \"F1AAD\"),\n    FORUM_REMOVE_OUTLINE(\"mdi2f-forum-remove-outline\", \"F1AAE\"),\n    FORWARD(\"mdi2f-forward\", \"F028D\"),\n    FORWARDBURGER(\"mdi2f-forwardburger\", \"F0D75\"),\n    FOUNTAIN(\"mdi2f-fountain\", \"F096B\"),\n    FOUNTAIN_PEN(\"mdi2f-fountain-pen\", \"F0D12\"),\n    FOUNTAIN_PEN_TIP(\"mdi2f-fountain-pen-tip\", \"F0D13\"),\n    FRACTION_ONE_HALF(\"mdi2f-fraction-one-half\", \"F1992\"),\n    FREEBSD(\"mdi2f-freebsd\", \"F08E0\"),\n    FRENCH_FRIES(\"mdi2f-french-fries\", \"F1957\"),\n    FREQUENTLY_ASKED_QUESTIONS(\"mdi2f-frequently-asked-questions\", \"F0EB4\"),\n    FRIDGE(\"mdi2f-fridge\", \"F0290\"),\n    FRIDGE_ALERT(\"mdi2f-fridge-alert\", \"F11B1\"),\n    FRIDGE_ALERT_OUTLINE(\"mdi2f-fridge-alert-outline\", \"F11B2\"),\n    FRIDGE_BOTTOM(\"mdi2f-fridge-bottom\", \"F0292\"),\n    FRIDGE_INDUSTRIAL(\"mdi2f-fridge-industrial\", \"F15EE\"),\n    FRIDGE_INDUSTRIAL_ALERT(\"mdi2f-fridge-industrial-alert\", \"F15EF\"),\n    FRIDGE_INDUSTRIAL_ALERT_OUTLINE(\"mdi2f-fridge-industrial-alert-outline\", \"F15F0\"),\n    FRIDGE_INDUSTRIAL_OFF(\"mdi2f-fridge-industrial-off\", \"F15F1\"),\n    FRIDGE_INDUSTRIAL_OFF_OUTLINE(\"mdi2f-fridge-industrial-off-outline\", \"F15F2\"),\n    FRIDGE_INDUSTRIAL_OUTLINE(\"mdi2f-fridge-industrial-outline\", \"F15F3\"),\n    FRIDGE_OFF(\"mdi2f-fridge-off\", \"F11AF\"),\n    FRIDGE_OFF_OUTLINE(\"mdi2f-fridge-off-outline\", \"F11B0\"),\n    FRIDGE_OUTLINE(\"mdi2f-fridge-outline\", \"F028F\"),\n    FRIDGE_TOP(\"mdi2f-fridge-top\", \"F0291\"),\n    FRIDGE_VARIANT(\"mdi2f-fridge-variant\", \"F15F4\"),\n    FRIDGE_VARIANT_ALERT(\"mdi2f-fridge-variant-alert\", \"F15F5\"),\n    FRIDGE_VARIANT_ALERT_OUTLINE(\"mdi2f-fridge-variant-alert-outline\", \"F15F6\"),\n    FRIDGE_VARIANT_OFF(\"mdi2f-fridge-variant-off\", \"F15F7\"),\n    FRIDGE_VARIANT_OFF_OUTLINE(\"mdi2f-fridge-variant-off-outline\", \"F15F8\"),\n    FRIDGE_VARIANT_OUTLINE(\"mdi2f-fridge-variant-outline\", \"F15F9\"),\n    FRUIT_CHERRIES(\"mdi2f-fruit-cherries\", \"F1042\"),\n    FRUIT_CHERRIES_OFF(\"mdi2f-fruit-cherries-off\", \"F13F8\"),\n    FRUIT_CITRUS(\"mdi2f-fruit-citrus\", \"F1043\"),\n    FRUIT_CITRUS_OFF(\"mdi2f-fruit-citrus-off\", \"F13F9\"),\n    FRUIT_GRAPES(\"mdi2f-fruit-grapes\", \"F1044\"),\n    FRUIT_GRAPES_OUTLINE(\"mdi2f-fruit-grapes-outline\", \"F1045\"),\n    FRUIT_PEAR(\"mdi2f-fruit-pear\", \"F1A0E\"),\n    FRUIT_PINEAPPLE(\"mdi2f-fruit-pineapple\", \"F1046\"),\n    FRUIT_WATERMELON(\"mdi2f-fruit-watermelon\", \"F1047\"),\n    FUEL(\"mdi2f-fuel\", \"F07CA\"),\n    FUEL_CELL(\"mdi2f-fuel-cell\", \"F18B5\"),\n    FULLSCREEN(\"mdi2f-fullscreen\", \"F0293\"),\n    FULLSCREEN_EXIT(\"mdi2f-fullscreen-exit\", \"F0294\"),\n    FUNCTION(\"mdi2f-function\", \"F0295\"),\n    FUNCTION_VARIANT(\"mdi2f-function-variant\", \"F0871\"),\n    FURIGANA_HORIZONTAL(\"mdi2f-furigana-horizontal\", \"F1081\"),\n    FURIGANA_VERTICAL(\"mdi2f-furigana-vertical\", \"F1082\"),\n    FUSE(\"mdi2f-fuse\", \"F0C85\"),\n    FUSE_ALERT(\"mdi2f-fuse-alert\", \"F142D\"),\n    FUSE_BLADE(\"mdi2f-fuse-blade\", \"F0C86\"),\n    FUSE_OFF(\"mdi2f-fuse-off\", \"F142C\");\n\n    public static MaterialDesignF findByDescription(String description) {\n        for (MaterialDesignF font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignF(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignFIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignFIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2f-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignF.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignFIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignFIkonProvider implements IkonProvider<MaterialDesignF> {\n    @Override\n    public Class<MaterialDesignF> getIkon() {\n        return MaterialDesignF.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignG.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignG implements Ikon {\n    GAMEPAD(\"mdi2g-gamepad\", \"F0296\"),\n    GAMEPAD_CIRCLE(\"mdi2g-gamepad-circle\", \"F0E33\"),\n    GAMEPAD_CIRCLE_DOWN(\"mdi2g-gamepad-circle-down\", \"F0E34\"),\n    GAMEPAD_CIRCLE_LEFT(\"mdi2g-gamepad-circle-left\", \"F0E35\"),\n    GAMEPAD_CIRCLE_OUTLINE(\"mdi2g-gamepad-circle-outline\", \"F0E36\"),\n    GAMEPAD_CIRCLE_RIGHT(\"mdi2g-gamepad-circle-right\", \"F0E37\"),\n    GAMEPAD_CIRCLE_UP(\"mdi2g-gamepad-circle-up\", \"F0E38\"),\n    GAMEPAD_DOWN(\"mdi2g-gamepad-down\", \"F0E39\"),\n    GAMEPAD_LEFT(\"mdi2g-gamepad-left\", \"F0E3A\"),\n    GAMEPAD_OUTLINE(\"mdi2g-gamepad-outline\", \"F1919\"),\n    GAMEPAD_RIGHT(\"mdi2g-gamepad-right\", \"F0E3B\"),\n    GAMEPAD_ROUND(\"mdi2g-gamepad-round\", \"F0E3C\"),\n    GAMEPAD_ROUND_DOWN(\"mdi2g-gamepad-round-down\", \"F0E3D\"),\n    GAMEPAD_ROUND_LEFT(\"mdi2g-gamepad-round-left\", \"F0E3E\"),\n    GAMEPAD_ROUND_OUTLINE(\"mdi2g-gamepad-round-outline\", \"F0E3F\"),\n    GAMEPAD_ROUND_RIGHT(\"mdi2g-gamepad-round-right\", \"F0E40\"),\n    GAMEPAD_ROUND_UP(\"mdi2g-gamepad-round-up\", \"F0E41\"),\n    GAMEPAD_SQUARE(\"mdi2g-gamepad-square\", \"F0EB5\"),\n    GAMEPAD_SQUARE_OUTLINE(\"mdi2g-gamepad-square-outline\", \"F0EB6\"),\n    GAMEPAD_UP(\"mdi2g-gamepad-up\", \"F0E42\"),\n    GAMEPAD_VARIANT(\"mdi2g-gamepad-variant\", \"F0297\"),\n    GAMEPAD_VARIANT_OUTLINE(\"mdi2g-gamepad-variant-outline\", \"F0EB7\"),\n    GAMMA(\"mdi2g-gamma\", \"F10EE\"),\n    GANTRY_CRANE(\"mdi2g-gantry-crane\", \"F0DD1\"),\n    GARAGE(\"mdi2g-garage\", \"F06D9\"),\n    GARAGE_ALERT(\"mdi2g-garage-alert\", \"F0872\"),\n    GARAGE_ALERT_VARIANT(\"mdi2g-garage-alert-variant\", \"F12D5\"),\n    GARAGE_LOCK(\"mdi2g-garage-lock\", \"F17FB\"),\n    GARAGE_OPEN(\"mdi2g-garage-open\", \"F06DA\"),\n    GARAGE_OPEN_VARIANT(\"mdi2g-garage-open-variant\", \"F12D4\"),\n    GARAGE_VARIANT(\"mdi2g-garage-variant\", \"F12D3\"),\n    GARAGE_VARIANT_LOCK(\"mdi2g-garage-variant-lock\", \"F17FC\"),\n    GAS_BURNER(\"mdi2g-gas-burner\", \"F1A1B\"),\n    GAS_CYLINDER(\"mdi2g-gas-cylinder\", \"F0647\"),\n    GAS_STATION(\"mdi2g-gas-station\", \"F0298\"),\n    GAS_STATION_IN_USE(\"mdi2g-gas-station-in-use\", \"F1CC4\"),\n    GAS_STATION_IN_USE_OUTLINE(\"mdi2g-gas-station-in-use-outline\", \"F1CC5\"),\n    GAS_STATION_OFF(\"mdi2g-gas-station-off\", \"F1409\"),\n    GAS_STATION_OFF_OUTLINE(\"mdi2g-gas-station-off-outline\", \"F140A\"),\n    GAS_STATION_OUTLINE(\"mdi2g-gas-station-outline\", \"F0EB8\"),\n    GATE(\"mdi2g-gate\", \"F0299\"),\n    GATE_ALERT(\"mdi2g-gate-alert\", \"F17F8\"),\n    GATE_AND(\"mdi2g-gate-and\", \"F08E1\"),\n    GATE_ARROW_LEFT(\"mdi2g-gate-arrow-left\", \"F17F7\"),\n    GATE_ARROW_RIGHT(\"mdi2g-gate-arrow-right\", \"F1169\"),\n    GATE_BUFFER(\"mdi2g-gate-buffer\", \"F1AFE\"),\n    GATE_NAND(\"mdi2g-gate-nand\", \"F08E2\"),\n    GATE_NOR(\"mdi2g-gate-nor\", \"F08E3\"),\n    GATE_NOT(\"mdi2g-gate-not\", \"F08E4\"),\n    GATE_OPEN(\"mdi2g-gate-open\", \"F116A\"),\n    GATE_OR(\"mdi2g-gate-or\", \"F08E5\"),\n    GATE_XNOR(\"mdi2g-gate-xnor\", \"F08E6\"),\n    GATE_XOR(\"mdi2g-gate-xor\", \"F08E7\"),\n    GATSBY(\"mdi2g-gatsby\", \"F0E43\"),\n    GAUGE(\"mdi2g-gauge\", \"F029A\"),\n    GAUGE_EMPTY(\"mdi2g-gauge-empty\", \"F0873\"),\n    GAUGE_FULL(\"mdi2g-gauge-full\", \"F0874\"),\n    GAUGE_LOW(\"mdi2g-gauge-low\", \"F0875\"),\n    GAVEL(\"mdi2g-gavel\", \"F029B\"),\n    GENDER_FEMALE(\"mdi2g-gender-female\", \"F029C\"),\n    GENDER_MALE(\"mdi2g-gender-male\", \"F029D\"),\n    GENDER_MALE_FEMALE(\"mdi2g-gender-male-female\", \"F029E\"),\n    GENDER_MALE_FEMALE_VARIANT(\"mdi2g-gender-male-female-variant\", \"F113F\"),\n    GENDER_NON_BINARY(\"mdi2g-gender-non-binary\", \"F1140\"),\n    GENDER_TRANSGENDER(\"mdi2g-gender-transgender\", \"F029F\"),\n    GENERATOR_MOBILE(\"mdi2g-generator-mobile\", \"F1C8A\"),\n    GENERATOR_PORTABLE(\"mdi2g-generator-portable\", \"F1C8B\"),\n    GENERATOR_STATIONARY(\"mdi2g-generator-stationary\", \"F1C8C\"),\n    GENTOO(\"mdi2g-gentoo\", \"F08E8\"),\n    GESTURE(\"mdi2g-gesture\", \"F07CB\"),\n    GESTURE_DOUBLE_TAP(\"mdi2g-gesture-double-tap\", \"F073C\"),\n    GESTURE_PINCH(\"mdi2g-gesture-pinch\", \"F0ABD\"),\n    GESTURE_SPREAD(\"mdi2g-gesture-spread\", \"F0ABE\"),\n    GESTURE_SWIPE(\"mdi2g-gesture-swipe\", \"F0D76\"),\n    GESTURE_SWIPE_DOWN(\"mdi2g-gesture-swipe-down\", \"F073D\"),\n    GESTURE_SWIPE_HORIZONTAL(\"mdi2g-gesture-swipe-horizontal\", \"F0ABF\"),\n    GESTURE_SWIPE_LEFT(\"mdi2g-gesture-swipe-left\", \"F073E\"),\n    GESTURE_SWIPE_RIGHT(\"mdi2g-gesture-swipe-right\", \"F073F\"),\n    GESTURE_SWIPE_UP(\"mdi2g-gesture-swipe-up\", \"F0740\"),\n    GESTURE_SWIPE_VERTICAL(\"mdi2g-gesture-swipe-vertical\", \"F0AC0\"),\n    GESTURE_TAP(\"mdi2g-gesture-tap\", \"F0741\"),\n    GESTURE_TAP_BOX(\"mdi2g-gesture-tap-box\", \"F12A9\"),\n    GESTURE_TAP_BUTTON(\"mdi2g-gesture-tap-button\", \"F12A8\"),\n    GESTURE_TAP_HOLD(\"mdi2g-gesture-tap-hold\", \"F0D77\"),\n    GESTURE_TWO_DOUBLE_TAP(\"mdi2g-gesture-two-double-tap\", \"F0742\"),\n    GESTURE_TWO_TAP(\"mdi2g-gesture-two-tap\", \"F0743\"),\n    GHOST(\"mdi2g-ghost\", \"F02A0\"),\n    GHOST_OFF(\"mdi2g-ghost-off\", \"F09F5\"),\n    GHOST_OFF_OUTLINE(\"mdi2g-ghost-off-outline\", \"F165C\"),\n    GHOST_OUTLINE(\"mdi2g-ghost-outline\", \"F165D\"),\n    GIFT(\"mdi2g-gift\", \"F0E44\"),\n    GIFT_OFF(\"mdi2g-gift-off\", \"F16EF\"),\n    GIFT_OFF_OUTLINE(\"mdi2g-gift-off-outline\", \"F16F0\"),\n    GIFT_OPEN(\"mdi2g-gift-open\", \"F16F1\"),\n    GIFT_OPEN_OUTLINE(\"mdi2g-gift-open-outline\", \"F16F2\"),\n    GIFT_OUTLINE(\"mdi2g-gift-outline\", \"F02A1\"),\n    GIT(\"mdi2g-git\", \"F02A2\"),\n    GITHUB(\"mdi2g-github\", \"F02A4\"),\n    GITLAB(\"mdi2g-gitlab\", \"F0BA0\"),\n    GLASS_COCKTAIL(\"mdi2g-glass-cocktail\", \"F0356\"),\n    GLASS_COCKTAIL_OFF(\"mdi2g-glass-cocktail-off\", \"F15E6\"),\n    GLASS_FLUTE(\"mdi2g-glass-flute\", \"F02A5\"),\n    GLASS_FRAGILE(\"mdi2g-glass-fragile\", \"F1873\"),\n    GLASS_MUG(\"mdi2g-glass-mug\", \"F02A6\"),\n    GLASS_MUG_OFF(\"mdi2g-glass-mug-off\", \"F15E7\"),\n    GLASS_MUG_VARIANT(\"mdi2g-glass-mug-variant\", \"F1116\"),\n    GLASS_MUG_VARIANT_OFF(\"mdi2g-glass-mug-variant-off\", \"F15E8\"),\n    GLASS_PINT_OUTLINE(\"mdi2g-glass-pint-outline\", \"F130D\"),\n    GLASS_STANGE(\"mdi2g-glass-stange\", \"F02A7\"),\n    GLASS_TULIP(\"mdi2g-glass-tulip\", \"F02A8\"),\n    GLASS_WINE(\"mdi2g-glass-wine\", \"F0876\"),\n    GLASSES(\"mdi2g-glasses\", \"F02AA\"),\n    GLOBE_LIGHT(\"mdi2g-globe-light\", \"F066F\"),\n    GLOBE_LIGHT_OUTLINE(\"mdi2g-globe-light-outline\", \"F12D7\"),\n    GLOBE_MODEL(\"mdi2g-globe-model\", \"F08E9\"),\n    GMAIL(\"mdi2g-gmail\", \"F02AB\"),\n    GNOME(\"mdi2g-gnome\", \"F02AC\"),\n    GO_KART(\"mdi2g-go-kart\", \"F0D79\"),\n    GO_KART_TRACK(\"mdi2g-go-kart-track\", \"F0D7A\"),\n    GOG(\"mdi2g-gog\", \"F0BA1\"),\n    GOLD(\"mdi2g-gold\", \"F124F\"),\n    GOLF(\"mdi2g-golf\", \"F0823\"),\n    GOLF_CART(\"mdi2g-golf-cart\", \"F11A4\"),\n    GOLF_TEE(\"mdi2g-golf-tee\", \"F1083\"),\n    GONDOLA(\"mdi2g-gondola\", \"F0686\"),\n    GOODREADS(\"mdi2g-goodreads\", \"F0D7B\"),\n    GOOGLE(\"mdi2g-google\", \"F02AD\"),\n    GOOGLE_ADS(\"mdi2g-google-ads\", \"F0C87\"),\n    GOOGLE_ANALYTICS(\"mdi2g-google-analytics\", \"F07CC\"),\n    GOOGLE_ASSISTANT(\"mdi2g-google-assistant\", \"F07CD\"),\n    GOOGLE_CARDBOARD(\"mdi2g-google-cardboard\", \"F02AE\"),\n    GOOGLE_CHROME(\"mdi2g-google-chrome\", \"F02AF\"),\n    GOOGLE_CIRCLES(\"mdi2g-google-circles\", \"F02B0\"),\n    GOOGLE_CIRCLES_COMMUNITIES(\"mdi2g-google-circles-communities\", \"F02B1\"),\n    GOOGLE_CIRCLES_EXTENDED(\"mdi2g-google-circles-extended\", \"F02B2\"),\n    GOOGLE_CIRCLES_GROUP(\"mdi2g-google-circles-group\", \"F02B3\"),\n    GOOGLE_CLASSROOM(\"mdi2g-google-classroom\", \"F02C0\"),\n    GOOGLE_CLOUD(\"mdi2g-google-cloud\", \"F11F6\"),\n    GOOGLE_DOWNASAUR(\"mdi2g-google-downasaur\", \"F1362\"),\n    GOOGLE_DRIVE(\"mdi2g-google-drive\", \"F02B6\"),\n    GOOGLE_EARTH(\"mdi2g-google-earth\", \"F02B7\"),\n    GOOGLE_FIT(\"mdi2g-google-fit\", \"F096C\"),\n    GOOGLE_GLASS(\"mdi2g-google-glass\", \"F02B8\"),\n    GOOGLE_HANGOUTS(\"mdi2g-google-hangouts\", \"F02C9\"),\n    GOOGLE_KEEP(\"mdi2g-google-keep\", \"F06DC\"),\n    GOOGLE_LENS(\"mdi2g-google-lens\", \"F09F6\"),\n    GOOGLE_MAPS(\"mdi2g-google-maps\", \"F05F5\"),\n    GOOGLE_MY_BUSINESS(\"mdi2g-google-my-business\", \"F1048\"),\n    GOOGLE_NEARBY(\"mdi2g-google-nearby\", \"F02B9\"),\n    GOOGLE_PLAY(\"mdi2g-google-play\", \"F02BC\"),\n    GOOGLE_PLUS(\"mdi2g-google-plus\", \"F02BD\"),\n    GOOGLE_PODCAST(\"mdi2g-google-podcast\", \"F0EB9\"),\n    GOOGLE_SPREADSHEET(\"mdi2g-google-spreadsheet\", \"F09F7\"),\n    GOOGLE_STREET_VIEW(\"mdi2g-google-street-view\", \"F0C88\"),\n    GOOGLE_TRANSLATE(\"mdi2g-google-translate\", \"F02BF\"),\n    GRADIENT_HORIZONTAL(\"mdi2g-gradient-horizontal\", \"F174A\"),\n    GRADIENT_VERTICAL(\"mdi2g-gradient-vertical\", \"F06A0\"),\n    GRAIN(\"mdi2g-grain\", \"F0D7C\"),\n    GRAPH(\"mdi2g-graph\", \"F1049\"),\n    GRAPH_OUTLINE(\"mdi2g-graph-outline\", \"F104A\"),\n    GRAPHQL(\"mdi2g-graphql\", \"F0877\"),\n    GRASS(\"mdi2g-grass\", \"F1510\"),\n    GRAVE_STONE(\"mdi2g-grave-stone\", \"F0BA2\"),\n    GREASE_PENCIL(\"mdi2g-grease-pencil\", \"F0648\"),\n    GREATER_THAN(\"mdi2g-greater-than\", \"F096D\"),\n    GREATER_THAN_OR_EQUAL(\"mdi2g-greater-than-or-equal\", \"F096E\"),\n    GREENHOUSE(\"mdi2g-greenhouse\", \"F002D\"),\n    GRID(\"mdi2g-grid\", \"F02C1\"),\n    GRID_LARGE(\"mdi2g-grid-large\", \"F0758\"),\n    GRID_OFF(\"mdi2g-grid-off\", \"F02C2\"),\n    GRILL(\"mdi2g-grill\", \"F0E45\"),\n    GRILL_OUTLINE(\"mdi2g-grill-outline\", \"F118A\"),\n    GROUP(\"mdi2g-group\", \"F02C3\"),\n    GUITAR_ACOUSTIC(\"mdi2g-guitar-acoustic\", \"F0771\"),\n    GUITAR_ELECTRIC(\"mdi2g-guitar-electric\", \"F02C4\"),\n    GUITAR_PICK(\"mdi2g-guitar-pick\", \"F02C5\"),\n    GUITAR_PICK_OUTLINE(\"mdi2g-guitar-pick-outline\", \"F02C6\"),\n    GUY_FAWKES_MASK(\"mdi2g-guy-fawkes-mask\", \"F0825\"),\n    GYMNASTICS(\"mdi2g-gymnastics\", \"F1A41\");\n\n    public static MaterialDesignG findByDescription(String description) {\n        for (MaterialDesignG font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignG(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignGIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignGIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2g-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignG.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignGIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignGIkonProvider implements IkonProvider<MaterialDesignG> {\n    @Override\n    public Class<MaterialDesignG> getIkon() {\n        return MaterialDesignG.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignH.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignH implements Ikon {\n    HAIL(\"mdi2h-hail\", \"F0AC1\"),\n    HAIR_DRYER(\"mdi2h-hair-dryer\", \"F10EF\"),\n    HAIR_DRYER_OUTLINE(\"mdi2h-hair-dryer-outline\", \"F10F0\"),\n    HALLOWEEN(\"mdi2h-halloween\", \"F0BA3\"),\n    HAMBURGER(\"mdi2h-hamburger\", \"F0685\"),\n    HAMBURGER_CHECK(\"mdi2h-hamburger-check\", \"F1776\"),\n    HAMBURGER_MINUS(\"mdi2h-hamburger-minus\", \"F1777\"),\n    HAMBURGER_OFF(\"mdi2h-hamburger-off\", \"F1778\"),\n    HAMBURGER_PLUS(\"mdi2h-hamburger-plus\", \"F1779\"),\n    HAMBURGER_REMOVE(\"mdi2h-hamburger-remove\", \"F177A\"),\n    HAMMER(\"mdi2h-hammer\", \"F08EA\"),\n    HAMMER_SCREWDRIVER(\"mdi2h-hammer-screwdriver\", \"F1322\"),\n    HAMMER_SICKLE(\"mdi2h-hammer-sickle\", \"F1887\"),\n    HAMMER_WRENCH(\"mdi2h-hammer-wrench\", \"F1323\"),\n    HAND_BACK_LEFT(\"mdi2h-hand-back-left\", \"F0E46\"),\n    HAND_BACK_LEFT_OFF(\"mdi2h-hand-back-left-off\", \"F1830\"),\n    HAND_BACK_LEFT_OFF_OUTLINE(\"mdi2h-hand-back-left-off-outline\", \"F1832\"),\n    HAND_BACK_LEFT_OUTLINE(\"mdi2h-hand-back-left-outline\", \"F182C\"),\n    HAND_BACK_RIGHT(\"mdi2h-hand-back-right\", \"F0E47\"),\n    HAND_BACK_RIGHT_OFF(\"mdi2h-hand-back-right-off\", \"F1831\"),\n    HAND_BACK_RIGHT_OFF_OUTLINE(\"mdi2h-hand-back-right-off-outline\", \"F1833\"),\n    HAND_BACK_RIGHT_OUTLINE(\"mdi2h-hand-back-right-outline\", \"F182D\"),\n    HAND_CLAP(\"mdi2h-hand-clap\", \"F194B\"),\n    HAND_CLAP_OFF(\"mdi2h-hand-clap-off\", \"F1A42\"),\n    HAND_COIN(\"mdi2h-hand-coin\", \"F188F\"),\n    HAND_COIN_OUTLINE(\"mdi2h-hand-coin-outline\", \"F1890\"),\n    HAND_CYCLE(\"mdi2h-hand-cycle\", \"F1B9C\"),\n    HAND_EXTENDED(\"mdi2h-hand-extended\", \"F18B6\"),\n    HAND_EXTENDED_OUTLINE(\"mdi2h-hand-extended-outline\", \"F18B7\"),\n    HAND_FRONT_LEFT(\"mdi2h-hand-front-left\", \"F182B\"),\n    HAND_FRONT_LEFT_OUTLINE(\"mdi2h-hand-front-left-outline\", \"F182E\"),\n    HAND_FRONT_RIGHT(\"mdi2h-hand-front-right\", \"F0A4F\"),\n    HAND_FRONT_RIGHT_OUTLINE(\"mdi2h-hand-front-right-outline\", \"F182F\"),\n    HAND_HEART(\"mdi2h-hand-heart\", \"F10F1\"),\n    HAND_HEART_OUTLINE(\"mdi2h-hand-heart-outline\", \"F157E\"),\n    HAND_OKAY(\"mdi2h-hand-okay\", \"F0A50\"),\n    HAND_PEACE(\"mdi2h-hand-peace\", \"F0A51\"),\n    HAND_PEACE_VARIANT(\"mdi2h-hand-peace-variant\", \"F0A52\"),\n    HAND_POINTING_DOWN(\"mdi2h-hand-pointing-down\", \"F0A53\"),\n    HAND_POINTING_LEFT(\"mdi2h-hand-pointing-left\", \"F0A54\"),\n    HAND_POINTING_RIGHT(\"mdi2h-hand-pointing-right\", \"F02C7\"),\n    HAND_POINTING_UP(\"mdi2h-hand-pointing-up\", \"F0A55\"),\n    HAND_SAW(\"mdi2h-hand-saw\", \"F0E48\"),\n    HAND_WASH(\"mdi2h-hand-wash\", \"F157F\"),\n    HAND_WASH_OUTLINE(\"mdi2h-hand-wash-outline\", \"F1580\"),\n    HAND_WATER(\"mdi2h-hand-water\", \"F139F\"),\n    HAND_WAVE(\"mdi2h-hand-wave\", \"F1821\"),\n    HAND_WAVE_OUTLINE(\"mdi2h-hand-wave-outline\", \"F1822\"),\n    HANDBALL(\"mdi2h-handball\", \"F0F53\"),\n    HANDCUFFS(\"mdi2h-handcuffs\", \"F113E\"),\n    HANDS_PRAY(\"mdi2h-hands-pray\", \"F0579\"),\n    HANDSHAKE(\"mdi2h-handshake\", \"F1218\"),\n    HANDSHAKE_OUTLINE(\"mdi2h-handshake-outline\", \"F15A1\"),\n    HANGER(\"mdi2h-hanger\", \"F02C8\"),\n    HARD_HAT(\"mdi2h-hard-hat\", \"F096F\"),\n    HARDDISK(\"mdi2h-harddisk\", \"F02CA\"),\n    HARDDISK_PLUS(\"mdi2h-harddisk-plus\", \"F104B\"),\n    HARDDISK_REMOVE(\"mdi2h-harddisk-remove\", \"F104C\"),\n    HAT_FEDORA(\"mdi2h-hat-fedora\", \"F0BA4\"),\n    HAZARD_LIGHTS(\"mdi2h-hazard-lights\", \"F0C89\"),\n    HDMI_PORT(\"mdi2h-hdmi-port\", \"F1BB8\"),\n    HDR(\"mdi2h-hdr\", \"F0D7D\"),\n    HDR_OFF(\"mdi2h-hdr-off\", \"F0D7E\"),\n    HEAD(\"mdi2h-head\", \"F135E\"),\n    HEAD_ALERT(\"mdi2h-head-alert\", \"F1338\"),\n    HEAD_ALERT_OUTLINE(\"mdi2h-head-alert-outline\", \"F1339\"),\n    HEAD_CHECK(\"mdi2h-head-check\", \"F133A\"),\n    HEAD_CHECK_OUTLINE(\"mdi2h-head-check-outline\", \"F133B\"),\n    HEAD_COG(\"mdi2h-head-cog\", \"F133C\"),\n    HEAD_COG_OUTLINE(\"mdi2h-head-cog-outline\", \"F133D\"),\n    HEAD_DOTS_HORIZONTAL(\"mdi2h-head-dots-horizontal\", \"F133E\"),\n    HEAD_DOTS_HORIZONTAL_OUTLINE(\"mdi2h-head-dots-horizontal-outline\", \"F133F\"),\n    HEAD_FLASH(\"mdi2h-head-flash\", \"F1340\"),\n    HEAD_FLASH_OUTLINE(\"mdi2h-head-flash-outline\", \"F1341\"),\n    HEAD_HEART(\"mdi2h-head-heart\", \"F1342\"),\n    HEAD_HEART_OUTLINE(\"mdi2h-head-heart-outline\", \"F1343\"),\n    HEAD_LIGHTBULB(\"mdi2h-head-lightbulb\", \"F1344\"),\n    HEAD_LIGHTBULB_OUTLINE(\"mdi2h-head-lightbulb-outline\", \"F1345\"),\n    HEAD_MINUS(\"mdi2h-head-minus\", \"F1346\"),\n    HEAD_MINUS_OUTLINE(\"mdi2h-head-minus-outline\", \"F1347\"),\n    HEAD_OUTLINE(\"mdi2h-head-outline\", \"F135F\"),\n    HEAD_PLUS(\"mdi2h-head-plus\", \"F1348\"),\n    HEAD_PLUS_OUTLINE(\"mdi2h-head-plus-outline\", \"F1349\"),\n    HEAD_QUESTION(\"mdi2h-head-question\", \"F134A\"),\n    HEAD_QUESTION_OUTLINE(\"mdi2h-head-question-outline\", \"F134B\"),\n    HEAD_REMOVE(\"mdi2h-head-remove\", \"F134C\"),\n    HEAD_REMOVE_OUTLINE(\"mdi2h-head-remove-outline\", \"F134D\"),\n    HEAD_SNOWFLAKE(\"mdi2h-head-snowflake\", \"F134E\"),\n    HEAD_SNOWFLAKE_OUTLINE(\"mdi2h-head-snowflake-outline\", \"F134F\"),\n    HEAD_SYNC(\"mdi2h-head-sync\", \"F1350\"),\n    HEAD_SYNC_OUTLINE(\"mdi2h-head-sync-outline\", \"F1351\"),\n    HEADPHONES(\"mdi2h-headphones\", \"F02CB\"),\n    HEADPHONES_BLUETOOTH(\"mdi2h-headphones-bluetooth\", \"F0970\"),\n    HEADPHONES_BOX(\"mdi2h-headphones-box\", \"F02CC\"),\n    HEADPHONES_OFF(\"mdi2h-headphones-off\", \"F07CE\"),\n    HEADPHONES_SETTINGS(\"mdi2h-headphones-settings\", \"F02CD\"),\n    HEADSET(\"mdi2h-headset\", \"F02CE\"),\n    HEADSET_DOCK(\"mdi2h-headset-dock\", \"F02CF\"),\n    HEADSET_OFF(\"mdi2h-headset-off\", \"F02D0\"),\n    HEART(\"mdi2h-heart\", \"F02D1\"),\n    HEART_BOX(\"mdi2h-heart-box\", \"F02D2\"),\n    HEART_BOX_OUTLINE(\"mdi2h-heart-box-outline\", \"F02D3\"),\n    HEART_BROKEN(\"mdi2h-heart-broken\", \"F02D4\"),\n    HEART_BROKEN_OUTLINE(\"mdi2h-heart-broken-outline\", \"F0D14\"),\n    HEART_CIRCLE(\"mdi2h-heart-circle\", \"F0971\"),\n    HEART_CIRCLE_OUTLINE(\"mdi2h-heart-circle-outline\", \"F0972\"),\n    HEART_COG(\"mdi2h-heart-cog\", \"F1663\"),\n    HEART_COG_OUTLINE(\"mdi2h-heart-cog-outline\", \"F1664\"),\n    HEART_FLASH(\"mdi2h-heart-flash\", \"F0EF9\"),\n    HEART_HALF(\"mdi2h-heart-half\", \"F06DF\"),\n    HEART_HALF_FULL(\"mdi2h-heart-half-full\", \"F06DE\"),\n    HEART_HALF_OUTLINE(\"mdi2h-heart-half-outline\", \"F06E0\"),\n    HEART_MINUS(\"mdi2h-heart-minus\", \"F142F\"),\n    HEART_MINUS_OUTLINE(\"mdi2h-heart-minus-outline\", \"F1432\"),\n    HEART_MULTIPLE(\"mdi2h-heart-multiple\", \"F0A56\"),\n    HEART_MULTIPLE_OUTLINE(\"mdi2h-heart-multiple-outline\", \"F0A57\"),\n    HEART_OFF(\"mdi2h-heart-off\", \"F0759\"),\n    HEART_OFF_OUTLINE(\"mdi2h-heart-off-outline\", \"F1434\"),\n    HEART_OUTLINE(\"mdi2h-heart-outline\", \"F02D5\"),\n    HEART_PLUS(\"mdi2h-heart-plus\", \"F142E\"),\n    HEART_PLUS_OUTLINE(\"mdi2h-heart-plus-outline\", \"F1431\"),\n    HEART_PULSE(\"mdi2h-heart-pulse\", \"F05F6\"),\n    HEART_REMOVE(\"mdi2h-heart-remove\", \"F1430\"),\n    HEART_REMOVE_OUTLINE(\"mdi2h-heart-remove-outline\", \"F1433\"),\n    HEART_SEARCH(\"mdi2h-heart-search\", \"F1C8D\"),\n    HEART_SETTINGS(\"mdi2h-heart-settings\", \"F1665\"),\n    HEART_SETTINGS_OUTLINE(\"mdi2h-heart-settings-outline\", \"F1666\"),\n    HEAT_PUMP(\"mdi2h-heat-pump\", \"F1A43\"),\n    HEAT_PUMP_OUTLINE(\"mdi2h-heat-pump-outline\", \"F1A44\"),\n    HEAT_WAVE(\"mdi2h-heat-wave\", \"F1A45\"),\n    HEATING_COIL(\"mdi2h-heating-coil\", \"F1AAF\"),\n    HELICOPTER(\"mdi2h-helicopter\", \"F0AC2\"),\n    HELP(\"mdi2h-help\", \"F02D6\"),\n    HELP_BOX(\"mdi2h-help-box\", \"F078B\"),\n    HELP_BOX_MULTIPLE(\"mdi2h-help-box-multiple\", \"F1C0A\"),\n    HELP_BOX_MULTIPLE_OUTLINE(\"mdi2h-help-box-multiple-outline\", \"F1C0B\"),\n    HELP_BOX_OUTLINE(\"mdi2h-help-box-outline\", \"F1C0C\"),\n    HELP_CIRCLE(\"mdi2h-help-circle\", \"F02D7\"),\n    HELP_CIRCLE_OUTLINE(\"mdi2h-help-circle-outline\", \"F0625\"),\n    HELP_NETWORK(\"mdi2h-help-network\", \"F06F5\"),\n    HELP_NETWORK_OUTLINE(\"mdi2h-help-network-outline\", \"F0C8A\"),\n    HELP_RHOMBUS(\"mdi2h-help-rhombus\", \"F0BA5\"),\n    HELP_RHOMBUS_OUTLINE(\"mdi2h-help-rhombus-outline\", \"F0BA6\"),\n    HEXADECIMAL(\"mdi2h-hexadecimal\", \"F12A7\"),\n    HEXAGON(\"mdi2h-hexagon\", \"F02D8\"),\n    HEXAGON_MULTIPLE(\"mdi2h-hexagon-multiple\", \"F06E1\"),\n    HEXAGON_MULTIPLE_OUTLINE(\"mdi2h-hexagon-multiple-outline\", \"F10F2\"),\n    HEXAGON_OUTLINE(\"mdi2h-hexagon-outline\", \"F02D9\"),\n    HEXAGON_SLICE_1(\"mdi2h-hexagon-slice-1\", \"F0AC3\"),\n    HEXAGON_SLICE_2(\"mdi2h-hexagon-slice-2\", \"F0AC4\"),\n    HEXAGON_SLICE_3(\"mdi2h-hexagon-slice-3\", \"F0AC5\"),\n    HEXAGON_SLICE_4(\"mdi2h-hexagon-slice-4\", \"F0AC6\"),\n    HEXAGON_SLICE_5(\"mdi2h-hexagon-slice-5\", \"F0AC7\"),\n    HEXAGON_SLICE_6(\"mdi2h-hexagon-slice-6\", \"F0AC8\"),\n    HEXAGRAM(\"mdi2h-hexagram\", \"F0AC9\"),\n    HEXAGRAM_OUTLINE(\"mdi2h-hexagram-outline\", \"F0ACA\"),\n    HIGH_DEFINITION(\"mdi2h-high-definition\", \"F07CF\"),\n    HIGH_DEFINITION_BOX(\"mdi2h-high-definition-box\", \"F0878\"),\n    HIGHWAY(\"mdi2h-highway\", \"F05F7\"),\n    HIKING(\"mdi2h-hiking\", \"F0D7F\"),\n    HISTORY(\"mdi2h-history\", \"F02DA\"),\n    HOCKEY_PUCK(\"mdi2h-hockey-puck\", \"F0879\"),\n    HOCKEY_STICKS(\"mdi2h-hockey-sticks\", \"F087A\"),\n    HOLOLENS(\"mdi2h-hololens\", \"F02DB\"),\n    HOME(\"mdi2h-home\", \"F02DC\"),\n    HOME_ACCOUNT(\"mdi2h-home-account\", \"F0826\"),\n    HOME_ALERT(\"mdi2h-home-alert\", \"F087B\"),\n    HOME_ALERT_OUTLINE(\"mdi2h-home-alert-outline\", \"F15D0\"),\n    HOME_ANALYTICS(\"mdi2h-home-analytics\", \"F0EBA\"),\n    HOME_ASSISTANT(\"mdi2h-home-assistant\", \"F07D0\"),\n    HOME_AUTOMATION(\"mdi2h-home-automation\", \"F07D1\"),\n    HOME_BATTERY(\"mdi2h-home-battery\", \"F1901\"),\n    HOME_BATTERY_OUTLINE(\"mdi2h-home-battery-outline\", \"F1902\"),\n    HOME_CIRCLE(\"mdi2h-home-circle\", \"F07D2\"),\n    HOME_CIRCLE_OUTLINE(\"mdi2h-home-circle-outline\", \"F104D\"),\n    HOME_CITY(\"mdi2h-home-city\", \"F0D15\"),\n    HOME_CITY_OUTLINE(\"mdi2h-home-city-outline\", \"F0D16\"),\n    HOME_CLOCK(\"mdi2h-home-clock\", \"F1A12\"),\n    HOME_CLOCK_OUTLINE(\"mdi2h-home-clock-outline\", \"F1A13\"),\n    HOME_EDIT(\"mdi2h-home-edit\", \"F1159\"),\n    HOME_EDIT_OUTLINE(\"mdi2h-home-edit-outline\", \"F115A\"),\n    HOME_EXPORT_OUTLINE(\"mdi2h-home-export-outline\", \"F0F9B\"),\n    HOME_FLOOD(\"mdi2h-home-flood\", \"F0EFA\"),\n    HOME_FLOOR_0(\"mdi2h-home-floor-0\", \"F0DD2\"),\n    HOME_FLOOR_1(\"mdi2h-home-floor-1\", \"F0D80\"),\n    HOME_FLOOR_2(\"mdi2h-home-floor-2\", \"F0D81\"),\n    HOME_FLOOR_3(\"mdi2h-home-floor-3\", \"F0D82\"),\n    HOME_FLOOR_A(\"mdi2h-home-floor-a\", \"F0D83\"),\n    HOME_FLOOR_B(\"mdi2h-home-floor-b\", \"F0D84\"),\n    HOME_FLOOR_G(\"mdi2h-home-floor-g\", \"F0D85\"),\n    HOME_FLOOR_L(\"mdi2h-home-floor-l\", \"F0D86\"),\n    HOME_FLOOR_NEGATIVE_1(\"mdi2h-home-floor-negative-1\", \"F0DD3\"),\n    HOME_GROUP(\"mdi2h-home-group\", \"F0DD4\"),\n    HOME_GROUP_MINUS(\"mdi2h-home-group-minus\", \"F19C1\"),\n    HOME_GROUP_PLUS(\"mdi2h-home-group-plus\", \"F19C0\"),\n    HOME_GROUP_REMOVE(\"mdi2h-home-group-remove\", \"F19C2\"),\n    HOME_HEART(\"mdi2h-home-heart\", \"F0827\"),\n    HOME_IMPORT_OUTLINE(\"mdi2h-home-import-outline\", \"F0F9C\"),\n    HOME_LIGHTBULB(\"mdi2h-home-lightbulb\", \"F1251\"),\n    HOME_LIGHTBULB_OUTLINE(\"mdi2h-home-lightbulb-outline\", \"F1252\"),\n    HOME_LIGHTNING_BOLT(\"mdi2h-home-lightning-bolt\", \"F1903\"),\n    HOME_LIGHTNING_BOLT_OUTLINE(\"mdi2h-home-lightning-bolt-outline\", \"F1904\"),\n    HOME_LOCK(\"mdi2h-home-lock\", \"F08EB\"),\n    HOME_LOCK_OPEN(\"mdi2h-home-lock-open\", \"F08EC\"),\n    HOME_MAP_MARKER(\"mdi2h-home-map-marker\", \"F05F8\"),\n    HOME_MINUS(\"mdi2h-home-minus\", \"F0974\"),\n    HOME_MINUS_OUTLINE(\"mdi2h-home-minus-outline\", \"F13D5\"),\n    HOME_MODERN(\"mdi2h-home-modern\", \"F02DD\"),\n    HOME_OFF(\"mdi2h-home-off\", \"F1A46\"),\n    HOME_OFF_OUTLINE(\"mdi2h-home-off-outline\", \"F1A47\"),\n    HOME_OUTLINE(\"mdi2h-home-outline\", \"F06A1\"),\n    HOME_PERCENT(\"mdi2h-home-percent\", \"F1C7C\"),\n    HOME_PERCENT_OUTLINE(\"mdi2h-home-percent-outline\", \"F1C7D\"),\n    HOME_PLUS(\"mdi2h-home-plus\", \"F0975\"),\n    HOME_PLUS_OUTLINE(\"mdi2h-home-plus-outline\", \"F13D6\"),\n    HOME_REMOVE(\"mdi2h-home-remove\", \"F1247\"),\n    HOME_REMOVE_OUTLINE(\"mdi2h-home-remove-outline\", \"F13D7\"),\n    HOME_ROOF(\"mdi2h-home-roof\", \"F112B\"),\n    HOME_SEARCH(\"mdi2h-home-search\", \"F13B0\"),\n    HOME_SEARCH_OUTLINE(\"mdi2h-home-search-outline\", \"F13B1\"),\n    HOME_SILO(\"mdi2h-home-silo\", \"F1BA0\"),\n    HOME_SILO_OUTLINE(\"mdi2h-home-silo-outline\", \"F1BA1\"),\n    HOME_SOUND_IN(\"mdi2h-home-sound-in\", \"F1C2F\"),\n    HOME_SOUND_IN_OUTLINE(\"mdi2h-home-sound-in-outline\", \"F1C30\"),\n    HOME_SOUND_OUT(\"mdi2h-home-sound-out\", \"F1C31\"),\n    HOME_SOUND_OUT_OUTLINE(\"mdi2h-home-sound-out-outline\", \"F1C32\"),\n    HOME_SWITCH(\"mdi2h-home-switch\", \"F1794\"),\n    HOME_SWITCH_OUTLINE(\"mdi2h-home-switch-outline\", \"F1795\"),\n    HOME_THERMOMETER(\"mdi2h-home-thermometer\", \"F0F54\"),\n    HOME_THERMOMETER_OUTLINE(\"mdi2h-home-thermometer-outline\", \"F0F55\"),\n    HOME_VARIANT(\"mdi2h-home-variant\", \"F02DE\"),\n    HOME_VARIANT_OUTLINE(\"mdi2h-home-variant-outline\", \"F0BA7\"),\n    HOOK(\"mdi2h-hook\", \"F06E2\"),\n    HOOK_OFF(\"mdi2h-hook-off\", \"F06E3\"),\n    HOOP_HOUSE(\"mdi2h-hoop-house\", \"F0E56\"),\n    HOPS(\"mdi2h-hops\", \"F02DF\"),\n    HORIZONTAL_ROTATE_CLOCKWISE(\"mdi2h-horizontal-rotate-clockwise\", \"F10F3\"),\n    HORIZONTAL_ROTATE_COUNTERCLOCKWISE(\"mdi2h-horizontal-rotate-counterclockwise\", \"F10F4\"),\n    HORSE(\"mdi2h-horse\", \"F15BF\"),\n    HORSE_HUMAN(\"mdi2h-horse-human\", \"F15C0\"),\n    HORSE_VARIANT(\"mdi2h-horse-variant\", \"F15C1\"),\n    HORSE_VARIANT_FAST(\"mdi2h-horse-variant-fast\", \"F186E\"),\n    HORSESHOE(\"mdi2h-horseshoe\", \"F0A58\"),\n    HOSPITAL(\"mdi2h-hospital\", \"F0FF6\"),\n    HOSPITAL_BOX(\"mdi2h-hospital-box\", \"F02E0\"),\n    HOSPITAL_BOX_OUTLINE(\"mdi2h-hospital-box-outline\", \"F0FF7\"),\n    HOSPITAL_BUILDING(\"mdi2h-hospital-building\", \"F02E1\"),\n    HOSPITAL_MARKER(\"mdi2h-hospital-marker\", \"F02E2\"),\n    HOT_TUB(\"mdi2h-hot-tub\", \"F0828\"),\n    HOURS_12(\"mdi2h-hours-12\", \"F1C94\"),\n    HOURS_24(\"mdi2h-hours-24\", \"F1478\"),\n    HUB(\"mdi2h-hub\", \"F1C95\"),\n    HUB_OUTLINE(\"mdi2h-hub-outline\", \"F1C96\"),\n    HUBSPOT(\"mdi2h-hubspot\", \"F0D17\"),\n    HULU(\"mdi2h-hulu\", \"F0829\"),\n    HUMAN(\"mdi2h-human\", \"F02E6\"),\n    HUMAN_BABY_CHANGING_TABLE(\"mdi2h-human-baby-changing-table\", \"F138B\"),\n    HUMAN_CANE(\"mdi2h-human-cane\", \"F1581\"),\n    HUMAN_CAPACITY_DECREASE(\"mdi2h-human-capacity-decrease\", \"F159B\"),\n    HUMAN_CAPACITY_INCREASE(\"mdi2h-human-capacity-increase\", \"F159C\"),\n    HUMAN_CHILD(\"mdi2h-human-child\", \"F02E7\"),\n    HUMAN_DOLLY(\"mdi2h-human-dolly\", \"F1980\"),\n    HUMAN_EDIT(\"mdi2h-human-edit\", \"F14E8\"),\n    HUMAN_FEMALE(\"mdi2h-human-female\", \"F0649\"),\n    HUMAN_FEMALE_BOY(\"mdi2h-human-female-boy\", \"F0A59\"),\n    HUMAN_FEMALE_DANCE(\"mdi2h-human-female-dance\", \"F15C9\"),\n    HUMAN_FEMALE_FEMALE(\"mdi2h-human-female-female\", \"F0A5A\"),\n    HUMAN_FEMALE_FEMALE_CHILD(\"mdi2h-human-female-female-child\", \"F1C8E\"),\n    HUMAN_FEMALE_GIRL(\"mdi2h-human-female-girl\", \"F0A5B\"),\n    HUMAN_GREETING(\"mdi2h-human-greeting\", \"F17C4\"),\n    HUMAN_GREETING_PROXIMITY(\"mdi2h-human-greeting-proximity\", \"F159D\"),\n    HUMAN_GREETING_VARIANT(\"mdi2h-human-greeting-variant\", \"F064A\"),\n    HUMAN_HANDSDOWN(\"mdi2h-human-handsdown\", \"F064B\"),\n    HUMAN_HANDSUP(\"mdi2h-human-handsup\", \"F064C\"),\n    HUMAN_MALE(\"mdi2h-human-male\", \"F064D\"),\n    HUMAN_MALE_BOARD(\"mdi2h-human-male-board\", \"F0890\"),\n    HUMAN_MALE_BOARD_POLL(\"mdi2h-human-male-board-poll\", \"F0846\"),\n    HUMAN_MALE_BOY(\"mdi2h-human-male-boy\", \"F0A5C\"),\n    HUMAN_MALE_CHILD(\"mdi2h-human-male-child\", \"F138C\"),\n    HUMAN_MALE_FEMALE(\"mdi2h-human-male-female\", \"F02E8\"),\n    HUMAN_MALE_FEMALE_CHILD(\"mdi2h-human-male-female-child\", \"F1823\"),\n    HUMAN_MALE_GIRL(\"mdi2h-human-male-girl\", \"F0A5D\"),\n    HUMAN_MALE_HEIGHT(\"mdi2h-human-male-height\", \"F0EFB\"),\n    HUMAN_MALE_HEIGHT_VARIANT(\"mdi2h-human-male-height-variant\", \"F0EFC\"),\n    HUMAN_MALE_MALE(\"mdi2h-human-male-male\", \"F0A5E\"),\n    HUMAN_MALE_MALE_CHILD(\"mdi2h-human-male-male-child\", \"F1C8F\"),\n    HUMAN_NON_BINARY(\"mdi2h-human-non-binary\", \"F1848\"),\n    HUMAN_PREGNANT(\"mdi2h-human-pregnant\", \"F05CF\"),\n    HUMAN_QUEUE(\"mdi2h-human-queue\", \"F1571\"),\n    HUMAN_SCOOTER(\"mdi2h-human-scooter\", \"F11E9\"),\n    HUMAN_WALKER(\"mdi2h-human-walker\", \"F1B71\"),\n    HUMAN_WHEELCHAIR(\"mdi2h-human-wheelchair\", \"F138D\"),\n    HUMAN_WHITE_CANE(\"mdi2h-human-white-cane\", \"F1981\"),\n    HUMBLE_BUNDLE(\"mdi2h-humble-bundle\", \"F0744\"),\n    HVAC(\"mdi2h-hvac\", \"F1352\"),\n    HVAC_OFF(\"mdi2h-hvac-off\", \"F159E\"),\n    HYDRAULIC_OIL_LEVEL(\"mdi2h-hydraulic-oil-level\", \"F1324\"),\n    HYDRAULIC_OIL_TEMPERATURE(\"mdi2h-hydraulic-oil-temperature\", \"F1325\"),\n    HYDRO_POWER(\"mdi2h-hydro-power\", \"F12E5\"),\n    HYDROGEN_STATION(\"mdi2h-hydrogen-station\", \"F1894\");\n\n    public static MaterialDesignH findByDescription(String description) {\n        for (MaterialDesignH font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignH(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignHIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignHIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2h-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignH.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignHIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignHIkonProvider implements IkonProvider<MaterialDesignH> {\n    @Override\n    public Class<MaterialDesignH> getIkon() {\n        return MaterialDesignH.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignI.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignI implements Ikon {\n    ICE_CREAM(\"mdi2i-ice-cream\", \"F082A\"),\n    ICE_CREAM_OFF(\"mdi2i-ice-cream-off\", \"F0E52\"),\n    ICE_POP(\"mdi2i-ice-pop\", \"F0EFD\"),\n    ID_CARD(\"mdi2i-id-card\", \"F0FC0\"),\n    IDENTIFIER(\"mdi2i-identifier\", \"F0EFE\"),\n    IDEOGRAM_CJK(\"mdi2i-ideogram-cjk\", \"F1331\"),\n    IDEOGRAM_CJK_VARIANT(\"mdi2i-ideogram-cjk-variant\", \"F1332\"),\n    IMAGE(\"mdi2i-image\", \"F02E9\"),\n    IMAGE_ALBUM(\"mdi2i-image-album\", \"F02EA\"),\n    IMAGE_AREA(\"mdi2i-image-area\", \"F02EB\"),\n    IMAGE_AREA_CLOSE(\"mdi2i-image-area-close\", \"F02EC\"),\n    IMAGE_AUTO_ADJUST(\"mdi2i-image-auto-adjust\", \"F0FC1\"),\n    IMAGE_BROKEN(\"mdi2i-image-broken\", \"F02ED\"),\n    IMAGE_BROKEN_VARIANT(\"mdi2i-image-broken-variant\", \"F02EE\"),\n    IMAGE_CHECK(\"mdi2i-image-check\", \"F1B25\"),\n    IMAGE_CHECK_OUTLINE(\"mdi2i-image-check-outline\", \"F1B26\"),\n    IMAGE_EDIT(\"mdi2i-image-edit\", \"F11E3\"),\n    IMAGE_EDIT_OUTLINE(\"mdi2i-image-edit-outline\", \"F11E4\"),\n    IMAGE_FILTER_BLACK_WHITE(\"mdi2i-image-filter-black-white\", \"F02F0\"),\n    IMAGE_FILTER_CENTER_FOCUS(\"mdi2i-image-filter-center-focus\", \"F02F1\"),\n    IMAGE_FILTER_CENTER_FOCUS_STRONG(\"mdi2i-image-filter-center-focus-strong\", \"F0EFF\"),\n    IMAGE_FILTER_CENTER_FOCUS_STRONG_OUTLINE(\"mdi2i-image-filter-center-focus-strong-outline\", \"F0F00\"),\n    IMAGE_FILTER_CENTER_FOCUS_WEAK(\"mdi2i-image-filter-center-focus-weak\", \"F02F2\"),\n    IMAGE_FILTER_DRAMA(\"mdi2i-image-filter-drama\", \"F02F3\"),\n    IMAGE_FILTER_DRAMA_OUTLINE(\"mdi2i-image-filter-drama-outline\", \"F1BFF\"),\n    IMAGE_FILTER_FRAMES(\"mdi2i-image-filter-frames\", \"F02F4\"),\n    IMAGE_FILTER_HDR(\"mdi2i-image-filter-hdr\", \"F02F5\"),\n    IMAGE_FILTER_HDR_OUTLINE(\"mdi2i-image-filter-hdr-outline\", \"F1C64\"),\n    IMAGE_FILTER_NONE(\"mdi2i-image-filter-none\", \"F02F6\"),\n    IMAGE_FILTER_TILT_SHIFT(\"mdi2i-image-filter-tilt-shift\", \"F02F7\"),\n    IMAGE_FILTER_VINTAGE(\"mdi2i-image-filter-vintage\", \"F02F8\"),\n    IMAGE_FRAME(\"mdi2i-image-frame\", \"F0E49\"),\n    IMAGE_LOCK(\"mdi2i-image-lock\", \"F1AB0\"),\n    IMAGE_LOCK_OUTLINE(\"mdi2i-image-lock-outline\", \"F1AB1\"),\n    IMAGE_MARKER(\"mdi2i-image-marker\", \"F177B\"),\n    IMAGE_MARKER_OUTLINE(\"mdi2i-image-marker-outline\", \"F177C\"),\n    IMAGE_MINUS(\"mdi2i-image-minus\", \"F1419\"),\n    IMAGE_MINUS_OUTLINE(\"mdi2i-image-minus-outline\", \"F1B47\"),\n    IMAGE_MOVE(\"mdi2i-image-move\", \"F09F8\"),\n    IMAGE_MULTIPLE(\"mdi2i-image-multiple\", \"F02F9\"),\n    IMAGE_MULTIPLE_OUTLINE(\"mdi2i-image-multiple-outline\", \"F02EF\"),\n    IMAGE_OFF(\"mdi2i-image-off\", \"F082B\"),\n    IMAGE_OFF_OUTLINE(\"mdi2i-image-off-outline\", \"F11D1\"),\n    IMAGE_OUTLINE(\"mdi2i-image-outline\", \"F0976\"),\n    IMAGE_PLUS(\"mdi2i-image-plus\", \"F087C\"),\n    IMAGE_PLUS_OUTLINE(\"mdi2i-image-plus-outline\", \"F1B46\"),\n    IMAGE_REFRESH(\"mdi2i-image-refresh\", \"F19FE\"),\n    IMAGE_REFRESH_OUTLINE(\"mdi2i-image-refresh-outline\", \"F19FF\"),\n    IMAGE_REMOVE(\"mdi2i-image-remove\", \"F1418\"),\n    IMAGE_REMOVE_OUTLINE(\"mdi2i-image-remove-outline\", \"F1B48\"),\n    IMAGE_SEARCH(\"mdi2i-image-search\", \"F0977\"),\n    IMAGE_SEARCH_OUTLINE(\"mdi2i-image-search-outline\", \"F0978\"),\n    IMAGE_SIZE_SELECT_ACTUAL(\"mdi2i-image-size-select-actual\", \"F0C8D\"),\n    IMAGE_SIZE_SELECT_LARGE(\"mdi2i-image-size-select-large\", \"F0C8E\"),\n    IMAGE_SIZE_SELECT_SMALL(\"mdi2i-image-size-select-small\", \"F0C8F\"),\n    IMAGE_SYNC(\"mdi2i-image-sync\", \"F1A00\"),\n    IMAGE_SYNC_OUTLINE(\"mdi2i-image-sync-outline\", \"F1A01\"),\n    IMAGE_TEXT(\"mdi2i-image-text\", \"F160D\"),\n    IMPORT(\"mdi2i-import\", \"F02FA\"),\n    INBOX(\"mdi2i-inbox\", \"F0687\"),\n    INBOX_ARROW_DOWN(\"mdi2i-inbox-arrow-down\", \"F02FB\"),\n    INBOX_ARROW_DOWN_OUTLINE(\"mdi2i-inbox-arrow-down-outline\", \"F1270\"),\n    INBOX_ARROW_UP(\"mdi2i-inbox-arrow-up\", \"F03D1\"),\n    INBOX_ARROW_UP_OUTLINE(\"mdi2i-inbox-arrow-up-outline\", \"F1271\"),\n    INBOX_FULL(\"mdi2i-inbox-full\", \"F1272\"),\n    INBOX_FULL_OUTLINE(\"mdi2i-inbox-full-outline\", \"F1273\"),\n    INBOX_MULTIPLE(\"mdi2i-inbox-multiple\", \"F08B0\"),\n    INBOX_MULTIPLE_OUTLINE(\"mdi2i-inbox-multiple-outline\", \"F0BA8\"),\n    INBOX_OUTLINE(\"mdi2i-inbox-outline\", \"F1274\"),\n    INBOX_REMOVE(\"mdi2i-inbox-remove\", \"F159F\"),\n    INBOX_REMOVE_OUTLINE(\"mdi2i-inbox-remove-outline\", \"F15A0\"),\n    INCOGNITO(\"mdi2i-incognito\", \"F05F9\"),\n    INCOGNITO_CIRCLE(\"mdi2i-incognito-circle\", \"F1421\"),\n    INCOGNITO_CIRCLE_OFF(\"mdi2i-incognito-circle-off\", \"F1422\"),\n    INCOGNITO_OFF(\"mdi2i-incognito-off\", \"F0075\"),\n    INDUCTION(\"mdi2i-induction\", \"F184C\"),\n    INFINITY(\"mdi2i-infinity\", \"F06E4\"),\n    INFORMATION(\"mdi2i-information\", \"F02FC\"),\n    INFORMATION_BOX(\"mdi2i-information-box\", \"F1C65\"),\n    INFORMATION_BOX_OUTLINE(\"mdi2i-information-box-outline\", \"F1C66\"),\n    INFORMATION_OFF(\"mdi2i-information-off\", \"F178C\"),\n    INFORMATION_OFF_OUTLINE(\"mdi2i-information-off-outline\", \"F178D\"),\n    INFORMATION_OUTLINE(\"mdi2i-information-outline\", \"F02FD\"),\n    INFORMATION_SLAB_BOX(\"mdi2i-information-slab-box\", \"F1C67\"),\n    INFORMATION_SLAB_BOX_OUTLINE(\"mdi2i-information-slab-box-outline\", \"F1C68\"),\n    INFORMATION_SLAB_CIRCLE(\"mdi2i-information-slab-circle\", \"F1C69\"),\n    INFORMATION_SLAB_CIRCLE_OUTLINE(\"mdi2i-information-slab-circle-outline\", \"F1C6A\"),\n    INFORMATION_SLAB_SYMBOL(\"mdi2i-information-slab-symbol\", \"F1C6B\"),\n    INFORMATION_SYMBOL(\"mdi2i-information-symbol\", \"F1C6C\"),\n    INFORMATION_VARIANT(\"mdi2i-information-variant\", \"F064E\"),\n    INFORMATION_VARIANT_BOX(\"mdi2i-information-variant-box\", \"F1C6D\"),\n    INFORMATION_VARIANT_BOX_OUTLINE(\"mdi2i-information-variant-box-outline\", \"F1C6E\"),\n    INFORMATION_VARIANT_CIRCLE(\"mdi2i-information-variant-circle\", \"F1C6F\"),\n    INFORMATION_VARIANT_CIRCLE_OUTLINE(\"mdi2i-information-variant-circle-outline\", \"F1C70\"),\n    INSTAGRAM(\"mdi2i-instagram\", \"F02FE\"),\n    INSTRUMENT_TRIANGLE(\"mdi2i-instrument-triangle\", \"F104E\"),\n    INTEGRATED_CIRCUIT_CHIP(\"mdi2i-integrated-circuit-chip\", \"F1913\"),\n    INVERT_COLORS(\"mdi2i-invert-colors\", \"F0301\"),\n    INVERT_COLORS_OFF(\"mdi2i-invert-colors-off\", \"F0E4A\"),\n    INVOICE(\"mdi2i-invoice\", \"F1CD2\"),\n    INVOICE_ARROW_LEFT(\"mdi2i-invoice-arrow-left\", \"F1CD3\"),\n    INVOICE_ARROW_LEFT_OUTLINE(\"mdi2i-invoice-arrow-left-outline\", \"F1CD4\"),\n    INVOICE_ARROW_RIGHT(\"mdi2i-invoice-arrow-right\", \"F1CD5\"),\n    INVOICE_ARROW_RIGHT_OUTLINE(\"mdi2i-invoice-arrow-right-outline\", \"F1CD6\"),\n    INVOICE_CHECK(\"mdi2i-invoice-check\", \"F1CD7\"),\n    INVOICE_CHECK_OUTLINE(\"mdi2i-invoice-check-outline\", \"F1CD8\"),\n    INVOICE_CLOCK(\"mdi2i-invoice-clock\", \"F1CD9\"),\n    INVOICE_CLOCK_OUTLINE(\"mdi2i-invoice-clock-outline\", \"F1CDA\"),\n    INVOICE_EDIT(\"mdi2i-invoice-edit\", \"F1CDB\"),\n    INVOICE_EDIT_OUTLINE(\"mdi2i-invoice-edit-outline\", \"F1CDC\"),\n    INVOICE_EXPORT_OUTLINE(\"mdi2i-invoice-export-outline\", \"F1CDD\"),\n    INVOICE_FAST(\"mdi2i-invoice-fast\", \"F1CDE\"),\n    INVOICE_FAST_OUTLINE(\"mdi2i-invoice-fast-outline\", \"F1CDF\"),\n    INVOICE_IMPORT(\"mdi2i-invoice-import\", \"F1CE0\"),\n    INVOICE_IMPORT_OUTLINE(\"mdi2i-invoice-import-outline\", \"F1CE1\"),\n    INVOICE_LIST(\"mdi2i-invoice-list\", \"F1CE2\"),\n    INVOICE_LIST_OUTLINE(\"mdi2i-invoice-list-outline\", \"F1CE3\"),\n    INVOICE_MINUS(\"mdi2i-invoice-minus\", \"F1CE4\"),\n    INVOICE_MINUS_OUTLINE(\"mdi2i-invoice-minus-outline\", \"F1CE5\"),\n    INVOICE_MULTIPLE(\"mdi2i-invoice-multiple\", \"F1CE6\"),\n    INVOICE_MULTIPLE_OUTLINE(\"mdi2i-invoice-multiple-outline\", \"F1CE7\"),\n    INVOICE_OUTLINE(\"mdi2i-invoice-outline\", \"F1CE8\"),\n    INVOICE_PLUS(\"mdi2i-invoice-plus\", \"F1CE9\"),\n    INVOICE_PLUS_OUTLINE(\"mdi2i-invoice-plus-outline\", \"F1CEA\"),\n    INVOICE_REMOVE(\"mdi2i-invoice-remove\", \"F1CEB\"),\n    INVOICE_REMOVE_OUTLINE(\"mdi2i-invoice-remove-outline\", \"F1CEC\"),\n    INVOICE_SEND(\"mdi2i-invoice-send\", \"F1CED\"),\n    INVOICE_SEND_OUTLINE(\"mdi2i-invoice-send-outline\", \"F1CEE\"),\n    INVOICE_TEXT(\"mdi2i-invoice-text\", \"F1CEF\"),\n    INVOICE_TEXT_ARROW_LEFT(\"mdi2i-invoice-text-arrow-left\", \"F1CF0\"),\n    INVOICE_TEXT_ARROW_LEFT_OUTLINE(\"mdi2i-invoice-text-arrow-left-outline\", \"F1CF1\"),\n    INVOICE_TEXT_ARROW_RIGHT(\"mdi2i-invoice-text-arrow-right\", \"F1CF2\"),\n    INVOICE_TEXT_ARROW_RIGHT_OUTLINE(\"mdi2i-invoice-text-arrow-right-outline\", \"F1CF3\"),\n    INVOICE_TEXT_CHECK(\"mdi2i-invoice-text-check\", \"F1CF4\"),\n    INVOICE_TEXT_CHECK_OUTLINE(\"mdi2i-invoice-text-check-outline\", \"F1CF5\"),\n    INVOICE_TEXT_CLOCK(\"mdi2i-invoice-text-clock\", \"F1CF6\"),\n    INVOICE_TEXT_CLOCK_OUTLINE(\"mdi2i-invoice-text-clock-outline\", \"F1CF7\"),\n    INVOICE_TEXT_EDIT(\"mdi2i-invoice-text-edit\", \"F1CF8\"),\n    INVOICE_TEXT_EDIT_OUTLINE(\"mdi2i-invoice-text-edit-outline\", \"F1CF9\"),\n    INVOICE_TEXT_FAST(\"mdi2i-invoice-text-fast\", \"F1CFA\"),\n    INVOICE_TEXT_FAST_OUTLINE(\"mdi2i-invoice-text-fast-outline\", \"F1CFB\"),\n    INVOICE_TEXT_MINUS(\"mdi2i-invoice-text-minus\", \"F1CFC\"),\n    INVOICE_TEXT_MINUS_OUTLINE(\"mdi2i-invoice-text-minus-outline\", \"F1CFD\"),\n    INVOICE_TEXT_MULTIPLE(\"mdi2i-invoice-text-multiple\", \"F1CFE\"),\n    INVOICE_TEXT_MULTIPLE_OUTLINE(\"mdi2i-invoice-text-multiple-outline\", \"F1CFF\"),\n    INVOICE_TEXT_OUTLINE(\"mdi2i-invoice-text-outline\", \"F1D00\"),\n    INVOICE_TEXT_PLUS(\"mdi2i-invoice-text-plus\", \"F1D01\"),\n    INVOICE_TEXT_PLUS_OUTLINE(\"mdi2i-invoice-text-plus-outline\", \"F1D02\"),\n    INVOICE_TEXT_REMOVE(\"mdi2i-invoice-text-remove\", \"F1D03\"),\n    INVOICE_TEXT_REMOVE_OUTLINE(\"mdi2i-invoice-text-remove-outline\", \"F1D04\"),\n    INVOICE_TEXT_SEND(\"mdi2i-invoice-text-send\", \"F1D05\"),\n    INVOICE_TEXT_SEND_OUTLINE(\"mdi2i-invoice-text-send-outline\", \"F1D06\"),\n    IOBROKER(\"mdi2i-iobroker\", \"F12E8\"),\n    IP(\"mdi2i-ip\", \"F0A5F\"),\n    IP_NETWORK(\"mdi2i-ip-network\", \"F0A60\"),\n    IP_NETWORK_OUTLINE(\"mdi2i-ip-network-outline\", \"F0C90\"),\n    IP_OUTLINE(\"mdi2i-ip-outline\", \"F1982\"),\n    IPOD(\"mdi2i-ipod\", \"F0C91\"),\n    IRON(\"mdi2i-iron\", \"F1824\"),\n    IRON_BOARD(\"mdi2i-iron-board\", \"F1838\"),\n    IRON_OUTLINE(\"mdi2i-iron-outline\", \"F1825\"),\n    ISLAND(\"mdi2i-island\", \"F104F\"),\n    ISLAND_VARIANT(\"mdi2i-island-variant\", \"F1CC6\"),\n    IV_BAG(\"mdi2i-iv-bag\", \"F10B9\");\n\n    public static MaterialDesignI findByDescription(String description) {\n        for (MaterialDesignI font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignI(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignIIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignIIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2i-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignI.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignIIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignIIkonProvider implements IkonProvider<MaterialDesignI> {\n    @Override\n    public Class<MaterialDesignI> getIkon() {\n        return MaterialDesignI.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignJ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignJ implements Ikon {\n    JABBER(\"mdi2j-jabber\", \"F0DD5\"),\n    JEEPNEY(\"mdi2j-jeepney\", \"F0302\"),\n    JELLYFISH(\"mdi2j-jellyfish\", \"F0F01\"),\n    JELLYFISH_OUTLINE(\"mdi2j-jellyfish-outline\", \"F0F02\"),\n    JIRA(\"mdi2j-jira\", \"F0303\"),\n    JQUERY(\"mdi2j-jquery\", \"F087D\"),\n    JSFIDDLE(\"mdi2j-jsfiddle\", \"F0304\"),\n    JUMP_ROPE(\"mdi2j-jump-rope\", \"F12FF\");\n\n    public static MaterialDesignJ findByDescription(String description) {\n        for (MaterialDesignJ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignJ(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignJIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignJIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2j-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignJ.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignJIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignJIkonProvider implements IkonProvider<MaterialDesignJ> {\n    @Override\n    public Class<MaterialDesignJ> getIkon() {\n        return MaterialDesignJ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignK.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignK implements Ikon {\n    KABADDI(\"mdi2k-kabaddi\", \"F0D87\"),\n    KANGAROO(\"mdi2k-kangaroo\", \"F1558\"),\n    KARATE(\"mdi2k-karate\", \"F082C\"),\n    KAYAKING(\"mdi2k-kayaking\", \"F08AF\"),\n    KEG(\"mdi2k-keg\", \"F0305\"),\n    KETTLE(\"mdi2k-kettle\", \"F05FA\"),\n    KETTLE_ALERT(\"mdi2k-kettle-alert\", \"F1317\"),\n    KETTLE_ALERT_OUTLINE(\"mdi2k-kettle-alert-outline\", \"F1318\"),\n    KETTLE_OFF(\"mdi2k-kettle-off\", \"F131B\"),\n    KETTLE_OFF_OUTLINE(\"mdi2k-kettle-off-outline\", \"F131C\"),\n    KETTLE_OUTLINE(\"mdi2k-kettle-outline\", \"F0F56\"),\n    KETTLE_POUR_OVER(\"mdi2k-kettle-pour-over\", \"F173C\"),\n    KETTLE_STEAM(\"mdi2k-kettle-steam\", \"F1319\"),\n    KETTLE_STEAM_OUTLINE(\"mdi2k-kettle-steam-outline\", \"F131A\"),\n    KETTLEBELL(\"mdi2k-kettlebell\", \"F1300\"),\n    KEY(\"mdi2k-key\", \"F0306\"),\n    KEY_ALERT(\"mdi2k-key-alert\", \"F1983\"),\n    KEY_ALERT_OUTLINE(\"mdi2k-key-alert-outline\", \"F1984\"),\n    KEY_ARROW_RIGHT(\"mdi2k-key-arrow-right\", \"F1312\"),\n    KEY_CHAIN(\"mdi2k-key-chain\", \"F1574\"),\n    KEY_CHAIN_VARIANT(\"mdi2k-key-chain-variant\", \"F1575\"),\n    KEY_CHANGE(\"mdi2k-key-change\", \"F0307\"),\n    KEY_LINK(\"mdi2k-key-link\", \"F119F\"),\n    KEY_MINUS(\"mdi2k-key-minus\", \"F0308\"),\n    KEY_OUTLINE(\"mdi2k-key-outline\", \"F0DD6\"),\n    KEY_PLUS(\"mdi2k-key-plus\", \"F0309\"),\n    KEY_REMOVE(\"mdi2k-key-remove\", \"F030A\"),\n    KEY_STAR(\"mdi2k-key-star\", \"F119E\"),\n    KEY_VARIANT(\"mdi2k-key-variant\", \"F030B\"),\n    KEY_WIRELESS(\"mdi2k-key-wireless\", \"F0FC2\"),\n    KEYBOARD(\"mdi2k-keyboard\", \"F030C\"),\n    KEYBOARD_BACKSPACE(\"mdi2k-keyboard-backspace\", \"F030D\"),\n    KEYBOARD_CAPS(\"mdi2k-keyboard-caps\", \"F030E\"),\n    KEYBOARD_CLOSE(\"mdi2k-keyboard-close\", \"F030F\"),\n    KEYBOARD_CLOSE_OUTLINE(\"mdi2k-keyboard-close-outline\", \"F1C00\"),\n    KEYBOARD_ESC(\"mdi2k-keyboard-esc\", \"F12B7\"),\n    KEYBOARD_F1(\"mdi2k-keyboard-f1\", \"F12AB\"),\n    KEYBOARD_F10(\"mdi2k-keyboard-f10\", \"F12B4\"),\n    KEYBOARD_F11(\"mdi2k-keyboard-f11\", \"F12B5\"),\n    KEYBOARD_F12(\"mdi2k-keyboard-f12\", \"F12B6\"),\n    KEYBOARD_F2(\"mdi2k-keyboard-f2\", \"F12AC\"),\n    KEYBOARD_F3(\"mdi2k-keyboard-f3\", \"F12AD\"),\n    KEYBOARD_F4(\"mdi2k-keyboard-f4\", \"F12AE\"),\n    KEYBOARD_F5(\"mdi2k-keyboard-f5\", \"F12AF\"),\n    KEYBOARD_F6(\"mdi2k-keyboard-f6\", \"F12B0\"),\n    KEYBOARD_F7(\"mdi2k-keyboard-f7\", \"F12B1\"),\n    KEYBOARD_F8(\"mdi2k-keyboard-f8\", \"F12B2\"),\n    KEYBOARD_F9(\"mdi2k-keyboard-f9\", \"F12B3\"),\n    KEYBOARD_OFF(\"mdi2k-keyboard-off\", \"F0310\"),\n    KEYBOARD_OFF_OUTLINE(\"mdi2k-keyboard-off-outline\", \"F0E4B\"),\n    KEYBOARD_OUTLINE(\"mdi2k-keyboard-outline\", \"F097B\"),\n    KEYBOARD_RETURN(\"mdi2k-keyboard-return\", \"F0311\"),\n    KEYBOARD_SETTINGS(\"mdi2k-keyboard-settings\", \"F09F9\"),\n    KEYBOARD_SETTINGS_OUTLINE(\"mdi2k-keyboard-settings-outline\", \"F09FA\"),\n    KEYBOARD_SPACE(\"mdi2k-keyboard-space\", \"F1050\"),\n    KEYBOARD_TAB(\"mdi2k-keyboard-tab\", \"F0312\"),\n    KEYBOARD_TAB_REVERSE(\"mdi2k-keyboard-tab-reverse\", \"F0325\"),\n    KEYBOARD_VARIANT(\"mdi2k-keyboard-variant\", \"F0313\"),\n    KHANDA(\"mdi2k-khanda\", \"F10FD\"),\n    KICKSTARTER(\"mdi2k-kickstarter\", \"F0745\"),\n    KITE(\"mdi2k-kite\", \"F1985\"),\n    KITE_OUTLINE(\"mdi2k-kite-outline\", \"F1986\"),\n    KITESURFING(\"mdi2k-kitesurfing\", \"F1744\"),\n    KLINGON(\"mdi2k-klingon\", \"F135B\"),\n    KNIFE(\"mdi2k-knife\", \"F09FB\"),\n    KNIFE_MILITARY(\"mdi2k-knife-military\", \"F09FC\"),\n    KNOB(\"mdi2k-knob\", \"F1B96\"),\n    KOALA(\"mdi2k-koala\", \"F173F\"),\n    KODI(\"mdi2k-kodi\", \"F0314\"),\n    KUBERNETES(\"mdi2k-kubernetes\", \"F10FE\");\n\n    public static MaterialDesignK findByDescription(String description) {\n        for (MaterialDesignK font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignK(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignKIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignKIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2k-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignK.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignKIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignKIkonProvider implements IkonProvider<MaterialDesignK> {\n    @Override\n    public Class<MaterialDesignK> getIkon() {\n        return MaterialDesignK.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignL implements Ikon {\n    LABEL(\"mdi2l-label\", \"F0315\"),\n    LABEL_MULTIPLE(\"mdi2l-label-multiple\", \"F1375\"),\n    LABEL_MULTIPLE_OUTLINE(\"mdi2l-label-multiple-outline\", \"F1376\"),\n    LABEL_OFF(\"mdi2l-label-off\", \"F0ACB\"),\n    LABEL_OFF_OUTLINE(\"mdi2l-label-off-outline\", \"F0ACC\"),\n    LABEL_OUTLINE(\"mdi2l-label-outline\", \"F0316\"),\n    LABEL_PERCENT(\"mdi2l-label-percent\", \"F12EA\"),\n    LABEL_PERCENT_OUTLINE(\"mdi2l-label-percent-outline\", \"F12EB\"),\n    LABEL_VARIANT(\"mdi2l-label-variant\", \"F0ACD\"),\n    LABEL_VARIANT_OUTLINE(\"mdi2l-label-variant-outline\", \"F0ACE\"),\n    LADDER(\"mdi2l-ladder\", \"F15A2\"),\n    LADYBUG(\"mdi2l-ladybug\", \"F082D\"),\n    LAMBDA(\"mdi2l-lambda\", \"F0627\"),\n    LAMP(\"mdi2l-lamp\", \"F06B5\"),\n    LAMP_OUTLINE(\"mdi2l-lamp-outline\", \"F17D0\"),\n    LAMPS(\"mdi2l-lamps\", \"F1576\"),\n    LAMPS_OUTLINE(\"mdi2l-lamps-outline\", \"F17D1\"),\n    LAN(\"mdi2l-lan\", \"F0317\"),\n    LAN_CHECK(\"mdi2l-lan-check\", \"F12AA\"),\n    LAN_CONNECT(\"mdi2l-lan-connect\", \"F0318\"),\n    LAN_DISCONNECT(\"mdi2l-lan-disconnect\", \"F0319\"),\n    LAN_PENDING(\"mdi2l-lan-pending\", \"F031A\"),\n    LAND_FIELDS(\"mdi2l-land-fields\", \"F1AB2\"),\n    LAND_PLOTS(\"mdi2l-land-plots\", \"F1AB3\"),\n    LAND_PLOTS_CIRCLE(\"mdi2l-land-plots-circle\", \"F1AB4\"),\n    LAND_PLOTS_CIRCLE_VARIANT(\"mdi2l-land-plots-circle-variant\", \"F1AB5\"),\n    LAND_PLOTS_MARKER(\"mdi2l-land-plots-marker\", \"F1C5D\"),\n    LAND_ROWS_HORIZONTAL(\"mdi2l-land-rows-horizontal\", \"F1AB6\"),\n    LAND_ROWS_VERTICAL(\"mdi2l-land-rows-vertical\", \"F1AB7\"),\n    LANDSLIDE(\"mdi2l-landslide\", \"F1A48\"),\n    LANDSLIDE_OUTLINE(\"mdi2l-landslide-outline\", \"F1A49\"),\n    LANGUAGE_C(\"mdi2l-language-c\", \"F0671\"),\n    LANGUAGE_CPP(\"mdi2l-language-cpp\", \"F0672\"),\n    LANGUAGE_CSHARP(\"mdi2l-language-csharp\", \"F031B\"),\n    LANGUAGE_CSS3(\"mdi2l-language-css3\", \"F031C\"),\n    LANGUAGE_FORTRAN(\"mdi2l-language-fortran\", \"F121A\"),\n    LANGUAGE_GO(\"mdi2l-language-go\", \"F07D3\"),\n    LANGUAGE_HASKELL(\"mdi2l-language-haskell\", \"F0C92\"),\n    LANGUAGE_HTML5(\"mdi2l-language-html5\", \"F031D\"),\n    LANGUAGE_JAVA(\"mdi2l-language-java\", \"F0B37\"),\n    LANGUAGE_JAVASCRIPT(\"mdi2l-language-javascript\", \"F031E\"),\n    LANGUAGE_KOTLIN(\"mdi2l-language-kotlin\", \"F1219\"),\n    LANGUAGE_LUA(\"mdi2l-language-lua\", \"F08B1\"),\n    LANGUAGE_MARKDOWN(\"mdi2l-language-markdown\", \"F0354\"),\n    LANGUAGE_MARKDOWN_OUTLINE(\"mdi2l-language-markdown-outline\", \"F0F5B\"),\n    LANGUAGE_PHP(\"mdi2l-language-php\", \"F031F\"),\n    LANGUAGE_PYTHON(\"mdi2l-language-python\", \"F0320\"),\n    LANGUAGE_R(\"mdi2l-language-r\", \"F07D4\"),\n    LANGUAGE_RUBY(\"mdi2l-language-ruby\", \"F0D2D\"),\n    LANGUAGE_RUBY_ON_RAILS(\"mdi2l-language-ruby-on-rails\", \"F0ACF\"),\n    LANGUAGE_RUST(\"mdi2l-language-rust\", \"F1617\"),\n    LANGUAGE_SWIFT(\"mdi2l-language-swift\", \"F06E5\"),\n    LANGUAGE_TYPESCRIPT(\"mdi2l-language-typescript\", \"F06E6\"),\n    LANGUAGE_XAML(\"mdi2l-language-xaml\", \"F0673\"),\n    LAPTOP(\"mdi2l-laptop\", \"F0322\"),\n    LAPTOP_ACCOUNT(\"mdi2l-laptop-account\", \"F1A4A\"),\n    LAPTOP_OFF(\"mdi2l-laptop-off\", \"F06E7\"),\n    LARAVEL(\"mdi2l-laravel\", \"F0AD0\"),\n    LASER_POINTER(\"mdi2l-laser-pointer\", \"F1484\"),\n    LASSO(\"mdi2l-lasso\", \"F0F03\"),\n    LASTPASS(\"mdi2l-lastpass\", \"F0446\"),\n    LATITUDE(\"mdi2l-latitude\", \"F0F57\"),\n    LAUNCH(\"mdi2l-launch\", \"F0327\"),\n    LAVA_LAMP(\"mdi2l-lava-lamp\", \"F07D5\"),\n    LAYERS(\"mdi2l-layers\", \"F0328\"),\n    LAYERS_EDIT(\"mdi2l-layers-edit\", \"F1892\"),\n    LAYERS_MINUS(\"mdi2l-layers-minus\", \"F0E4C\"),\n    LAYERS_OFF(\"mdi2l-layers-off\", \"F0329\"),\n    LAYERS_OFF_OUTLINE(\"mdi2l-layers-off-outline\", \"F09FD\"),\n    LAYERS_OUTLINE(\"mdi2l-layers-outline\", \"F09FE\"),\n    LAYERS_PLUS(\"mdi2l-layers-plus\", \"F0E4D\"),\n    LAYERS_REMOVE(\"mdi2l-layers-remove\", \"F0E4E\"),\n    LAYERS_SEARCH(\"mdi2l-layers-search\", \"F1206\"),\n    LAYERS_SEARCH_OUTLINE(\"mdi2l-layers-search-outline\", \"F1207\"),\n    LAYERS_TRIPLE(\"mdi2l-layers-triple\", \"F0F58\"),\n    LAYERS_TRIPLE_OUTLINE(\"mdi2l-layers-triple-outline\", \"F0F59\"),\n    LEAD_PENCIL(\"mdi2l-lead-pencil\", \"F064F\"),\n    LEAF(\"mdi2l-leaf\", \"F032A\"),\n    LEAF_CIRCLE(\"mdi2l-leaf-circle\", \"F1905\"),\n    LEAF_CIRCLE_OUTLINE(\"mdi2l-leaf-circle-outline\", \"F1906\"),\n    LEAF_MAPLE(\"mdi2l-leaf-maple\", \"F0C93\"),\n    LEAF_MAPLE_OFF(\"mdi2l-leaf-maple-off\", \"F12DA\"),\n    LEAF_OFF(\"mdi2l-leaf-off\", \"F12D9\"),\n    LEAK(\"mdi2l-leak\", \"F0DD7\"),\n    LEAK_OFF(\"mdi2l-leak-off\", \"F0DD8\"),\n    LECTERN(\"mdi2l-lectern\", \"F1AF0\"),\n    LED_OFF(\"mdi2l-led-off\", \"F032B\"),\n    LED_ON(\"mdi2l-led-on\", \"F032C\"),\n    LED_OUTLINE(\"mdi2l-led-outline\", \"F032D\"),\n    LED_STRIP(\"mdi2l-led-strip\", \"F07D6\"),\n    LED_STRIP_VARIANT(\"mdi2l-led-strip-variant\", \"F1051\"),\n    LED_STRIP_VARIANT_OFF(\"mdi2l-led-strip-variant-off\", \"F1A4B\"),\n    LED_VARIANT_OFF(\"mdi2l-led-variant-off\", \"F032E\"),\n    LED_VARIANT_ON(\"mdi2l-led-variant-on\", \"F032F\"),\n    LED_VARIANT_OUTLINE(\"mdi2l-led-variant-outline\", \"F0330\"),\n    LEEK(\"mdi2l-leek\", \"F117D\"),\n    LESS_THAN(\"mdi2l-less-than\", \"F097C\"),\n    LESS_THAN_OR_EQUAL(\"mdi2l-less-than-or-equal\", \"F097D\"),\n    LIBRARY(\"mdi2l-library\", \"F0331\"),\n    LIBRARY_OUTLINE(\"mdi2l-library-outline\", \"F1A22\"),\n    LIBRARY_SHELVES(\"mdi2l-library-shelves\", \"F0BA9\"),\n    LICENSE(\"mdi2l-license\", \"F0FC3\"),\n    LIFEBUOY(\"mdi2l-lifebuoy\", \"F087E\"),\n    LIGHT_FLOOD_DOWN(\"mdi2l-light-flood-down\", \"F1987\"),\n    LIGHT_FLOOD_UP(\"mdi2l-light-flood-up\", \"F1988\"),\n    LIGHT_RECESSED(\"mdi2l-light-recessed\", \"F179B\"),\n    LIGHT_SWITCH(\"mdi2l-light-switch\", \"F097E\"),\n    LIGHT_SWITCH_OFF(\"mdi2l-light-switch-off\", \"F1A24\"),\n    LIGHTBULB(\"mdi2l-lightbulb\", \"F0335\"),\n    LIGHTBULB_ALERT(\"mdi2l-lightbulb-alert\", \"F19E1\"),\n    LIGHTBULB_ALERT_OUTLINE(\"mdi2l-lightbulb-alert-outline\", \"F19E2\"),\n    LIGHTBULB_AUTO(\"mdi2l-lightbulb-auto\", \"F1800\"),\n    LIGHTBULB_AUTO_OUTLINE(\"mdi2l-lightbulb-auto-outline\", \"F1801\"),\n    LIGHTBULB_CFL(\"mdi2l-lightbulb-cfl\", \"F1208\"),\n    LIGHTBULB_CFL_OFF(\"mdi2l-lightbulb-cfl-off\", \"F1209\"),\n    LIGHTBULB_CFL_SPIRAL(\"mdi2l-lightbulb-cfl-spiral\", \"F1275\"),\n    LIGHTBULB_CFL_SPIRAL_OFF(\"mdi2l-lightbulb-cfl-spiral-off\", \"F12C3\"),\n    LIGHTBULB_FLUORESCENT_TUBE(\"mdi2l-lightbulb-fluorescent-tube\", \"F1804\"),\n    LIGHTBULB_FLUORESCENT_TUBE_OUTLINE(\"mdi2l-lightbulb-fluorescent-tube-outline\", \"F1805\"),\n    LIGHTBULB_GROUP(\"mdi2l-lightbulb-group\", \"F1253\"),\n    LIGHTBULB_GROUP_OFF(\"mdi2l-lightbulb-group-off\", \"F12CD\"),\n    LIGHTBULB_GROUP_OFF_OUTLINE(\"mdi2l-lightbulb-group-off-outline\", \"F12CE\"),\n    LIGHTBULB_GROUP_OUTLINE(\"mdi2l-lightbulb-group-outline\", \"F1254\"),\n    LIGHTBULB_MULTIPLE(\"mdi2l-lightbulb-multiple\", \"F1255\"),\n    LIGHTBULB_MULTIPLE_OFF(\"mdi2l-lightbulb-multiple-off\", \"F12CF\"),\n    LIGHTBULB_MULTIPLE_OFF_OUTLINE(\"mdi2l-lightbulb-multiple-off-outline\", \"F12D0\"),\n    LIGHTBULB_MULTIPLE_OUTLINE(\"mdi2l-lightbulb-multiple-outline\", \"F1256\"),\n    LIGHTBULB_NIGHT(\"mdi2l-lightbulb-night\", \"F1A4C\"),\n    LIGHTBULB_NIGHT_OUTLINE(\"mdi2l-lightbulb-night-outline\", \"F1A4D\"),\n    LIGHTBULB_OFF(\"mdi2l-lightbulb-off\", \"F0E4F\"),\n    LIGHTBULB_OFF_OUTLINE(\"mdi2l-lightbulb-off-outline\", \"F0E50\"),\n    LIGHTBULB_ON(\"mdi2l-lightbulb-on\", \"F06E8\"),\n    LIGHTBULB_ON_10(\"mdi2l-lightbulb-on-10\", \"F1A4E\"),\n    LIGHTBULB_ON_20(\"mdi2l-lightbulb-on-20\", \"F1A4F\"),\n    LIGHTBULB_ON_30(\"mdi2l-lightbulb-on-30\", \"F1A50\"),\n    LIGHTBULB_ON_40(\"mdi2l-lightbulb-on-40\", \"F1A51\"),\n    LIGHTBULB_ON_50(\"mdi2l-lightbulb-on-50\", \"F1A52\"),\n    LIGHTBULB_ON_60(\"mdi2l-lightbulb-on-60\", \"F1A53\"),\n    LIGHTBULB_ON_70(\"mdi2l-lightbulb-on-70\", \"F1A54\"),\n    LIGHTBULB_ON_80(\"mdi2l-lightbulb-on-80\", \"F1A55\"),\n    LIGHTBULB_ON_90(\"mdi2l-lightbulb-on-90\", \"F1A56\"),\n    LIGHTBULB_ON_OUTLINE(\"mdi2l-lightbulb-on-outline\", \"F06E9\"),\n    LIGHTBULB_OUTLINE(\"mdi2l-lightbulb-outline\", \"F0336\"),\n    LIGHTBULB_QUESTION(\"mdi2l-lightbulb-question\", \"F19E3\"),\n    LIGHTBULB_QUESTION_OUTLINE(\"mdi2l-lightbulb-question-outline\", \"F19E4\"),\n    LIGHTBULB_SPOT(\"mdi2l-lightbulb-spot\", \"F17F4\"),\n    LIGHTBULB_SPOT_OFF(\"mdi2l-lightbulb-spot-off\", \"F17F5\"),\n    LIGHTBULB_VARIANT(\"mdi2l-lightbulb-variant\", \"F1802\"),\n    LIGHTBULB_VARIANT_OUTLINE(\"mdi2l-lightbulb-variant-outline\", \"F1803\"),\n    LIGHTHOUSE(\"mdi2l-lighthouse\", \"F09FF\"),\n    LIGHTHOUSE_ON(\"mdi2l-lighthouse-on\", \"F0A00\"),\n    LIGHTNING_BOLT(\"mdi2l-lightning-bolt\", \"F140B\"),\n    LIGHTNING_BOLT_CIRCLE(\"mdi2l-lightning-bolt-circle\", \"F0820\"),\n    LIGHTNING_BOLT_OUTLINE(\"mdi2l-lightning-bolt-outline\", \"F140C\"),\n    LINE_SCAN(\"mdi2l-line-scan\", \"F0624\"),\n    LINGERIE(\"mdi2l-lingerie\", \"F1476\"),\n    LINK(\"mdi2l-link\", \"F0337\"),\n    LINK_BOX(\"mdi2l-link-box\", \"F0D1A\"),\n    LINK_BOX_OUTLINE(\"mdi2l-link-box-outline\", \"F0D1B\"),\n    LINK_BOX_VARIANT(\"mdi2l-link-box-variant\", \"F0D1C\"),\n    LINK_BOX_VARIANT_OUTLINE(\"mdi2l-link-box-variant-outline\", \"F0D1D\"),\n    LINK_CIRCLE(\"mdi2l-link-circle\", \"F1CAC\"),\n    LINK_CIRCLE_OUTLINE(\"mdi2l-link-circle-outline\", \"F1CAD\"),\n    LINK_EDIT(\"mdi2l-link-edit\", \"F1CAE\"),\n    LINK_LOCK(\"mdi2l-link-lock\", \"F10BA\"),\n    LINK_OFF(\"mdi2l-link-off\", \"F0338\"),\n    LINK_PLUS(\"mdi2l-link-plus\", \"F0C94\"),\n    LINK_VARIANT(\"mdi2l-link-variant\", \"F0339\"),\n    LINK_VARIANT_MINUS(\"mdi2l-link-variant-minus\", \"F10FF\"),\n    LINK_VARIANT_OFF(\"mdi2l-link-variant-off\", \"F033A\"),\n    LINK_VARIANT_PLUS(\"mdi2l-link-variant-plus\", \"F1100\"),\n    LINK_VARIANT_REMOVE(\"mdi2l-link-variant-remove\", \"F1101\"),\n    LINKEDIN(\"mdi2l-linkedin\", \"F033B\"),\n    LINUX(\"mdi2l-linux\", \"F033D\"),\n    LINUX_MINT(\"mdi2l-linux-mint\", \"F08ED\"),\n    LIPSTICK(\"mdi2l-lipstick\", \"F13B5\"),\n    LIQUID_SPOT(\"mdi2l-liquid-spot\", \"F1826\"),\n    LIQUOR(\"mdi2l-liquor\", \"F191E\"),\n    LIST_BOX(\"mdi2l-list-box\", \"F1B7B\"),\n    LIST_BOX_OUTLINE(\"mdi2l-list-box-outline\", \"F1B7C\"),\n    LIST_STATUS(\"mdi2l-list-status\", \"F15AB\"),\n    LITECOIN(\"mdi2l-litecoin\", \"F0A61\"),\n    LOADING(\"mdi2l-loading\", \"F0772\"),\n    LOCATION_ENTER(\"mdi2l-location-enter\", \"F0FC4\"),\n    LOCATION_EXIT(\"mdi2l-location-exit\", \"F0FC5\"),\n    LOCK(\"mdi2l-lock\", \"F033E\"),\n    LOCK_ALERT(\"mdi2l-lock-alert\", \"F08EE\"),\n    LOCK_ALERT_OUTLINE(\"mdi2l-lock-alert-outline\", \"F15D1\"),\n    LOCK_CHECK(\"mdi2l-lock-check\", \"F139A\"),\n    LOCK_CHECK_OUTLINE(\"mdi2l-lock-check-outline\", \"F16A8\"),\n    LOCK_CLOCK(\"mdi2l-lock-clock\", \"F097F\"),\n    LOCK_MINUS(\"mdi2l-lock-minus\", \"F16A9\"),\n    LOCK_MINUS_OUTLINE(\"mdi2l-lock-minus-outline\", \"F16AA\"),\n    LOCK_OFF(\"mdi2l-lock-off\", \"F1671\"),\n    LOCK_OFF_OUTLINE(\"mdi2l-lock-off-outline\", \"F1672\"),\n    LOCK_OPEN(\"mdi2l-lock-open\", \"F033F\"),\n    LOCK_OPEN_ALERT(\"mdi2l-lock-open-alert\", \"F139B\"),\n    LOCK_OPEN_ALERT_OUTLINE(\"mdi2l-lock-open-alert-outline\", \"F15D2\"),\n    LOCK_OPEN_CHECK(\"mdi2l-lock-open-check\", \"F139C\"),\n    LOCK_OPEN_CHECK_OUTLINE(\"mdi2l-lock-open-check-outline\", \"F16AB\"),\n    LOCK_OPEN_MINUS(\"mdi2l-lock-open-minus\", \"F16AC\"),\n    LOCK_OPEN_MINUS_OUTLINE(\"mdi2l-lock-open-minus-outline\", \"F16AD\"),\n    LOCK_OPEN_OUTLINE(\"mdi2l-lock-open-outline\", \"F0340\"),\n    LOCK_OPEN_PLUS(\"mdi2l-lock-open-plus\", \"F16AE\"),\n    LOCK_OPEN_PLUS_OUTLINE(\"mdi2l-lock-open-plus-outline\", \"F16AF\"),\n    LOCK_OPEN_REMOVE(\"mdi2l-lock-open-remove\", \"F16B0\"),\n    LOCK_OPEN_REMOVE_OUTLINE(\"mdi2l-lock-open-remove-outline\", \"F16B1\"),\n    LOCK_OPEN_VARIANT(\"mdi2l-lock-open-variant\", \"F0FC6\"),\n    LOCK_OPEN_VARIANT_OUTLINE(\"mdi2l-lock-open-variant-outline\", \"F0FC7\"),\n    LOCK_OUTLINE(\"mdi2l-lock-outline\", \"F0341\"),\n    LOCK_PATTERN(\"mdi2l-lock-pattern\", \"F06EA\"),\n    LOCK_PERCENT(\"mdi2l-lock-percent\", \"F1C12\"),\n    LOCK_PERCENT_OPEN(\"mdi2l-lock-percent-open\", \"F1C13\"),\n    LOCK_PERCENT_OPEN_OUTLINE(\"mdi2l-lock-percent-open-outline\", \"F1C14\"),\n    LOCK_PERCENT_OPEN_VARIANT(\"mdi2l-lock-percent-open-variant\", \"F1C15\"),\n    LOCK_PERCENT_OPEN_VARIANT_OUTLINE(\"mdi2l-lock-percent-open-variant-outline\", \"F1C16\"),\n    LOCK_PERCENT_OUTLINE(\"mdi2l-lock-percent-outline\", \"F1C17\"),\n    LOCK_PLUS(\"mdi2l-lock-plus\", \"F05FB\"),\n    LOCK_PLUS_OUTLINE(\"mdi2l-lock-plus-outline\", \"F16B2\"),\n    LOCK_QUESTION(\"mdi2l-lock-question\", \"F08EF\"),\n    LOCK_REMOVE(\"mdi2l-lock-remove\", \"F16B3\"),\n    LOCK_REMOVE_OUTLINE(\"mdi2l-lock-remove-outline\", \"F16B4\"),\n    LOCK_RESET(\"mdi2l-lock-reset\", \"F0773\"),\n    LOCK_SMART(\"mdi2l-lock-smart\", \"F08B2\"),\n    LOCKER(\"mdi2l-locker\", \"F07D7\"),\n    LOCKER_MULTIPLE(\"mdi2l-locker-multiple\", \"F07D8\"),\n    LOGIN(\"mdi2l-login\", \"F0342\"),\n    LOGIN_VARIANT(\"mdi2l-login-variant\", \"F05FC\"),\n    LOGOUT(\"mdi2l-logout\", \"F0343\"),\n    LOGOUT_VARIANT(\"mdi2l-logout-variant\", \"F05FD\"),\n    LONGITUDE(\"mdi2l-longitude\", \"F0F5A\"),\n    LOOKS(\"mdi2l-looks\", \"F0344\"),\n    LOTION(\"mdi2l-lotion\", \"F1582\"),\n    LOTION_OUTLINE(\"mdi2l-lotion-outline\", \"F1583\"),\n    LOTION_PLUS(\"mdi2l-lotion-plus\", \"F1584\"),\n    LOTION_PLUS_OUTLINE(\"mdi2l-lotion-plus-outline\", \"F1585\"),\n    LOUPE(\"mdi2l-loupe\", \"F0345\"),\n    LUMX(\"mdi2l-lumx\", \"F0346\"),\n    LUNGS(\"mdi2l-lungs\", \"F1084\");\n\n    public static MaterialDesignL findByDescription(String description) {\n        for (MaterialDesignL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignL(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignLIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignLIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2l-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignL.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignLIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignLIkonProvider implements IkonProvider<MaterialDesignL> {\n    @Override\n    public Class<MaterialDesignL> getIkon() {\n        return MaterialDesignL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignM.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignM implements Ikon {\n    MACE(\"mdi2m-mace\", \"F1843\"),\n    MAGAZINE_PISTOL(\"mdi2m-magazine-pistol\", \"F0324\"),\n    MAGAZINE_RIFLE(\"mdi2m-magazine-rifle\", \"F0323\"),\n    MAGIC_STAFF(\"mdi2m-magic-staff\", \"F1844\"),\n    MAGNET(\"mdi2m-magnet\", \"F0347\"),\n    MAGNET_ON(\"mdi2m-magnet-on\", \"F0348\"),\n    MAGNIFY(\"mdi2m-magnify\", \"F0349\"),\n    MAGNIFY_CLOSE(\"mdi2m-magnify-close\", \"F0980\"),\n    MAGNIFY_EXPAND(\"mdi2m-magnify-expand\", \"F1874\"),\n    MAGNIFY_MINUS(\"mdi2m-magnify-minus\", \"F034A\"),\n    MAGNIFY_MINUS_CURSOR(\"mdi2m-magnify-minus-cursor\", \"F0A62\"),\n    MAGNIFY_MINUS_OUTLINE(\"mdi2m-magnify-minus-outline\", \"F06EC\"),\n    MAGNIFY_PLUS(\"mdi2m-magnify-plus\", \"F034B\"),\n    MAGNIFY_PLUS_CURSOR(\"mdi2m-magnify-plus-cursor\", \"F0A63\"),\n    MAGNIFY_PLUS_OUTLINE(\"mdi2m-magnify-plus-outline\", \"F06ED\"),\n    MAGNIFY_REMOVE_CURSOR(\"mdi2m-magnify-remove-cursor\", \"F120C\"),\n    MAGNIFY_REMOVE_OUTLINE(\"mdi2m-magnify-remove-outline\", \"F120D\"),\n    MAGNIFY_SCAN(\"mdi2m-magnify-scan\", \"F1276\"),\n    MAIL(\"mdi2m-mail\", \"F0EBB\"),\n    MAILBOX(\"mdi2m-mailbox\", \"F06EE\"),\n    MAILBOX_OPEN(\"mdi2m-mailbox-open\", \"F0D88\"),\n    MAILBOX_OPEN_OUTLINE(\"mdi2m-mailbox-open-outline\", \"F0D89\"),\n    MAILBOX_OPEN_UP(\"mdi2m-mailbox-open-up\", \"F0D8A\"),\n    MAILBOX_OPEN_UP_OUTLINE(\"mdi2m-mailbox-open-up-outline\", \"F0D8B\"),\n    MAILBOX_OUTLINE(\"mdi2m-mailbox-outline\", \"F0D8C\"),\n    MAILBOX_UP(\"mdi2m-mailbox-up\", \"F0D8D\"),\n    MAILBOX_UP_OUTLINE(\"mdi2m-mailbox-up-outline\", \"F0D8E\"),\n    MANJARO(\"mdi2m-manjaro\", \"F160A\"),\n    MAP(\"mdi2m-map\", \"F034D\"),\n    MAP_CHECK(\"mdi2m-map-check\", \"F0EBC\"),\n    MAP_CHECK_OUTLINE(\"mdi2m-map-check-outline\", \"F0EBD\"),\n    MAP_CLOCK(\"mdi2m-map-clock\", \"F0D1E\"),\n    MAP_CLOCK_OUTLINE(\"mdi2m-map-clock-outline\", \"F0D1F\"),\n    MAP_LEGEND(\"mdi2m-map-legend\", \"F0A01\"),\n    MAP_MARKER(\"mdi2m-map-marker\", \"F034E\"),\n    MAP_MARKER_ACCOUNT(\"mdi2m-map-marker-account\", \"F18E3\"),\n    MAP_MARKER_ACCOUNT_OUTLINE(\"mdi2m-map-marker-account-outline\", \"F18E4\"),\n    MAP_MARKER_ALERT(\"mdi2m-map-marker-alert\", \"F0F05\"),\n    MAP_MARKER_ALERT_OUTLINE(\"mdi2m-map-marker-alert-outline\", \"F0F06\"),\n    MAP_MARKER_CHECK(\"mdi2m-map-marker-check\", \"F0C95\"),\n    MAP_MARKER_CHECK_OUTLINE(\"mdi2m-map-marker-check-outline\", \"F12FB\"),\n    MAP_MARKER_CIRCLE(\"mdi2m-map-marker-circle\", \"F034F\"),\n    MAP_MARKER_DISTANCE(\"mdi2m-map-marker-distance\", \"F08F0\"),\n    MAP_MARKER_DOWN(\"mdi2m-map-marker-down\", \"F1102\"),\n    MAP_MARKER_LEFT(\"mdi2m-map-marker-left\", \"F12DB\"),\n    MAP_MARKER_LEFT_OUTLINE(\"mdi2m-map-marker-left-outline\", \"F12DD\"),\n    MAP_MARKER_MINUS(\"mdi2m-map-marker-minus\", \"F0650\"),\n    MAP_MARKER_MINUS_OUTLINE(\"mdi2m-map-marker-minus-outline\", \"F12F9\"),\n    MAP_MARKER_MULTIPLE(\"mdi2m-map-marker-multiple\", \"F0350\"),\n    MAP_MARKER_MULTIPLE_OUTLINE(\"mdi2m-map-marker-multiple-outline\", \"F1277\"),\n    MAP_MARKER_OFF(\"mdi2m-map-marker-off\", \"F0351\"),\n    MAP_MARKER_OFF_OUTLINE(\"mdi2m-map-marker-off-outline\", \"F12FD\"),\n    MAP_MARKER_OUTLINE(\"mdi2m-map-marker-outline\", \"F07D9\"),\n    MAP_MARKER_PATH(\"mdi2m-map-marker-path\", \"F0D20\"),\n    MAP_MARKER_PLUS(\"mdi2m-map-marker-plus\", \"F0651\"),\n    MAP_MARKER_PLUS_OUTLINE(\"mdi2m-map-marker-plus-outline\", \"F12F8\"),\n    MAP_MARKER_QUESTION(\"mdi2m-map-marker-question\", \"F0F07\"),\n    MAP_MARKER_QUESTION_OUTLINE(\"mdi2m-map-marker-question-outline\", \"F0F08\"),\n    MAP_MARKER_RADIUS(\"mdi2m-map-marker-radius\", \"F0352\"),\n    MAP_MARKER_RADIUS_OUTLINE(\"mdi2m-map-marker-radius-outline\", \"F12FC\"),\n    MAP_MARKER_REMOVE(\"mdi2m-map-marker-remove\", \"F0F09\"),\n    MAP_MARKER_REMOVE_OUTLINE(\"mdi2m-map-marker-remove-outline\", \"F12FA\"),\n    MAP_MARKER_REMOVE_VARIANT(\"mdi2m-map-marker-remove-variant\", \"F0F0A\"),\n    MAP_MARKER_RIGHT(\"mdi2m-map-marker-right\", \"F12DC\"),\n    MAP_MARKER_RIGHT_OUTLINE(\"mdi2m-map-marker-right-outline\", \"F12DE\"),\n    MAP_MARKER_STAR(\"mdi2m-map-marker-star\", \"F1608\"),\n    MAP_MARKER_STAR_OUTLINE(\"mdi2m-map-marker-star-outline\", \"F1609\"),\n    MAP_MARKER_UP(\"mdi2m-map-marker-up\", \"F1103\"),\n    MAP_MINUS(\"mdi2m-map-minus\", \"F0981\"),\n    MAP_OUTLINE(\"mdi2m-map-outline\", \"F0982\"),\n    MAP_PLUS(\"mdi2m-map-plus\", \"F0983\"),\n    MAP_SEARCH(\"mdi2m-map-search\", \"F0984\"),\n    MAP_SEARCH_OUTLINE(\"mdi2m-map-search-outline\", \"F0985\"),\n    MAPBOX(\"mdi2m-mapbox\", \"F0BAA\"),\n    MARGIN(\"mdi2m-margin\", \"F0353\"),\n    MARKER(\"mdi2m-marker\", \"F0652\"),\n    MARKER_CANCEL(\"mdi2m-marker-cancel\", \"F0DD9\"),\n    MARKER_CHECK(\"mdi2m-marker-check\", \"F0355\"),\n    MASTODON(\"mdi2m-mastodon\", \"F0AD1\"),\n    MATERIAL_DESIGN(\"mdi2m-material-design\", \"F0986\"),\n    MATERIAL_UI(\"mdi2m-material-ui\", \"F0357\"),\n    MATH_COMPASS(\"mdi2m-math-compass\", \"F0358\"),\n    MATH_COS(\"mdi2m-math-cos\", \"F0C96\"),\n    MATH_INTEGRAL(\"mdi2m-math-integral\", \"F0FC8\"),\n    MATH_INTEGRAL_BOX(\"mdi2m-math-integral-box\", \"F0FC9\"),\n    MATH_LOG(\"mdi2m-math-log\", \"F1085\"),\n    MATH_NORM(\"mdi2m-math-norm\", \"F0FCA\"),\n    MATH_NORM_BOX(\"mdi2m-math-norm-box\", \"F0FCB\"),\n    MATH_SIN(\"mdi2m-math-sin\", \"F0C97\"),\n    MATH_TAN(\"mdi2m-math-tan\", \"F0C98\"),\n    MATRIX(\"mdi2m-matrix\", \"F0628\"),\n    MEDAL(\"mdi2m-medal\", \"F0987\"),\n    MEDAL_OUTLINE(\"mdi2m-medal-outline\", \"F1326\"),\n    MEDICAL_BAG(\"mdi2m-medical-bag\", \"F06EF\"),\n    MEDICAL_COTTON_SWAB(\"mdi2m-medical-cotton-swab\", \"F1AB8\"),\n    MEDICATION(\"mdi2m-medication\", \"F1B14\"),\n    MEDICATION_OUTLINE(\"mdi2m-medication-outline\", \"F1B15\"),\n    MEDITATION(\"mdi2m-meditation\", \"F117B\"),\n    MEMORY(\"mdi2m-memory\", \"F035B\"),\n    MEMORY_ARROW_DOWN(\"mdi2m-memory-arrow-down\", \"F1CA6\"),\n    MENORAH(\"mdi2m-menorah\", \"F17D4\"),\n    MENORAH_FIRE(\"mdi2m-menorah-fire\", \"F17D5\"),\n    MENU(\"mdi2m-menu\", \"F035C\"),\n    MENU_CLOSE(\"mdi2m-menu-close\", \"F1C90\"),\n    MENU_DOWN(\"mdi2m-menu-down\", \"F035D\"),\n    MENU_DOWN_OUTLINE(\"mdi2m-menu-down-outline\", \"F06B6\"),\n    MENU_LEFT(\"mdi2m-menu-left\", \"F035E\"),\n    MENU_LEFT_OUTLINE(\"mdi2m-menu-left-outline\", \"F0A02\"),\n    MENU_OPEN(\"mdi2m-menu-open\", \"F0BAB\"),\n    MENU_RIGHT(\"mdi2m-menu-right\", \"F035F\"),\n    MENU_RIGHT_OUTLINE(\"mdi2m-menu-right-outline\", \"F0A03\"),\n    MENU_SWAP(\"mdi2m-menu-swap\", \"F0A64\"),\n    MENU_SWAP_OUTLINE(\"mdi2m-menu-swap-outline\", \"F0A65\"),\n    MENU_UP(\"mdi2m-menu-up\", \"F0360\"),\n    MENU_UP_OUTLINE(\"mdi2m-menu-up-outline\", \"F06B7\"),\n    MERGE(\"mdi2m-merge\", \"F0F5C\"),\n    MESSAGE(\"mdi2m-message\", \"F0361\"),\n    MESSAGE_ALERT(\"mdi2m-message-alert\", \"F0362\"),\n    MESSAGE_ALERT_OUTLINE(\"mdi2m-message-alert-outline\", \"F0A04\"),\n    MESSAGE_ARROW_LEFT(\"mdi2m-message-arrow-left\", \"F12F2\"),\n    MESSAGE_ARROW_LEFT_OUTLINE(\"mdi2m-message-arrow-left-outline\", \"F12F3\"),\n    MESSAGE_ARROW_RIGHT(\"mdi2m-message-arrow-right\", \"F12F4\"),\n    MESSAGE_ARROW_RIGHT_OUTLINE(\"mdi2m-message-arrow-right-outline\", \"F12F5\"),\n    MESSAGE_BADGE(\"mdi2m-message-badge\", \"F1941\"),\n    MESSAGE_BADGE_OUTLINE(\"mdi2m-message-badge-outline\", \"F1942\"),\n    MESSAGE_BOOKMARK(\"mdi2m-message-bookmark\", \"F15AC\"),\n    MESSAGE_BOOKMARK_OUTLINE(\"mdi2m-message-bookmark-outline\", \"F15AD\"),\n    MESSAGE_BULLETED(\"mdi2m-message-bulleted\", \"F06A2\"),\n    MESSAGE_BULLETED_OFF(\"mdi2m-message-bulleted-off\", \"F06A3\"),\n    MESSAGE_CHECK(\"mdi2m-message-check\", \"F1B8A\"),\n    MESSAGE_CHECK_OUTLINE(\"mdi2m-message-check-outline\", \"F1B8B\"),\n    MESSAGE_COG(\"mdi2m-message-cog\", \"F06F1\"),\n    MESSAGE_COG_OUTLINE(\"mdi2m-message-cog-outline\", \"F1172\"),\n    MESSAGE_DRAW(\"mdi2m-message-draw\", \"F0363\"),\n    MESSAGE_FAST(\"mdi2m-message-fast\", \"F19CC\"),\n    MESSAGE_FAST_OUTLINE(\"mdi2m-message-fast-outline\", \"F19CD\"),\n    MESSAGE_FLASH(\"mdi2m-message-flash\", \"F15A9\"),\n    MESSAGE_FLASH_OUTLINE(\"mdi2m-message-flash-outline\", \"F15AA\"),\n    MESSAGE_IMAGE(\"mdi2m-message-image\", \"F0364\"),\n    MESSAGE_IMAGE_OUTLINE(\"mdi2m-message-image-outline\", \"F116C\"),\n    MESSAGE_LOCK(\"mdi2m-message-lock\", \"F0FCC\"),\n    MESSAGE_LOCK_OUTLINE(\"mdi2m-message-lock-outline\", \"F116D\"),\n    MESSAGE_MINUS(\"mdi2m-message-minus\", \"F116E\"),\n    MESSAGE_MINUS_OUTLINE(\"mdi2m-message-minus-outline\", \"F116F\"),\n    MESSAGE_OFF(\"mdi2m-message-off\", \"F164D\"),\n    MESSAGE_OFF_OUTLINE(\"mdi2m-message-off-outline\", \"F164E\"),\n    MESSAGE_OUTLINE(\"mdi2m-message-outline\", \"F0365\"),\n    MESSAGE_PLUS(\"mdi2m-message-plus\", \"F0653\"),\n    MESSAGE_PLUS_OUTLINE(\"mdi2m-message-plus-outline\", \"F10BB\"),\n    MESSAGE_PROCESSING(\"mdi2m-message-processing\", \"F0366\"),\n    MESSAGE_PROCESSING_OUTLINE(\"mdi2m-message-processing-outline\", \"F1170\"),\n    MESSAGE_QUESTION(\"mdi2m-message-question\", \"F173A\"),\n    MESSAGE_QUESTION_OUTLINE(\"mdi2m-message-question-outline\", \"F173B\"),\n    MESSAGE_REPLY(\"mdi2m-message-reply\", \"F0367\"),\n    MESSAGE_REPLY_OUTLINE(\"mdi2m-message-reply-outline\", \"F173D\"),\n    MESSAGE_REPLY_TEXT(\"mdi2m-message-reply-text\", \"F0368\"),\n    MESSAGE_REPLY_TEXT_OUTLINE(\"mdi2m-message-reply-text-outline\", \"F173E\"),\n    MESSAGE_SETTINGS(\"mdi2m-message-settings\", \"F06F0\"),\n    MESSAGE_SETTINGS_OUTLINE(\"mdi2m-message-settings-outline\", \"F1171\"),\n    MESSAGE_STAR(\"mdi2m-message-star\", \"F069A\"),\n    MESSAGE_STAR_OUTLINE(\"mdi2m-message-star-outline\", \"F1250\"),\n    MESSAGE_TEXT(\"mdi2m-message-text\", \"F0369\"),\n    MESSAGE_TEXT_CLOCK(\"mdi2m-message-text-clock\", \"F1173\"),\n    MESSAGE_TEXT_CLOCK_OUTLINE(\"mdi2m-message-text-clock-outline\", \"F1174\"),\n    MESSAGE_TEXT_FAST(\"mdi2m-message-text-fast\", \"F19CE\"),\n    MESSAGE_TEXT_FAST_OUTLINE(\"mdi2m-message-text-fast-outline\", \"F19CF\"),\n    MESSAGE_TEXT_LOCK(\"mdi2m-message-text-lock\", \"F0FCD\"),\n    MESSAGE_TEXT_LOCK_OUTLINE(\"mdi2m-message-text-lock-outline\", \"F1175\"),\n    MESSAGE_TEXT_OUTLINE(\"mdi2m-message-text-outline\", \"F036A\"),\n    MESSAGE_VIDEO(\"mdi2m-message-video\", \"F036B\"),\n    METEOR(\"mdi2m-meteor\", \"F0629\"),\n    METER_ELECTRIC(\"mdi2m-meter-electric\", \"F1A57\"),\n    METER_ELECTRIC_OUTLINE(\"mdi2m-meter-electric-outline\", \"F1A58\"),\n    METER_GAS(\"mdi2m-meter-gas\", \"F1A59\"),\n    METER_GAS_OUTLINE(\"mdi2m-meter-gas-outline\", \"F1A5A\"),\n    METRONOME(\"mdi2m-metronome\", \"F07DA\"),\n    METRONOME_TICK(\"mdi2m-metronome-tick\", \"F07DB\"),\n    MICRO_SD(\"mdi2m-micro-sd\", \"F07DC\"),\n    MICROPHONE(\"mdi2m-microphone\", \"F036C\"),\n    MICROPHONE_MESSAGE(\"mdi2m-microphone-message\", \"F050A\"),\n    MICROPHONE_MESSAGE_OFF(\"mdi2m-microphone-message-off\", \"F050B\"),\n    MICROPHONE_MINUS(\"mdi2m-microphone-minus\", \"F08B3\"),\n    MICROPHONE_OFF(\"mdi2m-microphone-off\", \"F036D\"),\n    MICROPHONE_OUTLINE(\"mdi2m-microphone-outline\", \"F036E\"),\n    MICROPHONE_PLUS(\"mdi2m-microphone-plus\", \"F08B4\"),\n    MICROPHONE_QUESTION(\"mdi2m-microphone-question\", \"F1989\"),\n    MICROPHONE_QUESTION_OUTLINE(\"mdi2m-microphone-question-outline\", \"F198A\"),\n    MICROPHONE_SETTINGS(\"mdi2m-microphone-settings\", \"F036F\"),\n    MICROPHONE_VARIANT(\"mdi2m-microphone-variant\", \"F0370\"),\n    MICROPHONE_VARIANT_OFF(\"mdi2m-microphone-variant-off\", \"F0371\"),\n    MICROSCOPE(\"mdi2m-microscope\", \"F0654\"),\n    MICROSOFT(\"mdi2m-microsoft\", \"F0372\"),\n    MICROSOFT_ACCESS(\"mdi2m-microsoft-access\", \"F138E\"),\n    MICROSOFT_AZURE(\"mdi2m-microsoft-azure\", \"F0805\"),\n    MICROSOFT_AZURE_DEVOPS(\"mdi2m-microsoft-azure-devops\", \"F0FD5\"),\n    MICROSOFT_BING(\"mdi2m-microsoft-bing\", \"F00A4\"),\n    MICROSOFT_DYNAMICS_365(\"mdi2m-microsoft-dynamics-365\", \"F0988\"),\n    MICROSOFT_EDGE(\"mdi2m-microsoft-edge\", \"F01E9\"),\n    MICROSOFT_EXCEL(\"mdi2m-microsoft-excel\", \"F138F\"),\n    MICROSOFT_INTERNET_EXPLORER(\"mdi2m-microsoft-internet-explorer\", \"F0300\"),\n    MICROSOFT_OFFICE(\"mdi2m-microsoft-office\", \"F03C6\"),\n    MICROSOFT_ONEDRIVE(\"mdi2m-microsoft-onedrive\", \"F03CA\"),\n    MICROSOFT_ONENOTE(\"mdi2m-microsoft-onenote\", \"F0747\"),\n    MICROSOFT_OUTLOOK(\"mdi2m-microsoft-outlook\", \"F0D22\"),\n    MICROSOFT_POWERPOINT(\"mdi2m-microsoft-powerpoint\", \"F1390\"),\n    MICROSOFT_SHAREPOINT(\"mdi2m-microsoft-sharepoint\", \"F1391\"),\n    MICROSOFT_TEAMS(\"mdi2m-microsoft-teams\", \"F02BB\"),\n    MICROSOFT_VISUAL_STUDIO(\"mdi2m-microsoft-visual-studio\", \"F0610\"),\n    MICROSOFT_VISUAL_STUDIO_CODE(\"mdi2m-microsoft-visual-studio-code\", \"F0A1E\"),\n    MICROSOFT_WINDOWS(\"mdi2m-microsoft-windows\", \"F05B3\"),\n    MICROSOFT_WINDOWS_CLASSIC(\"mdi2m-microsoft-windows-classic\", \"F0A21\"),\n    MICROSOFT_WORD(\"mdi2m-microsoft-word\", \"F1392\"),\n    MICROSOFT_XBOX(\"mdi2m-microsoft-xbox\", \"F05B9\"),\n    MICROSOFT_XBOX_CONTROLLER(\"mdi2m-microsoft-xbox-controller\", \"F05BA\"),\n    MICROSOFT_XBOX_CONTROLLER_BATTERY_ALERT(\"mdi2m-microsoft-xbox-controller-battery-alert\", \"F074B\"),\n    MICROSOFT_XBOX_CONTROLLER_BATTERY_CHARGING(\"mdi2m-microsoft-xbox-controller-battery-charging\", \"F0A22\"),\n    MICROSOFT_XBOX_CONTROLLER_BATTERY_EMPTY(\"mdi2m-microsoft-xbox-controller-battery-empty\", \"F074C\"),\n    MICROSOFT_XBOX_CONTROLLER_BATTERY_FULL(\"mdi2m-microsoft-xbox-controller-battery-full\", \"F074D\"),\n    MICROSOFT_XBOX_CONTROLLER_BATTERY_LOW(\"mdi2m-microsoft-xbox-controller-battery-low\", \"F074E\"),\n    MICROSOFT_XBOX_CONTROLLER_BATTERY_MEDIUM(\"mdi2m-microsoft-xbox-controller-battery-medium\", \"F074F\"),\n    MICROSOFT_XBOX_CONTROLLER_BATTERY_UNKNOWN(\"mdi2m-microsoft-xbox-controller-battery-unknown\", \"F0750\"),\n    MICROSOFT_XBOX_CONTROLLER_MENU(\"mdi2m-microsoft-xbox-controller-menu\", \"F0E6F\"),\n    MICROSOFT_XBOX_CONTROLLER_OFF(\"mdi2m-microsoft-xbox-controller-off\", \"F05BB\"),\n    MICROSOFT_XBOX_CONTROLLER_VIEW(\"mdi2m-microsoft-xbox-controller-view\", \"F0E70\"),\n    MICROWAVE(\"mdi2m-microwave\", \"F0C99\"),\n    MICROWAVE_OFF(\"mdi2m-microwave-off\", \"F1423\"),\n    MIDDLEWARE(\"mdi2m-middleware\", \"F0F5D\"),\n    MIDDLEWARE_OUTLINE(\"mdi2m-middleware-outline\", \"F0F5E\"),\n    MIDI(\"mdi2m-midi\", \"F08F1\"),\n    MIDI_PORT(\"mdi2m-midi-port\", \"F08F2\"),\n    MINE(\"mdi2m-mine\", \"F0DDA\"),\n    MINECRAFT(\"mdi2m-minecraft\", \"F0373\"),\n    MINI_SD(\"mdi2m-mini-sd\", \"F0A05\"),\n    MINIDISC(\"mdi2m-minidisc\", \"F0A06\"),\n    MINUS(\"mdi2m-minus\", \"F0374\"),\n    MINUS_BOX(\"mdi2m-minus-box\", \"F0375\"),\n    MINUS_BOX_MULTIPLE(\"mdi2m-minus-box-multiple\", \"F1141\"),\n    MINUS_BOX_MULTIPLE_OUTLINE(\"mdi2m-minus-box-multiple-outline\", \"F1142\"),\n    MINUS_BOX_OUTLINE(\"mdi2m-minus-box-outline\", \"F06F2\"),\n    MINUS_CIRCLE(\"mdi2m-minus-circle\", \"F0376\"),\n    MINUS_CIRCLE_MULTIPLE(\"mdi2m-minus-circle-multiple\", \"F035A\"),\n    MINUS_CIRCLE_MULTIPLE_OUTLINE(\"mdi2m-minus-circle-multiple-outline\", \"F0AD3\"),\n    MINUS_CIRCLE_OFF(\"mdi2m-minus-circle-off\", \"F1459\"),\n    MINUS_CIRCLE_OFF_OUTLINE(\"mdi2m-minus-circle-off-outline\", \"F145A\"),\n    MINUS_CIRCLE_OUTLINE(\"mdi2m-minus-circle-outline\", \"F0377\"),\n    MINUS_NETWORK(\"mdi2m-minus-network\", \"F0378\"),\n    MINUS_NETWORK_OUTLINE(\"mdi2m-minus-network-outline\", \"F0C9A\"),\n    MINUS_THICK(\"mdi2m-minus-thick\", \"F1639\"),\n    MIRROR(\"mdi2m-mirror\", \"F11FD\"),\n    MIRROR_RECTANGLE(\"mdi2m-mirror-rectangle\", \"F179F\"),\n    MIRROR_VARIANT(\"mdi2m-mirror-variant\", \"F17A0\"),\n    MIXED_MARTIAL_ARTS(\"mdi2m-mixed-martial-arts\", \"F0D8F\"),\n    MIXED_REALITY(\"mdi2m-mixed-reality\", \"F087F\"),\n    MOLECULE(\"mdi2m-molecule\", \"F0BAC\"),\n    MOLECULE_CO(\"mdi2m-molecule-co\", \"F12FE\"),\n    MOLECULE_CO2(\"mdi2m-molecule-co2\", \"F07E4\"),\n    MONITOR(\"mdi2m-monitor\", \"F0379\"),\n    MONITOR_ACCOUNT(\"mdi2m-monitor-account\", \"F1A5B\"),\n    MONITOR_ARROW_DOWN(\"mdi2m-monitor-arrow-down\", \"F19D0\"),\n    MONITOR_ARROW_DOWN_VARIANT(\"mdi2m-monitor-arrow-down-variant\", \"F19D1\"),\n    MONITOR_CELLPHONE(\"mdi2m-monitor-cellphone\", \"F0989\"),\n    MONITOR_CELLPHONE_STAR(\"mdi2m-monitor-cellphone-star\", \"F098A\"),\n    MONITOR_DASHBOARD(\"mdi2m-monitor-dashboard\", \"F0A07\"),\n    MONITOR_EDIT(\"mdi2m-monitor-edit\", \"F12C6\"),\n    MONITOR_EYE(\"mdi2m-monitor-eye\", \"F13B4\"),\n    MONITOR_LOCK(\"mdi2m-monitor-lock\", \"F0DDB\"),\n    MONITOR_MULTIPLE(\"mdi2m-monitor-multiple\", \"F037A\"),\n    MONITOR_OFF(\"mdi2m-monitor-off\", \"F0D90\"),\n    MONITOR_SCREENSHOT(\"mdi2m-monitor-screenshot\", \"F0E51\"),\n    MONITOR_SHARE(\"mdi2m-monitor-share\", \"F1483\"),\n    MONITOR_SHIMMER(\"mdi2m-monitor-shimmer\", \"F1104\"),\n    MONITOR_SMALL(\"mdi2m-monitor-small\", \"F1876\"),\n    MONITOR_SPEAKER(\"mdi2m-monitor-speaker\", \"F0F5F\"),\n    MONITOR_SPEAKER_OFF(\"mdi2m-monitor-speaker-off\", \"F0F60\"),\n    MONITOR_STAR(\"mdi2m-monitor-star\", \"F0DDC\"),\n    MONITOR_VERTICAL(\"mdi2m-monitor-vertical\", \"F1C33\"),\n    MOON_FIRST_QUARTER(\"mdi2m-moon-first-quarter\", \"F0F61\"),\n    MOON_FULL(\"mdi2m-moon-full\", \"F0F62\"),\n    MOON_LAST_QUARTER(\"mdi2m-moon-last-quarter\", \"F0F63\"),\n    MOON_NEW(\"mdi2m-moon-new\", \"F0F64\"),\n    MOON_WANING_CRESCENT(\"mdi2m-moon-waning-crescent\", \"F0F65\"),\n    MOON_WANING_GIBBOUS(\"mdi2m-moon-waning-gibbous\", \"F0F66\"),\n    MOON_WAXING_CRESCENT(\"mdi2m-moon-waxing-crescent\", \"F0F67\"),\n    MOON_WAXING_GIBBOUS(\"mdi2m-moon-waxing-gibbous\", \"F0F68\"),\n    MOPED(\"mdi2m-moped\", \"F1086\"),\n    MOPED_ELECTRIC(\"mdi2m-moped-electric\", \"F15B7\"),\n    MOPED_ELECTRIC_OUTLINE(\"mdi2m-moped-electric-outline\", \"F15B8\"),\n    MOPED_OUTLINE(\"mdi2m-moped-outline\", \"F15B9\"),\n    MORE(\"mdi2m-more\", \"F037B\"),\n    MORTAR_PESTLE(\"mdi2m-mortar-pestle\", \"F1748\"),\n    MORTAR_PESTLE_PLUS(\"mdi2m-mortar-pestle-plus\", \"F03F1\"),\n    MOSQUE(\"mdi2m-mosque\", \"F0D45\"),\n    MOSQUE_OUTLINE(\"mdi2m-mosque-outline\", \"F1827\"),\n    MOTHER_HEART(\"mdi2m-mother-heart\", \"F1314\"),\n    MOTHER_NURSE(\"mdi2m-mother-nurse\", \"F0D21\"),\n    MOTION(\"mdi2m-motion\", \"F15B2\"),\n    MOTION_OUTLINE(\"mdi2m-motion-outline\", \"F15B3\"),\n    MOTION_PAUSE(\"mdi2m-motion-pause\", \"F1590\"),\n    MOTION_PAUSE_OUTLINE(\"mdi2m-motion-pause-outline\", \"F1592\"),\n    MOTION_PLAY(\"mdi2m-motion-play\", \"F158F\"),\n    MOTION_PLAY_OUTLINE(\"mdi2m-motion-play-outline\", \"F1591\"),\n    MOTION_SENSOR(\"mdi2m-motion-sensor\", \"F0D91\"),\n    MOTION_SENSOR_OFF(\"mdi2m-motion-sensor-off\", \"F1435\"),\n    MOTORBIKE(\"mdi2m-motorbike\", \"F037C\"),\n    MOTORBIKE_ELECTRIC(\"mdi2m-motorbike-electric\", \"F15BA\"),\n    MOTORBIKE_OFF(\"mdi2m-motorbike-off\", \"F1B16\"),\n    MOUSE(\"mdi2m-mouse\", \"F037D\"),\n    MOUSE_BLUETOOTH(\"mdi2m-mouse-bluetooth\", \"F098B\"),\n    MOUSE_LEFT_CLICK(\"mdi2m-mouse-left-click\", \"F1D07\"),\n    MOUSE_LEFT_CLICK_OUTLINE(\"mdi2m-mouse-left-click-outline\", \"F1D08\"),\n    MOUSE_MOVE_DOWN(\"mdi2m-mouse-move-down\", \"F1550\"),\n    MOUSE_MOVE_UP(\"mdi2m-mouse-move-up\", \"F1551\"),\n    MOUSE_MOVE_VERTICAL(\"mdi2m-mouse-move-vertical\", \"F1552\"),\n    MOUSE_OFF(\"mdi2m-mouse-off\", \"F037E\"),\n    MOUSE_OUTLINE(\"mdi2m-mouse-outline\", \"F1D09\"),\n    MOUSE_RIGHT_CLICK(\"mdi2m-mouse-right-click\", \"F1D0A\"),\n    MOUSE_RIGHT_CLICK_OUTLINE(\"mdi2m-mouse-right-click-outline\", \"F1D0B\"),\n    MOUSE_SCROLL_WHEEL(\"mdi2m-mouse-scroll-wheel\", \"F1D0C\"),\n    MOUSE_VARIANT(\"mdi2m-mouse-variant\", \"F037F\"),\n    MOUSE_VARIANT_OFF(\"mdi2m-mouse-variant-off\", \"F0380\"),\n    MOVE_RESIZE(\"mdi2m-move-resize\", \"F0655\"),\n    MOVE_RESIZE_VARIANT(\"mdi2m-move-resize-variant\", \"F0656\"),\n    MOVIE(\"mdi2m-movie\", \"F0381\"),\n    MOVIE_CHECK(\"mdi2m-movie-check\", \"F16F3\"),\n    MOVIE_CHECK_OUTLINE(\"mdi2m-movie-check-outline\", \"F16F4\"),\n    MOVIE_COG(\"mdi2m-movie-cog\", \"F16F5\"),\n    MOVIE_COG_OUTLINE(\"mdi2m-movie-cog-outline\", \"F16F6\"),\n    MOVIE_EDIT(\"mdi2m-movie-edit\", \"F1122\"),\n    MOVIE_EDIT_OUTLINE(\"mdi2m-movie-edit-outline\", \"F1123\"),\n    MOVIE_FILTER(\"mdi2m-movie-filter\", \"F1124\"),\n    MOVIE_FILTER_OUTLINE(\"mdi2m-movie-filter-outline\", \"F1125\"),\n    MOVIE_MINUS(\"mdi2m-movie-minus\", \"F16F7\"),\n    MOVIE_MINUS_OUTLINE(\"mdi2m-movie-minus-outline\", \"F16F8\"),\n    MOVIE_OFF(\"mdi2m-movie-off\", \"F16F9\"),\n    MOVIE_OFF_OUTLINE(\"mdi2m-movie-off-outline\", \"F16FA\"),\n    MOVIE_OPEN(\"mdi2m-movie-open\", \"F0FCE\"),\n    MOVIE_OPEN_CHECK(\"mdi2m-movie-open-check\", \"F16FB\"),\n    MOVIE_OPEN_CHECK_OUTLINE(\"mdi2m-movie-open-check-outline\", \"F16FC\"),\n    MOVIE_OPEN_COG(\"mdi2m-movie-open-cog\", \"F16FD\"),\n    MOVIE_OPEN_COG_OUTLINE(\"mdi2m-movie-open-cog-outline\", \"F16FE\"),\n    MOVIE_OPEN_EDIT(\"mdi2m-movie-open-edit\", \"F16FF\"),\n    MOVIE_OPEN_EDIT_OUTLINE(\"mdi2m-movie-open-edit-outline\", \"F1700\"),\n    MOVIE_OPEN_MINUS(\"mdi2m-movie-open-minus\", \"F1701\"),\n    MOVIE_OPEN_MINUS_OUTLINE(\"mdi2m-movie-open-minus-outline\", \"F1702\"),\n    MOVIE_OPEN_OFF(\"mdi2m-movie-open-off\", \"F1703\"),\n    MOVIE_OPEN_OFF_OUTLINE(\"mdi2m-movie-open-off-outline\", \"F1704\"),\n    MOVIE_OPEN_OUTLINE(\"mdi2m-movie-open-outline\", \"F0FCF\"),\n    MOVIE_OPEN_PLAY(\"mdi2m-movie-open-play\", \"F1705\"),\n    MOVIE_OPEN_PLAY_OUTLINE(\"mdi2m-movie-open-play-outline\", \"F1706\"),\n    MOVIE_OPEN_PLUS(\"mdi2m-movie-open-plus\", \"F1707\"),\n    MOVIE_OPEN_PLUS_OUTLINE(\"mdi2m-movie-open-plus-outline\", \"F1708\"),\n    MOVIE_OPEN_REMOVE(\"mdi2m-movie-open-remove\", \"F1709\"),\n    MOVIE_OPEN_REMOVE_OUTLINE(\"mdi2m-movie-open-remove-outline\", \"F170A\"),\n    MOVIE_OPEN_SETTINGS(\"mdi2m-movie-open-settings\", \"F170B\"),\n    MOVIE_OPEN_SETTINGS_OUTLINE(\"mdi2m-movie-open-settings-outline\", \"F170C\"),\n    MOVIE_OPEN_STAR(\"mdi2m-movie-open-star\", \"F170D\"),\n    MOVIE_OPEN_STAR_OUTLINE(\"mdi2m-movie-open-star-outline\", \"F170E\"),\n    MOVIE_OUTLINE(\"mdi2m-movie-outline\", \"F0DDD\"),\n    MOVIE_PLAY(\"mdi2m-movie-play\", \"F170F\"),\n    MOVIE_PLAY_OUTLINE(\"mdi2m-movie-play-outline\", \"F1710\"),\n    MOVIE_PLUS(\"mdi2m-movie-plus\", \"F1711\"),\n    MOVIE_PLUS_OUTLINE(\"mdi2m-movie-plus-outline\", \"F1712\"),\n    MOVIE_REMOVE(\"mdi2m-movie-remove\", \"F1713\"),\n    MOVIE_REMOVE_OUTLINE(\"mdi2m-movie-remove-outline\", \"F1714\"),\n    MOVIE_ROLL(\"mdi2m-movie-roll\", \"F07DE\"),\n    MOVIE_SEARCH(\"mdi2m-movie-search\", \"F11D2\"),\n    MOVIE_SEARCH_OUTLINE(\"mdi2m-movie-search-outline\", \"F11D3\"),\n    MOVIE_SETTINGS(\"mdi2m-movie-settings\", \"F1715\"),\n    MOVIE_SETTINGS_OUTLINE(\"mdi2m-movie-settings-outline\", \"F1716\"),\n    MOVIE_STAR(\"mdi2m-movie-star\", \"F1717\"),\n    MOVIE_STAR_OUTLINE(\"mdi2m-movie-star-outline\", \"F1718\"),\n    MOWER(\"mdi2m-mower\", \"F166F\"),\n    MOWER_BAG(\"mdi2m-mower-bag\", \"F1670\"),\n    MOWER_BAG_ON(\"mdi2m-mower-bag-on\", \"F1B60\"),\n    MOWER_ON(\"mdi2m-mower-on\", \"F1B5F\"),\n    MUFFIN(\"mdi2m-muffin\", \"F098C\"),\n    MULTICAST(\"mdi2m-multicast\", \"F1893\"),\n    MULTIMEDIA(\"mdi2m-multimedia\", \"F1B97\"),\n    MULTIPLICATION(\"mdi2m-multiplication\", \"F0382\"),\n    MULTIPLICATION_BOX(\"mdi2m-multiplication-box\", \"F0383\"),\n    MUSHROOM(\"mdi2m-mushroom\", \"F07DF\"),\n    MUSHROOM_OFF(\"mdi2m-mushroom-off\", \"F13FA\"),\n    MUSHROOM_OFF_OUTLINE(\"mdi2m-mushroom-off-outline\", \"F13FB\"),\n    MUSHROOM_OUTLINE(\"mdi2m-mushroom-outline\", \"F07E0\"),\n    MUSIC(\"mdi2m-music\", \"F075A\"),\n    MUSIC_ACCIDENTAL_DOUBLE_FLAT(\"mdi2m-music-accidental-double-flat\", \"F0F69\"),\n    MUSIC_ACCIDENTAL_DOUBLE_SHARP(\"mdi2m-music-accidental-double-sharp\", \"F0F6A\"),\n    MUSIC_ACCIDENTAL_FLAT(\"mdi2m-music-accidental-flat\", \"F0F6B\"),\n    MUSIC_ACCIDENTAL_NATURAL(\"mdi2m-music-accidental-natural\", \"F0F6C\"),\n    MUSIC_ACCIDENTAL_SHARP(\"mdi2m-music-accidental-sharp\", \"F0F6D\"),\n    MUSIC_BOX(\"mdi2m-music-box\", \"F0384\"),\n    MUSIC_BOX_MULTIPLE(\"mdi2m-music-box-multiple\", \"F0333\"),\n    MUSIC_BOX_MULTIPLE_OUTLINE(\"mdi2m-music-box-multiple-outline\", \"F0F04\"),\n    MUSIC_BOX_OUTLINE(\"mdi2m-music-box-outline\", \"F0385\"),\n    MUSIC_CIRCLE(\"mdi2m-music-circle\", \"F0386\"),\n    MUSIC_CIRCLE_OUTLINE(\"mdi2m-music-circle-outline\", \"F0AD4\"),\n    MUSIC_CLEF_ALTO(\"mdi2m-music-clef-alto\", \"F0F6E\"),\n    MUSIC_CLEF_BASS(\"mdi2m-music-clef-bass\", \"F0F6F\"),\n    MUSIC_CLEF_TREBLE(\"mdi2m-music-clef-treble\", \"F0F70\"),\n    MUSIC_NOTE(\"mdi2m-music-note\", \"F0387\"),\n    MUSIC_NOTE_BLUETOOTH(\"mdi2m-music-note-bluetooth\", \"F05FE\"),\n    MUSIC_NOTE_BLUETOOTH_OFF(\"mdi2m-music-note-bluetooth-off\", \"F05FF\"),\n    MUSIC_NOTE_EIGHTH(\"mdi2m-music-note-eighth\", \"F0388\"),\n    MUSIC_NOTE_EIGHTH_DOTTED(\"mdi2m-music-note-eighth-dotted\", \"F0F71\"),\n    MUSIC_NOTE_HALF(\"mdi2m-music-note-half\", \"F0389\"),\n    MUSIC_NOTE_HALF_DOTTED(\"mdi2m-music-note-half-dotted\", \"F0F72\"),\n    MUSIC_NOTE_MINUS(\"mdi2m-music-note-minus\", \"F1B89\"),\n    MUSIC_NOTE_OFF(\"mdi2m-music-note-off\", \"F038A\"),\n    MUSIC_NOTE_OFF_OUTLINE(\"mdi2m-music-note-off-outline\", \"F0F73\"),\n    MUSIC_NOTE_OUTLINE(\"mdi2m-music-note-outline\", \"F0F74\"),\n    MUSIC_NOTE_PLUS(\"mdi2m-music-note-plus\", \"F0DDE\"),\n    MUSIC_NOTE_QUARTER(\"mdi2m-music-note-quarter\", \"F038B\"),\n    MUSIC_NOTE_QUARTER_DOTTED(\"mdi2m-music-note-quarter-dotted\", \"F0F75\"),\n    MUSIC_NOTE_SIXTEENTH(\"mdi2m-music-note-sixteenth\", \"F038C\"),\n    MUSIC_NOTE_SIXTEENTH_DOTTED(\"mdi2m-music-note-sixteenth-dotted\", \"F0F76\"),\n    MUSIC_NOTE_WHOLE(\"mdi2m-music-note-whole\", \"F038D\"),\n    MUSIC_NOTE_WHOLE_DOTTED(\"mdi2m-music-note-whole-dotted\", \"F0F77\"),\n    MUSIC_OFF(\"mdi2m-music-off\", \"F075B\"),\n    MUSIC_REST_EIGHTH(\"mdi2m-music-rest-eighth\", \"F0F78\"),\n    MUSIC_REST_HALF(\"mdi2m-music-rest-half\", \"F0F79\"),\n    MUSIC_REST_QUARTER(\"mdi2m-music-rest-quarter\", \"F0F7A\"),\n    MUSIC_REST_SIXTEENTH(\"mdi2m-music-rest-sixteenth\", \"F0F7B\"),\n    MUSIC_REST_WHOLE(\"mdi2m-music-rest-whole\", \"F0F7C\"),\n    MUSTACHE(\"mdi2m-mustache\", \"F15DE\");\n\n    public static MaterialDesignM findByDescription(String description) {\n        for (MaterialDesignM font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignM(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignMIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignMIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2m-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignM.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignMIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignMIkonProvider implements IkonProvider<MaterialDesignM> {\n    @Override\n    public Class<MaterialDesignM> getIkon() {\n        return MaterialDesignM.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignN.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignN implements Ikon {\n    NAIL(\"mdi2n-nail\", \"F0DDF\"),\n    NAS(\"mdi2n-nas\", \"F08F3\"),\n    NATIVESCRIPT(\"mdi2n-nativescript\", \"F0880\"),\n    NATURE(\"mdi2n-nature\", \"F038E\"),\n    NATURE_OUTLINE(\"mdi2n-nature-outline\", \"F1C71\"),\n    NATURE_PEOPLE(\"mdi2n-nature-people\", \"F038F\"),\n    NATURE_PEOPLE_OUTLINE(\"mdi2n-nature-people-outline\", \"F1C72\"),\n    NAVIGATION(\"mdi2n-navigation\", \"F0390\"),\n    NAVIGATION_OUTLINE(\"mdi2n-navigation-outline\", \"F1607\"),\n    NAVIGATION_VARIANT(\"mdi2n-navigation-variant\", \"F18F0\"),\n    NAVIGATION_VARIANT_OUTLINE(\"mdi2n-navigation-variant-outline\", \"F18F1\"),\n    NEAR_ME(\"mdi2n-near-me\", \"F05CD\"),\n    NECKLACE(\"mdi2n-necklace\", \"F0F0B\"),\n    NEEDLE(\"mdi2n-needle\", \"F0391\"),\n    NEEDLE_OFF(\"mdi2n-needle-off\", \"F19D2\"),\n    NETFLIX(\"mdi2n-netflix\", \"F0746\"),\n    NETWORK(\"mdi2n-network\", \"F06F3\"),\n    NETWORK_OFF(\"mdi2n-network-off\", \"F0C9B\"),\n    NETWORK_OFF_OUTLINE(\"mdi2n-network-off-outline\", \"F0C9C\"),\n    NETWORK_OUTLINE(\"mdi2n-network-outline\", \"F0C9D\"),\n    NETWORK_POS(\"mdi2n-network-pos\", \"F1ACB\"),\n    NETWORK_STRENGTH_1(\"mdi2n-network-strength-1\", \"F08F4\"),\n    NETWORK_STRENGTH_1_ALERT(\"mdi2n-network-strength-1-alert\", \"F08F5\"),\n    NETWORK_STRENGTH_2(\"mdi2n-network-strength-2\", \"F08F6\"),\n    NETWORK_STRENGTH_2_ALERT(\"mdi2n-network-strength-2-alert\", \"F08F7\"),\n    NETWORK_STRENGTH_3(\"mdi2n-network-strength-3\", \"F08F8\"),\n    NETWORK_STRENGTH_3_ALERT(\"mdi2n-network-strength-3-alert\", \"F08F9\"),\n    NETWORK_STRENGTH_4(\"mdi2n-network-strength-4\", \"F08FA\"),\n    NETWORK_STRENGTH_4_ALERT(\"mdi2n-network-strength-4-alert\", \"F08FB\"),\n    NETWORK_STRENGTH_4_COG(\"mdi2n-network-strength-4-cog\", \"F191A\"),\n    NETWORK_STRENGTH_OFF(\"mdi2n-network-strength-off\", \"F08FC\"),\n    NETWORK_STRENGTH_OFF_OUTLINE(\"mdi2n-network-strength-off-outline\", \"F08FD\"),\n    NETWORK_STRENGTH_OUTLINE(\"mdi2n-network-strength-outline\", \"F08FE\"),\n    NEW_BOX(\"mdi2n-new-box\", \"F0394\"),\n    NEWSPAPER(\"mdi2n-newspaper\", \"F0395\"),\n    NEWSPAPER_CHECK(\"mdi2n-newspaper-check\", \"F1943\"),\n    NEWSPAPER_MINUS(\"mdi2n-newspaper-minus\", \"F0F0C\"),\n    NEWSPAPER_PLUS(\"mdi2n-newspaper-plus\", \"F0F0D\"),\n    NEWSPAPER_REMOVE(\"mdi2n-newspaper-remove\", \"F1944\"),\n    NEWSPAPER_VARIANT(\"mdi2n-newspaper-variant\", \"F1001\"),\n    NEWSPAPER_VARIANT_MULTIPLE(\"mdi2n-newspaper-variant-multiple\", \"F1002\"),\n    NEWSPAPER_VARIANT_MULTIPLE_OUTLINE(\"mdi2n-newspaper-variant-multiple-outline\", \"F1003\"),\n    NEWSPAPER_VARIANT_OUTLINE(\"mdi2n-newspaper-variant-outline\", \"F1004\"),\n    NFC(\"mdi2n-nfc\", \"F0396\"),\n    NFC_SEARCH_VARIANT(\"mdi2n-nfc-search-variant\", \"F0E53\"),\n    NFC_TAP(\"mdi2n-nfc-tap\", \"F0397\"),\n    NFC_VARIANT(\"mdi2n-nfc-variant\", \"F0398\"),\n    NFC_VARIANT_OFF(\"mdi2n-nfc-variant-off\", \"F0E54\"),\n    NINJA(\"mdi2n-ninja\", \"F0774\"),\n    NINTENDO_GAME_BOY(\"mdi2n-nintendo-game-boy\", \"F1393\"),\n    NINTENDO_SWITCH(\"mdi2n-nintendo-switch\", \"F07E1\"),\n    NINTENDO_WII(\"mdi2n-nintendo-wii\", \"F05AB\"),\n    NINTENDO_WIIU(\"mdi2n-nintendo-wiiu\", \"F072D\"),\n    NIX(\"mdi2n-nix\", \"F1105\"),\n    NODEJS(\"mdi2n-nodejs\", \"F0399\"),\n    NOODLES(\"mdi2n-noodles\", \"F117E\"),\n    NOT_EQUAL(\"mdi2n-not-equal\", \"F098D\"),\n    NOT_EQUAL_VARIANT(\"mdi2n-not-equal-variant\", \"F098E\"),\n    NOTE(\"mdi2n-note\", \"F039A\"),\n    NOTE_ALERT(\"mdi2n-note-alert\", \"F177D\"),\n    NOTE_ALERT_OUTLINE(\"mdi2n-note-alert-outline\", \"F177E\"),\n    NOTE_CHECK(\"mdi2n-note-check\", \"F177F\"),\n    NOTE_CHECK_OUTLINE(\"mdi2n-note-check-outline\", \"F1780\"),\n    NOTE_EDIT(\"mdi2n-note-edit\", \"F1781\"),\n    NOTE_EDIT_OUTLINE(\"mdi2n-note-edit-outline\", \"F1782\"),\n    NOTE_MINUS(\"mdi2n-note-minus\", \"F164F\"),\n    NOTE_MINUS_OUTLINE(\"mdi2n-note-minus-outline\", \"F1650\"),\n    NOTE_MULTIPLE(\"mdi2n-note-multiple\", \"F06B8\"),\n    NOTE_MULTIPLE_OUTLINE(\"mdi2n-note-multiple-outline\", \"F06B9\"),\n    NOTE_OFF(\"mdi2n-note-off\", \"F1783\"),\n    NOTE_OFF_OUTLINE(\"mdi2n-note-off-outline\", \"F1784\"),\n    NOTE_OUTLINE(\"mdi2n-note-outline\", \"F039B\"),\n    NOTE_PLUS(\"mdi2n-note-plus\", \"F039C\"),\n    NOTE_PLUS_OUTLINE(\"mdi2n-note-plus-outline\", \"F039D\"),\n    NOTE_REMOVE(\"mdi2n-note-remove\", \"F1651\"),\n    NOTE_REMOVE_OUTLINE(\"mdi2n-note-remove-outline\", \"F1652\"),\n    NOTE_SEARCH(\"mdi2n-note-search\", \"F1653\"),\n    NOTE_SEARCH_OUTLINE(\"mdi2n-note-search-outline\", \"F1654\"),\n    NOTE_TEXT(\"mdi2n-note-text\", \"F039E\"),\n    NOTE_TEXT_OUTLINE(\"mdi2n-note-text-outline\", \"F11D7\"),\n    NOTEBOOK(\"mdi2n-notebook\", \"F082E\"),\n    NOTEBOOK_CHECK(\"mdi2n-notebook-check\", \"F14F5\"),\n    NOTEBOOK_CHECK_OUTLINE(\"mdi2n-notebook-check-outline\", \"F14F6\"),\n    NOTEBOOK_EDIT(\"mdi2n-notebook-edit\", \"F14E7\"),\n    NOTEBOOK_EDIT_OUTLINE(\"mdi2n-notebook-edit-outline\", \"F14E9\"),\n    NOTEBOOK_HEART(\"mdi2n-notebook-heart\", \"F1A0B\"),\n    NOTEBOOK_HEART_OUTLINE(\"mdi2n-notebook-heart-outline\", \"F1A0C\"),\n    NOTEBOOK_MINUS(\"mdi2n-notebook-minus\", \"F1610\"),\n    NOTEBOOK_MINUS_OUTLINE(\"mdi2n-notebook-minus-outline\", \"F1611\"),\n    NOTEBOOK_MULTIPLE(\"mdi2n-notebook-multiple\", \"F0E55\"),\n    NOTEBOOK_OUTLINE(\"mdi2n-notebook-outline\", \"F0EBF\"),\n    NOTEBOOK_PLUS(\"mdi2n-notebook-plus\", \"F1612\"),\n    NOTEBOOK_PLUS_OUTLINE(\"mdi2n-notebook-plus-outline\", \"F1613\"),\n    NOTEBOOK_REMOVE(\"mdi2n-notebook-remove\", \"F1614\"),\n    NOTEBOOK_REMOVE_OUTLINE(\"mdi2n-notebook-remove-outline\", \"F1615\"),\n    NOTIFICATION_CLEAR_ALL(\"mdi2n-notification-clear-all\", \"F039F\"),\n    NPM(\"mdi2n-npm\", \"F06F7\"),\n    NUKE(\"mdi2n-nuke\", \"F06A4\"),\n    NULL(\"mdi2n-null\", \"F07E2\"),\n    NUMERIC(\"mdi2n-numeric\", \"F03A0\"),\n    NUMERIC_0(\"mdi2n-numeric-0\", \"F0B39\"),\n    NUMERIC_0_BOX(\"mdi2n-numeric-0-box\", \"F03A1\"),\n    NUMERIC_0_BOX_MULTIPLE(\"mdi2n-numeric-0-box-multiple\", \"F0F0E\"),\n    NUMERIC_0_BOX_MULTIPLE_OUTLINE(\"mdi2n-numeric-0-box-multiple-outline\", \"F03A2\"),\n    NUMERIC_0_BOX_OUTLINE(\"mdi2n-numeric-0-box-outline\", \"F03A3\"),\n    NUMERIC_0_CIRCLE(\"mdi2n-numeric-0-circle\", \"F0C9E\"),\n    NUMERIC_0_CIRCLE_OUTLINE(\"mdi2n-numeric-0-circle-outline\", \"F0C9F\"),\n    NUMERIC_1(\"mdi2n-numeric-1\", \"F0B3A\"),\n    NUMERIC_1_BOX(\"mdi2n-numeric-1-box\", \"F03A4\"),\n    NUMERIC_1_BOX_MULTIPLE(\"mdi2n-numeric-1-box-multiple\", \"F0F0F\"),\n    NUMERIC_1_BOX_MULTIPLE_OUTLINE(\"mdi2n-numeric-1-box-multiple-outline\", \"F03A5\"),\n    NUMERIC_1_BOX_OUTLINE(\"mdi2n-numeric-1-box-outline\", \"F03A6\"),\n    NUMERIC_1_CIRCLE(\"mdi2n-numeric-1-circle\", \"F0CA0\"),\n    NUMERIC_1_CIRCLE_OUTLINE(\"mdi2n-numeric-1-circle-outline\", \"F0CA1\"),\n    NUMERIC_10(\"mdi2n-numeric-10\", \"F0FE9\"),\n    NUMERIC_10_BOX(\"mdi2n-numeric-10-box\", \"F0F7D\"),\n    NUMERIC_10_BOX_MULTIPLE(\"mdi2n-numeric-10-box-multiple\", \"F0FEA\"),\n    NUMERIC_10_BOX_MULTIPLE_OUTLINE(\"mdi2n-numeric-10-box-multiple-outline\", \"F0FEB\"),\n    NUMERIC_10_BOX_OUTLINE(\"mdi2n-numeric-10-box-outline\", \"F0F7E\"),\n    NUMERIC_10_CIRCLE(\"mdi2n-numeric-10-circle\", \"F0FEC\"),\n    NUMERIC_10_CIRCLE_OUTLINE(\"mdi2n-numeric-10-circle-outline\", \"F0FED\"),\n    NUMERIC_2(\"mdi2n-numeric-2\", \"F0B3B\"),\n    NUMERIC_2_BOX(\"mdi2n-numeric-2-box\", \"F03A7\"),\n    NUMERIC_2_BOX_MULTIPLE(\"mdi2n-numeric-2-box-multiple\", \"F0F10\"),\n    NUMERIC_2_BOX_MULTIPLE_OUTLINE(\"mdi2n-numeric-2-box-multiple-outline\", \"F03A8\"),\n    NUMERIC_2_BOX_OUTLINE(\"mdi2n-numeric-2-box-outline\", \"F03A9\"),\n    NUMERIC_2_CIRCLE(\"mdi2n-numeric-2-circle\", \"F0CA2\"),\n    NUMERIC_2_CIRCLE_OUTLINE(\"mdi2n-numeric-2-circle-outline\", \"F0CA3\"),\n    NUMERIC_3(\"mdi2n-numeric-3\", \"F0B3C\"),\n    NUMERIC_3_BOX(\"mdi2n-numeric-3-box\", \"F03AA\"),\n    NUMERIC_3_BOX_MULTIPLE(\"mdi2n-numeric-3-box-multiple\", \"F0F11\"),\n    NUMERIC_3_BOX_MULTIPLE_OUTLINE(\"mdi2n-numeric-3-box-multiple-outline\", \"F03AB\"),\n    NUMERIC_3_BOX_OUTLINE(\"mdi2n-numeric-3-box-outline\", \"F03AC\"),\n    NUMERIC_3_CIRCLE(\"mdi2n-numeric-3-circle\", \"F0CA4\"),\n    NUMERIC_3_CIRCLE_OUTLINE(\"mdi2n-numeric-3-circle-outline\", \"F0CA5\"),\n    NUMERIC_4(\"mdi2n-numeric-4\", \"F0B3D\"),\n    NUMERIC_4_BOX(\"mdi2n-numeric-4-box\", \"F03AD\"),\n    NUMERIC_4_BOX_MULTIPLE(\"mdi2n-numeric-4-box-multiple\", \"F0F12\"),\n    NUMERIC_4_BOX_MULTIPLE_OUTLINE(\"mdi2n-numeric-4-box-multiple-outline\", \"F03B2\"),\n    NUMERIC_4_BOX_OUTLINE(\"mdi2n-numeric-4-box-outline\", \"F03AE\"),\n    NUMERIC_4_CIRCLE(\"mdi2n-numeric-4-circle\", \"F0CA6\"),\n    NUMERIC_4_CIRCLE_OUTLINE(\"mdi2n-numeric-4-circle-outline\", \"F0CA7\"),\n    NUMERIC_5(\"mdi2n-numeric-5\", \"F0B3E\"),\n    NUMERIC_5_BOX(\"mdi2n-numeric-5-box\", \"F03B1\"),\n    NUMERIC_5_BOX_MULTIPLE(\"mdi2n-numeric-5-box-multiple\", \"F0F13\"),\n    NUMERIC_5_BOX_MULTIPLE_OUTLINE(\"mdi2n-numeric-5-box-multiple-outline\", \"F03AF\"),\n    NUMERIC_5_BOX_OUTLINE(\"mdi2n-numeric-5-box-outline\", \"F03B0\"),\n    NUMERIC_5_CIRCLE(\"mdi2n-numeric-5-circle\", \"F0CA8\"),\n    NUMERIC_5_CIRCLE_OUTLINE(\"mdi2n-numeric-5-circle-outline\", \"F0CA9\"),\n    NUMERIC_6(\"mdi2n-numeric-6\", \"F0B3F\"),\n    NUMERIC_6_BOX(\"mdi2n-numeric-6-box\", \"F03B3\"),\n    NUMERIC_6_BOX_MULTIPLE(\"mdi2n-numeric-6-box-multiple\", \"F0F14\"),\n    NUMERIC_6_BOX_MULTIPLE_OUTLINE(\"mdi2n-numeric-6-box-multiple-outline\", \"F03B4\"),\n    NUMERIC_6_BOX_OUTLINE(\"mdi2n-numeric-6-box-outline\", \"F03B5\"),\n    NUMERIC_6_CIRCLE(\"mdi2n-numeric-6-circle\", \"F0CAA\"),\n    NUMERIC_6_CIRCLE_OUTLINE(\"mdi2n-numeric-6-circle-outline\", \"F0CAB\"),\n    NUMERIC_7(\"mdi2n-numeric-7\", \"F0B40\"),\n    NUMERIC_7_BOX(\"mdi2n-numeric-7-box\", \"F03B6\"),\n    NUMERIC_7_BOX_MULTIPLE(\"mdi2n-numeric-7-box-multiple\", \"F0F15\"),\n    NUMERIC_7_BOX_MULTIPLE_OUTLINE(\"mdi2n-numeric-7-box-multiple-outline\", \"F03B7\"),\n    NUMERIC_7_BOX_OUTLINE(\"mdi2n-numeric-7-box-outline\", \"F03B8\"),\n    NUMERIC_7_CIRCLE(\"mdi2n-numeric-7-circle\", \"F0CAC\"),\n    NUMERIC_7_CIRCLE_OUTLINE(\"mdi2n-numeric-7-circle-outline\", \"F0CAD\"),\n    NUMERIC_8(\"mdi2n-numeric-8\", \"F0B41\"),\n    NUMERIC_8_BOX(\"mdi2n-numeric-8-box\", \"F03B9\"),\n    NUMERIC_8_BOX_MULTIPLE(\"mdi2n-numeric-8-box-multiple\", \"F0F16\"),\n    NUMERIC_8_BOX_MULTIPLE_OUTLINE(\"mdi2n-numeric-8-box-multiple-outline\", \"F03BA\"),\n    NUMERIC_8_BOX_OUTLINE(\"mdi2n-numeric-8-box-outline\", \"F03BB\"),\n    NUMERIC_8_CIRCLE(\"mdi2n-numeric-8-circle\", \"F0CAE\"),\n    NUMERIC_8_CIRCLE_OUTLINE(\"mdi2n-numeric-8-circle-outline\", \"F0CAF\"),\n    NUMERIC_9(\"mdi2n-numeric-9\", \"F0B42\"),\n    NUMERIC_9_BOX(\"mdi2n-numeric-9-box\", \"F03BC\"),\n    NUMERIC_9_BOX_MULTIPLE(\"mdi2n-numeric-9-box-multiple\", \"F0F17\"),\n    NUMERIC_9_BOX_MULTIPLE_OUTLINE(\"mdi2n-numeric-9-box-multiple-outline\", \"F03BD\"),\n    NUMERIC_9_BOX_OUTLINE(\"mdi2n-numeric-9-box-outline\", \"F03BE\"),\n    NUMERIC_9_CIRCLE(\"mdi2n-numeric-9-circle\", \"F0CB0\"),\n    NUMERIC_9_CIRCLE_OUTLINE(\"mdi2n-numeric-9-circle-outline\", \"F0CB1\"),\n    NUMERIC_9_PLUS(\"mdi2n-numeric-9-plus\", \"F0FEE\"),\n    NUMERIC_9_PLUS_BOX(\"mdi2n-numeric-9-plus-box\", \"F03BF\"),\n    NUMERIC_9_PLUS_BOX_MULTIPLE(\"mdi2n-numeric-9-plus-box-multiple\", \"F0F18\"),\n    NUMERIC_9_PLUS_BOX_MULTIPLE_OUTLINE(\"mdi2n-numeric-9-plus-box-multiple-outline\", \"F03C0\"),\n    NUMERIC_9_PLUS_BOX_OUTLINE(\"mdi2n-numeric-9-plus-box-outline\", \"F03C1\"),\n    NUMERIC_9_PLUS_CIRCLE(\"mdi2n-numeric-9-plus-circle\", \"F0CB2\"),\n    NUMERIC_9_PLUS_CIRCLE_OUTLINE(\"mdi2n-numeric-9-plus-circle-outline\", \"F0CB3\"),\n    NUMERIC_NEGATIVE_1(\"mdi2n-numeric-negative-1\", \"F1052\"),\n    NUMERIC_OFF(\"mdi2n-numeric-off\", \"F19D3\"),\n    NUMERIC_POSITIVE_1(\"mdi2n-numeric-positive-1\", \"F15CB\"),\n    NUT(\"mdi2n-nut\", \"F06F8\"),\n    NUTRITION(\"mdi2n-nutrition\", \"F03C2\"),\n    NUXT(\"mdi2n-nuxt\", \"F1106\");\n\n    public static MaterialDesignN findByDescription(String description) {\n        for (MaterialDesignN font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignN(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignNIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignNIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2n-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignN.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignNIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignNIkonProvider implements IkonProvider<MaterialDesignN> {\n    @Override\n    public Class<MaterialDesignN> getIkon() {\n        return MaterialDesignN.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignO.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignO implements Ikon {\n    OAR(\"mdi2o-oar\", \"F067C\"),\n    OCARINA(\"mdi2o-ocarina\", \"F0DE0\"),\n    OCI(\"mdi2o-oci\", \"F12E9\"),\n    OCR(\"mdi2o-ocr\", \"F113A\"),\n    OCTAGON(\"mdi2o-octagon\", \"F03C3\"),\n    OCTAGON_OUTLINE(\"mdi2o-octagon-outline\", \"F03C4\"),\n    OCTAGRAM(\"mdi2o-octagram\", \"F06F9\"),\n    OCTAGRAM_EDIT(\"mdi2o-octagram-edit\", \"F1C34\"),\n    OCTAGRAM_EDIT_OUTLINE(\"mdi2o-octagram-edit-outline\", \"F1C35\"),\n    OCTAGRAM_MINUS(\"mdi2o-octagram-minus\", \"F1C36\"),\n    OCTAGRAM_MINUS_OUTLINE(\"mdi2o-octagram-minus-outline\", \"F1C37\"),\n    OCTAGRAM_OUTLINE(\"mdi2o-octagram-outline\", \"F0775\"),\n    OCTAGRAM_PLUS(\"mdi2o-octagram-plus\", \"F1C38\"),\n    OCTAGRAM_PLUS_OUTLINE(\"mdi2o-octagram-plus-outline\", \"F1C39\"),\n    OCTAHEDRON(\"mdi2o-octahedron\", \"F1950\"),\n    OCTAHEDRON_OFF(\"mdi2o-octahedron-off\", \"F1951\"),\n    ODNOKLASSNIKI(\"mdi2o-odnoklassniki\", \"F03C5\"),\n    OFFER(\"mdi2o-offer\", \"F121B\"),\n    OFFICE_BUILDING(\"mdi2o-office-building\", \"F0991\"),\n    OFFICE_BUILDING_COG(\"mdi2o-office-building-cog\", \"F1949\"),\n    OFFICE_BUILDING_COG_OUTLINE(\"mdi2o-office-building-cog-outline\", \"F194A\"),\n    OFFICE_BUILDING_MARKER(\"mdi2o-office-building-marker\", \"F1520\"),\n    OFFICE_BUILDING_MARKER_OUTLINE(\"mdi2o-office-building-marker-outline\", \"F1521\"),\n    OFFICE_BUILDING_MINUS(\"mdi2o-office-building-minus\", \"F1BAA\"),\n    OFFICE_BUILDING_MINUS_OUTLINE(\"mdi2o-office-building-minus-outline\", \"F1BAB\"),\n    OFFICE_BUILDING_OUTLINE(\"mdi2o-office-building-outline\", \"F151F\"),\n    OFFICE_BUILDING_PLUS(\"mdi2o-office-building-plus\", \"F1BA8\"),\n    OFFICE_BUILDING_PLUS_OUTLINE(\"mdi2o-office-building-plus-outline\", \"F1BA9\"),\n    OFFICE_BUILDING_REMOVE(\"mdi2o-office-building-remove\", \"F1BAC\"),\n    OFFICE_BUILDING_REMOVE_OUTLINE(\"mdi2o-office-building-remove-outline\", \"F1BAD\"),\n    OIL(\"mdi2o-oil\", \"F03C7\"),\n    OIL_LAMP(\"mdi2o-oil-lamp\", \"F0F19\"),\n    OIL_LEVEL(\"mdi2o-oil-level\", \"F1053\"),\n    OIL_TEMPERATURE(\"mdi2o-oil-temperature\", \"F0FF8\"),\n    OM(\"mdi2o-om\", \"F0973\"),\n    OMEGA(\"mdi2o-omega\", \"F03C9\"),\n    ONE_UP(\"mdi2o-one-up\", \"F0BAD\"),\n    ONEPASSWORD(\"mdi2o-onepassword\", \"F0881\"),\n    OPACITY(\"mdi2o-opacity\", \"F05CC\"),\n    OPEN_IN_APP(\"mdi2o-open-in-app\", \"F03CB\"),\n    OPEN_IN_NEW(\"mdi2o-open-in-new\", \"F03CC\"),\n    OPEN_SOURCE_INITIATIVE(\"mdi2o-open-source-initiative\", \"F0BAE\"),\n    OPENID(\"mdi2o-openid\", \"F03CD\"),\n    OPERA(\"mdi2o-opera\", \"F03CE\"),\n    ORBIT(\"mdi2o-orbit\", \"F0018\"),\n    ORBIT_VARIANT(\"mdi2o-orbit-variant\", \"F15DB\"),\n    ORDER_ALPHABETICAL_ASCENDING(\"mdi2o-order-alphabetical-ascending\", \"F020D\"),\n    ORDER_ALPHABETICAL_DESCENDING(\"mdi2o-order-alphabetical-descending\", \"F0D07\"),\n    ORDER_BOOL_ASCENDING(\"mdi2o-order-bool-ascending\", \"F02BE\"),\n    ORDER_BOOL_ASCENDING_VARIANT(\"mdi2o-order-bool-ascending-variant\", \"F098F\"),\n    ORDER_BOOL_DESCENDING(\"mdi2o-order-bool-descending\", \"F1384\"),\n    ORDER_BOOL_DESCENDING_VARIANT(\"mdi2o-order-bool-descending-variant\", \"F0990\"),\n    ORDER_NUMERIC_ASCENDING(\"mdi2o-order-numeric-ascending\", \"F0545\"),\n    ORDER_NUMERIC_DESCENDING(\"mdi2o-order-numeric-descending\", \"F0546\"),\n    ORIGIN(\"mdi2o-origin\", \"F0B43\"),\n    ORNAMENT(\"mdi2o-ornament\", \"F03CF\"),\n    ORNAMENT_VARIANT(\"mdi2o-ornament-variant\", \"F03D0\"),\n    OUTDOOR_LAMP(\"mdi2o-outdoor-lamp\", \"F1054\"),\n    OVERSCAN(\"mdi2o-overscan\", \"F1005\"),\n    OWL(\"mdi2o-owl\", \"F03D2\");\n\n    public static MaterialDesignO findByDescription(String description) {\n        for (MaterialDesignO font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignO(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignOIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignOIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2o-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignO.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignOIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignOIkonProvider implements IkonProvider<MaterialDesignO> {\n    @Override\n    public Class<MaterialDesignO> getIkon() {\n        return MaterialDesignO.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignP.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignP implements Ikon {\n    PAC_MAN(\"mdi2p-pac-man\", \"F0BAF\"),\n    PACKAGE(\"mdi2p-package\", \"F03D3\"),\n    PACKAGE_CHECK(\"mdi2p-package-check\", \"F1B51\"),\n    PACKAGE_DOWN(\"mdi2p-package-down\", \"F03D4\"),\n    PACKAGE_UP(\"mdi2p-package-up\", \"F03D5\"),\n    PACKAGE_VARIANT(\"mdi2p-package-variant\", \"F03D6\"),\n    PACKAGE_VARIANT_CLOSED(\"mdi2p-package-variant-closed\", \"F03D7\"),\n    PACKAGE_VARIANT_CLOSED_CHECK(\"mdi2p-package-variant-closed-check\", \"F1B52\"),\n    PACKAGE_VARIANT_CLOSED_MINUS(\"mdi2p-package-variant-closed-minus\", \"F19D4\"),\n    PACKAGE_VARIANT_CLOSED_PLUS(\"mdi2p-package-variant-closed-plus\", \"F19D5\"),\n    PACKAGE_VARIANT_CLOSED_REMOVE(\"mdi2p-package-variant-closed-remove\", \"F19D6\"),\n    PACKAGE_VARIANT_MINUS(\"mdi2p-package-variant-minus\", \"F19D7\"),\n    PACKAGE_VARIANT_PLUS(\"mdi2p-package-variant-plus\", \"F19D8\"),\n    PACKAGE_VARIANT_REMOVE(\"mdi2p-package-variant-remove\", \"F19D9\"),\n    PAGE_FIRST(\"mdi2p-page-first\", \"F0600\"),\n    PAGE_LAST(\"mdi2p-page-last\", \"F0601\"),\n    PAGE_LAYOUT_BODY(\"mdi2p-page-layout-body\", \"F06FA\"),\n    PAGE_LAYOUT_FOOTER(\"mdi2p-page-layout-footer\", \"F06FB\"),\n    PAGE_LAYOUT_HEADER(\"mdi2p-page-layout-header\", \"F06FC\"),\n    PAGE_LAYOUT_HEADER_FOOTER(\"mdi2p-page-layout-header-footer\", \"F0F7F\"),\n    PAGE_LAYOUT_SIDEBAR_LEFT(\"mdi2p-page-layout-sidebar-left\", \"F06FD\"),\n    PAGE_LAYOUT_SIDEBAR_RIGHT(\"mdi2p-page-layout-sidebar-right\", \"F06FE\"),\n    PAGE_NEXT(\"mdi2p-page-next\", \"F0BB0\"),\n    PAGE_NEXT_OUTLINE(\"mdi2p-page-next-outline\", \"F0BB1\"),\n    PAGE_PREVIOUS(\"mdi2p-page-previous\", \"F0BB2\"),\n    PAGE_PREVIOUS_OUTLINE(\"mdi2p-page-previous-outline\", \"F0BB3\"),\n    PAIL(\"mdi2p-pail\", \"F1417\"),\n    PAIL_MINUS(\"mdi2p-pail-minus\", \"F1437\"),\n    PAIL_MINUS_OUTLINE(\"mdi2p-pail-minus-outline\", \"F143C\"),\n    PAIL_OFF(\"mdi2p-pail-off\", \"F1439\"),\n    PAIL_OFF_OUTLINE(\"mdi2p-pail-off-outline\", \"F143E\"),\n    PAIL_OUTLINE(\"mdi2p-pail-outline\", \"F143A\"),\n    PAIL_PLUS(\"mdi2p-pail-plus\", \"F1436\"),\n    PAIL_PLUS_OUTLINE(\"mdi2p-pail-plus-outline\", \"F143B\"),\n    PAIL_REMOVE(\"mdi2p-pail-remove\", \"F1438\"),\n    PAIL_REMOVE_OUTLINE(\"mdi2p-pail-remove-outline\", \"F143D\"),\n    PALETTE(\"mdi2p-palette\", \"F03D8\"),\n    PALETTE_ADVANCED(\"mdi2p-palette-advanced\", \"F03D9\"),\n    PALETTE_OUTLINE(\"mdi2p-palette-outline\", \"F0E0C\"),\n    PALETTE_SWATCH(\"mdi2p-palette-swatch\", \"F08B5\"),\n    PALETTE_SWATCH_OUTLINE(\"mdi2p-palette-swatch-outline\", \"F135C\"),\n    PALETTE_SWATCH_VARIANT(\"mdi2p-palette-swatch-variant\", \"F195A\"),\n    PALM_TREE(\"mdi2p-palm-tree\", \"F1055\"),\n    PAN(\"mdi2p-pan\", \"F0BB4\"),\n    PAN_BOTTOM_LEFT(\"mdi2p-pan-bottom-left\", \"F0BB5\"),\n    PAN_BOTTOM_RIGHT(\"mdi2p-pan-bottom-right\", \"F0BB6\"),\n    PAN_DOWN(\"mdi2p-pan-down\", \"F0BB7\"),\n    PAN_HORIZONTAL(\"mdi2p-pan-horizontal\", \"F0BB8\"),\n    PAN_LEFT(\"mdi2p-pan-left\", \"F0BB9\"),\n    PAN_RIGHT(\"mdi2p-pan-right\", \"F0BBA\"),\n    PAN_TOP_LEFT(\"mdi2p-pan-top-left\", \"F0BBB\"),\n    PAN_TOP_RIGHT(\"mdi2p-pan-top-right\", \"F0BBC\"),\n    PAN_UP(\"mdi2p-pan-up\", \"F0BBD\"),\n    PAN_VERTICAL(\"mdi2p-pan-vertical\", \"F0BBE\"),\n    PANDA(\"mdi2p-panda\", \"F03DA\"),\n    PANDORA(\"mdi2p-pandora\", \"F03DB\"),\n    PANORAMA(\"mdi2p-panorama\", \"F03DC\"),\n    PANORAMA_FISHEYE(\"mdi2p-panorama-fisheye\", \"F03DD\"),\n    PANORAMA_HORIZONTAL(\"mdi2p-panorama-horizontal\", \"F1928\"),\n    PANORAMA_HORIZONTAL_OUTLINE(\"mdi2p-panorama-horizontal-outline\", \"F03DE\"),\n    PANORAMA_OUTLINE(\"mdi2p-panorama-outline\", \"F198C\"),\n    PANORAMA_SPHERE(\"mdi2p-panorama-sphere\", \"F198D\"),\n    PANORAMA_SPHERE_OUTLINE(\"mdi2p-panorama-sphere-outline\", \"F198E\"),\n    PANORAMA_VARIANT(\"mdi2p-panorama-variant\", \"F198F\"),\n    PANORAMA_VARIANT_OUTLINE(\"mdi2p-panorama-variant-outline\", \"F1990\"),\n    PANORAMA_VERTICAL(\"mdi2p-panorama-vertical\", \"F1929\"),\n    PANORAMA_VERTICAL_OUTLINE(\"mdi2p-panorama-vertical-outline\", \"F03DF\"),\n    PANORAMA_WIDE_ANGLE(\"mdi2p-panorama-wide-angle\", \"F195F\"),\n    PANORAMA_WIDE_ANGLE_OUTLINE(\"mdi2p-panorama-wide-angle-outline\", \"F03E0\"),\n    PAPER_CUT_VERTICAL(\"mdi2p-paper-cut-vertical\", \"F03E1\"),\n    PAPER_ROLL(\"mdi2p-paper-roll\", \"F1157\"),\n    PAPER_ROLL_OUTLINE(\"mdi2p-paper-roll-outline\", \"F1158\"),\n    PAPERCLIP(\"mdi2p-paperclip\", \"F03E2\"),\n    PAPERCLIP_CHECK(\"mdi2p-paperclip-check\", \"F1AC6\"),\n    PAPERCLIP_LOCK(\"mdi2p-paperclip-lock\", \"F19DA\"),\n    PAPERCLIP_MINUS(\"mdi2p-paperclip-minus\", \"F1AC7\"),\n    PAPERCLIP_OFF(\"mdi2p-paperclip-off\", \"F1AC8\"),\n    PAPERCLIP_PLUS(\"mdi2p-paperclip-plus\", \"F1AC9\"),\n    PAPERCLIP_REMOVE(\"mdi2p-paperclip-remove\", \"F1ACA\"),\n    PARACHUTE(\"mdi2p-parachute\", \"F0CB4\"),\n    PARACHUTE_OUTLINE(\"mdi2p-parachute-outline\", \"F0CB5\"),\n    PARAGLIDING(\"mdi2p-paragliding\", \"F1745\"),\n    PARKING(\"mdi2p-parking\", \"F03E3\"),\n    PARTY_POPPER(\"mdi2p-party-popper\", \"F1056\"),\n    PASSPORT(\"mdi2p-passport\", \"F07E3\"),\n    PASSPORT_ALERT(\"mdi2p-passport-alert\", \"F1CB8\"),\n    PASSPORT_BIOMETRIC(\"mdi2p-passport-biometric\", \"F0DE1\"),\n    PASSPORT_CANCEL(\"mdi2p-passport-cancel\", \"F1CB9\"),\n    PASSPORT_CHECK(\"mdi2p-passport-check\", \"F1CBA\"),\n    PASSPORT_MINUS(\"mdi2p-passport-minus\", \"F1CBB\"),\n    PASSPORT_PLUS(\"mdi2p-passport-plus\", \"F1CBC\"),\n    PASSPORT_REMOVE(\"mdi2p-passport-remove\", \"F1CBD\"),\n    PASTA(\"mdi2p-pasta\", \"F1160\"),\n    PATIO_HEATER(\"mdi2p-patio-heater\", \"F0F80\"),\n    PATREON(\"mdi2p-patreon\", \"F0882\"),\n    PAUSE(\"mdi2p-pause\", \"F03E4\"),\n    PAUSE_BOX(\"mdi2p-pause-box\", \"F00BC\"),\n    PAUSE_BOX_OUTLINE(\"mdi2p-pause-box-outline\", \"F1B7A\"),\n    PAUSE_CIRCLE(\"mdi2p-pause-circle\", \"F03E5\"),\n    PAUSE_CIRCLE_OUTLINE(\"mdi2p-pause-circle-outline\", \"F03E6\"),\n    PAUSE_OCTAGON(\"mdi2p-pause-octagon\", \"F03E7\"),\n    PAUSE_OCTAGON_OUTLINE(\"mdi2p-pause-octagon-outline\", \"F03E8\"),\n    PAW(\"mdi2p-paw\", \"F03E9\"),\n    PAW_OFF(\"mdi2p-paw-off\", \"F0657\"),\n    PAW_OFF_OUTLINE(\"mdi2p-paw-off-outline\", \"F1676\"),\n    PAW_OUTLINE(\"mdi2p-paw-outline\", \"F1675\"),\n    PEACE(\"mdi2p-peace\", \"F0884\"),\n    PEANUT(\"mdi2p-peanut\", \"F0FFC\"),\n    PEANUT_OFF(\"mdi2p-peanut-off\", \"F0FFD\"),\n    PEANUT_OFF_OUTLINE(\"mdi2p-peanut-off-outline\", \"F0FFF\"),\n    PEANUT_OUTLINE(\"mdi2p-peanut-outline\", \"F0FFE\"),\n    PEN(\"mdi2p-pen\", \"F03EA\"),\n    PEN_LOCK(\"mdi2p-pen-lock\", \"F0DE2\"),\n    PEN_MINUS(\"mdi2p-pen-minus\", \"F0DE3\"),\n    PEN_OFF(\"mdi2p-pen-off\", \"F0DE4\"),\n    PEN_PLUS(\"mdi2p-pen-plus\", \"F0DE5\"),\n    PEN_REMOVE(\"mdi2p-pen-remove\", \"F0DE6\"),\n    PENCIL(\"mdi2p-pencil\", \"F03EB\"),\n    PENCIL_BOX(\"mdi2p-pencil-box\", \"F03EC\"),\n    PENCIL_BOX_MULTIPLE(\"mdi2p-pencil-box-multiple\", \"F1144\"),\n    PENCIL_BOX_MULTIPLE_OUTLINE(\"mdi2p-pencil-box-multiple-outline\", \"F1145\"),\n    PENCIL_BOX_OUTLINE(\"mdi2p-pencil-box-outline\", \"F03ED\"),\n    PENCIL_CIRCLE(\"mdi2p-pencil-circle\", \"F06FF\"),\n    PENCIL_CIRCLE_OUTLINE(\"mdi2p-pencil-circle-outline\", \"F0776\"),\n    PENCIL_LOCK(\"mdi2p-pencil-lock\", \"F03EE\"),\n    PENCIL_LOCK_OUTLINE(\"mdi2p-pencil-lock-outline\", \"F0DE7\"),\n    PENCIL_MINUS(\"mdi2p-pencil-minus\", \"F0DE8\"),\n    PENCIL_MINUS_OUTLINE(\"mdi2p-pencil-minus-outline\", \"F0DE9\"),\n    PENCIL_OFF(\"mdi2p-pencil-off\", \"F03EF\"),\n    PENCIL_OFF_OUTLINE(\"mdi2p-pencil-off-outline\", \"F0DEA\"),\n    PENCIL_OUTLINE(\"mdi2p-pencil-outline\", \"F0CB6\"),\n    PENCIL_PLUS(\"mdi2p-pencil-plus\", \"F0DEB\"),\n    PENCIL_PLUS_OUTLINE(\"mdi2p-pencil-plus-outline\", \"F0DEC\"),\n    PENCIL_REMOVE(\"mdi2p-pencil-remove\", \"F0DED\"),\n    PENCIL_REMOVE_OUTLINE(\"mdi2p-pencil-remove-outline\", \"F0DEE\"),\n    PENCIL_RULER(\"mdi2p-pencil-ruler\", \"F1353\"),\n    PENCIL_RULER_OUTLINE(\"mdi2p-pencil-ruler-outline\", \"F1C11\"),\n    PENGUIN(\"mdi2p-penguin\", \"F0EC0\"),\n    PENTAGON(\"mdi2p-pentagon\", \"F0701\"),\n    PENTAGON_OUTLINE(\"mdi2p-pentagon-outline\", \"F0700\"),\n    PENTAGRAM(\"mdi2p-pentagram\", \"F1667\"),\n    PERCENT(\"mdi2p-percent\", \"F03F0\"),\n    PERCENT_BOX(\"mdi2p-percent-box\", \"F1A02\"),\n    PERCENT_BOX_OUTLINE(\"mdi2p-percent-box-outline\", \"F1A03\"),\n    PERCENT_CIRCLE(\"mdi2p-percent-circle\", \"F1A04\"),\n    PERCENT_CIRCLE_OUTLINE(\"mdi2p-percent-circle-outline\", \"F1A05\"),\n    PERCENT_OUTLINE(\"mdi2p-percent-outline\", \"F1278\"),\n    PERIODIC_TABLE(\"mdi2p-periodic-table\", \"F08B6\"),\n    PERSPECTIVE_LESS(\"mdi2p-perspective-less\", \"F0D23\"),\n    PERSPECTIVE_MORE(\"mdi2p-perspective-more\", \"F0D24\"),\n    PH(\"mdi2p-ph\", \"F17C5\"),\n    PHONE(\"mdi2p-phone\", \"F03F2\"),\n    PHONE_ALERT(\"mdi2p-phone-alert\", \"F0F1A\"),\n    PHONE_ALERT_OUTLINE(\"mdi2p-phone-alert-outline\", \"F118E\"),\n    PHONE_BLUETOOTH(\"mdi2p-phone-bluetooth\", \"F03F3\"),\n    PHONE_BLUETOOTH_OUTLINE(\"mdi2p-phone-bluetooth-outline\", \"F118F\"),\n    PHONE_CANCEL(\"mdi2p-phone-cancel\", \"F10BC\"),\n    PHONE_CANCEL_OUTLINE(\"mdi2p-phone-cancel-outline\", \"F1190\"),\n    PHONE_CHECK(\"mdi2p-phone-check\", \"F11A9\"),\n    PHONE_CHECK_OUTLINE(\"mdi2p-phone-check-outline\", \"F11AA\"),\n    PHONE_CLASSIC(\"mdi2p-phone-classic\", \"F0602\"),\n    PHONE_CLASSIC_OFF(\"mdi2p-phone-classic-off\", \"F1279\"),\n    PHONE_CLOCK(\"mdi2p-phone-clock\", \"F19DB\"),\n    PHONE_DIAL(\"mdi2p-phone-dial\", \"F1559\"),\n    PHONE_DIAL_OUTLINE(\"mdi2p-phone-dial-outline\", \"F155A\"),\n    PHONE_FORWARD(\"mdi2p-phone-forward\", \"F03F4\"),\n    PHONE_FORWARD_OUTLINE(\"mdi2p-phone-forward-outline\", \"F1191\"),\n    PHONE_HANGUP(\"mdi2p-phone-hangup\", \"F03F5\"),\n    PHONE_HANGUP_OUTLINE(\"mdi2p-phone-hangup-outline\", \"F1192\"),\n    PHONE_IN_TALK(\"mdi2p-phone-in-talk\", \"F03F6\"),\n    PHONE_IN_TALK_OUTLINE(\"mdi2p-phone-in-talk-outline\", \"F1182\"),\n    PHONE_INCOMING(\"mdi2p-phone-incoming\", \"F03F7\"),\n    PHONE_INCOMING_OUTGOING(\"mdi2p-phone-incoming-outgoing\", \"F1B3F\"),\n    PHONE_INCOMING_OUTGOING_OUTLINE(\"mdi2p-phone-incoming-outgoing-outline\", \"F1B40\"),\n    PHONE_INCOMING_OUTLINE(\"mdi2p-phone-incoming-outline\", \"F1193\"),\n    PHONE_LOCK(\"mdi2p-phone-lock\", \"F03F8\"),\n    PHONE_LOCK_OUTLINE(\"mdi2p-phone-lock-outline\", \"F1194\"),\n    PHONE_LOG(\"mdi2p-phone-log\", \"F03F9\"),\n    PHONE_LOG_OUTLINE(\"mdi2p-phone-log-outline\", \"F1195\"),\n    PHONE_MESSAGE(\"mdi2p-phone-message\", \"F1196\"),\n    PHONE_MESSAGE_OUTLINE(\"mdi2p-phone-message-outline\", \"F1197\"),\n    PHONE_MINUS(\"mdi2p-phone-minus\", \"F0658\"),\n    PHONE_MINUS_OUTLINE(\"mdi2p-phone-minus-outline\", \"F1198\"),\n    PHONE_MISSED(\"mdi2p-phone-missed\", \"F03FA\"),\n    PHONE_MISSED_OUTLINE(\"mdi2p-phone-missed-outline\", \"F11A5\"),\n    PHONE_OFF(\"mdi2p-phone-off\", \"F0DEF\"),\n    PHONE_OFF_OUTLINE(\"mdi2p-phone-off-outline\", \"F11A6\"),\n    PHONE_OUTGOING(\"mdi2p-phone-outgoing\", \"F03FB\"),\n    PHONE_OUTGOING_OUTLINE(\"mdi2p-phone-outgoing-outline\", \"F1199\"),\n    PHONE_OUTLINE(\"mdi2p-phone-outline\", \"F0DF0\"),\n    PHONE_PAUSED(\"mdi2p-phone-paused\", \"F03FC\"),\n    PHONE_PAUSED_OUTLINE(\"mdi2p-phone-paused-outline\", \"F119A\"),\n    PHONE_PLUS(\"mdi2p-phone-plus\", \"F0659\"),\n    PHONE_PLUS_OUTLINE(\"mdi2p-phone-plus-outline\", \"F119B\"),\n    PHONE_REFRESH(\"mdi2p-phone-refresh\", \"F1993\"),\n    PHONE_REFRESH_OUTLINE(\"mdi2p-phone-refresh-outline\", \"F1994\"),\n    PHONE_REMOVE(\"mdi2p-phone-remove\", \"F152F\"),\n    PHONE_REMOVE_OUTLINE(\"mdi2p-phone-remove-outline\", \"F1530\"),\n    PHONE_RETURN(\"mdi2p-phone-return\", \"F082F\"),\n    PHONE_RETURN_OUTLINE(\"mdi2p-phone-return-outline\", \"F119C\"),\n    PHONE_RING(\"mdi2p-phone-ring\", \"F11AB\"),\n    PHONE_RING_OUTLINE(\"mdi2p-phone-ring-outline\", \"F11AC\"),\n    PHONE_ROTATE_LANDSCAPE(\"mdi2p-phone-rotate-landscape\", \"F0885\"),\n    PHONE_ROTATE_PORTRAIT(\"mdi2p-phone-rotate-portrait\", \"F0886\"),\n    PHONE_SETTINGS(\"mdi2p-phone-settings\", \"F03FD\"),\n    PHONE_SETTINGS_OUTLINE(\"mdi2p-phone-settings-outline\", \"F119D\"),\n    PHONE_SYNC(\"mdi2p-phone-sync\", \"F1995\"),\n    PHONE_SYNC_OUTLINE(\"mdi2p-phone-sync-outline\", \"F1996\"),\n    PHONE_VOIP(\"mdi2p-phone-voip\", \"F03FE\"),\n    PI(\"mdi2p-pi\", \"F03FF\"),\n    PI_BOX(\"mdi2p-pi-box\", \"F0400\"),\n    PI_HOLE(\"mdi2p-pi-hole\", \"F0DF1\"),\n    PIANO(\"mdi2p-piano\", \"F067D\"),\n    PIANO_OFF(\"mdi2p-piano-off\", \"F0698\"),\n    PICKAXE(\"mdi2p-pickaxe\", \"F08B7\"),\n    PICTURE_IN_PICTURE_BOTTOM_RIGHT(\"mdi2p-picture-in-picture-bottom-right\", \"F0E57\"),\n    PICTURE_IN_PICTURE_BOTTOM_RIGHT_OUTLINE(\"mdi2p-picture-in-picture-bottom-right-outline\", \"F0E58\"),\n    PICTURE_IN_PICTURE_TOP_RIGHT(\"mdi2p-picture-in-picture-top-right\", \"F0E59\"),\n    PICTURE_IN_PICTURE_TOP_RIGHT_OUTLINE(\"mdi2p-picture-in-picture-top-right-outline\", \"F0E5A\"),\n    PIER(\"mdi2p-pier\", \"F0887\"),\n    PIER_CRANE(\"mdi2p-pier-crane\", \"F0888\"),\n    PIG(\"mdi2p-pig\", \"F0401\"),\n    PIG_VARIANT(\"mdi2p-pig-variant\", \"F1006\"),\n    PIG_VARIANT_OUTLINE(\"mdi2p-pig-variant-outline\", \"F1678\"),\n    PIGGY_BANK(\"mdi2p-piggy-bank\", \"F1007\"),\n    PIGGY_BANK_OUTLINE(\"mdi2p-piggy-bank-outline\", \"F1679\"),\n    PILL(\"mdi2p-pill\", \"F0402\"),\n    PILL_MULTIPLE(\"mdi2p-pill-multiple\", \"F1B4C\"),\n    PILL_OFF(\"mdi2p-pill-off\", \"F1A5C\"),\n    PILLAR(\"mdi2p-pillar\", \"F0702\"),\n    PIN(\"mdi2p-pin\", \"F0403\"),\n    PIN_OFF(\"mdi2p-pin-off\", \"F0404\"),\n    PIN_OFF_OUTLINE(\"mdi2p-pin-off-outline\", \"F0930\"),\n    PIN_OUTLINE(\"mdi2p-pin-outline\", \"F0931\"),\n    PINE_TREE(\"mdi2p-pine-tree\", \"F0405\"),\n    PINE_TREE_BOX(\"mdi2p-pine-tree-box\", \"F0406\"),\n    PINE_TREE_FIRE(\"mdi2p-pine-tree-fire\", \"F141A\"),\n    PINE_TREE_VARIANT(\"mdi2p-pine-tree-variant\", \"F1C73\"),\n    PINE_TREE_VARIANT_OUTLINE(\"mdi2p-pine-tree-variant-outline\", \"F1C74\"),\n    PINTEREST(\"mdi2p-pinterest\", \"F0407\"),\n    PINWHEEL(\"mdi2p-pinwheel\", \"F0AD5\"),\n    PINWHEEL_OUTLINE(\"mdi2p-pinwheel-outline\", \"F0AD6\"),\n    PIPE(\"mdi2p-pipe\", \"F07E5\"),\n    PIPE_DISCONNECTED(\"mdi2p-pipe-disconnected\", \"F07E6\"),\n    PIPE_LEAK(\"mdi2p-pipe-leak\", \"F0889\"),\n    PIPE_VALVE(\"mdi2p-pipe-valve\", \"F184D\"),\n    PIPE_WRENCH(\"mdi2p-pipe-wrench\", \"F1354\"),\n    PIRATE(\"mdi2p-pirate\", \"F0A08\"),\n    PISTOL(\"mdi2p-pistol\", \"F0703\"),\n    PISTON(\"mdi2p-piston\", \"F088A\"),\n    PITCHFORK(\"mdi2p-pitchfork\", \"F1553\"),\n    PIZZA(\"mdi2p-pizza\", \"F0409\"),\n    PLANE_CAR(\"mdi2p-plane-car\", \"F1AFF\"),\n    PLANE_TRAIN(\"mdi2p-plane-train\", \"F1B00\"),\n    PLAY(\"mdi2p-play\", \"F040A\"),\n    PLAY_BOX(\"mdi2p-play-box\", \"F127A\"),\n    PLAY_BOX_EDIT_OUTLINE(\"mdi2p-play-box-edit-outline\", \"F1C3A\"),\n    PLAY_BOX_LOCK(\"mdi2p-play-box-lock\", \"F1A16\"),\n    PLAY_BOX_LOCK_OPEN(\"mdi2p-play-box-lock-open\", \"F1A17\"),\n    PLAY_BOX_LOCK_OPEN_OUTLINE(\"mdi2p-play-box-lock-open-outline\", \"F1A18\"),\n    PLAY_BOX_LOCK_OUTLINE(\"mdi2p-play-box-lock-outline\", \"F1A19\"),\n    PLAY_BOX_MULTIPLE(\"mdi2p-play-box-multiple\", \"F0D19\"),\n    PLAY_BOX_MULTIPLE_OUTLINE(\"mdi2p-play-box-multiple-outline\", \"F13E6\"),\n    PLAY_BOX_OUTLINE(\"mdi2p-play-box-outline\", \"F040B\"),\n    PLAY_CIRCLE(\"mdi2p-play-circle\", \"F040C\"),\n    PLAY_CIRCLE_OUTLINE(\"mdi2p-play-circle-outline\", \"F040D\"),\n    PLAY_NETWORK(\"mdi2p-play-network\", \"F088B\"),\n    PLAY_NETWORK_OUTLINE(\"mdi2p-play-network-outline\", \"F0CB7\"),\n    PLAY_OUTLINE(\"mdi2p-play-outline\", \"F0F1B\"),\n    PLAY_PAUSE(\"mdi2p-play-pause\", \"F040E\"),\n    PLAY_PROTECTED_CONTENT(\"mdi2p-play-protected-content\", \"F040F\"),\n    PLAY_SPEED(\"mdi2p-play-speed\", \"F08FF\"),\n    PLAYLIST_CHECK(\"mdi2p-playlist-check\", \"F05C7\"),\n    PLAYLIST_EDIT(\"mdi2p-playlist-edit\", \"F0900\"),\n    PLAYLIST_MINUS(\"mdi2p-playlist-minus\", \"F0410\"),\n    PLAYLIST_MUSIC(\"mdi2p-playlist-music\", \"F0CB8\"),\n    PLAYLIST_MUSIC_OUTLINE(\"mdi2p-playlist-music-outline\", \"F0CB9\"),\n    PLAYLIST_PLAY(\"mdi2p-playlist-play\", \"F0411\"),\n    PLAYLIST_PLUS(\"mdi2p-playlist-plus\", \"F0412\"),\n    PLAYLIST_REMOVE(\"mdi2p-playlist-remove\", \"F0413\"),\n    PLAYLIST_STAR(\"mdi2p-playlist-star\", \"F0DF2\"),\n    PLEX(\"mdi2p-plex\", \"F06BA\"),\n    PLIERS(\"mdi2p-pliers\", \"F19A4\"),\n    PLUS(\"mdi2p-plus\", \"F0415\"),\n    PLUS_BOX(\"mdi2p-plus-box\", \"F0416\"),\n    PLUS_BOX_MULTIPLE(\"mdi2p-plus-box-multiple\", \"F0334\"),\n    PLUS_BOX_MULTIPLE_OUTLINE(\"mdi2p-plus-box-multiple-outline\", \"F1143\"),\n    PLUS_BOX_OUTLINE(\"mdi2p-plus-box-outline\", \"F0704\"),\n    PLUS_CIRCLE(\"mdi2p-plus-circle\", \"F0417\"),\n    PLUS_CIRCLE_MULTIPLE(\"mdi2p-plus-circle-multiple\", \"F034C\"),\n    PLUS_CIRCLE_MULTIPLE_OUTLINE(\"mdi2p-plus-circle-multiple-outline\", \"F0418\"),\n    PLUS_CIRCLE_OUTLINE(\"mdi2p-plus-circle-outline\", \"F0419\"),\n    PLUS_LOCK(\"mdi2p-plus-lock\", \"F1A5D\"),\n    PLUS_LOCK_OPEN(\"mdi2p-plus-lock-open\", \"F1A5E\"),\n    PLUS_MINUS(\"mdi2p-plus-minus\", \"F0992\"),\n    PLUS_MINUS_BOX(\"mdi2p-plus-minus-box\", \"F0993\"),\n    PLUS_MINUS_VARIANT(\"mdi2p-plus-minus-variant\", \"F14C9\"),\n    PLUS_NETWORK(\"mdi2p-plus-network\", \"F041A\"),\n    PLUS_NETWORK_OUTLINE(\"mdi2p-plus-network-outline\", \"F0CBA\"),\n    PLUS_OUTLINE(\"mdi2p-plus-outline\", \"F0705\"),\n    PLUS_THICK(\"mdi2p-plus-thick\", \"F11EC\"),\n    POCKET(\"mdi2p-pocket\", \"F1CBE\"),\n    PODCAST(\"mdi2p-podcast\", \"F0994\"),\n    PODIUM(\"mdi2p-podium\", \"F0D25\"),\n    PODIUM_BRONZE(\"mdi2p-podium-bronze\", \"F0D26\"),\n    PODIUM_GOLD(\"mdi2p-podium-gold\", \"F0D27\"),\n    PODIUM_SILVER(\"mdi2p-podium-silver\", \"F0D28\"),\n    POINT_OF_SALE(\"mdi2p-point-of-sale\", \"F0D92\"),\n    POKEBALL(\"mdi2p-pokeball\", \"F041D\"),\n    POKEMON_GO(\"mdi2p-pokemon-go\", \"F0A09\"),\n    POKER_CHIP(\"mdi2p-poker-chip\", \"F0830\"),\n    POLAROID(\"mdi2p-polaroid\", \"F041E\"),\n    POLICE_BADGE(\"mdi2p-police-badge\", \"F1167\"),\n    POLICE_BADGE_OUTLINE(\"mdi2p-police-badge-outline\", \"F1168\"),\n    POLICE_STATION(\"mdi2p-police-station\", \"F1839\"),\n    POLL(\"mdi2p-poll\", \"F041F\"),\n    POLO(\"mdi2p-polo\", \"F14C3\"),\n    POLYMER(\"mdi2p-polymer\", \"F0421\"),\n    POOL(\"mdi2p-pool\", \"F0606\"),\n    POOL_THERMOMETER(\"mdi2p-pool-thermometer\", \"F1A5F\"),\n    POPCORN(\"mdi2p-popcorn\", \"F0422\"),\n    POST(\"mdi2p-post\", \"F1008\"),\n    POST_LAMP(\"mdi2p-post-lamp\", \"F1A60\"),\n    POST_OUTLINE(\"mdi2p-post-outline\", \"F1009\"),\n    POSTAGE_STAMP(\"mdi2p-postage-stamp\", \"F0CBB\"),\n    POT(\"mdi2p-pot\", \"F02E5\"),\n    POT_MIX(\"mdi2p-pot-mix\", \"F065B\"),\n    POT_MIX_OUTLINE(\"mdi2p-pot-mix-outline\", \"F0677\"),\n    POT_OUTLINE(\"mdi2p-pot-outline\", \"F02FF\"),\n    POT_STEAM(\"mdi2p-pot-steam\", \"F065A\"),\n    POT_STEAM_OUTLINE(\"mdi2p-pot-steam-outline\", \"F0326\"),\n    POUND(\"mdi2p-pound\", \"F0423\"),\n    POUND_BOX(\"mdi2p-pound-box\", \"F0424\"),\n    POUND_BOX_OUTLINE(\"mdi2p-pound-box-outline\", \"F117F\"),\n    POWER(\"mdi2p-power\", \"F0425\"),\n    POWER_CYCLE(\"mdi2p-power-cycle\", \"F0901\"),\n    POWER_OFF(\"mdi2p-power-off\", \"F0902\"),\n    POWER_ON(\"mdi2p-power-on\", \"F0903\"),\n    POWER_PLUG(\"mdi2p-power-plug\", \"F06A5\"),\n    POWER_PLUG_BATTERY(\"mdi2p-power-plug-battery\", \"F1C3B\"),\n    POWER_PLUG_BATTERY_OUTLINE(\"mdi2p-power-plug-battery-outline\", \"F1C3C\"),\n    POWER_PLUG_OFF(\"mdi2p-power-plug-off\", \"F06A6\"),\n    POWER_PLUG_OFF_OUTLINE(\"mdi2p-power-plug-off-outline\", \"F1424\"),\n    POWER_PLUG_OUTLINE(\"mdi2p-power-plug-outline\", \"F1425\"),\n    POWER_SETTINGS(\"mdi2p-power-settings\", \"F0426\"),\n    POWER_SLEEP(\"mdi2p-power-sleep\", \"F0904\"),\n    POWER_SOCKET(\"mdi2p-power-socket\", \"F0427\"),\n    POWER_SOCKET_AU(\"mdi2p-power-socket-au\", \"F0905\"),\n    POWER_SOCKET_CH(\"mdi2p-power-socket-ch\", \"F0FB3\"),\n    POWER_SOCKET_DE(\"mdi2p-power-socket-de\", \"F1107\"),\n    POWER_SOCKET_EU(\"mdi2p-power-socket-eu\", \"F07E7\"),\n    POWER_SOCKET_FR(\"mdi2p-power-socket-fr\", \"F1108\"),\n    POWER_SOCKET_IT(\"mdi2p-power-socket-it\", \"F14FF\"),\n    POWER_SOCKET_JP(\"mdi2p-power-socket-jp\", \"F1109\"),\n    POWER_SOCKET_UK(\"mdi2p-power-socket-uk\", \"F07E8\"),\n    POWER_SOCKET_US(\"mdi2p-power-socket-us\", \"F07E9\"),\n    POWER_STANDBY(\"mdi2p-power-standby\", \"F0906\"),\n    POWERSHELL(\"mdi2p-powershell\", \"F0A0A\"),\n    PRESCRIPTION(\"mdi2p-prescription\", \"F0706\"),\n    PRESENTATION(\"mdi2p-presentation\", \"F0428\"),\n    PRESENTATION_PLAY(\"mdi2p-presentation-play\", \"F0429\"),\n    PRETZEL(\"mdi2p-pretzel\", \"F1562\"),\n    PRINTER(\"mdi2p-printer\", \"F042A\"),\n    PRINTER_3D(\"mdi2p-printer-3d\", \"F042B\"),\n    PRINTER_3D_NOZZLE(\"mdi2p-printer-3d-nozzle\", \"F0E5B\"),\n    PRINTER_3D_NOZZLE_ALERT(\"mdi2p-printer-3d-nozzle-alert\", \"F11C0\"),\n    PRINTER_3D_NOZZLE_ALERT_OUTLINE(\"mdi2p-printer-3d-nozzle-alert-outline\", \"F11C1\"),\n    PRINTER_3D_NOZZLE_HEAT(\"mdi2p-printer-3d-nozzle-heat\", \"F18B8\"),\n    PRINTER_3D_NOZZLE_HEAT_OUTLINE(\"mdi2p-printer-3d-nozzle-heat-outline\", \"F18B9\"),\n    PRINTER_3D_NOZZLE_OFF(\"mdi2p-printer-3d-nozzle-off\", \"F1B19\"),\n    PRINTER_3D_NOZZLE_OFF_OUTLINE(\"mdi2p-printer-3d-nozzle-off-outline\", \"F1B1A\"),\n    PRINTER_3D_NOZZLE_OUTLINE(\"mdi2p-printer-3d-nozzle-outline\", \"F0E5C\"),\n    PRINTER_3D_OFF(\"mdi2p-printer-3d-off\", \"F1B0E\"),\n    PRINTER_ALERT(\"mdi2p-printer-alert\", \"F042C\"),\n    PRINTER_CHECK(\"mdi2p-printer-check\", \"F1146\"),\n    PRINTER_EYE(\"mdi2p-printer-eye\", \"F1458\"),\n    PRINTER_OFF(\"mdi2p-printer-off\", \"F0E5D\"),\n    PRINTER_OFF_OUTLINE(\"mdi2p-printer-off-outline\", \"F1785\"),\n    PRINTER_OUTLINE(\"mdi2p-printer-outline\", \"F1786\"),\n    PRINTER_POS(\"mdi2p-printer-pos\", \"F1057\"),\n    PRINTER_POS_ALERT(\"mdi2p-printer-pos-alert\", \"F1BBC\"),\n    PRINTER_POS_ALERT_OUTLINE(\"mdi2p-printer-pos-alert-outline\", \"F1BBD\"),\n    PRINTER_POS_CANCEL(\"mdi2p-printer-pos-cancel\", \"F1BBE\"),\n    PRINTER_POS_CANCEL_OUTLINE(\"mdi2p-printer-pos-cancel-outline\", \"F1BBF\"),\n    PRINTER_POS_CHECK(\"mdi2p-printer-pos-check\", \"F1BC0\"),\n    PRINTER_POS_CHECK_OUTLINE(\"mdi2p-printer-pos-check-outline\", \"F1BC1\"),\n    PRINTER_POS_COG(\"mdi2p-printer-pos-cog\", \"F1BC2\"),\n    PRINTER_POS_COG_OUTLINE(\"mdi2p-printer-pos-cog-outline\", \"F1BC3\"),\n    PRINTER_POS_EDIT(\"mdi2p-printer-pos-edit\", \"F1BC4\"),\n    PRINTER_POS_EDIT_OUTLINE(\"mdi2p-printer-pos-edit-outline\", \"F1BC5\"),\n    PRINTER_POS_MINUS(\"mdi2p-printer-pos-minus\", \"F1BC6\"),\n    PRINTER_POS_MINUS_OUTLINE(\"mdi2p-printer-pos-minus-outline\", \"F1BC7\"),\n    PRINTER_POS_NETWORK(\"mdi2p-printer-pos-network\", \"F1BC8\"),\n    PRINTER_POS_NETWORK_OUTLINE(\"mdi2p-printer-pos-network-outline\", \"F1BC9\"),\n    PRINTER_POS_OFF(\"mdi2p-printer-pos-off\", \"F1BCA\"),\n    PRINTER_POS_OFF_OUTLINE(\"mdi2p-printer-pos-off-outline\", \"F1BCB\"),\n    PRINTER_POS_OUTLINE(\"mdi2p-printer-pos-outline\", \"F1BCC\"),\n    PRINTER_POS_PAUSE(\"mdi2p-printer-pos-pause\", \"F1BCD\"),\n    PRINTER_POS_PAUSE_OUTLINE(\"mdi2p-printer-pos-pause-outline\", \"F1BCE\"),\n    PRINTER_POS_PLAY(\"mdi2p-printer-pos-play\", \"F1BCF\"),\n    PRINTER_POS_PLAY_OUTLINE(\"mdi2p-printer-pos-play-outline\", \"F1BD0\"),\n    PRINTER_POS_PLUS(\"mdi2p-printer-pos-plus\", \"F1BD1\"),\n    PRINTER_POS_PLUS_OUTLINE(\"mdi2p-printer-pos-plus-outline\", \"F1BD2\"),\n    PRINTER_POS_REFRESH(\"mdi2p-printer-pos-refresh\", \"F1BD3\"),\n    PRINTER_POS_REFRESH_OUTLINE(\"mdi2p-printer-pos-refresh-outline\", \"F1BD4\"),\n    PRINTER_POS_REMOVE(\"mdi2p-printer-pos-remove\", \"F1BD5\"),\n    PRINTER_POS_REMOVE_OUTLINE(\"mdi2p-printer-pos-remove-outline\", \"F1BD6\"),\n    PRINTER_POS_STAR(\"mdi2p-printer-pos-star\", \"F1BD7\"),\n    PRINTER_POS_STAR_OUTLINE(\"mdi2p-printer-pos-star-outline\", \"F1BD8\"),\n    PRINTER_POS_STOP(\"mdi2p-printer-pos-stop\", \"F1BD9\"),\n    PRINTER_POS_STOP_OUTLINE(\"mdi2p-printer-pos-stop-outline\", \"F1BDA\"),\n    PRINTER_POS_SYNC(\"mdi2p-printer-pos-sync\", \"F1BDB\"),\n    PRINTER_POS_SYNC_OUTLINE(\"mdi2p-printer-pos-sync-outline\", \"F1BDC\"),\n    PRINTER_POS_WRENCH(\"mdi2p-printer-pos-wrench\", \"F1BDD\"),\n    PRINTER_POS_WRENCH_OUTLINE(\"mdi2p-printer-pos-wrench-outline\", \"F1BDE\"),\n    PRINTER_SEARCH(\"mdi2p-printer-search\", \"F1457\"),\n    PRINTER_SETTINGS(\"mdi2p-printer-settings\", \"F0707\"),\n    PRINTER_WIRELESS(\"mdi2p-printer-wireless\", \"F0A0B\"),\n    PRIORITY_HIGH(\"mdi2p-priority-high\", \"F0603\"),\n    PRIORITY_LOW(\"mdi2p-priority-low\", \"F0604\"),\n    PROFESSIONAL_HEXAGON(\"mdi2p-professional-hexagon\", \"F042D\"),\n    PROGRESS_ALERT(\"mdi2p-progress-alert\", \"F0CBC\"),\n    PROGRESS_CHECK(\"mdi2p-progress-check\", \"F0995\"),\n    PROGRESS_CLOCK(\"mdi2p-progress-clock\", \"F0996\"),\n    PROGRESS_CLOSE(\"mdi2p-progress-close\", \"F110A\"),\n    PROGRESS_DOWNLOAD(\"mdi2p-progress-download\", \"F0997\"),\n    PROGRESS_HELPER(\"mdi2p-progress-helper\", \"F1BA2\"),\n    PROGRESS_PENCIL(\"mdi2p-progress-pencil\", \"F1787\"),\n    PROGRESS_QUESTION(\"mdi2p-progress-question\", \"F1522\"),\n    PROGRESS_STAR(\"mdi2p-progress-star\", \"F1788\"),\n    PROGRESS_STAR_FOUR_POINTS(\"mdi2p-progress-star-four-points\", \"F1C3D\"),\n    PROGRESS_TAG(\"mdi2p-progress-tag\", \"F1D0D\"),\n    PROGRESS_UPLOAD(\"mdi2p-progress-upload\", \"F0998\"),\n    PROGRESS_WRENCH(\"mdi2p-progress-wrench\", \"F0CBD\"),\n    PROJECTOR(\"mdi2p-projector\", \"F042E\"),\n    PROJECTOR_OFF(\"mdi2p-projector-off\", \"F1A23\"),\n    PROJECTOR_SCREEN(\"mdi2p-projector-screen\", \"F042F\"),\n    PROJECTOR_SCREEN_OFF(\"mdi2p-projector-screen-off\", \"F180D\"),\n    PROJECTOR_SCREEN_OFF_OUTLINE(\"mdi2p-projector-screen-off-outline\", \"F180E\"),\n    PROJECTOR_SCREEN_OUTLINE(\"mdi2p-projector-screen-outline\", \"F1724\"),\n    PROJECTOR_SCREEN_VARIANT(\"mdi2p-projector-screen-variant\", \"F180F\"),\n    PROJECTOR_SCREEN_VARIANT_OFF(\"mdi2p-projector-screen-variant-off\", \"F1810\"),\n    PROJECTOR_SCREEN_VARIANT_OFF_OUTLINE(\"mdi2p-projector-screen-variant-off-outline\", \"F1811\"),\n    PROJECTOR_SCREEN_VARIANT_OUTLINE(\"mdi2p-projector-screen-variant-outline\", \"F1812\"),\n    PROPANE_TANK(\"mdi2p-propane-tank\", \"F1357\"),\n    PROPANE_TANK_OUTLINE(\"mdi2p-propane-tank-outline\", \"F1358\"),\n    PROTOCOL(\"mdi2p-protocol\", \"F0FD8\"),\n    PUBLISH(\"mdi2p-publish\", \"F06A7\"),\n    PUBLISH_OFF(\"mdi2p-publish-off\", \"F1945\"),\n    PULSE(\"mdi2p-pulse\", \"F0430\"),\n    PUMP(\"mdi2p-pump\", \"F1402\"),\n    PUMP_OFF(\"mdi2p-pump-off\", \"F1B22\"),\n    PUMPKIN(\"mdi2p-pumpkin\", \"F0BBF\"),\n    PURSE(\"mdi2p-purse\", \"F0F1C\"),\n    PURSE_OUTLINE(\"mdi2p-purse-outline\", \"F0F1D\"),\n    PUZZLE(\"mdi2p-puzzle\", \"F0431\"),\n    PUZZLE_CHECK(\"mdi2p-puzzle-check\", \"F1426\"),\n    PUZZLE_CHECK_OUTLINE(\"mdi2p-puzzle-check-outline\", \"F1427\"),\n    PUZZLE_EDIT(\"mdi2p-puzzle-edit\", \"F14D3\"),\n    PUZZLE_EDIT_OUTLINE(\"mdi2p-puzzle-edit-outline\", \"F14D9\"),\n    PUZZLE_HEART(\"mdi2p-puzzle-heart\", \"F14D4\"),\n    PUZZLE_HEART_OUTLINE(\"mdi2p-puzzle-heart-outline\", \"F14DA\"),\n    PUZZLE_MINUS(\"mdi2p-puzzle-minus\", \"F14D1\"),\n    PUZZLE_MINUS_OUTLINE(\"mdi2p-puzzle-minus-outline\", \"F14D7\"),\n    PUZZLE_OUTLINE(\"mdi2p-puzzle-outline\", \"F0A66\"),\n    PUZZLE_PLUS(\"mdi2p-puzzle-plus\", \"F14D0\"),\n    PUZZLE_PLUS_OUTLINE(\"mdi2p-puzzle-plus-outline\", \"F14D6\"),\n    PUZZLE_REMOVE(\"mdi2p-puzzle-remove\", \"F14D2\"),\n    PUZZLE_REMOVE_OUTLINE(\"mdi2p-puzzle-remove-outline\", \"F14D8\"),\n    PUZZLE_STAR(\"mdi2p-puzzle-star\", \"F14D5\"),\n    PUZZLE_STAR_OUTLINE(\"mdi2p-puzzle-star-outline\", \"F14DB\"),\n    PYRAMID(\"mdi2p-pyramid\", \"F1952\"),\n    PYRAMID_OFF(\"mdi2p-pyramid-off\", \"F1953\");\n\n    public static MaterialDesignP findByDescription(String description) {\n        for (MaterialDesignP font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignP(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignPIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignPIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2p-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignP.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignPIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignPIkonProvider implements IkonProvider<MaterialDesignP> {\n    @Override\n    public Class<MaterialDesignP> getIkon() {\n        return MaterialDesignP.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignQ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignQ implements Ikon {\n    QI(\"mdi2q-qi\", \"F0999\"),\n    QQCHAT(\"mdi2q-qqchat\", \"F0605\"),\n    QRCODE(\"mdi2q-qrcode\", \"F0432\"),\n    QRCODE_EDIT(\"mdi2q-qrcode-edit\", \"F08B8\"),\n    QRCODE_MINUS(\"mdi2q-qrcode-minus\", \"F118C\"),\n    QRCODE_PLUS(\"mdi2q-qrcode-plus\", \"F118B\"),\n    QRCODE_REMOVE(\"mdi2q-qrcode-remove\", \"F118D\"),\n    QRCODE_SCAN(\"mdi2q-qrcode-scan\", \"F0433\"),\n    QUADCOPTER(\"mdi2q-quadcopter\", \"F0434\"),\n    QUALITY_HIGH(\"mdi2q-quality-high\", \"F0435\"),\n    QUALITY_LOW(\"mdi2q-quality-low\", \"F0A0C\"),\n    QUALITY_MEDIUM(\"mdi2q-quality-medium\", \"F0A0D\"),\n    QUEUE_FIRST_IN_LAST_OUT(\"mdi2q-queue-first-in-last-out\", \"F1CAF\"),\n    QUORA(\"mdi2q-quora\", \"F0D29\");\n\n    public static MaterialDesignQ findByDescription(String description) {\n        for (MaterialDesignQ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignQ(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignQIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignQIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2q-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignQ.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignQIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignQIkonProvider implements IkonProvider<MaterialDesignQ> {\n    @Override\n    public Class<MaterialDesignQ> getIkon() {\n        return MaterialDesignQ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignR.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignR implements Ikon {\n    RABBIT(\"mdi2r-rabbit\", \"F0907\"),\n    RABBIT_VARIANT(\"mdi2r-rabbit-variant\", \"F1A61\"),\n    RABBIT_VARIANT_OUTLINE(\"mdi2r-rabbit-variant-outline\", \"F1A62\"),\n    RACING_HELMET(\"mdi2r-racing-helmet\", \"F0D93\"),\n    RACQUETBALL(\"mdi2r-racquetball\", \"F0D94\"),\n    RADAR(\"mdi2r-radar\", \"F0437\"),\n    RADIATOR(\"mdi2r-radiator\", \"F0438\"),\n    RADIATOR_DISABLED(\"mdi2r-radiator-disabled\", \"F0AD7\"),\n    RADIATOR_OFF(\"mdi2r-radiator-off\", \"F0AD8\"),\n    RADIO(\"mdi2r-radio\", \"F0439\"),\n    RADIO_AM(\"mdi2r-radio-am\", \"F0CBE\"),\n    RADIO_FM(\"mdi2r-radio-fm\", \"F0CBF\"),\n    RADIO_HANDHELD(\"mdi2r-radio-handheld\", \"F043A\"),\n    RADIO_OFF(\"mdi2r-radio-off\", \"F121C\"),\n    RADIO_TOWER(\"mdi2r-radio-tower\", \"F043B\"),\n    RADIOACTIVE(\"mdi2r-radioactive\", \"F043C\"),\n    RADIOACTIVE_CIRCLE(\"mdi2r-radioactive-circle\", \"F185D\"),\n    RADIOACTIVE_CIRCLE_OUTLINE(\"mdi2r-radioactive-circle-outline\", \"F185E\"),\n    RADIOACTIVE_OFF(\"mdi2r-radioactive-off\", \"F0EC1\"),\n    RADIOBOX_BLANK(\"mdi2r-radiobox-blank\", \"F043D\"),\n    RADIOBOX_INDETERMINATE_VARIANT(\"mdi2r-radiobox-indeterminate-variant\", \"F1C5E\"),\n    RADIOBOX_MARKED(\"mdi2r-radiobox-marked\", \"F043E\"),\n    RADIOLOGY_BOX(\"mdi2r-radiology-box\", \"F14C5\"),\n    RADIOLOGY_BOX_OUTLINE(\"mdi2r-radiology-box-outline\", \"F14C6\"),\n    RADIUS(\"mdi2r-radius\", \"F0CC0\"),\n    RADIUS_OUTLINE(\"mdi2r-radius-outline\", \"F0CC1\"),\n    RAILROAD_LIGHT(\"mdi2r-railroad-light\", \"F0F1E\"),\n    RAKE(\"mdi2r-rake\", \"F1544\"),\n    RASPBERRY_PI(\"mdi2r-raspberry-pi\", \"F043F\"),\n    RAW(\"mdi2r-raw\", \"F1A0F\"),\n    RAW_OFF(\"mdi2r-raw-off\", \"F1A10\"),\n    RAY_END(\"mdi2r-ray-end\", \"F0440\"),\n    RAY_END_ARROW(\"mdi2r-ray-end-arrow\", \"F0441\"),\n    RAY_START(\"mdi2r-ray-start\", \"F0442\"),\n    RAY_START_ARROW(\"mdi2r-ray-start-arrow\", \"F0443\"),\n    RAY_START_END(\"mdi2r-ray-start-end\", \"F0444\"),\n    RAY_START_VERTEX_END(\"mdi2r-ray-start-vertex-end\", \"F15D8\"),\n    RAY_VERTEX(\"mdi2r-ray-vertex\", \"F0445\"),\n    RAZOR_DOUBLE_EDGE(\"mdi2r-razor-double-edge\", \"F1997\"),\n    RAZOR_SINGLE_EDGE(\"mdi2r-razor-single-edge\", \"F1998\"),\n    REACT(\"mdi2r-react\", \"F0708\"),\n    READ(\"mdi2r-read\", \"F0447\"),\n    RECEIPT(\"mdi2r-receipt\", \"F0824\"),\n    RECEIPT_CLOCK(\"mdi2r-receipt-clock\", \"F1C3E\"),\n    RECEIPT_CLOCK_OUTLINE(\"mdi2r-receipt-clock-outline\", \"F1C3F\"),\n    RECEIPT_OUTLINE(\"mdi2r-receipt-outline\", \"F04F7\"),\n    RECEIPT_SEND(\"mdi2r-receipt-send\", \"F1C40\"),\n    RECEIPT_SEND_OUTLINE(\"mdi2r-receipt-send-outline\", \"F1C41\"),\n    RECEIPT_TEXT(\"mdi2r-receipt-text\", \"F0449\"),\n    RECEIPT_TEXT_ARROW_LEFT(\"mdi2r-receipt-text-arrow-left\", \"F1C42\"),\n    RECEIPT_TEXT_ARROW_LEFT_OUTLINE(\"mdi2r-receipt-text-arrow-left-outline\", \"F1C43\"),\n    RECEIPT_TEXT_ARROW_RIGHT(\"mdi2r-receipt-text-arrow-right\", \"F1C44\"),\n    RECEIPT_TEXT_ARROW_RIGHT_OUTLINE(\"mdi2r-receipt-text-arrow-right-outline\", \"F1C45\"),\n    RECEIPT_TEXT_CHECK(\"mdi2r-receipt-text-check\", \"F1A63\"),\n    RECEIPT_TEXT_CHECK_OUTLINE(\"mdi2r-receipt-text-check-outline\", \"F1A64\"),\n    RECEIPT_TEXT_CLOCK(\"mdi2r-receipt-text-clock\", \"F1C46\"),\n    RECEIPT_TEXT_CLOCK_OUTLINE(\"mdi2r-receipt-text-clock-outline\", \"F1C47\"),\n    RECEIPT_TEXT_EDIT(\"mdi2r-receipt-text-edit\", \"F1C48\"),\n    RECEIPT_TEXT_EDIT_OUTLINE(\"mdi2r-receipt-text-edit-outline\", \"F1C49\"),\n    RECEIPT_TEXT_MINUS(\"mdi2r-receipt-text-minus\", \"F1A65\"),\n    RECEIPT_TEXT_MINUS_OUTLINE(\"mdi2r-receipt-text-minus-outline\", \"F1A66\"),\n    RECEIPT_TEXT_OUTLINE(\"mdi2r-receipt-text-outline\", \"F19DC\"),\n    RECEIPT_TEXT_PLUS(\"mdi2r-receipt-text-plus\", \"F1A67\"),\n    RECEIPT_TEXT_PLUS_OUTLINE(\"mdi2r-receipt-text-plus-outline\", \"F1A68\"),\n    RECEIPT_TEXT_REMOVE(\"mdi2r-receipt-text-remove\", \"F1A69\"),\n    RECEIPT_TEXT_REMOVE_OUTLINE(\"mdi2r-receipt-text-remove-outline\", \"F1A6A\"),\n    RECEIPT_TEXT_SEND(\"mdi2r-receipt-text-send\", \"F1C4A\"),\n    RECEIPT_TEXT_SEND_OUTLINE(\"mdi2r-receipt-text-send-outline\", \"F1C4B\"),\n    RECORD(\"mdi2r-record\", \"F044A\"),\n    RECORD_CIRCLE(\"mdi2r-record-circle\", \"F0EC2\"),\n    RECORD_CIRCLE_OUTLINE(\"mdi2r-record-circle-outline\", \"F0EC3\"),\n    RECORD_PLAYER(\"mdi2r-record-player\", \"F099A\"),\n    RECORD_REC(\"mdi2r-record-rec\", \"F044B\"),\n    RECTANGLE(\"mdi2r-rectangle\", \"F0E5E\"),\n    RECTANGLE_OUTLINE(\"mdi2r-rectangle-outline\", \"F0E5F\"),\n    RECYCLE(\"mdi2r-recycle\", \"F044C\"),\n    RECYCLE_VARIANT(\"mdi2r-recycle-variant\", \"F139D\"),\n    REDDIT(\"mdi2r-reddit\", \"F044D\"),\n    REDHAT(\"mdi2r-redhat\", \"F111B\"),\n    REDO(\"mdi2r-redo\", \"F044E\"),\n    REDO_VARIANT(\"mdi2r-redo-variant\", \"F044F\"),\n    REFLECT_HORIZONTAL(\"mdi2r-reflect-horizontal\", \"F0A0E\"),\n    REFLECT_VERTICAL(\"mdi2r-reflect-vertical\", \"F0A0F\"),\n    REFRESH(\"mdi2r-refresh\", \"F0450\"),\n    REFRESH_AUTO(\"mdi2r-refresh-auto\", \"F18F2\"),\n    REFRESH_CIRCLE(\"mdi2r-refresh-circle\", \"F1377\"),\n    REGEX(\"mdi2r-regex\", \"F0451\"),\n    REGISTERED_TRADEMARK(\"mdi2r-registered-trademark\", \"F0A67\"),\n    REITERATE(\"mdi2r-reiterate\", \"F1588\"),\n    RELATION_MANY_TO_MANY(\"mdi2r-relation-many-to-many\", \"F1496\"),\n    RELATION_MANY_TO_ONE(\"mdi2r-relation-many-to-one\", \"F1497\"),\n    RELATION_MANY_TO_ONE_OR_MANY(\"mdi2r-relation-many-to-one-or-many\", \"F1498\"),\n    RELATION_MANY_TO_ONLY_ONE(\"mdi2r-relation-many-to-only-one\", \"F1499\"),\n    RELATION_MANY_TO_ZERO_OR_MANY(\"mdi2r-relation-many-to-zero-or-many\", \"F149A\"),\n    RELATION_MANY_TO_ZERO_OR_ONE(\"mdi2r-relation-many-to-zero-or-one\", \"F149B\"),\n    RELATION_ONE_OR_MANY_TO_MANY(\"mdi2r-relation-one-or-many-to-many\", \"F149C\"),\n    RELATION_ONE_OR_MANY_TO_ONE(\"mdi2r-relation-one-or-many-to-one\", \"F149D\"),\n    RELATION_ONE_OR_MANY_TO_ONE_OR_MANY(\"mdi2r-relation-one-or-many-to-one-or-many\", \"F149E\"),\n    RELATION_ONE_OR_MANY_TO_ONLY_ONE(\"mdi2r-relation-one-or-many-to-only-one\", \"F149F\"),\n    RELATION_ONE_OR_MANY_TO_ZERO_OR_MANY(\"mdi2r-relation-one-or-many-to-zero-or-many\", \"F14A0\"),\n    RELATION_ONE_OR_MANY_TO_ZERO_OR_ONE(\"mdi2r-relation-one-or-many-to-zero-or-one\", \"F14A1\"),\n    RELATION_ONE_TO_MANY(\"mdi2r-relation-one-to-many\", \"F14A2\"),\n    RELATION_ONE_TO_ONE(\"mdi2r-relation-one-to-one\", \"F14A3\"),\n    RELATION_ONE_TO_ONE_OR_MANY(\"mdi2r-relation-one-to-one-or-many\", \"F14A4\"),\n    RELATION_ONE_TO_ONLY_ONE(\"mdi2r-relation-one-to-only-one\", \"F14A5\"),\n    RELATION_ONE_TO_ZERO_OR_MANY(\"mdi2r-relation-one-to-zero-or-many\", \"F14A6\"),\n    RELATION_ONE_TO_ZERO_OR_ONE(\"mdi2r-relation-one-to-zero-or-one\", \"F14A7\"),\n    RELATION_ONLY_ONE_TO_MANY(\"mdi2r-relation-only-one-to-many\", \"F14A8\"),\n    RELATION_ONLY_ONE_TO_ONE(\"mdi2r-relation-only-one-to-one\", \"F14A9\"),\n    RELATION_ONLY_ONE_TO_ONE_OR_MANY(\"mdi2r-relation-only-one-to-one-or-many\", \"F14AA\"),\n    RELATION_ONLY_ONE_TO_ONLY_ONE(\"mdi2r-relation-only-one-to-only-one\", \"F14AB\"),\n    RELATION_ONLY_ONE_TO_ZERO_OR_MANY(\"mdi2r-relation-only-one-to-zero-or-many\", \"F14AC\"),\n    RELATION_ONLY_ONE_TO_ZERO_OR_ONE(\"mdi2r-relation-only-one-to-zero-or-one\", \"F14AD\"),\n    RELATION_ZERO_OR_MANY_TO_MANY(\"mdi2r-relation-zero-or-many-to-many\", \"F14AE\"),\n    RELATION_ZERO_OR_MANY_TO_ONE(\"mdi2r-relation-zero-or-many-to-one\", \"F14AF\"),\n    RELATION_ZERO_OR_MANY_TO_ONE_OR_MANY(\"mdi2r-relation-zero-or-many-to-one-or-many\", \"F14B0\"),\n    RELATION_ZERO_OR_MANY_TO_ONLY_ONE(\"mdi2r-relation-zero-or-many-to-only-one\", \"F14B1\"),\n    RELATION_ZERO_OR_MANY_TO_ZERO_OR_MANY(\"mdi2r-relation-zero-or-many-to-zero-or-many\", \"F14B2\"),\n    RELATION_ZERO_OR_MANY_TO_ZERO_OR_ONE(\"mdi2r-relation-zero-or-many-to-zero-or-one\", \"F14B3\"),\n    RELATION_ZERO_OR_ONE_TO_MANY(\"mdi2r-relation-zero-or-one-to-many\", \"F14B4\"),\n    RELATION_ZERO_OR_ONE_TO_ONE(\"mdi2r-relation-zero-or-one-to-one\", \"F14B5\"),\n    RELATION_ZERO_OR_ONE_TO_ONE_OR_MANY(\"mdi2r-relation-zero-or-one-to-one-or-many\", \"F14B6\"),\n    RELATION_ZERO_OR_ONE_TO_ONLY_ONE(\"mdi2r-relation-zero-or-one-to-only-one\", \"F14B7\"),\n    RELATION_ZERO_OR_ONE_TO_ZERO_OR_MANY(\"mdi2r-relation-zero-or-one-to-zero-or-many\", \"F14B8\"),\n    RELATION_ZERO_OR_ONE_TO_ZERO_OR_ONE(\"mdi2r-relation-zero-or-one-to-zero-or-one\", \"F14B9\"),\n    RELATIVE_SCALE(\"mdi2r-relative-scale\", \"F0452\"),\n    RELOAD(\"mdi2r-reload\", \"F0453\"),\n    RELOAD_ALERT(\"mdi2r-reload-alert\", \"F110B\"),\n    REMINDER(\"mdi2r-reminder\", \"F088C\"),\n    REMOTE(\"mdi2r-remote\", \"F0454\"),\n    REMOTE_DESKTOP(\"mdi2r-remote-desktop\", \"F08B9\"),\n    REMOTE_OFF(\"mdi2r-remote-off\", \"F0EC4\"),\n    REMOTE_TV(\"mdi2r-remote-tv\", \"F0EC5\"),\n    REMOTE_TV_OFF(\"mdi2r-remote-tv-off\", \"F0EC6\"),\n    RENAME(\"mdi2r-rename\", \"F1C18\"),\n    RENAME_BOX(\"mdi2r-rename-box\", \"F0455\"),\n    RENAME_BOX_OUTLINE(\"mdi2r-rename-box-outline\", \"F1C19\"),\n    RENAME_OUTLINE(\"mdi2r-rename-outline\", \"F1C1A\"),\n    REORDER_HORIZONTAL(\"mdi2r-reorder-horizontal\", \"F0688\"),\n    REORDER_VERTICAL(\"mdi2r-reorder-vertical\", \"F0689\"),\n    REPEAT(\"mdi2r-repeat\", \"F0456\"),\n    REPEAT_OFF(\"mdi2r-repeat-off\", \"F0457\"),\n    REPEAT_ONCE(\"mdi2r-repeat-once\", \"F0458\"),\n    REPEAT_VARIANT(\"mdi2r-repeat-variant\", \"F0547\"),\n    REPLAY(\"mdi2r-replay\", \"F0459\"),\n    REPLY(\"mdi2r-reply\", \"F045A\"),\n    REPLY_ALL(\"mdi2r-reply-all\", \"F045B\"),\n    REPLY_ALL_OUTLINE(\"mdi2r-reply-all-outline\", \"F0F1F\"),\n    REPLY_CIRCLE(\"mdi2r-reply-circle\", \"F11AE\"),\n    REPLY_OUTLINE(\"mdi2r-reply-outline\", \"F0F20\"),\n    REPRODUCTION(\"mdi2r-reproduction\", \"F045C\"),\n    RESISTOR(\"mdi2r-resistor\", \"F0B44\"),\n    RESISTOR_NODES(\"mdi2r-resistor-nodes\", \"F0B45\"),\n    RESIZE(\"mdi2r-resize\", \"F0A68\"),\n    RESIZE_BOTTOM_RIGHT(\"mdi2r-resize-bottom-right\", \"F045D\"),\n    RESPONSIVE(\"mdi2r-responsive\", \"F045E\"),\n    RESTART(\"mdi2r-restart\", \"F0709\"),\n    RESTART_ALERT(\"mdi2r-restart-alert\", \"F110C\"),\n    RESTART_OFF(\"mdi2r-restart-off\", \"F0D95\"),\n    RESTORE(\"mdi2r-restore\", \"F099B\"),\n    RESTORE_ALERT(\"mdi2r-restore-alert\", \"F110D\"),\n    REWIND(\"mdi2r-rewind\", \"F045F\"),\n    REWIND_10(\"mdi2r-rewind-10\", \"F0D2A\"),\n    REWIND_15(\"mdi2r-rewind-15\", \"F1946\"),\n    REWIND_30(\"mdi2r-rewind-30\", \"F0D96\"),\n    REWIND_45(\"mdi2r-rewind-45\", \"F1B13\"),\n    REWIND_5(\"mdi2r-rewind-5\", \"F11F9\"),\n    REWIND_60(\"mdi2r-rewind-60\", \"F160C\"),\n    REWIND_OUTLINE(\"mdi2r-rewind-outline\", \"F070A\"),\n    RHOMBUS(\"mdi2r-rhombus\", \"F070B\"),\n    RHOMBUS_MEDIUM(\"mdi2r-rhombus-medium\", \"F0A10\"),\n    RHOMBUS_MEDIUM_OUTLINE(\"mdi2r-rhombus-medium-outline\", \"F14DC\"),\n    RHOMBUS_OUTLINE(\"mdi2r-rhombus-outline\", \"F070C\"),\n    RHOMBUS_SPLIT(\"mdi2r-rhombus-split\", \"F0A11\"),\n    RHOMBUS_SPLIT_OUTLINE(\"mdi2r-rhombus-split-outline\", \"F14DD\"),\n    RIBBON(\"mdi2r-ribbon\", \"F0460\"),\n    RICE(\"mdi2r-rice\", \"F07EA\"),\n    RICKSHAW(\"mdi2r-rickshaw\", \"F15BB\"),\n    RICKSHAW_ELECTRIC(\"mdi2r-rickshaw-electric\", \"F15BC\"),\n    RING(\"mdi2r-ring\", \"F07EB\"),\n    RIVET(\"mdi2r-rivet\", \"F0E60\"),\n    ROAD(\"mdi2r-road\", \"F0461\"),\n    ROAD_VARIANT(\"mdi2r-road-variant\", \"F0462\"),\n    ROBBER(\"mdi2r-robber\", \"F1058\"),\n    ROBOT(\"mdi2r-robot\", \"F06A9\"),\n    ROBOT_ANGRY(\"mdi2r-robot-angry\", \"F169D\"),\n    ROBOT_ANGRY_OUTLINE(\"mdi2r-robot-angry-outline\", \"F169E\"),\n    ROBOT_CONFUSED(\"mdi2r-robot-confused\", \"F169F\"),\n    ROBOT_CONFUSED_OUTLINE(\"mdi2r-robot-confused-outline\", \"F16A0\"),\n    ROBOT_DEAD(\"mdi2r-robot-dead\", \"F16A1\"),\n    ROBOT_DEAD_OUTLINE(\"mdi2r-robot-dead-outline\", \"F16A2\"),\n    ROBOT_EXCITED(\"mdi2r-robot-excited\", \"F16A3\"),\n    ROBOT_EXCITED_OUTLINE(\"mdi2r-robot-excited-outline\", \"F16A4\"),\n    ROBOT_HAPPY(\"mdi2r-robot-happy\", \"F1719\"),\n    ROBOT_HAPPY_OUTLINE(\"mdi2r-robot-happy-outline\", \"F171A\"),\n    ROBOT_INDUSTRIAL(\"mdi2r-robot-industrial\", \"F0B46\"),\n    ROBOT_INDUSTRIAL_OUTLINE(\"mdi2r-robot-industrial-outline\", \"F1A1A\"),\n    ROBOT_LOVE(\"mdi2r-robot-love\", \"F16A5\"),\n    ROBOT_LOVE_OUTLINE(\"mdi2r-robot-love-outline\", \"F16A6\"),\n    ROBOT_MOWER(\"mdi2r-robot-mower\", \"F11F7\"),\n    ROBOT_MOWER_OUTLINE(\"mdi2r-robot-mower-outline\", \"F11F3\"),\n    ROBOT_OFF(\"mdi2r-robot-off\", \"F16A7\"),\n    ROBOT_OFF_OUTLINE(\"mdi2r-robot-off-outline\", \"F167B\"),\n    ROBOT_OUTLINE(\"mdi2r-robot-outline\", \"F167A\"),\n    ROBOT_VACUUM(\"mdi2r-robot-vacuum\", \"F070D\"),\n    ROBOT_VACUUM_ALERT(\"mdi2r-robot-vacuum-alert\", \"F1B5D\"),\n    ROBOT_VACUUM_OFF(\"mdi2r-robot-vacuum-off\", \"F1C01\"),\n    ROBOT_VACUUM_VARIANT(\"mdi2r-robot-vacuum-variant\", \"F0908\"),\n    ROBOT_VACUUM_VARIANT_ALERT(\"mdi2r-robot-vacuum-variant-alert\", \"F1B5E\"),\n    ROBOT_VACUUM_VARIANT_OFF(\"mdi2r-robot-vacuum-variant-off\", \"F1C02\"),\n    ROCKET(\"mdi2r-rocket\", \"F0463\"),\n    ROCKET_LAUNCH(\"mdi2r-rocket-launch\", \"F14DE\"),\n    ROCKET_LAUNCH_OUTLINE(\"mdi2r-rocket-launch-outline\", \"F14DF\"),\n    ROCKET_OUTLINE(\"mdi2r-rocket-outline\", \"F13AF\"),\n    RODENT(\"mdi2r-rodent\", \"F1327\"),\n    ROLLER_SHADE(\"mdi2r-roller-shade\", \"F1A6B\"),\n    ROLLER_SHADE_CLOSED(\"mdi2r-roller-shade-closed\", \"F1A6C\"),\n    ROLLER_SKATE(\"mdi2r-roller-skate\", \"F0D2B\"),\n    ROLLER_SKATE_OFF(\"mdi2r-roller-skate-off\", \"F0145\"),\n    ROLLERBLADE(\"mdi2r-rollerblade\", \"F0D2C\"),\n    ROLLERBLADE_OFF(\"mdi2r-rollerblade-off\", \"F002E\"),\n    ROLLUPJS(\"mdi2r-rollupjs\", \"F0BC0\"),\n    ROLODEX(\"mdi2r-rolodex\", \"F1AB9\"),\n    ROLODEX_OUTLINE(\"mdi2r-rolodex-outline\", \"F1ABA\"),\n    ROMAN_NUMERAL_1(\"mdi2r-roman-numeral-1\", \"F1088\"),\n    ROMAN_NUMERAL_10(\"mdi2r-roman-numeral-10\", \"F1091\"),\n    ROMAN_NUMERAL_2(\"mdi2r-roman-numeral-2\", \"F1089\"),\n    ROMAN_NUMERAL_3(\"mdi2r-roman-numeral-3\", \"F108A\"),\n    ROMAN_NUMERAL_4(\"mdi2r-roman-numeral-4\", \"F108B\"),\n    ROMAN_NUMERAL_5(\"mdi2r-roman-numeral-5\", \"F108C\"),\n    ROMAN_NUMERAL_6(\"mdi2r-roman-numeral-6\", \"F108D\"),\n    ROMAN_NUMERAL_7(\"mdi2r-roman-numeral-7\", \"F108E\"),\n    ROMAN_NUMERAL_8(\"mdi2r-roman-numeral-8\", \"F108F\"),\n    ROMAN_NUMERAL_9(\"mdi2r-roman-numeral-9\", \"F1090\"),\n    ROOM_SERVICE(\"mdi2r-room-service\", \"F088D\"),\n    ROOM_SERVICE_OUTLINE(\"mdi2r-room-service-outline\", \"F0D97\"),\n    ROTATE_360(\"mdi2r-rotate-360\", \"F1999\"),\n    ROTATE_3D(\"mdi2r-rotate-3d\", \"F0EC7\"),\n    ROTATE_3D_VARIANT(\"mdi2r-rotate-3d-variant\", \"F0464\"),\n    ROTATE_LEFT(\"mdi2r-rotate-left\", \"F0465\"),\n    ROTATE_LEFT_VARIANT(\"mdi2r-rotate-left-variant\", \"F0466\"),\n    ROTATE_ORBIT(\"mdi2r-rotate-orbit\", \"F0D98\"),\n    ROTATE_RIGHT(\"mdi2r-rotate-right\", \"F0467\"),\n    ROTATE_RIGHT_VARIANT(\"mdi2r-rotate-right-variant\", \"F0468\"),\n    ROUNDED_CORNER(\"mdi2r-rounded-corner\", \"F0607\"),\n    ROUTER(\"mdi2r-router\", \"F11E2\"),\n    ROUTER_NETWORK(\"mdi2r-router-network\", \"F1087\"),\n    ROUTER_NETWORK_WIRELESS(\"mdi2r-router-network-wireless\", \"F1C97\"),\n    ROUTER_WIRELESS(\"mdi2r-router-wireless\", \"F0469\"),\n    ROUTER_WIRELESS_OFF(\"mdi2r-router-wireless-off\", \"F15A3\"),\n    ROUTER_WIRELESS_SETTINGS(\"mdi2r-router-wireless-settings\", \"F0A69\"),\n    ROUTES(\"mdi2r-routes\", \"F046A\"),\n    ROUTES_CLOCK(\"mdi2r-routes-clock\", \"F1059\"),\n    ROWING(\"mdi2r-rowing\", \"F0608\"),\n    RSS(\"mdi2r-rss\", \"F046B\"),\n    RSS_BOX(\"mdi2r-rss-box\", \"F046C\"),\n    RSS_OFF(\"mdi2r-rss-off\", \"F0F21\"),\n    RUG(\"mdi2r-rug\", \"F1475\"),\n    RUGBY(\"mdi2r-rugby\", \"F0D99\"),\n    RULER(\"mdi2r-ruler\", \"F046D\"),\n    RULER_SQUARE(\"mdi2r-ruler-square\", \"F0CC2\"),\n    RULER_SQUARE_COMPASS(\"mdi2r-ruler-square-compass\", \"F0EBE\"),\n    RUN(\"mdi2r-run\", \"F070E\"),\n    RUN_FAST(\"mdi2r-run-fast\", \"F046E\"),\n    RV_TRUCK(\"mdi2r-rv-truck\", \"F11D4\");\n\n    public static MaterialDesignR findByDescription(String description) {\n        for (MaterialDesignR font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignR(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignRIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignRIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2r-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignR.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignRIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignRIkonProvider implements IkonProvider<MaterialDesignR> {\n    @Override\n    public Class<MaterialDesignR> getIkon() {\n        return MaterialDesignR.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignS.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignS implements Ikon {\n    SACK(\"mdi2s-sack\", \"F0D2E\"),\n    SACK_OUTLINE(\"mdi2s-sack-outline\", \"F1C4C\"),\n    SACK_PERCENT(\"mdi2s-sack-percent\", \"F0D2F\"),\n    SAFE(\"mdi2s-safe\", \"F0A6A\"),\n    SAFE_SQUARE(\"mdi2s-safe-square\", \"F127C\"),\n    SAFE_SQUARE_OUTLINE(\"mdi2s-safe-square-outline\", \"F127D\"),\n    SAFETY_GOGGLES(\"mdi2s-safety-goggles\", \"F0D30\"),\n    SAIL_BOAT(\"mdi2s-sail-boat\", \"F0EC8\"),\n    SAIL_BOAT_SINK(\"mdi2s-sail-boat-sink\", \"F1AEF\"),\n    SALE(\"mdi2s-sale\", \"F046F\"),\n    SALE_OUTLINE(\"mdi2s-sale-outline\", \"F1A06\"),\n    SALESFORCE(\"mdi2s-salesforce\", \"F088E\"),\n    SASS(\"mdi2s-sass\", \"F07EC\"),\n    SATELLITE(\"mdi2s-satellite\", \"F0470\"),\n    SATELLITE_UPLINK(\"mdi2s-satellite-uplink\", \"F0909\"),\n    SATELLITE_VARIANT(\"mdi2s-satellite-variant\", \"F0471\"),\n    SAUSAGE(\"mdi2s-sausage\", \"F08BA\"),\n    SAUSAGE_OFF(\"mdi2s-sausage-off\", \"F1789\"),\n    SAW_BLADE(\"mdi2s-saw-blade\", \"F0E61\"),\n    SAWTOOTH_WAVE(\"mdi2s-sawtooth-wave\", \"F147A\"),\n    SAXOPHONE(\"mdi2s-saxophone\", \"F0609\"),\n    SCALE(\"mdi2s-scale\", \"F0472\"),\n    SCALE_BALANCE(\"mdi2s-scale-balance\", \"F05D1\"),\n    SCALE_BATHROOM(\"mdi2s-scale-bathroom\", \"F0473\"),\n    SCALE_OFF(\"mdi2s-scale-off\", \"F105A\"),\n    SCALE_UNBALANCED(\"mdi2s-scale-unbalanced\", \"F19B8\"),\n    SCAN_HELPER(\"mdi2s-scan-helper\", \"F13D8\"),\n    SCANNER(\"mdi2s-scanner\", \"F06AB\"),\n    SCANNER_OFF(\"mdi2s-scanner-off\", \"F090A\"),\n    SCATTER_PLOT(\"mdi2s-scatter-plot\", \"F0EC9\"),\n    SCATTER_PLOT_OUTLINE(\"mdi2s-scatter-plot-outline\", \"F0ECA\"),\n    SCENT(\"mdi2s-scent\", \"F1958\"),\n    SCENT_OFF(\"mdi2s-scent-off\", \"F1959\"),\n    SCHOOL(\"mdi2s-school\", \"F0474\"),\n    SCHOOL_OUTLINE(\"mdi2s-school-outline\", \"F1180\"),\n    SCISSORS_CUTTING(\"mdi2s-scissors-cutting\", \"F0A6B\"),\n    SCOOTER(\"mdi2s-scooter\", \"F15BD\"),\n    SCOOTER_ELECTRIC(\"mdi2s-scooter-electric\", \"F15BE\"),\n    SCOREBOARD(\"mdi2s-scoreboard\", \"F127E\"),\n    SCOREBOARD_OUTLINE(\"mdi2s-scoreboard-outline\", \"F127F\"),\n    SCREEN_ROTATION(\"mdi2s-screen-rotation\", \"F0475\"),\n    SCREEN_ROTATION_LOCK(\"mdi2s-screen-rotation-lock\", \"F0478\"),\n    SCREW_FLAT_TOP(\"mdi2s-screw-flat-top\", \"F0DF3\"),\n    SCREW_LAG(\"mdi2s-screw-lag\", \"F0DF4\"),\n    SCREW_MACHINE_FLAT_TOP(\"mdi2s-screw-machine-flat-top\", \"F0DF5\"),\n    SCREW_MACHINE_ROUND_TOP(\"mdi2s-screw-machine-round-top\", \"F0DF6\"),\n    SCREW_ROUND_TOP(\"mdi2s-screw-round-top\", \"F0DF7\"),\n    SCREWDRIVER(\"mdi2s-screwdriver\", \"F0476\"),\n    SCRIPT(\"mdi2s-script\", \"F0BC1\"),\n    SCRIPT_OUTLINE(\"mdi2s-script-outline\", \"F0477\"),\n    SCRIPT_TEXT(\"mdi2s-script-text\", \"F0BC2\"),\n    SCRIPT_TEXT_KEY(\"mdi2s-script-text-key\", \"F1725\"),\n    SCRIPT_TEXT_KEY_OUTLINE(\"mdi2s-script-text-key-outline\", \"F1726\"),\n    SCRIPT_TEXT_OUTLINE(\"mdi2s-script-text-outline\", \"F0BC3\"),\n    SCRIPT_TEXT_PLAY(\"mdi2s-script-text-play\", \"F1727\"),\n    SCRIPT_TEXT_PLAY_OUTLINE(\"mdi2s-script-text-play-outline\", \"F1728\"),\n    SD(\"mdi2s-sd\", \"F0479\"),\n    SEAL(\"mdi2s-seal\", \"F047A\"),\n    SEAL_VARIANT(\"mdi2s-seal-variant\", \"F0FD9\"),\n    SEARCH_WEB(\"mdi2s-search-web\", \"F070F\"),\n    SEAT(\"mdi2s-seat\", \"F0CC3\"),\n    SEAT_FLAT(\"mdi2s-seat-flat\", \"F047B\"),\n    SEAT_FLAT_ANGLED(\"mdi2s-seat-flat-angled\", \"F047C\"),\n    SEAT_INDIVIDUAL_SUITE(\"mdi2s-seat-individual-suite\", \"F047D\"),\n    SEAT_LEGROOM_EXTRA(\"mdi2s-seat-legroom-extra\", \"F047E\"),\n    SEAT_LEGROOM_NORMAL(\"mdi2s-seat-legroom-normal\", \"F047F\"),\n    SEAT_LEGROOM_REDUCED(\"mdi2s-seat-legroom-reduced\", \"F0480\"),\n    SEAT_OUTLINE(\"mdi2s-seat-outline\", \"F0CC4\"),\n    SEAT_PASSENGER(\"mdi2s-seat-passenger\", \"F1249\"),\n    SEAT_RECLINE_EXTRA(\"mdi2s-seat-recline-extra\", \"F0481\"),\n    SEAT_RECLINE_NORMAL(\"mdi2s-seat-recline-normal\", \"F0482\"),\n    SEATBELT(\"mdi2s-seatbelt\", \"F0CC5\"),\n    SECURITY(\"mdi2s-security\", \"F0483\"),\n    SECURITY_NETWORK(\"mdi2s-security-network\", \"F0484\"),\n    SEED(\"mdi2s-seed\", \"F0E62\"),\n    SEED_OFF(\"mdi2s-seed-off\", \"F13FD\"),\n    SEED_OFF_OUTLINE(\"mdi2s-seed-off-outline\", \"F13FE\"),\n    SEED_OUTLINE(\"mdi2s-seed-outline\", \"F0E63\"),\n    SEED_PLUS(\"mdi2s-seed-plus\", \"F1A6D\"),\n    SEED_PLUS_OUTLINE(\"mdi2s-seed-plus-outline\", \"F1A6E\"),\n    SEESAW(\"mdi2s-seesaw\", \"F15A4\"),\n    SEGMENT(\"mdi2s-segment\", \"F0ECB\"),\n    SELECT(\"mdi2s-select\", \"F0485\"),\n    SELECT_ALL(\"mdi2s-select-all\", \"F0486\"),\n    SELECT_ARROW_DOWN(\"mdi2s-select-arrow-down\", \"F1B59\"),\n    SELECT_ARROW_UP(\"mdi2s-select-arrow-up\", \"F1B58\"),\n    SELECT_COLOR(\"mdi2s-select-color\", \"F0D31\"),\n    SELECT_COMPARE(\"mdi2s-select-compare\", \"F0AD9\"),\n    SELECT_DRAG(\"mdi2s-select-drag\", \"F0A6C\"),\n    SELECT_GROUP(\"mdi2s-select-group\", \"F0F82\"),\n    SELECT_INVERSE(\"mdi2s-select-inverse\", \"F0487\"),\n    SELECT_MARKER(\"mdi2s-select-marker\", \"F1280\"),\n    SELECT_MULTIPLE(\"mdi2s-select-multiple\", \"F1281\"),\n    SELECT_MULTIPLE_MARKER(\"mdi2s-select-multiple-marker\", \"F1282\"),\n    SELECT_OFF(\"mdi2s-select-off\", \"F0488\"),\n    SELECT_PLACE(\"mdi2s-select-place\", \"F0FDA\"),\n    SELECT_REMOVE(\"mdi2s-select-remove\", \"F17C1\"),\n    SELECT_SEARCH(\"mdi2s-select-search\", \"F1204\"),\n    SELECTION(\"mdi2s-selection\", \"F0489\"),\n    SELECTION_DRAG(\"mdi2s-selection-drag\", \"F0A6D\"),\n    SELECTION_ELLIPSE(\"mdi2s-selection-ellipse\", \"F0D32\"),\n    SELECTION_ELLIPSE_ARROW_INSIDE(\"mdi2s-selection-ellipse-arrow-inside\", \"F0F22\"),\n    SELECTION_ELLIPSE_REMOVE(\"mdi2s-selection-ellipse-remove\", \"F17C2\"),\n    SELECTION_MARKER(\"mdi2s-selection-marker\", \"F1283\"),\n    SELECTION_MULTIPLE(\"mdi2s-selection-multiple\", \"F1285\"),\n    SELECTION_MULTIPLE_MARKER(\"mdi2s-selection-multiple-marker\", \"F1284\"),\n    SELECTION_OFF(\"mdi2s-selection-off\", \"F0777\"),\n    SELECTION_REMOVE(\"mdi2s-selection-remove\", \"F17C3\"),\n    SELECTION_SEARCH(\"mdi2s-selection-search\", \"F1205\"),\n    SEMANTIC_WEB(\"mdi2s-semantic-web\", \"F1316\"),\n    SEND(\"mdi2s-send\", \"F048A\"),\n    SEND_CHECK(\"mdi2s-send-check\", \"F1161\"),\n    SEND_CHECK_OUTLINE(\"mdi2s-send-check-outline\", \"F1162\"),\n    SEND_CIRCLE(\"mdi2s-send-circle\", \"F0DF8\"),\n    SEND_CIRCLE_OUTLINE(\"mdi2s-send-circle-outline\", \"F0DF9\"),\n    SEND_CLOCK(\"mdi2s-send-clock\", \"F1163\"),\n    SEND_CLOCK_OUTLINE(\"mdi2s-send-clock-outline\", \"F1164\"),\n    SEND_LOCK(\"mdi2s-send-lock\", \"F07ED\"),\n    SEND_LOCK_OUTLINE(\"mdi2s-send-lock-outline\", \"F1166\"),\n    SEND_OUTLINE(\"mdi2s-send-outline\", \"F1165\"),\n    SEND_VARIANT(\"mdi2s-send-variant\", \"F1C4D\"),\n    SEND_VARIANT_CLOCK(\"mdi2s-send-variant-clock\", \"F1C7E\"),\n    SEND_VARIANT_CLOCK_OUTLINE(\"mdi2s-send-variant-clock-outline\", \"F1C7F\"),\n    SEND_VARIANT_OUTLINE(\"mdi2s-send-variant-outline\", \"F1C4E\"),\n    SERIAL_PORT(\"mdi2s-serial-port\", \"F065C\"),\n    SERVER(\"mdi2s-server\", \"F048B\"),\n    SERVER_MINUS(\"mdi2s-server-minus\", \"F048C\"),\n    SERVER_MINUS_OUTLINE(\"mdi2s-server-minus-outline\", \"F1C98\"),\n    SERVER_NETWORK(\"mdi2s-server-network\", \"F048D\"),\n    SERVER_NETWORK_OFF(\"mdi2s-server-network-off\", \"F048E\"),\n    SERVER_NETWORK_OUTLINE(\"mdi2s-server-network-outline\", \"F1C99\"),\n    SERVER_OFF(\"mdi2s-server-off\", \"F048F\"),\n    SERVER_OUTLINE(\"mdi2s-server-outline\", \"F1C9A\"),\n    SERVER_PLUS(\"mdi2s-server-plus\", \"F0490\"),\n    SERVER_PLUS_OUTLINE(\"mdi2s-server-plus-outline\", \"F1C9B\"),\n    SERVER_REMOVE(\"mdi2s-server-remove\", \"F0491\"),\n    SERVER_SECURITY(\"mdi2s-server-security\", \"F0492\"),\n    SET_ALL(\"mdi2s-set-all\", \"F0778\"),\n    SET_CENTER(\"mdi2s-set-center\", \"F0779\"),\n    SET_CENTER_RIGHT(\"mdi2s-set-center-right\", \"F077A\"),\n    SET_LEFT(\"mdi2s-set-left\", \"F077B\"),\n    SET_LEFT_CENTER(\"mdi2s-set-left-center\", \"F077C\"),\n    SET_LEFT_RIGHT(\"mdi2s-set-left-right\", \"F077D\"),\n    SET_MERGE(\"mdi2s-set-merge\", \"F14E0\"),\n    SET_NONE(\"mdi2s-set-none\", \"F077E\"),\n    SET_RIGHT(\"mdi2s-set-right\", \"F077F\"),\n    SET_SPLIT(\"mdi2s-set-split\", \"F14E1\"),\n    SET_SQUARE(\"mdi2s-set-square\", \"F145D\"),\n    SET_TOP_BOX(\"mdi2s-set-top-box\", \"F099F\"),\n    SETTINGS_HELPER(\"mdi2s-settings-helper\", \"F0A6E\"),\n    SHAKER(\"mdi2s-shaker\", \"F110E\"),\n    SHAKER_OUTLINE(\"mdi2s-shaker-outline\", \"F110F\"),\n    SHAPE(\"mdi2s-shape\", \"F0831\"),\n    SHAPE_CIRCLE_PLUS(\"mdi2s-shape-circle-plus\", \"F065D\"),\n    SHAPE_OUTLINE(\"mdi2s-shape-outline\", \"F0832\"),\n    SHAPE_OVAL_PLUS(\"mdi2s-shape-oval-plus\", \"F11FA\"),\n    SHAPE_PLUS(\"mdi2s-shape-plus\", \"F0495\"),\n    SHAPE_PLUS_OUTLINE(\"mdi2s-shape-plus-outline\", \"F1C4F\"),\n    SHAPE_POLYGON_PLUS(\"mdi2s-shape-polygon-plus\", \"F065E\"),\n    SHAPE_RECTANGLE_PLUS(\"mdi2s-shape-rectangle-plus\", \"F065F\"),\n    SHAPE_SQUARE_PLUS(\"mdi2s-shape-square-plus\", \"F0660\"),\n    SHAPE_SQUARE_ROUNDED_PLUS(\"mdi2s-shape-square-rounded-plus\", \"F14FA\"),\n    SHARE(\"mdi2s-share\", \"F0496\"),\n    SHARE_ALL(\"mdi2s-share-all\", \"F11F4\"),\n    SHARE_ALL_OUTLINE(\"mdi2s-share-all-outline\", \"F11F5\"),\n    SHARE_CIRCLE(\"mdi2s-share-circle\", \"F11AD\"),\n    SHARE_OFF(\"mdi2s-share-off\", \"F0F23\"),\n    SHARE_OFF_OUTLINE(\"mdi2s-share-off-outline\", \"F0F24\"),\n    SHARE_OUTLINE(\"mdi2s-share-outline\", \"F0932\"),\n    SHARE_VARIANT(\"mdi2s-share-variant\", \"F0497\"),\n    SHARE_VARIANT_OUTLINE(\"mdi2s-share-variant-outline\", \"F1514\"),\n    SHARK(\"mdi2s-shark\", \"F18BA\"),\n    SHARK_FIN(\"mdi2s-shark-fin\", \"F1673\"),\n    SHARK_FIN_OUTLINE(\"mdi2s-shark-fin-outline\", \"F1674\"),\n    SHARK_OFF(\"mdi2s-shark-off\", \"F18BB\"),\n    SHEEP(\"mdi2s-sheep\", \"F0CC6\"),\n    SHIELD(\"mdi2s-shield\", \"F0498\"),\n    SHIELD_ACCOUNT(\"mdi2s-shield-account\", \"F088F\"),\n    SHIELD_ACCOUNT_OUTLINE(\"mdi2s-shield-account-outline\", \"F0A12\"),\n    SHIELD_ACCOUNT_VARIANT(\"mdi2s-shield-account-variant\", \"F15A7\"),\n    SHIELD_ACCOUNT_VARIANT_OUTLINE(\"mdi2s-shield-account-variant-outline\", \"F15A8\"),\n    SHIELD_AIRPLANE(\"mdi2s-shield-airplane\", \"F06BB\"),\n    SHIELD_AIRPLANE_OUTLINE(\"mdi2s-shield-airplane-outline\", \"F0CC7\"),\n    SHIELD_ALERT(\"mdi2s-shield-alert\", \"F0ECC\"),\n    SHIELD_ALERT_OUTLINE(\"mdi2s-shield-alert-outline\", \"F0ECD\"),\n    SHIELD_BUG(\"mdi2s-shield-bug\", \"F13DA\"),\n    SHIELD_BUG_OUTLINE(\"mdi2s-shield-bug-outline\", \"F13DB\"),\n    SHIELD_CAR(\"mdi2s-shield-car\", \"F0F83\"),\n    SHIELD_CHECK(\"mdi2s-shield-check\", \"F0565\"),\n    SHIELD_CHECK_OUTLINE(\"mdi2s-shield-check-outline\", \"F0CC8\"),\n    SHIELD_CROSS(\"mdi2s-shield-cross\", \"F0CC9\"),\n    SHIELD_CROSS_OUTLINE(\"mdi2s-shield-cross-outline\", \"F0CCA\"),\n    SHIELD_CROWN(\"mdi2s-shield-crown\", \"F18BC\"),\n    SHIELD_CROWN_OUTLINE(\"mdi2s-shield-crown-outline\", \"F18BD\"),\n    SHIELD_EDIT(\"mdi2s-shield-edit\", \"F11A0\"),\n    SHIELD_EDIT_OUTLINE(\"mdi2s-shield-edit-outline\", \"F11A1\"),\n    SHIELD_HALF(\"mdi2s-shield-half\", \"F1360\"),\n    SHIELD_HALF_FULL(\"mdi2s-shield-half-full\", \"F0780\"),\n    SHIELD_HOME(\"mdi2s-shield-home\", \"F068A\"),\n    SHIELD_HOME_OUTLINE(\"mdi2s-shield-home-outline\", \"F0CCB\"),\n    SHIELD_KEY(\"mdi2s-shield-key\", \"F0BC4\"),\n    SHIELD_KEY_OUTLINE(\"mdi2s-shield-key-outline\", \"F0BC5\"),\n    SHIELD_LINK_VARIANT(\"mdi2s-shield-link-variant\", \"F0D33\"),\n    SHIELD_LINK_VARIANT_OUTLINE(\"mdi2s-shield-link-variant-outline\", \"F0D34\"),\n    SHIELD_LOCK(\"mdi2s-shield-lock\", \"F099D\"),\n    SHIELD_LOCK_OPEN(\"mdi2s-shield-lock-open\", \"F199A\"),\n    SHIELD_LOCK_OPEN_OUTLINE(\"mdi2s-shield-lock-open-outline\", \"F199B\"),\n    SHIELD_LOCK_OUTLINE(\"mdi2s-shield-lock-outline\", \"F0CCC\"),\n    SHIELD_MOON(\"mdi2s-shield-moon\", \"F1828\"),\n    SHIELD_MOON_OUTLINE(\"mdi2s-shield-moon-outline\", \"F1829\"),\n    SHIELD_OFF(\"mdi2s-shield-off\", \"F099E\"),\n    SHIELD_OFF_OUTLINE(\"mdi2s-shield-off-outline\", \"F099C\"),\n    SHIELD_OUTLINE(\"mdi2s-shield-outline\", \"F0499\"),\n    SHIELD_PLUS(\"mdi2s-shield-plus\", \"F0ADA\"),\n    SHIELD_PLUS_OUTLINE(\"mdi2s-shield-plus-outline\", \"F0ADB\"),\n    SHIELD_REFRESH(\"mdi2s-shield-refresh\", \"F00AA\"),\n    SHIELD_REFRESH_OUTLINE(\"mdi2s-shield-refresh-outline\", \"F01E0\"),\n    SHIELD_REMOVE(\"mdi2s-shield-remove\", \"F0ADC\"),\n    SHIELD_REMOVE_OUTLINE(\"mdi2s-shield-remove-outline\", \"F0ADD\"),\n    SHIELD_SEARCH(\"mdi2s-shield-search\", \"F0D9A\"),\n    SHIELD_STAR(\"mdi2s-shield-star\", \"F113B\"),\n    SHIELD_STAR_OUTLINE(\"mdi2s-shield-star-outline\", \"F113C\"),\n    SHIELD_SUN(\"mdi2s-shield-sun\", \"F105D\"),\n    SHIELD_SUN_OUTLINE(\"mdi2s-shield-sun-outline\", \"F105E\"),\n    SHIELD_SWORD(\"mdi2s-shield-sword\", \"F18BE\"),\n    SHIELD_SWORD_OUTLINE(\"mdi2s-shield-sword-outline\", \"F18BF\"),\n    SHIELD_SYNC(\"mdi2s-shield-sync\", \"F11A2\"),\n    SHIELD_SYNC_OUTLINE(\"mdi2s-shield-sync-outline\", \"F11A3\"),\n    SHIMMER(\"mdi2s-shimmer\", \"F1545\"),\n    SHIP_WHEEL(\"mdi2s-ship-wheel\", \"F0833\"),\n    SHIPPING_PALLET(\"mdi2s-shipping-pallet\", \"F184E\"),\n    SHOE_BALLET(\"mdi2s-shoe-ballet\", \"F15CA\"),\n    SHOE_CLEAT(\"mdi2s-shoe-cleat\", \"F15C7\"),\n    SHOE_FORMAL(\"mdi2s-shoe-formal\", \"F0B47\"),\n    SHOE_HEEL(\"mdi2s-shoe-heel\", \"F0B48\"),\n    SHOE_PRINT(\"mdi2s-shoe-print\", \"F0DFA\"),\n    SHOE_SNEAKER(\"mdi2s-shoe-sneaker\", \"F15C8\"),\n    SHOPPING(\"mdi2s-shopping\", \"F049A\"),\n    SHOPPING_MUSIC(\"mdi2s-shopping-music\", \"F049B\"),\n    SHOPPING_OUTLINE(\"mdi2s-shopping-outline\", \"F11D5\"),\n    SHOPPING_SEARCH(\"mdi2s-shopping-search\", \"F0F84\"),\n    SHOPPING_SEARCH_OUTLINE(\"mdi2s-shopping-search-outline\", \"F1A6F\"),\n    SHORE(\"mdi2s-shore\", \"F14F9\"),\n    SHOVEL(\"mdi2s-shovel\", \"F0710\"),\n    SHOVEL_OFF(\"mdi2s-shovel-off\", \"F0711\"),\n    SHOWER(\"mdi2s-shower\", \"F09A0\"),\n    SHOWER_HEAD(\"mdi2s-shower-head\", \"F09A1\"),\n    SHREDDER(\"mdi2s-shredder\", \"F049C\"),\n    SHUFFLE(\"mdi2s-shuffle\", \"F049D\"),\n    SHUFFLE_DISABLED(\"mdi2s-shuffle-disabled\", \"F049E\"),\n    SHUFFLE_VARIANT(\"mdi2s-shuffle-variant\", \"F049F\"),\n    SHURIKEN(\"mdi2s-shuriken\", \"F137F\"),\n    SICKLE(\"mdi2s-sickle\", \"F18C0\"),\n    SIGMA(\"mdi2s-sigma\", \"F04A0\"),\n    SIGMA_LOWER(\"mdi2s-sigma-lower\", \"F062B\"),\n    SIGN_CAUTION(\"mdi2s-sign-caution\", \"F04A1\"),\n    SIGN_DIRECTION(\"mdi2s-sign-direction\", \"F0781\"),\n    SIGN_DIRECTION_MINUS(\"mdi2s-sign-direction-minus\", \"F1000\"),\n    SIGN_DIRECTION_PLUS(\"mdi2s-sign-direction-plus\", \"F0FDC\"),\n    SIGN_DIRECTION_REMOVE(\"mdi2s-sign-direction-remove\", \"F0FDD\"),\n    SIGN_LANGUAGE(\"mdi2s-sign-language\", \"F1B4D\"),\n    SIGN_LANGUAGE_OUTLINE(\"mdi2s-sign-language-outline\", \"F1B4E\"),\n    SIGN_POLE(\"mdi2s-sign-pole\", \"F14F8\"),\n    SIGN_REAL_ESTATE(\"mdi2s-sign-real-estate\", \"F1118\"),\n    SIGN_TEXT(\"mdi2s-sign-text\", \"F0782\"),\n    SIGN_YIELD(\"mdi2s-sign-yield\", \"F1BAF\"),\n    SIGNAL(\"mdi2s-signal\", \"F04A2\"),\n    SIGNAL_2G(\"mdi2s-signal-2g\", \"F0712\"),\n    SIGNAL_3G(\"mdi2s-signal-3g\", \"F0713\"),\n    SIGNAL_4G(\"mdi2s-signal-4g\", \"F0714\"),\n    SIGNAL_5G(\"mdi2s-signal-5g\", \"F0A6F\"),\n    SIGNAL_CELLULAR_1(\"mdi2s-signal-cellular-1\", \"F08BC\"),\n    SIGNAL_CELLULAR_2(\"mdi2s-signal-cellular-2\", \"F08BD\"),\n    SIGNAL_CELLULAR_3(\"mdi2s-signal-cellular-3\", \"F08BE\"),\n    SIGNAL_CELLULAR_OUTLINE(\"mdi2s-signal-cellular-outline\", \"F08BF\"),\n    SIGNAL_DISTANCE_VARIANT(\"mdi2s-signal-distance-variant\", \"F0E64\"),\n    SIGNAL_HSPA(\"mdi2s-signal-hspa\", \"F0715\"),\n    SIGNAL_HSPA_PLUS(\"mdi2s-signal-hspa-plus\", \"F0716\"),\n    SIGNAL_OFF(\"mdi2s-signal-off\", \"F0783\"),\n    SIGNAL_VARIANT(\"mdi2s-signal-variant\", \"F060A\"),\n    SIGNATURE(\"mdi2s-signature\", \"F0DFB\"),\n    SIGNATURE_FREEHAND(\"mdi2s-signature-freehand\", \"F0DFC\"),\n    SIGNATURE_IMAGE(\"mdi2s-signature-image\", \"F0DFD\"),\n    SIGNATURE_TEXT(\"mdi2s-signature-text\", \"F0DFE\"),\n    SILO(\"mdi2s-silo\", \"F1B9F\"),\n    SILO_OUTLINE(\"mdi2s-silo-outline\", \"F0B49\"),\n    SILVERWARE(\"mdi2s-silverware\", \"F04A3\"),\n    SILVERWARE_CLEAN(\"mdi2s-silverware-clean\", \"F0FDE\"),\n    SILVERWARE_FORK(\"mdi2s-silverware-fork\", \"F04A4\"),\n    SILVERWARE_FORK_KNIFE(\"mdi2s-silverware-fork-knife\", \"F0A70\"),\n    SILVERWARE_SPOON(\"mdi2s-silverware-spoon\", \"F04A5\"),\n    SILVERWARE_VARIANT(\"mdi2s-silverware-variant\", \"F04A6\"),\n    SIM(\"mdi2s-sim\", \"F04A7\"),\n    SIM_ALERT(\"mdi2s-sim-alert\", \"F04A8\"),\n    SIM_ALERT_OUTLINE(\"mdi2s-sim-alert-outline\", \"F15D3\"),\n    SIM_OFF(\"mdi2s-sim-off\", \"F04A9\"),\n    SIM_OFF_OUTLINE(\"mdi2s-sim-off-outline\", \"F15D4\"),\n    SIM_OUTLINE(\"mdi2s-sim-outline\", \"F15D5\"),\n    SIMPLE_ICONS(\"mdi2s-simple-icons\", \"F131D\"),\n    SINA_WEIBO(\"mdi2s-sina-weibo\", \"F0ADF\"),\n    SINE_WAVE(\"mdi2s-sine-wave\", \"F095B\"),\n    SITEMAP(\"mdi2s-sitemap\", \"F04AA\"),\n    SITEMAP_OUTLINE(\"mdi2s-sitemap-outline\", \"F199C\"),\n    SIZE_L(\"mdi2s-size-l\", \"F13A6\"),\n    SIZE_M(\"mdi2s-size-m\", \"F13A5\"),\n    SIZE_S(\"mdi2s-size-s\", \"F13A4\"),\n    SIZE_XL(\"mdi2s-size-xl\", \"F13A7\"),\n    SIZE_XS(\"mdi2s-size-xs\", \"F13A3\"),\n    SIZE_XXL(\"mdi2s-size-xxl\", \"F13A8\"),\n    SIZE_XXS(\"mdi2s-size-xxs\", \"F13A2\"),\n    SIZE_XXXL(\"mdi2s-size-xxxl\", \"F13A9\"),\n    SKATE(\"mdi2s-skate\", \"F0D35\"),\n    SKATE_OFF(\"mdi2s-skate-off\", \"F0699\"),\n    SKATEBOARD(\"mdi2s-skateboard\", \"F14C2\"),\n    SKATEBOARDING(\"mdi2s-skateboarding\", \"F0501\"),\n    SKEW_LESS(\"mdi2s-skew-less\", \"F0D36\"),\n    SKEW_MORE(\"mdi2s-skew-more\", \"F0D37\"),\n    SKI(\"mdi2s-ski\", \"F1304\"),\n    SKI_CROSS_COUNTRY(\"mdi2s-ski-cross-country\", \"F1305\"),\n    SKI_WATER(\"mdi2s-ski-water\", \"F1306\"),\n    SKIP_BACKWARD(\"mdi2s-skip-backward\", \"F04AB\"),\n    SKIP_BACKWARD_OUTLINE(\"mdi2s-skip-backward-outline\", \"F0F25\"),\n    SKIP_FORWARD(\"mdi2s-skip-forward\", \"F04AC\"),\n    SKIP_FORWARD_OUTLINE(\"mdi2s-skip-forward-outline\", \"F0F26\"),\n    SKIP_NEXT(\"mdi2s-skip-next\", \"F04AD\"),\n    SKIP_NEXT_CIRCLE(\"mdi2s-skip-next-circle\", \"F0661\"),\n    SKIP_NEXT_CIRCLE_OUTLINE(\"mdi2s-skip-next-circle-outline\", \"F0662\"),\n    SKIP_NEXT_OUTLINE(\"mdi2s-skip-next-outline\", \"F0F27\"),\n    SKIP_PREVIOUS(\"mdi2s-skip-previous\", \"F04AE\"),\n    SKIP_PREVIOUS_CIRCLE(\"mdi2s-skip-previous-circle\", \"F0663\"),\n    SKIP_PREVIOUS_CIRCLE_OUTLINE(\"mdi2s-skip-previous-circle-outline\", \"F0664\"),\n    SKIP_PREVIOUS_OUTLINE(\"mdi2s-skip-previous-outline\", \"F0F28\"),\n    SKULL(\"mdi2s-skull\", \"F068C\"),\n    SKULL_CROSSBONES(\"mdi2s-skull-crossbones\", \"F0BC6\"),\n    SKULL_CROSSBONES_OUTLINE(\"mdi2s-skull-crossbones-outline\", \"F0BC7\"),\n    SKULL_OUTLINE(\"mdi2s-skull-outline\", \"F0BC8\"),\n    SKULL_SCAN(\"mdi2s-skull-scan\", \"F14C7\"),\n    SKULL_SCAN_OUTLINE(\"mdi2s-skull-scan-outline\", \"F14C8\"),\n    SKYPE(\"mdi2s-skype\", \"F04AF\"),\n    SKYPE_BUSINESS(\"mdi2s-skype-business\", \"F04B0\"),\n    SLACK(\"mdi2s-slack\", \"F04B1\"),\n    SLASH_FORWARD(\"mdi2s-slash-forward\", \"F0FDF\"),\n    SLASH_FORWARD_BOX(\"mdi2s-slash-forward-box\", \"F0FE0\"),\n    SLEDDING(\"mdi2s-sledding\", \"F041B\"),\n    SLEEP(\"mdi2s-sleep\", \"F04B2\"),\n    SLEEP_OFF(\"mdi2s-sleep-off\", \"F04B3\"),\n    SLIDE(\"mdi2s-slide\", \"F15A5\"),\n    SLOPE_DOWNHILL(\"mdi2s-slope-downhill\", \"F0DFF\"),\n    SLOPE_UPHILL(\"mdi2s-slope-uphill\", \"F0E00\"),\n    SLOT_MACHINE(\"mdi2s-slot-machine\", \"F1114\"),\n    SLOT_MACHINE_OUTLINE(\"mdi2s-slot-machine-outline\", \"F1115\"),\n    SMART_CARD(\"mdi2s-smart-card\", \"F10BD\"),\n    SMART_CARD_OFF(\"mdi2s-smart-card-off\", \"F18F7\"),\n    SMART_CARD_OFF_OUTLINE(\"mdi2s-smart-card-off-outline\", \"F18F8\"),\n    SMART_CARD_OUTLINE(\"mdi2s-smart-card-outline\", \"F10BE\"),\n    SMART_CARD_READER(\"mdi2s-smart-card-reader\", \"F10BF\"),\n    SMART_CARD_READER_OUTLINE(\"mdi2s-smart-card-reader-outline\", \"F10C0\"),\n    SMOG(\"mdi2s-smog\", \"F0A71\"),\n    SMOKE(\"mdi2s-smoke\", \"F1799\"),\n    SMOKE_DETECTOR(\"mdi2s-smoke-detector\", \"F0392\"),\n    SMOKE_DETECTOR_ALERT(\"mdi2s-smoke-detector-alert\", \"F192E\"),\n    SMOKE_DETECTOR_ALERT_OUTLINE(\"mdi2s-smoke-detector-alert-outline\", \"F192F\"),\n    SMOKE_DETECTOR_OFF(\"mdi2s-smoke-detector-off\", \"F1809\"),\n    SMOKE_DETECTOR_OFF_OUTLINE(\"mdi2s-smoke-detector-off-outline\", \"F180A\"),\n    SMOKE_DETECTOR_OUTLINE(\"mdi2s-smoke-detector-outline\", \"F1808\"),\n    SMOKE_DETECTOR_VARIANT(\"mdi2s-smoke-detector-variant\", \"F180B\"),\n    SMOKE_DETECTOR_VARIANT_ALERT(\"mdi2s-smoke-detector-variant-alert\", \"F1930\"),\n    SMOKE_DETECTOR_VARIANT_OFF(\"mdi2s-smoke-detector-variant-off\", \"F180C\"),\n    SMOKING(\"mdi2s-smoking\", \"F04B4\"),\n    SMOKING_OFF(\"mdi2s-smoking-off\", \"F04B5\"),\n    SMOKING_PIPE(\"mdi2s-smoking-pipe\", \"F140D\"),\n    SMOKING_PIPE_OFF(\"mdi2s-smoking-pipe-off\", \"F1428\"),\n    SNAIL(\"mdi2s-snail\", \"F1677\"),\n    SNAKE(\"mdi2s-snake\", \"F150E\"),\n    SNAPCHAT(\"mdi2s-snapchat\", \"F04B6\"),\n    SNOWBOARD(\"mdi2s-snowboard\", \"F1307\"),\n    SNOWFLAKE(\"mdi2s-snowflake\", \"F0717\"),\n    SNOWFLAKE_ALERT(\"mdi2s-snowflake-alert\", \"F0F29\"),\n    SNOWFLAKE_CHECK(\"mdi2s-snowflake-check\", \"F1A70\"),\n    SNOWFLAKE_MELT(\"mdi2s-snowflake-melt\", \"F12CB\"),\n    SNOWFLAKE_OFF(\"mdi2s-snowflake-off\", \"F14E3\"),\n    SNOWFLAKE_THERMOMETER(\"mdi2s-snowflake-thermometer\", \"F1A71\"),\n    SNOWFLAKE_VARIANT(\"mdi2s-snowflake-variant\", \"F0F2A\"),\n    SNOWMAN(\"mdi2s-snowman\", \"F04B7\"),\n    SNOWMOBILE(\"mdi2s-snowmobile\", \"F06DD\"),\n    SNOWSHOEING(\"mdi2s-snowshoeing\", \"F1A72\"),\n    SOCCER(\"mdi2s-soccer\", \"F04B8\"),\n    SOCCER_FIELD(\"mdi2s-soccer-field\", \"F0834\"),\n    SOCIAL_DISTANCE_2_METERS(\"mdi2s-social-distance-2-meters\", \"F1579\"),\n    SOCIAL_DISTANCE_6_FEET(\"mdi2s-social-distance-6-feet\", \"F157A\"),\n    SOFA(\"mdi2s-sofa\", \"F04B9\"),\n    SOFA_OUTLINE(\"mdi2s-sofa-outline\", \"F156D\"),\n    SOFA_SINGLE(\"mdi2s-sofa-single\", \"F156E\"),\n    SOFA_SINGLE_OUTLINE(\"mdi2s-sofa-single-outline\", \"F156F\"),\n    SOLAR_PANEL(\"mdi2s-solar-panel\", \"F0D9B\"),\n    SOLAR_PANEL_LARGE(\"mdi2s-solar-panel-large\", \"F0D9C\"),\n    SOLAR_POWER(\"mdi2s-solar-power\", \"F0A72\"),\n    SOLAR_POWER_VARIANT(\"mdi2s-solar-power-variant\", \"F1A73\"),\n    SOLAR_POWER_VARIANT_OUTLINE(\"mdi2s-solar-power-variant-outline\", \"F1A74\"),\n    SOLDERING_IRON(\"mdi2s-soldering-iron\", \"F1092\"),\n    SOLID(\"mdi2s-solid\", \"F068D\"),\n    SONY_PLAYSTATION(\"mdi2s-sony-playstation\", \"F0414\"),\n    SORT(\"mdi2s-sort\", \"F04BA\"),\n    SORT_ALPHABETICAL_ASCENDING(\"mdi2s-sort-alphabetical-ascending\", \"F05BD\"),\n    SORT_ALPHABETICAL_ASCENDING_VARIANT(\"mdi2s-sort-alphabetical-ascending-variant\", \"F1148\"),\n    SORT_ALPHABETICAL_DESCENDING(\"mdi2s-sort-alphabetical-descending\", \"F05BF\"),\n    SORT_ALPHABETICAL_DESCENDING_VARIANT(\"mdi2s-sort-alphabetical-descending-variant\", \"F1149\"),\n    SORT_ALPHABETICAL_VARIANT(\"mdi2s-sort-alphabetical-variant\", \"F04BB\"),\n    SORT_ASCENDING(\"mdi2s-sort-ascending\", \"F04BC\"),\n    SORT_BOOL_ASCENDING(\"mdi2s-sort-bool-ascending\", \"F1385\"),\n    SORT_BOOL_ASCENDING_VARIANT(\"mdi2s-sort-bool-ascending-variant\", \"F1386\"),\n    SORT_BOOL_DESCENDING(\"mdi2s-sort-bool-descending\", \"F1387\"),\n    SORT_BOOL_DESCENDING_VARIANT(\"mdi2s-sort-bool-descending-variant\", \"F1388\"),\n    SORT_CALENDAR_ASCENDING(\"mdi2s-sort-calendar-ascending\", \"F1547\"),\n    SORT_CALENDAR_DESCENDING(\"mdi2s-sort-calendar-descending\", \"F1548\"),\n    SORT_CLOCK_ASCENDING(\"mdi2s-sort-clock-ascending\", \"F1549\"),\n    SORT_CLOCK_ASCENDING_OUTLINE(\"mdi2s-sort-clock-ascending-outline\", \"F154A\"),\n    SORT_CLOCK_DESCENDING(\"mdi2s-sort-clock-descending\", \"F154B\"),\n    SORT_CLOCK_DESCENDING_OUTLINE(\"mdi2s-sort-clock-descending-outline\", \"F154C\"),\n    SORT_DESCENDING(\"mdi2s-sort-descending\", \"F04BD\"),\n    SORT_NUMERIC_ASCENDING(\"mdi2s-sort-numeric-ascending\", \"F1389\"),\n    SORT_NUMERIC_ASCENDING_VARIANT(\"mdi2s-sort-numeric-ascending-variant\", \"F090D\"),\n    SORT_NUMERIC_DESCENDING(\"mdi2s-sort-numeric-descending\", \"F138A\"),\n    SORT_NUMERIC_DESCENDING_VARIANT(\"mdi2s-sort-numeric-descending-variant\", \"F0AD2\"),\n    SORT_NUMERIC_VARIANT(\"mdi2s-sort-numeric-variant\", \"F04BE\"),\n    SORT_REVERSE_VARIANT(\"mdi2s-sort-reverse-variant\", \"F033C\"),\n    SORT_VARIANT(\"mdi2s-sort-variant\", \"F04BF\"),\n    SORT_VARIANT_LOCK(\"mdi2s-sort-variant-lock\", \"F0CCD\"),\n    SORT_VARIANT_LOCK_OPEN(\"mdi2s-sort-variant-lock-open\", \"F0CCE\"),\n    SORT_VARIANT_OFF(\"mdi2s-sort-variant-off\", \"F1ABB\"),\n    SORT_VARIANT_REMOVE(\"mdi2s-sort-variant-remove\", \"F1147\"),\n    SOUNDBAR(\"mdi2s-soundbar\", \"F17DB\"),\n    SOUNDCLOUD(\"mdi2s-soundcloud\", \"F04C0\"),\n    SOURCE_BRANCH(\"mdi2s-source-branch\", \"F062C\"),\n    SOURCE_BRANCH_CHECK(\"mdi2s-source-branch-check\", \"F14CF\"),\n    SOURCE_BRANCH_MINUS(\"mdi2s-source-branch-minus\", \"F14CB\"),\n    SOURCE_BRANCH_PLUS(\"mdi2s-source-branch-plus\", \"F14CA\"),\n    SOURCE_BRANCH_REFRESH(\"mdi2s-source-branch-refresh\", \"F14CD\"),\n    SOURCE_BRANCH_REMOVE(\"mdi2s-source-branch-remove\", \"F14CC\"),\n    SOURCE_BRANCH_SYNC(\"mdi2s-source-branch-sync\", \"F14CE\"),\n    SOURCE_COMMIT(\"mdi2s-source-commit\", \"F0718\"),\n    SOURCE_COMMIT_END(\"mdi2s-source-commit-end\", \"F0719\"),\n    SOURCE_COMMIT_END_LOCAL(\"mdi2s-source-commit-end-local\", \"F071A\"),\n    SOURCE_COMMIT_LOCAL(\"mdi2s-source-commit-local\", \"F071B\"),\n    SOURCE_COMMIT_NEXT_LOCAL(\"mdi2s-source-commit-next-local\", \"F071C\"),\n    SOURCE_COMMIT_START(\"mdi2s-source-commit-start\", \"F071D\"),\n    SOURCE_COMMIT_START_NEXT_LOCAL(\"mdi2s-source-commit-start-next-local\", \"F071E\"),\n    SOURCE_FORK(\"mdi2s-source-fork\", \"F04C1\"),\n    SOURCE_MERGE(\"mdi2s-source-merge\", \"F062D\"),\n    SOURCE_PULL(\"mdi2s-source-pull\", \"F04C2\"),\n    SOURCE_REPOSITORY(\"mdi2s-source-repository\", \"F0CCF\"),\n    SOURCE_REPOSITORY_MULTIPLE(\"mdi2s-source-repository-multiple\", \"F0CD0\"),\n    SOY_SAUCE(\"mdi2s-soy-sauce\", \"F07EE\"),\n    SOY_SAUCE_OFF(\"mdi2s-soy-sauce-off\", \"F13FC\"),\n    SPA(\"mdi2s-spa\", \"F0CD1\"),\n    SPA_OUTLINE(\"mdi2s-spa-outline\", \"F0CD2\"),\n    SPACE_INVADERS(\"mdi2s-space-invaders\", \"F0BC9\"),\n    SPACE_STATION(\"mdi2s-space-station\", \"F1383\"),\n    SPADE(\"mdi2s-spade\", \"F0E65\"),\n    SPEAKER(\"mdi2s-speaker\", \"F04C3\"),\n    SPEAKER_BLUETOOTH(\"mdi2s-speaker-bluetooth\", \"F09A2\"),\n    SPEAKER_MESSAGE(\"mdi2s-speaker-message\", \"F1B11\"),\n    SPEAKER_MULTIPLE(\"mdi2s-speaker-multiple\", \"F0D38\"),\n    SPEAKER_OFF(\"mdi2s-speaker-off\", \"F04C4\"),\n    SPEAKER_PAUSE(\"mdi2s-speaker-pause\", \"F1B73\"),\n    SPEAKER_PLAY(\"mdi2s-speaker-play\", \"F1B72\"),\n    SPEAKER_STOP(\"mdi2s-speaker-stop\", \"F1B74\"),\n    SPEAKER_WIRELESS(\"mdi2s-speaker-wireless\", \"F071F\"),\n    SPEAR(\"mdi2s-spear\", \"F1845\"),\n    SPEEDOMETER(\"mdi2s-speedometer\", \"F04C5\"),\n    SPEEDOMETER_MEDIUM(\"mdi2s-speedometer-medium\", \"F0F85\"),\n    SPEEDOMETER_SLOW(\"mdi2s-speedometer-slow\", \"F0F86\"),\n    SPELLCHECK(\"mdi2s-spellcheck\", \"F04C6\"),\n    SPHERE(\"mdi2s-sphere\", \"F1954\"),\n    SPHERE_OFF(\"mdi2s-sphere-off\", \"F1955\"),\n    SPIDER(\"mdi2s-spider\", \"F11EA\"),\n    SPIDER_OUTLINE(\"mdi2s-spider-outline\", \"F1C75\"),\n    SPIDER_THREAD(\"mdi2s-spider-thread\", \"F11EB\"),\n    SPIDER_WEB(\"mdi2s-spider-web\", \"F0BCA\"),\n    SPIRIT_LEVEL(\"mdi2s-spirit-level\", \"F14F1\"),\n    SPOON_SUGAR(\"mdi2s-spoon-sugar\", \"F1429\"),\n    SPOTIFY(\"mdi2s-spotify\", \"F04C7\"),\n    SPOTLIGHT(\"mdi2s-spotlight\", \"F04C8\"),\n    SPOTLIGHT_BEAM(\"mdi2s-spotlight-beam\", \"F04C9\"),\n    SPRAY(\"mdi2s-spray\", \"F0665\"),\n    SPRAY_BOTTLE(\"mdi2s-spray-bottle\", \"F0AE0\"),\n    SPRINKLER(\"mdi2s-sprinkler\", \"F105F\"),\n    SPRINKLER_FIRE(\"mdi2s-sprinkler-fire\", \"F199D\"),\n    SPRINKLER_VARIANT(\"mdi2s-sprinkler-variant\", \"F1060\"),\n    SPROUT(\"mdi2s-sprout\", \"F0E66\"),\n    SPROUT_OUTLINE(\"mdi2s-sprout-outline\", \"F0E67\"),\n    SQUARE(\"mdi2s-square\", \"F0764\"),\n    SQUARE_CIRCLE(\"mdi2s-square-circle\", \"F1500\"),\n    SQUARE_CIRCLE_OUTLINE(\"mdi2s-square-circle-outline\", \"F1C50\"),\n    SQUARE_EDIT_OUTLINE(\"mdi2s-square-edit-outline\", \"F090C\"),\n    SQUARE_MEDIUM(\"mdi2s-square-medium\", \"F0A13\"),\n    SQUARE_MEDIUM_OUTLINE(\"mdi2s-square-medium-outline\", \"F0A14\"),\n    SQUARE_OFF(\"mdi2s-square-off\", \"F12EE\"),\n    SQUARE_OFF_OUTLINE(\"mdi2s-square-off-outline\", \"F12EF\"),\n    SQUARE_OPACITY(\"mdi2s-square-opacity\", \"F1854\"),\n    SQUARE_OUTLINE(\"mdi2s-square-outline\", \"F0763\"),\n    SQUARE_ROOT(\"mdi2s-square-root\", \"F0784\"),\n    SQUARE_ROOT_BOX(\"mdi2s-square-root-box\", \"F09A3\"),\n    SQUARE_ROUNDED(\"mdi2s-square-rounded\", \"F14FB\"),\n    SQUARE_ROUNDED_BADGE(\"mdi2s-square-rounded-badge\", \"F1A07\"),\n    SQUARE_ROUNDED_BADGE_OUTLINE(\"mdi2s-square-rounded-badge-outline\", \"F1A08\"),\n    SQUARE_ROUNDED_OUTLINE(\"mdi2s-square-rounded-outline\", \"F14FC\"),\n    SQUARE_SMALL(\"mdi2s-square-small\", \"F0A15\"),\n    SQUARE_WAVE(\"mdi2s-square-wave\", \"F147B\"),\n    SQUEEGEE(\"mdi2s-squeegee\", \"F0AE1\"),\n    SSH(\"mdi2s-ssh\", \"F08C0\"),\n    STACK_EXCHANGE(\"mdi2s-stack-exchange\", \"F060B\"),\n    STACK_OVERFLOW(\"mdi2s-stack-overflow\", \"F04CC\"),\n    STACKPATH(\"mdi2s-stackpath\", \"F0359\"),\n    STADIUM(\"mdi2s-stadium\", \"F0FF9\"),\n    STADIUM_OUTLINE(\"mdi2s-stadium-outline\", \"F1B03\"),\n    STADIUM_VARIANT(\"mdi2s-stadium-variant\", \"F0720\"),\n    STAIRS(\"mdi2s-stairs\", \"F04CD\"),\n    STAIRS_BOX(\"mdi2s-stairs-box\", \"F139E\"),\n    STAIRS_DOWN(\"mdi2s-stairs-down\", \"F12BE\"),\n    STAIRS_UP(\"mdi2s-stairs-up\", \"F12BD\"),\n    STAMPER(\"mdi2s-stamper\", \"F0D39\"),\n    STANDARD_DEFINITION(\"mdi2s-standard-definition\", \"F07EF\"),\n    STAR(\"mdi2s-star\", \"F04CE\"),\n    STAR_BOX(\"mdi2s-star-box\", \"F0A73\"),\n    STAR_BOX_MULTIPLE(\"mdi2s-star-box-multiple\", \"F1286\"),\n    STAR_BOX_MULTIPLE_OUTLINE(\"mdi2s-star-box-multiple-outline\", \"F1287\"),\n    STAR_BOX_OUTLINE(\"mdi2s-star-box-outline\", \"F0A74\"),\n    STAR_CHECK(\"mdi2s-star-check\", \"F1566\"),\n    STAR_CHECK_OUTLINE(\"mdi2s-star-check-outline\", \"F156A\"),\n    STAR_CIRCLE(\"mdi2s-star-circle\", \"F04CF\"),\n    STAR_CIRCLE_OUTLINE(\"mdi2s-star-circle-outline\", \"F09A4\"),\n    STAR_COG(\"mdi2s-star-cog\", \"F1668\"),\n    STAR_COG_OUTLINE(\"mdi2s-star-cog-outline\", \"F1669\"),\n    STAR_CRESCENT(\"mdi2s-star-crescent\", \"F0979\"),\n    STAR_DAVID(\"mdi2s-star-david\", \"F097A\"),\n    STAR_FACE(\"mdi2s-star-face\", \"F09A5\"),\n    STAR_FOUR_POINTS(\"mdi2s-star-four-points\", \"F0AE2\"),\n    STAR_FOUR_POINTS_BOX(\"mdi2s-star-four-points-box\", \"F1C51\"),\n    STAR_FOUR_POINTS_BOX_OUTLINE(\"mdi2s-star-four-points-box-outline\", \"F1C52\"),\n    STAR_FOUR_POINTS_CIRCLE(\"mdi2s-star-four-points-circle\", \"F1C53\"),\n    STAR_FOUR_POINTS_CIRCLE_OUTLINE(\"mdi2s-star-four-points-circle-outline\", \"F1C54\"),\n    STAR_FOUR_POINTS_OUTLINE(\"mdi2s-star-four-points-outline\", \"F0AE3\"),\n    STAR_FOUR_POINTS_SMALL(\"mdi2s-star-four-points-small\", \"F1C55\"),\n    STAR_HALF(\"mdi2s-star-half\", \"F0246\"),\n    STAR_HALF_FULL(\"mdi2s-star-half-full\", \"F04D0\"),\n    STAR_MINUS(\"mdi2s-star-minus\", \"F1564\"),\n    STAR_MINUS_OUTLINE(\"mdi2s-star-minus-outline\", \"F1568\"),\n    STAR_OFF(\"mdi2s-star-off\", \"F04D1\"),\n    STAR_OFF_OUTLINE(\"mdi2s-star-off-outline\", \"F155B\"),\n    STAR_OUTLINE(\"mdi2s-star-outline\", \"F04D2\"),\n    STAR_PLUS(\"mdi2s-star-plus\", \"F1563\"),\n    STAR_PLUS_OUTLINE(\"mdi2s-star-plus-outline\", \"F1567\"),\n    STAR_REMOVE(\"mdi2s-star-remove\", \"F1565\"),\n    STAR_REMOVE_OUTLINE(\"mdi2s-star-remove-outline\", \"F1569\"),\n    STAR_SETTINGS(\"mdi2s-star-settings\", \"F166A\"),\n    STAR_SETTINGS_OUTLINE(\"mdi2s-star-settings-outline\", \"F166B\"),\n    STAR_SHOOTING(\"mdi2s-star-shooting\", \"F1741\"),\n    STAR_SHOOTING_OUTLINE(\"mdi2s-star-shooting-outline\", \"F1742\"),\n    STAR_THREE_POINTS(\"mdi2s-star-three-points\", \"F0AE4\"),\n    STAR_THREE_POINTS_OUTLINE(\"mdi2s-star-three-points-outline\", \"F0AE5\"),\n    STATE_MACHINE(\"mdi2s-state-machine\", \"F11EF\"),\n    STEAM(\"mdi2s-steam\", \"F04D3\"),\n    STEERING(\"mdi2s-steering\", \"F04D4\"),\n    STEERING_OFF(\"mdi2s-steering-off\", \"F090E\"),\n    STEP_BACKWARD(\"mdi2s-step-backward\", \"F04D5\"),\n    STEP_BACKWARD_2(\"mdi2s-step-backward-2\", \"F04D6\"),\n    STEP_FORWARD(\"mdi2s-step-forward\", \"F04D7\"),\n    STEP_FORWARD_2(\"mdi2s-step-forward-2\", \"F04D8\"),\n    STETHOSCOPE(\"mdi2s-stethoscope\", \"F04D9\"),\n    STICKER(\"mdi2s-sticker\", \"F1364\"),\n    STICKER_ALERT(\"mdi2s-sticker-alert\", \"F1365\"),\n    STICKER_ALERT_OUTLINE(\"mdi2s-sticker-alert-outline\", \"F1366\"),\n    STICKER_CHECK(\"mdi2s-sticker-check\", \"F1367\"),\n    STICKER_CHECK_OUTLINE(\"mdi2s-sticker-check-outline\", \"F1368\"),\n    STICKER_CIRCLE_OUTLINE(\"mdi2s-sticker-circle-outline\", \"F05D0\"),\n    STICKER_EMOJI(\"mdi2s-sticker-emoji\", \"F0785\"),\n    STICKER_MINUS(\"mdi2s-sticker-minus\", \"F1369\"),\n    STICKER_MINUS_OUTLINE(\"mdi2s-sticker-minus-outline\", \"F136A\"),\n    STICKER_OUTLINE(\"mdi2s-sticker-outline\", \"F136B\"),\n    STICKER_PLUS(\"mdi2s-sticker-plus\", \"F136C\"),\n    STICKER_PLUS_OUTLINE(\"mdi2s-sticker-plus-outline\", \"F136D\"),\n    STICKER_REMOVE(\"mdi2s-sticker-remove\", \"F136E\"),\n    STICKER_REMOVE_OUTLINE(\"mdi2s-sticker-remove-outline\", \"F136F\"),\n    STICKER_TEXT(\"mdi2s-sticker-text\", \"F178E\"),\n    STICKER_TEXT_OUTLINE(\"mdi2s-sticker-text-outline\", \"F178F\"),\n    STOCKING(\"mdi2s-stocking\", \"F04DA\"),\n    STOMACH(\"mdi2s-stomach\", \"F1093\"),\n    STOOL(\"mdi2s-stool\", \"F195D\"),\n    STOOL_OUTLINE(\"mdi2s-stool-outline\", \"F195E\"),\n    STOP(\"mdi2s-stop\", \"F04DB\"),\n    STOP_CIRCLE(\"mdi2s-stop-circle\", \"F0666\"),\n    STOP_CIRCLE_OUTLINE(\"mdi2s-stop-circle-outline\", \"F0667\"),\n    STORAGE_TANK(\"mdi2s-storage-tank\", \"F1A75\"),\n    STORAGE_TANK_OUTLINE(\"mdi2s-storage-tank-outline\", \"F1A76\"),\n    STORE(\"mdi2s-store\", \"F04DC\"),\n    STORE_24_HOUR(\"mdi2s-store-24-hour\", \"F04DD\"),\n    STORE_ALERT(\"mdi2s-store-alert\", \"F18C1\"),\n    STORE_ALERT_OUTLINE(\"mdi2s-store-alert-outline\", \"F18C2\"),\n    STORE_CHECK(\"mdi2s-store-check\", \"F18C3\"),\n    STORE_CHECK_OUTLINE(\"mdi2s-store-check-outline\", \"F18C4\"),\n    STORE_CLOCK(\"mdi2s-store-clock\", \"F18C5\"),\n    STORE_CLOCK_OUTLINE(\"mdi2s-store-clock-outline\", \"F18C6\"),\n    STORE_COG(\"mdi2s-store-cog\", \"F18C7\"),\n    STORE_COG_OUTLINE(\"mdi2s-store-cog-outline\", \"F18C8\"),\n    STORE_EDIT(\"mdi2s-store-edit\", \"F18C9\"),\n    STORE_EDIT_OUTLINE(\"mdi2s-store-edit-outline\", \"F18CA\"),\n    STORE_MARKER(\"mdi2s-store-marker\", \"F18CB\"),\n    STORE_MARKER_OUTLINE(\"mdi2s-store-marker-outline\", \"F18CC\"),\n    STORE_MINUS(\"mdi2s-store-minus\", \"F165E\"),\n    STORE_MINUS_OUTLINE(\"mdi2s-store-minus-outline\", \"F18CD\"),\n    STORE_OFF(\"mdi2s-store-off\", \"F18CE\"),\n    STORE_OFF_OUTLINE(\"mdi2s-store-off-outline\", \"F18CF\"),\n    STORE_OUTLINE(\"mdi2s-store-outline\", \"F1361\"),\n    STORE_PLUS(\"mdi2s-store-plus\", \"F165F\"),\n    STORE_PLUS_OUTLINE(\"mdi2s-store-plus-outline\", \"F18D0\"),\n    STORE_REMOVE(\"mdi2s-store-remove\", \"F1660\"),\n    STORE_REMOVE_OUTLINE(\"mdi2s-store-remove-outline\", \"F18D1\"),\n    STORE_SEARCH(\"mdi2s-store-search\", \"F18D2\"),\n    STORE_SEARCH_OUTLINE(\"mdi2s-store-search-outline\", \"F18D3\"),\n    STORE_SETTINGS(\"mdi2s-store-settings\", \"F18D4\"),\n    STORE_SETTINGS_OUTLINE(\"mdi2s-store-settings-outline\", \"F18D5\"),\n    STOREFRONT(\"mdi2s-storefront\", \"F07C7\"),\n    STOREFRONT_CHECK(\"mdi2s-storefront-check\", \"F1B7D\"),\n    STOREFRONT_CHECK_OUTLINE(\"mdi2s-storefront-check-outline\", \"F1B7E\"),\n    STOREFRONT_EDIT(\"mdi2s-storefront-edit\", \"F1B7F\"),\n    STOREFRONT_EDIT_OUTLINE(\"mdi2s-storefront-edit-outline\", \"F1B80\"),\n    STOREFRONT_MINUS(\"mdi2s-storefront-minus\", \"F1B83\"),\n    STOREFRONT_MINUS_OUTLINE(\"mdi2s-storefront-minus-outline\", \"F1B84\"),\n    STOREFRONT_OUTLINE(\"mdi2s-storefront-outline\", \"F10C1\"),\n    STOREFRONT_PLUS(\"mdi2s-storefront-plus\", \"F1B81\"),\n    STOREFRONT_PLUS_OUTLINE(\"mdi2s-storefront-plus-outline\", \"F1B82\"),\n    STOREFRONT_REMOVE(\"mdi2s-storefront-remove\", \"F1B85\"),\n    STOREFRONT_REMOVE_OUTLINE(\"mdi2s-storefront-remove-outline\", \"F1B86\"),\n    STOVE(\"mdi2s-stove\", \"F04DE\"),\n    STRATEGY(\"mdi2s-strategy\", \"F11D6\"),\n    STRETCH_TO_PAGE(\"mdi2s-stretch-to-page\", \"F0F2B\"),\n    STRETCH_TO_PAGE_OUTLINE(\"mdi2s-stretch-to-page-outline\", \"F0F2C\"),\n    STRING_LIGHTS(\"mdi2s-string-lights\", \"F12BA\"),\n    STRING_LIGHTS_OFF(\"mdi2s-string-lights-off\", \"F12BB\"),\n    SUBDIRECTORY_ARROW_LEFT(\"mdi2s-subdirectory-arrow-left\", \"F060C\"),\n    SUBDIRECTORY_ARROW_RIGHT(\"mdi2s-subdirectory-arrow-right\", \"F060D\"),\n    SUBMARINE(\"mdi2s-submarine\", \"F156C\"),\n    SUBTITLES(\"mdi2s-subtitles\", \"F0A16\"),\n    SUBTITLES_OUTLINE(\"mdi2s-subtitles-outline\", \"F0A17\"),\n    SUBWAY(\"mdi2s-subway\", \"F06AC\"),\n    SUBWAY_ALERT_VARIANT(\"mdi2s-subway-alert-variant\", \"F0D9D\"),\n    SUBWAY_VARIANT(\"mdi2s-subway-variant\", \"F04DF\"),\n    SUMMIT(\"mdi2s-summit\", \"F0786\"),\n    SUN_ANGLE(\"mdi2s-sun-angle\", \"F1B27\"),\n    SUN_ANGLE_OUTLINE(\"mdi2s-sun-angle-outline\", \"F1B28\"),\n    SUN_CLOCK(\"mdi2s-sun-clock\", \"F1A77\"),\n    SUN_CLOCK_OUTLINE(\"mdi2s-sun-clock-outline\", \"F1A78\"),\n    SUN_COMPASS(\"mdi2s-sun-compass\", \"F19A5\"),\n    SUN_SNOWFLAKE(\"mdi2s-sun-snowflake\", \"F1796\"),\n    SUN_SNOWFLAKE_VARIANT(\"mdi2s-sun-snowflake-variant\", \"F1A79\"),\n    SUN_THERMOMETER(\"mdi2s-sun-thermometer\", \"F18D6\"),\n    SUN_THERMOMETER_OUTLINE(\"mdi2s-sun-thermometer-outline\", \"F18D7\"),\n    SUN_WIRELESS(\"mdi2s-sun-wireless\", \"F17FE\"),\n    SUN_WIRELESS_OUTLINE(\"mdi2s-sun-wireless-outline\", \"F17FF\"),\n    SUNGLASSES(\"mdi2s-sunglasses\", \"F04E0\"),\n    SURFING(\"mdi2s-surfing\", \"F1746\"),\n    SURROUND_SOUND(\"mdi2s-surround-sound\", \"F05C5\"),\n    SURROUND_SOUND_2_0(\"mdi2s-surround-sound-2-0\", \"F07F0\"),\n    SURROUND_SOUND_2_1(\"mdi2s-surround-sound-2-1\", \"F1729\"),\n    SURROUND_SOUND_3_1(\"mdi2s-surround-sound-3-1\", \"F07F1\"),\n    SURROUND_SOUND_5_1(\"mdi2s-surround-sound-5-1\", \"F07F2\"),\n    SURROUND_SOUND_5_1_2(\"mdi2s-surround-sound-5-1-2\", \"F172A\"),\n    SURROUND_SOUND_7_1(\"mdi2s-surround-sound-7-1\", \"F07F3\"),\n    SVG(\"mdi2s-svg\", \"F0721\"),\n    SWAP_HORIZONTAL(\"mdi2s-swap-horizontal\", \"F04E1\"),\n    SWAP_HORIZONTAL_BOLD(\"mdi2s-swap-horizontal-bold\", \"F0BCD\"),\n    SWAP_HORIZONTAL_CIRCLE(\"mdi2s-swap-horizontal-circle\", \"F0FE1\"),\n    SWAP_HORIZONTAL_CIRCLE_OUTLINE(\"mdi2s-swap-horizontal-circle-outline\", \"F0FE2\"),\n    SWAP_HORIZONTAL_HIDDEN(\"mdi2s-swap-horizontal-hidden\", \"F1D0E\"),\n    SWAP_HORIZONTAL_VARIANT(\"mdi2s-swap-horizontal-variant\", \"F08C1\"),\n    SWAP_VERTICAL(\"mdi2s-swap-vertical\", \"F04E2\"),\n    SWAP_VERTICAL_BOLD(\"mdi2s-swap-vertical-bold\", \"F0BCE\"),\n    SWAP_VERTICAL_CIRCLE(\"mdi2s-swap-vertical-circle\", \"F0FE3\"),\n    SWAP_VERTICAL_CIRCLE_OUTLINE(\"mdi2s-swap-vertical-circle-outline\", \"F0FE4\"),\n    SWAP_VERTICAL_VARIANT(\"mdi2s-swap-vertical-variant\", \"F08C2\"),\n    SWIM(\"mdi2s-swim\", \"F04E3\"),\n    SWITCH(\"mdi2s-switch\", \"F04E4\"),\n    SWORD(\"mdi2s-sword\", \"F04E5\"),\n    SWORD_CROSS(\"mdi2s-sword-cross\", \"F0787\"),\n    SYLLABARY_HANGUL(\"mdi2s-syllabary-hangul\", \"F1333\"),\n    SYLLABARY_HIRAGANA(\"mdi2s-syllabary-hiragana\", \"F1334\"),\n    SYLLABARY_KATAKANA(\"mdi2s-syllabary-katakana\", \"F1335\"),\n    SYLLABARY_KATAKANA_HALFWIDTH(\"mdi2s-syllabary-katakana-halfwidth\", \"F1336\"),\n    SYMBOL(\"mdi2s-symbol\", \"F1501\"),\n    SYMFONY(\"mdi2s-symfony\", \"F0AE6\"),\n    SYNAGOGUE(\"mdi2s-synagogue\", \"F1B04\"),\n    SYNAGOGUE_OUTLINE(\"mdi2s-synagogue-outline\", \"F1B05\"),\n    SYNC(\"mdi2s-sync\", \"F04E6\"),\n    SYNC_ALERT(\"mdi2s-sync-alert\", \"F04E7\"),\n    SYNC_CIRCLE(\"mdi2s-sync-circle\", \"F1378\"),\n    SYNC_OFF(\"mdi2s-sync-off\", \"F04E8\");\n\n    public static MaterialDesignS findByDescription(String description) {\n        for (MaterialDesignS font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignS(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignSIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignSIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2s-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignS.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignSIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignSIkonProvider implements IkonProvider<MaterialDesignS> {\n    @Override\n    public Class<MaterialDesignS> getIkon() {\n        return MaterialDesignS.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignT.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignT implements Ikon {\n    TAB(\"mdi2t-tab\", \"F04E9\"),\n    TAB_MINUS(\"mdi2t-tab-minus\", \"F0B4B\"),\n    TAB_PLUS(\"mdi2t-tab-plus\", \"F075C\"),\n    TAB_REMOVE(\"mdi2t-tab-remove\", \"F0B4C\"),\n    TAB_SEARCH(\"mdi2t-tab-search\", \"F199E\"),\n    TAB_UNSELECTED(\"mdi2t-tab-unselected\", \"F04EA\"),\n    TABLE(\"mdi2t-table\", \"F04EB\"),\n    TABLE_ACCOUNT(\"mdi2t-table-account\", \"F13B9\"),\n    TABLE_ALERT(\"mdi2t-table-alert\", \"F13BA\"),\n    TABLE_ARROW_DOWN(\"mdi2t-table-arrow-down\", \"F13BB\"),\n    TABLE_ARROW_LEFT(\"mdi2t-table-arrow-left\", \"F13BC\"),\n    TABLE_ARROW_RIGHT(\"mdi2t-table-arrow-right\", \"F13BD\"),\n    TABLE_ARROW_UP(\"mdi2t-table-arrow-up\", \"F13BE\"),\n    TABLE_BORDER(\"mdi2t-table-border\", \"F0A18\"),\n    TABLE_CANCEL(\"mdi2t-table-cancel\", \"F13BF\"),\n    TABLE_CHAIR(\"mdi2t-table-chair\", \"F1061\"),\n    TABLE_CHECK(\"mdi2t-table-check\", \"F13C0\"),\n    TABLE_CLOCK(\"mdi2t-table-clock\", \"F13C1\"),\n    TABLE_COG(\"mdi2t-table-cog\", \"F13C2\"),\n    TABLE_COLUMN(\"mdi2t-table-column\", \"F0835\"),\n    TABLE_COLUMN_PLUS_AFTER(\"mdi2t-table-column-plus-after\", \"F04EC\"),\n    TABLE_COLUMN_PLUS_BEFORE(\"mdi2t-table-column-plus-before\", \"F04ED\"),\n    TABLE_COLUMN_REMOVE(\"mdi2t-table-column-remove\", \"F04EE\"),\n    TABLE_COLUMN_WIDTH(\"mdi2t-table-column-width\", \"F04EF\"),\n    TABLE_EDIT(\"mdi2t-table-edit\", \"F04F0\"),\n    TABLE_EYE(\"mdi2t-table-eye\", \"F1094\"),\n    TABLE_EYE_OFF(\"mdi2t-table-eye-off\", \"F13C3\"),\n    TABLE_FILTER(\"mdi2t-table-filter\", \"F1B8C\"),\n    TABLE_FURNITURE(\"mdi2t-table-furniture\", \"F05BC\"),\n    TABLE_HEADERS_EYE(\"mdi2t-table-headers-eye\", \"F121D\"),\n    TABLE_HEADERS_EYE_OFF(\"mdi2t-table-headers-eye-off\", \"F121E\"),\n    TABLE_HEART(\"mdi2t-table-heart\", \"F13C4\"),\n    TABLE_KEY(\"mdi2t-table-key\", \"F13C5\"),\n    TABLE_LARGE(\"mdi2t-table-large\", \"F04F1\"),\n    TABLE_LARGE_PLUS(\"mdi2t-table-large-plus\", \"F0F87\"),\n    TABLE_LARGE_REMOVE(\"mdi2t-table-large-remove\", \"F0F88\"),\n    TABLE_LOCK(\"mdi2t-table-lock\", \"F13C6\"),\n    TABLE_MERGE_CELLS(\"mdi2t-table-merge-cells\", \"F09A6\"),\n    TABLE_MINUS(\"mdi2t-table-minus\", \"F13C7\"),\n    TABLE_MULTIPLE(\"mdi2t-table-multiple\", \"F13C8\"),\n    TABLE_NETWORK(\"mdi2t-table-network\", \"F13C9\"),\n    TABLE_OF_CONTENTS(\"mdi2t-table-of-contents\", \"F0836\"),\n    TABLE_OFF(\"mdi2t-table-off\", \"F13CA\"),\n    TABLE_PICNIC(\"mdi2t-table-picnic\", \"F1743\"),\n    TABLE_PIVOT(\"mdi2t-table-pivot\", \"F183C\"),\n    TABLE_PLUS(\"mdi2t-table-plus\", \"F0A75\"),\n    TABLE_QUESTION(\"mdi2t-table-question\", \"F1B21\"),\n    TABLE_REFRESH(\"mdi2t-table-refresh\", \"F13A0\"),\n    TABLE_REMOVE(\"mdi2t-table-remove\", \"F0A76\"),\n    TABLE_ROW(\"mdi2t-table-row\", \"F0837\"),\n    TABLE_ROW_HEIGHT(\"mdi2t-table-row-height\", \"F04F2\"),\n    TABLE_ROW_PLUS_AFTER(\"mdi2t-table-row-plus-after\", \"F04F3\"),\n    TABLE_ROW_PLUS_BEFORE(\"mdi2t-table-row-plus-before\", \"F04F4\"),\n    TABLE_ROW_REMOVE(\"mdi2t-table-row-remove\", \"F04F5\"),\n    TABLE_SEARCH(\"mdi2t-table-search\", \"F090F\"),\n    TABLE_SETTINGS(\"mdi2t-table-settings\", \"F0838\"),\n    TABLE_SPLIT_CELL(\"mdi2t-table-split-cell\", \"F142A\"),\n    TABLE_STAR(\"mdi2t-table-star\", \"F13CB\"),\n    TABLE_SYNC(\"mdi2t-table-sync\", \"F13A1\"),\n    TABLE_TENNIS(\"mdi2t-table-tennis\", \"F0E68\"),\n    TABLET(\"mdi2t-tablet\", \"F04F6\"),\n    TABLET_CELLPHONE(\"mdi2t-tablet-cellphone\", \"F09A7\"),\n    TABLET_DASHBOARD(\"mdi2t-tablet-dashboard\", \"F0ECE\"),\n    TACO(\"mdi2t-taco\", \"F0762\"),\n    TAG(\"mdi2t-tag\", \"F04F9\"),\n    TAG_ARROW_DOWN(\"mdi2t-tag-arrow-down\", \"F172B\"),\n    TAG_ARROW_DOWN_OUTLINE(\"mdi2t-tag-arrow-down-outline\", \"F172C\"),\n    TAG_ARROW_LEFT(\"mdi2t-tag-arrow-left\", \"F172D\"),\n    TAG_ARROW_LEFT_OUTLINE(\"mdi2t-tag-arrow-left-outline\", \"F172E\"),\n    TAG_ARROW_RIGHT(\"mdi2t-tag-arrow-right\", \"F172F\"),\n    TAG_ARROW_RIGHT_OUTLINE(\"mdi2t-tag-arrow-right-outline\", \"F1730\"),\n    TAG_ARROW_UP(\"mdi2t-tag-arrow-up\", \"F1731\"),\n    TAG_ARROW_UP_OUTLINE(\"mdi2t-tag-arrow-up-outline\", \"F1732\"),\n    TAG_CHECK(\"mdi2t-tag-check\", \"F1A7A\"),\n    TAG_CHECK_OUTLINE(\"mdi2t-tag-check-outline\", \"F1A7B\"),\n    TAG_EDIT(\"mdi2t-tag-edit\", \"F1C9C\"),\n    TAG_EDIT_OUTLINE(\"mdi2t-tag-edit-outline\", \"F1C9D\"),\n    TAG_FACES(\"mdi2t-tag-faces\", \"F04FA\"),\n    TAG_HEART(\"mdi2t-tag-heart\", \"F068B\"),\n    TAG_HEART_OUTLINE(\"mdi2t-tag-heart-outline\", \"F0BCF\"),\n    TAG_HIDDEN(\"mdi2t-tag-hidden\", \"F1C76\"),\n    TAG_MINUS(\"mdi2t-tag-minus\", \"F0910\"),\n    TAG_MINUS_OUTLINE(\"mdi2t-tag-minus-outline\", \"F121F\"),\n    TAG_MULTIPLE(\"mdi2t-tag-multiple\", \"F04FB\"),\n    TAG_MULTIPLE_OUTLINE(\"mdi2t-tag-multiple-outline\", \"F12F7\"),\n    TAG_OFF(\"mdi2t-tag-off\", \"F1220\"),\n    TAG_OFF_OUTLINE(\"mdi2t-tag-off-outline\", \"F1221\"),\n    TAG_OUTLINE(\"mdi2t-tag-outline\", \"F04FC\"),\n    TAG_PLUS(\"mdi2t-tag-plus\", \"F0722\"),\n    TAG_PLUS_OUTLINE(\"mdi2t-tag-plus-outline\", \"F1222\"),\n    TAG_REMOVE(\"mdi2t-tag-remove\", \"F0723\"),\n    TAG_REMOVE_OUTLINE(\"mdi2t-tag-remove-outline\", \"F1223\"),\n    TAG_SEARCH(\"mdi2t-tag-search\", \"F1907\"),\n    TAG_SEARCH_OUTLINE(\"mdi2t-tag-search-outline\", \"F1908\"),\n    TAG_TEXT(\"mdi2t-tag-text\", \"F1224\"),\n    TAG_TEXT_OUTLINE(\"mdi2t-tag-text-outline\", \"F04FD\"),\n    TAILWIND(\"mdi2t-tailwind\", \"F13FF\"),\n    TALLY_MARK_1(\"mdi2t-tally-mark-1\", \"F1ABC\"),\n    TALLY_MARK_2(\"mdi2t-tally-mark-2\", \"F1ABD\"),\n    TALLY_MARK_3(\"mdi2t-tally-mark-3\", \"F1ABE\"),\n    TALLY_MARK_4(\"mdi2t-tally-mark-4\", \"F1ABF\"),\n    TALLY_MARK_5(\"mdi2t-tally-mark-5\", \"F1AC0\"),\n    TANGRAM(\"mdi2t-tangram\", \"F04F8\"),\n    TANK(\"mdi2t-tank\", \"F0D3A\"),\n    TANKER_TRUCK(\"mdi2t-tanker-truck\", \"F0FE5\"),\n    TAPE_DRIVE(\"mdi2t-tape-drive\", \"F16DF\"),\n    TAPE_MEASURE(\"mdi2t-tape-measure\", \"F0B4D\"),\n    TARGET(\"mdi2t-target\", \"F04FE\"),\n    TARGET_ACCOUNT(\"mdi2t-target-account\", \"F0BD0\"),\n    TARGET_VARIANT(\"mdi2t-target-variant\", \"F0A77\"),\n    TAXI(\"mdi2t-taxi\", \"F04FF\"),\n    TEA(\"mdi2t-tea\", \"F0D9E\"),\n    TEA_OUTLINE(\"mdi2t-tea-outline\", \"F0D9F\"),\n    TEAMVIEWER(\"mdi2t-teamviewer\", \"F0500\"),\n    TEDDY_BEAR(\"mdi2t-teddy-bear\", \"F18FB\"),\n    TELESCOPE(\"mdi2t-telescope\", \"F0B4E\"),\n    TELEVISION(\"mdi2t-television\", \"F0502\"),\n    TELEVISION_AMBIENT_LIGHT(\"mdi2t-television-ambient-light\", \"F1356\"),\n    TELEVISION_BOX(\"mdi2t-television-box\", \"F0839\"),\n    TELEVISION_CLASSIC(\"mdi2t-television-classic\", \"F07F4\"),\n    TELEVISION_CLASSIC_OFF(\"mdi2t-television-classic-off\", \"F083A\"),\n    TELEVISION_GUIDE(\"mdi2t-television-guide\", \"F0503\"),\n    TELEVISION_OFF(\"mdi2t-television-off\", \"F083B\"),\n    TELEVISION_PAUSE(\"mdi2t-television-pause\", \"F0F89\"),\n    TELEVISION_PLAY(\"mdi2t-television-play\", \"F0ECF\"),\n    TELEVISION_SHIMMER(\"mdi2t-television-shimmer\", \"F1110\"),\n    TELEVISION_SPEAKER(\"mdi2t-television-speaker\", \"F1B1B\"),\n    TELEVISION_SPEAKER_OFF(\"mdi2t-television-speaker-off\", \"F1B1C\"),\n    TELEVISION_STOP(\"mdi2t-television-stop\", \"F0F8A\"),\n    TEMPERATURE_CELSIUS(\"mdi2t-temperature-celsius\", \"F0504\"),\n    TEMPERATURE_FAHRENHEIT(\"mdi2t-temperature-fahrenheit\", \"F0505\"),\n    TEMPERATURE_KELVIN(\"mdi2t-temperature-kelvin\", \"F0506\"),\n    TEMPLE_BUDDHIST(\"mdi2t-temple-buddhist\", \"F1B06\"),\n    TEMPLE_BUDDHIST_OUTLINE(\"mdi2t-temple-buddhist-outline\", \"F1B07\"),\n    TEMPLE_HINDU(\"mdi2t-temple-hindu\", \"F1B08\"),\n    TEMPLE_HINDU_OUTLINE(\"mdi2t-temple-hindu-outline\", \"F1B09\"),\n    TENNIS(\"mdi2t-tennis\", \"F0DA0\"),\n    TENNIS_BALL(\"mdi2t-tennis-ball\", \"F0507\"),\n    TENNIS_BALL_OUTLINE(\"mdi2t-tennis-ball-outline\", \"F1C5F\"),\n    TENT(\"mdi2t-tent\", \"F0508\"),\n    TERRAFORM(\"mdi2t-terraform\", \"F1062\"),\n    TERRAIN(\"mdi2t-terrain\", \"F0509\"),\n    TEST_TUBE(\"mdi2t-test-tube\", \"F0668\"),\n    TEST_TUBE_EMPTY(\"mdi2t-test-tube-empty\", \"F0911\"),\n    TEST_TUBE_OFF(\"mdi2t-test-tube-off\", \"F0912\"),\n    TEXT(\"mdi2t-text\", \"F09A8\"),\n    TEXT_ACCOUNT(\"mdi2t-text-account\", \"F1570\"),\n    TEXT_BOX(\"mdi2t-text-box\", \"F021A\"),\n    TEXT_BOX_CHECK(\"mdi2t-text-box-check\", \"F0EA6\"),\n    TEXT_BOX_CHECK_OUTLINE(\"mdi2t-text-box-check-outline\", \"F0EA7\"),\n    TEXT_BOX_EDIT(\"mdi2t-text-box-edit\", \"F1A7C\"),\n    TEXT_BOX_EDIT_OUTLINE(\"mdi2t-text-box-edit-outline\", \"F1A7D\"),\n    TEXT_BOX_MINUS(\"mdi2t-text-box-minus\", \"F0EA8\"),\n    TEXT_BOX_MINUS_OUTLINE(\"mdi2t-text-box-minus-outline\", \"F0EA9\"),\n    TEXT_BOX_MULTIPLE(\"mdi2t-text-box-multiple\", \"F0AB7\"),\n    TEXT_BOX_MULTIPLE_OUTLINE(\"mdi2t-text-box-multiple-outline\", \"F0AB8\"),\n    TEXT_BOX_OUTLINE(\"mdi2t-text-box-outline\", \"F09ED\"),\n    TEXT_BOX_PLUS(\"mdi2t-text-box-plus\", \"F0EAA\"),\n    TEXT_BOX_PLUS_OUTLINE(\"mdi2t-text-box-plus-outline\", \"F0EAB\"),\n    TEXT_BOX_REMOVE(\"mdi2t-text-box-remove\", \"F0EAC\"),\n    TEXT_BOX_REMOVE_OUTLINE(\"mdi2t-text-box-remove-outline\", \"F0EAD\"),\n    TEXT_BOX_SEARCH(\"mdi2t-text-box-search\", \"F0EAE\"),\n    TEXT_BOX_SEARCH_OUTLINE(\"mdi2t-text-box-search-outline\", \"F0EAF\"),\n    TEXT_LONG(\"mdi2t-text-long\", \"F09AA\"),\n    TEXT_RECOGNITION(\"mdi2t-text-recognition\", \"F113D\"),\n    TEXT_SEARCH(\"mdi2t-text-search\", \"F13B8\"),\n    TEXT_SEARCH_VARIANT(\"mdi2t-text-search-variant\", \"F1A7E\"),\n    TEXT_SHADOW(\"mdi2t-text-shadow\", \"F0669\"),\n    TEXT_SHORT(\"mdi2t-text-short\", \"F09A9\"),\n    TEXTURE(\"mdi2t-texture\", \"F050C\"),\n    TEXTURE_BOX(\"mdi2t-texture-box\", \"F0FE6\"),\n    THEATER(\"mdi2t-theater\", \"F050D\"),\n    THEME_LIGHT_DARK(\"mdi2t-theme-light-dark\", \"F050E\"),\n    THERMOMETER(\"mdi2t-thermometer\", \"F050F\"),\n    THERMOMETER_ALERT(\"mdi2t-thermometer-alert\", \"F0E01\"),\n    THERMOMETER_AUTO(\"mdi2t-thermometer-auto\", \"F1B0F\"),\n    THERMOMETER_BLUETOOTH(\"mdi2t-thermometer-bluetooth\", \"F1895\"),\n    THERMOMETER_CHECK(\"mdi2t-thermometer-check\", \"F1A7F\"),\n    THERMOMETER_CHEVRON_DOWN(\"mdi2t-thermometer-chevron-down\", \"F0E02\"),\n    THERMOMETER_CHEVRON_UP(\"mdi2t-thermometer-chevron-up\", \"F0E03\"),\n    THERMOMETER_HIGH(\"mdi2t-thermometer-high\", \"F10C2\"),\n    THERMOMETER_LINES(\"mdi2t-thermometer-lines\", \"F0510\"),\n    THERMOMETER_LOW(\"mdi2t-thermometer-low\", \"F10C3\"),\n    THERMOMETER_MINUS(\"mdi2t-thermometer-minus\", \"F0E04\"),\n    THERMOMETER_OFF(\"mdi2t-thermometer-off\", \"F1531\"),\n    THERMOMETER_PLUS(\"mdi2t-thermometer-plus\", \"F0E05\"),\n    THERMOMETER_PROBE(\"mdi2t-thermometer-probe\", \"F1B2B\"),\n    THERMOMETER_PROBE_OFF(\"mdi2t-thermometer-probe-off\", \"F1B2C\"),\n    THERMOMETER_WATER(\"mdi2t-thermometer-water\", \"F1A80\"),\n    THERMOSTAT(\"mdi2t-thermostat\", \"F0393\"),\n    THERMOSTAT_AUTO(\"mdi2t-thermostat-auto\", \"F1B17\"),\n    THERMOSTAT_BOX(\"mdi2t-thermostat-box\", \"F0891\"),\n    THERMOSTAT_BOX_AUTO(\"mdi2t-thermostat-box-auto\", \"F1B18\"),\n    THERMOSTAT_COG(\"mdi2t-thermostat-cog\", \"F1C80\"),\n    THOUGHT_BUBBLE(\"mdi2t-thought-bubble\", \"F07F6\"),\n    THOUGHT_BUBBLE_OUTLINE(\"mdi2t-thought-bubble-outline\", \"F07F7\"),\n    THUMB_DOWN(\"mdi2t-thumb-down\", \"F0511\"),\n    THUMB_DOWN_OUTLINE(\"mdi2t-thumb-down-outline\", \"F0512\"),\n    THUMB_UP(\"mdi2t-thumb-up\", \"F0513\"),\n    THUMB_UP_OUTLINE(\"mdi2t-thumb-up-outline\", \"F0514\"),\n    THUMBS_UP_DOWN(\"mdi2t-thumbs-up-down\", \"F0515\"),\n    THUMBS_UP_DOWN_OUTLINE(\"mdi2t-thumbs-up-down-outline\", \"F1914\"),\n    TICKET(\"mdi2t-ticket\", \"F0516\"),\n    TICKET_ACCOUNT(\"mdi2t-ticket-account\", \"F0517\"),\n    TICKET_CONFIRMATION(\"mdi2t-ticket-confirmation\", \"F0518\"),\n    TICKET_CONFIRMATION_OUTLINE(\"mdi2t-ticket-confirmation-outline\", \"F13AA\"),\n    TICKET_OUTLINE(\"mdi2t-ticket-outline\", \"F0913\"),\n    TICKET_PERCENT(\"mdi2t-ticket-percent\", \"F0724\"),\n    TICKET_PERCENT_OUTLINE(\"mdi2t-ticket-percent-outline\", \"F142B\"),\n    TIE(\"mdi2t-tie\", \"F0519\"),\n    TILDE(\"mdi2t-tilde\", \"F0725\"),\n    TILDE_OFF(\"mdi2t-tilde-off\", \"F18F3\"),\n    TIMELAPSE(\"mdi2t-timelapse\", \"F051A\"),\n    TIMELINE(\"mdi2t-timeline\", \"F0BD1\"),\n    TIMELINE_ALERT(\"mdi2t-timeline-alert\", \"F0F95\"),\n    TIMELINE_ALERT_OUTLINE(\"mdi2t-timeline-alert-outline\", \"F0F98\"),\n    TIMELINE_CHECK(\"mdi2t-timeline-check\", \"F1532\"),\n    TIMELINE_CHECK_OUTLINE(\"mdi2t-timeline-check-outline\", \"F1533\"),\n    TIMELINE_CLOCK(\"mdi2t-timeline-clock\", \"F11FB\"),\n    TIMELINE_CLOCK_OUTLINE(\"mdi2t-timeline-clock-outline\", \"F11FC\"),\n    TIMELINE_MINUS(\"mdi2t-timeline-minus\", \"F1534\"),\n    TIMELINE_MINUS_OUTLINE(\"mdi2t-timeline-minus-outline\", \"F1535\"),\n    TIMELINE_OUTLINE(\"mdi2t-timeline-outline\", \"F0BD2\"),\n    TIMELINE_PLUS(\"mdi2t-timeline-plus\", \"F0F96\"),\n    TIMELINE_PLUS_OUTLINE(\"mdi2t-timeline-plus-outline\", \"F0F97\"),\n    TIMELINE_QUESTION(\"mdi2t-timeline-question\", \"F0F99\"),\n    TIMELINE_QUESTION_OUTLINE(\"mdi2t-timeline-question-outline\", \"F0F9A\"),\n    TIMELINE_REMOVE(\"mdi2t-timeline-remove\", \"F1536\"),\n    TIMELINE_REMOVE_OUTLINE(\"mdi2t-timeline-remove-outline\", \"F1537\"),\n    TIMELINE_TEXT(\"mdi2t-timeline-text\", \"F0BD3\"),\n    TIMELINE_TEXT_OUTLINE(\"mdi2t-timeline-text-outline\", \"F0BD4\"),\n    TIMER(\"mdi2t-timer\", \"F13AB\"),\n    TIMER_10(\"mdi2t-timer-10\", \"F051C\"),\n    TIMER_3(\"mdi2t-timer-3\", \"F051D\"),\n    TIMER_ALERT(\"mdi2t-timer-alert\", \"F1ACC\"),\n    TIMER_ALERT_OUTLINE(\"mdi2t-timer-alert-outline\", \"F1ACD\"),\n    TIMER_CANCEL(\"mdi2t-timer-cancel\", \"F1ACE\"),\n    TIMER_CANCEL_OUTLINE(\"mdi2t-timer-cancel-outline\", \"F1ACF\"),\n    TIMER_CHECK(\"mdi2t-timer-check\", \"F1AD0\"),\n    TIMER_CHECK_OUTLINE(\"mdi2t-timer-check-outline\", \"F1AD1\"),\n    TIMER_COG(\"mdi2t-timer-cog\", \"F1925\"),\n    TIMER_COG_OUTLINE(\"mdi2t-timer-cog-outline\", \"F1926\"),\n    TIMER_EDIT(\"mdi2t-timer-edit\", \"F1AD2\"),\n    TIMER_EDIT_OUTLINE(\"mdi2t-timer-edit-outline\", \"F1AD3\"),\n    TIMER_LOCK(\"mdi2t-timer-lock\", \"F1AD4\"),\n    TIMER_LOCK_OPEN(\"mdi2t-timer-lock-open\", \"F1AD5\"),\n    TIMER_LOCK_OPEN_OUTLINE(\"mdi2t-timer-lock-open-outline\", \"F1AD6\"),\n    TIMER_LOCK_OUTLINE(\"mdi2t-timer-lock-outline\", \"F1AD7\"),\n    TIMER_MARKER(\"mdi2t-timer-marker\", \"F1AD8\"),\n    TIMER_MARKER_OUTLINE(\"mdi2t-timer-marker-outline\", \"F1AD9\"),\n    TIMER_MINUS(\"mdi2t-timer-minus\", \"F1ADA\"),\n    TIMER_MINUS_OUTLINE(\"mdi2t-timer-minus-outline\", \"F1ADB\"),\n    TIMER_MUSIC(\"mdi2t-timer-music\", \"F1ADC\"),\n    TIMER_MUSIC_OUTLINE(\"mdi2t-timer-music-outline\", \"F1ADD\"),\n    TIMER_OFF(\"mdi2t-timer-off\", \"F13AC\"),\n    TIMER_OFF_OUTLINE(\"mdi2t-timer-off-outline\", \"F051E\"),\n    TIMER_OUTLINE(\"mdi2t-timer-outline\", \"F051B\"),\n    TIMER_PAUSE(\"mdi2t-timer-pause\", \"F1ADE\"),\n    TIMER_PAUSE_OUTLINE(\"mdi2t-timer-pause-outline\", \"F1ADF\"),\n    TIMER_PLAY(\"mdi2t-timer-play\", \"F1AE0\"),\n    TIMER_PLAY_OUTLINE(\"mdi2t-timer-play-outline\", \"F1AE1\"),\n    TIMER_PLUS(\"mdi2t-timer-plus\", \"F1AE2\"),\n    TIMER_PLUS_OUTLINE(\"mdi2t-timer-plus-outline\", \"F1AE3\"),\n    TIMER_REFRESH(\"mdi2t-timer-refresh\", \"F1AE4\"),\n    TIMER_REFRESH_OUTLINE(\"mdi2t-timer-refresh-outline\", \"F1AE5\"),\n    TIMER_REMOVE(\"mdi2t-timer-remove\", \"F1AE6\"),\n    TIMER_REMOVE_OUTLINE(\"mdi2t-timer-remove-outline\", \"F1AE7\"),\n    TIMER_SAND(\"mdi2t-timer-sand\", \"F051F\"),\n    TIMER_SAND_COMPLETE(\"mdi2t-timer-sand-complete\", \"F199F\"),\n    TIMER_SAND_EMPTY(\"mdi2t-timer-sand-empty\", \"F06AD\"),\n    TIMER_SAND_FULL(\"mdi2t-timer-sand-full\", \"F078C\"),\n    TIMER_SAND_PAUSED(\"mdi2t-timer-sand-paused\", \"F19A0\"),\n    TIMER_SETTINGS(\"mdi2t-timer-settings\", \"F1923\"),\n    TIMER_SETTINGS_OUTLINE(\"mdi2t-timer-settings-outline\", \"F1924\"),\n    TIMER_STAR(\"mdi2t-timer-star\", \"F1AE8\"),\n    TIMER_STAR_OUTLINE(\"mdi2t-timer-star-outline\", \"F1AE9\"),\n    TIMER_STOP(\"mdi2t-timer-stop\", \"F1AEA\"),\n    TIMER_STOP_OUTLINE(\"mdi2t-timer-stop-outline\", \"F1AEB\"),\n    TIMER_SYNC(\"mdi2t-timer-sync\", \"F1AEC\"),\n    TIMER_SYNC_OUTLINE(\"mdi2t-timer-sync-outline\", \"F1AED\"),\n    TIMETABLE(\"mdi2t-timetable\", \"F0520\"),\n    TIRE(\"mdi2t-tire\", \"F1896\"),\n    TOASTER(\"mdi2t-toaster\", \"F1063\"),\n    TOASTER_OFF(\"mdi2t-toaster-off\", \"F11B7\"),\n    TOASTER_OVEN(\"mdi2t-toaster-oven\", \"F0CD3\"),\n    TOGGLE_SWITCH(\"mdi2t-toggle-switch\", \"F0521\"),\n    TOGGLE_SWITCH_OFF(\"mdi2t-toggle-switch-off\", \"F0522\"),\n    TOGGLE_SWITCH_OFF_OUTLINE(\"mdi2t-toggle-switch-off-outline\", \"F0A19\"),\n    TOGGLE_SWITCH_OUTLINE(\"mdi2t-toggle-switch-outline\", \"F0A1A\"),\n    TOGGLE_SWITCH_VARIANT(\"mdi2t-toggle-switch-variant\", \"F1A25\"),\n    TOGGLE_SWITCH_VARIANT_OFF(\"mdi2t-toggle-switch-variant-off\", \"F1A26\"),\n    TOILET(\"mdi2t-toilet\", \"F09AB\"),\n    TOOLBOX(\"mdi2t-toolbox\", \"F09AC\"),\n    TOOLBOX_OUTLINE(\"mdi2t-toolbox-outline\", \"F09AD\"),\n    TOOLS(\"mdi2t-tools\", \"F1064\"),\n    TOOLTIP(\"mdi2t-tooltip\", \"F0523\"),\n    TOOLTIP_ACCOUNT(\"mdi2t-tooltip-account\", \"F000C\"),\n    TOOLTIP_CELLPHONE(\"mdi2t-tooltip-cellphone\", \"F183B\"),\n    TOOLTIP_CHECK(\"mdi2t-tooltip-check\", \"F155C\"),\n    TOOLTIP_CHECK_OUTLINE(\"mdi2t-tooltip-check-outline\", \"F155D\"),\n    TOOLTIP_EDIT(\"mdi2t-tooltip-edit\", \"F0524\"),\n    TOOLTIP_EDIT_OUTLINE(\"mdi2t-tooltip-edit-outline\", \"F12C5\"),\n    TOOLTIP_IMAGE(\"mdi2t-tooltip-image\", \"F0525\"),\n    TOOLTIP_IMAGE_OUTLINE(\"mdi2t-tooltip-image-outline\", \"F0BD5\"),\n    TOOLTIP_MINUS(\"mdi2t-tooltip-minus\", \"F155E\"),\n    TOOLTIP_MINUS_OUTLINE(\"mdi2t-tooltip-minus-outline\", \"F155F\"),\n    TOOLTIP_OUTLINE(\"mdi2t-tooltip-outline\", \"F0526\"),\n    TOOLTIP_PLUS(\"mdi2t-tooltip-plus\", \"F0BD6\"),\n    TOOLTIP_PLUS_OUTLINE(\"mdi2t-tooltip-plus-outline\", \"F0527\"),\n    TOOLTIP_QUESTION(\"mdi2t-tooltip-question\", \"F1BBA\"),\n    TOOLTIP_QUESTION_OUTLINE(\"mdi2t-tooltip-question-outline\", \"F1BBB\"),\n    TOOLTIP_REMOVE(\"mdi2t-tooltip-remove\", \"F1560\"),\n    TOOLTIP_REMOVE_OUTLINE(\"mdi2t-tooltip-remove-outline\", \"F1561\"),\n    TOOLTIP_TEXT(\"mdi2t-tooltip-text\", \"F0528\"),\n    TOOLTIP_TEXT_OUTLINE(\"mdi2t-tooltip-text-outline\", \"F0BD7\"),\n    TOOTH(\"mdi2t-tooth\", \"F08C3\"),\n    TOOTH_OUTLINE(\"mdi2t-tooth-outline\", \"F0529\"),\n    TOOTHBRUSH(\"mdi2t-toothbrush\", \"F1129\"),\n    TOOTHBRUSH_ELECTRIC(\"mdi2t-toothbrush-electric\", \"F112C\"),\n    TOOTHBRUSH_PASTE(\"mdi2t-toothbrush-paste\", \"F112A\"),\n    TORCH(\"mdi2t-torch\", \"F1606\"),\n    TORTOISE(\"mdi2t-tortoise\", \"F0D3B\"),\n    TOSLINK(\"mdi2t-toslink\", \"F12B8\"),\n    TOUCH_TEXT_OUTLINE(\"mdi2t-touch-text-outline\", \"F1C60\"),\n    TOURNAMENT(\"mdi2t-tournament\", \"F09AE\"),\n    TOW_TRUCK(\"mdi2t-tow-truck\", \"F083C\"),\n    TOWER_BEACH(\"mdi2t-tower-beach\", \"F0681\"),\n    TOWER_FIRE(\"mdi2t-tower-fire\", \"F0682\"),\n    TOWN_HALL(\"mdi2t-town-hall\", \"F1875\"),\n    TOY_BRICK(\"mdi2t-toy-brick\", \"F1288\"),\n    TOY_BRICK_MARKER(\"mdi2t-toy-brick-marker\", \"F1289\"),\n    TOY_BRICK_MARKER_OUTLINE(\"mdi2t-toy-brick-marker-outline\", \"F128A\"),\n    TOY_BRICK_MINUS(\"mdi2t-toy-brick-minus\", \"F128B\"),\n    TOY_BRICK_MINUS_OUTLINE(\"mdi2t-toy-brick-minus-outline\", \"F128C\"),\n    TOY_BRICK_OUTLINE(\"mdi2t-toy-brick-outline\", \"F128D\"),\n    TOY_BRICK_PLUS(\"mdi2t-toy-brick-plus\", \"F128E\"),\n    TOY_BRICK_PLUS_OUTLINE(\"mdi2t-toy-brick-plus-outline\", \"F128F\"),\n    TOY_BRICK_REMOVE(\"mdi2t-toy-brick-remove\", \"F1290\"),\n    TOY_BRICK_REMOVE_OUTLINE(\"mdi2t-toy-brick-remove-outline\", \"F1291\"),\n    TOY_BRICK_SEARCH(\"mdi2t-toy-brick-search\", \"F1292\"),\n    TOY_BRICK_SEARCH_OUTLINE(\"mdi2t-toy-brick-search-outline\", \"F1293\"),\n    TRACK_LIGHT(\"mdi2t-track-light\", \"F0914\"),\n    TRACK_LIGHT_OFF(\"mdi2t-track-light-off\", \"F1B01\"),\n    TRACKPAD(\"mdi2t-trackpad\", \"F07F8\"),\n    TRACKPAD_LOCK(\"mdi2t-trackpad-lock\", \"F0933\"),\n    TRACTOR(\"mdi2t-tractor\", \"F0892\"),\n    TRACTOR_VARIANT(\"mdi2t-tractor-variant\", \"F14C4\"),\n    TRADEMARK(\"mdi2t-trademark\", \"F0A78\"),\n    TRAFFIC_CONE(\"mdi2t-traffic-cone\", \"F137C\"),\n    TRAFFIC_LIGHT(\"mdi2t-traffic-light\", \"F052B\"),\n    TRAFFIC_LIGHT_OUTLINE(\"mdi2t-traffic-light-outline\", \"F182A\"),\n    TRAIN(\"mdi2t-train\", \"F052C\"),\n    TRAIN_BUS(\"mdi2t-train-bus\", \"F1CC7\"),\n    TRAIN_CAR(\"mdi2t-train-car\", \"F0BD8\"),\n    TRAIN_CAR_AUTORACK(\"mdi2t-train-car-autorack\", \"F1B2D\"),\n    TRAIN_CAR_BOX(\"mdi2t-train-car-box\", \"F1B2E\"),\n    TRAIN_CAR_BOX_FULL(\"mdi2t-train-car-box-full\", \"F1B2F\"),\n    TRAIN_CAR_BOX_OPEN(\"mdi2t-train-car-box-open\", \"F1B30\"),\n    TRAIN_CAR_CABOOSE(\"mdi2t-train-car-caboose\", \"F1B31\"),\n    TRAIN_CAR_CENTERBEAM(\"mdi2t-train-car-centerbeam\", \"F1B32\"),\n    TRAIN_CAR_CENTERBEAM_FULL(\"mdi2t-train-car-centerbeam-full\", \"F1B33\"),\n    TRAIN_CAR_CONTAINER(\"mdi2t-train-car-container\", \"F1B34\"),\n    TRAIN_CAR_FLATBED(\"mdi2t-train-car-flatbed\", \"F1B35\"),\n    TRAIN_CAR_FLATBED_CAR(\"mdi2t-train-car-flatbed-car\", \"F1B36\"),\n    TRAIN_CAR_FLATBED_TANK(\"mdi2t-train-car-flatbed-tank\", \"F1B37\"),\n    TRAIN_CAR_GONDOLA(\"mdi2t-train-car-gondola\", \"F1B38\"),\n    TRAIN_CAR_GONDOLA_FULL(\"mdi2t-train-car-gondola-full\", \"F1B39\"),\n    TRAIN_CAR_HOPPER(\"mdi2t-train-car-hopper\", \"F1B3A\"),\n    TRAIN_CAR_HOPPER_COVERED(\"mdi2t-train-car-hopper-covered\", \"F1B3B\"),\n    TRAIN_CAR_HOPPER_FULL(\"mdi2t-train-car-hopper-full\", \"F1B3C\"),\n    TRAIN_CAR_INTERMODAL(\"mdi2t-train-car-intermodal\", \"F1B3D\"),\n    TRAIN_CAR_PASSENGER(\"mdi2t-train-car-passenger\", \"F1733\"),\n    TRAIN_CAR_PASSENGER_DOOR(\"mdi2t-train-car-passenger-door\", \"F1734\"),\n    TRAIN_CAR_PASSENGER_DOOR_OPEN(\"mdi2t-train-car-passenger-door-open\", \"F1735\"),\n    TRAIN_CAR_PASSENGER_VARIANT(\"mdi2t-train-car-passenger-variant\", \"F1736\"),\n    TRAIN_CAR_TANK(\"mdi2t-train-car-tank\", \"F1B3E\"),\n    TRAIN_VARIANT(\"mdi2t-train-variant\", \"F08C4\"),\n    TRAM(\"mdi2t-tram\", \"F052D\"),\n    TRAM_SIDE(\"mdi2t-tram-side\", \"F0FE7\"),\n    TRANSCRIBE(\"mdi2t-transcribe\", \"F052E\"),\n    TRANSCRIBE_CLOSE(\"mdi2t-transcribe-close\", \"F052F\"),\n    TRANSFER(\"mdi2t-transfer\", \"F1065\"),\n    TRANSFER_DOWN(\"mdi2t-transfer-down\", \"F0DA1\"),\n    TRANSFER_LEFT(\"mdi2t-transfer-left\", \"F0DA2\"),\n    TRANSFER_RIGHT(\"mdi2t-transfer-right\", \"F0530\"),\n    TRANSFER_UP(\"mdi2t-transfer-up\", \"F0DA3\"),\n    TRANSIT_CONNECTION(\"mdi2t-transit-connection\", \"F0D3C\"),\n    TRANSIT_CONNECTION_HORIZONTAL(\"mdi2t-transit-connection-horizontal\", \"F1546\"),\n    TRANSIT_CONNECTION_VARIANT(\"mdi2t-transit-connection-variant\", \"F0D3D\"),\n    TRANSIT_DETOUR(\"mdi2t-transit-detour\", \"F0F8B\"),\n    TRANSIT_SKIP(\"mdi2t-transit-skip\", \"F1515\"),\n    TRANSIT_TRANSFER(\"mdi2t-transit-transfer\", \"F06AE\"),\n    TRANSITION(\"mdi2t-transition\", \"F0915\"),\n    TRANSITION_MASKED(\"mdi2t-transition-masked\", \"F0916\"),\n    TRANSLATE(\"mdi2t-translate\", \"F05CA\"),\n    TRANSLATE_OFF(\"mdi2t-translate-off\", \"F0E06\"),\n    TRANSLATE_VARIANT(\"mdi2t-translate-variant\", \"F1B99\"),\n    TRANSMISSION_TOWER(\"mdi2t-transmission-tower\", \"F0D3E\"),\n    TRANSMISSION_TOWER_EXPORT(\"mdi2t-transmission-tower-export\", \"F192C\"),\n    TRANSMISSION_TOWER_IMPORT(\"mdi2t-transmission-tower-import\", \"F192D\"),\n    TRANSMISSION_TOWER_OFF(\"mdi2t-transmission-tower-off\", \"F19DD\"),\n    TRASH_CAN(\"mdi2t-trash-can\", \"F0A79\"),\n    TRASH_CAN_OUTLINE(\"mdi2t-trash-can-outline\", \"F0A7A\"),\n    TRAY(\"mdi2t-tray\", \"F1294\"),\n    TRAY_ALERT(\"mdi2t-tray-alert\", \"F1295\"),\n    TRAY_ARROW_DOWN(\"mdi2t-tray-arrow-down\", \"F0120\"),\n    TRAY_ARROW_UP(\"mdi2t-tray-arrow-up\", \"F011D\"),\n    TRAY_FULL(\"mdi2t-tray-full\", \"F1296\"),\n    TRAY_MINUS(\"mdi2t-tray-minus\", \"F1297\"),\n    TRAY_PLUS(\"mdi2t-tray-plus\", \"F1298\"),\n    TRAY_REMOVE(\"mdi2t-tray-remove\", \"F1299\"),\n    TREASURE_CHEST(\"mdi2t-treasure-chest\", \"F0726\"),\n    TREASURE_CHEST_OUTLINE(\"mdi2t-treasure-chest-outline\", \"F1C77\"),\n    TREE(\"mdi2t-tree\", \"F0531\"),\n    TREE_OUTLINE(\"mdi2t-tree-outline\", \"F0E69\"),\n    TRELLO(\"mdi2t-trello\", \"F0532\"),\n    TRENDING_DOWN(\"mdi2t-trending-down\", \"F0533\"),\n    TRENDING_NEUTRAL(\"mdi2t-trending-neutral\", \"F0534\"),\n    TRENDING_UP(\"mdi2t-trending-up\", \"F0535\"),\n    TRIANGLE(\"mdi2t-triangle\", \"F0536\"),\n    TRIANGLE_DOWN(\"mdi2t-triangle-down\", \"F1C56\"),\n    TRIANGLE_DOWN_OUTLINE(\"mdi2t-triangle-down-outline\", \"F1C57\"),\n    TRIANGLE_OUTLINE(\"mdi2t-triangle-outline\", \"F0537\"),\n    TRIANGLE_SMALL_DOWN(\"mdi2t-triangle-small-down\", \"F1A09\"),\n    TRIANGLE_SMALL_UP(\"mdi2t-triangle-small-up\", \"F1A0A\"),\n    TRIANGLE_WAVE(\"mdi2t-triangle-wave\", \"F147C\"),\n    TRIFORCE(\"mdi2t-triforce\", \"F0BD9\"),\n    TROPHY(\"mdi2t-trophy\", \"F0538\"),\n    TROPHY_AWARD(\"mdi2t-trophy-award\", \"F0539\"),\n    TROPHY_BROKEN(\"mdi2t-trophy-broken\", \"F0DA4\"),\n    TROPHY_OUTLINE(\"mdi2t-trophy-outline\", \"F053A\"),\n    TROPHY_VARIANT(\"mdi2t-trophy-variant\", \"F053B\"),\n    TROPHY_VARIANT_OUTLINE(\"mdi2t-trophy-variant-outline\", \"F053C\"),\n    TRUCK(\"mdi2t-truck\", \"F053D\"),\n    TRUCK_ALERT(\"mdi2t-truck-alert\", \"F19DE\"),\n    TRUCK_ALERT_OUTLINE(\"mdi2t-truck-alert-outline\", \"F19DF\"),\n    TRUCK_CARGO_CONTAINER(\"mdi2t-truck-cargo-container\", \"F18D8\"),\n    TRUCK_CHECK(\"mdi2t-truck-check\", \"F0CD4\"),\n    TRUCK_CHECK_OUTLINE(\"mdi2t-truck-check-outline\", \"F129A\"),\n    TRUCK_DELIVERY(\"mdi2t-truck-delivery\", \"F053E\"),\n    TRUCK_DELIVERY_OUTLINE(\"mdi2t-truck-delivery-outline\", \"F129B\"),\n    TRUCK_FAST(\"mdi2t-truck-fast\", \"F0788\"),\n    TRUCK_FAST_OUTLINE(\"mdi2t-truck-fast-outline\", \"F129C\"),\n    TRUCK_FLATBED(\"mdi2t-truck-flatbed\", \"F1891\"),\n    TRUCK_MINUS(\"mdi2t-truck-minus\", \"F19AE\"),\n    TRUCK_MINUS_OUTLINE(\"mdi2t-truck-minus-outline\", \"F19BD\"),\n    TRUCK_OFF_ROAD(\"mdi2t-truck-off-road\", \"F1C9E\"),\n    TRUCK_OFF_ROAD_OFF(\"mdi2t-truck-off-road-off\", \"F1C9F\"),\n    TRUCK_OUTLINE(\"mdi2t-truck-outline\", \"F129D\"),\n    TRUCK_PLUS(\"mdi2t-truck-plus\", \"F19AD\"),\n    TRUCK_PLUS_OUTLINE(\"mdi2t-truck-plus-outline\", \"F19BC\"),\n    TRUCK_REMOVE(\"mdi2t-truck-remove\", \"F19AF\"),\n    TRUCK_REMOVE_OUTLINE(\"mdi2t-truck-remove-outline\", \"F19BE\"),\n    TRUCK_SNOWFLAKE(\"mdi2t-truck-snowflake\", \"F19A6\"),\n    TRUCK_TRAILER(\"mdi2t-truck-trailer\", \"F0727\"),\n    TRUMPET(\"mdi2t-trumpet\", \"F1096\"),\n    TSHIRT_CREW(\"mdi2t-tshirt-crew\", \"F0A7B\"),\n    TSHIRT_CREW_OUTLINE(\"mdi2t-tshirt-crew-outline\", \"F053F\"),\n    TSHIRT_V(\"mdi2t-tshirt-v\", \"F0A7C\"),\n    TSHIRT_V_OUTLINE(\"mdi2t-tshirt-v-outline\", \"F0540\"),\n    TSUNAMI(\"mdi2t-tsunami\", \"F1A81\"),\n    TUMBLE_DRYER(\"mdi2t-tumble-dryer\", \"F0917\"),\n    TUMBLE_DRYER_ALERT(\"mdi2t-tumble-dryer-alert\", \"F11BA\"),\n    TUMBLE_DRYER_OFF(\"mdi2t-tumble-dryer-off\", \"F11BB\"),\n    TUNE(\"mdi2t-tune\", \"F062E\"),\n    TUNE_VARIANT(\"mdi2t-tune-variant\", \"F1542\"),\n    TUNE_VERTICAL(\"mdi2t-tune-vertical\", \"F066A\"),\n    TUNE_VERTICAL_VARIANT(\"mdi2t-tune-vertical-variant\", \"F1543\"),\n    TUNNEL(\"mdi2t-tunnel\", \"F183D\"),\n    TUNNEL_OUTLINE(\"mdi2t-tunnel-outline\", \"F183E\"),\n    TURBINE(\"mdi2t-turbine\", \"F1A82\"),\n    TURKEY(\"mdi2t-turkey\", \"F171B\"),\n    TURNSTILE(\"mdi2t-turnstile\", \"F0CD5\"),\n    TURNSTILE_OUTLINE(\"mdi2t-turnstile-outline\", \"F0CD6\"),\n    TURTLE(\"mdi2t-turtle\", \"F0CD7\"),\n    TWITCH(\"mdi2t-twitch\", \"F0543\"),\n    TWITTER(\"mdi2t-twitter\", \"F0544\"),\n    TWO_FACTOR_AUTHENTICATION(\"mdi2t-two-factor-authentication\", \"F09AF\"),\n    TYPEWRITER(\"mdi2t-typewriter\", \"F0F2D\");\n\n    public static MaterialDesignT findByDescription(String description) {\n        for (MaterialDesignT font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignT(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignTIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignTIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2t-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignT.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignTIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignTIkonProvider implements IkonProvider<MaterialDesignT> {\n    @Override\n    public Class<MaterialDesignT> getIkon() {\n        return MaterialDesignT.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignU.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignU implements Ikon {\n    UBISOFT(\"mdi2u-ubisoft\", \"F0BDA\"),\n    UBUNTU(\"mdi2u-ubuntu\", \"F0548\"),\n    UFO(\"mdi2u-ufo\", \"F10C4\"),\n    UFO_OUTLINE(\"mdi2u-ufo-outline\", \"F10C5\"),\n    ULTRA_HIGH_DEFINITION(\"mdi2u-ultra-high-definition\", \"F07F9\"),\n    UMBRACO(\"mdi2u-umbraco\", \"F0549\"),\n    UMBRELLA(\"mdi2u-umbrella\", \"F054A\"),\n    UMBRELLA_BEACH(\"mdi2u-umbrella-beach\", \"F188A\"),\n    UMBRELLA_BEACH_OUTLINE(\"mdi2u-umbrella-beach-outline\", \"F188B\"),\n    UMBRELLA_CLOSED(\"mdi2u-umbrella-closed\", \"F09B0\"),\n    UMBRELLA_CLOSED_OUTLINE(\"mdi2u-umbrella-closed-outline\", \"F13E2\"),\n    UMBRELLA_CLOSED_VARIANT(\"mdi2u-umbrella-closed-variant\", \"F13E1\"),\n    UMBRELLA_OUTLINE(\"mdi2u-umbrella-outline\", \"F054B\"),\n    UNDERWEAR_OUTLINE(\"mdi2u-underwear-outline\", \"F1D0F\"),\n    UNDO(\"mdi2u-undo\", \"F054C\"),\n    UNDO_VARIANT(\"mdi2u-undo-variant\", \"F054D\"),\n    UNFOLD_LESS_HORIZONTAL(\"mdi2u-unfold-less-horizontal\", \"F054E\"),\n    UNFOLD_LESS_VERTICAL(\"mdi2u-unfold-less-vertical\", \"F0760\"),\n    UNFOLD_MORE_HORIZONTAL(\"mdi2u-unfold-more-horizontal\", \"F054F\"),\n    UNFOLD_MORE_VERTICAL(\"mdi2u-unfold-more-vertical\", \"F0761\"),\n    UNGROUP(\"mdi2u-ungroup\", \"F0550\"),\n    UNICODE(\"mdi2u-unicode\", \"F0ED0\"),\n    UNICORN(\"mdi2u-unicorn\", \"F15C2\"),\n    UNICORN_VARIANT(\"mdi2u-unicorn-variant\", \"F15C3\"),\n    UNICYCLE(\"mdi2u-unicycle\", \"F15E5\"),\n    UNITY(\"mdi2u-unity\", \"F06AF\"),\n    UNREAL(\"mdi2u-unreal\", \"F09B1\"),\n    UPDATE(\"mdi2u-update\", \"F06B0\"),\n    UPLOAD(\"mdi2u-upload\", \"F0552\"),\n    UPLOAD_BOX(\"mdi2u-upload-box\", \"F1D10\"),\n    UPLOAD_BOX_OUTLINE(\"mdi2u-upload-box-outline\", \"F1D11\"),\n    UPLOAD_CIRCLE(\"mdi2u-upload-circle\", \"F1D12\"),\n    UPLOAD_CIRCLE_OUTLINE(\"mdi2u-upload-circle-outline\", \"F1D13\"),\n    UPLOAD_LOCK(\"mdi2u-upload-lock\", \"F1373\"),\n    UPLOAD_LOCK_OUTLINE(\"mdi2u-upload-lock-outline\", \"F1374\"),\n    UPLOAD_MULTIPLE(\"mdi2u-upload-multiple\", \"F083D\"),\n    UPLOAD_MULTIPLE_OUTLINE(\"mdi2u-upload-multiple-outline\", \"F1D14\"),\n    UPLOAD_NETWORK(\"mdi2u-upload-network\", \"F06F6\"),\n    UPLOAD_NETWORK_OUTLINE(\"mdi2u-upload-network-outline\", \"F0CD8\"),\n    UPLOAD_OFF(\"mdi2u-upload-off\", \"F10C6\"),\n    UPLOAD_OFF_OUTLINE(\"mdi2u-upload-off-outline\", \"F10C7\"),\n    UPLOAD_OUTLINE(\"mdi2u-upload-outline\", \"F0E07\"),\n    USB(\"mdi2u-usb\", \"F0553\"),\n    USB_C_PORT(\"mdi2u-usb-c-port\", \"F1CBF\"),\n    USB_FLASH_DRIVE(\"mdi2u-usb-flash-drive\", \"F129E\"),\n    USB_FLASH_DRIVE_OUTLINE(\"mdi2u-usb-flash-drive-outline\", \"F129F\"),\n    USB_PORT(\"mdi2u-usb-port\", \"F11F0\");\n\n    public static MaterialDesignU findByDescription(String description) {\n        for (MaterialDesignU font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignU(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignUIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignUIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2u-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignU.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignUIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignUIkonProvider implements IkonProvider<MaterialDesignU> {\n    @Override\n    public Class<MaterialDesignU> getIkon() {\n        return MaterialDesignU.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignV.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignV implements Ikon {\n    VACUUM(\"mdi2v-vacuum\", \"F19A1\"),\n    VACUUM_OUTLINE(\"mdi2v-vacuum-outline\", \"F19A2\"),\n    VALVE(\"mdi2v-valve\", \"F1066\"),\n    VALVE_CLOSED(\"mdi2v-valve-closed\", \"F1067\"),\n    VALVE_OPEN(\"mdi2v-valve-open\", \"F1068\"),\n    VAN_PASSENGER(\"mdi2v-van-passenger\", \"F07FA\"),\n    VAN_UTILITY(\"mdi2v-van-utility\", \"F07FB\"),\n    VANISH(\"mdi2v-vanish\", \"F07FC\"),\n    VANISH_QUARTER(\"mdi2v-vanish-quarter\", \"F1554\"),\n    VANITY_LIGHT(\"mdi2v-vanity-light\", \"F11E1\"),\n    VARIABLE(\"mdi2v-variable\", \"F0AE7\"),\n    VARIABLE_BOX(\"mdi2v-variable-box\", \"F1111\"),\n    VECTOR_ARRANGE_ABOVE(\"mdi2v-vector-arrange-above\", \"F0554\"),\n    VECTOR_ARRANGE_BELOW(\"mdi2v-vector-arrange-below\", \"F0555\"),\n    VECTOR_BEZIER(\"mdi2v-vector-bezier\", \"F0AE8\"),\n    VECTOR_CIRCLE(\"mdi2v-vector-circle\", \"F0556\"),\n    VECTOR_CIRCLE_VARIANT(\"mdi2v-vector-circle-variant\", \"F0557\"),\n    VECTOR_COMBINE(\"mdi2v-vector-combine\", \"F0558\"),\n    VECTOR_CURVE(\"mdi2v-vector-curve\", \"F0559\"),\n    VECTOR_DIFFERENCE(\"mdi2v-vector-difference\", \"F055A\"),\n    VECTOR_DIFFERENCE_AB(\"mdi2v-vector-difference-ab\", \"F055B\"),\n    VECTOR_DIFFERENCE_BA(\"mdi2v-vector-difference-ba\", \"F055C\"),\n    VECTOR_ELLIPSE(\"mdi2v-vector-ellipse\", \"F0893\"),\n    VECTOR_INTERSECTION(\"mdi2v-vector-intersection\", \"F055D\"),\n    VECTOR_LINE(\"mdi2v-vector-line\", \"F055E\"),\n    VECTOR_LINK(\"mdi2v-vector-link\", \"F0FE8\"),\n    VECTOR_POINT(\"mdi2v-vector-point\", \"F01C4\"),\n    VECTOR_POINT_EDIT(\"mdi2v-vector-point-edit\", \"F09E8\"),\n    VECTOR_POINT_MINUS(\"mdi2v-vector-point-minus\", \"F1B78\"),\n    VECTOR_POINT_PLUS(\"mdi2v-vector-point-plus\", \"F1B79\"),\n    VECTOR_POINT_SELECT(\"mdi2v-vector-point-select\", \"F055F\"),\n    VECTOR_POLYGON(\"mdi2v-vector-polygon\", \"F0560\"),\n    VECTOR_POLYGON_VARIANT(\"mdi2v-vector-polygon-variant\", \"F1856\"),\n    VECTOR_POLYLINE(\"mdi2v-vector-polyline\", \"F0561\"),\n    VECTOR_POLYLINE_EDIT(\"mdi2v-vector-polyline-edit\", \"F1225\"),\n    VECTOR_POLYLINE_MINUS(\"mdi2v-vector-polyline-minus\", \"F1226\"),\n    VECTOR_POLYLINE_PLUS(\"mdi2v-vector-polyline-plus\", \"F1227\"),\n    VECTOR_POLYLINE_REMOVE(\"mdi2v-vector-polyline-remove\", \"F1228\"),\n    VECTOR_RADIUS(\"mdi2v-vector-radius\", \"F074A\"),\n    VECTOR_RECTANGLE(\"mdi2v-vector-rectangle\", \"F05C6\"),\n    VECTOR_SELECTION(\"mdi2v-vector-selection\", \"F0562\"),\n    VECTOR_SQUARE(\"mdi2v-vector-square\", \"F0001\"),\n    VECTOR_SQUARE_CLOSE(\"mdi2v-vector-square-close\", \"F1857\"),\n    VECTOR_SQUARE_EDIT(\"mdi2v-vector-square-edit\", \"F18D9\"),\n    VECTOR_SQUARE_MINUS(\"mdi2v-vector-square-minus\", \"F18DA\"),\n    VECTOR_SQUARE_OPEN(\"mdi2v-vector-square-open\", \"F1858\"),\n    VECTOR_SQUARE_PLUS(\"mdi2v-vector-square-plus\", \"F18DB\"),\n    VECTOR_SQUARE_REMOVE(\"mdi2v-vector-square-remove\", \"F18DC\"),\n    VECTOR_TRIANGLE(\"mdi2v-vector-triangle\", \"F0563\"),\n    VECTOR_UNION(\"mdi2v-vector-union\", \"F0564\"),\n    VHS(\"mdi2v-vhs\", \"F0A1B\"),\n    VIBRATE(\"mdi2v-vibrate\", \"F0566\"),\n    VIBRATE_OFF(\"mdi2v-vibrate-off\", \"F0CD9\"),\n    VIDEO(\"mdi2v-video\", \"F0567\"),\n    VIDEO_2D(\"mdi2v-video-2d\", \"F1A1C\"),\n    VIDEO_3D(\"mdi2v-video-3d\", \"F07FD\"),\n    VIDEO_3D_OFF(\"mdi2v-video-3d-off\", \"F13D9\"),\n    VIDEO_3D_VARIANT(\"mdi2v-video-3d-variant\", \"F0ED1\"),\n    VIDEO_4K_BOX(\"mdi2v-video-4k-box\", \"F083E\"),\n    VIDEO_ACCOUNT(\"mdi2v-video-account\", \"F0919\"),\n    VIDEO_BOX(\"mdi2v-video-box\", \"F00FD\"),\n    VIDEO_BOX_OFF(\"mdi2v-video-box-off\", \"F00FE\"),\n    VIDEO_CHECK(\"mdi2v-video-check\", \"F1069\"),\n    VIDEO_CHECK_OUTLINE(\"mdi2v-video-check-outline\", \"F106A\"),\n    VIDEO_HIGH_DEFINITION(\"mdi2v-video-high-definition\", \"F152E\"),\n    VIDEO_IMAGE(\"mdi2v-video-image\", \"F091A\"),\n    VIDEO_INPUT_ANTENNA(\"mdi2v-video-input-antenna\", \"F083F\"),\n    VIDEO_INPUT_COMPONENT(\"mdi2v-video-input-component\", \"F0840\"),\n    VIDEO_INPUT_HDMI(\"mdi2v-video-input-hdmi\", \"F0841\"),\n    VIDEO_INPUT_SCART(\"mdi2v-video-input-scart\", \"F0F8C\"),\n    VIDEO_INPUT_SVIDEO(\"mdi2v-video-input-svideo\", \"F0842\"),\n    VIDEO_MARKER(\"mdi2v-video-marker\", \"F19A9\"),\n    VIDEO_MARKER_OUTLINE(\"mdi2v-video-marker-outline\", \"F19AA\"),\n    VIDEO_MINUS(\"mdi2v-video-minus\", \"F09B2\"),\n    VIDEO_MINUS_OUTLINE(\"mdi2v-video-minus-outline\", \"F02BA\"),\n    VIDEO_OFF(\"mdi2v-video-off\", \"F0568\"),\n    VIDEO_OFF_OUTLINE(\"mdi2v-video-off-outline\", \"F0BDB\"),\n    VIDEO_OUTLINE(\"mdi2v-video-outline\", \"F0BDC\"),\n    VIDEO_PLUS(\"mdi2v-video-plus\", \"F09B3\"),\n    VIDEO_PLUS_OUTLINE(\"mdi2v-video-plus-outline\", \"F01D3\"),\n    VIDEO_STABILIZATION(\"mdi2v-video-stabilization\", \"F091B\"),\n    VIDEO_STANDARD_DEFINITION(\"mdi2v-video-standard-definition\", \"F1CA0\"),\n    VIDEO_SWITCH(\"mdi2v-video-switch\", \"F0569\"),\n    VIDEO_SWITCH_OUTLINE(\"mdi2v-video-switch-outline\", \"F0790\"),\n    VIDEO_VINTAGE(\"mdi2v-video-vintage\", \"F0A1C\"),\n    VIDEO_WIRELESS(\"mdi2v-video-wireless\", \"F0ED2\"),\n    VIDEO_WIRELESS_OUTLINE(\"mdi2v-video-wireless-outline\", \"F0ED3\"),\n    VIEW_AGENDA(\"mdi2v-view-agenda\", \"F056A\"),\n    VIEW_AGENDA_OUTLINE(\"mdi2v-view-agenda-outline\", \"F11D8\"),\n    VIEW_ARRAY(\"mdi2v-view-array\", \"F056B\"),\n    VIEW_ARRAY_OUTLINE(\"mdi2v-view-array-outline\", \"F1485\"),\n    VIEW_CAROUSEL(\"mdi2v-view-carousel\", \"F056C\"),\n    VIEW_CAROUSEL_OUTLINE(\"mdi2v-view-carousel-outline\", \"F1486\"),\n    VIEW_COLUMN(\"mdi2v-view-column\", \"F056D\"),\n    VIEW_COLUMN_OUTLINE(\"mdi2v-view-column-outline\", \"F1487\"),\n    VIEW_COMFY(\"mdi2v-view-comfy\", \"F0E6A\"),\n    VIEW_COMFY_OUTLINE(\"mdi2v-view-comfy-outline\", \"F1488\"),\n    VIEW_COMPACT(\"mdi2v-view-compact\", \"F0E6B\"),\n    VIEW_COMPACT_OUTLINE(\"mdi2v-view-compact-outline\", \"F0E6C\"),\n    VIEW_DASHBOARD(\"mdi2v-view-dashboard\", \"F056E\"),\n    VIEW_DASHBOARD_EDIT(\"mdi2v-view-dashboard-edit\", \"F1947\"),\n    VIEW_DASHBOARD_EDIT_OUTLINE(\"mdi2v-view-dashboard-edit-outline\", \"F1948\"),\n    VIEW_DASHBOARD_OUTLINE(\"mdi2v-view-dashboard-outline\", \"F0A1D\"),\n    VIEW_DASHBOARD_VARIANT(\"mdi2v-view-dashboard-variant\", \"F0843\"),\n    VIEW_DASHBOARD_VARIANT_OUTLINE(\"mdi2v-view-dashboard-variant-outline\", \"F1489\"),\n    VIEW_DAY(\"mdi2v-view-day\", \"F056F\"),\n    VIEW_DAY_OUTLINE(\"mdi2v-view-day-outline\", \"F148A\"),\n    VIEW_GALLERY(\"mdi2v-view-gallery\", \"F1888\"),\n    VIEW_GALLERY_OUTLINE(\"mdi2v-view-gallery-outline\", \"F1889\"),\n    VIEW_GRID(\"mdi2v-view-grid\", \"F0570\"),\n    VIEW_GRID_COMPACT(\"mdi2v-view-grid-compact\", \"F1C61\"),\n    VIEW_GRID_OUTLINE(\"mdi2v-view-grid-outline\", \"F11D9\"),\n    VIEW_GRID_PLUS(\"mdi2v-view-grid-plus\", \"F0F8D\"),\n    VIEW_GRID_PLUS_OUTLINE(\"mdi2v-view-grid-plus-outline\", \"F11DA\"),\n    VIEW_HEADLINE(\"mdi2v-view-headline\", \"F0571\"),\n    VIEW_LIST(\"mdi2v-view-list\", \"F0572\"),\n    VIEW_LIST_OUTLINE(\"mdi2v-view-list-outline\", \"F148B\"),\n    VIEW_MODULE(\"mdi2v-view-module\", \"F0573\"),\n    VIEW_MODULE_OUTLINE(\"mdi2v-view-module-outline\", \"F148C\"),\n    VIEW_PARALLEL(\"mdi2v-view-parallel\", \"F0728\"),\n    VIEW_PARALLEL_OUTLINE(\"mdi2v-view-parallel-outline\", \"F148D\"),\n    VIEW_QUILT(\"mdi2v-view-quilt\", \"F0574\"),\n    VIEW_QUILT_OUTLINE(\"mdi2v-view-quilt-outline\", \"F148E\"),\n    VIEW_SEQUENTIAL(\"mdi2v-view-sequential\", \"F0729\"),\n    VIEW_SEQUENTIAL_OUTLINE(\"mdi2v-view-sequential-outline\", \"F148F\"),\n    VIEW_SPLIT_HORIZONTAL(\"mdi2v-view-split-horizontal\", \"F0BCB\"),\n    VIEW_SPLIT_VERTICAL(\"mdi2v-view-split-vertical\", \"F0BCC\"),\n    VIEW_STREAM(\"mdi2v-view-stream\", \"F0575\"),\n    VIEW_STREAM_OUTLINE(\"mdi2v-view-stream-outline\", \"F1490\"),\n    VIEW_WEEK(\"mdi2v-view-week\", \"F0576\"),\n    VIEW_WEEK_OUTLINE(\"mdi2v-view-week-outline\", \"F1491\"),\n    VIMEO(\"mdi2v-vimeo\", \"F0577\"),\n    VIOLIN(\"mdi2v-violin\", \"F060F\"),\n    VIRTUAL_REALITY(\"mdi2v-virtual-reality\", \"F0894\"),\n    VIRUS(\"mdi2v-virus\", \"F13B6\"),\n    VIRUS_OFF(\"mdi2v-virus-off\", \"F18E1\"),\n    VIRUS_OFF_OUTLINE(\"mdi2v-virus-off-outline\", \"F18E2\"),\n    VIRUS_OUTLINE(\"mdi2v-virus-outline\", \"F13B7\"),\n    VLC(\"mdi2v-vlc\", \"F057C\"),\n    VOICEMAIL(\"mdi2v-voicemail\", \"F057D\"),\n    VOLCANO(\"mdi2v-volcano\", \"F1A83\"),\n    VOLCANO_OUTLINE(\"mdi2v-volcano-outline\", \"F1A84\"),\n    VOLLEYBALL(\"mdi2v-volleyball\", \"F09B4\"),\n    VOLUME_EQUAL(\"mdi2v-volume-equal\", \"F1B10\"),\n    VOLUME_HIGH(\"mdi2v-volume-high\", \"F057E\"),\n    VOLUME_LOW(\"mdi2v-volume-low\", \"F057F\"),\n    VOLUME_MEDIUM(\"mdi2v-volume-medium\", \"F0580\"),\n    VOLUME_MINUS(\"mdi2v-volume-minus\", \"F075E\"),\n    VOLUME_MUTE(\"mdi2v-volume-mute\", \"F075F\"),\n    VOLUME_OFF(\"mdi2v-volume-off\", \"F0581\"),\n    VOLUME_PLUS(\"mdi2v-volume-plus\", \"F075D\"),\n    VOLUME_SOURCE(\"mdi2v-volume-source\", \"F1120\"),\n    VOLUME_VARIANT_OFF(\"mdi2v-volume-variant-off\", \"F0E08\"),\n    VOLUME_VIBRATE(\"mdi2v-volume-vibrate\", \"F1121\"),\n    VOTE(\"mdi2v-vote\", \"F0A1F\"),\n    VOTE_OUTLINE(\"mdi2v-vote-outline\", \"F0A20\"),\n    VPN(\"mdi2v-vpn\", \"F0582\"),\n    VUEJS(\"mdi2v-vuejs\", \"F0844\"),\n    VUETIFY(\"mdi2v-vuetify\", \"F0E6D\");\n\n    public static MaterialDesignV findByDescription(String description) {\n        for (MaterialDesignV font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignV(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignVIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignVIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2v-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignV.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignVIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignVIkonProvider implements IkonProvider<MaterialDesignV> {\n    @Override\n    public Class<MaterialDesignV> getIkon() {\n        return MaterialDesignV.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignW.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignW implements Ikon {\n    WALK(\"mdi2w-walk\", \"F0583\"),\n    WALL(\"mdi2w-wall\", \"F07FE\"),\n    WALL_FIRE(\"mdi2w-wall-fire\", \"F1A11\"),\n    WALL_SCONCE(\"mdi2w-wall-sconce\", \"F091C\"),\n    WALL_SCONCE_FLAT(\"mdi2w-wall-sconce-flat\", \"F091D\"),\n    WALL_SCONCE_FLAT_OUTLINE(\"mdi2w-wall-sconce-flat-outline\", \"F17C9\"),\n    WALL_SCONCE_FLAT_VARIANT(\"mdi2w-wall-sconce-flat-variant\", \"F041C\"),\n    WALL_SCONCE_FLAT_VARIANT_OUTLINE(\"mdi2w-wall-sconce-flat-variant-outline\", \"F17CA\"),\n    WALL_SCONCE_OUTLINE(\"mdi2w-wall-sconce-outline\", \"F17CB\"),\n    WALL_SCONCE_ROUND(\"mdi2w-wall-sconce-round\", \"F0748\"),\n    WALL_SCONCE_ROUND_OUTLINE(\"mdi2w-wall-sconce-round-outline\", \"F17CC\"),\n    WALL_SCONCE_ROUND_VARIANT(\"mdi2w-wall-sconce-round-variant\", \"F091E\"),\n    WALL_SCONCE_ROUND_VARIANT_OUTLINE(\"mdi2w-wall-sconce-round-variant-outline\", \"F17CD\"),\n    WALLET(\"mdi2w-wallet\", \"F0584\"),\n    WALLET_BIFOLD(\"mdi2w-wallet-bifold\", \"F1C58\"),\n    WALLET_BIFOLD_OUTLINE(\"mdi2w-wallet-bifold-outline\", \"F1C59\"),\n    WALLET_GIFTCARD(\"mdi2w-wallet-giftcard\", \"F0585\"),\n    WALLET_MEMBERSHIP(\"mdi2w-wallet-membership\", \"F0586\"),\n    WALLET_OUTLINE(\"mdi2w-wallet-outline\", \"F0BDD\"),\n    WALLET_PLUS(\"mdi2w-wallet-plus\", \"F0F8E\"),\n    WALLET_PLUS_OUTLINE(\"mdi2w-wallet-plus-outline\", \"F0F8F\"),\n    WALLET_TRAVEL(\"mdi2w-wallet-travel\", \"F0587\"),\n    WALLPAPER(\"mdi2w-wallpaper\", \"F0E09\"),\n    WAN(\"mdi2w-wan\", \"F0588\"),\n    WARDROBE(\"mdi2w-wardrobe\", \"F0F90\"),\n    WARDROBE_OUTLINE(\"mdi2w-wardrobe-outline\", \"F0F91\"),\n    WAREHOUSE(\"mdi2w-warehouse\", \"F0F81\"),\n    WASHING_MACHINE(\"mdi2w-washing-machine\", \"F072A\"),\n    WASHING_MACHINE_ALERT(\"mdi2w-washing-machine-alert\", \"F11BC\"),\n    WASHING_MACHINE_OFF(\"mdi2w-washing-machine-off\", \"F11BD\"),\n    WATCH(\"mdi2w-watch\", \"F0589\"),\n    WATCH_EXPORT(\"mdi2w-watch-export\", \"F058A\"),\n    WATCH_EXPORT_VARIANT(\"mdi2w-watch-export-variant\", \"F0895\"),\n    WATCH_IMPORT(\"mdi2w-watch-import\", \"F058B\"),\n    WATCH_IMPORT_VARIANT(\"mdi2w-watch-import-variant\", \"F0896\"),\n    WATCH_VARIANT(\"mdi2w-watch-variant\", \"F0897\"),\n    WATCH_VIBRATE(\"mdi2w-watch-vibrate\", \"F06B1\"),\n    WATCH_VIBRATE_OFF(\"mdi2w-watch-vibrate-off\", \"F0CDA\"),\n    WATER(\"mdi2w-water\", \"F058C\"),\n    WATER_ALERT(\"mdi2w-water-alert\", \"F1502\"),\n    WATER_ALERT_OUTLINE(\"mdi2w-water-alert-outline\", \"F1503\"),\n    WATER_BOILER(\"mdi2w-water-boiler\", \"F0F92\"),\n    WATER_BOILER_ALERT(\"mdi2w-water-boiler-alert\", \"F11B3\"),\n    WATER_BOILER_AUTO(\"mdi2w-water-boiler-auto\", \"F1B98\"),\n    WATER_BOILER_OFF(\"mdi2w-water-boiler-off\", \"F11B4\"),\n    WATER_CHECK(\"mdi2w-water-check\", \"F1504\"),\n    WATER_CHECK_OUTLINE(\"mdi2w-water-check-outline\", \"F1505\"),\n    WATER_CIRCLE(\"mdi2w-water-circle\", \"F1806\"),\n    WATER_MINUS(\"mdi2w-water-minus\", \"F1506\"),\n    WATER_MINUS_OUTLINE(\"mdi2w-water-minus-outline\", \"F1507\"),\n    WATER_OFF(\"mdi2w-water-off\", \"F058D\"),\n    WATER_OFF_OUTLINE(\"mdi2w-water-off-outline\", \"F1508\"),\n    WATER_OPACITY(\"mdi2w-water-opacity\", \"F1855\"),\n    WATER_OUTLINE(\"mdi2w-water-outline\", \"F0E0A\"),\n    WATER_PERCENT(\"mdi2w-water-percent\", \"F058E\"),\n    WATER_PERCENT_ALERT(\"mdi2w-water-percent-alert\", \"F1509\"),\n    WATER_PLUS(\"mdi2w-water-plus\", \"F150A\"),\n    WATER_PLUS_OUTLINE(\"mdi2w-water-plus-outline\", \"F150B\"),\n    WATER_POLO(\"mdi2w-water-polo\", \"F12A0\"),\n    WATER_PUMP(\"mdi2w-water-pump\", \"F058F\"),\n    WATER_PUMP_OFF(\"mdi2w-water-pump-off\", \"F0F93\"),\n    WATER_REMOVE(\"mdi2w-water-remove\", \"F150C\"),\n    WATER_REMOVE_OUTLINE(\"mdi2w-water-remove-outline\", \"F150D\"),\n    WATER_SYNC(\"mdi2w-water-sync\", \"F17C6\"),\n    WATER_THERMOMETER(\"mdi2w-water-thermometer\", \"F1A85\"),\n    WATER_THERMOMETER_OUTLINE(\"mdi2w-water-thermometer-outline\", \"F1A86\"),\n    WATER_WELL(\"mdi2w-water-well\", \"F106B\"),\n    WATER_WELL_OUTLINE(\"mdi2w-water-well-outline\", \"F106C\"),\n    WATERFALL(\"mdi2w-waterfall\", \"F1849\"),\n    WATERING_CAN(\"mdi2w-watering-can\", \"F1481\"),\n    WATERING_CAN_OUTLINE(\"mdi2w-watering-can-outline\", \"F1482\"),\n    WATERMARK(\"mdi2w-watermark\", \"F0612\"),\n    WAVE(\"mdi2w-wave\", \"F0F2E\"),\n    WAVE_ARROW_DOWN(\"mdi2w-wave-arrow-down\", \"F1CB0\"),\n    WAVE_ARROW_UP(\"mdi2w-wave-arrow-up\", \"F1CB1\"),\n    WAVE_UNDERCURRENT(\"mdi2w-wave-undercurrent\", \"F1CC0\"),\n    WAVEFORM(\"mdi2w-waveform\", \"F147D\"),\n    WAVES(\"mdi2w-waves\", \"F078D\"),\n    WAVES_ARROW_LEFT(\"mdi2w-waves-arrow-left\", \"F1859\"),\n    WAVES_ARROW_RIGHT(\"mdi2w-waves-arrow-right\", \"F185A\"),\n    WAVES_ARROW_UP(\"mdi2w-waves-arrow-up\", \"F185B\"),\n    WAZE(\"mdi2w-waze\", \"F0BDE\"),\n    WEATHER_CLOUDY(\"mdi2w-weather-cloudy\", \"F0590\"),\n    WEATHER_CLOUDY_ALERT(\"mdi2w-weather-cloudy-alert\", \"F0F2F\"),\n    WEATHER_CLOUDY_ARROW_RIGHT(\"mdi2w-weather-cloudy-arrow-right\", \"F0E6E\"),\n    WEATHER_CLOUDY_CLOCK(\"mdi2w-weather-cloudy-clock\", \"F18F6\"),\n    WEATHER_DUST(\"mdi2w-weather-dust\", \"F1B5A\"),\n    WEATHER_FOG(\"mdi2w-weather-fog\", \"F0591\"),\n    WEATHER_HAIL(\"mdi2w-weather-hail\", \"F0592\"),\n    WEATHER_HAZY(\"mdi2w-weather-hazy\", \"F0F30\"),\n    WEATHER_HURRICANE(\"mdi2w-weather-hurricane\", \"F0898\"),\n    WEATHER_HURRICANE_OUTLINE(\"mdi2w-weather-hurricane-outline\", \"F1C78\"),\n    WEATHER_LIGHTNING(\"mdi2w-weather-lightning\", \"F0593\"),\n    WEATHER_LIGHTNING_RAINY(\"mdi2w-weather-lightning-rainy\", \"F067E\"),\n    WEATHER_MOONSET(\"mdi2w-weather-moonset\", \"F1D15\"),\n    WEATHER_MOONSET_DOWN(\"mdi2w-weather-moonset-down\", \"F1D16\"),\n    WEATHER_MOONSET_UP(\"mdi2w-weather-moonset-up\", \"F1D17\"),\n    WEATHER_NIGHT(\"mdi2w-weather-night\", \"F0594\"),\n    WEATHER_NIGHT_PARTLY_CLOUDY(\"mdi2w-weather-night-partly-cloudy\", \"F0F31\"),\n    WEATHER_PARTLY_CLOUDY(\"mdi2w-weather-partly-cloudy\", \"F0595\"),\n    WEATHER_PARTLY_LIGHTNING(\"mdi2w-weather-partly-lightning\", \"F0F32\"),\n    WEATHER_PARTLY_RAINY(\"mdi2w-weather-partly-rainy\", \"F0F33\"),\n    WEATHER_PARTLY_SNOWY(\"mdi2w-weather-partly-snowy\", \"F0F34\"),\n    WEATHER_PARTLY_SNOWY_RAINY(\"mdi2w-weather-partly-snowy-rainy\", \"F0F35\"),\n    WEATHER_POURING(\"mdi2w-weather-pouring\", \"F0596\"),\n    WEATHER_RAINY(\"mdi2w-weather-rainy\", \"F0597\"),\n    WEATHER_SNOWY(\"mdi2w-weather-snowy\", \"F0598\"),\n    WEATHER_SNOWY_HEAVY(\"mdi2w-weather-snowy-heavy\", \"F0F36\"),\n    WEATHER_SNOWY_RAINY(\"mdi2w-weather-snowy-rainy\", \"F067F\"),\n    WEATHER_SUNNY(\"mdi2w-weather-sunny\", \"F0599\"),\n    WEATHER_SUNNY_ALERT(\"mdi2w-weather-sunny-alert\", \"F0F37\"),\n    WEATHER_SUNNY_OFF(\"mdi2w-weather-sunny-off\", \"F14E4\"),\n    WEATHER_SUNSET(\"mdi2w-weather-sunset\", \"F059A\"),\n    WEATHER_SUNSET_DOWN(\"mdi2w-weather-sunset-down\", \"F059B\"),\n    WEATHER_SUNSET_UP(\"mdi2w-weather-sunset-up\", \"F059C\"),\n    WEATHER_TORNADO(\"mdi2w-weather-tornado\", \"F0F38\"),\n    WEATHER_WINDY(\"mdi2w-weather-windy\", \"F059D\"),\n    WEATHER_WINDY_VARIANT(\"mdi2w-weather-windy-variant\", \"F059E\"),\n    WEB(\"mdi2w-web\", \"F059F\"),\n    WEB_BOX(\"mdi2w-web-box\", \"F0F94\"),\n    WEB_CANCEL(\"mdi2w-web-cancel\", \"F1790\"),\n    WEB_CHECK(\"mdi2w-web-check\", \"F0789\"),\n    WEB_CLOCK(\"mdi2w-web-clock\", \"F124A\"),\n    WEB_MINUS(\"mdi2w-web-minus\", \"F10A0\"),\n    WEB_OFF(\"mdi2w-web-off\", \"F0A8E\"),\n    WEB_PLUS(\"mdi2w-web-plus\", \"F0033\"),\n    WEB_REFRESH(\"mdi2w-web-refresh\", \"F1791\"),\n    WEB_REMOVE(\"mdi2w-web-remove\", \"F0551\"),\n    WEB_SYNC(\"mdi2w-web-sync\", \"F1792\"),\n    WEBCAM(\"mdi2w-webcam\", \"F05A0\"),\n    WEBCAM_OFF(\"mdi2w-webcam-off\", \"F1737\"),\n    WEBHOOK(\"mdi2w-webhook\", \"F062F\"),\n    WEBPACK(\"mdi2w-webpack\", \"F072B\"),\n    WEBRTC(\"mdi2w-webrtc\", \"F1248\"),\n    WECHAT(\"mdi2w-wechat\", \"F0611\"),\n    WEIGHT(\"mdi2w-weight\", \"F05A1\"),\n    WEIGHT_GRAM(\"mdi2w-weight-gram\", \"F0D3F\"),\n    WEIGHT_KILOGRAM(\"mdi2w-weight-kilogram\", \"F05A2\"),\n    WEIGHT_LIFTER(\"mdi2w-weight-lifter\", \"F115D\"),\n    WEIGHT_POUND(\"mdi2w-weight-pound\", \"F09B5\"),\n    WHATSAPP(\"mdi2w-whatsapp\", \"F05A3\"),\n    WHEEL_BARROW(\"mdi2w-wheel-barrow\", \"F14F2\"),\n    WHEELCHAIR(\"mdi2w-wheelchair\", \"F1A87\"),\n    WHEELCHAIR_ACCESSIBILITY(\"mdi2w-wheelchair-accessibility\", \"F05A4\"),\n    WHISTLE(\"mdi2w-whistle\", \"F09B6\"),\n    WHISTLE_OUTLINE(\"mdi2w-whistle-outline\", \"F12BC\"),\n    WHITE_BALANCE_AUTO(\"mdi2w-white-balance-auto\", \"F05A5\"),\n    WHITE_BALANCE_INCANDESCENT(\"mdi2w-white-balance-incandescent\", \"F05A6\"),\n    WHITE_BALANCE_IRIDESCENT(\"mdi2w-white-balance-iridescent\", \"F05A7\"),\n    WHITE_BALANCE_SUNNY(\"mdi2w-white-balance-sunny\", \"F05A8\"),\n    WIDGETS(\"mdi2w-widgets\", \"F072C\"),\n    WIDGETS_OUTLINE(\"mdi2w-widgets-outline\", \"F1355\"),\n    WIFI(\"mdi2w-wifi\", \"F05A9\"),\n    WIFI_ALERT(\"mdi2w-wifi-alert\", \"F16B5\"),\n    WIFI_ARROW_DOWN(\"mdi2w-wifi-arrow-down\", \"F16B6\"),\n    WIFI_ARROW_LEFT(\"mdi2w-wifi-arrow-left\", \"F16B7\"),\n    WIFI_ARROW_LEFT_RIGHT(\"mdi2w-wifi-arrow-left-right\", \"F16B8\"),\n    WIFI_ARROW_RIGHT(\"mdi2w-wifi-arrow-right\", \"F16B9\"),\n    WIFI_ARROW_UP(\"mdi2w-wifi-arrow-up\", \"F16BA\"),\n    WIFI_ARROW_UP_DOWN(\"mdi2w-wifi-arrow-up-down\", \"F16BB\"),\n    WIFI_CANCEL(\"mdi2w-wifi-cancel\", \"F16BC\"),\n    WIFI_CHECK(\"mdi2w-wifi-check\", \"F16BD\"),\n    WIFI_COG(\"mdi2w-wifi-cog\", \"F16BE\"),\n    WIFI_LOCK(\"mdi2w-wifi-lock\", \"F16BF\"),\n    WIFI_LOCK_OPEN(\"mdi2w-wifi-lock-open\", \"F16C0\"),\n    WIFI_MARKER(\"mdi2w-wifi-marker\", \"F16C1\"),\n    WIFI_MINUS(\"mdi2w-wifi-minus\", \"F16C2\"),\n    WIFI_OFF(\"mdi2w-wifi-off\", \"F05AA\"),\n    WIFI_PLUS(\"mdi2w-wifi-plus\", \"F16C3\"),\n    WIFI_REFRESH(\"mdi2w-wifi-refresh\", \"F16C4\"),\n    WIFI_REMOVE(\"mdi2w-wifi-remove\", \"F16C5\"),\n    WIFI_SETTINGS(\"mdi2w-wifi-settings\", \"F16C6\"),\n    WIFI_STAR(\"mdi2w-wifi-star\", \"F0E0B\"),\n    WIFI_STRENGTH_1(\"mdi2w-wifi-strength-1\", \"F091F\"),\n    WIFI_STRENGTH_1_ALERT(\"mdi2w-wifi-strength-1-alert\", \"F0920\"),\n    WIFI_STRENGTH_1_LOCK(\"mdi2w-wifi-strength-1-lock\", \"F0921\"),\n    WIFI_STRENGTH_1_LOCK_OPEN(\"mdi2w-wifi-strength-1-lock-open\", \"F16CB\"),\n    WIFI_STRENGTH_2(\"mdi2w-wifi-strength-2\", \"F0922\"),\n    WIFI_STRENGTH_2_ALERT(\"mdi2w-wifi-strength-2-alert\", \"F0923\"),\n    WIFI_STRENGTH_2_LOCK(\"mdi2w-wifi-strength-2-lock\", \"F0924\"),\n    WIFI_STRENGTH_2_LOCK_OPEN(\"mdi2w-wifi-strength-2-lock-open\", \"F16CC\"),\n    WIFI_STRENGTH_3(\"mdi2w-wifi-strength-3\", \"F0925\"),\n    WIFI_STRENGTH_3_ALERT(\"mdi2w-wifi-strength-3-alert\", \"F0926\"),\n    WIFI_STRENGTH_3_LOCK(\"mdi2w-wifi-strength-3-lock\", \"F0927\"),\n    WIFI_STRENGTH_3_LOCK_OPEN(\"mdi2w-wifi-strength-3-lock-open\", \"F16CD\"),\n    WIFI_STRENGTH_4(\"mdi2w-wifi-strength-4\", \"F0928\"),\n    WIFI_STRENGTH_4_ALERT(\"mdi2w-wifi-strength-4-alert\", \"F0929\"),\n    WIFI_STRENGTH_4_LOCK(\"mdi2w-wifi-strength-4-lock\", \"F092A\"),\n    WIFI_STRENGTH_4_LOCK_OPEN(\"mdi2w-wifi-strength-4-lock-open\", \"F16CE\"),\n    WIFI_STRENGTH_ALERT_OUTLINE(\"mdi2w-wifi-strength-alert-outline\", \"F092B\"),\n    WIFI_STRENGTH_LOCK_OPEN_OUTLINE(\"mdi2w-wifi-strength-lock-open-outline\", \"F16CF\"),\n    WIFI_STRENGTH_LOCK_OUTLINE(\"mdi2w-wifi-strength-lock-outline\", \"F092C\"),\n    WIFI_STRENGTH_OFF(\"mdi2w-wifi-strength-off\", \"F092D\"),\n    WIFI_STRENGTH_OFF_OUTLINE(\"mdi2w-wifi-strength-off-outline\", \"F092E\"),\n    WIFI_STRENGTH_OUTLINE(\"mdi2w-wifi-strength-outline\", \"F092F\"),\n    WIFI_SYNC(\"mdi2w-wifi-sync\", \"F16C7\"),\n    WIKIPEDIA(\"mdi2w-wikipedia\", \"F05AC\"),\n    WIND_POWER(\"mdi2w-wind-power\", \"F1A88\"),\n    WIND_POWER_OUTLINE(\"mdi2w-wind-power-outline\", \"F1A89\"),\n    WIND_TURBINE(\"mdi2w-wind-turbine\", \"F0DA5\"),\n    WIND_TURBINE_ALERT(\"mdi2w-wind-turbine-alert\", \"F19AB\"),\n    WIND_TURBINE_CHECK(\"mdi2w-wind-turbine-check\", \"F19AC\"),\n    WINDOW_CLOSE(\"mdi2w-window-close\", \"F05AD\"),\n    WINDOW_CLOSED(\"mdi2w-window-closed\", \"F05AE\"),\n    WINDOW_CLOSED_VARIANT(\"mdi2w-window-closed-variant\", \"F11DB\"),\n    WINDOW_MAXIMIZE(\"mdi2w-window-maximize\", \"F05AF\"),\n    WINDOW_MINIMIZE(\"mdi2w-window-minimize\", \"F05B0\"),\n    WINDOW_OPEN(\"mdi2w-window-open\", \"F05B1\"),\n    WINDOW_OPEN_VARIANT(\"mdi2w-window-open-variant\", \"F11DC\"),\n    WINDOW_RESTORE(\"mdi2w-window-restore\", \"F05B2\"),\n    WINDOW_SHUTTER(\"mdi2w-window-shutter\", \"F111C\"),\n    WINDOW_SHUTTER_ALERT(\"mdi2w-window-shutter-alert\", \"F111D\"),\n    WINDOW_SHUTTER_AUTO(\"mdi2w-window-shutter-auto\", \"F1BA3\"),\n    WINDOW_SHUTTER_COG(\"mdi2w-window-shutter-cog\", \"F1A8A\"),\n    WINDOW_SHUTTER_OPEN(\"mdi2w-window-shutter-open\", \"F111E\"),\n    WINDOW_SHUTTER_SETTINGS(\"mdi2w-window-shutter-settings\", \"F1A8B\"),\n    WINDSOCK(\"mdi2w-windsock\", \"F15FA\"),\n    WIPER(\"mdi2w-wiper\", \"F0AE9\"),\n    WIPER_WASH(\"mdi2w-wiper-wash\", \"F0DA6\"),\n    WIPER_WASH_ALERT(\"mdi2w-wiper-wash-alert\", \"F18DF\"),\n    WIZARD_HAT(\"mdi2w-wizard-hat\", \"F1477\"),\n    WORDPRESS(\"mdi2w-wordpress\", \"F05B4\"),\n    WRAP(\"mdi2w-wrap\", \"F05B6\"),\n    WRAP_DISABLED(\"mdi2w-wrap-disabled\", \"F0BDF\"),\n    WRENCH(\"mdi2w-wrench\", \"F05B7\"),\n    WRENCH_CHECK(\"mdi2w-wrench-check\", \"F1B8F\"),\n    WRENCH_CHECK_OUTLINE(\"mdi2w-wrench-check-outline\", \"F1B90\"),\n    WRENCH_CLOCK(\"mdi2w-wrench-clock\", \"F19A3\"),\n    WRENCH_CLOCK_OUTLINE(\"mdi2w-wrench-clock-outline\", \"F1B93\"),\n    WRENCH_COG(\"mdi2w-wrench-cog\", \"F1B91\"),\n    WRENCH_COG_OUTLINE(\"mdi2w-wrench-cog-outline\", \"F1B92\"),\n    WRENCH_OUTLINE(\"mdi2w-wrench-outline\", \"F0BE0\");\n\n    public static MaterialDesignW findByDescription(String description) {\n        for (MaterialDesignW font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignW(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignWIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignWIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2w-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignW.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignWIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class MaterialDesignWIkonProvider implements IkonProvider<MaterialDesignW> {\n    @Override\n    public Class<MaterialDesignW> getIkon() {\n        return MaterialDesignW.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignX.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignX implements Ikon {\n    XAMARIN(\"mdi2x-xamarin\", \"F0845\"),\n    XML(\"mdi2x-xml\", \"F05C0\"),\n    XMPP(\"mdi2x-xmpp\", \"F07FF\");\n\n    public static MaterialDesignX findByDescription(String description) {\n        for (MaterialDesignX font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignX(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignXIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignXIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2x-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignX.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignXIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class MaterialDesignXIkonProvider implements IkonProvider<MaterialDesignX> {\n    @Override\n    public Class<MaterialDesignX> getIkon() {\n        return MaterialDesignX.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignY.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignY implements Ikon {\n    YAHOO(\"mdi2y-yahoo\", \"F0B4F\"),\n    YEAST(\"mdi2y-yeast\", \"F05C1\"),\n    YIN_YANG(\"mdi2y-yin-yang\", \"F0680\"),\n    YOGA(\"mdi2y-yoga\", \"F117C\"),\n    YOUTUBE(\"mdi2y-youtube\", \"F05C3\"),\n    YOUTUBE_GAMING(\"mdi2y-youtube-gaming\", \"F0848\"),\n    YOUTUBE_STUDIO(\"mdi2y-youtube-studio\", \"F0847\"),\n    YOUTUBE_SUBSCRIPTION(\"mdi2y-youtube-subscription\", \"F0D40\"),\n    YOUTUBE_TV(\"mdi2y-youtube-tv\", \"F0448\"),\n    YURT(\"mdi2y-yurt\", \"F1516\");\n\n    public static MaterialDesignY findByDescription(String description) {\n        for (MaterialDesignY font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignY(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignYIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignYIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2y-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignY.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignYIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class MaterialDesignYIkonProvider implements IkonProvider<MaterialDesignY> {\n    @Override\n    public Class<MaterialDesignY> getIkon() {\n        return MaterialDesignY.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MaterialDesignZ implements Ikon {\n    Z_WAVE(\"mdi2z-z-wave\", \"F0AEA\"),\n    ZEND(\"mdi2z-zend\", \"F0AEB\"),\n    ZIGBEE(\"mdi2z-zigbee\", \"F0D41\"),\n    ZIP_BOX(\"mdi2z-zip-box\", \"F05C4\"),\n    ZIP_BOX_OUTLINE(\"mdi2z-zip-box-outline\", \"F0FFA\"),\n    ZIP_DISK(\"mdi2z-zip-disk\", \"F0A23\"),\n    ZODIAC_AQUARIUS(\"mdi2z-zodiac-aquarius\", \"F0A7D\"),\n    ZODIAC_ARIES(\"mdi2z-zodiac-aries\", \"F0A7E\"),\n    ZODIAC_CANCER(\"mdi2z-zodiac-cancer\", \"F0A7F\"),\n    ZODIAC_CAPRICORN(\"mdi2z-zodiac-capricorn\", \"F0A80\"),\n    ZODIAC_GEMINI(\"mdi2z-zodiac-gemini\", \"F0A81\"),\n    ZODIAC_LEO(\"mdi2z-zodiac-leo\", \"F0A82\"),\n    ZODIAC_LIBRA(\"mdi2z-zodiac-libra\", \"F0A83\"),\n    ZODIAC_PISCES(\"mdi2z-zodiac-pisces\", \"F0A84\"),\n    ZODIAC_SAGITTARIUS(\"mdi2z-zodiac-sagittarius\", \"F0A85\"),\n    ZODIAC_SCORPIO(\"mdi2z-zodiac-scorpio\", \"F0A86\"),\n    ZODIAC_TAURUS(\"mdi2z-zodiac-taurus\", \"F0A87\"),\n    ZODIAC_VIRGO(\"mdi2z-zodiac-virgo\", \"F0A88\");\n\n    public static MaterialDesignZ findByDescription(String description) {\n        for (MaterialDesignZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    MaterialDesignZ(String description, String code) {\n        this.description = description;\n        this.code = Integer.parseInt(code, 16);\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MaterialDesignZIkonHandler extends AbstractMaterialDesignIkonHandler {\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mdi2z-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MaterialDesignZ.findByDescription(description);\n    }\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/java/org/kordamp/ikonli/materialdesign2/MaterialDesignZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.materialdesign2;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class MaterialDesignZIkonProvider implements IkonProvider<MaterialDesignZ> {\n    @Override\n    public Class<MaterialDesignZ> getIkon() {\n        return MaterialDesignZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-materialdesign2-pack/src/main/resources/META-INF/resources/materialdesign2/7.4.47/css/materialdesignicons2.css",
    "content": "/* MaterialDesignIcons.com */\n@font-face {\n  font-family: \"Material Design Icons\";\n  src: url(\"../fonts/materialdesignicons-webfont.eot?v=7.4.47\");\n  src: url(\"../fonts/materialdesignicons-webfont.eot?#iefix&v=7.4.47\") format(\"embedded-opentype\"), url(\"../fonts/materialdesignicons-webfont.woff2?v=7.4.47\") format(\"woff2\"), url(\"../fonts/materialdesignicons-webfont.woff?v=7.4.47\") format(\"woff\"), url(\"../fonts/materialdesignicons-webfont.ttf?v=7.4.47\") format(\"truetype\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n.mdi2:before,\n.mdi2-set {\n  display: inline-block;\n  font: normal normal normal 24px/1 \"Material Design Icons\";\n  font-size: inherit;\n  text-rendering: auto;\n  line-height: inherit;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.mdi2-ab-testing::before {\n  content: \"\\F01C9\";\n}\n\n.mdi2-abacus::before {\n  content: \"\\F16E0\";\n}\n\n.mdi2-abjad-arabic::before {\n  content: \"\\F1328\";\n}\n\n.mdi2-abjad-hebrew::before {\n  content: \"\\F1329\";\n}\n\n.mdi2-abugida-devanagari::before {\n  content: \"\\F132A\";\n}\n\n.mdi2-abugida-thai::before {\n  content: \"\\F132B\";\n}\n\n.mdi2-access-point::before {\n  content: \"\\F0003\";\n}\n\n.mdi2-access-point-check::before {\n  content: \"\\F1538\";\n}\n\n.mdi2-access-point-minus::before {\n  content: \"\\F1539\";\n}\n\n.mdi2-access-point-network::before {\n  content: \"\\F0002\";\n}\n\n.mdi2-access-point-network-off::before {\n  content: \"\\F0BE1\";\n}\n\n.mdi2-access-point-off::before {\n  content: \"\\F1511\";\n}\n\n.mdi2-access-point-plus::before {\n  content: \"\\F153A\";\n}\n\n.mdi2-access-point-remove::before {\n  content: \"\\F153B\";\n}\n\n.mdi2-account::before {\n  content: \"\\F0004\";\n}\n\n.mdi2-account-alert::before {\n  content: \"\\F0005\";\n}\n\n.mdi2-account-alert-outline::before {\n  content: \"\\F0B50\";\n}\n\n.mdi2-account-arrow-down::before {\n  content: \"\\F1868\";\n}\n\n.mdi2-account-arrow-down-outline::before {\n  content: \"\\F1869\";\n}\n\n.mdi2-account-arrow-left::before {\n  content: \"\\F0B51\";\n}\n\n.mdi2-account-arrow-left-outline::before {\n  content: \"\\F0B52\";\n}\n\n.mdi2-account-arrow-right::before {\n  content: \"\\F0B53\";\n}\n\n.mdi2-account-arrow-right-outline::before {\n  content: \"\\F0B54\";\n}\n\n.mdi2-account-arrow-up::before {\n  content: \"\\F1867\";\n}\n\n.mdi2-account-arrow-up-outline::before {\n  content: \"\\F186A\";\n}\n\n.mdi2-account-badge::before {\n  content: \"\\F1B0A\";\n}\n\n.mdi2-account-badge-outline::before {\n  content: \"\\F1B0B\";\n}\n\n.mdi2-account-box::before {\n  content: \"\\F0006\";\n}\n\n.mdi2-account-box-edit-outline::before {\n  content: \"\\F1CC8\";\n}\n\n.mdi2-account-box-minus-outline::before {\n  content: \"\\F1CC9\";\n}\n\n.mdi2-account-box-multiple::before {\n  content: \"\\F0934\";\n}\n\n.mdi2-account-box-multiple-outline::before {\n  content: \"\\F100A\";\n}\n\n.mdi2-account-box-outline::before {\n  content: \"\\F0007\";\n}\n\n.mdi2-account-box-plus-outline::before {\n  content: \"\\F1CCA\";\n}\n\n.mdi2-account-cancel::before {\n  content: \"\\F12DF\";\n}\n\n.mdi2-account-cancel-outline::before {\n  content: \"\\F12E0\";\n}\n\n.mdi2-account-card::before {\n  content: \"\\F1BA4\";\n}\n\n.mdi2-account-card-outline::before {\n  content: \"\\F1BA5\";\n}\n\n.mdi2-account-cash::before {\n  content: \"\\F1097\";\n}\n\n.mdi2-account-cash-outline::before {\n  content: \"\\F1098\";\n}\n\n.mdi2-account-check::before {\n  content: \"\\F0008\";\n}\n\n.mdi2-account-check-outline::before {\n  content: \"\\F0BE2\";\n}\n\n.mdi2-account-child::before {\n  content: \"\\F0A89\";\n}\n\n.mdi2-account-child-circle::before {\n  content: \"\\F0A8A\";\n}\n\n.mdi2-account-child-outline::before {\n  content: \"\\F10C8\";\n}\n\n.mdi2-account-circle::before {\n  content: \"\\F0009\";\n}\n\n.mdi2-account-circle-outline::before {\n  content: \"\\F0B55\";\n}\n\n.mdi2-account-clock::before {\n  content: \"\\F0B56\";\n}\n\n.mdi2-account-clock-outline::before {\n  content: \"\\F0B57\";\n}\n\n.mdi2-account-cog::before {\n  content: \"\\F1370\";\n}\n\n.mdi2-account-cog-outline::before {\n  content: \"\\F1371\";\n}\n\n.mdi2-account-convert::before {\n  content: \"\\F000A\";\n}\n\n.mdi2-account-convert-outline::before {\n  content: \"\\F1301\";\n}\n\n.mdi2-account-cowboy-hat::before {\n  content: \"\\F0E9B\";\n}\n\n.mdi2-account-cowboy-hat-outline::before {\n  content: \"\\F17F3\";\n}\n\n.mdi2-account-credit-card::before {\n  content: \"\\F1BA6\";\n}\n\n.mdi2-account-credit-card-outline::before {\n  content: \"\\F1BA7\";\n}\n\n.mdi2-account-details::before {\n  content: \"\\F0631\";\n}\n\n.mdi2-account-details-outline::before {\n  content: \"\\F1372\";\n}\n\n.mdi2-account-edit::before {\n  content: \"\\F06BC\";\n}\n\n.mdi2-account-edit-outline::before {\n  content: \"\\F0FFB\";\n}\n\n.mdi2-account-eye::before {\n  content: \"\\F0420\";\n}\n\n.mdi2-account-eye-outline::before {\n  content: \"\\F127B\";\n}\n\n.mdi2-account-file::before {\n  content: \"\\F1CA7\";\n}\n\n.mdi2-account-file-outline::before {\n  content: \"\\F1CA8\";\n}\n\n.mdi2-account-file-text::before {\n  content: \"\\F1CA9\";\n}\n\n.mdi2-account-file-text-outline::before {\n  content: \"\\F1CAA\";\n}\n\n.mdi2-account-filter::before {\n  content: \"\\F0936\";\n}\n\n.mdi2-account-filter-outline::before {\n  content: \"\\F0F9D\";\n}\n\n.mdi2-account-group::before {\n  content: \"\\F0849\";\n}\n\n.mdi2-account-group-outline::before {\n  content: \"\\F0B58\";\n}\n\n.mdi2-account-hard-hat::before {\n  content: \"\\F05B5\";\n}\n\n.mdi2-account-hard-hat-outline::before {\n  content: \"\\F1A1F\";\n}\n\n.mdi2-account-heart::before {\n  content: \"\\F0899\";\n}\n\n.mdi2-account-heart-outline::before {\n  content: \"\\F0BE3\";\n}\n\n.mdi2-account-injury::before {\n  content: \"\\F1815\";\n}\n\n.mdi2-account-injury-outline::before {\n  content: \"\\F1816\";\n}\n\n.mdi2-account-key::before {\n  content: \"\\F000B\";\n}\n\n.mdi2-account-key-outline::before {\n  content: \"\\F0BE4\";\n}\n\n.mdi2-account-lock::before {\n  content: \"\\F115E\";\n}\n\n.mdi2-account-lock-open::before {\n  content: \"\\F1960\";\n}\n\n.mdi2-account-lock-open-outline::before {\n  content: \"\\F1961\";\n}\n\n.mdi2-account-lock-outline::before {\n  content: \"\\F115F\";\n}\n\n.mdi2-account-minus::before {\n  content: \"\\F000D\";\n}\n\n.mdi2-account-minus-outline::before {\n  content: \"\\F0AEC\";\n}\n\n.mdi2-account-multiple::before {\n  content: \"\\F000E\";\n}\n\n.mdi2-account-multiple-check::before {\n  content: \"\\F08C5\";\n}\n\n.mdi2-account-multiple-check-outline::before {\n  content: \"\\F11FE\";\n}\n\n.mdi2-account-multiple-minus::before {\n  content: \"\\F05D3\";\n}\n\n.mdi2-account-multiple-minus-outline::before {\n  content: \"\\F0BE5\";\n}\n\n.mdi2-account-multiple-outline::before {\n  content: \"\\F000F\";\n}\n\n.mdi2-account-multiple-plus::before {\n  content: \"\\F0010\";\n}\n\n.mdi2-account-multiple-plus-outline::before {\n  content: \"\\F0800\";\n}\n\n.mdi2-account-multiple-remove::before {\n  content: \"\\F120A\";\n}\n\n.mdi2-account-multiple-remove-outline::before {\n  content: \"\\F120B\";\n}\n\n.mdi2-account-music::before {\n  content: \"\\F0803\";\n}\n\n.mdi2-account-music-outline::before {\n  content: \"\\F0CE9\";\n}\n\n.mdi2-account-network::before {\n  content: \"\\F0011\";\n}\n\n.mdi2-account-network-off::before {\n  content: \"\\F1AF1\";\n}\n\n.mdi2-account-network-off-outline::before {\n  content: \"\\F1AF2\";\n}\n\n.mdi2-account-network-outline::before {\n  content: \"\\F0BE6\";\n}\n\n.mdi2-account-off::before {\n  content: \"\\F0012\";\n}\n\n.mdi2-account-off-outline::before {\n  content: \"\\F0BE7\";\n}\n\n.mdi2-account-outline::before {\n  content: \"\\F0013\";\n}\n\n.mdi2-account-plus::before {\n  content: \"\\F0014\";\n}\n\n.mdi2-account-plus-outline::before {\n  content: \"\\F0801\";\n}\n\n.mdi2-account-question::before {\n  content: \"\\F0B59\";\n}\n\n.mdi2-account-question-outline::before {\n  content: \"\\F0B5A\";\n}\n\n.mdi2-account-reactivate::before {\n  content: \"\\F152B\";\n}\n\n.mdi2-account-reactivate-outline::before {\n  content: \"\\F152C\";\n}\n\n.mdi2-account-remove::before {\n  content: \"\\F0015\";\n}\n\n.mdi2-account-remove-outline::before {\n  content: \"\\F0AED\";\n}\n\n.mdi2-account-school::before {\n  content: \"\\F1A20\";\n}\n\n.mdi2-account-school-outline::before {\n  content: \"\\F1A21\";\n}\n\n.mdi2-account-search::before {\n  content: \"\\F0016\";\n}\n\n.mdi2-account-search-outline::before {\n  content: \"\\F0935\";\n}\n\n.mdi2-account-settings::before {\n  content: \"\\F0630\";\n}\n\n.mdi2-account-settings-outline::before {\n  content: \"\\F10C9\";\n}\n\n.mdi2-account-star::before {\n  content: \"\\F0017\";\n}\n\n.mdi2-account-star-outline::before {\n  content: \"\\F0BE8\";\n}\n\n.mdi2-account-supervisor::before {\n  content: \"\\F0A8B\";\n}\n\n.mdi2-account-supervisor-circle::before {\n  content: \"\\F0A8C\";\n}\n\n.mdi2-account-supervisor-circle-outline::before {\n  content: \"\\F14EC\";\n}\n\n.mdi2-account-supervisor-outline::before {\n  content: \"\\F112D\";\n}\n\n.mdi2-account-switch::before {\n  content: \"\\F0019\";\n}\n\n.mdi2-account-switch-outline::before {\n  content: \"\\F04CB\";\n}\n\n.mdi2-account-sync::before {\n  content: \"\\F191B\";\n}\n\n.mdi2-account-sync-outline::before {\n  content: \"\\F191C\";\n}\n\n.mdi2-account-tag::before {\n  content: \"\\F1C1B\";\n}\n\n.mdi2-account-tag-outline::before {\n  content: \"\\F1C1C\";\n}\n\n.mdi2-account-tie::before {\n  content: \"\\F0CE3\";\n}\n\n.mdi2-account-tie-hat::before {\n  content: \"\\F1898\";\n}\n\n.mdi2-account-tie-hat-outline::before {\n  content: \"\\F1899\";\n}\n\n.mdi2-account-tie-outline::before {\n  content: \"\\F10CA\";\n}\n\n.mdi2-account-tie-voice::before {\n  content: \"\\F1308\";\n}\n\n.mdi2-account-tie-voice-off::before {\n  content: \"\\F130A\";\n}\n\n.mdi2-account-tie-voice-off-outline::before {\n  content: \"\\F130B\";\n}\n\n.mdi2-account-tie-voice-outline::before {\n  content: \"\\F1309\";\n}\n\n.mdi2-account-tie-woman::before {\n  content: \"\\F1A8C\";\n}\n\n.mdi2-account-voice::before {\n  content: \"\\F05CB\";\n}\n\n.mdi2-account-voice-off::before {\n  content: \"\\F0ED4\";\n}\n\n.mdi2-account-wrench::before {\n  content: \"\\F189A\";\n}\n\n.mdi2-account-wrench-outline::before {\n  content: \"\\F189B\";\n}\n\n.mdi2-adjust::before {\n  content: \"\\F001A\";\n}\n\n.mdi2-advertisements::before {\n  content: \"\\F192A\";\n}\n\n.mdi2-advertisements-off::before {\n  content: \"\\F192B\";\n}\n\n.mdi2-air-conditioner::before {\n  content: \"\\F001B\";\n}\n\n.mdi2-air-filter::before {\n  content: \"\\F0D43\";\n}\n\n.mdi2-air-horn::before {\n  content: \"\\F0DAC\";\n}\n\n.mdi2-air-humidifier::before {\n  content: \"\\F1099\";\n}\n\n.mdi2-air-humidifier-off::before {\n  content: \"\\F1466\";\n}\n\n.mdi2-air-purifier::before {\n  content: \"\\F0D44\";\n}\n\n.mdi2-air-purifier-off::before {\n  content: \"\\F1B57\";\n}\n\n.mdi2-airbag::before {\n  content: \"\\F0BE9\";\n}\n\n.mdi2-airballoon::before {\n  content: \"\\F001C\";\n}\n\n.mdi2-airballoon-outline::before {\n  content: \"\\F100B\";\n}\n\n.mdi2-airplane::before {\n  content: \"\\F001D\";\n}\n\n.mdi2-airplane-alert::before {\n  content: \"\\F187A\";\n}\n\n.mdi2-airplane-check::before {\n  content: \"\\F187B\";\n}\n\n.mdi2-airplane-clock::before {\n  content: \"\\F187C\";\n}\n\n.mdi2-airplane-cog::before {\n  content: \"\\F187D\";\n}\n\n.mdi2-airplane-edit::before {\n  content: \"\\F187E\";\n}\n\n.mdi2-airplane-landing::before {\n  content: \"\\F05D4\";\n}\n\n.mdi2-airplane-marker::before {\n  content: \"\\F187F\";\n}\n\n.mdi2-airplane-minus::before {\n  content: \"\\F1880\";\n}\n\n.mdi2-airplane-off::before {\n  content: \"\\F001E\";\n}\n\n.mdi2-airplane-plus::before {\n  content: \"\\F1881\";\n}\n\n.mdi2-airplane-remove::before {\n  content: \"\\F1882\";\n}\n\n.mdi2-airplane-search::before {\n  content: \"\\F1883\";\n}\n\n.mdi2-airplane-settings::before {\n  content: \"\\F1884\";\n}\n\n.mdi2-airplane-takeoff::before {\n  content: \"\\F05D5\";\n}\n\n.mdi2-airport::before {\n  content: \"\\F084B\";\n}\n\n.mdi2-alarm::before {\n  content: \"\\F0020\";\n}\n\n.mdi2-alarm-bell::before {\n  content: \"\\F078E\";\n}\n\n.mdi2-alarm-check::before {\n  content: \"\\F0021\";\n}\n\n.mdi2-alarm-light::before {\n  content: \"\\F078F\";\n}\n\n.mdi2-alarm-light-off::before {\n  content: \"\\F171E\";\n}\n\n.mdi2-alarm-light-off-outline::before {\n  content: \"\\F171F\";\n}\n\n.mdi2-alarm-light-outline::before {\n  content: \"\\F0BEA\";\n}\n\n.mdi2-alarm-multiple::before {\n  content: \"\\F0022\";\n}\n\n.mdi2-alarm-note::before {\n  content: \"\\F0E71\";\n}\n\n.mdi2-alarm-note-off::before {\n  content: \"\\F0E72\";\n}\n\n.mdi2-alarm-off::before {\n  content: \"\\F0023\";\n}\n\n.mdi2-alarm-panel::before {\n  content: \"\\F15C4\";\n}\n\n.mdi2-alarm-panel-outline::before {\n  content: \"\\F15C5\";\n}\n\n.mdi2-alarm-plus::before {\n  content: \"\\F0024\";\n}\n\n.mdi2-alarm-snooze::before {\n  content: \"\\F068E\";\n}\n\n.mdi2-album::before {\n  content: \"\\F0025\";\n}\n\n.mdi2-alert::before {\n  content: \"\\F0026\";\n}\n\n.mdi2-alert-box::before {\n  content: \"\\F0027\";\n}\n\n.mdi2-alert-box-outline::before {\n  content: \"\\F0CE4\";\n}\n\n.mdi2-alert-circle::before {\n  content: \"\\F0028\";\n}\n\n.mdi2-alert-circle-check::before {\n  content: \"\\F11ED\";\n}\n\n.mdi2-alert-circle-check-outline::before {\n  content: \"\\F11EE\";\n}\n\n.mdi2-alert-circle-outline::before {\n  content: \"\\F05D6\";\n}\n\n.mdi2-alert-decagram::before {\n  content: \"\\F06BD\";\n}\n\n.mdi2-alert-decagram-outline::before {\n  content: \"\\F0CE5\";\n}\n\n.mdi2-alert-minus::before {\n  content: \"\\F14BB\";\n}\n\n.mdi2-alert-minus-outline::before {\n  content: \"\\F14BE\";\n}\n\n.mdi2-alert-octagon::before {\n  content: \"\\F0029\";\n}\n\n.mdi2-alert-octagon-outline::before {\n  content: \"\\F0CE6\";\n}\n\n.mdi2-alert-octagram::before {\n  content: \"\\F0767\";\n}\n\n.mdi2-alert-octagram-outline::before {\n  content: \"\\F0CE7\";\n}\n\n.mdi2-alert-outline::before {\n  content: \"\\F002A\";\n}\n\n.mdi2-alert-plus::before {\n  content: \"\\F14BA\";\n}\n\n.mdi2-alert-plus-outline::before {\n  content: \"\\F14BD\";\n}\n\n.mdi2-alert-remove::before {\n  content: \"\\F14BC\";\n}\n\n.mdi2-alert-remove-outline::before {\n  content: \"\\F14BF\";\n}\n\n.mdi2-alert-rhombus::before {\n  content: \"\\F11CE\";\n}\n\n.mdi2-alert-rhombus-outline::before {\n  content: \"\\F11CF\";\n}\n\n.mdi2-alien::before {\n  content: \"\\F089A\";\n}\n\n.mdi2-alien-outline::before {\n  content: \"\\F10CB\";\n}\n\n.mdi2-align-horizontal-center::before {\n  content: \"\\F11C3\";\n}\n\n.mdi2-align-horizontal-distribute::before {\n  content: \"\\F1962\";\n}\n\n.mdi2-align-horizontal-left::before {\n  content: \"\\F11C2\";\n}\n\n.mdi2-align-horizontal-right::before {\n  content: \"\\F11C4\";\n}\n\n.mdi2-align-vertical-bottom::before {\n  content: \"\\F11C5\";\n}\n\n.mdi2-align-vertical-center::before {\n  content: \"\\F11C6\";\n}\n\n.mdi2-align-vertical-distribute::before {\n  content: \"\\F1963\";\n}\n\n.mdi2-align-vertical-top::before {\n  content: \"\\F11C7\";\n}\n\n.mdi2-all-inclusive::before {\n  content: \"\\F06BE\";\n}\n\n.mdi2-all-inclusive-box::before {\n  content: \"\\F188D\";\n}\n\n.mdi2-all-inclusive-box-outline::before {\n  content: \"\\F188E\";\n}\n\n.mdi2-allergy::before {\n  content: \"\\F1258\";\n}\n\n.mdi2-alpha::before {\n  content: \"\\F002B\";\n}\n\n.mdi2-alpha-a::before {\n  content: \"\\F0AEE\";\n}\n\n.mdi2-alpha-a-box::before {\n  content: \"\\F0B08\";\n}\n\n.mdi2-alpha-a-box-outline::before {\n  content: \"\\F0BEB\";\n}\n\n.mdi2-alpha-a-circle::before {\n  content: \"\\F0BEC\";\n}\n\n.mdi2-alpha-a-circle-outline::before {\n  content: \"\\F0BED\";\n}\n\n.mdi2-alpha-b::before {\n  content: \"\\F0AEF\";\n}\n\n.mdi2-alpha-b-box::before {\n  content: \"\\F0B09\";\n}\n\n.mdi2-alpha-b-box-outline::before {\n  content: \"\\F0BEE\";\n}\n\n.mdi2-alpha-b-circle::before {\n  content: \"\\F0BEF\";\n}\n\n.mdi2-alpha-b-circle-outline::before {\n  content: \"\\F0BF0\";\n}\n\n.mdi2-alpha-c::before {\n  content: \"\\F0AF0\";\n}\n\n.mdi2-alpha-c-box::before {\n  content: \"\\F0B0A\";\n}\n\n.mdi2-alpha-c-box-outline::before {\n  content: \"\\F0BF1\";\n}\n\n.mdi2-alpha-c-circle::before {\n  content: \"\\F0BF2\";\n}\n\n.mdi2-alpha-c-circle-outline::before {\n  content: \"\\F0BF3\";\n}\n\n.mdi2-alpha-d::before {\n  content: \"\\F0AF1\";\n}\n\n.mdi2-alpha-d-box::before {\n  content: \"\\F0B0B\";\n}\n\n.mdi2-alpha-d-box-outline::before {\n  content: \"\\F0BF4\";\n}\n\n.mdi2-alpha-d-circle::before {\n  content: \"\\F0BF5\";\n}\n\n.mdi2-alpha-d-circle-outline::before {\n  content: \"\\F0BF6\";\n}\n\n.mdi2-alpha-e::before {\n  content: \"\\F0AF2\";\n}\n\n.mdi2-alpha-e-box::before {\n  content: \"\\F0B0C\";\n}\n\n.mdi2-alpha-e-box-outline::before {\n  content: \"\\F0BF7\";\n}\n\n.mdi2-alpha-e-circle::before {\n  content: \"\\F0BF8\";\n}\n\n.mdi2-alpha-e-circle-outline::before {\n  content: \"\\F0BF9\";\n}\n\n.mdi2-alpha-f::before {\n  content: \"\\F0AF3\";\n}\n\n.mdi2-alpha-f-box::before {\n  content: \"\\F0B0D\";\n}\n\n.mdi2-alpha-f-box-outline::before {\n  content: \"\\F0BFA\";\n}\n\n.mdi2-alpha-f-circle::before {\n  content: \"\\F0BFB\";\n}\n\n.mdi2-alpha-f-circle-outline::before {\n  content: \"\\F0BFC\";\n}\n\n.mdi2-alpha-g::before {\n  content: \"\\F0AF4\";\n}\n\n.mdi2-alpha-g-box::before {\n  content: \"\\F0B0E\";\n}\n\n.mdi2-alpha-g-box-outline::before {\n  content: \"\\F0BFD\";\n}\n\n.mdi2-alpha-g-circle::before {\n  content: \"\\F0BFE\";\n}\n\n.mdi2-alpha-g-circle-outline::before {\n  content: \"\\F0BFF\";\n}\n\n.mdi2-alpha-h::before {\n  content: \"\\F0AF5\";\n}\n\n.mdi2-alpha-h-box::before {\n  content: \"\\F0B0F\";\n}\n\n.mdi2-alpha-h-box-outline::before {\n  content: \"\\F0C00\";\n}\n\n.mdi2-alpha-h-circle::before {\n  content: \"\\F0C01\";\n}\n\n.mdi2-alpha-h-circle-outline::before {\n  content: \"\\F0C02\";\n}\n\n.mdi2-alpha-i::before {\n  content: \"\\F0AF6\";\n}\n\n.mdi2-alpha-i-box::before {\n  content: \"\\F0B10\";\n}\n\n.mdi2-alpha-i-box-outline::before {\n  content: \"\\F0C03\";\n}\n\n.mdi2-alpha-i-circle::before {\n  content: \"\\F0C04\";\n}\n\n.mdi2-alpha-i-circle-outline::before {\n  content: \"\\F0C05\";\n}\n\n.mdi2-alpha-j::before {\n  content: \"\\F0AF7\";\n}\n\n.mdi2-alpha-j-box::before {\n  content: \"\\F0B11\";\n}\n\n.mdi2-alpha-j-box-outline::before {\n  content: \"\\F0C06\";\n}\n\n.mdi2-alpha-j-circle::before {\n  content: \"\\F0C07\";\n}\n\n.mdi2-alpha-j-circle-outline::before {\n  content: \"\\F0C08\";\n}\n\n.mdi2-alpha-k::before {\n  content: \"\\F0AF8\";\n}\n\n.mdi2-alpha-k-box::before {\n  content: \"\\F0B12\";\n}\n\n.mdi2-alpha-k-box-outline::before {\n  content: \"\\F0C09\";\n}\n\n.mdi2-alpha-k-circle::before {\n  content: \"\\F0C0A\";\n}\n\n.mdi2-alpha-k-circle-outline::before {\n  content: \"\\F0C0B\";\n}\n\n.mdi2-alpha-l::before {\n  content: \"\\F0AF9\";\n}\n\n.mdi2-alpha-l-box::before {\n  content: \"\\F0B13\";\n}\n\n.mdi2-alpha-l-box-outline::before {\n  content: \"\\F0C0C\";\n}\n\n.mdi2-alpha-l-circle::before {\n  content: \"\\F0C0D\";\n}\n\n.mdi2-alpha-l-circle-outline::before {\n  content: \"\\F0C0E\";\n}\n\n.mdi2-alpha-m::before {\n  content: \"\\F0AFA\";\n}\n\n.mdi2-alpha-m-box::before {\n  content: \"\\F0B14\";\n}\n\n.mdi2-alpha-m-box-outline::before {\n  content: \"\\F0C0F\";\n}\n\n.mdi2-alpha-m-circle::before {\n  content: \"\\F0C10\";\n}\n\n.mdi2-alpha-m-circle-outline::before {\n  content: \"\\F0C11\";\n}\n\n.mdi2-alpha-n::before {\n  content: \"\\F0AFB\";\n}\n\n.mdi2-alpha-n-box::before {\n  content: \"\\F0B15\";\n}\n\n.mdi2-alpha-n-box-outline::before {\n  content: \"\\F0C12\";\n}\n\n.mdi2-alpha-n-circle::before {\n  content: \"\\F0C13\";\n}\n\n.mdi2-alpha-n-circle-outline::before {\n  content: \"\\F0C14\";\n}\n\n.mdi2-alpha-o::before {\n  content: \"\\F0AFC\";\n}\n\n.mdi2-alpha-o-box::before {\n  content: \"\\F0B16\";\n}\n\n.mdi2-alpha-o-box-outline::before {\n  content: \"\\F0C15\";\n}\n\n.mdi2-alpha-o-circle::before {\n  content: \"\\F0C16\";\n}\n\n.mdi2-alpha-o-circle-outline::before {\n  content: \"\\F0C17\";\n}\n\n.mdi2-alpha-p::before {\n  content: \"\\F0AFD\";\n}\n\n.mdi2-alpha-p-box::before {\n  content: \"\\F0B17\";\n}\n\n.mdi2-alpha-p-box-outline::before {\n  content: \"\\F0C18\";\n}\n\n.mdi2-alpha-p-circle::before {\n  content: \"\\F0C19\";\n}\n\n.mdi2-alpha-p-circle-outline::before {\n  content: \"\\F0C1A\";\n}\n\n.mdi2-alpha-q::before {\n  content: \"\\F0AFE\";\n}\n\n.mdi2-alpha-q-box::before {\n  content: \"\\F0B18\";\n}\n\n.mdi2-alpha-q-box-outline::before {\n  content: \"\\F0C1B\";\n}\n\n.mdi2-alpha-q-circle::before {\n  content: \"\\F0C1C\";\n}\n\n.mdi2-alpha-q-circle-outline::before {\n  content: \"\\F0C1D\";\n}\n\n.mdi2-alpha-r::before {\n  content: \"\\F0AFF\";\n}\n\n.mdi2-alpha-r-box::before {\n  content: \"\\F0B19\";\n}\n\n.mdi2-alpha-r-box-outline::before {\n  content: \"\\F0C1E\";\n}\n\n.mdi2-alpha-r-circle::before {\n  content: \"\\F0C1F\";\n}\n\n.mdi2-alpha-r-circle-outline::before {\n  content: \"\\F0C20\";\n}\n\n.mdi2-alpha-s::before {\n  content: \"\\F0B00\";\n}\n\n.mdi2-alpha-s-box::before {\n  content: \"\\F0B1A\";\n}\n\n.mdi2-alpha-s-box-outline::before {\n  content: \"\\F0C21\";\n}\n\n.mdi2-alpha-s-circle::before {\n  content: \"\\F0C22\";\n}\n\n.mdi2-alpha-s-circle-outline::before {\n  content: \"\\F0C23\";\n}\n\n.mdi2-alpha-t::before {\n  content: \"\\F0B01\";\n}\n\n.mdi2-alpha-t-box::before {\n  content: \"\\F0B1B\";\n}\n\n.mdi2-alpha-t-box-outline::before {\n  content: \"\\F0C24\";\n}\n\n.mdi2-alpha-t-circle::before {\n  content: \"\\F0C25\";\n}\n\n.mdi2-alpha-t-circle-outline::before {\n  content: \"\\F0C26\";\n}\n\n.mdi2-alpha-u::before {\n  content: \"\\F0B02\";\n}\n\n.mdi2-alpha-u-box::before {\n  content: \"\\F0B1C\";\n}\n\n.mdi2-alpha-u-box-outline::before {\n  content: \"\\F0C27\";\n}\n\n.mdi2-alpha-u-circle::before {\n  content: \"\\F0C28\";\n}\n\n.mdi2-alpha-u-circle-outline::before {\n  content: \"\\F0C29\";\n}\n\n.mdi2-alpha-v::before {\n  content: \"\\F0B03\";\n}\n\n.mdi2-alpha-v-box::before {\n  content: \"\\F0B1D\";\n}\n\n.mdi2-alpha-v-box-outline::before {\n  content: \"\\F0C2A\";\n}\n\n.mdi2-alpha-v-circle::before {\n  content: \"\\F0C2B\";\n}\n\n.mdi2-alpha-v-circle-outline::before {\n  content: \"\\F0C2C\";\n}\n\n.mdi2-alpha-w::before {\n  content: \"\\F0B04\";\n}\n\n.mdi2-alpha-w-box::before {\n  content: \"\\F0B1E\";\n}\n\n.mdi2-alpha-w-box-outline::before {\n  content: \"\\F0C2D\";\n}\n\n.mdi2-alpha-w-circle::before {\n  content: \"\\F0C2E\";\n}\n\n.mdi2-alpha-w-circle-outline::before {\n  content: \"\\F0C2F\";\n}\n\n.mdi2-alpha-x::before {\n  content: \"\\F0B05\";\n}\n\n.mdi2-alpha-x-box::before {\n  content: \"\\F0B1F\";\n}\n\n.mdi2-alpha-x-box-outline::before {\n  content: \"\\F0C30\";\n}\n\n.mdi2-alpha-x-circle::before {\n  content: \"\\F0C31\";\n}\n\n.mdi2-alpha-x-circle-outline::before {\n  content: \"\\F0C32\";\n}\n\n.mdi2-alpha-y::before {\n  content: \"\\F0B06\";\n}\n\n.mdi2-alpha-y-box::before {\n  content: \"\\F0B20\";\n}\n\n.mdi2-alpha-y-box-outline::before {\n  content: \"\\F0C33\";\n}\n\n.mdi2-alpha-y-circle::before {\n  content: \"\\F0C34\";\n}\n\n.mdi2-alpha-y-circle-outline::before {\n  content: \"\\F0C35\";\n}\n\n.mdi2-alpha-z::before {\n  content: \"\\F0B07\";\n}\n\n.mdi2-alpha-z-box::before {\n  content: \"\\F0B21\";\n}\n\n.mdi2-alpha-z-box-outline::before {\n  content: \"\\F0C36\";\n}\n\n.mdi2-alpha-z-circle::before {\n  content: \"\\F0C37\";\n}\n\n.mdi2-alpha-z-circle-outline::before {\n  content: \"\\F0C38\";\n}\n\n.mdi2-alphabet-aurebesh::before {\n  content: \"\\F132C\";\n}\n\n.mdi2-alphabet-cyrillic::before {\n  content: \"\\F132D\";\n}\n\n.mdi2-alphabet-greek::before {\n  content: \"\\F132E\";\n}\n\n.mdi2-alphabet-latin::before {\n  content: \"\\F132F\";\n}\n\n.mdi2-alphabet-piqad::before {\n  content: \"\\F1330\";\n}\n\n.mdi2-alphabet-tengwar::before {\n  content: \"\\F1337\";\n}\n\n.mdi2-alphabetical::before {\n  content: \"\\F002C\";\n}\n\n.mdi2-alphabetical-off::before {\n  content: \"\\F100C\";\n}\n\n.mdi2-alphabetical-variant::before {\n  content: \"\\F100D\";\n}\n\n.mdi2-alphabetical-variant-off::before {\n  content: \"\\F100E\";\n}\n\n.mdi2-altimeter::before {\n  content: \"\\F05D7\";\n}\n\n.mdi2-ambulance::before {\n  content: \"\\F002F\";\n}\n\n.mdi2-ammunition::before {\n  content: \"\\F0CE8\";\n}\n\n.mdi2-ampersand::before {\n  content: \"\\F0A8D\";\n}\n\n.mdi2-amplifier::before {\n  content: \"\\F0030\";\n}\n\n.mdi2-amplifier-off::before {\n  content: \"\\F11B5\";\n}\n\n.mdi2-anchor::before {\n  content: \"\\F0031\";\n}\n\n.mdi2-android::before {\n  content: \"\\F0032\";\n}\n\n.mdi2-android-studio::before {\n  content: \"\\F0034\";\n}\n\n.mdi2-angle-acute::before {\n  content: \"\\F0937\";\n}\n\n.mdi2-angle-obtuse::before {\n  content: \"\\F0938\";\n}\n\n.mdi2-angle-right::before {\n  content: \"\\F0939\";\n}\n\n.mdi2-angular::before {\n  content: \"\\F06B2\";\n}\n\n.mdi2-angularjs::before {\n  content: \"\\F06BF\";\n}\n\n.mdi2-animation::before {\n  content: \"\\F05D8\";\n}\n\n.mdi2-animation-outline::before {\n  content: \"\\F0A8F\";\n}\n\n.mdi2-animation-play::before {\n  content: \"\\F093A\";\n}\n\n.mdi2-animation-play-outline::before {\n  content: \"\\F0A90\";\n}\n\n.mdi2-ansible::before {\n  content: \"\\F109A\";\n}\n\n.mdi2-antenna::before {\n  content: \"\\F1119\";\n}\n\n.mdi2-anvil::before {\n  content: \"\\F089B\";\n}\n\n.mdi2-apache-kafka::before {\n  content: \"\\F100F\";\n}\n\n.mdi2-api::before {\n  content: \"\\F109B\";\n}\n\n.mdi2-api-off::before {\n  content: \"\\F1257\";\n}\n\n.mdi2-apple::before {\n  content: \"\\F0035\";\n}\n\n.mdi2-apple-finder::before {\n  content: \"\\F0036\";\n}\n\n.mdi2-apple-icloud::before {\n  content: \"\\F0038\";\n}\n\n.mdi2-apple-ios::before {\n  content: \"\\F0037\";\n}\n\n.mdi2-apple-keyboard-caps::before {\n  content: \"\\F0632\";\n}\n\n.mdi2-apple-keyboard-command::before {\n  content: \"\\F0633\";\n}\n\n.mdi2-apple-keyboard-control::before {\n  content: \"\\F0634\";\n}\n\n.mdi2-apple-keyboard-option::before {\n  content: \"\\F0635\";\n}\n\n.mdi2-apple-keyboard-shift::before {\n  content: \"\\F0636\";\n}\n\n.mdi2-apple-safari::before {\n  content: \"\\F0039\";\n}\n\n.mdi2-application::before {\n  content: \"\\F08C6\";\n}\n\n.mdi2-application-array::before {\n  content: \"\\F10F5\";\n}\n\n.mdi2-application-array-outline::before {\n  content: \"\\F10F6\";\n}\n\n.mdi2-application-braces::before {\n  content: \"\\F10F7\";\n}\n\n.mdi2-application-braces-outline::before {\n  content: \"\\F10F8\";\n}\n\n.mdi2-application-brackets::before {\n  content: \"\\F0C8B\";\n}\n\n.mdi2-application-brackets-outline::before {\n  content: \"\\F0C8C\";\n}\n\n.mdi2-application-cog::before {\n  content: \"\\F0675\";\n}\n\n.mdi2-application-cog-outline::before {\n  content: \"\\F1577\";\n}\n\n.mdi2-application-edit::before {\n  content: \"\\F00AE\";\n}\n\n.mdi2-application-edit-outline::before {\n  content: \"\\F0619\";\n}\n\n.mdi2-application-export::before {\n  content: \"\\F0DAD\";\n}\n\n.mdi2-application-import::before {\n  content: \"\\F0DAE\";\n}\n\n.mdi2-application-outline::before {\n  content: \"\\F0614\";\n}\n\n.mdi2-application-parentheses::before {\n  content: \"\\F10F9\";\n}\n\n.mdi2-application-parentheses-outline::before {\n  content: \"\\F10FA\";\n}\n\n.mdi2-application-settings::before {\n  content: \"\\F0B60\";\n}\n\n.mdi2-application-settings-outline::before {\n  content: \"\\F1555\";\n}\n\n.mdi2-application-variable::before {\n  content: \"\\F10FB\";\n}\n\n.mdi2-application-variable-outline::before {\n  content: \"\\F10FC\";\n}\n\n.mdi2-approximately-equal::before {\n  content: \"\\F0F9E\";\n}\n\n.mdi2-approximately-equal-box::before {\n  content: \"\\F0F9F\";\n}\n\n.mdi2-apps::before {\n  content: \"\\F003B\";\n}\n\n.mdi2-apps-box::before {\n  content: \"\\F0D46\";\n}\n\n.mdi2-arch::before {\n  content: \"\\F08C7\";\n}\n\n.mdi2-archive::before {\n  content: \"\\F003C\";\n}\n\n.mdi2-archive-alert::before {\n  content: \"\\F14FD\";\n}\n\n.mdi2-archive-alert-outline::before {\n  content: \"\\F14FE\";\n}\n\n.mdi2-archive-arrow-down::before {\n  content: \"\\F1259\";\n}\n\n.mdi2-archive-arrow-down-outline::before {\n  content: \"\\F125A\";\n}\n\n.mdi2-archive-arrow-up::before {\n  content: \"\\F125B\";\n}\n\n.mdi2-archive-arrow-up-outline::before {\n  content: \"\\F125C\";\n}\n\n.mdi2-archive-cancel::before {\n  content: \"\\F174B\";\n}\n\n.mdi2-archive-cancel-outline::before {\n  content: \"\\F174C\";\n}\n\n.mdi2-archive-check::before {\n  content: \"\\F174D\";\n}\n\n.mdi2-archive-check-outline::before {\n  content: \"\\F174E\";\n}\n\n.mdi2-archive-clock::before {\n  content: \"\\F174F\";\n}\n\n.mdi2-archive-clock-outline::before {\n  content: \"\\F1750\";\n}\n\n.mdi2-archive-cog::before {\n  content: \"\\F1751\";\n}\n\n.mdi2-archive-cog-outline::before {\n  content: \"\\F1752\";\n}\n\n.mdi2-archive-edit::before {\n  content: \"\\F1753\";\n}\n\n.mdi2-archive-edit-outline::before {\n  content: \"\\F1754\";\n}\n\n.mdi2-archive-eye::before {\n  content: \"\\F1755\";\n}\n\n.mdi2-archive-eye-outline::before {\n  content: \"\\F1756\";\n}\n\n.mdi2-archive-lock::before {\n  content: \"\\F1757\";\n}\n\n.mdi2-archive-lock-open::before {\n  content: \"\\F1758\";\n}\n\n.mdi2-archive-lock-open-outline::before {\n  content: \"\\F1759\";\n}\n\n.mdi2-archive-lock-outline::before {\n  content: \"\\F175A\";\n}\n\n.mdi2-archive-marker::before {\n  content: \"\\F175B\";\n}\n\n.mdi2-archive-marker-outline::before {\n  content: \"\\F175C\";\n}\n\n.mdi2-archive-minus::before {\n  content: \"\\F175D\";\n}\n\n.mdi2-archive-minus-outline::before {\n  content: \"\\F175E\";\n}\n\n.mdi2-archive-music::before {\n  content: \"\\F175F\";\n}\n\n.mdi2-archive-music-outline::before {\n  content: \"\\F1760\";\n}\n\n.mdi2-archive-off::before {\n  content: \"\\F1761\";\n}\n\n.mdi2-archive-off-outline::before {\n  content: \"\\F1762\";\n}\n\n.mdi2-archive-outline::before {\n  content: \"\\F120E\";\n}\n\n.mdi2-archive-plus::before {\n  content: \"\\F1763\";\n}\n\n.mdi2-archive-plus-outline::before {\n  content: \"\\F1764\";\n}\n\n.mdi2-archive-refresh::before {\n  content: \"\\F1765\";\n}\n\n.mdi2-archive-refresh-outline::before {\n  content: \"\\F1766\";\n}\n\n.mdi2-archive-remove::before {\n  content: \"\\F1767\";\n}\n\n.mdi2-archive-remove-outline::before {\n  content: \"\\F1768\";\n}\n\n.mdi2-archive-search::before {\n  content: \"\\F1769\";\n}\n\n.mdi2-archive-search-outline::before {\n  content: \"\\F176A\";\n}\n\n.mdi2-archive-settings::before {\n  content: \"\\F176B\";\n}\n\n.mdi2-archive-settings-outline::before {\n  content: \"\\F176C\";\n}\n\n.mdi2-archive-star::before {\n  content: \"\\F176D\";\n}\n\n.mdi2-archive-star-outline::before {\n  content: \"\\F176E\";\n}\n\n.mdi2-archive-sync::before {\n  content: \"\\F176F\";\n}\n\n.mdi2-archive-sync-outline::before {\n  content: \"\\F1770\";\n}\n\n.mdi2-arm-flex::before {\n  content: \"\\F0FD7\";\n}\n\n.mdi2-arm-flex-outline::before {\n  content: \"\\F0FD6\";\n}\n\n.mdi2-arrange-bring-forward::before {\n  content: \"\\F003D\";\n}\n\n.mdi2-arrange-bring-to-front::before {\n  content: \"\\F003E\";\n}\n\n.mdi2-arrange-send-backward::before {\n  content: \"\\F003F\";\n}\n\n.mdi2-arrange-send-to-back::before {\n  content: \"\\F0040\";\n}\n\n.mdi2-arrow-all::before {\n  content: \"\\F0041\";\n}\n\n.mdi2-arrow-bottom-left::before {\n  content: \"\\F0042\";\n}\n\n.mdi2-arrow-bottom-left-bold-box::before {\n  content: \"\\F1964\";\n}\n\n.mdi2-arrow-bottom-left-bold-box-outline::before {\n  content: \"\\F1965\";\n}\n\n.mdi2-arrow-bottom-left-bold-outline::before {\n  content: \"\\F09B7\";\n}\n\n.mdi2-arrow-bottom-left-thick::before {\n  content: \"\\F09B8\";\n}\n\n.mdi2-arrow-bottom-left-thin::before {\n  content: \"\\F19B6\";\n}\n\n.mdi2-arrow-bottom-left-thin-circle-outline::before {\n  content: \"\\F1596\";\n}\n\n.mdi2-arrow-bottom-right::before {\n  content: \"\\F0043\";\n}\n\n.mdi2-arrow-bottom-right-bold-box::before {\n  content: \"\\F1966\";\n}\n\n.mdi2-arrow-bottom-right-bold-box-outline::before {\n  content: \"\\F1967\";\n}\n\n.mdi2-arrow-bottom-right-bold-outline::before {\n  content: \"\\F09B9\";\n}\n\n.mdi2-arrow-bottom-right-thick::before {\n  content: \"\\F09BA\";\n}\n\n.mdi2-arrow-bottom-right-thin::before {\n  content: \"\\F19B7\";\n}\n\n.mdi2-arrow-bottom-right-thin-circle-outline::before {\n  content: \"\\F1595\";\n}\n\n.mdi2-arrow-collapse::before {\n  content: \"\\F0615\";\n}\n\n.mdi2-arrow-collapse-all::before {\n  content: \"\\F0044\";\n}\n\n.mdi2-arrow-collapse-down::before {\n  content: \"\\F0792\";\n}\n\n.mdi2-arrow-collapse-horizontal::before {\n  content: \"\\F084C\";\n}\n\n.mdi2-arrow-collapse-left::before {\n  content: \"\\F0793\";\n}\n\n.mdi2-arrow-collapse-right::before {\n  content: \"\\F0794\";\n}\n\n.mdi2-arrow-collapse-up::before {\n  content: \"\\F0795\";\n}\n\n.mdi2-arrow-collapse-vertical::before {\n  content: \"\\F084D\";\n}\n\n.mdi2-arrow-decision::before {\n  content: \"\\F09BB\";\n}\n\n.mdi2-arrow-decision-auto::before {\n  content: \"\\F09BC\";\n}\n\n.mdi2-arrow-decision-auto-outline::before {\n  content: \"\\F09BD\";\n}\n\n.mdi2-arrow-decision-outline::before {\n  content: \"\\F09BE\";\n}\n\n.mdi2-arrow-down::before {\n  content: \"\\F0045\";\n}\n\n.mdi2-arrow-down-bold::before {\n  content: \"\\F072E\";\n}\n\n.mdi2-arrow-down-bold-box::before {\n  content: \"\\F072F\";\n}\n\n.mdi2-arrow-down-bold-box-outline::before {\n  content: \"\\F0730\";\n}\n\n.mdi2-arrow-down-bold-circle::before {\n  content: \"\\F0047\";\n}\n\n.mdi2-arrow-down-bold-circle-outline::before {\n  content: \"\\F0048\";\n}\n\n.mdi2-arrow-down-bold-hexagon-outline::before {\n  content: \"\\F0049\";\n}\n\n.mdi2-arrow-down-bold-outline::before {\n  content: \"\\F09BF\";\n}\n\n.mdi2-arrow-down-box::before {\n  content: \"\\F06C0\";\n}\n\n.mdi2-arrow-down-circle::before {\n  content: \"\\F0CDB\";\n}\n\n.mdi2-arrow-down-circle-outline::before {\n  content: \"\\F0CDC\";\n}\n\n.mdi2-arrow-down-drop-circle::before {\n  content: \"\\F004A\";\n}\n\n.mdi2-arrow-down-drop-circle-outline::before {\n  content: \"\\F004B\";\n}\n\n.mdi2-arrow-down-left::before {\n  content: \"\\F17A1\";\n}\n\n.mdi2-arrow-down-left-bold::before {\n  content: \"\\F17A2\";\n}\n\n.mdi2-arrow-down-right::before {\n  content: \"\\F17A3\";\n}\n\n.mdi2-arrow-down-right-bold::before {\n  content: \"\\F17A4\";\n}\n\n.mdi2-arrow-down-thick::before {\n  content: \"\\F0046\";\n}\n\n.mdi2-arrow-down-thin::before {\n  content: \"\\F19B3\";\n}\n\n.mdi2-arrow-down-thin-circle-outline::before {\n  content: \"\\F1599\";\n}\n\n.mdi2-arrow-expand::before {\n  content: \"\\F0616\";\n}\n\n.mdi2-arrow-expand-all::before {\n  content: \"\\F004C\";\n}\n\n.mdi2-arrow-expand-down::before {\n  content: \"\\F0796\";\n}\n\n.mdi2-arrow-expand-horizontal::before {\n  content: \"\\F084E\";\n}\n\n.mdi2-arrow-expand-left::before {\n  content: \"\\F0797\";\n}\n\n.mdi2-arrow-expand-right::before {\n  content: \"\\F0798\";\n}\n\n.mdi2-arrow-expand-up::before {\n  content: \"\\F0799\";\n}\n\n.mdi2-arrow-expand-vertical::before {\n  content: \"\\F084F\";\n}\n\n.mdi2-arrow-horizontal-lock::before {\n  content: \"\\F115B\";\n}\n\n.mdi2-arrow-left::before {\n  content: \"\\F004D\";\n}\n\n.mdi2-arrow-left-bold::before {\n  content: \"\\F0731\";\n}\n\n.mdi2-arrow-left-bold-box::before {\n  content: \"\\F0732\";\n}\n\n.mdi2-arrow-left-bold-box-outline::before {\n  content: \"\\F0733\";\n}\n\n.mdi2-arrow-left-bold-circle::before {\n  content: \"\\F004F\";\n}\n\n.mdi2-arrow-left-bold-circle-outline::before {\n  content: \"\\F0050\";\n}\n\n.mdi2-arrow-left-bold-hexagon-outline::before {\n  content: \"\\F0051\";\n}\n\n.mdi2-arrow-left-bold-outline::before {\n  content: \"\\F09C0\";\n}\n\n.mdi2-arrow-left-bottom::before {\n  content: \"\\F17A5\";\n}\n\n.mdi2-arrow-left-bottom-bold::before {\n  content: \"\\F17A6\";\n}\n\n.mdi2-arrow-left-box::before {\n  content: \"\\F06C1\";\n}\n\n.mdi2-arrow-left-circle::before {\n  content: \"\\F0CDD\";\n}\n\n.mdi2-arrow-left-circle-outline::before {\n  content: \"\\F0CDE\";\n}\n\n.mdi2-arrow-left-drop-circle::before {\n  content: \"\\F0052\";\n}\n\n.mdi2-arrow-left-drop-circle-outline::before {\n  content: \"\\F0053\";\n}\n\n.mdi2-arrow-left-right::before {\n  content: \"\\F0E73\";\n}\n\n.mdi2-arrow-left-right-bold::before {\n  content: \"\\F0E74\";\n}\n\n.mdi2-arrow-left-right-bold-outline::before {\n  content: \"\\F09C1\";\n}\n\n.mdi2-arrow-left-thick::before {\n  content: \"\\F004E\";\n}\n\n.mdi2-arrow-left-thin::before {\n  content: \"\\F19B1\";\n}\n\n.mdi2-arrow-left-thin-circle-outline::before {\n  content: \"\\F159A\";\n}\n\n.mdi2-arrow-left-top::before {\n  content: \"\\F17A7\";\n}\n\n.mdi2-arrow-left-top-bold::before {\n  content: \"\\F17A8\";\n}\n\n.mdi2-arrow-oscillating::before {\n  content: \"\\F1C91\";\n}\n\n.mdi2-arrow-oscillating-off::before {\n  content: \"\\F1C92\";\n}\n\n.mdi2-arrow-projectile::before {\n  content: \"\\F1840\";\n}\n\n.mdi2-arrow-projectile-multiple::before {\n  content: \"\\F183F\";\n}\n\n.mdi2-arrow-right::before {\n  content: \"\\F0054\";\n}\n\n.mdi2-arrow-right-bold::before {\n  content: \"\\F0734\";\n}\n\n.mdi2-arrow-right-bold-box::before {\n  content: \"\\F0735\";\n}\n\n.mdi2-arrow-right-bold-box-outline::before {\n  content: \"\\F0736\";\n}\n\n.mdi2-arrow-right-bold-circle::before {\n  content: \"\\F0056\";\n}\n\n.mdi2-arrow-right-bold-circle-outline::before {\n  content: \"\\F0057\";\n}\n\n.mdi2-arrow-right-bold-hexagon-outline::before {\n  content: \"\\F0058\";\n}\n\n.mdi2-arrow-right-bold-outline::before {\n  content: \"\\F09C2\";\n}\n\n.mdi2-arrow-right-bottom::before {\n  content: \"\\F17A9\";\n}\n\n.mdi2-arrow-right-bottom-bold::before {\n  content: \"\\F17AA\";\n}\n\n.mdi2-arrow-right-box::before {\n  content: \"\\F06C2\";\n}\n\n.mdi2-arrow-right-circle::before {\n  content: \"\\F0CDF\";\n}\n\n.mdi2-arrow-right-circle-outline::before {\n  content: \"\\F0CE0\";\n}\n\n.mdi2-arrow-right-drop-circle::before {\n  content: \"\\F0059\";\n}\n\n.mdi2-arrow-right-drop-circle-outline::before {\n  content: \"\\F005A\";\n}\n\n.mdi2-arrow-right-thick::before {\n  content: \"\\F0055\";\n}\n\n.mdi2-arrow-right-thin::before {\n  content: \"\\F19B0\";\n}\n\n.mdi2-arrow-right-thin-circle-outline::before {\n  content: \"\\F1598\";\n}\n\n.mdi2-arrow-right-top::before {\n  content: \"\\F17AB\";\n}\n\n.mdi2-arrow-right-top-bold::before {\n  content: \"\\F17AC\";\n}\n\n.mdi2-arrow-split-horizontal::before {\n  content: \"\\F093B\";\n}\n\n.mdi2-arrow-split-vertical::before {\n  content: \"\\F093C\";\n}\n\n.mdi2-arrow-top-left::before {\n  content: \"\\F005B\";\n}\n\n.mdi2-arrow-top-left-bold-box::before {\n  content: \"\\F1968\";\n}\n\n.mdi2-arrow-top-left-bold-box-outline::before {\n  content: \"\\F1969\";\n}\n\n.mdi2-arrow-top-left-bold-outline::before {\n  content: \"\\F09C3\";\n}\n\n.mdi2-arrow-top-left-bottom-right::before {\n  content: \"\\F0E75\";\n}\n\n.mdi2-arrow-top-left-bottom-right-bold::before {\n  content: \"\\F0E76\";\n}\n\n.mdi2-arrow-top-left-thick::before {\n  content: \"\\F09C4\";\n}\n\n.mdi2-arrow-top-left-thin::before {\n  content: \"\\F19B5\";\n}\n\n.mdi2-arrow-top-left-thin-circle-outline::before {\n  content: \"\\F1593\";\n}\n\n.mdi2-arrow-top-right::before {\n  content: \"\\F005C\";\n}\n\n.mdi2-arrow-top-right-bold-box::before {\n  content: \"\\F196A\";\n}\n\n.mdi2-arrow-top-right-bold-box-outline::before {\n  content: \"\\F196B\";\n}\n\n.mdi2-arrow-top-right-bold-outline::before {\n  content: \"\\F09C5\";\n}\n\n.mdi2-arrow-top-right-bottom-left::before {\n  content: \"\\F0E77\";\n}\n\n.mdi2-arrow-top-right-bottom-left-bold::before {\n  content: \"\\F0E78\";\n}\n\n.mdi2-arrow-top-right-thick::before {\n  content: \"\\F09C6\";\n}\n\n.mdi2-arrow-top-right-thin::before {\n  content: \"\\F19B4\";\n}\n\n.mdi2-arrow-top-right-thin-circle-outline::before {\n  content: \"\\F1594\";\n}\n\n.mdi2-arrow-u-down-left::before {\n  content: \"\\F17AD\";\n}\n\n.mdi2-arrow-u-down-left-bold::before {\n  content: \"\\F17AE\";\n}\n\n.mdi2-arrow-u-down-right::before {\n  content: \"\\F17AF\";\n}\n\n.mdi2-arrow-u-down-right-bold::before {\n  content: \"\\F17B0\";\n}\n\n.mdi2-arrow-u-left-bottom::before {\n  content: \"\\F17B1\";\n}\n\n.mdi2-arrow-u-left-bottom-bold::before {\n  content: \"\\F17B2\";\n}\n\n.mdi2-arrow-u-left-top::before {\n  content: \"\\F17B3\";\n}\n\n.mdi2-arrow-u-left-top-bold::before {\n  content: \"\\F17B4\";\n}\n\n.mdi2-arrow-u-right-bottom::before {\n  content: \"\\F17B5\";\n}\n\n.mdi2-arrow-u-right-bottom-bold::before {\n  content: \"\\F17B6\";\n}\n\n.mdi2-arrow-u-right-top::before {\n  content: \"\\F17B7\";\n}\n\n.mdi2-arrow-u-right-top-bold::before {\n  content: \"\\F17B8\";\n}\n\n.mdi2-arrow-u-up-left::before {\n  content: \"\\F17B9\";\n}\n\n.mdi2-arrow-u-up-left-bold::before {\n  content: \"\\F17BA\";\n}\n\n.mdi2-arrow-u-up-right::before {\n  content: \"\\F17BB\";\n}\n\n.mdi2-arrow-u-up-right-bold::before {\n  content: \"\\F17BC\";\n}\n\n.mdi2-arrow-up::before {\n  content: \"\\F005D\";\n}\n\n.mdi2-arrow-up-bold::before {\n  content: \"\\F0737\";\n}\n\n.mdi2-arrow-up-bold-box::before {\n  content: \"\\F0738\";\n}\n\n.mdi2-arrow-up-bold-box-outline::before {\n  content: \"\\F0739\";\n}\n\n.mdi2-arrow-up-bold-circle::before {\n  content: \"\\F005F\";\n}\n\n.mdi2-arrow-up-bold-circle-outline::before {\n  content: \"\\F0060\";\n}\n\n.mdi2-arrow-up-bold-hexagon-outline::before {\n  content: \"\\F0061\";\n}\n\n.mdi2-arrow-up-bold-outline::before {\n  content: \"\\F09C7\";\n}\n\n.mdi2-arrow-up-box::before {\n  content: \"\\F06C3\";\n}\n\n.mdi2-arrow-up-circle::before {\n  content: \"\\F0CE1\";\n}\n\n.mdi2-arrow-up-circle-outline::before {\n  content: \"\\F0CE2\";\n}\n\n.mdi2-arrow-up-down::before {\n  content: \"\\F0E79\";\n}\n\n.mdi2-arrow-up-down-bold::before {\n  content: \"\\F0E7A\";\n}\n\n.mdi2-arrow-up-down-bold-outline::before {\n  content: \"\\F09C8\";\n}\n\n.mdi2-arrow-up-drop-circle::before {\n  content: \"\\F0062\";\n}\n\n.mdi2-arrow-up-drop-circle-outline::before {\n  content: \"\\F0063\";\n}\n\n.mdi2-arrow-up-left::before {\n  content: \"\\F17BD\";\n}\n\n.mdi2-arrow-up-left-bold::before {\n  content: \"\\F17BE\";\n}\n\n.mdi2-arrow-up-right::before {\n  content: \"\\F17BF\";\n}\n\n.mdi2-arrow-up-right-bold::before {\n  content: \"\\F17C0\";\n}\n\n.mdi2-arrow-up-thick::before {\n  content: \"\\F005E\";\n}\n\n.mdi2-arrow-up-thin::before {\n  content: \"\\F19B2\";\n}\n\n.mdi2-arrow-up-thin-circle-outline::before {\n  content: \"\\F1597\";\n}\n\n.mdi2-arrow-vertical-lock::before {\n  content: \"\\F115C\";\n}\n\n.mdi2-artboard::before {\n  content: \"\\F1B9A\";\n}\n\n.mdi2-artstation::before {\n  content: \"\\F0B5B\";\n}\n\n.mdi2-aspect-ratio::before {\n  content: \"\\F0A24\";\n}\n\n.mdi2-assistant::before {\n  content: \"\\F0064\";\n}\n\n.mdi2-asterisk::before {\n  content: \"\\F06C4\";\n}\n\n.mdi2-asterisk-circle-outline::before {\n  content: \"\\F1A27\";\n}\n\n.mdi2-at::before {\n  content: \"\\F0065\";\n}\n\n.mdi2-atlassian::before {\n  content: \"\\F0804\";\n}\n\n.mdi2-atm::before {\n  content: \"\\F0D47\";\n}\n\n.mdi2-atom::before {\n  content: \"\\F0768\";\n}\n\n.mdi2-atom-variant::before {\n  content: \"\\F0E7B\";\n}\n\n.mdi2-attachment::before {\n  content: \"\\F0066\";\n}\n\n.mdi2-attachment-check::before {\n  content: \"\\F1AC1\";\n}\n\n.mdi2-attachment-lock::before {\n  content: \"\\F19C4\";\n}\n\n.mdi2-attachment-minus::before {\n  content: \"\\F1AC2\";\n}\n\n.mdi2-attachment-off::before {\n  content: \"\\F1AC3\";\n}\n\n.mdi2-attachment-plus::before {\n  content: \"\\F1AC4\";\n}\n\n.mdi2-attachment-remove::before {\n  content: \"\\F1AC5\";\n}\n\n.mdi2-atv::before {\n  content: \"\\F1B70\";\n}\n\n.mdi2-audio-input-rca::before {\n  content: \"\\F186B\";\n}\n\n.mdi2-audio-input-stereo-minijack::before {\n  content: \"\\F186C\";\n}\n\n.mdi2-audio-input-xlr::before {\n  content: \"\\F186D\";\n}\n\n.mdi2-audio-video::before {\n  content: \"\\F093D\";\n}\n\n.mdi2-audio-video-off::before {\n  content: \"\\F11B6\";\n}\n\n.mdi2-augmented-reality::before {\n  content: \"\\F0850\";\n}\n\n.mdi2-aurora::before {\n  content: \"\\F1BB9\";\n}\n\n.mdi2-auto-download::before {\n  content: \"\\F137E\";\n}\n\n.mdi2-auto-fix::before {\n  content: \"\\F0068\";\n}\n\n.mdi2-auto-mode::before {\n  content: \"\\F1C20\";\n}\n\n.mdi2-auto-upload::before {\n  content: \"\\F0069\";\n}\n\n.mdi2-autorenew::before {\n  content: \"\\F006A\";\n}\n\n.mdi2-autorenew-off::before {\n  content: \"\\F19E7\";\n}\n\n.mdi2-av-timer::before {\n  content: \"\\F006B\";\n}\n\n.mdi2-awning::before {\n  content: \"\\F1B87\";\n}\n\n.mdi2-awning-outline::before {\n  content: \"\\F1B88\";\n}\n\n.mdi2-aws::before {\n  content: \"\\F0E0F\";\n}\n\n.mdi2-axe::before {\n  content: \"\\F08C8\";\n}\n\n.mdi2-axe-battle::before {\n  content: \"\\F1842\";\n}\n\n.mdi2-axis::before {\n  content: \"\\F0D48\";\n}\n\n.mdi2-axis-arrow::before {\n  content: \"\\F0D49\";\n}\n\n.mdi2-axis-arrow-info::before {\n  content: \"\\F140E\";\n}\n\n.mdi2-axis-arrow-lock::before {\n  content: \"\\F0D4A\";\n}\n\n.mdi2-axis-lock::before {\n  content: \"\\F0D4B\";\n}\n\n.mdi2-axis-x-arrow::before {\n  content: \"\\F0D4C\";\n}\n\n.mdi2-axis-x-arrow-lock::before {\n  content: \"\\F0D4D\";\n}\n\n.mdi2-axis-x-rotate-clockwise::before {\n  content: \"\\F0D4E\";\n}\n\n.mdi2-axis-x-rotate-counterclockwise::before {\n  content: \"\\F0D4F\";\n}\n\n.mdi2-axis-x-y-arrow-lock::before {\n  content: \"\\F0D50\";\n}\n\n.mdi2-axis-y-arrow::before {\n  content: \"\\F0D51\";\n}\n\n.mdi2-axis-y-arrow-lock::before {\n  content: \"\\F0D52\";\n}\n\n.mdi2-axis-y-rotate-clockwise::before {\n  content: \"\\F0D53\";\n}\n\n.mdi2-axis-y-rotate-counterclockwise::before {\n  content: \"\\F0D54\";\n}\n\n.mdi2-axis-z-arrow::before {\n  content: \"\\F0D55\";\n}\n\n.mdi2-axis-z-arrow-lock::before {\n  content: \"\\F0D56\";\n}\n\n.mdi2-axis-z-rotate-clockwise::before {\n  content: \"\\F0D57\";\n}\n\n.mdi2-axis-z-rotate-counterclockwise::before {\n  content: \"\\F0D58\";\n}\n\n.mdi2-babel::before {\n  content: \"\\F0A25\";\n}\n\n.mdi2-baby::before {\n  content: \"\\F006C\";\n}\n\n.mdi2-baby-bottle::before {\n  content: \"\\F0F39\";\n}\n\n.mdi2-baby-bottle-outline::before {\n  content: \"\\F0F3A\";\n}\n\n.mdi2-baby-buggy::before {\n  content: \"\\F13E0\";\n}\n\n.mdi2-baby-buggy-off::before {\n  content: \"\\F1AF3\";\n}\n\n.mdi2-baby-carriage::before {\n  content: \"\\F068F\";\n}\n\n.mdi2-baby-carriage-off::before {\n  content: \"\\F0FA0\";\n}\n\n.mdi2-baby-face::before {\n  content: \"\\F0E7C\";\n}\n\n.mdi2-baby-face-outline::before {\n  content: \"\\F0E7D\";\n}\n\n.mdi2-backburger::before {\n  content: \"\\F006D\";\n}\n\n.mdi2-backspace::before {\n  content: \"\\F006E\";\n}\n\n.mdi2-backspace-outline::before {\n  content: \"\\F0B5C\";\n}\n\n.mdi2-backspace-reverse::before {\n  content: \"\\F0E7E\";\n}\n\n.mdi2-backspace-reverse-outline::before {\n  content: \"\\F0E7F\";\n}\n\n.mdi2-backup-restore::before {\n  content: \"\\F006F\";\n}\n\n.mdi2-bacteria::before {\n  content: \"\\F0ED5\";\n}\n\n.mdi2-bacteria-outline::before {\n  content: \"\\F0ED6\";\n}\n\n.mdi2-badge-account::before {\n  content: \"\\F0DA7\";\n}\n\n.mdi2-badge-account-alert::before {\n  content: \"\\F0DA8\";\n}\n\n.mdi2-badge-account-alert-outline::before {\n  content: \"\\F0DA9\";\n}\n\n.mdi2-badge-account-horizontal::before {\n  content: \"\\F0E0D\";\n}\n\n.mdi2-badge-account-horizontal-outline::before {\n  content: \"\\F0E0E\";\n}\n\n.mdi2-badge-account-outline::before {\n  content: \"\\F0DAA\";\n}\n\n.mdi2-badminton::before {\n  content: \"\\F0851\";\n}\n\n.mdi2-bag-carry-on::before {\n  content: \"\\F0F3B\";\n}\n\n.mdi2-bag-carry-on-check::before {\n  content: \"\\F0D65\";\n}\n\n.mdi2-bag-carry-on-off::before {\n  content: \"\\F0F3C\";\n}\n\n.mdi2-bag-checked::before {\n  content: \"\\F0F3D\";\n}\n\n.mdi2-bag-personal::before {\n  content: \"\\F0E10\";\n}\n\n.mdi2-bag-personal-off::before {\n  content: \"\\F0E11\";\n}\n\n.mdi2-bag-personal-off-outline::before {\n  content: \"\\F0E12\";\n}\n\n.mdi2-bag-personal-outline::before {\n  content: \"\\F0E13\";\n}\n\n.mdi2-bag-personal-plus::before {\n  content: \"\\F1CA4\";\n}\n\n.mdi2-bag-personal-plus-outline::before {\n  content: \"\\F1CA5\";\n}\n\n.mdi2-bag-personal-tag::before {\n  content: \"\\F1B0C\";\n}\n\n.mdi2-bag-personal-tag-outline::before {\n  content: \"\\F1B0D\";\n}\n\n.mdi2-bag-suitcase::before {\n  content: \"\\F158B\";\n}\n\n.mdi2-bag-suitcase-off::before {\n  content: \"\\F158D\";\n}\n\n.mdi2-bag-suitcase-off-outline::before {\n  content: \"\\F158E\";\n}\n\n.mdi2-bag-suitcase-outline::before {\n  content: \"\\F158C\";\n}\n\n.mdi2-baguette::before {\n  content: \"\\F0F3E\";\n}\n\n.mdi2-balcony::before {\n  content: \"\\F1817\";\n}\n\n.mdi2-balloon::before {\n  content: \"\\F0A26\";\n}\n\n.mdi2-ballot::before {\n  content: \"\\F09C9\";\n}\n\n.mdi2-ballot-outline::before {\n  content: \"\\F09CA\";\n}\n\n.mdi2-ballot-recount::before {\n  content: \"\\F0C39\";\n}\n\n.mdi2-ballot-recount-outline::before {\n  content: \"\\F0C3A\";\n}\n\n.mdi2-bandage::before {\n  content: \"\\F0DAF\";\n}\n\n.mdi2-bank::before {\n  content: \"\\F0070\";\n}\n\n.mdi2-bank-check::before {\n  content: \"\\F1655\";\n}\n\n.mdi2-bank-circle::before {\n  content: \"\\F1C03\";\n}\n\n.mdi2-bank-circle-outline::before {\n  content: \"\\F1C04\";\n}\n\n.mdi2-bank-minus::before {\n  content: \"\\F0DB0\";\n}\n\n.mdi2-bank-off::before {\n  content: \"\\F1656\";\n}\n\n.mdi2-bank-off-outline::before {\n  content: \"\\F1657\";\n}\n\n.mdi2-bank-outline::before {\n  content: \"\\F0E80\";\n}\n\n.mdi2-bank-plus::before {\n  content: \"\\F0DB1\";\n}\n\n.mdi2-bank-remove::before {\n  content: \"\\F0DB2\";\n}\n\n.mdi2-bank-transfer::before {\n  content: \"\\F0A27\";\n}\n\n.mdi2-bank-transfer-in::before {\n  content: \"\\F0A28\";\n}\n\n.mdi2-bank-transfer-out::before {\n  content: \"\\F0A29\";\n}\n\n.mdi2-barcode::before {\n  content: \"\\F0071\";\n}\n\n.mdi2-barcode-off::before {\n  content: \"\\F1236\";\n}\n\n.mdi2-barcode-scan::before {\n  content: \"\\F0072\";\n}\n\n.mdi2-barley::before {\n  content: \"\\F0073\";\n}\n\n.mdi2-barley-off::before {\n  content: \"\\F0B5D\";\n}\n\n.mdi2-barn::before {\n  content: \"\\F0B5E\";\n}\n\n.mdi2-barrel::before {\n  content: \"\\F0074\";\n}\n\n.mdi2-barrel-outline::before {\n  content: \"\\F1A28\";\n}\n\n.mdi2-baseball::before {\n  content: \"\\F0852\";\n}\n\n.mdi2-baseball-bat::before {\n  content: \"\\F0853\";\n}\n\n.mdi2-baseball-diamond::before {\n  content: \"\\F15EC\";\n}\n\n.mdi2-baseball-diamond-outline::before {\n  content: \"\\F15ED\";\n}\n\n.mdi2-baseball-outline::before {\n  content: \"\\F1C5A\";\n}\n\n.mdi2-bash::before {\n  content: \"\\F1183\";\n}\n\n.mdi2-basket::before {\n  content: \"\\F0076\";\n}\n\n.mdi2-basket-check::before {\n  content: \"\\F18E5\";\n}\n\n.mdi2-basket-check-outline::before {\n  content: \"\\F18E6\";\n}\n\n.mdi2-basket-fill::before {\n  content: \"\\F0077\";\n}\n\n.mdi2-basket-minus::before {\n  content: \"\\F1523\";\n}\n\n.mdi2-basket-minus-outline::before {\n  content: \"\\F1524\";\n}\n\n.mdi2-basket-off::before {\n  content: \"\\F1525\";\n}\n\n.mdi2-basket-off-outline::before {\n  content: \"\\F1526\";\n}\n\n.mdi2-basket-outline::before {\n  content: \"\\F1181\";\n}\n\n.mdi2-basket-plus::before {\n  content: \"\\F1527\";\n}\n\n.mdi2-basket-plus-outline::before {\n  content: \"\\F1528\";\n}\n\n.mdi2-basket-remove::before {\n  content: \"\\F1529\";\n}\n\n.mdi2-basket-remove-outline::before {\n  content: \"\\F152A\";\n}\n\n.mdi2-basket-unfill::before {\n  content: \"\\F0078\";\n}\n\n.mdi2-basketball::before {\n  content: \"\\F0806\";\n}\n\n.mdi2-basketball-hoop::before {\n  content: \"\\F0C3B\";\n}\n\n.mdi2-basketball-hoop-outline::before {\n  content: \"\\F0C3C\";\n}\n\n.mdi2-bat::before {\n  content: \"\\F0B5F\";\n}\n\n.mdi2-bathtub::before {\n  content: \"\\F1818\";\n}\n\n.mdi2-bathtub-outline::before {\n  content: \"\\F1819\";\n}\n\n.mdi2-battery::before {\n  content: \"\\F0079\";\n}\n\n.mdi2-battery-10::before {\n  content: \"\\F007A\";\n}\n\n.mdi2-battery-10-bluetooth::before {\n  content: \"\\F093E\";\n}\n\n.mdi2-battery-20::before {\n  content: \"\\F007B\";\n}\n\n.mdi2-battery-20-bluetooth::before {\n  content: \"\\F093F\";\n}\n\n.mdi2-battery-30::before {\n  content: \"\\F007C\";\n}\n\n.mdi2-battery-30-bluetooth::before {\n  content: \"\\F0940\";\n}\n\n.mdi2-battery-40::before {\n  content: \"\\F007D\";\n}\n\n.mdi2-battery-40-bluetooth::before {\n  content: \"\\F0941\";\n}\n\n.mdi2-battery-50::before {\n  content: \"\\F007E\";\n}\n\n.mdi2-battery-50-bluetooth::before {\n  content: \"\\F0942\";\n}\n\n.mdi2-battery-60::before {\n  content: \"\\F007F\";\n}\n\n.mdi2-battery-60-bluetooth::before {\n  content: \"\\F0943\";\n}\n\n.mdi2-battery-70::before {\n  content: \"\\F0080\";\n}\n\n.mdi2-battery-70-bluetooth::before {\n  content: \"\\F0944\";\n}\n\n.mdi2-battery-80::before {\n  content: \"\\F0081\";\n}\n\n.mdi2-battery-80-bluetooth::before {\n  content: \"\\F0945\";\n}\n\n.mdi2-battery-90::before {\n  content: \"\\F0082\";\n}\n\n.mdi2-battery-90-bluetooth::before {\n  content: \"\\F0946\";\n}\n\n.mdi2-battery-alert::before {\n  content: \"\\F0083\";\n}\n\n.mdi2-battery-alert-bluetooth::before {\n  content: \"\\F0947\";\n}\n\n.mdi2-battery-alert-variant::before {\n  content: \"\\F10CC\";\n}\n\n.mdi2-battery-alert-variant-outline::before {\n  content: \"\\F10CD\";\n}\n\n.mdi2-battery-arrow-down::before {\n  content: \"\\F17DE\";\n}\n\n.mdi2-battery-arrow-down-outline::before {\n  content: \"\\F17DF\";\n}\n\n.mdi2-battery-arrow-up::before {\n  content: \"\\F17E0\";\n}\n\n.mdi2-battery-arrow-up-outline::before {\n  content: \"\\F17E1\";\n}\n\n.mdi2-battery-bluetooth::before {\n  content: \"\\F0948\";\n}\n\n.mdi2-battery-bluetooth-variant::before {\n  content: \"\\F0949\";\n}\n\n.mdi2-battery-charging::before {\n  content: \"\\F0084\";\n}\n\n.mdi2-battery-charging-10::before {\n  content: \"\\F089C\";\n}\n\n.mdi2-battery-charging-100::before {\n  content: \"\\F0085\";\n}\n\n.mdi2-battery-charging-20::before {\n  content: \"\\F0086\";\n}\n\n.mdi2-battery-charging-30::before {\n  content: \"\\F0087\";\n}\n\n.mdi2-battery-charging-40::before {\n  content: \"\\F0088\";\n}\n\n.mdi2-battery-charging-50::before {\n  content: \"\\F089D\";\n}\n\n.mdi2-battery-charging-60::before {\n  content: \"\\F0089\";\n}\n\n.mdi2-battery-charging-70::before {\n  content: \"\\F089E\";\n}\n\n.mdi2-battery-charging-80::before {\n  content: \"\\F008A\";\n}\n\n.mdi2-battery-charging-90::before {\n  content: \"\\F008B\";\n}\n\n.mdi2-battery-charging-high::before {\n  content: \"\\F12A6\";\n}\n\n.mdi2-battery-charging-low::before {\n  content: \"\\F12A4\";\n}\n\n.mdi2-battery-charging-medium::before {\n  content: \"\\F12A5\";\n}\n\n.mdi2-battery-charging-outline::before {\n  content: \"\\F089F\";\n}\n\n.mdi2-battery-charging-wireless::before {\n  content: \"\\F0807\";\n}\n\n.mdi2-battery-charging-wireless-10::before {\n  content: \"\\F0808\";\n}\n\n.mdi2-battery-charging-wireless-20::before {\n  content: \"\\F0809\";\n}\n\n.mdi2-battery-charging-wireless-30::before {\n  content: \"\\F080A\";\n}\n\n.mdi2-battery-charging-wireless-40::before {\n  content: \"\\F080B\";\n}\n\n.mdi2-battery-charging-wireless-50::before {\n  content: \"\\F080C\";\n}\n\n.mdi2-battery-charging-wireless-60::before {\n  content: \"\\F080D\";\n}\n\n.mdi2-battery-charging-wireless-70::before {\n  content: \"\\F080E\";\n}\n\n.mdi2-battery-charging-wireless-80::before {\n  content: \"\\F080F\";\n}\n\n.mdi2-battery-charging-wireless-90::before {\n  content: \"\\F0810\";\n}\n\n.mdi2-battery-charging-wireless-alert::before {\n  content: \"\\F0811\";\n}\n\n.mdi2-battery-charging-wireless-outline::before {\n  content: \"\\F0812\";\n}\n\n.mdi2-battery-check::before {\n  content: \"\\F17E2\";\n}\n\n.mdi2-battery-check-outline::before {\n  content: \"\\F17E3\";\n}\n\n.mdi2-battery-clock::before {\n  content: \"\\F19E5\";\n}\n\n.mdi2-battery-clock-outline::before {\n  content: \"\\F19E6\";\n}\n\n.mdi2-battery-heart::before {\n  content: \"\\F120F\";\n}\n\n.mdi2-battery-heart-outline::before {\n  content: \"\\F1210\";\n}\n\n.mdi2-battery-heart-variant::before {\n  content: \"\\F1211\";\n}\n\n.mdi2-battery-high::before {\n  content: \"\\F12A3\";\n}\n\n.mdi2-battery-lock::before {\n  content: \"\\F179C\";\n}\n\n.mdi2-battery-lock-open::before {\n  content: \"\\F179D\";\n}\n\n.mdi2-battery-low::before {\n  content: \"\\F12A1\";\n}\n\n.mdi2-battery-medium::before {\n  content: \"\\F12A2\";\n}\n\n.mdi2-battery-minus::before {\n  content: \"\\F17E4\";\n}\n\n.mdi2-battery-minus-outline::before {\n  content: \"\\F17E5\";\n}\n\n.mdi2-battery-minus-variant::before {\n  content: \"\\F008C\";\n}\n\n.mdi2-battery-negative::before {\n  content: \"\\F008D\";\n}\n\n.mdi2-battery-off::before {\n  content: \"\\F125D\";\n}\n\n.mdi2-battery-off-outline::before {\n  content: \"\\F125E\";\n}\n\n.mdi2-battery-outline::before {\n  content: \"\\F008E\";\n}\n\n.mdi2-battery-plus::before {\n  content: \"\\F17E6\";\n}\n\n.mdi2-battery-plus-outline::before {\n  content: \"\\F17E7\";\n}\n\n.mdi2-battery-plus-variant::before {\n  content: \"\\F008F\";\n}\n\n.mdi2-battery-positive::before {\n  content: \"\\F0090\";\n}\n\n.mdi2-battery-remove::before {\n  content: \"\\F17E8\";\n}\n\n.mdi2-battery-remove-outline::before {\n  content: \"\\F17E9\";\n}\n\n.mdi2-battery-sync::before {\n  content: \"\\F1834\";\n}\n\n.mdi2-battery-sync-outline::before {\n  content: \"\\F1835\";\n}\n\n.mdi2-battery-unknown::before {\n  content: \"\\F0091\";\n}\n\n.mdi2-battery-unknown-bluetooth::before {\n  content: \"\\F094A\";\n}\n\n.mdi2-beach::before {\n  content: \"\\F0092\";\n}\n\n.mdi2-beaker::before {\n  content: \"\\F0CEA\";\n}\n\n.mdi2-beaker-alert::before {\n  content: \"\\F1229\";\n}\n\n.mdi2-beaker-alert-outline::before {\n  content: \"\\F122A\";\n}\n\n.mdi2-beaker-check::before {\n  content: \"\\F122B\";\n}\n\n.mdi2-beaker-check-outline::before {\n  content: \"\\F122C\";\n}\n\n.mdi2-beaker-minus::before {\n  content: \"\\F122D\";\n}\n\n.mdi2-beaker-minus-outline::before {\n  content: \"\\F122E\";\n}\n\n.mdi2-beaker-outline::before {\n  content: \"\\F0690\";\n}\n\n.mdi2-beaker-plus::before {\n  content: \"\\F122F\";\n}\n\n.mdi2-beaker-plus-outline::before {\n  content: \"\\F1230\";\n}\n\n.mdi2-beaker-question::before {\n  content: \"\\F1231\";\n}\n\n.mdi2-beaker-question-outline::before {\n  content: \"\\F1232\";\n}\n\n.mdi2-beaker-remove::before {\n  content: \"\\F1233\";\n}\n\n.mdi2-beaker-remove-outline::before {\n  content: \"\\F1234\";\n}\n\n.mdi2-bed::before {\n  content: \"\\F02E3\";\n}\n\n.mdi2-bed-clock::before {\n  content: \"\\F1B94\";\n}\n\n.mdi2-bed-double::before {\n  content: \"\\F0FD4\";\n}\n\n.mdi2-bed-double-outline::before {\n  content: \"\\F0FD3\";\n}\n\n.mdi2-bed-empty::before {\n  content: \"\\F08A0\";\n}\n\n.mdi2-bed-king::before {\n  content: \"\\F0FD2\";\n}\n\n.mdi2-bed-king-outline::before {\n  content: \"\\F0FD1\";\n}\n\n.mdi2-bed-outline::before {\n  content: \"\\F0099\";\n}\n\n.mdi2-bed-queen::before {\n  content: \"\\F0FD0\";\n}\n\n.mdi2-bed-queen-outline::before {\n  content: \"\\F0FDB\";\n}\n\n.mdi2-bed-single::before {\n  content: \"\\F106D\";\n}\n\n.mdi2-bed-single-outline::before {\n  content: \"\\F106E\";\n}\n\n.mdi2-bee::before {\n  content: \"\\F0FA1\";\n}\n\n.mdi2-bee-flower::before {\n  content: \"\\F0FA2\";\n}\n\n.mdi2-beehive-off-outline::before {\n  content: \"\\F13ED\";\n}\n\n.mdi2-beehive-outline::before {\n  content: \"\\F10CE\";\n}\n\n.mdi2-beekeeper::before {\n  content: \"\\F14E2\";\n}\n\n.mdi2-beer::before {\n  content: \"\\F0098\";\n}\n\n.mdi2-beer-outline::before {\n  content: \"\\F130C\";\n}\n\n.mdi2-bell::before {\n  content: \"\\F009A\";\n}\n\n.mdi2-bell-alert::before {\n  content: \"\\F0D59\";\n}\n\n.mdi2-bell-alert-outline::before {\n  content: \"\\F0E81\";\n}\n\n.mdi2-bell-badge::before {\n  content: \"\\F116B\";\n}\n\n.mdi2-bell-badge-outline::before {\n  content: \"\\F0178\";\n}\n\n.mdi2-bell-cancel::before {\n  content: \"\\F13E7\";\n}\n\n.mdi2-bell-cancel-outline::before {\n  content: \"\\F13E8\";\n}\n\n.mdi2-bell-check::before {\n  content: \"\\F11E5\";\n}\n\n.mdi2-bell-check-outline::before {\n  content: \"\\F11E6\";\n}\n\n.mdi2-bell-circle::before {\n  content: \"\\F0D5A\";\n}\n\n.mdi2-bell-circle-outline::before {\n  content: \"\\F0D5B\";\n}\n\n.mdi2-bell-cog::before {\n  content: \"\\F1A29\";\n}\n\n.mdi2-bell-cog-outline::before {\n  content: \"\\F1A2A\";\n}\n\n.mdi2-bell-minus::before {\n  content: \"\\F13E9\";\n}\n\n.mdi2-bell-minus-outline::before {\n  content: \"\\F13EA\";\n}\n\n.mdi2-bell-off::before {\n  content: \"\\F009B\";\n}\n\n.mdi2-bell-off-outline::before {\n  content: \"\\F0A91\";\n}\n\n.mdi2-bell-outline::before {\n  content: \"\\F009C\";\n}\n\n.mdi2-bell-plus::before {\n  content: \"\\F009D\";\n}\n\n.mdi2-bell-plus-outline::before {\n  content: \"\\F0A92\";\n}\n\n.mdi2-bell-remove::before {\n  content: \"\\F13EB\";\n}\n\n.mdi2-bell-remove-outline::before {\n  content: \"\\F13EC\";\n}\n\n.mdi2-bell-ring::before {\n  content: \"\\F009E\";\n}\n\n.mdi2-bell-ring-outline::before {\n  content: \"\\F009F\";\n}\n\n.mdi2-bell-sleep::before {\n  content: \"\\F00A0\";\n}\n\n.mdi2-bell-sleep-outline::before {\n  content: \"\\F0A93\";\n}\n\n.mdi2-bench::before {\n  content: \"\\F1C21\";\n}\n\n.mdi2-bench-back::before {\n  content: \"\\F1C22\";\n}\n\n.mdi2-beta::before {\n  content: \"\\F00A1\";\n}\n\n.mdi2-betamax::before {\n  content: \"\\F09CB\";\n}\n\n.mdi2-biathlon::before {\n  content: \"\\F0E14\";\n}\n\n.mdi2-bicycle::before {\n  content: \"\\F109C\";\n}\n\n.mdi2-bicycle-basket::before {\n  content: \"\\F1235\";\n}\n\n.mdi2-bicycle-cargo::before {\n  content: \"\\F189C\";\n}\n\n.mdi2-bicycle-electric::before {\n  content: \"\\F15B4\";\n}\n\n.mdi2-bicycle-penny-farthing::before {\n  content: \"\\F15E9\";\n}\n\n.mdi2-bike::before {\n  content: \"\\F00A3\";\n}\n\n.mdi2-bike-fast::before {\n  content: \"\\F111F\";\n}\n\n.mdi2-bike-pedal::before {\n  content: \"\\F1C23\";\n}\n\n.mdi2-bike-pedal-clipless::before {\n  content: \"\\F1C24\";\n}\n\n.mdi2-bike-pedal-mountain::before {\n  content: \"\\F1C25\";\n}\n\n.mdi2-billboard::before {\n  content: \"\\F1010\";\n}\n\n.mdi2-billiards::before {\n  content: \"\\F0B61\";\n}\n\n.mdi2-billiards-rack::before {\n  content: \"\\F0B62\";\n}\n\n.mdi2-binoculars::before {\n  content: \"\\F00A5\";\n}\n\n.mdi2-bio::before {\n  content: \"\\F00A6\";\n}\n\n.mdi2-biohazard::before {\n  content: \"\\F00A7\";\n}\n\n.mdi2-bird::before {\n  content: \"\\F15C6\";\n}\n\n.mdi2-bitbucket::before {\n  content: \"\\F00A8\";\n}\n\n.mdi2-bitcoin::before {\n  content: \"\\F0813\";\n}\n\n.mdi2-black-mesa::before {\n  content: \"\\F00A9\";\n}\n\n.mdi2-blender::before {\n  content: \"\\F0CEB\";\n}\n\n.mdi2-blender-outline::before {\n  content: \"\\F181A\";\n}\n\n.mdi2-blender-software::before {\n  content: \"\\F00AB\";\n}\n\n.mdi2-blinds::before {\n  content: \"\\F00AC\";\n}\n\n.mdi2-blinds-horizontal::before {\n  content: \"\\F1A2B\";\n}\n\n.mdi2-blinds-horizontal-closed::before {\n  content: \"\\F1A2C\";\n}\n\n.mdi2-blinds-open::before {\n  content: \"\\F1011\";\n}\n\n.mdi2-blinds-vertical::before {\n  content: \"\\F1A2D\";\n}\n\n.mdi2-blinds-vertical-closed::before {\n  content: \"\\F1A2E\";\n}\n\n.mdi2-block-helper::before {\n  content: \"\\F00AD\";\n}\n\n.mdi2-blood-bag::before {\n  content: \"\\F0CEC\";\n}\n\n.mdi2-bluetooth::before {\n  content: \"\\F00AF\";\n}\n\n.mdi2-bluetooth-audio::before {\n  content: \"\\F00B0\";\n}\n\n.mdi2-bluetooth-connect::before {\n  content: \"\\F00B1\";\n}\n\n.mdi2-bluetooth-off::before {\n  content: \"\\F00B2\";\n}\n\n.mdi2-bluetooth-settings::before {\n  content: \"\\F00B3\";\n}\n\n.mdi2-bluetooth-transfer::before {\n  content: \"\\F00B4\";\n}\n\n.mdi2-blur::before {\n  content: \"\\F00B5\";\n}\n\n.mdi2-blur-linear::before {\n  content: \"\\F00B6\";\n}\n\n.mdi2-blur-off::before {\n  content: \"\\F00B7\";\n}\n\n.mdi2-blur-radial::before {\n  content: \"\\F00B8\";\n}\n\n.mdi2-bolt::before {\n  content: \"\\F0DB3\";\n}\n\n.mdi2-bomb::before {\n  content: \"\\F0691\";\n}\n\n.mdi2-bomb-off::before {\n  content: \"\\F06C5\";\n}\n\n.mdi2-bone::before {\n  content: \"\\F00B9\";\n}\n\n.mdi2-bone-off::before {\n  content: \"\\F19E0\";\n}\n\n.mdi2-book::before {\n  content: \"\\F00BA\";\n}\n\n.mdi2-book-account::before {\n  content: \"\\F13AD\";\n}\n\n.mdi2-book-account-outline::before {\n  content: \"\\F13AE\";\n}\n\n.mdi2-book-alert::before {\n  content: \"\\F167C\";\n}\n\n.mdi2-book-alert-outline::before {\n  content: \"\\F167D\";\n}\n\n.mdi2-book-alphabet::before {\n  content: \"\\F061D\";\n}\n\n.mdi2-book-arrow-down::before {\n  content: \"\\F167E\";\n}\n\n.mdi2-book-arrow-down-outline::before {\n  content: \"\\F167F\";\n}\n\n.mdi2-book-arrow-left::before {\n  content: \"\\F1680\";\n}\n\n.mdi2-book-arrow-left-outline::before {\n  content: \"\\F1681\";\n}\n\n.mdi2-book-arrow-right::before {\n  content: \"\\F1682\";\n}\n\n.mdi2-book-arrow-right-outline::before {\n  content: \"\\F1683\";\n}\n\n.mdi2-book-arrow-up::before {\n  content: \"\\F1684\";\n}\n\n.mdi2-book-arrow-up-outline::before {\n  content: \"\\F1685\";\n}\n\n.mdi2-book-cancel::before {\n  content: \"\\F1686\";\n}\n\n.mdi2-book-cancel-outline::before {\n  content: \"\\F1687\";\n}\n\n.mdi2-book-check::before {\n  content: \"\\F14F3\";\n}\n\n.mdi2-book-check-outline::before {\n  content: \"\\F14F4\";\n}\n\n.mdi2-book-clock::before {\n  content: \"\\F1688\";\n}\n\n.mdi2-book-clock-outline::before {\n  content: \"\\F1689\";\n}\n\n.mdi2-book-cog::before {\n  content: \"\\F168A\";\n}\n\n.mdi2-book-cog-outline::before {\n  content: \"\\F168B\";\n}\n\n.mdi2-book-cross::before {\n  content: \"\\F00A2\";\n}\n\n.mdi2-book-edit::before {\n  content: \"\\F168C\";\n}\n\n.mdi2-book-edit-outline::before {\n  content: \"\\F168D\";\n}\n\n.mdi2-book-education::before {\n  content: \"\\F16C9\";\n}\n\n.mdi2-book-education-outline::before {\n  content: \"\\F16CA\";\n}\n\n.mdi2-book-heart::before {\n  content: \"\\F1A1D\";\n}\n\n.mdi2-book-heart-outline::before {\n  content: \"\\F1A1E\";\n}\n\n.mdi2-book-information-variant::before {\n  content: \"\\F106F\";\n}\n\n.mdi2-book-lock::before {\n  content: \"\\F079A\";\n}\n\n.mdi2-book-lock-open::before {\n  content: \"\\F079B\";\n}\n\n.mdi2-book-lock-open-outline::before {\n  content: \"\\F168E\";\n}\n\n.mdi2-book-lock-outline::before {\n  content: \"\\F168F\";\n}\n\n.mdi2-book-marker::before {\n  content: \"\\F1690\";\n}\n\n.mdi2-book-marker-outline::before {\n  content: \"\\F1691\";\n}\n\n.mdi2-book-minus::before {\n  content: \"\\F05D9\";\n}\n\n.mdi2-book-minus-multiple::before {\n  content: \"\\F0A94\";\n}\n\n.mdi2-book-minus-multiple-outline::before {\n  content: \"\\F090B\";\n}\n\n.mdi2-book-minus-outline::before {\n  content: \"\\F1692\";\n}\n\n.mdi2-book-multiple::before {\n  content: \"\\F00BB\";\n}\n\n.mdi2-book-multiple-outline::before {\n  content: \"\\F0436\";\n}\n\n.mdi2-book-music::before {\n  content: \"\\F0067\";\n}\n\n.mdi2-book-music-outline::before {\n  content: \"\\F1693\";\n}\n\n.mdi2-book-off::before {\n  content: \"\\F1694\";\n}\n\n.mdi2-book-off-outline::before {\n  content: \"\\F1695\";\n}\n\n.mdi2-book-open::before {\n  content: \"\\F00BD\";\n}\n\n.mdi2-book-open-blank-variant::before {\n  content: \"\\F00BE\";\n}\n\n.mdi2-book-open-blank-variant-outline::before {\n  content: \"\\F1CCB\";\n}\n\n.mdi2-book-open-outline::before {\n  content: \"\\F0B63\";\n}\n\n.mdi2-book-open-page-variant::before {\n  content: \"\\F05DA\";\n}\n\n.mdi2-book-open-page-variant-outline::before {\n  content: \"\\F15D6\";\n}\n\n.mdi2-book-open-variant::before {\n  content: \"\\F14F7\";\n}\n\n.mdi2-book-open-variant-outline::before {\n  content: \"\\F1CCC\";\n}\n\n.mdi2-book-outline::before {\n  content: \"\\F0B64\";\n}\n\n.mdi2-book-play::before {\n  content: \"\\F0E82\";\n}\n\n.mdi2-book-play-outline::before {\n  content: \"\\F0E83\";\n}\n\n.mdi2-book-plus::before {\n  content: \"\\F05DB\";\n}\n\n.mdi2-book-plus-multiple::before {\n  content: \"\\F0A95\";\n}\n\n.mdi2-book-plus-multiple-outline::before {\n  content: \"\\F0ADE\";\n}\n\n.mdi2-book-plus-outline::before {\n  content: \"\\F1696\";\n}\n\n.mdi2-book-refresh::before {\n  content: \"\\F1697\";\n}\n\n.mdi2-book-refresh-outline::before {\n  content: \"\\F1698\";\n}\n\n.mdi2-book-remove::before {\n  content: \"\\F0A97\";\n}\n\n.mdi2-book-remove-multiple::before {\n  content: \"\\F0A96\";\n}\n\n.mdi2-book-remove-multiple-outline::before {\n  content: \"\\F04CA\";\n}\n\n.mdi2-book-remove-outline::before {\n  content: \"\\F1699\";\n}\n\n.mdi2-book-search::before {\n  content: \"\\F0E84\";\n}\n\n.mdi2-book-search-outline::before {\n  content: \"\\F0E85\";\n}\n\n.mdi2-book-settings::before {\n  content: \"\\F169A\";\n}\n\n.mdi2-book-settings-outline::before {\n  content: \"\\F169B\";\n}\n\n.mdi2-book-sync::before {\n  content: \"\\F169C\";\n}\n\n.mdi2-book-sync-outline::before {\n  content: \"\\F16C8\";\n}\n\n.mdi2-book-variant::before {\n  content: \"\\F00BF\";\n}\n\n.mdi2-bookmark::before {\n  content: \"\\F00C0\";\n}\n\n.mdi2-bookmark-box::before {\n  content: \"\\F1B75\";\n}\n\n.mdi2-bookmark-box-multiple::before {\n  content: \"\\F196C\";\n}\n\n.mdi2-bookmark-box-multiple-outline::before {\n  content: \"\\F196D\";\n}\n\n.mdi2-bookmark-box-outline::before {\n  content: \"\\F1B76\";\n}\n\n.mdi2-bookmark-check::before {\n  content: \"\\F00C1\";\n}\n\n.mdi2-bookmark-check-outline::before {\n  content: \"\\F137B\";\n}\n\n.mdi2-bookmark-minus::before {\n  content: \"\\F09CC\";\n}\n\n.mdi2-bookmark-minus-outline::before {\n  content: \"\\F09CD\";\n}\n\n.mdi2-bookmark-multiple::before {\n  content: \"\\F0E15\";\n}\n\n.mdi2-bookmark-multiple-outline::before {\n  content: \"\\F0E16\";\n}\n\n.mdi2-bookmark-music::before {\n  content: \"\\F00C2\";\n}\n\n.mdi2-bookmark-music-outline::before {\n  content: \"\\F1379\";\n}\n\n.mdi2-bookmark-off::before {\n  content: \"\\F09CE\";\n}\n\n.mdi2-bookmark-off-outline::before {\n  content: \"\\F09CF\";\n}\n\n.mdi2-bookmark-outline::before {\n  content: \"\\F00C3\";\n}\n\n.mdi2-bookmark-plus::before {\n  content: \"\\F00C5\";\n}\n\n.mdi2-bookmark-plus-outline::before {\n  content: \"\\F00C4\";\n}\n\n.mdi2-bookmark-remove::before {\n  content: \"\\F00C6\";\n}\n\n.mdi2-bookmark-remove-outline::before {\n  content: \"\\F137A\";\n}\n\n.mdi2-bookshelf::before {\n  content: \"\\F125F\";\n}\n\n.mdi2-boom-gate::before {\n  content: \"\\F0E86\";\n}\n\n.mdi2-boom-gate-alert::before {\n  content: \"\\F0E87\";\n}\n\n.mdi2-boom-gate-alert-outline::before {\n  content: \"\\F0E88\";\n}\n\n.mdi2-boom-gate-arrow-down::before {\n  content: \"\\F0E89\";\n}\n\n.mdi2-boom-gate-arrow-down-outline::before {\n  content: \"\\F0E8A\";\n}\n\n.mdi2-boom-gate-arrow-up::before {\n  content: \"\\F0E8C\";\n}\n\n.mdi2-boom-gate-arrow-up-outline::before {\n  content: \"\\F0E8D\";\n}\n\n.mdi2-boom-gate-outline::before {\n  content: \"\\F0E8B\";\n}\n\n.mdi2-boom-gate-up::before {\n  content: \"\\F17F9\";\n}\n\n.mdi2-boom-gate-up-outline::before {\n  content: \"\\F17FA\";\n}\n\n.mdi2-boombox::before {\n  content: \"\\F05DC\";\n}\n\n.mdi2-boomerang::before {\n  content: \"\\F10CF\";\n}\n\n.mdi2-bootstrap::before {\n  content: \"\\F06C6\";\n}\n\n.mdi2-border-all::before {\n  content: \"\\F00C7\";\n}\n\n.mdi2-border-all-variant::before {\n  content: \"\\F08A1\";\n}\n\n.mdi2-border-bottom::before {\n  content: \"\\F00C8\";\n}\n\n.mdi2-border-bottom-variant::before {\n  content: \"\\F08A2\";\n}\n\n.mdi2-border-color::before {\n  content: \"\\F00C9\";\n}\n\n.mdi2-border-horizontal::before {\n  content: \"\\F00CA\";\n}\n\n.mdi2-border-inside::before {\n  content: \"\\F00CB\";\n}\n\n.mdi2-border-left::before {\n  content: \"\\F00CC\";\n}\n\n.mdi2-border-left-variant::before {\n  content: \"\\F08A3\";\n}\n\n.mdi2-border-none::before {\n  content: \"\\F00CD\";\n}\n\n.mdi2-border-none-variant::before {\n  content: \"\\F08A4\";\n}\n\n.mdi2-border-outside::before {\n  content: \"\\F00CE\";\n}\n\n.mdi2-border-radius::before {\n  content: \"\\F1AF4\";\n}\n\n.mdi2-border-right::before {\n  content: \"\\F00CF\";\n}\n\n.mdi2-border-right-variant::before {\n  content: \"\\F08A5\";\n}\n\n.mdi2-border-style::before {\n  content: \"\\F00D0\";\n}\n\n.mdi2-border-top::before {\n  content: \"\\F00D1\";\n}\n\n.mdi2-border-top-variant::before {\n  content: \"\\F08A6\";\n}\n\n.mdi2-border-vertical::before {\n  content: \"\\F00D2\";\n}\n\n.mdi2-bottle-soda::before {\n  content: \"\\F1070\";\n}\n\n.mdi2-bottle-soda-classic::before {\n  content: \"\\F1071\";\n}\n\n.mdi2-bottle-soda-classic-outline::before {\n  content: \"\\F1363\";\n}\n\n.mdi2-bottle-soda-outline::before {\n  content: \"\\F1072\";\n}\n\n.mdi2-bottle-tonic::before {\n  content: \"\\F112E\";\n}\n\n.mdi2-bottle-tonic-outline::before {\n  content: \"\\F112F\";\n}\n\n.mdi2-bottle-tonic-plus::before {\n  content: \"\\F1130\";\n}\n\n.mdi2-bottle-tonic-plus-outline::before {\n  content: \"\\F1131\";\n}\n\n.mdi2-bottle-tonic-skull::before {\n  content: \"\\F1132\";\n}\n\n.mdi2-bottle-tonic-skull-outline::before {\n  content: \"\\F1133\";\n}\n\n.mdi2-bottle-wine::before {\n  content: \"\\F0854\";\n}\n\n.mdi2-bottle-wine-outline::before {\n  content: \"\\F1310\";\n}\n\n.mdi2-bow-arrow::before {\n  content: \"\\F1841\";\n}\n\n.mdi2-bow-tie::before {\n  content: \"\\F0678\";\n}\n\n.mdi2-bowl::before {\n  content: \"\\F028E\";\n}\n\n.mdi2-bowl-mix::before {\n  content: \"\\F0617\";\n}\n\n.mdi2-bowl-mix-outline::before {\n  content: \"\\F02E4\";\n}\n\n.mdi2-bowl-outline::before {\n  content: \"\\F02A9\";\n}\n\n.mdi2-bowling::before {\n  content: \"\\F00D3\";\n}\n\n.mdi2-box::before {\n  content: \"\\F00D4\";\n}\n\n.mdi2-box-cutter::before {\n  content: \"\\F00D5\";\n}\n\n.mdi2-box-cutter-off::before {\n  content: \"\\F0B4A\";\n}\n\n.mdi2-box-shadow::before {\n  content: \"\\F0637\";\n}\n\n.mdi2-boxing-glove::before {\n  content: \"\\F0B65\";\n}\n\n.mdi2-braille::before {\n  content: \"\\F09D0\";\n}\n\n.mdi2-brain::before {\n  content: \"\\F09D1\";\n}\n\n.mdi2-bread-slice::before {\n  content: \"\\F0CEE\";\n}\n\n.mdi2-bread-slice-outline::before {\n  content: \"\\F0CEF\";\n}\n\n.mdi2-bridge::before {\n  content: \"\\F0618\";\n}\n\n.mdi2-briefcase::before {\n  content: \"\\F00D6\";\n}\n\n.mdi2-briefcase-account::before {\n  content: \"\\F0CF0\";\n}\n\n.mdi2-briefcase-account-outline::before {\n  content: \"\\F0CF1\";\n}\n\n.mdi2-briefcase-arrow-left-right::before {\n  content: \"\\F1A8D\";\n}\n\n.mdi2-briefcase-arrow-left-right-outline::before {\n  content: \"\\F1A8E\";\n}\n\n.mdi2-briefcase-arrow-up-down::before {\n  content: \"\\F1A8F\";\n}\n\n.mdi2-briefcase-arrow-up-down-outline::before {\n  content: \"\\F1A90\";\n}\n\n.mdi2-briefcase-check::before {\n  content: \"\\F00D7\";\n}\n\n.mdi2-briefcase-check-outline::before {\n  content: \"\\F131E\";\n}\n\n.mdi2-briefcase-clock::before {\n  content: \"\\F10D0\";\n}\n\n.mdi2-briefcase-clock-outline::before {\n  content: \"\\F10D1\";\n}\n\n.mdi2-briefcase-download::before {\n  content: \"\\F00D8\";\n}\n\n.mdi2-briefcase-download-outline::before {\n  content: \"\\F0C3D\";\n}\n\n.mdi2-briefcase-edit::before {\n  content: \"\\F0A98\";\n}\n\n.mdi2-briefcase-edit-outline::before {\n  content: \"\\F0C3E\";\n}\n\n.mdi2-briefcase-eye::before {\n  content: \"\\F17D9\";\n}\n\n.mdi2-briefcase-eye-outline::before {\n  content: \"\\F17DA\";\n}\n\n.mdi2-briefcase-minus::before {\n  content: \"\\F0A2A\";\n}\n\n.mdi2-briefcase-minus-outline::before {\n  content: \"\\F0C3F\";\n}\n\n.mdi2-briefcase-off::before {\n  content: \"\\F1658\";\n}\n\n.mdi2-briefcase-off-outline::before {\n  content: \"\\F1659\";\n}\n\n.mdi2-briefcase-outline::before {\n  content: \"\\F0814\";\n}\n\n.mdi2-briefcase-plus::before {\n  content: \"\\F0A2B\";\n}\n\n.mdi2-briefcase-plus-outline::before {\n  content: \"\\F0C40\";\n}\n\n.mdi2-briefcase-remove::before {\n  content: \"\\F0A2C\";\n}\n\n.mdi2-briefcase-remove-outline::before {\n  content: \"\\F0C41\";\n}\n\n.mdi2-briefcase-search::before {\n  content: \"\\F0A2D\";\n}\n\n.mdi2-briefcase-search-outline::before {\n  content: \"\\F0C42\";\n}\n\n.mdi2-briefcase-upload::before {\n  content: \"\\F00D9\";\n}\n\n.mdi2-briefcase-upload-outline::before {\n  content: \"\\F0C43\";\n}\n\n.mdi2-briefcase-variant::before {\n  content: \"\\F1494\";\n}\n\n.mdi2-briefcase-variant-off::before {\n  content: \"\\F165A\";\n}\n\n.mdi2-briefcase-variant-off-outline::before {\n  content: \"\\F165B\";\n}\n\n.mdi2-briefcase-variant-outline::before {\n  content: \"\\F1495\";\n}\n\n.mdi2-brightness-1::before {\n  content: \"\\F00DA\";\n}\n\n.mdi2-brightness-2::before {\n  content: \"\\F00DB\";\n}\n\n.mdi2-brightness-3::before {\n  content: \"\\F00DC\";\n}\n\n.mdi2-brightness-4::before {\n  content: \"\\F00DD\";\n}\n\n.mdi2-brightness-5::before {\n  content: \"\\F00DE\";\n}\n\n.mdi2-brightness-6::before {\n  content: \"\\F00DF\";\n}\n\n.mdi2-brightness-7::before {\n  content: \"\\F00E0\";\n}\n\n.mdi2-brightness-auto::before {\n  content: \"\\F00E1\";\n}\n\n.mdi2-brightness-percent::before {\n  content: \"\\F0CF2\";\n}\n\n.mdi2-broadcast::before {\n  content: \"\\F1720\";\n}\n\n.mdi2-broadcast-off::before {\n  content: \"\\F1721\";\n}\n\n.mdi2-broom::before {\n  content: \"\\F00E2\";\n}\n\n.mdi2-brush::before {\n  content: \"\\F00E3\";\n}\n\n.mdi2-brush-off::before {\n  content: \"\\F1771\";\n}\n\n.mdi2-brush-outline::before {\n  content: \"\\F1A0D\";\n}\n\n.mdi2-brush-variant::before {\n  content: \"\\F1813\";\n}\n\n.mdi2-bucket::before {\n  content: \"\\F1415\";\n}\n\n.mdi2-bucket-outline::before {\n  content: \"\\F1416\";\n}\n\n.mdi2-buffet::before {\n  content: \"\\F0578\";\n}\n\n.mdi2-bug::before {\n  content: \"\\F00E4\";\n}\n\n.mdi2-bug-check::before {\n  content: \"\\F0A2E\";\n}\n\n.mdi2-bug-check-outline::before {\n  content: \"\\F0A2F\";\n}\n\n.mdi2-bug-outline::before {\n  content: \"\\F0A30\";\n}\n\n.mdi2-bug-pause::before {\n  content: \"\\F1AF5\";\n}\n\n.mdi2-bug-pause-outline::before {\n  content: \"\\F1AF6\";\n}\n\n.mdi2-bug-play::before {\n  content: \"\\F1AF7\";\n}\n\n.mdi2-bug-play-outline::before {\n  content: \"\\F1AF8\";\n}\n\n.mdi2-bug-stop::before {\n  content: \"\\F1AF9\";\n}\n\n.mdi2-bug-stop-outline::before {\n  content: \"\\F1AFA\";\n}\n\n.mdi2-bugle::before {\n  content: \"\\F0DB4\";\n}\n\n.mdi2-bulkhead-light::before {\n  content: \"\\F1A2F\";\n}\n\n.mdi2-bulldozer::before {\n  content: \"\\F0B22\";\n}\n\n.mdi2-bullet::before {\n  content: \"\\F0CF3\";\n}\n\n.mdi2-bulletin-board::before {\n  content: \"\\F00E5\";\n}\n\n.mdi2-bullhorn::before {\n  content: \"\\F00E6\";\n}\n\n.mdi2-bullhorn-outline::before {\n  content: \"\\F0B23\";\n}\n\n.mdi2-bullhorn-variant::before {\n  content: \"\\F196E\";\n}\n\n.mdi2-bullhorn-variant-outline::before {\n  content: \"\\F196F\";\n}\n\n.mdi2-bullseye::before {\n  content: \"\\F05DD\";\n}\n\n.mdi2-bullseye-arrow::before {\n  content: \"\\F08C9\";\n}\n\n.mdi2-bulma::before {\n  content: \"\\F12E7\";\n}\n\n.mdi2-bunk-bed::before {\n  content: \"\\F1302\";\n}\n\n.mdi2-bunk-bed-outline::before {\n  content: \"\\F0097\";\n}\n\n.mdi2-bus::before {\n  content: \"\\F00E7\";\n}\n\n.mdi2-bus-alert::before {\n  content: \"\\F0A99\";\n}\n\n.mdi2-bus-articulated-end::before {\n  content: \"\\F079C\";\n}\n\n.mdi2-bus-articulated-front::before {\n  content: \"\\F079D\";\n}\n\n.mdi2-bus-clock::before {\n  content: \"\\F08CA\";\n}\n\n.mdi2-bus-double-decker::before {\n  content: \"\\F079E\";\n}\n\n.mdi2-bus-electric::before {\n  content: \"\\F191D\";\n}\n\n.mdi2-bus-marker::before {\n  content: \"\\F1212\";\n}\n\n.mdi2-bus-multiple::before {\n  content: \"\\F0F3F\";\n}\n\n.mdi2-bus-school::before {\n  content: \"\\F079F\";\n}\n\n.mdi2-bus-side::before {\n  content: \"\\F07A0\";\n}\n\n.mdi2-bus-sign::before {\n  content: \"\\F1CC1\";\n}\n\n.mdi2-bus-stop::before {\n  content: \"\\F1012\";\n}\n\n.mdi2-bus-stop-covered::before {\n  content: \"\\F1013\";\n}\n\n.mdi2-bus-stop-uncovered::before {\n  content: \"\\F1014\";\n}\n\n.mdi2-bus-wrench::before {\n  content: \"\\F1CC2\";\n}\n\n.mdi2-butterfly::before {\n  content: \"\\F1589\";\n}\n\n.mdi2-butterfly-outline::before {\n  content: \"\\F158A\";\n}\n\n.mdi2-button-cursor::before {\n  content: \"\\F1B4F\";\n}\n\n.mdi2-button-pointer::before {\n  content: \"\\F1B50\";\n}\n\n.mdi2-cabin-a-frame::before {\n  content: \"\\F188C\";\n}\n\n.mdi2-cable-data::before {\n  content: \"\\F1394\";\n}\n\n.mdi2-cached::before {\n  content: \"\\F00E8\";\n}\n\n.mdi2-cactus::before {\n  content: \"\\F0DB5\";\n}\n\n.mdi2-cake::before {\n  content: \"\\F00E9\";\n}\n\n.mdi2-cake-layered::before {\n  content: \"\\F00EA\";\n}\n\n.mdi2-cake-variant::before {\n  content: \"\\F00EB\";\n}\n\n.mdi2-cake-variant-outline::before {\n  content: \"\\F17F0\";\n}\n\n.mdi2-calculator::before {\n  content: \"\\F00EC\";\n}\n\n.mdi2-calculator-variant::before {\n  content: \"\\F0A9A\";\n}\n\n.mdi2-calculator-variant-outline::before {\n  content: \"\\F15A6\";\n}\n\n.mdi2-calendar::before {\n  content: \"\\F00ED\";\n}\n\n.mdi2-calendar-account::before {\n  content: \"\\F0ED7\";\n}\n\n.mdi2-calendar-account-outline::before {\n  content: \"\\F0ED8\";\n}\n\n.mdi2-calendar-alert::before {\n  content: \"\\F0A31\";\n}\n\n.mdi2-calendar-alert-outline::before {\n  content: \"\\F1B62\";\n}\n\n.mdi2-calendar-arrow-left::before {\n  content: \"\\F1134\";\n}\n\n.mdi2-calendar-arrow-right::before {\n  content: \"\\F1135\";\n}\n\n.mdi2-calendar-badge::before {\n  content: \"\\F1B9D\";\n}\n\n.mdi2-calendar-badge-outline::before {\n  content: \"\\F1B9E\";\n}\n\n.mdi2-calendar-blank::before {\n  content: \"\\F00EE\";\n}\n\n.mdi2-calendar-blank-multiple::before {\n  content: \"\\F1073\";\n}\n\n.mdi2-calendar-blank-outline::before {\n  content: \"\\F0B66\";\n}\n\n.mdi2-calendar-check::before {\n  content: \"\\F00EF\";\n}\n\n.mdi2-calendar-check-outline::before {\n  content: \"\\F0C44\";\n}\n\n.mdi2-calendar-clock::before {\n  content: \"\\F00F0\";\n}\n\n.mdi2-calendar-clock-outline::before {\n  content: \"\\F16E1\";\n}\n\n.mdi2-calendar-collapse-horizontal::before {\n  content: \"\\F189D\";\n}\n\n.mdi2-calendar-collapse-horizontal-outline::before {\n  content: \"\\F1B63\";\n}\n\n.mdi2-calendar-cursor::before {\n  content: \"\\F157B\";\n}\n\n.mdi2-calendar-cursor-outline::before {\n  content: \"\\F1B64\";\n}\n\n.mdi2-calendar-edit::before {\n  content: \"\\F08A7\";\n}\n\n.mdi2-calendar-edit-outline::before {\n  content: \"\\F1B65\";\n}\n\n.mdi2-calendar-end::before {\n  content: \"\\F166C\";\n}\n\n.mdi2-calendar-end-outline::before {\n  content: \"\\F1B66\";\n}\n\n.mdi2-calendar-expand-horizontal::before {\n  content: \"\\F189E\";\n}\n\n.mdi2-calendar-expand-horizontal-outline::before {\n  content: \"\\F1B67\";\n}\n\n.mdi2-calendar-export::before {\n  content: \"\\F0B24\";\n}\n\n.mdi2-calendar-export-outline::before {\n  content: \"\\F1B68\";\n}\n\n.mdi2-calendar-filter::before {\n  content: \"\\F1A32\";\n}\n\n.mdi2-calendar-filter-outline::before {\n  content: \"\\F1A33\";\n}\n\n.mdi2-calendar-heart::before {\n  content: \"\\F09D2\";\n}\n\n.mdi2-calendar-heart-outline::before {\n  content: \"\\F1B69\";\n}\n\n.mdi2-calendar-import::before {\n  content: \"\\F0B25\";\n}\n\n.mdi2-calendar-import-outline::before {\n  content: \"\\F1B6A\";\n}\n\n.mdi2-calendar-lock::before {\n  content: \"\\F1641\";\n}\n\n.mdi2-calendar-lock-open::before {\n  content: \"\\F1B5B\";\n}\n\n.mdi2-calendar-lock-open-outline::before {\n  content: \"\\F1B5C\";\n}\n\n.mdi2-calendar-lock-outline::before {\n  content: \"\\F1642\";\n}\n\n.mdi2-calendar-minus::before {\n  content: \"\\F0D5C\";\n}\n\n.mdi2-calendar-minus-outline::before {\n  content: \"\\F1B6B\";\n}\n\n.mdi2-calendar-month::before {\n  content: \"\\F0E17\";\n}\n\n.mdi2-calendar-month-outline::before {\n  content: \"\\F0E18\";\n}\n\n.mdi2-calendar-multiple::before {\n  content: \"\\F00F1\";\n}\n\n.mdi2-calendar-multiple-check::before {\n  content: \"\\F00F2\";\n}\n\n.mdi2-calendar-multiselect::before {\n  content: \"\\F0A32\";\n}\n\n.mdi2-calendar-multiselect-outline::before {\n  content: \"\\F1B55\";\n}\n\n.mdi2-calendar-outline::before {\n  content: \"\\F0B67\";\n}\n\n.mdi2-calendar-plus::before {\n  content: \"\\F00F3\";\n}\n\n.mdi2-calendar-plus-outline::before {\n  content: \"\\F1B6C\";\n}\n\n.mdi2-calendar-question::before {\n  content: \"\\F0692\";\n}\n\n.mdi2-calendar-question-outline::before {\n  content: \"\\F1B6D\";\n}\n\n.mdi2-calendar-range::before {\n  content: \"\\F0679\";\n}\n\n.mdi2-calendar-range-outline::before {\n  content: \"\\F0B68\";\n}\n\n.mdi2-calendar-refresh::before {\n  content: \"\\F01E1\";\n}\n\n.mdi2-calendar-refresh-outline::before {\n  content: \"\\F0203\";\n}\n\n.mdi2-calendar-remove::before {\n  content: \"\\F00F4\";\n}\n\n.mdi2-calendar-remove-outline::before {\n  content: \"\\F0C45\";\n}\n\n.mdi2-calendar-search::before {\n  content: \"\\F094C\";\n}\n\n.mdi2-calendar-search-outline::before {\n  content: \"\\F1B6E\";\n}\n\n.mdi2-calendar-star::before {\n  content: \"\\F09D3\";\n}\n\n.mdi2-calendar-star-four-points::before {\n  content: \"\\F1C1F\";\n}\n\n.mdi2-calendar-star-outline::before {\n  content: \"\\F1B53\";\n}\n\n.mdi2-calendar-start::before {\n  content: \"\\F166D\";\n}\n\n.mdi2-calendar-start-outline::before {\n  content: \"\\F1B6F\";\n}\n\n.mdi2-calendar-sync::before {\n  content: \"\\F0E8E\";\n}\n\n.mdi2-calendar-sync-outline::before {\n  content: \"\\F0E8F\";\n}\n\n.mdi2-calendar-text::before {\n  content: \"\\F00F5\";\n}\n\n.mdi2-calendar-text-outline::before {\n  content: \"\\F0C46\";\n}\n\n.mdi2-calendar-today::before {\n  content: \"\\F00F6\";\n}\n\n.mdi2-calendar-today-outline::before {\n  content: \"\\F1A30\";\n}\n\n.mdi2-calendar-week::before {\n  content: \"\\F0A33\";\n}\n\n.mdi2-calendar-week-begin::before {\n  content: \"\\F0A34\";\n}\n\n.mdi2-calendar-week-begin-outline::before {\n  content: \"\\F1A31\";\n}\n\n.mdi2-calendar-week-outline::before {\n  content: \"\\F1A34\";\n}\n\n.mdi2-calendar-weekend::before {\n  content: \"\\F0ED9\";\n}\n\n.mdi2-calendar-weekend-outline::before {\n  content: \"\\F0EDA\";\n}\n\n.mdi2-call-made::before {\n  content: \"\\F00F7\";\n}\n\n.mdi2-call-merge::before {\n  content: \"\\F00F8\";\n}\n\n.mdi2-call-missed::before {\n  content: \"\\F00F9\";\n}\n\n.mdi2-call-received::before {\n  content: \"\\F00FA\";\n}\n\n.mdi2-call-split::before {\n  content: \"\\F00FB\";\n}\n\n.mdi2-camcorder::before {\n  content: \"\\F00FC\";\n}\n\n.mdi2-camcorder-off::before {\n  content: \"\\F00FF\";\n}\n\n.mdi2-camera::before {\n  content: \"\\F0100\";\n}\n\n.mdi2-camera-account::before {\n  content: \"\\F08CB\";\n}\n\n.mdi2-camera-burst::before {\n  content: \"\\F0693\";\n}\n\n.mdi2-camera-control::before {\n  content: \"\\F0B69\";\n}\n\n.mdi2-camera-document::before {\n  content: \"\\F1871\";\n}\n\n.mdi2-camera-document-off::before {\n  content: \"\\F1872\";\n}\n\n.mdi2-camera-enhance::before {\n  content: \"\\F0101\";\n}\n\n.mdi2-camera-enhance-outline::before {\n  content: \"\\F0B6A\";\n}\n\n.mdi2-camera-flip::before {\n  content: \"\\F15D9\";\n}\n\n.mdi2-camera-flip-outline::before {\n  content: \"\\F15DA\";\n}\n\n.mdi2-camera-front::before {\n  content: \"\\F0102\";\n}\n\n.mdi2-camera-front-variant::before {\n  content: \"\\F0103\";\n}\n\n.mdi2-camera-gopro::before {\n  content: \"\\F07A1\";\n}\n\n.mdi2-camera-image::before {\n  content: \"\\F08CC\";\n}\n\n.mdi2-camera-iris::before {\n  content: \"\\F0104\";\n}\n\n.mdi2-camera-lock::before {\n  content: \"\\F1A14\";\n}\n\n.mdi2-camera-lock-open::before {\n  content: \"\\F1C0D\";\n}\n\n.mdi2-camera-lock-open-outline::before {\n  content: \"\\F1C0E\";\n}\n\n.mdi2-camera-lock-outline::before {\n  content: \"\\F1A15\";\n}\n\n.mdi2-camera-marker::before {\n  content: \"\\F19A7\";\n}\n\n.mdi2-camera-marker-outline::before {\n  content: \"\\F19A8\";\n}\n\n.mdi2-camera-metering-center::before {\n  content: \"\\F07A2\";\n}\n\n.mdi2-camera-metering-matrix::before {\n  content: \"\\F07A3\";\n}\n\n.mdi2-camera-metering-partial::before {\n  content: \"\\F07A4\";\n}\n\n.mdi2-camera-metering-spot::before {\n  content: \"\\F07A5\";\n}\n\n.mdi2-camera-off::before {\n  content: \"\\F05DF\";\n}\n\n.mdi2-camera-off-outline::before {\n  content: \"\\F19BF\";\n}\n\n.mdi2-camera-outline::before {\n  content: \"\\F0D5D\";\n}\n\n.mdi2-camera-party-mode::before {\n  content: \"\\F0105\";\n}\n\n.mdi2-camera-plus::before {\n  content: \"\\F0EDB\";\n}\n\n.mdi2-camera-plus-outline::before {\n  content: \"\\F0EDC\";\n}\n\n.mdi2-camera-rear::before {\n  content: \"\\F0106\";\n}\n\n.mdi2-camera-rear-variant::before {\n  content: \"\\F0107\";\n}\n\n.mdi2-camera-retake::before {\n  content: \"\\F0E19\";\n}\n\n.mdi2-camera-retake-outline::before {\n  content: \"\\F0E1A\";\n}\n\n.mdi2-camera-switch::before {\n  content: \"\\F0108\";\n}\n\n.mdi2-camera-switch-outline::before {\n  content: \"\\F084A\";\n}\n\n.mdi2-camera-timer::before {\n  content: \"\\F0109\";\n}\n\n.mdi2-camera-wireless::before {\n  content: \"\\F0DB6\";\n}\n\n.mdi2-camera-wireless-outline::before {\n  content: \"\\F0DB7\";\n}\n\n.mdi2-campfire::before {\n  content: \"\\F0EDD\";\n}\n\n.mdi2-cancel::before {\n  content: \"\\F073A\";\n}\n\n.mdi2-candelabra::before {\n  content: \"\\F17D2\";\n}\n\n.mdi2-candelabra-fire::before {\n  content: \"\\F17D3\";\n}\n\n.mdi2-candle::before {\n  content: \"\\F05E2\";\n}\n\n.mdi2-candy::before {\n  content: \"\\F1970\";\n}\n\n.mdi2-candy-off::before {\n  content: \"\\F1971\";\n}\n\n.mdi2-candy-off-outline::before {\n  content: \"\\F1972\";\n}\n\n.mdi2-candy-outline::before {\n  content: \"\\F1973\";\n}\n\n.mdi2-candycane::before {\n  content: \"\\F010A\";\n}\n\n.mdi2-cannabis::before {\n  content: \"\\F07A6\";\n}\n\n.mdi2-cannabis-off::before {\n  content: \"\\F166E\";\n}\n\n.mdi2-caps-lock::before {\n  content: \"\\F0A9B\";\n}\n\n.mdi2-car::before {\n  content: \"\\F010B\";\n}\n\n.mdi2-car-2-plus::before {\n  content: \"\\F1015\";\n}\n\n.mdi2-car-3-plus::before {\n  content: \"\\F1016\";\n}\n\n.mdi2-car-arrow-left::before {\n  content: \"\\F13B2\";\n}\n\n.mdi2-car-arrow-right::before {\n  content: \"\\F13B3\";\n}\n\n.mdi2-car-back::before {\n  content: \"\\F0E1B\";\n}\n\n.mdi2-car-battery::before {\n  content: \"\\F010C\";\n}\n\n.mdi2-car-brake-abs::before {\n  content: \"\\F0C47\";\n}\n\n.mdi2-car-brake-alert::before {\n  content: \"\\F0C48\";\n}\n\n.mdi2-car-brake-fluid-level::before {\n  content: \"\\F1909\";\n}\n\n.mdi2-car-brake-hold::before {\n  content: \"\\F0D5E\";\n}\n\n.mdi2-car-brake-low-pressure::before {\n  content: \"\\F190A\";\n}\n\n.mdi2-car-brake-parking::before {\n  content: \"\\F0D5F\";\n}\n\n.mdi2-car-brake-retarder::before {\n  content: \"\\F1017\";\n}\n\n.mdi2-car-brake-temperature::before {\n  content: \"\\F190B\";\n}\n\n.mdi2-car-brake-worn-linings::before {\n  content: \"\\F190C\";\n}\n\n.mdi2-car-child-seat::before {\n  content: \"\\F0FA3\";\n}\n\n.mdi2-car-clock::before {\n  content: \"\\F1974\";\n}\n\n.mdi2-car-clutch::before {\n  content: \"\\F1018\";\n}\n\n.mdi2-car-cog::before {\n  content: \"\\F13CC\";\n}\n\n.mdi2-car-connected::before {\n  content: \"\\F010D\";\n}\n\n.mdi2-car-convertible::before {\n  content: \"\\F07A7\";\n}\n\n.mdi2-car-coolant-level::before {\n  content: \"\\F1019\";\n}\n\n.mdi2-car-cruise-control::before {\n  content: \"\\F0D60\";\n}\n\n.mdi2-car-defrost-front::before {\n  content: \"\\F0D61\";\n}\n\n.mdi2-car-defrost-rear::before {\n  content: \"\\F0D62\";\n}\n\n.mdi2-car-door::before {\n  content: \"\\F0B6B\";\n}\n\n.mdi2-car-door-lock::before {\n  content: \"\\F109D\";\n}\n\n.mdi2-car-door-lock-open::before {\n  content: \"\\F1C81\";\n}\n\n.mdi2-car-electric::before {\n  content: \"\\F0B6C\";\n}\n\n.mdi2-car-electric-outline::before {\n  content: \"\\F15B5\";\n}\n\n.mdi2-car-emergency::before {\n  content: \"\\F160F\";\n}\n\n.mdi2-car-esp::before {\n  content: \"\\F0C49\";\n}\n\n.mdi2-car-estate::before {\n  content: \"\\F07A8\";\n}\n\n.mdi2-car-hatchback::before {\n  content: \"\\F07A9\";\n}\n\n.mdi2-car-info::before {\n  content: \"\\F11BE\";\n}\n\n.mdi2-car-key::before {\n  content: \"\\F0B6D\";\n}\n\n.mdi2-car-lifted-pickup::before {\n  content: \"\\F152D\";\n}\n\n.mdi2-car-light-alert::before {\n  content: \"\\F190D\";\n}\n\n.mdi2-car-light-dimmed::before {\n  content: \"\\F0C4A\";\n}\n\n.mdi2-car-light-fog::before {\n  content: \"\\F0C4B\";\n}\n\n.mdi2-car-light-high::before {\n  content: \"\\F0C4C\";\n}\n\n.mdi2-car-limousine::before {\n  content: \"\\F08CD\";\n}\n\n.mdi2-car-multiple::before {\n  content: \"\\F0B6E\";\n}\n\n.mdi2-car-off::before {\n  content: \"\\F0E1C\";\n}\n\n.mdi2-car-outline::before {\n  content: \"\\F14ED\";\n}\n\n.mdi2-car-parking-lights::before {\n  content: \"\\F0D63\";\n}\n\n.mdi2-car-pickup::before {\n  content: \"\\F07AA\";\n}\n\n.mdi2-car-search::before {\n  content: \"\\F1B8D\";\n}\n\n.mdi2-car-search-outline::before {\n  content: \"\\F1B8E\";\n}\n\n.mdi2-car-seat::before {\n  content: \"\\F0FA4\";\n}\n\n.mdi2-car-seat-cooler::before {\n  content: \"\\F0FA5\";\n}\n\n.mdi2-car-seat-heater::before {\n  content: \"\\F0FA6\";\n}\n\n.mdi2-car-select::before {\n  content: \"\\F1879\";\n}\n\n.mdi2-car-settings::before {\n  content: \"\\F13CD\";\n}\n\n.mdi2-car-shift-pattern::before {\n  content: \"\\F0F40\";\n}\n\n.mdi2-car-side::before {\n  content: \"\\F07AB\";\n}\n\n.mdi2-car-speed-limiter::before {\n  content: \"\\F190E\";\n}\n\n.mdi2-car-sports::before {\n  content: \"\\F07AC\";\n}\n\n.mdi2-car-tire-alert::before {\n  content: \"\\F0C4D\";\n}\n\n.mdi2-car-traction-control::before {\n  content: \"\\F0D64\";\n}\n\n.mdi2-car-turbocharger::before {\n  content: \"\\F101A\";\n}\n\n.mdi2-car-wash::before {\n  content: \"\\F010E\";\n}\n\n.mdi2-car-windshield::before {\n  content: \"\\F101B\";\n}\n\n.mdi2-car-windshield-outline::before {\n  content: \"\\F101C\";\n}\n\n.mdi2-car-wireless::before {\n  content: \"\\F1878\";\n}\n\n.mdi2-car-wrench::before {\n  content: \"\\F1814\";\n}\n\n.mdi2-carabiner::before {\n  content: \"\\F14C0\";\n}\n\n.mdi2-caravan::before {\n  content: \"\\F07AD\";\n}\n\n.mdi2-card::before {\n  content: \"\\F0B6F\";\n}\n\n.mdi2-card-account-details::before {\n  content: \"\\F05D2\";\n}\n\n.mdi2-card-account-details-outline::before {\n  content: \"\\F0DAB\";\n}\n\n.mdi2-card-account-details-star::before {\n  content: \"\\F02A3\";\n}\n\n.mdi2-card-account-details-star-outline::before {\n  content: \"\\F06DB\";\n}\n\n.mdi2-card-account-mail::before {\n  content: \"\\F018E\";\n}\n\n.mdi2-card-account-mail-outline::before {\n  content: \"\\F0E98\";\n}\n\n.mdi2-card-account-phone::before {\n  content: \"\\F0E99\";\n}\n\n.mdi2-card-account-phone-outline::before {\n  content: \"\\F0E9A\";\n}\n\n.mdi2-card-bulleted::before {\n  content: \"\\F0B70\";\n}\n\n.mdi2-card-bulleted-off::before {\n  content: \"\\F0B71\";\n}\n\n.mdi2-card-bulleted-off-outline::before {\n  content: \"\\F0B72\";\n}\n\n.mdi2-card-bulleted-outline::before {\n  content: \"\\F0B73\";\n}\n\n.mdi2-card-bulleted-settings::before {\n  content: \"\\F0B74\";\n}\n\n.mdi2-card-bulleted-settings-outline::before {\n  content: \"\\F0B75\";\n}\n\n.mdi2-card-minus::before {\n  content: \"\\F1600\";\n}\n\n.mdi2-card-minus-outline::before {\n  content: \"\\F1601\";\n}\n\n.mdi2-card-multiple::before {\n  content: \"\\F17F1\";\n}\n\n.mdi2-card-multiple-outline::before {\n  content: \"\\F17F2\";\n}\n\n.mdi2-card-off::before {\n  content: \"\\F1602\";\n}\n\n.mdi2-card-off-outline::before {\n  content: \"\\F1603\";\n}\n\n.mdi2-card-outline::before {\n  content: \"\\F0B76\";\n}\n\n.mdi2-card-plus::before {\n  content: \"\\F11FF\";\n}\n\n.mdi2-card-plus-outline::before {\n  content: \"\\F1200\";\n}\n\n.mdi2-card-remove::before {\n  content: \"\\F1604\";\n}\n\n.mdi2-card-remove-outline::before {\n  content: \"\\F1605\";\n}\n\n.mdi2-card-search::before {\n  content: \"\\F1074\";\n}\n\n.mdi2-card-search-outline::before {\n  content: \"\\F1075\";\n}\n\n.mdi2-card-text::before {\n  content: \"\\F0B77\";\n}\n\n.mdi2-card-text-outline::before {\n  content: \"\\F0B78\";\n}\n\n.mdi2-cards::before {\n  content: \"\\F0638\";\n}\n\n.mdi2-cards-club::before {\n  content: \"\\F08CE\";\n}\n\n.mdi2-cards-club-outline::before {\n  content: \"\\F189F\";\n}\n\n.mdi2-cards-diamond::before {\n  content: \"\\F08CF\";\n}\n\n.mdi2-cards-diamond-outline::before {\n  content: \"\\F101D\";\n}\n\n.mdi2-cards-heart::before {\n  content: \"\\F08D0\";\n}\n\n.mdi2-cards-heart-outline::before {\n  content: \"\\F18A0\";\n}\n\n.mdi2-cards-outline::before {\n  content: \"\\F0639\";\n}\n\n.mdi2-cards-playing::before {\n  content: \"\\F18A1\";\n}\n\n.mdi2-cards-playing-club::before {\n  content: \"\\F18A2\";\n}\n\n.mdi2-cards-playing-club-multiple::before {\n  content: \"\\F18A3\";\n}\n\n.mdi2-cards-playing-club-multiple-outline::before {\n  content: \"\\F18A4\";\n}\n\n.mdi2-cards-playing-club-outline::before {\n  content: \"\\F18A5\";\n}\n\n.mdi2-cards-playing-diamond::before {\n  content: \"\\F18A6\";\n}\n\n.mdi2-cards-playing-diamond-multiple::before {\n  content: \"\\F18A7\";\n}\n\n.mdi2-cards-playing-diamond-multiple-outline::before {\n  content: \"\\F18A8\";\n}\n\n.mdi2-cards-playing-diamond-outline::before {\n  content: \"\\F18A9\";\n}\n\n.mdi2-cards-playing-heart::before {\n  content: \"\\F18AA\";\n}\n\n.mdi2-cards-playing-heart-multiple::before {\n  content: \"\\F18AB\";\n}\n\n.mdi2-cards-playing-heart-multiple-outline::before {\n  content: \"\\F18AC\";\n}\n\n.mdi2-cards-playing-heart-outline::before {\n  content: \"\\F18AD\";\n}\n\n.mdi2-cards-playing-outline::before {\n  content: \"\\F063A\";\n}\n\n.mdi2-cards-playing-spade::before {\n  content: \"\\F18AE\";\n}\n\n.mdi2-cards-playing-spade-multiple::before {\n  content: \"\\F18AF\";\n}\n\n.mdi2-cards-playing-spade-multiple-outline::before {\n  content: \"\\F18B0\";\n}\n\n.mdi2-cards-playing-spade-outline::before {\n  content: \"\\F18B1\";\n}\n\n.mdi2-cards-spade::before {\n  content: \"\\F08D1\";\n}\n\n.mdi2-cards-spade-outline::before {\n  content: \"\\F18B2\";\n}\n\n.mdi2-cards-variant::before {\n  content: \"\\F06C7\";\n}\n\n.mdi2-carrot::before {\n  content: \"\\F010F\";\n}\n\n.mdi2-cart::before {\n  content: \"\\F0110\";\n}\n\n.mdi2-cart-arrow-down::before {\n  content: \"\\F0D66\";\n}\n\n.mdi2-cart-arrow-right::before {\n  content: \"\\F0C4E\";\n}\n\n.mdi2-cart-arrow-up::before {\n  content: \"\\F0D67\";\n}\n\n.mdi2-cart-check::before {\n  content: \"\\F15EA\";\n}\n\n.mdi2-cart-heart::before {\n  content: \"\\F18E0\";\n}\n\n.mdi2-cart-minus::before {\n  content: \"\\F0D68\";\n}\n\n.mdi2-cart-off::before {\n  content: \"\\F066B\";\n}\n\n.mdi2-cart-outline::before {\n  content: \"\\F0111\";\n}\n\n.mdi2-cart-percent::before {\n  content: \"\\F1BAE\";\n}\n\n.mdi2-cart-plus::before {\n  content: \"\\F0112\";\n}\n\n.mdi2-cart-remove::before {\n  content: \"\\F0D69\";\n}\n\n.mdi2-cart-variant::before {\n  content: \"\\F15EB\";\n}\n\n.mdi2-case-sensitive-alt::before {\n  content: \"\\F0113\";\n}\n\n.mdi2-cash::before {\n  content: \"\\F0114\";\n}\n\n.mdi2-cash-100::before {\n  content: \"\\F0115\";\n}\n\n.mdi2-cash-check::before {\n  content: \"\\F14EE\";\n}\n\n.mdi2-cash-clock::before {\n  content: \"\\F1A91\";\n}\n\n.mdi2-cash-edit::before {\n  content: \"\\F1CAB\";\n}\n\n.mdi2-cash-fast::before {\n  content: \"\\F185C\";\n}\n\n.mdi2-cash-lock::before {\n  content: \"\\F14EA\";\n}\n\n.mdi2-cash-lock-open::before {\n  content: \"\\F14EB\";\n}\n\n.mdi2-cash-marker::before {\n  content: \"\\F0DB8\";\n}\n\n.mdi2-cash-minus::before {\n  content: \"\\F1260\";\n}\n\n.mdi2-cash-multiple::before {\n  content: \"\\F0116\";\n}\n\n.mdi2-cash-off::before {\n  content: \"\\F1C79\";\n}\n\n.mdi2-cash-plus::before {\n  content: \"\\F1261\";\n}\n\n.mdi2-cash-refund::before {\n  content: \"\\F0A9C\";\n}\n\n.mdi2-cash-register::before {\n  content: \"\\F0CF4\";\n}\n\n.mdi2-cash-remove::before {\n  content: \"\\F1262\";\n}\n\n.mdi2-cash-sync::before {\n  content: \"\\F1A92\";\n}\n\n.mdi2-cassette::before {\n  content: \"\\F09D4\";\n}\n\n.mdi2-cast::before {\n  content: \"\\F0118\";\n}\n\n.mdi2-cast-audio::before {\n  content: \"\\F101E\";\n}\n\n.mdi2-cast-audio-variant::before {\n  content: \"\\F1749\";\n}\n\n.mdi2-cast-connected::before {\n  content: \"\\F0119\";\n}\n\n.mdi2-cast-education::before {\n  content: \"\\F0E1D\";\n}\n\n.mdi2-cast-off::before {\n  content: \"\\F078A\";\n}\n\n.mdi2-cast-variant::before {\n  content: \"\\F001F\";\n}\n\n.mdi2-castle::before {\n  content: \"\\F011A\";\n}\n\n.mdi2-cat::before {\n  content: \"\\F011B\";\n}\n\n.mdi2-cctv::before {\n  content: \"\\F07AE\";\n}\n\n.mdi2-cctv-off::before {\n  content: \"\\F185F\";\n}\n\n.mdi2-ceiling-fan::before {\n  content: \"\\F1797\";\n}\n\n.mdi2-ceiling-fan-light::before {\n  content: \"\\F1798\";\n}\n\n.mdi2-ceiling-light::before {\n  content: \"\\F0769\";\n}\n\n.mdi2-ceiling-light-multiple::before {\n  content: \"\\F18DD\";\n}\n\n.mdi2-ceiling-light-multiple-outline::before {\n  content: \"\\F18DE\";\n}\n\n.mdi2-ceiling-light-outline::before {\n  content: \"\\F17C7\";\n}\n\n.mdi2-cellphone::before {\n  content: \"\\F011C\";\n}\n\n.mdi2-cellphone-arrow-down::before {\n  content: \"\\F09D5\";\n}\n\n.mdi2-cellphone-arrow-down-variant::before {\n  content: \"\\F19C5\";\n}\n\n.mdi2-cellphone-basic::before {\n  content: \"\\F011E\";\n}\n\n.mdi2-cellphone-charging::before {\n  content: \"\\F1397\";\n}\n\n.mdi2-cellphone-check::before {\n  content: \"\\F17FD\";\n}\n\n.mdi2-cellphone-cog::before {\n  content: \"\\F0951\";\n}\n\n.mdi2-cellphone-dock::before {\n  content: \"\\F011F\";\n}\n\n.mdi2-cellphone-information::before {\n  content: \"\\F0F41\";\n}\n\n.mdi2-cellphone-key::before {\n  content: \"\\F094E\";\n}\n\n.mdi2-cellphone-link::before {\n  content: \"\\F0121\";\n}\n\n.mdi2-cellphone-link-off::before {\n  content: \"\\F0122\";\n}\n\n.mdi2-cellphone-lock::before {\n  content: \"\\F094F\";\n}\n\n.mdi2-cellphone-marker::before {\n  content: \"\\F183A\";\n}\n\n.mdi2-cellphone-message::before {\n  content: \"\\F08D3\";\n}\n\n.mdi2-cellphone-message-off::before {\n  content: \"\\F10D2\";\n}\n\n.mdi2-cellphone-nfc::before {\n  content: \"\\F0E90\";\n}\n\n.mdi2-cellphone-nfc-off::before {\n  content: \"\\F12D8\";\n}\n\n.mdi2-cellphone-off::before {\n  content: \"\\F0950\";\n}\n\n.mdi2-cellphone-play::before {\n  content: \"\\F101F\";\n}\n\n.mdi2-cellphone-remove::before {\n  content: \"\\F094D\";\n}\n\n.mdi2-cellphone-screenshot::before {\n  content: \"\\F0A35\";\n}\n\n.mdi2-cellphone-settings::before {\n  content: \"\\F0123\";\n}\n\n.mdi2-cellphone-sound::before {\n  content: \"\\F0952\";\n}\n\n.mdi2-cellphone-text::before {\n  content: \"\\F08D2\";\n}\n\n.mdi2-cellphone-wireless::before {\n  content: \"\\F0815\";\n}\n\n.mdi2-centos::before {\n  content: \"\\F111A\";\n}\n\n.mdi2-certificate::before {\n  content: \"\\F0124\";\n}\n\n.mdi2-certificate-outline::before {\n  content: \"\\F1188\";\n}\n\n.mdi2-chair-rolling::before {\n  content: \"\\F0F48\";\n}\n\n.mdi2-chair-school::before {\n  content: \"\\F0125\";\n}\n\n.mdi2-chandelier::before {\n  content: \"\\F1793\";\n}\n\n.mdi2-charity::before {\n  content: \"\\F0C4F\";\n}\n\n.mdi2-charity-search::before {\n  content: \"\\F1C82\";\n}\n\n.mdi2-chart-arc::before {\n  content: \"\\F0126\";\n}\n\n.mdi2-chart-areaspline::before {\n  content: \"\\F0127\";\n}\n\n.mdi2-chart-areaspline-variant::before {\n  content: \"\\F0E91\";\n}\n\n.mdi2-chart-bar::before {\n  content: \"\\F0128\";\n}\n\n.mdi2-chart-bar-stacked::before {\n  content: \"\\F076A\";\n}\n\n.mdi2-chart-bell-curve::before {\n  content: \"\\F0C50\";\n}\n\n.mdi2-chart-bell-curve-cumulative::before {\n  content: \"\\F0FA7\";\n}\n\n.mdi2-chart-box::before {\n  content: \"\\F154D\";\n}\n\n.mdi2-chart-box-multiple::before {\n  content: \"\\F1CCD\";\n}\n\n.mdi2-chart-box-multiple-outline::before {\n  content: \"\\F1CCE\";\n}\n\n.mdi2-chart-box-outline::before {\n  content: \"\\F154E\";\n}\n\n.mdi2-chart-box-plus-outline::before {\n  content: \"\\F154F\";\n}\n\n.mdi2-chart-bubble::before {\n  content: \"\\F05E3\";\n}\n\n.mdi2-chart-donut::before {\n  content: \"\\F07AF\";\n}\n\n.mdi2-chart-donut-variant::before {\n  content: \"\\F07B0\";\n}\n\n.mdi2-chart-gantt::before {\n  content: \"\\F066C\";\n}\n\n.mdi2-chart-histogram::before {\n  content: \"\\F0129\";\n}\n\n.mdi2-chart-line::before {\n  content: \"\\F012A\";\n}\n\n.mdi2-chart-line-stacked::before {\n  content: \"\\F076B\";\n}\n\n.mdi2-chart-line-variant::before {\n  content: \"\\F07B1\";\n}\n\n.mdi2-chart-multiline::before {\n  content: \"\\F08D4\";\n}\n\n.mdi2-chart-multiple::before {\n  content: \"\\F1213\";\n}\n\n.mdi2-chart-pie::before {\n  content: \"\\F012B\";\n}\n\n.mdi2-chart-pie-outline::before {\n  content: \"\\F1BDF\";\n}\n\n.mdi2-chart-ppf::before {\n  content: \"\\F1380\";\n}\n\n.mdi2-chart-sankey::before {\n  content: \"\\F11DF\";\n}\n\n.mdi2-chart-sankey-variant::before {\n  content: \"\\F11E0\";\n}\n\n.mdi2-chart-scatter-plot::before {\n  content: \"\\F0E92\";\n}\n\n.mdi2-chart-scatter-plot-hexbin::before {\n  content: \"\\F066D\";\n}\n\n.mdi2-chart-timeline::before {\n  content: \"\\F066E\";\n}\n\n.mdi2-chart-timeline-variant::before {\n  content: \"\\F0E93\";\n}\n\n.mdi2-chart-timeline-variant-shimmer::before {\n  content: \"\\F15B6\";\n}\n\n.mdi2-chart-tree::before {\n  content: \"\\F0E94\";\n}\n\n.mdi2-chart-waterfall::before {\n  content: \"\\F1918\";\n}\n\n.mdi2-chat::before {\n  content: \"\\F0B79\";\n}\n\n.mdi2-chat-alert::before {\n  content: \"\\F0B7A\";\n}\n\n.mdi2-chat-alert-outline::before {\n  content: \"\\F12C9\";\n}\n\n.mdi2-chat-minus::before {\n  content: \"\\F1410\";\n}\n\n.mdi2-chat-minus-outline::before {\n  content: \"\\F1413\";\n}\n\n.mdi2-chat-outline::before {\n  content: \"\\F0EDE\";\n}\n\n.mdi2-chat-plus::before {\n  content: \"\\F140F\";\n}\n\n.mdi2-chat-plus-outline::before {\n  content: \"\\F1412\";\n}\n\n.mdi2-chat-processing::before {\n  content: \"\\F0B7B\";\n}\n\n.mdi2-chat-processing-outline::before {\n  content: \"\\F12CA\";\n}\n\n.mdi2-chat-question::before {\n  content: \"\\F1738\";\n}\n\n.mdi2-chat-question-outline::before {\n  content: \"\\F1739\";\n}\n\n.mdi2-chat-remove::before {\n  content: \"\\F1411\";\n}\n\n.mdi2-chat-remove-outline::before {\n  content: \"\\F1414\";\n}\n\n.mdi2-chat-sleep::before {\n  content: \"\\F12D1\";\n}\n\n.mdi2-chat-sleep-outline::before {\n  content: \"\\F12D2\";\n}\n\n.mdi2-check::before {\n  content: \"\\F012C\";\n}\n\n.mdi2-check-all::before {\n  content: \"\\F012D\";\n}\n\n.mdi2-check-bold::before {\n  content: \"\\F0E1E\";\n}\n\n.mdi2-check-circle::before {\n  content: \"\\F05E0\";\n}\n\n.mdi2-check-circle-outline::before {\n  content: \"\\F05E1\";\n}\n\n.mdi2-check-decagram::before {\n  content: \"\\F0791\";\n}\n\n.mdi2-check-decagram-outline::before {\n  content: \"\\F1740\";\n}\n\n.mdi2-check-network::before {\n  content: \"\\F0C53\";\n}\n\n.mdi2-check-network-outline::before {\n  content: \"\\F0C54\";\n}\n\n.mdi2-check-outline::before {\n  content: \"\\F0855\";\n}\n\n.mdi2-check-underline::before {\n  content: \"\\F0E1F\";\n}\n\n.mdi2-check-underline-circle::before {\n  content: \"\\F0E20\";\n}\n\n.mdi2-check-underline-circle-outline::before {\n  content: \"\\F0E21\";\n}\n\n.mdi2-checkbook::before {\n  content: \"\\F0A9D\";\n}\n\n.mdi2-checkbook-arrow-left::before {\n  content: \"\\F1C1D\";\n}\n\n.mdi2-checkbook-arrow-right::before {\n  content: \"\\F1C1E\";\n}\n\n.mdi2-checkbox-blank::before {\n  content: \"\\F012E\";\n}\n\n.mdi2-checkbox-blank-badge::before {\n  content: \"\\F1176\";\n}\n\n.mdi2-checkbox-blank-badge-outline::before {\n  content: \"\\F0117\";\n}\n\n.mdi2-checkbox-blank-circle::before {\n  content: \"\\F012F\";\n}\n\n.mdi2-checkbox-blank-circle-outline::before {\n  content: \"\\F0130\";\n}\n\n.mdi2-checkbox-blank-off::before {\n  content: \"\\F12EC\";\n}\n\n.mdi2-checkbox-blank-off-outline::before {\n  content: \"\\F12ED\";\n}\n\n.mdi2-checkbox-blank-outline::before {\n  content: \"\\F0131\";\n}\n\n.mdi2-checkbox-intermediate::before {\n  content: \"\\F0856\";\n}\n\n.mdi2-checkbox-intermediate-variant::before {\n  content: \"\\F1B54\";\n}\n\n.mdi2-checkbox-marked::before {\n  content: \"\\F0132\";\n}\n\n.mdi2-checkbox-marked-circle::before {\n  content: \"\\F0133\";\n}\n\n.mdi2-checkbox-marked-circle-auto-outline::before {\n  content: \"\\F1C26\";\n}\n\n.mdi2-checkbox-marked-circle-minus-outline::before {\n  content: \"\\F1C27\";\n}\n\n.mdi2-checkbox-marked-circle-outline::before {\n  content: \"\\F0134\";\n}\n\n.mdi2-checkbox-marked-circle-plus-outline::before {\n  content: \"\\F1927\";\n}\n\n.mdi2-checkbox-marked-outline::before {\n  content: \"\\F0135\";\n}\n\n.mdi2-checkbox-multiple-blank::before {\n  content: \"\\F0136\";\n}\n\n.mdi2-checkbox-multiple-blank-circle::before {\n  content: \"\\F063B\";\n}\n\n.mdi2-checkbox-multiple-blank-circle-outline::before {\n  content: \"\\F063C\";\n}\n\n.mdi2-checkbox-multiple-blank-outline::before {\n  content: \"\\F0137\";\n}\n\n.mdi2-checkbox-multiple-marked::before {\n  content: \"\\F0138\";\n}\n\n.mdi2-checkbox-multiple-marked-circle::before {\n  content: \"\\F063D\";\n}\n\n.mdi2-checkbox-multiple-marked-circle-outline::before {\n  content: \"\\F063E\";\n}\n\n.mdi2-checkbox-multiple-marked-outline::before {\n  content: \"\\F0139\";\n}\n\n.mdi2-checkbox-multiple-outline::before {\n  content: \"\\F0C51\";\n}\n\n.mdi2-checkbox-outline::before {\n  content: \"\\F0C52\";\n}\n\n.mdi2-checkerboard::before {\n  content: \"\\F013A\";\n}\n\n.mdi2-checkerboard-minus::before {\n  content: \"\\F1202\";\n}\n\n.mdi2-checkerboard-plus::before {\n  content: \"\\F1201\";\n}\n\n.mdi2-checkerboard-remove::before {\n  content: \"\\F1203\";\n}\n\n.mdi2-cheese::before {\n  content: \"\\F12B9\";\n}\n\n.mdi2-cheese-off::before {\n  content: \"\\F13EE\";\n}\n\n.mdi2-chef-hat::before {\n  content: \"\\F0B7C\";\n}\n\n.mdi2-chemical-weapon::before {\n  content: \"\\F013B\";\n}\n\n.mdi2-chess-bishop::before {\n  content: \"\\F085C\";\n}\n\n.mdi2-chess-king::before {\n  content: \"\\F0857\";\n}\n\n.mdi2-chess-knight::before {\n  content: \"\\F0858\";\n}\n\n.mdi2-chess-pawn::before {\n  content: \"\\F0859\";\n}\n\n.mdi2-chess-queen::before {\n  content: \"\\F085A\";\n}\n\n.mdi2-chess-rook::before {\n  content: \"\\F085B\";\n}\n\n.mdi2-chevron-double-down::before {\n  content: \"\\F013C\";\n}\n\n.mdi2-chevron-double-left::before {\n  content: \"\\F013D\";\n}\n\n.mdi2-chevron-double-right::before {\n  content: \"\\F013E\";\n}\n\n.mdi2-chevron-double-up::before {\n  content: \"\\F013F\";\n}\n\n.mdi2-chevron-down::before {\n  content: \"\\F0140\";\n}\n\n.mdi2-chevron-down-box::before {\n  content: \"\\F09D6\";\n}\n\n.mdi2-chevron-down-box-outline::before {\n  content: \"\\F09D7\";\n}\n\n.mdi2-chevron-down-circle::before {\n  content: \"\\F0B26\";\n}\n\n.mdi2-chevron-down-circle-outline::before {\n  content: \"\\F0B27\";\n}\n\n.mdi2-chevron-left::before {\n  content: \"\\F0141\";\n}\n\n.mdi2-chevron-left-box::before {\n  content: \"\\F09D8\";\n}\n\n.mdi2-chevron-left-box-outline::before {\n  content: \"\\F09D9\";\n}\n\n.mdi2-chevron-left-circle::before {\n  content: \"\\F0B28\";\n}\n\n.mdi2-chevron-left-circle-outline::before {\n  content: \"\\F0B29\";\n}\n\n.mdi2-chevron-right::before {\n  content: \"\\F0142\";\n}\n\n.mdi2-chevron-right-box::before {\n  content: \"\\F09DA\";\n}\n\n.mdi2-chevron-right-box-outline::before {\n  content: \"\\F09DB\";\n}\n\n.mdi2-chevron-right-circle::before {\n  content: \"\\F0B2A\";\n}\n\n.mdi2-chevron-right-circle-outline::before {\n  content: \"\\F0B2B\";\n}\n\n.mdi2-chevron-triple-down::before {\n  content: \"\\F0DB9\";\n}\n\n.mdi2-chevron-triple-left::before {\n  content: \"\\F0DBA\";\n}\n\n.mdi2-chevron-triple-right::before {\n  content: \"\\F0DBB\";\n}\n\n.mdi2-chevron-triple-up::before {\n  content: \"\\F0DBC\";\n}\n\n.mdi2-chevron-up::before {\n  content: \"\\F0143\";\n}\n\n.mdi2-chevron-up-box::before {\n  content: \"\\F09DC\";\n}\n\n.mdi2-chevron-up-box-outline::before {\n  content: \"\\F09DD\";\n}\n\n.mdi2-chevron-up-circle::before {\n  content: \"\\F0B2C\";\n}\n\n.mdi2-chevron-up-circle-outline::before {\n  content: \"\\F0B2D\";\n}\n\n.mdi2-chili-alert::before {\n  content: \"\\F17EA\";\n}\n\n.mdi2-chili-alert-outline::before {\n  content: \"\\F17EB\";\n}\n\n.mdi2-chili-hot::before {\n  content: \"\\F07B2\";\n}\n\n.mdi2-chili-hot-outline::before {\n  content: \"\\F17EC\";\n}\n\n.mdi2-chili-medium::before {\n  content: \"\\F07B3\";\n}\n\n.mdi2-chili-medium-outline::before {\n  content: \"\\F17ED\";\n}\n\n.mdi2-chili-mild::before {\n  content: \"\\F07B4\";\n}\n\n.mdi2-chili-mild-outline::before {\n  content: \"\\F17EE\";\n}\n\n.mdi2-chili-off::before {\n  content: \"\\F1467\";\n}\n\n.mdi2-chili-off-outline::before {\n  content: \"\\F17EF\";\n}\n\n.mdi2-chip::before {\n  content: \"\\F061A\";\n}\n\n.mdi2-church::before {\n  content: \"\\F0144\";\n}\n\n.mdi2-church-outline::before {\n  content: \"\\F1B02\";\n}\n\n.mdi2-cigar::before {\n  content: \"\\F1189\";\n}\n\n.mdi2-cigar-off::before {\n  content: \"\\F141B\";\n}\n\n.mdi2-circle::before {\n  content: \"\\F0765\";\n}\n\n.mdi2-circle-box::before {\n  content: \"\\F15DC\";\n}\n\n.mdi2-circle-box-outline::before {\n  content: \"\\F15DD\";\n}\n\n.mdi2-circle-double::before {\n  content: \"\\F0E95\";\n}\n\n.mdi2-circle-edit-outline::before {\n  content: \"\\F08D5\";\n}\n\n.mdi2-circle-expand::before {\n  content: \"\\F0E96\";\n}\n\n.mdi2-circle-half::before {\n  content: \"\\F1395\";\n}\n\n.mdi2-circle-half-full::before {\n  content: \"\\F1396\";\n}\n\n.mdi2-circle-medium::before {\n  content: \"\\F09DE\";\n}\n\n.mdi2-circle-multiple::before {\n  content: \"\\F0B38\";\n}\n\n.mdi2-circle-multiple-outline::before {\n  content: \"\\F0695\";\n}\n\n.mdi2-circle-off-outline::before {\n  content: \"\\F10D3\";\n}\n\n.mdi2-circle-opacity::before {\n  content: \"\\F1853\";\n}\n\n.mdi2-circle-outline::before {\n  content: \"\\F0766\";\n}\n\n.mdi2-circle-slice-1::before {\n  content: \"\\F0A9E\";\n}\n\n.mdi2-circle-slice-2::before {\n  content: \"\\F0A9F\";\n}\n\n.mdi2-circle-slice-3::before {\n  content: \"\\F0AA0\";\n}\n\n.mdi2-circle-slice-4::before {\n  content: \"\\F0AA1\";\n}\n\n.mdi2-circle-slice-5::before {\n  content: \"\\F0AA2\";\n}\n\n.mdi2-circle-slice-6::before {\n  content: \"\\F0AA3\";\n}\n\n.mdi2-circle-slice-7::before {\n  content: \"\\F0AA4\";\n}\n\n.mdi2-circle-slice-8::before {\n  content: \"\\F0AA5\";\n}\n\n.mdi2-circle-small::before {\n  content: \"\\F09DF\";\n}\n\n.mdi2-circular-saw::before {\n  content: \"\\F0E22\";\n}\n\n.mdi2-city::before {\n  content: \"\\F0146\";\n}\n\n.mdi2-city-switch::before {\n  content: \"\\F1C28\";\n}\n\n.mdi2-city-variant::before {\n  content: \"\\F0A36\";\n}\n\n.mdi2-city-variant-outline::before {\n  content: \"\\F0A37\";\n}\n\n.mdi2-clipboard::before {\n  content: \"\\F0147\";\n}\n\n.mdi2-clipboard-account::before {\n  content: \"\\F0148\";\n}\n\n.mdi2-clipboard-account-outline::before {\n  content: \"\\F0C55\";\n}\n\n.mdi2-clipboard-alert::before {\n  content: \"\\F0149\";\n}\n\n.mdi2-clipboard-alert-outline::before {\n  content: \"\\F0CF7\";\n}\n\n.mdi2-clipboard-arrow-down::before {\n  content: \"\\F014A\";\n}\n\n.mdi2-clipboard-arrow-down-outline::before {\n  content: \"\\F0C56\";\n}\n\n.mdi2-clipboard-arrow-left::before {\n  content: \"\\F014B\";\n}\n\n.mdi2-clipboard-arrow-left-outline::before {\n  content: \"\\F0CF8\";\n}\n\n.mdi2-clipboard-arrow-right::before {\n  content: \"\\F0CF9\";\n}\n\n.mdi2-clipboard-arrow-right-outline::before {\n  content: \"\\F0CFA\";\n}\n\n.mdi2-clipboard-arrow-up::before {\n  content: \"\\F0C57\";\n}\n\n.mdi2-clipboard-arrow-up-outline::before {\n  content: \"\\F0C58\";\n}\n\n.mdi2-clipboard-check::before {\n  content: \"\\F014E\";\n}\n\n.mdi2-clipboard-check-multiple::before {\n  content: \"\\F1263\";\n}\n\n.mdi2-clipboard-check-multiple-outline::before {\n  content: \"\\F1264\";\n}\n\n.mdi2-clipboard-check-outline::before {\n  content: \"\\F08A8\";\n}\n\n.mdi2-clipboard-clock::before {\n  content: \"\\F16E2\";\n}\n\n.mdi2-clipboard-clock-outline::before {\n  content: \"\\F16E3\";\n}\n\n.mdi2-clipboard-edit::before {\n  content: \"\\F14E5\";\n}\n\n.mdi2-clipboard-edit-outline::before {\n  content: \"\\F14E6\";\n}\n\n.mdi2-clipboard-file::before {\n  content: \"\\F1265\";\n}\n\n.mdi2-clipboard-file-outline::before {\n  content: \"\\F1266\";\n}\n\n.mdi2-clipboard-flow::before {\n  content: \"\\F06C8\";\n}\n\n.mdi2-clipboard-flow-outline::before {\n  content: \"\\F1117\";\n}\n\n.mdi2-clipboard-list::before {\n  content: \"\\F10D4\";\n}\n\n.mdi2-clipboard-list-outline::before {\n  content: \"\\F10D5\";\n}\n\n.mdi2-clipboard-minus::before {\n  content: \"\\F1618\";\n}\n\n.mdi2-clipboard-minus-outline::before {\n  content: \"\\F1619\";\n}\n\n.mdi2-clipboard-multiple::before {\n  content: \"\\F1267\";\n}\n\n.mdi2-clipboard-multiple-outline::before {\n  content: \"\\F1268\";\n}\n\n.mdi2-clipboard-off::before {\n  content: \"\\F161A\";\n}\n\n.mdi2-clipboard-off-outline::before {\n  content: \"\\F161B\";\n}\n\n.mdi2-clipboard-outline::before {\n  content: \"\\F014C\";\n}\n\n.mdi2-clipboard-play::before {\n  content: \"\\F0C59\";\n}\n\n.mdi2-clipboard-play-multiple::before {\n  content: \"\\F1269\";\n}\n\n.mdi2-clipboard-play-multiple-outline::before {\n  content: \"\\F126A\";\n}\n\n.mdi2-clipboard-play-outline::before {\n  content: \"\\F0C5A\";\n}\n\n.mdi2-clipboard-plus::before {\n  content: \"\\F0751\";\n}\n\n.mdi2-clipboard-plus-outline::before {\n  content: \"\\F131F\";\n}\n\n.mdi2-clipboard-pulse::before {\n  content: \"\\F085D\";\n}\n\n.mdi2-clipboard-pulse-outline::before {\n  content: \"\\F085E\";\n}\n\n.mdi2-clipboard-remove::before {\n  content: \"\\F161C\";\n}\n\n.mdi2-clipboard-remove-outline::before {\n  content: \"\\F161D\";\n}\n\n.mdi2-clipboard-search::before {\n  content: \"\\F161E\";\n}\n\n.mdi2-clipboard-search-outline::before {\n  content: \"\\F161F\";\n}\n\n.mdi2-clipboard-text::before {\n  content: \"\\F014D\";\n}\n\n.mdi2-clipboard-text-clock::before {\n  content: \"\\F18F9\";\n}\n\n.mdi2-clipboard-text-clock-outline::before {\n  content: \"\\F18FA\";\n}\n\n.mdi2-clipboard-text-multiple::before {\n  content: \"\\F126B\";\n}\n\n.mdi2-clipboard-text-multiple-outline::before {\n  content: \"\\F126C\";\n}\n\n.mdi2-clipboard-text-off::before {\n  content: \"\\F1620\";\n}\n\n.mdi2-clipboard-text-off-outline::before {\n  content: \"\\F1621\";\n}\n\n.mdi2-clipboard-text-outline::before {\n  content: \"\\F0A38\";\n}\n\n.mdi2-clipboard-text-play::before {\n  content: \"\\F0C5B\";\n}\n\n.mdi2-clipboard-text-play-outline::before {\n  content: \"\\F0C5C\";\n}\n\n.mdi2-clipboard-text-search::before {\n  content: \"\\F1622\";\n}\n\n.mdi2-clipboard-text-search-outline::before {\n  content: \"\\F1623\";\n}\n\n.mdi2-clippy::before {\n  content: \"\\F014F\";\n}\n\n.mdi2-clock::before {\n  content: \"\\F0954\";\n}\n\n.mdi2-clock-alert::before {\n  content: \"\\F0955\";\n}\n\n.mdi2-clock-alert-outline::before {\n  content: \"\\F05CE\";\n}\n\n.mdi2-clock-check::before {\n  content: \"\\F0FA8\";\n}\n\n.mdi2-clock-check-outline::before {\n  content: \"\\F0FA9\";\n}\n\n.mdi2-clock-digital::before {\n  content: \"\\F0E97\";\n}\n\n.mdi2-clock-edit::before {\n  content: \"\\F19BA\";\n}\n\n.mdi2-clock-edit-outline::before {\n  content: \"\\F19BB\";\n}\n\n.mdi2-clock-end::before {\n  content: \"\\F0151\";\n}\n\n.mdi2-clock-fast::before {\n  content: \"\\F0152\";\n}\n\n.mdi2-clock-in::before {\n  content: \"\\F0153\";\n}\n\n.mdi2-clock-minus::before {\n  content: \"\\F1863\";\n}\n\n.mdi2-clock-minus-outline::before {\n  content: \"\\F1864\";\n}\n\n.mdi2-clock-out::before {\n  content: \"\\F0154\";\n}\n\n.mdi2-clock-outline::before {\n  content: \"\\F0150\";\n}\n\n.mdi2-clock-plus::before {\n  content: \"\\F1861\";\n}\n\n.mdi2-clock-plus-outline::before {\n  content: \"\\F1862\";\n}\n\n.mdi2-clock-remove::before {\n  content: \"\\F1865\";\n}\n\n.mdi2-clock-remove-outline::before {\n  content: \"\\F1866\";\n}\n\n.mdi2-clock-star-four-points::before {\n  content: \"\\F1C29\";\n}\n\n.mdi2-clock-star-four-points-outline::before {\n  content: \"\\F1C2A\";\n}\n\n.mdi2-clock-start::before {\n  content: \"\\F0155\";\n}\n\n.mdi2-clock-time-eight::before {\n  content: \"\\F1446\";\n}\n\n.mdi2-clock-time-eight-outline::before {\n  content: \"\\F1452\";\n}\n\n.mdi2-clock-time-eleven::before {\n  content: \"\\F1449\";\n}\n\n.mdi2-clock-time-eleven-outline::before {\n  content: \"\\F1455\";\n}\n\n.mdi2-clock-time-five::before {\n  content: \"\\F1443\";\n}\n\n.mdi2-clock-time-five-outline::before {\n  content: \"\\F144F\";\n}\n\n.mdi2-clock-time-four::before {\n  content: \"\\F1442\";\n}\n\n.mdi2-clock-time-four-outline::before {\n  content: \"\\F144E\";\n}\n\n.mdi2-clock-time-nine::before {\n  content: \"\\F1447\";\n}\n\n.mdi2-clock-time-nine-outline::before {\n  content: \"\\F1453\";\n}\n\n.mdi2-clock-time-one::before {\n  content: \"\\F143F\";\n}\n\n.mdi2-clock-time-one-outline::before {\n  content: \"\\F144B\";\n}\n\n.mdi2-clock-time-seven::before {\n  content: \"\\F1445\";\n}\n\n.mdi2-clock-time-seven-outline::before {\n  content: \"\\F1451\";\n}\n\n.mdi2-clock-time-six::before {\n  content: \"\\F1444\";\n}\n\n.mdi2-clock-time-six-outline::before {\n  content: \"\\F1450\";\n}\n\n.mdi2-clock-time-ten::before {\n  content: \"\\F1448\";\n}\n\n.mdi2-clock-time-ten-outline::before {\n  content: \"\\F1454\";\n}\n\n.mdi2-clock-time-three::before {\n  content: \"\\F1441\";\n}\n\n.mdi2-clock-time-three-outline::before {\n  content: \"\\F144D\";\n}\n\n.mdi2-clock-time-twelve::before {\n  content: \"\\F144A\";\n}\n\n.mdi2-clock-time-twelve-outline::before {\n  content: \"\\F1456\";\n}\n\n.mdi2-clock-time-two::before {\n  content: \"\\F1440\";\n}\n\n.mdi2-clock-time-two-outline::before {\n  content: \"\\F144C\";\n}\n\n.mdi2-close::before {\n  content: \"\\F0156\";\n}\n\n.mdi2-close-box::before {\n  content: \"\\F0157\";\n}\n\n.mdi2-close-box-multiple::before {\n  content: \"\\F0C5D\";\n}\n\n.mdi2-close-box-multiple-outline::before {\n  content: \"\\F0C5E\";\n}\n\n.mdi2-close-box-outline::before {\n  content: \"\\F0158\";\n}\n\n.mdi2-close-circle::before {\n  content: \"\\F0159\";\n}\n\n.mdi2-close-circle-multiple::before {\n  content: \"\\F062A\";\n}\n\n.mdi2-close-circle-multiple-outline::before {\n  content: \"\\F0883\";\n}\n\n.mdi2-close-circle-outline::before {\n  content: \"\\F015A\";\n}\n\n.mdi2-close-network::before {\n  content: \"\\F015B\";\n}\n\n.mdi2-close-network-outline::before {\n  content: \"\\F0C5F\";\n}\n\n.mdi2-close-octagon::before {\n  content: \"\\F015C\";\n}\n\n.mdi2-close-octagon-outline::before {\n  content: \"\\F015D\";\n}\n\n.mdi2-close-outline::before {\n  content: \"\\F06C9\";\n}\n\n.mdi2-close-thick::before {\n  content: \"\\F1398\";\n}\n\n.mdi2-closed-caption::before {\n  content: \"\\F015E\";\n}\n\n.mdi2-closed-caption-outline::before {\n  content: \"\\F0DBD\";\n}\n\n.mdi2-cloud::before {\n  content: \"\\F015F\";\n}\n\n.mdi2-cloud-alert::before {\n  content: \"\\F09E0\";\n}\n\n.mdi2-cloud-alert-outline::before {\n  content: \"\\F1BE0\";\n}\n\n.mdi2-cloud-arrow-down::before {\n  content: \"\\F1BE1\";\n}\n\n.mdi2-cloud-arrow-down-outline::before {\n  content: \"\\F1BE2\";\n}\n\n.mdi2-cloud-arrow-left::before {\n  content: \"\\F1BE3\";\n}\n\n.mdi2-cloud-arrow-left-outline::before {\n  content: \"\\F1BE4\";\n}\n\n.mdi2-cloud-arrow-right::before {\n  content: \"\\F1BE5\";\n}\n\n.mdi2-cloud-arrow-right-outline::before {\n  content: \"\\F1BE6\";\n}\n\n.mdi2-cloud-arrow-up::before {\n  content: \"\\F1BE7\";\n}\n\n.mdi2-cloud-arrow-up-outline::before {\n  content: \"\\F1BE8\";\n}\n\n.mdi2-cloud-braces::before {\n  content: \"\\F07B5\";\n}\n\n.mdi2-cloud-cancel::before {\n  content: \"\\F1BE9\";\n}\n\n.mdi2-cloud-cancel-outline::before {\n  content: \"\\F1BEA\";\n}\n\n.mdi2-cloud-check::before {\n  content: \"\\F1BEB\";\n}\n\n.mdi2-cloud-check-outline::before {\n  content: \"\\F1BEC\";\n}\n\n.mdi2-cloud-check-variant::before {\n  content: \"\\F0160\";\n}\n\n.mdi2-cloud-check-variant-outline::before {\n  content: \"\\F12CC\";\n}\n\n.mdi2-cloud-circle::before {\n  content: \"\\F0161\";\n}\n\n.mdi2-cloud-circle-outline::before {\n  content: \"\\F1BED\";\n}\n\n.mdi2-cloud-clock::before {\n  content: \"\\F1BEE\";\n}\n\n.mdi2-cloud-clock-outline::before {\n  content: \"\\F1BEF\";\n}\n\n.mdi2-cloud-cog::before {\n  content: \"\\F1BF0\";\n}\n\n.mdi2-cloud-cog-outline::before {\n  content: \"\\F1BF1\";\n}\n\n.mdi2-cloud-download::before {\n  content: \"\\F0162\";\n}\n\n.mdi2-cloud-download-outline::before {\n  content: \"\\F0B7D\";\n}\n\n.mdi2-cloud-key::before {\n  content: \"\\F1CA1\";\n}\n\n.mdi2-cloud-key-outline::before {\n  content: \"\\F1CA2\";\n}\n\n.mdi2-cloud-lock::before {\n  content: \"\\F11F1\";\n}\n\n.mdi2-cloud-lock-open::before {\n  content: \"\\F1BF2\";\n}\n\n.mdi2-cloud-lock-open-outline::before {\n  content: \"\\F1BF3\";\n}\n\n.mdi2-cloud-lock-outline::before {\n  content: \"\\F11F2\";\n}\n\n.mdi2-cloud-minus::before {\n  content: \"\\F1BF4\";\n}\n\n.mdi2-cloud-minus-outline::before {\n  content: \"\\F1BF5\";\n}\n\n.mdi2-cloud-off::before {\n  content: \"\\F1BF6\";\n}\n\n.mdi2-cloud-off-outline::before {\n  content: \"\\F0164\";\n}\n\n.mdi2-cloud-outline::before {\n  content: \"\\F0163\";\n}\n\n.mdi2-cloud-percent::before {\n  content: \"\\F1A35\";\n}\n\n.mdi2-cloud-percent-outline::before {\n  content: \"\\F1A36\";\n}\n\n.mdi2-cloud-plus::before {\n  content: \"\\F1BF7\";\n}\n\n.mdi2-cloud-plus-outline::before {\n  content: \"\\F1BF8\";\n}\n\n.mdi2-cloud-print::before {\n  content: \"\\F0165\";\n}\n\n.mdi2-cloud-print-outline::before {\n  content: \"\\F0166\";\n}\n\n.mdi2-cloud-question::before {\n  content: \"\\F0A39\";\n}\n\n.mdi2-cloud-question-outline::before {\n  content: \"\\F1BF9\";\n}\n\n.mdi2-cloud-refresh::before {\n  content: \"\\F1BFA\";\n}\n\n.mdi2-cloud-refresh-outline::before {\n  content: \"\\F1BFB\";\n}\n\n.mdi2-cloud-refresh-variant::before {\n  content: \"\\F052A\";\n}\n\n.mdi2-cloud-refresh-variant-outline::before {\n  content: \"\\F1BFC\";\n}\n\n.mdi2-cloud-remove::before {\n  content: \"\\F1BFD\";\n}\n\n.mdi2-cloud-remove-outline::before {\n  content: \"\\F1BFE\";\n}\n\n.mdi2-cloud-search::before {\n  content: \"\\F0956\";\n}\n\n.mdi2-cloud-search-outline::before {\n  content: \"\\F0957\";\n}\n\n.mdi2-cloud-sync::before {\n  content: \"\\F063F\";\n}\n\n.mdi2-cloud-sync-outline::before {\n  content: \"\\F12D6\";\n}\n\n.mdi2-cloud-tags::before {\n  content: \"\\F07B6\";\n}\n\n.mdi2-cloud-upload::before {\n  content: \"\\F0167\";\n}\n\n.mdi2-cloud-upload-outline::before {\n  content: \"\\F0B7E\";\n}\n\n.mdi2-clouds::before {\n  content: \"\\F1B95\";\n}\n\n.mdi2-clover::before {\n  content: \"\\F0816\";\n}\n\n.mdi2-clover-outline::before {\n  content: \"\\F1C62\";\n}\n\n.mdi2-coach-lamp::before {\n  content: \"\\F1020\";\n}\n\n.mdi2-coach-lamp-variant::before {\n  content: \"\\F1A37\";\n}\n\n.mdi2-coat-rack::before {\n  content: \"\\F109E\";\n}\n\n.mdi2-code-array::before {\n  content: \"\\F0168\";\n}\n\n.mdi2-code-block-braces::before {\n  content: \"\\F1C83\";\n}\n\n.mdi2-code-block-brackets::before {\n  content: \"\\F1C84\";\n}\n\n.mdi2-code-block-parentheses::before {\n  content: \"\\F1C85\";\n}\n\n.mdi2-code-block-tags::before {\n  content: \"\\F1C86\";\n}\n\n.mdi2-code-braces::before {\n  content: \"\\F0169\";\n}\n\n.mdi2-code-braces-box::before {\n  content: \"\\F10D6\";\n}\n\n.mdi2-code-brackets::before {\n  content: \"\\F016A\";\n}\n\n.mdi2-code-equal::before {\n  content: \"\\F016B\";\n}\n\n.mdi2-code-greater-than::before {\n  content: \"\\F016C\";\n}\n\n.mdi2-code-greater-than-or-equal::before {\n  content: \"\\F016D\";\n}\n\n.mdi2-code-json::before {\n  content: \"\\F0626\";\n}\n\n.mdi2-code-less-than::before {\n  content: \"\\F016E\";\n}\n\n.mdi2-code-less-than-or-equal::before {\n  content: \"\\F016F\";\n}\n\n.mdi2-code-not-equal::before {\n  content: \"\\F0170\";\n}\n\n.mdi2-code-not-equal-variant::before {\n  content: \"\\F0171\";\n}\n\n.mdi2-code-parentheses::before {\n  content: \"\\F0172\";\n}\n\n.mdi2-code-parentheses-box::before {\n  content: \"\\F10D7\";\n}\n\n.mdi2-code-string::before {\n  content: \"\\F0173\";\n}\n\n.mdi2-code-tags::before {\n  content: \"\\F0174\";\n}\n\n.mdi2-code-tags-check::before {\n  content: \"\\F0694\";\n}\n\n.mdi2-codepen::before {\n  content: \"\\F0175\";\n}\n\n.mdi2-coffee::before {\n  content: \"\\F0176\";\n}\n\n.mdi2-coffee-maker::before {\n  content: \"\\F109F\";\n}\n\n.mdi2-coffee-maker-check::before {\n  content: \"\\F1931\";\n}\n\n.mdi2-coffee-maker-check-outline::before {\n  content: \"\\F1932\";\n}\n\n.mdi2-coffee-maker-outline::before {\n  content: \"\\F181B\";\n}\n\n.mdi2-coffee-off::before {\n  content: \"\\F0FAA\";\n}\n\n.mdi2-coffee-off-outline::before {\n  content: \"\\F0FAB\";\n}\n\n.mdi2-coffee-outline::before {\n  content: \"\\F06CA\";\n}\n\n.mdi2-coffee-to-go::before {\n  content: \"\\F0177\";\n}\n\n.mdi2-coffee-to-go-outline::before {\n  content: \"\\F130E\";\n}\n\n.mdi2-coffin::before {\n  content: \"\\F0B7F\";\n}\n\n.mdi2-cog::before {\n  content: \"\\F0493\";\n}\n\n.mdi2-cog-box::before {\n  content: \"\\F0494\";\n}\n\n.mdi2-cog-clockwise::before {\n  content: \"\\F11DD\";\n}\n\n.mdi2-cog-counterclockwise::before {\n  content: \"\\F11DE\";\n}\n\n.mdi2-cog-off::before {\n  content: \"\\F13CE\";\n}\n\n.mdi2-cog-off-outline::before {\n  content: \"\\F13CF\";\n}\n\n.mdi2-cog-outline::before {\n  content: \"\\F08BB\";\n}\n\n.mdi2-cog-pause::before {\n  content: \"\\F1933\";\n}\n\n.mdi2-cog-pause-outline::before {\n  content: \"\\F1934\";\n}\n\n.mdi2-cog-play::before {\n  content: \"\\F1935\";\n}\n\n.mdi2-cog-play-outline::before {\n  content: \"\\F1936\";\n}\n\n.mdi2-cog-refresh::before {\n  content: \"\\F145E\";\n}\n\n.mdi2-cog-refresh-outline::before {\n  content: \"\\F145F\";\n}\n\n.mdi2-cog-stop::before {\n  content: \"\\F1937\";\n}\n\n.mdi2-cog-stop-outline::before {\n  content: \"\\F1938\";\n}\n\n.mdi2-cog-sync::before {\n  content: \"\\F1460\";\n}\n\n.mdi2-cog-sync-outline::before {\n  content: \"\\F1461\";\n}\n\n.mdi2-cog-transfer::before {\n  content: \"\\F105B\";\n}\n\n.mdi2-cog-transfer-outline::before {\n  content: \"\\F105C\";\n}\n\n.mdi2-cogs::before {\n  content: \"\\F08D6\";\n}\n\n.mdi2-collage::before {\n  content: \"\\F0640\";\n}\n\n.mdi2-collapse-all::before {\n  content: \"\\F0AA6\";\n}\n\n.mdi2-collapse-all-outline::before {\n  content: \"\\F0AA7\";\n}\n\n.mdi2-color-helper::before {\n  content: \"\\F0179\";\n}\n\n.mdi2-comma::before {\n  content: \"\\F0E23\";\n}\n\n.mdi2-comma-box::before {\n  content: \"\\F0E2B\";\n}\n\n.mdi2-comma-box-outline::before {\n  content: \"\\F0E24\";\n}\n\n.mdi2-comma-circle::before {\n  content: \"\\F0E25\";\n}\n\n.mdi2-comma-circle-outline::before {\n  content: \"\\F0E26\";\n}\n\n.mdi2-comment::before {\n  content: \"\\F017A\";\n}\n\n.mdi2-comment-account::before {\n  content: \"\\F017B\";\n}\n\n.mdi2-comment-account-outline::before {\n  content: \"\\F017C\";\n}\n\n.mdi2-comment-alert::before {\n  content: \"\\F017D\";\n}\n\n.mdi2-comment-alert-outline::before {\n  content: \"\\F017E\";\n}\n\n.mdi2-comment-arrow-left::before {\n  content: \"\\F09E1\";\n}\n\n.mdi2-comment-arrow-left-outline::before {\n  content: \"\\F09E2\";\n}\n\n.mdi2-comment-arrow-right::before {\n  content: \"\\F09E3\";\n}\n\n.mdi2-comment-arrow-right-outline::before {\n  content: \"\\F09E4\";\n}\n\n.mdi2-comment-bookmark::before {\n  content: \"\\F15AE\";\n}\n\n.mdi2-comment-bookmark-outline::before {\n  content: \"\\F15AF\";\n}\n\n.mdi2-comment-check::before {\n  content: \"\\F017F\";\n}\n\n.mdi2-comment-check-outline::before {\n  content: \"\\F0180\";\n}\n\n.mdi2-comment-edit::before {\n  content: \"\\F11BF\";\n}\n\n.mdi2-comment-edit-outline::before {\n  content: \"\\F12C4\";\n}\n\n.mdi2-comment-eye::before {\n  content: \"\\F0A3A\";\n}\n\n.mdi2-comment-eye-outline::before {\n  content: \"\\F0A3B\";\n}\n\n.mdi2-comment-flash::before {\n  content: \"\\F15B0\";\n}\n\n.mdi2-comment-flash-outline::before {\n  content: \"\\F15B1\";\n}\n\n.mdi2-comment-minus::before {\n  content: \"\\F15DF\";\n}\n\n.mdi2-comment-minus-outline::before {\n  content: \"\\F15E0\";\n}\n\n.mdi2-comment-multiple::before {\n  content: \"\\F085F\";\n}\n\n.mdi2-comment-multiple-outline::before {\n  content: \"\\F0181\";\n}\n\n.mdi2-comment-off::before {\n  content: \"\\F15E1\";\n}\n\n.mdi2-comment-off-outline::before {\n  content: \"\\F15E2\";\n}\n\n.mdi2-comment-outline::before {\n  content: \"\\F0182\";\n}\n\n.mdi2-comment-plus::before {\n  content: \"\\F09E5\";\n}\n\n.mdi2-comment-plus-outline::before {\n  content: \"\\F0183\";\n}\n\n.mdi2-comment-processing::before {\n  content: \"\\F0184\";\n}\n\n.mdi2-comment-processing-outline::before {\n  content: \"\\F0185\";\n}\n\n.mdi2-comment-question::before {\n  content: \"\\F0817\";\n}\n\n.mdi2-comment-question-outline::before {\n  content: \"\\F0186\";\n}\n\n.mdi2-comment-quote::before {\n  content: \"\\F1021\";\n}\n\n.mdi2-comment-quote-outline::before {\n  content: \"\\F1022\";\n}\n\n.mdi2-comment-remove::before {\n  content: \"\\F05DE\";\n}\n\n.mdi2-comment-remove-outline::before {\n  content: \"\\F0187\";\n}\n\n.mdi2-comment-search::before {\n  content: \"\\F0A3C\";\n}\n\n.mdi2-comment-search-outline::before {\n  content: \"\\F0A3D\";\n}\n\n.mdi2-comment-text::before {\n  content: \"\\F0188\";\n}\n\n.mdi2-comment-text-multiple::before {\n  content: \"\\F0860\";\n}\n\n.mdi2-comment-text-multiple-outline::before {\n  content: \"\\F0861\";\n}\n\n.mdi2-comment-text-outline::before {\n  content: \"\\F0189\";\n}\n\n.mdi2-compare::before {\n  content: \"\\F018A\";\n}\n\n.mdi2-compare-horizontal::before {\n  content: \"\\F1492\";\n}\n\n.mdi2-compare-remove::before {\n  content: \"\\F18B3\";\n}\n\n.mdi2-compare-vertical::before {\n  content: \"\\F1493\";\n}\n\n.mdi2-compass::before {\n  content: \"\\F018B\";\n}\n\n.mdi2-compass-off::before {\n  content: \"\\F0B80\";\n}\n\n.mdi2-compass-off-outline::before {\n  content: \"\\F0B81\";\n}\n\n.mdi2-compass-outline::before {\n  content: \"\\F018C\";\n}\n\n.mdi2-compass-rose::before {\n  content: \"\\F1382\";\n}\n\n.mdi2-compost::before {\n  content: \"\\F1A38\";\n}\n\n.mdi2-cone::before {\n  content: \"\\F194C\";\n}\n\n.mdi2-cone-off::before {\n  content: \"\\F194D\";\n}\n\n.mdi2-connection::before {\n  content: \"\\F1616\";\n}\n\n.mdi2-console::before {\n  content: \"\\F018D\";\n}\n\n.mdi2-console-line::before {\n  content: \"\\F07B7\";\n}\n\n.mdi2-console-network::before {\n  content: \"\\F08A9\";\n}\n\n.mdi2-console-network-outline::before {\n  content: \"\\F0C60\";\n}\n\n.mdi2-consolidate::before {\n  content: \"\\F10D8\";\n}\n\n.mdi2-contactless-payment::before {\n  content: \"\\F0D6A\";\n}\n\n.mdi2-contactless-payment-circle::before {\n  content: \"\\F0321\";\n}\n\n.mdi2-contactless-payment-circle-outline::before {\n  content: \"\\F0408\";\n}\n\n.mdi2-contacts::before {\n  content: \"\\F06CB\";\n}\n\n.mdi2-contacts-outline::before {\n  content: \"\\F05B8\";\n}\n\n.mdi2-contain::before {\n  content: \"\\F0A3E\";\n}\n\n.mdi2-contain-end::before {\n  content: \"\\F0A3F\";\n}\n\n.mdi2-contain-start::before {\n  content: \"\\F0A40\";\n}\n\n.mdi2-content-copy::before {\n  content: \"\\F018F\";\n}\n\n.mdi2-content-cut::before {\n  content: \"\\F0190\";\n}\n\n.mdi2-content-duplicate::before {\n  content: \"\\F0191\";\n}\n\n.mdi2-content-paste::before {\n  content: \"\\F0192\";\n}\n\n.mdi2-content-save::before {\n  content: \"\\F0193\";\n}\n\n.mdi2-content-save-alert::before {\n  content: \"\\F0F42\";\n}\n\n.mdi2-content-save-alert-outline::before {\n  content: \"\\F0F43\";\n}\n\n.mdi2-content-save-all::before {\n  content: \"\\F0194\";\n}\n\n.mdi2-content-save-all-outline::before {\n  content: \"\\F0F44\";\n}\n\n.mdi2-content-save-check::before {\n  content: \"\\F18EA\";\n}\n\n.mdi2-content-save-check-outline::before {\n  content: \"\\F18EB\";\n}\n\n.mdi2-content-save-cog::before {\n  content: \"\\F145B\";\n}\n\n.mdi2-content-save-cog-outline::before {\n  content: \"\\F145C\";\n}\n\n.mdi2-content-save-edit::before {\n  content: \"\\F0CFB\";\n}\n\n.mdi2-content-save-edit-outline::before {\n  content: \"\\F0CFC\";\n}\n\n.mdi2-content-save-minus::before {\n  content: \"\\F1B43\";\n}\n\n.mdi2-content-save-minus-outline::before {\n  content: \"\\F1B44\";\n}\n\n.mdi2-content-save-move::before {\n  content: \"\\F0E27\";\n}\n\n.mdi2-content-save-move-outline::before {\n  content: \"\\F0E28\";\n}\n\n.mdi2-content-save-off::before {\n  content: \"\\F1643\";\n}\n\n.mdi2-content-save-off-outline::before {\n  content: \"\\F1644\";\n}\n\n.mdi2-content-save-outline::before {\n  content: \"\\F0818\";\n}\n\n.mdi2-content-save-plus::before {\n  content: \"\\F1B41\";\n}\n\n.mdi2-content-save-plus-outline::before {\n  content: \"\\F1B42\";\n}\n\n.mdi2-content-save-settings::before {\n  content: \"\\F061B\";\n}\n\n.mdi2-content-save-settings-outline::before {\n  content: \"\\F0B2E\";\n}\n\n.mdi2-contrast::before {\n  content: \"\\F0195\";\n}\n\n.mdi2-contrast-box::before {\n  content: \"\\F0196\";\n}\n\n.mdi2-contrast-circle::before {\n  content: \"\\F0197\";\n}\n\n.mdi2-controller::before {\n  content: \"\\F02B4\";\n}\n\n.mdi2-controller-classic::before {\n  content: \"\\F0B82\";\n}\n\n.mdi2-controller-classic-outline::before {\n  content: \"\\F0B83\";\n}\n\n.mdi2-controller-off::before {\n  content: \"\\F02B5\";\n}\n\n.mdi2-cookie::before {\n  content: \"\\F0198\";\n}\n\n.mdi2-cookie-alert::before {\n  content: \"\\F16D0\";\n}\n\n.mdi2-cookie-alert-outline::before {\n  content: \"\\F16D1\";\n}\n\n.mdi2-cookie-check::before {\n  content: \"\\F16D2\";\n}\n\n.mdi2-cookie-check-outline::before {\n  content: \"\\F16D3\";\n}\n\n.mdi2-cookie-clock::before {\n  content: \"\\F16E4\";\n}\n\n.mdi2-cookie-clock-outline::before {\n  content: \"\\F16E5\";\n}\n\n.mdi2-cookie-cog::before {\n  content: \"\\F16D4\";\n}\n\n.mdi2-cookie-cog-outline::before {\n  content: \"\\F16D5\";\n}\n\n.mdi2-cookie-edit::before {\n  content: \"\\F16E6\";\n}\n\n.mdi2-cookie-edit-outline::before {\n  content: \"\\F16E7\";\n}\n\n.mdi2-cookie-lock::before {\n  content: \"\\F16E8\";\n}\n\n.mdi2-cookie-lock-outline::before {\n  content: \"\\F16E9\";\n}\n\n.mdi2-cookie-minus::before {\n  content: \"\\F16DA\";\n}\n\n.mdi2-cookie-minus-outline::before {\n  content: \"\\F16DB\";\n}\n\n.mdi2-cookie-off::before {\n  content: \"\\F16EA\";\n}\n\n.mdi2-cookie-off-outline::before {\n  content: \"\\F16EB\";\n}\n\n.mdi2-cookie-outline::before {\n  content: \"\\F16DE\";\n}\n\n.mdi2-cookie-plus::before {\n  content: \"\\F16D6\";\n}\n\n.mdi2-cookie-plus-outline::before {\n  content: \"\\F16D7\";\n}\n\n.mdi2-cookie-refresh::before {\n  content: \"\\F16EC\";\n}\n\n.mdi2-cookie-refresh-outline::before {\n  content: \"\\F16ED\";\n}\n\n.mdi2-cookie-remove::before {\n  content: \"\\F16D8\";\n}\n\n.mdi2-cookie-remove-outline::before {\n  content: \"\\F16D9\";\n}\n\n.mdi2-cookie-settings::before {\n  content: \"\\F16DC\";\n}\n\n.mdi2-cookie-settings-outline::before {\n  content: \"\\F16DD\";\n}\n\n.mdi2-coolant-temperature::before {\n  content: \"\\F03C8\";\n}\n\n.mdi2-copyleft::before {\n  content: \"\\F1939\";\n}\n\n.mdi2-copyright::before {\n  content: \"\\F05E6\";\n}\n\n.mdi2-cordova::before {\n  content: \"\\F0958\";\n}\n\n.mdi2-corn::before {\n  content: \"\\F07B8\";\n}\n\n.mdi2-corn-off::before {\n  content: \"\\F13EF\";\n}\n\n.mdi2-cosine-wave::before {\n  content: \"\\F1479\";\n}\n\n.mdi2-counter::before {\n  content: \"\\F0199\";\n}\n\n.mdi2-countertop::before {\n  content: \"\\F181C\";\n}\n\n.mdi2-countertop-outline::before {\n  content: \"\\F181D\";\n}\n\n.mdi2-cow::before {\n  content: \"\\F019A\";\n}\n\n.mdi2-cow-off::before {\n  content: \"\\F18FC\";\n}\n\n.mdi2-cpu-32-bit::before {\n  content: \"\\F0EDF\";\n}\n\n.mdi2-cpu-64-bit::before {\n  content: \"\\F0EE0\";\n}\n\n.mdi2-cradle::before {\n  content: \"\\F198B\";\n}\n\n.mdi2-cradle-outline::before {\n  content: \"\\F1991\";\n}\n\n.mdi2-crane::before {\n  content: \"\\F0862\";\n}\n\n.mdi2-creation::before {\n  content: \"\\F0674\";\n}\n\n.mdi2-creation-outline::before {\n  content: \"\\F1C2B\";\n}\n\n.mdi2-creative-commons::before {\n  content: \"\\F0D6B\";\n}\n\n.mdi2-credit-card::before {\n  content: \"\\F0FEF\";\n}\n\n.mdi2-credit-card-check::before {\n  content: \"\\F13D0\";\n}\n\n.mdi2-credit-card-check-outline::before {\n  content: \"\\F13D1\";\n}\n\n.mdi2-credit-card-chip::before {\n  content: \"\\F190F\";\n}\n\n.mdi2-credit-card-chip-outline::before {\n  content: \"\\F1910\";\n}\n\n.mdi2-credit-card-clock::before {\n  content: \"\\F0EE1\";\n}\n\n.mdi2-credit-card-clock-outline::before {\n  content: \"\\F0EE2\";\n}\n\n.mdi2-credit-card-edit::before {\n  content: \"\\F17D7\";\n}\n\n.mdi2-credit-card-edit-outline::before {\n  content: \"\\F17D8\";\n}\n\n.mdi2-credit-card-fast::before {\n  content: \"\\F1911\";\n}\n\n.mdi2-credit-card-fast-outline::before {\n  content: \"\\F1912\";\n}\n\n.mdi2-credit-card-lock::before {\n  content: \"\\F18E7\";\n}\n\n.mdi2-credit-card-lock-outline::before {\n  content: \"\\F18E8\";\n}\n\n.mdi2-credit-card-marker::before {\n  content: \"\\F06A8\";\n}\n\n.mdi2-credit-card-marker-outline::before {\n  content: \"\\F0DBE\";\n}\n\n.mdi2-credit-card-minus::before {\n  content: \"\\F0FAC\";\n}\n\n.mdi2-credit-card-minus-outline::before {\n  content: \"\\F0FAD\";\n}\n\n.mdi2-credit-card-multiple::before {\n  content: \"\\F0FF0\";\n}\n\n.mdi2-credit-card-multiple-outline::before {\n  content: \"\\F019C\";\n}\n\n.mdi2-credit-card-off::before {\n  content: \"\\F0FF1\";\n}\n\n.mdi2-credit-card-off-outline::before {\n  content: \"\\F05E4\";\n}\n\n.mdi2-credit-card-outline::before {\n  content: \"\\F019B\";\n}\n\n.mdi2-credit-card-plus::before {\n  content: \"\\F0FF2\";\n}\n\n.mdi2-credit-card-plus-outline::before {\n  content: \"\\F0676\";\n}\n\n.mdi2-credit-card-refresh::before {\n  content: \"\\F1645\";\n}\n\n.mdi2-credit-card-refresh-outline::before {\n  content: \"\\F1646\";\n}\n\n.mdi2-credit-card-refund::before {\n  content: \"\\F0FF3\";\n}\n\n.mdi2-credit-card-refund-outline::before {\n  content: \"\\F0AA8\";\n}\n\n.mdi2-credit-card-remove::before {\n  content: \"\\F0FAE\";\n}\n\n.mdi2-credit-card-remove-outline::before {\n  content: \"\\F0FAF\";\n}\n\n.mdi2-credit-card-scan::before {\n  content: \"\\F0FF4\";\n}\n\n.mdi2-credit-card-scan-outline::before {\n  content: \"\\F019D\";\n}\n\n.mdi2-credit-card-search::before {\n  content: \"\\F1647\";\n}\n\n.mdi2-credit-card-search-outline::before {\n  content: \"\\F1648\";\n}\n\n.mdi2-credit-card-settings::before {\n  content: \"\\F0FF5\";\n}\n\n.mdi2-credit-card-settings-outline::before {\n  content: \"\\F08D7\";\n}\n\n.mdi2-credit-card-sync::before {\n  content: \"\\F1649\";\n}\n\n.mdi2-credit-card-sync-outline::before {\n  content: \"\\F164A\";\n}\n\n.mdi2-credit-card-wireless::before {\n  content: \"\\F0802\";\n}\n\n.mdi2-credit-card-wireless-off::before {\n  content: \"\\F057A\";\n}\n\n.mdi2-credit-card-wireless-off-outline::before {\n  content: \"\\F057B\";\n}\n\n.mdi2-credit-card-wireless-outline::before {\n  content: \"\\F0D6C\";\n}\n\n.mdi2-cricket::before {\n  content: \"\\F0D6D\";\n}\n\n.mdi2-crop::before {\n  content: \"\\F019E\";\n}\n\n.mdi2-crop-free::before {\n  content: \"\\F019F\";\n}\n\n.mdi2-crop-landscape::before {\n  content: \"\\F01A0\";\n}\n\n.mdi2-crop-portrait::before {\n  content: \"\\F01A1\";\n}\n\n.mdi2-crop-rotate::before {\n  content: \"\\F0696\";\n}\n\n.mdi2-crop-square::before {\n  content: \"\\F01A2\";\n}\n\n.mdi2-cross::before {\n  content: \"\\F0953\";\n}\n\n.mdi2-cross-bolnisi::before {\n  content: \"\\F0CED\";\n}\n\n.mdi2-cross-celtic::before {\n  content: \"\\F0CF5\";\n}\n\n.mdi2-cross-outline::before {\n  content: \"\\F0CF6\";\n}\n\n.mdi2-crosshairs::before {\n  content: \"\\F01A3\";\n}\n\n.mdi2-crosshairs-gps::before {\n  content: \"\\F01A4\";\n}\n\n.mdi2-crosshairs-off::before {\n  content: \"\\F0F45\";\n}\n\n.mdi2-crosshairs-question::before {\n  content: \"\\F1136\";\n}\n\n.mdi2-crowd::before {\n  content: \"\\F1975\";\n}\n\n.mdi2-crown::before {\n  content: \"\\F01A5\";\n}\n\n.mdi2-crown-circle::before {\n  content: \"\\F17DC\";\n}\n\n.mdi2-crown-circle-outline::before {\n  content: \"\\F17DD\";\n}\n\n.mdi2-crown-outline::before {\n  content: \"\\F11D0\";\n}\n\n.mdi2-cryengine::before {\n  content: \"\\F0959\";\n}\n\n.mdi2-crystal-ball::before {\n  content: \"\\F0B2F\";\n}\n\n.mdi2-cube::before {\n  content: \"\\F01A6\";\n}\n\n.mdi2-cube-off::before {\n  content: \"\\F141C\";\n}\n\n.mdi2-cube-off-outline::before {\n  content: \"\\F141D\";\n}\n\n.mdi2-cube-outline::before {\n  content: \"\\F01A7\";\n}\n\n.mdi2-cube-scan::before {\n  content: \"\\F0B84\";\n}\n\n.mdi2-cube-send::before {\n  content: \"\\F01A8\";\n}\n\n.mdi2-cube-unfolded::before {\n  content: \"\\F01A9\";\n}\n\n.mdi2-cup::before {\n  content: \"\\F01AA\";\n}\n\n.mdi2-cup-off::before {\n  content: \"\\F05E5\";\n}\n\n.mdi2-cup-off-outline::before {\n  content: \"\\F137D\";\n}\n\n.mdi2-cup-outline::before {\n  content: \"\\F130F\";\n}\n\n.mdi2-cup-water::before {\n  content: \"\\F01AB\";\n}\n\n.mdi2-cupboard::before {\n  content: \"\\F0F46\";\n}\n\n.mdi2-cupboard-outline::before {\n  content: \"\\F0F47\";\n}\n\n.mdi2-cupcake::before {\n  content: \"\\F095A\";\n}\n\n.mdi2-curling::before {\n  content: \"\\F0863\";\n}\n\n.mdi2-currency-bdt::before {\n  content: \"\\F0864\";\n}\n\n.mdi2-currency-brl::before {\n  content: \"\\F0B85\";\n}\n\n.mdi2-currency-btc::before {\n  content: \"\\F01AC\";\n}\n\n.mdi2-currency-cny::before {\n  content: \"\\F07BA\";\n}\n\n.mdi2-currency-eth::before {\n  content: \"\\F07BB\";\n}\n\n.mdi2-currency-eur::before {\n  content: \"\\F01AD\";\n}\n\n.mdi2-currency-eur-off::before {\n  content: \"\\F1315\";\n}\n\n.mdi2-currency-fra::before {\n  content: \"\\F1A39\";\n}\n\n.mdi2-currency-gbp::before {\n  content: \"\\F01AE\";\n}\n\n.mdi2-currency-ils::before {\n  content: \"\\F0C61\";\n}\n\n.mdi2-currency-inr::before {\n  content: \"\\F01AF\";\n}\n\n.mdi2-currency-jpy::before {\n  content: \"\\F07BC\";\n}\n\n.mdi2-currency-krw::before {\n  content: \"\\F07BD\";\n}\n\n.mdi2-currency-kzt::before {\n  content: \"\\F0865\";\n}\n\n.mdi2-currency-mnt::before {\n  content: \"\\F1512\";\n}\n\n.mdi2-currency-ngn::before {\n  content: \"\\F01B0\";\n}\n\n.mdi2-currency-php::before {\n  content: \"\\F09E6\";\n}\n\n.mdi2-currency-rial::before {\n  content: \"\\F0E9C\";\n}\n\n.mdi2-currency-rub::before {\n  content: \"\\F01B1\";\n}\n\n.mdi2-currency-rupee::before {\n  content: \"\\F1976\";\n}\n\n.mdi2-currency-sign::before {\n  content: \"\\F07BE\";\n}\n\n.mdi2-currency-thb::before {\n  content: \"\\F1C05\";\n}\n\n.mdi2-currency-try::before {\n  content: \"\\F01B2\";\n}\n\n.mdi2-currency-twd::before {\n  content: \"\\F07BF\";\n}\n\n.mdi2-currency-uah::before {\n  content: \"\\F1B9B\";\n}\n\n.mdi2-currency-usd::before {\n  content: \"\\F01C1\";\n}\n\n.mdi2-currency-usd-off::before {\n  content: \"\\F067A\";\n}\n\n.mdi2-current-ac::before {\n  content: \"\\F1480\";\n}\n\n.mdi2-current-dc::before {\n  content: \"\\F095C\";\n}\n\n.mdi2-cursor-default::before {\n  content: \"\\F01C0\";\n}\n\n.mdi2-cursor-default-click::before {\n  content: \"\\F0CFD\";\n}\n\n.mdi2-cursor-default-click-outline::before {\n  content: \"\\F0CFE\";\n}\n\n.mdi2-cursor-default-gesture::before {\n  content: \"\\F1127\";\n}\n\n.mdi2-cursor-default-gesture-outline::before {\n  content: \"\\F1128\";\n}\n\n.mdi2-cursor-default-outline::before {\n  content: \"\\F01BF\";\n}\n\n.mdi2-cursor-move::before {\n  content: \"\\F01BE\";\n}\n\n.mdi2-cursor-pointer::before {\n  content: \"\\F01BD\";\n}\n\n.mdi2-cursor-text::before {\n  content: \"\\F05E7\";\n}\n\n.mdi2-curtains::before {\n  content: \"\\F1846\";\n}\n\n.mdi2-curtains-closed::before {\n  content: \"\\F1847\";\n}\n\n.mdi2-cylinder::before {\n  content: \"\\F194E\";\n}\n\n.mdi2-cylinder-off::before {\n  content: \"\\F194F\";\n}\n\n.mdi2-dance-ballroom::before {\n  content: \"\\F15FB\";\n}\n\n.mdi2-dance-pole::before {\n  content: \"\\F1578\";\n}\n\n.mdi2-data-matrix::before {\n  content: \"\\F153C\";\n}\n\n.mdi2-data-matrix-edit::before {\n  content: \"\\F153D\";\n}\n\n.mdi2-data-matrix-minus::before {\n  content: \"\\F153E\";\n}\n\n.mdi2-data-matrix-plus::before {\n  content: \"\\F153F\";\n}\n\n.mdi2-data-matrix-remove::before {\n  content: \"\\F1540\";\n}\n\n.mdi2-data-matrix-scan::before {\n  content: \"\\F1541\";\n}\n\n.mdi2-database::before {\n  content: \"\\F01BC\";\n}\n\n.mdi2-database-alert::before {\n  content: \"\\F163A\";\n}\n\n.mdi2-database-alert-outline::before {\n  content: \"\\F1624\";\n}\n\n.mdi2-database-arrow-down::before {\n  content: \"\\F163B\";\n}\n\n.mdi2-database-arrow-down-outline::before {\n  content: \"\\F1625\";\n}\n\n.mdi2-database-arrow-left::before {\n  content: \"\\F163C\";\n}\n\n.mdi2-database-arrow-left-outline::before {\n  content: \"\\F1626\";\n}\n\n.mdi2-database-arrow-right::before {\n  content: \"\\F163D\";\n}\n\n.mdi2-database-arrow-right-outline::before {\n  content: \"\\F1627\";\n}\n\n.mdi2-database-arrow-up::before {\n  content: \"\\F163E\";\n}\n\n.mdi2-database-arrow-up-outline::before {\n  content: \"\\F1628\";\n}\n\n.mdi2-database-check::before {\n  content: \"\\F0AA9\";\n}\n\n.mdi2-database-check-outline::before {\n  content: \"\\F1629\";\n}\n\n.mdi2-database-clock::before {\n  content: \"\\F163F\";\n}\n\n.mdi2-database-clock-outline::before {\n  content: \"\\F162A\";\n}\n\n.mdi2-database-cog::before {\n  content: \"\\F164B\";\n}\n\n.mdi2-database-cog-outline::before {\n  content: \"\\F164C\";\n}\n\n.mdi2-database-edit::before {\n  content: \"\\F0B86\";\n}\n\n.mdi2-database-edit-outline::before {\n  content: \"\\F162B\";\n}\n\n.mdi2-database-export::before {\n  content: \"\\F095E\";\n}\n\n.mdi2-database-export-outline::before {\n  content: \"\\F162C\";\n}\n\n.mdi2-database-eye::before {\n  content: \"\\F191F\";\n}\n\n.mdi2-database-eye-off::before {\n  content: \"\\F1920\";\n}\n\n.mdi2-database-eye-off-outline::before {\n  content: \"\\F1921\";\n}\n\n.mdi2-database-eye-outline::before {\n  content: \"\\F1922\";\n}\n\n.mdi2-database-import::before {\n  content: \"\\F095D\";\n}\n\n.mdi2-database-import-outline::before {\n  content: \"\\F162D\";\n}\n\n.mdi2-database-lock::before {\n  content: \"\\F0AAA\";\n}\n\n.mdi2-database-lock-outline::before {\n  content: \"\\F162E\";\n}\n\n.mdi2-database-marker::before {\n  content: \"\\F12F6\";\n}\n\n.mdi2-database-marker-outline::before {\n  content: \"\\F162F\";\n}\n\n.mdi2-database-minus::before {\n  content: \"\\F01BB\";\n}\n\n.mdi2-database-minus-outline::before {\n  content: \"\\F1630\";\n}\n\n.mdi2-database-off::before {\n  content: \"\\F1640\";\n}\n\n.mdi2-database-off-outline::before {\n  content: \"\\F1631\";\n}\n\n.mdi2-database-outline::before {\n  content: \"\\F1632\";\n}\n\n.mdi2-database-plus::before {\n  content: \"\\F01BA\";\n}\n\n.mdi2-database-plus-outline::before {\n  content: \"\\F1633\";\n}\n\n.mdi2-database-refresh::before {\n  content: \"\\F05C2\";\n}\n\n.mdi2-database-refresh-outline::before {\n  content: \"\\F1634\";\n}\n\n.mdi2-database-remove::before {\n  content: \"\\F0D00\";\n}\n\n.mdi2-database-remove-outline::before {\n  content: \"\\F1635\";\n}\n\n.mdi2-database-search::before {\n  content: \"\\F0866\";\n}\n\n.mdi2-database-search-outline::before {\n  content: \"\\F1636\";\n}\n\n.mdi2-database-settings::before {\n  content: \"\\F0D01\";\n}\n\n.mdi2-database-settings-outline::before {\n  content: \"\\F1637\";\n}\n\n.mdi2-database-sync::before {\n  content: \"\\F0CFF\";\n}\n\n.mdi2-database-sync-outline::before {\n  content: \"\\F1638\";\n}\n\n.mdi2-death-star::before {\n  content: \"\\F08D8\";\n}\n\n.mdi2-death-star-variant::before {\n  content: \"\\F08D9\";\n}\n\n.mdi2-deathly-hallows::before {\n  content: \"\\F0B87\";\n}\n\n.mdi2-debian::before {\n  content: \"\\F08DA\";\n}\n\n.mdi2-debug-step-into::before {\n  content: \"\\F01B9\";\n}\n\n.mdi2-debug-step-out::before {\n  content: \"\\F01B8\";\n}\n\n.mdi2-debug-step-over::before {\n  content: \"\\F01B7\";\n}\n\n.mdi2-decagram::before {\n  content: \"\\F076C\";\n}\n\n.mdi2-decagram-outline::before {\n  content: \"\\F076D\";\n}\n\n.mdi2-decimal::before {\n  content: \"\\F10A1\";\n}\n\n.mdi2-decimal-comma::before {\n  content: \"\\F10A2\";\n}\n\n.mdi2-decimal-comma-decrease::before {\n  content: \"\\F10A3\";\n}\n\n.mdi2-decimal-comma-increase::before {\n  content: \"\\F10A4\";\n}\n\n.mdi2-decimal-decrease::before {\n  content: \"\\F01B6\";\n}\n\n.mdi2-decimal-increase::before {\n  content: \"\\F01B5\";\n}\n\n.mdi2-delete::before {\n  content: \"\\F01B4\";\n}\n\n.mdi2-delete-alert::before {\n  content: \"\\F10A5\";\n}\n\n.mdi2-delete-alert-outline::before {\n  content: \"\\F10A6\";\n}\n\n.mdi2-delete-circle::before {\n  content: \"\\F0683\";\n}\n\n.mdi2-delete-circle-outline::before {\n  content: \"\\F0B88\";\n}\n\n.mdi2-delete-clock::before {\n  content: \"\\F1556\";\n}\n\n.mdi2-delete-clock-outline::before {\n  content: \"\\F1557\";\n}\n\n.mdi2-delete-empty::before {\n  content: \"\\F06CC\";\n}\n\n.mdi2-delete-empty-outline::before {\n  content: \"\\F0E9D\";\n}\n\n.mdi2-delete-forever::before {\n  content: \"\\F05E8\";\n}\n\n.mdi2-delete-forever-outline::before {\n  content: \"\\F0B89\";\n}\n\n.mdi2-delete-off::before {\n  content: \"\\F10A7\";\n}\n\n.mdi2-delete-off-outline::before {\n  content: \"\\F10A8\";\n}\n\n.mdi2-delete-outline::before {\n  content: \"\\F09E7\";\n}\n\n.mdi2-delete-restore::before {\n  content: \"\\F0819\";\n}\n\n.mdi2-delete-sweep::before {\n  content: \"\\F05E9\";\n}\n\n.mdi2-delete-sweep-outline::before {\n  content: \"\\F0C62\";\n}\n\n.mdi2-delete-variant::before {\n  content: \"\\F01B3\";\n}\n\n.mdi2-delta::before {\n  content: \"\\F01C2\";\n}\n\n.mdi2-desk::before {\n  content: \"\\F1239\";\n}\n\n.mdi2-desk-lamp::before {\n  content: \"\\F095F\";\n}\n\n.mdi2-desk-lamp-off::before {\n  content: \"\\F1B1F\";\n}\n\n.mdi2-desk-lamp-on::before {\n  content: \"\\F1B20\";\n}\n\n.mdi2-deskphone::before {\n  content: \"\\F01C3\";\n}\n\n.mdi2-desktop-classic::before {\n  content: \"\\F07C0\";\n}\n\n.mdi2-desktop-tower::before {\n  content: \"\\F01C5\";\n}\n\n.mdi2-desktop-tower-monitor::before {\n  content: \"\\F0AAB\";\n}\n\n.mdi2-details::before {\n  content: \"\\F01C6\";\n}\n\n.mdi2-dev-to::before {\n  content: \"\\F0D6E\";\n}\n\n.mdi2-developer-board::before {\n  content: \"\\F0697\";\n}\n\n.mdi2-deviantart::before {\n  content: \"\\F01C7\";\n}\n\n.mdi2-devices::before {\n  content: \"\\F0FB0\";\n}\n\n.mdi2-dharmachakra::before {\n  content: \"\\F094B\";\n}\n\n.mdi2-diabetes::before {\n  content: \"\\F1126\";\n}\n\n.mdi2-dialpad::before {\n  content: \"\\F061C\";\n}\n\n.mdi2-diameter::before {\n  content: \"\\F0C63\";\n}\n\n.mdi2-diameter-outline::before {\n  content: \"\\F0C64\";\n}\n\n.mdi2-diameter-variant::before {\n  content: \"\\F0C65\";\n}\n\n.mdi2-diamond::before {\n  content: \"\\F0B8A\";\n}\n\n.mdi2-diamond-outline::before {\n  content: \"\\F0B8B\";\n}\n\n.mdi2-diamond-stone::before {\n  content: \"\\F01C8\";\n}\n\n.mdi2-diaper-outline::before {\n  content: \"\\F1CCF\";\n}\n\n.mdi2-dice-1::before {\n  content: \"\\F01CA\";\n}\n\n.mdi2-dice-1-outline::before {\n  content: \"\\F114A\";\n}\n\n.mdi2-dice-2::before {\n  content: \"\\F01CB\";\n}\n\n.mdi2-dice-2-outline::before {\n  content: \"\\F114B\";\n}\n\n.mdi2-dice-3::before {\n  content: \"\\F01CC\";\n}\n\n.mdi2-dice-3-outline::before {\n  content: \"\\F114C\";\n}\n\n.mdi2-dice-4::before {\n  content: \"\\F01CD\";\n}\n\n.mdi2-dice-4-outline::before {\n  content: \"\\F114D\";\n}\n\n.mdi2-dice-5::before {\n  content: \"\\F01CE\";\n}\n\n.mdi2-dice-5-outline::before {\n  content: \"\\F114E\";\n}\n\n.mdi2-dice-6::before {\n  content: \"\\F01CF\";\n}\n\n.mdi2-dice-6-outline::before {\n  content: \"\\F114F\";\n}\n\n.mdi2-dice-d10::before {\n  content: \"\\F1153\";\n}\n\n.mdi2-dice-d10-outline::before {\n  content: \"\\F076F\";\n}\n\n.mdi2-dice-d12::before {\n  content: \"\\F1154\";\n}\n\n.mdi2-dice-d12-outline::before {\n  content: \"\\F0867\";\n}\n\n.mdi2-dice-d20::before {\n  content: \"\\F1155\";\n}\n\n.mdi2-dice-d20-outline::before {\n  content: \"\\F05EA\";\n}\n\n.mdi2-dice-d4::before {\n  content: \"\\F1150\";\n}\n\n.mdi2-dice-d4-outline::before {\n  content: \"\\F05EB\";\n}\n\n.mdi2-dice-d6::before {\n  content: \"\\F1151\";\n}\n\n.mdi2-dice-d6-outline::before {\n  content: \"\\F05ED\";\n}\n\n.mdi2-dice-d8::before {\n  content: \"\\F1152\";\n}\n\n.mdi2-dice-d8-outline::before {\n  content: \"\\F05EC\";\n}\n\n.mdi2-dice-multiple::before {\n  content: \"\\F076E\";\n}\n\n.mdi2-dice-multiple-outline::before {\n  content: \"\\F1156\";\n}\n\n.mdi2-digital-ocean::before {\n  content: \"\\F1237\";\n}\n\n.mdi2-dip-switch::before {\n  content: \"\\F07C1\";\n}\n\n.mdi2-directions::before {\n  content: \"\\F01D0\";\n}\n\n.mdi2-directions-fork::before {\n  content: \"\\F0641\";\n}\n\n.mdi2-disc::before {\n  content: \"\\F05EE\";\n}\n\n.mdi2-disc-alert::before {\n  content: \"\\F01D1\";\n}\n\n.mdi2-disc-player::before {\n  content: \"\\F0960\";\n}\n\n.mdi2-dishwasher::before {\n  content: \"\\F0AAC\";\n}\n\n.mdi2-dishwasher-alert::before {\n  content: \"\\F11B8\";\n}\n\n.mdi2-dishwasher-off::before {\n  content: \"\\F11B9\";\n}\n\n.mdi2-disqus::before {\n  content: \"\\F01D2\";\n}\n\n.mdi2-distribute-horizontal-center::before {\n  content: \"\\F11C9\";\n}\n\n.mdi2-distribute-horizontal-left::before {\n  content: \"\\F11C8\";\n}\n\n.mdi2-distribute-horizontal-right::before {\n  content: \"\\F11CA\";\n}\n\n.mdi2-distribute-vertical-bottom::before {\n  content: \"\\F11CB\";\n}\n\n.mdi2-distribute-vertical-center::before {\n  content: \"\\F11CC\";\n}\n\n.mdi2-distribute-vertical-top::before {\n  content: \"\\F11CD\";\n}\n\n.mdi2-diversify::before {\n  content: \"\\F1877\";\n}\n\n.mdi2-diving::before {\n  content: \"\\F1977\";\n}\n\n.mdi2-diving-flippers::before {\n  content: \"\\F0DBF\";\n}\n\n.mdi2-diving-helmet::before {\n  content: \"\\F0DC0\";\n}\n\n.mdi2-diving-scuba::before {\n  content: \"\\F1B77\";\n}\n\n.mdi2-diving-scuba-flag::before {\n  content: \"\\F0DC2\";\n}\n\n.mdi2-diving-scuba-mask::before {\n  content: \"\\F0DC1\";\n}\n\n.mdi2-diving-scuba-tank::before {\n  content: \"\\F0DC3\";\n}\n\n.mdi2-diving-scuba-tank-multiple::before {\n  content: \"\\F0DC4\";\n}\n\n.mdi2-diving-snorkel::before {\n  content: \"\\F0DC5\";\n}\n\n.mdi2-division::before {\n  content: \"\\F01D4\";\n}\n\n.mdi2-division-box::before {\n  content: \"\\F01D5\";\n}\n\n.mdi2-dlna::before {\n  content: \"\\F0A41\";\n}\n\n.mdi2-dna::before {\n  content: \"\\F0684\";\n}\n\n.mdi2-dns::before {\n  content: \"\\F01D6\";\n}\n\n.mdi2-dns-outline::before {\n  content: \"\\F0B8C\";\n}\n\n.mdi2-dock-bottom::before {\n  content: \"\\F10A9\";\n}\n\n.mdi2-dock-left::before {\n  content: \"\\F10AA\";\n}\n\n.mdi2-dock-right::before {\n  content: \"\\F10AB\";\n}\n\n.mdi2-dock-top::before {\n  content: \"\\F1513\";\n}\n\n.mdi2-dock-window::before {\n  content: \"\\F10AC\";\n}\n\n.mdi2-docker::before {\n  content: \"\\F0868\";\n}\n\n.mdi2-doctor::before {\n  content: \"\\F0A42\";\n}\n\n.mdi2-dog::before {\n  content: \"\\F0A43\";\n}\n\n.mdi2-dog-service::before {\n  content: \"\\F0AAD\";\n}\n\n.mdi2-dog-side::before {\n  content: \"\\F0A44\";\n}\n\n.mdi2-dog-side-off::before {\n  content: \"\\F16EE\";\n}\n\n.mdi2-dolby::before {\n  content: \"\\F06B3\";\n}\n\n.mdi2-dolly::before {\n  content: \"\\F0E9E\";\n}\n\n.mdi2-dolphin::before {\n  content: \"\\F18B4\";\n}\n\n.mdi2-domain::before {\n  content: \"\\F01D7\";\n}\n\n.mdi2-domain-off::before {\n  content: \"\\F0D6F\";\n}\n\n.mdi2-domain-plus::before {\n  content: \"\\F10AD\";\n}\n\n.mdi2-domain-remove::before {\n  content: \"\\F10AE\";\n}\n\n.mdi2-domain-switch::before {\n  content: \"\\F1C2C\";\n}\n\n.mdi2-dome-light::before {\n  content: \"\\F141E\";\n}\n\n.mdi2-domino-mask::before {\n  content: \"\\F1023\";\n}\n\n.mdi2-donkey::before {\n  content: \"\\F07C2\";\n}\n\n.mdi2-door::before {\n  content: \"\\F081A\";\n}\n\n.mdi2-door-closed::before {\n  content: \"\\F081B\";\n}\n\n.mdi2-door-closed-cancel::before {\n  content: \"\\F1C93\";\n}\n\n.mdi2-door-closed-lock::before {\n  content: \"\\F10AF\";\n}\n\n.mdi2-door-open::before {\n  content: \"\\F081C\";\n}\n\n.mdi2-door-sliding::before {\n  content: \"\\F181E\";\n}\n\n.mdi2-door-sliding-lock::before {\n  content: \"\\F181F\";\n}\n\n.mdi2-door-sliding-open::before {\n  content: \"\\F1820\";\n}\n\n.mdi2-doorbell::before {\n  content: \"\\F12E6\";\n}\n\n.mdi2-doorbell-video::before {\n  content: \"\\F0869\";\n}\n\n.mdi2-dot-net::before {\n  content: \"\\F0AAE\";\n}\n\n.mdi2-dots-circle::before {\n  content: \"\\F1978\";\n}\n\n.mdi2-dots-grid::before {\n  content: \"\\F15FC\";\n}\n\n.mdi2-dots-hexagon::before {\n  content: \"\\F15FF\";\n}\n\n.mdi2-dots-horizontal::before {\n  content: \"\\F01D8\";\n}\n\n.mdi2-dots-horizontal-circle::before {\n  content: \"\\F07C3\";\n}\n\n.mdi2-dots-horizontal-circle-outline::before {\n  content: \"\\F0B8D\";\n}\n\n.mdi2-dots-square::before {\n  content: \"\\F15FD\";\n}\n\n.mdi2-dots-triangle::before {\n  content: \"\\F15FE\";\n}\n\n.mdi2-dots-vertical::before {\n  content: \"\\F01D9\";\n}\n\n.mdi2-dots-vertical-circle::before {\n  content: \"\\F07C4\";\n}\n\n.mdi2-dots-vertical-circle-outline::before {\n  content: \"\\F0B8E\";\n}\n\n.mdi2-download::before {\n  content: \"\\F01DA\";\n}\n\n.mdi2-download-box::before {\n  content: \"\\F1462\";\n}\n\n.mdi2-download-box-outline::before {\n  content: \"\\F1463\";\n}\n\n.mdi2-download-circle::before {\n  content: \"\\F1464\";\n}\n\n.mdi2-download-circle-outline::before {\n  content: \"\\F1465\";\n}\n\n.mdi2-download-lock::before {\n  content: \"\\F1320\";\n}\n\n.mdi2-download-lock-outline::before {\n  content: \"\\F1321\";\n}\n\n.mdi2-download-multiple::before {\n  content: \"\\F09E9\";\n}\n\n.mdi2-download-multiple-outline::before {\n  content: \"\\F1CD0\";\n}\n\n.mdi2-download-network::before {\n  content: \"\\F06F4\";\n}\n\n.mdi2-download-network-outline::before {\n  content: \"\\F0C66\";\n}\n\n.mdi2-download-off::before {\n  content: \"\\F10B0\";\n}\n\n.mdi2-download-off-outline::before {\n  content: \"\\F10B1\";\n}\n\n.mdi2-download-outline::before {\n  content: \"\\F0B8F\";\n}\n\n.mdi2-drag::before {\n  content: \"\\F01DB\";\n}\n\n.mdi2-drag-horizontal::before {\n  content: \"\\F01DC\";\n}\n\n.mdi2-drag-horizontal-variant::before {\n  content: \"\\F12F0\";\n}\n\n.mdi2-drag-variant::before {\n  content: \"\\F0B90\";\n}\n\n.mdi2-drag-vertical::before {\n  content: \"\\F01DD\";\n}\n\n.mdi2-drag-vertical-variant::before {\n  content: \"\\F12F1\";\n}\n\n.mdi2-drama-masks::before {\n  content: \"\\F0D02\";\n}\n\n.mdi2-draw::before {\n  content: \"\\F0F49\";\n}\n\n.mdi2-draw-pen::before {\n  content: \"\\F19B9\";\n}\n\n.mdi2-drawing::before {\n  content: \"\\F01DE\";\n}\n\n.mdi2-drawing-box::before {\n  content: \"\\F01DF\";\n}\n\n.mdi2-dresser::before {\n  content: \"\\F0F4A\";\n}\n\n.mdi2-dresser-outline::before {\n  content: \"\\F0F4B\";\n}\n\n.mdi2-drone::before {\n  content: \"\\F01E2\";\n}\n\n.mdi2-dropbox::before {\n  content: \"\\F01E3\";\n}\n\n.mdi2-drupal::before {\n  content: \"\\F01E4\";\n}\n\n.mdi2-duck::before {\n  content: \"\\F01E5\";\n}\n\n.mdi2-dumbbell::before {\n  content: \"\\F01E6\";\n}\n\n.mdi2-dump-truck::before {\n  content: \"\\F0C67\";\n}\n\n.mdi2-ear-hearing::before {\n  content: \"\\F07C5\";\n}\n\n.mdi2-ear-hearing-loop::before {\n  content: \"\\F1AEE\";\n}\n\n.mdi2-ear-hearing-off::before {\n  content: \"\\F0A45\";\n}\n\n.mdi2-earbuds::before {\n  content: \"\\F184F\";\n}\n\n.mdi2-earbuds-off::before {\n  content: \"\\F1850\";\n}\n\n.mdi2-earbuds-off-outline::before {\n  content: \"\\F1851\";\n}\n\n.mdi2-earbuds-outline::before {\n  content: \"\\F1852\";\n}\n\n.mdi2-earth::before {\n  content: \"\\F01E7\";\n}\n\n.mdi2-earth-arrow-down::before {\n  content: \"\\F1C87\";\n}\n\n.mdi2-earth-arrow-left::before {\n  content: \"\\F1C88\";\n}\n\n.mdi2-earth-arrow-right::before {\n  content: \"\\F1311\";\n}\n\n.mdi2-earth-arrow-up::before {\n  content: \"\\F1C89\";\n}\n\n.mdi2-earth-box::before {\n  content: \"\\F06CD\";\n}\n\n.mdi2-earth-box-minus::before {\n  content: \"\\F1407\";\n}\n\n.mdi2-earth-box-off::before {\n  content: \"\\F06CE\";\n}\n\n.mdi2-earth-box-plus::before {\n  content: \"\\F1406\";\n}\n\n.mdi2-earth-box-remove::before {\n  content: \"\\F1408\";\n}\n\n.mdi2-earth-minus::before {\n  content: \"\\F1404\";\n}\n\n.mdi2-earth-off::before {\n  content: \"\\F01E8\";\n}\n\n.mdi2-earth-plus::before {\n  content: \"\\F1403\";\n}\n\n.mdi2-earth-remove::before {\n  content: \"\\F1405\";\n}\n\n.mdi2-egg::before {\n  content: \"\\F0AAF\";\n}\n\n.mdi2-egg-easter::before {\n  content: \"\\F0AB0\";\n}\n\n.mdi2-egg-fried::before {\n  content: \"\\F184A\";\n}\n\n.mdi2-egg-off::before {\n  content: \"\\F13F0\";\n}\n\n.mdi2-egg-off-outline::before {\n  content: \"\\F13F1\";\n}\n\n.mdi2-egg-outline::before {\n  content: \"\\F13F2\";\n}\n\n.mdi2-eiffel-tower::before {\n  content: \"\\F156B\";\n}\n\n.mdi2-eight-track::before {\n  content: \"\\F09EA\";\n}\n\n.mdi2-eject::before {\n  content: \"\\F01EA\";\n}\n\n.mdi2-eject-circle::before {\n  content: \"\\F1B23\";\n}\n\n.mdi2-eject-circle-outline::before {\n  content: \"\\F1B24\";\n}\n\n.mdi2-eject-outline::before {\n  content: \"\\F0B91\";\n}\n\n.mdi2-electric-switch::before {\n  content: \"\\F0E9F\";\n}\n\n.mdi2-electric-switch-closed::before {\n  content: \"\\F10D9\";\n}\n\n.mdi2-electron-framework::before {\n  content: \"\\F1024\";\n}\n\n.mdi2-elephant::before {\n  content: \"\\F07C6\";\n}\n\n.mdi2-elevation-decline::before {\n  content: \"\\F01EB\";\n}\n\n.mdi2-elevation-rise::before {\n  content: \"\\F01EC\";\n}\n\n.mdi2-elevator::before {\n  content: \"\\F01ED\";\n}\n\n.mdi2-elevator-down::before {\n  content: \"\\F12C2\";\n}\n\n.mdi2-elevator-passenger::before {\n  content: \"\\F1381\";\n}\n\n.mdi2-elevator-passenger-off::before {\n  content: \"\\F1979\";\n}\n\n.mdi2-elevator-passenger-off-outline::before {\n  content: \"\\F197A\";\n}\n\n.mdi2-elevator-passenger-outline::before {\n  content: \"\\F197B\";\n}\n\n.mdi2-elevator-up::before {\n  content: \"\\F12C1\";\n}\n\n.mdi2-ellipse::before {\n  content: \"\\F0EA0\";\n}\n\n.mdi2-ellipse-outline::before {\n  content: \"\\F0EA1\";\n}\n\n.mdi2-email::before {\n  content: \"\\F01EE\";\n}\n\n.mdi2-email-alert::before {\n  content: \"\\F06CF\";\n}\n\n.mdi2-email-alert-outline::before {\n  content: \"\\F0D42\";\n}\n\n.mdi2-email-arrow-left::before {\n  content: \"\\F10DA\";\n}\n\n.mdi2-email-arrow-left-outline::before {\n  content: \"\\F10DB\";\n}\n\n.mdi2-email-arrow-right::before {\n  content: \"\\F10DC\";\n}\n\n.mdi2-email-arrow-right-outline::before {\n  content: \"\\F10DD\";\n}\n\n.mdi2-email-box::before {\n  content: \"\\F0D03\";\n}\n\n.mdi2-email-check::before {\n  content: \"\\F0AB1\";\n}\n\n.mdi2-email-check-outline::before {\n  content: \"\\F0AB2\";\n}\n\n.mdi2-email-edit::before {\n  content: \"\\F0EE3\";\n}\n\n.mdi2-email-edit-outline::before {\n  content: \"\\F0EE4\";\n}\n\n.mdi2-email-fast::before {\n  content: \"\\F186F\";\n}\n\n.mdi2-email-fast-outline::before {\n  content: \"\\F1870\";\n}\n\n.mdi2-email-heart-outline::before {\n  content: \"\\F1C5B\";\n}\n\n.mdi2-email-lock::before {\n  content: \"\\F01F1\";\n}\n\n.mdi2-email-lock-outline::before {\n  content: \"\\F1B61\";\n}\n\n.mdi2-email-mark-as-unread::before {\n  content: \"\\F0B92\";\n}\n\n.mdi2-email-minus::before {\n  content: \"\\F0EE5\";\n}\n\n.mdi2-email-minus-outline::before {\n  content: \"\\F0EE6\";\n}\n\n.mdi2-email-multiple::before {\n  content: \"\\F0EE7\";\n}\n\n.mdi2-email-multiple-outline::before {\n  content: \"\\F0EE8\";\n}\n\n.mdi2-email-newsletter::before {\n  content: \"\\F0FB1\";\n}\n\n.mdi2-email-off::before {\n  content: \"\\F13E3\";\n}\n\n.mdi2-email-off-outline::before {\n  content: \"\\F13E4\";\n}\n\n.mdi2-email-open::before {\n  content: \"\\F01EF\";\n}\n\n.mdi2-email-open-heart-outline::before {\n  content: \"\\F1C5C\";\n}\n\n.mdi2-email-open-multiple::before {\n  content: \"\\F0EE9\";\n}\n\n.mdi2-email-open-multiple-outline::before {\n  content: \"\\F0EEA\";\n}\n\n.mdi2-email-open-outline::before {\n  content: \"\\F05EF\";\n}\n\n.mdi2-email-outline::before {\n  content: \"\\F01F0\";\n}\n\n.mdi2-email-plus::before {\n  content: \"\\F09EB\";\n}\n\n.mdi2-email-plus-outline::before {\n  content: \"\\F09EC\";\n}\n\n.mdi2-email-remove::before {\n  content: \"\\F1661\";\n}\n\n.mdi2-email-remove-outline::before {\n  content: \"\\F1662\";\n}\n\n.mdi2-email-seal::before {\n  content: \"\\F195B\";\n}\n\n.mdi2-email-seal-outline::before {\n  content: \"\\F195C\";\n}\n\n.mdi2-email-search::before {\n  content: \"\\F0961\";\n}\n\n.mdi2-email-search-outline::before {\n  content: \"\\F0962\";\n}\n\n.mdi2-email-sync::before {\n  content: \"\\F12C7\";\n}\n\n.mdi2-email-sync-outline::before {\n  content: \"\\F12C8\";\n}\n\n.mdi2-email-variant::before {\n  content: \"\\F05F0\";\n}\n\n.mdi2-ember::before {\n  content: \"\\F0B30\";\n}\n\n.mdi2-emby::before {\n  content: \"\\F06B4\";\n}\n\n.mdi2-emoticon::before {\n  content: \"\\F0C68\";\n}\n\n.mdi2-emoticon-angry::before {\n  content: \"\\F0C69\";\n}\n\n.mdi2-emoticon-angry-outline::before {\n  content: \"\\F0C6A\";\n}\n\n.mdi2-emoticon-confused::before {\n  content: \"\\F10DE\";\n}\n\n.mdi2-emoticon-confused-outline::before {\n  content: \"\\F10DF\";\n}\n\n.mdi2-emoticon-cool::before {\n  content: \"\\F0C6B\";\n}\n\n.mdi2-emoticon-cool-outline::before {\n  content: \"\\F01F3\";\n}\n\n.mdi2-emoticon-cry::before {\n  content: \"\\F0C6C\";\n}\n\n.mdi2-emoticon-cry-outline::before {\n  content: \"\\F0C6D\";\n}\n\n.mdi2-emoticon-dead::before {\n  content: \"\\F0C6E\";\n}\n\n.mdi2-emoticon-dead-outline::before {\n  content: \"\\F069B\";\n}\n\n.mdi2-emoticon-devil::before {\n  content: \"\\F0C6F\";\n}\n\n.mdi2-emoticon-devil-outline::before {\n  content: \"\\F01F4\";\n}\n\n.mdi2-emoticon-excited::before {\n  content: \"\\F0C70\";\n}\n\n.mdi2-emoticon-excited-outline::before {\n  content: \"\\F069C\";\n}\n\n.mdi2-emoticon-frown::before {\n  content: \"\\F0F4C\";\n}\n\n.mdi2-emoticon-frown-outline::before {\n  content: \"\\F0F4D\";\n}\n\n.mdi2-emoticon-happy::before {\n  content: \"\\F0C71\";\n}\n\n.mdi2-emoticon-happy-outline::before {\n  content: \"\\F01F5\";\n}\n\n.mdi2-emoticon-kiss::before {\n  content: \"\\F0C72\";\n}\n\n.mdi2-emoticon-kiss-outline::before {\n  content: \"\\F0C73\";\n}\n\n.mdi2-emoticon-lol::before {\n  content: \"\\F1214\";\n}\n\n.mdi2-emoticon-lol-outline::before {\n  content: \"\\F1215\";\n}\n\n.mdi2-emoticon-minus::before {\n  content: \"\\F1CB2\";\n}\n\n.mdi2-emoticon-minus-outline::before {\n  content: \"\\F1CB3\";\n}\n\n.mdi2-emoticon-neutral::before {\n  content: \"\\F0C74\";\n}\n\n.mdi2-emoticon-neutral-outline::before {\n  content: \"\\F01F6\";\n}\n\n.mdi2-emoticon-outline::before {\n  content: \"\\F01F2\";\n}\n\n.mdi2-emoticon-plus::before {\n  content: \"\\F1CB4\";\n}\n\n.mdi2-emoticon-plus-outline::before {\n  content: \"\\F1CB5\";\n}\n\n.mdi2-emoticon-poop::before {\n  content: \"\\F01F7\";\n}\n\n.mdi2-emoticon-poop-outline::before {\n  content: \"\\F0C75\";\n}\n\n.mdi2-emoticon-remove::before {\n  content: \"\\F1CB6\";\n}\n\n.mdi2-emoticon-remove-outline::before {\n  content: \"\\F1CB7\";\n}\n\n.mdi2-emoticon-sad::before {\n  content: \"\\F0C76\";\n}\n\n.mdi2-emoticon-sad-outline::before {\n  content: \"\\F01F8\";\n}\n\n.mdi2-emoticon-sick::before {\n  content: \"\\F157C\";\n}\n\n.mdi2-emoticon-sick-outline::before {\n  content: \"\\F157D\";\n}\n\n.mdi2-emoticon-tongue::before {\n  content: \"\\F01F9\";\n}\n\n.mdi2-emoticon-tongue-outline::before {\n  content: \"\\F0C77\";\n}\n\n.mdi2-emoticon-wink::before {\n  content: \"\\F0C78\";\n}\n\n.mdi2-emoticon-wink-outline::before {\n  content: \"\\F0C79\";\n}\n\n.mdi2-engine::before {\n  content: \"\\F01FA\";\n}\n\n.mdi2-engine-off::before {\n  content: \"\\F0A46\";\n}\n\n.mdi2-engine-off-outline::before {\n  content: \"\\F0A47\";\n}\n\n.mdi2-engine-outline::before {\n  content: \"\\F01FB\";\n}\n\n.mdi2-epsilon::before {\n  content: \"\\F10E0\";\n}\n\n.mdi2-equal::before {\n  content: \"\\F01FC\";\n}\n\n.mdi2-equal-box::before {\n  content: \"\\F01FD\";\n}\n\n.mdi2-equalizer::before {\n  content: \"\\F0EA2\";\n}\n\n.mdi2-equalizer-outline::before {\n  content: \"\\F0EA3\";\n}\n\n.mdi2-eraser::before {\n  content: \"\\F01FE\";\n}\n\n.mdi2-eraser-variant::before {\n  content: \"\\F0642\";\n}\n\n.mdi2-escalator::before {\n  content: \"\\F01FF\";\n}\n\n.mdi2-escalator-box::before {\n  content: \"\\F1399\";\n}\n\n.mdi2-escalator-down::before {\n  content: \"\\F12C0\";\n}\n\n.mdi2-escalator-up::before {\n  content: \"\\F12BF\";\n}\n\n.mdi2-eslint::before {\n  content: \"\\F0C7A\";\n}\n\n.mdi2-et::before {\n  content: \"\\F0AB3\";\n}\n\n.mdi2-ethereum::before {\n  content: \"\\F086A\";\n}\n\n.mdi2-ethernet::before {\n  content: \"\\F0200\";\n}\n\n.mdi2-ethernet-cable::before {\n  content: \"\\F0201\";\n}\n\n.mdi2-ethernet-cable-off::before {\n  content: \"\\F0202\";\n}\n\n.mdi2-ethernet-off::before {\n  content: \"\\F1CD1\";\n}\n\n.mdi2-ev-plug-ccs1::before {\n  content: \"\\F1519\";\n}\n\n.mdi2-ev-plug-ccs2::before {\n  content: \"\\F151A\";\n}\n\n.mdi2-ev-plug-chademo::before {\n  content: \"\\F151B\";\n}\n\n.mdi2-ev-plug-tesla::before {\n  content: \"\\F151C\";\n}\n\n.mdi2-ev-plug-type1::before {\n  content: \"\\F151D\";\n}\n\n.mdi2-ev-plug-type2::before {\n  content: \"\\F151E\";\n}\n\n.mdi2-ev-station::before {\n  content: \"\\F05F1\";\n}\n\n.mdi2-evernote::before {\n  content: \"\\F0204\";\n}\n\n.mdi2-excavator::before {\n  content: \"\\F1025\";\n}\n\n.mdi2-exclamation::before {\n  content: \"\\F0205\";\n}\n\n.mdi2-exclamation-thick::before {\n  content: \"\\F1238\";\n}\n\n.mdi2-exit-run::before {\n  content: \"\\F0A48\";\n}\n\n.mdi2-exit-to-app::before {\n  content: \"\\F0206\";\n}\n\n.mdi2-expand-all::before {\n  content: \"\\F0AB4\";\n}\n\n.mdi2-expand-all-outline::before {\n  content: \"\\F0AB5\";\n}\n\n.mdi2-expansion-card::before {\n  content: \"\\F08AE\";\n}\n\n.mdi2-expansion-card-variant::before {\n  content: \"\\F0FB2\";\n}\n\n.mdi2-exponent::before {\n  content: \"\\F0963\";\n}\n\n.mdi2-exponent-box::before {\n  content: \"\\F0964\";\n}\n\n.mdi2-export::before {\n  content: \"\\F0207\";\n}\n\n.mdi2-export-variant::before {\n  content: \"\\F0B93\";\n}\n\n.mdi2-eye::before {\n  content: \"\\F0208\";\n}\n\n.mdi2-eye-arrow-left::before {\n  content: \"\\F18FD\";\n}\n\n.mdi2-eye-arrow-left-outline::before {\n  content: \"\\F18FE\";\n}\n\n.mdi2-eye-arrow-right::before {\n  content: \"\\F18FF\";\n}\n\n.mdi2-eye-arrow-right-outline::before {\n  content: \"\\F1900\";\n}\n\n.mdi2-eye-check::before {\n  content: \"\\F0D04\";\n}\n\n.mdi2-eye-check-outline::before {\n  content: \"\\F0D05\";\n}\n\n.mdi2-eye-circle::before {\n  content: \"\\F0B94\";\n}\n\n.mdi2-eye-circle-outline::before {\n  content: \"\\F0B95\";\n}\n\n.mdi2-eye-closed::before {\n  content: \"\\F1CA3\";\n}\n\n.mdi2-eye-lock::before {\n  content: \"\\F1C06\";\n}\n\n.mdi2-eye-lock-open::before {\n  content: \"\\F1C07\";\n}\n\n.mdi2-eye-lock-open-outline::before {\n  content: \"\\F1C08\";\n}\n\n.mdi2-eye-lock-outline::before {\n  content: \"\\F1C09\";\n}\n\n.mdi2-eye-minus::before {\n  content: \"\\F1026\";\n}\n\n.mdi2-eye-minus-outline::before {\n  content: \"\\F1027\";\n}\n\n.mdi2-eye-off::before {\n  content: \"\\F0209\";\n}\n\n.mdi2-eye-off-outline::before {\n  content: \"\\F06D1\";\n}\n\n.mdi2-eye-outline::before {\n  content: \"\\F06D0\";\n}\n\n.mdi2-eye-plus::before {\n  content: \"\\F086B\";\n}\n\n.mdi2-eye-plus-outline::before {\n  content: \"\\F086C\";\n}\n\n.mdi2-eye-refresh::before {\n  content: \"\\F197C\";\n}\n\n.mdi2-eye-refresh-outline::before {\n  content: \"\\F197D\";\n}\n\n.mdi2-eye-remove::before {\n  content: \"\\F15E3\";\n}\n\n.mdi2-eye-remove-outline::before {\n  content: \"\\F15E4\";\n}\n\n.mdi2-eye-settings::before {\n  content: \"\\F086D\";\n}\n\n.mdi2-eye-settings-outline::before {\n  content: \"\\F086E\";\n}\n\n.mdi2-eyedropper::before {\n  content: \"\\F020A\";\n}\n\n.mdi2-eyedropper-minus::before {\n  content: \"\\F13DD\";\n}\n\n.mdi2-eyedropper-off::before {\n  content: \"\\F13DF\";\n}\n\n.mdi2-eyedropper-plus::before {\n  content: \"\\F13DC\";\n}\n\n.mdi2-eyedropper-remove::before {\n  content: \"\\F13DE\";\n}\n\n.mdi2-eyedropper-variant::before {\n  content: \"\\F020B\";\n}\n\n.mdi2-face-agent::before {\n  content: \"\\F0D70\";\n}\n\n.mdi2-face-man::before {\n  content: \"\\F0643\";\n}\n\n.mdi2-face-man-outline::before {\n  content: \"\\F0B96\";\n}\n\n.mdi2-face-man-profile::before {\n  content: \"\\F0644\";\n}\n\n.mdi2-face-man-shimmer::before {\n  content: \"\\F15CC\";\n}\n\n.mdi2-face-man-shimmer-outline::before {\n  content: \"\\F15CD\";\n}\n\n.mdi2-face-mask::before {\n  content: \"\\F1586\";\n}\n\n.mdi2-face-mask-outline::before {\n  content: \"\\F1587\";\n}\n\n.mdi2-face-recognition::before {\n  content: \"\\F0C7B\";\n}\n\n.mdi2-face-woman::before {\n  content: \"\\F1077\";\n}\n\n.mdi2-face-woman-outline::before {\n  content: \"\\F1078\";\n}\n\n.mdi2-face-woman-profile::before {\n  content: \"\\F1076\";\n}\n\n.mdi2-face-woman-shimmer::before {\n  content: \"\\F15CE\";\n}\n\n.mdi2-face-woman-shimmer-outline::before {\n  content: \"\\F15CF\";\n}\n\n.mdi2-facebook::before {\n  content: \"\\F020C\";\n}\n\n.mdi2-facebook-gaming::before {\n  content: \"\\F07DD\";\n}\n\n.mdi2-facebook-messenger::before {\n  content: \"\\F020E\";\n}\n\n.mdi2-facebook-workplace::before {\n  content: \"\\F0B31\";\n}\n\n.mdi2-factory::before {\n  content: \"\\F020F\";\n}\n\n.mdi2-family-tree::before {\n  content: \"\\F160E\";\n}\n\n.mdi2-fan::before {\n  content: \"\\F0210\";\n}\n\n.mdi2-fan-alert::before {\n  content: \"\\F146C\";\n}\n\n.mdi2-fan-auto::before {\n  content: \"\\F171D\";\n}\n\n.mdi2-fan-chevron-down::before {\n  content: \"\\F146D\";\n}\n\n.mdi2-fan-chevron-up::before {\n  content: \"\\F146E\";\n}\n\n.mdi2-fan-clock::before {\n  content: \"\\F1A3A\";\n}\n\n.mdi2-fan-minus::before {\n  content: \"\\F1470\";\n}\n\n.mdi2-fan-off::before {\n  content: \"\\F081D\";\n}\n\n.mdi2-fan-plus::before {\n  content: \"\\F146F\";\n}\n\n.mdi2-fan-remove::before {\n  content: \"\\F1471\";\n}\n\n.mdi2-fan-speed-1::before {\n  content: \"\\F1472\";\n}\n\n.mdi2-fan-speed-2::before {\n  content: \"\\F1473\";\n}\n\n.mdi2-fan-speed-3::before {\n  content: \"\\F1474\";\n}\n\n.mdi2-fast-forward::before {\n  content: \"\\F0211\";\n}\n\n.mdi2-fast-forward-10::before {\n  content: \"\\F0D71\";\n}\n\n.mdi2-fast-forward-15::before {\n  content: \"\\F193A\";\n}\n\n.mdi2-fast-forward-30::before {\n  content: \"\\F0D06\";\n}\n\n.mdi2-fast-forward-45::before {\n  content: \"\\F1B12\";\n}\n\n.mdi2-fast-forward-5::before {\n  content: \"\\F11F8\";\n}\n\n.mdi2-fast-forward-60::before {\n  content: \"\\F160B\";\n}\n\n.mdi2-fast-forward-outline::before {\n  content: \"\\F06D2\";\n}\n\n.mdi2-faucet::before {\n  content: \"\\F1B29\";\n}\n\n.mdi2-faucet-variant::before {\n  content: \"\\F1B2A\";\n}\n\n.mdi2-fax::before {\n  content: \"\\F0212\";\n}\n\n.mdi2-feather::before {\n  content: \"\\F06D3\";\n}\n\n.mdi2-feature-search::before {\n  content: \"\\F0A49\";\n}\n\n.mdi2-feature-search-outline::before {\n  content: \"\\F0A4A\";\n}\n\n.mdi2-fedora::before {\n  content: \"\\F08DB\";\n}\n\n.mdi2-fence::before {\n  content: \"\\F179A\";\n}\n\n.mdi2-fence-electric::before {\n  content: \"\\F17F6\";\n}\n\n.mdi2-fencing::before {\n  content: \"\\F14C1\";\n}\n\n.mdi2-ferris-wheel::before {\n  content: \"\\F0EA4\";\n}\n\n.mdi2-ferry::before {\n  content: \"\\F0213\";\n}\n\n.mdi2-file::before {\n  content: \"\\F0214\";\n}\n\n.mdi2-file-account::before {\n  content: \"\\F073B\";\n}\n\n.mdi2-file-account-outline::before {\n  content: \"\\F1028\";\n}\n\n.mdi2-file-alert::before {\n  content: \"\\F0A4B\";\n}\n\n.mdi2-file-alert-outline::before {\n  content: \"\\F0A4C\";\n}\n\n.mdi2-file-arrow-left-right::before {\n  content: \"\\F1A93\";\n}\n\n.mdi2-file-arrow-left-right-outline::before {\n  content: \"\\F1A94\";\n}\n\n.mdi2-file-arrow-up-down::before {\n  content: \"\\F1A95\";\n}\n\n.mdi2-file-arrow-up-down-outline::before {\n  content: \"\\F1A96\";\n}\n\n.mdi2-file-cabinet::before {\n  content: \"\\F0AB6\";\n}\n\n.mdi2-file-cad::before {\n  content: \"\\F0EEB\";\n}\n\n.mdi2-file-cad-box::before {\n  content: \"\\F0EEC\";\n}\n\n.mdi2-file-cancel::before {\n  content: \"\\F0DC6\";\n}\n\n.mdi2-file-cancel-outline::before {\n  content: \"\\F0DC7\";\n}\n\n.mdi2-file-certificate::before {\n  content: \"\\F1186\";\n}\n\n.mdi2-file-certificate-outline::before {\n  content: \"\\F1187\";\n}\n\n.mdi2-file-chart::before {\n  content: \"\\F0215\";\n}\n\n.mdi2-file-chart-check::before {\n  content: \"\\F19C6\";\n}\n\n.mdi2-file-chart-check-outline::before {\n  content: \"\\F19C7\";\n}\n\n.mdi2-file-chart-outline::before {\n  content: \"\\F1029\";\n}\n\n.mdi2-file-check::before {\n  content: \"\\F0216\";\n}\n\n.mdi2-file-check-outline::before {\n  content: \"\\F0E29\";\n}\n\n.mdi2-file-clock::before {\n  content: \"\\F12E1\";\n}\n\n.mdi2-file-clock-outline::before {\n  content: \"\\F12E2\";\n}\n\n.mdi2-file-cloud::before {\n  content: \"\\F0217\";\n}\n\n.mdi2-file-cloud-outline::before {\n  content: \"\\F102A\";\n}\n\n.mdi2-file-code::before {\n  content: \"\\F022E\";\n}\n\n.mdi2-file-code-outline::before {\n  content: \"\\F102B\";\n}\n\n.mdi2-file-cog::before {\n  content: \"\\F107B\";\n}\n\n.mdi2-file-cog-outline::before {\n  content: \"\\F107C\";\n}\n\n.mdi2-file-compare::before {\n  content: \"\\F08AA\";\n}\n\n.mdi2-file-delimited::before {\n  content: \"\\F0218\";\n}\n\n.mdi2-file-delimited-outline::before {\n  content: \"\\F0EA5\";\n}\n\n.mdi2-file-document::before {\n  content: \"\\F0219\";\n}\n\n.mdi2-file-document-alert::before {\n  content: \"\\F1A97\";\n}\n\n.mdi2-file-document-alert-outline::before {\n  content: \"\\F1A98\";\n}\n\n.mdi2-file-document-arrow-right::before {\n  content: \"\\F1C0F\";\n}\n\n.mdi2-file-document-arrow-right-outline::before {\n  content: \"\\F1C10\";\n}\n\n.mdi2-file-document-check::before {\n  content: \"\\F1A99\";\n}\n\n.mdi2-file-document-check-outline::before {\n  content: \"\\F1A9A\";\n}\n\n.mdi2-file-document-edit::before {\n  content: \"\\F0DC8\";\n}\n\n.mdi2-file-document-edit-outline::before {\n  content: \"\\F0DC9\";\n}\n\n.mdi2-file-document-minus::before {\n  content: \"\\F1A9B\";\n}\n\n.mdi2-file-document-minus-outline::before {\n  content: \"\\F1A9C\";\n}\n\n.mdi2-file-document-multiple::before {\n  content: \"\\F1517\";\n}\n\n.mdi2-file-document-multiple-outline::before {\n  content: \"\\F1518\";\n}\n\n.mdi2-file-document-outline::before {\n  content: \"\\F09EE\";\n}\n\n.mdi2-file-document-plus::before {\n  content: \"\\F1A9D\";\n}\n\n.mdi2-file-document-plus-outline::before {\n  content: \"\\F1A9E\";\n}\n\n.mdi2-file-document-refresh::before {\n  content: \"\\F1C7A\";\n}\n\n.mdi2-file-document-refresh-outline::before {\n  content: \"\\F1C7B\";\n}\n\n.mdi2-file-document-remove::before {\n  content: \"\\F1A9F\";\n}\n\n.mdi2-file-document-remove-outline::before {\n  content: \"\\F1AA0\";\n}\n\n.mdi2-file-download::before {\n  content: \"\\F0965\";\n}\n\n.mdi2-file-download-outline::before {\n  content: \"\\F0966\";\n}\n\n.mdi2-file-edit::before {\n  content: \"\\F11E7\";\n}\n\n.mdi2-file-edit-outline::before {\n  content: \"\\F11E8\";\n}\n\n.mdi2-file-excel::before {\n  content: \"\\F021B\";\n}\n\n.mdi2-file-excel-box::before {\n  content: \"\\F021C\";\n}\n\n.mdi2-file-excel-box-outline::before {\n  content: \"\\F102C\";\n}\n\n.mdi2-file-excel-outline::before {\n  content: \"\\F102D\";\n}\n\n.mdi2-file-export::before {\n  content: \"\\F021D\";\n}\n\n.mdi2-file-export-outline::before {\n  content: \"\\F102E\";\n}\n\n.mdi2-file-eye::before {\n  content: \"\\F0DCA\";\n}\n\n.mdi2-file-eye-outline::before {\n  content: \"\\F0DCB\";\n}\n\n.mdi2-file-find::before {\n  content: \"\\F021E\";\n}\n\n.mdi2-file-find-outline::before {\n  content: \"\\F0B97\";\n}\n\n.mdi2-file-gif-box::before {\n  content: \"\\F0D78\";\n}\n\n.mdi2-file-hidden::before {\n  content: \"\\F0613\";\n}\n\n.mdi2-file-image::before {\n  content: \"\\F021F\";\n}\n\n.mdi2-file-image-marker::before {\n  content: \"\\F1772\";\n}\n\n.mdi2-file-image-marker-outline::before {\n  content: \"\\F1773\";\n}\n\n.mdi2-file-image-minus::before {\n  content: \"\\F193B\";\n}\n\n.mdi2-file-image-minus-outline::before {\n  content: \"\\F193C\";\n}\n\n.mdi2-file-image-outline::before {\n  content: \"\\F0EB0\";\n}\n\n.mdi2-file-image-plus::before {\n  content: \"\\F193D\";\n}\n\n.mdi2-file-image-plus-outline::before {\n  content: \"\\F193E\";\n}\n\n.mdi2-file-image-remove::before {\n  content: \"\\F193F\";\n}\n\n.mdi2-file-image-remove-outline::before {\n  content: \"\\F1940\";\n}\n\n.mdi2-file-import::before {\n  content: \"\\F0220\";\n}\n\n.mdi2-file-import-outline::before {\n  content: \"\\F102F\";\n}\n\n.mdi2-file-jpg-box::before {\n  content: \"\\F0225\";\n}\n\n.mdi2-file-key::before {\n  content: \"\\F1184\";\n}\n\n.mdi2-file-key-outline::before {\n  content: \"\\F1185\";\n}\n\n.mdi2-file-link::before {\n  content: \"\\F1177\";\n}\n\n.mdi2-file-link-outline::before {\n  content: \"\\F1178\";\n}\n\n.mdi2-file-lock::before {\n  content: \"\\F0221\";\n}\n\n.mdi2-file-lock-open::before {\n  content: \"\\F19C8\";\n}\n\n.mdi2-file-lock-open-outline::before {\n  content: \"\\F19C9\";\n}\n\n.mdi2-file-lock-outline::before {\n  content: \"\\F1030\";\n}\n\n.mdi2-file-marker::before {\n  content: \"\\F1774\";\n}\n\n.mdi2-file-marker-outline::before {\n  content: \"\\F1775\";\n}\n\n.mdi2-file-minus::before {\n  content: \"\\F1AA1\";\n}\n\n.mdi2-file-minus-outline::before {\n  content: \"\\F1AA2\";\n}\n\n.mdi2-file-move::before {\n  content: \"\\F0AB9\";\n}\n\n.mdi2-file-move-outline::before {\n  content: \"\\F1031\";\n}\n\n.mdi2-file-multiple::before {\n  content: \"\\F0222\";\n}\n\n.mdi2-file-multiple-outline::before {\n  content: \"\\F1032\";\n}\n\n.mdi2-file-music::before {\n  content: \"\\F0223\";\n}\n\n.mdi2-file-music-outline::before {\n  content: \"\\F0E2A\";\n}\n\n.mdi2-file-outline::before {\n  content: \"\\F0224\";\n}\n\n.mdi2-file-pdf-box::before {\n  content: \"\\F0226\";\n}\n\n.mdi2-file-percent::before {\n  content: \"\\F081E\";\n}\n\n.mdi2-file-percent-outline::before {\n  content: \"\\F1033\";\n}\n\n.mdi2-file-phone::before {\n  content: \"\\F1179\";\n}\n\n.mdi2-file-phone-outline::before {\n  content: \"\\F117A\";\n}\n\n.mdi2-file-plus::before {\n  content: \"\\F0752\";\n}\n\n.mdi2-file-plus-outline::before {\n  content: \"\\F0EED\";\n}\n\n.mdi2-file-png-box::before {\n  content: \"\\F0E2D\";\n}\n\n.mdi2-file-powerpoint::before {\n  content: \"\\F0227\";\n}\n\n.mdi2-file-powerpoint-box::before {\n  content: \"\\F0228\";\n}\n\n.mdi2-file-powerpoint-box-outline::before {\n  content: \"\\F1034\";\n}\n\n.mdi2-file-powerpoint-outline::before {\n  content: \"\\F1035\";\n}\n\n.mdi2-file-presentation-box::before {\n  content: \"\\F0229\";\n}\n\n.mdi2-file-question::before {\n  content: \"\\F086F\";\n}\n\n.mdi2-file-question-outline::before {\n  content: \"\\F1036\";\n}\n\n.mdi2-file-refresh::before {\n  content: \"\\F0918\";\n}\n\n.mdi2-file-refresh-outline::before {\n  content: \"\\F0541\";\n}\n\n.mdi2-file-remove::before {\n  content: \"\\F0B98\";\n}\n\n.mdi2-file-remove-outline::before {\n  content: \"\\F1037\";\n}\n\n.mdi2-file-replace::before {\n  content: \"\\F0B32\";\n}\n\n.mdi2-file-replace-outline::before {\n  content: \"\\F0B33\";\n}\n\n.mdi2-file-restore::before {\n  content: \"\\F0670\";\n}\n\n.mdi2-file-restore-outline::before {\n  content: \"\\F1038\";\n}\n\n.mdi2-file-rotate-left::before {\n  content: \"\\F1A3B\";\n}\n\n.mdi2-file-rotate-left-outline::before {\n  content: \"\\F1A3C\";\n}\n\n.mdi2-file-rotate-right::before {\n  content: \"\\F1A3D\";\n}\n\n.mdi2-file-rotate-right-outline::before {\n  content: \"\\F1A3E\";\n}\n\n.mdi2-file-search::before {\n  content: \"\\F0C7C\";\n}\n\n.mdi2-file-search-outline::before {\n  content: \"\\F0C7D\";\n}\n\n.mdi2-file-send::before {\n  content: \"\\F022A\";\n}\n\n.mdi2-file-send-outline::before {\n  content: \"\\F1039\";\n}\n\n.mdi2-file-settings::before {\n  content: \"\\F1079\";\n}\n\n.mdi2-file-settings-outline::before {\n  content: \"\\F107A\";\n}\n\n.mdi2-file-sign::before {\n  content: \"\\F19C3\";\n}\n\n.mdi2-file-star::before {\n  content: \"\\F103A\";\n}\n\n.mdi2-file-star-four-points::before {\n  content: \"\\F1C2D\";\n}\n\n.mdi2-file-star-four-points-outline::before {\n  content: \"\\F1C2E\";\n}\n\n.mdi2-file-star-outline::before {\n  content: \"\\F103B\";\n}\n\n.mdi2-file-swap::before {\n  content: \"\\F0FB4\";\n}\n\n.mdi2-file-swap-outline::before {\n  content: \"\\F0FB5\";\n}\n\n.mdi2-file-sync::before {\n  content: \"\\F1216\";\n}\n\n.mdi2-file-sync-outline::before {\n  content: \"\\F1217\";\n}\n\n.mdi2-file-table::before {\n  content: \"\\F0C7E\";\n}\n\n.mdi2-file-table-box::before {\n  content: \"\\F10E1\";\n}\n\n.mdi2-file-table-box-multiple::before {\n  content: \"\\F10E2\";\n}\n\n.mdi2-file-table-box-multiple-outline::before {\n  content: \"\\F10E3\";\n}\n\n.mdi2-file-table-box-outline::before {\n  content: \"\\F10E4\";\n}\n\n.mdi2-file-table-outline::before {\n  content: \"\\F0C7F\";\n}\n\n.mdi2-file-tree::before {\n  content: \"\\F0645\";\n}\n\n.mdi2-file-tree-outline::before {\n  content: \"\\F13D2\";\n}\n\n.mdi2-file-undo::before {\n  content: \"\\F08DC\";\n}\n\n.mdi2-file-undo-outline::before {\n  content: \"\\F103C\";\n}\n\n.mdi2-file-upload::before {\n  content: \"\\F0A4D\";\n}\n\n.mdi2-file-upload-outline::before {\n  content: \"\\F0A4E\";\n}\n\n.mdi2-file-video::before {\n  content: \"\\F022B\";\n}\n\n.mdi2-file-video-outline::before {\n  content: \"\\F0E2C\";\n}\n\n.mdi2-file-word::before {\n  content: \"\\F022C\";\n}\n\n.mdi2-file-word-box::before {\n  content: \"\\F022D\";\n}\n\n.mdi2-file-word-box-outline::before {\n  content: \"\\F103D\";\n}\n\n.mdi2-file-word-outline::before {\n  content: \"\\F103E\";\n}\n\n.mdi2-file-xml-box::before {\n  content: \"\\F1B4B\";\n}\n\n.mdi2-film::before {\n  content: \"\\F022F\";\n}\n\n.mdi2-filmstrip::before {\n  content: \"\\F0230\";\n}\n\n.mdi2-filmstrip-box::before {\n  content: \"\\F0332\";\n}\n\n.mdi2-filmstrip-box-multiple::before {\n  content: \"\\F0D18\";\n}\n\n.mdi2-filmstrip-off::before {\n  content: \"\\F0231\";\n}\n\n.mdi2-filter::before {\n  content: \"\\F0232\";\n}\n\n.mdi2-filter-check::before {\n  content: \"\\F18EC\";\n}\n\n.mdi2-filter-check-outline::before {\n  content: \"\\F18ED\";\n}\n\n.mdi2-filter-cog::before {\n  content: \"\\F1AA3\";\n}\n\n.mdi2-filter-cog-outline::before {\n  content: \"\\F1AA4\";\n}\n\n.mdi2-filter-menu::before {\n  content: \"\\F10E5\";\n}\n\n.mdi2-filter-menu-outline::before {\n  content: \"\\F10E6\";\n}\n\n.mdi2-filter-minus::before {\n  content: \"\\F0EEE\";\n}\n\n.mdi2-filter-minus-outline::before {\n  content: \"\\F0EEF\";\n}\n\n.mdi2-filter-multiple::before {\n  content: \"\\F1A3F\";\n}\n\n.mdi2-filter-multiple-outline::before {\n  content: \"\\F1A40\";\n}\n\n.mdi2-filter-off::before {\n  content: \"\\F14EF\";\n}\n\n.mdi2-filter-off-outline::before {\n  content: \"\\F14F0\";\n}\n\n.mdi2-filter-outline::before {\n  content: \"\\F0233\";\n}\n\n.mdi2-filter-plus::before {\n  content: \"\\F0EF0\";\n}\n\n.mdi2-filter-plus-outline::before {\n  content: \"\\F0EF1\";\n}\n\n.mdi2-filter-remove::before {\n  content: \"\\F0234\";\n}\n\n.mdi2-filter-remove-outline::before {\n  content: \"\\F0235\";\n}\n\n.mdi2-filter-settings::before {\n  content: \"\\F1AA5\";\n}\n\n.mdi2-filter-settings-outline::before {\n  content: \"\\F1AA6\";\n}\n\n.mdi2-filter-variant::before {\n  content: \"\\F0236\";\n}\n\n.mdi2-filter-variant-minus::before {\n  content: \"\\F1112\";\n}\n\n.mdi2-filter-variant-plus::before {\n  content: \"\\F1113\";\n}\n\n.mdi2-filter-variant-remove::before {\n  content: \"\\F103F\";\n}\n\n.mdi2-finance::before {\n  content: \"\\F081F\";\n}\n\n.mdi2-find-replace::before {\n  content: \"\\F06D4\";\n}\n\n.mdi2-fingerprint::before {\n  content: \"\\F0237\";\n}\n\n.mdi2-fingerprint-off::before {\n  content: \"\\F0EB1\";\n}\n\n.mdi2-fire::before {\n  content: \"\\F0238\";\n}\n\n.mdi2-fire-alert::before {\n  content: \"\\F15D7\";\n}\n\n.mdi2-fire-circle::before {\n  content: \"\\F1807\";\n}\n\n.mdi2-fire-extinguisher::before {\n  content: \"\\F0EF2\";\n}\n\n.mdi2-fire-hydrant::before {\n  content: \"\\F1137\";\n}\n\n.mdi2-fire-hydrant-alert::before {\n  content: \"\\F1138\";\n}\n\n.mdi2-fire-hydrant-off::before {\n  content: \"\\F1139\";\n}\n\n.mdi2-fire-off::before {\n  content: \"\\F1722\";\n}\n\n.mdi2-fire-station::before {\n  content: \"\\F1CC3\";\n}\n\n.mdi2-fire-truck::before {\n  content: \"\\F08AB\";\n}\n\n.mdi2-firebase::before {\n  content: \"\\F0967\";\n}\n\n.mdi2-firefox::before {\n  content: \"\\F0239\";\n}\n\n.mdi2-fireplace::before {\n  content: \"\\F0E2E\";\n}\n\n.mdi2-fireplace-off::before {\n  content: \"\\F0E2F\";\n}\n\n.mdi2-firewire::before {\n  content: \"\\F05BE\";\n}\n\n.mdi2-firework::before {\n  content: \"\\F0E30\";\n}\n\n.mdi2-firework-off::before {\n  content: \"\\F1723\";\n}\n\n.mdi2-fish::before {\n  content: \"\\F023A\";\n}\n\n.mdi2-fish-off::before {\n  content: \"\\F13F3\";\n}\n\n.mdi2-fishbowl::before {\n  content: \"\\F0EF3\";\n}\n\n.mdi2-fishbowl-outline::before {\n  content: \"\\F0EF4\";\n}\n\n.mdi2-fit-to-page::before {\n  content: \"\\F0EF5\";\n}\n\n.mdi2-fit-to-page-outline::before {\n  content: \"\\F0EF6\";\n}\n\n.mdi2-fit-to-screen::before {\n  content: \"\\F18F4\";\n}\n\n.mdi2-fit-to-screen-outline::before {\n  content: \"\\F18F5\";\n}\n\n.mdi2-flag::before {\n  content: \"\\F023B\";\n}\n\n.mdi2-flag-checkered::before {\n  content: \"\\F023C\";\n}\n\n.mdi2-flag-minus::before {\n  content: \"\\F0B99\";\n}\n\n.mdi2-flag-minus-outline::before {\n  content: \"\\F10B2\";\n}\n\n.mdi2-flag-off::before {\n  content: \"\\F18EE\";\n}\n\n.mdi2-flag-off-outline::before {\n  content: \"\\F18EF\";\n}\n\n.mdi2-flag-outline::before {\n  content: \"\\F023D\";\n}\n\n.mdi2-flag-plus::before {\n  content: \"\\F0B9A\";\n}\n\n.mdi2-flag-plus-outline::before {\n  content: \"\\F10B3\";\n}\n\n.mdi2-flag-remove::before {\n  content: \"\\F0B9B\";\n}\n\n.mdi2-flag-remove-outline::before {\n  content: \"\\F10B4\";\n}\n\n.mdi2-flag-triangle::before {\n  content: \"\\F023F\";\n}\n\n.mdi2-flag-variant::before {\n  content: \"\\F0240\";\n}\n\n.mdi2-flag-variant-minus::before {\n  content: \"\\F1BB4\";\n}\n\n.mdi2-flag-variant-minus-outline::before {\n  content: \"\\F1BB5\";\n}\n\n.mdi2-flag-variant-off::before {\n  content: \"\\F1BB0\";\n}\n\n.mdi2-flag-variant-off-outline::before {\n  content: \"\\F1BB1\";\n}\n\n.mdi2-flag-variant-outline::before {\n  content: \"\\F023E\";\n}\n\n.mdi2-flag-variant-plus::before {\n  content: \"\\F1BB2\";\n}\n\n.mdi2-flag-variant-plus-outline::before {\n  content: \"\\F1BB3\";\n}\n\n.mdi2-flag-variant-remove::before {\n  content: \"\\F1BB6\";\n}\n\n.mdi2-flag-variant-remove-outline::before {\n  content: \"\\F1BB7\";\n}\n\n.mdi2-flare::before {\n  content: \"\\F0D72\";\n}\n\n.mdi2-flash::before {\n  content: \"\\F0241\";\n}\n\n.mdi2-flash-alert::before {\n  content: \"\\F0EF7\";\n}\n\n.mdi2-flash-alert-outline::before {\n  content: \"\\F0EF8\";\n}\n\n.mdi2-flash-auto::before {\n  content: \"\\F0242\";\n}\n\n.mdi2-flash-off::before {\n  content: \"\\F0243\";\n}\n\n.mdi2-flash-off-outline::before {\n  content: \"\\F1B45\";\n}\n\n.mdi2-flash-outline::before {\n  content: \"\\F06D5\";\n}\n\n.mdi2-flash-red-eye::before {\n  content: \"\\F067B\";\n}\n\n.mdi2-flash-triangle::before {\n  content: \"\\F1B1D\";\n}\n\n.mdi2-flash-triangle-outline::before {\n  content: \"\\F1B1E\";\n}\n\n.mdi2-flashlight::before {\n  content: \"\\F0244\";\n}\n\n.mdi2-flashlight-off::before {\n  content: \"\\F0245\";\n}\n\n.mdi2-flask::before {\n  content: \"\\F0093\";\n}\n\n.mdi2-flask-empty::before {\n  content: \"\\F0094\";\n}\n\n.mdi2-flask-empty-minus::before {\n  content: \"\\F123A\";\n}\n\n.mdi2-flask-empty-minus-outline::before {\n  content: \"\\F123B\";\n}\n\n.mdi2-flask-empty-off::before {\n  content: \"\\F13F4\";\n}\n\n.mdi2-flask-empty-off-outline::before {\n  content: \"\\F13F5\";\n}\n\n.mdi2-flask-empty-outline::before {\n  content: \"\\F0095\";\n}\n\n.mdi2-flask-empty-plus::before {\n  content: \"\\F123C\";\n}\n\n.mdi2-flask-empty-plus-outline::before {\n  content: \"\\F123D\";\n}\n\n.mdi2-flask-empty-remove::before {\n  content: \"\\F123E\";\n}\n\n.mdi2-flask-empty-remove-outline::before {\n  content: \"\\F123F\";\n}\n\n.mdi2-flask-minus::before {\n  content: \"\\F1240\";\n}\n\n.mdi2-flask-minus-outline::before {\n  content: \"\\F1241\";\n}\n\n.mdi2-flask-off::before {\n  content: \"\\F13F6\";\n}\n\n.mdi2-flask-off-outline::before {\n  content: \"\\F13F7\";\n}\n\n.mdi2-flask-outline::before {\n  content: \"\\F0096\";\n}\n\n.mdi2-flask-plus::before {\n  content: \"\\F1242\";\n}\n\n.mdi2-flask-plus-outline::before {\n  content: \"\\F1243\";\n}\n\n.mdi2-flask-remove::before {\n  content: \"\\F1244\";\n}\n\n.mdi2-flask-remove-outline::before {\n  content: \"\\F1245\";\n}\n\n.mdi2-flask-round-bottom::before {\n  content: \"\\F124B\";\n}\n\n.mdi2-flask-round-bottom-empty::before {\n  content: \"\\F124C\";\n}\n\n.mdi2-flask-round-bottom-empty-outline::before {\n  content: \"\\F124D\";\n}\n\n.mdi2-flask-round-bottom-outline::before {\n  content: \"\\F124E\";\n}\n\n.mdi2-fleur-de-lis::before {\n  content: \"\\F1303\";\n}\n\n.mdi2-flip-horizontal::before {\n  content: \"\\F10E7\";\n}\n\n.mdi2-flip-to-back::before {\n  content: \"\\F0247\";\n}\n\n.mdi2-flip-to-front::before {\n  content: \"\\F0248\";\n}\n\n.mdi2-flip-vertical::before {\n  content: \"\\F10E8\";\n}\n\n.mdi2-floor-lamp::before {\n  content: \"\\F08DD\";\n}\n\n.mdi2-floor-lamp-dual::before {\n  content: \"\\F1040\";\n}\n\n.mdi2-floor-lamp-dual-outline::before {\n  content: \"\\F17CE\";\n}\n\n.mdi2-floor-lamp-outline::before {\n  content: \"\\F17C8\";\n}\n\n.mdi2-floor-lamp-torchiere::before {\n  content: \"\\F1747\";\n}\n\n.mdi2-floor-lamp-torchiere-outline::before {\n  content: \"\\F17D6\";\n}\n\n.mdi2-floor-lamp-torchiere-variant::before {\n  content: \"\\F1041\";\n}\n\n.mdi2-floor-lamp-torchiere-variant-outline::before {\n  content: \"\\F17CF\";\n}\n\n.mdi2-floor-plan::before {\n  content: \"\\F0821\";\n}\n\n.mdi2-floppy::before {\n  content: \"\\F0249\";\n}\n\n.mdi2-floppy-variant::before {\n  content: \"\\F09EF\";\n}\n\n.mdi2-flower::before {\n  content: \"\\F024A\";\n}\n\n.mdi2-flower-outline::before {\n  content: \"\\F09F0\";\n}\n\n.mdi2-flower-pollen::before {\n  content: \"\\F1885\";\n}\n\n.mdi2-flower-pollen-outline::before {\n  content: \"\\F1886\";\n}\n\n.mdi2-flower-poppy::before {\n  content: \"\\F0D08\";\n}\n\n.mdi2-flower-tulip::before {\n  content: \"\\F09F1\";\n}\n\n.mdi2-flower-tulip-outline::before {\n  content: \"\\F09F2\";\n}\n\n.mdi2-focus-auto::before {\n  content: \"\\F0F4E\";\n}\n\n.mdi2-focus-field::before {\n  content: \"\\F0F4F\";\n}\n\n.mdi2-focus-field-horizontal::before {\n  content: \"\\F0F50\";\n}\n\n.mdi2-focus-field-vertical::before {\n  content: \"\\F0F51\";\n}\n\n.mdi2-folder::before {\n  content: \"\\F024B\";\n}\n\n.mdi2-folder-account::before {\n  content: \"\\F024C\";\n}\n\n.mdi2-folder-account-outline::before {\n  content: \"\\F0B9C\";\n}\n\n.mdi2-folder-alert::before {\n  content: \"\\F0DCC\";\n}\n\n.mdi2-folder-alert-outline::before {\n  content: \"\\F0DCD\";\n}\n\n.mdi2-folder-arrow-down::before {\n  content: \"\\F19E8\";\n}\n\n.mdi2-folder-arrow-down-outline::before {\n  content: \"\\F19E9\";\n}\n\n.mdi2-folder-arrow-left::before {\n  content: \"\\F19EA\";\n}\n\n.mdi2-folder-arrow-left-outline::before {\n  content: \"\\F19EB\";\n}\n\n.mdi2-folder-arrow-left-right::before {\n  content: \"\\F19EC\";\n}\n\n.mdi2-folder-arrow-left-right-outline::before {\n  content: \"\\F19ED\";\n}\n\n.mdi2-folder-arrow-right::before {\n  content: \"\\F19EE\";\n}\n\n.mdi2-folder-arrow-right-outline::before {\n  content: \"\\F19EF\";\n}\n\n.mdi2-folder-arrow-up::before {\n  content: \"\\F19F0\";\n}\n\n.mdi2-folder-arrow-up-down::before {\n  content: \"\\F19F1\";\n}\n\n.mdi2-folder-arrow-up-down-outline::before {\n  content: \"\\F19F2\";\n}\n\n.mdi2-folder-arrow-up-outline::before {\n  content: \"\\F19F3\";\n}\n\n.mdi2-folder-cancel::before {\n  content: \"\\F19F4\";\n}\n\n.mdi2-folder-cancel-outline::before {\n  content: \"\\F19F5\";\n}\n\n.mdi2-folder-check::before {\n  content: \"\\F197E\";\n}\n\n.mdi2-folder-check-outline::before {\n  content: \"\\F197F\";\n}\n\n.mdi2-folder-clock::before {\n  content: \"\\F0ABA\";\n}\n\n.mdi2-folder-clock-outline::before {\n  content: \"\\F0ABB\";\n}\n\n.mdi2-folder-cog::before {\n  content: \"\\F107F\";\n}\n\n.mdi2-folder-cog-outline::before {\n  content: \"\\F1080\";\n}\n\n.mdi2-folder-download::before {\n  content: \"\\F024D\";\n}\n\n.mdi2-folder-download-outline::before {\n  content: \"\\F10E9\";\n}\n\n.mdi2-folder-edit::before {\n  content: \"\\F08DE\";\n}\n\n.mdi2-folder-edit-outline::before {\n  content: \"\\F0DCE\";\n}\n\n.mdi2-folder-eye::before {\n  content: \"\\F178A\";\n}\n\n.mdi2-folder-eye-outline::before {\n  content: \"\\F178B\";\n}\n\n.mdi2-folder-file::before {\n  content: \"\\F19F6\";\n}\n\n.mdi2-folder-file-outline::before {\n  content: \"\\F19F7\";\n}\n\n.mdi2-folder-google-drive::before {\n  content: \"\\F024E\";\n}\n\n.mdi2-folder-heart::before {\n  content: \"\\F10EA\";\n}\n\n.mdi2-folder-heart-outline::before {\n  content: \"\\F10EB\";\n}\n\n.mdi2-folder-hidden::before {\n  content: \"\\F179E\";\n}\n\n.mdi2-folder-home::before {\n  content: \"\\F10B5\";\n}\n\n.mdi2-folder-home-outline::before {\n  content: \"\\F10B6\";\n}\n\n.mdi2-folder-image::before {\n  content: \"\\F024F\";\n}\n\n.mdi2-folder-information::before {\n  content: \"\\F10B7\";\n}\n\n.mdi2-folder-information-outline::before {\n  content: \"\\F10B8\";\n}\n\n.mdi2-folder-key::before {\n  content: \"\\F08AC\";\n}\n\n.mdi2-folder-key-network::before {\n  content: \"\\F08AD\";\n}\n\n.mdi2-folder-key-network-outline::before {\n  content: \"\\F0C80\";\n}\n\n.mdi2-folder-key-outline::before {\n  content: \"\\F10EC\";\n}\n\n.mdi2-folder-lock::before {\n  content: \"\\F0250\";\n}\n\n.mdi2-folder-lock-open::before {\n  content: \"\\F0251\";\n}\n\n.mdi2-folder-lock-open-outline::before {\n  content: \"\\F1AA7\";\n}\n\n.mdi2-folder-lock-outline::before {\n  content: \"\\F1AA8\";\n}\n\n.mdi2-folder-marker::before {\n  content: \"\\F126D\";\n}\n\n.mdi2-folder-marker-outline::before {\n  content: \"\\F126E\";\n}\n\n.mdi2-folder-minus::before {\n  content: \"\\F1B49\";\n}\n\n.mdi2-folder-minus-outline::before {\n  content: \"\\F1B4A\";\n}\n\n.mdi2-folder-move::before {\n  content: \"\\F0252\";\n}\n\n.mdi2-folder-move-outline::before {\n  content: \"\\F1246\";\n}\n\n.mdi2-folder-multiple::before {\n  content: \"\\F0253\";\n}\n\n.mdi2-folder-multiple-image::before {\n  content: \"\\F0254\";\n}\n\n.mdi2-folder-multiple-outline::before {\n  content: \"\\F0255\";\n}\n\n.mdi2-folder-multiple-plus::before {\n  content: \"\\F147E\";\n}\n\n.mdi2-folder-multiple-plus-outline::before {\n  content: \"\\F147F\";\n}\n\n.mdi2-folder-music::before {\n  content: \"\\F1359\";\n}\n\n.mdi2-folder-music-outline::before {\n  content: \"\\F135A\";\n}\n\n.mdi2-folder-network::before {\n  content: \"\\F0870\";\n}\n\n.mdi2-folder-network-outline::before {\n  content: \"\\F0C81\";\n}\n\n.mdi2-folder-off::before {\n  content: \"\\F19F8\";\n}\n\n.mdi2-folder-off-outline::before {\n  content: \"\\F19F9\";\n}\n\n.mdi2-folder-open::before {\n  content: \"\\F0770\";\n}\n\n.mdi2-folder-open-outline::before {\n  content: \"\\F0DCF\";\n}\n\n.mdi2-folder-outline::before {\n  content: \"\\F0256\";\n}\n\n.mdi2-folder-play::before {\n  content: \"\\F19FA\";\n}\n\n.mdi2-folder-play-outline::before {\n  content: \"\\F19FB\";\n}\n\n.mdi2-folder-plus::before {\n  content: \"\\F0257\";\n}\n\n.mdi2-folder-plus-outline::before {\n  content: \"\\F0B9D\";\n}\n\n.mdi2-folder-pound::before {\n  content: \"\\F0D09\";\n}\n\n.mdi2-folder-pound-outline::before {\n  content: \"\\F0D0A\";\n}\n\n.mdi2-folder-question::before {\n  content: \"\\F19CA\";\n}\n\n.mdi2-folder-question-outline::before {\n  content: \"\\F19CB\";\n}\n\n.mdi2-folder-refresh::before {\n  content: \"\\F0749\";\n}\n\n.mdi2-folder-refresh-outline::before {\n  content: \"\\F0542\";\n}\n\n.mdi2-folder-remove::before {\n  content: \"\\F0258\";\n}\n\n.mdi2-folder-remove-outline::before {\n  content: \"\\F0B9E\";\n}\n\n.mdi2-folder-search::before {\n  content: \"\\F0968\";\n}\n\n.mdi2-folder-search-outline::before {\n  content: \"\\F0969\";\n}\n\n.mdi2-folder-settings::before {\n  content: \"\\F107D\";\n}\n\n.mdi2-folder-settings-outline::before {\n  content: \"\\F107E\";\n}\n\n.mdi2-folder-star::before {\n  content: \"\\F069D\";\n}\n\n.mdi2-folder-star-multiple::before {\n  content: \"\\F13D3\";\n}\n\n.mdi2-folder-star-multiple-outline::before {\n  content: \"\\F13D4\";\n}\n\n.mdi2-folder-star-outline::before {\n  content: \"\\F0B9F\";\n}\n\n.mdi2-folder-swap::before {\n  content: \"\\F0FB6\";\n}\n\n.mdi2-folder-swap-outline::before {\n  content: \"\\F0FB7\";\n}\n\n.mdi2-folder-sync::before {\n  content: \"\\F0D0B\";\n}\n\n.mdi2-folder-sync-outline::before {\n  content: \"\\F0D0C\";\n}\n\n.mdi2-folder-table::before {\n  content: \"\\F12E3\";\n}\n\n.mdi2-folder-table-outline::before {\n  content: \"\\F12E4\";\n}\n\n.mdi2-folder-text::before {\n  content: \"\\F0C82\";\n}\n\n.mdi2-folder-text-outline::before {\n  content: \"\\F0C83\";\n}\n\n.mdi2-folder-upload::before {\n  content: \"\\F0259\";\n}\n\n.mdi2-folder-upload-outline::before {\n  content: \"\\F10ED\";\n}\n\n.mdi2-folder-wrench::before {\n  content: \"\\F19FC\";\n}\n\n.mdi2-folder-wrench-outline::before {\n  content: \"\\F19FD\";\n}\n\n.mdi2-folder-zip::before {\n  content: \"\\F06EB\";\n}\n\n.mdi2-folder-zip-outline::before {\n  content: \"\\F07B9\";\n}\n\n.mdi2-font-awesome::before {\n  content: \"\\F003A\";\n}\n\n.mdi2-food::before {\n  content: \"\\F025A\";\n}\n\n.mdi2-food-apple::before {\n  content: \"\\F025B\";\n}\n\n.mdi2-food-apple-outline::before {\n  content: \"\\F0C84\";\n}\n\n.mdi2-food-croissant::before {\n  content: \"\\F07C8\";\n}\n\n.mdi2-food-drumstick::before {\n  content: \"\\F141F\";\n}\n\n.mdi2-food-drumstick-off::before {\n  content: \"\\F1468\";\n}\n\n.mdi2-food-drumstick-off-outline::before {\n  content: \"\\F1469\";\n}\n\n.mdi2-food-drumstick-outline::before {\n  content: \"\\F1420\";\n}\n\n.mdi2-food-fork-drink::before {\n  content: \"\\F05F2\";\n}\n\n.mdi2-food-halal::before {\n  content: \"\\F1572\";\n}\n\n.mdi2-food-hot-dog::before {\n  content: \"\\F184B\";\n}\n\n.mdi2-food-kosher::before {\n  content: \"\\F1573\";\n}\n\n.mdi2-food-off::before {\n  content: \"\\F05F3\";\n}\n\n.mdi2-food-off-outline::before {\n  content: \"\\F1915\";\n}\n\n.mdi2-food-outline::before {\n  content: \"\\F1916\";\n}\n\n.mdi2-food-steak::before {\n  content: \"\\F146A\";\n}\n\n.mdi2-food-steak-off::before {\n  content: \"\\F146B\";\n}\n\n.mdi2-food-takeout-box::before {\n  content: \"\\F1836\";\n}\n\n.mdi2-food-takeout-box-outline::before {\n  content: \"\\F1837\";\n}\n\n.mdi2-food-turkey::before {\n  content: \"\\F171C\";\n}\n\n.mdi2-food-variant::before {\n  content: \"\\F025C\";\n}\n\n.mdi2-food-variant-off::before {\n  content: \"\\F13E5\";\n}\n\n.mdi2-foot-print::before {\n  content: \"\\F0F52\";\n}\n\n.mdi2-football::before {\n  content: \"\\F025D\";\n}\n\n.mdi2-football-australian::before {\n  content: \"\\F025E\";\n}\n\n.mdi2-football-helmet::before {\n  content: \"\\F025F\";\n}\n\n.mdi2-forest::before {\n  content: \"\\F1897\";\n}\n\n.mdi2-forest-outline::before {\n  content: \"\\F1C63\";\n}\n\n.mdi2-forklift::before {\n  content: \"\\F07C9\";\n}\n\n.mdi2-form-dropdown::before {\n  content: \"\\F1400\";\n}\n\n.mdi2-form-select::before {\n  content: \"\\F1401\";\n}\n\n.mdi2-form-textarea::before {\n  content: \"\\F1095\";\n}\n\n.mdi2-form-textbox::before {\n  content: \"\\F060E\";\n}\n\n.mdi2-form-textbox-lock::before {\n  content: \"\\F135D\";\n}\n\n.mdi2-form-textbox-password::before {\n  content: \"\\F07F5\";\n}\n\n.mdi2-format-align-bottom::before {\n  content: \"\\F0753\";\n}\n\n.mdi2-format-align-center::before {\n  content: \"\\F0260\";\n}\n\n.mdi2-format-align-justify::before {\n  content: \"\\F0261\";\n}\n\n.mdi2-format-align-left::before {\n  content: \"\\F0262\";\n}\n\n.mdi2-format-align-middle::before {\n  content: \"\\F0754\";\n}\n\n.mdi2-format-align-right::before {\n  content: \"\\F0263\";\n}\n\n.mdi2-format-align-top::before {\n  content: \"\\F0755\";\n}\n\n.mdi2-format-annotation-minus::before {\n  content: \"\\F0ABC\";\n}\n\n.mdi2-format-annotation-plus::before {\n  content: \"\\F0646\";\n}\n\n.mdi2-format-bold::before {\n  content: \"\\F0264\";\n}\n\n.mdi2-format-clear::before {\n  content: \"\\F0265\";\n}\n\n.mdi2-format-color-fill::before {\n  content: \"\\F0266\";\n}\n\n.mdi2-format-color-highlight::before {\n  content: \"\\F0E31\";\n}\n\n.mdi2-format-color-marker-cancel::before {\n  content: \"\\F1313\";\n}\n\n.mdi2-format-color-text::before {\n  content: \"\\F069E\";\n}\n\n.mdi2-format-columns::before {\n  content: \"\\F08DF\";\n}\n\n.mdi2-format-float-center::before {\n  content: \"\\F0267\";\n}\n\n.mdi2-format-float-left::before {\n  content: \"\\F0268\";\n}\n\n.mdi2-format-float-none::before {\n  content: \"\\F0269\";\n}\n\n.mdi2-format-float-right::before {\n  content: \"\\F026A\";\n}\n\n.mdi2-format-font::before {\n  content: \"\\F06D6\";\n}\n\n.mdi2-format-font-size-decrease::before {\n  content: \"\\F09F3\";\n}\n\n.mdi2-format-font-size-increase::before {\n  content: \"\\F09F4\";\n}\n\n.mdi2-format-header-1::before {\n  content: \"\\F026B\";\n}\n\n.mdi2-format-header-2::before {\n  content: \"\\F026C\";\n}\n\n.mdi2-format-header-3::before {\n  content: \"\\F026D\";\n}\n\n.mdi2-format-header-4::before {\n  content: \"\\F026E\";\n}\n\n.mdi2-format-header-5::before {\n  content: \"\\F026F\";\n}\n\n.mdi2-format-header-6::before {\n  content: \"\\F0270\";\n}\n\n.mdi2-format-header-decrease::before {\n  content: \"\\F0271\";\n}\n\n.mdi2-format-header-equal::before {\n  content: \"\\F0272\";\n}\n\n.mdi2-format-header-increase::before {\n  content: \"\\F0273\";\n}\n\n.mdi2-format-header-pound::before {\n  content: \"\\F0274\";\n}\n\n.mdi2-format-horizontal-align-center::before {\n  content: \"\\F061E\";\n}\n\n.mdi2-format-horizontal-align-left::before {\n  content: \"\\F061F\";\n}\n\n.mdi2-format-horizontal-align-right::before {\n  content: \"\\F0620\";\n}\n\n.mdi2-format-indent-decrease::before {\n  content: \"\\F0275\";\n}\n\n.mdi2-format-indent-increase::before {\n  content: \"\\F0276\";\n}\n\n.mdi2-format-italic::before {\n  content: \"\\F0277\";\n}\n\n.mdi2-format-letter-case::before {\n  content: \"\\F0B34\";\n}\n\n.mdi2-format-letter-case-lower::before {\n  content: \"\\F0B35\";\n}\n\n.mdi2-format-letter-case-upper::before {\n  content: \"\\F0B36\";\n}\n\n.mdi2-format-letter-ends-with::before {\n  content: \"\\F0FB8\";\n}\n\n.mdi2-format-letter-matches::before {\n  content: \"\\F0FB9\";\n}\n\n.mdi2-format-letter-spacing::before {\n  content: \"\\F1956\";\n}\n\n.mdi2-format-letter-spacing-variant::before {\n  content: \"\\F1AFB\";\n}\n\n.mdi2-format-letter-starts-with::before {\n  content: \"\\F0FBA\";\n}\n\n.mdi2-format-line-height::before {\n  content: \"\\F1AFC\";\n}\n\n.mdi2-format-line-spacing::before {\n  content: \"\\F0278\";\n}\n\n.mdi2-format-line-style::before {\n  content: \"\\F05C8\";\n}\n\n.mdi2-format-line-weight::before {\n  content: \"\\F05C9\";\n}\n\n.mdi2-format-list-bulleted::before {\n  content: \"\\F0279\";\n}\n\n.mdi2-format-list-bulleted-square::before {\n  content: \"\\F0DD0\";\n}\n\n.mdi2-format-list-bulleted-triangle::before {\n  content: \"\\F0EB2\";\n}\n\n.mdi2-format-list-bulleted-type::before {\n  content: \"\\F027A\";\n}\n\n.mdi2-format-list-checkbox::before {\n  content: \"\\F096A\";\n}\n\n.mdi2-format-list-checks::before {\n  content: \"\\F0756\";\n}\n\n.mdi2-format-list-group::before {\n  content: \"\\F1860\";\n}\n\n.mdi2-format-list-group-plus::before {\n  content: \"\\F1B56\";\n}\n\n.mdi2-format-list-numbered::before {\n  content: \"\\F027B\";\n}\n\n.mdi2-format-list-numbered-rtl::before {\n  content: \"\\F0D0D\";\n}\n\n.mdi2-format-list-text::before {\n  content: \"\\F126F\";\n}\n\n.mdi2-format-overline::before {\n  content: \"\\F0EB3\";\n}\n\n.mdi2-format-page-break::before {\n  content: \"\\F06D7\";\n}\n\n.mdi2-format-page-split::before {\n  content: \"\\F1917\";\n}\n\n.mdi2-format-paint::before {\n  content: \"\\F027C\";\n}\n\n.mdi2-format-paragraph::before {\n  content: \"\\F027D\";\n}\n\n.mdi2-format-paragraph-spacing::before {\n  content: \"\\F1AFD\";\n}\n\n.mdi2-format-pilcrow::before {\n  content: \"\\F06D8\";\n}\n\n.mdi2-format-pilcrow-arrow-left::before {\n  content: \"\\F0286\";\n}\n\n.mdi2-format-pilcrow-arrow-right::before {\n  content: \"\\F0285\";\n}\n\n.mdi2-format-quote-close::before {\n  content: \"\\F027E\";\n}\n\n.mdi2-format-quote-close-outline::before {\n  content: \"\\F11A8\";\n}\n\n.mdi2-format-quote-open::before {\n  content: \"\\F0757\";\n}\n\n.mdi2-format-quote-open-outline::before {\n  content: \"\\F11A7\";\n}\n\n.mdi2-format-rotate-90::before {\n  content: \"\\F06AA\";\n}\n\n.mdi2-format-section::before {\n  content: \"\\F069F\";\n}\n\n.mdi2-format-size::before {\n  content: \"\\F027F\";\n}\n\n.mdi2-format-strikethrough::before {\n  content: \"\\F0280\";\n}\n\n.mdi2-format-strikethrough-variant::before {\n  content: \"\\F0281\";\n}\n\n.mdi2-format-subscript::before {\n  content: \"\\F0282\";\n}\n\n.mdi2-format-superscript::before {\n  content: \"\\F0283\";\n}\n\n.mdi2-format-text::before {\n  content: \"\\F0284\";\n}\n\n.mdi2-format-text-rotation-angle-down::before {\n  content: \"\\F0FBB\";\n}\n\n.mdi2-format-text-rotation-angle-up::before {\n  content: \"\\F0FBC\";\n}\n\n.mdi2-format-text-rotation-down::before {\n  content: \"\\F0D73\";\n}\n\n.mdi2-format-text-rotation-down-vertical::before {\n  content: \"\\F0FBD\";\n}\n\n.mdi2-format-text-rotation-none::before {\n  content: \"\\F0D74\";\n}\n\n.mdi2-format-text-rotation-up::before {\n  content: \"\\F0FBE\";\n}\n\n.mdi2-format-text-rotation-vertical::before {\n  content: \"\\F0FBF\";\n}\n\n.mdi2-format-text-variant::before {\n  content: \"\\F0E32\";\n}\n\n.mdi2-format-text-variant-outline::before {\n  content: \"\\F150F\";\n}\n\n.mdi2-format-text-wrapping-clip::before {\n  content: \"\\F0D0E\";\n}\n\n.mdi2-format-text-wrapping-overflow::before {\n  content: \"\\F0D0F\";\n}\n\n.mdi2-format-text-wrapping-wrap::before {\n  content: \"\\F0D10\";\n}\n\n.mdi2-format-textbox::before {\n  content: \"\\F0D11\";\n}\n\n.mdi2-format-title::before {\n  content: \"\\F05F4\";\n}\n\n.mdi2-format-underline::before {\n  content: \"\\F0287\";\n}\n\n.mdi2-format-underline-wavy::before {\n  content: \"\\F18E9\";\n}\n\n.mdi2-format-vertical-align-bottom::before {\n  content: \"\\F0621\";\n}\n\n.mdi2-format-vertical-align-center::before {\n  content: \"\\F0622\";\n}\n\n.mdi2-format-vertical-align-top::before {\n  content: \"\\F0623\";\n}\n\n.mdi2-format-wrap-inline::before {\n  content: \"\\F0288\";\n}\n\n.mdi2-format-wrap-square::before {\n  content: \"\\F0289\";\n}\n\n.mdi2-format-wrap-tight::before {\n  content: \"\\F028A\";\n}\n\n.mdi2-format-wrap-top-bottom::before {\n  content: \"\\F028B\";\n}\n\n.mdi2-forum::before {\n  content: \"\\F028C\";\n}\n\n.mdi2-forum-minus::before {\n  content: \"\\F1AA9\";\n}\n\n.mdi2-forum-minus-outline::before {\n  content: \"\\F1AAA\";\n}\n\n.mdi2-forum-outline::before {\n  content: \"\\F0822\";\n}\n\n.mdi2-forum-plus::before {\n  content: \"\\F1AAB\";\n}\n\n.mdi2-forum-plus-outline::before {\n  content: \"\\F1AAC\";\n}\n\n.mdi2-forum-remove::before {\n  content: \"\\F1AAD\";\n}\n\n.mdi2-forum-remove-outline::before {\n  content: \"\\F1AAE\";\n}\n\n.mdi2-forward::before {\n  content: \"\\F028D\";\n}\n\n.mdi2-forwardburger::before {\n  content: \"\\F0D75\";\n}\n\n.mdi2-fountain::before {\n  content: \"\\F096B\";\n}\n\n.mdi2-fountain-pen::before {\n  content: \"\\F0D12\";\n}\n\n.mdi2-fountain-pen-tip::before {\n  content: \"\\F0D13\";\n}\n\n.mdi2-fraction-one-half::before {\n  content: \"\\F1992\";\n}\n\n.mdi2-freebsd::before {\n  content: \"\\F08E0\";\n}\n\n.mdi2-french-fries::before {\n  content: \"\\F1957\";\n}\n\n.mdi2-frequently-asked-questions::before {\n  content: \"\\F0EB4\";\n}\n\n.mdi2-fridge::before {\n  content: \"\\F0290\";\n}\n\n.mdi2-fridge-alert::before {\n  content: \"\\F11B1\";\n}\n\n.mdi2-fridge-alert-outline::before {\n  content: \"\\F11B2\";\n}\n\n.mdi2-fridge-bottom::before {\n  content: \"\\F0292\";\n}\n\n.mdi2-fridge-industrial::before {\n  content: \"\\F15EE\";\n}\n\n.mdi2-fridge-industrial-alert::before {\n  content: \"\\F15EF\";\n}\n\n.mdi2-fridge-industrial-alert-outline::before {\n  content: \"\\F15F0\";\n}\n\n.mdi2-fridge-industrial-off::before {\n  content: \"\\F15F1\";\n}\n\n.mdi2-fridge-industrial-off-outline::before {\n  content: \"\\F15F2\";\n}\n\n.mdi2-fridge-industrial-outline::before {\n  content: \"\\F15F3\";\n}\n\n.mdi2-fridge-off::before {\n  content: \"\\F11AF\";\n}\n\n.mdi2-fridge-off-outline::before {\n  content: \"\\F11B0\";\n}\n\n.mdi2-fridge-outline::before {\n  content: \"\\F028F\";\n}\n\n.mdi2-fridge-top::before {\n  content: \"\\F0291\";\n}\n\n.mdi2-fridge-variant::before {\n  content: \"\\F15F4\";\n}\n\n.mdi2-fridge-variant-alert::before {\n  content: \"\\F15F5\";\n}\n\n.mdi2-fridge-variant-alert-outline::before {\n  content: \"\\F15F6\";\n}\n\n.mdi2-fridge-variant-off::before {\n  content: \"\\F15F7\";\n}\n\n.mdi2-fridge-variant-off-outline::before {\n  content: \"\\F15F8\";\n}\n\n.mdi2-fridge-variant-outline::before {\n  content: \"\\F15F9\";\n}\n\n.mdi2-fruit-cherries::before {\n  content: \"\\F1042\";\n}\n\n.mdi2-fruit-cherries-off::before {\n  content: \"\\F13F8\";\n}\n\n.mdi2-fruit-citrus::before {\n  content: \"\\F1043\";\n}\n\n.mdi2-fruit-citrus-off::before {\n  content: \"\\F13F9\";\n}\n\n.mdi2-fruit-grapes::before {\n  content: \"\\F1044\";\n}\n\n.mdi2-fruit-grapes-outline::before {\n  content: \"\\F1045\";\n}\n\n.mdi2-fruit-pear::before {\n  content: \"\\F1A0E\";\n}\n\n.mdi2-fruit-pineapple::before {\n  content: \"\\F1046\";\n}\n\n.mdi2-fruit-watermelon::before {\n  content: \"\\F1047\";\n}\n\n.mdi2-fuel::before {\n  content: \"\\F07CA\";\n}\n\n.mdi2-fuel-cell::before {\n  content: \"\\F18B5\";\n}\n\n.mdi2-fullscreen::before {\n  content: \"\\F0293\";\n}\n\n.mdi2-fullscreen-exit::before {\n  content: \"\\F0294\";\n}\n\n.mdi2-function::before {\n  content: \"\\F0295\";\n}\n\n.mdi2-function-variant::before {\n  content: \"\\F0871\";\n}\n\n.mdi2-furigana-horizontal::before {\n  content: \"\\F1081\";\n}\n\n.mdi2-furigana-vertical::before {\n  content: \"\\F1082\";\n}\n\n.mdi2-fuse::before {\n  content: \"\\F0C85\";\n}\n\n.mdi2-fuse-alert::before {\n  content: \"\\F142D\";\n}\n\n.mdi2-fuse-blade::before {\n  content: \"\\F0C86\";\n}\n\n.mdi2-fuse-off::before {\n  content: \"\\F142C\";\n}\n\n.mdi2-gamepad::before {\n  content: \"\\F0296\";\n}\n\n.mdi2-gamepad-circle::before {\n  content: \"\\F0E33\";\n}\n\n.mdi2-gamepad-circle-down::before {\n  content: \"\\F0E34\";\n}\n\n.mdi2-gamepad-circle-left::before {\n  content: \"\\F0E35\";\n}\n\n.mdi2-gamepad-circle-outline::before {\n  content: \"\\F0E36\";\n}\n\n.mdi2-gamepad-circle-right::before {\n  content: \"\\F0E37\";\n}\n\n.mdi2-gamepad-circle-up::before {\n  content: \"\\F0E38\";\n}\n\n.mdi2-gamepad-down::before {\n  content: \"\\F0E39\";\n}\n\n.mdi2-gamepad-left::before {\n  content: \"\\F0E3A\";\n}\n\n.mdi2-gamepad-outline::before {\n  content: \"\\F1919\";\n}\n\n.mdi2-gamepad-right::before {\n  content: \"\\F0E3B\";\n}\n\n.mdi2-gamepad-round::before {\n  content: \"\\F0E3C\";\n}\n\n.mdi2-gamepad-round-down::before {\n  content: \"\\F0E3D\";\n}\n\n.mdi2-gamepad-round-left::before {\n  content: \"\\F0E3E\";\n}\n\n.mdi2-gamepad-round-outline::before {\n  content: \"\\F0E3F\";\n}\n\n.mdi2-gamepad-round-right::before {\n  content: \"\\F0E40\";\n}\n\n.mdi2-gamepad-round-up::before {\n  content: \"\\F0E41\";\n}\n\n.mdi2-gamepad-square::before {\n  content: \"\\F0EB5\";\n}\n\n.mdi2-gamepad-square-outline::before {\n  content: \"\\F0EB6\";\n}\n\n.mdi2-gamepad-up::before {\n  content: \"\\F0E42\";\n}\n\n.mdi2-gamepad-variant::before {\n  content: \"\\F0297\";\n}\n\n.mdi2-gamepad-variant-outline::before {\n  content: \"\\F0EB7\";\n}\n\n.mdi2-gamma::before {\n  content: \"\\F10EE\";\n}\n\n.mdi2-gantry-crane::before {\n  content: \"\\F0DD1\";\n}\n\n.mdi2-garage::before {\n  content: \"\\F06D9\";\n}\n\n.mdi2-garage-alert::before {\n  content: \"\\F0872\";\n}\n\n.mdi2-garage-alert-variant::before {\n  content: \"\\F12D5\";\n}\n\n.mdi2-garage-lock::before {\n  content: \"\\F17FB\";\n}\n\n.mdi2-garage-open::before {\n  content: \"\\F06DA\";\n}\n\n.mdi2-garage-open-variant::before {\n  content: \"\\F12D4\";\n}\n\n.mdi2-garage-variant::before {\n  content: \"\\F12D3\";\n}\n\n.mdi2-garage-variant-lock::before {\n  content: \"\\F17FC\";\n}\n\n.mdi2-gas-burner::before {\n  content: \"\\F1A1B\";\n}\n\n.mdi2-gas-cylinder::before {\n  content: \"\\F0647\";\n}\n\n.mdi2-gas-station::before {\n  content: \"\\F0298\";\n}\n\n.mdi2-gas-station-in-use::before {\n  content: \"\\F1CC4\";\n}\n\n.mdi2-gas-station-in-use-outline::before {\n  content: \"\\F1CC5\";\n}\n\n.mdi2-gas-station-off::before {\n  content: \"\\F1409\";\n}\n\n.mdi2-gas-station-off-outline::before {\n  content: \"\\F140A\";\n}\n\n.mdi2-gas-station-outline::before {\n  content: \"\\F0EB8\";\n}\n\n.mdi2-gate::before {\n  content: \"\\F0299\";\n}\n\n.mdi2-gate-alert::before {\n  content: \"\\F17F8\";\n}\n\n.mdi2-gate-and::before {\n  content: \"\\F08E1\";\n}\n\n.mdi2-gate-arrow-left::before {\n  content: \"\\F17F7\";\n}\n\n.mdi2-gate-arrow-right::before {\n  content: \"\\F1169\";\n}\n\n.mdi2-gate-buffer::before {\n  content: \"\\F1AFE\";\n}\n\n.mdi2-gate-nand::before {\n  content: \"\\F08E2\";\n}\n\n.mdi2-gate-nor::before {\n  content: \"\\F08E3\";\n}\n\n.mdi2-gate-not::before {\n  content: \"\\F08E4\";\n}\n\n.mdi2-gate-open::before {\n  content: \"\\F116A\";\n}\n\n.mdi2-gate-or::before {\n  content: \"\\F08E5\";\n}\n\n.mdi2-gate-xnor::before {\n  content: \"\\F08E6\";\n}\n\n.mdi2-gate-xor::before {\n  content: \"\\F08E7\";\n}\n\n.mdi2-gatsby::before {\n  content: \"\\F0E43\";\n}\n\n.mdi2-gauge::before {\n  content: \"\\F029A\";\n}\n\n.mdi2-gauge-empty::before {\n  content: \"\\F0873\";\n}\n\n.mdi2-gauge-full::before {\n  content: \"\\F0874\";\n}\n\n.mdi2-gauge-low::before {\n  content: \"\\F0875\";\n}\n\n.mdi2-gavel::before {\n  content: \"\\F029B\";\n}\n\n.mdi2-gender-female::before {\n  content: \"\\F029C\";\n}\n\n.mdi2-gender-male::before {\n  content: \"\\F029D\";\n}\n\n.mdi2-gender-male-female::before {\n  content: \"\\F029E\";\n}\n\n.mdi2-gender-male-female-variant::before {\n  content: \"\\F113F\";\n}\n\n.mdi2-gender-non-binary::before {\n  content: \"\\F1140\";\n}\n\n.mdi2-gender-transgender::before {\n  content: \"\\F029F\";\n}\n\n.mdi2-generator-mobile::before {\n  content: \"\\F1C8A\";\n}\n\n.mdi2-generator-portable::before {\n  content: \"\\F1C8B\";\n}\n\n.mdi2-generator-stationary::before {\n  content: \"\\F1C8C\";\n}\n\n.mdi2-gentoo::before {\n  content: \"\\F08E8\";\n}\n\n.mdi2-gesture::before {\n  content: \"\\F07CB\";\n}\n\n.mdi2-gesture-double-tap::before {\n  content: \"\\F073C\";\n}\n\n.mdi2-gesture-pinch::before {\n  content: \"\\F0ABD\";\n}\n\n.mdi2-gesture-spread::before {\n  content: \"\\F0ABE\";\n}\n\n.mdi2-gesture-swipe::before {\n  content: \"\\F0D76\";\n}\n\n.mdi2-gesture-swipe-down::before {\n  content: \"\\F073D\";\n}\n\n.mdi2-gesture-swipe-horizontal::before {\n  content: \"\\F0ABF\";\n}\n\n.mdi2-gesture-swipe-left::before {\n  content: \"\\F073E\";\n}\n\n.mdi2-gesture-swipe-right::before {\n  content: \"\\F073F\";\n}\n\n.mdi2-gesture-swipe-up::before {\n  content: \"\\F0740\";\n}\n\n.mdi2-gesture-swipe-vertical::before {\n  content: \"\\F0AC0\";\n}\n\n.mdi2-gesture-tap::before {\n  content: \"\\F0741\";\n}\n\n.mdi2-gesture-tap-box::before {\n  content: \"\\F12A9\";\n}\n\n.mdi2-gesture-tap-button::before {\n  content: \"\\F12A8\";\n}\n\n.mdi2-gesture-tap-hold::before {\n  content: \"\\F0D77\";\n}\n\n.mdi2-gesture-two-double-tap::before {\n  content: \"\\F0742\";\n}\n\n.mdi2-gesture-two-tap::before {\n  content: \"\\F0743\";\n}\n\n.mdi2-ghost::before {\n  content: \"\\F02A0\";\n}\n\n.mdi2-ghost-off::before {\n  content: \"\\F09F5\";\n}\n\n.mdi2-ghost-off-outline::before {\n  content: \"\\F165C\";\n}\n\n.mdi2-ghost-outline::before {\n  content: \"\\F165D\";\n}\n\n.mdi2-gift::before {\n  content: \"\\F0E44\";\n}\n\n.mdi2-gift-off::before {\n  content: \"\\F16EF\";\n}\n\n.mdi2-gift-off-outline::before {\n  content: \"\\F16F0\";\n}\n\n.mdi2-gift-open::before {\n  content: \"\\F16F1\";\n}\n\n.mdi2-gift-open-outline::before {\n  content: \"\\F16F2\";\n}\n\n.mdi2-gift-outline::before {\n  content: \"\\F02A1\";\n}\n\n.mdi2-git::before {\n  content: \"\\F02A2\";\n}\n\n.mdi2-github::before {\n  content: \"\\F02A4\";\n}\n\n.mdi2-gitlab::before {\n  content: \"\\F0BA0\";\n}\n\n.mdi2-glass-cocktail::before {\n  content: \"\\F0356\";\n}\n\n.mdi2-glass-cocktail-off::before {\n  content: \"\\F15E6\";\n}\n\n.mdi2-glass-flute::before {\n  content: \"\\F02A5\";\n}\n\n.mdi2-glass-fragile::before {\n  content: \"\\F1873\";\n}\n\n.mdi2-glass-mug::before {\n  content: \"\\F02A6\";\n}\n\n.mdi2-glass-mug-off::before {\n  content: \"\\F15E7\";\n}\n\n.mdi2-glass-mug-variant::before {\n  content: \"\\F1116\";\n}\n\n.mdi2-glass-mug-variant-off::before {\n  content: \"\\F15E8\";\n}\n\n.mdi2-glass-pint-outline::before {\n  content: \"\\F130D\";\n}\n\n.mdi2-glass-stange::before {\n  content: \"\\F02A7\";\n}\n\n.mdi2-glass-tulip::before {\n  content: \"\\F02A8\";\n}\n\n.mdi2-glass-wine::before {\n  content: \"\\F0876\";\n}\n\n.mdi2-glasses::before {\n  content: \"\\F02AA\";\n}\n\n.mdi2-globe-light::before {\n  content: \"\\F066F\";\n}\n\n.mdi2-globe-light-outline::before {\n  content: \"\\F12D7\";\n}\n\n.mdi2-globe-model::before {\n  content: \"\\F08E9\";\n}\n\n.mdi2-gmail::before {\n  content: \"\\F02AB\";\n}\n\n.mdi2-gnome::before {\n  content: \"\\F02AC\";\n}\n\n.mdi2-go-kart::before {\n  content: \"\\F0D79\";\n}\n\n.mdi2-go-kart-track::before {\n  content: \"\\F0D7A\";\n}\n\n.mdi2-gog::before {\n  content: \"\\F0BA1\";\n}\n\n.mdi2-gold::before {\n  content: \"\\F124F\";\n}\n\n.mdi2-golf::before {\n  content: \"\\F0823\";\n}\n\n.mdi2-golf-cart::before {\n  content: \"\\F11A4\";\n}\n\n.mdi2-golf-tee::before {\n  content: \"\\F1083\";\n}\n\n.mdi2-gondola::before {\n  content: \"\\F0686\";\n}\n\n.mdi2-goodreads::before {\n  content: \"\\F0D7B\";\n}\n\n.mdi2-google::before {\n  content: \"\\F02AD\";\n}\n\n.mdi2-google-ads::before {\n  content: \"\\F0C87\";\n}\n\n.mdi2-google-analytics::before {\n  content: \"\\F07CC\";\n}\n\n.mdi2-google-assistant::before {\n  content: \"\\F07CD\";\n}\n\n.mdi2-google-cardboard::before {\n  content: \"\\F02AE\";\n}\n\n.mdi2-google-chrome::before {\n  content: \"\\F02AF\";\n}\n\n.mdi2-google-circles::before {\n  content: \"\\F02B0\";\n}\n\n.mdi2-google-circles-communities::before {\n  content: \"\\F02B1\";\n}\n\n.mdi2-google-circles-extended::before {\n  content: \"\\F02B2\";\n}\n\n.mdi2-google-circles-group::before {\n  content: \"\\F02B3\";\n}\n\n.mdi2-google-classroom::before {\n  content: \"\\F02C0\";\n}\n\n.mdi2-google-cloud::before {\n  content: \"\\F11F6\";\n}\n\n.mdi2-google-downasaur::before {\n  content: \"\\F1362\";\n}\n\n.mdi2-google-drive::before {\n  content: \"\\F02B6\";\n}\n\n.mdi2-google-earth::before {\n  content: \"\\F02B7\";\n}\n\n.mdi2-google-fit::before {\n  content: \"\\F096C\";\n}\n\n.mdi2-google-glass::before {\n  content: \"\\F02B8\";\n}\n\n.mdi2-google-hangouts::before {\n  content: \"\\F02C9\";\n}\n\n.mdi2-google-keep::before {\n  content: \"\\F06DC\";\n}\n\n.mdi2-google-lens::before {\n  content: \"\\F09F6\";\n}\n\n.mdi2-google-maps::before {\n  content: \"\\F05F5\";\n}\n\n.mdi2-google-my-business::before {\n  content: \"\\F1048\";\n}\n\n.mdi2-google-nearby::before {\n  content: \"\\F02B9\";\n}\n\n.mdi2-google-play::before {\n  content: \"\\F02BC\";\n}\n\n.mdi2-google-plus::before {\n  content: \"\\F02BD\";\n}\n\n.mdi2-google-podcast::before {\n  content: \"\\F0EB9\";\n}\n\n.mdi2-google-spreadsheet::before {\n  content: \"\\F09F7\";\n}\n\n.mdi2-google-street-view::before {\n  content: \"\\F0C88\";\n}\n\n.mdi2-google-translate::before {\n  content: \"\\F02BF\";\n}\n\n.mdi2-gradient-horizontal::before {\n  content: \"\\F174A\";\n}\n\n.mdi2-gradient-vertical::before {\n  content: \"\\F06A0\";\n}\n\n.mdi2-grain::before {\n  content: \"\\F0D7C\";\n}\n\n.mdi2-graph::before {\n  content: \"\\F1049\";\n}\n\n.mdi2-graph-outline::before {\n  content: \"\\F104A\";\n}\n\n.mdi2-graphql::before {\n  content: \"\\F0877\";\n}\n\n.mdi2-grass::before {\n  content: \"\\F1510\";\n}\n\n.mdi2-grave-stone::before {\n  content: \"\\F0BA2\";\n}\n\n.mdi2-grease-pencil::before {\n  content: \"\\F0648\";\n}\n\n.mdi2-greater-than::before {\n  content: \"\\F096D\";\n}\n\n.mdi2-greater-than-or-equal::before {\n  content: \"\\F096E\";\n}\n\n.mdi2-greenhouse::before {\n  content: \"\\F002D\";\n}\n\n.mdi2-grid::before {\n  content: \"\\F02C1\";\n}\n\n.mdi2-grid-large::before {\n  content: \"\\F0758\";\n}\n\n.mdi2-grid-off::before {\n  content: \"\\F02C2\";\n}\n\n.mdi2-grill::before {\n  content: \"\\F0E45\";\n}\n\n.mdi2-grill-outline::before {\n  content: \"\\F118A\";\n}\n\n.mdi2-group::before {\n  content: \"\\F02C3\";\n}\n\n.mdi2-guitar-acoustic::before {\n  content: \"\\F0771\";\n}\n\n.mdi2-guitar-electric::before {\n  content: \"\\F02C4\";\n}\n\n.mdi2-guitar-pick::before {\n  content: \"\\F02C5\";\n}\n\n.mdi2-guitar-pick-outline::before {\n  content: \"\\F02C6\";\n}\n\n.mdi2-guy-fawkes-mask::before {\n  content: \"\\F0825\";\n}\n\n.mdi2-gymnastics::before {\n  content: \"\\F1A41\";\n}\n\n.mdi2-hail::before {\n  content: \"\\F0AC1\";\n}\n\n.mdi2-hair-dryer::before {\n  content: \"\\F10EF\";\n}\n\n.mdi2-hair-dryer-outline::before {\n  content: \"\\F10F0\";\n}\n\n.mdi2-halloween::before {\n  content: \"\\F0BA3\";\n}\n\n.mdi2-hamburger::before {\n  content: \"\\F0685\";\n}\n\n.mdi2-hamburger-check::before {\n  content: \"\\F1776\";\n}\n\n.mdi2-hamburger-minus::before {\n  content: \"\\F1777\";\n}\n\n.mdi2-hamburger-off::before {\n  content: \"\\F1778\";\n}\n\n.mdi2-hamburger-plus::before {\n  content: \"\\F1779\";\n}\n\n.mdi2-hamburger-remove::before {\n  content: \"\\F177A\";\n}\n\n.mdi2-hammer::before {\n  content: \"\\F08EA\";\n}\n\n.mdi2-hammer-screwdriver::before {\n  content: \"\\F1322\";\n}\n\n.mdi2-hammer-sickle::before {\n  content: \"\\F1887\";\n}\n\n.mdi2-hammer-wrench::before {\n  content: \"\\F1323\";\n}\n\n.mdi2-hand-back-left::before {\n  content: \"\\F0E46\";\n}\n\n.mdi2-hand-back-left-off::before {\n  content: \"\\F1830\";\n}\n\n.mdi2-hand-back-left-off-outline::before {\n  content: \"\\F1832\";\n}\n\n.mdi2-hand-back-left-outline::before {\n  content: \"\\F182C\";\n}\n\n.mdi2-hand-back-right::before {\n  content: \"\\F0E47\";\n}\n\n.mdi2-hand-back-right-off::before {\n  content: \"\\F1831\";\n}\n\n.mdi2-hand-back-right-off-outline::before {\n  content: \"\\F1833\";\n}\n\n.mdi2-hand-back-right-outline::before {\n  content: \"\\F182D\";\n}\n\n.mdi2-hand-clap::before {\n  content: \"\\F194B\";\n}\n\n.mdi2-hand-clap-off::before {\n  content: \"\\F1A42\";\n}\n\n.mdi2-hand-coin::before {\n  content: \"\\F188F\";\n}\n\n.mdi2-hand-coin-outline::before {\n  content: \"\\F1890\";\n}\n\n.mdi2-hand-cycle::before {\n  content: \"\\F1B9C\";\n}\n\n.mdi2-hand-extended::before {\n  content: \"\\F18B6\";\n}\n\n.mdi2-hand-extended-outline::before {\n  content: \"\\F18B7\";\n}\n\n.mdi2-hand-front-left::before {\n  content: \"\\F182B\";\n}\n\n.mdi2-hand-front-left-outline::before {\n  content: \"\\F182E\";\n}\n\n.mdi2-hand-front-right::before {\n  content: \"\\F0A4F\";\n}\n\n.mdi2-hand-front-right-outline::before {\n  content: \"\\F182F\";\n}\n\n.mdi2-hand-heart::before {\n  content: \"\\F10F1\";\n}\n\n.mdi2-hand-heart-outline::before {\n  content: \"\\F157E\";\n}\n\n.mdi2-hand-okay::before {\n  content: \"\\F0A50\";\n}\n\n.mdi2-hand-peace::before {\n  content: \"\\F0A51\";\n}\n\n.mdi2-hand-peace-variant::before {\n  content: \"\\F0A52\";\n}\n\n.mdi2-hand-pointing-down::before {\n  content: \"\\F0A53\";\n}\n\n.mdi2-hand-pointing-left::before {\n  content: \"\\F0A54\";\n}\n\n.mdi2-hand-pointing-right::before {\n  content: \"\\F02C7\";\n}\n\n.mdi2-hand-pointing-up::before {\n  content: \"\\F0A55\";\n}\n\n.mdi2-hand-saw::before {\n  content: \"\\F0E48\";\n}\n\n.mdi2-hand-wash::before {\n  content: \"\\F157F\";\n}\n\n.mdi2-hand-wash-outline::before {\n  content: \"\\F1580\";\n}\n\n.mdi2-hand-water::before {\n  content: \"\\F139F\";\n}\n\n.mdi2-hand-wave::before {\n  content: \"\\F1821\";\n}\n\n.mdi2-hand-wave-outline::before {\n  content: \"\\F1822\";\n}\n\n.mdi2-handball::before {\n  content: \"\\F0F53\";\n}\n\n.mdi2-handcuffs::before {\n  content: \"\\F113E\";\n}\n\n.mdi2-hands-pray::before {\n  content: \"\\F0579\";\n}\n\n.mdi2-handshake::before {\n  content: \"\\F1218\";\n}\n\n.mdi2-handshake-outline::before {\n  content: \"\\F15A1\";\n}\n\n.mdi2-hanger::before {\n  content: \"\\F02C8\";\n}\n\n.mdi2-hard-hat::before {\n  content: \"\\F096F\";\n}\n\n.mdi2-harddisk::before {\n  content: \"\\F02CA\";\n}\n\n.mdi2-harddisk-plus::before {\n  content: \"\\F104B\";\n}\n\n.mdi2-harddisk-remove::before {\n  content: \"\\F104C\";\n}\n\n.mdi2-hat-fedora::before {\n  content: \"\\F0BA4\";\n}\n\n.mdi2-hazard-lights::before {\n  content: \"\\F0C89\";\n}\n\n.mdi2-hdmi-port::before {\n  content: \"\\F1BB8\";\n}\n\n.mdi2-hdr::before {\n  content: \"\\F0D7D\";\n}\n\n.mdi2-hdr-off::before {\n  content: \"\\F0D7E\";\n}\n\n.mdi2-head::before {\n  content: \"\\F135E\";\n}\n\n.mdi2-head-alert::before {\n  content: \"\\F1338\";\n}\n\n.mdi2-head-alert-outline::before {\n  content: \"\\F1339\";\n}\n\n.mdi2-head-check::before {\n  content: \"\\F133A\";\n}\n\n.mdi2-head-check-outline::before {\n  content: \"\\F133B\";\n}\n\n.mdi2-head-cog::before {\n  content: \"\\F133C\";\n}\n\n.mdi2-head-cog-outline::before {\n  content: \"\\F133D\";\n}\n\n.mdi2-head-dots-horizontal::before {\n  content: \"\\F133E\";\n}\n\n.mdi2-head-dots-horizontal-outline::before {\n  content: \"\\F133F\";\n}\n\n.mdi2-head-flash::before {\n  content: \"\\F1340\";\n}\n\n.mdi2-head-flash-outline::before {\n  content: \"\\F1341\";\n}\n\n.mdi2-head-heart::before {\n  content: \"\\F1342\";\n}\n\n.mdi2-head-heart-outline::before {\n  content: \"\\F1343\";\n}\n\n.mdi2-head-lightbulb::before {\n  content: \"\\F1344\";\n}\n\n.mdi2-head-lightbulb-outline::before {\n  content: \"\\F1345\";\n}\n\n.mdi2-head-minus::before {\n  content: \"\\F1346\";\n}\n\n.mdi2-head-minus-outline::before {\n  content: \"\\F1347\";\n}\n\n.mdi2-head-outline::before {\n  content: \"\\F135F\";\n}\n\n.mdi2-head-plus::before {\n  content: \"\\F1348\";\n}\n\n.mdi2-head-plus-outline::before {\n  content: \"\\F1349\";\n}\n\n.mdi2-head-question::before {\n  content: \"\\F134A\";\n}\n\n.mdi2-head-question-outline::before {\n  content: \"\\F134B\";\n}\n\n.mdi2-head-remove::before {\n  content: \"\\F134C\";\n}\n\n.mdi2-head-remove-outline::before {\n  content: \"\\F134D\";\n}\n\n.mdi2-head-snowflake::before {\n  content: \"\\F134E\";\n}\n\n.mdi2-head-snowflake-outline::before {\n  content: \"\\F134F\";\n}\n\n.mdi2-head-sync::before {\n  content: \"\\F1350\";\n}\n\n.mdi2-head-sync-outline::before {\n  content: \"\\F1351\";\n}\n\n.mdi2-headphones::before {\n  content: \"\\F02CB\";\n}\n\n.mdi2-headphones-bluetooth::before {\n  content: \"\\F0970\";\n}\n\n.mdi2-headphones-box::before {\n  content: \"\\F02CC\";\n}\n\n.mdi2-headphones-off::before {\n  content: \"\\F07CE\";\n}\n\n.mdi2-headphones-settings::before {\n  content: \"\\F02CD\";\n}\n\n.mdi2-headset::before {\n  content: \"\\F02CE\";\n}\n\n.mdi2-headset-dock::before {\n  content: \"\\F02CF\";\n}\n\n.mdi2-headset-off::before {\n  content: \"\\F02D0\";\n}\n\n.mdi2-heart::before {\n  content: \"\\F02D1\";\n}\n\n.mdi2-heart-box::before {\n  content: \"\\F02D2\";\n}\n\n.mdi2-heart-box-outline::before {\n  content: \"\\F02D3\";\n}\n\n.mdi2-heart-broken::before {\n  content: \"\\F02D4\";\n}\n\n.mdi2-heart-broken-outline::before {\n  content: \"\\F0D14\";\n}\n\n.mdi2-heart-circle::before {\n  content: \"\\F0971\";\n}\n\n.mdi2-heart-circle-outline::before {\n  content: \"\\F0972\";\n}\n\n.mdi2-heart-cog::before {\n  content: \"\\F1663\";\n}\n\n.mdi2-heart-cog-outline::before {\n  content: \"\\F1664\";\n}\n\n.mdi2-heart-flash::before {\n  content: \"\\F0EF9\";\n}\n\n.mdi2-heart-half::before {\n  content: \"\\F06DF\";\n}\n\n.mdi2-heart-half-full::before {\n  content: \"\\F06DE\";\n}\n\n.mdi2-heart-half-outline::before {\n  content: \"\\F06E0\";\n}\n\n.mdi2-heart-minus::before {\n  content: \"\\F142F\";\n}\n\n.mdi2-heart-minus-outline::before {\n  content: \"\\F1432\";\n}\n\n.mdi2-heart-multiple::before {\n  content: \"\\F0A56\";\n}\n\n.mdi2-heart-multiple-outline::before {\n  content: \"\\F0A57\";\n}\n\n.mdi2-heart-off::before {\n  content: \"\\F0759\";\n}\n\n.mdi2-heart-off-outline::before {\n  content: \"\\F1434\";\n}\n\n.mdi2-heart-outline::before {\n  content: \"\\F02D5\";\n}\n\n.mdi2-heart-plus::before {\n  content: \"\\F142E\";\n}\n\n.mdi2-heart-plus-outline::before {\n  content: \"\\F1431\";\n}\n\n.mdi2-heart-pulse::before {\n  content: \"\\F05F6\";\n}\n\n.mdi2-heart-remove::before {\n  content: \"\\F1430\";\n}\n\n.mdi2-heart-remove-outline::before {\n  content: \"\\F1433\";\n}\n\n.mdi2-heart-search::before {\n  content: \"\\F1C8D\";\n}\n\n.mdi2-heart-settings::before {\n  content: \"\\F1665\";\n}\n\n.mdi2-heart-settings-outline::before {\n  content: \"\\F1666\";\n}\n\n.mdi2-heat-pump::before {\n  content: \"\\F1A43\";\n}\n\n.mdi2-heat-pump-outline::before {\n  content: \"\\F1A44\";\n}\n\n.mdi2-heat-wave::before {\n  content: \"\\F1A45\";\n}\n\n.mdi2-heating-coil::before {\n  content: \"\\F1AAF\";\n}\n\n.mdi2-helicopter::before {\n  content: \"\\F0AC2\";\n}\n\n.mdi2-help::before {\n  content: \"\\F02D6\";\n}\n\n.mdi2-help-box::before {\n  content: \"\\F078B\";\n}\n\n.mdi2-help-box-multiple::before {\n  content: \"\\F1C0A\";\n}\n\n.mdi2-help-box-multiple-outline::before {\n  content: \"\\F1C0B\";\n}\n\n.mdi2-help-box-outline::before {\n  content: \"\\F1C0C\";\n}\n\n.mdi2-help-circle::before {\n  content: \"\\F02D7\";\n}\n\n.mdi2-help-circle-outline::before {\n  content: \"\\F0625\";\n}\n\n.mdi2-help-network::before {\n  content: \"\\F06F5\";\n}\n\n.mdi2-help-network-outline::before {\n  content: \"\\F0C8A\";\n}\n\n.mdi2-help-rhombus::before {\n  content: \"\\F0BA5\";\n}\n\n.mdi2-help-rhombus-outline::before {\n  content: \"\\F0BA6\";\n}\n\n.mdi2-hexadecimal::before {\n  content: \"\\F12A7\";\n}\n\n.mdi2-hexagon::before {\n  content: \"\\F02D8\";\n}\n\n.mdi2-hexagon-multiple::before {\n  content: \"\\F06E1\";\n}\n\n.mdi2-hexagon-multiple-outline::before {\n  content: \"\\F10F2\";\n}\n\n.mdi2-hexagon-outline::before {\n  content: \"\\F02D9\";\n}\n\n.mdi2-hexagon-slice-1::before {\n  content: \"\\F0AC3\";\n}\n\n.mdi2-hexagon-slice-2::before {\n  content: \"\\F0AC4\";\n}\n\n.mdi2-hexagon-slice-3::before {\n  content: \"\\F0AC5\";\n}\n\n.mdi2-hexagon-slice-4::before {\n  content: \"\\F0AC6\";\n}\n\n.mdi2-hexagon-slice-5::before {\n  content: \"\\F0AC7\";\n}\n\n.mdi2-hexagon-slice-6::before {\n  content: \"\\F0AC8\";\n}\n\n.mdi2-hexagram::before {\n  content: \"\\F0AC9\";\n}\n\n.mdi2-hexagram-outline::before {\n  content: \"\\F0ACA\";\n}\n\n.mdi2-high-definition::before {\n  content: \"\\F07CF\";\n}\n\n.mdi2-high-definition-box::before {\n  content: \"\\F0878\";\n}\n\n.mdi2-highway::before {\n  content: \"\\F05F7\";\n}\n\n.mdi2-hiking::before {\n  content: \"\\F0D7F\";\n}\n\n.mdi2-history::before {\n  content: \"\\F02DA\";\n}\n\n.mdi2-hockey-puck::before {\n  content: \"\\F0879\";\n}\n\n.mdi2-hockey-sticks::before {\n  content: \"\\F087A\";\n}\n\n.mdi2-hololens::before {\n  content: \"\\F02DB\";\n}\n\n.mdi2-home::before {\n  content: \"\\F02DC\";\n}\n\n.mdi2-home-account::before {\n  content: \"\\F0826\";\n}\n\n.mdi2-home-alert::before {\n  content: \"\\F087B\";\n}\n\n.mdi2-home-alert-outline::before {\n  content: \"\\F15D0\";\n}\n\n.mdi2-home-analytics::before {\n  content: \"\\F0EBA\";\n}\n\n.mdi2-home-assistant::before {\n  content: \"\\F07D0\";\n}\n\n.mdi2-home-automation::before {\n  content: \"\\F07D1\";\n}\n\n.mdi2-home-battery::before {\n  content: \"\\F1901\";\n}\n\n.mdi2-home-battery-outline::before {\n  content: \"\\F1902\";\n}\n\n.mdi2-home-circle::before {\n  content: \"\\F07D2\";\n}\n\n.mdi2-home-circle-outline::before {\n  content: \"\\F104D\";\n}\n\n.mdi2-home-city::before {\n  content: \"\\F0D15\";\n}\n\n.mdi2-home-city-outline::before {\n  content: \"\\F0D16\";\n}\n\n.mdi2-home-clock::before {\n  content: \"\\F1A12\";\n}\n\n.mdi2-home-clock-outline::before {\n  content: \"\\F1A13\";\n}\n\n.mdi2-home-edit::before {\n  content: \"\\F1159\";\n}\n\n.mdi2-home-edit-outline::before {\n  content: \"\\F115A\";\n}\n\n.mdi2-home-export-outline::before {\n  content: \"\\F0F9B\";\n}\n\n.mdi2-home-flood::before {\n  content: \"\\F0EFA\";\n}\n\n.mdi2-home-floor-0::before {\n  content: \"\\F0DD2\";\n}\n\n.mdi2-home-floor-1::before {\n  content: \"\\F0D80\";\n}\n\n.mdi2-home-floor-2::before {\n  content: \"\\F0D81\";\n}\n\n.mdi2-home-floor-3::before {\n  content: \"\\F0D82\";\n}\n\n.mdi2-home-floor-a::before {\n  content: \"\\F0D83\";\n}\n\n.mdi2-home-floor-b::before {\n  content: \"\\F0D84\";\n}\n\n.mdi2-home-floor-g::before {\n  content: \"\\F0D85\";\n}\n\n.mdi2-home-floor-l::before {\n  content: \"\\F0D86\";\n}\n\n.mdi2-home-floor-negative-1::before {\n  content: \"\\F0DD3\";\n}\n\n.mdi2-home-group::before {\n  content: \"\\F0DD4\";\n}\n\n.mdi2-home-group-minus::before {\n  content: \"\\F19C1\";\n}\n\n.mdi2-home-group-plus::before {\n  content: \"\\F19C0\";\n}\n\n.mdi2-home-group-remove::before {\n  content: \"\\F19C2\";\n}\n\n.mdi2-home-heart::before {\n  content: \"\\F0827\";\n}\n\n.mdi2-home-import-outline::before {\n  content: \"\\F0F9C\";\n}\n\n.mdi2-home-lightbulb::before {\n  content: \"\\F1251\";\n}\n\n.mdi2-home-lightbulb-outline::before {\n  content: \"\\F1252\";\n}\n\n.mdi2-home-lightning-bolt::before {\n  content: \"\\F1903\";\n}\n\n.mdi2-home-lightning-bolt-outline::before {\n  content: \"\\F1904\";\n}\n\n.mdi2-home-lock::before {\n  content: \"\\F08EB\";\n}\n\n.mdi2-home-lock-open::before {\n  content: \"\\F08EC\";\n}\n\n.mdi2-home-map-marker::before {\n  content: \"\\F05F8\";\n}\n\n.mdi2-home-minus::before {\n  content: \"\\F0974\";\n}\n\n.mdi2-home-minus-outline::before {\n  content: \"\\F13D5\";\n}\n\n.mdi2-home-modern::before {\n  content: \"\\F02DD\";\n}\n\n.mdi2-home-off::before {\n  content: \"\\F1A46\";\n}\n\n.mdi2-home-off-outline::before {\n  content: \"\\F1A47\";\n}\n\n.mdi2-home-outline::before {\n  content: \"\\F06A1\";\n}\n\n.mdi2-home-percent::before {\n  content: \"\\F1C7C\";\n}\n\n.mdi2-home-percent-outline::before {\n  content: \"\\F1C7D\";\n}\n\n.mdi2-home-plus::before {\n  content: \"\\F0975\";\n}\n\n.mdi2-home-plus-outline::before {\n  content: \"\\F13D6\";\n}\n\n.mdi2-home-remove::before {\n  content: \"\\F1247\";\n}\n\n.mdi2-home-remove-outline::before {\n  content: \"\\F13D7\";\n}\n\n.mdi2-home-roof::before {\n  content: \"\\F112B\";\n}\n\n.mdi2-home-search::before {\n  content: \"\\F13B0\";\n}\n\n.mdi2-home-search-outline::before {\n  content: \"\\F13B1\";\n}\n\n.mdi2-home-silo::before {\n  content: \"\\F1BA0\";\n}\n\n.mdi2-home-silo-outline::before {\n  content: \"\\F1BA1\";\n}\n\n.mdi2-home-sound-in::before {\n  content: \"\\F1C2F\";\n}\n\n.mdi2-home-sound-in-outline::before {\n  content: \"\\F1C30\";\n}\n\n.mdi2-home-sound-out::before {\n  content: \"\\F1C31\";\n}\n\n.mdi2-home-sound-out-outline::before {\n  content: \"\\F1C32\";\n}\n\n.mdi2-home-switch::before {\n  content: \"\\F1794\";\n}\n\n.mdi2-home-switch-outline::before {\n  content: \"\\F1795\";\n}\n\n.mdi2-home-thermometer::before {\n  content: \"\\F0F54\";\n}\n\n.mdi2-home-thermometer-outline::before {\n  content: \"\\F0F55\";\n}\n\n.mdi2-home-variant::before {\n  content: \"\\F02DE\";\n}\n\n.mdi2-home-variant-outline::before {\n  content: \"\\F0BA7\";\n}\n\n.mdi2-hook::before {\n  content: \"\\F06E2\";\n}\n\n.mdi2-hook-off::before {\n  content: \"\\F06E3\";\n}\n\n.mdi2-hoop-house::before {\n  content: \"\\F0E56\";\n}\n\n.mdi2-hops::before {\n  content: \"\\F02DF\";\n}\n\n.mdi2-horizontal-rotate-clockwise::before {\n  content: \"\\F10F3\";\n}\n\n.mdi2-horizontal-rotate-counterclockwise::before {\n  content: \"\\F10F4\";\n}\n\n.mdi2-horse::before {\n  content: \"\\F15BF\";\n}\n\n.mdi2-horse-human::before {\n  content: \"\\F15C0\";\n}\n\n.mdi2-horse-variant::before {\n  content: \"\\F15C1\";\n}\n\n.mdi2-horse-variant-fast::before {\n  content: \"\\F186E\";\n}\n\n.mdi2-horseshoe::before {\n  content: \"\\F0A58\";\n}\n\n.mdi2-hospital::before {\n  content: \"\\F0FF6\";\n}\n\n.mdi2-hospital-box::before {\n  content: \"\\F02E0\";\n}\n\n.mdi2-hospital-box-outline::before {\n  content: \"\\F0FF7\";\n}\n\n.mdi2-hospital-building::before {\n  content: \"\\F02E1\";\n}\n\n.mdi2-hospital-marker::before {\n  content: \"\\F02E2\";\n}\n\n.mdi2-hot-tub::before {\n  content: \"\\F0828\";\n}\n\n.mdi2-hours-12::before {\n  content: \"\\F1C94\";\n}\n\n.mdi2-hours-24::before {\n  content: \"\\F1478\";\n}\n\n.mdi2-hub::before {\n  content: \"\\F1C95\";\n}\n\n.mdi2-hub-outline::before {\n  content: \"\\F1C96\";\n}\n\n.mdi2-hubspot::before {\n  content: \"\\F0D17\";\n}\n\n.mdi2-hulu::before {\n  content: \"\\F0829\";\n}\n\n.mdi2-human::before {\n  content: \"\\F02E6\";\n}\n\n.mdi2-human-baby-changing-table::before {\n  content: \"\\F138B\";\n}\n\n.mdi2-human-cane::before {\n  content: \"\\F1581\";\n}\n\n.mdi2-human-capacity-decrease::before {\n  content: \"\\F159B\";\n}\n\n.mdi2-human-capacity-increase::before {\n  content: \"\\F159C\";\n}\n\n.mdi2-human-child::before {\n  content: \"\\F02E7\";\n}\n\n.mdi2-human-dolly::before {\n  content: \"\\F1980\";\n}\n\n.mdi2-human-edit::before {\n  content: \"\\F14E8\";\n}\n\n.mdi2-human-female::before {\n  content: \"\\F0649\";\n}\n\n.mdi2-human-female-boy::before {\n  content: \"\\F0A59\";\n}\n\n.mdi2-human-female-dance::before {\n  content: \"\\F15C9\";\n}\n\n.mdi2-human-female-female::before {\n  content: \"\\F0A5A\";\n}\n\n.mdi2-human-female-female-child::before {\n  content: \"\\F1C8E\";\n}\n\n.mdi2-human-female-girl::before {\n  content: \"\\F0A5B\";\n}\n\n.mdi2-human-greeting::before {\n  content: \"\\F17C4\";\n}\n\n.mdi2-human-greeting-proximity::before {\n  content: \"\\F159D\";\n}\n\n.mdi2-human-greeting-variant::before {\n  content: \"\\F064A\";\n}\n\n.mdi2-human-handsdown::before {\n  content: \"\\F064B\";\n}\n\n.mdi2-human-handsup::before {\n  content: \"\\F064C\";\n}\n\n.mdi2-human-male::before {\n  content: \"\\F064D\";\n}\n\n.mdi2-human-male-board::before {\n  content: \"\\F0890\";\n}\n\n.mdi2-human-male-board-poll::before {\n  content: \"\\F0846\";\n}\n\n.mdi2-human-male-boy::before {\n  content: \"\\F0A5C\";\n}\n\n.mdi2-human-male-child::before {\n  content: \"\\F138C\";\n}\n\n.mdi2-human-male-female::before {\n  content: \"\\F02E8\";\n}\n\n.mdi2-human-male-female-child::before {\n  content: \"\\F1823\";\n}\n\n.mdi2-human-male-girl::before {\n  content: \"\\F0A5D\";\n}\n\n.mdi2-human-male-height::before {\n  content: \"\\F0EFB\";\n}\n\n.mdi2-human-male-height-variant::before {\n  content: \"\\F0EFC\";\n}\n\n.mdi2-human-male-male::before {\n  content: \"\\F0A5E\";\n}\n\n.mdi2-human-male-male-child::before {\n  content: \"\\F1C8F\";\n}\n\n.mdi2-human-non-binary::before {\n  content: \"\\F1848\";\n}\n\n.mdi2-human-pregnant::before {\n  content: \"\\F05CF\";\n}\n\n.mdi2-human-queue::before {\n  content: \"\\F1571\";\n}\n\n.mdi2-human-scooter::before {\n  content: \"\\F11E9\";\n}\n\n.mdi2-human-walker::before {\n  content: \"\\F1B71\";\n}\n\n.mdi2-human-wheelchair::before {\n  content: \"\\F138D\";\n}\n\n.mdi2-human-white-cane::before {\n  content: \"\\F1981\";\n}\n\n.mdi2-humble-bundle::before {\n  content: \"\\F0744\";\n}\n\n.mdi2-hvac::before {\n  content: \"\\F1352\";\n}\n\n.mdi2-hvac-off::before {\n  content: \"\\F159E\";\n}\n\n.mdi2-hydraulic-oil-level::before {\n  content: \"\\F1324\";\n}\n\n.mdi2-hydraulic-oil-temperature::before {\n  content: \"\\F1325\";\n}\n\n.mdi2-hydro-power::before {\n  content: \"\\F12E5\";\n}\n\n.mdi2-hydrogen-station::before {\n  content: \"\\F1894\";\n}\n\n.mdi2-ice-cream::before {\n  content: \"\\F082A\";\n}\n\n.mdi2-ice-cream-off::before {\n  content: \"\\F0E52\";\n}\n\n.mdi2-ice-pop::before {\n  content: \"\\F0EFD\";\n}\n\n.mdi2-id-card::before {\n  content: \"\\F0FC0\";\n}\n\n.mdi2-identifier::before {\n  content: \"\\F0EFE\";\n}\n\n.mdi2-ideogram-cjk::before {\n  content: \"\\F1331\";\n}\n\n.mdi2-ideogram-cjk-variant::before {\n  content: \"\\F1332\";\n}\n\n.mdi2-image::before {\n  content: \"\\F02E9\";\n}\n\n.mdi2-image-album::before {\n  content: \"\\F02EA\";\n}\n\n.mdi2-image-area::before {\n  content: \"\\F02EB\";\n}\n\n.mdi2-image-area-close::before {\n  content: \"\\F02EC\";\n}\n\n.mdi2-image-auto-adjust::before {\n  content: \"\\F0FC1\";\n}\n\n.mdi2-image-broken::before {\n  content: \"\\F02ED\";\n}\n\n.mdi2-image-broken-variant::before {\n  content: \"\\F02EE\";\n}\n\n.mdi2-image-check::before {\n  content: \"\\F1B25\";\n}\n\n.mdi2-image-check-outline::before {\n  content: \"\\F1B26\";\n}\n\n.mdi2-image-edit::before {\n  content: \"\\F11E3\";\n}\n\n.mdi2-image-edit-outline::before {\n  content: \"\\F11E4\";\n}\n\n.mdi2-image-filter-black-white::before {\n  content: \"\\F02F0\";\n}\n\n.mdi2-image-filter-center-focus::before {\n  content: \"\\F02F1\";\n}\n\n.mdi2-image-filter-center-focus-strong::before {\n  content: \"\\F0EFF\";\n}\n\n.mdi2-image-filter-center-focus-strong-outline::before {\n  content: \"\\F0F00\";\n}\n\n.mdi2-image-filter-center-focus-weak::before {\n  content: \"\\F02F2\";\n}\n\n.mdi2-image-filter-drama::before {\n  content: \"\\F02F3\";\n}\n\n.mdi2-image-filter-drama-outline::before {\n  content: \"\\F1BFF\";\n}\n\n.mdi2-image-filter-frames::before {\n  content: \"\\F02F4\";\n}\n\n.mdi2-image-filter-hdr::before {\n  content: \"\\F02F5\";\n}\n\n.mdi2-image-filter-hdr-outline::before {\n  content: \"\\F1C64\";\n}\n\n.mdi2-image-filter-none::before {\n  content: \"\\F02F6\";\n}\n\n.mdi2-image-filter-tilt-shift::before {\n  content: \"\\F02F7\";\n}\n\n.mdi2-image-filter-vintage::before {\n  content: \"\\F02F8\";\n}\n\n.mdi2-image-frame::before {\n  content: \"\\F0E49\";\n}\n\n.mdi2-image-lock::before {\n  content: \"\\F1AB0\";\n}\n\n.mdi2-image-lock-outline::before {\n  content: \"\\F1AB1\";\n}\n\n.mdi2-image-marker::before {\n  content: \"\\F177B\";\n}\n\n.mdi2-image-marker-outline::before {\n  content: \"\\F177C\";\n}\n\n.mdi2-image-minus::before {\n  content: \"\\F1419\";\n}\n\n.mdi2-image-minus-outline::before {\n  content: \"\\F1B47\";\n}\n\n.mdi2-image-move::before {\n  content: \"\\F09F8\";\n}\n\n.mdi2-image-multiple::before {\n  content: \"\\F02F9\";\n}\n\n.mdi2-image-multiple-outline::before {\n  content: \"\\F02EF\";\n}\n\n.mdi2-image-off::before {\n  content: \"\\F082B\";\n}\n\n.mdi2-image-off-outline::before {\n  content: \"\\F11D1\";\n}\n\n.mdi2-image-outline::before {\n  content: \"\\F0976\";\n}\n\n.mdi2-image-plus::before {\n  content: \"\\F087C\";\n}\n\n.mdi2-image-plus-outline::before {\n  content: \"\\F1B46\";\n}\n\n.mdi2-image-refresh::before {\n  content: \"\\F19FE\";\n}\n\n.mdi2-image-refresh-outline::before {\n  content: \"\\F19FF\";\n}\n\n.mdi2-image-remove::before {\n  content: \"\\F1418\";\n}\n\n.mdi2-image-remove-outline::before {\n  content: \"\\F1B48\";\n}\n\n.mdi2-image-search::before {\n  content: \"\\F0977\";\n}\n\n.mdi2-image-search-outline::before {\n  content: \"\\F0978\";\n}\n\n.mdi2-image-size-select-actual::before {\n  content: \"\\F0C8D\";\n}\n\n.mdi2-image-size-select-large::before {\n  content: \"\\F0C8E\";\n}\n\n.mdi2-image-size-select-small::before {\n  content: \"\\F0C8F\";\n}\n\n.mdi2-image-sync::before {\n  content: \"\\F1A00\";\n}\n\n.mdi2-image-sync-outline::before {\n  content: \"\\F1A01\";\n}\n\n.mdi2-image-text::before {\n  content: \"\\F160D\";\n}\n\n.mdi2-import::before {\n  content: \"\\F02FA\";\n}\n\n.mdi2-inbox::before {\n  content: \"\\F0687\";\n}\n\n.mdi2-inbox-arrow-down::before {\n  content: \"\\F02FB\";\n}\n\n.mdi2-inbox-arrow-down-outline::before {\n  content: \"\\F1270\";\n}\n\n.mdi2-inbox-arrow-up::before {\n  content: \"\\F03D1\";\n}\n\n.mdi2-inbox-arrow-up-outline::before {\n  content: \"\\F1271\";\n}\n\n.mdi2-inbox-full::before {\n  content: \"\\F1272\";\n}\n\n.mdi2-inbox-full-outline::before {\n  content: \"\\F1273\";\n}\n\n.mdi2-inbox-multiple::before {\n  content: \"\\F08B0\";\n}\n\n.mdi2-inbox-multiple-outline::before {\n  content: \"\\F0BA8\";\n}\n\n.mdi2-inbox-outline::before {\n  content: \"\\F1274\";\n}\n\n.mdi2-inbox-remove::before {\n  content: \"\\F159F\";\n}\n\n.mdi2-inbox-remove-outline::before {\n  content: \"\\F15A0\";\n}\n\n.mdi2-incognito::before {\n  content: \"\\F05F9\";\n}\n\n.mdi2-incognito-circle::before {\n  content: \"\\F1421\";\n}\n\n.mdi2-incognito-circle-off::before {\n  content: \"\\F1422\";\n}\n\n.mdi2-incognito-off::before {\n  content: \"\\F0075\";\n}\n\n.mdi2-induction::before {\n  content: \"\\F184C\";\n}\n\n.mdi2-infinity::before {\n  content: \"\\F06E4\";\n}\n\n.mdi2-information::before {\n  content: \"\\F02FC\";\n}\n\n.mdi2-information-box::before {\n  content: \"\\F1C65\";\n}\n\n.mdi2-information-box-outline::before {\n  content: \"\\F1C66\";\n}\n\n.mdi2-information-off::before {\n  content: \"\\F178C\";\n}\n\n.mdi2-information-off-outline::before {\n  content: \"\\F178D\";\n}\n\n.mdi2-information-outline::before {\n  content: \"\\F02FD\";\n}\n\n.mdi2-information-slab-box::before {\n  content: \"\\F1C67\";\n}\n\n.mdi2-information-slab-box-outline::before {\n  content: \"\\F1C68\";\n}\n\n.mdi2-information-slab-circle::before {\n  content: \"\\F1C69\";\n}\n\n.mdi2-information-slab-circle-outline::before {\n  content: \"\\F1C6A\";\n}\n\n.mdi2-information-slab-symbol::before {\n  content: \"\\F1C6B\";\n}\n\n.mdi2-information-symbol::before {\n  content: \"\\F1C6C\";\n}\n\n.mdi2-information-variant::before {\n  content: \"\\F064E\";\n}\n\n.mdi2-information-variant-box::before {\n  content: \"\\F1C6D\";\n}\n\n.mdi2-information-variant-box-outline::before {\n  content: \"\\F1C6E\";\n}\n\n.mdi2-information-variant-circle::before {\n  content: \"\\F1C6F\";\n}\n\n.mdi2-information-variant-circle-outline::before {\n  content: \"\\F1C70\";\n}\n\n.mdi2-instagram::before {\n  content: \"\\F02FE\";\n}\n\n.mdi2-instrument-triangle::before {\n  content: \"\\F104E\";\n}\n\n.mdi2-integrated-circuit-chip::before {\n  content: \"\\F1913\";\n}\n\n.mdi2-invert-colors::before {\n  content: \"\\F0301\";\n}\n\n.mdi2-invert-colors-off::before {\n  content: \"\\F0E4A\";\n}\n\n.mdi2-invoice::before {\n  content: \"\\F1CD2\";\n}\n\n.mdi2-invoice-arrow-left::before {\n  content: \"\\F1CD3\";\n}\n\n.mdi2-invoice-arrow-left-outline::before {\n  content: \"\\F1CD4\";\n}\n\n.mdi2-invoice-arrow-right::before {\n  content: \"\\F1CD5\";\n}\n\n.mdi2-invoice-arrow-right-outline::before {\n  content: \"\\F1CD6\";\n}\n\n.mdi2-invoice-check::before {\n  content: \"\\F1CD7\";\n}\n\n.mdi2-invoice-check-outline::before {\n  content: \"\\F1CD8\";\n}\n\n.mdi2-invoice-clock::before {\n  content: \"\\F1CD9\";\n}\n\n.mdi2-invoice-clock-outline::before {\n  content: \"\\F1CDA\";\n}\n\n.mdi2-invoice-edit::before {\n  content: \"\\F1CDB\";\n}\n\n.mdi2-invoice-edit-outline::before {\n  content: \"\\F1CDC\";\n}\n\n.mdi2-invoice-export-outline::before {\n  content: \"\\F1CDD\";\n}\n\n.mdi2-invoice-fast::before {\n  content: \"\\F1CDE\";\n}\n\n.mdi2-invoice-fast-outline::before {\n  content: \"\\F1CDF\";\n}\n\n.mdi2-invoice-import::before {\n  content: \"\\F1CE0\";\n}\n\n.mdi2-invoice-import-outline::before {\n  content: \"\\F1CE1\";\n}\n\n.mdi2-invoice-list::before {\n  content: \"\\F1CE2\";\n}\n\n.mdi2-invoice-list-outline::before {\n  content: \"\\F1CE3\";\n}\n\n.mdi2-invoice-minus::before {\n  content: \"\\F1CE4\";\n}\n\n.mdi2-invoice-minus-outline::before {\n  content: \"\\F1CE5\";\n}\n\n.mdi2-invoice-multiple::before {\n  content: \"\\F1CE6\";\n}\n\n.mdi2-invoice-multiple-outline::before {\n  content: \"\\F1CE7\";\n}\n\n.mdi2-invoice-outline::before {\n  content: \"\\F1CE8\";\n}\n\n.mdi2-invoice-plus::before {\n  content: \"\\F1CE9\";\n}\n\n.mdi2-invoice-plus-outline::before {\n  content: \"\\F1CEA\";\n}\n\n.mdi2-invoice-remove::before {\n  content: \"\\F1CEB\";\n}\n\n.mdi2-invoice-remove-outline::before {\n  content: \"\\F1CEC\";\n}\n\n.mdi2-invoice-send::before {\n  content: \"\\F1CED\";\n}\n\n.mdi2-invoice-send-outline::before {\n  content: \"\\F1CEE\";\n}\n\n.mdi2-invoice-text::before {\n  content: \"\\F1CEF\";\n}\n\n.mdi2-invoice-text-arrow-left::before {\n  content: \"\\F1CF0\";\n}\n\n.mdi2-invoice-text-arrow-left-outline::before {\n  content: \"\\F1CF1\";\n}\n\n.mdi2-invoice-text-arrow-right::before {\n  content: \"\\F1CF2\";\n}\n\n.mdi2-invoice-text-arrow-right-outline::before {\n  content: \"\\F1CF3\";\n}\n\n.mdi2-invoice-text-check::before {\n  content: \"\\F1CF4\";\n}\n\n.mdi2-invoice-text-check-outline::before {\n  content: \"\\F1CF5\";\n}\n\n.mdi2-invoice-text-clock::before {\n  content: \"\\F1CF6\";\n}\n\n.mdi2-invoice-text-clock-outline::before {\n  content: \"\\F1CF7\";\n}\n\n.mdi2-invoice-text-edit::before {\n  content: \"\\F1CF8\";\n}\n\n.mdi2-invoice-text-edit-outline::before {\n  content: \"\\F1CF9\";\n}\n\n.mdi2-invoice-text-fast::before {\n  content: \"\\F1CFA\";\n}\n\n.mdi2-invoice-text-fast-outline::before {\n  content: \"\\F1CFB\";\n}\n\n.mdi2-invoice-text-minus::before {\n  content: \"\\F1CFC\";\n}\n\n.mdi2-invoice-text-minus-outline::before {\n  content: \"\\F1CFD\";\n}\n\n.mdi2-invoice-text-multiple::before {\n  content: \"\\F1CFE\";\n}\n\n.mdi2-invoice-text-multiple-outline::before {\n  content: \"\\F1CFF\";\n}\n\n.mdi2-invoice-text-outline::before {\n  content: \"\\F1D00\";\n}\n\n.mdi2-invoice-text-plus::before {\n  content: \"\\F1D01\";\n}\n\n.mdi2-invoice-text-plus-outline::before {\n  content: \"\\F1D02\";\n}\n\n.mdi2-invoice-text-remove::before {\n  content: \"\\F1D03\";\n}\n\n.mdi2-invoice-text-remove-outline::before {\n  content: \"\\F1D04\";\n}\n\n.mdi2-invoice-text-send::before {\n  content: \"\\F1D05\";\n}\n\n.mdi2-invoice-text-send-outline::before {\n  content: \"\\F1D06\";\n}\n\n.mdi2-iobroker::before {\n  content: \"\\F12E8\";\n}\n\n.mdi2-ip::before {\n  content: \"\\F0A5F\";\n}\n\n.mdi2-ip-network::before {\n  content: \"\\F0A60\";\n}\n\n.mdi2-ip-network-outline::before {\n  content: \"\\F0C90\";\n}\n\n.mdi2-ip-outline::before {\n  content: \"\\F1982\";\n}\n\n.mdi2-ipod::before {\n  content: \"\\F0C91\";\n}\n\n.mdi2-iron::before {\n  content: \"\\F1824\";\n}\n\n.mdi2-iron-board::before {\n  content: \"\\F1838\";\n}\n\n.mdi2-iron-outline::before {\n  content: \"\\F1825\";\n}\n\n.mdi2-island::before {\n  content: \"\\F104F\";\n}\n\n.mdi2-island-variant::before {\n  content: \"\\F1CC6\";\n}\n\n.mdi2-iv-bag::before {\n  content: \"\\F10B9\";\n}\n\n.mdi2-jabber::before {\n  content: \"\\F0DD5\";\n}\n\n.mdi2-jeepney::before {\n  content: \"\\F0302\";\n}\n\n.mdi2-jellyfish::before {\n  content: \"\\F0F01\";\n}\n\n.mdi2-jellyfish-outline::before {\n  content: \"\\F0F02\";\n}\n\n.mdi2-jira::before {\n  content: \"\\F0303\";\n}\n\n.mdi2-jquery::before {\n  content: \"\\F087D\";\n}\n\n.mdi2-jsfiddle::before {\n  content: \"\\F0304\";\n}\n\n.mdi2-jump-rope::before {\n  content: \"\\F12FF\";\n}\n\n.mdi2-kabaddi::before {\n  content: \"\\F0D87\";\n}\n\n.mdi2-kangaroo::before {\n  content: \"\\F1558\";\n}\n\n.mdi2-karate::before {\n  content: \"\\F082C\";\n}\n\n.mdi2-kayaking::before {\n  content: \"\\F08AF\";\n}\n\n.mdi2-keg::before {\n  content: \"\\F0305\";\n}\n\n.mdi2-kettle::before {\n  content: \"\\F05FA\";\n}\n\n.mdi2-kettle-alert::before {\n  content: \"\\F1317\";\n}\n\n.mdi2-kettle-alert-outline::before {\n  content: \"\\F1318\";\n}\n\n.mdi2-kettle-off::before {\n  content: \"\\F131B\";\n}\n\n.mdi2-kettle-off-outline::before {\n  content: \"\\F131C\";\n}\n\n.mdi2-kettle-outline::before {\n  content: \"\\F0F56\";\n}\n\n.mdi2-kettle-pour-over::before {\n  content: \"\\F173C\";\n}\n\n.mdi2-kettle-steam::before {\n  content: \"\\F1319\";\n}\n\n.mdi2-kettle-steam-outline::before {\n  content: \"\\F131A\";\n}\n\n.mdi2-kettlebell::before {\n  content: \"\\F1300\";\n}\n\n.mdi2-key::before {\n  content: \"\\F0306\";\n}\n\n.mdi2-key-alert::before {\n  content: \"\\F1983\";\n}\n\n.mdi2-key-alert-outline::before {\n  content: \"\\F1984\";\n}\n\n.mdi2-key-arrow-right::before {\n  content: \"\\F1312\";\n}\n\n.mdi2-key-chain::before {\n  content: \"\\F1574\";\n}\n\n.mdi2-key-chain-variant::before {\n  content: \"\\F1575\";\n}\n\n.mdi2-key-change::before {\n  content: \"\\F0307\";\n}\n\n.mdi2-key-link::before {\n  content: \"\\F119F\";\n}\n\n.mdi2-key-minus::before {\n  content: \"\\F0308\";\n}\n\n.mdi2-key-outline::before {\n  content: \"\\F0DD6\";\n}\n\n.mdi2-key-plus::before {\n  content: \"\\F0309\";\n}\n\n.mdi2-key-remove::before {\n  content: \"\\F030A\";\n}\n\n.mdi2-key-star::before {\n  content: \"\\F119E\";\n}\n\n.mdi2-key-variant::before {\n  content: \"\\F030B\";\n}\n\n.mdi2-key-wireless::before {\n  content: \"\\F0FC2\";\n}\n\n.mdi2-keyboard::before {\n  content: \"\\F030C\";\n}\n\n.mdi2-keyboard-backspace::before {\n  content: \"\\F030D\";\n}\n\n.mdi2-keyboard-caps::before {\n  content: \"\\F030E\";\n}\n\n.mdi2-keyboard-close::before {\n  content: \"\\F030F\";\n}\n\n.mdi2-keyboard-close-outline::before {\n  content: \"\\F1C00\";\n}\n\n.mdi2-keyboard-esc::before {\n  content: \"\\F12B7\";\n}\n\n.mdi2-keyboard-f1::before {\n  content: \"\\F12AB\";\n}\n\n.mdi2-keyboard-f10::before {\n  content: \"\\F12B4\";\n}\n\n.mdi2-keyboard-f11::before {\n  content: \"\\F12B5\";\n}\n\n.mdi2-keyboard-f12::before {\n  content: \"\\F12B6\";\n}\n\n.mdi2-keyboard-f2::before {\n  content: \"\\F12AC\";\n}\n\n.mdi2-keyboard-f3::before {\n  content: \"\\F12AD\";\n}\n\n.mdi2-keyboard-f4::before {\n  content: \"\\F12AE\";\n}\n\n.mdi2-keyboard-f5::before {\n  content: \"\\F12AF\";\n}\n\n.mdi2-keyboard-f6::before {\n  content: \"\\F12B0\";\n}\n\n.mdi2-keyboard-f7::before {\n  content: \"\\F12B1\";\n}\n\n.mdi2-keyboard-f8::before {\n  content: \"\\F12B2\";\n}\n\n.mdi2-keyboard-f9::before {\n  content: \"\\F12B3\";\n}\n\n.mdi2-keyboard-off::before {\n  content: \"\\F0310\";\n}\n\n.mdi2-keyboard-off-outline::before {\n  content: \"\\F0E4B\";\n}\n\n.mdi2-keyboard-outline::before {\n  content: \"\\F097B\";\n}\n\n.mdi2-keyboard-return::before {\n  content: \"\\F0311\";\n}\n\n.mdi2-keyboard-settings::before {\n  content: \"\\F09F9\";\n}\n\n.mdi2-keyboard-settings-outline::before {\n  content: \"\\F09FA\";\n}\n\n.mdi2-keyboard-space::before {\n  content: \"\\F1050\";\n}\n\n.mdi2-keyboard-tab::before {\n  content: \"\\F0312\";\n}\n\n.mdi2-keyboard-tab-reverse::before {\n  content: \"\\F0325\";\n}\n\n.mdi2-keyboard-variant::before {\n  content: \"\\F0313\";\n}\n\n.mdi2-khanda::before {\n  content: \"\\F10FD\";\n}\n\n.mdi2-kickstarter::before {\n  content: \"\\F0745\";\n}\n\n.mdi2-kite::before {\n  content: \"\\F1985\";\n}\n\n.mdi2-kite-outline::before {\n  content: \"\\F1986\";\n}\n\n.mdi2-kitesurfing::before {\n  content: \"\\F1744\";\n}\n\n.mdi2-klingon::before {\n  content: \"\\F135B\";\n}\n\n.mdi2-knife::before {\n  content: \"\\F09FB\";\n}\n\n.mdi2-knife-military::before {\n  content: \"\\F09FC\";\n}\n\n.mdi2-knob::before {\n  content: \"\\F1B96\";\n}\n\n.mdi2-koala::before {\n  content: \"\\F173F\";\n}\n\n.mdi2-kodi::before {\n  content: \"\\F0314\";\n}\n\n.mdi2-kubernetes::before {\n  content: \"\\F10FE\";\n}\n\n.mdi2-label::before {\n  content: \"\\F0315\";\n}\n\n.mdi2-label-multiple::before {\n  content: \"\\F1375\";\n}\n\n.mdi2-label-multiple-outline::before {\n  content: \"\\F1376\";\n}\n\n.mdi2-label-off::before {\n  content: \"\\F0ACB\";\n}\n\n.mdi2-label-off-outline::before {\n  content: \"\\F0ACC\";\n}\n\n.mdi2-label-outline::before {\n  content: \"\\F0316\";\n}\n\n.mdi2-label-percent::before {\n  content: \"\\F12EA\";\n}\n\n.mdi2-label-percent-outline::before {\n  content: \"\\F12EB\";\n}\n\n.mdi2-label-variant::before {\n  content: \"\\F0ACD\";\n}\n\n.mdi2-label-variant-outline::before {\n  content: \"\\F0ACE\";\n}\n\n.mdi2-ladder::before {\n  content: \"\\F15A2\";\n}\n\n.mdi2-ladybug::before {\n  content: \"\\F082D\";\n}\n\n.mdi2-lambda::before {\n  content: \"\\F0627\";\n}\n\n.mdi2-lamp::before {\n  content: \"\\F06B5\";\n}\n\n.mdi2-lamp-outline::before {\n  content: \"\\F17D0\";\n}\n\n.mdi2-lamps::before {\n  content: \"\\F1576\";\n}\n\n.mdi2-lamps-outline::before {\n  content: \"\\F17D1\";\n}\n\n.mdi2-lan::before {\n  content: \"\\F0317\";\n}\n\n.mdi2-lan-check::before {\n  content: \"\\F12AA\";\n}\n\n.mdi2-lan-connect::before {\n  content: \"\\F0318\";\n}\n\n.mdi2-lan-disconnect::before {\n  content: \"\\F0319\";\n}\n\n.mdi2-lan-pending::before {\n  content: \"\\F031A\";\n}\n\n.mdi2-land-fields::before {\n  content: \"\\F1AB2\";\n}\n\n.mdi2-land-plots::before {\n  content: \"\\F1AB3\";\n}\n\n.mdi2-land-plots-circle::before {\n  content: \"\\F1AB4\";\n}\n\n.mdi2-land-plots-circle-variant::before {\n  content: \"\\F1AB5\";\n}\n\n.mdi2-land-plots-marker::before {\n  content: \"\\F1C5D\";\n}\n\n.mdi2-land-rows-horizontal::before {\n  content: \"\\F1AB6\";\n}\n\n.mdi2-land-rows-vertical::before {\n  content: \"\\F1AB7\";\n}\n\n.mdi2-landslide::before {\n  content: \"\\F1A48\";\n}\n\n.mdi2-landslide-outline::before {\n  content: \"\\F1A49\";\n}\n\n.mdi2-language-c::before {\n  content: \"\\F0671\";\n}\n\n.mdi2-language-cpp::before {\n  content: \"\\F0672\";\n}\n\n.mdi2-language-csharp::before {\n  content: \"\\F031B\";\n}\n\n.mdi2-language-css3::before {\n  content: \"\\F031C\";\n}\n\n.mdi2-language-fortran::before {\n  content: \"\\F121A\";\n}\n\n.mdi2-language-go::before {\n  content: \"\\F07D3\";\n}\n\n.mdi2-language-haskell::before {\n  content: \"\\F0C92\";\n}\n\n.mdi2-language-html5::before {\n  content: \"\\F031D\";\n}\n\n.mdi2-language-java::before {\n  content: \"\\F0B37\";\n}\n\n.mdi2-language-javascript::before {\n  content: \"\\F031E\";\n}\n\n.mdi2-language-kotlin::before {\n  content: \"\\F1219\";\n}\n\n.mdi2-language-lua::before {\n  content: \"\\F08B1\";\n}\n\n.mdi2-language-markdown::before {\n  content: \"\\F0354\";\n}\n\n.mdi2-language-markdown-outline::before {\n  content: \"\\F0F5B\";\n}\n\n.mdi2-language-php::before {\n  content: \"\\F031F\";\n}\n\n.mdi2-language-python::before {\n  content: \"\\F0320\";\n}\n\n.mdi2-language-r::before {\n  content: \"\\F07D4\";\n}\n\n.mdi2-language-ruby::before {\n  content: \"\\F0D2D\";\n}\n\n.mdi2-language-ruby-on-rails::before {\n  content: \"\\F0ACF\";\n}\n\n.mdi2-language-rust::before {\n  content: \"\\F1617\";\n}\n\n.mdi2-language-swift::before {\n  content: \"\\F06E5\";\n}\n\n.mdi2-language-typescript::before {\n  content: \"\\F06E6\";\n}\n\n.mdi2-language-xaml::before {\n  content: \"\\F0673\";\n}\n\n.mdi2-laptop::before {\n  content: \"\\F0322\";\n}\n\n.mdi2-laptop-account::before {\n  content: \"\\F1A4A\";\n}\n\n.mdi2-laptop-off::before {\n  content: \"\\F06E7\";\n}\n\n.mdi2-laravel::before {\n  content: \"\\F0AD0\";\n}\n\n.mdi2-laser-pointer::before {\n  content: \"\\F1484\";\n}\n\n.mdi2-lasso::before {\n  content: \"\\F0F03\";\n}\n\n.mdi2-lastpass::before {\n  content: \"\\F0446\";\n}\n\n.mdi2-latitude::before {\n  content: \"\\F0F57\";\n}\n\n.mdi2-launch::before {\n  content: \"\\F0327\";\n}\n\n.mdi2-lava-lamp::before {\n  content: \"\\F07D5\";\n}\n\n.mdi2-layers::before {\n  content: \"\\F0328\";\n}\n\n.mdi2-layers-edit::before {\n  content: \"\\F1892\";\n}\n\n.mdi2-layers-minus::before {\n  content: \"\\F0E4C\";\n}\n\n.mdi2-layers-off::before {\n  content: \"\\F0329\";\n}\n\n.mdi2-layers-off-outline::before {\n  content: \"\\F09FD\";\n}\n\n.mdi2-layers-outline::before {\n  content: \"\\F09FE\";\n}\n\n.mdi2-layers-plus::before {\n  content: \"\\F0E4D\";\n}\n\n.mdi2-layers-remove::before {\n  content: \"\\F0E4E\";\n}\n\n.mdi2-layers-search::before {\n  content: \"\\F1206\";\n}\n\n.mdi2-layers-search-outline::before {\n  content: \"\\F1207\";\n}\n\n.mdi2-layers-triple::before {\n  content: \"\\F0F58\";\n}\n\n.mdi2-layers-triple-outline::before {\n  content: \"\\F0F59\";\n}\n\n.mdi2-lead-pencil::before {\n  content: \"\\F064F\";\n}\n\n.mdi2-leaf::before {\n  content: \"\\F032A\";\n}\n\n.mdi2-leaf-circle::before {\n  content: \"\\F1905\";\n}\n\n.mdi2-leaf-circle-outline::before {\n  content: \"\\F1906\";\n}\n\n.mdi2-leaf-maple::before {\n  content: \"\\F0C93\";\n}\n\n.mdi2-leaf-maple-off::before {\n  content: \"\\F12DA\";\n}\n\n.mdi2-leaf-off::before {\n  content: \"\\F12D9\";\n}\n\n.mdi2-leak::before {\n  content: \"\\F0DD7\";\n}\n\n.mdi2-leak-off::before {\n  content: \"\\F0DD8\";\n}\n\n.mdi2-lectern::before {\n  content: \"\\F1AF0\";\n}\n\n.mdi2-led-off::before {\n  content: \"\\F032B\";\n}\n\n.mdi2-led-on::before {\n  content: \"\\F032C\";\n}\n\n.mdi2-led-outline::before {\n  content: \"\\F032D\";\n}\n\n.mdi2-led-strip::before {\n  content: \"\\F07D6\";\n}\n\n.mdi2-led-strip-variant::before {\n  content: \"\\F1051\";\n}\n\n.mdi2-led-strip-variant-off::before {\n  content: \"\\F1A4B\";\n}\n\n.mdi2-led-variant-off::before {\n  content: \"\\F032E\";\n}\n\n.mdi2-led-variant-on::before {\n  content: \"\\F032F\";\n}\n\n.mdi2-led-variant-outline::before {\n  content: \"\\F0330\";\n}\n\n.mdi2-leek::before {\n  content: \"\\F117D\";\n}\n\n.mdi2-less-than::before {\n  content: \"\\F097C\";\n}\n\n.mdi2-less-than-or-equal::before {\n  content: \"\\F097D\";\n}\n\n.mdi2-library::before {\n  content: \"\\F0331\";\n}\n\n.mdi2-library-outline::before {\n  content: \"\\F1A22\";\n}\n\n.mdi2-library-shelves::before {\n  content: \"\\F0BA9\";\n}\n\n.mdi2-license::before {\n  content: \"\\F0FC3\";\n}\n\n.mdi2-lifebuoy::before {\n  content: \"\\F087E\";\n}\n\n.mdi2-light-flood-down::before {\n  content: \"\\F1987\";\n}\n\n.mdi2-light-flood-up::before {\n  content: \"\\F1988\";\n}\n\n.mdi2-light-recessed::before {\n  content: \"\\F179B\";\n}\n\n.mdi2-light-switch::before {\n  content: \"\\F097E\";\n}\n\n.mdi2-light-switch-off::before {\n  content: \"\\F1A24\";\n}\n\n.mdi2-lightbulb::before {\n  content: \"\\F0335\";\n}\n\n.mdi2-lightbulb-alert::before {\n  content: \"\\F19E1\";\n}\n\n.mdi2-lightbulb-alert-outline::before {\n  content: \"\\F19E2\";\n}\n\n.mdi2-lightbulb-auto::before {\n  content: \"\\F1800\";\n}\n\n.mdi2-lightbulb-auto-outline::before {\n  content: \"\\F1801\";\n}\n\n.mdi2-lightbulb-cfl::before {\n  content: \"\\F1208\";\n}\n\n.mdi2-lightbulb-cfl-off::before {\n  content: \"\\F1209\";\n}\n\n.mdi2-lightbulb-cfl-spiral::before {\n  content: \"\\F1275\";\n}\n\n.mdi2-lightbulb-cfl-spiral-off::before {\n  content: \"\\F12C3\";\n}\n\n.mdi2-lightbulb-fluorescent-tube::before {\n  content: \"\\F1804\";\n}\n\n.mdi2-lightbulb-fluorescent-tube-outline::before {\n  content: \"\\F1805\";\n}\n\n.mdi2-lightbulb-group::before {\n  content: \"\\F1253\";\n}\n\n.mdi2-lightbulb-group-off::before {\n  content: \"\\F12CD\";\n}\n\n.mdi2-lightbulb-group-off-outline::before {\n  content: \"\\F12CE\";\n}\n\n.mdi2-lightbulb-group-outline::before {\n  content: \"\\F1254\";\n}\n\n.mdi2-lightbulb-multiple::before {\n  content: \"\\F1255\";\n}\n\n.mdi2-lightbulb-multiple-off::before {\n  content: \"\\F12CF\";\n}\n\n.mdi2-lightbulb-multiple-off-outline::before {\n  content: \"\\F12D0\";\n}\n\n.mdi2-lightbulb-multiple-outline::before {\n  content: \"\\F1256\";\n}\n\n.mdi2-lightbulb-night::before {\n  content: \"\\F1A4C\";\n}\n\n.mdi2-lightbulb-night-outline::before {\n  content: \"\\F1A4D\";\n}\n\n.mdi2-lightbulb-off::before {\n  content: \"\\F0E4F\";\n}\n\n.mdi2-lightbulb-off-outline::before {\n  content: \"\\F0E50\";\n}\n\n.mdi2-lightbulb-on::before {\n  content: \"\\F06E8\";\n}\n\n.mdi2-lightbulb-on-10::before {\n  content: \"\\F1A4E\";\n}\n\n.mdi2-lightbulb-on-20::before {\n  content: \"\\F1A4F\";\n}\n\n.mdi2-lightbulb-on-30::before {\n  content: \"\\F1A50\";\n}\n\n.mdi2-lightbulb-on-40::before {\n  content: \"\\F1A51\";\n}\n\n.mdi2-lightbulb-on-50::before {\n  content: \"\\F1A52\";\n}\n\n.mdi2-lightbulb-on-60::before {\n  content: \"\\F1A53\";\n}\n\n.mdi2-lightbulb-on-70::before {\n  content: \"\\F1A54\";\n}\n\n.mdi2-lightbulb-on-80::before {\n  content: \"\\F1A55\";\n}\n\n.mdi2-lightbulb-on-90::before {\n  content: \"\\F1A56\";\n}\n\n.mdi2-lightbulb-on-outline::before {\n  content: \"\\F06E9\";\n}\n\n.mdi2-lightbulb-outline::before {\n  content: \"\\F0336\";\n}\n\n.mdi2-lightbulb-question::before {\n  content: \"\\F19E3\";\n}\n\n.mdi2-lightbulb-question-outline::before {\n  content: \"\\F19E4\";\n}\n\n.mdi2-lightbulb-spot::before {\n  content: \"\\F17F4\";\n}\n\n.mdi2-lightbulb-spot-off::before {\n  content: \"\\F17F5\";\n}\n\n.mdi2-lightbulb-variant::before {\n  content: \"\\F1802\";\n}\n\n.mdi2-lightbulb-variant-outline::before {\n  content: \"\\F1803\";\n}\n\n.mdi2-lighthouse::before {\n  content: \"\\F09FF\";\n}\n\n.mdi2-lighthouse-on::before {\n  content: \"\\F0A00\";\n}\n\n.mdi2-lightning-bolt::before {\n  content: \"\\F140B\";\n}\n\n.mdi2-lightning-bolt-circle::before {\n  content: \"\\F0820\";\n}\n\n.mdi2-lightning-bolt-outline::before {\n  content: \"\\F140C\";\n}\n\n.mdi2-line-scan::before {\n  content: \"\\F0624\";\n}\n\n.mdi2-lingerie::before {\n  content: \"\\F1476\";\n}\n\n.mdi2-link::before {\n  content: \"\\F0337\";\n}\n\n.mdi2-link-box::before {\n  content: \"\\F0D1A\";\n}\n\n.mdi2-link-box-outline::before {\n  content: \"\\F0D1B\";\n}\n\n.mdi2-link-box-variant::before {\n  content: \"\\F0D1C\";\n}\n\n.mdi2-link-box-variant-outline::before {\n  content: \"\\F0D1D\";\n}\n\n.mdi2-link-circle::before {\n  content: \"\\F1CAC\";\n}\n\n.mdi2-link-circle-outline::before {\n  content: \"\\F1CAD\";\n}\n\n.mdi2-link-edit::before {\n  content: \"\\F1CAE\";\n}\n\n.mdi2-link-lock::before {\n  content: \"\\F10BA\";\n}\n\n.mdi2-link-off::before {\n  content: \"\\F0338\";\n}\n\n.mdi2-link-plus::before {\n  content: \"\\F0C94\";\n}\n\n.mdi2-link-variant::before {\n  content: \"\\F0339\";\n}\n\n.mdi2-link-variant-minus::before {\n  content: \"\\F10FF\";\n}\n\n.mdi2-link-variant-off::before {\n  content: \"\\F033A\";\n}\n\n.mdi2-link-variant-plus::before {\n  content: \"\\F1100\";\n}\n\n.mdi2-link-variant-remove::before {\n  content: \"\\F1101\";\n}\n\n.mdi2-linkedin::before {\n  content: \"\\F033B\";\n}\n\n.mdi2-linux::before {\n  content: \"\\F033D\";\n}\n\n.mdi2-linux-mint::before {\n  content: \"\\F08ED\";\n}\n\n.mdi2-lipstick::before {\n  content: \"\\F13B5\";\n}\n\n.mdi2-liquid-spot::before {\n  content: \"\\F1826\";\n}\n\n.mdi2-liquor::before {\n  content: \"\\F191E\";\n}\n\n.mdi2-list-box::before {\n  content: \"\\F1B7B\";\n}\n\n.mdi2-list-box-outline::before {\n  content: \"\\F1B7C\";\n}\n\n.mdi2-list-status::before {\n  content: \"\\F15AB\";\n}\n\n.mdi2-litecoin::before {\n  content: \"\\F0A61\";\n}\n\n.mdi2-loading::before {\n  content: \"\\F0772\";\n}\n\n.mdi2-location-enter::before {\n  content: \"\\F0FC4\";\n}\n\n.mdi2-location-exit::before {\n  content: \"\\F0FC5\";\n}\n\n.mdi2-lock::before {\n  content: \"\\F033E\";\n}\n\n.mdi2-lock-alert::before {\n  content: \"\\F08EE\";\n}\n\n.mdi2-lock-alert-outline::before {\n  content: \"\\F15D1\";\n}\n\n.mdi2-lock-check::before {\n  content: \"\\F139A\";\n}\n\n.mdi2-lock-check-outline::before {\n  content: \"\\F16A8\";\n}\n\n.mdi2-lock-clock::before {\n  content: \"\\F097F\";\n}\n\n.mdi2-lock-minus::before {\n  content: \"\\F16A9\";\n}\n\n.mdi2-lock-minus-outline::before {\n  content: \"\\F16AA\";\n}\n\n.mdi2-lock-off::before {\n  content: \"\\F1671\";\n}\n\n.mdi2-lock-off-outline::before {\n  content: \"\\F1672\";\n}\n\n.mdi2-lock-open::before {\n  content: \"\\F033F\";\n}\n\n.mdi2-lock-open-alert::before {\n  content: \"\\F139B\";\n}\n\n.mdi2-lock-open-alert-outline::before {\n  content: \"\\F15D2\";\n}\n\n.mdi2-lock-open-check::before {\n  content: \"\\F139C\";\n}\n\n.mdi2-lock-open-check-outline::before {\n  content: \"\\F16AB\";\n}\n\n.mdi2-lock-open-minus::before {\n  content: \"\\F16AC\";\n}\n\n.mdi2-lock-open-minus-outline::before {\n  content: \"\\F16AD\";\n}\n\n.mdi2-lock-open-outline::before {\n  content: \"\\F0340\";\n}\n\n.mdi2-lock-open-plus::before {\n  content: \"\\F16AE\";\n}\n\n.mdi2-lock-open-plus-outline::before {\n  content: \"\\F16AF\";\n}\n\n.mdi2-lock-open-remove::before {\n  content: \"\\F16B0\";\n}\n\n.mdi2-lock-open-remove-outline::before {\n  content: \"\\F16B1\";\n}\n\n.mdi2-lock-open-variant::before {\n  content: \"\\F0FC6\";\n}\n\n.mdi2-lock-open-variant-outline::before {\n  content: \"\\F0FC7\";\n}\n\n.mdi2-lock-outline::before {\n  content: \"\\F0341\";\n}\n\n.mdi2-lock-pattern::before {\n  content: \"\\F06EA\";\n}\n\n.mdi2-lock-percent::before {\n  content: \"\\F1C12\";\n}\n\n.mdi2-lock-percent-open::before {\n  content: \"\\F1C13\";\n}\n\n.mdi2-lock-percent-open-outline::before {\n  content: \"\\F1C14\";\n}\n\n.mdi2-lock-percent-open-variant::before {\n  content: \"\\F1C15\";\n}\n\n.mdi2-lock-percent-open-variant-outline::before {\n  content: \"\\F1C16\";\n}\n\n.mdi2-lock-percent-outline::before {\n  content: \"\\F1C17\";\n}\n\n.mdi2-lock-plus::before {\n  content: \"\\F05FB\";\n}\n\n.mdi2-lock-plus-outline::before {\n  content: \"\\F16B2\";\n}\n\n.mdi2-lock-question::before {\n  content: \"\\F08EF\";\n}\n\n.mdi2-lock-remove::before {\n  content: \"\\F16B3\";\n}\n\n.mdi2-lock-remove-outline::before {\n  content: \"\\F16B4\";\n}\n\n.mdi2-lock-reset::before {\n  content: \"\\F0773\";\n}\n\n.mdi2-lock-smart::before {\n  content: \"\\F08B2\";\n}\n\n.mdi2-locker::before {\n  content: \"\\F07D7\";\n}\n\n.mdi2-locker-multiple::before {\n  content: \"\\F07D8\";\n}\n\n.mdi2-login::before {\n  content: \"\\F0342\";\n}\n\n.mdi2-login-variant::before {\n  content: \"\\F05FC\";\n}\n\n.mdi2-logout::before {\n  content: \"\\F0343\";\n}\n\n.mdi2-logout-variant::before {\n  content: \"\\F05FD\";\n}\n\n.mdi2-longitude::before {\n  content: \"\\F0F5A\";\n}\n\n.mdi2-looks::before {\n  content: \"\\F0344\";\n}\n\n.mdi2-lotion::before {\n  content: \"\\F1582\";\n}\n\n.mdi2-lotion-outline::before {\n  content: \"\\F1583\";\n}\n\n.mdi2-lotion-plus::before {\n  content: \"\\F1584\";\n}\n\n.mdi2-lotion-plus-outline::before {\n  content: \"\\F1585\";\n}\n\n.mdi2-loupe::before {\n  content: \"\\F0345\";\n}\n\n.mdi2-lumx::before {\n  content: \"\\F0346\";\n}\n\n.mdi2-lungs::before {\n  content: \"\\F1084\";\n}\n\n.mdi2-mace::before {\n  content: \"\\F1843\";\n}\n\n.mdi2-magazine-pistol::before {\n  content: \"\\F0324\";\n}\n\n.mdi2-magazine-rifle::before {\n  content: \"\\F0323\";\n}\n\n.mdi2-magic-staff::before {\n  content: \"\\F1844\";\n}\n\n.mdi2-magnet::before {\n  content: \"\\F0347\";\n}\n\n.mdi2-magnet-on::before {\n  content: \"\\F0348\";\n}\n\n.mdi2-magnify::before {\n  content: \"\\F0349\";\n}\n\n.mdi2-magnify-close::before {\n  content: \"\\F0980\";\n}\n\n.mdi2-magnify-expand::before {\n  content: \"\\F1874\";\n}\n\n.mdi2-magnify-minus::before {\n  content: \"\\F034A\";\n}\n\n.mdi2-magnify-minus-cursor::before {\n  content: \"\\F0A62\";\n}\n\n.mdi2-magnify-minus-outline::before {\n  content: \"\\F06EC\";\n}\n\n.mdi2-magnify-plus::before {\n  content: \"\\F034B\";\n}\n\n.mdi2-magnify-plus-cursor::before {\n  content: \"\\F0A63\";\n}\n\n.mdi2-magnify-plus-outline::before {\n  content: \"\\F06ED\";\n}\n\n.mdi2-magnify-remove-cursor::before {\n  content: \"\\F120C\";\n}\n\n.mdi2-magnify-remove-outline::before {\n  content: \"\\F120D\";\n}\n\n.mdi2-magnify-scan::before {\n  content: \"\\F1276\";\n}\n\n.mdi2-mail::before {\n  content: \"\\F0EBB\";\n}\n\n.mdi2-mailbox::before {\n  content: \"\\F06EE\";\n}\n\n.mdi2-mailbox-open::before {\n  content: \"\\F0D88\";\n}\n\n.mdi2-mailbox-open-outline::before {\n  content: \"\\F0D89\";\n}\n\n.mdi2-mailbox-open-up::before {\n  content: \"\\F0D8A\";\n}\n\n.mdi2-mailbox-open-up-outline::before {\n  content: \"\\F0D8B\";\n}\n\n.mdi2-mailbox-outline::before {\n  content: \"\\F0D8C\";\n}\n\n.mdi2-mailbox-up::before {\n  content: \"\\F0D8D\";\n}\n\n.mdi2-mailbox-up-outline::before {\n  content: \"\\F0D8E\";\n}\n\n.mdi2-manjaro::before {\n  content: \"\\F160A\";\n}\n\n.mdi2-map::before {\n  content: \"\\F034D\";\n}\n\n.mdi2-map-check::before {\n  content: \"\\F0EBC\";\n}\n\n.mdi2-map-check-outline::before {\n  content: \"\\F0EBD\";\n}\n\n.mdi2-map-clock::before {\n  content: \"\\F0D1E\";\n}\n\n.mdi2-map-clock-outline::before {\n  content: \"\\F0D1F\";\n}\n\n.mdi2-map-legend::before {\n  content: \"\\F0A01\";\n}\n\n.mdi2-map-marker::before {\n  content: \"\\F034E\";\n}\n\n.mdi2-map-marker-account::before {\n  content: \"\\F18E3\";\n}\n\n.mdi2-map-marker-account-outline::before {\n  content: \"\\F18E4\";\n}\n\n.mdi2-map-marker-alert::before {\n  content: \"\\F0F05\";\n}\n\n.mdi2-map-marker-alert-outline::before {\n  content: \"\\F0F06\";\n}\n\n.mdi2-map-marker-check::before {\n  content: \"\\F0C95\";\n}\n\n.mdi2-map-marker-check-outline::before {\n  content: \"\\F12FB\";\n}\n\n.mdi2-map-marker-circle::before {\n  content: \"\\F034F\";\n}\n\n.mdi2-map-marker-distance::before {\n  content: \"\\F08F0\";\n}\n\n.mdi2-map-marker-down::before {\n  content: \"\\F1102\";\n}\n\n.mdi2-map-marker-left::before {\n  content: \"\\F12DB\";\n}\n\n.mdi2-map-marker-left-outline::before {\n  content: \"\\F12DD\";\n}\n\n.mdi2-map-marker-minus::before {\n  content: \"\\F0650\";\n}\n\n.mdi2-map-marker-minus-outline::before {\n  content: \"\\F12F9\";\n}\n\n.mdi2-map-marker-multiple::before {\n  content: \"\\F0350\";\n}\n\n.mdi2-map-marker-multiple-outline::before {\n  content: \"\\F1277\";\n}\n\n.mdi2-map-marker-off::before {\n  content: \"\\F0351\";\n}\n\n.mdi2-map-marker-off-outline::before {\n  content: \"\\F12FD\";\n}\n\n.mdi2-map-marker-outline::before {\n  content: \"\\F07D9\";\n}\n\n.mdi2-map-marker-path::before {\n  content: \"\\F0D20\";\n}\n\n.mdi2-map-marker-plus::before {\n  content: \"\\F0651\";\n}\n\n.mdi2-map-marker-plus-outline::before {\n  content: \"\\F12F8\";\n}\n\n.mdi2-map-marker-question::before {\n  content: \"\\F0F07\";\n}\n\n.mdi2-map-marker-question-outline::before {\n  content: \"\\F0F08\";\n}\n\n.mdi2-map-marker-radius::before {\n  content: \"\\F0352\";\n}\n\n.mdi2-map-marker-radius-outline::before {\n  content: \"\\F12FC\";\n}\n\n.mdi2-map-marker-remove::before {\n  content: \"\\F0F09\";\n}\n\n.mdi2-map-marker-remove-outline::before {\n  content: \"\\F12FA\";\n}\n\n.mdi2-map-marker-remove-variant::before {\n  content: \"\\F0F0A\";\n}\n\n.mdi2-map-marker-right::before {\n  content: \"\\F12DC\";\n}\n\n.mdi2-map-marker-right-outline::before {\n  content: \"\\F12DE\";\n}\n\n.mdi2-map-marker-star::before {\n  content: \"\\F1608\";\n}\n\n.mdi2-map-marker-star-outline::before {\n  content: \"\\F1609\";\n}\n\n.mdi2-map-marker-up::before {\n  content: \"\\F1103\";\n}\n\n.mdi2-map-minus::before {\n  content: \"\\F0981\";\n}\n\n.mdi2-map-outline::before {\n  content: \"\\F0982\";\n}\n\n.mdi2-map-plus::before {\n  content: \"\\F0983\";\n}\n\n.mdi2-map-search::before {\n  content: \"\\F0984\";\n}\n\n.mdi2-map-search-outline::before {\n  content: \"\\F0985\";\n}\n\n.mdi2-mapbox::before {\n  content: \"\\F0BAA\";\n}\n\n.mdi2-margin::before {\n  content: \"\\F0353\";\n}\n\n.mdi2-marker::before {\n  content: \"\\F0652\";\n}\n\n.mdi2-marker-cancel::before {\n  content: \"\\F0DD9\";\n}\n\n.mdi2-marker-check::before {\n  content: \"\\F0355\";\n}\n\n.mdi2-mastodon::before {\n  content: \"\\F0AD1\";\n}\n\n.mdi2-material-design::before {\n  content: \"\\F0986\";\n}\n\n.mdi2-material-ui::before {\n  content: \"\\F0357\";\n}\n\n.mdi2-math-compass::before {\n  content: \"\\F0358\";\n}\n\n.mdi2-math-cos::before {\n  content: \"\\F0C96\";\n}\n\n.mdi2-math-integral::before {\n  content: \"\\F0FC8\";\n}\n\n.mdi2-math-integral-box::before {\n  content: \"\\F0FC9\";\n}\n\n.mdi2-math-log::before {\n  content: \"\\F1085\";\n}\n\n.mdi2-math-norm::before {\n  content: \"\\F0FCA\";\n}\n\n.mdi2-math-norm-box::before {\n  content: \"\\F0FCB\";\n}\n\n.mdi2-math-sin::before {\n  content: \"\\F0C97\";\n}\n\n.mdi2-math-tan::before {\n  content: \"\\F0C98\";\n}\n\n.mdi2-matrix::before {\n  content: \"\\F0628\";\n}\n\n.mdi2-medal::before {\n  content: \"\\F0987\";\n}\n\n.mdi2-medal-outline::before {\n  content: \"\\F1326\";\n}\n\n.mdi2-medical-bag::before {\n  content: \"\\F06EF\";\n}\n\n.mdi2-medical-cotton-swab::before {\n  content: \"\\F1AB8\";\n}\n\n.mdi2-medication::before {\n  content: \"\\F1B14\";\n}\n\n.mdi2-medication-outline::before {\n  content: \"\\F1B15\";\n}\n\n.mdi2-meditation::before {\n  content: \"\\F117B\";\n}\n\n.mdi2-memory::before {\n  content: \"\\F035B\";\n}\n\n.mdi2-memory-arrow-down::before {\n  content: \"\\F1CA6\";\n}\n\n.mdi2-menorah::before {\n  content: \"\\F17D4\";\n}\n\n.mdi2-menorah-fire::before {\n  content: \"\\F17D5\";\n}\n\n.mdi2-menu::before {\n  content: \"\\F035C\";\n}\n\n.mdi2-menu-close::before {\n  content: \"\\F1C90\";\n}\n\n.mdi2-menu-down::before {\n  content: \"\\F035D\";\n}\n\n.mdi2-menu-down-outline::before {\n  content: \"\\F06B6\";\n}\n\n.mdi2-menu-left::before {\n  content: \"\\F035E\";\n}\n\n.mdi2-menu-left-outline::before {\n  content: \"\\F0A02\";\n}\n\n.mdi2-menu-open::before {\n  content: \"\\F0BAB\";\n}\n\n.mdi2-menu-right::before {\n  content: \"\\F035F\";\n}\n\n.mdi2-menu-right-outline::before {\n  content: \"\\F0A03\";\n}\n\n.mdi2-menu-swap::before {\n  content: \"\\F0A64\";\n}\n\n.mdi2-menu-swap-outline::before {\n  content: \"\\F0A65\";\n}\n\n.mdi2-menu-up::before {\n  content: \"\\F0360\";\n}\n\n.mdi2-menu-up-outline::before {\n  content: \"\\F06B7\";\n}\n\n.mdi2-merge::before {\n  content: \"\\F0F5C\";\n}\n\n.mdi2-message::before {\n  content: \"\\F0361\";\n}\n\n.mdi2-message-alert::before {\n  content: \"\\F0362\";\n}\n\n.mdi2-message-alert-outline::before {\n  content: \"\\F0A04\";\n}\n\n.mdi2-message-arrow-left::before {\n  content: \"\\F12F2\";\n}\n\n.mdi2-message-arrow-left-outline::before {\n  content: \"\\F12F3\";\n}\n\n.mdi2-message-arrow-right::before {\n  content: \"\\F12F4\";\n}\n\n.mdi2-message-arrow-right-outline::before {\n  content: \"\\F12F5\";\n}\n\n.mdi2-message-badge::before {\n  content: \"\\F1941\";\n}\n\n.mdi2-message-badge-outline::before {\n  content: \"\\F1942\";\n}\n\n.mdi2-message-bookmark::before {\n  content: \"\\F15AC\";\n}\n\n.mdi2-message-bookmark-outline::before {\n  content: \"\\F15AD\";\n}\n\n.mdi2-message-bulleted::before {\n  content: \"\\F06A2\";\n}\n\n.mdi2-message-bulleted-off::before {\n  content: \"\\F06A3\";\n}\n\n.mdi2-message-check::before {\n  content: \"\\F1B8A\";\n}\n\n.mdi2-message-check-outline::before {\n  content: \"\\F1B8B\";\n}\n\n.mdi2-message-cog::before {\n  content: \"\\F06F1\";\n}\n\n.mdi2-message-cog-outline::before {\n  content: \"\\F1172\";\n}\n\n.mdi2-message-draw::before {\n  content: \"\\F0363\";\n}\n\n.mdi2-message-fast::before {\n  content: \"\\F19CC\";\n}\n\n.mdi2-message-fast-outline::before {\n  content: \"\\F19CD\";\n}\n\n.mdi2-message-flash::before {\n  content: \"\\F15A9\";\n}\n\n.mdi2-message-flash-outline::before {\n  content: \"\\F15AA\";\n}\n\n.mdi2-message-image::before {\n  content: \"\\F0364\";\n}\n\n.mdi2-message-image-outline::before {\n  content: \"\\F116C\";\n}\n\n.mdi2-message-lock::before {\n  content: \"\\F0FCC\";\n}\n\n.mdi2-message-lock-outline::before {\n  content: \"\\F116D\";\n}\n\n.mdi2-message-minus::before {\n  content: \"\\F116E\";\n}\n\n.mdi2-message-minus-outline::before {\n  content: \"\\F116F\";\n}\n\n.mdi2-message-off::before {\n  content: \"\\F164D\";\n}\n\n.mdi2-message-off-outline::before {\n  content: \"\\F164E\";\n}\n\n.mdi2-message-outline::before {\n  content: \"\\F0365\";\n}\n\n.mdi2-message-plus::before {\n  content: \"\\F0653\";\n}\n\n.mdi2-message-plus-outline::before {\n  content: \"\\F10BB\";\n}\n\n.mdi2-message-processing::before {\n  content: \"\\F0366\";\n}\n\n.mdi2-message-processing-outline::before {\n  content: \"\\F1170\";\n}\n\n.mdi2-message-question::before {\n  content: \"\\F173A\";\n}\n\n.mdi2-message-question-outline::before {\n  content: \"\\F173B\";\n}\n\n.mdi2-message-reply::before {\n  content: \"\\F0367\";\n}\n\n.mdi2-message-reply-outline::before {\n  content: \"\\F173D\";\n}\n\n.mdi2-message-reply-text::before {\n  content: \"\\F0368\";\n}\n\n.mdi2-message-reply-text-outline::before {\n  content: \"\\F173E\";\n}\n\n.mdi2-message-settings::before {\n  content: \"\\F06F0\";\n}\n\n.mdi2-message-settings-outline::before {\n  content: \"\\F1171\";\n}\n\n.mdi2-message-star::before {\n  content: \"\\F069A\";\n}\n\n.mdi2-message-star-outline::before {\n  content: \"\\F1250\";\n}\n\n.mdi2-message-text::before {\n  content: \"\\F0369\";\n}\n\n.mdi2-message-text-clock::before {\n  content: \"\\F1173\";\n}\n\n.mdi2-message-text-clock-outline::before {\n  content: \"\\F1174\";\n}\n\n.mdi2-message-text-fast::before {\n  content: \"\\F19CE\";\n}\n\n.mdi2-message-text-fast-outline::before {\n  content: \"\\F19CF\";\n}\n\n.mdi2-message-text-lock::before {\n  content: \"\\F0FCD\";\n}\n\n.mdi2-message-text-lock-outline::before {\n  content: \"\\F1175\";\n}\n\n.mdi2-message-text-outline::before {\n  content: \"\\F036A\";\n}\n\n.mdi2-message-video::before {\n  content: \"\\F036B\";\n}\n\n.mdi2-meteor::before {\n  content: \"\\F0629\";\n}\n\n.mdi2-meter-electric::before {\n  content: \"\\F1A57\";\n}\n\n.mdi2-meter-electric-outline::before {\n  content: \"\\F1A58\";\n}\n\n.mdi2-meter-gas::before {\n  content: \"\\F1A59\";\n}\n\n.mdi2-meter-gas-outline::before {\n  content: \"\\F1A5A\";\n}\n\n.mdi2-metronome::before {\n  content: \"\\F07DA\";\n}\n\n.mdi2-metronome-tick::before {\n  content: \"\\F07DB\";\n}\n\n.mdi2-micro-sd::before {\n  content: \"\\F07DC\";\n}\n\n.mdi2-microphone::before {\n  content: \"\\F036C\";\n}\n\n.mdi2-microphone-message::before {\n  content: \"\\F050A\";\n}\n\n.mdi2-microphone-message-off::before {\n  content: \"\\F050B\";\n}\n\n.mdi2-microphone-minus::before {\n  content: \"\\F08B3\";\n}\n\n.mdi2-microphone-off::before {\n  content: \"\\F036D\";\n}\n\n.mdi2-microphone-outline::before {\n  content: \"\\F036E\";\n}\n\n.mdi2-microphone-plus::before {\n  content: \"\\F08B4\";\n}\n\n.mdi2-microphone-question::before {\n  content: \"\\F1989\";\n}\n\n.mdi2-microphone-question-outline::before {\n  content: \"\\F198A\";\n}\n\n.mdi2-microphone-settings::before {\n  content: \"\\F036F\";\n}\n\n.mdi2-microphone-variant::before {\n  content: \"\\F0370\";\n}\n\n.mdi2-microphone-variant-off::before {\n  content: \"\\F0371\";\n}\n\n.mdi2-microscope::before {\n  content: \"\\F0654\";\n}\n\n.mdi2-microsoft::before {\n  content: \"\\F0372\";\n}\n\n.mdi2-microsoft-access::before {\n  content: \"\\F138E\";\n}\n\n.mdi2-microsoft-azure::before {\n  content: \"\\F0805\";\n}\n\n.mdi2-microsoft-azure-devops::before {\n  content: \"\\F0FD5\";\n}\n\n.mdi2-microsoft-bing::before {\n  content: \"\\F00A4\";\n}\n\n.mdi2-microsoft-dynamics-365::before {\n  content: \"\\F0988\";\n}\n\n.mdi2-microsoft-edge::before {\n  content: \"\\F01E9\";\n}\n\n.mdi2-microsoft-excel::before {\n  content: \"\\F138F\";\n}\n\n.mdi2-microsoft-internet-explorer::before {\n  content: \"\\F0300\";\n}\n\n.mdi2-microsoft-office::before {\n  content: \"\\F03C6\";\n}\n\n.mdi2-microsoft-onedrive::before {\n  content: \"\\F03CA\";\n}\n\n.mdi2-microsoft-onenote::before {\n  content: \"\\F0747\";\n}\n\n.mdi2-microsoft-outlook::before {\n  content: \"\\F0D22\";\n}\n\n.mdi2-microsoft-powerpoint::before {\n  content: \"\\F1390\";\n}\n\n.mdi2-microsoft-sharepoint::before {\n  content: \"\\F1391\";\n}\n\n.mdi2-microsoft-teams::before {\n  content: \"\\F02BB\";\n}\n\n.mdi2-microsoft-visual-studio::before {\n  content: \"\\F0610\";\n}\n\n.mdi2-microsoft-visual-studio-code::before {\n  content: \"\\F0A1E\";\n}\n\n.mdi2-microsoft-windows::before {\n  content: \"\\F05B3\";\n}\n\n.mdi2-microsoft-windows-classic::before {\n  content: \"\\F0A21\";\n}\n\n.mdi2-microsoft-word::before {\n  content: \"\\F1392\";\n}\n\n.mdi2-microsoft-xbox::before {\n  content: \"\\F05B9\";\n}\n\n.mdi2-microsoft-xbox-controller::before {\n  content: \"\\F05BA\";\n}\n\n.mdi2-microsoft-xbox-controller-battery-alert::before {\n  content: \"\\F074B\";\n}\n\n.mdi2-microsoft-xbox-controller-battery-charging::before {\n  content: \"\\F0A22\";\n}\n\n.mdi2-microsoft-xbox-controller-battery-empty::before {\n  content: \"\\F074C\";\n}\n\n.mdi2-microsoft-xbox-controller-battery-full::before {\n  content: \"\\F074D\";\n}\n\n.mdi2-microsoft-xbox-controller-battery-low::before {\n  content: \"\\F074E\";\n}\n\n.mdi2-microsoft-xbox-controller-battery-medium::before {\n  content: \"\\F074F\";\n}\n\n.mdi2-microsoft-xbox-controller-battery-unknown::before {\n  content: \"\\F0750\";\n}\n\n.mdi2-microsoft-xbox-controller-menu::before {\n  content: \"\\F0E6F\";\n}\n\n.mdi2-microsoft-xbox-controller-off::before {\n  content: \"\\F05BB\";\n}\n\n.mdi2-microsoft-xbox-controller-view::before {\n  content: \"\\F0E70\";\n}\n\n.mdi2-microwave::before {\n  content: \"\\F0C99\";\n}\n\n.mdi2-microwave-off::before {\n  content: \"\\F1423\";\n}\n\n.mdi2-middleware::before {\n  content: \"\\F0F5D\";\n}\n\n.mdi2-middleware-outline::before {\n  content: \"\\F0F5E\";\n}\n\n.mdi2-midi::before {\n  content: \"\\F08F1\";\n}\n\n.mdi2-midi-port::before {\n  content: \"\\F08F2\";\n}\n\n.mdi2-mine::before {\n  content: \"\\F0DDA\";\n}\n\n.mdi2-minecraft::before {\n  content: \"\\F0373\";\n}\n\n.mdi2-mini-sd::before {\n  content: \"\\F0A05\";\n}\n\n.mdi2-minidisc::before {\n  content: \"\\F0A06\";\n}\n\n.mdi2-minus::before {\n  content: \"\\F0374\";\n}\n\n.mdi2-minus-box::before {\n  content: \"\\F0375\";\n}\n\n.mdi2-minus-box-multiple::before {\n  content: \"\\F1141\";\n}\n\n.mdi2-minus-box-multiple-outline::before {\n  content: \"\\F1142\";\n}\n\n.mdi2-minus-box-outline::before {\n  content: \"\\F06F2\";\n}\n\n.mdi2-minus-circle::before {\n  content: \"\\F0376\";\n}\n\n.mdi2-minus-circle-multiple::before {\n  content: \"\\F035A\";\n}\n\n.mdi2-minus-circle-multiple-outline::before {\n  content: \"\\F0AD3\";\n}\n\n.mdi2-minus-circle-off::before {\n  content: \"\\F1459\";\n}\n\n.mdi2-minus-circle-off-outline::before {\n  content: \"\\F145A\";\n}\n\n.mdi2-minus-circle-outline::before {\n  content: \"\\F0377\";\n}\n\n.mdi2-minus-network::before {\n  content: \"\\F0378\";\n}\n\n.mdi2-minus-network-outline::before {\n  content: \"\\F0C9A\";\n}\n\n.mdi2-minus-thick::before {\n  content: \"\\F1639\";\n}\n\n.mdi2-mirror::before {\n  content: \"\\F11FD\";\n}\n\n.mdi2-mirror-rectangle::before {\n  content: \"\\F179F\";\n}\n\n.mdi2-mirror-variant::before {\n  content: \"\\F17A0\";\n}\n\n.mdi2-mixed-martial-arts::before {\n  content: \"\\F0D8F\";\n}\n\n.mdi2-mixed-reality::before {\n  content: \"\\F087F\";\n}\n\n.mdi2-molecule::before {\n  content: \"\\F0BAC\";\n}\n\n.mdi2-molecule-co::before {\n  content: \"\\F12FE\";\n}\n\n.mdi2-molecule-co2::before {\n  content: \"\\F07E4\";\n}\n\n.mdi2-monitor::before {\n  content: \"\\F0379\";\n}\n\n.mdi2-monitor-account::before {\n  content: \"\\F1A5B\";\n}\n\n.mdi2-monitor-arrow-down::before {\n  content: \"\\F19D0\";\n}\n\n.mdi2-monitor-arrow-down-variant::before {\n  content: \"\\F19D1\";\n}\n\n.mdi2-monitor-cellphone::before {\n  content: \"\\F0989\";\n}\n\n.mdi2-monitor-cellphone-star::before {\n  content: \"\\F098A\";\n}\n\n.mdi2-monitor-dashboard::before {\n  content: \"\\F0A07\";\n}\n\n.mdi2-monitor-edit::before {\n  content: \"\\F12C6\";\n}\n\n.mdi2-monitor-eye::before {\n  content: \"\\F13B4\";\n}\n\n.mdi2-monitor-lock::before {\n  content: \"\\F0DDB\";\n}\n\n.mdi2-monitor-multiple::before {\n  content: \"\\F037A\";\n}\n\n.mdi2-monitor-off::before {\n  content: \"\\F0D90\";\n}\n\n.mdi2-monitor-screenshot::before {\n  content: \"\\F0E51\";\n}\n\n.mdi2-monitor-share::before {\n  content: \"\\F1483\";\n}\n\n.mdi2-monitor-shimmer::before {\n  content: \"\\F1104\";\n}\n\n.mdi2-monitor-small::before {\n  content: \"\\F1876\";\n}\n\n.mdi2-monitor-speaker::before {\n  content: \"\\F0F5F\";\n}\n\n.mdi2-monitor-speaker-off::before {\n  content: \"\\F0F60\";\n}\n\n.mdi2-monitor-star::before {\n  content: \"\\F0DDC\";\n}\n\n.mdi2-monitor-vertical::before {\n  content: \"\\F1C33\";\n}\n\n.mdi2-moon-first-quarter::before {\n  content: \"\\F0F61\";\n}\n\n.mdi2-moon-full::before {\n  content: \"\\F0F62\";\n}\n\n.mdi2-moon-last-quarter::before {\n  content: \"\\F0F63\";\n}\n\n.mdi2-moon-new::before {\n  content: \"\\F0F64\";\n}\n\n.mdi2-moon-waning-crescent::before {\n  content: \"\\F0F65\";\n}\n\n.mdi2-moon-waning-gibbous::before {\n  content: \"\\F0F66\";\n}\n\n.mdi2-moon-waxing-crescent::before {\n  content: \"\\F0F67\";\n}\n\n.mdi2-moon-waxing-gibbous::before {\n  content: \"\\F0F68\";\n}\n\n.mdi2-moped::before {\n  content: \"\\F1086\";\n}\n\n.mdi2-moped-electric::before {\n  content: \"\\F15B7\";\n}\n\n.mdi2-moped-electric-outline::before {\n  content: \"\\F15B8\";\n}\n\n.mdi2-moped-outline::before {\n  content: \"\\F15B9\";\n}\n\n.mdi2-more::before {\n  content: \"\\F037B\";\n}\n\n.mdi2-mortar-pestle::before {\n  content: \"\\F1748\";\n}\n\n.mdi2-mortar-pestle-plus::before {\n  content: \"\\F03F1\";\n}\n\n.mdi2-mosque::before {\n  content: \"\\F0D45\";\n}\n\n.mdi2-mosque-outline::before {\n  content: \"\\F1827\";\n}\n\n.mdi2-mother-heart::before {\n  content: \"\\F1314\";\n}\n\n.mdi2-mother-nurse::before {\n  content: \"\\F0D21\";\n}\n\n.mdi2-motion::before {\n  content: \"\\F15B2\";\n}\n\n.mdi2-motion-outline::before {\n  content: \"\\F15B3\";\n}\n\n.mdi2-motion-pause::before {\n  content: \"\\F1590\";\n}\n\n.mdi2-motion-pause-outline::before {\n  content: \"\\F1592\";\n}\n\n.mdi2-motion-play::before {\n  content: \"\\F158F\";\n}\n\n.mdi2-motion-play-outline::before {\n  content: \"\\F1591\";\n}\n\n.mdi2-motion-sensor::before {\n  content: \"\\F0D91\";\n}\n\n.mdi2-motion-sensor-off::before {\n  content: \"\\F1435\";\n}\n\n.mdi2-motorbike::before {\n  content: \"\\F037C\";\n}\n\n.mdi2-motorbike-electric::before {\n  content: \"\\F15BA\";\n}\n\n.mdi2-motorbike-off::before {\n  content: \"\\F1B16\";\n}\n\n.mdi2-mouse::before {\n  content: \"\\F037D\";\n}\n\n.mdi2-mouse-bluetooth::before {\n  content: \"\\F098B\";\n}\n\n.mdi2-mouse-left-click::before {\n  content: \"\\F1D07\";\n}\n\n.mdi2-mouse-left-click-outline::before {\n  content: \"\\F1D08\";\n}\n\n.mdi2-mouse-move-down::before {\n  content: \"\\F1550\";\n}\n\n.mdi2-mouse-move-up::before {\n  content: \"\\F1551\";\n}\n\n.mdi2-mouse-move-vertical::before {\n  content: \"\\F1552\";\n}\n\n.mdi2-mouse-off::before {\n  content: \"\\F037E\";\n}\n\n.mdi2-mouse-outline::before {\n  content: \"\\F1D09\";\n}\n\n.mdi2-mouse-right-click::before {\n  content: \"\\F1D0A\";\n}\n\n.mdi2-mouse-right-click-outline::before {\n  content: \"\\F1D0B\";\n}\n\n.mdi2-mouse-scroll-wheel::before {\n  content: \"\\F1D0C\";\n}\n\n.mdi2-mouse-variant::before {\n  content: \"\\F037F\";\n}\n\n.mdi2-mouse-variant-off::before {\n  content: \"\\F0380\";\n}\n\n.mdi2-move-resize::before {\n  content: \"\\F0655\";\n}\n\n.mdi2-move-resize-variant::before {\n  content: \"\\F0656\";\n}\n\n.mdi2-movie::before {\n  content: \"\\F0381\";\n}\n\n.mdi2-movie-check::before {\n  content: \"\\F16F3\";\n}\n\n.mdi2-movie-check-outline::before {\n  content: \"\\F16F4\";\n}\n\n.mdi2-movie-cog::before {\n  content: \"\\F16F5\";\n}\n\n.mdi2-movie-cog-outline::before {\n  content: \"\\F16F6\";\n}\n\n.mdi2-movie-edit::before {\n  content: \"\\F1122\";\n}\n\n.mdi2-movie-edit-outline::before {\n  content: \"\\F1123\";\n}\n\n.mdi2-movie-filter::before {\n  content: \"\\F1124\";\n}\n\n.mdi2-movie-filter-outline::before {\n  content: \"\\F1125\";\n}\n\n.mdi2-movie-minus::before {\n  content: \"\\F16F7\";\n}\n\n.mdi2-movie-minus-outline::before {\n  content: \"\\F16F8\";\n}\n\n.mdi2-movie-off::before {\n  content: \"\\F16F9\";\n}\n\n.mdi2-movie-off-outline::before {\n  content: \"\\F16FA\";\n}\n\n.mdi2-movie-open::before {\n  content: \"\\F0FCE\";\n}\n\n.mdi2-movie-open-check::before {\n  content: \"\\F16FB\";\n}\n\n.mdi2-movie-open-check-outline::before {\n  content: \"\\F16FC\";\n}\n\n.mdi2-movie-open-cog::before {\n  content: \"\\F16FD\";\n}\n\n.mdi2-movie-open-cog-outline::before {\n  content: \"\\F16FE\";\n}\n\n.mdi2-movie-open-edit::before {\n  content: \"\\F16FF\";\n}\n\n.mdi2-movie-open-edit-outline::before {\n  content: \"\\F1700\";\n}\n\n.mdi2-movie-open-minus::before {\n  content: \"\\F1701\";\n}\n\n.mdi2-movie-open-minus-outline::before {\n  content: \"\\F1702\";\n}\n\n.mdi2-movie-open-off::before {\n  content: \"\\F1703\";\n}\n\n.mdi2-movie-open-off-outline::before {\n  content: \"\\F1704\";\n}\n\n.mdi2-movie-open-outline::before {\n  content: \"\\F0FCF\";\n}\n\n.mdi2-movie-open-play::before {\n  content: \"\\F1705\";\n}\n\n.mdi2-movie-open-play-outline::before {\n  content: \"\\F1706\";\n}\n\n.mdi2-movie-open-plus::before {\n  content: \"\\F1707\";\n}\n\n.mdi2-movie-open-plus-outline::before {\n  content: \"\\F1708\";\n}\n\n.mdi2-movie-open-remove::before {\n  content: \"\\F1709\";\n}\n\n.mdi2-movie-open-remove-outline::before {\n  content: \"\\F170A\";\n}\n\n.mdi2-movie-open-settings::before {\n  content: \"\\F170B\";\n}\n\n.mdi2-movie-open-settings-outline::before {\n  content: \"\\F170C\";\n}\n\n.mdi2-movie-open-star::before {\n  content: \"\\F170D\";\n}\n\n.mdi2-movie-open-star-outline::before {\n  content: \"\\F170E\";\n}\n\n.mdi2-movie-outline::before {\n  content: \"\\F0DDD\";\n}\n\n.mdi2-movie-play::before {\n  content: \"\\F170F\";\n}\n\n.mdi2-movie-play-outline::before {\n  content: \"\\F1710\";\n}\n\n.mdi2-movie-plus::before {\n  content: \"\\F1711\";\n}\n\n.mdi2-movie-plus-outline::before {\n  content: \"\\F1712\";\n}\n\n.mdi2-movie-remove::before {\n  content: \"\\F1713\";\n}\n\n.mdi2-movie-remove-outline::before {\n  content: \"\\F1714\";\n}\n\n.mdi2-movie-roll::before {\n  content: \"\\F07DE\";\n}\n\n.mdi2-movie-search::before {\n  content: \"\\F11D2\";\n}\n\n.mdi2-movie-search-outline::before {\n  content: \"\\F11D3\";\n}\n\n.mdi2-movie-settings::before {\n  content: \"\\F1715\";\n}\n\n.mdi2-movie-settings-outline::before {\n  content: \"\\F1716\";\n}\n\n.mdi2-movie-star::before {\n  content: \"\\F1717\";\n}\n\n.mdi2-movie-star-outline::before {\n  content: \"\\F1718\";\n}\n\n.mdi2-mower::before {\n  content: \"\\F166F\";\n}\n\n.mdi2-mower-bag::before {\n  content: \"\\F1670\";\n}\n\n.mdi2-mower-bag-on::before {\n  content: \"\\F1B60\";\n}\n\n.mdi2-mower-on::before {\n  content: \"\\F1B5F\";\n}\n\n.mdi2-muffin::before {\n  content: \"\\F098C\";\n}\n\n.mdi2-multicast::before {\n  content: \"\\F1893\";\n}\n\n.mdi2-multimedia::before {\n  content: \"\\F1B97\";\n}\n\n.mdi2-multiplication::before {\n  content: \"\\F0382\";\n}\n\n.mdi2-multiplication-box::before {\n  content: \"\\F0383\";\n}\n\n.mdi2-mushroom::before {\n  content: \"\\F07DF\";\n}\n\n.mdi2-mushroom-off::before {\n  content: \"\\F13FA\";\n}\n\n.mdi2-mushroom-off-outline::before {\n  content: \"\\F13FB\";\n}\n\n.mdi2-mushroom-outline::before {\n  content: \"\\F07E0\";\n}\n\n.mdi2-music::before {\n  content: \"\\F075A\";\n}\n\n.mdi2-music-accidental-double-flat::before {\n  content: \"\\F0F69\";\n}\n\n.mdi2-music-accidental-double-sharp::before {\n  content: \"\\F0F6A\";\n}\n\n.mdi2-music-accidental-flat::before {\n  content: \"\\F0F6B\";\n}\n\n.mdi2-music-accidental-natural::before {\n  content: \"\\F0F6C\";\n}\n\n.mdi2-music-accidental-sharp::before {\n  content: \"\\F0F6D\";\n}\n\n.mdi2-music-box::before {\n  content: \"\\F0384\";\n}\n\n.mdi2-music-box-multiple::before {\n  content: \"\\F0333\";\n}\n\n.mdi2-music-box-multiple-outline::before {\n  content: \"\\F0F04\";\n}\n\n.mdi2-music-box-outline::before {\n  content: \"\\F0385\";\n}\n\n.mdi2-music-circle::before {\n  content: \"\\F0386\";\n}\n\n.mdi2-music-circle-outline::before {\n  content: \"\\F0AD4\";\n}\n\n.mdi2-music-clef-alto::before {\n  content: \"\\F0F6E\";\n}\n\n.mdi2-music-clef-bass::before {\n  content: \"\\F0F6F\";\n}\n\n.mdi2-music-clef-treble::before {\n  content: \"\\F0F70\";\n}\n\n.mdi2-music-note::before {\n  content: \"\\F0387\";\n}\n\n.mdi2-music-note-bluetooth::before {\n  content: \"\\F05FE\";\n}\n\n.mdi2-music-note-bluetooth-off::before {\n  content: \"\\F05FF\";\n}\n\n.mdi2-music-note-eighth::before {\n  content: \"\\F0388\";\n}\n\n.mdi2-music-note-eighth-dotted::before {\n  content: \"\\F0F71\";\n}\n\n.mdi2-music-note-half::before {\n  content: \"\\F0389\";\n}\n\n.mdi2-music-note-half-dotted::before {\n  content: \"\\F0F72\";\n}\n\n.mdi2-music-note-minus::before {\n  content: \"\\F1B89\";\n}\n\n.mdi2-music-note-off::before {\n  content: \"\\F038A\";\n}\n\n.mdi2-music-note-off-outline::before {\n  content: \"\\F0F73\";\n}\n\n.mdi2-music-note-outline::before {\n  content: \"\\F0F74\";\n}\n\n.mdi2-music-note-plus::before {\n  content: \"\\F0DDE\";\n}\n\n.mdi2-music-note-quarter::before {\n  content: \"\\F038B\";\n}\n\n.mdi2-music-note-quarter-dotted::before {\n  content: \"\\F0F75\";\n}\n\n.mdi2-music-note-sixteenth::before {\n  content: \"\\F038C\";\n}\n\n.mdi2-music-note-sixteenth-dotted::before {\n  content: \"\\F0F76\";\n}\n\n.mdi2-music-note-whole::before {\n  content: \"\\F038D\";\n}\n\n.mdi2-music-note-whole-dotted::before {\n  content: \"\\F0F77\";\n}\n\n.mdi2-music-off::before {\n  content: \"\\F075B\";\n}\n\n.mdi2-music-rest-eighth::before {\n  content: \"\\F0F78\";\n}\n\n.mdi2-music-rest-half::before {\n  content: \"\\F0F79\";\n}\n\n.mdi2-music-rest-quarter::before {\n  content: \"\\F0F7A\";\n}\n\n.mdi2-music-rest-sixteenth::before {\n  content: \"\\F0F7B\";\n}\n\n.mdi2-music-rest-whole::before {\n  content: \"\\F0F7C\";\n}\n\n.mdi2-mustache::before {\n  content: \"\\F15DE\";\n}\n\n.mdi2-nail::before {\n  content: \"\\F0DDF\";\n}\n\n.mdi2-nas::before {\n  content: \"\\F08F3\";\n}\n\n.mdi2-nativescript::before {\n  content: \"\\F0880\";\n}\n\n.mdi2-nature::before {\n  content: \"\\F038E\";\n}\n\n.mdi2-nature-outline::before {\n  content: \"\\F1C71\";\n}\n\n.mdi2-nature-people::before {\n  content: \"\\F038F\";\n}\n\n.mdi2-nature-people-outline::before {\n  content: \"\\F1C72\";\n}\n\n.mdi2-navigation::before {\n  content: \"\\F0390\";\n}\n\n.mdi2-navigation-outline::before {\n  content: \"\\F1607\";\n}\n\n.mdi2-navigation-variant::before {\n  content: \"\\F18F0\";\n}\n\n.mdi2-navigation-variant-outline::before {\n  content: \"\\F18F1\";\n}\n\n.mdi2-near-me::before {\n  content: \"\\F05CD\";\n}\n\n.mdi2-necklace::before {\n  content: \"\\F0F0B\";\n}\n\n.mdi2-needle::before {\n  content: \"\\F0391\";\n}\n\n.mdi2-needle-off::before {\n  content: \"\\F19D2\";\n}\n\n.mdi2-netflix::before {\n  content: \"\\F0746\";\n}\n\n.mdi2-network::before {\n  content: \"\\F06F3\";\n}\n\n.mdi2-network-off::before {\n  content: \"\\F0C9B\";\n}\n\n.mdi2-network-off-outline::before {\n  content: \"\\F0C9C\";\n}\n\n.mdi2-network-outline::before {\n  content: \"\\F0C9D\";\n}\n\n.mdi2-network-pos::before {\n  content: \"\\F1ACB\";\n}\n\n.mdi2-network-strength-1::before {\n  content: \"\\F08F4\";\n}\n\n.mdi2-network-strength-1-alert::before {\n  content: \"\\F08F5\";\n}\n\n.mdi2-network-strength-2::before {\n  content: \"\\F08F6\";\n}\n\n.mdi2-network-strength-2-alert::before {\n  content: \"\\F08F7\";\n}\n\n.mdi2-network-strength-3::before {\n  content: \"\\F08F8\";\n}\n\n.mdi2-network-strength-3-alert::before {\n  content: \"\\F08F9\";\n}\n\n.mdi2-network-strength-4::before {\n  content: \"\\F08FA\";\n}\n\n.mdi2-network-strength-4-alert::before {\n  content: \"\\F08FB\";\n}\n\n.mdi2-network-strength-4-cog::before {\n  content: \"\\F191A\";\n}\n\n.mdi2-network-strength-off::before {\n  content: \"\\F08FC\";\n}\n\n.mdi2-network-strength-off-outline::before {\n  content: \"\\F08FD\";\n}\n\n.mdi2-network-strength-outline::before {\n  content: \"\\F08FE\";\n}\n\n.mdi2-new-box::before {\n  content: \"\\F0394\";\n}\n\n.mdi2-newspaper::before {\n  content: \"\\F0395\";\n}\n\n.mdi2-newspaper-check::before {\n  content: \"\\F1943\";\n}\n\n.mdi2-newspaper-minus::before {\n  content: \"\\F0F0C\";\n}\n\n.mdi2-newspaper-plus::before {\n  content: \"\\F0F0D\";\n}\n\n.mdi2-newspaper-remove::before {\n  content: \"\\F1944\";\n}\n\n.mdi2-newspaper-variant::before {\n  content: \"\\F1001\";\n}\n\n.mdi2-newspaper-variant-multiple::before {\n  content: \"\\F1002\";\n}\n\n.mdi2-newspaper-variant-multiple-outline::before {\n  content: \"\\F1003\";\n}\n\n.mdi2-newspaper-variant-outline::before {\n  content: \"\\F1004\";\n}\n\n.mdi2-nfc::before {\n  content: \"\\F0396\";\n}\n\n.mdi2-nfc-search-variant::before {\n  content: \"\\F0E53\";\n}\n\n.mdi2-nfc-tap::before {\n  content: \"\\F0397\";\n}\n\n.mdi2-nfc-variant::before {\n  content: \"\\F0398\";\n}\n\n.mdi2-nfc-variant-off::before {\n  content: \"\\F0E54\";\n}\n\n.mdi2-ninja::before {\n  content: \"\\F0774\";\n}\n\n.mdi2-nintendo-game-boy::before {\n  content: \"\\F1393\";\n}\n\n.mdi2-nintendo-switch::before {\n  content: \"\\F07E1\";\n}\n\n.mdi2-nintendo-wii::before {\n  content: \"\\F05AB\";\n}\n\n.mdi2-nintendo-wiiu::before {\n  content: \"\\F072D\";\n}\n\n.mdi2-nix::before {\n  content: \"\\F1105\";\n}\n\n.mdi2-nodejs::before {\n  content: \"\\F0399\";\n}\n\n.mdi2-noodles::before {\n  content: \"\\F117E\";\n}\n\n.mdi2-not-equal::before {\n  content: \"\\F098D\";\n}\n\n.mdi2-not-equal-variant::before {\n  content: \"\\F098E\";\n}\n\n.mdi2-note::before {\n  content: \"\\F039A\";\n}\n\n.mdi2-note-alert::before {\n  content: \"\\F177D\";\n}\n\n.mdi2-note-alert-outline::before {\n  content: \"\\F177E\";\n}\n\n.mdi2-note-check::before {\n  content: \"\\F177F\";\n}\n\n.mdi2-note-check-outline::before {\n  content: \"\\F1780\";\n}\n\n.mdi2-note-edit::before {\n  content: \"\\F1781\";\n}\n\n.mdi2-note-edit-outline::before {\n  content: \"\\F1782\";\n}\n\n.mdi2-note-minus::before {\n  content: \"\\F164F\";\n}\n\n.mdi2-note-minus-outline::before {\n  content: \"\\F1650\";\n}\n\n.mdi2-note-multiple::before {\n  content: \"\\F06B8\";\n}\n\n.mdi2-note-multiple-outline::before {\n  content: \"\\F06B9\";\n}\n\n.mdi2-note-off::before {\n  content: \"\\F1783\";\n}\n\n.mdi2-note-off-outline::before {\n  content: \"\\F1784\";\n}\n\n.mdi2-note-outline::before {\n  content: \"\\F039B\";\n}\n\n.mdi2-note-plus::before {\n  content: \"\\F039C\";\n}\n\n.mdi2-note-plus-outline::before {\n  content: \"\\F039D\";\n}\n\n.mdi2-note-remove::before {\n  content: \"\\F1651\";\n}\n\n.mdi2-note-remove-outline::before {\n  content: \"\\F1652\";\n}\n\n.mdi2-note-search::before {\n  content: \"\\F1653\";\n}\n\n.mdi2-note-search-outline::before {\n  content: \"\\F1654\";\n}\n\n.mdi2-note-text::before {\n  content: \"\\F039E\";\n}\n\n.mdi2-note-text-outline::before {\n  content: \"\\F11D7\";\n}\n\n.mdi2-notebook::before {\n  content: \"\\F082E\";\n}\n\n.mdi2-notebook-check::before {\n  content: \"\\F14F5\";\n}\n\n.mdi2-notebook-check-outline::before {\n  content: \"\\F14F6\";\n}\n\n.mdi2-notebook-edit::before {\n  content: \"\\F14E7\";\n}\n\n.mdi2-notebook-edit-outline::before {\n  content: \"\\F14E9\";\n}\n\n.mdi2-notebook-heart::before {\n  content: \"\\F1A0B\";\n}\n\n.mdi2-notebook-heart-outline::before {\n  content: \"\\F1A0C\";\n}\n\n.mdi2-notebook-minus::before {\n  content: \"\\F1610\";\n}\n\n.mdi2-notebook-minus-outline::before {\n  content: \"\\F1611\";\n}\n\n.mdi2-notebook-multiple::before {\n  content: \"\\F0E55\";\n}\n\n.mdi2-notebook-outline::before {\n  content: \"\\F0EBF\";\n}\n\n.mdi2-notebook-plus::before {\n  content: \"\\F1612\";\n}\n\n.mdi2-notebook-plus-outline::before {\n  content: \"\\F1613\";\n}\n\n.mdi2-notebook-remove::before {\n  content: \"\\F1614\";\n}\n\n.mdi2-notebook-remove-outline::before {\n  content: \"\\F1615\";\n}\n\n.mdi2-notification-clear-all::before {\n  content: \"\\F039F\";\n}\n\n.mdi2-npm::before {\n  content: \"\\F06F7\";\n}\n\n.mdi2-nuke::before {\n  content: \"\\F06A4\";\n}\n\n.mdi2-null::before {\n  content: \"\\F07E2\";\n}\n\n.mdi2-numeric::before {\n  content: \"\\F03A0\";\n}\n\n.mdi2-numeric-0::before {\n  content: \"\\F0B39\";\n}\n\n.mdi2-numeric-0-box::before {\n  content: \"\\F03A1\";\n}\n\n.mdi2-numeric-0-box-multiple::before {\n  content: \"\\F0F0E\";\n}\n\n.mdi2-numeric-0-box-multiple-outline::before {\n  content: \"\\F03A2\";\n}\n\n.mdi2-numeric-0-box-outline::before {\n  content: \"\\F03A3\";\n}\n\n.mdi2-numeric-0-circle::before {\n  content: \"\\F0C9E\";\n}\n\n.mdi2-numeric-0-circle-outline::before {\n  content: \"\\F0C9F\";\n}\n\n.mdi2-numeric-1::before {\n  content: \"\\F0B3A\";\n}\n\n.mdi2-numeric-1-box::before {\n  content: \"\\F03A4\";\n}\n\n.mdi2-numeric-1-box-multiple::before {\n  content: \"\\F0F0F\";\n}\n\n.mdi2-numeric-1-box-multiple-outline::before {\n  content: \"\\F03A5\";\n}\n\n.mdi2-numeric-1-box-outline::before {\n  content: \"\\F03A6\";\n}\n\n.mdi2-numeric-1-circle::before {\n  content: \"\\F0CA0\";\n}\n\n.mdi2-numeric-1-circle-outline::before {\n  content: \"\\F0CA1\";\n}\n\n.mdi2-numeric-10::before {\n  content: \"\\F0FE9\";\n}\n\n.mdi2-numeric-10-box::before {\n  content: \"\\F0F7D\";\n}\n\n.mdi2-numeric-10-box-multiple::before {\n  content: \"\\F0FEA\";\n}\n\n.mdi2-numeric-10-box-multiple-outline::before {\n  content: \"\\F0FEB\";\n}\n\n.mdi2-numeric-10-box-outline::before {\n  content: \"\\F0F7E\";\n}\n\n.mdi2-numeric-10-circle::before {\n  content: \"\\F0FEC\";\n}\n\n.mdi2-numeric-10-circle-outline::before {\n  content: \"\\F0FED\";\n}\n\n.mdi2-numeric-2::before {\n  content: \"\\F0B3B\";\n}\n\n.mdi2-numeric-2-box::before {\n  content: \"\\F03A7\";\n}\n\n.mdi2-numeric-2-box-multiple::before {\n  content: \"\\F0F10\";\n}\n\n.mdi2-numeric-2-box-multiple-outline::before {\n  content: \"\\F03A8\";\n}\n\n.mdi2-numeric-2-box-outline::before {\n  content: \"\\F03A9\";\n}\n\n.mdi2-numeric-2-circle::before {\n  content: \"\\F0CA2\";\n}\n\n.mdi2-numeric-2-circle-outline::before {\n  content: \"\\F0CA3\";\n}\n\n.mdi2-numeric-3::before {\n  content: \"\\F0B3C\";\n}\n\n.mdi2-numeric-3-box::before {\n  content: \"\\F03AA\";\n}\n\n.mdi2-numeric-3-box-multiple::before {\n  content: \"\\F0F11\";\n}\n\n.mdi2-numeric-3-box-multiple-outline::before {\n  content: \"\\F03AB\";\n}\n\n.mdi2-numeric-3-box-outline::before {\n  content: \"\\F03AC\";\n}\n\n.mdi2-numeric-3-circle::before {\n  content: \"\\F0CA4\";\n}\n\n.mdi2-numeric-3-circle-outline::before {\n  content: \"\\F0CA5\";\n}\n\n.mdi2-numeric-4::before {\n  content: \"\\F0B3D\";\n}\n\n.mdi2-numeric-4-box::before {\n  content: \"\\F03AD\";\n}\n\n.mdi2-numeric-4-box-multiple::before {\n  content: \"\\F0F12\";\n}\n\n.mdi2-numeric-4-box-multiple-outline::before {\n  content: \"\\F03B2\";\n}\n\n.mdi2-numeric-4-box-outline::before {\n  content: \"\\F03AE\";\n}\n\n.mdi2-numeric-4-circle::before {\n  content: \"\\F0CA6\";\n}\n\n.mdi2-numeric-4-circle-outline::before {\n  content: \"\\F0CA7\";\n}\n\n.mdi2-numeric-5::before {\n  content: \"\\F0B3E\";\n}\n\n.mdi2-numeric-5-box::before {\n  content: \"\\F03B1\";\n}\n\n.mdi2-numeric-5-box-multiple::before {\n  content: \"\\F0F13\";\n}\n\n.mdi2-numeric-5-box-multiple-outline::before {\n  content: \"\\F03AF\";\n}\n\n.mdi2-numeric-5-box-outline::before {\n  content: \"\\F03B0\";\n}\n\n.mdi2-numeric-5-circle::before {\n  content: \"\\F0CA8\";\n}\n\n.mdi2-numeric-5-circle-outline::before {\n  content: \"\\F0CA9\";\n}\n\n.mdi2-numeric-6::before {\n  content: \"\\F0B3F\";\n}\n\n.mdi2-numeric-6-box::before {\n  content: \"\\F03B3\";\n}\n\n.mdi2-numeric-6-box-multiple::before {\n  content: \"\\F0F14\";\n}\n\n.mdi2-numeric-6-box-multiple-outline::before {\n  content: \"\\F03B4\";\n}\n\n.mdi2-numeric-6-box-outline::before {\n  content: \"\\F03B5\";\n}\n\n.mdi2-numeric-6-circle::before {\n  content: \"\\F0CAA\";\n}\n\n.mdi2-numeric-6-circle-outline::before {\n  content: \"\\F0CAB\";\n}\n\n.mdi2-numeric-7::before {\n  content: \"\\F0B40\";\n}\n\n.mdi2-numeric-7-box::before {\n  content: \"\\F03B6\";\n}\n\n.mdi2-numeric-7-box-multiple::before {\n  content: \"\\F0F15\";\n}\n\n.mdi2-numeric-7-box-multiple-outline::before {\n  content: \"\\F03B7\";\n}\n\n.mdi2-numeric-7-box-outline::before {\n  content: \"\\F03B8\";\n}\n\n.mdi2-numeric-7-circle::before {\n  content: \"\\F0CAC\";\n}\n\n.mdi2-numeric-7-circle-outline::before {\n  content: \"\\F0CAD\";\n}\n\n.mdi2-numeric-8::before {\n  content: \"\\F0B41\";\n}\n\n.mdi2-numeric-8-box::before {\n  content: \"\\F03B9\";\n}\n\n.mdi2-numeric-8-box-multiple::before {\n  content: \"\\F0F16\";\n}\n\n.mdi2-numeric-8-box-multiple-outline::before {\n  content: \"\\F03BA\";\n}\n\n.mdi2-numeric-8-box-outline::before {\n  content: \"\\F03BB\";\n}\n\n.mdi2-numeric-8-circle::before {\n  content: \"\\F0CAE\";\n}\n\n.mdi2-numeric-8-circle-outline::before {\n  content: \"\\F0CAF\";\n}\n\n.mdi2-numeric-9::before {\n  content: \"\\F0B42\";\n}\n\n.mdi2-numeric-9-box::before {\n  content: \"\\F03BC\";\n}\n\n.mdi2-numeric-9-box-multiple::before {\n  content: \"\\F0F17\";\n}\n\n.mdi2-numeric-9-box-multiple-outline::before {\n  content: \"\\F03BD\";\n}\n\n.mdi2-numeric-9-box-outline::before {\n  content: \"\\F03BE\";\n}\n\n.mdi2-numeric-9-circle::before {\n  content: \"\\F0CB0\";\n}\n\n.mdi2-numeric-9-circle-outline::before {\n  content: \"\\F0CB1\";\n}\n\n.mdi2-numeric-9-plus::before {\n  content: \"\\F0FEE\";\n}\n\n.mdi2-numeric-9-plus-box::before {\n  content: \"\\F03BF\";\n}\n\n.mdi2-numeric-9-plus-box-multiple::before {\n  content: \"\\F0F18\";\n}\n\n.mdi2-numeric-9-plus-box-multiple-outline::before {\n  content: \"\\F03C0\";\n}\n\n.mdi2-numeric-9-plus-box-outline::before {\n  content: \"\\F03C1\";\n}\n\n.mdi2-numeric-9-plus-circle::before {\n  content: \"\\F0CB2\";\n}\n\n.mdi2-numeric-9-plus-circle-outline::before {\n  content: \"\\F0CB3\";\n}\n\n.mdi2-numeric-negative-1::before {\n  content: \"\\F1052\";\n}\n\n.mdi2-numeric-off::before {\n  content: \"\\F19D3\";\n}\n\n.mdi2-numeric-positive-1::before {\n  content: \"\\F15CB\";\n}\n\n.mdi2-nut::before {\n  content: \"\\F06F8\";\n}\n\n.mdi2-nutrition::before {\n  content: \"\\F03C2\";\n}\n\n.mdi2-nuxt::before {\n  content: \"\\F1106\";\n}\n\n.mdi2-oar::before {\n  content: \"\\F067C\";\n}\n\n.mdi2-ocarina::before {\n  content: \"\\F0DE0\";\n}\n\n.mdi2-oci::before {\n  content: \"\\F12E9\";\n}\n\n.mdi2-ocr::before {\n  content: \"\\F113A\";\n}\n\n.mdi2-octagon::before {\n  content: \"\\F03C3\";\n}\n\n.mdi2-octagon-outline::before {\n  content: \"\\F03C4\";\n}\n\n.mdi2-octagram::before {\n  content: \"\\F06F9\";\n}\n\n.mdi2-octagram-edit::before {\n  content: \"\\F1C34\";\n}\n\n.mdi2-octagram-edit-outline::before {\n  content: \"\\F1C35\";\n}\n\n.mdi2-octagram-minus::before {\n  content: \"\\F1C36\";\n}\n\n.mdi2-octagram-minus-outline::before {\n  content: \"\\F1C37\";\n}\n\n.mdi2-octagram-outline::before {\n  content: \"\\F0775\";\n}\n\n.mdi2-octagram-plus::before {\n  content: \"\\F1C38\";\n}\n\n.mdi2-octagram-plus-outline::before {\n  content: \"\\F1C39\";\n}\n\n.mdi2-octahedron::before {\n  content: \"\\F1950\";\n}\n\n.mdi2-octahedron-off::before {\n  content: \"\\F1951\";\n}\n\n.mdi2-odnoklassniki::before {\n  content: \"\\F03C5\";\n}\n\n.mdi2-offer::before {\n  content: \"\\F121B\";\n}\n\n.mdi2-office-building::before {\n  content: \"\\F0991\";\n}\n\n.mdi2-office-building-cog::before {\n  content: \"\\F1949\";\n}\n\n.mdi2-office-building-cog-outline::before {\n  content: \"\\F194A\";\n}\n\n.mdi2-office-building-marker::before {\n  content: \"\\F1520\";\n}\n\n.mdi2-office-building-marker-outline::before {\n  content: \"\\F1521\";\n}\n\n.mdi2-office-building-minus::before {\n  content: \"\\F1BAA\";\n}\n\n.mdi2-office-building-minus-outline::before {\n  content: \"\\F1BAB\";\n}\n\n.mdi2-office-building-outline::before {\n  content: \"\\F151F\";\n}\n\n.mdi2-office-building-plus::before {\n  content: \"\\F1BA8\";\n}\n\n.mdi2-office-building-plus-outline::before {\n  content: \"\\F1BA9\";\n}\n\n.mdi2-office-building-remove::before {\n  content: \"\\F1BAC\";\n}\n\n.mdi2-office-building-remove-outline::before {\n  content: \"\\F1BAD\";\n}\n\n.mdi2-oil::before {\n  content: \"\\F03C7\";\n}\n\n.mdi2-oil-lamp::before {\n  content: \"\\F0F19\";\n}\n\n.mdi2-oil-level::before {\n  content: \"\\F1053\";\n}\n\n.mdi2-oil-temperature::before {\n  content: \"\\F0FF8\";\n}\n\n.mdi2-om::before {\n  content: \"\\F0973\";\n}\n\n.mdi2-omega::before {\n  content: \"\\F03C9\";\n}\n\n.mdi2-one-up::before {\n  content: \"\\F0BAD\";\n}\n\n.mdi2-onepassword::before {\n  content: \"\\F0881\";\n}\n\n.mdi2-opacity::before {\n  content: \"\\F05CC\";\n}\n\n.mdi2-open-in-app::before {\n  content: \"\\F03CB\";\n}\n\n.mdi2-open-in-new::before {\n  content: \"\\F03CC\";\n}\n\n.mdi2-open-source-initiative::before {\n  content: \"\\F0BAE\";\n}\n\n.mdi2-openid::before {\n  content: \"\\F03CD\";\n}\n\n.mdi2-opera::before {\n  content: \"\\F03CE\";\n}\n\n.mdi2-orbit::before {\n  content: \"\\F0018\";\n}\n\n.mdi2-orbit-variant::before {\n  content: \"\\F15DB\";\n}\n\n.mdi2-order-alphabetical-ascending::before {\n  content: \"\\F020D\";\n}\n\n.mdi2-order-alphabetical-descending::before {\n  content: \"\\F0D07\";\n}\n\n.mdi2-order-bool-ascending::before {\n  content: \"\\F02BE\";\n}\n\n.mdi2-order-bool-ascending-variant::before {\n  content: \"\\F098F\";\n}\n\n.mdi2-order-bool-descending::before {\n  content: \"\\F1384\";\n}\n\n.mdi2-order-bool-descending-variant::before {\n  content: \"\\F0990\";\n}\n\n.mdi2-order-numeric-ascending::before {\n  content: \"\\F0545\";\n}\n\n.mdi2-order-numeric-descending::before {\n  content: \"\\F0546\";\n}\n\n.mdi2-origin::before {\n  content: \"\\F0B43\";\n}\n\n.mdi2-ornament::before {\n  content: \"\\F03CF\";\n}\n\n.mdi2-ornament-variant::before {\n  content: \"\\F03D0\";\n}\n\n.mdi2-outdoor-lamp::before {\n  content: \"\\F1054\";\n}\n\n.mdi2-overscan::before {\n  content: \"\\F1005\";\n}\n\n.mdi2-owl::before {\n  content: \"\\F03D2\";\n}\n\n.mdi2-pac-man::before {\n  content: \"\\F0BAF\";\n}\n\n.mdi2-package::before {\n  content: \"\\F03D3\";\n}\n\n.mdi2-package-check::before {\n  content: \"\\F1B51\";\n}\n\n.mdi2-package-down::before {\n  content: \"\\F03D4\";\n}\n\n.mdi2-package-up::before {\n  content: \"\\F03D5\";\n}\n\n.mdi2-package-variant::before {\n  content: \"\\F03D6\";\n}\n\n.mdi2-package-variant-closed::before {\n  content: \"\\F03D7\";\n}\n\n.mdi2-package-variant-closed-check::before {\n  content: \"\\F1B52\";\n}\n\n.mdi2-package-variant-closed-minus::before {\n  content: \"\\F19D4\";\n}\n\n.mdi2-package-variant-closed-plus::before {\n  content: \"\\F19D5\";\n}\n\n.mdi2-package-variant-closed-remove::before {\n  content: \"\\F19D6\";\n}\n\n.mdi2-package-variant-minus::before {\n  content: \"\\F19D7\";\n}\n\n.mdi2-package-variant-plus::before {\n  content: \"\\F19D8\";\n}\n\n.mdi2-package-variant-remove::before {\n  content: \"\\F19D9\";\n}\n\n.mdi2-page-first::before {\n  content: \"\\F0600\";\n}\n\n.mdi2-page-last::before {\n  content: \"\\F0601\";\n}\n\n.mdi2-page-layout-body::before {\n  content: \"\\F06FA\";\n}\n\n.mdi2-page-layout-footer::before {\n  content: \"\\F06FB\";\n}\n\n.mdi2-page-layout-header::before {\n  content: \"\\F06FC\";\n}\n\n.mdi2-page-layout-header-footer::before {\n  content: \"\\F0F7F\";\n}\n\n.mdi2-page-layout-sidebar-left::before {\n  content: \"\\F06FD\";\n}\n\n.mdi2-page-layout-sidebar-right::before {\n  content: \"\\F06FE\";\n}\n\n.mdi2-page-next::before {\n  content: \"\\F0BB0\";\n}\n\n.mdi2-page-next-outline::before {\n  content: \"\\F0BB1\";\n}\n\n.mdi2-page-previous::before {\n  content: \"\\F0BB2\";\n}\n\n.mdi2-page-previous-outline::before {\n  content: \"\\F0BB3\";\n}\n\n.mdi2-pail::before {\n  content: \"\\F1417\";\n}\n\n.mdi2-pail-minus::before {\n  content: \"\\F1437\";\n}\n\n.mdi2-pail-minus-outline::before {\n  content: \"\\F143C\";\n}\n\n.mdi2-pail-off::before {\n  content: \"\\F1439\";\n}\n\n.mdi2-pail-off-outline::before {\n  content: \"\\F143E\";\n}\n\n.mdi2-pail-outline::before {\n  content: \"\\F143A\";\n}\n\n.mdi2-pail-plus::before {\n  content: \"\\F1436\";\n}\n\n.mdi2-pail-plus-outline::before {\n  content: \"\\F143B\";\n}\n\n.mdi2-pail-remove::before {\n  content: \"\\F1438\";\n}\n\n.mdi2-pail-remove-outline::before {\n  content: \"\\F143D\";\n}\n\n.mdi2-palette::before {\n  content: \"\\F03D8\";\n}\n\n.mdi2-palette-advanced::before {\n  content: \"\\F03D9\";\n}\n\n.mdi2-palette-outline::before {\n  content: \"\\F0E0C\";\n}\n\n.mdi2-palette-swatch::before {\n  content: \"\\F08B5\";\n}\n\n.mdi2-palette-swatch-outline::before {\n  content: \"\\F135C\";\n}\n\n.mdi2-palette-swatch-variant::before {\n  content: \"\\F195A\";\n}\n\n.mdi2-palm-tree::before {\n  content: \"\\F1055\";\n}\n\n.mdi2-pan::before {\n  content: \"\\F0BB4\";\n}\n\n.mdi2-pan-bottom-left::before {\n  content: \"\\F0BB5\";\n}\n\n.mdi2-pan-bottom-right::before {\n  content: \"\\F0BB6\";\n}\n\n.mdi2-pan-down::before {\n  content: \"\\F0BB7\";\n}\n\n.mdi2-pan-horizontal::before {\n  content: \"\\F0BB8\";\n}\n\n.mdi2-pan-left::before {\n  content: \"\\F0BB9\";\n}\n\n.mdi2-pan-right::before {\n  content: \"\\F0BBA\";\n}\n\n.mdi2-pan-top-left::before {\n  content: \"\\F0BBB\";\n}\n\n.mdi2-pan-top-right::before {\n  content: \"\\F0BBC\";\n}\n\n.mdi2-pan-up::before {\n  content: \"\\F0BBD\";\n}\n\n.mdi2-pan-vertical::before {\n  content: \"\\F0BBE\";\n}\n\n.mdi2-panda::before {\n  content: \"\\F03DA\";\n}\n\n.mdi2-pandora::before {\n  content: \"\\F03DB\";\n}\n\n.mdi2-panorama::before {\n  content: \"\\F03DC\";\n}\n\n.mdi2-panorama-fisheye::before {\n  content: \"\\F03DD\";\n}\n\n.mdi2-panorama-horizontal::before {\n  content: \"\\F1928\";\n}\n\n.mdi2-panorama-horizontal-outline::before {\n  content: \"\\F03DE\";\n}\n\n.mdi2-panorama-outline::before {\n  content: \"\\F198C\";\n}\n\n.mdi2-panorama-sphere::before {\n  content: \"\\F198D\";\n}\n\n.mdi2-panorama-sphere-outline::before {\n  content: \"\\F198E\";\n}\n\n.mdi2-panorama-variant::before {\n  content: \"\\F198F\";\n}\n\n.mdi2-panorama-variant-outline::before {\n  content: \"\\F1990\";\n}\n\n.mdi2-panorama-vertical::before {\n  content: \"\\F1929\";\n}\n\n.mdi2-panorama-vertical-outline::before {\n  content: \"\\F03DF\";\n}\n\n.mdi2-panorama-wide-angle::before {\n  content: \"\\F195F\";\n}\n\n.mdi2-panorama-wide-angle-outline::before {\n  content: \"\\F03E0\";\n}\n\n.mdi2-paper-cut-vertical::before {\n  content: \"\\F03E1\";\n}\n\n.mdi2-paper-roll::before {\n  content: \"\\F1157\";\n}\n\n.mdi2-paper-roll-outline::before {\n  content: \"\\F1158\";\n}\n\n.mdi2-paperclip::before {\n  content: \"\\F03E2\";\n}\n\n.mdi2-paperclip-check::before {\n  content: \"\\F1AC6\";\n}\n\n.mdi2-paperclip-lock::before {\n  content: \"\\F19DA\";\n}\n\n.mdi2-paperclip-minus::before {\n  content: \"\\F1AC7\";\n}\n\n.mdi2-paperclip-off::before {\n  content: \"\\F1AC8\";\n}\n\n.mdi2-paperclip-plus::before {\n  content: \"\\F1AC9\";\n}\n\n.mdi2-paperclip-remove::before {\n  content: \"\\F1ACA\";\n}\n\n.mdi2-parachute::before {\n  content: \"\\F0CB4\";\n}\n\n.mdi2-parachute-outline::before {\n  content: \"\\F0CB5\";\n}\n\n.mdi2-paragliding::before {\n  content: \"\\F1745\";\n}\n\n.mdi2-parking::before {\n  content: \"\\F03E3\";\n}\n\n.mdi2-party-popper::before {\n  content: \"\\F1056\";\n}\n\n.mdi2-passport::before {\n  content: \"\\F07E3\";\n}\n\n.mdi2-passport-alert::before {\n  content: \"\\F1CB8\";\n}\n\n.mdi2-passport-biometric::before {\n  content: \"\\F0DE1\";\n}\n\n.mdi2-passport-cancel::before {\n  content: \"\\F1CB9\";\n}\n\n.mdi2-passport-check::before {\n  content: \"\\F1CBA\";\n}\n\n.mdi2-passport-minus::before {\n  content: \"\\F1CBB\";\n}\n\n.mdi2-passport-plus::before {\n  content: \"\\F1CBC\";\n}\n\n.mdi2-passport-remove::before {\n  content: \"\\F1CBD\";\n}\n\n.mdi2-pasta::before {\n  content: \"\\F1160\";\n}\n\n.mdi2-patio-heater::before {\n  content: \"\\F0F80\";\n}\n\n.mdi2-patreon::before {\n  content: \"\\F0882\";\n}\n\n.mdi2-pause::before {\n  content: \"\\F03E4\";\n}\n\n.mdi2-pause-box::before {\n  content: \"\\F00BC\";\n}\n\n.mdi2-pause-box-outline::before {\n  content: \"\\F1B7A\";\n}\n\n.mdi2-pause-circle::before {\n  content: \"\\F03E5\";\n}\n\n.mdi2-pause-circle-outline::before {\n  content: \"\\F03E6\";\n}\n\n.mdi2-pause-octagon::before {\n  content: \"\\F03E7\";\n}\n\n.mdi2-pause-octagon-outline::before {\n  content: \"\\F03E8\";\n}\n\n.mdi2-paw::before {\n  content: \"\\F03E9\";\n}\n\n.mdi2-paw-off::before {\n  content: \"\\F0657\";\n}\n\n.mdi2-paw-off-outline::before {\n  content: \"\\F1676\";\n}\n\n.mdi2-paw-outline::before {\n  content: \"\\F1675\";\n}\n\n.mdi2-peace::before {\n  content: \"\\F0884\";\n}\n\n.mdi2-peanut::before {\n  content: \"\\F0FFC\";\n}\n\n.mdi2-peanut-off::before {\n  content: \"\\F0FFD\";\n}\n\n.mdi2-peanut-off-outline::before {\n  content: \"\\F0FFF\";\n}\n\n.mdi2-peanut-outline::before {\n  content: \"\\F0FFE\";\n}\n\n.mdi2-pen::before {\n  content: \"\\F03EA\";\n}\n\n.mdi2-pen-lock::before {\n  content: \"\\F0DE2\";\n}\n\n.mdi2-pen-minus::before {\n  content: \"\\F0DE3\";\n}\n\n.mdi2-pen-off::before {\n  content: \"\\F0DE4\";\n}\n\n.mdi2-pen-plus::before {\n  content: \"\\F0DE5\";\n}\n\n.mdi2-pen-remove::before {\n  content: \"\\F0DE6\";\n}\n\n.mdi2-pencil::before {\n  content: \"\\F03EB\";\n}\n\n.mdi2-pencil-box::before {\n  content: \"\\F03EC\";\n}\n\n.mdi2-pencil-box-multiple::before {\n  content: \"\\F1144\";\n}\n\n.mdi2-pencil-box-multiple-outline::before {\n  content: \"\\F1145\";\n}\n\n.mdi2-pencil-box-outline::before {\n  content: \"\\F03ED\";\n}\n\n.mdi2-pencil-circle::before {\n  content: \"\\F06FF\";\n}\n\n.mdi2-pencil-circle-outline::before {\n  content: \"\\F0776\";\n}\n\n.mdi2-pencil-lock::before {\n  content: \"\\F03EE\";\n}\n\n.mdi2-pencil-lock-outline::before {\n  content: \"\\F0DE7\";\n}\n\n.mdi2-pencil-minus::before {\n  content: \"\\F0DE8\";\n}\n\n.mdi2-pencil-minus-outline::before {\n  content: \"\\F0DE9\";\n}\n\n.mdi2-pencil-off::before {\n  content: \"\\F03EF\";\n}\n\n.mdi2-pencil-off-outline::before {\n  content: \"\\F0DEA\";\n}\n\n.mdi2-pencil-outline::before {\n  content: \"\\F0CB6\";\n}\n\n.mdi2-pencil-plus::before {\n  content: \"\\F0DEB\";\n}\n\n.mdi2-pencil-plus-outline::before {\n  content: \"\\F0DEC\";\n}\n\n.mdi2-pencil-remove::before {\n  content: \"\\F0DED\";\n}\n\n.mdi2-pencil-remove-outline::before {\n  content: \"\\F0DEE\";\n}\n\n.mdi2-pencil-ruler::before {\n  content: \"\\F1353\";\n}\n\n.mdi2-pencil-ruler-outline::before {\n  content: \"\\F1C11\";\n}\n\n.mdi2-penguin::before {\n  content: \"\\F0EC0\";\n}\n\n.mdi2-pentagon::before {\n  content: \"\\F0701\";\n}\n\n.mdi2-pentagon-outline::before {\n  content: \"\\F0700\";\n}\n\n.mdi2-pentagram::before {\n  content: \"\\F1667\";\n}\n\n.mdi2-percent::before {\n  content: \"\\F03F0\";\n}\n\n.mdi2-percent-box::before {\n  content: \"\\F1A02\";\n}\n\n.mdi2-percent-box-outline::before {\n  content: \"\\F1A03\";\n}\n\n.mdi2-percent-circle::before {\n  content: \"\\F1A04\";\n}\n\n.mdi2-percent-circle-outline::before {\n  content: \"\\F1A05\";\n}\n\n.mdi2-percent-outline::before {\n  content: \"\\F1278\";\n}\n\n.mdi2-periodic-table::before {\n  content: \"\\F08B6\";\n}\n\n.mdi2-perspective-less::before {\n  content: \"\\F0D23\";\n}\n\n.mdi2-perspective-more::before {\n  content: \"\\F0D24\";\n}\n\n.mdi2-ph::before {\n  content: \"\\F17C5\";\n}\n\n.mdi2-phone::before {\n  content: \"\\F03F2\";\n}\n\n.mdi2-phone-alert::before {\n  content: \"\\F0F1A\";\n}\n\n.mdi2-phone-alert-outline::before {\n  content: \"\\F118E\";\n}\n\n.mdi2-phone-bluetooth::before {\n  content: \"\\F03F3\";\n}\n\n.mdi2-phone-bluetooth-outline::before {\n  content: \"\\F118F\";\n}\n\n.mdi2-phone-cancel::before {\n  content: \"\\F10BC\";\n}\n\n.mdi2-phone-cancel-outline::before {\n  content: \"\\F1190\";\n}\n\n.mdi2-phone-check::before {\n  content: \"\\F11A9\";\n}\n\n.mdi2-phone-check-outline::before {\n  content: \"\\F11AA\";\n}\n\n.mdi2-phone-classic::before {\n  content: \"\\F0602\";\n}\n\n.mdi2-phone-classic-off::before {\n  content: \"\\F1279\";\n}\n\n.mdi2-phone-clock::before {\n  content: \"\\F19DB\";\n}\n\n.mdi2-phone-dial::before {\n  content: \"\\F1559\";\n}\n\n.mdi2-phone-dial-outline::before {\n  content: \"\\F155A\";\n}\n\n.mdi2-phone-forward::before {\n  content: \"\\F03F4\";\n}\n\n.mdi2-phone-forward-outline::before {\n  content: \"\\F1191\";\n}\n\n.mdi2-phone-hangup::before {\n  content: \"\\F03F5\";\n}\n\n.mdi2-phone-hangup-outline::before {\n  content: \"\\F1192\";\n}\n\n.mdi2-phone-in-talk::before {\n  content: \"\\F03F6\";\n}\n\n.mdi2-phone-in-talk-outline::before {\n  content: \"\\F1182\";\n}\n\n.mdi2-phone-incoming::before {\n  content: \"\\F03F7\";\n}\n\n.mdi2-phone-incoming-outgoing::before {\n  content: \"\\F1B3F\";\n}\n\n.mdi2-phone-incoming-outgoing-outline::before {\n  content: \"\\F1B40\";\n}\n\n.mdi2-phone-incoming-outline::before {\n  content: \"\\F1193\";\n}\n\n.mdi2-phone-lock::before {\n  content: \"\\F03F8\";\n}\n\n.mdi2-phone-lock-outline::before {\n  content: \"\\F1194\";\n}\n\n.mdi2-phone-log::before {\n  content: \"\\F03F9\";\n}\n\n.mdi2-phone-log-outline::before {\n  content: \"\\F1195\";\n}\n\n.mdi2-phone-message::before {\n  content: \"\\F1196\";\n}\n\n.mdi2-phone-message-outline::before {\n  content: \"\\F1197\";\n}\n\n.mdi2-phone-minus::before {\n  content: \"\\F0658\";\n}\n\n.mdi2-phone-minus-outline::before {\n  content: \"\\F1198\";\n}\n\n.mdi2-phone-missed::before {\n  content: \"\\F03FA\";\n}\n\n.mdi2-phone-missed-outline::before {\n  content: \"\\F11A5\";\n}\n\n.mdi2-phone-off::before {\n  content: \"\\F0DEF\";\n}\n\n.mdi2-phone-off-outline::before {\n  content: \"\\F11A6\";\n}\n\n.mdi2-phone-outgoing::before {\n  content: \"\\F03FB\";\n}\n\n.mdi2-phone-outgoing-outline::before {\n  content: \"\\F1199\";\n}\n\n.mdi2-phone-outline::before {\n  content: \"\\F0DF0\";\n}\n\n.mdi2-phone-paused::before {\n  content: \"\\F03FC\";\n}\n\n.mdi2-phone-paused-outline::before {\n  content: \"\\F119A\";\n}\n\n.mdi2-phone-plus::before {\n  content: \"\\F0659\";\n}\n\n.mdi2-phone-plus-outline::before {\n  content: \"\\F119B\";\n}\n\n.mdi2-phone-refresh::before {\n  content: \"\\F1993\";\n}\n\n.mdi2-phone-refresh-outline::before {\n  content: \"\\F1994\";\n}\n\n.mdi2-phone-remove::before {\n  content: \"\\F152F\";\n}\n\n.mdi2-phone-remove-outline::before {\n  content: \"\\F1530\";\n}\n\n.mdi2-phone-return::before {\n  content: \"\\F082F\";\n}\n\n.mdi2-phone-return-outline::before {\n  content: \"\\F119C\";\n}\n\n.mdi2-phone-ring::before {\n  content: \"\\F11AB\";\n}\n\n.mdi2-phone-ring-outline::before {\n  content: \"\\F11AC\";\n}\n\n.mdi2-phone-rotate-landscape::before {\n  content: \"\\F0885\";\n}\n\n.mdi2-phone-rotate-portrait::before {\n  content: \"\\F0886\";\n}\n\n.mdi2-phone-settings::before {\n  content: \"\\F03FD\";\n}\n\n.mdi2-phone-settings-outline::before {\n  content: \"\\F119D\";\n}\n\n.mdi2-phone-sync::before {\n  content: \"\\F1995\";\n}\n\n.mdi2-phone-sync-outline::before {\n  content: \"\\F1996\";\n}\n\n.mdi2-phone-voip::before {\n  content: \"\\F03FE\";\n}\n\n.mdi2-pi::before {\n  content: \"\\F03FF\";\n}\n\n.mdi2-pi-box::before {\n  content: \"\\F0400\";\n}\n\n.mdi2-pi-hole::before {\n  content: \"\\F0DF1\";\n}\n\n.mdi2-piano::before {\n  content: \"\\F067D\";\n}\n\n.mdi2-piano-off::before {\n  content: \"\\F0698\";\n}\n\n.mdi2-pickaxe::before {\n  content: \"\\F08B7\";\n}\n\n.mdi2-picture-in-picture-bottom-right::before {\n  content: \"\\F0E57\";\n}\n\n.mdi2-picture-in-picture-bottom-right-outline::before {\n  content: \"\\F0E58\";\n}\n\n.mdi2-picture-in-picture-top-right::before {\n  content: \"\\F0E59\";\n}\n\n.mdi2-picture-in-picture-top-right-outline::before {\n  content: \"\\F0E5A\";\n}\n\n.mdi2-pier::before {\n  content: \"\\F0887\";\n}\n\n.mdi2-pier-crane::before {\n  content: \"\\F0888\";\n}\n\n.mdi2-pig::before {\n  content: \"\\F0401\";\n}\n\n.mdi2-pig-variant::before {\n  content: \"\\F1006\";\n}\n\n.mdi2-pig-variant-outline::before {\n  content: \"\\F1678\";\n}\n\n.mdi2-piggy-bank::before {\n  content: \"\\F1007\";\n}\n\n.mdi2-piggy-bank-outline::before {\n  content: \"\\F1679\";\n}\n\n.mdi2-pill::before {\n  content: \"\\F0402\";\n}\n\n.mdi2-pill-multiple::before {\n  content: \"\\F1B4C\";\n}\n\n.mdi2-pill-off::before {\n  content: \"\\F1A5C\";\n}\n\n.mdi2-pillar::before {\n  content: \"\\F0702\";\n}\n\n.mdi2-pin::before {\n  content: \"\\F0403\";\n}\n\n.mdi2-pin-off::before {\n  content: \"\\F0404\";\n}\n\n.mdi2-pin-off-outline::before {\n  content: \"\\F0930\";\n}\n\n.mdi2-pin-outline::before {\n  content: \"\\F0931\";\n}\n\n.mdi2-pine-tree::before {\n  content: \"\\F0405\";\n}\n\n.mdi2-pine-tree-box::before {\n  content: \"\\F0406\";\n}\n\n.mdi2-pine-tree-fire::before {\n  content: \"\\F141A\";\n}\n\n.mdi2-pine-tree-variant::before {\n  content: \"\\F1C73\";\n}\n\n.mdi2-pine-tree-variant-outline::before {\n  content: \"\\F1C74\";\n}\n\n.mdi2-pinterest::before {\n  content: \"\\F0407\";\n}\n\n.mdi2-pinwheel::before {\n  content: \"\\F0AD5\";\n}\n\n.mdi2-pinwheel-outline::before {\n  content: \"\\F0AD6\";\n}\n\n.mdi2-pipe::before {\n  content: \"\\F07E5\";\n}\n\n.mdi2-pipe-disconnected::before {\n  content: \"\\F07E6\";\n}\n\n.mdi2-pipe-leak::before {\n  content: \"\\F0889\";\n}\n\n.mdi2-pipe-valve::before {\n  content: \"\\F184D\";\n}\n\n.mdi2-pipe-wrench::before {\n  content: \"\\F1354\";\n}\n\n.mdi2-pirate::before {\n  content: \"\\F0A08\";\n}\n\n.mdi2-pistol::before {\n  content: \"\\F0703\";\n}\n\n.mdi2-piston::before {\n  content: \"\\F088A\";\n}\n\n.mdi2-pitchfork::before {\n  content: \"\\F1553\";\n}\n\n.mdi2-pizza::before {\n  content: \"\\F0409\";\n}\n\n.mdi2-plane-car::before {\n  content: \"\\F1AFF\";\n}\n\n.mdi2-plane-train::before {\n  content: \"\\F1B00\";\n}\n\n.mdi2-play::before {\n  content: \"\\F040A\";\n}\n\n.mdi2-play-box::before {\n  content: \"\\F127A\";\n}\n\n.mdi2-play-box-edit-outline::before {\n  content: \"\\F1C3A\";\n}\n\n.mdi2-play-box-lock::before {\n  content: \"\\F1A16\";\n}\n\n.mdi2-play-box-lock-open::before {\n  content: \"\\F1A17\";\n}\n\n.mdi2-play-box-lock-open-outline::before {\n  content: \"\\F1A18\";\n}\n\n.mdi2-play-box-lock-outline::before {\n  content: \"\\F1A19\";\n}\n\n.mdi2-play-box-multiple::before {\n  content: \"\\F0D19\";\n}\n\n.mdi2-play-box-multiple-outline::before {\n  content: \"\\F13E6\";\n}\n\n.mdi2-play-box-outline::before {\n  content: \"\\F040B\";\n}\n\n.mdi2-play-circle::before {\n  content: \"\\F040C\";\n}\n\n.mdi2-play-circle-outline::before {\n  content: \"\\F040D\";\n}\n\n.mdi2-play-network::before {\n  content: \"\\F088B\";\n}\n\n.mdi2-play-network-outline::before {\n  content: \"\\F0CB7\";\n}\n\n.mdi2-play-outline::before {\n  content: \"\\F0F1B\";\n}\n\n.mdi2-play-pause::before {\n  content: \"\\F040E\";\n}\n\n.mdi2-play-protected-content::before {\n  content: \"\\F040F\";\n}\n\n.mdi2-play-speed::before {\n  content: \"\\F08FF\";\n}\n\n.mdi2-playlist-check::before {\n  content: \"\\F05C7\";\n}\n\n.mdi2-playlist-edit::before {\n  content: \"\\F0900\";\n}\n\n.mdi2-playlist-minus::before {\n  content: \"\\F0410\";\n}\n\n.mdi2-playlist-music::before {\n  content: \"\\F0CB8\";\n}\n\n.mdi2-playlist-music-outline::before {\n  content: \"\\F0CB9\";\n}\n\n.mdi2-playlist-play::before {\n  content: \"\\F0411\";\n}\n\n.mdi2-playlist-plus::before {\n  content: \"\\F0412\";\n}\n\n.mdi2-playlist-remove::before {\n  content: \"\\F0413\";\n}\n\n.mdi2-playlist-star::before {\n  content: \"\\F0DF2\";\n}\n\n.mdi2-plex::before {\n  content: \"\\F06BA\";\n}\n\n.mdi2-pliers::before {\n  content: \"\\F19A4\";\n}\n\n.mdi2-plus::before {\n  content: \"\\F0415\";\n}\n\n.mdi2-plus-box::before {\n  content: \"\\F0416\";\n}\n\n.mdi2-plus-box-multiple::before {\n  content: \"\\F0334\";\n}\n\n.mdi2-plus-box-multiple-outline::before {\n  content: \"\\F1143\";\n}\n\n.mdi2-plus-box-outline::before {\n  content: \"\\F0704\";\n}\n\n.mdi2-plus-circle::before {\n  content: \"\\F0417\";\n}\n\n.mdi2-plus-circle-multiple::before {\n  content: \"\\F034C\";\n}\n\n.mdi2-plus-circle-multiple-outline::before {\n  content: \"\\F0418\";\n}\n\n.mdi2-plus-circle-outline::before {\n  content: \"\\F0419\";\n}\n\n.mdi2-plus-lock::before {\n  content: \"\\F1A5D\";\n}\n\n.mdi2-plus-lock-open::before {\n  content: \"\\F1A5E\";\n}\n\n.mdi2-plus-minus::before {\n  content: \"\\F0992\";\n}\n\n.mdi2-plus-minus-box::before {\n  content: \"\\F0993\";\n}\n\n.mdi2-plus-minus-variant::before {\n  content: \"\\F14C9\";\n}\n\n.mdi2-plus-network::before {\n  content: \"\\F041A\";\n}\n\n.mdi2-plus-network-outline::before {\n  content: \"\\F0CBA\";\n}\n\n.mdi2-plus-outline::before {\n  content: \"\\F0705\";\n}\n\n.mdi2-plus-thick::before {\n  content: \"\\F11EC\";\n}\n\n.mdi2-pocket::before {\n  content: \"\\F1CBE\";\n}\n\n.mdi2-podcast::before {\n  content: \"\\F0994\";\n}\n\n.mdi2-podium::before {\n  content: \"\\F0D25\";\n}\n\n.mdi2-podium-bronze::before {\n  content: \"\\F0D26\";\n}\n\n.mdi2-podium-gold::before {\n  content: \"\\F0D27\";\n}\n\n.mdi2-podium-silver::before {\n  content: \"\\F0D28\";\n}\n\n.mdi2-point-of-sale::before {\n  content: \"\\F0D92\";\n}\n\n.mdi2-pokeball::before {\n  content: \"\\F041D\";\n}\n\n.mdi2-pokemon-go::before {\n  content: \"\\F0A09\";\n}\n\n.mdi2-poker-chip::before {\n  content: \"\\F0830\";\n}\n\n.mdi2-polaroid::before {\n  content: \"\\F041E\";\n}\n\n.mdi2-police-badge::before {\n  content: \"\\F1167\";\n}\n\n.mdi2-police-badge-outline::before {\n  content: \"\\F1168\";\n}\n\n.mdi2-police-station::before {\n  content: \"\\F1839\";\n}\n\n.mdi2-poll::before {\n  content: \"\\F041F\";\n}\n\n.mdi2-polo::before {\n  content: \"\\F14C3\";\n}\n\n.mdi2-polymer::before {\n  content: \"\\F0421\";\n}\n\n.mdi2-pool::before {\n  content: \"\\F0606\";\n}\n\n.mdi2-pool-thermometer::before {\n  content: \"\\F1A5F\";\n}\n\n.mdi2-popcorn::before {\n  content: \"\\F0422\";\n}\n\n.mdi2-post::before {\n  content: \"\\F1008\";\n}\n\n.mdi2-post-lamp::before {\n  content: \"\\F1A60\";\n}\n\n.mdi2-post-outline::before {\n  content: \"\\F1009\";\n}\n\n.mdi2-postage-stamp::before {\n  content: \"\\F0CBB\";\n}\n\n.mdi2-pot::before {\n  content: \"\\F02E5\";\n}\n\n.mdi2-pot-mix::before {\n  content: \"\\F065B\";\n}\n\n.mdi2-pot-mix-outline::before {\n  content: \"\\F0677\";\n}\n\n.mdi2-pot-outline::before {\n  content: \"\\F02FF\";\n}\n\n.mdi2-pot-steam::before {\n  content: \"\\F065A\";\n}\n\n.mdi2-pot-steam-outline::before {\n  content: \"\\F0326\";\n}\n\n.mdi2-pound::before {\n  content: \"\\F0423\";\n}\n\n.mdi2-pound-box::before {\n  content: \"\\F0424\";\n}\n\n.mdi2-pound-box-outline::before {\n  content: \"\\F117F\";\n}\n\n.mdi2-power::before {\n  content: \"\\F0425\";\n}\n\n.mdi2-power-cycle::before {\n  content: \"\\F0901\";\n}\n\n.mdi2-power-off::before {\n  content: \"\\F0902\";\n}\n\n.mdi2-power-on::before {\n  content: \"\\F0903\";\n}\n\n.mdi2-power-plug::before {\n  content: \"\\F06A5\";\n}\n\n.mdi2-power-plug-battery::before {\n  content: \"\\F1C3B\";\n}\n\n.mdi2-power-plug-battery-outline::before {\n  content: \"\\F1C3C\";\n}\n\n.mdi2-power-plug-off::before {\n  content: \"\\F06A6\";\n}\n\n.mdi2-power-plug-off-outline::before {\n  content: \"\\F1424\";\n}\n\n.mdi2-power-plug-outline::before {\n  content: \"\\F1425\";\n}\n\n.mdi2-power-settings::before {\n  content: \"\\F0426\";\n}\n\n.mdi2-power-sleep::before {\n  content: \"\\F0904\";\n}\n\n.mdi2-power-socket::before {\n  content: \"\\F0427\";\n}\n\n.mdi2-power-socket-au::before {\n  content: \"\\F0905\";\n}\n\n.mdi2-power-socket-ch::before {\n  content: \"\\F0FB3\";\n}\n\n.mdi2-power-socket-de::before {\n  content: \"\\F1107\";\n}\n\n.mdi2-power-socket-eu::before {\n  content: \"\\F07E7\";\n}\n\n.mdi2-power-socket-fr::before {\n  content: \"\\F1108\";\n}\n\n.mdi2-power-socket-it::before {\n  content: \"\\F14FF\";\n}\n\n.mdi2-power-socket-jp::before {\n  content: \"\\F1109\";\n}\n\n.mdi2-power-socket-uk::before {\n  content: \"\\F07E8\";\n}\n\n.mdi2-power-socket-us::before {\n  content: \"\\F07E9\";\n}\n\n.mdi2-power-standby::before {\n  content: \"\\F0906\";\n}\n\n.mdi2-powershell::before {\n  content: \"\\F0A0A\";\n}\n\n.mdi2-prescription::before {\n  content: \"\\F0706\";\n}\n\n.mdi2-presentation::before {\n  content: \"\\F0428\";\n}\n\n.mdi2-presentation-play::before {\n  content: \"\\F0429\";\n}\n\n.mdi2-pretzel::before {\n  content: \"\\F1562\";\n}\n\n.mdi2-printer::before {\n  content: \"\\F042A\";\n}\n\n.mdi2-printer-3d::before {\n  content: \"\\F042B\";\n}\n\n.mdi2-printer-3d-nozzle::before {\n  content: \"\\F0E5B\";\n}\n\n.mdi2-printer-3d-nozzle-alert::before {\n  content: \"\\F11C0\";\n}\n\n.mdi2-printer-3d-nozzle-alert-outline::before {\n  content: \"\\F11C1\";\n}\n\n.mdi2-printer-3d-nozzle-heat::before {\n  content: \"\\F18B8\";\n}\n\n.mdi2-printer-3d-nozzle-heat-outline::before {\n  content: \"\\F18B9\";\n}\n\n.mdi2-printer-3d-nozzle-off::before {\n  content: \"\\F1B19\";\n}\n\n.mdi2-printer-3d-nozzle-off-outline::before {\n  content: \"\\F1B1A\";\n}\n\n.mdi2-printer-3d-nozzle-outline::before {\n  content: \"\\F0E5C\";\n}\n\n.mdi2-printer-3d-off::before {\n  content: \"\\F1B0E\";\n}\n\n.mdi2-printer-alert::before {\n  content: \"\\F042C\";\n}\n\n.mdi2-printer-check::before {\n  content: \"\\F1146\";\n}\n\n.mdi2-printer-eye::before {\n  content: \"\\F1458\";\n}\n\n.mdi2-printer-off::before {\n  content: \"\\F0E5D\";\n}\n\n.mdi2-printer-off-outline::before {\n  content: \"\\F1785\";\n}\n\n.mdi2-printer-outline::before {\n  content: \"\\F1786\";\n}\n\n.mdi2-printer-pos::before {\n  content: \"\\F1057\";\n}\n\n.mdi2-printer-pos-alert::before {\n  content: \"\\F1BBC\";\n}\n\n.mdi2-printer-pos-alert-outline::before {\n  content: \"\\F1BBD\";\n}\n\n.mdi2-printer-pos-cancel::before {\n  content: \"\\F1BBE\";\n}\n\n.mdi2-printer-pos-cancel-outline::before {\n  content: \"\\F1BBF\";\n}\n\n.mdi2-printer-pos-check::before {\n  content: \"\\F1BC0\";\n}\n\n.mdi2-printer-pos-check-outline::before {\n  content: \"\\F1BC1\";\n}\n\n.mdi2-printer-pos-cog::before {\n  content: \"\\F1BC2\";\n}\n\n.mdi2-printer-pos-cog-outline::before {\n  content: \"\\F1BC3\";\n}\n\n.mdi2-printer-pos-edit::before {\n  content: \"\\F1BC4\";\n}\n\n.mdi2-printer-pos-edit-outline::before {\n  content: \"\\F1BC5\";\n}\n\n.mdi2-printer-pos-minus::before {\n  content: \"\\F1BC6\";\n}\n\n.mdi2-printer-pos-minus-outline::before {\n  content: \"\\F1BC7\";\n}\n\n.mdi2-printer-pos-network::before {\n  content: \"\\F1BC8\";\n}\n\n.mdi2-printer-pos-network-outline::before {\n  content: \"\\F1BC9\";\n}\n\n.mdi2-printer-pos-off::before {\n  content: \"\\F1BCA\";\n}\n\n.mdi2-printer-pos-off-outline::before {\n  content: \"\\F1BCB\";\n}\n\n.mdi2-printer-pos-outline::before {\n  content: \"\\F1BCC\";\n}\n\n.mdi2-printer-pos-pause::before {\n  content: \"\\F1BCD\";\n}\n\n.mdi2-printer-pos-pause-outline::before {\n  content: \"\\F1BCE\";\n}\n\n.mdi2-printer-pos-play::before {\n  content: \"\\F1BCF\";\n}\n\n.mdi2-printer-pos-play-outline::before {\n  content: \"\\F1BD0\";\n}\n\n.mdi2-printer-pos-plus::before {\n  content: \"\\F1BD1\";\n}\n\n.mdi2-printer-pos-plus-outline::before {\n  content: \"\\F1BD2\";\n}\n\n.mdi2-printer-pos-refresh::before {\n  content: \"\\F1BD3\";\n}\n\n.mdi2-printer-pos-refresh-outline::before {\n  content: \"\\F1BD4\";\n}\n\n.mdi2-printer-pos-remove::before {\n  content: \"\\F1BD5\";\n}\n\n.mdi2-printer-pos-remove-outline::before {\n  content: \"\\F1BD6\";\n}\n\n.mdi2-printer-pos-star::before {\n  content: \"\\F1BD7\";\n}\n\n.mdi2-printer-pos-star-outline::before {\n  content: \"\\F1BD8\";\n}\n\n.mdi2-printer-pos-stop::before {\n  content: \"\\F1BD9\";\n}\n\n.mdi2-printer-pos-stop-outline::before {\n  content: \"\\F1BDA\";\n}\n\n.mdi2-printer-pos-sync::before {\n  content: \"\\F1BDB\";\n}\n\n.mdi2-printer-pos-sync-outline::before {\n  content: \"\\F1BDC\";\n}\n\n.mdi2-printer-pos-wrench::before {\n  content: \"\\F1BDD\";\n}\n\n.mdi2-printer-pos-wrench-outline::before {\n  content: \"\\F1BDE\";\n}\n\n.mdi2-printer-search::before {\n  content: \"\\F1457\";\n}\n\n.mdi2-printer-settings::before {\n  content: \"\\F0707\";\n}\n\n.mdi2-printer-wireless::before {\n  content: \"\\F0A0B\";\n}\n\n.mdi2-priority-high::before {\n  content: \"\\F0603\";\n}\n\n.mdi2-priority-low::before {\n  content: \"\\F0604\";\n}\n\n.mdi2-professional-hexagon::before {\n  content: \"\\F042D\";\n}\n\n.mdi2-progress-alert::before {\n  content: \"\\F0CBC\";\n}\n\n.mdi2-progress-check::before {\n  content: \"\\F0995\";\n}\n\n.mdi2-progress-clock::before {\n  content: \"\\F0996\";\n}\n\n.mdi2-progress-close::before {\n  content: \"\\F110A\";\n}\n\n.mdi2-progress-download::before {\n  content: \"\\F0997\";\n}\n\n.mdi2-progress-helper::before {\n  content: \"\\F1BA2\";\n}\n\n.mdi2-progress-pencil::before {\n  content: \"\\F1787\";\n}\n\n.mdi2-progress-question::before {\n  content: \"\\F1522\";\n}\n\n.mdi2-progress-star::before {\n  content: \"\\F1788\";\n}\n\n.mdi2-progress-star-four-points::before {\n  content: \"\\F1C3D\";\n}\n\n.mdi2-progress-tag::before {\n  content: \"\\F1D0D\";\n}\n\n.mdi2-progress-upload::before {\n  content: \"\\F0998\";\n}\n\n.mdi2-progress-wrench::before {\n  content: \"\\F0CBD\";\n}\n\n.mdi2-projector::before {\n  content: \"\\F042E\";\n}\n\n.mdi2-projector-off::before {\n  content: \"\\F1A23\";\n}\n\n.mdi2-projector-screen::before {\n  content: \"\\F042F\";\n}\n\n.mdi2-projector-screen-off::before {\n  content: \"\\F180D\";\n}\n\n.mdi2-projector-screen-off-outline::before {\n  content: \"\\F180E\";\n}\n\n.mdi2-projector-screen-outline::before {\n  content: \"\\F1724\";\n}\n\n.mdi2-projector-screen-variant::before {\n  content: \"\\F180F\";\n}\n\n.mdi2-projector-screen-variant-off::before {\n  content: \"\\F1810\";\n}\n\n.mdi2-projector-screen-variant-off-outline::before {\n  content: \"\\F1811\";\n}\n\n.mdi2-projector-screen-variant-outline::before {\n  content: \"\\F1812\";\n}\n\n.mdi2-propane-tank::before {\n  content: \"\\F1357\";\n}\n\n.mdi2-propane-tank-outline::before {\n  content: \"\\F1358\";\n}\n\n.mdi2-protocol::before {\n  content: \"\\F0FD8\";\n}\n\n.mdi2-publish::before {\n  content: \"\\F06A7\";\n}\n\n.mdi2-publish-off::before {\n  content: \"\\F1945\";\n}\n\n.mdi2-pulse::before {\n  content: \"\\F0430\";\n}\n\n.mdi2-pump::before {\n  content: \"\\F1402\";\n}\n\n.mdi2-pump-off::before {\n  content: \"\\F1B22\";\n}\n\n.mdi2-pumpkin::before {\n  content: \"\\F0BBF\";\n}\n\n.mdi2-purse::before {\n  content: \"\\F0F1C\";\n}\n\n.mdi2-purse-outline::before {\n  content: \"\\F0F1D\";\n}\n\n.mdi2-puzzle::before {\n  content: \"\\F0431\";\n}\n\n.mdi2-puzzle-check::before {\n  content: \"\\F1426\";\n}\n\n.mdi2-puzzle-check-outline::before {\n  content: \"\\F1427\";\n}\n\n.mdi2-puzzle-edit::before {\n  content: \"\\F14D3\";\n}\n\n.mdi2-puzzle-edit-outline::before {\n  content: \"\\F14D9\";\n}\n\n.mdi2-puzzle-heart::before {\n  content: \"\\F14D4\";\n}\n\n.mdi2-puzzle-heart-outline::before {\n  content: \"\\F14DA\";\n}\n\n.mdi2-puzzle-minus::before {\n  content: \"\\F14D1\";\n}\n\n.mdi2-puzzle-minus-outline::before {\n  content: \"\\F14D7\";\n}\n\n.mdi2-puzzle-outline::before {\n  content: \"\\F0A66\";\n}\n\n.mdi2-puzzle-plus::before {\n  content: \"\\F14D0\";\n}\n\n.mdi2-puzzle-plus-outline::before {\n  content: \"\\F14D6\";\n}\n\n.mdi2-puzzle-remove::before {\n  content: \"\\F14D2\";\n}\n\n.mdi2-puzzle-remove-outline::before {\n  content: \"\\F14D8\";\n}\n\n.mdi2-puzzle-star::before {\n  content: \"\\F14D5\";\n}\n\n.mdi2-puzzle-star-outline::before {\n  content: \"\\F14DB\";\n}\n\n.mdi2-pyramid::before {\n  content: \"\\F1952\";\n}\n\n.mdi2-pyramid-off::before {\n  content: \"\\F1953\";\n}\n\n.mdi2-qi::before {\n  content: \"\\F0999\";\n}\n\n.mdi2-qqchat::before {\n  content: \"\\F0605\";\n}\n\n.mdi2-qrcode::before {\n  content: \"\\F0432\";\n}\n\n.mdi2-qrcode-edit::before {\n  content: \"\\F08B8\";\n}\n\n.mdi2-qrcode-minus::before {\n  content: \"\\F118C\";\n}\n\n.mdi2-qrcode-plus::before {\n  content: \"\\F118B\";\n}\n\n.mdi2-qrcode-remove::before {\n  content: \"\\F118D\";\n}\n\n.mdi2-qrcode-scan::before {\n  content: \"\\F0433\";\n}\n\n.mdi2-quadcopter::before {\n  content: \"\\F0434\";\n}\n\n.mdi2-quality-high::before {\n  content: \"\\F0435\";\n}\n\n.mdi2-quality-low::before {\n  content: \"\\F0A0C\";\n}\n\n.mdi2-quality-medium::before {\n  content: \"\\F0A0D\";\n}\n\n.mdi2-queue-first-in-last-out::before {\n  content: \"\\F1CAF\";\n}\n\n.mdi2-quora::before {\n  content: \"\\F0D29\";\n}\n\n.mdi2-rabbit::before {\n  content: \"\\F0907\";\n}\n\n.mdi2-rabbit-variant::before {\n  content: \"\\F1A61\";\n}\n\n.mdi2-rabbit-variant-outline::before {\n  content: \"\\F1A62\";\n}\n\n.mdi2-racing-helmet::before {\n  content: \"\\F0D93\";\n}\n\n.mdi2-racquetball::before {\n  content: \"\\F0D94\";\n}\n\n.mdi2-radar::before {\n  content: \"\\F0437\";\n}\n\n.mdi2-radiator::before {\n  content: \"\\F0438\";\n}\n\n.mdi2-radiator-disabled::before {\n  content: \"\\F0AD7\";\n}\n\n.mdi2-radiator-off::before {\n  content: \"\\F0AD8\";\n}\n\n.mdi2-radio::before {\n  content: \"\\F0439\";\n}\n\n.mdi2-radio-am::before {\n  content: \"\\F0CBE\";\n}\n\n.mdi2-radio-fm::before {\n  content: \"\\F0CBF\";\n}\n\n.mdi2-radio-handheld::before {\n  content: \"\\F043A\";\n}\n\n.mdi2-radio-off::before {\n  content: \"\\F121C\";\n}\n\n.mdi2-radio-tower::before {\n  content: \"\\F043B\";\n}\n\n.mdi2-radioactive::before {\n  content: \"\\F043C\";\n}\n\n.mdi2-radioactive-circle::before {\n  content: \"\\F185D\";\n}\n\n.mdi2-radioactive-circle-outline::before {\n  content: \"\\F185E\";\n}\n\n.mdi2-radioactive-off::before {\n  content: \"\\F0EC1\";\n}\n\n.mdi2-radiobox-blank::before {\n  content: \"\\F043D\";\n}\n\n.mdi2-radiobox-indeterminate-variant::before {\n  content: \"\\F1C5E\";\n}\n\n.mdi2-radiobox-marked::before {\n  content: \"\\F043E\";\n}\n\n.mdi2-radiology-box::before {\n  content: \"\\F14C5\";\n}\n\n.mdi2-radiology-box-outline::before {\n  content: \"\\F14C6\";\n}\n\n.mdi2-radius::before {\n  content: \"\\F0CC0\";\n}\n\n.mdi2-radius-outline::before {\n  content: \"\\F0CC1\";\n}\n\n.mdi2-railroad-light::before {\n  content: \"\\F0F1E\";\n}\n\n.mdi2-rake::before {\n  content: \"\\F1544\";\n}\n\n.mdi2-raspberry-pi::before {\n  content: \"\\F043F\";\n}\n\n.mdi2-raw::before {\n  content: \"\\F1A0F\";\n}\n\n.mdi2-raw-off::before {\n  content: \"\\F1A10\";\n}\n\n.mdi2-ray-end::before {\n  content: \"\\F0440\";\n}\n\n.mdi2-ray-end-arrow::before {\n  content: \"\\F0441\";\n}\n\n.mdi2-ray-start::before {\n  content: \"\\F0442\";\n}\n\n.mdi2-ray-start-arrow::before {\n  content: \"\\F0443\";\n}\n\n.mdi2-ray-start-end::before {\n  content: \"\\F0444\";\n}\n\n.mdi2-ray-start-vertex-end::before {\n  content: \"\\F15D8\";\n}\n\n.mdi2-ray-vertex::before {\n  content: \"\\F0445\";\n}\n\n.mdi2-razor-double-edge::before {\n  content: \"\\F1997\";\n}\n\n.mdi2-razor-single-edge::before {\n  content: \"\\F1998\";\n}\n\n.mdi2-react::before {\n  content: \"\\F0708\";\n}\n\n.mdi2-read::before {\n  content: \"\\F0447\";\n}\n\n.mdi2-receipt::before {\n  content: \"\\F0824\";\n}\n\n.mdi2-receipt-clock::before {\n  content: \"\\F1C3E\";\n}\n\n.mdi2-receipt-clock-outline::before {\n  content: \"\\F1C3F\";\n}\n\n.mdi2-receipt-outline::before {\n  content: \"\\F04F7\";\n}\n\n.mdi2-receipt-send::before {\n  content: \"\\F1C40\";\n}\n\n.mdi2-receipt-send-outline::before {\n  content: \"\\F1C41\";\n}\n\n.mdi2-receipt-text::before {\n  content: \"\\F0449\";\n}\n\n.mdi2-receipt-text-arrow-left::before {\n  content: \"\\F1C42\";\n}\n\n.mdi2-receipt-text-arrow-left-outline::before {\n  content: \"\\F1C43\";\n}\n\n.mdi2-receipt-text-arrow-right::before {\n  content: \"\\F1C44\";\n}\n\n.mdi2-receipt-text-arrow-right-outline::before {\n  content: \"\\F1C45\";\n}\n\n.mdi2-receipt-text-check::before {\n  content: \"\\F1A63\";\n}\n\n.mdi2-receipt-text-check-outline::before {\n  content: \"\\F1A64\";\n}\n\n.mdi2-receipt-text-clock::before {\n  content: \"\\F1C46\";\n}\n\n.mdi2-receipt-text-clock-outline::before {\n  content: \"\\F1C47\";\n}\n\n.mdi2-receipt-text-edit::before {\n  content: \"\\F1C48\";\n}\n\n.mdi2-receipt-text-edit-outline::before {\n  content: \"\\F1C49\";\n}\n\n.mdi2-receipt-text-minus::before {\n  content: \"\\F1A65\";\n}\n\n.mdi2-receipt-text-minus-outline::before {\n  content: \"\\F1A66\";\n}\n\n.mdi2-receipt-text-outline::before {\n  content: \"\\F19DC\";\n}\n\n.mdi2-receipt-text-plus::before {\n  content: \"\\F1A67\";\n}\n\n.mdi2-receipt-text-plus-outline::before {\n  content: \"\\F1A68\";\n}\n\n.mdi2-receipt-text-remove::before {\n  content: \"\\F1A69\";\n}\n\n.mdi2-receipt-text-remove-outline::before {\n  content: \"\\F1A6A\";\n}\n\n.mdi2-receipt-text-send::before {\n  content: \"\\F1C4A\";\n}\n\n.mdi2-receipt-text-send-outline::before {\n  content: \"\\F1C4B\";\n}\n\n.mdi2-record::before {\n  content: \"\\F044A\";\n}\n\n.mdi2-record-circle::before {\n  content: \"\\F0EC2\";\n}\n\n.mdi2-record-circle-outline::before {\n  content: \"\\F0EC3\";\n}\n\n.mdi2-record-player::before {\n  content: \"\\F099A\";\n}\n\n.mdi2-record-rec::before {\n  content: \"\\F044B\";\n}\n\n.mdi2-rectangle::before {\n  content: \"\\F0E5E\";\n}\n\n.mdi2-rectangle-outline::before {\n  content: \"\\F0E5F\";\n}\n\n.mdi2-recycle::before {\n  content: \"\\F044C\";\n}\n\n.mdi2-recycle-variant::before {\n  content: \"\\F139D\";\n}\n\n.mdi2-reddit::before {\n  content: \"\\F044D\";\n}\n\n.mdi2-redhat::before {\n  content: \"\\F111B\";\n}\n\n.mdi2-redo::before {\n  content: \"\\F044E\";\n}\n\n.mdi2-redo-variant::before {\n  content: \"\\F044F\";\n}\n\n.mdi2-reflect-horizontal::before {\n  content: \"\\F0A0E\";\n}\n\n.mdi2-reflect-vertical::before {\n  content: \"\\F0A0F\";\n}\n\n.mdi2-refresh::before {\n  content: \"\\F0450\";\n}\n\n.mdi2-refresh-auto::before {\n  content: \"\\F18F2\";\n}\n\n.mdi2-refresh-circle::before {\n  content: \"\\F1377\";\n}\n\n.mdi2-regex::before {\n  content: \"\\F0451\";\n}\n\n.mdi2-registered-trademark::before {\n  content: \"\\F0A67\";\n}\n\n.mdi2-reiterate::before {\n  content: \"\\F1588\";\n}\n\n.mdi2-relation-many-to-many::before {\n  content: \"\\F1496\";\n}\n\n.mdi2-relation-many-to-one::before {\n  content: \"\\F1497\";\n}\n\n.mdi2-relation-many-to-one-or-many::before {\n  content: \"\\F1498\";\n}\n\n.mdi2-relation-many-to-only-one::before {\n  content: \"\\F1499\";\n}\n\n.mdi2-relation-many-to-zero-or-many::before {\n  content: \"\\F149A\";\n}\n\n.mdi2-relation-many-to-zero-or-one::before {\n  content: \"\\F149B\";\n}\n\n.mdi2-relation-one-or-many-to-many::before {\n  content: \"\\F149C\";\n}\n\n.mdi2-relation-one-or-many-to-one::before {\n  content: \"\\F149D\";\n}\n\n.mdi2-relation-one-or-many-to-one-or-many::before {\n  content: \"\\F149E\";\n}\n\n.mdi2-relation-one-or-many-to-only-one::before {\n  content: \"\\F149F\";\n}\n\n.mdi2-relation-one-or-many-to-zero-or-many::before {\n  content: \"\\F14A0\";\n}\n\n.mdi2-relation-one-or-many-to-zero-or-one::before {\n  content: \"\\F14A1\";\n}\n\n.mdi2-relation-one-to-many::before {\n  content: \"\\F14A2\";\n}\n\n.mdi2-relation-one-to-one::before {\n  content: \"\\F14A3\";\n}\n\n.mdi2-relation-one-to-one-or-many::before {\n  content: \"\\F14A4\";\n}\n\n.mdi2-relation-one-to-only-one::before {\n  content: \"\\F14A5\";\n}\n\n.mdi2-relation-one-to-zero-or-many::before {\n  content: \"\\F14A6\";\n}\n\n.mdi2-relation-one-to-zero-or-one::before {\n  content: \"\\F14A7\";\n}\n\n.mdi2-relation-only-one-to-many::before {\n  content: \"\\F14A8\";\n}\n\n.mdi2-relation-only-one-to-one::before {\n  content: \"\\F14A9\";\n}\n\n.mdi2-relation-only-one-to-one-or-many::before {\n  content: \"\\F14AA\";\n}\n\n.mdi2-relation-only-one-to-only-one::before {\n  content: \"\\F14AB\";\n}\n\n.mdi2-relation-only-one-to-zero-or-many::before {\n  content: \"\\F14AC\";\n}\n\n.mdi2-relation-only-one-to-zero-or-one::before {\n  content: \"\\F14AD\";\n}\n\n.mdi2-relation-zero-or-many-to-many::before {\n  content: \"\\F14AE\";\n}\n\n.mdi2-relation-zero-or-many-to-one::before {\n  content: \"\\F14AF\";\n}\n\n.mdi2-relation-zero-or-many-to-one-or-many::before {\n  content: \"\\F14B0\";\n}\n\n.mdi2-relation-zero-or-many-to-only-one::before {\n  content: \"\\F14B1\";\n}\n\n.mdi2-relation-zero-or-many-to-zero-or-many::before {\n  content: \"\\F14B2\";\n}\n\n.mdi2-relation-zero-or-many-to-zero-or-one::before {\n  content: \"\\F14B3\";\n}\n\n.mdi2-relation-zero-or-one-to-many::before {\n  content: \"\\F14B4\";\n}\n\n.mdi2-relation-zero-or-one-to-one::before {\n  content: \"\\F14B5\";\n}\n\n.mdi2-relation-zero-or-one-to-one-or-many::before {\n  content: \"\\F14B6\";\n}\n\n.mdi2-relation-zero-or-one-to-only-one::before {\n  content: \"\\F14B7\";\n}\n\n.mdi2-relation-zero-or-one-to-zero-or-many::before {\n  content: \"\\F14B8\";\n}\n\n.mdi2-relation-zero-or-one-to-zero-or-one::before {\n  content: \"\\F14B9\";\n}\n\n.mdi2-relative-scale::before {\n  content: \"\\F0452\";\n}\n\n.mdi2-reload::before {\n  content: \"\\F0453\";\n}\n\n.mdi2-reload-alert::before {\n  content: \"\\F110B\";\n}\n\n.mdi2-reminder::before {\n  content: \"\\F088C\";\n}\n\n.mdi2-remote::before {\n  content: \"\\F0454\";\n}\n\n.mdi2-remote-desktop::before {\n  content: \"\\F08B9\";\n}\n\n.mdi2-remote-off::before {\n  content: \"\\F0EC4\";\n}\n\n.mdi2-remote-tv::before {\n  content: \"\\F0EC5\";\n}\n\n.mdi2-remote-tv-off::before {\n  content: \"\\F0EC6\";\n}\n\n.mdi2-rename::before {\n  content: \"\\F1C18\";\n}\n\n.mdi2-rename-box::before {\n  content: \"\\F0455\";\n}\n\n.mdi2-rename-box-outline::before {\n  content: \"\\F1C19\";\n}\n\n.mdi2-rename-outline::before {\n  content: \"\\F1C1A\";\n}\n\n.mdi2-reorder-horizontal::before {\n  content: \"\\F0688\";\n}\n\n.mdi2-reorder-vertical::before {\n  content: \"\\F0689\";\n}\n\n.mdi2-repeat::before {\n  content: \"\\F0456\";\n}\n\n.mdi2-repeat-off::before {\n  content: \"\\F0457\";\n}\n\n.mdi2-repeat-once::before {\n  content: \"\\F0458\";\n}\n\n.mdi2-repeat-variant::before {\n  content: \"\\F0547\";\n}\n\n.mdi2-replay::before {\n  content: \"\\F0459\";\n}\n\n.mdi2-reply::before {\n  content: \"\\F045A\";\n}\n\n.mdi2-reply-all::before {\n  content: \"\\F045B\";\n}\n\n.mdi2-reply-all-outline::before {\n  content: \"\\F0F1F\";\n}\n\n.mdi2-reply-circle::before {\n  content: \"\\F11AE\";\n}\n\n.mdi2-reply-outline::before {\n  content: \"\\F0F20\";\n}\n\n.mdi2-reproduction::before {\n  content: \"\\F045C\";\n}\n\n.mdi2-resistor::before {\n  content: \"\\F0B44\";\n}\n\n.mdi2-resistor-nodes::before {\n  content: \"\\F0B45\";\n}\n\n.mdi2-resize::before {\n  content: \"\\F0A68\";\n}\n\n.mdi2-resize-bottom-right::before {\n  content: \"\\F045D\";\n}\n\n.mdi2-responsive::before {\n  content: \"\\F045E\";\n}\n\n.mdi2-restart::before {\n  content: \"\\F0709\";\n}\n\n.mdi2-restart-alert::before {\n  content: \"\\F110C\";\n}\n\n.mdi2-restart-off::before {\n  content: \"\\F0D95\";\n}\n\n.mdi2-restore::before {\n  content: \"\\F099B\";\n}\n\n.mdi2-restore-alert::before {\n  content: \"\\F110D\";\n}\n\n.mdi2-rewind::before {\n  content: \"\\F045F\";\n}\n\n.mdi2-rewind-10::before {\n  content: \"\\F0D2A\";\n}\n\n.mdi2-rewind-15::before {\n  content: \"\\F1946\";\n}\n\n.mdi2-rewind-30::before {\n  content: \"\\F0D96\";\n}\n\n.mdi2-rewind-45::before {\n  content: \"\\F1B13\";\n}\n\n.mdi2-rewind-5::before {\n  content: \"\\F11F9\";\n}\n\n.mdi2-rewind-60::before {\n  content: \"\\F160C\";\n}\n\n.mdi2-rewind-outline::before {\n  content: \"\\F070A\";\n}\n\n.mdi2-rhombus::before {\n  content: \"\\F070B\";\n}\n\n.mdi2-rhombus-medium::before {\n  content: \"\\F0A10\";\n}\n\n.mdi2-rhombus-medium-outline::before {\n  content: \"\\F14DC\";\n}\n\n.mdi2-rhombus-outline::before {\n  content: \"\\F070C\";\n}\n\n.mdi2-rhombus-split::before {\n  content: \"\\F0A11\";\n}\n\n.mdi2-rhombus-split-outline::before {\n  content: \"\\F14DD\";\n}\n\n.mdi2-ribbon::before {\n  content: \"\\F0460\";\n}\n\n.mdi2-rice::before {\n  content: \"\\F07EA\";\n}\n\n.mdi2-rickshaw::before {\n  content: \"\\F15BB\";\n}\n\n.mdi2-rickshaw-electric::before {\n  content: \"\\F15BC\";\n}\n\n.mdi2-ring::before {\n  content: \"\\F07EB\";\n}\n\n.mdi2-rivet::before {\n  content: \"\\F0E60\";\n}\n\n.mdi2-road::before {\n  content: \"\\F0461\";\n}\n\n.mdi2-road-variant::before {\n  content: \"\\F0462\";\n}\n\n.mdi2-robber::before {\n  content: \"\\F1058\";\n}\n\n.mdi2-robot::before {\n  content: \"\\F06A9\";\n}\n\n.mdi2-robot-angry::before {\n  content: \"\\F169D\";\n}\n\n.mdi2-robot-angry-outline::before {\n  content: \"\\F169E\";\n}\n\n.mdi2-robot-confused::before {\n  content: \"\\F169F\";\n}\n\n.mdi2-robot-confused-outline::before {\n  content: \"\\F16A0\";\n}\n\n.mdi2-robot-dead::before {\n  content: \"\\F16A1\";\n}\n\n.mdi2-robot-dead-outline::before {\n  content: \"\\F16A2\";\n}\n\n.mdi2-robot-excited::before {\n  content: \"\\F16A3\";\n}\n\n.mdi2-robot-excited-outline::before {\n  content: \"\\F16A4\";\n}\n\n.mdi2-robot-happy::before {\n  content: \"\\F1719\";\n}\n\n.mdi2-robot-happy-outline::before {\n  content: \"\\F171A\";\n}\n\n.mdi2-robot-industrial::before {\n  content: \"\\F0B46\";\n}\n\n.mdi2-robot-industrial-outline::before {\n  content: \"\\F1A1A\";\n}\n\n.mdi2-robot-love::before {\n  content: \"\\F16A5\";\n}\n\n.mdi2-robot-love-outline::before {\n  content: \"\\F16A6\";\n}\n\n.mdi2-robot-mower::before {\n  content: \"\\F11F7\";\n}\n\n.mdi2-robot-mower-outline::before {\n  content: \"\\F11F3\";\n}\n\n.mdi2-robot-off::before {\n  content: \"\\F16A7\";\n}\n\n.mdi2-robot-off-outline::before {\n  content: \"\\F167B\";\n}\n\n.mdi2-robot-outline::before {\n  content: \"\\F167A\";\n}\n\n.mdi2-robot-vacuum::before {\n  content: \"\\F070D\";\n}\n\n.mdi2-robot-vacuum-alert::before {\n  content: \"\\F1B5D\";\n}\n\n.mdi2-robot-vacuum-off::before {\n  content: \"\\F1C01\";\n}\n\n.mdi2-robot-vacuum-variant::before {\n  content: \"\\F0908\";\n}\n\n.mdi2-robot-vacuum-variant-alert::before {\n  content: \"\\F1B5E\";\n}\n\n.mdi2-robot-vacuum-variant-off::before {\n  content: \"\\F1C02\";\n}\n\n.mdi2-rocket::before {\n  content: \"\\F0463\";\n}\n\n.mdi2-rocket-launch::before {\n  content: \"\\F14DE\";\n}\n\n.mdi2-rocket-launch-outline::before {\n  content: \"\\F14DF\";\n}\n\n.mdi2-rocket-outline::before {\n  content: \"\\F13AF\";\n}\n\n.mdi2-rodent::before {\n  content: \"\\F1327\";\n}\n\n.mdi2-roller-shade::before {\n  content: \"\\F1A6B\";\n}\n\n.mdi2-roller-shade-closed::before {\n  content: \"\\F1A6C\";\n}\n\n.mdi2-roller-skate::before {\n  content: \"\\F0D2B\";\n}\n\n.mdi2-roller-skate-off::before {\n  content: \"\\F0145\";\n}\n\n.mdi2-rollerblade::before {\n  content: \"\\F0D2C\";\n}\n\n.mdi2-rollerblade-off::before {\n  content: \"\\F002E\";\n}\n\n.mdi2-rollupjs::before {\n  content: \"\\F0BC0\";\n}\n\n.mdi2-rolodex::before {\n  content: \"\\F1AB9\";\n}\n\n.mdi2-rolodex-outline::before {\n  content: \"\\F1ABA\";\n}\n\n.mdi2-roman-numeral-1::before {\n  content: \"\\F1088\";\n}\n\n.mdi2-roman-numeral-10::before {\n  content: \"\\F1091\";\n}\n\n.mdi2-roman-numeral-2::before {\n  content: \"\\F1089\";\n}\n\n.mdi2-roman-numeral-3::before {\n  content: \"\\F108A\";\n}\n\n.mdi2-roman-numeral-4::before {\n  content: \"\\F108B\";\n}\n\n.mdi2-roman-numeral-5::before {\n  content: \"\\F108C\";\n}\n\n.mdi2-roman-numeral-6::before {\n  content: \"\\F108D\";\n}\n\n.mdi2-roman-numeral-7::before {\n  content: \"\\F108E\";\n}\n\n.mdi2-roman-numeral-8::before {\n  content: \"\\F108F\";\n}\n\n.mdi2-roman-numeral-9::before {\n  content: \"\\F1090\";\n}\n\n.mdi2-room-service::before {\n  content: \"\\F088D\";\n}\n\n.mdi2-room-service-outline::before {\n  content: \"\\F0D97\";\n}\n\n.mdi2-rotate-360::before {\n  content: \"\\F1999\";\n}\n\n.mdi2-rotate-3d::before {\n  content: \"\\F0EC7\";\n}\n\n.mdi2-rotate-3d-variant::before {\n  content: \"\\F0464\";\n}\n\n.mdi2-rotate-left::before {\n  content: \"\\F0465\";\n}\n\n.mdi2-rotate-left-variant::before {\n  content: \"\\F0466\";\n}\n\n.mdi2-rotate-orbit::before {\n  content: \"\\F0D98\";\n}\n\n.mdi2-rotate-right::before {\n  content: \"\\F0467\";\n}\n\n.mdi2-rotate-right-variant::before {\n  content: \"\\F0468\";\n}\n\n.mdi2-rounded-corner::before {\n  content: \"\\F0607\";\n}\n\n.mdi2-router::before {\n  content: \"\\F11E2\";\n}\n\n.mdi2-router-network::before {\n  content: \"\\F1087\";\n}\n\n.mdi2-router-network-wireless::before {\n  content: \"\\F1C97\";\n}\n\n.mdi2-router-wireless::before {\n  content: \"\\F0469\";\n}\n\n.mdi2-router-wireless-off::before {\n  content: \"\\F15A3\";\n}\n\n.mdi2-router-wireless-settings::before {\n  content: \"\\F0A69\";\n}\n\n.mdi2-routes::before {\n  content: \"\\F046A\";\n}\n\n.mdi2-routes-clock::before {\n  content: \"\\F1059\";\n}\n\n.mdi2-rowing::before {\n  content: \"\\F0608\";\n}\n\n.mdi2-rss::before {\n  content: \"\\F046B\";\n}\n\n.mdi2-rss-box::before {\n  content: \"\\F046C\";\n}\n\n.mdi2-rss-off::before {\n  content: \"\\F0F21\";\n}\n\n.mdi2-rug::before {\n  content: \"\\F1475\";\n}\n\n.mdi2-rugby::before {\n  content: \"\\F0D99\";\n}\n\n.mdi2-ruler::before {\n  content: \"\\F046D\";\n}\n\n.mdi2-ruler-square::before {\n  content: \"\\F0CC2\";\n}\n\n.mdi2-ruler-square-compass::before {\n  content: \"\\F0EBE\";\n}\n\n.mdi2-run::before {\n  content: \"\\F070E\";\n}\n\n.mdi2-run-fast::before {\n  content: \"\\F046E\";\n}\n\n.mdi2-rv-truck::before {\n  content: \"\\F11D4\";\n}\n\n.mdi2-sack::before {\n  content: \"\\F0D2E\";\n}\n\n.mdi2-sack-outline::before {\n  content: \"\\F1C4C\";\n}\n\n.mdi2-sack-percent::before {\n  content: \"\\F0D2F\";\n}\n\n.mdi2-safe::before {\n  content: \"\\F0A6A\";\n}\n\n.mdi2-safe-square::before {\n  content: \"\\F127C\";\n}\n\n.mdi2-safe-square-outline::before {\n  content: \"\\F127D\";\n}\n\n.mdi2-safety-goggles::before {\n  content: \"\\F0D30\";\n}\n\n.mdi2-sail-boat::before {\n  content: \"\\F0EC8\";\n}\n\n.mdi2-sail-boat-sink::before {\n  content: \"\\F1AEF\";\n}\n\n.mdi2-sale::before {\n  content: \"\\F046F\";\n}\n\n.mdi2-sale-outline::before {\n  content: \"\\F1A06\";\n}\n\n.mdi2-salesforce::before {\n  content: \"\\F088E\";\n}\n\n.mdi2-sass::before {\n  content: \"\\F07EC\";\n}\n\n.mdi2-satellite::before {\n  content: \"\\F0470\";\n}\n\n.mdi2-satellite-uplink::before {\n  content: \"\\F0909\";\n}\n\n.mdi2-satellite-variant::before {\n  content: \"\\F0471\";\n}\n\n.mdi2-sausage::before {\n  content: \"\\F08BA\";\n}\n\n.mdi2-sausage-off::before {\n  content: \"\\F1789\";\n}\n\n.mdi2-saw-blade::before {\n  content: \"\\F0E61\";\n}\n\n.mdi2-sawtooth-wave::before {\n  content: \"\\F147A\";\n}\n\n.mdi2-saxophone::before {\n  content: \"\\F0609\";\n}\n\n.mdi2-scale::before {\n  content: \"\\F0472\";\n}\n\n.mdi2-scale-balance::before {\n  content: \"\\F05D1\";\n}\n\n.mdi2-scale-bathroom::before {\n  content: \"\\F0473\";\n}\n\n.mdi2-scale-off::before {\n  content: \"\\F105A\";\n}\n\n.mdi2-scale-unbalanced::before {\n  content: \"\\F19B8\";\n}\n\n.mdi2-scan-helper::before {\n  content: \"\\F13D8\";\n}\n\n.mdi2-scanner::before {\n  content: \"\\F06AB\";\n}\n\n.mdi2-scanner-off::before {\n  content: \"\\F090A\";\n}\n\n.mdi2-scatter-plot::before {\n  content: \"\\F0EC9\";\n}\n\n.mdi2-scatter-plot-outline::before {\n  content: \"\\F0ECA\";\n}\n\n.mdi2-scent::before {\n  content: \"\\F1958\";\n}\n\n.mdi2-scent-off::before {\n  content: \"\\F1959\";\n}\n\n.mdi2-school::before {\n  content: \"\\F0474\";\n}\n\n.mdi2-school-outline::before {\n  content: \"\\F1180\";\n}\n\n.mdi2-scissors-cutting::before {\n  content: \"\\F0A6B\";\n}\n\n.mdi2-scooter::before {\n  content: \"\\F15BD\";\n}\n\n.mdi2-scooter-electric::before {\n  content: \"\\F15BE\";\n}\n\n.mdi2-scoreboard::before {\n  content: \"\\F127E\";\n}\n\n.mdi2-scoreboard-outline::before {\n  content: \"\\F127F\";\n}\n\n.mdi2-screen-rotation::before {\n  content: \"\\F0475\";\n}\n\n.mdi2-screen-rotation-lock::before {\n  content: \"\\F0478\";\n}\n\n.mdi2-screw-flat-top::before {\n  content: \"\\F0DF3\";\n}\n\n.mdi2-screw-lag::before {\n  content: \"\\F0DF4\";\n}\n\n.mdi2-screw-machine-flat-top::before {\n  content: \"\\F0DF5\";\n}\n\n.mdi2-screw-machine-round-top::before {\n  content: \"\\F0DF6\";\n}\n\n.mdi2-screw-round-top::before {\n  content: \"\\F0DF7\";\n}\n\n.mdi2-screwdriver::before {\n  content: \"\\F0476\";\n}\n\n.mdi2-script::before {\n  content: \"\\F0BC1\";\n}\n\n.mdi2-script-outline::before {\n  content: \"\\F0477\";\n}\n\n.mdi2-script-text::before {\n  content: \"\\F0BC2\";\n}\n\n.mdi2-script-text-key::before {\n  content: \"\\F1725\";\n}\n\n.mdi2-script-text-key-outline::before {\n  content: \"\\F1726\";\n}\n\n.mdi2-script-text-outline::before {\n  content: \"\\F0BC3\";\n}\n\n.mdi2-script-text-play::before {\n  content: \"\\F1727\";\n}\n\n.mdi2-script-text-play-outline::before {\n  content: \"\\F1728\";\n}\n\n.mdi2-sd::before {\n  content: \"\\F0479\";\n}\n\n.mdi2-seal::before {\n  content: \"\\F047A\";\n}\n\n.mdi2-seal-variant::before {\n  content: \"\\F0FD9\";\n}\n\n.mdi2-search-web::before {\n  content: \"\\F070F\";\n}\n\n.mdi2-seat::before {\n  content: \"\\F0CC3\";\n}\n\n.mdi2-seat-flat::before {\n  content: \"\\F047B\";\n}\n\n.mdi2-seat-flat-angled::before {\n  content: \"\\F047C\";\n}\n\n.mdi2-seat-individual-suite::before {\n  content: \"\\F047D\";\n}\n\n.mdi2-seat-legroom-extra::before {\n  content: \"\\F047E\";\n}\n\n.mdi2-seat-legroom-normal::before {\n  content: \"\\F047F\";\n}\n\n.mdi2-seat-legroom-reduced::before {\n  content: \"\\F0480\";\n}\n\n.mdi2-seat-outline::before {\n  content: \"\\F0CC4\";\n}\n\n.mdi2-seat-passenger::before {\n  content: \"\\F1249\";\n}\n\n.mdi2-seat-recline-extra::before {\n  content: \"\\F0481\";\n}\n\n.mdi2-seat-recline-normal::before {\n  content: \"\\F0482\";\n}\n\n.mdi2-seatbelt::before {\n  content: \"\\F0CC5\";\n}\n\n.mdi2-security::before {\n  content: \"\\F0483\";\n}\n\n.mdi2-security-network::before {\n  content: \"\\F0484\";\n}\n\n.mdi2-seed::before {\n  content: \"\\F0E62\";\n}\n\n.mdi2-seed-off::before {\n  content: \"\\F13FD\";\n}\n\n.mdi2-seed-off-outline::before {\n  content: \"\\F13FE\";\n}\n\n.mdi2-seed-outline::before {\n  content: \"\\F0E63\";\n}\n\n.mdi2-seed-plus::before {\n  content: \"\\F1A6D\";\n}\n\n.mdi2-seed-plus-outline::before {\n  content: \"\\F1A6E\";\n}\n\n.mdi2-seesaw::before {\n  content: \"\\F15A4\";\n}\n\n.mdi2-segment::before {\n  content: \"\\F0ECB\";\n}\n\n.mdi2-select::before {\n  content: \"\\F0485\";\n}\n\n.mdi2-select-all::before {\n  content: \"\\F0486\";\n}\n\n.mdi2-select-arrow-down::before {\n  content: \"\\F1B59\";\n}\n\n.mdi2-select-arrow-up::before {\n  content: \"\\F1B58\";\n}\n\n.mdi2-select-color::before {\n  content: \"\\F0D31\";\n}\n\n.mdi2-select-compare::before {\n  content: \"\\F0AD9\";\n}\n\n.mdi2-select-drag::before {\n  content: \"\\F0A6C\";\n}\n\n.mdi2-select-group::before {\n  content: \"\\F0F82\";\n}\n\n.mdi2-select-inverse::before {\n  content: \"\\F0487\";\n}\n\n.mdi2-select-marker::before {\n  content: \"\\F1280\";\n}\n\n.mdi2-select-multiple::before {\n  content: \"\\F1281\";\n}\n\n.mdi2-select-multiple-marker::before {\n  content: \"\\F1282\";\n}\n\n.mdi2-select-off::before {\n  content: \"\\F0488\";\n}\n\n.mdi2-select-place::before {\n  content: \"\\F0FDA\";\n}\n\n.mdi2-select-remove::before {\n  content: \"\\F17C1\";\n}\n\n.mdi2-select-search::before {\n  content: \"\\F1204\";\n}\n\n.mdi2-selection::before {\n  content: \"\\F0489\";\n}\n\n.mdi2-selection-drag::before {\n  content: \"\\F0A6D\";\n}\n\n.mdi2-selection-ellipse::before {\n  content: \"\\F0D32\";\n}\n\n.mdi2-selection-ellipse-arrow-inside::before {\n  content: \"\\F0F22\";\n}\n\n.mdi2-selection-ellipse-remove::before {\n  content: \"\\F17C2\";\n}\n\n.mdi2-selection-marker::before {\n  content: \"\\F1283\";\n}\n\n.mdi2-selection-multiple::before {\n  content: \"\\F1285\";\n}\n\n.mdi2-selection-multiple-marker::before {\n  content: \"\\F1284\";\n}\n\n.mdi2-selection-off::before {\n  content: \"\\F0777\";\n}\n\n.mdi2-selection-remove::before {\n  content: \"\\F17C3\";\n}\n\n.mdi2-selection-search::before {\n  content: \"\\F1205\";\n}\n\n.mdi2-semantic-web::before {\n  content: \"\\F1316\";\n}\n\n.mdi2-send::before {\n  content: \"\\F048A\";\n}\n\n.mdi2-send-check::before {\n  content: \"\\F1161\";\n}\n\n.mdi2-send-check-outline::before {\n  content: \"\\F1162\";\n}\n\n.mdi2-send-circle::before {\n  content: \"\\F0DF8\";\n}\n\n.mdi2-send-circle-outline::before {\n  content: \"\\F0DF9\";\n}\n\n.mdi2-send-clock::before {\n  content: \"\\F1163\";\n}\n\n.mdi2-send-clock-outline::before {\n  content: \"\\F1164\";\n}\n\n.mdi2-send-lock::before {\n  content: \"\\F07ED\";\n}\n\n.mdi2-send-lock-outline::before {\n  content: \"\\F1166\";\n}\n\n.mdi2-send-outline::before {\n  content: \"\\F1165\";\n}\n\n.mdi2-send-variant::before {\n  content: \"\\F1C4D\";\n}\n\n.mdi2-send-variant-clock::before {\n  content: \"\\F1C7E\";\n}\n\n.mdi2-send-variant-clock-outline::before {\n  content: \"\\F1C7F\";\n}\n\n.mdi2-send-variant-outline::before {\n  content: \"\\F1C4E\";\n}\n\n.mdi2-serial-port::before {\n  content: \"\\F065C\";\n}\n\n.mdi2-server::before {\n  content: \"\\F048B\";\n}\n\n.mdi2-server-minus::before {\n  content: \"\\F048C\";\n}\n\n.mdi2-server-minus-outline::before {\n  content: \"\\F1C98\";\n}\n\n.mdi2-server-network::before {\n  content: \"\\F048D\";\n}\n\n.mdi2-server-network-off::before {\n  content: \"\\F048E\";\n}\n\n.mdi2-server-network-outline::before {\n  content: \"\\F1C99\";\n}\n\n.mdi2-server-off::before {\n  content: \"\\F048F\";\n}\n\n.mdi2-server-outline::before {\n  content: \"\\F1C9A\";\n}\n\n.mdi2-server-plus::before {\n  content: \"\\F0490\";\n}\n\n.mdi2-server-plus-outline::before {\n  content: \"\\F1C9B\";\n}\n\n.mdi2-server-remove::before {\n  content: \"\\F0491\";\n}\n\n.mdi2-server-security::before {\n  content: \"\\F0492\";\n}\n\n.mdi2-set-all::before {\n  content: \"\\F0778\";\n}\n\n.mdi2-set-center::before {\n  content: \"\\F0779\";\n}\n\n.mdi2-set-center-right::before {\n  content: \"\\F077A\";\n}\n\n.mdi2-set-left::before {\n  content: \"\\F077B\";\n}\n\n.mdi2-set-left-center::before {\n  content: \"\\F077C\";\n}\n\n.mdi2-set-left-right::before {\n  content: \"\\F077D\";\n}\n\n.mdi2-set-merge::before {\n  content: \"\\F14E0\";\n}\n\n.mdi2-set-none::before {\n  content: \"\\F077E\";\n}\n\n.mdi2-set-right::before {\n  content: \"\\F077F\";\n}\n\n.mdi2-set-split::before {\n  content: \"\\F14E1\";\n}\n\n.mdi2-set-square::before {\n  content: \"\\F145D\";\n}\n\n.mdi2-set-top-box::before {\n  content: \"\\F099F\";\n}\n\n.mdi2-settings-helper::before {\n  content: \"\\F0A6E\";\n}\n\n.mdi2-shaker::before {\n  content: \"\\F110E\";\n}\n\n.mdi2-shaker-outline::before {\n  content: \"\\F110F\";\n}\n\n.mdi2-shape::before {\n  content: \"\\F0831\";\n}\n\n.mdi2-shape-circle-plus::before {\n  content: \"\\F065D\";\n}\n\n.mdi2-shape-outline::before {\n  content: \"\\F0832\";\n}\n\n.mdi2-shape-oval-plus::before {\n  content: \"\\F11FA\";\n}\n\n.mdi2-shape-plus::before {\n  content: \"\\F0495\";\n}\n\n.mdi2-shape-plus-outline::before {\n  content: \"\\F1C4F\";\n}\n\n.mdi2-shape-polygon-plus::before {\n  content: \"\\F065E\";\n}\n\n.mdi2-shape-rectangle-plus::before {\n  content: \"\\F065F\";\n}\n\n.mdi2-shape-square-plus::before {\n  content: \"\\F0660\";\n}\n\n.mdi2-shape-square-rounded-plus::before {\n  content: \"\\F14FA\";\n}\n\n.mdi2-share::before {\n  content: \"\\F0496\";\n}\n\n.mdi2-share-all::before {\n  content: \"\\F11F4\";\n}\n\n.mdi2-share-all-outline::before {\n  content: \"\\F11F5\";\n}\n\n.mdi2-share-circle::before {\n  content: \"\\F11AD\";\n}\n\n.mdi2-share-off::before {\n  content: \"\\F0F23\";\n}\n\n.mdi2-share-off-outline::before {\n  content: \"\\F0F24\";\n}\n\n.mdi2-share-outline::before {\n  content: \"\\F0932\";\n}\n\n.mdi2-share-variant::before {\n  content: \"\\F0497\";\n}\n\n.mdi2-share-variant-outline::before {\n  content: \"\\F1514\";\n}\n\n.mdi2-shark::before {\n  content: \"\\F18BA\";\n}\n\n.mdi2-shark-fin::before {\n  content: \"\\F1673\";\n}\n\n.mdi2-shark-fin-outline::before {\n  content: \"\\F1674\";\n}\n\n.mdi2-shark-off::before {\n  content: \"\\F18BB\";\n}\n\n.mdi2-sheep::before {\n  content: \"\\F0CC6\";\n}\n\n.mdi2-shield::before {\n  content: \"\\F0498\";\n}\n\n.mdi2-shield-account::before {\n  content: \"\\F088F\";\n}\n\n.mdi2-shield-account-outline::before {\n  content: \"\\F0A12\";\n}\n\n.mdi2-shield-account-variant::before {\n  content: \"\\F15A7\";\n}\n\n.mdi2-shield-account-variant-outline::before {\n  content: \"\\F15A8\";\n}\n\n.mdi2-shield-airplane::before {\n  content: \"\\F06BB\";\n}\n\n.mdi2-shield-airplane-outline::before {\n  content: \"\\F0CC7\";\n}\n\n.mdi2-shield-alert::before {\n  content: \"\\F0ECC\";\n}\n\n.mdi2-shield-alert-outline::before {\n  content: \"\\F0ECD\";\n}\n\n.mdi2-shield-bug::before {\n  content: \"\\F13DA\";\n}\n\n.mdi2-shield-bug-outline::before {\n  content: \"\\F13DB\";\n}\n\n.mdi2-shield-car::before {\n  content: \"\\F0F83\";\n}\n\n.mdi2-shield-check::before {\n  content: \"\\F0565\";\n}\n\n.mdi2-shield-check-outline::before {\n  content: \"\\F0CC8\";\n}\n\n.mdi2-shield-cross::before {\n  content: \"\\F0CC9\";\n}\n\n.mdi2-shield-cross-outline::before {\n  content: \"\\F0CCA\";\n}\n\n.mdi2-shield-crown::before {\n  content: \"\\F18BC\";\n}\n\n.mdi2-shield-crown-outline::before {\n  content: \"\\F18BD\";\n}\n\n.mdi2-shield-edit::before {\n  content: \"\\F11A0\";\n}\n\n.mdi2-shield-edit-outline::before {\n  content: \"\\F11A1\";\n}\n\n.mdi2-shield-half::before {\n  content: \"\\F1360\";\n}\n\n.mdi2-shield-half-full::before {\n  content: \"\\F0780\";\n}\n\n.mdi2-shield-home::before {\n  content: \"\\F068A\";\n}\n\n.mdi2-shield-home-outline::before {\n  content: \"\\F0CCB\";\n}\n\n.mdi2-shield-key::before {\n  content: \"\\F0BC4\";\n}\n\n.mdi2-shield-key-outline::before {\n  content: \"\\F0BC5\";\n}\n\n.mdi2-shield-link-variant::before {\n  content: \"\\F0D33\";\n}\n\n.mdi2-shield-link-variant-outline::before {\n  content: \"\\F0D34\";\n}\n\n.mdi2-shield-lock::before {\n  content: \"\\F099D\";\n}\n\n.mdi2-shield-lock-open::before {\n  content: \"\\F199A\";\n}\n\n.mdi2-shield-lock-open-outline::before {\n  content: \"\\F199B\";\n}\n\n.mdi2-shield-lock-outline::before {\n  content: \"\\F0CCC\";\n}\n\n.mdi2-shield-moon::before {\n  content: \"\\F1828\";\n}\n\n.mdi2-shield-moon-outline::before {\n  content: \"\\F1829\";\n}\n\n.mdi2-shield-off::before {\n  content: \"\\F099E\";\n}\n\n.mdi2-shield-off-outline::before {\n  content: \"\\F099C\";\n}\n\n.mdi2-shield-outline::before {\n  content: \"\\F0499\";\n}\n\n.mdi2-shield-plus::before {\n  content: \"\\F0ADA\";\n}\n\n.mdi2-shield-plus-outline::before {\n  content: \"\\F0ADB\";\n}\n\n.mdi2-shield-refresh::before {\n  content: \"\\F00AA\";\n}\n\n.mdi2-shield-refresh-outline::before {\n  content: \"\\F01E0\";\n}\n\n.mdi2-shield-remove::before {\n  content: \"\\F0ADC\";\n}\n\n.mdi2-shield-remove-outline::before {\n  content: \"\\F0ADD\";\n}\n\n.mdi2-shield-search::before {\n  content: \"\\F0D9A\";\n}\n\n.mdi2-shield-star::before {\n  content: \"\\F113B\";\n}\n\n.mdi2-shield-star-outline::before {\n  content: \"\\F113C\";\n}\n\n.mdi2-shield-sun::before {\n  content: \"\\F105D\";\n}\n\n.mdi2-shield-sun-outline::before {\n  content: \"\\F105E\";\n}\n\n.mdi2-shield-sword::before {\n  content: \"\\F18BE\";\n}\n\n.mdi2-shield-sword-outline::before {\n  content: \"\\F18BF\";\n}\n\n.mdi2-shield-sync::before {\n  content: \"\\F11A2\";\n}\n\n.mdi2-shield-sync-outline::before {\n  content: \"\\F11A3\";\n}\n\n.mdi2-shimmer::before {\n  content: \"\\F1545\";\n}\n\n.mdi2-ship-wheel::before {\n  content: \"\\F0833\";\n}\n\n.mdi2-shipping-pallet::before {\n  content: \"\\F184E\";\n}\n\n.mdi2-shoe-ballet::before {\n  content: \"\\F15CA\";\n}\n\n.mdi2-shoe-cleat::before {\n  content: \"\\F15C7\";\n}\n\n.mdi2-shoe-formal::before {\n  content: \"\\F0B47\";\n}\n\n.mdi2-shoe-heel::before {\n  content: \"\\F0B48\";\n}\n\n.mdi2-shoe-print::before {\n  content: \"\\F0DFA\";\n}\n\n.mdi2-shoe-sneaker::before {\n  content: \"\\F15C8\";\n}\n\n.mdi2-shopping::before {\n  content: \"\\F049A\";\n}\n\n.mdi2-shopping-music::before {\n  content: \"\\F049B\";\n}\n\n.mdi2-shopping-outline::before {\n  content: \"\\F11D5\";\n}\n\n.mdi2-shopping-search::before {\n  content: \"\\F0F84\";\n}\n\n.mdi2-shopping-search-outline::before {\n  content: \"\\F1A6F\";\n}\n\n.mdi2-shore::before {\n  content: \"\\F14F9\";\n}\n\n.mdi2-shovel::before {\n  content: \"\\F0710\";\n}\n\n.mdi2-shovel-off::before {\n  content: \"\\F0711\";\n}\n\n.mdi2-shower::before {\n  content: \"\\F09A0\";\n}\n\n.mdi2-shower-head::before {\n  content: \"\\F09A1\";\n}\n\n.mdi2-shredder::before {\n  content: \"\\F049C\";\n}\n\n.mdi2-shuffle::before {\n  content: \"\\F049D\";\n}\n\n.mdi2-shuffle-disabled::before {\n  content: \"\\F049E\";\n}\n\n.mdi2-shuffle-variant::before {\n  content: \"\\F049F\";\n}\n\n.mdi2-shuriken::before {\n  content: \"\\F137F\";\n}\n\n.mdi2-sickle::before {\n  content: \"\\F18C0\";\n}\n\n.mdi2-sigma::before {\n  content: \"\\F04A0\";\n}\n\n.mdi2-sigma-lower::before {\n  content: \"\\F062B\";\n}\n\n.mdi2-sign-caution::before {\n  content: \"\\F04A1\";\n}\n\n.mdi2-sign-direction::before {\n  content: \"\\F0781\";\n}\n\n.mdi2-sign-direction-minus::before {\n  content: \"\\F1000\";\n}\n\n.mdi2-sign-direction-plus::before {\n  content: \"\\F0FDC\";\n}\n\n.mdi2-sign-direction-remove::before {\n  content: \"\\F0FDD\";\n}\n\n.mdi2-sign-language::before {\n  content: \"\\F1B4D\";\n}\n\n.mdi2-sign-language-outline::before {\n  content: \"\\F1B4E\";\n}\n\n.mdi2-sign-pole::before {\n  content: \"\\F14F8\";\n}\n\n.mdi2-sign-real-estate::before {\n  content: \"\\F1118\";\n}\n\n.mdi2-sign-text::before {\n  content: \"\\F0782\";\n}\n\n.mdi2-sign-yield::before {\n  content: \"\\F1BAF\";\n}\n\n.mdi2-signal::before {\n  content: \"\\F04A2\";\n}\n\n.mdi2-signal-2g::before {\n  content: \"\\F0712\";\n}\n\n.mdi2-signal-3g::before {\n  content: \"\\F0713\";\n}\n\n.mdi2-signal-4g::before {\n  content: \"\\F0714\";\n}\n\n.mdi2-signal-5g::before {\n  content: \"\\F0A6F\";\n}\n\n.mdi2-signal-cellular-1::before {\n  content: \"\\F08BC\";\n}\n\n.mdi2-signal-cellular-2::before {\n  content: \"\\F08BD\";\n}\n\n.mdi2-signal-cellular-3::before {\n  content: \"\\F08BE\";\n}\n\n.mdi2-signal-cellular-outline::before {\n  content: \"\\F08BF\";\n}\n\n.mdi2-signal-distance-variant::before {\n  content: \"\\F0E64\";\n}\n\n.mdi2-signal-hspa::before {\n  content: \"\\F0715\";\n}\n\n.mdi2-signal-hspa-plus::before {\n  content: \"\\F0716\";\n}\n\n.mdi2-signal-off::before {\n  content: \"\\F0783\";\n}\n\n.mdi2-signal-variant::before {\n  content: \"\\F060A\";\n}\n\n.mdi2-signature::before {\n  content: \"\\F0DFB\";\n}\n\n.mdi2-signature-freehand::before {\n  content: \"\\F0DFC\";\n}\n\n.mdi2-signature-image::before {\n  content: \"\\F0DFD\";\n}\n\n.mdi2-signature-text::before {\n  content: \"\\F0DFE\";\n}\n\n.mdi2-silo::before {\n  content: \"\\F1B9F\";\n}\n\n.mdi2-silo-outline::before {\n  content: \"\\F0B49\";\n}\n\n.mdi2-silverware::before {\n  content: \"\\F04A3\";\n}\n\n.mdi2-silverware-clean::before {\n  content: \"\\F0FDE\";\n}\n\n.mdi2-silverware-fork::before {\n  content: \"\\F04A4\";\n}\n\n.mdi2-silverware-fork-knife::before {\n  content: \"\\F0A70\";\n}\n\n.mdi2-silverware-spoon::before {\n  content: \"\\F04A5\";\n}\n\n.mdi2-silverware-variant::before {\n  content: \"\\F04A6\";\n}\n\n.mdi2-sim::before {\n  content: \"\\F04A7\";\n}\n\n.mdi2-sim-alert::before {\n  content: \"\\F04A8\";\n}\n\n.mdi2-sim-alert-outline::before {\n  content: \"\\F15D3\";\n}\n\n.mdi2-sim-off::before {\n  content: \"\\F04A9\";\n}\n\n.mdi2-sim-off-outline::before {\n  content: \"\\F15D4\";\n}\n\n.mdi2-sim-outline::before {\n  content: \"\\F15D5\";\n}\n\n.mdi2-simple-icons::before {\n  content: \"\\F131D\";\n}\n\n.mdi2-sina-weibo::before {\n  content: \"\\F0ADF\";\n}\n\n.mdi2-sine-wave::before {\n  content: \"\\F095B\";\n}\n\n.mdi2-sitemap::before {\n  content: \"\\F04AA\";\n}\n\n.mdi2-sitemap-outline::before {\n  content: \"\\F199C\";\n}\n\n.mdi2-size-l::before {\n  content: \"\\F13A6\";\n}\n\n.mdi2-size-m::before {\n  content: \"\\F13A5\";\n}\n\n.mdi2-size-s::before {\n  content: \"\\F13A4\";\n}\n\n.mdi2-size-xl::before {\n  content: \"\\F13A7\";\n}\n\n.mdi2-size-xs::before {\n  content: \"\\F13A3\";\n}\n\n.mdi2-size-xxl::before {\n  content: \"\\F13A8\";\n}\n\n.mdi2-size-xxs::before {\n  content: \"\\F13A2\";\n}\n\n.mdi2-size-xxxl::before {\n  content: \"\\F13A9\";\n}\n\n.mdi2-skate::before {\n  content: \"\\F0D35\";\n}\n\n.mdi2-skate-off::before {\n  content: \"\\F0699\";\n}\n\n.mdi2-skateboard::before {\n  content: \"\\F14C2\";\n}\n\n.mdi2-skateboarding::before {\n  content: \"\\F0501\";\n}\n\n.mdi2-skew-less::before {\n  content: \"\\F0D36\";\n}\n\n.mdi2-skew-more::before {\n  content: \"\\F0D37\";\n}\n\n.mdi2-ski::before {\n  content: \"\\F1304\";\n}\n\n.mdi2-ski-cross-country::before {\n  content: \"\\F1305\";\n}\n\n.mdi2-ski-water::before {\n  content: \"\\F1306\";\n}\n\n.mdi2-skip-backward::before {\n  content: \"\\F04AB\";\n}\n\n.mdi2-skip-backward-outline::before {\n  content: \"\\F0F25\";\n}\n\n.mdi2-skip-forward::before {\n  content: \"\\F04AC\";\n}\n\n.mdi2-skip-forward-outline::before {\n  content: \"\\F0F26\";\n}\n\n.mdi2-skip-next::before {\n  content: \"\\F04AD\";\n}\n\n.mdi2-skip-next-circle::before {\n  content: \"\\F0661\";\n}\n\n.mdi2-skip-next-circle-outline::before {\n  content: \"\\F0662\";\n}\n\n.mdi2-skip-next-outline::before {\n  content: \"\\F0F27\";\n}\n\n.mdi2-skip-previous::before {\n  content: \"\\F04AE\";\n}\n\n.mdi2-skip-previous-circle::before {\n  content: \"\\F0663\";\n}\n\n.mdi2-skip-previous-circle-outline::before {\n  content: \"\\F0664\";\n}\n\n.mdi2-skip-previous-outline::before {\n  content: \"\\F0F28\";\n}\n\n.mdi2-skull::before {\n  content: \"\\F068C\";\n}\n\n.mdi2-skull-crossbones::before {\n  content: \"\\F0BC6\";\n}\n\n.mdi2-skull-crossbones-outline::before {\n  content: \"\\F0BC7\";\n}\n\n.mdi2-skull-outline::before {\n  content: \"\\F0BC8\";\n}\n\n.mdi2-skull-scan::before {\n  content: \"\\F14C7\";\n}\n\n.mdi2-skull-scan-outline::before {\n  content: \"\\F14C8\";\n}\n\n.mdi2-skype::before {\n  content: \"\\F04AF\";\n}\n\n.mdi2-skype-business::before {\n  content: \"\\F04B0\";\n}\n\n.mdi2-slack::before {\n  content: \"\\F04B1\";\n}\n\n.mdi2-slash-forward::before {\n  content: \"\\F0FDF\";\n}\n\n.mdi2-slash-forward-box::before {\n  content: \"\\F0FE0\";\n}\n\n.mdi2-sledding::before {\n  content: \"\\F041B\";\n}\n\n.mdi2-sleep::before {\n  content: \"\\F04B2\";\n}\n\n.mdi2-sleep-off::before {\n  content: \"\\F04B3\";\n}\n\n.mdi2-slide::before {\n  content: \"\\F15A5\";\n}\n\n.mdi2-slope-downhill::before {\n  content: \"\\F0DFF\";\n}\n\n.mdi2-slope-uphill::before {\n  content: \"\\F0E00\";\n}\n\n.mdi2-slot-machine::before {\n  content: \"\\F1114\";\n}\n\n.mdi2-slot-machine-outline::before {\n  content: \"\\F1115\";\n}\n\n.mdi2-smart-card::before {\n  content: \"\\F10BD\";\n}\n\n.mdi2-smart-card-off::before {\n  content: \"\\F18F7\";\n}\n\n.mdi2-smart-card-off-outline::before {\n  content: \"\\F18F8\";\n}\n\n.mdi2-smart-card-outline::before {\n  content: \"\\F10BE\";\n}\n\n.mdi2-smart-card-reader::before {\n  content: \"\\F10BF\";\n}\n\n.mdi2-smart-card-reader-outline::before {\n  content: \"\\F10C0\";\n}\n\n.mdi2-smog::before {\n  content: \"\\F0A71\";\n}\n\n.mdi2-smoke::before {\n  content: \"\\F1799\";\n}\n\n.mdi2-smoke-detector::before {\n  content: \"\\F0392\";\n}\n\n.mdi2-smoke-detector-alert::before {\n  content: \"\\F192E\";\n}\n\n.mdi2-smoke-detector-alert-outline::before {\n  content: \"\\F192F\";\n}\n\n.mdi2-smoke-detector-off::before {\n  content: \"\\F1809\";\n}\n\n.mdi2-smoke-detector-off-outline::before {\n  content: \"\\F180A\";\n}\n\n.mdi2-smoke-detector-outline::before {\n  content: \"\\F1808\";\n}\n\n.mdi2-smoke-detector-variant::before {\n  content: \"\\F180B\";\n}\n\n.mdi2-smoke-detector-variant-alert::before {\n  content: \"\\F1930\";\n}\n\n.mdi2-smoke-detector-variant-off::before {\n  content: \"\\F180C\";\n}\n\n.mdi2-smoking::before {\n  content: \"\\F04B4\";\n}\n\n.mdi2-smoking-off::before {\n  content: \"\\F04B5\";\n}\n\n.mdi2-smoking-pipe::before {\n  content: \"\\F140D\";\n}\n\n.mdi2-smoking-pipe-off::before {\n  content: \"\\F1428\";\n}\n\n.mdi2-snail::before {\n  content: \"\\F1677\";\n}\n\n.mdi2-snake::before {\n  content: \"\\F150E\";\n}\n\n.mdi2-snapchat::before {\n  content: \"\\F04B6\";\n}\n\n.mdi2-snowboard::before {\n  content: \"\\F1307\";\n}\n\n.mdi2-snowflake::before {\n  content: \"\\F0717\";\n}\n\n.mdi2-snowflake-alert::before {\n  content: \"\\F0F29\";\n}\n\n.mdi2-snowflake-check::before {\n  content: \"\\F1A70\";\n}\n\n.mdi2-snowflake-melt::before {\n  content: \"\\F12CB\";\n}\n\n.mdi2-snowflake-off::before {\n  content: \"\\F14E3\";\n}\n\n.mdi2-snowflake-thermometer::before {\n  content: \"\\F1A71\";\n}\n\n.mdi2-snowflake-variant::before {\n  content: \"\\F0F2A\";\n}\n\n.mdi2-snowman::before {\n  content: \"\\F04B7\";\n}\n\n.mdi2-snowmobile::before {\n  content: \"\\F06DD\";\n}\n\n.mdi2-snowshoeing::before {\n  content: \"\\F1A72\";\n}\n\n.mdi2-soccer::before {\n  content: \"\\F04B8\";\n}\n\n.mdi2-soccer-field::before {\n  content: \"\\F0834\";\n}\n\n.mdi2-social-distance-2-meters::before {\n  content: \"\\F1579\";\n}\n\n.mdi2-social-distance-6-feet::before {\n  content: \"\\F157A\";\n}\n\n.mdi2-sofa::before {\n  content: \"\\F04B9\";\n}\n\n.mdi2-sofa-outline::before {\n  content: \"\\F156D\";\n}\n\n.mdi2-sofa-single::before {\n  content: \"\\F156E\";\n}\n\n.mdi2-sofa-single-outline::before {\n  content: \"\\F156F\";\n}\n\n.mdi2-solar-panel::before {\n  content: \"\\F0D9B\";\n}\n\n.mdi2-solar-panel-large::before {\n  content: \"\\F0D9C\";\n}\n\n.mdi2-solar-power::before {\n  content: \"\\F0A72\";\n}\n\n.mdi2-solar-power-variant::before {\n  content: \"\\F1A73\";\n}\n\n.mdi2-solar-power-variant-outline::before {\n  content: \"\\F1A74\";\n}\n\n.mdi2-soldering-iron::before {\n  content: \"\\F1092\";\n}\n\n.mdi2-solid::before {\n  content: \"\\F068D\";\n}\n\n.mdi2-sony-playstation::before {\n  content: \"\\F0414\";\n}\n\n.mdi2-sort::before {\n  content: \"\\F04BA\";\n}\n\n.mdi2-sort-alphabetical-ascending::before {\n  content: \"\\F05BD\";\n}\n\n.mdi2-sort-alphabetical-ascending-variant::before {\n  content: \"\\F1148\";\n}\n\n.mdi2-sort-alphabetical-descending::before {\n  content: \"\\F05BF\";\n}\n\n.mdi2-sort-alphabetical-descending-variant::before {\n  content: \"\\F1149\";\n}\n\n.mdi2-sort-alphabetical-variant::before {\n  content: \"\\F04BB\";\n}\n\n.mdi2-sort-ascending::before {\n  content: \"\\F04BC\";\n}\n\n.mdi2-sort-bool-ascending::before {\n  content: \"\\F1385\";\n}\n\n.mdi2-sort-bool-ascending-variant::before {\n  content: \"\\F1386\";\n}\n\n.mdi2-sort-bool-descending::before {\n  content: \"\\F1387\";\n}\n\n.mdi2-sort-bool-descending-variant::before {\n  content: \"\\F1388\";\n}\n\n.mdi2-sort-calendar-ascending::before {\n  content: \"\\F1547\";\n}\n\n.mdi2-sort-calendar-descending::before {\n  content: \"\\F1548\";\n}\n\n.mdi2-sort-clock-ascending::before {\n  content: \"\\F1549\";\n}\n\n.mdi2-sort-clock-ascending-outline::before {\n  content: \"\\F154A\";\n}\n\n.mdi2-sort-clock-descending::before {\n  content: \"\\F154B\";\n}\n\n.mdi2-sort-clock-descending-outline::before {\n  content: \"\\F154C\";\n}\n\n.mdi2-sort-descending::before {\n  content: \"\\F04BD\";\n}\n\n.mdi2-sort-numeric-ascending::before {\n  content: \"\\F1389\";\n}\n\n.mdi2-sort-numeric-ascending-variant::before {\n  content: \"\\F090D\";\n}\n\n.mdi2-sort-numeric-descending::before {\n  content: \"\\F138A\";\n}\n\n.mdi2-sort-numeric-descending-variant::before {\n  content: \"\\F0AD2\";\n}\n\n.mdi2-sort-numeric-variant::before {\n  content: \"\\F04BE\";\n}\n\n.mdi2-sort-reverse-variant::before {\n  content: \"\\F033C\";\n}\n\n.mdi2-sort-variant::before {\n  content: \"\\F04BF\";\n}\n\n.mdi2-sort-variant-lock::before {\n  content: \"\\F0CCD\";\n}\n\n.mdi2-sort-variant-lock-open::before {\n  content: \"\\F0CCE\";\n}\n\n.mdi2-sort-variant-off::before {\n  content: \"\\F1ABB\";\n}\n\n.mdi2-sort-variant-remove::before {\n  content: \"\\F1147\";\n}\n\n.mdi2-soundbar::before {\n  content: \"\\F17DB\";\n}\n\n.mdi2-soundcloud::before {\n  content: \"\\F04C0\";\n}\n\n.mdi2-source-branch::before {\n  content: \"\\F062C\";\n}\n\n.mdi2-source-branch-check::before {\n  content: \"\\F14CF\";\n}\n\n.mdi2-source-branch-minus::before {\n  content: \"\\F14CB\";\n}\n\n.mdi2-source-branch-plus::before {\n  content: \"\\F14CA\";\n}\n\n.mdi2-source-branch-refresh::before {\n  content: \"\\F14CD\";\n}\n\n.mdi2-source-branch-remove::before {\n  content: \"\\F14CC\";\n}\n\n.mdi2-source-branch-sync::before {\n  content: \"\\F14CE\";\n}\n\n.mdi2-source-commit::before {\n  content: \"\\F0718\";\n}\n\n.mdi2-source-commit-end::before {\n  content: \"\\F0719\";\n}\n\n.mdi2-source-commit-end-local::before {\n  content: \"\\F071A\";\n}\n\n.mdi2-source-commit-local::before {\n  content: \"\\F071B\";\n}\n\n.mdi2-source-commit-next-local::before {\n  content: \"\\F071C\";\n}\n\n.mdi2-source-commit-start::before {\n  content: \"\\F071D\";\n}\n\n.mdi2-source-commit-start-next-local::before {\n  content: \"\\F071E\";\n}\n\n.mdi2-source-fork::before {\n  content: \"\\F04C1\";\n}\n\n.mdi2-source-merge::before {\n  content: \"\\F062D\";\n}\n\n.mdi2-source-pull::before {\n  content: \"\\F04C2\";\n}\n\n.mdi2-source-repository::before {\n  content: \"\\F0CCF\";\n}\n\n.mdi2-source-repository-multiple::before {\n  content: \"\\F0CD0\";\n}\n\n.mdi2-soy-sauce::before {\n  content: \"\\F07EE\";\n}\n\n.mdi2-soy-sauce-off::before {\n  content: \"\\F13FC\";\n}\n\n.mdi2-spa::before {\n  content: \"\\F0CD1\";\n}\n\n.mdi2-spa-outline::before {\n  content: \"\\F0CD2\";\n}\n\n.mdi2-space-invaders::before {\n  content: \"\\F0BC9\";\n}\n\n.mdi2-space-station::before {\n  content: \"\\F1383\";\n}\n\n.mdi2-spade::before {\n  content: \"\\F0E65\";\n}\n\n.mdi2-speaker::before {\n  content: \"\\F04C3\";\n}\n\n.mdi2-speaker-bluetooth::before {\n  content: \"\\F09A2\";\n}\n\n.mdi2-speaker-message::before {\n  content: \"\\F1B11\";\n}\n\n.mdi2-speaker-multiple::before {\n  content: \"\\F0D38\";\n}\n\n.mdi2-speaker-off::before {\n  content: \"\\F04C4\";\n}\n\n.mdi2-speaker-pause::before {\n  content: \"\\F1B73\";\n}\n\n.mdi2-speaker-play::before {\n  content: \"\\F1B72\";\n}\n\n.mdi2-speaker-stop::before {\n  content: \"\\F1B74\";\n}\n\n.mdi2-speaker-wireless::before {\n  content: \"\\F071F\";\n}\n\n.mdi2-spear::before {\n  content: \"\\F1845\";\n}\n\n.mdi2-speedometer::before {\n  content: \"\\F04C5\";\n}\n\n.mdi2-speedometer-medium::before {\n  content: \"\\F0F85\";\n}\n\n.mdi2-speedometer-slow::before {\n  content: \"\\F0F86\";\n}\n\n.mdi2-spellcheck::before {\n  content: \"\\F04C6\";\n}\n\n.mdi2-sphere::before {\n  content: \"\\F1954\";\n}\n\n.mdi2-sphere-off::before {\n  content: \"\\F1955\";\n}\n\n.mdi2-spider::before {\n  content: \"\\F11EA\";\n}\n\n.mdi2-spider-outline::before {\n  content: \"\\F1C75\";\n}\n\n.mdi2-spider-thread::before {\n  content: \"\\F11EB\";\n}\n\n.mdi2-spider-web::before {\n  content: \"\\F0BCA\";\n}\n\n.mdi2-spirit-level::before {\n  content: \"\\F14F1\";\n}\n\n.mdi2-spoon-sugar::before {\n  content: \"\\F1429\";\n}\n\n.mdi2-spotify::before {\n  content: \"\\F04C7\";\n}\n\n.mdi2-spotlight::before {\n  content: \"\\F04C8\";\n}\n\n.mdi2-spotlight-beam::before {\n  content: \"\\F04C9\";\n}\n\n.mdi2-spray::before {\n  content: \"\\F0665\";\n}\n\n.mdi2-spray-bottle::before {\n  content: \"\\F0AE0\";\n}\n\n.mdi2-sprinkler::before {\n  content: \"\\F105F\";\n}\n\n.mdi2-sprinkler-fire::before {\n  content: \"\\F199D\";\n}\n\n.mdi2-sprinkler-variant::before {\n  content: \"\\F1060\";\n}\n\n.mdi2-sprout::before {\n  content: \"\\F0E66\";\n}\n\n.mdi2-sprout-outline::before {\n  content: \"\\F0E67\";\n}\n\n.mdi2-square::before {\n  content: \"\\F0764\";\n}\n\n.mdi2-square-circle::before {\n  content: \"\\F1500\";\n}\n\n.mdi2-square-circle-outline::before {\n  content: \"\\F1C50\";\n}\n\n.mdi2-square-edit-outline::before {\n  content: \"\\F090C\";\n}\n\n.mdi2-square-medium::before {\n  content: \"\\F0A13\";\n}\n\n.mdi2-square-medium-outline::before {\n  content: \"\\F0A14\";\n}\n\n.mdi2-square-off::before {\n  content: \"\\F12EE\";\n}\n\n.mdi2-square-off-outline::before {\n  content: \"\\F12EF\";\n}\n\n.mdi2-square-opacity::before {\n  content: \"\\F1854\";\n}\n\n.mdi2-square-outline::before {\n  content: \"\\F0763\";\n}\n\n.mdi2-square-root::before {\n  content: \"\\F0784\";\n}\n\n.mdi2-square-root-box::before {\n  content: \"\\F09A3\";\n}\n\n.mdi2-square-rounded::before {\n  content: \"\\F14FB\";\n}\n\n.mdi2-square-rounded-badge::before {\n  content: \"\\F1A07\";\n}\n\n.mdi2-square-rounded-badge-outline::before {\n  content: \"\\F1A08\";\n}\n\n.mdi2-square-rounded-outline::before {\n  content: \"\\F14FC\";\n}\n\n.mdi2-square-small::before {\n  content: \"\\F0A15\";\n}\n\n.mdi2-square-wave::before {\n  content: \"\\F147B\";\n}\n\n.mdi2-squeegee::before {\n  content: \"\\F0AE1\";\n}\n\n.mdi2-ssh::before {\n  content: \"\\F08C0\";\n}\n\n.mdi2-stack-exchange::before {\n  content: \"\\F060B\";\n}\n\n.mdi2-stack-overflow::before {\n  content: \"\\F04CC\";\n}\n\n.mdi2-stackpath::before {\n  content: \"\\F0359\";\n}\n\n.mdi2-stadium::before {\n  content: \"\\F0FF9\";\n}\n\n.mdi2-stadium-outline::before {\n  content: \"\\F1B03\";\n}\n\n.mdi2-stadium-variant::before {\n  content: \"\\F0720\";\n}\n\n.mdi2-stairs::before {\n  content: \"\\F04CD\";\n}\n\n.mdi2-stairs-box::before {\n  content: \"\\F139E\";\n}\n\n.mdi2-stairs-down::before {\n  content: \"\\F12BE\";\n}\n\n.mdi2-stairs-up::before {\n  content: \"\\F12BD\";\n}\n\n.mdi2-stamper::before {\n  content: \"\\F0D39\";\n}\n\n.mdi2-standard-definition::before {\n  content: \"\\F07EF\";\n}\n\n.mdi2-star::before {\n  content: \"\\F04CE\";\n}\n\n.mdi2-star-box::before {\n  content: \"\\F0A73\";\n}\n\n.mdi2-star-box-multiple::before {\n  content: \"\\F1286\";\n}\n\n.mdi2-star-box-multiple-outline::before {\n  content: \"\\F1287\";\n}\n\n.mdi2-star-box-outline::before {\n  content: \"\\F0A74\";\n}\n\n.mdi2-star-check::before {\n  content: \"\\F1566\";\n}\n\n.mdi2-star-check-outline::before {\n  content: \"\\F156A\";\n}\n\n.mdi2-star-circle::before {\n  content: \"\\F04CF\";\n}\n\n.mdi2-star-circle-outline::before {\n  content: \"\\F09A4\";\n}\n\n.mdi2-star-cog::before {\n  content: \"\\F1668\";\n}\n\n.mdi2-star-cog-outline::before {\n  content: \"\\F1669\";\n}\n\n.mdi2-star-crescent::before {\n  content: \"\\F0979\";\n}\n\n.mdi2-star-david::before {\n  content: \"\\F097A\";\n}\n\n.mdi2-star-face::before {\n  content: \"\\F09A5\";\n}\n\n.mdi2-star-four-points::before {\n  content: \"\\F0AE2\";\n}\n\n.mdi2-star-four-points-box::before {\n  content: \"\\F1C51\";\n}\n\n.mdi2-star-four-points-box-outline::before {\n  content: \"\\F1C52\";\n}\n\n.mdi2-star-four-points-circle::before {\n  content: \"\\F1C53\";\n}\n\n.mdi2-star-four-points-circle-outline::before {\n  content: \"\\F1C54\";\n}\n\n.mdi2-star-four-points-outline::before {\n  content: \"\\F0AE3\";\n}\n\n.mdi2-star-four-points-small::before {\n  content: \"\\F1C55\";\n}\n\n.mdi2-star-half::before {\n  content: \"\\F0246\";\n}\n\n.mdi2-star-half-full::before {\n  content: \"\\F04D0\";\n}\n\n.mdi2-star-minus::before {\n  content: \"\\F1564\";\n}\n\n.mdi2-star-minus-outline::before {\n  content: \"\\F1568\";\n}\n\n.mdi2-star-off::before {\n  content: \"\\F04D1\";\n}\n\n.mdi2-star-off-outline::before {\n  content: \"\\F155B\";\n}\n\n.mdi2-star-outline::before {\n  content: \"\\F04D2\";\n}\n\n.mdi2-star-plus::before {\n  content: \"\\F1563\";\n}\n\n.mdi2-star-plus-outline::before {\n  content: \"\\F1567\";\n}\n\n.mdi2-star-remove::before {\n  content: \"\\F1565\";\n}\n\n.mdi2-star-remove-outline::before {\n  content: \"\\F1569\";\n}\n\n.mdi2-star-settings::before {\n  content: \"\\F166A\";\n}\n\n.mdi2-star-settings-outline::before {\n  content: \"\\F166B\";\n}\n\n.mdi2-star-shooting::before {\n  content: \"\\F1741\";\n}\n\n.mdi2-star-shooting-outline::before {\n  content: \"\\F1742\";\n}\n\n.mdi2-star-three-points::before {\n  content: \"\\F0AE4\";\n}\n\n.mdi2-star-three-points-outline::before {\n  content: \"\\F0AE5\";\n}\n\n.mdi2-state-machine::before {\n  content: \"\\F11EF\";\n}\n\n.mdi2-steam::before {\n  content: \"\\F04D3\";\n}\n\n.mdi2-steering::before {\n  content: \"\\F04D4\";\n}\n\n.mdi2-steering-off::before {\n  content: \"\\F090E\";\n}\n\n.mdi2-step-backward::before {\n  content: \"\\F04D5\";\n}\n\n.mdi2-step-backward-2::before {\n  content: \"\\F04D6\";\n}\n\n.mdi2-step-forward::before {\n  content: \"\\F04D7\";\n}\n\n.mdi2-step-forward-2::before {\n  content: \"\\F04D8\";\n}\n\n.mdi2-stethoscope::before {\n  content: \"\\F04D9\";\n}\n\n.mdi2-sticker::before {\n  content: \"\\F1364\";\n}\n\n.mdi2-sticker-alert::before {\n  content: \"\\F1365\";\n}\n\n.mdi2-sticker-alert-outline::before {\n  content: \"\\F1366\";\n}\n\n.mdi2-sticker-check::before {\n  content: \"\\F1367\";\n}\n\n.mdi2-sticker-check-outline::before {\n  content: \"\\F1368\";\n}\n\n.mdi2-sticker-circle-outline::before {\n  content: \"\\F05D0\";\n}\n\n.mdi2-sticker-emoji::before {\n  content: \"\\F0785\";\n}\n\n.mdi2-sticker-minus::before {\n  content: \"\\F1369\";\n}\n\n.mdi2-sticker-minus-outline::before {\n  content: \"\\F136A\";\n}\n\n.mdi2-sticker-outline::before {\n  content: \"\\F136B\";\n}\n\n.mdi2-sticker-plus::before {\n  content: \"\\F136C\";\n}\n\n.mdi2-sticker-plus-outline::before {\n  content: \"\\F136D\";\n}\n\n.mdi2-sticker-remove::before {\n  content: \"\\F136E\";\n}\n\n.mdi2-sticker-remove-outline::before {\n  content: \"\\F136F\";\n}\n\n.mdi2-sticker-text::before {\n  content: \"\\F178E\";\n}\n\n.mdi2-sticker-text-outline::before {\n  content: \"\\F178F\";\n}\n\n.mdi2-stocking::before {\n  content: \"\\F04DA\";\n}\n\n.mdi2-stomach::before {\n  content: \"\\F1093\";\n}\n\n.mdi2-stool::before {\n  content: \"\\F195D\";\n}\n\n.mdi2-stool-outline::before {\n  content: \"\\F195E\";\n}\n\n.mdi2-stop::before {\n  content: \"\\F04DB\";\n}\n\n.mdi2-stop-circle::before {\n  content: \"\\F0666\";\n}\n\n.mdi2-stop-circle-outline::before {\n  content: \"\\F0667\";\n}\n\n.mdi2-storage-tank::before {\n  content: \"\\F1A75\";\n}\n\n.mdi2-storage-tank-outline::before {\n  content: \"\\F1A76\";\n}\n\n.mdi2-store::before {\n  content: \"\\F04DC\";\n}\n\n.mdi2-store-24-hour::before {\n  content: \"\\F04DD\";\n}\n\n.mdi2-store-alert::before {\n  content: \"\\F18C1\";\n}\n\n.mdi2-store-alert-outline::before {\n  content: \"\\F18C2\";\n}\n\n.mdi2-store-check::before {\n  content: \"\\F18C3\";\n}\n\n.mdi2-store-check-outline::before {\n  content: \"\\F18C4\";\n}\n\n.mdi2-store-clock::before {\n  content: \"\\F18C5\";\n}\n\n.mdi2-store-clock-outline::before {\n  content: \"\\F18C6\";\n}\n\n.mdi2-store-cog::before {\n  content: \"\\F18C7\";\n}\n\n.mdi2-store-cog-outline::before {\n  content: \"\\F18C8\";\n}\n\n.mdi2-store-edit::before {\n  content: \"\\F18C9\";\n}\n\n.mdi2-store-edit-outline::before {\n  content: \"\\F18CA\";\n}\n\n.mdi2-store-marker::before {\n  content: \"\\F18CB\";\n}\n\n.mdi2-store-marker-outline::before {\n  content: \"\\F18CC\";\n}\n\n.mdi2-store-minus::before {\n  content: \"\\F165E\";\n}\n\n.mdi2-store-minus-outline::before {\n  content: \"\\F18CD\";\n}\n\n.mdi2-store-off::before {\n  content: \"\\F18CE\";\n}\n\n.mdi2-store-off-outline::before {\n  content: \"\\F18CF\";\n}\n\n.mdi2-store-outline::before {\n  content: \"\\F1361\";\n}\n\n.mdi2-store-plus::before {\n  content: \"\\F165F\";\n}\n\n.mdi2-store-plus-outline::before {\n  content: \"\\F18D0\";\n}\n\n.mdi2-store-remove::before {\n  content: \"\\F1660\";\n}\n\n.mdi2-store-remove-outline::before {\n  content: \"\\F18D1\";\n}\n\n.mdi2-store-search::before {\n  content: \"\\F18D2\";\n}\n\n.mdi2-store-search-outline::before {\n  content: \"\\F18D3\";\n}\n\n.mdi2-store-settings::before {\n  content: \"\\F18D4\";\n}\n\n.mdi2-store-settings-outline::before {\n  content: \"\\F18D5\";\n}\n\n.mdi2-storefront::before {\n  content: \"\\F07C7\";\n}\n\n.mdi2-storefront-check::before {\n  content: \"\\F1B7D\";\n}\n\n.mdi2-storefront-check-outline::before {\n  content: \"\\F1B7E\";\n}\n\n.mdi2-storefront-edit::before {\n  content: \"\\F1B7F\";\n}\n\n.mdi2-storefront-edit-outline::before {\n  content: \"\\F1B80\";\n}\n\n.mdi2-storefront-minus::before {\n  content: \"\\F1B83\";\n}\n\n.mdi2-storefront-minus-outline::before {\n  content: \"\\F1B84\";\n}\n\n.mdi2-storefront-outline::before {\n  content: \"\\F10C1\";\n}\n\n.mdi2-storefront-plus::before {\n  content: \"\\F1B81\";\n}\n\n.mdi2-storefront-plus-outline::before {\n  content: \"\\F1B82\";\n}\n\n.mdi2-storefront-remove::before {\n  content: \"\\F1B85\";\n}\n\n.mdi2-storefront-remove-outline::before {\n  content: \"\\F1B86\";\n}\n\n.mdi2-stove::before {\n  content: \"\\F04DE\";\n}\n\n.mdi2-strategy::before {\n  content: \"\\F11D6\";\n}\n\n.mdi2-stretch-to-page::before {\n  content: \"\\F0F2B\";\n}\n\n.mdi2-stretch-to-page-outline::before {\n  content: \"\\F0F2C\";\n}\n\n.mdi2-string-lights::before {\n  content: \"\\F12BA\";\n}\n\n.mdi2-string-lights-off::before {\n  content: \"\\F12BB\";\n}\n\n.mdi2-subdirectory-arrow-left::before {\n  content: \"\\F060C\";\n}\n\n.mdi2-subdirectory-arrow-right::before {\n  content: \"\\F060D\";\n}\n\n.mdi2-submarine::before {\n  content: \"\\F156C\";\n}\n\n.mdi2-subtitles::before {\n  content: \"\\F0A16\";\n}\n\n.mdi2-subtitles-outline::before {\n  content: \"\\F0A17\";\n}\n\n.mdi2-subway::before {\n  content: \"\\F06AC\";\n}\n\n.mdi2-subway-alert-variant::before {\n  content: \"\\F0D9D\";\n}\n\n.mdi2-subway-variant::before {\n  content: \"\\F04DF\";\n}\n\n.mdi2-summit::before {\n  content: \"\\F0786\";\n}\n\n.mdi2-sun-angle::before {\n  content: \"\\F1B27\";\n}\n\n.mdi2-sun-angle-outline::before {\n  content: \"\\F1B28\";\n}\n\n.mdi2-sun-clock::before {\n  content: \"\\F1A77\";\n}\n\n.mdi2-sun-clock-outline::before {\n  content: \"\\F1A78\";\n}\n\n.mdi2-sun-compass::before {\n  content: \"\\F19A5\";\n}\n\n.mdi2-sun-snowflake::before {\n  content: \"\\F1796\";\n}\n\n.mdi2-sun-snowflake-variant::before {\n  content: \"\\F1A79\";\n}\n\n.mdi2-sun-thermometer::before {\n  content: \"\\F18D6\";\n}\n\n.mdi2-sun-thermometer-outline::before {\n  content: \"\\F18D7\";\n}\n\n.mdi2-sun-wireless::before {\n  content: \"\\F17FE\";\n}\n\n.mdi2-sun-wireless-outline::before {\n  content: \"\\F17FF\";\n}\n\n.mdi2-sunglasses::before {\n  content: \"\\F04E0\";\n}\n\n.mdi2-surfing::before {\n  content: \"\\F1746\";\n}\n\n.mdi2-surround-sound::before {\n  content: \"\\F05C5\";\n}\n\n.mdi2-surround-sound-2-0::before {\n  content: \"\\F07F0\";\n}\n\n.mdi2-surround-sound-2-1::before {\n  content: \"\\F1729\";\n}\n\n.mdi2-surround-sound-3-1::before {\n  content: \"\\F07F1\";\n}\n\n.mdi2-surround-sound-5-1::before {\n  content: \"\\F07F2\";\n}\n\n.mdi2-surround-sound-5-1-2::before {\n  content: \"\\F172A\";\n}\n\n.mdi2-surround-sound-7-1::before {\n  content: \"\\F07F3\";\n}\n\n.mdi2-svg::before {\n  content: \"\\F0721\";\n}\n\n.mdi2-swap-horizontal::before {\n  content: \"\\F04E1\";\n}\n\n.mdi2-swap-horizontal-bold::before {\n  content: \"\\F0BCD\";\n}\n\n.mdi2-swap-horizontal-circle::before {\n  content: \"\\F0FE1\";\n}\n\n.mdi2-swap-horizontal-circle-outline::before {\n  content: \"\\F0FE2\";\n}\n\n.mdi2-swap-horizontal-hidden::before {\n  content: \"\\F1D0E\";\n}\n\n.mdi2-swap-horizontal-variant::before {\n  content: \"\\F08C1\";\n}\n\n.mdi2-swap-vertical::before {\n  content: \"\\F04E2\";\n}\n\n.mdi2-swap-vertical-bold::before {\n  content: \"\\F0BCE\";\n}\n\n.mdi2-swap-vertical-circle::before {\n  content: \"\\F0FE3\";\n}\n\n.mdi2-swap-vertical-circle-outline::before {\n  content: \"\\F0FE4\";\n}\n\n.mdi2-swap-vertical-variant::before {\n  content: \"\\F08C2\";\n}\n\n.mdi2-swim::before {\n  content: \"\\F04E3\";\n}\n\n.mdi2-switch::before {\n  content: \"\\F04E4\";\n}\n\n.mdi2-sword::before {\n  content: \"\\F04E5\";\n}\n\n.mdi2-sword-cross::before {\n  content: \"\\F0787\";\n}\n\n.mdi2-syllabary-hangul::before {\n  content: \"\\F1333\";\n}\n\n.mdi2-syllabary-hiragana::before {\n  content: \"\\F1334\";\n}\n\n.mdi2-syllabary-katakana::before {\n  content: \"\\F1335\";\n}\n\n.mdi2-syllabary-katakana-halfwidth::before {\n  content: \"\\F1336\";\n}\n\n.mdi2-symbol::before {\n  content: \"\\F1501\";\n}\n\n.mdi2-symfony::before {\n  content: \"\\F0AE6\";\n}\n\n.mdi2-synagogue::before {\n  content: \"\\F1B04\";\n}\n\n.mdi2-synagogue-outline::before {\n  content: \"\\F1B05\";\n}\n\n.mdi2-sync::before {\n  content: \"\\F04E6\";\n}\n\n.mdi2-sync-alert::before {\n  content: \"\\F04E7\";\n}\n\n.mdi2-sync-circle::before {\n  content: \"\\F1378\";\n}\n\n.mdi2-sync-off::before {\n  content: \"\\F04E8\";\n}\n\n.mdi2-tab::before {\n  content: \"\\F04E9\";\n}\n\n.mdi2-tab-minus::before {\n  content: \"\\F0B4B\";\n}\n\n.mdi2-tab-plus::before {\n  content: \"\\F075C\";\n}\n\n.mdi2-tab-remove::before {\n  content: \"\\F0B4C\";\n}\n\n.mdi2-tab-search::before {\n  content: \"\\F199E\";\n}\n\n.mdi2-tab-unselected::before {\n  content: \"\\F04EA\";\n}\n\n.mdi2-table::before {\n  content: \"\\F04EB\";\n}\n\n.mdi2-table-account::before {\n  content: \"\\F13B9\";\n}\n\n.mdi2-table-alert::before {\n  content: \"\\F13BA\";\n}\n\n.mdi2-table-arrow-down::before {\n  content: \"\\F13BB\";\n}\n\n.mdi2-table-arrow-left::before {\n  content: \"\\F13BC\";\n}\n\n.mdi2-table-arrow-right::before {\n  content: \"\\F13BD\";\n}\n\n.mdi2-table-arrow-up::before {\n  content: \"\\F13BE\";\n}\n\n.mdi2-table-border::before {\n  content: \"\\F0A18\";\n}\n\n.mdi2-table-cancel::before {\n  content: \"\\F13BF\";\n}\n\n.mdi2-table-chair::before {\n  content: \"\\F1061\";\n}\n\n.mdi2-table-check::before {\n  content: \"\\F13C0\";\n}\n\n.mdi2-table-clock::before {\n  content: \"\\F13C1\";\n}\n\n.mdi2-table-cog::before {\n  content: \"\\F13C2\";\n}\n\n.mdi2-table-column::before {\n  content: \"\\F0835\";\n}\n\n.mdi2-table-column-plus-after::before {\n  content: \"\\F04EC\";\n}\n\n.mdi2-table-column-plus-before::before {\n  content: \"\\F04ED\";\n}\n\n.mdi2-table-column-remove::before {\n  content: \"\\F04EE\";\n}\n\n.mdi2-table-column-width::before {\n  content: \"\\F04EF\";\n}\n\n.mdi2-table-edit::before {\n  content: \"\\F04F0\";\n}\n\n.mdi2-table-eye::before {\n  content: \"\\F1094\";\n}\n\n.mdi2-table-eye-off::before {\n  content: \"\\F13C3\";\n}\n\n.mdi2-table-filter::before {\n  content: \"\\F1B8C\";\n}\n\n.mdi2-table-furniture::before {\n  content: \"\\F05BC\";\n}\n\n.mdi2-table-headers-eye::before {\n  content: \"\\F121D\";\n}\n\n.mdi2-table-headers-eye-off::before {\n  content: \"\\F121E\";\n}\n\n.mdi2-table-heart::before {\n  content: \"\\F13C4\";\n}\n\n.mdi2-table-key::before {\n  content: \"\\F13C5\";\n}\n\n.mdi2-table-large::before {\n  content: \"\\F04F1\";\n}\n\n.mdi2-table-large-plus::before {\n  content: \"\\F0F87\";\n}\n\n.mdi2-table-large-remove::before {\n  content: \"\\F0F88\";\n}\n\n.mdi2-table-lock::before {\n  content: \"\\F13C6\";\n}\n\n.mdi2-table-merge-cells::before {\n  content: \"\\F09A6\";\n}\n\n.mdi2-table-minus::before {\n  content: \"\\F13C7\";\n}\n\n.mdi2-table-multiple::before {\n  content: \"\\F13C8\";\n}\n\n.mdi2-table-network::before {\n  content: \"\\F13C9\";\n}\n\n.mdi2-table-of-contents::before {\n  content: \"\\F0836\";\n}\n\n.mdi2-table-off::before {\n  content: \"\\F13CA\";\n}\n\n.mdi2-table-picnic::before {\n  content: \"\\F1743\";\n}\n\n.mdi2-table-pivot::before {\n  content: \"\\F183C\";\n}\n\n.mdi2-table-plus::before {\n  content: \"\\F0A75\";\n}\n\n.mdi2-table-question::before {\n  content: \"\\F1B21\";\n}\n\n.mdi2-table-refresh::before {\n  content: \"\\F13A0\";\n}\n\n.mdi2-table-remove::before {\n  content: \"\\F0A76\";\n}\n\n.mdi2-table-row::before {\n  content: \"\\F0837\";\n}\n\n.mdi2-table-row-height::before {\n  content: \"\\F04F2\";\n}\n\n.mdi2-table-row-plus-after::before {\n  content: \"\\F04F3\";\n}\n\n.mdi2-table-row-plus-before::before {\n  content: \"\\F04F4\";\n}\n\n.mdi2-table-row-remove::before {\n  content: \"\\F04F5\";\n}\n\n.mdi2-table-search::before {\n  content: \"\\F090F\";\n}\n\n.mdi2-table-settings::before {\n  content: \"\\F0838\";\n}\n\n.mdi2-table-split-cell::before {\n  content: \"\\F142A\";\n}\n\n.mdi2-table-star::before {\n  content: \"\\F13CB\";\n}\n\n.mdi2-table-sync::before {\n  content: \"\\F13A1\";\n}\n\n.mdi2-table-tennis::before {\n  content: \"\\F0E68\";\n}\n\n.mdi2-tablet::before {\n  content: \"\\F04F6\";\n}\n\n.mdi2-tablet-cellphone::before {\n  content: \"\\F09A7\";\n}\n\n.mdi2-tablet-dashboard::before {\n  content: \"\\F0ECE\";\n}\n\n.mdi2-taco::before {\n  content: \"\\F0762\";\n}\n\n.mdi2-tag::before {\n  content: \"\\F04F9\";\n}\n\n.mdi2-tag-arrow-down::before {\n  content: \"\\F172B\";\n}\n\n.mdi2-tag-arrow-down-outline::before {\n  content: \"\\F172C\";\n}\n\n.mdi2-tag-arrow-left::before {\n  content: \"\\F172D\";\n}\n\n.mdi2-tag-arrow-left-outline::before {\n  content: \"\\F172E\";\n}\n\n.mdi2-tag-arrow-right::before {\n  content: \"\\F172F\";\n}\n\n.mdi2-tag-arrow-right-outline::before {\n  content: \"\\F1730\";\n}\n\n.mdi2-tag-arrow-up::before {\n  content: \"\\F1731\";\n}\n\n.mdi2-tag-arrow-up-outline::before {\n  content: \"\\F1732\";\n}\n\n.mdi2-tag-check::before {\n  content: \"\\F1A7A\";\n}\n\n.mdi2-tag-check-outline::before {\n  content: \"\\F1A7B\";\n}\n\n.mdi2-tag-edit::before {\n  content: \"\\F1C9C\";\n}\n\n.mdi2-tag-edit-outline::before {\n  content: \"\\F1C9D\";\n}\n\n.mdi2-tag-faces::before {\n  content: \"\\F04FA\";\n}\n\n.mdi2-tag-heart::before {\n  content: \"\\F068B\";\n}\n\n.mdi2-tag-heart-outline::before {\n  content: \"\\F0BCF\";\n}\n\n.mdi2-tag-hidden::before {\n  content: \"\\F1C76\";\n}\n\n.mdi2-tag-minus::before {\n  content: \"\\F0910\";\n}\n\n.mdi2-tag-minus-outline::before {\n  content: \"\\F121F\";\n}\n\n.mdi2-tag-multiple::before {\n  content: \"\\F04FB\";\n}\n\n.mdi2-tag-multiple-outline::before {\n  content: \"\\F12F7\";\n}\n\n.mdi2-tag-off::before {\n  content: \"\\F1220\";\n}\n\n.mdi2-tag-off-outline::before {\n  content: \"\\F1221\";\n}\n\n.mdi2-tag-outline::before {\n  content: \"\\F04FC\";\n}\n\n.mdi2-tag-plus::before {\n  content: \"\\F0722\";\n}\n\n.mdi2-tag-plus-outline::before {\n  content: \"\\F1222\";\n}\n\n.mdi2-tag-remove::before {\n  content: \"\\F0723\";\n}\n\n.mdi2-tag-remove-outline::before {\n  content: \"\\F1223\";\n}\n\n.mdi2-tag-search::before {\n  content: \"\\F1907\";\n}\n\n.mdi2-tag-search-outline::before {\n  content: \"\\F1908\";\n}\n\n.mdi2-tag-text::before {\n  content: \"\\F1224\";\n}\n\n.mdi2-tag-text-outline::before {\n  content: \"\\F04FD\";\n}\n\n.mdi2-tailwind::before {\n  content: \"\\F13FF\";\n}\n\n.mdi2-tally-mark-1::before {\n  content: \"\\F1ABC\";\n}\n\n.mdi2-tally-mark-2::before {\n  content: \"\\F1ABD\";\n}\n\n.mdi2-tally-mark-3::before {\n  content: \"\\F1ABE\";\n}\n\n.mdi2-tally-mark-4::before {\n  content: \"\\F1ABF\";\n}\n\n.mdi2-tally-mark-5::before {\n  content: \"\\F1AC0\";\n}\n\n.mdi2-tangram::before {\n  content: \"\\F04F8\";\n}\n\n.mdi2-tank::before {\n  content: \"\\F0D3A\";\n}\n\n.mdi2-tanker-truck::before {\n  content: \"\\F0FE5\";\n}\n\n.mdi2-tape-drive::before {\n  content: \"\\F16DF\";\n}\n\n.mdi2-tape-measure::before {\n  content: \"\\F0B4D\";\n}\n\n.mdi2-target::before {\n  content: \"\\F04FE\";\n}\n\n.mdi2-target-account::before {\n  content: \"\\F0BD0\";\n}\n\n.mdi2-target-variant::before {\n  content: \"\\F0A77\";\n}\n\n.mdi2-taxi::before {\n  content: \"\\F04FF\";\n}\n\n.mdi2-tea::before {\n  content: \"\\F0D9E\";\n}\n\n.mdi2-tea-outline::before {\n  content: \"\\F0D9F\";\n}\n\n.mdi2-teamviewer::before {\n  content: \"\\F0500\";\n}\n\n.mdi2-teddy-bear::before {\n  content: \"\\F18FB\";\n}\n\n.mdi2-telescope::before {\n  content: \"\\F0B4E\";\n}\n\n.mdi2-television::before {\n  content: \"\\F0502\";\n}\n\n.mdi2-television-ambient-light::before {\n  content: \"\\F1356\";\n}\n\n.mdi2-television-box::before {\n  content: \"\\F0839\";\n}\n\n.mdi2-television-classic::before {\n  content: \"\\F07F4\";\n}\n\n.mdi2-television-classic-off::before {\n  content: \"\\F083A\";\n}\n\n.mdi2-television-guide::before {\n  content: \"\\F0503\";\n}\n\n.mdi2-television-off::before {\n  content: \"\\F083B\";\n}\n\n.mdi2-television-pause::before {\n  content: \"\\F0F89\";\n}\n\n.mdi2-television-play::before {\n  content: \"\\F0ECF\";\n}\n\n.mdi2-television-shimmer::before {\n  content: \"\\F1110\";\n}\n\n.mdi2-television-speaker::before {\n  content: \"\\F1B1B\";\n}\n\n.mdi2-television-speaker-off::before {\n  content: \"\\F1B1C\";\n}\n\n.mdi2-television-stop::before {\n  content: \"\\F0F8A\";\n}\n\n.mdi2-temperature-celsius::before {\n  content: \"\\F0504\";\n}\n\n.mdi2-temperature-fahrenheit::before {\n  content: \"\\F0505\";\n}\n\n.mdi2-temperature-kelvin::before {\n  content: \"\\F0506\";\n}\n\n.mdi2-temple-buddhist::before {\n  content: \"\\F1B06\";\n}\n\n.mdi2-temple-buddhist-outline::before {\n  content: \"\\F1B07\";\n}\n\n.mdi2-temple-hindu::before {\n  content: \"\\F1B08\";\n}\n\n.mdi2-temple-hindu-outline::before {\n  content: \"\\F1B09\";\n}\n\n.mdi2-tennis::before {\n  content: \"\\F0DA0\";\n}\n\n.mdi2-tennis-ball::before {\n  content: \"\\F0507\";\n}\n\n.mdi2-tennis-ball-outline::before {\n  content: \"\\F1C5F\";\n}\n\n.mdi2-tent::before {\n  content: \"\\F0508\";\n}\n\n.mdi2-terraform::before {\n  content: \"\\F1062\";\n}\n\n.mdi2-terrain::before {\n  content: \"\\F0509\";\n}\n\n.mdi2-test-tube::before {\n  content: \"\\F0668\";\n}\n\n.mdi2-test-tube-empty::before {\n  content: \"\\F0911\";\n}\n\n.mdi2-test-tube-off::before {\n  content: \"\\F0912\";\n}\n\n.mdi2-text::before {\n  content: \"\\F09A8\";\n}\n\n.mdi2-text-account::before {\n  content: \"\\F1570\";\n}\n\n.mdi2-text-box::before {\n  content: \"\\F021A\";\n}\n\n.mdi2-text-box-check::before {\n  content: \"\\F0EA6\";\n}\n\n.mdi2-text-box-check-outline::before {\n  content: \"\\F0EA7\";\n}\n\n.mdi2-text-box-edit::before {\n  content: \"\\F1A7C\";\n}\n\n.mdi2-text-box-edit-outline::before {\n  content: \"\\F1A7D\";\n}\n\n.mdi2-text-box-minus::before {\n  content: \"\\F0EA8\";\n}\n\n.mdi2-text-box-minus-outline::before {\n  content: \"\\F0EA9\";\n}\n\n.mdi2-text-box-multiple::before {\n  content: \"\\F0AB7\";\n}\n\n.mdi2-text-box-multiple-outline::before {\n  content: \"\\F0AB8\";\n}\n\n.mdi2-text-box-outline::before {\n  content: \"\\F09ED\";\n}\n\n.mdi2-text-box-plus::before {\n  content: \"\\F0EAA\";\n}\n\n.mdi2-text-box-plus-outline::before {\n  content: \"\\F0EAB\";\n}\n\n.mdi2-text-box-remove::before {\n  content: \"\\F0EAC\";\n}\n\n.mdi2-text-box-remove-outline::before {\n  content: \"\\F0EAD\";\n}\n\n.mdi2-text-box-search::before {\n  content: \"\\F0EAE\";\n}\n\n.mdi2-text-box-search-outline::before {\n  content: \"\\F0EAF\";\n}\n\n.mdi2-text-long::before {\n  content: \"\\F09AA\";\n}\n\n.mdi2-text-recognition::before {\n  content: \"\\F113D\";\n}\n\n.mdi2-text-search::before {\n  content: \"\\F13B8\";\n}\n\n.mdi2-text-search-variant::before {\n  content: \"\\F1A7E\";\n}\n\n.mdi2-text-shadow::before {\n  content: \"\\F0669\";\n}\n\n.mdi2-text-short::before {\n  content: \"\\F09A9\";\n}\n\n.mdi2-texture::before {\n  content: \"\\F050C\";\n}\n\n.mdi2-texture-box::before {\n  content: \"\\F0FE6\";\n}\n\n.mdi2-theater::before {\n  content: \"\\F050D\";\n}\n\n.mdi2-theme-light-dark::before {\n  content: \"\\F050E\";\n}\n\n.mdi2-thermometer::before {\n  content: \"\\F050F\";\n}\n\n.mdi2-thermometer-alert::before {\n  content: \"\\F0E01\";\n}\n\n.mdi2-thermometer-auto::before {\n  content: \"\\F1B0F\";\n}\n\n.mdi2-thermometer-bluetooth::before {\n  content: \"\\F1895\";\n}\n\n.mdi2-thermometer-check::before {\n  content: \"\\F1A7F\";\n}\n\n.mdi2-thermometer-chevron-down::before {\n  content: \"\\F0E02\";\n}\n\n.mdi2-thermometer-chevron-up::before {\n  content: \"\\F0E03\";\n}\n\n.mdi2-thermometer-high::before {\n  content: \"\\F10C2\";\n}\n\n.mdi2-thermometer-lines::before {\n  content: \"\\F0510\";\n}\n\n.mdi2-thermometer-low::before {\n  content: \"\\F10C3\";\n}\n\n.mdi2-thermometer-minus::before {\n  content: \"\\F0E04\";\n}\n\n.mdi2-thermometer-off::before {\n  content: \"\\F1531\";\n}\n\n.mdi2-thermometer-plus::before {\n  content: \"\\F0E05\";\n}\n\n.mdi2-thermometer-probe::before {\n  content: \"\\F1B2B\";\n}\n\n.mdi2-thermometer-probe-off::before {\n  content: \"\\F1B2C\";\n}\n\n.mdi2-thermometer-water::before {\n  content: \"\\F1A80\";\n}\n\n.mdi2-thermostat::before {\n  content: \"\\F0393\";\n}\n\n.mdi2-thermostat-auto::before {\n  content: \"\\F1B17\";\n}\n\n.mdi2-thermostat-box::before {\n  content: \"\\F0891\";\n}\n\n.mdi2-thermostat-box-auto::before {\n  content: \"\\F1B18\";\n}\n\n.mdi2-thermostat-cog::before {\n  content: \"\\F1C80\";\n}\n\n.mdi2-thought-bubble::before {\n  content: \"\\F07F6\";\n}\n\n.mdi2-thought-bubble-outline::before {\n  content: \"\\F07F7\";\n}\n\n.mdi2-thumb-down::before {\n  content: \"\\F0511\";\n}\n\n.mdi2-thumb-down-outline::before {\n  content: \"\\F0512\";\n}\n\n.mdi2-thumb-up::before {\n  content: \"\\F0513\";\n}\n\n.mdi2-thumb-up-outline::before {\n  content: \"\\F0514\";\n}\n\n.mdi2-thumbs-up-down::before {\n  content: \"\\F0515\";\n}\n\n.mdi2-thumbs-up-down-outline::before {\n  content: \"\\F1914\";\n}\n\n.mdi2-ticket::before {\n  content: \"\\F0516\";\n}\n\n.mdi2-ticket-account::before {\n  content: \"\\F0517\";\n}\n\n.mdi2-ticket-confirmation::before {\n  content: \"\\F0518\";\n}\n\n.mdi2-ticket-confirmation-outline::before {\n  content: \"\\F13AA\";\n}\n\n.mdi2-ticket-outline::before {\n  content: \"\\F0913\";\n}\n\n.mdi2-ticket-percent::before {\n  content: \"\\F0724\";\n}\n\n.mdi2-ticket-percent-outline::before {\n  content: \"\\F142B\";\n}\n\n.mdi2-tie::before {\n  content: \"\\F0519\";\n}\n\n.mdi2-tilde::before {\n  content: \"\\F0725\";\n}\n\n.mdi2-tilde-off::before {\n  content: \"\\F18F3\";\n}\n\n.mdi2-timelapse::before {\n  content: \"\\F051A\";\n}\n\n.mdi2-timeline::before {\n  content: \"\\F0BD1\";\n}\n\n.mdi2-timeline-alert::before {\n  content: \"\\F0F95\";\n}\n\n.mdi2-timeline-alert-outline::before {\n  content: \"\\F0F98\";\n}\n\n.mdi2-timeline-check::before {\n  content: \"\\F1532\";\n}\n\n.mdi2-timeline-check-outline::before {\n  content: \"\\F1533\";\n}\n\n.mdi2-timeline-clock::before {\n  content: \"\\F11FB\";\n}\n\n.mdi2-timeline-clock-outline::before {\n  content: \"\\F11FC\";\n}\n\n.mdi2-timeline-minus::before {\n  content: \"\\F1534\";\n}\n\n.mdi2-timeline-minus-outline::before {\n  content: \"\\F1535\";\n}\n\n.mdi2-timeline-outline::before {\n  content: \"\\F0BD2\";\n}\n\n.mdi2-timeline-plus::before {\n  content: \"\\F0F96\";\n}\n\n.mdi2-timeline-plus-outline::before {\n  content: \"\\F0F97\";\n}\n\n.mdi2-timeline-question::before {\n  content: \"\\F0F99\";\n}\n\n.mdi2-timeline-question-outline::before {\n  content: \"\\F0F9A\";\n}\n\n.mdi2-timeline-remove::before {\n  content: \"\\F1536\";\n}\n\n.mdi2-timeline-remove-outline::before {\n  content: \"\\F1537\";\n}\n\n.mdi2-timeline-text::before {\n  content: \"\\F0BD3\";\n}\n\n.mdi2-timeline-text-outline::before {\n  content: \"\\F0BD4\";\n}\n\n.mdi2-timer::before {\n  content: \"\\F13AB\";\n}\n\n.mdi2-timer-10::before {\n  content: \"\\F051C\";\n}\n\n.mdi2-timer-3::before {\n  content: \"\\F051D\";\n}\n\n.mdi2-timer-alert::before {\n  content: \"\\F1ACC\";\n}\n\n.mdi2-timer-alert-outline::before {\n  content: \"\\F1ACD\";\n}\n\n.mdi2-timer-cancel::before {\n  content: \"\\F1ACE\";\n}\n\n.mdi2-timer-cancel-outline::before {\n  content: \"\\F1ACF\";\n}\n\n.mdi2-timer-check::before {\n  content: \"\\F1AD0\";\n}\n\n.mdi2-timer-check-outline::before {\n  content: \"\\F1AD1\";\n}\n\n.mdi2-timer-cog::before {\n  content: \"\\F1925\";\n}\n\n.mdi2-timer-cog-outline::before {\n  content: \"\\F1926\";\n}\n\n.mdi2-timer-edit::before {\n  content: \"\\F1AD2\";\n}\n\n.mdi2-timer-edit-outline::before {\n  content: \"\\F1AD3\";\n}\n\n.mdi2-timer-lock::before {\n  content: \"\\F1AD4\";\n}\n\n.mdi2-timer-lock-open::before {\n  content: \"\\F1AD5\";\n}\n\n.mdi2-timer-lock-open-outline::before {\n  content: \"\\F1AD6\";\n}\n\n.mdi2-timer-lock-outline::before {\n  content: \"\\F1AD7\";\n}\n\n.mdi2-timer-marker::before {\n  content: \"\\F1AD8\";\n}\n\n.mdi2-timer-marker-outline::before {\n  content: \"\\F1AD9\";\n}\n\n.mdi2-timer-minus::before {\n  content: \"\\F1ADA\";\n}\n\n.mdi2-timer-minus-outline::before {\n  content: \"\\F1ADB\";\n}\n\n.mdi2-timer-music::before {\n  content: \"\\F1ADC\";\n}\n\n.mdi2-timer-music-outline::before {\n  content: \"\\F1ADD\";\n}\n\n.mdi2-timer-off::before {\n  content: \"\\F13AC\";\n}\n\n.mdi2-timer-off-outline::before {\n  content: \"\\F051E\";\n}\n\n.mdi2-timer-outline::before {\n  content: \"\\F051B\";\n}\n\n.mdi2-timer-pause::before {\n  content: \"\\F1ADE\";\n}\n\n.mdi2-timer-pause-outline::before {\n  content: \"\\F1ADF\";\n}\n\n.mdi2-timer-play::before {\n  content: \"\\F1AE0\";\n}\n\n.mdi2-timer-play-outline::before {\n  content: \"\\F1AE1\";\n}\n\n.mdi2-timer-plus::before {\n  content: \"\\F1AE2\";\n}\n\n.mdi2-timer-plus-outline::before {\n  content: \"\\F1AE3\";\n}\n\n.mdi2-timer-refresh::before {\n  content: \"\\F1AE4\";\n}\n\n.mdi2-timer-refresh-outline::before {\n  content: \"\\F1AE5\";\n}\n\n.mdi2-timer-remove::before {\n  content: \"\\F1AE6\";\n}\n\n.mdi2-timer-remove-outline::before {\n  content: \"\\F1AE7\";\n}\n\n.mdi2-timer-sand::before {\n  content: \"\\F051F\";\n}\n\n.mdi2-timer-sand-complete::before {\n  content: \"\\F199F\";\n}\n\n.mdi2-timer-sand-empty::before {\n  content: \"\\F06AD\";\n}\n\n.mdi2-timer-sand-full::before {\n  content: \"\\F078C\";\n}\n\n.mdi2-timer-sand-paused::before {\n  content: \"\\F19A0\";\n}\n\n.mdi2-timer-settings::before {\n  content: \"\\F1923\";\n}\n\n.mdi2-timer-settings-outline::before {\n  content: \"\\F1924\";\n}\n\n.mdi2-timer-star::before {\n  content: \"\\F1AE8\";\n}\n\n.mdi2-timer-star-outline::before {\n  content: \"\\F1AE9\";\n}\n\n.mdi2-timer-stop::before {\n  content: \"\\F1AEA\";\n}\n\n.mdi2-timer-stop-outline::before {\n  content: \"\\F1AEB\";\n}\n\n.mdi2-timer-sync::before {\n  content: \"\\F1AEC\";\n}\n\n.mdi2-timer-sync-outline::before {\n  content: \"\\F1AED\";\n}\n\n.mdi2-timetable::before {\n  content: \"\\F0520\";\n}\n\n.mdi2-tire::before {\n  content: \"\\F1896\";\n}\n\n.mdi2-toaster::before {\n  content: \"\\F1063\";\n}\n\n.mdi2-toaster-off::before {\n  content: \"\\F11B7\";\n}\n\n.mdi2-toaster-oven::before {\n  content: \"\\F0CD3\";\n}\n\n.mdi2-toggle-switch::before {\n  content: \"\\F0521\";\n}\n\n.mdi2-toggle-switch-off::before {\n  content: \"\\F0522\";\n}\n\n.mdi2-toggle-switch-off-outline::before {\n  content: \"\\F0A19\";\n}\n\n.mdi2-toggle-switch-outline::before {\n  content: \"\\F0A1A\";\n}\n\n.mdi2-toggle-switch-variant::before {\n  content: \"\\F1A25\";\n}\n\n.mdi2-toggle-switch-variant-off::before {\n  content: \"\\F1A26\";\n}\n\n.mdi2-toilet::before {\n  content: \"\\F09AB\";\n}\n\n.mdi2-toolbox::before {\n  content: \"\\F09AC\";\n}\n\n.mdi2-toolbox-outline::before {\n  content: \"\\F09AD\";\n}\n\n.mdi2-tools::before {\n  content: \"\\F1064\";\n}\n\n.mdi2-tooltip::before {\n  content: \"\\F0523\";\n}\n\n.mdi2-tooltip-account::before {\n  content: \"\\F000C\";\n}\n\n.mdi2-tooltip-cellphone::before {\n  content: \"\\F183B\";\n}\n\n.mdi2-tooltip-check::before {\n  content: \"\\F155C\";\n}\n\n.mdi2-tooltip-check-outline::before {\n  content: \"\\F155D\";\n}\n\n.mdi2-tooltip-edit::before {\n  content: \"\\F0524\";\n}\n\n.mdi2-tooltip-edit-outline::before {\n  content: \"\\F12C5\";\n}\n\n.mdi2-tooltip-image::before {\n  content: \"\\F0525\";\n}\n\n.mdi2-tooltip-image-outline::before {\n  content: \"\\F0BD5\";\n}\n\n.mdi2-tooltip-minus::before {\n  content: \"\\F155E\";\n}\n\n.mdi2-tooltip-minus-outline::before {\n  content: \"\\F155F\";\n}\n\n.mdi2-tooltip-outline::before {\n  content: \"\\F0526\";\n}\n\n.mdi2-tooltip-plus::before {\n  content: \"\\F0BD6\";\n}\n\n.mdi2-tooltip-plus-outline::before {\n  content: \"\\F0527\";\n}\n\n.mdi2-tooltip-question::before {\n  content: \"\\F1BBA\";\n}\n\n.mdi2-tooltip-question-outline::before {\n  content: \"\\F1BBB\";\n}\n\n.mdi2-tooltip-remove::before {\n  content: \"\\F1560\";\n}\n\n.mdi2-tooltip-remove-outline::before {\n  content: \"\\F1561\";\n}\n\n.mdi2-tooltip-text::before {\n  content: \"\\F0528\";\n}\n\n.mdi2-tooltip-text-outline::before {\n  content: \"\\F0BD7\";\n}\n\n.mdi2-tooth::before {\n  content: \"\\F08C3\";\n}\n\n.mdi2-tooth-outline::before {\n  content: \"\\F0529\";\n}\n\n.mdi2-toothbrush::before {\n  content: \"\\F1129\";\n}\n\n.mdi2-toothbrush-electric::before {\n  content: \"\\F112C\";\n}\n\n.mdi2-toothbrush-paste::before {\n  content: \"\\F112A\";\n}\n\n.mdi2-torch::before {\n  content: \"\\F1606\";\n}\n\n.mdi2-tortoise::before {\n  content: \"\\F0D3B\";\n}\n\n.mdi2-toslink::before {\n  content: \"\\F12B8\";\n}\n\n.mdi2-touch-text-outline::before {\n  content: \"\\F1C60\";\n}\n\n.mdi2-tournament::before {\n  content: \"\\F09AE\";\n}\n\n.mdi2-tow-truck::before {\n  content: \"\\F083C\";\n}\n\n.mdi2-tower-beach::before {\n  content: \"\\F0681\";\n}\n\n.mdi2-tower-fire::before {\n  content: \"\\F0682\";\n}\n\n.mdi2-town-hall::before {\n  content: \"\\F1875\";\n}\n\n.mdi2-toy-brick::before {\n  content: \"\\F1288\";\n}\n\n.mdi2-toy-brick-marker::before {\n  content: \"\\F1289\";\n}\n\n.mdi2-toy-brick-marker-outline::before {\n  content: \"\\F128A\";\n}\n\n.mdi2-toy-brick-minus::before {\n  content: \"\\F128B\";\n}\n\n.mdi2-toy-brick-minus-outline::before {\n  content: \"\\F128C\";\n}\n\n.mdi2-toy-brick-outline::before {\n  content: \"\\F128D\";\n}\n\n.mdi2-toy-brick-plus::before {\n  content: \"\\F128E\";\n}\n\n.mdi2-toy-brick-plus-outline::before {\n  content: \"\\F128F\";\n}\n\n.mdi2-toy-brick-remove::before {\n  content: \"\\F1290\";\n}\n\n.mdi2-toy-brick-remove-outline::before {\n  content: \"\\F1291\";\n}\n\n.mdi2-toy-brick-search::before {\n  content: \"\\F1292\";\n}\n\n.mdi2-toy-brick-search-outline::before {\n  content: \"\\F1293\";\n}\n\n.mdi2-track-light::before {\n  content: \"\\F0914\";\n}\n\n.mdi2-track-light-off::before {\n  content: \"\\F1B01\";\n}\n\n.mdi2-trackpad::before {\n  content: \"\\F07F8\";\n}\n\n.mdi2-trackpad-lock::before {\n  content: \"\\F0933\";\n}\n\n.mdi2-tractor::before {\n  content: \"\\F0892\";\n}\n\n.mdi2-tractor-variant::before {\n  content: \"\\F14C4\";\n}\n\n.mdi2-trademark::before {\n  content: \"\\F0A78\";\n}\n\n.mdi2-traffic-cone::before {\n  content: \"\\F137C\";\n}\n\n.mdi2-traffic-light::before {\n  content: \"\\F052B\";\n}\n\n.mdi2-traffic-light-outline::before {\n  content: \"\\F182A\";\n}\n\n.mdi2-train::before {\n  content: \"\\F052C\";\n}\n\n.mdi2-train-bus::before {\n  content: \"\\F1CC7\";\n}\n\n.mdi2-train-car::before {\n  content: \"\\F0BD8\";\n}\n\n.mdi2-train-car-autorack::before {\n  content: \"\\F1B2D\";\n}\n\n.mdi2-train-car-box::before {\n  content: \"\\F1B2E\";\n}\n\n.mdi2-train-car-box-full::before {\n  content: \"\\F1B2F\";\n}\n\n.mdi2-train-car-box-open::before {\n  content: \"\\F1B30\";\n}\n\n.mdi2-train-car-caboose::before {\n  content: \"\\F1B31\";\n}\n\n.mdi2-train-car-centerbeam::before {\n  content: \"\\F1B32\";\n}\n\n.mdi2-train-car-centerbeam-full::before {\n  content: \"\\F1B33\";\n}\n\n.mdi2-train-car-container::before {\n  content: \"\\F1B34\";\n}\n\n.mdi2-train-car-flatbed::before {\n  content: \"\\F1B35\";\n}\n\n.mdi2-train-car-flatbed-car::before {\n  content: \"\\F1B36\";\n}\n\n.mdi2-train-car-flatbed-tank::before {\n  content: \"\\F1B37\";\n}\n\n.mdi2-train-car-gondola::before {\n  content: \"\\F1B38\";\n}\n\n.mdi2-train-car-gondola-full::before {\n  content: \"\\F1B39\";\n}\n\n.mdi2-train-car-hopper::before {\n  content: \"\\F1B3A\";\n}\n\n.mdi2-train-car-hopper-covered::before {\n  content: \"\\F1B3B\";\n}\n\n.mdi2-train-car-hopper-full::before {\n  content: \"\\F1B3C\";\n}\n\n.mdi2-train-car-intermodal::before {\n  content: \"\\F1B3D\";\n}\n\n.mdi2-train-car-passenger::before {\n  content: \"\\F1733\";\n}\n\n.mdi2-train-car-passenger-door::before {\n  content: \"\\F1734\";\n}\n\n.mdi2-train-car-passenger-door-open::before {\n  content: \"\\F1735\";\n}\n\n.mdi2-train-car-passenger-variant::before {\n  content: \"\\F1736\";\n}\n\n.mdi2-train-car-tank::before {\n  content: \"\\F1B3E\";\n}\n\n.mdi2-train-variant::before {\n  content: \"\\F08C4\";\n}\n\n.mdi2-tram::before {\n  content: \"\\F052D\";\n}\n\n.mdi2-tram-side::before {\n  content: \"\\F0FE7\";\n}\n\n.mdi2-transcribe::before {\n  content: \"\\F052E\";\n}\n\n.mdi2-transcribe-close::before {\n  content: \"\\F052F\";\n}\n\n.mdi2-transfer::before {\n  content: \"\\F1065\";\n}\n\n.mdi2-transfer-down::before {\n  content: \"\\F0DA1\";\n}\n\n.mdi2-transfer-left::before {\n  content: \"\\F0DA2\";\n}\n\n.mdi2-transfer-right::before {\n  content: \"\\F0530\";\n}\n\n.mdi2-transfer-up::before {\n  content: \"\\F0DA3\";\n}\n\n.mdi2-transit-connection::before {\n  content: \"\\F0D3C\";\n}\n\n.mdi2-transit-connection-horizontal::before {\n  content: \"\\F1546\";\n}\n\n.mdi2-transit-connection-variant::before {\n  content: \"\\F0D3D\";\n}\n\n.mdi2-transit-detour::before {\n  content: \"\\F0F8B\";\n}\n\n.mdi2-transit-skip::before {\n  content: \"\\F1515\";\n}\n\n.mdi2-transit-transfer::before {\n  content: \"\\F06AE\";\n}\n\n.mdi2-transition::before {\n  content: \"\\F0915\";\n}\n\n.mdi2-transition-masked::before {\n  content: \"\\F0916\";\n}\n\n.mdi2-translate::before {\n  content: \"\\F05CA\";\n}\n\n.mdi2-translate-off::before {\n  content: \"\\F0E06\";\n}\n\n.mdi2-translate-variant::before {\n  content: \"\\F1B99\";\n}\n\n.mdi2-transmission-tower::before {\n  content: \"\\F0D3E\";\n}\n\n.mdi2-transmission-tower-export::before {\n  content: \"\\F192C\";\n}\n\n.mdi2-transmission-tower-import::before {\n  content: \"\\F192D\";\n}\n\n.mdi2-transmission-tower-off::before {\n  content: \"\\F19DD\";\n}\n\n.mdi2-trash-can::before {\n  content: \"\\F0A79\";\n}\n\n.mdi2-trash-can-outline::before {\n  content: \"\\F0A7A\";\n}\n\n.mdi2-tray::before {\n  content: \"\\F1294\";\n}\n\n.mdi2-tray-alert::before {\n  content: \"\\F1295\";\n}\n\n.mdi2-tray-arrow-down::before {\n  content: \"\\F0120\";\n}\n\n.mdi2-tray-arrow-up::before {\n  content: \"\\F011D\";\n}\n\n.mdi2-tray-full::before {\n  content: \"\\F1296\";\n}\n\n.mdi2-tray-minus::before {\n  content: \"\\F1297\";\n}\n\n.mdi2-tray-plus::before {\n  content: \"\\F1298\";\n}\n\n.mdi2-tray-remove::before {\n  content: \"\\F1299\";\n}\n\n.mdi2-treasure-chest::before {\n  content: \"\\F0726\";\n}\n\n.mdi2-treasure-chest-outline::before {\n  content: \"\\F1C77\";\n}\n\n.mdi2-tree::before {\n  content: \"\\F0531\";\n}\n\n.mdi2-tree-outline::before {\n  content: \"\\F0E69\";\n}\n\n.mdi2-trello::before {\n  content: \"\\F0532\";\n}\n\n.mdi2-trending-down::before {\n  content: \"\\F0533\";\n}\n\n.mdi2-trending-neutral::before {\n  content: \"\\F0534\";\n}\n\n.mdi2-trending-up::before {\n  content: \"\\F0535\";\n}\n\n.mdi2-triangle::before {\n  content: \"\\F0536\";\n}\n\n.mdi2-triangle-down::before {\n  content: \"\\F1C56\";\n}\n\n.mdi2-triangle-down-outline::before {\n  content: \"\\F1C57\";\n}\n\n.mdi2-triangle-outline::before {\n  content: \"\\F0537\";\n}\n\n.mdi2-triangle-small-down::before {\n  content: \"\\F1A09\";\n}\n\n.mdi2-triangle-small-up::before {\n  content: \"\\F1A0A\";\n}\n\n.mdi2-triangle-wave::before {\n  content: \"\\F147C\";\n}\n\n.mdi2-triforce::before {\n  content: \"\\F0BD9\";\n}\n\n.mdi2-trophy::before {\n  content: \"\\F0538\";\n}\n\n.mdi2-trophy-award::before {\n  content: \"\\F0539\";\n}\n\n.mdi2-trophy-broken::before {\n  content: \"\\F0DA4\";\n}\n\n.mdi2-trophy-outline::before {\n  content: \"\\F053A\";\n}\n\n.mdi2-trophy-variant::before {\n  content: \"\\F053B\";\n}\n\n.mdi2-trophy-variant-outline::before {\n  content: \"\\F053C\";\n}\n\n.mdi2-truck::before {\n  content: \"\\F053D\";\n}\n\n.mdi2-truck-alert::before {\n  content: \"\\F19DE\";\n}\n\n.mdi2-truck-alert-outline::before {\n  content: \"\\F19DF\";\n}\n\n.mdi2-truck-cargo-container::before {\n  content: \"\\F18D8\";\n}\n\n.mdi2-truck-check::before {\n  content: \"\\F0CD4\";\n}\n\n.mdi2-truck-check-outline::before {\n  content: \"\\F129A\";\n}\n\n.mdi2-truck-delivery::before {\n  content: \"\\F053E\";\n}\n\n.mdi2-truck-delivery-outline::before {\n  content: \"\\F129B\";\n}\n\n.mdi2-truck-fast::before {\n  content: \"\\F0788\";\n}\n\n.mdi2-truck-fast-outline::before {\n  content: \"\\F129C\";\n}\n\n.mdi2-truck-flatbed::before {\n  content: \"\\F1891\";\n}\n\n.mdi2-truck-minus::before {\n  content: \"\\F19AE\";\n}\n\n.mdi2-truck-minus-outline::before {\n  content: \"\\F19BD\";\n}\n\n.mdi2-truck-off-road::before {\n  content: \"\\F1C9E\";\n}\n\n.mdi2-truck-off-road-off::before {\n  content: \"\\F1C9F\";\n}\n\n.mdi2-truck-outline::before {\n  content: \"\\F129D\";\n}\n\n.mdi2-truck-plus::before {\n  content: \"\\F19AD\";\n}\n\n.mdi2-truck-plus-outline::before {\n  content: \"\\F19BC\";\n}\n\n.mdi2-truck-remove::before {\n  content: \"\\F19AF\";\n}\n\n.mdi2-truck-remove-outline::before {\n  content: \"\\F19BE\";\n}\n\n.mdi2-truck-snowflake::before {\n  content: \"\\F19A6\";\n}\n\n.mdi2-truck-trailer::before {\n  content: \"\\F0727\";\n}\n\n.mdi2-trumpet::before {\n  content: \"\\F1096\";\n}\n\n.mdi2-tshirt-crew::before {\n  content: \"\\F0A7B\";\n}\n\n.mdi2-tshirt-crew-outline::before {\n  content: \"\\F053F\";\n}\n\n.mdi2-tshirt-v::before {\n  content: \"\\F0A7C\";\n}\n\n.mdi2-tshirt-v-outline::before {\n  content: \"\\F0540\";\n}\n\n.mdi2-tsunami::before {\n  content: \"\\F1A81\";\n}\n\n.mdi2-tumble-dryer::before {\n  content: \"\\F0917\";\n}\n\n.mdi2-tumble-dryer-alert::before {\n  content: \"\\F11BA\";\n}\n\n.mdi2-tumble-dryer-off::before {\n  content: \"\\F11BB\";\n}\n\n.mdi2-tune::before {\n  content: \"\\F062E\";\n}\n\n.mdi2-tune-variant::before {\n  content: \"\\F1542\";\n}\n\n.mdi2-tune-vertical::before {\n  content: \"\\F066A\";\n}\n\n.mdi2-tune-vertical-variant::before {\n  content: \"\\F1543\";\n}\n\n.mdi2-tunnel::before {\n  content: \"\\F183D\";\n}\n\n.mdi2-tunnel-outline::before {\n  content: \"\\F183E\";\n}\n\n.mdi2-turbine::before {\n  content: \"\\F1A82\";\n}\n\n.mdi2-turkey::before {\n  content: \"\\F171B\";\n}\n\n.mdi2-turnstile::before {\n  content: \"\\F0CD5\";\n}\n\n.mdi2-turnstile-outline::before {\n  content: \"\\F0CD6\";\n}\n\n.mdi2-turtle::before {\n  content: \"\\F0CD7\";\n}\n\n.mdi2-twitch::before {\n  content: \"\\F0543\";\n}\n\n.mdi2-twitter::before {\n  content: \"\\F0544\";\n}\n\n.mdi2-two-factor-authentication::before {\n  content: \"\\F09AF\";\n}\n\n.mdi2-typewriter::before {\n  content: \"\\F0F2D\";\n}\n\n.mdi2-ubisoft::before {\n  content: \"\\F0BDA\";\n}\n\n.mdi2-ubuntu::before {\n  content: \"\\F0548\";\n}\n\n.mdi2-ufo::before {\n  content: \"\\F10C4\";\n}\n\n.mdi2-ufo-outline::before {\n  content: \"\\F10C5\";\n}\n\n.mdi2-ultra-high-definition::before {\n  content: \"\\F07F9\";\n}\n\n.mdi2-umbraco::before {\n  content: \"\\F0549\";\n}\n\n.mdi2-umbrella::before {\n  content: \"\\F054A\";\n}\n\n.mdi2-umbrella-beach::before {\n  content: \"\\F188A\";\n}\n\n.mdi2-umbrella-beach-outline::before {\n  content: \"\\F188B\";\n}\n\n.mdi2-umbrella-closed::before {\n  content: \"\\F09B0\";\n}\n\n.mdi2-umbrella-closed-outline::before {\n  content: \"\\F13E2\";\n}\n\n.mdi2-umbrella-closed-variant::before {\n  content: \"\\F13E1\";\n}\n\n.mdi2-umbrella-outline::before {\n  content: \"\\F054B\";\n}\n\n.mdi2-underwear-outline::before {\n  content: \"\\F1D0F\";\n}\n\n.mdi2-undo::before {\n  content: \"\\F054C\";\n}\n\n.mdi2-undo-variant::before {\n  content: \"\\F054D\";\n}\n\n.mdi2-unfold-less-horizontal::before {\n  content: \"\\F054E\";\n}\n\n.mdi2-unfold-less-vertical::before {\n  content: \"\\F0760\";\n}\n\n.mdi2-unfold-more-horizontal::before {\n  content: \"\\F054F\";\n}\n\n.mdi2-unfold-more-vertical::before {\n  content: \"\\F0761\";\n}\n\n.mdi2-ungroup::before {\n  content: \"\\F0550\";\n}\n\n.mdi2-unicode::before {\n  content: \"\\F0ED0\";\n}\n\n.mdi2-unicorn::before {\n  content: \"\\F15C2\";\n}\n\n.mdi2-unicorn-variant::before {\n  content: \"\\F15C3\";\n}\n\n.mdi2-unicycle::before {\n  content: \"\\F15E5\";\n}\n\n.mdi2-unity::before {\n  content: \"\\F06AF\";\n}\n\n.mdi2-unreal::before {\n  content: \"\\F09B1\";\n}\n\n.mdi2-update::before {\n  content: \"\\F06B0\";\n}\n\n.mdi2-upload::before {\n  content: \"\\F0552\";\n}\n\n.mdi2-upload-box::before {\n  content: \"\\F1D10\";\n}\n\n.mdi2-upload-box-outline::before {\n  content: \"\\F1D11\";\n}\n\n.mdi2-upload-circle::before {\n  content: \"\\F1D12\";\n}\n\n.mdi2-upload-circle-outline::before {\n  content: \"\\F1D13\";\n}\n\n.mdi2-upload-lock::before {\n  content: \"\\F1373\";\n}\n\n.mdi2-upload-lock-outline::before {\n  content: \"\\F1374\";\n}\n\n.mdi2-upload-multiple::before {\n  content: \"\\F083D\";\n}\n\n.mdi2-upload-multiple-outline::before {\n  content: \"\\F1D14\";\n}\n\n.mdi2-upload-network::before {\n  content: \"\\F06F6\";\n}\n\n.mdi2-upload-network-outline::before {\n  content: \"\\F0CD8\";\n}\n\n.mdi2-upload-off::before {\n  content: \"\\F10C6\";\n}\n\n.mdi2-upload-off-outline::before {\n  content: \"\\F10C7\";\n}\n\n.mdi2-upload-outline::before {\n  content: \"\\F0E07\";\n}\n\n.mdi2-usb::before {\n  content: \"\\F0553\";\n}\n\n.mdi2-usb-c-port::before {\n  content: \"\\F1CBF\";\n}\n\n.mdi2-usb-flash-drive::before {\n  content: \"\\F129E\";\n}\n\n.mdi2-usb-flash-drive-outline::before {\n  content: \"\\F129F\";\n}\n\n.mdi2-usb-port::before {\n  content: \"\\F11F0\";\n}\n\n.mdi2-vacuum::before {\n  content: \"\\F19A1\";\n}\n\n.mdi2-vacuum-outline::before {\n  content: \"\\F19A2\";\n}\n\n.mdi2-valve::before {\n  content: \"\\F1066\";\n}\n\n.mdi2-valve-closed::before {\n  content: \"\\F1067\";\n}\n\n.mdi2-valve-open::before {\n  content: \"\\F1068\";\n}\n\n.mdi2-van-passenger::before {\n  content: \"\\F07FA\";\n}\n\n.mdi2-van-utility::before {\n  content: \"\\F07FB\";\n}\n\n.mdi2-vanish::before {\n  content: \"\\F07FC\";\n}\n\n.mdi2-vanish-quarter::before {\n  content: \"\\F1554\";\n}\n\n.mdi2-vanity-light::before {\n  content: \"\\F11E1\";\n}\n\n.mdi2-variable::before {\n  content: \"\\F0AE7\";\n}\n\n.mdi2-variable-box::before {\n  content: \"\\F1111\";\n}\n\n.mdi2-vector-arrange-above::before {\n  content: \"\\F0554\";\n}\n\n.mdi2-vector-arrange-below::before {\n  content: \"\\F0555\";\n}\n\n.mdi2-vector-bezier::before {\n  content: \"\\F0AE8\";\n}\n\n.mdi2-vector-circle::before {\n  content: \"\\F0556\";\n}\n\n.mdi2-vector-circle-variant::before {\n  content: \"\\F0557\";\n}\n\n.mdi2-vector-combine::before {\n  content: \"\\F0558\";\n}\n\n.mdi2-vector-curve::before {\n  content: \"\\F0559\";\n}\n\n.mdi2-vector-difference::before {\n  content: \"\\F055A\";\n}\n\n.mdi2-vector-difference-ab::before {\n  content: \"\\F055B\";\n}\n\n.mdi2-vector-difference-ba::before {\n  content: \"\\F055C\";\n}\n\n.mdi2-vector-ellipse::before {\n  content: \"\\F0893\";\n}\n\n.mdi2-vector-intersection::before {\n  content: \"\\F055D\";\n}\n\n.mdi2-vector-line::before {\n  content: \"\\F055E\";\n}\n\n.mdi2-vector-link::before {\n  content: \"\\F0FE8\";\n}\n\n.mdi2-vector-point::before {\n  content: \"\\F01C4\";\n}\n\n.mdi2-vector-point-edit::before {\n  content: \"\\F09E8\";\n}\n\n.mdi2-vector-point-minus::before {\n  content: \"\\F1B78\";\n}\n\n.mdi2-vector-point-plus::before {\n  content: \"\\F1B79\";\n}\n\n.mdi2-vector-point-select::before {\n  content: \"\\F055F\";\n}\n\n.mdi2-vector-polygon::before {\n  content: \"\\F0560\";\n}\n\n.mdi2-vector-polygon-variant::before {\n  content: \"\\F1856\";\n}\n\n.mdi2-vector-polyline::before {\n  content: \"\\F0561\";\n}\n\n.mdi2-vector-polyline-edit::before {\n  content: \"\\F1225\";\n}\n\n.mdi2-vector-polyline-minus::before {\n  content: \"\\F1226\";\n}\n\n.mdi2-vector-polyline-plus::before {\n  content: \"\\F1227\";\n}\n\n.mdi2-vector-polyline-remove::before {\n  content: \"\\F1228\";\n}\n\n.mdi2-vector-radius::before {\n  content: \"\\F074A\";\n}\n\n.mdi2-vector-rectangle::before {\n  content: \"\\F05C6\";\n}\n\n.mdi2-vector-selection::before {\n  content: \"\\F0562\";\n}\n\n.mdi2-vector-square::before {\n  content: \"\\F0001\";\n}\n\n.mdi2-vector-square-close::before {\n  content: \"\\F1857\";\n}\n\n.mdi2-vector-square-edit::before {\n  content: \"\\F18D9\";\n}\n\n.mdi2-vector-square-minus::before {\n  content: \"\\F18DA\";\n}\n\n.mdi2-vector-square-open::before {\n  content: \"\\F1858\";\n}\n\n.mdi2-vector-square-plus::before {\n  content: \"\\F18DB\";\n}\n\n.mdi2-vector-square-remove::before {\n  content: \"\\F18DC\";\n}\n\n.mdi2-vector-triangle::before {\n  content: \"\\F0563\";\n}\n\n.mdi2-vector-union::before {\n  content: \"\\F0564\";\n}\n\n.mdi2-vhs::before {\n  content: \"\\F0A1B\";\n}\n\n.mdi2-vibrate::before {\n  content: \"\\F0566\";\n}\n\n.mdi2-vibrate-off::before {\n  content: \"\\F0CD9\";\n}\n\n.mdi2-video::before {\n  content: \"\\F0567\";\n}\n\n.mdi2-video-2d::before {\n  content: \"\\F1A1C\";\n}\n\n.mdi2-video-3d::before {\n  content: \"\\F07FD\";\n}\n\n.mdi2-video-3d-off::before {\n  content: \"\\F13D9\";\n}\n\n.mdi2-video-3d-variant::before {\n  content: \"\\F0ED1\";\n}\n\n.mdi2-video-4k-box::before {\n  content: \"\\F083E\";\n}\n\n.mdi2-video-account::before {\n  content: \"\\F0919\";\n}\n\n.mdi2-video-box::before {\n  content: \"\\F00FD\";\n}\n\n.mdi2-video-box-off::before {\n  content: \"\\F00FE\";\n}\n\n.mdi2-video-check::before {\n  content: \"\\F1069\";\n}\n\n.mdi2-video-check-outline::before {\n  content: \"\\F106A\";\n}\n\n.mdi2-video-high-definition::before {\n  content: \"\\F152E\";\n}\n\n.mdi2-video-image::before {\n  content: \"\\F091A\";\n}\n\n.mdi2-video-input-antenna::before {\n  content: \"\\F083F\";\n}\n\n.mdi2-video-input-component::before {\n  content: \"\\F0840\";\n}\n\n.mdi2-video-input-hdmi::before {\n  content: \"\\F0841\";\n}\n\n.mdi2-video-input-scart::before {\n  content: \"\\F0F8C\";\n}\n\n.mdi2-video-input-svideo::before {\n  content: \"\\F0842\";\n}\n\n.mdi2-video-marker::before {\n  content: \"\\F19A9\";\n}\n\n.mdi2-video-marker-outline::before {\n  content: \"\\F19AA\";\n}\n\n.mdi2-video-minus::before {\n  content: \"\\F09B2\";\n}\n\n.mdi2-video-minus-outline::before {\n  content: \"\\F02BA\";\n}\n\n.mdi2-video-off::before {\n  content: \"\\F0568\";\n}\n\n.mdi2-video-off-outline::before {\n  content: \"\\F0BDB\";\n}\n\n.mdi2-video-outline::before {\n  content: \"\\F0BDC\";\n}\n\n.mdi2-video-plus::before {\n  content: \"\\F09B3\";\n}\n\n.mdi2-video-plus-outline::before {\n  content: \"\\F01D3\";\n}\n\n.mdi2-video-stabilization::before {\n  content: \"\\F091B\";\n}\n\n.mdi2-video-standard-definition::before {\n  content: \"\\F1CA0\";\n}\n\n.mdi2-video-switch::before {\n  content: \"\\F0569\";\n}\n\n.mdi2-video-switch-outline::before {\n  content: \"\\F0790\";\n}\n\n.mdi2-video-vintage::before {\n  content: \"\\F0A1C\";\n}\n\n.mdi2-video-wireless::before {\n  content: \"\\F0ED2\";\n}\n\n.mdi2-video-wireless-outline::before {\n  content: \"\\F0ED3\";\n}\n\n.mdi2-view-agenda::before {\n  content: \"\\F056A\";\n}\n\n.mdi2-view-agenda-outline::before {\n  content: \"\\F11D8\";\n}\n\n.mdi2-view-array::before {\n  content: \"\\F056B\";\n}\n\n.mdi2-view-array-outline::before {\n  content: \"\\F1485\";\n}\n\n.mdi2-view-carousel::before {\n  content: \"\\F056C\";\n}\n\n.mdi2-view-carousel-outline::before {\n  content: \"\\F1486\";\n}\n\n.mdi2-view-column::before {\n  content: \"\\F056D\";\n}\n\n.mdi2-view-column-outline::before {\n  content: \"\\F1487\";\n}\n\n.mdi2-view-comfy::before {\n  content: \"\\F0E6A\";\n}\n\n.mdi2-view-comfy-outline::before {\n  content: \"\\F1488\";\n}\n\n.mdi2-view-compact::before {\n  content: \"\\F0E6B\";\n}\n\n.mdi2-view-compact-outline::before {\n  content: \"\\F0E6C\";\n}\n\n.mdi2-view-dashboard::before {\n  content: \"\\F056E\";\n}\n\n.mdi2-view-dashboard-edit::before {\n  content: \"\\F1947\";\n}\n\n.mdi2-view-dashboard-edit-outline::before {\n  content: \"\\F1948\";\n}\n\n.mdi2-view-dashboard-outline::before {\n  content: \"\\F0A1D\";\n}\n\n.mdi2-view-dashboard-variant::before {\n  content: \"\\F0843\";\n}\n\n.mdi2-view-dashboard-variant-outline::before {\n  content: \"\\F1489\";\n}\n\n.mdi2-view-day::before {\n  content: \"\\F056F\";\n}\n\n.mdi2-view-day-outline::before {\n  content: \"\\F148A\";\n}\n\n.mdi2-view-gallery::before {\n  content: \"\\F1888\";\n}\n\n.mdi2-view-gallery-outline::before {\n  content: \"\\F1889\";\n}\n\n.mdi2-view-grid::before {\n  content: \"\\F0570\";\n}\n\n.mdi2-view-grid-compact::before {\n  content: \"\\F1C61\";\n}\n\n.mdi2-view-grid-outline::before {\n  content: \"\\F11D9\";\n}\n\n.mdi2-view-grid-plus::before {\n  content: \"\\F0F8D\";\n}\n\n.mdi2-view-grid-plus-outline::before {\n  content: \"\\F11DA\";\n}\n\n.mdi2-view-headline::before {\n  content: \"\\F0571\";\n}\n\n.mdi2-view-list::before {\n  content: \"\\F0572\";\n}\n\n.mdi2-view-list-outline::before {\n  content: \"\\F148B\";\n}\n\n.mdi2-view-module::before {\n  content: \"\\F0573\";\n}\n\n.mdi2-view-module-outline::before {\n  content: \"\\F148C\";\n}\n\n.mdi2-view-parallel::before {\n  content: \"\\F0728\";\n}\n\n.mdi2-view-parallel-outline::before {\n  content: \"\\F148D\";\n}\n\n.mdi2-view-quilt::before {\n  content: \"\\F0574\";\n}\n\n.mdi2-view-quilt-outline::before {\n  content: \"\\F148E\";\n}\n\n.mdi2-view-sequential::before {\n  content: \"\\F0729\";\n}\n\n.mdi2-view-sequential-outline::before {\n  content: \"\\F148F\";\n}\n\n.mdi2-view-split-horizontal::before {\n  content: \"\\F0BCB\";\n}\n\n.mdi2-view-split-vertical::before {\n  content: \"\\F0BCC\";\n}\n\n.mdi2-view-stream::before {\n  content: \"\\F0575\";\n}\n\n.mdi2-view-stream-outline::before {\n  content: \"\\F1490\";\n}\n\n.mdi2-view-week::before {\n  content: \"\\F0576\";\n}\n\n.mdi2-view-week-outline::before {\n  content: \"\\F1491\";\n}\n\n.mdi2-vimeo::before {\n  content: \"\\F0577\";\n}\n\n.mdi2-violin::before {\n  content: \"\\F060F\";\n}\n\n.mdi2-virtual-reality::before {\n  content: \"\\F0894\";\n}\n\n.mdi2-virus::before {\n  content: \"\\F13B6\";\n}\n\n.mdi2-virus-off::before {\n  content: \"\\F18E1\";\n}\n\n.mdi2-virus-off-outline::before {\n  content: \"\\F18E2\";\n}\n\n.mdi2-virus-outline::before {\n  content: \"\\F13B7\";\n}\n\n.mdi2-vlc::before {\n  content: \"\\F057C\";\n}\n\n.mdi2-voicemail::before {\n  content: \"\\F057D\";\n}\n\n.mdi2-volcano::before {\n  content: \"\\F1A83\";\n}\n\n.mdi2-volcano-outline::before {\n  content: \"\\F1A84\";\n}\n\n.mdi2-volleyball::before {\n  content: \"\\F09B4\";\n}\n\n.mdi2-volume-equal::before {\n  content: \"\\F1B10\";\n}\n\n.mdi2-volume-high::before {\n  content: \"\\F057E\";\n}\n\n.mdi2-volume-low::before {\n  content: \"\\F057F\";\n}\n\n.mdi2-volume-medium::before {\n  content: \"\\F0580\";\n}\n\n.mdi2-volume-minus::before {\n  content: \"\\F075E\";\n}\n\n.mdi2-volume-mute::before {\n  content: \"\\F075F\";\n}\n\n.mdi2-volume-off::before {\n  content: \"\\F0581\";\n}\n\n.mdi2-volume-plus::before {\n  content: \"\\F075D\";\n}\n\n.mdi2-volume-source::before {\n  content: \"\\F1120\";\n}\n\n.mdi2-volume-variant-off::before {\n  content: \"\\F0E08\";\n}\n\n.mdi2-volume-vibrate::before {\n  content: \"\\F1121\";\n}\n\n.mdi2-vote::before {\n  content: \"\\F0A1F\";\n}\n\n.mdi2-vote-outline::before {\n  content: \"\\F0A20\";\n}\n\n.mdi2-vpn::before {\n  content: \"\\F0582\";\n}\n\n.mdi2-vuejs::before {\n  content: \"\\F0844\";\n}\n\n.mdi2-vuetify::before {\n  content: \"\\F0E6D\";\n}\n\n.mdi2-walk::before {\n  content: \"\\F0583\";\n}\n\n.mdi2-wall::before {\n  content: \"\\F07FE\";\n}\n\n.mdi2-wall-fire::before {\n  content: \"\\F1A11\";\n}\n\n.mdi2-wall-sconce::before {\n  content: \"\\F091C\";\n}\n\n.mdi2-wall-sconce-flat::before {\n  content: \"\\F091D\";\n}\n\n.mdi2-wall-sconce-flat-outline::before {\n  content: \"\\F17C9\";\n}\n\n.mdi2-wall-sconce-flat-variant::before {\n  content: \"\\F041C\";\n}\n\n.mdi2-wall-sconce-flat-variant-outline::before {\n  content: \"\\F17CA\";\n}\n\n.mdi2-wall-sconce-outline::before {\n  content: \"\\F17CB\";\n}\n\n.mdi2-wall-sconce-round::before {\n  content: \"\\F0748\";\n}\n\n.mdi2-wall-sconce-round-outline::before {\n  content: \"\\F17CC\";\n}\n\n.mdi2-wall-sconce-round-variant::before {\n  content: \"\\F091E\";\n}\n\n.mdi2-wall-sconce-round-variant-outline::before {\n  content: \"\\F17CD\";\n}\n\n.mdi2-wallet::before {\n  content: \"\\F0584\";\n}\n\n.mdi2-wallet-bifold::before {\n  content: \"\\F1C58\";\n}\n\n.mdi2-wallet-bifold-outline::before {\n  content: \"\\F1C59\";\n}\n\n.mdi2-wallet-giftcard::before {\n  content: \"\\F0585\";\n}\n\n.mdi2-wallet-membership::before {\n  content: \"\\F0586\";\n}\n\n.mdi2-wallet-outline::before {\n  content: \"\\F0BDD\";\n}\n\n.mdi2-wallet-plus::before {\n  content: \"\\F0F8E\";\n}\n\n.mdi2-wallet-plus-outline::before {\n  content: \"\\F0F8F\";\n}\n\n.mdi2-wallet-travel::before {\n  content: \"\\F0587\";\n}\n\n.mdi2-wallpaper::before {\n  content: \"\\F0E09\";\n}\n\n.mdi2-wan::before {\n  content: \"\\F0588\";\n}\n\n.mdi2-wardrobe::before {\n  content: \"\\F0F90\";\n}\n\n.mdi2-wardrobe-outline::before {\n  content: \"\\F0F91\";\n}\n\n.mdi2-warehouse::before {\n  content: \"\\F0F81\";\n}\n\n.mdi2-washing-machine::before {\n  content: \"\\F072A\";\n}\n\n.mdi2-washing-machine-alert::before {\n  content: \"\\F11BC\";\n}\n\n.mdi2-washing-machine-off::before {\n  content: \"\\F11BD\";\n}\n\n.mdi2-watch::before {\n  content: \"\\F0589\";\n}\n\n.mdi2-watch-export::before {\n  content: \"\\F058A\";\n}\n\n.mdi2-watch-export-variant::before {\n  content: \"\\F0895\";\n}\n\n.mdi2-watch-import::before {\n  content: \"\\F058B\";\n}\n\n.mdi2-watch-import-variant::before {\n  content: \"\\F0896\";\n}\n\n.mdi2-watch-variant::before {\n  content: \"\\F0897\";\n}\n\n.mdi2-watch-vibrate::before {\n  content: \"\\F06B1\";\n}\n\n.mdi2-watch-vibrate-off::before {\n  content: \"\\F0CDA\";\n}\n\n.mdi2-water::before {\n  content: \"\\F058C\";\n}\n\n.mdi2-water-alert::before {\n  content: \"\\F1502\";\n}\n\n.mdi2-water-alert-outline::before {\n  content: \"\\F1503\";\n}\n\n.mdi2-water-boiler::before {\n  content: \"\\F0F92\";\n}\n\n.mdi2-water-boiler-alert::before {\n  content: \"\\F11B3\";\n}\n\n.mdi2-water-boiler-auto::before {\n  content: \"\\F1B98\";\n}\n\n.mdi2-water-boiler-off::before {\n  content: \"\\F11B4\";\n}\n\n.mdi2-water-check::before {\n  content: \"\\F1504\";\n}\n\n.mdi2-water-check-outline::before {\n  content: \"\\F1505\";\n}\n\n.mdi2-water-circle::before {\n  content: \"\\F1806\";\n}\n\n.mdi2-water-minus::before {\n  content: \"\\F1506\";\n}\n\n.mdi2-water-minus-outline::before {\n  content: \"\\F1507\";\n}\n\n.mdi2-water-off::before {\n  content: \"\\F058D\";\n}\n\n.mdi2-water-off-outline::before {\n  content: \"\\F1508\";\n}\n\n.mdi2-water-opacity::before {\n  content: \"\\F1855\";\n}\n\n.mdi2-water-outline::before {\n  content: \"\\F0E0A\";\n}\n\n.mdi2-water-percent::before {\n  content: \"\\F058E\";\n}\n\n.mdi2-water-percent-alert::before {\n  content: \"\\F1509\";\n}\n\n.mdi2-water-plus::before {\n  content: \"\\F150A\";\n}\n\n.mdi2-water-plus-outline::before {\n  content: \"\\F150B\";\n}\n\n.mdi2-water-polo::before {\n  content: \"\\F12A0\";\n}\n\n.mdi2-water-pump::before {\n  content: \"\\F058F\";\n}\n\n.mdi2-water-pump-off::before {\n  content: \"\\F0F93\";\n}\n\n.mdi2-water-remove::before {\n  content: \"\\F150C\";\n}\n\n.mdi2-water-remove-outline::before {\n  content: \"\\F150D\";\n}\n\n.mdi2-water-sync::before {\n  content: \"\\F17C6\";\n}\n\n.mdi2-water-thermometer::before {\n  content: \"\\F1A85\";\n}\n\n.mdi2-water-thermometer-outline::before {\n  content: \"\\F1A86\";\n}\n\n.mdi2-water-well::before {\n  content: \"\\F106B\";\n}\n\n.mdi2-water-well-outline::before {\n  content: \"\\F106C\";\n}\n\n.mdi2-waterfall::before {\n  content: \"\\F1849\";\n}\n\n.mdi2-watering-can::before {\n  content: \"\\F1481\";\n}\n\n.mdi2-watering-can-outline::before {\n  content: \"\\F1482\";\n}\n\n.mdi2-watermark::before {\n  content: \"\\F0612\";\n}\n\n.mdi2-wave::before {\n  content: \"\\F0F2E\";\n}\n\n.mdi2-wave-arrow-down::before {\n  content: \"\\F1CB0\";\n}\n\n.mdi2-wave-arrow-up::before {\n  content: \"\\F1CB1\";\n}\n\n.mdi2-wave-undercurrent::before {\n  content: \"\\F1CC0\";\n}\n\n.mdi2-waveform::before {\n  content: \"\\F147D\";\n}\n\n.mdi2-waves::before {\n  content: \"\\F078D\";\n}\n\n.mdi2-waves-arrow-left::before {\n  content: \"\\F1859\";\n}\n\n.mdi2-waves-arrow-right::before {\n  content: \"\\F185A\";\n}\n\n.mdi2-waves-arrow-up::before {\n  content: \"\\F185B\";\n}\n\n.mdi2-waze::before {\n  content: \"\\F0BDE\";\n}\n\n.mdi2-weather-cloudy::before {\n  content: \"\\F0590\";\n}\n\n.mdi2-weather-cloudy-alert::before {\n  content: \"\\F0F2F\";\n}\n\n.mdi2-weather-cloudy-arrow-right::before {\n  content: \"\\F0E6E\";\n}\n\n.mdi2-weather-cloudy-clock::before {\n  content: \"\\F18F6\";\n}\n\n.mdi2-weather-dust::before {\n  content: \"\\F1B5A\";\n}\n\n.mdi2-weather-fog::before {\n  content: \"\\F0591\";\n}\n\n.mdi2-weather-hail::before {\n  content: \"\\F0592\";\n}\n\n.mdi2-weather-hazy::before {\n  content: \"\\F0F30\";\n}\n\n.mdi2-weather-hurricane::before {\n  content: \"\\F0898\";\n}\n\n.mdi2-weather-hurricane-outline::before {\n  content: \"\\F1C78\";\n}\n\n.mdi2-weather-lightning::before {\n  content: \"\\F0593\";\n}\n\n.mdi2-weather-lightning-rainy::before {\n  content: \"\\F067E\";\n}\n\n.mdi2-weather-moonset::before {\n  content: \"\\F1D15\";\n}\n\n.mdi2-weather-moonset-down::before {\n  content: \"\\F1D16\";\n}\n\n.mdi2-weather-moonset-up::before {\n  content: \"\\F1D17\";\n}\n\n.mdi2-weather-night::before {\n  content: \"\\F0594\";\n}\n\n.mdi2-weather-night-partly-cloudy::before {\n  content: \"\\F0F31\";\n}\n\n.mdi2-weather-partly-cloudy::before {\n  content: \"\\F0595\";\n}\n\n.mdi2-weather-partly-lightning::before {\n  content: \"\\F0F32\";\n}\n\n.mdi2-weather-partly-rainy::before {\n  content: \"\\F0F33\";\n}\n\n.mdi2-weather-partly-snowy::before {\n  content: \"\\F0F34\";\n}\n\n.mdi2-weather-partly-snowy-rainy::before {\n  content: \"\\F0F35\";\n}\n\n.mdi2-weather-pouring::before {\n  content: \"\\F0596\";\n}\n\n.mdi2-weather-rainy::before {\n  content: \"\\F0597\";\n}\n\n.mdi2-weather-snowy::before {\n  content: \"\\F0598\";\n}\n\n.mdi2-weather-snowy-heavy::before {\n  content: \"\\F0F36\";\n}\n\n.mdi2-weather-snowy-rainy::before {\n  content: \"\\F067F\";\n}\n\n.mdi2-weather-sunny::before {\n  content: \"\\F0599\";\n}\n\n.mdi2-weather-sunny-alert::before {\n  content: \"\\F0F37\";\n}\n\n.mdi2-weather-sunny-off::before {\n  content: \"\\F14E4\";\n}\n\n.mdi2-weather-sunset::before {\n  content: \"\\F059A\";\n}\n\n.mdi2-weather-sunset-down::before {\n  content: \"\\F059B\";\n}\n\n.mdi2-weather-sunset-up::before {\n  content: \"\\F059C\";\n}\n\n.mdi2-weather-tornado::before {\n  content: \"\\F0F38\";\n}\n\n.mdi2-weather-windy::before {\n  content: \"\\F059D\";\n}\n\n.mdi2-weather-windy-variant::before {\n  content: \"\\F059E\";\n}\n\n.mdi2-web::before {\n  content: \"\\F059F\";\n}\n\n.mdi2-web-box::before {\n  content: \"\\F0F94\";\n}\n\n.mdi2-web-cancel::before {\n  content: \"\\F1790\";\n}\n\n.mdi2-web-check::before {\n  content: \"\\F0789\";\n}\n\n.mdi2-web-clock::before {\n  content: \"\\F124A\";\n}\n\n.mdi2-web-minus::before {\n  content: \"\\F10A0\";\n}\n\n.mdi2-web-off::before {\n  content: \"\\F0A8E\";\n}\n\n.mdi2-web-plus::before {\n  content: \"\\F0033\";\n}\n\n.mdi2-web-refresh::before {\n  content: \"\\F1791\";\n}\n\n.mdi2-web-remove::before {\n  content: \"\\F0551\";\n}\n\n.mdi2-web-sync::before {\n  content: \"\\F1792\";\n}\n\n.mdi2-webcam::before {\n  content: \"\\F05A0\";\n}\n\n.mdi2-webcam-off::before {\n  content: \"\\F1737\";\n}\n\n.mdi2-webhook::before {\n  content: \"\\F062F\";\n}\n\n.mdi2-webpack::before {\n  content: \"\\F072B\";\n}\n\n.mdi2-webrtc::before {\n  content: \"\\F1248\";\n}\n\n.mdi2-wechat::before {\n  content: \"\\F0611\";\n}\n\n.mdi2-weight::before {\n  content: \"\\F05A1\";\n}\n\n.mdi2-weight-gram::before {\n  content: \"\\F0D3F\";\n}\n\n.mdi2-weight-kilogram::before {\n  content: \"\\F05A2\";\n}\n\n.mdi2-weight-lifter::before {\n  content: \"\\F115D\";\n}\n\n.mdi2-weight-pound::before {\n  content: \"\\F09B5\";\n}\n\n.mdi2-whatsapp::before {\n  content: \"\\F05A3\";\n}\n\n.mdi2-wheel-barrow::before {\n  content: \"\\F14F2\";\n}\n\n.mdi2-wheelchair::before {\n  content: \"\\F1A87\";\n}\n\n.mdi2-wheelchair-accessibility::before {\n  content: \"\\F05A4\";\n}\n\n.mdi2-whistle::before {\n  content: \"\\F09B6\";\n}\n\n.mdi2-whistle-outline::before {\n  content: \"\\F12BC\";\n}\n\n.mdi2-white-balance-auto::before {\n  content: \"\\F05A5\";\n}\n\n.mdi2-white-balance-incandescent::before {\n  content: \"\\F05A6\";\n}\n\n.mdi2-white-balance-iridescent::before {\n  content: \"\\F05A7\";\n}\n\n.mdi2-white-balance-sunny::before {\n  content: \"\\F05A8\";\n}\n\n.mdi2-widgets::before {\n  content: \"\\F072C\";\n}\n\n.mdi2-widgets-outline::before {\n  content: \"\\F1355\";\n}\n\n.mdi2-wifi::before {\n  content: \"\\F05A9\";\n}\n\n.mdi2-wifi-alert::before {\n  content: \"\\F16B5\";\n}\n\n.mdi2-wifi-arrow-down::before {\n  content: \"\\F16B6\";\n}\n\n.mdi2-wifi-arrow-left::before {\n  content: \"\\F16B7\";\n}\n\n.mdi2-wifi-arrow-left-right::before {\n  content: \"\\F16B8\";\n}\n\n.mdi2-wifi-arrow-right::before {\n  content: \"\\F16B9\";\n}\n\n.mdi2-wifi-arrow-up::before {\n  content: \"\\F16BA\";\n}\n\n.mdi2-wifi-arrow-up-down::before {\n  content: \"\\F16BB\";\n}\n\n.mdi2-wifi-cancel::before {\n  content: \"\\F16BC\";\n}\n\n.mdi2-wifi-check::before {\n  content: \"\\F16BD\";\n}\n\n.mdi2-wifi-cog::before {\n  content: \"\\F16BE\";\n}\n\n.mdi2-wifi-lock::before {\n  content: \"\\F16BF\";\n}\n\n.mdi2-wifi-lock-open::before {\n  content: \"\\F16C0\";\n}\n\n.mdi2-wifi-marker::before {\n  content: \"\\F16C1\";\n}\n\n.mdi2-wifi-minus::before {\n  content: \"\\F16C2\";\n}\n\n.mdi2-wifi-off::before {\n  content: \"\\F05AA\";\n}\n\n.mdi2-wifi-plus::before {\n  content: \"\\F16C3\";\n}\n\n.mdi2-wifi-refresh::before {\n  content: \"\\F16C4\";\n}\n\n.mdi2-wifi-remove::before {\n  content: \"\\F16C5\";\n}\n\n.mdi2-wifi-settings::before {\n  content: \"\\F16C6\";\n}\n\n.mdi2-wifi-star::before {\n  content: \"\\F0E0B\";\n}\n\n.mdi2-wifi-strength-1::before {\n  content: \"\\F091F\";\n}\n\n.mdi2-wifi-strength-1-alert::before {\n  content: \"\\F0920\";\n}\n\n.mdi2-wifi-strength-1-lock::before {\n  content: \"\\F0921\";\n}\n\n.mdi2-wifi-strength-1-lock-open::before {\n  content: \"\\F16CB\";\n}\n\n.mdi2-wifi-strength-2::before {\n  content: \"\\F0922\";\n}\n\n.mdi2-wifi-strength-2-alert::before {\n  content: \"\\F0923\";\n}\n\n.mdi2-wifi-strength-2-lock::before {\n  content: \"\\F0924\";\n}\n\n.mdi2-wifi-strength-2-lock-open::before {\n  content: \"\\F16CC\";\n}\n\n.mdi2-wifi-strength-3::before {\n  content: \"\\F0925\";\n}\n\n.mdi2-wifi-strength-3-alert::before {\n  content: \"\\F0926\";\n}\n\n.mdi2-wifi-strength-3-lock::before {\n  content: \"\\F0927\";\n}\n\n.mdi2-wifi-strength-3-lock-open::before {\n  content: \"\\F16CD\";\n}\n\n.mdi2-wifi-strength-4::before {\n  content: \"\\F0928\";\n}\n\n.mdi2-wifi-strength-4-alert::before {\n  content: \"\\F0929\";\n}\n\n.mdi2-wifi-strength-4-lock::before {\n  content: \"\\F092A\";\n}\n\n.mdi2-wifi-strength-4-lock-open::before {\n  content: \"\\F16CE\";\n}\n\n.mdi2-wifi-strength-alert-outline::before {\n  content: \"\\F092B\";\n}\n\n.mdi2-wifi-strength-lock-open-outline::before {\n  content: \"\\F16CF\";\n}\n\n.mdi2-wifi-strength-lock-outline::before {\n  content: \"\\F092C\";\n}\n\n.mdi2-wifi-strength-off::before {\n  content: \"\\F092D\";\n}\n\n.mdi2-wifi-strength-off-outline::before {\n  content: \"\\F092E\";\n}\n\n.mdi2-wifi-strength-outline::before {\n  content: \"\\F092F\";\n}\n\n.mdi2-wifi-sync::before {\n  content: \"\\F16C7\";\n}\n\n.mdi2-wikipedia::before {\n  content: \"\\F05AC\";\n}\n\n.mdi2-wind-power::before {\n  content: \"\\F1A88\";\n}\n\n.mdi2-wind-power-outline::before {\n  content: \"\\F1A89\";\n}\n\n.mdi2-wind-turbine::before {\n  content: \"\\F0DA5\";\n}\n\n.mdi2-wind-turbine-alert::before {\n  content: \"\\F19AB\";\n}\n\n.mdi2-wind-turbine-check::before {\n  content: \"\\F19AC\";\n}\n\n.mdi2-window-close::before {\n  content: \"\\F05AD\";\n}\n\n.mdi2-window-closed::before {\n  content: \"\\F05AE\";\n}\n\n.mdi2-window-closed-variant::before {\n  content: \"\\F11DB\";\n}\n\n.mdi2-window-maximize::before {\n  content: \"\\F05AF\";\n}\n\n.mdi2-window-minimize::before {\n  content: \"\\F05B0\";\n}\n\n.mdi2-window-open::before {\n  content: \"\\F05B1\";\n}\n\n.mdi2-window-open-variant::before {\n  content: \"\\F11DC\";\n}\n\n.mdi2-window-restore::before {\n  content: \"\\F05B2\";\n}\n\n.mdi2-window-shutter::before {\n  content: \"\\F111C\";\n}\n\n.mdi2-window-shutter-alert::before {\n  content: \"\\F111D\";\n}\n\n.mdi2-window-shutter-auto::before {\n  content: \"\\F1BA3\";\n}\n\n.mdi2-window-shutter-cog::before {\n  content: \"\\F1A8A\";\n}\n\n.mdi2-window-shutter-open::before {\n  content: \"\\F111E\";\n}\n\n.mdi2-window-shutter-settings::before {\n  content: \"\\F1A8B\";\n}\n\n.mdi2-windsock::before {\n  content: \"\\F15FA\";\n}\n\n.mdi2-wiper::before {\n  content: \"\\F0AE9\";\n}\n\n.mdi2-wiper-wash::before {\n  content: \"\\F0DA6\";\n}\n\n.mdi2-wiper-wash-alert::before {\n  content: \"\\F18DF\";\n}\n\n.mdi2-wizard-hat::before {\n  content: \"\\F1477\";\n}\n\n.mdi2-wordpress::before {\n  content: \"\\F05B4\";\n}\n\n.mdi2-wrap::before {\n  content: \"\\F05B6\";\n}\n\n.mdi2-wrap-disabled::before {\n  content: \"\\F0BDF\";\n}\n\n.mdi2-wrench::before {\n  content: \"\\F05B7\";\n}\n\n.mdi2-wrench-check::before {\n  content: \"\\F1B8F\";\n}\n\n.mdi2-wrench-check-outline::before {\n  content: \"\\F1B90\";\n}\n\n.mdi2-wrench-clock::before {\n  content: \"\\F19A3\";\n}\n\n.mdi2-wrench-clock-outline::before {\n  content: \"\\F1B93\";\n}\n\n.mdi2-wrench-cog::before {\n  content: \"\\F1B91\";\n}\n\n.mdi2-wrench-cog-outline::before {\n  content: \"\\F1B92\";\n}\n\n.mdi2-wrench-outline::before {\n  content: \"\\F0BE0\";\n}\n\n.mdi2-xamarin::before {\n  content: \"\\F0845\";\n}\n\n.mdi2-xml::before {\n  content: \"\\F05C0\";\n}\n\n.mdi2-xmpp::before {\n  content: \"\\F07FF\";\n}\n\n.mdi2-yahoo::before {\n  content: \"\\F0B4F\";\n}\n\n.mdi2-yeast::before {\n  content: \"\\F05C1\";\n}\n\n.mdi2-yin-yang::before {\n  content: \"\\F0680\";\n}\n\n.mdi2-yoga::before {\n  content: \"\\F117C\";\n}\n\n.mdi2-youtube::before {\n  content: \"\\F05C3\";\n}\n\n.mdi2-youtube-gaming::before {\n  content: \"\\F0848\";\n}\n\n.mdi2-youtube-studio::before {\n  content: \"\\F0847\";\n}\n\n.mdi2-youtube-subscription::before {\n  content: \"\\F0D40\";\n}\n\n.mdi2-youtube-tv::before {\n  content: \"\\F0448\";\n}\n\n.mdi2-yurt::before {\n  content: \"\\F1516\";\n}\n\n.mdi2-z-wave::before {\n  content: \"\\F0AEA\";\n}\n\n.mdi2-zend::before {\n  content: \"\\F0AEB\";\n}\n\n.mdi2-zigbee::before {\n  content: \"\\F0D41\";\n}\n\n.mdi2-zip-box::before {\n  content: \"\\F05C4\";\n}\n\n.mdi2-zip-box-outline::before {\n  content: \"\\F0FFA\";\n}\n\n.mdi2-zip-disk::before {\n  content: \"\\F0A23\";\n}\n\n.mdi2-zodiac-aquarius::before {\n  content: \"\\F0A7D\";\n}\n\n.mdi2-zodiac-aries::before {\n  content: \"\\F0A7E\";\n}\n\n.mdi2-zodiac-cancer::before {\n  content: \"\\F0A7F\";\n}\n\n.mdi2-zodiac-capricorn::before {\n  content: \"\\F0A80\";\n}\n\n.mdi2-zodiac-gemini::before {\n  content: \"\\F0A81\";\n}\n\n.mdi2-zodiac-leo::before {\n  content: \"\\F0A82\";\n}\n\n.mdi2-zodiac-libra::before {\n  content: \"\\F0A83\";\n}\n\n.mdi2-zodiac-pisces::before {\n  content: \"\\F0A84\";\n}\n\n.mdi2-zodiac-sagittarius::before {\n  content: \"\\F0A85\";\n}\n\n.mdi2-zodiac-scorpio::before {\n  content: \"\\F0A86\";\n}\n\n.mdi2-zodiac-taurus::before {\n  content: \"\\F0A87\";\n}\n\n.mdi2-zodiac-virgo::before {\n  content: \"\\F0A88\";\n}\n\n.mdi2-blank::before {\n  content: \"\\F68C\";\n  visibility: hidden;\n}\n\n.mdi2-18px.mdi2-set, .mdi2-18px.mdi:before {\n  font-size: 18px;\n}\n\n.mdi2-24px.mdi2-set, .mdi2-24px.mdi:before {\n  font-size: 24px;\n}\n\n.mdi2-36px.mdi2-set, .mdi2-36px.mdi:before {\n  font-size: 36px;\n}\n\n.mdi2-48px.mdi2-set, .mdi2-48px.mdi:before {\n  font-size: 48px;\n}\n\n.mdi2-dark:before {\n  color: rgba(0, 0, 0, 0.54);\n}\n\n.mdi2-dark.mdi2-inactive:before {\n  color: rgba(0, 0, 0, 0.26);\n}\n\n.mdi2-light:before {\n  color: white;\n}\n\n.mdi2-light.mdi2-inactive:before {\n  color: rgba(255, 255, 255, 0.3);\n}\n\n.mdi2-rotate-45 {\n  /*\n        // Not included in production\n        &.mdi2-flip-h:before {\n            -webkit-transform: scaleX(-1) rotate(45deg);\n            transform: scaleX(-1) rotate(45deg);\n            filter: FlipH;\n            -ms-filter: \"FlipH\";\n        }\n        &.mdi2-flip-v:before {\n            -webkit-transform: scaleY(-1) rotate(45deg);\n            -ms-transform: rotate(45deg);\n            transform: scaleY(-1) rotate(45deg);\n            filter: FlipV;\n            -ms-filter: \"FlipV\";\n        }\n        */\n}\n\n.mdi2-rotate-45:before {\n  -webkit-transform: rotate(45deg);\n  -ms-transform: rotate(45deg);\n  transform: rotate(45deg);\n}\n\n.mdi2-rotate-90 {\n  /*\n        // Not included in production\n        &.mdi2-flip-h:before {\n            -webkit-transform: scaleX(-1) rotate(90deg);\n            transform: scaleX(-1) rotate(90deg);\n            filter: FlipH;\n            -ms-filter: \"FlipH\";\n        }\n        &.mdi2-flip-v:before {\n            -webkit-transform: scaleY(-1) rotate(90deg);\n            -ms-transform: rotate(90deg);\n            transform: scaleY(-1) rotate(90deg);\n            filter: FlipV;\n            -ms-filter: \"FlipV\";\n        }\n        */\n}\n\n.mdi2-rotate-90:before {\n  -webkit-transform: rotate(90deg);\n  -ms-transform: rotate(90deg);\n  transform: rotate(90deg);\n}\n\n.mdi2-rotate-135 {\n  /*\n        // Not included in production\n        &.mdi2-flip-h:before {\n            -webkit-transform: scaleX(-1) rotate(135deg);\n            transform: scaleX(-1) rotate(135deg);\n            filter: FlipH;\n            -ms-filter: \"FlipH\";\n        }\n        &.mdi2-flip-v:before {\n            -webkit-transform: scaleY(-1) rotate(135deg);\n            -ms-transform: rotate(135deg);\n            transform: scaleY(-1) rotate(135deg);\n            filter: FlipV;\n            -ms-filter: \"FlipV\";\n        }\n        */\n}\n\n.mdi2-rotate-135:before {\n  -webkit-transform: rotate(135deg);\n  -ms-transform: rotate(135deg);\n  transform: rotate(135deg);\n}\n\n.mdi2-rotate-180 {\n  /*\n        // Not included in production\n        &.mdi2-flip-h:before {\n            -webkit-transform: scaleX(-1) rotate(180deg);\n            transform: scaleX(-1) rotate(180deg);\n            filter: FlipH;\n            -ms-filter: \"FlipH\";\n        }\n        &.mdi2-flip-v:before {\n            -webkit-transform: scaleY(-1) rotate(180deg);\n            -ms-transform: rotate(180deg);\n            transform: scaleY(-1) rotate(180deg);\n            filter: FlipV;\n            -ms-filter: \"FlipV\";\n        }\n        */\n}\n\n.mdi2-rotate-180:before {\n  -webkit-transform: rotate(180deg);\n  -ms-transform: rotate(180deg);\n  transform: rotate(180deg);\n}\n\n.mdi2-rotate-225 {\n  /*\n        // Not included in production\n        &.mdi2-flip-h:before {\n            -webkit-transform: scaleX(-1) rotate(225deg);\n            transform: scaleX(-1) rotate(225deg);\n            filter: FlipH;\n            -ms-filter: \"FlipH\";\n        }\n        &.mdi2-flip-v:before {\n            -webkit-transform: scaleY(-1) rotate(225deg);\n            -ms-transform: rotate(225deg);\n            transform: scaleY(-1) rotate(225deg);\n            filter: FlipV;\n            -ms-filter: \"FlipV\";\n        }\n        */\n}\n\n.mdi2-rotate-225:before {\n  -webkit-transform: rotate(225deg);\n  -ms-transform: rotate(225deg);\n  transform: rotate(225deg);\n}\n\n.mdi2-rotate-270 {\n  /*\n        // Not included in production\n        &.mdi2-flip-h:before {\n            -webkit-transform: scaleX(-1) rotate(270deg);\n            transform: scaleX(-1) rotate(270deg);\n            filter: FlipH;\n            -ms-filter: \"FlipH\";\n        }\n        &.mdi2-flip-v:before {\n            -webkit-transform: scaleY(-1) rotate(270deg);\n            -ms-transform: rotate(270deg);\n            transform: scaleY(-1) rotate(270deg);\n            filter: FlipV;\n            -ms-filter: \"FlipV\";\n        }\n        */\n}\n\n.mdi2-rotate-270:before {\n  -webkit-transform: rotate(270deg);\n  -ms-transform: rotate(270deg);\n  transform: rotate(270deg);\n}\n\n.mdi2-rotate-315 {\n  /*\n        // Not included in production\n        &.mdi2-flip-h:before {\n            -webkit-transform: scaleX(-1) rotate(315deg);\n            transform: scaleX(-1) rotate(315deg);\n            filter: FlipH;\n            -ms-filter: \"FlipH\";\n        }\n        &.mdi2-flip-v:before {\n            -webkit-transform: scaleY(-1) rotate(315deg);\n            -ms-transform: rotate(315deg);\n            transform: scaleY(-1) rotate(315deg);\n            filter: FlipV;\n            -ms-filter: \"FlipV\";\n        }\n        */\n}\n\n.mdi2-rotate-315:before {\n  -webkit-transform: rotate(315deg);\n  -ms-transform: rotate(315deg);\n  transform: rotate(315deg);\n}\n\n.mdi2-flip-h:before {\n  -webkit-transform: scaleX(-1);\n  transform: scaleX(-1);\n  filter: FlipH;\n  -ms-filter: \"FlipH\";\n}\n\n.mdi2-flip-v:before {\n  -webkit-transform: scaleY(-1);\n  transform: scaleY(-1);\n  filter: FlipV;\n  -ms-filter: \"FlipV\";\n}\n\n.mdi2-spin:before {\n  -webkit-animation: mdi2-spin 2s infinite linear;\n  animation: mdi2-spin 2s infinite linear;\n}\n\n@-webkit-keyframes mdi2-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n    transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n    transform: rotate(359deg);\n  }\n}\n\n@keyframes mdi2-spin {\n  0% {\n    -webkit-transform: rotate(0deg);\n    transform: rotate(0deg);\n  }\n  100% {\n    -webkit-transform: rotate(359deg);\n    transform: rotate(359deg);\n  }\n}\n\n/*# sourceMappingURL=materialdesignicons.css.map */"
  },
  {
    "path": "icon-packs/ikonli-medicons-pack/ikonli-medicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-medicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.medicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.medicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.medicons.MediconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.medicons.MediconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-medicons-pack/src/main/java/org/kordamp/ikonli/medicons/Medicons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.medicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Medicons implements Ikon {\n    ACCESSIBILITY(\"medicon-accessibility\", '\\ue643'),\n    ACCESSIBILITY_SQUARE(\"medicon-accessibility-square\", '\\ue671'),\n    ADMINISTRATION(\"medicon-administration\", '\\ue624'),\n    ADMINISTRATION_SQUARE(\"medicon-administration-square\", '\\ue670'),\n    ALTERNATIVE_COMPLEMENTARY(\"medicon-alternative-complementary\", '\\ue623'),\n    ALTERNATIVE_COMPLEMENTARY_SQUARE(\"medicon-alternative-complementary-square\", '\\ue66f'),\n    AMBULANCE(\"medicon-ambulance\", '\\ue622'),\n    AMBULANCE_SQUARE(\"medicon-ambulance-square\", '\\ue66e'),\n    ANESTHESIA(\"medicon-anesthesia\", '\\ue621'),\n    ANESTHESIA_SQUARE(\"medicon-anesthesia-square\", '\\ue66d'),\n    BILLING(\"medicon-billing\", '\\ue620'),\n    BILLING_SQUARE(\"medicon-billing-square\", '\\ue66c'),\n    CARDIOLOGY(\"medicon-cardiology\", '\\ue61f'),\n    CARDIOLOGY_SQUARE(\"medicon-cardiology-square\", '\\ue66b'),\n    CARE_STAFF_AREA(\"medicon-care-staff-area\", '\\ue642'),\n    CARE_STAFF_AREA_SQUARE(\"medicon-care-staff-area-square\", '\\ue68d'),\n    CATH_LAB(\"medicon-cath-lab\", '\\ue641'),\n    CATH_LAB_SQUARE(\"medicon-cath-lab-square\", '\\ue68c'),\n    CHAPEL(\"medicon-chapel\", '\\ue640'),\n    CHAPEL_SQUARE(\"medicon-chapel-square\", '\\ue68b'),\n    COFFEE_SHOP(\"medicon-coffee-shop\", '\\ue63f'),\n    COFFEE_SHOP_SQUARE(\"medicon-coffee-shop-square\", '\\ue68a'),\n    DENTAL(\"medicon-dental\", '\\ue63e'),\n    DENTAL_SQUARE(\"medicon-dental-square\", '\\ue689'),\n    DERMATOLOGY(\"medicon-dermatology\", '\\ue63d'),\n    DERMATOLOGY_SQUARE(\"medicon-dermatology-square\", '\\ue68f'),\n    DIABETES_EDUCATION(\"medicon-diabetes-education\", '\\ue644'),\n    DIABETES_EDUCATION_SQUARE(\"medicon-diabetes-education-square\", '\\ue66a'),\n    DRINKING_FOUNTAIN(\"medicon-drinking-fountain\", '\\ue61e'),\n    DRINKING_FOUNTAIN_SQUARE(\"medicon-drinking-fountain-square\", '\\ue669'),\n    EAR_NOSE_THROAT(\"medicon-ear-nose-throat\", '\\ue61d'),\n    EAR_NOSE_THROAT_SQUARE(\"medicon-ear-nose-throat-square\", '\\ue668'),\n    ELEVATORS(\"medicon-elevators\", '\\ue61c'),\n    ELEVATORS_SQUARE(\"medicon-elevators-square\", '\\ue667'),\n    EMERGENCY(\"medicon-emergency\", '\\ue61b'),\n    EMERGENCY_SQUARE(\"medicon-emergency-square\", '\\ue666'),\n    FAMILY_PRACTICE(\"medicon-family-practice\", '\\ue61a'),\n    FAMILY_PRACTICE_SQUARE(\"medicon-family-practice-square\", '\\ue665'),\n    FIRE_EXTINGUISHER(\"medicon-fire-extinguisher\", '\\ue619'),\n    FIRE_EXTINGUISHER_SQUARE(\"medicon-fire-extinguisher-square\", '\\ue664'),\n    FIRST_AID(\"medicon-first-aid\", '\\ue63c'),\n    FIRST_AID_SQUARE(\"medicon-first-aid-square\", '\\ue688'),\n    GENETICS(\"medicon-genetics\", '\\ue63b'),\n    GENETICS_SQUARE(\"medicon-genetics-square\", '\\ue687'),\n    GIFT_SHOP(\"medicon-gift-shop\", '\\ue63a'),\n    GIFT_SHOP_SQUARE(\"medicon-gift-shop-square\", '\\ue686'),\n    HEALTH_EDUCATION(\"medicon-health-education\", '\\ue639'),\n    HEALTH_EDUCATION_SQUARE(\"medicon-health-education-square\", '\\ue685'),\n    HEALTH_SERVICES(\"medicon-health-services\", '\\ue638'),\n    HEALTH_SERVICES_SQUARE(\"medicon-health-services-square\", '\\ue684'),\n    HEARING_ASSISTANCE(\"medicon-hearing-assistance\", '\\ue637'),\n    HEARING_ASSISTANCE_SQUARE(\"medicon-hearing-assistance-square\", '\\ue683'),\n    HOSPITAL(\"medicon-hospital\", '\\ue645'),\n    HOSPITAL_SQUARE(\"medicon-hospital-square\", '\\ue663'),\n    IMAGING_ALTERNATIVE_CT(\"medicon-imaging-alternative-ct\", '\\ue618'),\n    IMAGING_ALTERNATIVE_CT_SQUARE(\"medicon-imaging-alternative-ct-square\", '\\ue662'),\n    IMAGING_ALTERNATIVE_MRI(\"medicon-imaging-alternative-mri\", '\\ue616'),\n    IMAGING_ALTERNATIVE_MRI_SQUARE(\"medicon-imaging-alternative-mri-square\", '\\ue660'),\n    IMAGING_ALTERNATIVE_MRI_TWO(\"medicon-imaging-alternative-mri-two\", '\\ue617'),\n    IMAGING_ALTERNATIVE_MRI_TWO_SQUARE(\"medicon-imaging-alternative-mri-two-square\", '\\ue661'),\n    IMAGING_ALTERNATIVE_PET(\"medicon-imaging-alternative-pet\", '\\ue615'),\n    IMAGING_ALTERNATIVE_PET_SQUARE(\"medicon-imaging-alternative-pet-square\", '\\ue65f'),\n    IMAGING_ROOT_CATEGORY(\"medicon-imaging-root-category\", '\\ue614'),\n    IMAGING_ROOT_CATEGORY_SQUARE(\"medicon-imaging-root-category-square\", '\\ue65e'),\n    IMMUNIZATIONS(\"medicon-immunizations\", '\\ue613'),\n    IMMUNIZATIONS_SQUARE(\"medicon-immunizations-square\", '\\ue65d'),\n    INFECTIOUS_DISEASES(\"medicon-infectious-diseases\", '\\ue636'),\n    INFECTIOUS_DISEASES_SQUARE(\"medicon-infectious-diseases-square\", '\\ue682'),\n    INFORMATION_US(\"medicon-information-us\", '\\ue635'),\n    INFORMATION_US_SQUARE(\"medicon-information-us-square\", '\\ue681'),\n    INPATIENT(\"medicon-inpatient\", '\\ue634'),\n    INPATIENT_SQUARE(\"medicon-inpatient-square\", '\\ue680'),\n    INTENSIVE_CARE(\"medicon-intensive-care\", '\\ue633'),\n    INTENSIVE_CARE_SQUARE(\"medicon-intensive-care-square\", '\\ue67f'),\n    INTERNAL_MEDICINE(\"medicon-internal-medicine\", '\\ue632'),\n    INTERNAL_MEDICINE_SQUARE(\"medicon-internal-medicine-square\", '\\ue67e'),\n    INTERPRETER_SERVICES(\"medicon-interpreter-services\", '\\ue631'),\n    INTERPRETER_SERVICES_SQUARE(\"medicon-interpreter-services-square\", '\\ue67d'),\n    KIDNEY(\"medicon-kidney\", '\\ue646'),\n    KIDNEY_SQUARE(\"medicon-kidney-square\", '\\ue65c'),\n    LABORATORY(\"medicon-laboratory\", '\\ue611'),\n    LABORATORY_SQUARE(\"medicon-laboratory-square\", '\\ue65a'),\n    LABOR_DELIVERY(\"medicon-labor-delivery\", '\\ue612'),\n    LABOR_DELIVERY_SQUARE(\"medicon-labor-delivery-square\", '\\ue65b'),\n    MAMMOGRAPHY(\"medicon-mammography\", '\\ue610'),\n    MAMMOGRAPHY_SQUARE(\"medicon-mammography-square\", '\\ue659'),\n    MEDICAL_LIBRARY(\"medicon-medical-library\", '\\ue60f'),\n    MEDICAL_LIBRARY_SQUARE(\"medicon-medical-library-square\", '\\ue658'),\n    MEDICAL_RECORDS(\"medicon-medical-records\", '\\ue60e'),\n    MEDICAL_RECORDS_SQUARE(\"medicon-medical-records-square\", '\\ue657'),\n    MENTAL_HEALTH(\"medicon-mental-health\", '\\ue60d'),\n    MENTAL_HEALTH_SQUARE(\"medicon-mental-health-square\", '\\ue656'),\n    MRI_PET(\"medicon-mri-pet\", '\\ue630'),\n    MRI_PET_SQUARE(\"medicon-mri-pet-square\", '\\ue67c'),\n    NEUROLOGY(\"medicon-neurology\", '\\ue62f'),\n    NEUROLOGY_SQUARE(\"medicon-neurology-square\", '\\ue67b'),\n    NO_SMOKING(\"medicon-no-smoking\", '\\ue62e'),\n    NO_SMOKING_SQUARE(\"medicon-no-smoking-square\", '\\ue67a'),\n    NURSERY(\"medicon-nursery\", '\\ue62d'),\n    NURSERY_SQUARE(\"medicon-nursery-square\", '\\ue679'),\n    NUTRITION(\"medicon-nutrition\", '\\ue62c'),\n    NUTRITION_SQUARE(\"medicon-nutrition-square\", '\\ue678'),\n    ONCOLOGY(\"medicon-oncology\", '\\ue62b'),\n    ONCOLOGY_SQUARE(\"medicon-oncology-square\", '\\ue677'),\n    OPHTHALMOLOGY(\"medicon-ophthalmology\", '\\ue647'),\n    OPHTHALMOLOGY_SQUARE(\"medicon-ophthalmology-square\", '\\ue655'),\n    OUTPATIENT(\"medicon-outpatient\", '\\ue60c'),\n    OUTPATIENT_SQUARE(\"medicon-outpatient-square\", '\\ue654'),\n    PATHOLOGY(\"medicon-pathology\", '\\ue60b'),\n    PATHOLOGY_SQUARE(\"medicon-pathology-square\", '\\ue653'),\n    PEDIATRICS(\"medicon-pediatrics\", '\\ue60a'),\n    PEDIATRICS_SQUARE(\"medicon-pediatrics-square\", '\\ue652'),\n    PHARMACY(\"medicon-pharmacy\", '\\ue609'),\n    PHARMACY_SQUARE(\"medicon-pharmacy-square\", '\\ue651'),\n    PHYSICAL_THERAPY(\"medicon-physical-therapy\", '\\ue608'),\n    PHYSICAL_THERAPY_SQUARE(\"medicon-physical-therapy-square\", '\\ue650'),\n    RADIOLOGY(\"medicon-radiology\", '\\ue607'),\n    RADIOLOGY_SQUARE(\"medicon-radiology-square\", '\\ue64f'),\n    REGISTRATION(\"medicon-registration\", '\\ue62a'),\n    REGISTRATION_SQUARE(\"medicon-registration-square\", '\\ue68e'),\n    RESPIRATORY(\"medicon-respiratory\", '\\ue629'),\n    RESPIRATORY_SQUARE(\"medicon-respiratory-square\", '\\ue676'),\n    RESTAURANT(\"medicon-restaurant\", '\\ue628'),\n    RESTAURANT_SQUARE(\"medicon-restaurant-square\", '\\ue675'),\n    RESTROOMS(\"medicon-restrooms\", '\\ue627'),\n    RESTROOMS_SQUARE(\"medicon-restrooms-square\", '\\ue674'),\n    SMOKING(\"medicon-smoking\", '\\ue626'),\n    SMOKING_SQUARE(\"medicon-smoking-square\", '\\ue673'),\n    SOCIAL_SERVICES(\"medicon-social-services\", '\\ue625'),\n    SOCIAL_SERVICES_SQUARE(\"medicon-social-services-square\", '\\ue672'),\n    STAIRS(\"medicon-stairs\", '\\ue606'),\n    STAIRS_SQUARE(\"medicon-stairs-square\", '\\ue64e'),\n    SURGERY(\"medicon-surgery\", '\\ue605'),\n    SURGERY_SQUARE(\"medicon-surgery-square\", '\\ue64d'),\n    TEXT_TELEPHONE(\"medicon-text-telephone\", '\\ue604'),\n    TEXT_TELEPHONE_SQUARE(\"medicon-text-telephone-square\", '\\ue64c'),\n    ULTRASOUND(\"medicon-ultrasound\", '\\ue603'),\n    ULTRASOUND_SQUARE(\"medicon-ultrasound-square\", '\\ue64b'),\n    VOLUME_CONTROL(\"medicon-volume-control\", '\\ue602'),\n    VOLUME_CONTROL_SQUARE(\"medicon-volume-control-square\", '\\ue64a'),\n    WAITING_AREA(\"medicon-waiting-area\", '\\ue601'),\n    WAITING_AREA_SQUARE(\"medicon-waiting-area-square\", '\\ue649'),\n    WOMENS_HEALTH(\"medicon-womens-health\", '\\ue600'),\n    WOMENS_HEALTH_SQUARE(\"medicon-womens-health-square\", '\\ue648');\n\n    public static Medicons findByDescription(String description) {\n        for (Medicons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Medicons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-medicons-pack/src/main/java/org/kordamp/ikonli/medicons/MediconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.medicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MediconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/medicons/20170612/fonts/webfont-medical-icons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"medicon-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Medicons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"webfont-medical-icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-medicons-pack/src/main/java/org/kordamp/ikonli/medicons/MediconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.medicons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class MediconsIkonProvider implements IkonProvider<Medicons> {\n    @Override\n    public Class<Medicons> getIkon() {\n        return Medicons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-medicons-pack/src/main/resources/META-INF/resources/medicons/20170612/css/medicons.css",
    "content": "@font-face {\n    font-family: 'webfont-medical-icons';\n    src: url(\"../fonts/webfont-medical-icons.eot\");\n    src: url(\"../fonts/webfont-medical-icons.eot?#iefix\") format(\"embedded-opentype\"), url(\"../fonts/webfont-medical-icons.ttf\") format(\"truetype\"), url(\"../fonts/webfont-medical-icons.woff\") format(\"woff\"), url(\"../fonts/webfont-medical-icons.svg#webfont-medical-icons\") format(\"svg\");\n    font-weight: normal;\n    font-style: normal;\n}\n\n[class^=\"medicon-\"], [class*=\" medicon-\"] {\n    font-family: 'webfont-medical-icons';\n    speak: none;\n    font-style: normal;\n    font-weight: normal;\n    font-variant: normal;\n    text-transform: none;\n    line-height: 1;\n\n    /* Better Font Rendering =========== */\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n}\n\n.medicon-accessibility:before { content: \"\\e643\"; }\n.medicon-accessibility-square:before { content: \"\\e671\"; }\n.medicon-administration:before { content: \"\\e624\"; }\n.medicon-administration-square:before { content: \"\\e670\"; }\n.medicon-alternative-complementary:before { content: \"\\e623\"; }\n.medicon-alternative-complementary-square:before { content: \"\\e66f\"; }\n.medicon-ambulance:before { content: \"\\e622\"; }\n.medicon-ambulance-square:before { content: \"\\e66e\"; }\n.medicon-anesthesia:before { content: \"\\e621\"; }\n.medicon-anesthesia-square:before { content: \"\\e66d\"; }\n.medicon-billing:before { content: \"\\e620\"; }\n.medicon-billing-square:before { content: \"\\e66c\"; }\n.medicon-cardiology:before { content: \"\\e61f\"; }\n.medicon-cardiology-square:before { content: \"\\e66b\"; }\n.medicon-care-staff-area:before { content: \"\\e642\"; }\n.medicon-care-staff-area-square:before { content: \"\\e68d\"; }\n.medicon-cath-lab:before { content: \"\\e641\"; }\n.medicon-cath-lab-square:before { content: \"\\e68c\"; }\n.medicon-chapel:before { content: \"\\e640\"; }\n.medicon-chapel-square:before { content: \"\\e68b\"; }\n.medicon-coffee-shop:before { content: \"\\e63f\"; }\n.medicon-coffee-shop-square:before { content: \"\\e68a\"; }\n.medicon-dental:before { content: \"\\e63e\"; }\n.medicon-dental-square:before { content: \"\\e689\"; }\n.medicon-dermatology:before { content: \"\\e63d\"; }\n.medicon-dermatology-square:before { content: \"\\e68f\"; }\n.medicon-diabetes-education:before { content: \"\\e644\"; }\n.medicon-diabetes-education-square:before { content: \"\\e66a\"; }\n.medicon-drinking-fountain:before { content: \"\\e61e\"; }\n.medicon-drinking-fountain-square:before { content: \"\\e669\"; }\n.medicon-ear-nose-throat:before { content: \"\\e61d\"; }\n.medicon-ear-nose-throat-square:before { content: \"\\e668\"; }\n.medicon-elevators:before { content: \"\\e61c\"; }\n.medicon-elevators-square:before { content: \"\\e667\"; }\n.medicon-emergency:before { content: \"\\e61b\"; }\n.medicon-emergency-square:before { content: \"\\e666\"; }\n.medicon-family-practice:before { content: \"\\e61a\"; }\n.medicon-family-practice-square:before { content: \"\\e665\"; }\n.medicon-fire-extinguisher:before { content: \"\\e619\"; }\n.medicon-fire-extinguisher-square:before { content: \"\\e664\"; }\n.medicon-first-aid:before { content: \"\\e63c\"; }\n.medicon-first-aid-square:before { content: \"\\e688\"; }\n.medicon-genetics:before { content: \"\\e63b\"; }\n.medicon-genetics-square:before { content: \"\\e687\"; }\n.medicon-gift-shop:before { content: \"\\e63a\"; }\n.medicon-gift-shop-square:before { content: \"\\e686\"; }\n.medicon-health-education:before { content: \"\\e639\"; }\n.medicon-health-education-square:before { content: \"\\e685\"; }\n.medicon-health-services:before { content: \"\\e638\"; }\n.medicon-health-services-square:before { content: \"\\e684\"; }\n.medicon-hearing-assistance:before { content: \"\\e637\"; }\n.medicon-hearing-assistance-square:before { content: \"\\e683\"; }\n.medicon-hospital:before { content: \"\\e645\"; }\n.medicon-hospital-square:before { content: \"\\e663\"; }\n.medicon-imaging-alternative-ct:before { content: \"\\e618\"; }\n.medicon-imaging-alternative-ct-square:before { content: \"\\e662\"; }\n.medicon-imaging-alternative-mri:before { content: \"\\e616\"; }\n.medicon-imaging-alternative-mri-square:before { content: \"\\e660\"; }\n.medicon-imaging-alternative-mri-two:before { content: \"\\e617\"; }\n.medicon-imaging-alternative-mri-two-square:before { content: \"\\e661\"; }\n.medicon-imaging-alternative-pet:before { content: \"\\e615\"; }\n.medicon-imaging-alternative-pet-square:before { content: \"\\e65f\"; }\n.medicon-imaging-root-category:before { content: \"\\e614\"; }\n.medicon-imaging-root-category-square:before { content: \"\\e65e\"; }\n.medicon-immunizations:before { content: \"\\e613\"; }\n.medicon-immunizations-square:before { content: \"\\e65d\"; }\n.medicon-infectious-diseases:before { content: \"\\e636\"; }\n.medicon-infectious-diseases-square:before { content: \"\\e682\"; }\n.medicon-information-us:before { content: \"\\e635\"; }\n.medicon-information-us-square:before { content: \"\\e681\"; }\n.medicon-inpatient:before { content: \"\\e634\"; }\n.medicon-inpatient-square:before { content: \"\\e680\"; }\n.medicon-intensive-care:before { content: \"\\e633\"; }\n.medicon-intensive-care-square:before { content: \"\\e67f\"; }\n.medicon-internal-medicine:before { content: \"\\e632\"; }\n.medicon-internal-medicine-square:before { content: \"\\e67e\"; }\n.medicon-interpreter-services:before { content: \"\\e631\"; }\n.medicon-interpreter-services-square:before { content: \"\\e67d\"; }\n.medicon-kidney:before { content: \"\\e646\"; }\n.medicon-kidney-square:before { content: \"\\e65c\"; }\n.medicon-labor-delivery:before { content: \"\\e612\"; }\n.medicon-labor-delivery-square:before { content: \"\\e65b\"; }\n.medicon-laboratory:before { content: \"\\e611\"; }\n.medicon-laboratory-square:before { content: \"\\e65a\"; }\n.medicon-mammography:before { content: \"\\e610\"; }\n.medicon-mammography-square:before { content: \"\\e659\"; }\n.medicon-medical-library:before { content: \"\\e60f\"; }\n.medicon-medical-library-square:before { content: \"\\e658\"; }\n.medicon-medical-records:before { content: \"\\e60e\"; }\n.medicon-medical-records-square:before { content: \"\\e657\"; }\n.medicon-mental-health:before { content: \"\\e60d\"; }\n.medicon-mental-health-square:before { content: \"\\e656\"; }\n.medicon-mri-pet:before { content: \"\\e630\"; }\n.medicon-mri-pet-square:before { content: \"\\e67c\"; }\n.medicon-neurology:before { content: \"\\e62f\"; }\n.medicon-neurology-square:before { content: \"\\e67b\"; }\n.medicon-no-smoking:before { content: \"\\e62e\"; }\n.medicon-no-smoking-square:before { content: \"\\e67a\"; }\n.medicon-nursery:before { content: \"\\e62d\"; }\n.medicon-nursery-square:before { content: \"\\e679\"; }\n.medicon-nutrition:before { content: \"\\e62c\"; }\n.medicon-nutrition-square:before { content: \"\\e678\"; }\n.medicon-oncology:before { content: \"\\e62b\"; }\n.medicon-oncology-square:before { content: \"\\e677\"; }\n.medicon-ophthalmology:before { content: \"\\e647\"; }\n.medicon-ophthalmology-square:before { content: \"\\e655\"; }\n.medicon-outpatient:before { content: \"\\e60c\"; }\n.medicon-outpatient-square:before { content: \"\\e654\"; }\n.medicon-pathology:before { content: \"\\e60b\"; }\n.medicon-pathology-square:before { content: \"\\e653\"; }\n.medicon-pediatrics:before { content: \"\\e60a\"; }\n.medicon-pediatrics-square:before { content: \"\\e652\"; }\n.medicon-pharmacy:before { content: \"\\e609\"; }\n.medicon-pharmacy-square:before { content: \"\\e651\"; }\n.medicon-physical-therapy:before { content: \"\\e608\"; }\n.medicon-physical-therapy-square:before { content: \"\\e650\"; }\n.medicon-radiology:before { content: \"\\e607\"; }\n.medicon-radiology-square:before { content: \"\\e64f\"; }\n.medicon-registration:before { content: \"\\e62a\"; }\n.medicon-registration-square:before { content: \"\\e68e\"; }\n.medicon-respiratory:before { content: \"\\e629\"; }\n.medicon-respiratory-square:before { content: \"\\e676\"; }\n.medicon-restaurant:before { content: \"\\e628\"; }\n.medicon-restaurant-square:before { content: \"\\e675\"; }\n.medicon-restrooms:before { content: \"\\e627\"; }\n.medicon-restrooms-square:before { content: \"\\e674\"; }\n.medicon-smoking:before { content: \"\\e626\"; }\n.medicon-smoking-square:before { content: \"\\e673\"; }\n.medicon-social-services:before { content: \"\\e625\"; }\n.medicon-social-services-square:before { content: \"\\e672\"; }\n.medicon-stairs:before { content: \"\\e606\"; }\n.medicon-stairs-square:before { content: \"\\e64e\"; }\n.medicon-surgery:before { content: \"\\e605\"; }\n.medicon-surgery-square:before { content: \"\\e64d\"; }\n.medicon-text-telephone:before { content: \"\\e604\"; }\n.medicon-text-telephone-square:before { content: \"\\e64c\"; }\n.medicon-ultrasound:before { content: \"\\e603\"; }\n.medicon-ultrasound-square:before { content: \"\\e64b\"; }\n.medicon-volume-control:before { content: \"\\e602\"; }\n.medicon-volume-control-square:before { content: \"\\e64a\"; }\n.medicon-waiting-area:before { content: \"\\e601\"; }\n.medicon-waiting-area-square:before { content: \"\\e649\"; }\n.medicon-womens-health:before { content: \"\\e600\"; }\n.medicon-womens-health-square:before { content: \"\\e648\"; }"
  },
  {
    "path": "icon-packs/ikonli-metrizeicons-pack/ikonli-metrizeicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-metrizeicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.metrizeicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.metrizeicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.metrizeicons.MetrizeIconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.metrizeicons.MetrizeIconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-metrizeicons-pack/src/main/java/org/kordamp/ikonli/metrizeicons/MetrizeIcons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.metrizeicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum MetrizeIcons implements Ikon {\n    // latest is e12b\n    MET_ADJUST(\"met-adjust\", '\\ue12a'),\n    MET_AIR_PLANE(\"met-air-plane\", '\\ue129'),\n    MET_ALARM_CLOCK(\"met-alarm-clock\", '\\ue128'),\n    MET_ANIMAL_FOOTPRINT(\"met-animal-footprint\", '\\ue127'),\n    MET_ARROW_CURVE_LEFT(\"met-arrow-curve-left\", '\\ue126'),\n    MET_ARROW_CURVE_RECYCLE(\"met-arrow-curve-recycle\", '\\ue125'),\n    MET_ARROW_CURVE_RIGHT(\"met-arrow-curve-right\", '\\ue124'),\n    MET_ARROW_CYCLE(\"met-arrow-cycle\", '\\ue123'),\n    MET_ARROW_CYCLING(\"met-arrow-cycling\", '\\ue122'),\n    MET_ARROW_DOWN(\"met-arrow-down\", '\\ue11c'),\n    MET_ARROW_DOWN_BIG(\"met-arrow-down-big\", '\\ue121'),\n    MET_ARROW_DOWN_BOLD(\"met-arrow-down-bold\", '\\ue11f'),\n    MET_ARROW_DOWN_BOLD_ROUND(\"met-arrow-down-bold-round\", '\\ue120'),\n    MET_ARROW_DOWN_LIGHT(\"met-arrow-down-light\", '\\ue11e'),\n    MET_ARROW_DOWN_THIN(\"met-arrow-down-thin\", '\\ue11d'),\n    MET_ARROW_FILL_DOWN(\"met-arrow-fill-down\", '\\ue11b'),\n    MET_ARROW_FILL_LEFT(\"met-arrow-fill-left\", '\\ue11a'),\n    MET_ARROW_FILL_RIGHT(\"met-arrow-fill-right\", '\\ue119'),\n    MET_ARROW_FILL_UP(\"met-arrow-fill-up\", '\\ue118'),\n    MET_ARROW_LEFT(\"met-arrow-left\", '\\ue112'),\n    MET_ARROW_LEFT_BIG(\"met-arrow-left-big\", '\\ue117'),\n    MET_ARROW_LEFT_BOLD(\"met-arrow-left-bold\", '\\ue115'),\n    MET_ARROW_LEFT_BOLD_ROUND(\"met-arrow-left-bold-round\", '\\ue116'),\n    MET_ARROW_LEFT_LIGHT(\"met-arrow-left-light\", '\\ue114'),\n    MET_ARROW_LEFT_THIN(\"met-arrow-left-thin\", '\\ue113'),\n    MET_ARROW_MULTI_LINE_DOWN(\"met-arrow-multi-line-down\", '\\ue111'),\n    MET_ARROW_MULTI_LINE_LEFT(\"met-arrow-multi-line-left\", '\\ue110'),\n    MET_ARROW_MULTI_LINE_RIGHT(\"met-arrow-multi-line-right\", '\\ue10f'),\n    MET_ARROW_MULTI_LINE_UP(\"met-arrow-multi-line-up\", '\\ue10e'),\n    MET_ARROW_OBLIQUE_CONTRACT(\"met-arrow-oblique-contract\", '\\ue10c'),\n    MET_ARROW_OBLIQUE_CONTRACT_DIRECTIONS(\"met-arrow-oblique-contract-directions\", '\\ue10d'),\n    MET_ARROW_OBLIQUE_EXPAND(\"met-arrow-oblique-expand\", '\\ue10a'),\n    MET_ARROW_OBLIQUE_EXPAND_DIRECTIONS(\"met-arrow-oblique-expand-directions\", '\\ue10b'),\n    MET_ARROW_RIGHT(\"met-arrow-right\", '\\ue104'),\n    MET_ARROW_RIGHT_BIG(\"met-arrow-right-big\", '\\ue109'),\n    MET_ARROW_RIGHT_BOLD(\"met-arrow-right-bold\", '\\ue107'),\n    MET_ARROW_RIGHT_BOLD_ROUND(\"met-arrow-right-bold-round\", '\\ue108'),\n    MET_ARROW_RIGHT_LIGHT(\"met-arrow-right-light\", '\\ue106'),\n    MET_ARROW_RIGHT_THIN(\"met-arrow-right-thin\", '\\ue105'),\n    MET_ARROW_UP(\"met-arrow-up\", '\\ue0fe'),\n    MET_ARROW_UP_BIG(\"met-arrow-up-big\", '\\ue103'),\n    MET_ARROW_UP_BOLD(\"met-arrow-up-bold\", '\\ue101'),\n    MET_ARROW_UP_BOLD_ROUND(\"met-arrow-up-bold-round\", '\\ue102'),\n    MET_ARROW_UP_LIGHT(\"met-arrow-up-light\", '\\ue100'),\n    MET_ARROW_UP_THIN(\"met-arrow-up-thin\", '\\ue0ff'),\n    MET_ATOM(\"met-atom\", '\\ue0fd'),\n    MET_AXIS_RULES(\"met-axis-rules\", '\\ue0fc'),\n    MET_BACKWARD(\"met-backward\", '\\ue0fb'),\n    MET_BAG(\"met-bag\", '\\ue0fa'),\n    MET_BAN_CIRCLE(\"met-ban-circle\", '\\ue0f9'),\n    MET_BARS(\"met-bars\", '\\ue0f8'),\n    MET_BEZIER(\"met-bezier\", '\\ue0f7'),\n    MET_BLANK(\"met-blank\", '\\ue0f6'),\n    MET_BLOCK_MENU(\"met-block-menu\", '\\ue0f5'),\n    MET_BOLT(\"met-bolt\", '\\ue0f4'),\n    MET_BOX_ADD(\"met-box-add\", '\\ue0f3'),\n    MET_BOX_BLANK(\"met-box-blank\", '\\ue0f2'),\n    MET_BOX_CLOSE(\"met-box-close\", '\\ue0f1'),\n    MET_BOX_REMOVE(\"met-box-remove\", '\\ue0f0'),\n    MET_BROWSER_SIZES(\"met-browser-sizes\", '\\ue0ef'),\n    MET_BRUSH(\"met-brush\", '\\ue0ee'),\n    MET_BUTTON_ADD(\"met-button-add\", '\\ue0ed'),\n    MET_BUTTON_CHECK(\"met-button-check\", '\\ue0ec'),\n    MET_BUTTON_CLOSE(\"met-button-close\", '\\ue0eb'),\n    MET_BUTTON_EMAIL(\"met-button-email\", '\\ue0ea'),\n    MET_BUTTON_EXCLAMATION(\"met-button-exclamation\", '\\ue0e9'),\n    MET_BUTTON_MINUS(\"met-button-minus\", '\\ue0e8'),\n    MET_BUTTON_QUESTION(\"met-button-question\", '\\ue0e7'),\n    MET_CAMERA(\"met-camera\", '\\ue0e6'),\n    MET_CD_DVD_ROM(\"met-cd-dvd-rom\", '\\ue0e5'),\n    MET_CHART_DOWN(\"met-chart-down\", '\\ue0e4'),\n    MET_CHAT(\"met-chat\", '\\ue0e3'),\n    MET_CHECK(\"met-check\", '\\ue0e2'),\n    MET_CIRCLES(\"met-circles\", '\\ue0e1'),\n    MET_CLOCK(\"met-clock\", '\\ue0e0'),\n    MET_CLOUD(\"met-cloud\", '\\ue0db'),\n    MET_CLOUD_ADD(\"met-cloud-add\", '\\ue0df'),\n    MET_CLOUD_DOWNLOAD(\"met-cloud-download\", '\\ue0de'),\n    MET_CLOUD_REMOVE(\"met-cloud-remove\", '\\ue0dd'),\n    MET_CLOUD_UPLOAD(\"met-cloud-upload\", '\\ue0dc'),\n    MET_COINS(\"met-coins\", '\\ue0da'),\n    MET_COMMENT(\"met-comment\", '\\ue0d9'),\n    MET_COMMENTS(\"met-comments\", '\\ue0d8'),\n    MET_COMPASS(\"met-compass\", '\\ue0d6'),\n    MET_COMPASS_2(\"met-compass-2\", '\\ue0d7'),\n    MET_CONTRACT_DIRECTIONS(\"met-contract-directions\", '\\ue0d5'),\n    MET_CONTRACT_HORIZONTAL(\"met-contract-horizontal\", '\\ue0d4'),\n    MET_CONTRACT_VERTICAL(\"met-contract-vertical\", '\\ue0d3'),\n    MET_COPY_DOCUMENT(\"met-copy-document\", '\\ue0d2'),\n    MET_COPY_PASTE_DOCUMENT(\"met-copy-paste-document\", '\\ue0d1'),\n    MET_CREDIT_CARD(\"met-credit-card\", '\\ue0d0'),\n    MET_CROSS(\"met-cross\", '\\ue0cf'),\n    MET_CUBE(\"met-cube\", '\\ue12b'),\n    MET_DIRECTIONS(\"met-directions\", '\\ue0ce'),\n    MET_DOCUMENT(\"met-document\", '\\ue0cc'),\n    MET_DOCUMENTS(\"met-documents\", '\\ue0cb'),\n    MET_DOCUMENT_FILL(\"met-document-fill\", '\\ue0cd'),\n    MET_DOLLAR(\"met-dollar\", '\\ue0ca'),\n    MET_DOT_CIRCLE(\"met-dot-circle\", '\\ue0c9'),\n    MET_DOT_LINE(\"met-dot-line\", '\\ue0c8'),\n    MET_DOT_SQUARE(\"met-dot-square\", '\\ue0c7'),\n    MET_DOUBLE_DIAMONDS(\"met-double-diamonds\", '\\ue0c6'),\n    MET_DOWNLOAD(\"met-download\", '\\ue0c3'),\n    MET_DOWNLOAD_SELECTION(\"met-download-selection\", '\\ue0c4'),\n    MET_DOWNLOAD_SELECTION_CIRCLE(\"met-download-selection-circle\", '\\ue0c5'),\n    MET_DROP(\"met-drop\", '\\ue0c2'),\n    MET_DROPS(\"met-drops\", '\\ue0c1'),\n    MET_EJECT(\"met-eject\", '\\ue0c0'),\n    MET_EMAIL_ADD(\"met-email-add\", '\\ue0bf'),\n    MET_EMAIL_CLOSE(\"met-email-close\", '\\ue0be'),\n    MET_EMAIL_DOWNLOAD(\"met-email-download\", '\\ue0bd'),\n    MET_EMAIL_LUMINOSITY(\"met-email-luminosity\", '\\ue0bc'),\n    MET_EMAIL_REMOVE(\"met-email-remove\", '\\ue0bb'),\n    MET_EMAIL_SPAM(\"met-email-spam\", '\\ue0ba'),\n    MET_EMAIL_UPLOAD(\"met-email-upload\", '\\ue0b9'),\n    MET_EURO(\"met-euro\", '\\ue0b8'),\n    MET_EXCLAMATION(\"met-exclamation\", '\\ue0b7'),\n    MET_EXPAND(\"met-expand\", '\\ue0b3'),\n    MET_EXPAND_DIRECTIONS(\"met-expand-directions\", '\\ue0b6'),\n    MET_EXPAND_HORIZONTAL(\"met-expand-horizontal\", '\\ue0b5'),\n    MET_EXPAND_VERTICAL(\"met-expand-vertical\", '\\ue0b4'),\n    MET_EYE(\"met-eye\", '\\ue0b1'),\n    MET_EYE_DISABLED(\"met-eye-disabled\", '\\ue0b2'),\n    MET_FEMALE_SYMBOL(\"met-female-symbol\", '\\ue0b0'),\n    MET_FIRE(\"met-fire\", '\\ue0af'),\n    MET_FORWARD(\"met-forward\", '\\ue0ae'),\n    MET_GRAPHS(\"met-graphs\", '\\ue0ad'),\n    MET_GRIDS(\"met-grids\", '\\ue0ab'),\n    MET_GRID_BIG(\"met-grid-big\", '\\ue0ac'),\n    MET_HDD(\"met-hdd\", '\\ue0a8'),\n    MET_HDD_NET(\"met-hdd-net\", '\\ue0aa'),\n    MET_HDD_RAID(\"met-hdd-raid\", '\\ue0a9'),\n    MET_HEART(\"met-heart\", '\\ue0a7'),\n    MET_HOME_WIFI(\"met-home-wifi\", '\\ue0a6'),\n    MET_IDEA(\"met-idea\", '\\ue0a5'),\n    MET_INFO(\"met-info\", '\\ue0a4'),\n    MET_ITALIC(\"met-italic\", '\\ue0a3'),\n    MET_KEY(\"met-key\", '\\ue0a2'),\n    MET_LANDSCAPE(\"met-landscape\", '\\ue0a1'),\n    MET_LAYERS(\"met-layers\", '\\ue0a0'),\n    MET_LEAF(\"met-leaf\", '\\ue09f'),\n    MET_LEFT_RIGHT(\"met-left-right\", '\\ue09e'),\n    MET_LIKE_ADD(\"met-like-add\", '\\ue09d'),\n    MET_LIKE_BAN(\"met-like-ban\", '\\ue09c'),\n    MET_LIKE_CLOSE(\"met-like-close\", '\\ue09b'),\n    MET_LIKE_DOWNLOAD(\"met-like-download\", '\\ue09a'),\n    MET_LIKE_REMOVE(\"met-like-remove\", '\\ue099'),\n    MET_LIKE_UPLOAD(\"met-like-upload\", '\\ue098'),\n    MET_LIMIT_DIRECTIONS(\"met-limit-directions\", '\\ue097'),\n    MET_LINE_THROUGH(\"met-line-through\", '\\ue096'),\n    MET_LINK_URL(\"met-link-url\", '\\ue095'),\n    MET_LIST_CIRCLE(\"met-list-circle\", '\\ue094'),\n    MET_LIST_SQUARE(\"met-list-square\", '\\ue093'),\n    MET_LOCATION(\"met-location\", '\\ue091'),\n    MET_LOCATION_MAPS(\"met-location-maps\", '\\ue092'),\n    MET_LOCKED(\"met-locked\", '\\ue090'),\n    MET_LOGIN_LOCK_REFRESH(\"met-login-lock-refresh\", '\\ue08f'),\n    MET_MAGIC_WAND(\"met-magic-wand\", '\\ue08e'),\n    MET_MAGNET(\"met-magnet\", '\\ue08d'),\n    MET_MAIL(\"met-mail\", '\\ue08c'),\n    MET_MAILBOX(\"met-mailbox\", '\\ue08b'),\n    MET_MALE_SYMBOL(\"met-male-symbol\", '\\ue08a'),\n    MET_MAP(\"met-map\", '\\ue089'),\n    MET_MARKER(\"met-marker\", '\\ue085'),\n    MET_MARKER_ADD(\"met-marker-add\", '\\ue088'),\n    MET_MARKER_MINUS(\"met-marker-minus\", '\\ue087'),\n    MET_MARKER_POINTS(\"met-marker-points\", '\\ue086'),\n    MET_MINUS(\"met-minus\", '\\ue084'),\n    MET_MULTI_BORDERS(\"met-multi-borders\", '\\ue083'),\n    MET_MUSIC(\"met-music\", '\\ue082'),\n    MET_NEXT_FAST_STEP(\"met-next-fast-step\", '\\ue081'),\n    MET_NEXT_STEP(\"met-next-step\", '\\ue080'),\n    MET_NUMBER_EIGHT(\"met-number-eight\", '\\ue07f'),\n    MET_NUMBER_FIVE(\"met-number-five\", '\\ue07e'),\n    MET_NUMBER_FOUR(\"met-number-four\", '\\ue07d'),\n    MET_NUMBER_NINE(\"met-number-nine\", '\\ue07c'),\n    MET_NUMBER_ONE(\"met-number-one\", '\\ue07b'),\n    MET_NUMBER_SEVEN(\"met-number-seven\", '\\ue07a'),\n    MET_NUMBER_SIX(\"met-number-six\", '\\ue079'),\n    MET_NUMBER_THREE(\"met-number-three\", '\\ue078'),\n    MET_NUMBER_TWO(\"met-number-two\", '\\ue077'),\n    MET_NUMBER_ZERO(\"met-number-zero\", '\\ue076'),\n    MET_OFF(\"met-off\", '\\ue075'),\n    MET_OFFICINE(\"met-officine\", '\\ue073'),\n    MET_OFFICINE_2(\"met-officine-2\", '\\ue074'),\n    MET_OPTIONS_SETTINGS(\"met-options-settings\", '\\ue072'),\n    MET_PAPERCLIP(\"met-paperclip\", '\\ue070'),\n    MET_PAPERCLIP_OBLIQUE(\"met-paperclip-oblique\", '\\ue071'),\n    MET_PAUSE(\"met-pause\", '\\ue06f'),\n    MET_PIG_MONEY(\"met-pig-money\", '\\ue06e'),\n    MET_PIN(\"met-pin\", '\\ue06c'),\n    MET_PIN_MAP(\"met-pin-map\", '\\ue06d'),\n    MET_PLAY(\"met-play\", '\\ue06b'),\n    MET_PLUS(\"met-plus\", '\\ue06a'),\n    MET_PODCAST(\"met-podcast\", '\\ue069'),\n    MET_POUNDS(\"met-pounds\", '\\ue068'),\n    MET_PREVIOUS_FAST_STEP(\"met-previous-fast-step\", '\\ue066'),\n    MET_PREV_STEP(\"met-prev-step\", '\\ue067'),\n    MET_QUESTION(\"met-question\", '\\ue065'),\n    MET_QUOTE(\"met-quote\", '\\ue064'),\n    MET_RANDOM(\"met-random\", '\\ue063'),\n    MET_REC(\"met-rec\", '\\ue062'),\n    MET_REFRESH(\"met-refresh\", '\\ue061'),\n    MET_REPORT_COMMENT(\"met-report-comment\", '\\ue060'),\n    MET_RETWEET(\"met-retweet\", '\\ue05f'),\n    MET_RSS(\"met-rss\", '\\ue05e'),\n    MET_RULES(\"met-rules\", '\\ue05d'),\n    MET_SCALE(\"met-scale\", '\\ue05c'),\n    MET_SEARCH(\"met-search\", '\\ue05b'),\n    MET_SELECT_CIRCLE(\"met-select-circle\", '\\ue05a'),\n    MET_SELECT_SQUARE(\"met-select-square\", '\\ue059'),\n    MET_SETTING(\"met-setting\", '\\ue058'),\n    MET_SETTINGS(\"met-settings\", '\\ue057'),\n    MET_SHIELD(\"met-shield\", '\\ue056'),\n    MET_SIGN_FEMALE(\"met-sign-female\", '\\ue055'),\n    MET_SIGN_MALE(\"met-sign-male\", '\\ue054'),\n    MET_SLIDERS(\"met-sliders\", '\\ue052'),\n    MET_SLIDERS_VERTICAL(\"met-sliders-vertical\", '\\ue053'),\n    MET_SNOW(\"met-snow\", '\\ue051'),\n    MET_SOCIAL_500PX(\"met-social-500px\", '\\ue050'),\n    MET_SOCIAL_ADDTHIS(\"met-social-addthis\", '\\ue04f'),\n    MET_SOCIAL_BEBO(\"met-social-bebo\", '\\ue04e'),\n    MET_SOCIAL_BEHANCE(\"met-social-behance\", '\\ue04d'),\n    MET_SOCIAL_BLOGGER(\"met-social-blogger\", '\\ue04c'),\n    MET_SOCIAL_DEVIANTART(\"met-social-deviantart\", '\\ue04b'),\n    MET_SOCIAL_DIGG(\"met-social-digg\", '\\ue04a'),\n    MET_SOCIAL_DRIBBBLE(\"met-social-dribbble\", '\\ue049'),\n    MET_SOCIAL_EMAIL(\"met-social-email\", '\\ue048'),\n    MET_SOCIAL_ENVATO(\"met-social-envato\", '\\ue047'),\n    MET_SOCIAL_EVERNOTE(\"met-social-evernote\", '\\ue046'),\n    MET_SOCIAL_FACEBOOK(\"met-social-facebook\", '\\ue045'),\n    MET_SOCIAL_FLICKR(\"met-social-flickr\", '\\ue044'),\n    MET_SOCIAL_FORRST(\"met-social-forrst\", '\\ue043'),\n    MET_SOCIAL_GITHUB(\"met-social-github\", '\\ue042'),\n    MET_SOCIAL_GOOGLE_PLUS(\"met-social-google-plus\", '\\ue041'),\n    MET_SOCIAL_GROOVESHARK(\"met-social-grooveshark\", '\\ue040'),\n    MET_SOCIAL_LAST_FM(\"met-social-last-fm\", '\\ue03f'),\n    MET_SOCIAL_LINKEDIN(\"met-social-linkedin\", '\\ue03e'),\n    MET_SOCIAL_MYSPACE(\"met-social-myspace\", '\\ue03d'),\n    MET_SOCIAL_PAYPAL(\"met-social-paypal\", '\\ue03c'),\n    MET_SOCIAL_PHOTOBUCKET(\"met-social-photobucket\", '\\ue03b'),\n    MET_SOCIAL_PINTEREST(\"met-social-pinterest\", '\\ue03a'),\n    MET_SOCIAL_QUORA(\"met-social-quora\", '\\ue039'),\n    MET_SOCIAL_SHARETHIS(\"met-social-sharethis\", '\\ue038'),\n    MET_SOCIAL_SKYPE(\"met-social-skype\", '\\ue037'),\n    MET_SOCIAL_SOUNDCLOUD(\"met-social-soundcloud\", '\\ue036'),\n    MET_SOCIAL_STUMBLEUPON(\"met-social-stumbleupon\", '\\ue035'),\n    MET_SOCIAL_TUMBLR(\"met-social-tumblr\", '\\ue034'),\n    MET_SOCIAL_TWITTER(\"met-social-twitter\", '\\ue033'),\n    MET_SOCIAL_VIDDLER(\"met-social-viddler\", '\\ue032'),\n    MET_SOCIAL_VIMEO(\"met-social-vimeo\", '\\ue031'),\n    MET_SOCIAL_VIRB(\"met-social-virb\", '\\ue030'),\n    MET_SOCIAL_WORDPRESS(\"met-social-wordpress\", '\\ue02f'),\n    MET_SOCIAL_YAHOO(\"met-social-yahoo\", '\\ue02e'),\n    MET_SOCIAL_YELP(\"met-social-yelp\", '\\ue02d'),\n    MET_SOCIAL_YOUTUBE(\"met-social-youtube\", '\\ue02c'),\n    MET_SOCIAL_ZERPLY(\"met-social-zerply\", '\\ue02b'),\n    MET_SOS(\"met-sos\", '\\ue02a'),\n    MET_SOUND_OFF(\"met-sound-off\", '\\ue029'),\n    MET_SOUND_ON(\"met-sound-on\", '\\ue028'),\n    MET_SPEED(\"met-speed\", '\\ue027'),\n    MET_STAR(\"met-star\", '\\ue026'),\n    MET_STOP(\"met-stop\", '\\ue025'),\n    MET_SUN(\"met-sun\", '\\ue024'),\n    MET_SUNSHINE(\"met-sunshine\", '\\ue023'),\n    MET_TELEPHONE(\"met-telephone\", '\\ue022'),\n    MET_TEXT_ALIGN_LEFT(\"met-text-align-left\", '\\ue021'),\n    MET_TEXT_ALIGN_RIGHT(\"met-text-align-right\", '\\ue020'),\n    MET_TEXT_BOLD(\"met-text-bold\", '\\ue01f'),\n    MET_TEXT_CENTER(\"met-text-center\", '\\ue01e'),\n    MET_TEXT_HEIGHT(\"met-text-height\", '\\ue01d'),\n    MET_TEXT_JUSTIFY_CENTER(\"met-text-justify-center\", '\\ue01c'),\n    MET_TEXT_JUSTIFY_LEFT(\"met-text-justify-left\", '\\ue01b'),\n    MET_TEXT_JUSTIFY_RIGHT(\"met-text-justify-right\", '\\ue01a'),\n    MET_TEXT_NORMAL(\"met-text-normal\", '\\ue019'),\n    MET_TEXT_PARAGRAPH(\"met-text-paragraph\", '\\ue018'),\n    MET_TEXT_SIZE_REDUCE(\"met-text-size-reduce\", '\\ue017'),\n    MET_TEXT_SIZE_UPPER(\"met-text-size-upper\", '\\ue016'),\n    MET_TEXT_WIDTH(\"met-text-width\", '\\ue015'),\n    MET_THREE_POINTS(\"met-three-points\", '\\ue012'),\n    MET_THREE_POINTS_BOTTOM(\"met-three-points-bottom\", '\\ue014'),\n    MET_THREE_POINTS_TOP(\"met-three-points-top\", '\\ue013'),\n    MET_TOP_BOTTOM(\"met-top-bottom\", '\\ue011'),\n    MET_TRIPLE_POINTS(\"met-triple-points\", '\\ue010'),\n    MET_UNDERLINE(\"met-underline\", '\\ue00f'),\n    MET_UPLOAD(\"met-upload\", '\\ue00c'),\n    MET_UPLOAD_SELECTION(\"met-upload-selection\", '\\ue00d'),\n    MET_UPLOAD_SELECTION_CIRCLE(\"met-upload-selection-circle\", '\\ue00e'),\n    MET_USER(\"met-user\", '\\ue008'),\n    MET_USER_ADD(\"met-user-add\", '\\ue00b'),\n    MET_USER_BAN(\"met-user-ban\", '\\ue00a'),\n    MET_USER_REMOVE(\"met-user-remove\", '\\ue009'),\n    MET_VIEWPORT(\"met-viewport\", '\\ue006'),\n    MET_VIEWPORT_VIDEO(\"met-viewport-video\", '\\ue007'),\n    MET_WAVES(\"met-waves\", '\\ue005'),\n    MET_WIFI(\"met-wifi\", '\\ue004'),\n    MET_WIND(\"met-wind\", '\\ue003'),\n    MET_WIREFRAME_GLOBE(\"met-wireframe-globe\", '\\ue002'),\n    MET_WORLD(\"met-world\", '\\ue001'),\n    MET_YEN(\"met-yen\", '\\ue000');\n\n    public static MetrizeIcons findByDescription(String description) {\n        for (MetrizeIcons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    MetrizeIcons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-metrizeicons-pack/src/main/java/org/kordamp/ikonli/metrizeicons/MetrizeIconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.metrizeicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MetrizeIconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/metrizeicons/0.0/fonts/Metrize-Icons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"met-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return MetrizeIcons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Metrize-Icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-metrizeicons-pack/src/main/java/org/kordamp/ikonli/metrizeicons/MetrizeIconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.metrizeicons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class MetrizeIconsIkonProvider implements IkonProvider<MetrizeIcons> {\n    @Override\n    public Class<MetrizeIcons> getIkon() {\n        return MetrizeIcons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-metrizeicons-pack/src/main/resources/META-INF/resources/metrizeicons/0.0/css/metrizeicons.css",
    "content": "@font-face {\n    font-family: 'Metrize-Icons';\n    src: url('../fonts/Metrize-Icons.eot');\n    src: url('../fonts/Metrize-Icons.eot?#iefix') format('embedded-opentype'),\n    url('../fonts/Metrize-Icons.woff') format('woff'),\n    url('../fonts/Metrize-Icons.ttf') format('truetype'),\n    url('../fonts/Metrize-Icons.svg#Metrize-Icons') format('svg');\n    font-weight: normal;\n    font-style: normal;\n}\n\n.met:before {\n    font-family: 'Metrize-Icons';\n    speak: none;\n    font-style: normal;\n    font-weight: normal;\n    font-variant: normal;\n    text-transform: none;\n    line-height: 1;\n    -webkit-font-smoothing: antialiased;\n}\n\n.met-yen:before {\n    content: \"\\e000\";\n}\n\n.met-world:before {\n    content: \"\\e001\";\n}\n\n.met-wireframe-globe:before {\n    content: \"\\e002\";\n}\n\n.met-wind:before {\n    content: \"\\e003\";\n}\n\n.met-wifi:before {\n    content: \"\\e004\";\n}\n\n.met-waves:before {\n    content: \"\\e005\";\n}\n\n.met-viewport:before {\n    content: \"\\e006\";\n}\n\n.met-viewport-video:before {\n    content: \"\\e007\";\n}\n\n.met-user:before {\n    content: \"\\e008\";\n}\n\n.met-user-remove:before {\n    content: \"\\e009\";\n}\n\n.met-user-ban:before {\n    content: \"\\e00a\";\n}\n\n.met-user-add:before {\n    content: \"\\e00b\";\n}\n\n.met-upload:before {\n    content: \"\\e00c\";\n}\n\n.met-upload-selection:before {\n    content: \"\\e00d\";\n}\n\n.met-upload-selection-circle:before {\n    content: \"\\e00e\";\n}\n\n.met-underline:before {\n    content: \"\\e00f\";\n}\n\n.met-triple-points:before {\n    content: \"\\e010\";\n}\n\n.met-top-bottom:before {\n    content: \"\\e011\";\n}\n\n.met-three-points:before {\n    content: \"\\e012\";\n}\n\n.met-three-points-top:before {\n    content: \"\\e013\";\n}\n\n.met-three-points-bottom:before {\n    content: \"\\e014\";\n}\n\n.met-text-width:before {\n    content: \"\\e015\";\n}\n\n.met-text-size-upper:before {\n    content: \"\\e016\";\n}\n\n.met-text-size-reduce:before {\n    content: \"\\e017\";\n}\n\n.met-text-paragraph:before {\n    content: \"\\e018\";\n}\n\n.met-text-normal:before {\n    content: \"\\e019\";\n}\n\n.met-text-justify-right:before {\n    content: \"\\e01a\";\n}\n\n.met-text-justify-left:before {\n    content: \"\\e01b\";\n}\n\n.met-text-justify-center:before {\n    content: \"\\e01c\";\n}\n\n.met-text-height:before {\n    content: \"\\e01d\";\n}\n\n.met-text-center:before {\n    content: \"\\e01e\";\n}\n\n.met-text-bold:before {\n    content: \"\\e01f\";\n}\n\n.met-text-align-right:before {\n    content: \"\\e020\";\n}\n\n.met-text-align-left:before {\n    content: \"\\e021\";\n}\n\n.met-telephone:before {\n    content: \"\\e022\";\n}\n\n.met-sunshine:before {\n    content: \"\\e023\";\n}\n\n.met-sun:before {\n    content: \"\\e024\";\n}\n\n.met-stop:before {\n    content: \"\\e025\";\n}\n\n.met-star:before {\n    content: \"\\e026\";\n}\n\n.met-speed:before {\n    content: \"\\e027\";\n}\n\n.met-sound-on:before {\n    content: \"\\e028\";\n}\n\n.met-sound-off:before {\n    content: \"\\e029\";\n}\n\n.met-sos:before {\n    content: \"\\e02a\";\n}\n\n.met-social-zerply:before {\n    content: \"\\e02b\";\n}\n\n.met-social-youtube:before {\n    content: \"\\e02c\";\n}\n\n.met-social-yelp:before {\n    content: \"\\e02d\";\n}\n\n.met-social-yahoo:before {\n    content: \"\\e02e\";\n}\n\n.met-social-wordpress:before {\n    content: \"\\e02f\";\n}\n\n.met-social-virb:before {\n    content: \"\\e030\";\n}\n\n.met-social-vimeo:before {\n    content: \"\\e031\";\n}\n\n.met-social-viddler:before {\n    content: \"\\e032\";\n}\n\n.met-social-twitter:before {\n    content: \"\\e033\";\n}\n\n.met-social-tumblr:before {\n    content: \"\\e034\";\n}\n\n.met-social-stumbleupon:before {\n    content: \"\\e035\";\n}\n\n.met-social-soundcloud:before {\n    content: \"\\e036\";\n}\n\n.met-social-skype:before {\n    content: \"\\e037\";\n}\n\n.met-social-sharethis:before {\n    content: \"\\e038\";\n}\n\n.met-social-quora:before {\n    content: \"\\e039\";\n}\n\n.met-social-pinterest:before {\n    content: \"\\e03a\";\n}\n\n.met-social-photobucket:before {\n    content: \"\\e03b\";\n}\n\n.met-social-paypal:before {\n    content: \"\\e03c\";\n}\n\n.met-social-myspace:before {\n    content: \"\\e03d\";\n}\n\n.met-social-linkedin:before {\n    content: \"\\e03e\";\n}\n\n.met-social-last-fm:before {\n    content: \"\\e03f\";\n}\n\n.met-social-grooveshark:before {\n    content: \"\\e040\";\n}\n\n.met-social-google-plus:before {\n    content: \"\\e041\";\n}\n\n.met-social-github:before {\n    content: \"\\e042\";\n}\n\n.met-social-forrst:before {\n    content: \"\\e043\";\n}\n\n.met-social-flickr:before {\n    content: \"\\e044\";\n}\n\n.met-social-facebook:before {\n    content: \"\\e045\";\n}\n\n.met-social-evernote:before {\n    content: \"\\e046\";\n}\n\n.met-social-envato:before {\n    content: \"\\e047\";\n}\n\n.met-social-email:before {\n    content: \"\\e048\";\n}\n\n.met-social-dribbble:before {\n    content: \"\\e049\";\n}\n\n.met-social-digg:before {\n    content: \"\\e04a\";\n}\n\n.met-social-deviantart:before {\n    content: \"\\e04b\";\n}\n\n.met-social-blogger:before {\n    content: \"\\e04c\";\n}\n\n.met-social-behance:before {\n    content: \"\\e04d\";\n}\n\n.met-social-bebo:before {\n    content: \"\\e04e\";\n}\n\n.met-social-addthis:before {\n    content: \"\\e04f\";\n}\n\n.met-social-500px:before {\n    content: \"\\e050\";\n}\n\n.met-snow:before {\n    content: \"\\e051\";\n}\n\n.met-sliders:before {\n    content: \"\\e052\";\n}\n\n.met-sliders-vertical:before {\n    content: \"\\e053\";\n}\n\n.met-sign-male:before {\n    content: \"\\e054\";\n}\n\n.met-sign-female:before {\n    content: \"\\e055\";\n}\n\n.met-shield:before {\n    content: \"\\e056\";\n}\n\n.met-settings:before {\n    content: \"\\e057\";\n}\n\n.met-setting:before {\n    content: \"\\e058\";\n}\n\n.met-select-square:before {\n    content: \"\\e059\";\n}\n\n.met-select-circle:before {\n    content: \"\\e05a\";\n}\n\n.met-search:before {\n    content: \"\\e05b\";\n}\n\n.met-scale:before {\n    content: \"\\e05c\";\n}\n\n.met-rules:before {\n    content: \"\\e05d\";\n}\n\n.met-rss:before {\n    content: \"\\e05e\";\n}\n\n.met-retweet:before {\n    content: \"\\e05f\";\n}\n\n.met-report-comment:before {\n    content: \"\\e060\";\n}\n\n.met-refresh:before {\n    content: \"\\e061\";\n}\n\n.met-rec:before {\n    content: \"\\e062\";\n}\n\n.met-random:before {\n    content: \"\\e063\";\n}\n\n.met-quote:before {\n    content: \"\\e064\";\n}\n\n.met-question:before {\n    content: \"\\e065\";\n}\n\n.met-previous-fast-step:before {\n    content: \"\\e066\";\n}\n\n.met-prev-step:before {\n    content: \"\\e067\";\n}\n\n.met-pounds:before {\n    content: \"\\e068\";\n}\n\n.met-podcast:before {\n    content: \"\\e069\";\n}\n\n.met-plus:before {\n    content: \"\\e06a\";\n}\n\n.met-play:before {\n    content: \"\\e06b\";\n}\n\n.met-pin:before {\n    content: \"\\e06c\";\n}\n\n.met-pin-map:before {\n    content: \"\\e06d\";\n}\n\n.met-pig-money:before {\n    content: \"\\e06e\";\n}\n\n.met-pause:before {\n    content: \"\\e06f\";\n}\n\n.met-paperclip:before {\n    content: \"\\e070\";\n}\n\n.met-paperclip-oblique:before {\n    content: \"\\e071\";\n}\n\n.met-options-settings:before {\n    content: \"\\e072\";\n}\n\n.met-officine:before {\n    content: \"\\e073\";\n}\n\n.met-officine-2:before {\n    content: \"\\e074\";\n}\n\n.met-off:before {\n    content: \"\\e075\";\n}\n\n.met-number-zero:before {\n    content: \"\\e076\";\n}\n\n.met-number-two:before {\n    content: \"\\e077\";\n}\n\n.met-number-three:before {\n    content: \"\\e078\";\n}\n\n.met-number-six:before {\n    content: \"\\e079\";\n}\n\n.met-number-seven:before {\n    content: \"\\e07a\";\n}\n\n.met-number-one:before {\n    content: \"\\e07b\";\n}\n\n.met-number-nine:before {\n    content: \"\\e07c\";\n}\n\n.met-number-four:before {\n    content: \"\\e07d\";\n}\n\n.met-number-five:before {\n    content: \"\\e07e\";\n}\n\n.met-number-eight:before {\n    content: \"\\e07f\";\n}\n\n.met-next-step:before {\n    content: \"\\e080\";\n}\n\n.met-next-fast-step:before {\n    content: \"\\e081\";\n}\n\n.met-music:before {\n    content: \"\\e082\";\n}\n\n.met-multi-borders:before {\n    content: \"\\e083\";\n}\n\n.met-minus:before {\n    content: \"\\e084\";\n}\n\n.met-marker:before {\n    content: \"\\e085\";\n}\n\n.met-marker-points:before {\n    content: \"\\e086\";\n}\n\n.met-marker-minus:before {\n    content: \"\\e087\";\n}\n\n.met-marker-add:before {\n    content: \"\\e088\";\n}\n\n.met-map:before {\n    content: \"\\e089\";\n}\n\n.met-male-symbol:before {\n    content: \"\\e08a\";\n}\n\n.met-mailbox:before {\n    content: \"\\e08b\";\n}\n\n.met-mail:before {\n    content: \"\\e08c\";\n}\n\n.met-magnet:before {\n    content: \"\\e08d\";\n}\n\n.met-magic-wand:before {\n    content: \"\\e08e\";\n}\n\n.met-login-lock-refresh:before {\n    content: \"\\e08f\";\n}\n\n.met-locked:before {\n    content: \"\\e090\";\n}\n\n.met-location:before {\n    content: \"\\e091\";\n}\n\n.met-location-maps:before {\n    content: \"\\e092\";\n}\n\n.met-list-square:before {\n    content: \"\\e093\";\n}\n\n.met-list-circle:before {\n    content: \"\\e094\";\n}\n\n.met-link-url:before {\n    content: \"\\e095\";\n}\n\n.met-line-through:before {\n    content: \"\\e096\";\n}\n\n.met-limit-directions:before {\n    content: \"\\e097\";\n}\n\n.met-like-upload:before {\n    content: \"\\e098\";\n}\n\n.met-like-remove:before {\n    content: \"\\e099\";\n}\n\n.met-like-download:before {\n    content: \"\\e09a\";\n}\n\n.met-like-close:before {\n    content: \"\\e09b\";\n}\n\n.met-like-ban:before {\n    content: \"\\e09c\";\n}\n\n.met-like-add:before {\n    content: \"\\e09d\";\n}\n\n.met-left-right:before {\n    content: \"\\e09e\";\n}\n\n.met-leaf:before {\n    content: \"\\e09f\";\n}\n\n.met-layers:before {\n    content: \"\\e0a0\";\n}\n\n.met-landscape:before {\n    content: \"\\e0a1\";\n}\n\n.met-key:before {\n    content: \"\\e0a2\";\n}\n\n.met-italic:before {\n    content: \"\\e0a3\";\n}\n\n.met-info:before {\n    content: \"\\e0a4\";\n}\n\n.met-idea:before {\n    content: \"\\e0a5\";\n}\n\n.met-home-wifi:before {\n    content: \"\\e0a6\";\n}\n\n.met-heart:before {\n    content: \"\\e0a7\";\n}\n\n.met-hdd:before {\n    content: \"\\e0a8\";\n}\n\n.met-hdd-raid:before {\n    content: \"\\e0a9\";\n}\n\n.met-hdd-net:before {\n    content: \"\\e0aa\";\n}\n\n.met-grids:before {\n    content: \"\\e0ab\";\n}\n\n.met-grid-big:before {\n    content: \"\\e0ac\";\n}\n\n.met-graphs:before {\n    content: \"\\e0ad\";\n}\n\n.met-forward:before {\n    content: \"\\e0ae\";\n}\n\n.met-fire:before {\n    content: \"\\e0af\";\n}\n\n.met-female-symbol:before {\n    content: \"\\e0b0\";\n}\n\n.met-eye:before {\n    content: \"\\e0b1\";\n}\n\n.met-eye-disabled:before {\n    content: \"\\e0b2\";\n}\n\n.met-expand:before {\n    content: \"\\e0b3\";\n}\n\n.met-expand-vertical:before {\n    content: \"\\e0b4\";\n}\n\n.met-expand-horizontal:before {\n    content: \"\\e0b5\";\n}\n\n.met-expand-directions:before {\n    content: \"\\e0b6\";\n}\n\n.met-exclamation:before {\n    content: \"\\e0b7\";\n}\n\n.met-euro:before {\n    content: \"\\e0b8\";\n}\n\n.met-email-upload:before {\n    content: \"\\e0b9\";\n}\n\n.met-email-spam:before {\n    content: \"\\e0ba\";\n}\n\n.met-email-remove:before {\n    content: \"\\e0bb\";\n}\n\n.met-email-luminosity:before {\n    content: \"\\e0bc\";\n}\n\n.met-email-download:before {\n    content: \"\\e0bd\";\n}\n\n.met-email-close:before {\n    content: \"\\e0be\";\n}\n\n.met-email-add:before {\n    content: \"\\e0bf\";\n}\n\n.met-eject:before {\n    content: \"\\e0c0\";\n}\n\n.met-drops:before {\n    content: \"\\e0c1\";\n}\n\n.met-drop:before {\n    content: \"\\e0c2\";\n}\n\n.met-download:before {\n    content: \"\\e0c3\";\n}\n\n.met-download-selection:before {\n    content: \"\\e0c4\";\n}\n\n.met-download-selection-circle:before {\n    content: \"\\e0c5\";\n}\n\n.met-double-diamonds:before {\n    content: \"\\e0c6\";\n}\n\n.met-dot-square:before {\n    content: \"\\e0c7\";\n}\n\n.met-dot-line:before {\n    content: \"\\e0c8\";\n}\n\n.met-dot-circle:before {\n    content: \"\\e0c9\";\n}\n\n.met-dollar:before {\n    content: \"\\e0ca\";\n}\n\n.met-documents:before {\n    content: \"\\e0cb\";\n}\n\n.met-document:before {\n    content: \"\\e0cc\";\n}\n\n.met-document-fill:before {\n    content: \"\\e0cd\";\n}\n\n.met-directions:before {\n    content: \"\\e0ce\";\n}\n\n.met-cross:before {\n    content: \"\\e0cf\";\n}\n\n.met-credit-card:before {\n    content: \"\\e0d0\";\n}\n\n.met-copy-paste-document:before {\n    content: \"\\e0d1\";\n}\n\n.met-copy-document:before {\n    content: \"\\e0d2\";\n}\n\n.met-contract-vertical:before {\n    content: \"\\e0d3\";\n}\n\n.met-contract-horizontal:before {\n    content: \"\\e0d4\";\n}\n\n.met-contract-directions:before {\n    content: \"\\e0d5\";\n}\n\n.met-compass:before {\n    content: \"\\e0d6\";\n}\n\n.met-compass-2:before {\n    content: \"\\e0d7\";\n}\n\n.met-comments:before {\n    content: \"\\e0d8\";\n}\n\n.met-comment:before {\n    content: \"\\e0d9\";\n}\n\n.met-coins:before {\n    content: \"\\e0da\";\n}\n\n.met-cloud:before {\n    content: \"\\e0db\";\n}\n\n.met-cloud-upload:before {\n    content: \"\\e0dc\";\n}\n\n.met-cloud-remove:before {\n    content: \"\\e0dd\";\n}\n\n.met-cloud-download:before {\n    content: \"\\e0de\";\n}\n\n.met-cloud-add:before {\n    content: \"\\e0df\";\n}\n\n.met-clock:before {\n    content: \"\\e0e0\";\n}\n\n.met-circles:before {\n    content: \"\\e0e1\";\n}\n\n.met-check:before {\n    content: \"\\e0e2\";\n}\n\n.met-chat:before {\n    content: \"\\e0e3\";\n}\n\n.met-chart-down:before {\n    content: \"\\e0e4\";\n}\n\n.met-cd-dvd-rom:before {\n    content: \"\\e0e5\";\n}\n\n.met-camera:before {\n    content: \"\\e0e6\";\n}\n\n.met-button-question:before {\n    content: \"\\e0e7\";\n}\n\n.met-button-minus:before {\n    content: \"\\e0e8\";\n}\n\n.met-button-exclamation:before {\n    content: \"\\e0e9\";\n}\n\n.met-button-email:before {\n    content: \"\\e0ea\";\n}\n\n.met-button-close:before {\n    content: \"\\e0eb\";\n}\n\n.met-button-check:before {\n    content: \"\\e0ec\";\n}\n\n.met-button-add:before {\n    content: \"\\e0ed\";\n}\n\n.met-brush:before {\n    content: \"\\e0ee\";\n}\n\n.met-browser-sizes:before {\n    content: \"\\e0ef\";\n}\n\n.met-box-remove:before {\n    content: \"\\e0f0\";\n}\n\n.met-box-close:before {\n    content: \"\\e0f1\";\n}\n\n.met-box-blank:before {\n    content: \"\\e0f2\";\n}\n\n.met-box-add:before {\n    content: \"\\e0f3\";\n}\n\n.met-bolt:before {\n    content: \"\\e0f4\";\n}\n\n.met-block-menu:before {\n    content: \"\\e0f5\";\n}\n\n.met-blank:before {\n    content: \"\\e0f6\";\n}\n\n.met-bezier:before {\n    content: \"\\e0f7\";\n}\n\n.met-bars:before {\n    content: \"\\e0f8\";\n}\n\n.met-ban-circle:before {\n    content: \"\\e0f9\";\n}\n\n.met-bag:before {\n    content: \"\\e0fa\";\n}\n\n.met-backward:before {\n    content: \"\\e0fb\";\n}\n\n.met-axis-rules:before {\n    content: \"\\e0fc\";\n}\n\n.met-atom:before {\n    content: \"\\e0fd\";\n}\n\n.met-arrow-up:before {\n    content: \"\\e0fe\";\n}\n\n.met-arrow-up-thin:before {\n    content: \"\\e0ff\";\n}\n\n.met-arrow-up-light:before {\n    content: \"\\e100\";\n}\n\n.met-arrow-up-bold:before {\n    content: \"\\e101\";\n}\n\n.met-arrow-up-bold-round:before {\n    content: \"\\e102\";\n}\n\n.met-arrow-up-big:before {\n    content: \"\\e103\";\n}\n\n.met-arrow-right:before {\n    content: \"\\e104\";\n}\n\n.met-arrow-right-thin:before {\n    content: \"\\e105\";\n}\n\n.met-arrow-right-light:before {\n    content: \"\\e106\";\n}\n\n.met-arrow-right-bold:before {\n    content: \"\\e107\";\n}\n\n.met-arrow-right-bold-round:before {\n    content: \"\\e108\";\n}\n\n.met-arrow-right-big:before {\n    content: \"\\e109\";\n}\n\n.met-arrow-oblique-expand:before {\n    content: \"\\e10a\";\n}\n\n.met-arrow-oblique-expand-directions:before {\n    content: \"\\e10b\";\n}\n\n.met-arrow-oblique-contract:before {\n    content: \"\\e10c\";\n}\n\n.met-arrow-oblique-contract-directions:before {\n    content: \"\\e10d\";\n}\n\n.met-arrow-multi-line-up:before {\n    content: \"\\e10e\";\n}\n\n.met-arrow-multi-line-right:before {\n    content: \"\\e10f\";\n}\n\n.met-arrow-multi-line-left:before {\n    content: \"\\e110\";\n}\n\n.met-arrow-multi-line-down:before {\n    content: \"\\e111\";\n}\n\n.met-arrow-left:before {\n    content: \"\\e112\";\n}\n\n.met-arrow-left-thin:before {\n    content: \"\\e113\";\n}\n\n.met-arrow-left-light:before {\n    content: \"\\e114\";\n}\n\n.met-arrow-left-bold:before {\n    content: \"\\e115\";\n}\n\n.met-arrow-left-bold-round:before {\n    content: \"\\e116\";\n}\n\n.met-arrow-left-big:before {\n    content: \"\\e117\";\n}\n\n.met-arrow-fill-up:before {\n    content: \"\\e118\";\n}\n\n.met-arrow-fill-right:before {\n    content: \"\\e119\";\n}\n\n.met-arrow-fill-left:before {\n    content: \"\\e11a\";\n}\n\n.met-arrow-fill-down:before {\n    content: \"\\e11b\";\n}\n\n.met-arrow-down:before {\n    content: \"\\e11c\";\n}\n\n.met-arrow-down-thin:before {\n    content: \"\\e11d\";\n}\n\n.met-arrow-down-light:before {\n    content: \"\\e11e\";\n}\n\n.met-arrow-down-bold:before {\n    content: \"\\e11f\";\n}\n\n.met-arrow-down-bold-round:before {\n    content: \"\\e120\";\n}\n\n.met-arrow-down-big:before {\n    content: \"\\e121\";\n}\n\n.met-arrow-cycling:before {\n    content: \"\\e122\";\n}\n\n.met-arrow-cycle:before {\n    content: \"\\e123\";\n}\n\n.met-arrow-curve-right:before {\n    content: \"\\e124\";\n}\n\n.met-arrow-curve-recycle:before {\n    content: \"\\e125\";\n}\n\n.met-arrow-curve-left:before {\n    content: \"\\e126\";\n}\n\n.met-animal-footprint:before {\n    content: \"\\e127\";\n}\n\n.met-alarm-clock:before {\n    content: \"\\e128\";\n}\n\n.met-air-plane:before {\n    content: \"\\e129\";\n}\n\n.met-adjust:before {\n    content: \"\\e12a\";\n}\n\n.met-cube:before {\n    content: \"\\e12b\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-microns-pack/ikonli-microns-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-microns-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.microns {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.microns;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.microns.MicronsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.microns.MicronsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-microns-pack/src/main/java/org/kordamp/ikonli/microns/Microns.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.microns;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Microns implements Ikon {\n    ALIGN_CENTER(\"mu-align-center\", '\\ue765'),\n    ALIGN_LEFT(\"mu-align-left\", '\\ue764'),\n    ALIGN_RIGHT(\"mu-align-right\", '\\ue766'),\n    ARROW_DOWN(\"mu-arrow-down\", '\\ue703'),\n    ARROW_LEFT(\"mu-arrow-left\", '\\ue700'),\n    ARROW_RIGHT(\"mu-arrow-right\", '\\ue701'),\n    ARROW_UP(\"mu-arrow-up\", '\\ue702'),\n    AUDIO(\"mu-audio\", '\\ue73d'),\n    AUDIO_DESCRIPTION(\"mu-audio-description\", '\\ue725'),\n    BARS(\"mu-bars\", '\\ue740'),\n    BOLD(\"mu-bold\", '\\ue75e'),\n    BOOKMARK(\"mu-bookmark\", '\\ue72f'),\n    BOX(\"mu-box\", '\\ue750'),\n    BOX_CROSS(\"mu-box-cross\", '\\ue755'),\n    BOX_FULL(\"mu-box-full\", '\\ue751'),\n    BOX_MINUS(\"mu-box-minus\", '\\ue753'),\n    BOX_PLUS(\"mu-box-plus\", '\\ue752'),\n    BOX_TICK(\"mu-box-tick\", '\\ue754'),\n    CALENDAR(\"mu-calendar\", '\\ue72a'),\n    CANCEL(\"mu-cancel\", '\\ue741'),\n    CAPTIONS(\"mu-captions\", '\\ue723'),\n    CARET(\"mu-caret\", '\\ue70f'),\n    CARET_DOWN(\"mu-caret-down\", '\\ue711'),\n    CARET_UP(\"mu-caret-up\", '\\ue710'),\n    CHAPTERS(\"mu-chapters\", '\\ue74b'),\n    CHART_BAR(\"mu-chart-bar\", '\\ue727'),\n    CHART_LINE(\"mu-chart-line\", '\\ue726'),\n    CHART_PIE(\"mu-chart-pie\", '\\ue729'),\n    CHART_SCATTER(\"mu-chart-scatter\", '\\ue728'),\n    CHAT(\"mu-chat\", '\\ue730'),\n    CLOCK(\"mu-clock\", '\\ue72b'),\n    CLOUD(\"mu-cloud\", '\\ue769'),\n    CODE(\"mu-code\", '\\ue74f'),\n    COG(\"mu-cog\", '\\ue736'),\n    CONTRACT(\"mu-contract\", '\\ue747'),\n    DELETE(\"mu-delete\", '\\ue732'),\n    DOWN(\"mu-down\", '\\ue707'),\n    DOWNLOAD(\"mu-download\", '\\ue709'),\n    EDIT(\"mu-edit\", '\\ue731'),\n    EXPAND(\"mu-expand\", '\\ue748'),\n    FAIL(\"mu-fail\", '\\ue75c'),\n    FILE(\"mu-file\", '\\ue73a'),\n    FLAG(\"mu-flag\", '\\ue72e'),\n    GRID(\"mu-grid\", '\\ue749'),\n    GROUP(\"mu-group\", '\\ue739'),\n    HD(\"mu-hd\", '\\ue724'),\n    HEART(\"mu-heart\", '\\ue72d'),\n    HIDE(\"mu-hide\", '\\ue734'),\n    IMAGE(\"mu-image\", '\\ue73b'),\n    INDENT(\"mu-indent\", '\\ue767'),\n    INFO(\"mu-info\", '\\ue759'),\n    ITALIC(\"mu-italic\", '\\ue75f'),\n    I_ASTERISK(\"mu-i-asterisk\", '\\ue71b'),\n    I_BULLET(\"mu-i-bullet\", '\\ue71a'),\n    I_CROSS(\"mu-i-cross\", '\\ue719'),\n    I_DOWN(\"mu-i-down\", '\\ue715'),\n    I_LEFT(\"mu-i-left\", '\\ue712'),\n    I_MINUS(\"mu-i-minus\", '\\ue717'),\n    I_PLUS(\"mu-i-plus\", '\\ue716'),\n    I_RIGHT(\"mu-i-right\", '\\ue713'),\n    I_TICK(\"mu-i-tick\", '\\ue718'),\n    I_UP(\"mu-i-up\", '\\ue714'),\n    LEFT(\"mu-left\", '\\ue704'),\n    LINK(\"mu-link\", '\\ue737'),\n    LOCK(\"mu-lock\", '\\ue735'),\n    MAIL(\"mu-mail\", '\\ue74e'),\n    MATRIX(\"mu-matrix\", '\\ue74a'),\n    MENU(\"mu-menu\", '\\ue73f'),\n    MINUS(\"mu-minus\", '\\ue70e'),\n    OPTS_H(\"mu-opts-h\", '\\ue742'),\n    OPTS_V(\"mu-opts-v\", '\\ue743'),\n    OUTDENT(\"mu-outdent\", '\\ue768'),\n    PASS(\"mu-pass\", '\\ue75b'),\n    PAUSE(\"mu-pause\", '\\ue71d'),\n    PLAY(\"mu-play\", '\\ue71c'),\n    PLUS(\"mu-plus\", '\\ue70d'),\n    PRINT(\"mu-print\", '\\ue73e'),\n    RADIO_FULL(\"mu-radio-full\", '\\ue758'),\n    RADIO_OFF(\"mu-radio-off\", '\\ue756'),\n    RADIO_ON(\"mu-radio-on\", '\\ue757'),\n    REDO(\"mu-redo\", '\\ue70b'),\n    REPLAY(\"mu-replay\", '\\ue70c'),\n    RIGHT(\"mu-right\", '\\ue705'),\n    RSS(\"mu-rss\", '\\ue74c'),\n    SEARCH(\"mu-search\", '\\ue744'),\n    SHARE(\"mu-share\", '\\ue74d'),\n    SHOW(\"mu-show\", '\\ue733'),\n    STAR(\"mu-star\", '\\ue72c'),\n    STRIKEOUT(\"mu-strikeout\", '\\ue761'),\n    SUBTITLES(\"mu-subtitles\", '\\ue71e'),\n    TEXT(\"mu-text\", '\\ue75d'),\n    TEXT_SIZE(\"mu-text-size\", '\\ue762'),\n    TEXT_UNSTYLE(\"mu-text-unstyle\", '\\ue763'),\n    UNDERLINE(\"mu-underline\", '\\ue760'),\n    UNDO(\"mu-undo\", '\\ue70a'),\n    UP(\"mu-up\", '\\ue706'),\n    UPLOAD(\"mu-upload\", '\\ue708'),\n    USER(\"mu-user\", '\\ue738'),\n    VIDEO(\"mu-video\", '\\ue73c'),\n    VOL_HIGH(\"mu-vol-high\", '\\ue721'),\n    VOL_LOW(\"mu-vol-low\", '\\ue71f'),\n    VOL_MID(\"mu-vol-mid\", '\\ue720'),\n    VOL_MUTE(\"mu-vol-mute\", '\\ue722'),\n    WARN(\"mu-warn\", '\\ue75a'),\n    WEB(\"mu-web\", '\\ue76a'),\n    WIFI(\"mu-wifi\", '\\ue76b'),\n    ZOOM_IN(\"mu-zoom-in\", '\\ue745'),\n    ZOOM_OUT(\"mu-zoom-out\", '\\ue746');\n\n    public static Microns findByDescription(String description) {\n        for (Microns font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Microns(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-microns-pack/src/main/java/org/kordamp/ikonli/microns/MicronsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.microns;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class MicronsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/microns/1.0.8/fonts/microns.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"mu-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Microns.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Microns\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-microns-pack/src/main/java/org/kordamp/ikonli/microns/MicronsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.microns;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class MicronsIkonProvider implements IkonProvider<Microns> {\n    @Override\n    public Class<Microns> getIkon() {\n        return Microns.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-microns-pack/src/main/resources/META-INF/resources/microns/1.0.8/css/microns.css",
    "content": "@font-face {\n  font-family: \"microns\";\n  font-style: normal;\n  font-weight: normal;\n  src: url(\"../fonts/microns.eot\");\n  src: url(\"../fonts/microns.eot?#iefix\") format(\"embedded-opentype\"),\n       url(\"../fonts/microns.woff2\") format(\"woff2\"),\n       url(\"../fonts/microns.woff\") format(\"woff\"),\n       url(\"../fonts/microns.ttf\") format(\"truetype\"),\n       url(\"../fonts/microns.svg\") format(\"svg\");\n}\n\n[class^=\"mu-\"], [class*=\" mu-\"] {\n  font-family: microns;\n  font-style: normal;\n  font-weight: normal;\n  speak: none;\n  text-decoration: none;\n  font-size: 1em;\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n  font-smoothing: antialiased;\n  text-rendering: optimizeLegibility;\n  user-select: none;\n}\n\n\n.mu-arrow-left:before {\n  content: \"\\e700\";\n}\n\n.mu-arrow-right:before {\n  content: \"\\e701\";\n}\n\n.mu-arrow-up:before {\n  content: \"\\e702\";\n}\n\n.mu-arrow-down:before {\n  content: \"\\e703\";\n}\n\n.mu-left:before {\n  content: \"\\e704\";\n}\n\n.mu-right:before {\n  content: \"\\e705\";\n}\n\n.mu-up:before {\n  content: \"\\e706\";\n}\n\n.mu-down:before {\n  content: \"\\e707\";\n}\n\n.mu-upload:before {\n  content: \"\\e708\";\n}\n\n.mu-download:before {\n  content: \"\\e709\";\n}\n\n.mu-undo:before {\n  content: \"\\e70a\";\n}\n\n.mu-redo:before {\n  content: \"\\e70b\";\n}\n\n.mu-replay:before {\n  content: \"\\e70c\";\n}\n\n.mu-plus:before {\n  content: \"\\e70d\";\n}\n\n.mu-minus:before {\n  content: \"\\e70e\";\n}\n\n.mu-caret:before {\n  content: \"\\e70f\";\n}\n\n.mu-caret-up:before {\n  content: \"\\e710\";\n}\n\n.mu-caret-down:before {\n  content: \"\\e711\";\n}\n\n.mu-i-left:before {\n  content: \"\\e712\";\n}\n\n.mu-i-right:before {\n  content: \"\\e713\";\n}\n\n.mu-i-up:before {\n  content: \"\\e714\";\n}\n\n.mu-i-down:before {\n  content: \"\\e715\";\n}\n\n.mu-i-plus:before {\n  content: \"\\e716\";\n}\n\n.mu-i-minus:before {\n  content: \"\\e717\";\n}\n\n.mu-i-tick:before {\n  content: \"\\e718\";\n}\n\n.mu-i-cross:before {\n  content: \"\\e719\";\n}\n\n.mu-i-bullet:before {\n  content: \"\\e71a\";\n}\n\n.mu-i-asterisk:before {\n  content: \"\\e71b\";\n}\n\n.mu-play:before {\n  content: \"\\e71c\";\n}\n\n.mu-pause:before {\n  content: \"\\e71d\";\n}\n\n.mu-subtitles:before {\n  content: \"\\e71e\";\n}\n\n.mu-vol-low:before {\n  content: \"\\e71f\";\n}\n\n.mu-vol-mid:before {\n  content: \"\\e720\";\n}\n\n.mu-vol-high:before {\n  content: \"\\e721\";\n}\n\n.mu-vol-mute:before {\n  content: \"\\e722\";\n}\n\n.mu-captions:before {\n  content: \"\\e723\";\n}\n\n.mu-hd:before {\n  content: \"\\e724\";\n}\n\n.mu-audio-description:before {\n  content: \"\\e725\";\n}\n\n.mu-chart-line:before {\n  content: \"\\e726\";\n}\n\n.mu-chart-bar:before {\n  content: \"\\e727\";\n}\n\n.mu-chart-scatter:before {\n  content: \"\\e728\";\n}\n\n.mu-chart-pie:before {\n  content: \"\\e729\";\n}\n\n.mu-calendar:before {\n  content: \"\\e72a\";\n}\n\n.mu-clock:before {\n  content: \"\\e72b\";\n}\n\n.mu-star:before {\n  content: \"\\e72c\";\n}\n\n.mu-heart:before {\n  content: \"\\e72d\";\n}\n\n.mu-flag:before {\n  content: \"\\e72e\";\n}\n\n.mu-bookmark:before {\n  content: \"\\e72f\";\n}\n\n.mu-chat:before {\n  content: \"\\e730\";\n}\n\n.mu-edit:before {\n  content: \"\\e731\";\n}\n\n.mu-delete:before {\n  content: \"\\e732\";\n}\n\n.mu-show:before {\n  content: \"\\e733\";\n}\n\n.mu-hide:before {\n  content: \"\\e734\";\n}\n\n.mu-lock:before {\n  content: \"\\e735\";\n}\n\n.mu-cog:before {\n  content: \"\\e736\";\n}\n\n.mu-link:before {\n  content: \"\\e737\";\n}\n\n.mu-user:before {\n  content: \"\\e738\";\n}\n\n.mu-group:before {\n  content: \"\\e739\";\n}\n\n.mu-file:before {\n  content: \"\\e73a\";\n}\n\n.mu-image:before {\n  content: \"\\e73b\";\n}\n\n.mu-video:before {\n  content: \"\\e73c\";\n}\n\n.mu-audio:before {\n  content: \"\\e73d\";\n}\n\n.mu-print:before {\n  content: \"\\e73e\";\n}\n\n.mu-menu:before {\n  content: \"\\e73f\";\n}\n\n.mu-bars:before {\n  content: \"\\e740\";\n}\n\n.mu-cancel:before {\n  content: \"\\e741\";\n}\n\n.mu-opts-h:before {\n  content: \"\\e742\";\n}\n\n.mu-opts-v:before {\n  content: \"\\e743\";\n}\n\n.mu-search:before {\n  content: \"\\e744\";\n}\n\n.mu-zoom-in:before {\n  content: \"\\e745\";\n}\n\n.mu-zoom-out:before {\n  content: \"\\e746\";\n}\n\n.mu-contract:before {\n  content: \"\\e747\";\n}\n\n.mu-expand:before {\n  content: \"\\e748\";\n}\n\n.mu-grid:before {\n  content: \"\\e749\";\n}\n\n.mu-matrix:before {\n  content: \"\\e74a\";\n}\n\n.mu-chapters:before {\n  content: \"\\e74b\";\n}\n\n.mu-rss:before {\n  content: \"\\e74c\";\n}\n\n.mu-share:before {\n  content: \"\\e74d\";\n}\n\n.mu-mail:before {\n  content: \"\\e74e\";\n}\n\n.mu-code:before {\n  content: \"\\e74f\";\n}\n\n.mu-box:before {\n  content: \"\\e750\";\n}\n\n.mu-box-full:before {\n  content: \"\\e751\";\n}\n\n.mu-box-plus:before {\n  content: \"\\e752\";\n}\n\n.mu-box-minus:before {\n  content: \"\\e753\";\n}\n\n.mu-box-tick:before {\n  content: \"\\e754\";\n}\n\n.mu-box-cross:before {\n  content: \"\\e755\";\n}\n\n.mu-radio-off:before {\n  content: \"\\e756\";\n}\n\n.mu-radio-on:before {\n  content: \"\\e757\";\n}\n\n.mu-radio-full:before {\n  content: \"\\e758\";\n}\n\n.mu-info:before {\n  content: \"\\e759\";\n}\n\n.mu-warn:before {\n  content: \"\\e75a\";\n}\n\n.mu-pass:before {\n  content: \"\\e75b\";\n}\n\n.mu-fail:before {\n  content: \"\\e75c\";\n}\n\n.mu-text:before {\n  content: \"\\e75d\";\n}\n\n.mu-bold:before {\n  content: \"\\e75e\";\n}\n\n.mu-italic:before {\n  content: \"\\e75f\";\n}\n\n.mu-underline:before {\n  content: \"\\e760\";\n}\n\n.mu-strikeout:before {\n  content: \"\\e761\";\n}\n\n.mu-text-size:before {\n  content: \"\\e762\";\n}\n\n.mu-text-unstyle:before {\n  content: \"\\e763\";\n}\n\n.mu-align-left:before {\n  content: \"\\e764\";\n}\n\n.mu-align-center:before {\n  content: \"\\e765\";\n}\n\n.mu-align-right:before {\n  content: \"\\e766\";\n}\n\n.mu-indent:before {\n  content: \"\\e767\";\n}\n\n.mu-outdent:before {\n  content: \"\\e768\";\n}\n\n.mu-cloud:before {\n  content: \"\\e769\";\n}\n\n.mu-web:before {\n  content: \"\\e76a\";\n}\n\n.mu-wifi:before {\n  content: \"\\e76b\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-ociicons-pack/ikonli-ociicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-ociicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.ociicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.ociicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.ociicons.OciiconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.ociicons.OciiconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-ociicons-pack/src/main/java/org/kordamp/ikonli/ociicons/Ociicons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ociicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Ociicons implements Ikon {\n    // latest is e940\n    TWOFA(\"oci-2fa\", '\\ue900'),\n    API(\"oci-api\", '\\ue901'),\n    AUTHENTICATION(\"oci-authentication\", '\\ue902'),\n    BATCH(\"oci-batch\", '\\ue903'),\n    BILLING(\"oci-billing\", '\\ue904'),\n    CDN(\"oci-cdn\", '\\ue905'),\n    CLI(\"oci-cli\", '\\ue906'),\n    CLOUD(\"oci-cloud\", '\\ue907'),\n    CONFIG(\"oci-config\", '\\ue908'),\n    CONFIG_SERVICE(\"oci-config-service\", '\\ue909'),\n    CONTAINER(\"oci-container\", '\\ue90a'),\n    CONTAINER_HOST(\"oci-container-host\", '\\ue90b'),\n    CONTAINER_IMAGE(\"oci-container-image\", '\\ue90c'),\n    CUSTOMER(\"oci-customer\", '\\ue90d'),\n    DATABASE(\"oci-database\", '\\ue90e'),\n    DEBUGGING(\"oci-debugging\", '\\ue90f'),\n    DESKTOP(\"oci-desktop\", '\\ue910'),\n    DEVELOPER(\"oci-developer\", '\\ue911'),\n    DEVICES(\"oci-devices\", '\\ue912'),\n    DISK(\"oci-disk\", '\\ue913'),\n    DISTRIBUTION(\"oci-distribution\", '\\ue914'),\n    DOCDB(\"oci-docdb\", '\\ue915'),\n    FILE(\"oci-file\", '\\ue916'),\n    FIREWALL(\"oci-firewall\", '\\ue917'),\n    FIREWALL_RULE(\"oci-firewall-rule\", '\\ue918'),\n    FUNCTIION(\"oci-functiion\", '\\ue919'),\n    GIT(\"oci-git\", '\\ue91a'),\n    HEALTH_MONITOR(\"oci-health-monitor\", '\\ue91b'),\n    INVOICE(\"oci-invoice\", '\\ue91c'),\n    IOT(\"oci-iot\", '\\ue91d'),\n    KEY_VAULT(\"oci-key-vault\", '\\ue91e'),\n    KEY(\"oci-key\", '\\ue91f'),\n    LAPTOP(\"oci-laptop\", '\\ue920'),\n    LEGACY_MAINFRAME(\"oci-legacy-mainframe\", '\\ue921'),\n    LOAD_BALANCER(\"oci-load-balancer\", '\\ue922'),\n    LOGGING(\"oci-logging\", '\\ue923'),\n    MACHINE_LEARNING(\"oci-machine-learning\", '\\ue924'),\n    MEDIA(\"oci-media\", '\\ue925'),\n    MEDIA_STREAMING(\"oci-media-streaming\", '\\ue926'),\n    MESSAGE(\"oci-message\", '\\ue927'),\n    MOBILE(\"oci-mobile\", '\\ue928'),\n    MONITORING(\"oci-monitoring\", '\\ue929'),\n    ONPREM(\"oci-onprem\", '\\ue92a'),\n    ORCHESTRATOR(\"oci-orchestrator\", '\\ue92b'),\n    PIPELINE(\"oci-pipeline\", '\\ue92c'),\n    POLICY_ENFORCE(\"oci-policy-enforce\", '\\ue92d'),\n    POLICY_MANAGER(\"oci-policy-manager\", '\\ue92e'),\n    QUEUE(\"oci-queue\", '\\ue92f'),\n    SBOM(\"oci-sbom\", '\\ue930'),\n    SCHEDULED_JOB(\"oci-scheduled-job\", '\\ue931'),\n    SDK(\"oci-sdk\", '\\ue932'),\n    SECURITY_SCANNING(\"oci-security-scanning\", '\\ue933'),\n    SERVER_DISK(\"oci-server-disk\", '\\ue934'),\n    SERVERLESS(\"oci-serverless\", '\\ue935'),\n    SERVER_RACK(\"oci-server-rack\", '\\ue936'),\n    SERVICE(\"oci-service\", '\\ue937'),\n    SHELL(\"oci-shell\", '\\ue938'),\n    SIGNATURE_JOB(\"oci-signature-job\", '\\ue939'),\n    SOURCE_ARTIFACT(\"oci-source-artifact\", '\\ue93a'),\n    STORAGE(\"oci-storage\", '\\ue93b'),\n    SUPPORT_PERSONNEL(\"oci-support-personnel\", '\\ue93c'),\n    TESTING(\"oci-testing\", '\\ue93d'),\n    VM(\"oci-vm\", '\\ue93e'),\n    VNET(\"oci-vnet\", '\\ue93f'),\n    WEB(\"oci-web\", '\\ue940');\n\n    private final String description;\n    private final int code;\n\n    Ociicons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    public static Ociicons findByDescription(String description) {\n        for (Ociicons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ociicons-pack/src/main/java/org/kordamp/ikonli/ociicons/OciiconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ociicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class OciiconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/ociicons/1.0/fonts/ociicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"oci-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Ociicons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"oci-icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ociicons-pack/src/main/java/org/kordamp/ikonli/ociicons/OciiconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.ociicons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class OciiconsIkonProvider implements IkonProvider<Ociicons> {\n    @Override\n    public Class<Ociicons> getIkon() {\n        return Ociicons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-ociicons-pack/src/main/resources/META-INF/resources/ociicons/1.0/css/ociicons.css",
    "content": "/**\n * Copyright 2020 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n@charset 'UTF-8';\n \n/* @FONT-FACE loads font into browser */\n@font-face {\n  font-family: 'oci-icons';\n  src: url('../fonts/ociicons.eot?hy0xsg#iefix') format('embedded-opentype'),\n  url('../fonts/ociicons.ttf?hy0xsg') format('truetype'),\n  url('../fonts/ociicons.woff?hy0xsg') format('woff'),\n  url('../fonts/ociicons.svg?hy0xsg#icomoon') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n \n/* :before psuedo-selector inserts and styles icon */\n.oci:before {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'oci-icons' !important;\n  speak: none;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.oci-2fa:before {\n  content: \"\\e900\";\n}\n.oci-api:before {\n  content: \"\\e901\";\n}\n.oci-authentication:before {\n  content: \"\\e902\";\n}\n.oci-batch:before {\n  content: \"\\e903\";\n}\n.oci-billing:before {\n  content: \"\\e904\";\n}\n.oci-cdn:before {\n  content: \"\\e905\";\n}\n.oci-cli:before {\n  content: \"\\e906\";\n}\n.oci-cloud:before {\n  content: \"\\e907\";\n}\n.oci-config:before {\n  content: \"\\e908\";\n}\n.oci-config-service:before {\n  content: \"\\e909\";\n}\n.oci-container:before {\n  content: \"\\e90a\";\n}\n.oci-container-host:before {\n  content: \"\\e90b\";\n}\n.oci-container-image:before {\n  content: \"\\e90c\";\n}\n.oci-customer:before {\n  content: \"\\e90d\";\n}\n.oci-database:before {\n  content: \"\\e90e\";\n}\n.oci-debugging:before {\n  content: \"\\e90f\";\n}\n.oci-desktop:before {\n  content: \"\\e910\";\n}\n.oci-developer:before {\n  content: \"\\e911\";\n}\n.oci-devices:before {\n  content: \"\\e912\";\n}\n.oci-disk:before {\n  content: \"\\e913\";\n}\n.oci-distribution:before {\n  content: \"\\e914\";\n}\n.oci-docdb:before {\n  content: \"\\e915\";\n}\n.oci-file:before {\n  content: \"\\e916\";\n}\n.oci-firewall:before {\n  content: \"\\e917\";\n}\n.oci-firewall-rule:before {\n  content: \"\\e918\";\n}\n.oci-functiion:before {\n  content: \"\\e919\";\n}\n.oci-git:before {\n  content: \"\\e91a\";\n}\n.oci-health-monitor:before {\n  content: \"\\e91b\";\n}\n.oci-invoice:before {\n  content: \"\\e91c\";\n}\n.oci-iot:before {\n  content: \"\\e91d\";\n}\n.oci-key-vault:before {\n  content: \"\\e91e\";\n}\n.oci-key:before {\n  content: \"\\e91f\";\n}\n.oci-laptop:before {\n  content: \"\\e920\";\n}\n.oci-legacy-mainframe:before {\n  content: \"\\e921\";\n}\n.oci-load-balancer:before {\n  content: \"\\e922\";\n}\n.oci-logging:before {\n  content: \"\\e923\";\n}\n.oci-machine-learning:before {\n  content: \"\\e924\";\n}\n.oci-media:before {\n  content: \"\\e925\";\n}\n.oci-media-streaming:before {\n  content: \"\\e926\";\n}\n.oci-message:before {\n  content: \"\\e927\";\n}\n.oci-mobile:before {\n  content: \"\\e928\";\n}\n.oci-monitoring:before {\n  content: \"\\e929\";\n}\n.oci-onprem:before {\n  content: \"\\e92a\";\n}\n.oci-orchestrator:before {\n  content: \"\\e92b\";\n}\n.oci-pipeline:before {\n  content: \"\\e92c\";\n}\n.oci-policy-enforce:before {\n  content: \"\\e92d\";\n}\n.oci-policy-manager:before {\n  content: \"\\e92e\";\n}\n.oci-queue:before {\n  content: \"\\e92f\";\n}\n.oci-sbom:before {\n  content: \"\\e930\";\n}\n.oci-scheduled-job:before {\n  content: \"\\e931\";\n}\n.oci-sdk:before {\n  content: \"\\e932\";\n}\n.oci-security-scanning:before {\n  content: \"\\e933\";\n}\n.oci-server-disk:before {\n  content: \"\\e934\";\n}\n.oci-serverless:before {\n  content: \"\\e935\";\n}\n.oci-server-rack:before {\n  content: \"\\e936\";\n}\n.oci-service:before {\n  content: \"\\e937\";\n}\n.oci-shell:before {\n  content: \"\\e938\";\n}\n.oci-signature-job:before {\n  content: \"\\e939\";\n}\n.oci-source-artifact:before {\n  content: \"\\e93a\";\n}\n.oci-storage:before {\n  content: \"\\e93b\";\n}\n.oci-support-personnel:before {\n  content: \"\\e93c\";\n}\n.oci-testing:before {\n  content: \"\\e93d\";\n}\n.oci-vm:before {\n  content: \"\\e93e\";\n}\n.oci-vnet:before {\n  content: \"\\e93f\";\n}\n.oci-web:before {\n  content: \"\\e940\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-octicons-pack/ikonli-octicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-octicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.octicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.octicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.octicons.OcticonsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.octicons.OcticonsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-octicons-pack/src/main/java/org/kordamp/ikonli/octicons/Octicons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.octicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Octicons implements Ikon {\n    ALERT_16(\"oct-alert-16\", '\\ue900'),\n    ALERT_24(\"oct-alert-24\", '\\ue901'),\n    ARCHIVE_16(\"oct-archive-16\", '\\ue902'),\n    ARCHIVE_24(\"oct-archive-24\", '\\ue903'),\n    ARROW_BOTH_16(\"oct-arrow-both-16\", '\\ue904'),\n    ARROW_BOTH_24(\"oct-arrow-both-24\", '\\ue905'),\n    ARROW_DOWN_16(\"oct-arrow-down-16\", '\\ue906'),\n    ARROW_DOWN_24(\"oct-arrow-down-24\", '\\ue907'),\n    ARROW_DOWN_LEFT_24(\"oct-arrow-down-left-24\", '\\ue908'),\n    ARROW_DOWN_RIGHT_24(\"oct-arrow-down-right-24\", '\\ue909'),\n    ARROW_LEFT_16(\"oct-arrow-left-16\", '\\ue90a'),\n    ARROW_LEFT_24(\"oct-arrow-left-24\", '\\ue90b'),\n    ARROW_RIGHT_16(\"oct-arrow-right-16\", '\\ue90c'),\n    ARROW_RIGHT_24(\"oct-arrow-right-24\", '\\ue90d'),\n    ARROW_SWITCH_16(\"oct-arrow-switch-16\", '\\ue90e'),\n    ARROW_SWITCH_24(\"oct-arrow-switch-24\", '\\ue90f'),\n    ARROW_UP_16(\"oct-arrow-up-16\", '\\ue910'),\n    ARROW_UP_24(\"oct-arrow-up-24\", '\\ue911'),\n    ARROW_UP_LEFT_24(\"oct-arrow-up-left-24\", '\\ue912'),\n    ARROW_UP_RIGHT_24(\"oct-arrow-up-right-24\", '\\ue913'),\n    BEAKER_16(\"oct-beaker-16\", '\\ue914'),\n    BEAKER_24(\"oct-beaker-24\", '\\ue915'),\n    BELL_16(\"oct-bell-16\", '\\ue916'),\n    BELL_24(\"oct-bell-24\", '\\ue917'),\n    BELL_FILL_24(\"oct-bell-fill-24\", '\\ue918'),\n    BELL_SLASH_16(\"oct-bell-slash-16\", '\\ue919'),\n    BELL_SLASH_24(\"oct-bell-slash-24\", '\\ue91a'),\n    BLOCKED_16(\"oct-blocked-16\", '\\ue91b'),\n    BLOCKED_24(\"oct-blocked-24\", '\\ue91c'),\n    BOLD_16(\"oct-bold-16\", '\\ue91d'),\n    BOLD_24(\"oct-bold-24\", '\\ue91e'),\n    BOOKMARK_16(\"oct-bookmark-16\", '\\ue921'),\n    BOOKMARK_24(\"oct-bookmark-24\", '\\ue922'),\n    BOOKMARK_FILL_24(\"oct-bookmark-fill-24\", '\\ue923'),\n    BOOKMARK_SLASH_16(\"oct-bookmark-slash-16\", '\\ue924'),\n    BOOKMARK_SLASH_24(\"oct-bookmark-slash-24\", '\\ue925'),\n    BOOKMARK_SLASH_FILL_24(\"oct-bookmark-slash-fill-24\", '\\ue926'),\n    BOOK_16(\"oct-book-16\", '\\ue91f'),\n    BOOK_24(\"oct-book-24\", '\\ue920'),\n    BRIEFCASE_16(\"oct-briefcase-16\", '\\ue927'),\n    BRIEFCASE_24(\"oct-briefcase-24\", '\\ue928'),\n    BROADCAST_16(\"oct-broadcast-16\", '\\ue929'),\n    BROADCAST_24(\"oct-broadcast-24\", '\\ue92a'),\n    BROWSER_16(\"oct-browser-16\", '\\ue92b'),\n    BROWSER_24(\"oct-browser-24\", '\\ue92c'),\n    BUG_16(\"oct-bug-16\", '\\ue92d'),\n    BUG_24(\"oct-bug-24\", '\\ue92e'),\n    CALENDAR_16(\"oct-calendar-16\", '\\ue92f'),\n    CALENDAR_24(\"oct-calendar-24\", '\\ue930'),\n    CHECKLIST_16(\"oct-checklist-16\", '\\ue937'),\n    CHECKLIST_24(\"oct-checklist-24\", '\\ue938'),\n    CHECK_16(\"oct-check-16\", '\\ue931'),\n    CHECK_24(\"oct-check-24\", '\\ue932'),\n    CHECK_CIRCLE_16(\"oct-check-circle-16\", '\\ue933'),\n    CHECK_CIRCLE_24(\"oct-check-circle-24\", '\\ue934'),\n    CHECK_CIRCLE_FILL_16(\"oct-check-circle-fill-16\", '\\ue935'),\n    CHECK_CIRCLE_FILL_24(\"oct-check-circle-fill-24\", '\\ue936'),\n    CHEVRON_DOWN_16(\"oct-chevron-down-16\", '\\ue939'),\n    CHEVRON_DOWN_24(\"oct-chevron-down-24\", '\\ue93a'),\n    CHEVRON_LEFT_16(\"oct-chevron-left-16\", '\\ue93b'),\n    CHEVRON_LEFT_24(\"oct-chevron-left-24\", '\\ue93c'),\n    CHEVRON_RIGHT_16(\"oct-chevron-right-16\", '\\ue93d'),\n    CHEVRON_RIGHT_24(\"oct-chevron-right-24\", '\\ue93e'),\n    CHEVRON_UP_16(\"oct-chevron-up-16\", '\\ue93f'),\n    CHEVRON_UP_24(\"oct-chevron-up-24\", '\\ue940'),\n    CIRCLE_16(\"oct-circle-16\", '\\ue941'),\n    CIRCLE_24(\"oct-circle-24\", '\\ue942'),\n    CIRCLE_SLASH_16(\"oct-circle-slash-16\", '\\ue943'),\n    CIRCLE_SLASH_24(\"oct-circle-slash-24\", '\\ue944'),\n    CLIPPY_16(\"oct-clippy-16\", '\\ue945'),\n    CLIPPY_24(\"oct-clippy-24\", '\\ue946'),\n    CLOCK_16(\"oct-clock-16\", '\\ue947'),\n    CLOCK_24(\"oct-clock-24\", '\\ue948'),\n    CODESCAN_16(\"oct-codescan-16\", '\\ue94f'),\n    CODESCAN_24(\"oct-codescan-24\", '\\ue950'),\n    CODESCAN_CHECKMARK_16(\"oct-codescan-checkmark-16\", '\\ue951'),\n    CODESCAN_CHECKMARK_24(\"oct-codescan-checkmark-24\", '\\ue952'),\n    CODESPACES_16(\"oct-codespaces-16\", '\\ue953'),\n    CODESPACES_24(\"oct-codespaces-24\", '\\ue954'),\n    CODE_16(\"oct-code-16\", '\\ue949'),\n    CODE_24(\"oct-code-24\", '\\ue94a'),\n    CODE_REVIEW_16(\"oct-code-review-16\", '\\ue94b'),\n    CODE_REVIEW_24(\"oct-code-review-24\", '\\ue94c'),\n    CODE_SQUARE_16(\"oct-code-square-16\", '\\ue94d'),\n    CODE_SQUARE_24(\"oct-code-square-24\", '\\ue94e'),\n    COLUMNS_16(\"oct-columns-16\", '\\ue955'),\n    COLUMNS_24(\"oct-columns-24\", '\\ue956'),\n    COMMENT_16(\"oct-comment-16\", '\\ue957'),\n    COMMENT_24(\"oct-comment-24\", '\\ue958'),\n    COMMENT_DISCUSSION_16(\"oct-comment-discussion-16\", '\\ue959'),\n    COMMENT_DISCUSSION_24(\"oct-comment-discussion-24\", '\\ue95a'),\n    COMMIT_24(\"oct-commit-24\", '\\ue95b'),\n    CONTAINER_16(\"oct-container-16\", '\\ue95c'),\n    CONTAINER_24(\"oct-container-24\", '\\ue95d'),\n    CPU_16(\"oct-cpu-16\", '\\ue95e'),\n    CPU_24(\"oct-cpu-24\", '\\ue95f'),\n    CREDIT_CARD_16(\"oct-credit-card-16\", '\\ue960'),\n    CREDIT_CARD_24(\"oct-credit-card-24\", '\\ue961'),\n    CROSS_REFERENCE_16(\"oct-cross-reference-16\", '\\ue962'),\n    CROSS_REFERENCE_24(\"oct-cross-reference-24\", '\\ue963'),\n    DASH_16(\"oct-dash-16\", '\\ue964'),\n    DASH_24(\"oct-dash-24\", '\\ue965'),\n    DATABASE_16(\"oct-database-16\", '\\ue966'),\n    DATABASE_24(\"oct-database-24\", '\\ue967'),\n    DEPENDABOT_16(\"oct-dependabot-16\", '\\ue968'),\n    DEPENDABOT_24(\"oct-dependabot-24\", '\\ue969'),\n    DESKTOP_DOWNLOAD_16(\"oct-desktop-download-16\", '\\ue96a'),\n    DESKTOP_DOWNLOAD_24(\"oct-desktop-download-24\", '\\ue96b'),\n    DEVICE_CAMERA_16(\"oct-device-camera-16\", '\\ue96c'),\n    DEVICE_CAMERA_VIDEO_16(\"oct-device-camera-video-16\", '\\ue96d'),\n    DEVICE_CAMERA_VIDEO_24(\"oct-device-camera-video-24\", '\\ue96e'),\n    DEVICE_DESKTOP_16(\"oct-device-desktop-16\", '\\ue96f'),\n    DEVICE_DESKTOP_24(\"oct-device-desktop-24\", '\\ue970'),\n    DEVICE_MOBILE_16(\"oct-device-mobile-16\", '\\ue971'),\n    DEVICE_MOBILE_24(\"oct-device-mobile-24\", '\\ue972'),\n    DIAMOND_16(\"oct-diamond-16\", '\\ue973'),\n    DIAMOND_24(\"oct-diamond-24\", '\\ue974'),\n    DIFF_16(\"oct-diff-16\", '\\ue975'),\n    DIFF_24(\"oct-diff-24\", '\\ue976'),\n    DIFF_ADDED_16(\"oct-diff-added-16\", '\\ue977'),\n    DIFF_IGNORED_16(\"oct-diff-ignored-16\", '\\ue978'),\n    DIFF_MODIFIED_16(\"oct-diff-modified-16\", '\\ue979'),\n    DIFF_REMOVED_16(\"oct-diff-removed-16\", '\\ue97a'),\n    DIFF_RENAMED_16(\"oct-diff-renamed-16\", '\\ue97b'),\n    DOT_16(\"oct-dot-16\", '\\ue97c'),\n    DOT_24(\"oct-dot-24\", '\\ue97d'),\n    DOT_FILL_16(\"oct-dot-fill-16\", '\\ue97e'),\n    DOT_FILL_24(\"oct-dot-fill-24\", '\\ue97f'),\n    DOWNLOAD_16(\"oct-download-16\", '\\ue980'),\n    DOWNLOAD_24(\"oct-download-24\", '\\ue981'),\n    DUPLICATE_16(\"oct-duplicate-16\", '\\ue982'),\n    DUPLICATE_24(\"oct-duplicate-24\", '\\ue983'),\n    ELLIPSIS_16(\"oct-ellipsis-16\", '\\ue984'),\n    EYE_16(\"oct-eye-16\", '\\ue985'),\n    EYE_24(\"oct-eye-24\", '\\ue986'),\n    EYE_CLOSED_16(\"oct-eye-closed-16\", '\\ue987'),\n    EYE_CLOSED_24(\"oct-eye-closed-24\", '\\ue988'),\n    FILE_16(\"oct-file-16\", '\\ue989'),\n    FILE_24(\"oct-file-24\", '\\ue98a'),\n    FILE_BADGE_16(\"oct-file-badge-16\", '\\ue98b'),\n    FILE_BINARY_16(\"oct-file-binary-16\", '\\ue98c'),\n    FILE_BINARY_24(\"oct-file-binary-24\", '\\ue98d'),\n    FILE_CODE_16(\"oct-file-code-16\", '\\ue98e'),\n    FILE_CODE_24(\"oct-file-code-24\", '\\ue98f'),\n    FILE_DIFF_16(\"oct-file-diff-16\", '\\ue990'),\n    FILE_DIFF_24(\"oct-file-diff-24\", '\\ue991'),\n    FILE_DIRECTORY_16(\"oct-file-directory-16\", '\\ue992'),\n    FILE_DIRECTORY_24(\"oct-file-directory-24\", '\\ue993'),\n    FILE_DIRECTORY_FILL_24(\"oct-file-directory-fill-24\", '\\ue994'),\n    FILE_MEDIA_24(\"oct-file-media-24\", '\\ue995'),\n    FILE_SUBMODULE_16(\"oct-file-submodule-16\", '\\ue996'),\n    FILE_SUBMODULE_24(\"oct-file-submodule-24\", '\\ue997'),\n    FILE_SYMLINK_FILE_16(\"oct-file-symlink-file-16\", '\\ue998'),\n    FILE_SYMLINK_FILE_24(\"oct-file-symlink-file-24\", '\\ue999'),\n    FILE_ZIP_16(\"oct-file-zip-16\", '\\ue99a'),\n    FILE_ZIP_24(\"oct-file-zip-24\", '\\ue99b'),\n    FILTER_16(\"oct-filter-16\", '\\ue99c'),\n    FILTER_24(\"oct-filter-24\", '\\ue99d'),\n    FLAME_16(\"oct-flame-16\", '\\ue99e'),\n    FLAME_24(\"oct-flame-24\", '\\ue99f'),\n    FOLD_16(\"oct-fold-16\", '\\ue9a0'),\n    FOLD_24(\"oct-fold-24\", '\\ue9a1'),\n    FOLD_DOWN_16(\"oct-fold-down-16\", '\\ue9a2'),\n    FOLD_DOWN_24(\"oct-fold-down-24\", '\\ue9a3'),\n    FOLD_UP_16(\"oct-fold-up-16\", '\\ue9a4'),\n    FOLD_UP_24(\"oct-fold-up-24\", '\\ue9a5'),\n    GEAR_16(\"oct-gear-16\", '\\ue9a6'),\n    GEAR_24(\"oct-gear-24\", '\\ue9a7'),\n    GIFT_16(\"oct-gift-16\", '\\ue9a8'),\n    GIFT_24(\"oct-gift-24\", '\\ue9a9'),\n    GIT_BRANCH_16(\"oct-git-branch-16\", '\\ue9aa'),\n    GIT_BRANCH_24(\"oct-git-branch-24\", '\\ue9ab'),\n    GIT_COMMIT_16(\"oct-git-commit-16\", '\\ue9ac'),\n    GIT_COMMIT_24(\"oct-git-commit-24\", '\\ue9ad'),\n    GIT_COMPARE_16(\"oct-git-compare-16\", '\\ue9ae'),\n    GIT_COMPARE_24(\"oct-git-compare-24\", '\\ue9af'),\n    GIT_MERGE_16(\"oct-git-merge-16\", '\\ue9b0'),\n    GIT_MERGE_24(\"oct-git-merge-24\", '\\ue9b1'),\n    GIT_PULL_REQUEST_16(\"oct-git-pull-request-16\", '\\ue9b2'),\n    GIT_PULL_REQUEST_24(\"oct-git-pull-request-24\", '\\ue9b3'),\n    GIT_PULL_REQUEST_CLOSED_16(\"oct-git-pull-request-closed-16\", '\\ue9b4'),\n    GIT_PULL_REQUEST_CLOSED_24(\"oct-git-pull-request-closed-24\", '\\ue9b5'),\n    GIT_PULL_REQUEST_DRAFT_16(\"oct-git-pull-request-draft-16\", '\\ue9b6'),\n    GIT_PULL_REQUEST_DRAFT_24(\"oct-git-pull-request-draft-24\", '\\ue9b7'),\n    GLOBE_16(\"oct-globe-16\", '\\ue9b8'),\n    GLOBE_24(\"oct-globe-24\", '\\ue9b9'),\n    GRABBER_16(\"oct-grabber-16\", '\\ue9ba'),\n    GRABBER_24(\"oct-grabber-24\", '\\ue9bb'),\n    GRAPH_16(\"oct-graph-16\", '\\ue9bc'),\n    GRAPH_24(\"oct-graph-24\", '\\ue9bd'),\n    HASH_16(\"oct-hash-16\", '\\ue9be'),\n    HASH_24(\"oct-hash-24\", '\\ue9bf'),\n    HEADING_16(\"oct-heading-16\", '\\ue9c0'),\n    HEADING_24(\"oct-heading-24\", '\\ue9c1'),\n    HEART_16(\"oct-heart-16\", '\\ue9c2'),\n    HEART_24(\"oct-heart-24\", '\\ue9c3'),\n    HEART_FILL_16(\"oct-heart-fill-16\", '\\ue9c4'),\n    HEART_FILL_24(\"oct-heart-fill-24\", '\\ue9c5'),\n    HISTORY_16(\"oct-history-16\", '\\ue9c6'),\n    HISTORY_24(\"oct-history-24\", '\\ue9c7'),\n    HOME_16(\"oct-home-16\", '\\ue9c8'),\n    HOME_24(\"oct-home-24\", '\\ue9c9'),\n    HOME_FILL_24(\"oct-home-fill-24\", '\\ue9ca'),\n    HORIZONTAL_RULE_16(\"oct-horizontal-rule-16\", '\\ue9cb'),\n    HORIZONTAL_RULE_24(\"oct-horizontal-rule-24\", '\\ue9cc'),\n    HOURGLASS_16(\"oct-hourglass-16\", '\\ue9cd'),\n    HOURGLASS_24(\"oct-hourglass-24\", '\\ue9ce'),\n    HUBOT_16(\"oct-hubot-16\", '\\ue9cf'),\n    HUBOT_24(\"oct-hubot-24\", '\\ue9d0'),\n    IMAGE_16(\"oct-image-16\", '\\ue9d1'),\n    IMAGE_24(\"oct-image-24\", '\\ue9d2'),\n    INBOX_16(\"oct-inbox-16\", '\\ue9d3'),\n    INBOX_24(\"oct-inbox-24\", '\\ue9d4'),\n    INFINITY_16(\"oct-infinity-16\", '\\ue9d5'),\n    INFINITY_24(\"oct-infinity-24\", '\\ue9d6'),\n    INFO_16(\"oct-info-16\", '\\ue9d7'),\n    INFO_24(\"oct-info-24\", '\\ue9d8'),\n    ISSUE_CLOSED_16(\"oct-issue-closed-16\", '\\ue9d9'),\n    ISSUE_CLOSED_24(\"oct-issue-closed-24\", '\\ue9da'),\n    ISSUE_DRAFT_16(\"oct-issue-draft-16\", '\\ue9db'),\n    ISSUE_DRAFT_24(\"oct-issue-draft-24\", '\\ue9dc'),\n    ISSUE_OPENED_16(\"oct-issue-opened-16\", '\\ue9dd'),\n    ISSUE_OPENED_24(\"oct-issue-opened-24\", '\\ue9de'),\n    ISSUE_REOPENED_16(\"oct-issue-reopened-16\", '\\ue9df'),\n    ISSUE_REOPENED_24(\"oct-issue-reopened-24\", '\\ue9e0'),\n    ITALIC_16(\"oct-italic-16\", '\\ue9e1'),\n    ITALIC_24(\"oct-italic-24\", '\\ue9e2'),\n    KEBAB_HORIZONTAL_16(\"oct-kebab-horizontal-16\", '\\ue9e3'),\n    KEBAB_HORIZONTAL_24(\"oct-kebab-horizontal-24\", '\\ue9e4'),\n    KEY_16(\"oct-key-16\", '\\ue9e5'),\n    KEY_24(\"oct-key-24\", '\\ue9e6'),\n    KEY_ASTERISK_16(\"oct-key-asterisk-16\", '\\ue9e7'),\n    LAW_16(\"oct-law-16\", '\\ue9e8'),\n    LAW_24(\"oct-law-24\", '\\ue9e9'),\n    LIGHT_BULB_16(\"oct-light-bulb-16\", '\\ue9ea'),\n    LIGHT_BULB_24(\"oct-light-bulb-24\", '\\ue9eb'),\n    LINK_16(\"oct-link-16\", '\\ue9ec'),\n    LINK_24(\"oct-link-24\", '\\ue9ed'),\n    LINK_EXTERNAL_16(\"oct-link-external-16\", '\\ue9ee'),\n    LINK_EXTERNAL_24(\"oct-link-external-24\", '\\ue9ef'),\n    LIST_ORDERED_16(\"oct-list-ordered-16\", '\\ue9f0'),\n    LIST_ORDERED_24(\"oct-list-ordered-24\", '\\ue9f1'),\n    LIST_UNORDERED_16(\"oct-list-unordered-16\", '\\ue9f2'),\n    LIST_UNORDERED_24(\"oct-list-unordered-24\", '\\ue9f3'),\n    LOCATION_16(\"oct-location-16\", '\\ue9f4'),\n    LOCATION_24(\"oct-location-24\", '\\ue9f5'),\n    LOCK_16(\"oct-lock-16\", '\\ue9f6'),\n    LOCK_24(\"oct-lock-24\", '\\ue9f7'),\n    LOGO_GIST_16(\"oct-logo-gist-16\", '\\ue9f8'),\n    LOGO_GITHUB_16(\"oct-logo-github-16\", '\\ue9f9'),\n    MAIL_16(\"oct-mail-16\", '\\ue9fa'),\n    MAIL_24(\"oct-mail-24\", '\\ue9fb'),\n    MARKDOWN_16(\"oct-markdown-16\", '\\ue9fd'),\n    MARK_GITHUB_16(\"oct-mark-github-16\", '\\ue9fc'),\n    MEGAPHONE_16(\"oct-megaphone-16\", '\\ue9fe'),\n    MEGAPHONE_24(\"oct-megaphone-24\", '\\ue9ff'),\n    MENTION_16(\"oct-mention-16\", '\\uea00'),\n    MENTION_24(\"oct-mention-24\", '\\uea01'),\n    METER_16(\"oct-meter-16\", '\\uea02'),\n    MILESTONE_16(\"oct-milestone-16\", '\\uea03'),\n    MILESTONE_24(\"oct-milestone-24\", '\\uea04'),\n    MIRROR_16(\"oct-mirror-16\", '\\uea05'),\n    MIRROR_24(\"oct-mirror-24\", '\\uea06'),\n    MOON_16(\"oct-moon-16\", '\\uea07'),\n    MOON_24(\"oct-moon-24\", '\\uea08'),\n    MORTAR_BOARD_16(\"oct-mortar-board-16\", '\\uea09'),\n    MORTAR_BOARD_24(\"oct-mortar-board-24\", '\\uea0a'),\n    MULTI_SELECT_16(\"oct-multi-select-16\", '\\uea0b'),\n    MULTI_SELECT_24(\"oct-multi-select-24\", '\\uea0c'),\n    MUTE_16(\"oct-mute-16\", '\\uea0d'),\n    MUTE_24(\"oct-mute-24\", '\\uea0e'),\n    NORTH_STAR_16(\"oct-north-star-16\", '\\uea11'),\n    NORTH_STAR_24(\"oct-north-star-24\", '\\uea12'),\n    NOTE_16(\"oct-note-16\", '\\uea13'),\n    NOTE_24(\"oct-note-24\", '\\uea14'),\n    NO_ENTRY_16(\"oct-no-entry-16\", '\\uea0f'),\n    NO_ENTRY_24(\"oct-no-entry-24\", '\\uea10'),\n    NUMBER_16(\"oct-number-16\", '\\uea15'),\n    NUMBER_24(\"oct-number-24\", '\\uea16'),\n    ORGANIZATION_16(\"oct-organization-16\", '\\uea17'),\n    ORGANIZATION_24(\"oct-organization-24\", '\\uea18'),\n    PACKAGE_16(\"oct-package-16\", '\\uea19'),\n    PACKAGE_24(\"oct-package-24\", '\\uea1a'),\n    PACKAGE_DEPENDENCIES_16(\"oct-package-dependencies-16\", '\\uea1b'),\n    PACKAGE_DEPENDENCIES_24(\"oct-package-dependencies-24\", '\\uea1c'),\n    PACKAGE_DEPENDENTS_16(\"oct-package-dependents-16\", '\\uea1d'),\n    PACKAGE_DEPENDENTS_24(\"oct-package-dependents-24\", '\\uea1e'),\n    PAINTBRUSH_16(\"oct-paintbrush-16\", '\\uea1f'),\n    PAPER_AIRPLANE_16(\"oct-paper-airplane-16\", '\\uea20'),\n    PAPER_AIRPLANE_24(\"oct-paper-airplane-24\", '\\uea21'),\n    PENCIL_16(\"oct-pencil-16\", '\\uea22'),\n    PENCIL_24(\"oct-pencil-24\", '\\uea23'),\n    PEOPLE_16(\"oct-people-16\", '\\uea24'),\n    PEOPLE_24(\"oct-people-24\", '\\uea25'),\n    PERSON_16(\"oct-person-16\", '\\uea26'),\n    PERSON_24(\"oct-person-24\", '\\uea27'),\n    PERSON_ADD_16(\"oct-person-add-16\", '\\uea28'),\n    PERSON_ADD_24(\"oct-person-add-24\", '\\uea29'),\n    PIN_16(\"oct-pin-16\", '\\uea2a'),\n    PIN_24(\"oct-pin-24\", '\\uea2b'),\n    PLAY_16(\"oct-play-16\", '\\uea2c'),\n    PLAY_24(\"oct-play-24\", '\\uea2d'),\n    PLUG_16(\"oct-plug-16\", '\\uea2e'),\n    PLUG_24(\"oct-plug-24\", '\\uea2f'),\n    PLUS_16(\"oct-plus-16\", '\\uea30'),\n    PLUS_24(\"oct-plus-24\", '\\uea31'),\n    PLUS_CIRCLE_16(\"oct-plus-circle-16\", '\\uea32'),\n    PLUS_CIRCLE_24(\"oct-plus-circle-24\", '\\uea33'),\n    PROJECT_16(\"oct-project-16\", '\\uea34'),\n    PROJECT_24(\"oct-project-24\", '\\uea35'),\n    PULSE_16(\"oct-pulse-16\", '\\uea36'),\n    PULSE_24(\"oct-pulse-24\", '\\uea37'),\n    QUESTION_16(\"oct-question-16\", '\\uea38'),\n    QUESTION_24(\"oct-question-24\", '\\uea39'),\n    QUOTE_16(\"oct-quote-16\", '\\uea3a'),\n    QUOTE_24(\"oct-quote-24\", '\\uea3b'),\n    REPLY_16(\"oct-reply-16\", '\\uea3c'),\n    REPLY_24(\"oct-reply-24\", '\\uea3d'),\n    REPORT_16(\"oct-report-16\", '\\uea48'),\n    REPORT_24(\"oct-report-24\", '\\uea49'),\n    REPO_16(\"oct-repo-16\", '\\uea3e'),\n    REPO_24(\"oct-repo-24\", '\\uea3f'),\n    REPO_CLONE_16(\"oct-repo-clone-16\", '\\uea40'),\n    REPO_FORKED_16(\"oct-repo-forked-16\", '\\uea41'),\n    REPO_FORKED_24(\"oct-repo-forked-24\", '\\uea42'),\n    REPO_PULL_16(\"oct-repo-pull-16\", '\\uea43'),\n    REPO_PUSH_16(\"oct-repo-push-16\", '\\uea44'),\n    REPO_PUSH_24(\"oct-repo-push-24\", '\\uea45'),\n    REPO_TEMPLATE_16(\"oct-repo-template-16\", '\\uea46'),\n    REPO_TEMPLATE_24(\"oct-repo-template-24\", '\\uea47'),\n    ROCKET_16(\"oct-rocket-16\", '\\uea4a'),\n    ROCKET_24(\"oct-rocket-24\", '\\uea4b'),\n    ROWS_16(\"oct-rows-16\", '\\uea4c'),\n    ROWS_24(\"oct-rows-24\", '\\uea4d'),\n    RSS_16(\"oct-rss-16\", '\\uea4e'),\n    RSS_24(\"oct-rss-24\", '\\uea4f'),\n    RUBY_16(\"oct-ruby-16\", '\\uea50'),\n    RUBY_24(\"oct-ruby-24\", '\\uea51'),\n    SCREEN_FULL_16(\"oct-screen-full-16\", '\\uea52'),\n    SCREEN_FULL_24(\"oct-screen-full-24\", '\\uea53'),\n    SCREEN_NORMAL_16(\"oct-screen-normal-16\", '\\uea54'),\n    SCREEN_NORMAL_24(\"oct-screen-normal-24\", '\\uea55'),\n    SEARCH_16(\"oct-search-16\", '\\uea56'),\n    SEARCH_24(\"oct-search-24\", '\\uea57'),\n    SELECT_SINGLE_16(\"oct-select-single-16\", '\\uea58'),\n    SERVER_16(\"oct-server-16\", '\\uea59'),\n    SERVER_24(\"oct-server-24\", '\\uea5a'),\n    SHARE_16(\"oct-share-16\", '\\uea5b'),\n    SHARE_24(\"oct-share-24\", '\\uea5c'),\n    SHARE_ANDROID_16(\"oct-share-android-16\", '\\uea5d'),\n    SHARE_ANDROID_24(\"oct-share-android-24\", '\\uea5e'),\n    SHIELD_16(\"oct-shield-16\", '\\uea5f'),\n    SHIELD_24(\"oct-shield-24\", '\\uea60'),\n    SHIELD_CHECK_16(\"oct-shield-check-16\", '\\uea61'),\n    SHIELD_CHECK_24(\"oct-shield-check-24\", '\\uea62'),\n    SHIELD_LOCK_16(\"oct-shield-lock-16\", '\\uea63'),\n    SHIELD_LOCK_24(\"oct-shield-lock-24\", '\\uea64'),\n    SHIELD_X_16(\"oct-shield-x-16\", '\\uea65'),\n    SHIELD_X_24(\"oct-shield-x-24\", '\\uea66'),\n    SIDEBAR_COLLAPSE_16(\"oct-sidebar-collapse-16\", '\\uea67'),\n    SIDEBAR_COLLAPSE_24(\"oct-sidebar-collapse-24\", '\\uea68'),\n    SIDEBAR_EXPAND_16(\"oct-sidebar-expand-16\", '\\uea69'),\n    SIDEBAR_EXPAND_24(\"oct-sidebar-expand-24\", '\\uea6a'),\n    SIGN_IN_16(\"oct-sign-in-16\", '\\uea6b'),\n    SIGN_IN_24(\"oct-sign-in-24\", '\\uea6c'),\n    SIGN_OUT_16(\"oct-sign-out-16\", '\\uea6d'),\n    SIGN_OUT_24(\"oct-sign-out-24\", '\\uea6e'),\n    SINGLE_SELECT_24(\"oct-single-select-24\", '\\uea6f'),\n    SKIP_16(\"oct-skip-16\", '\\uea70'),\n    SKIP_24(\"oct-skip-24\", '\\uea71'),\n    SMILEY_16(\"oct-smiley-16\", '\\uea72'),\n    SMILEY_24(\"oct-smiley-24\", '\\uea73'),\n    SORT_ASC_16(\"oct-sort-asc-16\", '\\uea74'),\n    SORT_ASC_24(\"oct-sort-asc-24\", '\\uea75'),\n    SORT_DESC_16(\"oct-sort-desc-16\", '\\uea76'),\n    SORT_DESC_24(\"oct-sort-desc-24\", '\\uea77'),\n    SQUARE_16(\"oct-square-16\", '\\uea78'),\n    SQUARE_24(\"oct-square-24\", '\\uea79'),\n    SQUARE_FILL_16(\"oct-square-fill-16\", '\\uea7a'),\n    SQUARE_FILL_24(\"oct-square-fill-24\", '\\uea7b'),\n    SQUIRREL_16(\"oct-squirrel-16\", '\\uea7c'),\n    SQUIRREL_24(\"oct-squirrel-24\", '\\uea7d'),\n    STAR_16(\"oct-star-16\", '\\uea7e'),\n    STAR_24(\"oct-star-24\", '\\uea7f'),\n    STAR_FILL_16(\"oct-star-fill-16\", '\\uea80'),\n    STAR_FILL_24(\"oct-star-fill-24\", '\\uea81'),\n    STOPWATCH_16(\"oct-stopwatch-16\", '\\uea84'),\n    STOPWATCH_24(\"oct-stopwatch-24\", '\\uea85'),\n    STOP_16(\"oct-stop-16\", '\\uea82'),\n    STOP_24(\"oct-stop-24\", '\\uea83'),\n    STRIKETHROUGH_16(\"oct-strikethrough-16\", '\\uea86'),\n    STRIKETHROUGH_24(\"oct-strikethrough-24\", '\\uea87'),\n    SUN_16(\"oct-sun-16\", '\\uea88'),\n    SUN_24(\"oct-sun-24\", '\\uea89'),\n    SYNC_16(\"oct-sync-16\", '\\uea8a'),\n    SYNC_24(\"oct-sync-24\", '\\uea8b'),\n    TABLE_16(\"oct-table-16\", '\\uea8d'),\n    TABLE_24(\"oct-table-24\", '\\uea8e'),\n    TAB_24(\"oct-tab-24\", '\\uea8c'),\n    TAG_16(\"oct-tag-16\", '\\uea8f'),\n    TAG_24(\"oct-tag-24\", '\\uea90'),\n    TASKLIST_16(\"oct-tasklist-16\", '\\uea91'),\n    TASKLIST_24(\"oct-tasklist-24\", '\\uea92'),\n    TELESCOPE_16(\"oct-telescope-16\", '\\uea93'),\n    TELESCOPE_24(\"oct-telescope-24\", '\\uea94'),\n    TERMINAL_16(\"oct-terminal-16\", '\\uea95'),\n    TERMINAL_24(\"oct-terminal-24\", '\\uea96'),\n    THREE_BARS_16(\"oct-three-bars-16\", '\\uea97'),\n    THUMBSDOWN_16(\"oct-thumbsdown-16\", '\\uea98'),\n    THUMBSDOWN_24(\"oct-thumbsdown-24\", '\\uea99'),\n    THUMBSUP_16(\"oct-thumbsup-16\", '\\uea9a'),\n    THUMBSUP_24(\"oct-thumbsup-24\", '\\uea9b'),\n    TOOLS_16(\"oct-tools-16\", '\\uea9c'),\n    TOOLS_24(\"oct-tools-24\", '\\uea9d'),\n    TRASH_16(\"oct-trash-16\", '\\uea9e'),\n    TRASH_24(\"oct-trash-24\", '\\uea9f'),\n    TRIANGLE_DOWN_16(\"oct-triangle-down-16\", '\\ueaa0'),\n    TRIANGLE_DOWN_24(\"oct-triangle-down-24\", '\\ueaa1'),\n    TRIANGLE_LEFT_16(\"oct-triangle-left-16\", '\\ueaa2'),\n    TRIANGLE_LEFT_24(\"oct-triangle-left-24\", '\\ueaa3'),\n    TRIANGLE_RIGHT_16(\"oct-triangle-right-16\", '\\ueaa4'),\n    TRIANGLE_RIGHT_24(\"oct-triangle-right-24\", '\\ueaa5'),\n    TRIANGLE_UP_16(\"oct-triangle-up-16\", '\\ueaa6'),\n    TRIANGLE_UP_24(\"oct-triangle-up-24\", '\\ueaa7'),\n    TYPOGRAPHY_16(\"oct-typography-16\", '\\ueaa8'),\n    TYPOGRAPHY_24(\"oct-typography-24\", '\\ueaa9'),\n    UNFOLD_16(\"oct-unfold-16\", '\\ueaaa'),\n    UNFOLD_24(\"oct-unfold-24\", '\\ueaab'),\n    UNLOCK_16(\"oct-unlock-16\", '\\ueaac'),\n    UNLOCK_24(\"oct-unlock-24\", '\\ueaad'),\n    UNMUTE_16(\"oct-unmute-16\", '\\ueaae'),\n    UNMUTE_24(\"oct-unmute-24\", '\\ueaaf'),\n    UNVERIFIED_16(\"oct-unverified-16\", '\\ueab0'),\n    UNVERIFIED_24(\"oct-unverified-24\", '\\ueab1'),\n    UPLOAD_16(\"oct-upload-16\", '\\ueab2'),\n    UPLOAD_24(\"oct-upload-24\", '\\ueab3'),\n    VERIFIED_16(\"oct-verified-16\", '\\ueab4'),\n    VERIFIED_24(\"oct-verified-24\", '\\ueab5'),\n    VERSIONS_16(\"oct-versions-16\", '\\ueab6'),\n    VERSIONS_24(\"oct-versions-24\", '\\ueab7'),\n    VIDEO_16(\"oct-video-16\", '\\ueab8'),\n    VIDEO_24(\"oct-video-24\", '\\ueab9'),\n    WORKFLOW_16(\"oct-workflow-16\", '\\ueaba'),\n    WORKFLOW_24(\"oct-workflow-24\", '\\ueabb'),\n    X_16(\"oct-x-16\", '\\ueabc'),\n    X_24(\"oct-x-24\", '\\ueabd'),\n    X_CIRCLE_16(\"oct-x-circle-16\", '\\ueabe'),\n    X_CIRCLE_24(\"oct-x-circle-24\", '\\ueabf'),\n    X_CIRCLE_FILL_16(\"oct-x-circle-fill-16\", '\\ueac0'),\n    X_CIRCLE_FILL_24(\"oct-x-circle-fill-24\", '\\ueac1'),\n    ZAP_16(\"oct-zap-16\", '\\ueac2'),\n    ZAP_24(\"oct-zap-24\", '\\ueac3');\n\n    public static Octicons findByDescription(String description) {\n        for (Octicons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Octicons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-octicons-pack/src/main/java/org/kordamp/ikonli/octicons/OcticonsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.octicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class OcticonsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/octicons/14.2.2/fonts/octicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"oct-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Octicons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Octicons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-octicons-pack/src/main/java/org/kordamp/ikonli/octicons/OcticonsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.octicons;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class OcticonsIkonProvider implements IkonProvider<Octicons> {\n    @Override\n    public Class<Octicons> getIkon() {\n        return Octicons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-octicons-pack/src/main/resources/META-INF/resources/octicons/14.2.2/LICENSE.txt",
    "content": "MIT License\n\nCopyright (c) 2020 GitHub Inc.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\nWhen using the GitHub logos, be sure to follow the GitHub logo guidelines.\nhttps://github.com/logos"
  },
  {
    "path": "icon-packs/ikonli-octicons-pack/src/main/resources/META-INF/resources/octicons/14.2.2/css/octicons.css",
    "content": "@font-face {\n  font-family: 'Octicons';\n  src:  url('../fonts/octicons.eot?qz0pfi');\n  src:  url('../fonts/octicons.eot?qz0pfi#iefix') format('embedded-opentype'),\n  url('../fonts/octicons.ttf?qz0pfi') format('truetype'),\n  url('../fonts/octicons.woff?qz0pfi') format('woff'),\n  url('../fonts/octicons.svg?qz0pfi#icomoon') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"octicon-\"], [class*=\" octicon-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Octicons' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.octicon-alert-16:before {\n  content: \"\\e900\";\n}\n.octicon-alert-24:before {\n  content: \"\\e901\";\n}\n.octicon-archive-16:before {\n  content: \"\\e902\";\n}\n.octicon-archive-24:before {\n  content: \"\\e903\";\n}\n.octicon-arrow-both-16:before {\n  content: \"\\e904\";\n}\n.octicon-arrow-both-24:before {\n  content: \"\\e905\";\n}\n.octicon-arrow-down-16:before {\n  content: \"\\e906\";\n}\n.octicon-arrow-down-24:before {\n  content: \"\\e907\";\n}\n.octicon-arrow-down-left-24:before {\n  content: \"\\e908\";\n}\n.octicon-arrow-down-right-24:before {\n  content: \"\\e909\";\n}\n.octicon-arrow-left-16:before {\n  content: \"\\e90a\";\n}\n.octicon-arrow-left-24:before {\n  content: \"\\e90b\";\n}\n.octicon-arrow-right-16:before {\n  content: \"\\e90c\";\n}\n.octicon-arrow-right-24:before {\n  content: \"\\e90d\";\n}\n.octicon-arrow-switch-16:before {\n  content: \"\\e90e\";\n}\n.octicon-arrow-switch-24:before {\n  content: \"\\e90f\";\n}\n.octicon-arrow-up-16:before {\n  content: \"\\e910\";\n}\n.octicon-arrow-up-24:before {\n  content: \"\\e911\";\n}\n.octicon-arrow-up-left-24:before {\n  content: \"\\e912\";\n}\n.octicon-arrow-up-right-24:before {\n  content: \"\\e913\";\n}\n.octicon-beaker-16:before {\n  content: \"\\e914\";\n}\n.octicon-beaker-24:before {\n  content: \"\\e915\";\n}\n.octicon-bell-16:before {\n  content: \"\\e916\";\n}\n.octicon-bell-24:before {\n  content: \"\\e917\";\n}\n.octicon-bell-fill-24:before {\n  content: \"\\e918\";\n}\n.octicon-bell-slash-16:before {\n  content: \"\\e919\";\n}\n.octicon-bell-slash-24:before {\n  content: \"\\e91a\";\n}\n.octicon-blocked-16:before {\n  content: \"\\e91b\";\n}\n.octicon-blocked-24:before {\n  content: \"\\e91c\";\n}\n.octicon-bold-16:before {\n  content: \"\\e91d\";\n}\n.octicon-bold-24:before {\n  content: \"\\e91e\";\n}\n.octicon-book-16:before {\n  content: \"\\e91f\";\n}\n.octicon-book-24:before {\n  content: \"\\e920\";\n}\n.octicon-bookmark-16:before {\n  content: \"\\e921\";\n}\n.octicon-bookmark-24:before {\n  content: \"\\e922\";\n}\n.octicon-bookmark-fill-24:before {\n  content: \"\\e923\";\n}\n.octicon-bookmark-slash-16:before {\n  content: \"\\e924\";\n}\n.octicon-bookmark-slash-24:before {\n  content: \"\\e925\";\n}\n.octicon-bookmark-slash-fill-24:before {\n  content: \"\\e926\";\n}\n.octicon-briefcase-16:before {\n  content: \"\\e927\";\n}\n.octicon-briefcase-24:before {\n  content: \"\\e928\";\n}\n.octicon-broadcast-16:before {\n  content: \"\\e929\";\n}\n.octicon-broadcast-24:before {\n  content: \"\\e92a\";\n}\n.octicon-browser-16:before {\n  content: \"\\e92b\";\n}\n.octicon-browser-24:before {\n  content: \"\\e92c\";\n}\n.octicon-bug-16:before {\n  content: \"\\e92d\";\n}\n.octicon-bug-24:before {\n  content: \"\\e92e\";\n}\n.octicon-calendar-16:before {\n  content: \"\\e92f\";\n}\n.octicon-calendar-24:before {\n  content: \"\\e930\";\n}\n.octicon-check-16:before {\n  content: \"\\e931\";\n}\n.octicon-check-24:before {\n  content: \"\\e932\";\n}\n.octicon-check-circle-16:before {\n  content: \"\\e933\";\n}\n.octicon-check-circle-24:before {\n  content: \"\\e934\";\n}\n.octicon-check-circle-fill-16:before {\n  content: \"\\e935\";\n}\n.octicon-check-circle-fill-24:before {\n  content: \"\\e936\";\n}\n.octicon-checklist-16:before {\n  content: \"\\e937\";\n}\n.octicon-checklist-24:before {\n  content: \"\\e938\";\n}\n.octicon-chevron-down-16:before {\n  content: \"\\e939\";\n}\n.octicon-chevron-down-24:before {\n  content: \"\\e93a\";\n}\n.octicon-chevron-left-16:before {\n  content: \"\\e93b\";\n}\n.octicon-chevron-left-24:before {\n  content: \"\\e93c\";\n}\n.octicon-chevron-right-16:before {\n  content: \"\\e93d\";\n}\n.octicon-chevron-right-24:before {\n  content: \"\\e93e\";\n}\n.octicon-chevron-up-16:before {\n  content: \"\\e93f\";\n}\n.octicon-chevron-up-24:before {\n  content: \"\\e940\";\n}\n.octicon-circle-16:before {\n  content: \"\\e941\";\n}\n.octicon-circle-24:before {\n  content: \"\\e942\";\n}\n.octicon-circle-slash-16:before {\n  content: \"\\e943\";\n}\n.octicon-circle-slash-24:before {\n  content: \"\\e944\";\n}\n.octicon-clippy-16:before {\n  content: \"\\e945\";\n}\n.octicon-clippy-24:before {\n  content: \"\\e946\";\n}\n.octicon-clock-16:before {\n  content: \"\\e947\";\n}\n.octicon-clock-24:before {\n  content: \"\\e948\";\n}\n.octicon-code-16:before {\n  content: \"\\e949\";\n}\n.octicon-code-24:before {\n  content: \"\\e94a\";\n}\n.octicon-code-review-16:before {\n  content: \"\\e94b\";\n}\n.octicon-code-review-24:before {\n  content: \"\\e94c\";\n}\n.octicon-code-square-16:before {\n  content: \"\\e94d\";\n}\n.octicon-code-square-24:before {\n  content: \"\\e94e\";\n}\n.octicon-codescan-16:before {\n  content: \"\\e94f\";\n}\n.octicon-codescan-24:before {\n  content: \"\\e950\";\n}\n.octicon-codescan-checkmark-16:before {\n  content: \"\\e951\";\n}\n.octicon-codescan-checkmark-24:before {\n  content: \"\\e952\";\n}\n.octicon-codespaces-16:before {\n  content: \"\\e953\";\n}\n.octicon-codespaces-24:before {\n  content: \"\\e954\";\n}\n.octicon-columns-16:before {\n  content: \"\\e955\";\n}\n.octicon-columns-24:before {\n  content: \"\\e956\";\n}\n.octicon-comment-16:before {\n  content: \"\\e957\";\n}\n.octicon-comment-24:before {\n  content: \"\\e958\";\n}\n.octicon-comment-discussion-16:before {\n  content: \"\\e959\";\n}\n.octicon-comment-discussion-24:before {\n  content: \"\\e95a\";\n}\n.octicon-commit-24:before {\n  content: \"\\e95b\";\n}\n.octicon-container-16:before {\n  content: \"\\e95c\";\n}\n.octicon-container-24:before {\n  content: \"\\e95d\";\n}\n.octicon-cpu-16:before {\n  content: \"\\e95e\";\n}\n.octicon-cpu-24:before {\n  content: \"\\e95f\";\n}\n.octicon-credit-card-16:before {\n  content: \"\\e960\";\n}\n.octicon-credit-card-24:before {\n  content: \"\\e961\";\n}\n.octicon-cross-reference-16:before {\n  content: \"\\e962\";\n}\n.octicon-cross-reference-24:before {\n  content: \"\\e963\";\n}\n.octicon-dash-16:before {\n  content: \"\\e964\";\n}\n.octicon-dash-24:before {\n  content: \"\\e965\";\n}\n.octicon-database-16:before {\n  content: \"\\e966\";\n}\n.octicon-database-24:before {\n  content: \"\\e967\";\n}\n.octicon-dependabot-16:before {\n  content: \"\\e968\";\n}\n.octicon-dependabot-24:before {\n  content: \"\\e969\";\n}\n.octicon-desktop-download-16:before {\n  content: \"\\e96a\";\n}\n.octicon-desktop-download-24:before {\n  content: \"\\e96b\";\n}\n.octicon-device-camera-16:before {\n  content: \"\\e96c\";\n}\n.octicon-device-camera-video-16:before {\n  content: \"\\e96d\";\n}\n.octicon-device-camera-video-24:before {\n  content: \"\\e96e\";\n}\n.octicon-device-desktop-16:before {\n  content: \"\\e96f\";\n}\n.octicon-device-desktop-24:before {\n  content: \"\\e970\";\n}\n.octicon-device-mobile-16:before {\n  content: \"\\e971\";\n}\n.octicon-device-mobile-24:before {\n  content: \"\\e972\";\n}\n.octicon-diamond-16:before {\n  content: \"\\e973\";\n}\n.octicon-diamond-24:before {\n  content: \"\\e974\";\n}\n.octicon-diff-16:before {\n  content: \"\\e975\";\n}\n.octicon-diff-24:before {\n  content: \"\\e976\";\n}\n.octicon-diff-added-16:before {\n  content: \"\\e977\";\n}\n.octicon-diff-ignored-16:before {\n  content: \"\\e978\";\n}\n.octicon-diff-modified-16:before {\n  content: \"\\e979\";\n}\n.octicon-diff-removed-16:before {\n  content: \"\\e97a\";\n}\n.octicon-diff-renamed-16:before {\n  content: \"\\e97b\";\n}\n.octicon-dot-16:before {\n  content: \"\\e97c\";\n}\n.octicon-dot-24:before {\n  content: \"\\e97d\";\n}\n.octicon-dot-fill-16:before {\n  content: \"\\e97e\";\n}\n.octicon-dot-fill-24:before {\n  content: \"\\e97f\";\n}\n.octicon-download-16:before {\n  content: \"\\e980\";\n}\n.octicon-download-24:before {\n  content: \"\\e981\";\n}\n.octicon-duplicate-16:before {\n  content: \"\\e982\";\n}\n.octicon-duplicate-24:before {\n  content: \"\\e983\";\n}\n.octicon-ellipsis-16:before {\n  content: \"\\e984\";\n}\n.octicon-eye-16:before {\n  content: \"\\e985\";\n}\n.octicon-eye-24:before {\n  content: \"\\e986\";\n}\n.octicon-eye-closed-16:before {\n  content: \"\\e987\";\n}\n.octicon-eye-closed-24:before {\n  content: \"\\e988\";\n}\n.octicon-file-16:before {\n  content: \"\\e989\";\n}\n.octicon-file-24:before {\n  content: \"\\e98a\";\n}\n.octicon-file-badge-16:before {\n  content: \"\\e98b\";\n}\n.octicon-file-binary-16:before {\n  content: \"\\e98c\";\n}\n.octicon-file-binary-24:before {\n  content: \"\\e98d\";\n}\n.octicon-file-code-16:before {\n  content: \"\\e98e\";\n}\n.octicon-file-code-24:before {\n  content: \"\\e98f\";\n}\n.octicon-file-diff-16:before {\n  content: \"\\e990\";\n}\n.octicon-file-diff-24:before {\n  content: \"\\e991\";\n}\n.octicon-file-directory-16:before {\n  content: \"\\e992\";\n}\n.octicon-file-directory-24:before {\n  content: \"\\e993\";\n}\n.octicon-file-directory-fill-24:before {\n  content: \"\\e994\";\n}\n.octicon-file-media-24:before {\n  content: \"\\e995\";\n}\n.octicon-file-submodule-16:before {\n  content: \"\\e996\";\n}\n.octicon-file-submodule-24:before {\n  content: \"\\e997\";\n}\n.octicon-file-symlink-file-16:before {\n  content: \"\\e998\";\n}\n.octicon-file-symlink-file-24:before {\n  content: \"\\e999\";\n}\n.octicon-file-zip-16:before {\n  content: \"\\e99a\";\n}\n.octicon-file-zip-24:before {\n  content: \"\\e99b\";\n}\n.octicon-filter-16:before {\n  content: \"\\e99c\";\n}\n.octicon-filter-24:before {\n  content: \"\\e99d\";\n}\n.octicon-flame-16:before {\n  content: \"\\e99e\";\n}\n.octicon-flame-24:before {\n  content: \"\\e99f\";\n}\n.octicon-fold-16:before {\n  content: \"\\e9a0\";\n}\n.octicon-fold-24:before {\n  content: \"\\e9a1\";\n}\n.octicon-fold-down-16:before {\n  content: \"\\e9a2\";\n}\n.octicon-fold-down-24:before {\n  content: \"\\e9a3\";\n}\n.octicon-fold-up-16:before {\n  content: \"\\e9a4\";\n}\n.octicon-fold-up-24:before {\n  content: \"\\e9a5\";\n}\n.octicon-gear-16:before {\n  content: \"\\e9a6\";\n}\n.octicon-gear-24:before {\n  content: \"\\e9a7\";\n}\n.octicon-gift-16:before {\n  content: \"\\e9a8\";\n}\n.octicon-gift-24:before {\n  content: \"\\e9a9\";\n}\n.octicon-git-branch-16:before {\n  content: \"\\e9aa\";\n}\n.octicon-git-branch-24:before {\n  content: \"\\e9ab\";\n}\n.octicon-git-commit-16:before {\n  content: \"\\e9ac\";\n}\n.octicon-git-commit-24:before {\n  content: \"\\e9ad\";\n}\n.octicon-git-compare-16:before {\n  content: \"\\e9ae\";\n}\n.octicon-git-compare-24:before {\n  content: \"\\e9af\";\n}\n.octicon-git-merge-16:before {\n  content: \"\\e9b0\";\n}\n.octicon-git-merge-24:before {\n  content: \"\\e9b1\";\n}\n.octicon-git-pull-request-16:before {\n  content: \"\\e9b2\";\n}\n.octicon-git-pull-request-24:before {\n  content: \"\\e9b3\";\n}\n.octicon-git-pull-request-closed-16:before {\n  content: \"\\e9b4\";\n}\n.octicon-git-pull-request-closed-24:before {\n  content: \"\\e9b5\";\n}\n.octicon-git-pull-request-draft-16:before {\n  content: \"\\e9b6\";\n}\n.octicon-git-pull-request-draft-24:before {\n  content: \"\\e9b7\";\n}\n.octicon-globe-16:before {\n  content: \"\\e9b8\";\n}\n.octicon-globe-24:before {\n  content: \"\\e9b9\";\n}\n.octicon-grabber-16:before {\n  content: \"\\e9ba\";\n}\n.octicon-grabber-24:before {\n  content: \"\\e9bb\";\n}\n.octicon-graph-16:before {\n  content: \"\\e9bc\";\n}\n.octicon-graph-24:before {\n  content: \"\\e9bd\";\n}\n.octicon-hash-16:before {\n  content: \"\\e9be\";\n}\n.octicon-hash-24:before {\n  content: \"\\e9bf\";\n}\n.octicon-heading-16:before {\n  content: \"\\e9c0\";\n}\n.octicon-heading-24:before {\n  content: \"\\e9c1\";\n}\n.octicon-heart-16:before {\n  content: \"\\e9c2\";\n}\n.octicon-heart-24:before {\n  content: \"\\e9c3\";\n}\n.octicon-heart-fill-16:before {\n  content: \"\\e9c4\";\n}\n.octicon-heart-fill-24:before {\n  content: \"\\e9c5\";\n}\n.octicon-history-16:before {\n  content: \"\\e9c6\";\n}\n.octicon-history-24:before {\n  content: \"\\e9c7\";\n}\n.octicon-home-16:before {\n  content: \"\\e9c8\";\n}\n.octicon-home-24:before {\n  content: \"\\e9c9\";\n}\n.octicon-home-fill-24:before {\n  content: \"\\e9ca\";\n}\n.octicon-horizontal-rule-16:before {\n  content: \"\\e9cb\";\n}\n.octicon-horizontal-rule-24:before {\n  content: \"\\e9cc\";\n}\n.octicon-hourglass-16:before {\n  content: \"\\e9cd\";\n}\n.octicon-hourglass-24:before {\n  content: \"\\e9ce\";\n}\n.octicon-hubot-16:before {\n  content: \"\\e9cf\";\n}\n.octicon-hubot-24:before {\n  content: \"\\e9d0\";\n}\n.octicon-image-16:before {\n  content: \"\\e9d1\";\n}\n.octicon-image-24:before {\n  content: \"\\e9d2\";\n}\n.octicon-inbox-16:before {\n  content: \"\\e9d3\";\n}\n.octicon-inbox-24:before {\n  content: \"\\e9d4\";\n}\n.octicon-infinity-16:before {\n  content: \"\\e9d5\";\n}\n.octicon-infinity-24:before {\n  content: \"\\e9d6\";\n}\n.octicon-info-16:before {\n  content: \"\\e9d7\";\n}\n.octicon-info-24:before {\n  content: \"\\e9d8\";\n}\n.octicon-issue-closed-16:before {\n  content: \"\\e9d9\";\n}\n.octicon-issue-closed-24:before {\n  content: \"\\e9da\";\n}\n.octicon-issue-draft-16:before {\n  content: \"\\e9db\";\n}\n.octicon-issue-draft-24:before {\n  content: \"\\e9dc\";\n}\n.octicon-issue-opened-16:before {\n  content: \"\\e9dd\";\n}\n.octicon-issue-opened-24:before {\n  content: \"\\e9de\";\n}\n.octicon-issue-reopened-16:before {\n  content: \"\\e9df\";\n}\n.octicon-issue-reopened-24:before {\n  content: \"\\e9e0\";\n}\n.octicon-italic-16:before {\n  content: \"\\e9e1\";\n}\n.octicon-italic-24:before {\n  content: \"\\e9e2\";\n}\n.octicon-kebab-horizontal-16:before {\n  content: \"\\e9e3\";\n}\n.octicon-kebab-horizontal-24:before {\n  content: \"\\e9e4\";\n}\n.octicon-key-16:before {\n  content: \"\\e9e5\";\n}\n.octicon-key-24:before {\n  content: \"\\e9e6\";\n}\n.octicon-key-asterisk-16:before {\n  content: \"\\e9e7\";\n}\n.octicon-law-16:before {\n  content: \"\\e9e8\";\n}\n.octicon-law-24:before {\n  content: \"\\e9e9\";\n}\n.octicon-light-bulb-16:before {\n  content: \"\\e9ea\";\n}\n.octicon-light-bulb-24:before {\n  content: \"\\e9eb\";\n}\n.octicon-link-16:before {\n  content: \"\\e9ec\";\n}\n.octicon-link-24:before {\n  content: \"\\e9ed\";\n}\n.octicon-link-external-16:before {\n  content: \"\\e9ee\";\n}\n.octicon-link-external-24:before {\n  content: \"\\e9ef\";\n}\n.octicon-list-ordered-16:before {\n  content: \"\\e9f0\";\n}\n.octicon-list-ordered-24:before {\n  content: \"\\e9f1\";\n}\n.octicon-list-unordered-16:before {\n  content: \"\\e9f2\";\n}\n.octicon-list-unordered-24:before {\n  content: \"\\e9f3\";\n}\n.octicon-location-16:before {\n  content: \"\\e9f4\";\n}\n.octicon-location-24:before {\n  content: \"\\e9f5\";\n}\n.octicon-lock-16:before {\n  content: \"\\e9f6\";\n}\n.octicon-lock-24:before {\n  content: \"\\e9f7\";\n}\n.octicon-logo-gist-16:before {\n  content: \"\\e9f8\";\n}\n.octicon-logo-github-16:before {\n  content: \"\\e9f9\";\n}\n.octicon-mail-16:before {\n  content: \"\\e9fa\";\n}\n.octicon-mail-24:before {\n  content: \"\\e9fb\";\n}\n.octicon-mark-github-16:before {\n  content: \"\\e9fc\";\n}\n.octicon-markdown-16:before {\n  content: \"\\e9fd\";\n}\n.octicon-megaphone-16:before {\n  content: \"\\e9fe\";\n}\n.octicon-megaphone-24:before {\n  content: \"\\e9ff\";\n}\n.octicon-mention-16:before {\n  content: \"\\ea00\";\n}\n.octicon-mention-24:before {\n  content: \"\\ea01\";\n}\n.octicon-meter-16:before {\n  content: \"\\ea02\";\n}\n.octicon-milestone-16:before {\n  content: \"\\ea03\";\n}\n.octicon-milestone-24:before {\n  content: \"\\ea04\";\n}\n.octicon-mirror-16:before {\n  content: \"\\ea05\";\n}\n.octicon-mirror-24:before {\n  content: \"\\ea06\";\n}\n.octicon-moon-16:before {\n  content: \"\\ea07\";\n}\n.octicon-moon-24:before {\n  content: \"\\ea08\";\n}\n.octicon-mortar-board-16:before {\n  content: \"\\ea09\";\n}\n.octicon-mortar-board-24:before {\n  content: \"\\ea0a\";\n}\n.octicon-multi-select-16:before {\n  content: \"\\ea0b\";\n}\n.octicon-multi-select-24:before {\n  content: \"\\ea0c\";\n}\n.octicon-mute-16:before {\n  content: \"\\ea0d\";\n}\n.octicon-mute-24:before {\n  content: \"\\ea0e\";\n}\n.octicon-no-entry-16:before {\n  content: \"\\ea0f\";\n}\n.octicon-no-entry-24:before {\n  content: \"\\ea10\";\n}\n.octicon-north-star-16:before {\n  content: \"\\ea11\";\n}\n.octicon-north-star-24:before {\n  content: \"\\ea12\";\n}\n.octicon-note-16:before {\n  content: \"\\ea13\";\n}\n.octicon-note-24:before {\n  content: \"\\ea14\";\n}\n.octicon-number-16:before {\n  content: \"\\ea15\";\n}\n.octicon-number-24:before {\n  content: \"\\ea16\";\n}\n.octicon-organization-16:before {\n  content: \"\\ea17\";\n}\n.octicon-organization-24:before {\n  content: \"\\ea18\";\n}\n.octicon-package-16:before {\n  content: \"\\ea19\";\n}\n.octicon-package-24:before {\n  content: \"\\ea1a\";\n}\n.octicon-package-dependencies-16:before {\n  content: \"\\ea1b\";\n}\n.octicon-package-dependencies-24:before {\n  content: \"\\ea1c\";\n}\n.octicon-package-dependents-16:before {\n  content: \"\\ea1d\";\n}\n.octicon-package-dependents-24:before {\n  content: \"\\ea1e\";\n}\n.octicon-paintbrush-16:before {\n  content: \"\\ea1f\";\n}\n.octicon-paper-airplane-16:before {\n  content: \"\\ea20\";\n}\n.octicon-paper-airplane-24:before {\n  content: \"\\ea21\";\n}\n.octicon-pencil-16:before {\n  content: \"\\ea22\";\n}\n.octicon-pencil-24:before {\n  content: \"\\ea23\";\n}\n.octicon-people-16:before {\n  content: \"\\ea24\";\n}\n.octicon-people-24:before {\n  content: \"\\ea25\";\n}\n.octicon-person-16:before {\n  content: \"\\ea26\";\n}\n.octicon-person-24:before {\n  content: \"\\ea27\";\n}\n.octicon-person-add-16:before {\n  content: \"\\ea28\";\n}\n.octicon-person-add-24:before {\n  content: \"\\ea29\";\n}\n.octicon-pin-16:before {\n  content: \"\\ea2a\";\n}\n.octicon-pin-24:before {\n  content: \"\\ea2b\";\n}\n.octicon-play-16:before {\n  content: \"\\ea2c\";\n}\n.octicon-play-24:before {\n  content: \"\\ea2d\";\n}\n.octicon-plug-16:before {\n  content: \"\\ea2e\";\n}\n.octicon-plug-24:before {\n  content: \"\\ea2f\";\n}\n.octicon-plus-16:before {\n  content: \"\\ea30\";\n}\n.octicon-plus-24:before {\n  content: \"\\ea31\";\n}\n.octicon-plus-circle-16:before {\n  content: \"\\ea32\";\n}\n.octicon-plus-circle-24:before {\n  content: \"\\ea33\";\n}\n.octicon-project-16:before {\n  content: \"\\ea34\";\n}\n.octicon-project-24:before {\n  content: \"\\ea35\";\n}\n.octicon-pulse-16:before {\n  content: \"\\ea36\";\n}\n.octicon-pulse-24:before {\n  content: \"\\ea37\";\n}\n.octicon-question-16:before {\n  content: \"\\ea38\";\n}\n.octicon-question-24:before {\n  content: \"\\ea39\";\n}\n.octicon-quote-16:before {\n  content: \"\\ea3a\";\n}\n.octicon-quote-24:before {\n  content: \"\\ea3b\";\n}\n.octicon-reply-16:before {\n  content: \"\\ea3c\";\n}\n.octicon-reply-24:before {\n  content: \"\\ea3d\";\n}\n.octicon-repo-16:before {\n  content: \"\\ea3e\";\n}\n.octicon-repo-24:before {\n  content: \"\\ea3f\";\n}\n.octicon-repo-clone-16:before {\n  content: \"\\ea40\";\n}\n.octicon-repo-forked-16:before {\n  content: \"\\ea41\";\n}\n.octicon-repo-forked-24:before {\n  content: \"\\ea42\";\n}\n.octicon-repo-pull-16:before {\n  content: \"\\ea43\";\n}\n.octicon-repo-push-16:before {\n  content: \"\\ea44\";\n}\n.octicon-repo-push-24:before {\n  content: \"\\ea45\";\n}\n.octicon-repo-template-16:before {\n  content: \"\\ea46\";\n}\n.octicon-repo-template-24:before {\n  content: \"\\ea47\";\n}\n.octicon-report-16:before {\n  content: \"\\ea48\";\n}\n.octicon-report-24:before {\n  content: \"\\ea49\";\n}\n.octicon-rocket-16:before {\n  content: \"\\ea4a\";\n}\n.octicon-rocket-24:before {\n  content: \"\\ea4b\";\n}\n.octicon-rows-16:before {\n  content: \"\\ea4c\";\n}\n.octicon-rows-24:before {\n  content: \"\\ea4d\";\n}\n.octicon-rss-16:before {\n  content: \"\\ea4e\";\n}\n.octicon-rss-24:before {\n  content: \"\\ea4f\";\n}\n.octicon-ruby-16:before {\n  content: \"\\ea50\";\n}\n.octicon-ruby-24:before {\n  content: \"\\ea51\";\n}\n.octicon-screen-full-16:before {\n  content: \"\\ea52\";\n}\n.octicon-screen-full-24:before {\n  content: \"\\ea53\";\n}\n.octicon-screen-normal-16:before {\n  content: \"\\ea54\";\n}\n.octicon-screen-normal-24:before {\n  content: \"\\ea55\";\n}\n.octicon-search-16:before {\n  content: \"\\ea56\";\n}\n.octicon-search-24:before {\n  content: \"\\ea57\";\n}\n.octicon-select-single-16:before {\n  content: \"\\ea58\";\n}\n.octicon-server-16:before {\n  content: \"\\ea59\";\n}\n.octicon-server-24:before {\n  content: \"\\ea5a\";\n}\n.octicon-share-16:before {\n  content: \"\\ea5b\";\n}\n.octicon-share-24:before {\n  content: \"\\ea5c\";\n}\n.octicon-share-android-16:before {\n  content: \"\\ea5d\";\n}\n.octicon-share-android-24:before {\n  content: \"\\ea5e\";\n}\n.octicon-shield-16:before {\n  content: \"\\ea5f\";\n}\n.octicon-shield-24:before {\n  content: \"\\ea60\";\n}\n.octicon-shield-check-16:before {\n  content: \"\\ea61\";\n}\n.octicon-shield-check-24:before {\n  content: \"\\ea62\";\n}\n.octicon-shield-lock-16:before {\n  content: \"\\ea63\";\n}\n.octicon-shield-lock-24:before {\n  content: \"\\ea64\";\n}\n.octicon-shield-x-16:before {\n  content: \"\\ea65\";\n}\n.octicon-shield-x-24:before {\n  content: \"\\ea66\";\n}\n.octicon-sidebar-collapse-16:before {\n  content: \"\\ea67\";\n}\n.octicon-sidebar-collapse-24:before {\n  content: \"\\ea68\";\n}\n.octicon-sidebar-expand-16:before {\n  content: \"\\ea69\";\n}\n.octicon-sidebar-expand-24:before {\n  content: \"\\ea6a\";\n}\n.octicon-sign-in-16:before {\n  content: \"\\ea6b\";\n}\n.octicon-sign-in-24:before {\n  content: \"\\ea6c\";\n}\n.octicon-sign-out-16:before {\n  content: \"\\ea6d\";\n}\n.octicon-sign-out-24:before {\n  content: \"\\ea6e\";\n}\n.octicon-single-select-24:before {\n  content: \"\\ea6f\";\n}\n.octicon-skip-16:before {\n  content: \"\\ea70\";\n}\n.octicon-skip-24:before {\n  content: \"\\ea71\";\n}\n.octicon-smiley-16:before {\n  content: \"\\ea72\";\n}\n.octicon-smiley-24:before {\n  content: \"\\ea73\";\n}\n.octicon-sort-asc-16:before {\n  content: \"\\ea74\";\n}\n.octicon-sort-asc-24:before {\n  content: \"\\ea75\";\n}\n.octicon-sort-desc-16:before {\n  content: \"\\ea76\";\n}\n.octicon-sort-desc-24:before {\n  content: \"\\ea77\";\n}\n.octicon-square-16:before {\n  content: \"\\ea78\";\n}\n.octicon-square-24:before {\n  content: \"\\ea79\";\n}\n.octicon-square-fill-16:before {\n  content: \"\\ea7a\";\n}\n.octicon-square-fill-24:before {\n  content: \"\\ea7b\";\n}\n.octicon-squirrel-16:before {\n  content: \"\\ea7c\";\n}\n.octicon-squirrel-24:before {\n  content: \"\\ea7d\";\n}\n.octicon-star-16:before {\n  content: \"\\ea7e\";\n}\n.octicon-star-24:before {\n  content: \"\\ea7f\";\n}\n.octicon-star-fill-16:before {\n  content: \"\\ea80\";\n}\n.octicon-star-fill-24:before {\n  content: \"\\ea81\";\n}\n.octicon-stop-16:before {\n  content: \"\\ea82\";\n}\n.octicon-stop-24:before {\n  content: \"\\ea83\";\n}\n.octicon-stopwatch-16:before {\n  content: \"\\ea84\";\n}\n.octicon-stopwatch-24:before {\n  content: \"\\ea85\";\n}\n.octicon-strikethrough-16:before {\n  content: \"\\ea86\";\n}\n.octicon-strikethrough-24:before {\n  content: \"\\ea87\";\n}\n.octicon-sun-16:before {\n  content: \"\\ea88\";\n}\n.octicon-sun-24:before {\n  content: \"\\ea89\";\n}\n.octicon-sync-16:before {\n  content: \"\\ea8a\";\n}\n.octicon-sync-24:before {\n  content: \"\\ea8b\";\n}\n.octicon-tab-24:before {\n  content: \"\\ea8c\";\n}\n.octicon-table-16:before {\n  content: \"\\ea8d\";\n}\n.octicon-table-24:before {\n  content: \"\\ea8e\";\n}\n.octicon-tag-16:before {\n  content: \"\\ea8f\";\n}\n.octicon-tag-24:before {\n  content: \"\\ea90\";\n}\n.octicon-tasklist-16:before {\n  content: \"\\ea91\";\n}\n.octicon-tasklist-24:before {\n  content: \"\\ea92\";\n}\n.octicon-telescope-16:before {\n  content: \"\\ea93\";\n}\n.octicon-telescope-24:before {\n  content: \"\\ea94\";\n}\n.octicon-terminal-16:before {\n  content: \"\\ea95\";\n}\n.octicon-terminal-24:before {\n  content: \"\\ea96\";\n}\n.octicon-three-bars-16:before {\n  content: \"\\ea97\";\n}\n.octicon-thumbsdown-16:before {\n  content: \"\\ea98\";\n}\n.octicon-thumbsdown-24:before {\n  content: \"\\ea99\";\n}\n.octicon-thumbsup-16:before {\n  content: \"\\ea9a\";\n}\n.octicon-thumbsup-24:before {\n  content: \"\\ea9b\";\n}\n.octicon-tools-16:before {\n  content: \"\\ea9c\";\n}\n.octicon-tools-24:before {\n  content: \"\\ea9d\";\n}\n.octicon-trash-16:before {\n  content: \"\\ea9e\";\n}\n.octicon-trash-24:before {\n  content: \"\\ea9f\";\n}\n.octicon-triangle-down-16:before {\n  content: \"\\eaa0\";\n}\n.octicon-triangle-down-24:before {\n  content: \"\\eaa1\";\n}\n.octicon-triangle-left-16:before {\n  content: \"\\eaa2\";\n}\n.octicon-triangle-left-24:before {\n  content: \"\\eaa3\";\n}\n.octicon-triangle-right-16:before {\n  content: \"\\eaa4\";\n}\n.octicon-triangle-right-24:before {\n  content: \"\\eaa5\";\n}\n.octicon-triangle-up-16:before {\n  content: \"\\eaa6\";\n}\n.octicon-triangle-up-24:before {\n  content: \"\\eaa7\";\n}\n.octicon-typography-16:before {\n  content: \"\\eaa8\";\n}\n.octicon-typography-24:before {\n  content: \"\\eaa9\";\n}\n.octicon-unfold-16:before {\n  content: \"\\eaaa\";\n}\n.octicon-unfold-24:before {\n  content: \"\\eaab\";\n}\n.octicon-unlock-16:before {\n  content: \"\\eaac\";\n}\n.octicon-unlock-24:before {\n  content: \"\\eaad\";\n}\n.octicon-unmute-16:before {\n  content: \"\\eaae\";\n}\n.octicon-unmute-24:before {\n  content: \"\\eaaf\";\n}\n.octicon-unverified-16:before {\n  content: \"\\eab0\";\n}\n.octicon-unverified-24:before {\n  content: \"\\eab1\";\n}\n.octicon-upload-16:before {\n  content: \"\\eab2\";\n}\n.octicon-upload-24:before {\n  content: \"\\eab3\";\n}\n.octicon-verified-16:before {\n  content: \"\\eab4\";\n}\n.octicon-verified-24:before {\n  content: \"\\eab5\";\n}\n.octicon-versions-16:before {\n  content: \"\\eab6\";\n}\n.octicon-versions-24:before {\n  content: \"\\eab7\";\n}\n.octicon-video-16:before {\n  content: \"\\eab8\";\n}\n.octicon-video-24:before {\n  content: \"\\eab9\";\n}\n.octicon-workflow-16:before {\n  content: \"\\eaba\";\n}\n.octicon-workflow-24:before {\n  content: \"\\eabb\";\n}\n.octicon-x-16:before {\n  content: \"\\eabc\";\n}\n.octicon-x-24:before {\n  content: \"\\eabd\";\n}\n.octicon-x-circle-16:before {\n  content: \"\\eabe\";\n}\n.octicon-x-circle-24:before {\n  content: \"\\eabf\";\n}\n.octicon-x-circle-fill-16:before {\n  content: \"\\eac0\";\n}\n.octicon-x-circle-fill-24:before {\n  content: \"\\eac1\";\n}\n.octicon-zap-16:before {\n  content: \"\\eac2\";\n}\n.octicon-zap-24:before {\n  content: \"\\eac3\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-openiconic-pack/ikonli-openiconic-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-openiconic-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.openiconic {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.openiconic;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.openiconic.OpeniconicIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.openiconic.OpeniconicIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-openiconic-pack/src/main/java/org/kordamp/ikonli/openiconic/Openiconic.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.openiconic;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Openiconic implements Ikon {\n    // latest is e0de\n    ACCOUNT_LOGIN(\"oi-account-login\", '\\ue000'),\n    ACCOUNT_LOGOUT(\"oi-account-logout\", '\\ue001'),\n    ACTION_REDO(\"oi-action-redo\", '\\ue002'),\n    ACTION_UNDO(\"oi-action-undo\", '\\ue003'),\n    ALIGN_CENTER(\"oi-align-center\", '\\ue004'),\n    ALIGN_LEFT(\"oi-align-left\", '\\ue005'),\n    ALIGN_RIGHT(\"oi-align-right\", '\\ue006'),\n    APERTURE(\"oi-aperture\", '\\ue007'),\n    ARROW_BOTTOM(\"oi-arrow-bottom\", '\\ue008'),\n    ARROW_CIRCLE_BOTTOM(\"oi-arrow-circle-bottom\", '\\ue009'),\n    ARROW_CIRCLE_LEFT(\"oi-arrow-circle-left\", '\\ue00a'),\n    ARROW_CIRCLE_RIGHT(\"oi-arrow-circle-right\", '\\ue00b'),\n    ARROW_CIRCLE_TOP(\"oi-arrow-circle-top\", '\\ue00c'),\n    ARROW_LEFT(\"oi-arrow-left\", '\\ue00d'),\n    ARROW_RIGHT(\"oi-arrow-right\", '\\ue00e'),\n    ARROW_THICK_BOTTOM(\"oi-arrow-thick-bottom\", '\\ue00f'),\n    ARROW_THICK_LEFT(\"oi-arrow-thick-left\", '\\ue010'),\n    ARROW_THICK_RIGHT(\"oi-arrow-thick-right\", '\\ue011'),\n    ARROW_THICK_TOP(\"oi-arrow-thick-top\", '\\ue012'),\n    ARROW_TOP(\"oi-arrow-top\", '\\ue013'),\n    AUDIO(\"oi-audio\", '\\ue015'),\n    AUDIO_SPECTRUM(\"oi-audio-spectrum\", '\\ue014'),\n    BADGE(\"oi-badge\", '\\ue016'),\n    BAN(\"oi-ban\", '\\ue017'),\n    BAR_CHART(\"oi-bar-chart\", '\\ue018'),\n    BASKET(\"oi-basket\", '\\ue019'),\n    BATTERY_EMPTY(\"oi-battery-empty\", '\\ue01a'),\n    BATTERY_FULL(\"oi-battery-full\", '\\ue01b'),\n    BEAKER(\"oi-beaker\", '\\ue01c'),\n    BELL(\"oi-bell\", '\\ue01d'),\n    BLUETOOTH(\"oi-bluetooth\", '\\ue01e'),\n    BOLD(\"oi-bold\", '\\ue01f'),\n    BOLT(\"oi-bolt\", '\\ue020'),\n    BOOK(\"oi-book\", '\\ue021'),\n    BOOKMARK(\"oi-bookmark\", '\\ue022'),\n    BOX(\"oi-box\", '\\ue023'),\n    BRIEFCASE(\"oi-briefcase\", '\\ue024'),\n    BRITISH_POUND(\"oi-british-pound\", '\\ue025'),\n    BROWSER(\"oi-browser\", '\\ue026'),\n    BRUSH(\"oi-brush\", '\\ue027'),\n    BUG(\"oi-bug\", '\\ue028'),\n    BULLHORN(\"oi-bullhorn\", '\\ue029'),\n    CALCULATOR(\"oi-calculator\", '\\ue02a'),\n    CALENDAR(\"oi-calendar\", '\\ue02b'),\n    CAMERA_SLR(\"oi-camera-slr\", '\\ue02c'),\n    CARET_BOTTOM(\"oi-caret-bottom\", '\\ue02d'),\n    CARET_LEFT(\"oi-caret-left\", '\\ue02e'),\n    CARET_RIGHT(\"oi-caret-right\", '\\ue02f'),\n    CARET_TOP(\"oi-caret-top\", '\\ue030'),\n    CART(\"oi-cart\", '\\ue031'),\n    CHAT(\"oi-chat\", '\\ue032'),\n    CHECK(\"oi-check\", '\\ue033'),\n    CHEVRON_BOTTOM(\"oi-chevron-bottom\", '\\ue034'),\n    CHEVRON_LEFT(\"oi-chevron-left\", '\\ue035'),\n    CHEVRON_RIGHT(\"oi-chevron-right\", '\\ue036'),\n    CHEVRON_TOP(\"oi-chevron-top\", '\\ue037'),\n    CIRCLE_CHECK(\"oi-circle-check\", '\\ue038'),\n    CIRCLE_X(\"oi-circle-x\", '\\ue039'),\n    CLIPBOARD(\"oi-clipboard\", '\\ue03a'),\n    CLOCK(\"oi-clock\", '\\ue03b'),\n    CLOUD(\"oi-cloud\", '\\ue03e'),\n    CLOUDY(\"oi-cloudy\", '\\ue03f'),\n    CLOUD_DOWNLOAD(\"oi-cloud-download\", '\\ue03c'),\n    CLOUD_UPLOAD(\"oi-cloud-upload\", '\\ue03d'),\n    CODE(\"oi-code\", '\\ue040'),\n    COG(\"oi-cog\", '\\ue041'),\n    COLLAPSE_DOWN(\"oi-collapse-down\", '\\ue042'),\n    COLLAPSE_LEFT(\"oi-collapse-left\", '\\ue043'),\n    COLLAPSE_RIGHT(\"oi-collapse-right\", '\\ue044'),\n    COLLAPSE_UP(\"oi-collapse-up\", '\\ue045'),\n    COMMAND(\"oi-command\", '\\ue046'),\n    COMMENT_SQUARE(\"oi-comment-square\", '\\ue047'),\n    COMPASS(\"oi-compass\", '\\ue048'),\n    CONTRAST(\"oi-contrast\", '\\ue049'),\n    COPYWRITING(\"oi-copywriting\", '\\ue04a'),\n    CREDIT_CARD(\"oi-credit-card\", '\\ue04b'),\n    CROP(\"oi-crop\", '\\ue04c'),\n    DASHBOARD(\"oi-dashboard\", '\\ue04d'),\n    DATA_TRANSFER_DOWNLOAD(\"oi-data-transfer-download\", '\\ue04e'),\n    DATA_TRANSFER_UPLOAD(\"oi-data-transfer-upload\", '\\ue04f'),\n    DELETE(\"oi-delete\", '\\ue050'),\n    DIAL(\"oi-dial\", '\\ue051'),\n    DOCUMENT(\"oi-document\", '\\ue052'),\n    DOLLAR(\"oi-dollar\", '\\ue053'),\n    DOUBLE_QUOTE_SANS_LEFT(\"oi-double-quote-sans-left\", '\\ue054'),\n    DOUBLE_QUOTE_SANS_RIGHT(\"oi-double-quote-sans-right\", '\\ue055'),\n    DOUBLE_QUOTE_SERIF_LEFT(\"oi-double-quote-serif-left\", '\\ue056'),\n    DOUBLE_QUOTE_SERIF_RIGHT(\"oi-double-quote-serif-right\", '\\ue057'),\n    DROPLET(\"oi-droplet\", '\\ue058'),\n    EJECT(\"oi-eject\", '\\ue059'),\n    ELEVATOR(\"oi-elevator\", '\\ue05a'),\n    ELLIPSES(\"oi-ellipses\", '\\ue05b'),\n    ENVELOPE_CLOSED(\"oi-envelope-closed\", '\\ue05c'),\n    ENVELOPE_OPEN(\"oi-envelope-open\", '\\ue05d'),\n    EURO(\"oi-euro\", '\\ue05e'),\n    EXCERPT(\"oi-excerpt\", '\\ue05f'),\n    EXPAND_DOWN(\"oi-expand-down\", '\\ue060'),\n    EXPAND_LEFT(\"oi-expand-left\", '\\ue061'),\n    EXPAND_RIGHT(\"oi-expand-right\", '\\ue062'),\n    EXPAND_UP(\"oi-expand-up\", '\\ue063'),\n    EXTERNAL_LINK(\"oi-external-link\", '\\ue064'),\n    EYE(\"oi-eye\", '\\ue065'),\n    EYEDROPPER(\"oi-eyedropper\", '\\ue066'),\n    FILE(\"oi-file\", '\\ue067'),\n    FIRE(\"oi-fire\", '\\ue068'),\n    FLAG(\"oi-flag\", '\\ue069'),\n    FLASH(\"oi-flash\", '\\ue06a'),\n    FOLDER(\"oi-folder\", '\\ue06b'),\n    FORK(\"oi-fork\", '\\ue06c'),\n    FULLSCREEN_ENTER(\"oi-fullscreen-enter\", '\\ue06d'),\n    FULLSCREEN_EXIT(\"oi-fullscreen-exit\", '\\ue06e'),\n    GLOBE(\"oi-globe\", '\\ue06f'),\n    GRAPH(\"oi-graph\", '\\ue070'),\n    GRID_FOUR_UP(\"oi-grid-four-up\", '\\ue071'),\n    GRID_THREE_UP(\"oi-grid-three-up\", '\\ue072'),\n    GRID_TWO_UP(\"oi-grid-two-up\", '\\ue073'),\n    HARD_DRIVE(\"oi-hard-drive\", '\\ue074'),\n    HEADER(\"oi-header\", '\\ue075'),\n    HEADPHONES(\"oi-headphones\", '\\ue076'),\n    HEART(\"oi-heart\", '\\ue077'),\n    HOME(\"oi-home\", '\\ue078'),\n    IMAGE(\"oi-image\", '\\ue079'),\n    INBOX(\"oi-inbox\", '\\ue07a'),\n    INFINITY(\"oi-infinity\", '\\ue07b'),\n    INFO(\"oi-info\", '\\ue07c'),\n    ITALIC(\"oi-italic\", '\\ue07d'),\n    JUSTIFY_CENTER(\"oi-justify-center\", '\\ue07e'),\n    JUSTIFY_LEFT(\"oi-justify-left\", '\\ue07f'),\n    JUSTIFY_RIGHT(\"oi-justify-right\", '\\ue080'),\n    KEY(\"oi-key\", '\\ue081'),\n    LAPTOP(\"oi-laptop\", '\\ue082'),\n    LAYERS(\"oi-layers\", '\\ue083'),\n    LIGHTBULB(\"oi-lightbulb\", '\\ue084'),\n    LINK_BROKEN(\"oi-link-broken\", '\\ue085'),\n    LINK_INTACT(\"oi-link-intact\", '\\ue086'),\n    LIST(\"oi-list\", '\\ue088'),\n    LIST_RICH(\"oi-list-rich\", '\\ue087'),\n    LOCATION(\"oi-location\", '\\ue089'),\n    LOCK_LOCKED(\"oi-lock-locked\", '\\ue08a'),\n    LOCK_UNLOCKED(\"oi-lock-unlocked\", '\\ue08b'),\n    LOOP(\"oi-loop\", '\\ue08e'),\n    LOOP_CIRCULAR(\"oi-loop-circular\", '\\ue08c'),\n    LOOP_SQUARE(\"oi-loop-square\", '\\ue08d'),\n    MAGNIFYING_GLASS(\"oi-magnifying-glass\", '\\ue08f'),\n    MAP(\"oi-map\", '\\ue091'),\n    MAP_MARKER(\"oi-map-marker\", '\\ue090'),\n    MEDIA_PAUSE(\"oi-media-pause\", '\\ue092'),\n    MEDIA_PLAY(\"oi-media-play\", '\\ue093'),\n    MEDIA_RECORD(\"oi-media-record\", '\\ue094'),\n    MEDIA_SKIP_BACKWARD(\"oi-media-skip-backward\", '\\ue095'),\n    MEDIA_SKIP_FORWARD(\"oi-media-skip-forward\", '\\ue096'),\n    MEDIA_STEP_BACKWARD(\"oi-media-step-backward\", '\\ue097'),\n    MEDIA_STEP_FORWARD(\"oi-media-step-forward\", '\\ue098'),\n    MEDIA_STOP(\"oi-media-stop\", '\\ue099'),\n    MEDICAL_CROSS(\"oi-medical-cross\", '\\ue09a'),\n    MENU(\"oi-menu\", '\\ue09b'),\n    MICROPHONE(\"oi-microphone\", '\\ue09c'),\n    MINUS(\"oi-minus\", '\\ue09d'),\n    MONITOR(\"oi-monitor\", '\\ue09e'),\n    MOON(\"oi-moon\", '\\ue09f'),\n    MOVE(\"oi-move\", '\\ue0a0'),\n    MUSICAL_NOTE(\"oi-musical-note\", '\\ue0a1'),\n    PAPERCLIP(\"oi-paperclip\", '\\ue0a2'),\n    PENCIL(\"oi-pencil\", '\\ue0a3'),\n    PEOPLE(\"oi-people\", '\\ue0a4'),\n    PERSON(\"oi-person\", '\\ue0a5'),\n    PHONE(\"oi-phone\", '\\ue0a6'),\n    PIE_CHART(\"oi-pie-chart\", '\\ue0a7'),\n    PIN(\"oi-pin\", '\\ue0a8'),\n    PLAY_CIRCLE(\"oi-play-circle\", '\\ue0a9'),\n    PLUS(\"oi-plus\", '\\ue0aa'),\n    POWER_STANDBY(\"oi-power-standby\", '\\ue0ab'),\n    PRINT(\"oi-print\", '\\ue0ac'),\n    PROJECT(\"oi-project\", '\\ue0ad'),\n    PULSE(\"oi-pulse\", '\\ue0ae'),\n    PUZZLE_PIECE(\"oi-puzzle-piece\", '\\ue0af'),\n    QUESTION_MARK(\"oi-question-mark\", '\\ue0b0'),\n    RAIN(\"oi-rain\", '\\ue0b1'),\n    RANDOM(\"oi-random\", '\\ue0b2'),\n    RELOAD(\"oi-reload\", '\\ue0b3'),\n    RESIZE_BOTH(\"oi-resize-both\", '\\ue0b4'),\n    RESIZE_HEIGHT(\"oi-resize-height\", '\\ue0b5'),\n    RESIZE_WIDTH(\"oi-resize-width\", '\\ue0b6'),\n    RSS(\"oi-rss\", '\\ue0b8'),\n    RSS_ALT(\"oi-rss-alt\", '\\ue0b7'),\n    SCRIPT(\"oi-script\", '\\ue0b9'),\n    SHARE(\"oi-share\", '\\ue0bb'),\n    SHARE_BOXED(\"oi-share-boxed\", '\\ue0ba'),\n    SHIELD(\"oi-shield\", '\\ue0bc'),\n    SIGNAL(\"oi-signal\", '\\ue0bd'),\n    SIGNPOST(\"oi-signpost\", '\\ue0be'),\n    SORT_ASCENDING(\"oi-sort-ascending\", '\\ue0bf'),\n    SORT_DESCENDING(\"oi-sort-descending\", '\\ue0c0'),\n    SPREADSHEET(\"oi-spreadsheet\", '\\ue0c1'),\n    STAR(\"oi-star\", '\\ue0c2'),\n    SUN(\"oi-sun\", '\\ue0c3'),\n    TABLET(\"oi-tablet\", '\\ue0c4'),\n    TAG(\"oi-tag\", '\\ue0c5'),\n    TAGS(\"oi-tags\", '\\ue0c6'),\n    TARGET(\"oi-target\", '\\ue0c7'),\n    TASK(\"oi-task\", '\\ue0c8'),\n    TERMINAL(\"oi-terminal\", '\\ue0c9'),\n    TEXT(\"oi-text\", '\\ue0ca'),\n    THUMB_DOWN(\"oi-thumb-down\", '\\ue0cb'),\n    THUMB_UP(\"oi-thumb-up\", '\\ue0cc'),\n    TIMER(\"oi-timer\", '\\ue0cd'),\n    TRANSFER(\"oi-transfer\", '\\ue0ce'),\n    TRASH(\"oi-trash\", '\\ue0cf'),\n    UNDERLINE(\"oi-underline\", '\\ue0d0'),\n    VERTICAL_ALIGN_BOTTOM(\"oi-vertical-align-bottom\", '\\ue0d1'),\n    VERTICAL_ALIGN_CENTER(\"oi-vertical-align-center\", '\\ue0d2'),\n    VERTICAL_ALIGN_TOP(\"oi-vertical-align-top\", '\\ue0d3'),\n    VIDEO(\"oi-video\", '\\ue0d4'),\n    VOLUME_HIGH(\"oi-volume-high\", '\\ue0d5'),\n    VOLUME_LOW(\"oi-volume-low\", '\\ue0d6'),\n    VOLUME_OFF(\"oi-volume-off\", '\\ue0d7'),\n    WARNING(\"oi-warning\", '\\ue0d8'),\n    WIFI(\"oi-wifi\", '\\ue0d9'),\n    WRENCH(\"oi-wrench\", '\\ue0da'),\n    X(\"oi-x\", '\\ue0db'),\n    YEN(\"oi-yen\", '\\ue0dc'),\n    ZOOM_IN(\"oi-zoom-in\", '\\ue0dd'),\n    ZOOM_OUT(\"oi-zoom-out\", '\\ue0de'),\n    ;\n\n    public static Openiconic findByDescription(String description) {\n        for (Openiconic font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Openiconic(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-openiconic-pack/src/main/java/org/kordamp/ikonli/openiconic/OpeniconicIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.openiconic;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class OpeniconicIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/openiconic/1.1.0/fonts/open-iconic.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"oi-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Openiconic.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-openiconic-pack/src/main/java/org/kordamp/ikonli/openiconic/OpeniconicIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.openiconic;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class OpeniconicIkonProvider implements IkonProvider<Openiconic> {\n    @Override\n    public Class<Openiconic> getIkon() {\n        return Openiconic.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-openiconic-pack/src/main/resources/META-INF/resources/openiconic/1.1.0/css/open-iconic.css",
    "content": "\n@font-face {\n  font-family: 'Icons';\n  src: url('../fonts/open-iconic.eot');\n  src: url('../fonts/open-iconic.eot?#iconic-sm') format('embedded-opentype'), url('../fonts/open-iconic.woff') format('woff'), url('../fonts/open-iconic.ttf') format('truetype'), url('../fonts/open-iconic.otf') format('opentype'), url('../fonts/open-iconic.svg#iconic-sm') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n\n.oi[data-glyph].oi-text-replace {\n  font-size: 0;\n  line-height: 0;\n}\n\n.oi[data-glyph].oi-text-replace:before {\n  width: 1em;\n  text-align: center;\n}\n\n.oi[data-glyph]:before {\n  font-family: 'Icons';\n  display: inline-block;\n  speak: none;\n  line-height: 1;\n  vertical-align: baseline;\n  font-weight: normal;\n  font-style: normal;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.oi[data-glyph]:empty:before {\n  width: 1em;\n  text-align: center;\n  box-sizing: content-box;\n}\n\n.oi[data-glyph].oi-align-left:before {\n  text-align: left;\n}\n\n.oi[data-glyph].oi-align-right:before {\n  text-align: right;\n}\n\n.oi[data-glyph].oi-align-center:before {\n  text-align: center;\n}\n\n.oi[data-glyph].oi-flip-horizontal:before {\n  -webkit-transform: scale(-1, 1);\n  -ms-transform: scale(-1, 1);\n  transform: scale(-1, 1);\n}\n.oi[data-glyph].oi-flip-vertical:before {\n  -webkit-transform: scale(1, -1);\n  -ms-transform: scale(-1, 1);\n  transform: scale(1, -1);\n}\n.oi[data-glyph].oi-flip-horizontal-vertical:before {\n  -webkit-transform: scale(-1, -1);\n  -ms-transform: scale(-1, 1);\n  transform: scale(-1, -1);\n}\n\n\n.oi[data-glyph=account-login]:before { content:'\\e000'; }\n\n.oi[data-glyph=account-logout]:before { content:'\\e001'; }\n\n.oi[data-glyph=action-redo]:before { content:'\\e002'; }\n\n.oi[data-glyph=action-undo]:before { content:'\\e003'; }\n\n.oi[data-glyph=align-center]:before { content:'\\e004'; }\n\n.oi[data-glyph=align-left]:before { content:'\\e005'; }\n\n.oi[data-glyph=align-right]:before { content:'\\e006'; }\n\n.oi[data-glyph=aperture]:before { content:'\\e007'; }\n\n.oi[data-glyph=arrow-bottom]:before { content:'\\e008'; }\n\n.oi[data-glyph=arrow-circle-bottom]:before { content:'\\e009'; }\n\n.oi[data-glyph=arrow-circle-left]:before { content:'\\e00a'; }\n\n.oi[data-glyph=arrow-circle-right]:before { content:'\\e00b'; }\n\n.oi[data-glyph=arrow-circle-top]:before { content:'\\e00c'; }\n\n.oi[data-glyph=arrow-left]:before { content:'\\e00d'; }\n\n.oi[data-glyph=arrow-right]:before { content:'\\e00e'; }\n\n.oi[data-glyph=arrow-thick-bottom]:before { content:'\\e00f'; }\n\n.oi[data-glyph=arrow-thick-left]:before { content:'\\e010'; }\n\n.oi[data-glyph=arrow-thick-right]:before { content:'\\e011'; }\n\n.oi[data-glyph=arrow-thick-top]:before { content:'\\e012'; }\n\n.oi[data-glyph=arrow-top]:before { content:'\\e013'; }\n\n.oi[data-glyph=audio-spectrum]:before { content:'\\e014'; }\n\n.oi[data-glyph=audio]:before { content:'\\e015'; }\n\n.oi[data-glyph=badge]:before { content:'\\e016'; }\n\n.oi[data-glyph=ban]:before { content:'\\e017'; }\n\n.oi[data-glyph=bar-chart]:before { content:'\\e018'; }\n\n.oi[data-glyph=basket]:before { content:'\\e019'; }\n\n.oi[data-glyph=battery-empty]:before { content:'\\e01a'; }\n\n.oi[data-glyph=battery-full]:before { content:'\\e01b'; }\n\n.oi[data-glyph=beaker]:before { content:'\\e01c'; }\n\n.oi[data-glyph=bell]:before { content:'\\e01d'; }\n\n.oi[data-glyph=bluetooth]:before { content:'\\e01e'; }\n\n.oi[data-glyph=bold]:before { content:'\\e01f'; }\n\n.oi[data-glyph=bolt]:before { content:'\\e020'; }\n\n.oi[data-glyph=book]:before { content:'\\e021'; }\n\n.oi[data-glyph=bookmark]:before { content:'\\e022'; }\n\n.oi[data-glyph=box]:before { content:'\\e023'; }\n\n.oi[data-glyph=briefcase]:before { content:'\\e024'; }\n\n.oi[data-glyph=british-pound]:before { content:'\\e025'; }\n\n.oi[data-glyph=browser]:before { content:'\\e026'; }\n\n.oi[data-glyph=brush]:before { content:'\\e027'; }\n\n.oi[data-glyph=bug]:before { content:'\\e028'; }\n\n.oi[data-glyph=bullhorn]:before { content:'\\e029'; }\n\n.oi[data-glyph=calculator]:before { content:'\\e02a'; }\n\n.oi[data-glyph=calendar]:before { content:'\\e02b'; }\n\n.oi[data-glyph=camera-slr]:before { content:'\\e02c'; }\n\n.oi[data-glyph=caret-bottom]:before { content:'\\e02d'; }\n\n.oi[data-glyph=caret-left]:before { content:'\\e02e'; }\n\n.oi[data-glyph=caret-right]:before { content:'\\e02f'; }\n\n.oi[data-glyph=caret-top]:before { content:'\\e030'; }\n\n.oi[data-glyph=cart]:before { content:'\\e031'; }\n\n.oi[data-glyph=chat]:before { content:'\\e032'; }\n\n.oi[data-glyph=check]:before { content:'\\e033'; }\n\n.oi[data-glyph=chevron-bottom]:before { content:'\\e034'; }\n\n.oi[data-glyph=chevron-left]:before { content:'\\e035'; }\n\n.oi[data-glyph=chevron-right]:before { content:'\\e036'; }\n\n.oi[data-glyph=chevron-top]:before { content:'\\e037'; }\n\n.oi[data-glyph=circle-check]:before { content:'\\e038'; }\n\n.oi[data-glyph=circle-x]:before { content:'\\e039'; }\n\n.oi[data-glyph=clipboard]:before { content:'\\e03a'; }\n\n.oi[data-glyph=clock]:before { content:'\\e03b'; }\n\n.oi[data-glyph=cloud-download]:before { content:'\\e03c'; }\n\n.oi[data-glyph=cloud-upload]:before { content:'\\e03d'; }\n\n.oi[data-glyph=cloud]:before { content:'\\e03e'; }\n\n.oi[data-glyph=cloudy]:before { content:'\\e03f'; }\n\n.oi[data-glyph=code]:before { content:'\\e040'; }\n\n.oi[data-glyph=cog]:before { content:'\\e041'; }\n\n.oi[data-glyph=collapse-down]:before { content:'\\e042'; }\n\n.oi[data-glyph=collapse-left]:before { content:'\\e043'; }\n\n.oi[data-glyph=collapse-right]:before { content:'\\e044'; }\n\n.oi[data-glyph=collapse-up]:before { content:'\\e045'; }\n\n.oi[data-glyph=command]:before { content:'\\e046'; }\n\n.oi[data-glyph=comment-square]:before { content:'\\e047'; }\n\n.oi[data-glyph=compass]:before { content:'\\e048'; }\n\n.oi[data-glyph=contrast]:before { content:'\\e049'; }\n\n.oi[data-glyph=copywriting]:before { content:'\\e04a'; }\n\n.oi[data-glyph=credit-card]:before { content:'\\e04b'; }\n\n.oi[data-glyph=crop]:before { content:'\\e04c'; }\n\n.oi[data-glyph=dashboard]:before { content:'\\e04d'; }\n\n.oi[data-glyph=data-transfer-download]:before { content:'\\e04e'; }\n\n.oi[data-glyph=data-transfer-upload]:before { content:'\\e04f'; }\n\n.oi[data-glyph=delete]:before { content:'\\e050'; }\n\n.oi[data-glyph=dial]:before { content:'\\e051'; }\n\n.oi[data-glyph=document]:before { content:'\\e052'; }\n\n.oi[data-glyph=dollar]:before { content:'\\e053'; }\n\n.oi[data-glyph=double-quote-sans-left]:before { content:'\\e054'; }\n\n.oi[data-glyph=double-quote-sans-right]:before { content:'\\e055'; }\n\n.oi[data-glyph=double-quote-serif-left]:before { content:'\\e056'; }\n\n.oi[data-glyph=double-quote-serif-right]:before { content:'\\e057'; }\n\n.oi[data-glyph=droplet]:before { content:'\\e058'; }\n\n.oi[data-glyph=eject]:before { content:'\\e059'; }\n\n.oi[data-glyph=elevator]:before { content:'\\e05a'; }\n\n.oi[data-glyph=ellipses]:before { content:'\\e05b'; }\n\n.oi[data-glyph=envelope-closed]:before { content:'\\e05c'; }\n\n.oi[data-glyph=envelope-open]:before { content:'\\e05d'; }\n\n.oi[data-glyph=euro]:before { content:'\\e05e'; }\n\n.oi[data-glyph=excerpt]:before { content:'\\e05f'; }\n\n.oi[data-glyph=expand-down]:before { content:'\\e060'; }\n\n.oi[data-glyph=expand-left]:before { content:'\\e061'; }\n\n.oi[data-glyph=expand-right]:before { content:'\\e062'; }\n\n.oi[data-glyph=expand-up]:before { content:'\\e063'; }\n\n.oi[data-glyph=external-link]:before { content:'\\e064'; }\n\n.oi[data-glyph=eye]:before { content:'\\e065'; }\n\n.oi[data-glyph=eyedropper]:before { content:'\\e066'; }\n\n.oi[data-glyph=file]:before { content:'\\e067'; }\n\n.oi[data-glyph=fire]:before { content:'\\e068'; }\n\n.oi[data-glyph=flag]:before { content:'\\e069'; }\n\n.oi[data-glyph=flash]:before { content:'\\e06a'; }\n\n.oi[data-glyph=folder]:before { content:'\\e06b'; }\n\n.oi[data-glyph=fork]:before { content:'\\e06c'; }\n\n.oi[data-glyph=fullscreen-enter]:before { content:'\\e06d'; }\n\n.oi[data-glyph=fullscreen-exit]:before { content:'\\e06e'; }\n\n.oi[data-glyph=globe]:before { content:'\\e06f'; }\n\n.oi[data-glyph=graph]:before { content:'\\e070'; }\n\n.oi[data-glyph=grid-four-up]:before { content:'\\e071'; }\n\n.oi[data-glyph=grid-three-up]:before { content:'\\e072'; }\n\n.oi[data-glyph=grid-two-up]:before { content:'\\e073'; }\n\n.oi[data-glyph=hard-drive]:before { content:'\\e074'; }\n\n.oi[data-glyph=header]:before { content:'\\e075'; }\n\n.oi[data-glyph=headphones]:before { content:'\\e076'; }\n\n.oi[data-glyph=heart]:before { content:'\\e077'; }\n\n.oi[data-glyph=home]:before { content:'\\e078'; }\n\n.oi[data-glyph=image]:before { content:'\\e079'; }\n\n.oi[data-glyph=inbox]:before { content:'\\e07a'; }\n\n.oi[data-glyph=infinity]:before { content:'\\e07b'; }\n\n.oi[data-glyph=info]:before { content:'\\e07c'; }\n\n.oi[data-glyph=italic]:before { content:'\\e07d'; }\n\n.oi[data-glyph=justify-center]:before { content:'\\e07e'; }\n\n.oi[data-glyph=justify-left]:before { content:'\\e07f'; }\n\n.oi[data-glyph=justify-right]:before { content:'\\e080'; }\n\n.oi[data-glyph=key]:before { content:'\\e081'; }\n\n.oi[data-glyph=laptop]:before { content:'\\e082'; }\n\n.oi[data-glyph=layers]:before { content:'\\e083'; }\n\n.oi[data-glyph=lightbulb]:before { content:'\\e084'; }\n\n.oi[data-glyph=link-broken]:before { content:'\\e085'; }\n\n.oi[data-glyph=link-intact]:before { content:'\\e086'; }\n\n.oi[data-glyph=list-rich]:before { content:'\\e087'; }\n\n.oi[data-glyph=list]:before { content:'\\e088'; }\n\n.oi[data-glyph=location]:before { content:'\\e089'; }\n\n.oi[data-glyph=lock-locked]:before { content:'\\e08a'; }\n\n.oi[data-glyph=lock-unlocked]:before { content:'\\e08b'; }\n\n.oi[data-glyph=loop-circular]:before { content:'\\e08c'; }\n\n.oi[data-glyph=loop-square]:before { content:'\\e08d'; }\n\n.oi[data-glyph=loop]:before { content:'\\e08e'; }\n\n.oi[data-glyph=magnifying-glass]:before { content:'\\e08f'; }\n\n.oi[data-glyph=map-marker]:before { content:'\\e090'; }\n\n.oi[data-glyph=map]:before { content:'\\e091'; }\n\n.oi[data-glyph=media-pause]:before { content:'\\e092'; }\n\n.oi[data-glyph=media-play]:before { content:'\\e093'; }\n\n.oi[data-glyph=media-record]:before { content:'\\e094'; }\n\n.oi[data-glyph=media-skip-backward]:before { content:'\\e095'; }\n\n.oi[data-glyph=media-skip-forward]:before { content:'\\e096'; }\n\n.oi[data-glyph=media-step-backward]:before { content:'\\e097'; }\n\n.oi[data-glyph=media-step-forward]:before { content:'\\e098'; }\n\n.oi[data-glyph=media-stop]:before { content:'\\e099'; }\n\n.oi[data-glyph=medical-cross]:before { content:'\\e09a'; }\n\n.oi[data-glyph=menu]:before { content:'\\e09b'; }\n\n.oi[data-glyph=microphone]:before { content:'\\e09c'; }\n\n.oi[data-glyph=minus]:before { content:'\\e09d'; }\n\n.oi[data-glyph=monitor]:before { content:'\\e09e'; }\n\n.oi[data-glyph=moon]:before { content:'\\e09f'; }\n\n.oi[data-glyph=move]:before { content:'\\e0a0'; }\n\n.oi[data-glyph=musical-note]:before { content:'\\e0a1'; }\n\n.oi[data-glyph=paperclip]:before { content:'\\e0a2'; }\n\n.oi[data-glyph=pencil]:before { content:'\\e0a3'; }\n\n.oi[data-glyph=people]:before { content:'\\e0a4'; }\n\n.oi[data-glyph=person]:before { content:'\\e0a5'; }\n\n.oi[data-glyph=phone]:before { content:'\\e0a6'; }\n\n.oi[data-glyph=pie-chart]:before { content:'\\e0a7'; }\n\n.oi[data-glyph=pin]:before { content:'\\e0a8'; }\n\n.oi[data-glyph=play-circle]:before { content:'\\e0a9'; }\n\n.oi[data-glyph=plus]:before { content:'\\e0aa'; }\n\n.oi[data-glyph=power-standby]:before { content:'\\e0ab'; }\n\n.oi[data-glyph=print]:before { content:'\\e0ac'; }\n\n.oi[data-glyph=project]:before { content:'\\e0ad'; }\n\n.oi[data-glyph=pulse]:before { content:'\\e0ae'; }\n\n.oi[data-glyph=puzzle-piece]:before { content:'\\e0af'; }\n\n.oi[data-glyph=question-mark]:before { content:'\\e0b0'; }\n\n.oi[data-glyph=rain]:before { content:'\\e0b1'; }\n\n.oi[data-glyph=random]:before { content:'\\e0b2'; }\n\n.oi[data-glyph=reload]:before { content:'\\e0b3'; }\n\n.oi[data-glyph=resize-both]:before { content:'\\e0b4'; }\n\n.oi[data-glyph=resize-height]:before { content:'\\e0b5'; }\n\n.oi[data-glyph=resize-width]:before { content:'\\e0b6'; }\n\n.oi[data-glyph=rss-alt]:before { content:'\\e0b7'; }\n\n.oi[data-glyph=rss]:before { content:'\\e0b8'; }\n\n.oi[data-glyph=script]:before { content:'\\e0b9'; }\n\n.oi[data-glyph=share-boxed]:before { content:'\\e0ba'; }\n\n.oi[data-glyph=share]:before { content:'\\e0bb'; }\n\n.oi[data-glyph=shield]:before { content:'\\e0bc'; }\n\n.oi[data-glyph=signal]:before { content:'\\e0bd'; }\n\n.oi[data-glyph=signpost]:before { content:'\\e0be'; }\n\n.oi[data-glyph=sort-ascending]:before { content:'\\e0bf'; }\n\n.oi[data-glyph=sort-descending]:before { content:'\\e0c0'; }\n\n.oi[data-glyph=spreadsheet]:before { content:'\\e0c1'; }\n\n.oi[data-glyph=star]:before { content:'\\e0c2'; }\n\n.oi[data-glyph=sun]:before { content:'\\e0c3'; }\n\n.oi[data-glyph=tablet]:before { content:'\\e0c4'; }\n\n.oi[data-glyph=tag]:before { content:'\\e0c5'; }\n\n.oi[data-glyph=tags]:before { content:'\\e0c6'; }\n\n.oi[data-glyph=target]:before { content:'\\e0c7'; }\n\n.oi[data-glyph=task]:before { content:'\\e0c8'; }\n\n.oi[data-glyph=terminal]:before { content:'\\e0c9'; }\n\n.oi[data-glyph=text]:before { content:'\\e0ca'; }\n\n.oi[data-glyph=thumb-down]:before { content:'\\e0cb'; }\n\n.oi[data-glyph=thumb-up]:before { content:'\\e0cc'; }\n\n.oi[data-glyph=timer]:before { content:'\\e0cd'; }\n\n.oi[data-glyph=transfer]:before { content:'\\e0ce'; }\n\n.oi[data-glyph=trash]:before { content:'\\e0cf'; }\n\n.oi[data-glyph=underline]:before { content:'\\e0d0'; }\n\n.oi[data-glyph=vertical-align-bottom]:before { content:'\\e0d1'; }\n\n.oi[data-glyph=vertical-align-center]:before { content:'\\e0d2'; }\n\n.oi[data-glyph=vertical-align-top]:before { content:'\\e0d3'; }\n\n.oi[data-glyph=video]:before { content:'\\e0d4'; }\n\n.oi[data-glyph=volume-high]:before { content:'\\e0d5'; }\n\n.oi[data-glyph=volume-low]:before { content:'\\e0d6'; }\n\n.oi[data-glyph=volume-off]:before { content:'\\e0d7'; }\n\n.oi[data-glyph=warning]:before { content:'\\e0d8'; }\n\n.oi[data-glyph=wifi]:before { content:'\\e0d9'; }\n\n.oi[data-glyph=wrench]:before { content:'\\e0da'; }\n\n.oi[data-glyph=x]:before { content:'\\e0db'; }\n\n.oi[data-glyph=yen]:before { content:'\\e0dc'; }\n\n.oi[data-glyph=zoom-in]:before { content:'\\e0dd'; }\n\n.oi[data-glyph=zoom-out]:before { content:'\\e0de'; }\n"
  },
  {
    "path": "icon-packs/ikonli-paymentfont-pack/ikonli-paymentfont-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-paymentfont-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.paymentfont {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.paymentfont;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.paymentfont.PaymentFontIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.paymentfont.PaymentFontIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-paymentfont-pack/src/main/java/org/kordamp/ikonli/paymentfont/PaymentFont.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.paymentfont;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\npublic enum PaymentFont implements Ikon {\n    // last is f073\n    ALIPAY(\"pf-alipay\", '\\uf064'),\n    AMAZON(\"pf-amazon\", '\\uf000'),\n    AMAZON_PAY(\"pf-amazon-pay\", '\\uf072'),\n    AMAZON_PAY_ALT(\"pf-amazon-pay-alt\", '\\uf073'),\n    AMERICAN_EXPRESS(\"pf-american-express\", '\\uf001'),\n    AMERICAN_EXPRESS_ALT(\"pf-american-express-alt\", '\\uf002'),\n    APPLE_PAY(\"pf-apple-pay\", '\\uf04c'),\n    ATM(\"pf-atm\", '\\uf003'),\n    BANCONTACT_MISTER_CASH(\"pf-bancontact-mister-cash\", '\\uf050'),\n    BANKOMAT(\"pf-bankomat\", '\\uf004'),\n    BANK_TRANSFER(\"pf-bank-transfer\", '\\uf005'),\n    BITCOIN(\"pf-bitcoin\", '\\uf006'),\n    BITCOIN_SIGN(\"pf-bitcoin-sign\", '\\uf007'),\n    BITPAY(\"pf-bitpay\", '\\uf061'),\n    BPAY(\"pf-bpay\", '\\uf06b'),\n    BRAINTREE(\"pf-braintree\", '\\uf008'),\n    BTC(\"pf-btc\", '\\uf009'),\n    CARD(\"pf-card\", '\\uf00a'),\n    CARTA_SI(\"pf-carta-si\", '\\uf00b'),\n    CASH(\"pf-cash\", '\\uf00c'),\n    CASHCLOUD(\"pf-cashcloud\", '\\uf05e'),\n    CASH_ON_DELIVERY(\"pf-cash-on-delivery\", '\\uf00d'),\n    CASH_ON_PICKUP(\"pf-cash-on-pickup\", '\\uf053'),\n    CB(\"pf-cb\", '\\uf00e'),\n    CIRRUS(\"pf-cirrus\", '\\uf00f'),\n    CIRRUS_ALT(\"pf-cirrus-alt\", '\\uf010'),\n    CLICKANDBUY(\"pf-clickandbuy\", '\\uf011'),\n    CONTACTLESS(\"pf-contactless\", '\\uf06c'),\n    CONTACTLESS_ALT(\"pf-contactless-alt\", '\\uf06d'),\n    CREDIT_CARD(\"pf-credit-card\", '\\uf012'),\n    DANKORT(\"pf-dankort\", '\\uf04f'),\n    DINERS(\"pf-diners\", '\\uf013'),\n    DINERS_ALT(\"pf-diners-alt\", '\\uf065'),\n    DIRECT_DEBIT(\"pf-direct-debit\", '\\uf069'),\n    DISCOVER(\"pf-discover\", '\\uf014'),\n    EC(\"pf-ec\", '\\uf015'),\n    ELO(\"pf-elo\", '\\uf055'),\n    ELO_ALT(\"pf-elo-alt\", '\\uf056'),\n    EPS(\"pf-eps\", '\\uf016'),\n    ETH(\"pf-eth\", '\\uf06e'),\n    EUR(\"pf-eur\", '\\uf017'),\n    FACTURE(\"pf-facture\", '\\uf018'),\n    FATTURA(\"pf-fattura\", '\\uf019'),\n    FLATTR(\"pf-flattr\", '\\uf01a'),\n    GIROPAY(\"pf-giropay\", '\\uf01b'),\n    GOOGLE_WALLET(\"pf-google-wallet\", '\\uf01c'),\n    GOOGLE_WALLET_ALT(\"pf-google-wallet-alt\", '\\uf01d'),\n    GPB(\"pf-gpb\", '\\uf01e'),\n    GRATIPAY(\"pf-gratipay\", '\\uf01f'),\n    GRATIPAY_SIGN(\"pf-gratipay-sign\", '\\uf05c'),\n    HIPERCARD(\"pf-hipercard\", '\\uf066'),\n    IDEAL(\"pf-ideal\", '\\uf020'),\n    ILS(\"pf-ils\", '\\uf021'),\n    INR(\"pf-inr\", '\\uf022'),\n    INTERAC(\"pf-interac\", '\\uf04d'),\n    INTERAC_ALT(\"pf-interac-alt\", '\\uf05f'),\n    INVOICE(\"pf-invoice\", '\\uf023'),\n    INVOICE_SIGN(\"pf-invoice-sign\", '\\uf024'),\n    INVOICE_SIGN_ALT(\"pf-invoice-sign-alt\", '\\uf025'),\n    INVOICE_SIGN_ALT_O(\"pf-invoice-sign-alt-o\", '\\uf026'),\n    INVOICE_SIGN_O(\"pf-invoice-sign-o\", '\\uf027'),\n    JCB(\"pf-jcb\", '\\uf028'),\n    JPY(\"pf-jpy\", '\\uf029'),\n    KLARNA(\"pf-klarna\", '\\uf060'),\n    KRW(\"pf-krw\", '\\uf02a'),\n    LTC(\"pf-ltc\", '\\uf06f'),\n    MAESTRO(\"pf-maestro\", '\\uf02b'),\n    MAESTRO_ALT(\"pf-maestro-alt\", '\\uf02c'),\n    MASTERCARD(\"pf-mastercard\", '\\uf02d'),\n    MASTERCARD_ALT(\"pf-mastercard-alt\", '\\uf02e'),\n    MASTERCARD_SECURECODE(\"pf-mastercard-securecode\", '\\uf02f'),\n    MERCADO_PAGO(\"pf-mercado-pago\", '\\uf058'),\n    MERCADO_PAGO_SIGN(\"pf-mercado-pago-sign\", '\\uf059'),\n    MOIP(\"pf-moip\", '\\uf051'),\n    MULTIBANCO(\"pf-multibanco\", '\\uf05b'),\n    OGONE(\"pf-ogone\", '\\uf030'),\n    PAGSEGURO(\"pf-pagseguro\", '\\uf052'),\n    PAYBOX(\"pf-paybox\", '\\uf031'),\n    PAYLIFE(\"pf-paylife\", '\\uf032'),\n    PAYMILL(\"pf-paymill\", '\\uf04e'),\n    PAYPAL(\"pf-paypal\", '\\uf033'),\n    PAYPAL_ALT(\"pf-paypal-alt\", '\\uf034'),\n    PAYSAFECARD(\"pf-paysafecard\", '\\uf035'),\n    PAYSHOP(\"pf-payshop\", '\\uf05a'),\n    PAYU(\"pf-payu\", '\\uf057'),\n    POSTEPAY(\"pf-postepay\", '\\uf036'),\n    QUICK(\"pf-quick\", '\\uf037'),\n    RECHNUNG(\"pf-rechnung\", '\\uf038'),\n    RIPPLE(\"pf-ripple\", '\\uf039'),\n    RUB(\"pf-rub\", '\\uf03a'),\n    SAGE(\"pf-sage\", '\\uf054'),\n    SEPA(\"pf-sepa\", '\\uf04a'),\n    SEPA_ALT(\"pf-sepa-alt\", '\\uf04b'),\n    SHOPIFY(\"pf-shopify\", '\\uf068'),\n    SIX(\"pf-six\", '\\uf05d'),\n    SKRILL(\"pf-skrill\", '\\uf03b'),\n    SKRILL_ALT(\"pf-skrill-alt\", '\\uf067'),\n    SODEXO(\"pf-sodexo\", '\\uf06a'),\n    SOFORT(\"pf-sofort\", '\\uf03c'),\n    SQUARE(\"pf-square\", '\\uf03d'),\n    STRIPE(\"pf-stripe\", '\\uf03e'),\n    TRUSTE(\"pf-truste\", '\\uf03f'),\n    TRY(\"pf-try\", '\\uf040'),\n    UNIONPAY(\"pf-unionpay\", '\\uf041'),\n    USD(\"pf-usd\", '\\uf042'),\n    VENMO(\"pf-venmo\", '\\uf062'),\n    VERIFIED_BY_VISA(\"pf-verified-by-visa\", '\\uf043'),\n    VERISIGN(\"pf-verisign\", '\\uf044'),\n    VISA(\"pf-visa\", '\\uf045'),\n    VISA_DEBIT(\"pf-visa-debit\", '\\uf063'),\n    VISA_ELECTRON(\"pf-visa-electron\", '\\uf046'),\n    VISA_PAY(\"pf-visa-pay\", '\\uf070'),\n    WECHAT_PAY(\"pf-wechat-pay\", '\\uf071'),\n    WESTERN_UNION(\"pf-western-union\", '\\uf047'),\n    WESTERN_UNION_ALT(\"pf-western-union-alt\", '\\uf048'),\n    WIRECARD(\"pf-wirecard\", '\\uf049');\n\n    public static PaymentFont findByDescription(String description) {\n        for (PaymentFont font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    PaymentFont(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-paymentfont-pack/src/main/java/org/kordamp/ikonli/paymentfont/PaymentFontIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.paymentfont;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class PaymentFontIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/paymentfont/1.2.5/fonts/paymentfont-webfont.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"pf-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return PaymentFont.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"paymentfont-webfont\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-paymentfont-pack/src/main/java/org/kordamp/ikonli/paymentfont/PaymentFontIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.paymentfont;\n\nimport org.kordamp.ikonli.IkonProvider;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class PaymentFontIkonProvider implements IkonProvider<PaymentFont> {\n    @Override\n    public Class<PaymentFont> getIkon() {\n        return PaymentFont.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-paymentfont-pack/src/main/resources/META-INF/resources/paymentfont/1.2.5/css/paymentfont.css",
    "content": "/*!\n *  PaymentFont 1.2.5 by @AMPoellmann - http://paymentfont.io\n *  License - http://paymentfont.io/#license (Font: SIL OFL 1.1, CSS: MIT License)\n */\n\n@font-face {\n  font-family: 'PaymentFont';\n  src: url('../fonts/paymentfont-webfont.eot');\n  src: url('../fonts/paymentfont-webfont.eot?#iefix') format('embedded-opentype'),\n       url('../fonts/paymentfont-webfont.woff') format('woff2'),\n       url('../fonts/paymentfont-webfont.woff') format('woff'),\n       url('../fonts/paymentfont-webfont.ttf') format('truetype'),\n       url('../fonts/paymentfont-webfont.svg#paymentfont-webfont') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n\n.pf {\n  display: inline-block;\n  font: normal normal normal 14px/1 PaymentFont;\n  font-size: inherit;\n  text-rendering: auto;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.pf-lg {\n  font-size: 1.33333333em;\n  line-height: 0.75em;\n  vertical-align: -15%;\n}\n.pf-2x {\n  font-size: 2em;\n}\n.pf-3x {\n  font-size: 3em;\n}\n.pf-4x {\n  font-size: 4em;\n}\n.pf-5x {\n  font-size: 5em;\n}\n\n.pf-amazon:before {\n  content: \"\\f000\";\n}\n.pf-american-express:before {\n  content: \"\\f001\";\n}\n.pf-american-express-alt:before {\n  content: \"\\f002\";\n}\n.pf-atm:before {\n  content: \"\\f003\";\n}\n.pf-bankomat:before {\n  content: \"\\f004\";\n}\n.pf-bank-transfer:before {\n  content: \"\\f005\";\n}\n.pf-bitcoin:before {\n  content: \"\\f006\";\n}\n.pf-bitcoin-sign:before {\n  content: \"\\f007\";\n}\n.pf-braintree:before {\n  content: \"\\f008\";\n}\n.pf-btc:before {\n  content: \"\\f009\";\n}\n.pf-card:before {\n  content: \"\\f00a\";\n}\n.pf-carta-si:before {\n  content: \"\\f00b\";\n}\n.pf-cash:before {\n  content: \"\\f00c\";\n}\n.pf-cash-on-delivery:before {\n  content: \"\\f00d\";\n}\n.pf-cb:before {\n  content: \"\\f00e\";\n}\n.pf-cirrus:before {\n  content: \"\\f00f\";\n}\n.pf-cirrus-alt:before {\n  content: \"\\f010\";\n}\n.pf-clickandbuy:before {\n  content: \"\\f011\";\n}\n.pf-credit-card:before {\n  content: \"\\f012\";\n}\n.pf-diners:before {\n  content: \"\\f013\";\n}\n.pf-discover:before {\n  content: \"\\f014\";\n}\n.pf-ec:before {\n  content: \"\\f015\";\n}\n.pf-eps:before {\n  content: \"\\f016\";\n}\n.pf-eur:before {\n  content: \"\\f017\";\n}\n.pf-facture:before {\n  content: \"\\f018\";\n}\n.pf-fattura:before {\n  content: \"\\f019\";\n}\n.pf-flattr:before {\n  content: \"\\f01a\";\n}\n.pf-giropay:before {\n  content: \"\\f01b\";\n}\n.pf-google-wallet:before {\n  content: \"\\f01c\";\n}\n.pf-google-wallet-alt:before {\n  content: \"\\f01d\";\n}\n.pf-gpb:before {\n  content: \"\\f01e\";\n}\n.pf-gratipay:before {\n  content: \"\\f01f\";\n}\n.pf-ideal:before {\n  content: \"\\f020\";\n}\n.pf-ils:before {\n  content: \"\\f021\";\n}\n.pf-inr:before {\n  content: \"\\f022\";\n}\n.pf-invoice:before {\n  content: \"\\f023\";\n}\n.pf-invoice-sign:before {\n  content: \"\\f024\";\n}\n.pf-invoice-sign-alt:before {\n  content: \"\\f025\";\n}\n.pf-invoice-sign-alt-o:before {\n  content: \"\\f026\";\n}\n.pf-invoice-sign-o:before {\n  content: \"\\f027\";\n}\n.pf-jcb:before {\n  content: \"\\f028\";\n}\n.pf-jpy:before {\n  content: \"\\f029\";\n}\n.pf-krw:before {\n  content: \"\\f02a\";\n}\n.pf-maestro:before {\n  content: \"\\f02b\";\n}\n.pf-maestro-alt:before {\n  content: \"\\f02c\";\n}\n.pf-mastercard:before {\n  content: \"\\f02d\";\n}\n.pf-mastercard-alt:before {\n  content: \"\\f02e\";\n}\n.pf-mastercard-securecode:before {\n  content: \"\\f02f\";\n}\n.pf-ogone:before {\n  content: \"\\f030\";\n}\n.pf-paybox:before {\n  content: \"\\f031\";\n}\n.pf-paylife:before {\n  content: \"\\f032\";\n}\n.pf-paypal:before {\n  content: \"\\f033\";\n}\n.pf-paypal-alt:before {\n  content: \"\\f034\";\n}\n.pf-paysafecard:before {\n  content: \"\\f035\";\n}\n.pf-postepay:before {\n  content: \"\\f036\";\n}\n.pf-quick:before {\n  content: \"\\f037\";\n}\n.pf-rechnung:before {\n  content: \"\\f038\";\n}\n.pf-ripple:before {\n  content: \"\\f039\";\n}\n.pf-rub:before {\n  content: \"\\f03a\";\n}\n.pf-skrill:before {\n  content: \"\\f03b\";\n}\n.pf-sofort:before {\n  content: \"\\f03c\";\n}\n.pf-square:before {\n  content: \"\\f03d\";\n}\n.pf-stripe:before {\n  content: \"\\f03e\";\n}\n.pf-truste:before {\n  content: \"\\f03f\";\n}\n.pf-try:before {\n  content: \"\\f040\";\n}\n.pf-unionpay:before {\n  content: \"\\f041\";\n}\n.pf-usd:before {\n  content: \"\\f042\";\n}\n.pf-verified-by-visa:before {\n  content: \"\\f043\";\n}\n.pf-verisign:before {\n  content: \"\\f044\";\n}\n.pf-visa:before {\n  content: \"\\f045\";\n}\n.pf-visa-electron:before {\n  content: \"\\f046\";\n}\n.pf-western-union:before {\n  content: \"\\f047\";\n}\n.pf-western-union-alt:before {\n  content: \"\\f048\";\n}\n.pf-wirecard:before {\n  content: \"\\f049\";\n}\n.pf-sepa:before {\n  content: \"\\f04a\";\n}\n.pf-sepa-alt:before {\n  content: \"\\f04b\";\n}\n.pf-apple-pay:before {\n  content: \"\\f04c\";\n}\n.pf-interac:before {\n  content: \"\\f04d\";\n}\n.pf-paymill:before {\n  content: \"\\f04e\";\n}\n.pf-dankort:before {\n  content: \"\\f04f\";\n}\n.pf-bancontact-mister-cash:before {\n  content: \"\\f050\";\n}\n.pf-moip:before {\n  content: \"\\f051\";\n}\n.pf-pagseguro:before {\n  content: \"\\f052\";\n}\n.pf-cash-on-pickup:before {\n  content: \"\\f053\";\n}\n.pf-sage:before {\n  content: \"\\f054\";\n}\n.pf-elo:before {\n  content: \"\\f055\";\n}\n.pf-elo-alt:before {\n  content: \"\\f056\";\n}\n.pf-payu:before {\n  content: \"\\f057\";\n}\n.pf-mercado-pago:before {\n  content: \"\\f058\";\n}\n.pf-mercado-pago-sign:before {\n  content: \"\\f059\";\n}\n.pf-payshop:before {\n  content: \"\\f05a\";\n}\n.pf-multibanco:before {\n  content: \"\\f05b\";\n}\n.pf-gratipay-sign:before {\n  content: \"\\f05c\";\n}\n.pf-six:before {\n  content: \"\\f05d\";\n}\n.pf-cashcloud:before {\n  content: \"\\f05e\";\n}\n.pf-interac-alt:before {\n  content: \"\\f05f\";\n}\n.pf-klarna:before {\n  content: \"\\f060\";\n}\n.pf-bitpay:before {\n  content: \"\\f061\";\n}\n.pf-venmo:before {\n  content: \"\\f062\";\n}\n.pf-visa-debit:before {\n  content: \"\\f063\";\n}\n.pf-alipay:before {\n  content: \"\\f064\";\n}\n.pf-diners-alt:before {\n  content: \"\\f065\";\n}\n.pf-hipercard:before {\n  content: \"\\f066\";\n}\n.pf-skrill-alt:before {\n  content: \"\\f067\";\n}\n.pf-shopify:before {\n  content: \"\\f068\";\n}\n.pf-direct-debit:before {\n  content: \"\\f069\";\n}\n.pf-sodexo:before {\n  content: \"\\f06a\";\n}\n.pf-bpay:before {\n  content: \"\\f06b\";\n}\n.pf-contactless:before {\n  content: \"\\f06c\";\n}\n.pf-contactless-alt:before {\n  content: \"\\f06d\";\n}\n.pf-eth:before {\n  content: \"\\f06e\";\n}\n.pf-ltc:before {\n  content: \"\\f06f\";\n}\n.pf-visa-pay:before {\n  content: \"\\f070\";\n}\n.pf-wechat-pay:before {\n  content: \"\\f071\";\n}\n.pf-amazon-pay:before {\n  content: \"\\f072\";\n}\n.pf-amazon-pay-alt:before {\n  content: \"\\f073\";\n}\n\n/*\n * Finito!\n */"
  },
  {
    "path": "icon-packs/ikonli-prestashopicons-pack/ikonli-prestashopicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-prestashopicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.prestashopicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.prestashopicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.prestashopicons.PrestaShopIconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.prestashopicons.PrestaShopIconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-prestashopicons-pack/src/main/java/org/kordamp/ikonli/prestashopicons/PrestaShopIcons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.prestashopicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum PrestaShopIcons implements Ikon {\n    PS_30_80(\"ps-30-80\", '\\ue09d'),\n    PS_40_105(\"ps-40-105\", '\\ue09e'),\n    PS_50_120(\"ps-50-120\", '\\ue09f'),\n    PS_60_140(\"ps-60-140\", '\\ue0a0'),\n    PS_70_160(\"ps-70-160\", '\\ue0a1'),\n    PS_95_200(\"ps-95-200\", '\\ue0a2'),\n    AIM(\"ps-aim\", 'a'),\n    AIM_ALT(\"ps-aim-alt\", '\\ue036'),\n    AIRPLANE(\"ps-airplane\", '\\ue0a3'),\n    ALIGN_CENTERED(\"ps-align-centered\", '\\ue128'),\n    ALIGN_JUSTIFIED(\"ps-align-justified\", '\\ue11b'),\n    ALIGN_LEFT(\"ps-align-left\", '\\ue11d'),\n    ALIGN_RIGHT(\"ps-align-right\", '\\ue11c'),\n    AMAZON(\"ps-amazon\", '\\ue037'),\n    AMBULANCE(\"ps-ambulance\", '\\ue162'),\n    ANCHOR(\"ps-anchor\", '\\ue101'),\n    ANY_SOLVENT(\"ps-any-solvent\", '\\ue0a4'),\n    ANY_SOLVENT_WITHOUT_TETRACHLORETHYLENE(\"ps-any-solvent-without-tetrachlorethylene\", '\\ue0a5'),\n    APPLE(\"ps-apple\", '\\ue039'),\n    APPS(\"ps-apps\", '\\ue0c2'),\n    APP_STORE(\"ps-app-store\", '\\ue038'),\n    ARCHIVE(\"ps-archive\", '\\ue157'),\n    ARROW_BOX(\"ps-arrow-box\", '\\ue141'),\n    ARROW_DOWN(\"ps-arrow-down\", '\\ue158'),\n    ARROW_LEFT(\"ps-arrow-left\", '\\ue159'),\n    ARROW_RIGHT(\"ps-arrow-right\", '\\ue115'),\n    ARROW_UP(\"ps-arrow-up\", '\\ue15a'),\n    ARTO(\"ps-arto\", 'b'),\n    ASTERISK(\"ps-asterisk\", '\\ue15b'),\n    ATTACHMENT(\"ps-attachment\", '\\ue0a6'),\n    AWS(\"ps-aws\", 'c'),\n    BACKPACK(\"ps-backpack\", '\\ue14d'),\n    BAIDU(\"ps-baidu\", 'd'),\n    BANK_SAFE(\"ps-bank-safe\", '\\ue03d'),\n    BARREL(\"ps-barrel\", '\\ue0a8'),\n    BAR_CODE(\"ps-bar-code\", '\\ue10b'),\n    BASECAMP(\"ps-basecamp\", 'e'),\n    BATTERY(\"ps-battery\", '\\ue150'),\n    BATTERY_CHARGE(\"ps-battery-charge\", '\\ue151'),\n    BEBO(\"ps-bebo\", 'f'),\n    BEER(\"ps-beer\", '\\ue10d'),\n    BEHANCE(\"ps-behance\", 'g'),\n    BELL(\"ps-bell\", '\\ue10e'),\n    BIKE(\"ps-bike\", '\\ue0a9'),\n    BING(\"ps-bing\", 'h'),\n    BIRTHDAY(\"ps-birthday\", '\\ue177'),\n    BLASTER(\"ps-blaster\", '\\ue03f'),\n    BLIP(\"ps-blip\", 'i'),\n    BLOGGER(\"ps-blogger\", 'j'),\n    BNTER(\"ps-bnter\", 'k'),\n    BOARD(\"ps-board\", '\\ue16e'),\n    BOILED_EGG(\"ps-boiled-egg\", '\\ue041'),\n    BOILED_EGG_FINGER(\"ps-boiled-egg-finger\", '\\ue042'),\n    BONNET(\"ps-bonnet\", '\\ue172'),\n    BOOK(\"ps-book\", '\\ue11f'),\n    BOOK_TAG(\"ps-book-tag\", '\\ue10f'),\n    BRANCH(\"ps-branch\", '\\ue0ce'),\n    BRIGHTKITE(\"ps-brightkite\", 'l'),\n    BROKEN_LINK(\"ps-broken-link\", '\\ue0ab'),\n    BROWSER(\"ps-browser\", '\\ue15c'),\n    BUBBLE(\"ps-bubble\", '\\ue0ac'),\n    BUG(\"ps-bug\", '\\ue124'),\n    BUILDING(\"ps-building\", '\\ue125'),\n    BULL_LEFT(\"ps-bull-left\", '\\ue132'),\n    BULL_RIGHT(\"ps-bull-right\", '\\ue131'),\n    BURGER(\"ps-burger\", '\\ue17d'),\n    BUS_LONDON(\"ps-bus-london\", '\\ue0d0'),\n    CALENDAR(\"ps-calendar\", '\\ue126'),\n    CALENDAR_GRID(\"ps-calendar-grid\", '\\ue127'),\n    CAMERA(\"ps-camera\", '\\ue129'),\n    CAR(\"ps-car\", '\\ue0ae'),\n    CART(\"ps-cart\", '\\ue043'),\n    CART_SUPERMARKET(\"ps-cart-supermarket\", '\\ue096'),\n    CHAT(\"ps-chat\", '\\ue134'),\n    CHAT_ALT(\"ps-chat-alt\", '\\ue133'),\n    CHECK(\"ps-check\", '\\ue15d'),\n    CHECKED(\"ps-checked\", '\\ue161'),\n    CHECK_BOX(\"ps-check-box\", '\\ue12b'),\n    CHECK_BOX_EMPTY(\"ps-check-box-empty\", '\\ue12a'),\n    CINCH(\"ps-cinch\", 'm'),\n    CLOCK(\"ps-clock\", '\\ue14b'),\n    CLOTHES_WATER(\"ps-clothes-water\", '\\ue0fd'),\n    CLOUD(\"ps-cloud\", '\\ue15e'),\n    CLOUDAPP(\"ps-cloudapp\", 'n'),\n    CLUBS_CARD(\"ps-clubs-card\", '\\ue169'),\n    COCKTAIL(\"ps-cocktail\", '\\ue0af'),\n    CODE(\"ps-code\", '\\ue135'),\n    COFFEE(\"ps-coffee\", '\\ue12e'),\n    COFFEE_HOT(\"ps-coffee-hot\", '\\ue12f'),\n    COIN(\"ps-coin\", '\\ue044'),\n    COINS(\"ps-coins\", '\\ue045'),\n    COMPASS(\"ps-compass\", '\\ue130'),\n    CONTACT(\"ps-contact\", '\\ue173'),\n    CONTRAST(\"ps-contrast\", '\\ue11a'),\n    COOKIE(\"ps-cookie\", '\\ue175'),\n    COPY(\"ps-copy\", '\\ue13a'),\n    COROFLOT(\"ps-coroflot\", 'o'),\n    COUPLE(\"ps-couple\", '\\ue046'),\n    CPU(\"ps-cpu\", '\\ue17a'),\n    CREATIVE_COMMONS(\"ps-creative-commons\", 'p'),\n    CREDIT_CARD(\"ps-credit-card\", '\\ue047'),\n    CROP(\"ps-crop\", '\\ue13c'),\n    CROWN(\"ps-crown\", '\\ue048'),\n    CUTLERY(\"ps-cutlery\", '\\ue155'),\n    DAFT_PUNK(\"ps-daft-punk\", '\\ue049'),\n    DAILYBOOTH(\"ps-dailybooth\", 'q'),\n    DASHBOARD(\"ps-dashboard\", '\\ue143'),\n    DATA_BOARD(\"ps-data-board\", '\\ue16d'),\n    DELETE(\"ps-delete\", '\\ue099'),\n    DELICIOUS(\"ps-delicious\", 'r'),\n    DESIGNBUMP(\"ps-designbump\", 's'),\n    DESIGNFLOAT(\"ps-designfloat\", 't'),\n    DESIGNMOO(\"ps-designmoo\", 'u'),\n    DEVIANTART(\"ps-deviantart\", 'v'),\n    DIAMONDS_CARD(\"ps-diamonds-card\", '\\ue168'),\n    DIGG(\"ps-digg\", 'w'),\n    DIGG_ALT(\"ps-digg-alt\", 'x'),\n    DIIGO(\"ps-diigo\", 'y'),\n    DISABLED(\"ps-disabled\", '\\ue0c5'),\n    DOLLARS(\"ps-dollars\", '\\ue04b'),\n    DOLLAR_BILL(\"ps-dollar-bill\", '\\ue04a'),\n    DOUBLE_ARROW(\"ps-double-arrow\", '\\ue0b5'),\n    DOWN(\"ps-down\", '\\ue105'),\n    DOWNLOAD(\"ps-download\", '\\ue145'),\n    DOWNLOAD_FROM_CLOUD(\"ps-download-from-cloud\", '\\ue15f'),\n    DOWN_ARROW_CIRCLE(\"ps-down-arrow-circle\", '\\ue116'),\n    DO_NOT_BLEACH(\"ps-do-not-bleach\", '\\ue0b0'),\n    DO_NOT_DRY(\"ps-do-not-dry\", '\\ue0b1'),\n    DO_NOT_IRON(\"ps-do-not-iron\", '\\ue0b2'),\n    DO_NOT_WASH(\"ps-do-not-wash\", '\\ue0b3'),\n    DO_NOT_WRING(\"ps-do-not-wring\", '\\ue0b4'),\n    DRIBBBLE(\"ps-dribbble\", 'z'),\n    DRIP_DRY(\"ps-drip-dry\", '\\ue0b6'),\n    DROP(\"ps-drop\", '\\ue0b7'),\n    DROPBOX(\"ps-dropbox\", 'A'),\n    DRUPAL(\"ps-drupal\", 'B'),\n    DRY(\"ps-dry\", '\\ue0b8'),\n    DRY_FLAT(\"ps-dry-flat\", '\\ue0b9'),\n    DRY_IN_THE_SHADE(\"ps-dry-in-the-shade\", '\\ue0ba'),\n    DRY_NORMAL_HIGHT_HEAT(\"ps-dry-normal-hight-heat\", '\\ue0bb'),\n    DRY_NORMAL_LOW_HEAT(\"ps-dry-normal-low-heat\", '\\ue0bc'),\n    DRY_NORMAL_NO_HEAT(\"ps-dry-normal-no-heat\", '\\ue0be'),\n    DZONE(\"ps-dzone\", 'C'),\n    EBAY(\"ps-ebay\", 'D'),\n    EGG(\"ps-egg\", '\\ue04f'),\n    EJECT(\"ps-eject\", '\\ue0bf'),\n    EMBER(\"ps-ember\", 'E'),\n    ENLARGE(\"ps-enlarge\", '\\ue077'),\n    ETSY(\"ps-etsy\", 'F'),\n    EURO_BILL(\"ps-euro-bill\", '\\ue051'),\n    EVERNOTE(\"ps-evernote\", 'G'),\n    EXTINGUISHER(\"ps-extinguisher\", '\\ue052'),\n    EYE(\"ps-eye\", '\\ue148'),\n    FACEBOOK(\"ps-facebook\", 'H'),\n    FACEBOOK_ALT(\"ps-facebook-alt\", 'I'),\n    FACEBOOK_PLACES(\"ps-facebook-places\", 'J'),\n    FACTO(\"ps-facto\", 'K'),\n    FEEDBURNER(\"ps-feedburner\", 'L'),\n    FILE(\"ps-file\", '\\ue13b'),\n    FILM(\"ps-film\", '\\ue0c1'),\n    FILTER(\"ps-filter\", '\\ue0e4'),\n    FIRE(\"ps-fire\", '\\ue147'),\n    FISH(\"ps-fish\", '\\ue174'),\n    FLAG(\"ps-flag\", '\\ue138'),\n    FLAG_CORNER(\"ps-flag-corner\", '\\ue136'),\n    FLAG_SCOUT(\"ps-flag-scout\", '\\ue137'),\n    FLICKR(\"ps-flickr\", 'M'),\n    FOLDER(\"ps-folder\", '\\ue14a'),\n    FOLKD(\"ps-folkd\", 'N'),\n    FORBIDDEN(\"ps-forbidden\", '\\ue109'),\n    FORMSPRING(\"ps-formspring\", 'O'),\n    FORRST(\"ps-forrst\", 'P'),\n    FORWARD(\"ps-forward\", '\\ue107'),\n    FOURSQUARE(\"ps-foursquare\", 'Q'),\n    FRIED_EGG(\"ps-fried-egg\", '\\ue050'),\n    FRIENDFEED(\"ps-friendfeed\", 'R'),\n    FRIENDSTER(\"ps-friendster\", 'S'),\n    FUCK(\"ps-fuck\", '\\ue053'),\n    FULL_SCREEN(\"ps-full-screen\", '\\ue054'),\n    GAMEPAD(\"ps-gamepad\", '\\ue055'),\n    GDGT(\"ps-gdgt\", 'T'),\n    GIFT(\"ps-gift\", '\\ue154'),\n    GIRL(\"ps-girl\", '\\ue03a'),\n    GIRL_2(\"ps-girl-2\", '\\ue056'),\n    GIRL_ANGEL(\"ps-girl-angel\", '\\ue057'),\n    GIRL_ANGRY(\"ps-girl-angry\", '\\ue058'),\n    GIRL_BIG_SMILE(\"ps-girl-big-smile\", '\\ue059'),\n    GIRL_CONFUSED(\"ps-girl-confused\", '\\ue03c'),\n    GIRL_CRY(\"ps-girl-cry\", '\\ue05a'),\n    GIRL_FLUSHED(\"ps-girl-flushed\", '\\ue05b'),\n    GIRL_OPEN_MOUTH(\"ps-girl-open-mouth\", '\\ue05c'),\n    GIRL_O_MOUTH(\"ps-girl-o-mouth\", '\\ue069'),\n    GIRL_SAD(\"ps-girl-sad\", '\\ue03b'),\n    GIRL_SAD_HUNAPPY(\"ps-girl-sad-hunappy\", '\\ue166'),\n    GIRL_SLEEP(\"ps-girl-sleep\", '\\ue05d'),\n    GIRL_SMILE(\"ps-girl-smile\", '\\ue05e'),\n    GIRL_USER(\"ps-girl-user\", '\\ue05f'),\n    GITHUB(\"ps-github\", 'U'),\n    GITHUB_ALT(\"ps-github-alt\", 'V'),\n    GLOBE(\"ps-globe\", '\\ue170'),\n    GOODREADS(\"ps-goodreads\", 'W'),\n    GOOGLE(\"ps-google\", 'X'),\n    GOOGLE_BUZZ(\"ps-google-buzz\", 'Y'),\n    GOOGLE_TALK(\"ps-google-talk\", 'Z'),\n    GOWALLA(\"ps-gowalla\", '0'),\n    GOWALLA_ALT(\"ps-gowalla-alt\", '1'),\n    GROOVESHARK(\"ps-grooveshark\", '2'),\n    GUN(\"ps-gun\", '\\ue0c3'),\n    GUY(\"ps-guy\", '\\ue060'),\n    GUY_ANGEL(\"ps-guy-angel\", '\\ue061'),\n    GUY_ANGRY(\"ps-guy-angry\", '\\ue062'),\n    GUY_BIG_SMILE(\"ps-guy-big-smile\", '\\ue063'),\n    GUY_CONFUSED(\"ps-guy-confused\", '\\ue064'),\n    GUY_CRY(\"ps-guy-cry\", '\\ue065'),\n    GUY_FLUSHED(\"ps-guy-flushed\", '\\ue066'),\n    GUY_HAPPY(\"ps-guy-happy\", '\\ue067'),\n    GUY_OPEN_MOUTH(\"ps-guy-open-mouth\", '\\ue06a'),\n    GUY_O_MOUTH(\"ps-guy-o-mouth\", '\\ue068'),\n    GUY_SAD(\"ps-guy-sad\", '\\ue06b'),\n    GUY_SLEEP(\"ps-guy-sleep\", '\\ue06c'),\n    GUY_SMILE(\"ps-guy-smile\", '\\ue06d'),\n    GUY_USER(\"ps-guy-user\", '\\ue06e'),\n    GUY_WRONG(\"ps-guy-wrong\", '\\ue06f'),\n    HACKER_NEWS(\"ps-hacker-news\", '3'),\n    HAND(\"ps-hand\", '\\ue070'),\n    HAND_POINTER_LEFT(\"ps-hand-pointer-left\", '\\ue071'),\n    HAND_POINTER_RIGHT(\"ps-hand-pointer-right\", '\\ue072'),\n    HAND_POINTER_TOP(\"ps-hand-pointer-top\", '\\ue073'),\n    HAND_WASH(\"ps-hand-wash\", '\\ue0c4'),\n    HANG_TO_DRY(\"ps-hang-to-dry\", '\\ue0c6'),\n    HARD_DRIVE(\"ps-hard-drive\", '\\ue0c7'),\n    HEADPHONES(\"ps-headphones\", '\\ue04d'),\n    HEADSET(\"ps-headset\", '\\ue04e'),\n    HEARTS_CARD(\"ps-hearts-card\", '\\ue16a'),\n    HEAT(\"ps-heat\", '\\ue0bd'),\n    HELM(\"ps-helm\", '\\ue040'),\n    HI5(\"ps-hi5\", '4'),\n    HOME(\"ps-home\", '\\ue17e'),\n    HOTDOG(\"ps-hotdog\", '\\ue075'),\n    HOURGLASS(\"ps-hourglass\", '\\ue0c8'),\n    HUNGRY(\"ps-hungry\", '\\ue076'),\n    HYPE_MACHINE(\"ps-hype-machine\", '5'),\n    HYVES(\"ps-hyves\", '6'),\n    ICQ(\"ps-icq\", '7'),\n    IDENTI(\"ps-identi\", '8'),\n    IMAGE(\"ps-image\", '\\ue153'),\n    IMPORTANT(\"ps-important\", '\\ue0c9'),\n    INSTAPAPER(\"ps-instapaper\", '9'),\n    IPAD(\"ps-ipad\", '\\ue13e'),\n    IPHONE(\"ps-iphone\", '\\ue13d'),\n    IPOD(\"ps-ipod\", '\\ue14e'),\n    IRON_ANY_TEMP(\"ps-iron-any-temp\", '\\ue0ca'),\n    ITUNES(\"ps-itunes\", '!'),\n    IWATCH(\"ps-iwatch\", '\\ue14f'),\n    JUSTICE(\"ps-justice\", '\\ue0cb'),\n    KEYBOARD(\"ps-keyboard\", '\\ue0cc'),\n    KIK(\"ps-kik\", '\"'),\n    KROP(\"ps-krop\", '#'),\n    LAB(\"ps-lab\", '\\ue10c'),\n    LABEL(\"ps-label\", '\\ue121'),\n    LABEL_HOGWARTS(\"ps-label-hogwarts\", '\\ue120'),\n    LAPTOP(\"ps-laptop\", '\\ue078'),\n    LAST(\"ps-last\", '$'),\n    LEAF(\"ps-leaf\", '\\ue122'),\n    LEFT(\"ps-left\", '\\ue102'),\n    LEFT_ARROW_CIRCLE(\"ps-left-arrow-circle\", '\\ue119'),\n    LEGO(\"ps-lego\", '\\ue17f'),\n    LIGHTNING(\"ps-lightning\", '\\ue152'),\n    LINK(\"ps-link\", '\\ue0cd'),\n    LINKEDIN(\"ps-linkedin\", '%'),\n    LINKEDIN_ALT(\"ps-linkedin-alt\", '&'),\n    LIQUOR(\"ps-liquor\", '\\ue0cf'),\n    LIVEJOURNAL(\"ps-livejournal\", '\\''),\n    LOVEDSGN(\"ps-lovedsgn\", '('),\n    MAC(\"ps-mac\", '\\ue13f'),\n    MACHINE_WASH(\"ps-machine-wash\", '\\ue0d1'),\n    MACHINE_WASH_GENTLE_OR_DELICATE(\"ps-machine-wash-gentle-or-delicate\", '\\ue0d2'),\n    MACHINE_WASH_PERMANENT_PRESS(\"ps-machine-wash-permanent-press\", '\\ue0d3'),\n    MAGNIFYING_GLASS(\"ps-magnifying-glass\", '\\ue0d5'),\n    MAIL(\"ps-mail\", '\\ue079'),\n    MAILBOX(\"ps-mailbox\", '\\ue163'),\n    MAIL_BACK(\"ps-mail-back\", '\\ue07a'),\n    MAIL_BILL(\"ps-mail-bill\", '\\ue07b'),\n    MAIL_STAMP(\"ps-mail-stamp\", '\\ue07c'),\n    MAN(\"ps-man\", '\\ue0da'),\n    MAXIMUM_TEMP_110_230(\"ps-maximum-temp-110-230\", '\\ue0d6'),\n    MAXIMUM_TEMP_150_300(\"ps-maximum-temp-150-300\", '\\ue0d7'),\n    MAXIMUM_TEMP_200_390(\"ps-maximum-temp-200-390\", '\\ue0d8'),\n    MAYO_HOTDOG(\"ps-mayo-hotdog\", '\\ue074'),\n    MEETUP(\"ps-meetup\", ')'),\n    MEGAPHONE(\"ps-megaphone\", '\\ue0d9'),\n    METACAFE(\"ps-metacafe\", '*'),\n    MIC(\"ps-mic\", '\\ue0db'),\n    MIC_OFF(\"ps-mic-off\", '\\ue0dc'),\n    MILKSHAKE(\"ps-milkshake\", '\\ue17b'),\n    MING(\"ps-ming\", '+'),\n    MINUS(\"ps-minus\", '\\ue114'),\n    MINUS_BOX(\"ps-minus-box\", '\\ue112'),\n    MINUS_CIRCLE(\"ps-minus-circle\", '\\ue11e'),\n    MINUS_CIRCLE_1(\"ps-minus-circle-1\", '\\ue110'),\n    MISTER_WONG(\"ps-mister-wong\", ','),\n    MIXX(\"ps-mixx\", '-'),\n    MIXX_ALT(\"ps-mixx-alt\", '.'),\n    MOBILEME(\"ps-mobileme\", '/'),\n    MOON(\"ps-moon\", '\\ue07d'),\n    MOUSE(\"ps-mouse\", '\\ue14c'),\n    MSN_MESSENGER(\"ps-msn-messenger\", ':'),\n    MUSIC(\"ps-music\", '\\ue04c'),\n    MUSIC_SCORE(\"ps-music-score\", '\\ue07e'),\n    MYSPACE(\"ps-myspace\", ';'),\n    MYSPACE_ALT(\"ps-myspace-alt\", '<'),\n    NEWSVINE(\"ps-newsvine\", '='),\n    NEXT(\"ps-next\", '\\ue0dd'),\n    NON_CHLORINE_BLEACH_IF_NEEDED(\"ps-non-chlorine-bleach-if-needed\", '\\ue0de'),\n    NO_EYE(\"ps-no-eye\", '\\ue149'),\n    OFFICIAL(\"ps-official\", '>'),\n    OPENID(\"ps-openid\", '?'),\n    OPEN_PADLOCK(\"ps-open-padlock\", '\\ue07f'),\n    ORGANISATION(\"ps-organisation\", '\\ue080'),\n    ORKUT(\"ps-orkut\", '@'),\n    PADLOCK(\"ps-padlock\", '\\ue081'),\n    PANDORA(\"ps-pandora\", '['),\n    PANT(\"ps-pant\", '\\ue16c'),\n    PAPER_TABLET(\"ps-paper-tablet\", '\\ue082'),\n    PATH(\"ps-path\", ']'),\n    PAYPAL(\"ps-paypal\", '^'),\n    PC(\"ps-pc\", '\\ue178'),\n    PDIDDY(\"ps-pdiddy\", '\\ue083'),\n    PEN(\"ps-pen\", '\\ue156'),\n    PENKNIFE(\"ps-penknife\", '\\ue0df'),\n    PEOPLE_TEAM(\"ps-people-team\", '\\ue084'),\n    PETROLEUM_SOLVENT_STEAM(\"ps-petroleum-solvent-steam\", '\\ue0e0'),\n    PHONE(\"ps-phone\", '\\ue0e1'),\n    PHOTOBUCKET(\"ps-photobucket\", '_'),\n    PIANO(\"ps-piano\", '\\ue0e2'),\n    PICASA(\"ps-picasa\", '`'),\n    PICASSA(\"ps-picassa\", '{'),\n    PIGGY_BANK(\"ps-piggy-bank\", '\\ue085'),\n    PIGGY_BANK_COINS(\"ps-piggy-bank-coins\", '\\ue086'),\n    PIN(\"ps-pin\", '\\ue0e3'),\n    PINBOARD(\"ps-pinboard\", '|'),\n    PING(\"ps-ping\", '}'),\n    PINGCHAT(\"ps-pingchat\", '~'),\n    PIN_MAP(\"ps-pin-map\", '\\ue171'),\n    PIZZA(\"ps-pizza\", '\\ue176'),\n    PLANE(\"ps-plane\", '\\ue0e5'),\n    PLAY(\"ps-play\", '\\ue106'),\n    PLAYSTATION(\"ps-playstation\", '\\\\'),\n    PLIXI(\"ps-plixi\", '\\ue000'),\n    PLURK(\"ps-plurk\", '\\ue001'),\n    PLUS(\"ps-plus\", '\\ue113'),\n    PLUS_BOX(\"ps-plus-box\", '\\ue111'),\n    PLUS_CIRCLE(\"ps-plus-circle\", '\\ue164'),\n    PODCAST(\"ps-podcast\", '\\ue002'),\n    POSTEROUS(\"ps-posterous\", '\\ue003'),\n    POWER(\"ps-power\", '\\ue087'),\n    PRESTON(\"ps-preston\", '\\ue180'),\n    PREVIOUS(\"ps-previous\", '\\ue0e6'),\n    PRINTER(\"ps-printer\", '\\ue088'),\n    PRISON_SCHOOL_BUS(\"ps-prison-school-bus\", '\\ue0ad'),\n    PROMO(\"ps-promo\", '\\ue089'),\n    PULL(\"ps-pull\", '\\ue16b'),\n    PUZZLE(\"ps-puzzle\", '\\ue08a'),\n    QIK(\"ps-qik\", '\\ue004'),\n    QUIK(\"ps-quik\", '\\ue005'),\n    QUORA(\"ps-quora\", '\\ue006'),\n    QUOTE(\"ps-quote\", '\\ue0e7'),\n    RADIO(\"ps-radio\", '\\ue12d'),\n    RADIO_EMPTY(\"ps-radio-empty\", '\\ue12c'),\n    RAM(\"ps-ram\", '\\ue179'),\n    RANDOM(\"ps-random\", '\\ue140'),\n    RDIO(\"ps-rdio\", '\\ue007'),\n    READERNAUT(\"ps-readernaut\", '\\ue008'),\n    REDDIT(\"ps-reddit\", '\\ue009'),\n    RESIZE(\"ps-resize\", '\\ue08b'),\n    RETWEET(\"ps-retweet\", '\\ue00a'),\n    RETWEET_1(\"ps-retweet-1\", '\\ue0e8'),\n    REWIND(\"ps-rewind\", '\\ue108'),\n    RIGHT(\"ps-right\", '\\ue103'),\n    RIGHT_ARROW_CIRCLE(\"ps-right-arrow-circle\", '\\ue118'),\n    ROAD(\"ps-road\", '\\ue08c'),\n    ROBO(\"ps-robo\", '\\ue00b'),\n    ROW_SETTING(\"ps-row-setting\", '\\ue139'),\n    RSS(\"ps-rss\", '\\ue00c'),\n    RSS_ICON(\"ps-rss-icon\", '\\ue08d'),\n    SAFE(\"ps-safe\", '\\ue08e'),\n    SALE_TAG(\"ps-sale-tag\", '\\ue08f'),\n    SAVE(\"ps-save\", '\\ue090'),\n    SCISSORS(\"ps-scissors\", '\\ue142'),\n    SCRIBD(\"ps-scribd\", '\\ue00d'),\n    SHARETHIS(\"ps-sharethis\", '\\ue00e'),\n    SHIELD(\"ps-shield\", '\\ue091'),\n    SHOE(\"ps-shoe\", '\\ue16f'),\n    SHOPPING_CART(\"ps-shopping-cart\", '\\ue03e'),\n    SIGN(\"ps-sign\", '\\ue093'),\n    SIMPLENOTE(\"ps-simplenote\", '\\ue00f'),\n    SKYPE(\"ps-skype\", '\\ue010'),\n    SLASHDOT(\"ps-slashdot\", '\\ue011'),\n    SLIDESHARE(\"ps-slideshare\", '\\ue012'),\n    SMUGMUG(\"ps-smugmug\", '\\ue013'),\n    SOUND(\"ps-sound\", '\\ue0e9'),\n    SOUNDCLOUD(\"ps-soundcloud\", '\\ue014'),\n    SOUND_DOWN(\"ps-sound-down\", '\\ue0ea'),\n    SOUND_LEVEL_ONE(\"ps-sound-level-one\", '\\ue0eb'),\n    SOUND_LEVEL_TWO(\"ps-sound-level-two\", '\\ue0ec'),\n    SOUND_PLUS(\"ps-sound-plus\", '\\ue0ed'),\n    SPADES_CARD(\"ps-spades-card\", '\\ue167'),\n    SPOTIFY(\"ps-spotify\", '\\ue015'),\n    SQUARESPACE(\"ps-squarespace\", '\\ue016'),\n    SQUIDOO(\"ps-squidoo\", '\\ue017'),\n    SREENSHOT(\"ps-sreenshot\", '\\ue094'),\n    STATS(\"ps-stats\", '\\ue10a'),\n    STEAM(\"ps-steam\", '\\ue018'),\n    STETHOSCOPE(\"ps-stethoscope\", '\\ue0ee'),\n    STORE(\"ps-store\", '\\ue092'),\n    STUMBLEUPON(\"ps-stumbleupon\", '\\ue019'),\n    SUITCASE(\"ps-suitcase\", '\\ue0ef'),\n    SUN(\"ps-sun\", '\\ue095'),\n    SWITCH(\"ps-switch\", '\\ue0c0'),\n    TACOS(\"ps-tacos\", '\\ue17c'),\n    TAG(\"ps-tag\", '\\ue097'),\n    TARGET(\"ps-target\", '\\ue0f0'),\n    TECHNORATI(\"ps-technorati\", '\\ue01a'),\n    THREEWORDS(\"ps-threewords\", '\\ue01b'),\n    TICKET(\"ps-ticket\", '\\ue0f1'),\n    TOKEN(\"ps-token\", '\\ue098'),\n    TRIANGLE(\"ps-triangle\", '\\ue0aa'),\n    TRIBE(\"ps-tribe\", '\\ue01c'),\n    TRIPIT(\"ps-tripit\", '\\ue01d'),\n    TROPHY(\"ps-trophy\", '\\ue0f2'),\n    TRUCK(\"ps-truck\", '\\ue165'),\n    TRUCK_1(\"ps-truck-1\", '\\ue0f6'),\n    TUMBLE_DRY(\"ps-tumble-dry\", '\\ue0f3'),\n    TUMBLR(\"ps-tumblr\", '\\ue01e'),\n    TWITTER(\"ps-twitter\", '\\ue01f'),\n    TWITTER_ALT(\"ps-twitter-alt\", '\\ue020'),\n    UFO(\"ps-ufo\", '\\ue0f4'),\n    UP(\"ps-up\", '\\ue104'),\n    UPLOAD(\"ps-upload\", '\\ue146'),\n    UPLOAD_TO_CLOUD(\"ps-upload-to-cloud\", '\\ue160'),\n    UP_ARROW_CIRCLE(\"ps-up-arrow-circle\", '\\ue117'),\n    USER(\"ps-user\", '\\ue09a'),\n    VCARD(\"ps-vcard\", '\\ue021'),\n    VIDDLER(\"ps-viddler\", '\\ue022'),\n    VIDEO_CAMERA(\"ps-video-camera\", '\\ue0f5'),\n    VIMEO(\"ps-vimeo\", '\\ue023'),\n    VIRB(\"ps-virb\", '\\ue024'),\n    W3(\"ps-w3\", '\\ue025'),\n    WALLET(\"ps-wallet\", '\\ue09b'),\n    WAND(\"ps-wand\", '\\ue0d4'),\n    WARNING(\"ps-warning\", '\\ue0a7'),\n    WATCH(\"ps-watch\", '\\ue09c'),\n    WATER_TEMPERATURE_30(\"ps-water-temperature-30\", '\\ue0f7'),\n    WATER_TEMPERATURE_40(\"ps-water-temperature-40\", '\\ue0f8'),\n    WATER_TEMPERATURE_50(\"ps-water-temperature-50\", '\\ue0f9'),\n    WATER_TEMPERATURE_60(\"ps-water-temperature-60\", '\\ue0fa'),\n    WATER_TEMPERATURE_70(\"ps-water-temperature-70\", '\\ue0fb'),\n    WATER_TEMPERATURE_95(\"ps-water-temperature-95\", '\\ue0fc'),\n    WHATSAPP(\"ps-whatsapp\", '\\ue026'),\n    WIKIPEDIA(\"ps-wikipedia\", '\\ue027'),\n    WINDOWS(\"ps-windows\", '\\ue028'),\n    WISTS(\"ps-wists\", '\\ue029'),\n    WOMAN(\"ps-woman\", '\\ue0fe'),\n    WORDPRESS(\"ps-wordpress\", '\\ue02a'),\n    WORDPRESS_ALT(\"ps-wordpress-alt\", '\\ue02b'),\n    WORK_CASE(\"ps-work-case\", '\\ue123'),\n    WORLD(\"ps-world\", '\\ue144'),\n    XING(\"ps-xing\", '\\ue02c'),\n    YAHOO(\"ps-yahoo\", '\\ue02d'),\n    YAHOO_BUZZ(\"ps-yahoo-buzz\", '\\ue02e'),\n    YAHOO_MESSENGER(\"ps-yahoo-messenger\", '\\ue02f'),\n    YELP(\"ps-yelp\", '\\ue030'),\n    YOUTUBE(\"ps-youtube\", '\\ue031'),\n    YOUTUBE_ALT(\"ps-youtube-alt\", '\\ue032'),\n    ZERPLY(\"ps-zerply\", '\\ue033'),\n    ZOOM_IN(\"ps-zoom-in\", '\\ue0ff'),\n    ZOOM_OUT(\"ps-zoom-out\", '\\ue100'),\n    ZOOTOOL(\"ps-zootool\", '\\ue034'),\n    ZYNGA(\"ps-zynga\", '\\ue035');\n    \n    public static PrestaShopIcons findByDescription(String description) {\n        for (PrestaShopIcons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    PrestaShopIcons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-prestashopicons-pack/src/main/java/org/kordamp/ikonli/prestashopicons/PrestaShopIconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.prestashopicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class PrestaShopIconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/prestashopicons/0.8.0/fonts/prestashop-icon-font.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"ps-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return PrestaShopIcons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"prestashop-official-pack\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-prestashopicons-pack/src/main/java/org/kordamp/ikonli/prestashopicons/PrestaShopIconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.prestashopicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class PrestaShopIconsIkonProvider implements IkonProvider<PrestaShopIcons> {\n    @Override\n    public Class<PrestaShopIcons> getIkon() {\n        return PrestaShopIcons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-prestashopicons-pack/src/main/resources/META-INF/resources/prestashopicons/0.8.0/css/prestashopicons.css",
    "content": "@charset \"UTF-8\";\n\n@font-face {\n  font-family: \"prestashop-official-pack\";\n  src:url(\"../fonts/prestashop-icon-font.eot\");\n  src:url(\"../fonts/prestashop-icon-font.eot?#iefix\") format(\"embedded-opentype\"),\n    url(\"../fonts/prestashop-icon-font.woff\") format(\"woff\"),\n    url(\"../fonts/prestashop-icon-font.ttf\") format(\"truetype\"),\n    url(\"../fonts/prestashop-icon-font.svg#prestashop-icon-font\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n\n}\n\n[class^=\"ps-\"], [class*=\" ps-\"] {\n  font-family: \"prestashop-official-pack\" !important;\n  font-style: normal !important;\n  font-weight: normal !important;\n  font-variant: normal !important;\n  text-transform: none !important;\n  speak: none;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.ps-aim:before {\n  content: \"a\";\n}\n.ps-arto:before {\n  content: \"b\";\n}\n.ps-aws:before {\n  content: \"c\";\n}\n.ps-baidu:before {\n  content: \"d\";\n}\n.ps-basecamp:before {\n  content: \"e\";\n}\n.ps-bebo:before {\n  content: \"f\";\n}\n.ps-behance:before {\n  content: \"g\";\n}\n.ps-bing:before {\n  content: \"h\";\n}\n.ps-blip:before {\n  content: \"i\";\n}\n.ps-blogger:before {\n  content: \"j\";\n}\n.ps-bnter:before {\n  content: \"k\";\n}\n.ps-brightkite:before {\n  content: \"l\";\n}\n.ps-cinch:before {\n  content: \"m\";\n}\n.ps-cloudapp:before {\n  content: \"n\";\n}\n.ps-coroflot:before {\n  content: \"o\";\n}\n.ps-creative-commons:before {\n  content: \"p\";\n}\n.ps-dailybooth:before {\n  content: \"q\";\n}\n.ps-delicious:before {\n  content: \"r\";\n}\n.ps-designbump:before {\n  content: \"s\";\n}\n.ps-designfloat:before {\n  content: \"t\";\n}\n.ps-designmoo:before {\n  content: \"u\";\n}\n.ps-deviantart:before {\n  content: \"v\";\n}\n.ps-digg:before {\n  content: \"w\";\n}\n.ps-digg-alt:before {\n  content: \"x\";\n}\n.ps-diigo:before {\n  content: \"y\";\n}\n.ps-dribbble:before {\n  content: \"z\";\n}\n.ps-dropbox:before {\n  content: \"A\";\n}\n.ps-drupal:before {\n  content: \"B\";\n}\n.ps-dzone:before {\n  content: \"C\";\n}\n.ps-ebay:before {\n  content: \"D\";\n}\n.ps-ember:before {\n  content: \"E\";\n}\n.ps-etsy:before {\n  content: \"F\";\n}\n.ps-evernote:before {\n  content: \"G\";\n}\n.ps-facebook:before {\n  content: \"H\";\n}\n.ps-facebook-alt:before {\n  content: \"I\";\n}\n.ps-facebook-places:before {\n  content: \"J\";\n}\n.ps-facto:before {\n  content: \"K\";\n}\n.ps-feedburner:before {\n  content: \"L\";\n}\n.ps-flickr:before {\n  content: \"M\";\n}\n.ps-folkd:before {\n  content: \"N\";\n}\n.ps-formspring:before {\n  content: \"O\";\n}\n.ps-forrst:before {\n  content: \"P\";\n}\n.ps-foursquare:before {\n  content: \"Q\";\n}\n.ps-friendfeed:before {\n  content: \"R\";\n}\n.ps-friendster:before {\n  content: \"S\";\n}\n.ps-gdgt:before {\n  content: \"T\";\n}\n.ps-github:before {\n  content: \"U\";\n}\n.ps-github-alt:before {\n  content: \"V\";\n}\n.ps-goodreads:before {\n  content: \"W\";\n}\n.ps-google:before {\n  content: \"X\";\n}\n.ps-google-buzz:before {\n  content: \"Y\";\n}\n.ps-google-talk:before {\n  content: \"Z\";\n}\n.ps-gowalla:before {\n  content: \"0\";\n}\n.ps-gowalla-alt:before {\n  content: \"1\";\n}\n.ps-grooveshark:before {\n  content: \"2\";\n}\n.ps-hacker-news:before {\n  content: \"3\";\n}\n.ps-hi5:before {\n  content: \"4\";\n}\n.ps-hype-machine:before {\n  content: \"5\";\n}\n.ps-hyves:before {\n  content: \"6\";\n}\n.ps-icq:before {\n  content: \"7\";\n}\n.ps-identi:before {\n  content: \"8\";\n}\n.ps-instapaper:before {\n  content: \"9\";\n}\n.ps-itunes:before {\n  content: \"!\";\n}\n.ps-kik:before {\n  content: \"\\\"\";\n}\n.ps-krop:before {\n  content: \"#\";\n}\n.ps-last:before {\n  content: \"$\";\n}\n.ps-linkedin:before {\n  content: \"%\";\n}\n.ps-linkedin-alt:before {\n  content: \"&\";\n}\n.ps-livejournal:before {\n  content: \"'\";\n}\n.ps-lovedsgn:before {\n  content: \"(\";\n}\n.ps-meetup:before {\n  content: \")\";\n}\n.ps-metacafe:before {\n  content: \"*\";\n}\n.ps-ming:before {\n  content: \"+\";\n}\n.ps-mister-wong:before {\n  content: \",\";\n}\n.ps-mixx:before {\n  content: \"-\";\n}\n.ps-mixx-alt:before {\n  content: \".\";\n}\n.ps-mobileme:before {\n  content: \"/\";\n}\n.ps-msn-messenger:before {\n  content: \":\";\n}\n.ps-myspace:before {\n  content: \";\";\n}\n.ps-myspace-alt:before {\n  content: \"<\";\n}\n.ps-newsvine:before {\n  content: \"=\";\n}\n.ps-official:before {\n  content: \">\";\n}\n.ps-openid:before {\n  content: \"?\";\n}\n.ps-orkut:before {\n  content: \"@\";\n}\n.ps-pandora:before {\n  content: \"[\";\n}\n.ps-path:before {\n  content: \"]\";\n}\n.ps-paypal:before {\n  content: \"^\";\n}\n.ps-photobucket:before {\n  content: \"_\";\n}\n.ps-picasa:before {\n  content: \"`\";\n}\n.ps-picassa:before {\n  content: \"{\";\n}\n.ps-pinboard:before {\n  content: \"|\";\n}\n.ps-ping:before {\n  content: \"}\";\n}\n.ps-pingchat:before {\n  content: \"~\";\n}\n.ps-playstation:before {\n  content: \"\\\\\";\n}\n.ps-plixi:before {\n  content: \"\\e000\";\n}\n.ps-plurk:before {\n  content: \"\\e001\";\n}\n.ps-podcast:before {\n  content: \"\\e002\";\n}\n.ps-posterous:before {\n  content: \"\\e003\";\n}\n.ps-qik:before {\n  content: \"\\e004\";\n}\n.ps-quik:before {\n  content: \"\\e005\";\n}\n.ps-quora:before {\n  content: \"\\e006\";\n}\n.ps-rdio:before {\n  content: \"\\e007\";\n}\n.ps-readernaut:before {\n  content: \"\\e008\";\n}\n.ps-reddit:before {\n  content: \"\\e009\";\n}\n.ps-retweet:before {\n  content: \"\\e00a\";\n}\n.ps-robo:before {\n  content: \"\\e00b\";\n}\n.ps-rss:before {\n  content: \"\\e00c\";\n}\n.ps-scribd:before {\n  content: \"\\e00d\";\n}\n.ps-sharethis:before {\n  content: \"\\e00e\";\n}\n.ps-simplenote:before {\n  content: \"\\e00f\";\n}\n.ps-skype:before {\n  content: \"\\e010\";\n}\n.ps-slashdot:before {\n  content: \"\\e011\";\n}\n.ps-slideshare:before {\n  content: \"\\e012\";\n}\n.ps-smugmug:before {\n  content: \"\\e013\";\n}\n.ps-soundcloud:before {\n  content: \"\\e014\";\n}\n.ps-spotify:before {\n  content: \"\\e015\";\n}\n.ps-squarespace:before {\n  content: \"\\e016\";\n}\n.ps-squidoo:before {\n  content: \"\\e017\";\n}\n.ps-steam:before {\n  content: \"\\e018\";\n}\n.ps-stumbleupon:before {\n  content: \"\\e019\";\n}\n.ps-technorati:before {\n  content: \"\\e01a\";\n}\n.ps-threewords:before {\n  content: \"\\e01b\";\n}\n.ps-tribe:before {\n  content: \"\\e01c\";\n}\n.ps-tripit:before {\n  content: \"\\e01d\";\n}\n.ps-tumblr:before {\n  content: \"\\e01e\";\n}\n.ps-twitter:before {\n  content: \"\\e01f\";\n}\n.ps-twitter-alt:before {\n  content: \"\\e020\";\n}\n.ps-vcard:before {\n  content: \"\\e021\";\n}\n.ps-viddler:before {\n  content: \"\\e022\";\n}\n.ps-vimeo:before {\n  content: \"\\e023\";\n}\n.ps-virb:before {\n  content: \"\\e024\";\n}\n.ps-w3:before {\n  content: \"\\e025\";\n}\n.ps-whatsapp:before {\n  content: \"\\e026\";\n}\n.ps-wikipedia:before {\n  content: \"\\e027\";\n}\n.ps-windows:before {\n  content: \"\\e028\";\n}\n.ps-wists:before {\n  content: \"\\e029\";\n}\n.ps-wordpress:before {\n  content: \"\\e02a\";\n}\n.ps-wordpress-alt:before {\n  content: \"\\e02b\";\n}\n.ps-xing:before {\n  content: \"\\e02c\";\n}\n.ps-yahoo:before {\n  content: \"\\e02d\";\n}\n.ps-yahoo-buzz:before {\n  content: \"\\e02e\";\n}\n.ps-yahoo-messenger:before {\n  content: \"\\e02f\";\n}\n.ps-yelp:before {\n  content: \"\\e030\";\n}\n.ps-youtube:before {\n  content: \"\\e031\";\n}\n.ps-youtube-alt:before {\n  content: \"\\e032\";\n}\n.ps-zerply:before {\n  content: \"\\e033\";\n}\n.ps-zootool:before {\n  content: \"\\e034\";\n}\n.ps-zynga:before {\n  content: \"\\e035\";\n}\n.ps-aim-alt:before {\n  content: \"\\e036\";\n}\n.ps-amazon:before {\n  content: \"\\e037\";\n}\n.ps-app-store:before {\n  content: \"\\e038\";\n}\n.ps-apple:before {\n  content: \"\\e039\";\n}\n.ps-girl:before {\n  content: \"\\e03a\";\n}\n.ps-girl-sad:before {\n  content: \"\\e03b\";\n}\n.ps-girl-confused:before {\n  content: \"\\e03c\";\n}\n.ps-bank-safe:before {\n  content: \"\\e03d\";\n}\n.ps-shopping-cart:before {\n  content: \"\\e03e\";\n}\n.ps-blaster:before {\n  content: \"\\e03f\";\n}\n.ps-helm:before {\n  content: \"\\e040\";\n}\n.ps-boiled-egg:before {\n  content: \"\\e041\";\n}\n.ps-boiled-egg-finger:before {\n  content: \"\\e042\";\n}\n.ps-cart:before {\n  content: \"\\e043\";\n}\n.ps-coin:before {\n  content: \"\\e044\";\n}\n.ps-coins:before {\n  content: \"\\e045\";\n}\n.ps-couple:before {\n  content: \"\\e046\";\n}\n.ps-credit-card:before {\n  content: \"\\e047\";\n}\n.ps-crown:before {\n  content: \"\\e048\";\n}\n.ps-daft-punk:before {\n  content: \"\\e049\";\n}\n.ps-dollar-bill:before {\n  content: \"\\e04a\";\n}\n.ps-dollars:before {\n  content: \"\\e04b\";\n}\n.ps-music:before {\n  content: \"\\e04c\";\n}\n.ps-headphones:before {\n  content: \"\\e04d\";\n}\n.ps-headset:before {\n  content: \"\\e04e\";\n}\n.ps-egg:before {\n  content: \"\\e04f\";\n}\n.ps-fried-egg:before {\n  content: \"\\e050\";\n}\n.ps-euro-bill:before {\n  content: \"\\e051\";\n}\n.ps-extinguisher:before {\n  content: \"\\e052\";\n}\n.ps-fuck:before {\n  content: \"\\e053\";\n}\n.ps-full-screen:before {\n  content: \"\\e054\";\n}\n.ps-gamepad:before {\n  content: \"\\e055\";\n}\n.ps-girl-2:before {\n  content: \"\\e056\";\n}\n.ps-girl-angel:before {\n  content: \"\\e057\";\n}\n.ps-girl-angry:before {\n  content: \"\\e058\";\n}\n.ps-girl-big-smile:before {\n  content: \"\\e059\";\n}\n.ps-girl-cry:before {\n  content: \"\\e05a\";\n}\n.ps-girl-flushed:before {\n  content: \"\\e05b\";\n}\n.ps-girl-open-mouth:before {\n  content: \"\\e05c\";\n}\n.ps-girl-sleep:before {\n  content: \"\\e05d\";\n}\n.ps-girl-smile:before {\n  content: \"\\e05e\";\n}\n.ps-girl-user:before {\n  content: \"\\e05f\";\n}\n.ps-guy:before {\n  content: \"\\e060\";\n}\n.ps-guy-angel:before {\n  content: \"\\e061\";\n}\n.ps-guy-angry:before {\n  content: \"\\e062\";\n}\n.ps-guy-big-smile:before {\n  content: \"\\e063\";\n}\n.ps-guy-confused:before {\n  content: \"\\e064\";\n}\n.ps-guy-cry:before {\n  content: \"\\e065\";\n}\n.ps-guy-flushed:before {\n  content: \"\\e066\";\n}\n.ps-guy-happy:before {\n  content: \"\\e067\";\n}\n.ps-guy-o-mouth:before {\n  content: \"\\e068\";\n}\n.ps-girl-o-mouth:before {\n  content: \"\\e069\";\n}\n.ps-guy-open-mouth:before {\n  content: \"\\e06a\";\n}\n.ps-guy-sad:before {\n  content: \"\\e06b\";\n}\n.ps-guy-sleep:before {\n  content: \"\\e06c\";\n}\n.ps-guy-smile:before {\n  content: \"\\e06d\";\n}\n.ps-guy-user:before {\n  content: \"\\e06e\";\n}\n.ps-guy-wrong:before {\n  content: \"\\e06f\";\n}\n.ps-hand:before {\n  content: \"\\e070\";\n}\n.ps-hand-pointer-left:before {\n  content: \"\\e071\";\n}\n.ps-hand-pointer-right:before {\n  content: \"\\e072\";\n}\n.ps-hand-pointer-top:before {\n  content: \"\\e073\";\n}\n.ps-mayo-hotdog:before {\n  content: \"\\e074\";\n}\n.ps-hotdog:before {\n  content: \"\\e075\";\n}\n.ps-hungry:before {\n  content: \"\\e076\";\n}\n.ps-enlarge:before {\n  content: \"\\e077\";\n}\n.ps-laptop:before {\n  content: \"\\e078\";\n}\n.ps-mail:before {\n  content: \"\\e079\";\n}\n.ps-mail-back:before {\n  content: \"\\e07a\";\n}\n.ps-mail-bill:before {\n  content: \"\\e07b\";\n}\n.ps-mail-stamp:before {\n  content: \"\\e07c\";\n}\n.ps-moon:before {\n  content: \"\\e07d\";\n}\n.ps-music-score:before {\n  content: \"\\e07e\";\n}\n.ps-open-padlock:before {\n  content: \"\\e07f\";\n}\n.ps-organisation:before {\n  content: \"\\e080\";\n}\n.ps-padlock:before {\n  content: \"\\e081\";\n}\n.ps-paper-tablet:before {\n  content: \"\\e082\";\n}\n.ps-pdiddy:before {\n  content: \"\\e083\";\n}\n.ps-people-team:before {\n  content: \"\\e084\";\n}\n.ps-piggy-bank:before {\n  content: \"\\e085\";\n}\n.ps-piggy-bank-coins:before {\n  content: \"\\e086\";\n}\n.ps-power:before {\n  content: \"\\e087\";\n}\n.ps-printer:before {\n  content: \"\\e088\";\n}\n.ps-promo:before {\n  content: \"\\e089\";\n}\n.ps-puzzle:before {\n  content: \"\\e08a\";\n}\n.ps-resize:before {\n  content: \"\\e08b\";\n}\n.ps-road:before {\n  content: \"\\e08c\";\n}\n.ps-rss-icon:before {\n  content: \"\\e08d\";\n}\n.ps-safe:before {\n  content: \"\\e08e\";\n}\n.ps-sale-tag:before {\n  content: \"\\e08f\";\n}\n.ps-save:before {\n  content: \"\\e090\";\n}\n.ps-shield:before {\n  content: \"\\e091\";\n}\n.ps-store:before {\n  content: \"\\e092\";\n}\n.ps-sign:before {\n  content: \"\\e093\";\n}\n.ps-sreenshot:before {\n  content: \"\\e094\";\n}\n.ps-sun:before {\n  content: \"\\e095\";\n}\n.ps-cart-supermarket:before {\n  content: \"\\e096\";\n}\n.ps-tag:before {\n  content: \"\\e097\";\n}\n.ps-token:before {\n  content: \"\\e098\";\n}\n.ps-delete:before {\n  content: \"\\e099\";\n}\n.ps-user:before {\n  content: \"\\e09a\";\n}\n.ps-wallet:before {\n  content: \"\\e09b\";\n}\n.ps-watch:before {\n  content: \"\\e09c\";\n}\n.ps-30-80:before {\n  content: \"\\e09d\";\n}\n.ps-40-105:before {\n  content: \"\\e09e\";\n}\n.ps-50-120:before {\n  content: \"\\e09f\";\n}\n.ps-60-140:before {\n  content: \"\\e0a0\";\n}\n.ps-70-160:before {\n  content: \"\\e0a1\";\n}\n.ps-95-200:before {\n  content: \"\\e0a2\";\n}\n.ps-airplane:before {\n  content: \"\\e0a3\";\n}\n.ps-any-solvent:before {\n  content: \"\\e0a4\";\n}\n.ps-any-solvent-without-tetrachlorethylene:before {\n  content: \"\\e0a5\";\n}\n.ps-attachment:before {\n  content: \"\\e0a6\";\n}\n.ps-warning:before {\n  content: \"\\e0a7\";\n}\n.ps-barrel:before {\n  content: \"\\e0a8\";\n}\n.ps-bike:before {\n  content: \"\\e0a9\";\n}\n.ps-triangle:before {\n  content: \"\\e0aa\";\n}\n.ps-broken-link:before {\n  content: \"\\e0ab\";\n}\n.ps-bubble:before {\n  content: \"\\e0ac\";\n}\n.ps-prison-school-bus:before {\n  content: \"\\e0ad\";\n}\n.ps-car:before {\n  content: \"\\e0ae\";\n}\n.ps-cocktail:before {\n  content: \"\\e0af\";\n}\n.ps-do-not-bleach:before {\n  content: \"\\e0b0\";\n}\n.ps-do-not-dry:before {\n  content: \"\\e0b1\";\n}\n.ps-do-not-iron:before {\n  content: \"\\e0b2\";\n}\n.ps-do-not-wash:before {\n  content: \"\\e0b3\";\n}\n.ps-do-not-wring:before {\n  content: \"\\e0b4\";\n}\n.ps-double-arrow:before {\n  content: \"\\e0b5\";\n}\n.ps-drip-dry:before {\n  content: \"\\e0b6\";\n}\n.ps-drop:before {\n  content: \"\\e0b7\";\n}\n.ps-dry:before {\n  content: \"\\e0b8\";\n}\n.ps-dry-flat:before {\n  content: \"\\e0b9\";\n}\n.ps-dry-in-the-shade:before {\n  content: \"\\e0ba\";\n}\n.ps-dry-normal-hight-heat:before {\n  content: \"\\e0bb\";\n}\n.ps-dry-normal-low-heat:before {\n  content: \"\\e0bc\";\n}\n.ps-heat:before {\n  content: \"\\e0bd\";\n}\n.ps-dry-normal-no-heat:before {\n  content: \"\\e0be\";\n}\n.ps-eject:before {\n  content: \"\\e0bf\";\n}\n.ps-switch:before {\n  content: \"\\e0c0\";\n}\n.ps-film:before {\n  content: \"\\e0c1\";\n}\n.ps-apps:before {\n  content: \"\\e0c2\";\n}\n.ps-gun:before {\n  content: \"\\e0c3\";\n}\n.ps-hand-wash:before {\n  content: \"\\e0c4\";\n}\n.ps-disabled:before {\n  content: \"\\e0c5\";\n}\n.ps-hang-to-dry:before {\n  content: \"\\e0c6\";\n}\n.ps-hard-drive:before {\n  content: \"\\e0c7\";\n}\n.ps-hourglass:before {\n  content: \"\\e0c8\";\n}\n.ps-important:before {\n  content: \"\\e0c9\";\n}\n.ps-iron-any-temp:before {\n  content: \"\\e0ca\";\n}\n.ps-justice:before {\n  content: \"\\e0cb\";\n}\n.ps-keyboard:before {\n  content: \"\\e0cc\";\n}\n.ps-link:before {\n  content: \"\\e0cd\";\n}\n.ps-branch:before {\n  content: \"\\e0ce\";\n}\n.ps-liquor:before {\n  content: \"\\e0cf\";\n}\n.ps-bus-london:before {\n  content: \"\\e0d0\";\n}\n.ps-machine-wash:before {\n  content: \"\\e0d1\";\n}\n.ps-machine-wash-gentle-or-delicate:before {\n  content: \"\\e0d2\";\n}\n.ps-machine-wash-permanent-press:before {\n  content: \"\\e0d3\";\n}\n.ps-wand:before {\n  content: \"\\e0d4\";\n}\n.ps-magnifying-glass:before {\n  content: \"\\e0d5\";\n}\n.ps-maximum-temp-110-230:before {\n  content: \"\\e0d6\";\n}\n.ps-maximum-temp-150-300:before {\n  content: \"\\e0d7\";\n}\n.ps-maximum-temp-200-390:before {\n  content: \"\\e0d8\";\n}\n.ps-megaphone:before {\n  content: \"\\e0d9\";\n}\n.ps-man:before {\n  content: \"\\e0da\";\n}\n.ps-mic:before {\n  content: \"\\e0db\";\n}\n.ps-mic-off:before {\n  content: \"\\e0dc\";\n}\n.ps-next:before {\n  content: \"\\e0dd\";\n}\n.ps-non-chlorine-bleach-if-needed:before {\n  content: \"\\e0de\";\n}\n.ps-penknife:before {\n  content: \"\\e0df\";\n}\n.ps-petroleum-solvent-steam:before {\n  content: \"\\e0e0\";\n}\n.ps-phone:before {\n  content: \"\\e0e1\";\n}\n.ps-piano:before {\n  content: \"\\e0e2\";\n}\n.ps-pin:before {\n  content: \"\\e0e3\";\n}\n.ps-filter:before {\n  content: \"\\e0e4\";\n}\n.ps-plane:before {\n  content: \"\\e0e5\";\n}\n.ps-previous:before {\n  content: \"\\e0e6\";\n}\n.ps-quote:before {\n  content: \"\\e0e7\";\n}\n.ps-retweet-1:before {\n  content: \"\\e0e8\";\n}\n.ps-sound:before {\n  content: \"\\e0e9\";\n}\n.ps-sound-down:before {\n  content: \"\\e0ea\";\n}\n.ps-sound-level-one:before {\n  content: \"\\e0eb\";\n}\n.ps-sound-level-two:before {\n  content: \"\\e0ec\";\n}\n.ps-sound-plus:before {\n  content: \"\\e0ed\";\n}\n.ps-stethoscope:before {\n  content: \"\\e0ee\";\n}\n.ps-suitcase:before {\n  content: \"\\e0ef\";\n}\n.ps-target:before {\n  content: \"\\e0f0\";\n}\n.ps-ticket:before {\n  content: \"\\e0f1\";\n}\n.ps-trophy:before {\n  content: \"\\e0f2\";\n}\n.ps-tumble-dry:before {\n  content: \"\\e0f3\";\n}\n.ps-ufo:before {\n  content: \"\\e0f4\";\n}\n.ps-video-camera:before {\n  content: \"\\e0f5\";\n}\n.ps-truck-1:before {\n  content: \"\\e0f6\";\n}\n.ps-water-temperature-30:before {\n  content: \"\\e0f7\";\n}\n.ps-water-temperature-40:before {\n  content: \"\\e0f8\";\n}\n.ps-water-temperature-50:before {\n  content: \"\\e0f9\";\n}\n.ps-water-temperature-60:before {\n  content: \"\\e0fa\";\n}\n.ps-water-temperature-70:before {\n  content: \"\\e0fb\";\n}\n.ps-water-temperature-95:before {\n  content: \"\\e0fc\";\n}\n.ps-clothes-water:before {\n  content: \"\\e0fd\";\n}\n.ps-woman:before {\n  content: \"\\e0fe\";\n}\n.ps-zoom-in:before {\n  content: \"\\e0ff\";\n}\n.ps-zoom-out:before {\n  content: \"\\e100\";\n}\n.ps-anchor:before {\n  content: \"\\e101\";\n}\n.ps-left:before {\n  content: \"\\e102\";\n}\n.ps-right:before {\n  content: \"\\e103\";\n}\n.ps-up:before {\n  content: \"\\e104\";\n}\n.ps-down:before {\n  content: \"\\e105\";\n}\n.ps-play:before {\n  content: \"\\e106\";\n}\n.ps-forward:before {\n  content: \"\\e107\";\n}\n.ps-rewind:before {\n  content: \"\\e108\";\n}\n.ps-forbidden:before {\n  content: \"\\e109\";\n}\n.ps-stats:before {\n  content: \"\\e10a\";\n}\n.ps-bar-code:before {\n  content: \"\\e10b\";\n}\n.ps-lab:before {\n  content: \"\\e10c\";\n}\n.ps-beer:before {\n  content: \"\\e10d\";\n}\n.ps-bell:before {\n  content: \"\\e10e\";\n}\n.ps-book-tag:before {\n  content: \"\\e10f\";\n}\n.ps-minus-circle-1:before {\n  content: \"\\e110\";\n}\n.ps-plus-box:before {\n  content: \"\\e111\";\n}\n.ps-minus-box:before {\n  content: \"\\e112\";\n}\n.ps-plus:before {\n  content: \"\\e113\";\n}\n.ps-minus:before {\n  content: \"\\e114\";\n}\n.ps-arrow-right:before {\n  content: \"\\e115\";\n}\n.ps-down-arrow-circle:before {\n  content: \"\\e116\";\n}\n.ps-up-arrow-circle:before {\n  content: \"\\e117\";\n}\n.ps-right-arrow-circle:before {\n  content: \"\\e118\";\n}\n.ps-left-arrow-circle:before {\n  content: \"\\e119\";\n}\n.ps-contrast:before {\n  content: \"\\e11a\";\n}\n.ps-align-justified:before {\n  content: \"\\e11b\";\n}\n.ps-align-right:before {\n  content: \"\\e11c\";\n}\n.ps-align-left:before {\n  content: \"\\e11d\";\n}\n.ps-minus-circle:before {\n  content: \"\\e11e\";\n}\n.ps-book:before {\n  content: \"\\e11f\";\n}\n.ps-label-hogwarts:before {\n  content: \"\\e120\";\n}\n.ps-label:before {\n  content: \"\\e121\";\n}\n.ps-leaf:before {\n  content: \"\\e122\";\n}\n.ps-work-case:before {\n  content: \"\\e123\";\n}\n.ps-bug:before {\n  content: \"\\e124\";\n}\n.ps-building:before {\n  content: \"\\e125\";\n}\n.ps-calendar:before {\n  content: \"\\e126\";\n}\n.ps-calendar-grid:before {\n  content: \"\\e127\";\n}\n.ps-align-centered:before {\n  content: \"\\e128\";\n}\n.ps-camera:before {\n  content: \"\\e129\";\n}\n.ps-check-box-empty:before {\n  content: \"\\e12a\";\n}\n.ps-check-box:before {\n  content: \"\\e12b\";\n}\n.ps-radio-empty:before {\n  content: \"\\e12c\";\n}\n.ps-radio:before {\n  content: \"\\e12d\";\n}\n.ps-coffee:before {\n  content: \"\\e12e\";\n}\n.ps-coffee-hot:before {\n  content: \"\\e12f\";\n}\n.ps-compass:before {\n  content: \"\\e130\";\n}\n.ps-bull-right:before {\n  content: \"\\e131\";\n}\n.ps-bull-left:before {\n  content: \"\\e132\";\n}\n.ps-chat-alt:before {\n  content: \"\\e133\";\n}\n.ps-chat:before {\n  content: \"\\e134\";\n}\n.ps-code:before {\n  content: \"\\e135\";\n}\n.ps-flag-corner:before {\n  content: \"\\e136\";\n}\n.ps-flag-scout:before {\n  content: \"\\e137\";\n}\n.ps-flag:before {\n  content: \"\\e138\";\n}\n.ps-row-setting:before {\n  content: \"\\e139\";\n}\n.ps-copy:before {\n  content: \"\\e13a\";\n}\n.ps-file:before {\n  content: \"\\e13b\";\n}\n.ps-crop:before {\n  content: \"\\e13c\";\n}\n.ps-iphone:before {\n  content: \"\\e13d\";\n}\n.ps-ipad:before {\n  content: \"\\e13e\";\n}\n.ps-mac:before {\n  content: \"\\e13f\";\n}\n.ps-random:before {\n  content: \"\\e140\";\n}\n.ps-arrow-box:before {\n  content: \"\\e141\";\n}\n.ps-scissors:before {\n  content: \"\\e142\";\n}\n.ps-dashboard:before {\n  content: \"\\e143\";\n}\n.ps-world:before {\n  content: \"\\e144\";\n}\n.ps-download:before {\n  content: \"\\e145\";\n}\n.ps-upload:before {\n  content: \"\\e146\";\n}\n.ps-fire:before {\n  content: \"\\e147\";\n}\n.ps-eye:before {\n  content: \"\\e148\";\n}\n.ps-no-eye:before {\n  content: \"\\e149\";\n}\n.ps-folder:before {\n  content: \"\\e14a\";\n}\n.ps-clock:before {\n  content: \"\\e14b\";\n}\n.ps-mouse:before {\n  content: \"\\e14c\";\n}\n.ps-backpack:before {\n  content: \"\\e14d\";\n}\n.ps-ipod:before {\n  content: \"\\e14e\";\n}\n.ps-iwatch:before {\n  content: \"\\e14f\";\n}\n.ps-battery:before {\n  content: \"\\e150\";\n}\n.ps-battery-charge:before {\n  content: \"\\e151\";\n}\n.ps-lightning:before {\n  content: \"\\e152\";\n}\n.ps-image:before {\n  content: \"\\e153\";\n}\n.ps-gift:before {\n  content: \"\\e154\";\n}\n.ps-cutlery:before {\n  content: \"\\e155\";\n}\n.ps-pen:before {\n  content: \"\\e156\";\n}\n.ps-archive:before {\n  content: \"\\e157\";\n}\n.ps-arrow-down:before {\n  content: \"\\e158\";\n}\n.ps-arrow-left:before {\n  content: \"\\e159\";\n}\n.ps-arrow-up:before {\n  content: \"\\e15a\";\n}\n.ps-asterisk:before {\n  content: \"\\e15b\";\n}\n.ps-browser:before {\n  content: \"\\e15c\";\n}\n.ps-check:before {\n  content: \"\\e15d\";\n}\n.ps-cloud:before {\n  content: \"\\e15e\";\n}\n.ps-download-from-cloud:before {\n  content: \"\\e15f\";\n}\n.ps-upload-to-cloud:before {\n  content: \"\\e160\";\n}\n.ps-checked:before {\n  content: \"\\e161\";\n}\n.ps-ambulance:before {\n  content: \"\\e162\";\n}\n.ps-mailbox:before {\n  content: \"\\e163\";\n}\n.ps-plus-circle:before {\n  content: \"\\e164\";\n}\n.ps-truck:before {\n  content: \"\\e165\";\n}\n.ps-girl-sad-hunappy:before {\n  content: \"\\e166\";\n}\n.ps-spades-card:before {\n  content: \"\\e167\";\n}\n.ps-diamonds-card:before {\n  content: \"\\e168\";\n}\n.ps-clubs-card:before {\n  content: \"\\e169\";\n}\n.ps-hearts-card:before {\n  content: \"\\e16a\";\n}\n.ps-pull:before {\n  content: \"\\e16b\";\n}\n.ps-pant:before {\n  content: \"\\e16c\";\n}\n.ps-data-board:before {\n  content: \"\\e16d\";\n}\n.ps-board:before {\n  content: \"\\e16e\";\n}\n.ps-shoe:before {\n  content: \"\\e16f\";\n}\n.ps-globe:before {\n  content: \"\\e170\";\n}\n.ps-pin-map:before {\n  content: \"\\e171\";\n}\n.ps-bonnet:before {\n  content: \"\\e172\";\n}\n.ps-contact:before {\n  content: \"\\e173\";\n}\n.ps-fish:before {\n  content: \"\\e174\";\n}\n.ps-cookie:before {\n  content: \"\\e175\";\n}\n.ps-pizza:before {\n  content: \"\\e176\";\n}\n.ps-birthday:before {\n  content: \"\\e177\";\n}\n.ps-pc:before {\n  content: \"\\e178\";\n}\n.ps-ram:before {\n  content: \"\\e179\";\n}\n.ps-cpu:before {\n  content: \"\\e17a\";\n}\n.ps-milkshake:before {\n  content: \"\\e17b\";\n}\n.ps-tacos:before {\n  content: \"\\e17c\";\n}\n.ps-burger:before {\n  content: \"\\e17d\";\n}\n.ps-home:before {\n  content: \"\\e17e\";\n}\n.ps-lego:before {\n  content: \"\\e17f\";\n}\n.ps-preston:before {\n  content: \"\\e180\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-remixicon-pack/ikonli-remixicon-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-remixicon-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.remixicon {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.remixicon;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.remixicon.RemixiconALIkonHandler,\n            org.kordamp.ikonli.remixicon.RemixiconMZIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.remixicon.RemixiconALIkonProvider,\n            org.kordamp.ikonli.remixicon.RemixiconMZIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-remixicon-pack/src/main/java/org/kordamp/ikonli/remixicon/RemixiconAL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.remixicon;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum RemixiconAL implements Ikon {\n    ACCOUNT_BOX_FILL(\"remixal-account-box-fill\", '\\uea06'),\n    ACCOUNT_BOX_LINE(\"remixal-account-box-line\", '\\uea07'),\n    ACCOUNT_CIRCLE_FILL(\"remixal-account-circle-fill\", '\\uea08'),\n    ACCOUNT_CIRCLE_LINE(\"remixal-account-circle-line\", '\\uea09'),\n    ACCOUNT_PIN_BOX_FILL(\"remixal-account-pin-box-fill\", '\\uea0a'),\n    ACCOUNT_PIN_BOX_LINE(\"remixal-account-pin-box-line\", '\\uea0b'),\n    ACCOUNT_PIN_CIRCLE_FILL(\"remixal-account-pin-circle-fill\", '\\uea0c'),\n    ACCOUNT_PIN_CIRCLE_LINE(\"remixal-account-pin-circle-line\", '\\uea0d'),\n    ADD_BOX_FILL(\"remixal-add-box-fill\", '\\uea0e'),\n    ADD_BOX_LINE(\"remixal-add-box-line\", '\\uea0f'),\n    ADD_CIRCLE_FILL(\"remixal-add-circle-fill\", '\\uea10'),\n    ADD_CIRCLE_LINE(\"remixal-add-circle-line\", '\\uea11'),\n    ADD_FILL(\"remixal-add-fill\", '\\uea12'),\n    ADD_LINE(\"remixal-add-line\", '\\uea13'),\n    ADMIN_FILL(\"remixal-admin-fill\", '\\uea14'),\n    ADMIN_LINE(\"remixal-admin-line\", '\\uea15'),\n    ADVERTISEMENT_FILL(\"remixal-advertisement-fill\", '\\uea16'),\n    ADVERTISEMENT_LINE(\"remixal-advertisement-line\", '\\uea17'),\n    AIRPLAY_FILL(\"remixal-airplay-fill\", '\\uea18'),\n    AIRPLAY_LINE(\"remixal-airplay-line\", '\\uea19'),\n    ALARM_FILL(\"remixal-alarm-fill\", '\\uea1a'),\n    ALARM_LINE(\"remixal-alarm-line\", '\\uea1b'),\n    ALARM_WARNING_FILL(\"remixal-alarm-warning-fill\", '\\uea1c'),\n    ALARM_WARNING_LINE(\"remixal-alarm-warning-line\", '\\uea1d'),\n    ALBUM_FILL(\"remixal-album-fill\", '\\uea1e'),\n    ALBUM_LINE(\"remixal-album-line\", '\\uea1f'),\n    ALERT_FILL(\"remixal-alert-fill\", '\\uea20'),\n    ALERT_LINE(\"remixal-alert-line\", '\\uea21'),\n    ALIENS_FILL(\"remixal-aliens-fill\", '\\uea22'),\n    ALIENS_LINE(\"remixal-aliens-line\", '\\uea23'),\n    ALIGN_BOTTOM(\"remixal-align-bottom\", '\\uea24'),\n    ALIGN_CENTER(\"remixal-align-center\", '\\uea25'),\n    ALIGN_JUSTIFY(\"remixal-align-justify\", '\\uea26'),\n    ALIGN_LEFT(\"remixal-align-left\", '\\uea27'),\n    ALIGN_RIGHT(\"remixal-align-right\", '\\uea28'),\n    ALIGN_TOP(\"remixal-align-top\", '\\uea29'),\n    ALIGN_VERTICALLY(\"remixal-align-vertically\", '\\uea2a'),\n    ALIPAY_FILL(\"remixal-alipay-fill\", '\\uea2b'),\n    ALIPAY_LINE(\"remixal-alipay-line\", '\\uea2c'),\n    AMAZON_FILL(\"remixal-amazon-fill\", '\\uea2d'),\n    AMAZON_LINE(\"remixal-amazon-line\", '\\uea2e'),\n    ANCHOR_FILL(\"remixal-anchor-fill\", '\\uea2f'),\n    ANCHOR_LINE(\"remixal-anchor-line\", '\\uea30'),\n    ANCIENT_GATE_FILL(\"remixal-ancient-gate-fill\", '\\uea31'),\n    ANCIENT_GATE_LINE(\"remixal-ancient-gate-line\", '\\uea32'),\n    ANCIENT_PAVILION_FILL(\"remixal-ancient-pavilion-fill\", '\\uea33'),\n    ANCIENT_PAVILION_LINE(\"remixal-ancient-pavilion-line\", '\\uea34'),\n    ANDROID_FILL(\"remixal-android-fill\", '\\uea35'),\n    ANDROID_LINE(\"remixal-android-line\", '\\uea36'),\n    ANGULARJS_FILL(\"remixal-angularjs-fill\", '\\uea37'),\n    ANGULARJS_LINE(\"remixal-angularjs-line\", '\\uea38'),\n    ANTICLOCKWISE_2_FILL(\"remixal-anticlockwise-2-fill\", '\\uea39'),\n    ANTICLOCKWISE_2_LINE(\"remixal-anticlockwise-2-line\", '\\uea3a'),\n    ANTICLOCKWISE_FILL(\"remixal-anticlockwise-fill\", '\\uea3b'),\n    ANTICLOCKWISE_LINE(\"remixal-anticlockwise-line\", '\\uea3c'),\n    APPLE_FILL(\"remixal-apple-fill\", '\\uea3f'),\n    APPLE_LINE(\"remixal-apple-line\", '\\uea40'),\n    APPS_2_FILL(\"remixal-apps-2-fill\", '\\uea41'),\n    APPS_2_LINE(\"remixal-apps-2-line\", '\\uea42'),\n    APPS_FILL(\"remixal-apps-fill\", '\\uea43'),\n    APPS_LINE(\"remixal-apps-line\", '\\uea44'),\n    APP_STORE_FILL(\"remixal-app-store-fill\", '\\uea3d'),\n    APP_STORE_LINE(\"remixal-app-store-line\", '\\uea3e'),\n    ARCHIVE_DRAWER_FILL(\"remixal-archive-drawer-fill\", '\\uea45'),\n    ARCHIVE_DRAWER_LINE(\"remixal-archive-drawer-line\", '\\uea46'),\n    ARCHIVE_FILL(\"remixal-archive-fill\", '\\uea47'),\n    ARCHIVE_LINE(\"remixal-archive-line\", '\\uea48'),\n    ARROW_DOWN_CIRCLE_FILL(\"remixal-arrow-down-circle-fill\", '\\uea49'),\n    ARROW_DOWN_CIRCLE_LINE(\"remixal-arrow-down-circle-line\", '\\uea4a'),\n    ARROW_DOWN_FILL(\"remixal-arrow-down-fill\", '\\uea4b'),\n    ARROW_DOWN_LINE(\"remixal-arrow-down-line\", '\\uea4c'),\n    ARROW_DOWN_S_FILL(\"remixal-arrow-down-s-fill\", '\\uea4d'),\n    ARROW_DOWN_S_LINE(\"remixal-arrow-down-s-line\", '\\uea4e'),\n    ARROW_DROP_DOWN_FILL(\"remixal-arrow-drop-down-fill\", '\\uea4f'),\n    ARROW_DROP_DOWN_LINE(\"remixal-arrow-drop-down-line\", '\\uea50'),\n    ARROW_DROP_LEFT_FILL(\"remixal-arrow-drop-left-fill\", '\\uea51'),\n    ARROW_DROP_LEFT_LINE(\"remixal-arrow-drop-left-line\", '\\uea52'),\n    ARROW_DROP_RIGHT_FILL(\"remixal-arrow-drop-right-fill\", '\\uea53'),\n    ARROW_DROP_RIGHT_LINE(\"remixal-arrow-drop-right-line\", '\\uea54'),\n    ARROW_DROP_UP_FILL(\"remixal-arrow-drop-up-fill\", '\\uea55'),\n    ARROW_DROP_UP_LINE(\"remixal-arrow-drop-up-line\", '\\uea56'),\n    ARROW_GO_BACK_FILL(\"remixal-arrow-go-back-fill\", '\\uea57'),\n    ARROW_GO_BACK_LINE(\"remixal-arrow-go-back-line\", '\\uea58'),\n    ARROW_GO_FORWARD_FILL(\"remixal-arrow-go-forward-fill\", '\\uea59'),\n    ARROW_GO_FORWARD_LINE(\"remixal-arrow-go-forward-line\", '\\uea5a'),\n    ARROW_LEFT_CIRCLE_FILL(\"remixal-arrow-left-circle-fill\", '\\uea5b'),\n    ARROW_LEFT_CIRCLE_LINE(\"remixal-arrow-left-circle-line\", '\\uea5c'),\n    ARROW_LEFT_DOWN_FILL(\"remixal-arrow-left-down-fill\", '\\uea5d'),\n    ARROW_LEFT_DOWN_LINE(\"remixal-arrow-left-down-line\", '\\uea5e'),\n    ARROW_LEFT_FILL(\"remixal-arrow-left-fill\", '\\uea5f'),\n    ARROW_LEFT_LINE(\"remixal-arrow-left-line\", '\\uea60'),\n    ARROW_LEFT_RIGHT_FILL(\"remixal-arrow-left-right-fill\", '\\uea61'),\n    ARROW_LEFT_RIGHT_LINE(\"remixal-arrow-left-right-line\", '\\uea62'),\n    ARROW_LEFT_S_FILL(\"remixal-arrow-left-s-fill\", '\\uea63'),\n    ARROW_LEFT_S_LINE(\"remixal-arrow-left-s-line\", '\\uea64'),\n    ARROW_LEFT_UP_FILL(\"remixal-arrow-left-up-fill\", '\\uea65'),\n    ARROW_LEFT_UP_LINE(\"remixal-arrow-left-up-line\", '\\uea66'),\n    ARROW_RIGHT_CIRCLE_FILL(\"remixal-arrow-right-circle-fill\", '\\uea67'),\n    ARROW_RIGHT_CIRCLE_LINE(\"remixal-arrow-right-circle-line\", '\\uea68'),\n    ARROW_RIGHT_DOWN_FILL(\"remixal-arrow-right-down-fill\", '\\uea69'),\n    ARROW_RIGHT_DOWN_LINE(\"remixal-arrow-right-down-line\", '\\uea6a'),\n    ARROW_RIGHT_FILL(\"remixal-arrow-right-fill\", '\\uea6b'),\n    ARROW_RIGHT_LINE(\"remixal-arrow-right-line\", '\\uea6c'),\n    ARROW_RIGHT_S_FILL(\"remixal-arrow-right-s-fill\", '\\uea6d'),\n    ARROW_RIGHT_S_LINE(\"remixal-arrow-right-s-line\", '\\uea6e'),\n    ARROW_RIGHT_UP_FILL(\"remixal-arrow-right-up-fill\", '\\uea6f'),\n    ARROW_RIGHT_UP_LINE(\"remixal-arrow-right-up-line\", '\\uea70'),\n    ARROW_UP_CIRCLE_FILL(\"remixal-arrow-up-circle-fill\", '\\uea71'),\n    ARROW_UP_CIRCLE_LINE(\"remixal-arrow-up-circle-line\", '\\uea72'),\n    ARROW_UP_DOWN_FILL(\"remixal-arrow-up-down-fill\", '\\uea73'),\n    ARROW_UP_DOWN_LINE(\"remixal-arrow-up-down-line\", '\\uea74'),\n    ARROW_UP_FILL(\"remixal-arrow-up-fill\", '\\uea75'),\n    ARROW_UP_LINE(\"remixal-arrow-up-line\", '\\uea76'),\n    ARROW_UP_S_FILL(\"remixal-arrow-up-s-fill\", '\\uea77'),\n    ARROW_UP_S_LINE(\"remixal-arrow-up-s-line\", '\\uea78'),\n    ARTBOARD_2_FILL(\"remixal-artboard-2-fill\", '\\uea79'),\n    ARTBOARD_2_LINE(\"remixal-artboard-2-line\", '\\uea7a'),\n    ARTBOARD_FILL(\"remixal-artboard-fill\", '\\uea7b'),\n    ARTBOARD_LINE(\"remixal-artboard-line\", '\\uea7c'),\n    ARTICLE_FILL(\"remixal-article-fill\", '\\uea7d'),\n    ARTICLE_LINE(\"remixal-article-line\", '\\uea7e'),\n    ASPECT_RATIO_FILL(\"remixal-aspect-ratio-fill\", '\\uea7f'),\n    ASPECT_RATIO_LINE(\"remixal-aspect-ratio-line\", '\\uea80'),\n    ASTERISK(\"remixal-asterisk\", '\\uea81'),\n    ATTACHMENT_2(\"remixal-attachment-2\", '\\uea84'),\n    ATTACHMENT_FILL(\"remixal-attachment-fill\", '\\uea85'),\n    ATTACHMENT_LINE(\"remixal-attachment-line\", '\\uea86'),\n    AT_FILL(\"remixal-at-fill\", '\\uea82'),\n    AT_LINE(\"remixal-at-line\", '\\uea83'),\n    AUCTION_FILL(\"remixal-auction-fill\", '\\uea87'),\n    AUCTION_LINE(\"remixal-auction-line\", '\\uea88'),\n    AWARD_FILL(\"remixal-award-fill\", '\\uea89'),\n    AWARD_LINE(\"remixal-award-line\", '\\uea8a'),\n    A_B(\"remixal-a-b\", '\\uea05'),\n    BAIDU_FILL(\"remixal-baidu-fill\", '\\uea8b'),\n    BAIDU_LINE(\"remixal-baidu-line\", '\\uea8c'),\n    BALL_PEN_FILL(\"remixal-ball-pen-fill\", '\\uea8d'),\n    BALL_PEN_LINE(\"remixal-ball-pen-line\", '\\uea8e'),\n    BANK_CARD_2_FILL(\"remixal-bank-card-2-fill\", '\\uea8f'),\n    BANK_CARD_2_LINE(\"remixal-bank-card-2-line\", '\\uea90'),\n    BANK_CARD_FILL(\"remixal-bank-card-fill\", '\\uea91'),\n    BANK_CARD_LINE(\"remixal-bank-card-line\", '\\uea92'),\n    BANK_FILL(\"remixal-bank-fill\", '\\uea93'),\n    BANK_LINE(\"remixal-bank-line\", '\\uea94'),\n    BARCODE_BOX_FILL(\"remixal-barcode-box-fill\", '\\uea9f'),\n    BARCODE_BOX_LINE(\"remixal-barcode-box-line\", '\\ueaa0'),\n    BARCODE_FILL(\"remixal-barcode-fill\", '\\ueaa1'),\n    BARCODE_LINE(\"remixal-barcode-line\", '\\ueaa2'),\n    BARRICADE_FILL(\"remixal-barricade-fill\", '\\ueaa3'),\n    BARRICADE_LINE(\"remixal-barricade-line\", '\\ueaa4'),\n    BAR_CHART_2_FILL(\"remixal-bar-chart-2-fill\", '\\uea95'),\n    BAR_CHART_2_LINE(\"remixal-bar-chart-2-line\", '\\uea96'),\n    BAR_CHART_BOX_FILL(\"remixal-bar-chart-box-fill\", '\\uea97'),\n    BAR_CHART_BOX_LINE(\"remixal-bar-chart-box-line\", '\\uea98'),\n    BAR_CHART_FILL(\"remixal-bar-chart-fill\", '\\uea99'),\n    BAR_CHART_GROUPED_FILL(\"remixal-bar-chart-grouped-fill\", '\\uea9a'),\n    BAR_CHART_GROUPED_LINE(\"remixal-bar-chart-grouped-line\", '\\uea9b'),\n    BAR_CHART_HORIZONTAL_FILL(\"remixal-bar-chart-horizontal-fill\", '\\uea9c'),\n    BAR_CHART_HORIZONTAL_LINE(\"remixal-bar-chart-horizontal-line\", '\\uea9d'),\n    BAR_CHART_LINE(\"remixal-bar-chart-line\", '\\uea9e'),\n    BASE_STATION_FILL(\"remixal-base-station-fill\", '\\ueaa5'),\n    BASE_STATION_LINE(\"remixal-base-station-line\", '\\ueaa6'),\n    BASKETBALL_FILL(\"remixal-basketball-fill\", '\\ueaa7'),\n    BASKETBALL_LINE(\"remixal-basketball-line\", '\\ueaa8'),\n    BATTERY_2_CHARGE_FILL(\"remixal-battery-2-charge-fill\", '\\ueaa9'),\n    BATTERY_2_CHARGE_LINE(\"remixal-battery-2-charge-line\", '\\ueaaa'),\n    BATTERY_2_FILL(\"remixal-battery-2-fill\", '\\ueaab'),\n    BATTERY_2_LINE(\"remixal-battery-2-line\", '\\ueaac'),\n    BATTERY_CHARGE_FILL(\"remixal-battery-charge-fill\", '\\ueaad'),\n    BATTERY_CHARGE_LINE(\"remixal-battery-charge-line\", '\\ueaae'),\n    BATTERY_FILL(\"remixal-battery-fill\", '\\ueaaf'),\n    BATTERY_LINE(\"remixal-battery-line\", '\\ueab0'),\n    BATTERY_LOW_FILL(\"remixal-battery-low-fill\", '\\ueab1'),\n    BATTERY_LOW_LINE(\"remixal-battery-low-line\", '\\ueab2'),\n    BATTERY_SAVER_FILL(\"remixal-battery-saver-fill\", '\\ueab3'),\n    BATTERY_SAVER_LINE(\"remixal-battery-saver-line\", '\\ueab4'),\n    BATTERY_SHARE_FILL(\"remixal-battery-share-fill\", '\\ueab5'),\n    BATTERY_SHARE_LINE(\"remixal-battery-share-line\", '\\ueab6'),\n    BEAR_SMILE_FILL(\"remixal-bear-smile-fill\", '\\ueab7'),\n    BEAR_SMILE_LINE(\"remixal-bear-smile-line\", '\\ueab8'),\n    BEHANCE_FILL(\"remixal-behance-fill\", '\\ueab9'),\n    BEHANCE_LINE(\"remixal-behance-line\", '\\ueaba'),\n    BELL_FILL(\"remixal-bell-fill\", '\\ueabb'),\n    BELL_LINE(\"remixal-bell-line\", '\\ueabc'),\n    BIKE_FILL(\"remixal-bike-fill\", '\\ueabd'),\n    BIKE_LINE(\"remixal-bike-line\", '\\ueabe'),\n    BILIBILI_FILL(\"remixal-bilibili-fill\", '\\ueabf'),\n    BILIBILI_LINE(\"remixal-bilibili-line\", '\\ueac0'),\n    BILLIARDS_FILL(\"remixal-billiards-fill\", '\\ueac3'),\n    BILLIARDS_LINE(\"remixal-billiards-line\", '\\ueac4'),\n    BILL_FILL(\"remixal-bill-fill\", '\\ueac1'),\n    BILL_LINE(\"remixal-bill-line\", '\\ueac2'),\n    BIT_COIN_FILL(\"remixal-bit-coin-fill\", '\\ueac5'),\n    BIT_COIN_LINE(\"remixal-bit-coin-line\", '\\ueac6'),\n    BLAZE_FILL(\"remixal-blaze-fill\", '\\ueac7'),\n    BLAZE_LINE(\"remixal-blaze-line\", '\\ueac8'),\n    BLUETOOTH_CONNECT_FILL(\"remixal-bluetooth-connect-fill\", '\\ueac9'),\n    BLUETOOTH_CONNECT_LINE(\"remixal-bluetooth-connect-line\", '\\ueaca'),\n    BLUETOOTH_FILL(\"remixal-bluetooth-fill\", '\\ueacb'),\n    BLUETOOTH_LINE(\"remixal-bluetooth-line\", '\\ueacc'),\n    BLUR_OFF_FILL(\"remixal-blur-off-fill\", '\\ueacd'),\n    BLUR_OFF_LINE(\"remixal-blur-off-line\", '\\ueace'),\n    BODY_SCAN_FILL(\"remixal-body-scan-fill\", '\\ueacf'),\n    BODY_SCAN_LINE(\"remixal-body-scan-line\", '\\uead0'),\n    BOLD(\"remixal-bold\", '\\uead1'),\n    BOOKLET_FILL(\"remixal-booklet-fill\", '\\ueade'),\n    BOOKLET_LINE(\"remixal-booklet-line\", '\\ueadf'),\n    BOOKMARK_2_FILL(\"remixal-bookmark-2-fill\", '\\ueae0'),\n    BOOKMARK_2_LINE(\"remixal-bookmark-2-line\", '\\ueae1'),\n    BOOKMARK_3_FILL(\"remixal-bookmark-3-fill\", '\\ueae2'),\n    BOOKMARK_3_LINE(\"remixal-bookmark-3-line\", '\\ueae3'),\n    BOOKMARK_FILL(\"remixal-bookmark-fill\", '\\ueae4'),\n    BOOKMARK_LINE(\"remixal-bookmark-line\", '\\ueae5'),\n    BOOK_2_FILL(\"remixal-book-2-fill\", '\\uead2'),\n    BOOK_2_LINE(\"remixal-book-2-line\", '\\uead3'),\n    BOOK_3_FILL(\"remixal-book-3-fill\", '\\uead4'),\n    BOOK_3_LINE(\"remixal-book-3-line\", '\\uead5'),\n    BOOK_FILL(\"remixal-book-fill\", '\\uead6'),\n    BOOK_LINE(\"remixal-book-line\", '\\uead7'),\n    BOOK_MARK_FILL(\"remixal-book-mark-fill\", '\\uead8'),\n    BOOK_MARK_LINE(\"remixal-book-mark-line\", '\\uead9'),\n    BOOK_OPEN_FILL(\"remixal-book-open-fill\", '\\ueada'),\n    BOOK_OPEN_LINE(\"remixal-book-open-line\", '\\ueadb'),\n    BOOK_READ_FILL(\"remixal-book-read-fill\", '\\ueadc'),\n    BOOK_READ_LINE(\"remixal-book-read-line\", '\\ueadd'),\n    BOXING_FILL(\"remixal-boxing-fill\", '\\ueae6'),\n    BOXING_LINE(\"remixal-boxing-line\", '\\ueae7'),\n    BRACES_FILL(\"remixal-braces-fill\", '\\ueae8'),\n    BRACES_LINE(\"remixal-braces-line\", '\\ueae9'),\n    BRACKETS_FILL(\"remixal-brackets-fill\", '\\ueaea'),\n    BRACKETS_LINE(\"remixal-brackets-line\", '\\ueaeb'),\n    BRIEFCASE_2_FILL(\"remixal-briefcase-2-fill\", '\\ueaec'),\n    BRIEFCASE_2_LINE(\"remixal-briefcase-2-line\", '\\ueaed'),\n    BRIEFCASE_3_FILL(\"remixal-briefcase-3-fill\", '\\ueaee'),\n    BRIEFCASE_3_LINE(\"remixal-briefcase-3-line\", '\\ueaef'),\n    BRIEFCASE_4_FILL(\"remixal-briefcase-4-fill\", '\\ueaf0'),\n    BRIEFCASE_4_LINE(\"remixal-briefcase-4-line\", '\\ueaf1'),\n    BRIEFCASE_5_FILL(\"remixal-briefcase-5-fill\", '\\ueaf2'),\n    BRIEFCASE_5_LINE(\"remixal-briefcase-5-line\", '\\ueaf3'),\n    BRIEFCASE_FILL(\"remixal-briefcase-fill\", '\\ueaf4'),\n    BRIEFCASE_LINE(\"remixal-briefcase-line\", '\\ueaf5'),\n    BRING_FORWARD(\"remixal-bring-forward\", '\\ueaf6'),\n    BRING_TO_FRONT(\"remixal-bring-to-front\", '\\ueaf7'),\n    BROADCAST_FILL(\"remixal-broadcast-fill\", '\\ueaf8'),\n    BROADCAST_LINE(\"remixal-broadcast-line\", '\\ueaf9'),\n    BRUSH_2_FILL(\"remixal-brush-2-fill\", '\\ueafa'),\n    BRUSH_2_LINE(\"remixal-brush-2-line\", '\\ueafb'),\n    BRUSH_3_FILL(\"remixal-brush-3-fill\", '\\ueafc'),\n    BRUSH_3_LINE(\"remixal-brush-3-line\", '\\ueafd'),\n    BRUSH_4_FILL(\"remixal-brush-4-fill\", '\\ueafe'),\n    BRUSH_4_LINE(\"remixal-brush-4-line\", '\\ueaff'),\n    BRUSH_FILL(\"remixal-brush-fill\", '\\ueb00'),\n    BRUSH_LINE(\"remixal-brush-line\", '\\ueb01'),\n    BUBBLE_CHART_FILL(\"remixal-bubble-chart-fill\", '\\ueb02'),\n    BUBBLE_CHART_LINE(\"remixal-bubble-chart-line\", '\\ueb03'),\n    BUG_2_FILL(\"remixal-bug-2-fill\", '\\ueb04'),\n    BUG_2_LINE(\"remixal-bug-2-line\", '\\ueb05'),\n    BUG_FILL(\"remixal-bug-fill\", '\\ueb06'),\n    BUG_LINE(\"remixal-bug-line\", '\\ueb07'),\n    BUILDING_2_FILL(\"remixal-building-2-fill\", '\\ueb08'),\n    BUILDING_2_LINE(\"remixal-building-2-line\", '\\ueb09'),\n    BUILDING_3_FILL(\"remixal-building-3-fill\", '\\ueb0a'),\n    BUILDING_3_LINE(\"remixal-building-3-line\", '\\ueb0b'),\n    BUILDING_4_FILL(\"remixal-building-4-fill\", '\\ueb0c'),\n    BUILDING_4_LINE(\"remixal-building-4-line\", '\\ueb0d'),\n    BUILDING_FILL(\"remixal-building-fill\", '\\ueb0e'),\n    BUILDING_LINE(\"remixal-building-line\", '\\ueb0f'),\n    BUS_2_FILL(\"remixal-bus-2-fill\", '\\ueb10'),\n    BUS_2_LINE(\"remixal-bus-2-line\", '\\ueb11'),\n    BUS_FILL(\"remixal-bus-fill\", '\\ueb12'),\n    BUS_LINE(\"remixal-bus-line\", '\\ueb13'),\n    BUS_WIFI_FILL(\"remixal-bus-wifi-fill\", '\\ueb14'),\n    BUS_WIFI_LINE(\"remixal-bus-wifi-line\", '\\ueb15'),\n    CACTUS_FILL(\"remixal-cactus-fill\", '\\ueb16'),\n    CACTUS_LINE(\"remixal-cactus-line\", '\\ueb17'),\n    CAKE_2_FILL(\"remixal-cake-2-fill\", '\\ueb18'),\n    CAKE_2_LINE(\"remixal-cake-2-line\", '\\ueb19'),\n    CAKE_3_FILL(\"remixal-cake-3-fill\", '\\ueb1a'),\n    CAKE_3_LINE(\"remixal-cake-3-line\", '\\ueb1b'),\n    CAKE_FILL(\"remixal-cake-fill\", '\\ueb1c'),\n    CAKE_LINE(\"remixal-cake-line\", '\\ueb1d'),\n    CALCULATOR_FILL(\"remixal-calculator-fill\", '\\ueb1e'),\n    CALCULATOR_LINE(\"remixal-calculator-line\", '\\ueb1f'),\n    CALENDAR_2_FILL(\"remixal-calendar-2-fill\", '\\ueb20'),\n    CALENDAR_2_LINE(\"remixal-calendar-2-line\", '\\ueb21'),\n    CALENDAR_CHECK_FILL(\"remixal-calendar-check-fill\", '\\ueb22'),\n    CALENDAR_CHECK_LINE(\"remixal-calendar-check-line\", '\\ueb23'),\n    CALENDAR_EVENT_FILL(\"remixal-calendar-event-fill\", '\\ueb24'),\n    CALENDAR_EVENT_LINE(\"remixal-calendar-event-line\", '\\ueb25'),\n    CALENDAR_FILL(\"remixal-calendar-fill\", '\\ueb26'),\n    CALENDAR_LINE(\"remixal-calendar-line\", '\\ueb27'),\n    CALENDAR_TODO_FILL(\"remixal-calendar-todo-fill\", '\\ueb28'),\n    CALENDAR_TODO_LINE(\"remixal-calendar-todo-line\", '\\ueb29'),\n    CAMERA_2_FILL(\"remixal-camera-2-fill\", '\\ueb2a'),\n    CAMERA_2_LINE(\"remixal-camera-2-line\", '\\ueb2b'),\n    CAMERA_3_FILL(\"remixal-camera-3-fill\", '\\ueb2c'),\n    CAMERA_3_LINE(\"remixal-camera-3-line\", '\\ueb2d'),\n    CAMERA_FILL(\"remixal-camera-fill\", '\\ueb2e'),\n    CAMERA_LENS_FILL(\"remixal-camera-lens-fill\", '\\ueb2f'),\n    CAMERA_LENS_LINE(\"remixal-camera-lens-line\", '\\ueb30'),\n    CAMERA_LINE(\"remixal-camera-line\", '\\ueb31'),\n    CAMERA_OFF_FILL(\"remixal-camera-off-fill\", '\\ueb32'),\n    CAMERA_OFF_LINE(\"remixal-camera-off-line\", '\\ueb33'),\n    CAMERA_SWITCH_FILL(\"remixal-camera-switch-fill\", '\\ueb34'),\n    CAMERA_SWITCH_LINE(\"remixal-camera-switch-line\", '\\ueb35'),\n    CAPSULE_FILL(\"remixal-capsule-fill\", '\\ueb36'),\n    CAPSULE_LINE(\"remixal-capsule-line\", '\\ueb37'),\n    CARAVAN_FILL(\"remixal-caravan-fill\", '\\ueb3c'),\n    CARAVAN_LINE(\"remixal-caravan-line\", '\\ueb3d'),\n    CAR_FILL(\"remixal-car-fill\", '\\ueb38'),\n    CAR_LINE(\"remixal-car-line\", '\\ueb39'),\n    CAR_WASHING_FILL(\"remixal-car-washing-fill\", '\\ueb3a'),\n    CAR_WASHING_LINE(\"remixal-car-washing-line\", '\\ueb3b'),\n    CAST_FILL(\"remixal-cast-fill\", '\\ueb3e'),\n    CAST_LINE(\"remixal-cast-line\", '\\ueb3f'),\n    CELLPHONE_FILL(\"remixal-cellphone-fill\", '\\ueb40'),\n    CELLPHONE_LINE(\"remixal-cellphone-line\", '\\ueb41'),\n    CELSIUS_FILL(\"remixal-celsius-fill\", '\\ueb42'),\n    CELSIUS_LINE(\"remixal-celsius-line\", '\\ueb43'),\n    CENTOS_FILL(\"remixal-centos-fill\", '\\ueb44'),\n    CENTOS_LINE(\"remixal-centos-line\", '\\ueb45'),\n    CHARACTER_RECOGNITION_FILL(\"remixal-character-recognition-fill\", '\\ueb46'),\n    CHARACTER_RECOGNITION_LINE(\"remixal-character-recognition-line\", '\\ueb47'),\n    CHARGING_PILE_2_FILL(\"remixal-charging-pile-2-fill\", '\\ueb48'),\n    CHARGING_PILE_2_LINE(\"remixal-charging-pile-2-line\", '\\ueb49'),\n    CHARGING_PILE_FILL(\"remixal-charging-pile-fill\", '\\ueb4a'),\n    CHARGING_PILE_LINE(\"remixal-charging-pile-line\", '\\ueb4b'),\n    CHAT_1_FILL(\"remixal-chat-1-fill\", '\\ueb4c'),\n    CHAT_1_LINE(\"remixal-chat-1-line\", '\\ueb4d'),\n    CHAT_2_FILL(\"remixal-chat-2-fill\", '\\ueb4e'),\n    CHAT_2_LINE(\"remixal-chat-2-line\", '\\ueb4f'),\n    CHAT_3_FILL(\"remixal-chat-3-fill\", '\\ueb50'),\n    CHAT_3_LINE(\"remixal-chat-3-line\", '\\ueb51'),\n    CHAT_4_FILL(\"remixal-chat-4-fill\", '\\ueb52'),\n    CHAT_4_LINE(\"remixal-chat-4-line\", '\\ueb53'),\n    CHAT_CHECK_FILL(\"remixal-chat-check-fill\", '\\ueb54'),\n    CHAT_CHECK_LINE(\"remixal-chat-check-line\", '\\ueb55'),\n    CHAT_DELETE_FILL(\"remixal-chat-delete-fill\", '\\ueb56'),\n    CHAT_DELETE_LINE(\"remixal-chat-delete-line\", '\\ueb57'),\n    CHAT_DOWNLOAD_FILL(\"remixal-chat-download-fill\", '\\ueb58'),\n    CHAT_DOWNLOAD_LINE(\"remixal-chat-download-line\", '\\ueb59'),\n    CHAT_FOLLOW_UP_FILL(\"remixal-chat-follow-up-fill\", '\\ueb5a'),\n    CHAT_FOLLOW_UP_LINE(\"remixal-chat-follow-up-line\", '\\ueb5b'),\n    CHAT_FORWARD_FILL(\"remixal-chat-forward-fill\", '\\ueb5c'),\n    CHAT_FORWARD_LINE(\"remixal-chat-forward-line\", '\\ueb5d'),\n    CHAT_HEART_FILL(\"remixal-chat-heart-fill\", '\\ueb5e'),\n    CHAT_HEART_LINE(\"remixal-chat-heart-line\", '\\ueb5f'),\n    CHAT_HISTORY_FILL(\"remixal-chat-history-fill\", '\\ueb60'),\n    CHAT_HISTORY_LINE(\"remixal-chat-history-line\", '\\ueb61'),\n    CHAT_NEW_FILL(\"remixal-chat-new-fill\", '\\ueb62'),\n    CHAT_NEW_LINE(\"remixal-chat-new-line\", '\\ueb63'),\n    CHAT_OFF_FILL(\"remixal-chat-off-fill\", '\\ueb64'),\n    CHAT_OFF_LINE(\"remixal-chat-off-line\", '\\ueb65'),\n    CHAT_POLL_FILL(\"remixal-chat-poll-fill\", '\\ueb66'),\n    CHAT_POLL_LINE(\"remixal-chat-poll-line\", '\\ueb67'),\n    CHAT_PRIVATE_FILL(\"remixal-chat-private-fill\", '\\ueb68'),\n    CHAT_PRIVATE_LINE(\"remixal-chat-private-line\", '\\ueb69'),\n    CHAT_QUOTE_FILL(\"remixal-chat-quote-fill\", '\\ueb6a'),\n    CHAT_QUOTE_LINE(\"remixal-chat-quote-line\", '\\ueb6b'),\n    CHAT_SETTINGS_FILL(\"remixal-chat-settings-fill\", '\\ueb6c'),\n    CHAT_SETTINGS_LINE(\"remixal-chat-settings-line\", '\\ueb6d'),\n    CHAT_SMILE_2_FILL(\"remixal-chat-smile-2-fill\", '\\ueb6e'),\n    CHAT_SMILE_2_LINE(\"remixal-chat-smile-2-line\", '\\ueb6f'),\n    CHAT_SMILE_3_FILL(\"remixal-chat-smile-3-fill\", '\\ueb70'),\n    CHAT_SMILE_3_LINE(\"remixal-chat-smile-3-line\", '\\ueb71'),\n    CHAT_SMILE_FILL(\"remixal-chat-smile-fill\", '\\ueb72'),\n    CHAT_SMILE_LINE(\"remixal-chat-smile-line\", '\\ueb73'),\n    CHAT_UPLOAD_FILL(\"remixal-chat-upload-fill\", '\\ueb74'),\n    CHAT_UPLOAD_LINE(\"remixal-chat-upload-line\", '\\ueb75'),\n    CHAT_VOICE_FILL(\"remixal-chat-voice-fill\", '\\ueb76'),\n    CHAT_VOICE_LINE(\"remixal-chat-voice-line\", '\\ueb77'),\n    CHECKBOX_BLANK_CIRCLE_FILL(\"remixal-checkbox-blank-circle-fill\", '\\ueb7c'),\n    CHECKBOX_BLANK_CIRCLE_LINE(\"remixal-checkbox-blank-circle-line\", '\\ueb7d'),\n    CHECKBOX_BLANK_FILL(\"remixal-checkbox-blank-fill\", '\\ueb7e'),\n    CHECKBOX_BLANK_LINE(\"remixal-checkbox-blank-line\", '\\ueb7f'),\n    CHECKBOX_CIRCLE_FILL(\"remixal-checkbox-circle-fill\", '\\ueb80'),\n    CHECKBOX_CIRCLE_LINE(\"remixal-checkbox-circle-line\", '\\ueb81'),\n    CHECKBOX_FILL(\"remixal-checkbox-fill\", '\\ueb82'),\n    CHECKBOX_INDETERMINATE_FILL(\"remixal-checkbox-indeterminate-fill\", '\\ueb83'),\n    CHECKBOX_INDETERMINATE_LINE(\"remixal-checkbox-indeterminate-line\", '\\ueb84'),\n    CHECKBOX_LINE(\"remixal-checkbox-line\", '\\ueb85'),\n    CHECKBOX_MULTIPLE_BLANK_FILL(\"remixal-checkbox-multiple-blank-fill\", '\\ueb86'),\n    CHECKBOX_MULTIPLE_BLANK_LINE(\"remixal-checkbox-multiple-blank-line\", '\\ueb87'),\n    CHECKBOX_MULTIPLE_FILL(\"remixal-checkbox-multiple-fill\", '\\ueb88'),\n    CHECKBOX_MULTIPLE_LINE(\"remixal-checkbox-multiple-line\", '\\ueb89'),\n    CHECK_DOUBLE_FILL(\"remixal-check-double-fill\", '\\ueb78'),\n    CHECK_DOUBLE_LINE(\"remixal-check-double-line\", '\\ueb79'),\n    CHECK_FILL(\"remixal-check-fill\", '\\ueb7a'),\n    CHECK_LINE(\"remixal-check-line\", '\\ueb7b'),\n    CHINA_RAILWAY_FILL(\"remixal-china-railway-fill\", '\\ueb8a'),\n    CHINA_RAILWAY_LINE(\"remixal-china-railway-line\", '\\ueb8b'),\n    CHROME_FILL(\"remixal-chrome-fill\", '\\ueb8c'),\n    CHROME_LINE(\"remixal-chrome-line\", '\\ueb8d'),\n    CLAPPERBOARD_FILL(\"remixal-clapperboard-fill\", '\\ueb8e'),\n    CLAPPERBOARD_LINE(\"remixal-clapperboard-line\", '\\ueb8f'),\n    CLIPBOARD_FILL(\"remixal-clipboard-fill\", '\\ueb90'),\n    CLIPBOARD_LINE(\"remixal-clipboard-line\", '\\ueb91'),\n    CLOCKWISE_2_FILL(\"remixal-clockwise-2-fill\", '\\ueb92'),\n    CLOCKWISE_2_LINE(\"remixal-clockwise-2-line\", '\\ueb93'),\n    CLOCKWISE_FILL(\"remixal-clockwise-fill\", '\\ueb94'),\n    CLOCKWISE_LINE(\"remixal-clockwise-line\", '\\ueb95'),\n    CLOSED_CAPTIONING_FILL(\"remixal-closed-captioning-fill\", '\\ueb9a'),\n    CLOSED_CAPTIONING_LINE(\"remixal-closed-captioning-line\", '\\ueb9b'),\n    CLOSE_CIRCLE_FILL(\"remixal-close-circle-fill\", '\\ueb96'),\n    CLOSE_CIRCLE_LINE(\"remixal-close-circle-line\", '\\ueb97'),\n    CLOSE_FILL(\"remixal-close-fill\", '\\ueb98'),\n    CLOSE_LINE(\"remixal-close-line\", '\\ueb99'),\n    CLOUDY_2_FILL(\"remixal-cloudy-2-fill\", '\\ueba2'),\n    CLOUDY_2_LINE(\"remixal-cloudy-2-line\", '\\ueba3'),\n    CLOUDY_FILL(\"remixal-cloudy-fill\", '\\ueba4'),\n    CLOUDY_LINE(\"remixal-cloudy-line\", '\\ueba5'),\n    CLOUD_FILL(\"remixal-cloud-fill\", '\\ueb9c'),\n    CLOUD_LINE(\"remixal-cloud-line\", '\\ueb9d'),\n    CLOUD_OFF_FILL(\"remixal-cloud-off-fill\", '\\ueb9e'),\n    CLOUD_OFF_LINE(\"remixal-cloud-off-line\", '\\ueb9f'),\n    CLOUD_WINDY_FILL(\"remixal-cloud-windy-fill\", '\\ueba0'),\n    CLOUD_WINDY_LINE(\"remixal-cloud-windy-line\", '\\ueba1'),\n    CODEPEN_FILL(\"remixal-codepen-fill\", '\\uebaf'),\n    CODEPEN_LINE(\"remixal-codepen-line\", '\\uebb0'),\n    CODE_BOX_FILL(\"remixal-code-box-fill\", '\\ueba6'),\n    CODE_BOX_LINE(\"remixal-code-box-line\", '\\ueba7'),\n    CODE_FILL(\"remixal-code-fill\", '\\ueba8'),\n    CODE_LINE(\"remixal-code-line\", '\\ueba9'),\n    CODE_S_FILL(\"remixal-code-s-fill\", '\\uebaa'),\n    CODE_S_LINE(\"remixal-code-s-line\", '\\uebab'),\n    CODE_S_SLASH_FILL(\"remixal-code-s-slash-fill\", '\\uebac'),\n    CODE_S_SLASH_LINE(\"remixal-code-s-slash-line\", '\\uebad'),\n    CODE_VIEW(\"remixal-code-view\", '\\uebae'),\n    COINS_FILL(\"remixal-coins-fill\", '\\uebb3'),\n    COINS_LINE(\"remixal-coins-line\", '\\uebb4'),\n    COIN_FILL(\"remixal-coin-fill\", '\\uebb1'),\n    COIN_LINE(\"remixal-coin-line\", '\\uebb2'),\n    COLLAGE_FILL(\"remixal-collage-fill\", '\\uebb5'),\n    COLLAGE_LINE(\"remixal-collage-line\", '\\uebb6'),\n    COMMAND_FILL(\"remixal-command-fill\", '\\uebb7'),\n    COMMAND_LINE(\"remixal-command-line\", '\\uebb8'),\n    COMMUNITY_FILL(\"remixal-community-fill\", '\\uebb9'),\n    COMMUNITY_LINE(\"remixal-community-line\", '\\uebba'),\n    COMPASSES_2_FILL(\"remixal-compasses-2-fill\", '\\uebc5'),\n    COMPASSES_2_LINE(\"remixal-compasses-2-line\", '\\uebc6'),\n    COMPASSES_FILL(\"remixal-compasses-fill\", '\\uebc7'),\n    COMPASSES_LINE(\"remixal-compasses-line\", '\\uebc8'),\n    COMPASS_2_FILL(\"remixal-compass-2-fill\", '\\uebbb'),\n    COMPASS_2_LINE(\"remixal-compass-2-line\", '\\uebbc'),\n    COMPASS_3_FILL(\"remixal-compass-3-fill\", '\\uebbd'),\n    COMPASS_3_LINE(\"remixal-compass-3-line\", '\\uebbe'),\n    COMPASS_4_FILL(\"remixal-compass-4-fill\", '\\uebbf'),\n    COMPASS_4_LINE(\"remixal-compass-4-line\", '\\uebc0'),\n    COMPASS_DISCOVER_FILL(\"remixal-compass-discover-fill\", '\\uebc1'),\n    COMPASS_DISCOVER_LINE(\"remixal-compass-discover-line\", '\\uebc2'),\n    COMPASS_FILL(\"remixal-compass-fill\", '\\uebc3'),\n    COMPASS_LINE(\"remixal-compass-line\", '\\uebc4'),\n    COMPUTER_FILL(\"remixal-computer-fill\", '\\uebc9'),\n    COMPUTER_LINE(\"remixal-computer-line\", '\\uebca'),\n    CONTACTS_BOOK_2_FILL(\"remixal-contacts-book-2-fill\", '\\uebcb'),\n    CONTACTS_BOOK_2_LINE(\"remixal-contacts-book-2-line\", '\\uebcc'),\n    CONTACTS_BOOK_FILL(\"remixal-contacts-book-fill\", '\\uebcd'),\n    CONTACTS_BOOK_LINE(\"remixal-contacts-book-line\", '\\uebce'),\n    CONTACTS_BOOK_UPLOAD_FILL(\"remixal-contacts-book-upload-fill\", '\\uebcf'),\n    CONTACTS_BOOK_UPLOAD_LINE(\"remixal-contacts-book-upload-line\", '\\uebd0'),\n    CONTACTS_FILL(\"remixal-contacts-fill\", '\\uebd1'),\n    CONTACTS_LINE(\"remixal-contacts-line\", '\\uebd2'),\n    CONTRAST_2_FILL(\"remixal-contrast-2-fill\", '\\uebd3'),\n    CONTRAST_2_LINE(\"remixal-contrast-2-line\", '\\uebd4'),\n    CONTRAST_DROP_2_FILL(\"remixal-contrast-drop-2-fill\", '\\uebd5'),\n    CONTRAST_DROP_2_LINE(\"remixal-contrast-drop-2-line\", '\\uebd6'),\n    CONTRAST_DROP_FILL(\"remixal-contrast-drop-fill\", '\\uebd7'),\n    CONTRAST_DROP_LINE(\"remixal-contrast-drop-line\", '\\uebd8'),\n    CONTRAST_FILL(\"remixal-contrast-fill\", '\\uebd9'),\n    CONTRAST_LINE(\"remixal-contrast-line\", '\\uebda'),\n    COPPER_COIN_FILL(\"remixal-copper-coin-fill\", '\\uebdb'),\n    COPPER_COIN_LINE(\"remixal-copper-coin-line\", '\\uebdc'),\n    COPPER_DIAMOND_FILL(\"remixal-copper-diamond-fill\", '\\uebdd'),\n    COPPER_DIAMOND_LINE(\"remixal-copper-diamond-line\", '\\uebde'),\n    COPYLEFT_FILL(\"remixal-copyleft-fill\", '\\uebdf'),\n    COPYLEFT_LINE(\"remixal-copyleft-line\", '\\uebe0'),\n    COPYRIGHT_FILL(\"remixal-copyright-fill\", '\\uebe1'),\n    COPYRIGHT_LINE(\"remixal-copyright-line\", '\\uebe2'),\n    COREOS_FILL(\"remixal-coreos-fill\", '\\uebe3'),\n    COREOS_LINE(\"remixal-coreos-line\", '\\uebe4'),\n    COUPON_2_FILL(\"remixal-coupon-2-fill\", '\\uebe5'),\n    COUPON_2_LINE(\"remixal-coupon-2-line\", '\\uebe6'),\n    COUPON_3_FILL(\"remixal-coupon-3-fill\", '\\uebe7'),\n    COUPON_3_LINE(\"remixal-coupon-3-line\", '\\uebe8'),\n    COUPON_4_FILL(\"remixal-coupon-4-fill\", '\\uebe9'),\n    COUPON_4_LINE(\"remixal-coupon-4-line\", '\\uebea'),\n    COUPON_5_FILL(\"remixal-coupon-5-fill\", '\\uebeb'),\n    COUPON_5_LINE(\"remixal-coupon-5-line\", '\\uebec'),\n    COUPON_FILL(\"remixal-coupon-fill\", '\\uebed'),\n    COUPON_LINE(\"remixal-coupon-line\", '\\uebee'),\n    CPU_FILL(\"remixal-cpu-fill\", '\\uebef'),\n    CPU_LINE(\"remixal-cpu-line\", '\\uebf0'),\n    CREATIVE_COMMONS_BY_FILL(\"remixal-creative-commons-by-fill\", '\\uebf1'),\n    CREATIVE_COMMONS_BY_LINE(\"remixal-creative-commons-by-line\", '\\uebf2'),\n    CREATIVE_COMMONS_FILL(\"remixal-creative-commons-fill\", '\\uebf3'),\n    CREATIVE_COMMONS_LINE(\"remixal-creative-commons-line\", '\\uebf4'),\n    CREATIVE_COMMONS_NC_FILL(\"remixal-creative-commons-nc-fill\", '\\uebf5'),\n    CREATIVE_COMMONS_NC_LINE(\"remixal-creative-commons-nc-line\", '\\uebf6'),\n    CREATIVE_COMMONS_ND_FILL(\"remixal-creative-commons-nd-fill\", '\\uebf7'),\n    CREATIVE_COMMONS_ND_LINE(\"remixal-creative-commons-nd-line\", '\\uebf8'),\n    CREATIVE_COMMONS_SA_FILL(\"remixal-creative-commons-sa-fill\", '\\uebf9'),\n    CREATIVE_COMMONS_SA_LINE(\"remixal-creative-commons-sa-line\", '\\uebfa'),\n    CREATIVE_COMMONS_ZERO_FILL(\"remixal-creative-commons-zero-fill\", '\\uebfb'),\n    CREATIVE_COMMONS_ZERO_LINE(\"remixal-creative-commons-zero-line\", '\\uebfc'),\n    CRIMINAL_FILL(\"remixal-criminal-fill\", '\\uebfd'),\n    CRIMINAL_LINE(\"remixal-criminal-line\", '\\uebfe'),\n    CROP_2_FILL(\"remixal-crop-2-fill\", '\\uebff'),\n    CROP_2_LINE(\"remixal-crop-2-line\", '\\uec00'),\n    CROP_FILL(\"remixal-crop-fill\", '\\uec01'),\n    CROP_LINE(\"remixal-crop-line\", '\\uec02'),\n    CSS3_FILL(\"remixal-css3-fill\", '\\uec03'),\n    CSS3_LINE(\"remixal-css3-line\", '\\uec04'),\n    CUP_FILL(\"remixal-cup-fill\", '\\uec05'),\n    CUP_LINE(\"remixal-cup-line\", '\\uec06'),\n    CURRENCY_FILL(\"remixal-currency-fill\", '\\uec07'),\n    CURRENCY_LINE(\"remixal-currency-line\", '\\uec08'),\n    CURSOR_FILL(\"remixal-cursor-fill\", '\\uec09'),\n    CURSOR_LINE(\"remixal-cursor-line\", '\\uec0a'),\n    CUSTOMER_SERVICE_2_FILL(\"remixal-customer-service-2-fill\", '\\uec0b'),\n    CUSTOMER_SERVICE_2_LINE(\"remixal-customer-service-2-line\", '\\uec0c'),\n    CUSTOMER_SERVICE_FILL(\"remixal-customer-service-fill\", '\\uec0d'),\n    CUSTOMER_SERVICE_LINE(\"remixal-customer-service-line\", '\\uec0e'),\n    DASHBOARD_2_FILL(\"remixal-dashboard-2-fill\", '\\uec0f'),\n    DASHBOARD_2_LINE(\"remixal-dashboard-2-line\", '\\uec10'),\n    DASHBOARD_3_FILL(\"remixal-dashboard-3-fill\", '\\uec11'),\n    DASHBOARD_3_LINE(\"remixal-dashboard-3-line\", '\\uec12'),\n    DASHBOARD_FILL(\"remixal-dashboard-fill\", '\\uec13'),\n    DASHBOARD_LINE(\"remixal-dashboard-line\", '\\uec14'),\n    DATABASE_2_FILL(\"remixal-database-2-fill\", '\\uec15'),\n    DATABASE_2_LINE(\"remixal-database-2-line\", '\\uec16'),\n    DATABASE_FILL(\"remixal-database-fill\", '\\uec17'),\n    DATABASE_LINE(\"remixal-database-line\", '\\uec18'),\n    DELETE_BACK_2_FILL(\"remixal-delete-back-2-fill\", '\\uec19'),\n    DELETE_BACK_2_LINE(\"remixal-delete-back-2-line\", '\\uec1a'),\n    DELETE_BACK_FILL(\"remixal-delete-back-fill\", '\\uec1b'),\n    DELETE_BACK_LINE(\"remixal-delete-back-line\", '\\uec1c'),\n    DELETE_BIN_2_FILL(\"remixal-delete-bin-2-fill\", '\\uec1d'),\n    DELETE_BIN_2_LINE(\"remixal-delete-bin-2-line\", '\\uec1e'),\n    DELETE_BIN_3_FILL(\"remixal-delete-bin-3-fill\", '\\uec1f'),\n    DELETE_BIN_3_LINE(\"remixal-delete-bin-3-line\", '\\uec20'),\n    DELETE_BIN_4_FILL(\"remixal-delete-bin-4-fill\", '\\uec21'),\n    DELETE_BIN_4_LINE(\"remixal-delete-bin-4-line\", '\\uec22'),\n    DELETE_BIN_5_FILL(\"remixal-delete-bin-5-fill\", '\\uec23'),\n    DELETE_BIN_5_LINE(\"remixal-delete-bin-5-line\", '\\uec24'),\n    DELETE_BIN_6_FILL(\"remixal-delete-bin-6-fill\", '\\uec25'),\n    DELETE_BIN_6_LINE(\"remixal-delete-bin-6-line\", '\\uec26'),\n    DELETE_BIN_7_FILL(\"remixal-delete-bin-7-fill\", '\\uec27'),\n    DELETE_BIN_7_LINE(\"remixal-delete-bin-7-line\", '\\uec28'),\n    DELETE_BIN_FILL(\"remixal-delete-bin-fill\", '\\uec29'),\n    DELETE_BIN_LINE(\"remixal-delete-bin-line\", '\\uec2a'),\n    DELETE_COLUMN(\"remixal-delete-column\", '\\uec2b'),\n    DELETE_ROW(\"remixal-delete-row\", '\\uec2c'),\n    DEVICE_FILL(\"remixal-device-fill\", '\\uec2d'),\n    DEVICE_LINE(\"remixal-device-line\", '\\uec2e'),\n    DEVICE_RECOVER_FILL(\"remixal-device-recover-fill\", '\\uec2f'),\n    DEVICE_RECOVER_LINE(\"remixal-device-recover-line\", '\\uec30'),\n    DINGDING_FILL(\"remixal-dingding-fill\", '\\uec31'),\n    DINGDING_LINE(\"remixal-dingding-line\", '\\uec32'),\n    DIRECTION_FILL(\"remixal-direction-fill\", '\\uec33'),\n    DIRECTION_LINE(\"remixal-direction-line\", '\\uec34'),\n    DISCORD_FILL(\"remixal-discord-fill\", '\\uec37'),\n    DISCORD_LINE(\"remixal-discord-line\", '\\uec38'),\n    DISCUSS_FILL(\"remixal-discuss-fill\", '\\uec39'),\n    DISCUSS_LINE(\"remixal-discuss-line\", '\\uec3a'),\n    DISC_FILL(\"remixal-disc-fill\", '\\uec35'),\n    DISC_LINE(\"remixal-disc-line\", '\\uec36'),\n    DISLIKE_FILL(\"remixal-dislike-fill\", '\\uec3b'),\n    DISLIKE_LINE(\"remixal-dislike-line\", '\\uec3c'),\n    DISQUS_FILL(\"remixal-disqus-fill\", '\\uec3d'),\n    DISQUS_LINE(\"remixal-disqus-line\", '\\uec3e'),\n    DIVIDE_FILL(\"remixal-divide-fill\", '\\uec3f'),\n    DIVIDE_LINE(\"remixal-divide-line\", '\\uec40'),\n    DONUT_CHART_FILL(\"remixal-donut-chart-fill\", '\\uec41'),\n    DONUT_CHART_LINE(\"remixal-donut-chart-line\", '\\uec42'),\n    DOOR_CLOSED_FILL(\"remixal-door-closed-fill\", '\\uec43'),\n    DOOR_CLOSED_LINE(\"remixal-door-closed-line\", '\\uec44'),\n    DOOR_FILL(\"remixal-door-fill\", '\\uec45'),\n    DOOR_LINE(\"remixal-door-line\", '\\uec46'),\n    DOOR_LOCK_BOX_FILL(\"remixal-door-lock-box-fill\", '\\uec47'),\n    DOOR_LOCK_BOX_LINE(\"remixal-door-lock-box-line\", '\\uec48'),\n    DOOR_LOCK_FILL(\"remixal-door-lock-fill\", '\\uec49'),\n    DOOR_LOCK_LINE(\"remixal-door-lock-line\", '\\uec4a'),\n    DOOR_OPEN_FILL(\"remixal-door-open-fill\", '\\uec4b'),\n    DOOR_OPEN_LINE(\"remixal-door-open-line\", '\\uec4c'),\n    DOSSIER_FILL(\"remixal-dossier-fill\", '\\uec4d'),\n    DOSSIER_LINE(\"remixal-dossier-line\", '\\uec4e'),\n    DOUBAN_FILL(\"remixal-douban-fill\", '\\uec4f'),\n    DOUBAN_LINE(\"remixal-douban-line\", '\\uec50'),\n    DOUBLE_QUOTES_L(\"remixal-double-quotes-l\", '\\uec51'),\n    DOUBLE_QUOTES_R(\"remixal-double-quotes-r\", '\\uec52'),\n    DOWNLOAD_2_FILL(\"remixal-download-2-fill\", '\\uec53'),\n    DOWNLOAD_2_LINE(\"remixal-download-2-line\", '\\uec54'),\n    DOWNLOAD_CLOUD_2_FILL(\"remixal-download-cloud-2-fill\", '\\uec55'),\n    DOWNLOAD_CLOUD_2_LINE(\"remixal-download-cloud-2-line\", '\\uec56'),\n    DOWNLOAD_CLOUD_FILL(\"remixal-download-cloud-fill\", '\\uec57'),\n    DOWNLOAD_CLOUD_LINE(\"remixal-download-cloud-line\", '\\uec58'),\n    DOWNLOAD_FILL(\"remixal-download-fill\", '\\uec59'),\n    DOWNLOAD_LINE(\"remixal-download-line\", '\\uec5a'),\n    DRAFT_FILL(\"remixal-draft-fill\", '\\uec5b'),\n    DRAFT_LINE(\"remixal-draft-line\", '\\uec5c'),\n    DRAG_DROP_FILL(\"remixal-drag-drop-fill\", '\\uec5d'),\n    DRAG_DROP_LINE(\"remixal-drag-drop-line\", '\\uec5e'),\n    DRAG_MOVE_2_FILL(\"remixal-drag-move-2-fill\", '\\uec5f'),\n    DRAG_MOVE_2_LINE(\"remixal-drag-move-2-line\", '\\uec60'),\n    DRAG_MOVE_FILL(\"remixal-drag-move-fill\", '\\uec61'),\n    DRAG_MOVE_LINE(\"remixal-drag-move-line\", '\\uec62'),\n    DRIBBBLE_FILL(\"remixal-dribbble-fill\", '\\uec63'),\n    DRIBBBLE_LINE(\"remixal-dribbble-line\", '\\uec64'),\n    DRIVE_FILL(\"remixal-drive-fill\", '\\uec65'),\n    DRIVE_LINE(\"remixal-drive-line\", '\\uec66'),\n    DRIZZLE_FILL(\"remixal-drizzle-fill\", '\\uec67'),\n    DRIZZLE_LINE(\"remixal-drizzle-line\", '\\uec68'),\n    DROPBOX_FILL(\"remixal-dropbox-fill\", '\\uec6b'),\n    DROPBOX_LINE(\"remixal-dropbox-line\", '\\uec6c'),\n    DROP_FILL(\"remixal-drop-fill\", '\\uec69'),\n    DROP_LINE(\"remixal-drop-line\", '\\uec6a'),\n    DUAL_SIM_1_FILL(\"remixal-dual-sim-1-fill\", '\\uec6d'),\n    DUAL_SIM_1_LINE(\"remixal-dual-sim-1-line\", '\\uec6e'),\n    DUAL_SIM_2_FILL(\"remixal-dual-sim-2-fill\", '\\uec6f'),\n    DUAL_SIM_2_LINE(\"remixal-dual-sim-2-line\", '\\uec70'),\n    DVD_FILL(\"remixal-dvd-fill\", '\\uec73'),\n    DVD_LINE(\"remixal-dvd-line\", '\\uec74'),\n    DV_FILL(\"remixal-dv-fill\", '\\uec71'),\n    DV_LINE(\"remixal-dv-line\", '\\uec72'),\n    EARTHQUAKE_FILL(\"remixal-earthquake-fill\", '\\uec7b'),\n    EARTHQUAKE_LINE(\"remixal-earthquake-line\", '\\uec7c'),\n    EARTH_FILL(\"remixal-earth-fill\", '\\uec79'),\n    EARTH_LINE(\"remixal-earth-line\", '\\uec7a'),\n    EDGE_FILL(\"remixal-edge-fill\", '\\uec7d'),\n    EDGE_LINE(\"remixal-edge-line\", '\\uec7e'),\n    EDIT_2_FILL(\"remixal-edit-2-fill\", '\\uec7f'),\n    EDIT_2_LINE(\"remixal-edit-2-line\", '\\uec80'),\n    EDIT_BOX_FILL(\"remixal-edit-box-fill\", '\\uec81'),\n    EDIT_BOX_LINE(\"remixal-edit-box-line\", '\\uec82'),\n    EDIT_CIRCLE_FILL(\"remixal-edit-circle-fill\", '\\uec83'),\n    EDIT_CIRCLE_LINE(\"remixal-edit-circle-line\", '\\uec84'),\n    EDIT_FILL(\"remixal-edit-fill\", '\\uec85'),\n    EDIT_LINE(\"remixal-edit-line\", '\\uec86'),\n    EJECT_FILL(\"remixal-eject-fill\", '\\uec87'),\n    EJECT_LINE(\"remixal-eject-line\", '\\uec88'),\n    EMOTION_2_FILL(\"remixal-emotion-2-fill\", '\\uec89'),\n    EMOTION_2_LINE(\"remixal-emotion-2-line\", '\\uec8a'),\n    EMOTION_FILL(\"remixal-emotion-fill\", '\\uec8b'),\n    EMOTION_HAPPY_FILL(\"remixal-emotion-happy-fill\", '\\uec8c'),\n    EMOTION_HAPPY_LINE(\"remixal-emotion-happy-line\", '\\uec8d'),\n    EMOTION_LAUGH_FILL(\"remixal-emotion-laugh-fill\", '\\uec8e'),\n    EMOTION_LAUGH_LINE(\"remixal-emotion-laugh-line\", '\\uec8f'),\n    EMOTION_LINE(\"remixal-emotion-line\", '\\uec90'),\n    EMOTION_NORMAL_FILL(\"remixal-emotion-normal-fill\", '\\uec91'),\n    EMOTION_NORMAL_LINE(\"remixal-emotion-normal-line\", '\\uec92'),\n    EMOTION_SAD_FILL(\"remixal-emotion-sad-fill\", '\\uec93'),\n    EMOTION_SAD_LINE(\"remixal-emotion-sad-line\", '\\uec94'),\n    EMOTION_UNHAPPY_FILL(\"remixal-emotion-unhappy-fill\", '\\uec95'),\n    EMOTION_UNHAPPY_LINE(\"remixal-emotion-unhappy-line\", '\\uec96'),\n    EMPATHIZE_FILL(\"remixal-empathize-fill\", '\\uec97'),\n    EMPATHIZE_LINE(\"remixal-empathize-line\", '\\uec98'),\n    EMPHASIS(\"remixal-emphasis\", '\\uec9a'),\n    EMPHASIS_CN(\"remixal-emphasis-cn\", '\\uec99'),\n    ENGLISH_INPUT(\"remixal-english-input\", '\\uec9b'),\n    EQUALIZER_FILL(\"remixal-equalizer-fill\", '\\uec9c'),\n    EQUALIZER_LINE(\"remixal-equalizer-line\", '\\uec9d'),\n    ERASER_FILL(\"remixal-eraser-fill\", '\\uec9e'),\n    ERASER_LINE(\"remixal-eraser-line\", '\\uec9f'),\n    ERROR_WARNING_FILL(\"remixal-error-warning-fill\", '\\ueca0'),\n    ERROR_WARNING_LINE(\"remixal-error-warning-line\", '\\ueca1'),\n    EVERNOTE_FILL(\"remixal-evernote-fill\", '\\ueca2'),\n    EVERNOTE_LINE(\"remixal-evernote-line\", '\\ueca3'),\n    EXCHANGE_BOX_FILL(\"remixal-exchange-box-fill\", '\\ueca4'),\n    EXCHANGE_BOX_LINE(\"remixal-exchange-box-line\", '\\ueca5'),\n    EXCHANGE_CNY_FILL(\"remixal-exchange-cny-fill\", '\\ueca6'),\n    EXCHANGE_CNY_LINE(\"remixal-exchange-cny-line\", '\\ueca7'),\n    EXCHANGE_DOLLAR_FILL(\"remixal-exchange-dollar-fill\", '\\ueca8'),\n    EXCHANGE_DOLLAR_LINE(\"remixal-exchange-dollar-line\", '\\ueca9'),\n    EXCHANGE_FILL(\"remixal-exchange-fill\", '\\uecaa'),\n    EXCHANGE_FUNDS_FILL(\"remixal-exchange-funds-fill\", '\\uecab'),\n    EXCHANGE_FUNDS_LINE(\"remixal-exchange-funds-line\", '\\uecac'),\n    EXCHANGE_LINE(\"remixal-exchange-line\", '\\uecad'),\n    EXTERNAL_LINK_FILL(\"remixal-external-link-fill\", '\\uecae'),\n    EXTERNAL_LINK_LINE(\"remixal-external-link-line\", '\\uecaf'),\n    EYE_2_FILL(\"remixal-eye-2-fill\", '\\uecb0'),\n    EYE_2_LINE(\"remixal-eye-2-line\", '\\uecb1'),\n    EYE_CLOSE_FILL(\"remixal-eye-close-fill\", '\\uecb2'),\n    EYE_CLOSE_LINE(\"remixal-eye-close-line\", '\\uecb3'),\n    EYE_FILL(\"remixal-eye-fill\", '\\uecb4'),\n    EYE_LINE(\"remixal-eye-line\", '\\uecb5'),\n    EYE_OFF_FILL(\"remixal-eye-off-fill\", '\\uecb6'),\n    EYE_OFF_LINE(\"remixal-eye-off-line\", '\\uecb7'),\n    E_BIKE_2_FILL(\"remixal-e-bike-2-fill\", '\\uec75'),\n    E_BIKE_2_LINE(\"remixal-e-bike-2-line\", '\\uec76'),\n    E_BIKE_FILL(\"remixal-e-bike-fill\", '\\uec77'),\n    E_BIKE_LINE(\"remixal-e-bike-line\", '\\uec78'),\n    FACEBOOK_BOX_FILL(\"remixal-facebook-box-fill\", '\\uecb8'),\n    FACEBOOK_BOX_LINE(\"remixal-facebook-box-line\", '\\uecb9'),\n    FACEBOOK_CIRCLE_FILL(\"remixal-facebook-circle-fill\", '\\uecba'),\n    FACEBOOK_CIRCLE_LINE(\"remixal-facebook-circle-line\", '\\uecbb'),\n    FACEBOOK_FILL(\"remixal-facebook-fill\", '\\uecbc'),\n    FACEBOOK_LINE(\"remixal-facebook-line\", '\\uecbd'),\n    FAHRENHEIT_FILL(\"remixal-fahrenheit-fill\", '\\uecbe'),\n    FAHRENHEIT_LINE(\"remixal-fahrenheit-line\", '\\uecbf'),\n    FEEDBACK_FILL(\"remixal-feedback-fill\", '\\uecc0'),\n    FEEDBACK_LINE(\"remixal-feedback-line\", '\\uecc1'),\n    FILE_2_FILL(\"remixal-file-2-fill\", '\\uecc2'),\n    FILE_2_LINE(\"remixal-file-2-line\", '\\uecc3'),\n    FILE_3_FILL(\"remixal-file-3-fill\", '\\uecc4'),\n    FILE_3_LINE(\"remixal-file-3-line\", '\\uecc5'),\n    FILE_4_FILL(\"remixal-file-4-fill\", '\\uecc6'),\n    FILE_4_LINE(\"remixal-file-4-line\", '\\uecc7'),\n    FILE_ADD_FILL(\"remixal-file-add-fill\", '\\uecc8'),\n    FILE_ADD_LINE(\"remixal-file-add-line\", '\\uecc9'),\n    FILE_CHART_2_FILL(\"remixal-file-chart-2-fill\", '\\uecca'),\n    FILE_CHART_2_LINE(\"remixal-file-chart-2-line\", '\\ueccb'),\n    FILE_CHART_FILL(\"remixal-file-chart-fill\", '\\ueccc'),\n    FILE_CHART_LINE(\"remixal-file-chart-line\", '\\ueccd'),\n    FILE_CLOUD_FILL(\"remixal-file-cloud-fill\", '\\uecce'),\n    FILE_CLOUD_LINE(\"remixal-file-cloud-line\", '\\ueccf'),\n    FILE_CODE_FILL(\"remixal-file-code-fill\", '\\uecd0'),\n    FILE_CODE_LINE(\"remixal-file-code-line\", '\\uecd1'),\n    FILE_COPY_2_FILL(\"remixal-file-copy-2-fill\", '\\uecd2'),\n    FILE_COPY_2_LINE(\"remixal-file-copy-2-line\", '\\uecd3'),\n    FILE_COPY_FILL(\"remixal-file-copy-fill\", '\\uecd4'),\n    FILE_COPY_LINE(\"remixal-file-copy-line\", '\\uecd5'),\n    FILE_DAMAGE_FILL(\"remixal-file-damage-fill\", '\\uecd6'),\n    FILE_DAMAGE_LINE(\"remixal-file-damage-line\", '\\uecd7'),\n    FILE_DOWNLOAD_FILL(\"remixal-file-download-fill\", '\\uecd8'),\n    FILE_DOWNLOAD_LINE(\"remixal-file-download-line\", '\\uecd9'),\n    FILE_EDIT_FILL(\"remixal-file-edit-fill\", '\\uecda'),\n    FILE_EDIT_LINE(\"remixal-file-edit-line\", '\\uecdb'),\n    FILE_EXCEL_2_FILL(\"remixal-file-excel-2-fill\", '\\uecdc'),\n    FILE_EXCEL_2_LINE(\"remixal-file-excel-2-line\", '\\uecdd'),\n    FILE_EXCEL_FILL(\"remixal-file-excel-fill\", '\\uecde'),\n    FILE_EXCEL_LINE(\"remixal-file-excel-line\", '\\uecdf'),\n    FILE_FILL(\"remixal-file-fill\", '\\uece0'),\n    FILE_FORBID_FILL(\"remixal-file-forbid-fill\", '\\uece1'),\n    FILE_FORBID_LINE(\"remixal-file-forbid-line\", '\\uece2'),\n    FILE_GIF_FILL(\"remixal-file-gif-fill\", '\\uece3'),\n    FILE_GIF_LINE(\"remixal-file-gif-line\", '\\uece4'),\n    FILE_HISTORY_FILL(\"remixal-file-history-fill\", '\\uece5'),\n    FILE_HISTORY_LINE(\"remixal-file-history-line\", '\\uece6'),\n    FILE_HWP_FILL(\"remixal-file-hwp-fill\", '\\uece7'),\n    FILE_HWP_LINE(\"remixal-file-hwp-line\", '\\uece8'),\n    FILE_INFO_FILL(\"remixal-file-info-fill\", '\\uece9'),\n    FILE_INFO_LINE(\"remixal-file-info-line\", '\\uecea'),\n    FILE_LINE(\"remixal-file-line\", '\\ueceb'),\n    FILE_LIST_2_FILL(\"remixal-file-list-2-fill\", '\\uecec'),\n    FILE_LIST_2_LINE(\"remixal-file-list-2-line\", '\\ueced'),\n    FILE_LIST_3_FILL(\"remixal-file-list-3-fill\", '\\uecee'),\n    FILE_LIST_3_LINE(\"remixal-file-list-3-line\", '\\uecef'),\n    FILE_LIST_FILL(\"remixal-file-list-fill\", '\\uecf0'),\n    FILE_LIST_LINE(\"remixal-file-list-line\", '\\uecf1'),\n    FILE_LOCK_FILL(\"remixal-file-lock-fill\", '\\uecf2'),\n    FILE_LOCK_LINE(\"remixal-file-lock-line\", '\\uecf3'),\n    FILE_MARK_FILL(\"remixal-file-mark-fill\", '\\uecf4'),\n    FILE_MARK_LINE(\"remixal-file-mark-line\", '\\uecf5'),\n    FILE_MUSIC_FILL(\"remixal-file-music-fill\", '\\uecf6'),\n    FILE_MUSIC_LINE(\"remixal-file-music-line\", '\\uecf7'),\n    FILE_PAPER_2_FILL(\"remixal-file-paper-2-fill\", '\\uecf8'),\n    FILE_PAPER_2_LINE(\"remixal-file-paper-2-line\", '\\uecf9'),\n    FILE_PAPER_FILL(\"remixal-file-paper-fill\", '\\uecfa'),\n    FILE_PAPER_LINE(\"remixal-file-paper-line\", '\\uecfb'),\n    FILE_PDF_FILL(\"remixal-file-pdf-fill\", '\\uecfc'),\n    FILE_PDF_LINE(\"remixal-file-pdf-line\", '\\uecfd'),\n    FILE_PPT_2_FILL(\"remixal-file-ppt-2-fill\", '\\uecfe'),\n    FILE_PPT_2_LINE(\"remixal-file-ppt-2-line\", '\\uecff'),\n    FILE_PPT_FILL(\"remixal-file-ppt-fill\", '\\ued00'),\n    FILE_PPT_LINE(\"remixal-file-ppt-line\", '\\ued01'),\n    FILE_REDUCE_FILL(\"remixal-file-reduce-fill\", '\\ued02'),\n    FILE_REDUCE_LINE(\"remixal-file-reduce-line\", '\\ued03'),\n    FILE_SEARCH_FILL(\"remixal-file-search-fill\", '\\ued04'),\n    FILE_SEARCH_LINE(\"remixal-file-search-line\", '\\ued05'),\n    FILE_SETTINGS_FILL(\"remixal-file-settings-fill\", '\\ued06'),\n    FILE_SETTINGS_LINE(\"remixal-file-settings-line\", '\\ued07'),\n    FILE_SHIELD_2_FILL(\"remixal-file-shield-2-fill\", '\\ued08'),\n    FILE_SHIELD_2_LINE(\"remixal-file-shield-2-line\", '\\ued09'),\n    FILE_SHIELD_FILL(\"remixal-file-shield-fill\", '\\ued0a'),\n    FILE_SHIELD_LINE(\"remixal-file-shield-line\", '\\ued0b'),\n    FILE_SHRED_FILL(\"remixal-file-shred-fill\", '\\ued0c'),\n    FILE_SHRED_LINE(\"remixal-file-shred-line\", '\\ued0d'),\n    FILE_TEXT_FILL(\"remixal-file-text-fill\", '\\ued0e'),\n    FILE_TEXT_LINE(\"remixal-file-text-line\", '\\ued0f'),\n    FILE_TRANSFER_FILL(\"remixal-file-transfer-fill\", '\\ued10'),\n    FILE_TRANSFER_LINE(\"remixal-file-transfer-line\", '\\ued11'),\n    FILE_UNKNOW_FILL(\"remixal-file-unknow-fill\", '\\ued12'),\n    FILE_UNKNOW_LINE(\"remixal-file-unknow-line\", '\\ued13'),\n    FILE_UPLOAD_FILL(\"remixal-file-upload-fill\", '\\ued14'),\n    FILE_UPLOAD_LINE(\"remixal-file-upload-line\", '\\ued15'),\n    FILE_USER_FILL(\"remixal-file-user-fill\", '\\ued16'),\n    FILE_USER_LINE(\"remixal-file-user-line\", '\\ued17'),\n    FILE_WARNING_FILL(\"remixal-file-warning-fill\", '\\ued18'),\n    FILE_WARNING_LINE(\"remixal-file-warning-line\", '\\ued19'),\n    FILE_WORD_2_FILL(\"remixal-file-word-2-fill\", '\\ued1a'),\n    FILE_WORD_2_LINE(\"remixal-file-word-2-line\", '\\ued1b'),\n    FILE_WORD_FILL(\"remixal-file-word-fill\", '\\ued1c'),\n    FILE_WORD_LINE(\"remixal-file-word-line\", '\\ued1d'),\n    FILE_ZIP_FILL(\"remixal-file-zip-fill\", '\\ued1e'),\n    FILE_ZIP_LINE(\"remixal-file-zip-line\", '\\ued1f'),\n    FILM_FILL(\"remixal-film-fill\", '\\ued20'),\n    FILM_LINE(\"remixal-film-line\", '\\ued21'),\n    FILTER_2_FILL(\"remixal-filter-2-fill\", '\\ued22'),\n    FILTER_2_LINE(\"remixal-filter-2-line\", '\\ued23'),\n    FILTER_3_FILL(\"remixal-filter-3-fill\", '\\ued24'),\n    FILTER_3_LINE(\"remixal-filter-3-line\", '\\ued25'),\n    FILTER_FILL(\"remixal-filter-fill\", '\\ued26'),\n    FILTER_LINE(\"remixal-filter-line\", '\\ued27'),\n    FILTER_OFF_FILL(\"remixal-filter-off-fill\", '\\ued28'),\n    FILTER_OFF_LINE(\"remixal-filter-off-line\", '\\ued29'),\n    FINDER_FILL(\"remixal-finder-fill\", '\\ued2c'),\n    FINDER_LINE(\"remixal-finder-line\", '\\ued2d'),\n    FIND_REPLACE_FILL(\"remixal-find-replace-fill\", '\\ued2a'),\n    FIND_REPLACE_LINE(\"remixal-find-replace-line\", '\\ued2b'),\n    FINGERPRINT_2_FILL(\"remixal-fingerprint-2-fill\", '\\ued2e'),\n    FINGERPRINT_2_LINE(\"remixal-fingerprint-2-line\", '\\ued2f'),\n    FINGERPRINT_FILL(\"remixal-fingerprint-fill\", '\\ued30'),\n    FINGERPRINT_LINE(\"remixal-fingerprint-line\", '\\ued31'),\n    FIREFOX_FILL(\"remixal-firefox-fill\", '\\ued34'),\n    FIREFOX_LINE(\"remixal-firefox-line\", '\\ued35'),\n    FIRE_FILL(\"remixal-fire-fill\", '\\ued32'),\n    FIRE_LINE(\"remixal-fire-line\", '\\ued33'),\n    FIRST_AID_KIT_FILL(\"remixal-first-aid-kit-fill\", '\\ued36'),\n    FIRST_AID_KIT_LINE(\"remixal-first-aid-kit-line\", '\\ued37'),\n    FLAG_2_FILL(\"remixal-flag-2-fill\", '\\ued38'),\n    FLAG_2_LINE(\"remixal-flag-2-line\", '\\ued39'),\n    FLAG_FILL(\"remixal-flag-fill\", '\\ued3a'),\n    FLAG_LINE(\"remixal-flag-line\", '\\ued3b'),\n    FLASHLIGHT_FILL(\"remixal-flashlight-fill\", '\\ued3c'),\n    FLASHLIGHT_LINE(\"remixal-flashlight-line\", '\\ued3d'),\n    FLASK_FILL(\"remixal-flask-fill\", '\\ued3e'),\n    FLASK_LINE(\"remixal-flask-line\", '\\ued3f'),\n    FLIGHT_LAND_FILL(\"remixal-flight-land-fill\", '\\ued40'),\n    FLIGHT_LAND_LINE(\"remixal-flight-land-line\", '\\ued41'),\n    FLIGHT_TAKEOFF_FILL(\"remixal-flight-takeoff-fill\", '\\ued42'),\n    FLIGHT_TAKEOFF_LINE(\"remixal-flight-takeoff-line\", '\\ued43'),\n    FLOOD_FILL(\"remixal-flood-fill\", '\\ued44'),\n    FLOOD_LINE(\"remixal-flood-line\", '\\ued45'),\n    FLOW_CHART(\"remixal-flow-chart\", '\\ued46'),\n    FLUTTER_FILL(\"remixal-flutter-fill\", '\\ued47'),\n    FLUTTER_LINE(\"remixal-flutter-line\", '\\ued48'),\n    FOCUS_2_FILL(\"remixal-focus-2-fill\", '\\ued49'),\n    FOCUS_2_LINE(\"remixal-focus-2-line\", '\\ued4a'),\n    FOCUS_3_FILL(\"remixal-focus-3-fill\", '\\ued4b'),\n    FOCUS_3_LINE(\"remixal-focus-3-line\", '\\ued4c'),\n    FOCUS_FILL(\"remixal-focus-fill\", '\\ued4d'),\n    FOCUS_LINE(\"remixal-focus-line\", '\\ued4e'),\n    FOGGY_FILL(\"remixal-foggy-fill\", '\\ued4f'),\n    FOGGY_LINE(\"remixal-foggy-line\", '\\ued50'),\n    FOLDERS_FILL(\"remixal-folders-fill\", '\\ued89'),\n    FOLDERS_LINE(\"remixal-folders-line\", '\\ued8a'),\n    FOLDER_2_FILL(\"remixal-folder-2-fill\", '\\ued51'),\n    FOLDER_2_LINE(\"remixal-folder-2-line\", '\\ued52'),\n    FOLDER_3_FILL(\"remixal-folder-3-fill\", '\\ued53'),\n    FOLDER_3_LINE(\"remixal-folder-3-line\", '\\ued54'),\n    FOLDER_4_FILL(\"remixal-folder-4-fill\", '\\ued55'),\n    FOLDER_4_LINE(\"remixal-folder-4-line\", '\\ued56'),\n    FOLDER_5_FILL(\"remixal-folder-5-fill\", '\\ued57'),\n    FOLDER_5_LINE(\"remixal-folder-5-line\", '\\ued58'),\n    FOLDER_ADD_FILL(\"remixal-folder-add-fill\", '\\ued59'),\n    FOLDER_ADD_LINE(\"remixal-folder-add-line\", '\\ued5a'),\n    FOLDER_CHART_2_FILL(\"remixal-folder-chart-2-fill\", '\\ued5b'),\n    FOLDER_CHART_2_LINE(\"remixal-folder-chart-2-line\", '\\ued5c'),\n    FOLDER_CHART_FILL(\"remixal-folder-chart-fill\", '\\ued5d'),\n    FOLDER_CHART_LINE(\"remixal-folder-chart-line\", '\\ued5e'),\n    FOLDER_DOWNLOAD_FILL(\"remixal-folder-download-fill\", '\\ued5f'),\n    FOLDER_DOWNLOAD_LINE(\"remixal-folder-download-line\", '\\ued60'),\n    FOLDER_FILL(\"remixal-folder-fill\", '\\ued61'),\n    FOLDER_FORBID_FILL(\"remixal-folder-forbid-fill\", '\\ued62'),\n    FOLDER_FORBID_LINE(\"remixal-folder-forbid-line\", '\\ued63'),\n    FOLDER_HISTORY_FILL(\"remixal-folder-history-fill\", '\\ued64'),\n    FOLDER_HISTORY_LINE(\"remixal-folder-history-line\", '\\ued65'),\n    FOLDER_INFO_FILL(\"remixal-folder-info-fill\", '\\ued66'),\n    FOLDER_INFO_LINE(\"remixal-folder-info-line\", '\\ued67'),\n    FOLDER_KEYHOLE_FILL(\"remixal-folder-keyhole-fill\", '\\ued68'),\n    FOLDER_KEYHOLE_LINE(\"remixal-folder-keyhole-line\", '\\ued69'),\n    FOLDER_LINE(\"remixal-folder-line\", '\\ued6a'),\n    FOLDER_LOCK_FILL(\"remixal-folder-lock-fill\", '\\ued6b'),\n    FOLDER_LOCK_LINE(\"remixal-folder-lock-line\", '\\ued6c'),\n    FOLDER_MUSIC_FILL(\"remixal-folder-music-fill\", '\\ued6d'),\n    FOLDER_MUSIC_LINE(\"remixal-folder-music-line\", '\\ued6e'),\n    FOLDER_OPEN_FILL(\"remixal-folder-open-fill\", '\\ued6f'),\n    FOLDER_OPEN_LINE(\"remixal-folder-open-line\", '\\ued70'),\n    FOLDER_RECEIVED_FILL(\"remixal-folder-received-fill\", '\\ued71'),\n    FOLDER_RECEIVED_LINE(\"remixal-folder-received-line\", '\\ued72'),\n    FOLDER_REDUCE_FILL(\"remixal-folder-reduce-fill\", '\\ued73'),\n    FOLDER_REDUCE_LINE(\"remixal-folder-reduce-line\", '\\ued74'),\n    FOLDER_SETTINGS_FILL(\"remixal-folder-settings-fill\", '\\ued75'),\n    FOLDER_SETTINGS_LINE(\"remixal-folder-settings-line\", '\\ued76'),\n    FOLDER_SHARED_FILL(\"remixal-folder-shared-fill\", '\\ued77'),\n    FOLDER_SHARED_LINE(\"remixal-folder-shared-line\", '\\ued78'),\n    FOLDER_SHIELD_2_FILL(\"remixal-folder-shield-2-fill\", '\\ued79'),\n    FOLDER_SHIELD_2_LINE(\"remixal-folder-shield-2-line\", '\\ued7a'),\n    FOLDER_SHIELD_FILL(\"remixal-folder-shield-fill\", '\\ued7b'),\n    FOLDER_SHIELD_LINE(\"remixal-folder-shield-line\", '\\ued7c'),\n    FOLDER_TRANSFER_FILL(\"remixal-folder-transfer-fill\", '\\ued7d'),\n    FOLDER_TRANSFER_LINE(\"remixal-folder-transfer-line\", '\\ued7e'),\n    FOLDER_UNKNOW_FILL(\"remixal-folder-unknow-fill\", '\\ued7f'),\n    FOLDER_UNKNOW_LINE(\"remixal-folder-unknow-line\", '\\ued80'),\n    FOLDER_UPLOAD_FILL(\"remixal-folder-upload-fill\", '\\ued81'),\n    FOLDER_UPLOAD_LINE(\"remixal-folder-upload-line\", '\\ued82'),\n    FOLDER_USER_FILL(\"remixal-folder-user-fill\", '\\ued83'),\n    FOLDER_USER_LINE(\"remixal-folder-user-line\", '\\ued84'),\n    FOLDER_WARNING_FILL(\"remixal-folder-warning-fill\", '\\ued85'),\n    FOLDER_WARNING_LINE(\"remixal-folder-warning-line\", '\\ued86'),\n    FOLDER_ZIP_FILL(\"remixal-folder-zip-fill\", '\\ued87'),\n    FOLDER_ZIP_LINE(\"remixal-folder-zip-line\", '\\ued88'),\n    FONT_COLOR(\"remixal-font-color\", '\\ued8b'),\n    FONT_SIZE(\"remixal-font-size\", '\\ued8d'),\n    FONT_SIZE_2(\"remixal-font-size-2\", '\\ued8c'),\n    FOOTBALL_FILL(\"remixal-football-fill\", '\\ued8e'),\n    FOOTBALL_LINE(\"remixal-football-line\", '\\ued8f'),\n    FOOTPRINT_FILL(\"remixal-footprint-fill\", '\\ued90'),\n    FOOTPRINT_LINE(\"remixal-footprint-line\", '\\ued91'),\n    FORBID_2_FILL(\"remixal-forbid-2-fill\", '\\ued92'),\n    FORBID_2_LINE(\"remixal-forbid-2-line\", '\\ued93'),\n    FORBID_FILL(\"remixal-forbid-fill\", '\\ued94'),\n    FORBID_LINE(\"remixal-forbid-line\", '\\ued95'),\n    FORMAT_CLEAR(\"remixal-format-clear\", '\\ued96'),\n    FRIDGE_FILL(\"remixal-fridge-fill\", '\\ued97'),\n    FRIDGE_LINE(\"remixal-fridge-line\", '\\ued98'),\n    FULLSCREEN_EXIT_FILL(\"remixal-fullscreen-exit-fill\", '\\ued99'),\n    FULLSCREEN_EXIT_LINE(\"remixal-fullscreen-exit-line\", '\\ued9a'),\n    FULLSCREEN_FILL(\"remixal-fullscreen-fill\", '\\ued9b'),\n    FULLSCREEN_LINE(\"remixal-fullscreen-line\", '\\ued9c'),\n    FUNCTIONS(\"remixal-functions\", '\\ued9f'),\n    FUNCTION_FILL(\"remixal-function-fill\", '\\ued9d'),\n    FUNCTION_LINE(\"remixal-function-line\", '\\ued9e'),\n    FUNDS_BOX_FILL(\"remixal-funds-box-fill\", '\\ueda0'),\n    FUNDS_BOX_LINE(\"remixal-funds-box-line\", '\\ueda1'),\n    FUNDS_FILL(\"remixal-funds-fill\", '\\ueda2'),\n    FUNDS_LINE(\"remixal-funds-line\", '\\ueda3'),\n    GALLERY_FILL(\"remixal-gallery-fill\", '\\ueda4'),\n    GALLERY_LINE(\"remixal-gallery-line\", '\\ueda5'),\n    GALLERY_UPLOAD_FILL(\"remixal-gallery-upload-fill\", '\\ueda6'),\n    GALLERY_UPLOAD_LINE(\"remixal-gallery-upload-line\", '\\ueda7'),\n    GAMEPAD_FILL(\"remixal-gamepad-fill\", '\\uedaa'),\n    GAMEPAD_LINE(\"remixal-gamepad-line\", '\\uedab'),\n    GAME_FILL(\"remixal-game-fill\", '\\ueda8'),\n    GAME_LINE(\"remixal-game-line\", '\\ueda9'),\n    GAS_STATION_FILL(\"remixal-gas-station-fill\", '\\uedac'),\n    GAS_STATION_LINE(\"remixal-gas-station-line\", '\\uedad'),\n    GATSBY_FILL(\"remixal-gatsby-fill\", '\\uedae'),\n    GATSBY_LINE(\"remixal-gatsby-line\", '\\uedaf'),\n    GENDERLESS_FILL(\"remixal-genderless-fill\", '\\uedb0'),\n    GENDERLESS_LINE(\"remixal-genderless-line\", '\\uedb1'),\n    GHOST_2_FILL(\"remixal-ghost-2-fill\", '\\uedb2'),\n    GHOST_2_LINE(\"remixal-ghost-2-line\", '\\uedb3'),\n    GHOST_FILL(\"remixal-ghost-fill\", '\\uedb4'),\n    GHOST_LINE(\"remixal-ghost-line\", '\\uedb5'),\n    GHOST_SMILE_FILL(\"remixal-ghost-smile-fill\", '\\uedb6'),\n    GHOST_SMILE_LINE(\"remixal-ghost-smile-line\", '\\uedb7'),\n    GIFT_2_FILL(\"remixal-gift-2-fill\", '\\uedb8'),\n    GIFT_2_LINE(\"remixal-gift-2-line\", '\\uedb9'),\n    GIFT_FILL(\"remixal-gift-fill\", '\\uedba'),\n    GIFT_LINE(\"remixal-gift-line\", '\\uedbb'),\n    GITHUB_FILL(\"remixal-github-fill\", '\\uedca'),\n    GITHUB_LINE(\"remixal-github-line\", '\\uedcb'),\n    GITLAB_FILL(\"remixal-gitlab-fill\", '\\uedcc'),\n    GITLAB_LINE(\"remixal-gitlab-line\", '\\uedcd'),\n    GIT_BRANCH_FILL(\"remixal-git-branch-fill\", '\\uedbc'),\n    GIT_BRANCH_LINE(\"remixal-git-branch-line\", '\\uedbd'),\n    GIT_COMMIT_FILL(\"remixal-git-commit-fill\", '\\uedbe'),\n    GIT_COMMIT_LINE(\"remixal-git-commit-line\", '\\uedbf'),\n    GIT_MERGE_FILL(\"remixal-git-merge-fill\", '\\uedc0'),\n    GIT_MERGE_LINE(\"remixal-git-merge-line\", '\\uedc1'),\n    GIT_PULL_REQUEST_FILL(\"remixal-git-pull-request-fill\", '\\uedc2'),\n    GIT_PULL_REQUEST_LINE(\"remixal-git-pull-request-line\", '\\uedc3'),\n    GIT_REPOSITORY_COMMITS_FILL(\"remixal-git-repository-commits-fill\", '\\uedc4'),\n    GIT_REPOSITORY_COMMITS_LINE(\"remixal-git-repository-commits-line\", '\\uedc5'),\n    GIT_REPOSITORY_FILL(\"remixal-git-repository-fill\", '\\uedc6'),\n    GIT_REPOSITORY_LINE(\"remixal-git-repository-line\", '\\uedc7'),\n    GIT_REPOSITORY_PRIVATE_FILL(\"remixal-git-repository-private-fill\", '\\uedc8'),\n    GIT_REPOSITORY_PRIVATE_LINE(\"remixal-git-repository-private-line\", '\\uedc9'),\n    GLOBAL_FILL(\"remixal-global-fill\", '\\uedce'),\n    GLOBAL_LINE(\"remixal-global-line\", '\\uedcf'),\n    GLOBE_FILL(\"remixal-globe-fill\", '\\uedd0'),\n    GLOBE_LINE(\"remixal-globe-line\", '\\uedd1'),\n    GOBLET_FILL(\"remixal-goblet-fill\", '\\uedd2'),\n    GOBLET_LINE(\"remixal-goblet-line\", '\\uedd3'),\n    GOOGLE_FILL(\"remixal-google-fill\", '\\uedd4'),\n    GOOGLE_LINE(\"remixal-google-line\", '\\uedd5'),\n    GOOGLE_PLAY_FILL(\"remixal-google-play-fill\", '\\uedd6'),\n    GOOGLE_PLAY_LINE(\"remixal-google-play-line\", '\\uedd7'),\n    GOVERNMENT_FILL(\"remixal-government-fill\", '\\uedd8'),\n    GOVERNMENT_LINE(\"remixal-government-line\", '\\uedd9'),\n    GPS_FILL(\"remixal-gps-fill\", '\\uedda'),\n    GPS_LINE(\"remixal-gps-line\", '\\ueddb'),\n    GRADIENTER_FILL(\"remixal-gradienter-fill\", '\\ueddc'),\n    GRADIENTER_LINE(\"remixal-gradienter-line\", '\\ueddd'),\n    GRID_FILL(\"remixal-grid-fill\", '\\uedde'),\n    GRID_LINE(\"remixal-grid-line\", '\\ueddf'),\n    GROUP_2_FILL(\"remixal-group-2-fill\", '\\uede0'),\n    GROUP_2_LINE(\"remixal-group-2-line\", '\\uede1'),\n    GROUP_FILL(\"remixal-group-fill\", '\\uede2'),\n    GROUP_LINE(\"remixal-group-line\", '\\uede3'),\n    GUIDE_FILL(\"remixal-guide-fill\", '\\uede4'),\n    GUIDE_LINE(\"remixal-guide-line\", '\\uede5'),\n    HAIL_FILL(\"remixal-hail-fill\", '\\uedec'),\n    HAIL_LINE(\"remixal-hail-line\", '\\ueded'),\n    HAMMER_FILL(\"remixal-hammer-fill\", '\\uedee'),\n    HAMMER_LINE(\"remixal-hammer-line\", '\\uedef'),\n    HANDBAG_FILL(\"remixal-handbag-fill\", '\\uedf6'),\n    HANDBAG_LINE(\"remixal-handbag-line\", '\\uedf7'),\n    HAND_COIN_FILL(\"remixal-hand-coin-fill\", '\\uedf0'),\n    HAND_COIN_LINE(\"remixal-hand-coin-line\", '\\uedf1'),\n    HAND_HEART_FILL(\"remixal-hand-heart-fill\", '\\uedf2'),\n    HAND_HEART_LINE(\"remixal-hand-heart-line\", '\\uedf3'),\n    HAND_SANITIZER_FILL(\"remixal-hand-sanitizer-fill\", '\\uedf4'),\n    HAND_SANITIZER_LINE(\"remixal-hand-sanitizer-line\", '\\uedf5'),\n    HARD_DRIVE_2_FILL(\"remixal-hard-drive-2-fill\", '\\uedf8'),\n    HARD_DRIVE_2_LINE(\"remixal-hard-drive-2-line\", '\\uedf9'),\n    HARD_DRIVE_FILL(\"remixal-hard-drive-fill\", '\\uedfa'),\n    HARD_DRIVE_LINE(\"remixal-hard-drive-line\", '\\uedfb'),\n    HASHTAG(\"remixal-hashtag\", '\\uedfc'),\n    HAZE_2_FILL(\"remixal-haze-2-fill\", '\\uedfd'),\n    HAZE_2_LINE(\"remixal-haze-2-line\", '\\uedfe'),\n    HAZE_FILL(\"remixal-haze-fill\", '\\uedff'),\n    HAZE_LINE(\"remixal-haze-line\", '\\uee00'),\n    HD_FILL(\"remixal-hd-fill\", '\\uee01'),\n    HD_LINE(\"remixal-hd-line\", '\\uee02'),\n    HEADING(\"remixal-heading\", '\\uee03'),\n    HEADPHONE_FILL(\"remixal-headphone-fill\", '\\uee04'),\n    HEADPHONE_LINE(\"remixal-headphone-line\", '\\uee05'),\n    HEALTH_BOOK_FILL(\"remixal-health-book-fill\", '\\uee06'),\n    HEALTH_BOOK_LINE(\"remixal-health-book-line\", '\\uee07'),\n    HEARTS_FILL(\"remixal-hearts-fill\", '\\uee12'),\n    HEARTS_LINE(\"remixal-hearts-line\", '\\uee13'),\n    HEART_2_FILL(\"remixal-heart-2-fill\", '\\uee08'),\n    HEART_2_LINE(\"remixal-heart-2-line\", '\\uee09'),\n    HEART_3_FILL(\"remixal-heart-3-fill\", '\\uee0a'),\n    HEART_3_LINE(\"remixal-heart-3-line\", '\\uee0b'),\n    HEART_ADD_FILL(\"remixal-heart-add-fill\", '\\uee0c'),\n    HEART_ADD_LINE(\"remixal-heart-add-line\", '\\uee0d'),\n    HEART_FILL(\"remixal-heart-fill\", '\\uee0e'),\n    HEART_LINE(\"remixal-heart-line\", '\\uee0f'),\n    HEART_PULSE_FILL(\"remixal-heart-pulse-fill\", '\\uee10'),\n    HEART_PULSE_LINE(\"remixal-heart-pulse-line\", '\\uee11'),\n    HEAVY_SHOWERS_FILL(\"remixal-heavy-showers-fill\", '\\uee14'),\n    HEAVY_SHOWERS_LINE(\"remixal-heavy-showers-line\", '\\uee15'),\n    HISTORY_FILL(\"remixal-history-fill\", '\\uee16'),\n    HISTORY_LINE(\"remixal-history-line\", '\\uee17'),\n    HOME_2_FILL(\"remixal-home-2-fill\", '\\uee18'),\n    HOME_2_LINE(\"remixal-home-2-line\", '\\uee19'),\n    HOME_3_FILL(\"remixal-home-3-fill\", '\\uee1a'),\n    HOME_3_LINE(\"remixal-home-3-line\", '\\uee1b'),\n    HOME_4_FILL(\"remixal-home-4-fill\", '\\uee1c'),\n    HOME_4_LINE(\"remixal-home-4-line\", '\\uee1d'),\n    HOME_5_FILL(\"remixal-home-5-fill\", '\\uee1e'),\n    HOME_5_LINE(\"remixal-home-5-line\", '\\uee1f'),\n    HOME_6_FILL(\"remixal-home-6-fill\", '\\uee20'),\n    HOME_6_LINE(\"remixal-home-6-line\", '\\uee21'),\n    HOME_7_FILL(\"remixal-home-7-fill\", '\\uee22'),\n    HOME_7_LINE(\"remixal-home-7-line\", '\\uee23'),\n    HOME_8_FILL(\"remixal-home-8-fill\", '\\uee24'),\n    HOME_8_LINE(\"remixal-home-8-line\", '\\uee25'),\n    HOME_FILL(\"remixal-home-fill\", '\\uee26'),\n    HOME_GEAR_FILL(\"remixal-home-gear-fill\", '\\uee27'),\n    HOME_GEAR_LINE(\"remixal-home-gear-line\", '\\uee28'),\n    HOME_HEART_FILL(\"remixal-home-heart-fill\", '\\uee29'),\n    HOME_HEART_LINE(\"remixal-home-heart-line\", '\\uee2a'),\n    HOME_LINE(\"remixal-home-line\", '\\uee2b'),\n    HOME_SMILE_2_FILL(\"remixal-home-smile-2-fill\", '\\uee2c'),\n    HOME_SMILE_2_LINE(\"remixal-home-smile-2-line\", '\\uee2d'),\n    HOME_SMILE_FILL(\"remixal-home-smile-fill\", '\\uee2e'),\n    HOME_SMILE_LINE(\"remixal-home-smile-line\", '\\uee2f'),\n    HOME_WIFI_FILL(\"remixal-home-wifi-fill\", '\\uee30'),\n    HOME_WIFI_LINE(\"remixal-home-wifi-line\", '\\uee31'),\n    HONOR_OF_KINGS_FILL(\"remixal-honor-of-kings-fill\", '\\uee32'),\n    HONOR_OF_KINGS_LINE(\"remixal-honor-of-kings-line\", '\\uee33'),\n    HONOUR_FILL(\"remixal-honour-fill\", '\\uee34'),\n    HONOUR_LINE(\"remixal-honour-line\", '\\uee35'),\n    HOSPITAL_FILL(\"remixal-hospital-fill\", '\\uee36'),\n    HOSPITAL_LINE(\"remixal-hospital-line\", '\\uee37'),\n    HOTEL_BED_FILL(\"remixal-hotel-bed-fill\", '\\uee38'),\n    HOTEL_BED_LINE(\"remixal-hotel-bed-line\", '\\uee39'),\n    HOTEL_FILL(\"remixal-hotel-fill\", '\\uee3a'),\n    HOTEL_LINE(\"remixal-hotel-line\", '\\uee3b'),\n    HOTSPOT_FILL(\"remixal-hotspot-fill\", '\\uee3c'),\n    HOTSPOT_LINE(\"remixal-hotspot-line\", '\\uee3d'),\n    HQ_FILL(\"remixal-hq-fill\", '\\uee3e'),\n    HQ_LINE(\"remixal-hq-line\", '\\uee3f'),\n    HTML5_FILL(\"remixal-html5-fill\", '\\uee40'),\n    HTML5_LINE(\"remixal-html5-line\", '\\uee41'),\n    H_1(\"remixal-h-1\", '\\uede6'),\n    H_2(\"remixal-h-2\", '\\uede7'),\n    H_3(\"remixal-h-3\", '\\uede8'),\n    H_4(\"remixal-h-4\", '\\uede9'),\n    H_5(\"remixal-h-5\", '\\uedea'),\n    H_6(\"remixal-h-6\", '\\uedeb'),\n    IE_FILL(\"remixal-ie-fill\", '\\uee42'),\n    IE_LINE(\"remixal-ie-line\", '\\uee43'),\n    IMAGE_2_FILL(\"remixal-image-2-fill\", '\\uee44'),\n    IMAGE_2_LINE(\"remixal-image-2-line\", '\\uee45'),\n    IMAGE_ADD_FILL(\"remixal-image-add-fill\", '\\uee46'),\n    IMAGE_ADD_LINE(\"remixal-image-add-line\", '\\uee47'),\n    IMAGE_EDIT_FILL(\"remixal-image-edit-fill\", '\\uee48'),\n    IMAGE_EDIT_LINE(\"remixal-image-edit-line\", '\\uee49'),\n    IMAGE_FILL(\"remixal-image-fill\", '\\uee4a'),\n    IMAGE_LINE(\"remixal-image-line\", '\\uee4b'),\n    INBOX_ARCHIVE_FILL(\"remixal-inbox-archive-fill\", '\\uee4c'),\n    INBOX_ARCHIVE_LINE(\"remixal-inbox-archive-line\", '\\uee4d'),\n    INBOX_FILL(\"remixal-inbox-fill\", '\\uee4e'),\n    INBOX_LINE(\"remixal-inbox-line\", '\\uee4f'),\n    INBOX_UNARCHIVE_FILL(\"remixal-inbox-unarchive-fill\", '\\uee50'),\n    INBOX_UNARCHIVE_LINE(\"remixal-inbox-unarchive-line\", '\\uee51'),\n    INCREASE_DECREASE_FILL(\"remixal-increase-decrease-fill\", '\\uee52'),\n    INCREASE_DECREASE_LINE(\"remixal-increase-decrease-line\", '\\uee53'),\n    INDENT_DECREASE(\"remixal-indent-decrease\", '\\uee54'),\n    INDENT_INCREASE(\"remixal-indent-increase\", '\\uee55'),\n    INDETERMINATE_CIRCLE_FILL(\"remixal-indeterminate-circle-fill\", '\\uee56'),\n    INDETERMINATE_CIRCLE_LINE(\"remixal-indeterminate-circle-line\", '\\uee57'),\n    INFORMATION_FILL(\"remixal-information-fill\", '\\uee58'),\n    INFORMATION_LINE(\"remixal-information-line\", '\\uee59'),\n    INFRARED_THERMOMETER_FILL(\"remixal-infrared-thermometer-fill\", '\\uee5a'),\n    INFRARED_THERMOMETER_LINE(\"remixal-infrared-thermometer-line\", '\\uee5b'),\n    INK_BOTTLE_FILL(\"remixal-ink-bottle-fill\", '\\uee5c'),\n    INK_BOTTLE_LINE(\"remixal-ink-bottle-line\", '\\uee5d'),\n    INPUT_CURSOR_MOVE(\"remixal-input-cursor-move\", '\\uee5e'),\n    INPUT_METHOD_FILL(\"remixal-input-method-fill\", '\\uee5f'),\n    INPUT_METHOD_LINE(\"remixal-input-method-line\", '\\uee60'),\n    INSERT_COLUMN_LEFT(\"remixal-insert-column-left\", '\\uee61'),\n    INSERT_COLUMN_RIGHT(\"remixal-insert-column-right\", '\\uee62'),\n    INSERT_ROW_BOTTOM(\"remixal-insert-row-bottom\", '\\uee63'),\n    INSERT_ROW_TOP(\"remixal-insert-row-top\", '\\uee64'),\n    INSTAGRAM_FILL(\"remixal-instagram-fill\", '\\uee65'),\n    INSTAGRAM_LINE(\"remixal-instagram-line\", '\\uee66'),\n    INSTALL_FILL(\"remixal-install-fill\", '\\uee67'),\n    INSTALL_LINE(\"remixal-install-line\", '\\uee68'),\n    INVISION_FILL(\"remixal-invision-fill\", '\\uee69'),\n    INVISION_LINE(\"remixal-invision-line\", '\\uee6a'),\n    ITALIC(\"remixal-italic\", '\\uee6b'),\n    KAKAO_TALK_FILL(\"remixal-kakao-talk-fill\", '\\uee6c'),\n    KAKAO_TALK_LINE(\"remixal-kakao-talk-line\", '\\uee6d'),\n    KEYBOARD_BOX_FILL(\"remixal-keyboard-box-fill\", '\\uee72'),\n    KEYBOARD_BOX_LINE(\"remixal-keyboard-box-line\", '\\uee73'),\n    KEYBOARD_FILL(\"remixal-keyboard-fill\", '\\uee74'),\n    KEYBOARD_LINE(\"remixal-keyboard-line\", '\\uee75'),\n    KEYNOTE_FILL(\"remixal-keynote-fill\", '\\uee76'),\n    KEYNOTE_LINE(\"remixal-keynote-line\", '\\uee77'),\n    KEY_2_FILL(\"remixal-key-2-fill\", '\\uee6e'),\n    KEY_2_LINE(\"remixal-key-2-line\", '\\uee6f'),\n    KEY_FILL(\"remixal-key-fill\", '\\uee70'),\n    KEY_LINE(\"remixal-key-line\", '\\uee71'),\n    KNIFE_BLOOD_FILL(\"remixal-knife-blood-fill\", '\\uee78'),\n    KNIFE_BLOOD_LINE(\"remixal-knife-blood-line\", '\\uee79'),\n    KNIFE_FILL(\"remixal-knife-fill\", '\\uee7a'),\n    KNIFE_LINE(\"remixal-knife-line\", '\\uee7b'),\n    LANDSCAPE_FILL(\"remixal-landscape-fill\", '\\uee7c'),\n    LANDSCAPE_LINE(\"remixal-landscape-line\", '\\uee7d'),\n    LAYOUT_2_FILL(\"remixal-layout-2-fill\", '\\uee7e'),\n    LAYOUT_2_LINE(\"remixal-layout-2-line\", '\\uee7f'),\n    LAYOUT_3_FILL(\"remixal-layout-3-fill\", '\\uee80'),\n    LAYOUT_3_LINE(\"remixal-layout-3-line\", '\\uee81'),\n    LAYOUT_4_FILL(\"remixal-layout-4-fill\", '\\uee82'),\n    LAYOUT_4_LINE(\"remixal-layout-4-line\", '\\uee83'),\n    LAYOUT_5_FILL(\"remixal-layout-5-fill\", '\\uee84'),\n    LAYOUT_5_LINE(\"remixal-layout-5-line\", '\\uee85'),\n    LAYOUT_6_FILL(\"remixal-layout-6-fill\", '\\uee86'),\n    LAYOUT_6_LINE(\"remixal-layout-6-line\", '\\uee87'),\n    LAYOUT_BOTTOM_2_FILL(\"remixal-layout-bottom-2-fill\", '\\uee88'),\n    LAYOUT_BOTTOM_2_LINE(\"remixal-layout-bottom-2-line\", '\\uee89'),\n    LAYOUT_BOTTOM_FILL(\"remixal-layout-bottom-fill\", '\\uee8a'),\n    LAYOUT_BOTTOM_LINE(\"remixal-layout-bottom-line\", '\\uee8b'),\n    LAYOUT_COLUMN_FILL(\"remixal-layout-column-fill\", '\\uee8c'),\n    LAYOUT_COLUMN_LINE(\"remixal-layout-column-line\", '\\uee8d'),\n    LAYOUT_FILL(\"remixal-layout-fill\", '\\uee8e'),\n    LAYOUT_GRID_FILL(\"remixal-layout-grid-fill\", '\\uee8f'),\n    LAYOUT_GRID_LINE(\"remixal-layout-grid-line\", '\\uee90'),\n    LAYOUT_LEFT_2_FILL(\"remixal-layout-left-2-fill\", '\\uee91'),\n    LAYOUT_LEFT_2_LINE(\"remixal-layout-left-2-line\", '\\uee92'),\n    LAYOUT_LEFT_FILL(\"remixal-layout-left-fill\", '\\uee93'),\n    LAYOUT_LEFT_LINE(\"remixal-layout-left-line\", '\\uee94'),\n    LAYOUT_LINE(\"remixal-layout-line\", '\\uee95'),\n    LAYOUT_MASONRY_FILL(\"remixal-layout-masonry-fill\", '\\uee96'),\n    LAYOUT_MASONRY_LINE(\"remixal-layout-masonry-line\", '\\uee97'),\n    LAYOUT_RIGHT_2_FILL(\"remixal-layout-right-2-fill\", '\\uee98'),\n    LAYOUT_RIGHT_2_LINE(\"remixal-layout-right-2-line\", '\\uee99'),\n    LAYOUT_RIGHT_FILL(\"remixal-layout-right-fill\", '\\uee9a'),\n    LAYOUT_RIGHT_LINE(\"remixal-layout-right-line\", '\\uee9b'),\n    LAYOUT_ROW_FILL(\"remixal-layout-row-fill\", '\\uee9c'),\n    LAYOUT_ROW_LINE(\"remixal-layout-row-line\", '\\uee9d'),\n    LAYOUT_TOP_2_FILL(\"remixal-layout-top-2-fill\", '\\uee9e'),\n    LAYOUT_TOP_2_LINE(\"remixal-layout-top-2-line\", '\\uee9f'),\n    LAYOUT_TOP_FILL(\"remixal-layout-top-fill\", '\\ueea0'),\n    LAYOUT_TOP_LINE(\"remixal-layout-top-line\", '\\ueea1'),\n    LEAF_FILL(\"remixal-leaf-fill\", '\\ueea2'),\n    LEAF_LINE(\"remixal-leaf-line\", '\\ueea3'),\n    LIFEBUOY_FILL(\"remixal-lifebuoy-fill\", '\\ueea4'),\n    LIFEBUOY_LINE(\"remixal-lifebuoy-line\", '\\ueea5'),\n    LIGHTBULB_FILL(\"remixal-lightbulb-fill\", '\\ueea6'),\n    LIGHTBULB_FLASH_FILL(\"remixal-lightbulb-flash-fill\", '\\ueea7'),\n    LIGHTBULB_FLASH_LINE(\"remixal-lightbulb-flash-line\", '\\ueea8'),\n    LIGHTBULB_LINE(\"remixal-lightbulb-line\", '\\ueea9'),\n    LINE_CHART_FILL(\"remixal-line-chart-fill\", '\\ueeaa'),\n    LINE_CHART_LINE(\"remixal-line-chart-line\", '\\ueeab'),\n    LINE_FILL(\"remixal-line-fill\", '\\ueeac'),\n    LINE_HEIGHT(\"remixal-line-height\", '\\ueead'),\n    LINE_LINE(\"remixal-line-line\", '\\ueeae'),\n    LINK(\"remixal-link\", '\\ueeb2'),\n    LINKEDIN_BOX_FILL(\"remixal-linkedin-box-fill\", '\\ueeb3'),\n    LINKEDIN_BOX_LINE(\"remixal-linkedin-box-line\", '\\ueeb4'),\n    LINKEDIN_FILL(\"remixal-linkedin-fill\", '\\ueeb5'),\n    LINKEDIN_LINE(\"remixal-linkedin-line\", '\\ueeb6'),\n    LINKS_FILL(\"remixal-links-fill\", '\\ueeb7'),\n    LINKS_LINE(\"remixal-links-line\", '\\ueeb8'),\n    LINK_M(\"remixal-link-m\", '\\ueeaf'),\n    LINK_UNLINK(\"remixal-link-unlink\", '\\ueeb1'),\n    LINK_UNLINK_M(\"remixal-link-unlink-m\", '\\ueeb0'),\n    LIST_CHECK(\"remixal-list-check\", '\\ueeba'),\n    LIST_CHECK_2(\"remixal-list-check-2\", '\\ueeb9'),\n    LIST_ORDERED(\"remixal-list-ordered\", '\\ueebb'),\n    LIST_SETTINGS_FILL(\"remixal-list-settings-fill\", '\\ueebc'),\n    LIST_SETTINGS_LINE(\"remixal-list-settings-line\", '\\ueebd'),\n    LIST_UNORDERED(\"remixal-list-unordered\", '\\ueebe'),\n    LIVE_FILL(\"remixal-live-fill\", '\\ueebf'),\n    LIVE_LINE(\"remixal-live-line\", '\\ueec0'),\n    LOADER_2_FILL(\"remixal-loader-2-fill\", '\\ueec1'),\n    LOADER_2_LINE(\"remixal-loader-2-line\", '\\ueec2'),\n    LOADER_3_FILL(\"remixal-loader-3-fill\", '\\ueec3'),\n    LOADER_3_LINE(\"remixal-loader-3-line\", '\\ueec4'),\n    LOADER_4_FILL(\"remixal-loader-4-fill\", '\\ueec5'),\n    LOADER_4_LINE(\"remixal-loader-4-line\", '\\ueec6'),\n    LOADER_5_FILL(\"remixal-loader-5-fill\", '\\ueec7'),\n    LOADER_5_LINE(\"remixal-loader-5-line\", '\\ueec8'),\n    LOADER_FILL(\"remixal-loader-fill\", '\\ueec9'),\n    LOADER_LINE(\"remixal-loader-line\", '\\ueeca'),\n    LOCK_2_FILL(\"remixal-lock-2-fill\", '\\ueecb'),\n    LOCK_2_LINE(\"remixal-lock-2-line\", '\\ueecc'),\n    LOCK_FILL(\"remixal-lock-fill\", '\\ueecd'),\n    LOCK_LINE(\"remixal-lock-line\", '\\ueece'),\n    LOCK_PASSWORD_FILL(\"remixal-lock-password-fill\", '\\ueecf'),\n    LOCK_PASSWORD_LINE(\"remixal-lock-password-line\", '\\ueed0'),\n    LOCK_UNLOCK_FILL(\"remixal-lock-unlock-fill\", '\\ueed1'),\n    LOCK_UNLOCK_LINE(\"remixal-lock-unlock-line\", '\\ueed2'),\n    LOGIN_BOX_FILL(\"remixal-login-box-fill\", '\\ueed3'),\n    LOGIN_BOX_LINE(\"remixal-login-box-line\", '\\ueed4'),\n    LOGIN_CIRCLE_FILL(\"remixal-login-circle-fill\", '\\ueed5'),\n    LOGIN_CIRCLE_LINE(\"remixal-login-circle-line\", '\\ueed6'),\n    LOGOUT_BOX_FILL(\"remixal-logout-box-fill\", '\\ueed7'),\n    LOGOUT_BOX_LINE(\"remixal-logout-box-line\", '\\ueed8'),\n    LOGOUT_BOX_R_FILL(\"remixal-logout-box-r-fill\", '\\ueed9'),\n    LOGOUT_BOX_R_LINE(\"remixal-logout-box-r-line\", '\\ueeda'),\n    LOGOUT_CIRCLE_FILL(\"remixal-logout-circle-fill\", '\\ueedb'),\n    LOGOUT_CIRCLE_LINE(\"remixal-logout-circle-line\", '\\ueedc'),\n    LOGOUT_CIRCLE_R_FILL(\"remixal-logout-circle-r-fill\", '\\ueedd'),\n    LOGOUT_CIRCLE_R_LINE(\"remixal-logout-circle-r-line\", '\\ueede'),\n    LUGGAGE_CART_FILL(\"remixal-luggage-cart-fill\", '\\ueedf'),\n    LUGGAGE_CART_LINE(\"remixal-luggage-cart-line\", '\\ueee0'),\n    LUGGAGE_DEPOSIT_FILL(\"remixal-luggage-deposit-fill\", '\\ueee1'),\n    LUGGAGE_DEPOSIT_LINE(\"remixal-luggage-deposit-line\", '\\ueee2'),\n    LUNGS_FILL(\"remixal-lungs-fill\", '\\ueee3'),\n    LUNGS_LINE(\"remixal-lungs-line\", '\\ueee4');\n\n    public static RemixiconAL findByDescription(String description) {\n        for (RemixiconAL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    RemixiconAL(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-remixicon-pack/src/main/java/org/kordamp/ikonli/remixicon/RemixiconALIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.remixicon;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class RemixiconALIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/remixicon/2.5.0/fonts/remixicon.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"remixal-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return RemixiconAL.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"remixicon\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-remixicon-pack/src/main/java/org/kordamp/ikonli/remixicon/RemixiconALIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.remixicon;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class RemixiconALIkonProvider implements IkonProvider<RemixiconAL> {\n    @Override\n    public Class<RemixiconAL> getIkon() {\n        return RemixiconAL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-remixicon-pack/src/main/java/org/kordamp/ikonli/remixicon/RemixiconMZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.remixicon;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum RemixiconMZ implements Ikon {\n    MACBOOK_FILL(\"remixmz-macbook-fill\", '\\ueee7'),\n    MACBOOK_LINE(\"remixmz-macbook-line\", '\\ueee8'),\n    MAC_FILL(\"remixmz-mac-fill\", '\\ueee5'),\n    MAC_LINE(\"remixmz-mac-line\", '\\ueee6'),\n    MAGIC_FILL(\"remixmz-magic-fill\", '\\ueee9'),\n    MAGIC_LINE(\"remixmz-magic-line\", '\\ueeea'),\n    MAIL_ADD_FILL(\"remixmz-mail-add-fill\", '\\ueeeb'),\n    MAIL_ADD_LINE(\"remixmz-mail-add-line\", '\\ueeec'),\n    MAIL_CHECK_FILL(\"remixmz-mail-check-fill\", '\\ueeed'),\n    MAIL_CHECK_LINE(\"remixmz-mail-check-line\", '\\ueeee'),\n    MAIL_CLOSE_FILL(\"remixmz-mail-close-fill\", '\\ueeef'),\n    MAIL_CLOSE_LINE(\"remixmz-mail-close-line\", '\\ueef0'),\n    MAIL_DOWNLOAD_FILL(\"remixmz-mail-download-fill\", '\\ueef1'),\n    MAIL_DOWNLOAD_LINE(\"remixmz-mail-download-line\", '\\ueef2'),\n    MAIL_FILL(\"remixmz-mail-fill\", '\\ueef3'),\n    MAIL_FORBID_FILL(\"remixmz-mail-forbid-fill\", '\\ueef4'),\n    MAIL_FORBID_LINE(\"remixmz-mail-forbid-line\", '\\ueef5'),\n    MAIL_LINE(\"remixmz-mail-line\", '\\ueef6'),\n    MAIL_LOCK_FILL(\"remixmz-mail-lock-fill\", '\\ueef7'),\n    MAIL_LOCK_LINE(\"remixmz-mail-lock-line\", '\\ueef8'),\n    MAIL_OPEN_FILL(\"remixmz-mail-open-fill\", '\\ueef9'),\n    MAIL_OPEN_LINE(\"remixmz-mail-open-line\", '\\ueefa'),\n    MAIL_SEND_FILL(\"remixmz-mail-send-fill\", '\\ueefb'),\n    MAIL_SEND_LINE(\"remixmz-mail-send-line\", '\\ueefc'),\n    MAIL_SETTINGS_FILL(\"remixmz-mail-settings-fill\", '\\ueefd'),\n    MAIL_SETTINGS_LINE(\"remixmz-mail-settings-line\", '\\ueefe'),\n    MAIL_STAR_FILL(\"remixmz-mail-star-fill\", '\\ueeff'),\n    MAIL_STAR_LINE(\"remixmz-mail-star-line\", '\\uef00'),\n    MAIL_UNREAD_FILL(\"remixmz-mail-unread-fill\", '\\uef01'),\n    MAIL_UNREAD_LINE(\"remixmz-mail-unread-line\", '\\uef02'),\n    MAIL_VOLUME_FILL(\"remixmz-mail-volume-fill\", '\\uef03'),\n    MAIL_VOLUME_LINE(\"remixmz-mail-volume-line\", '\\uef04'),\n    MAP_2_FILL(\"remixmz-map-2-fill\", '\\uef05'),\n    MAP_2_LINE(\"remixmz-map-2-line\", '\\uef06'),\n    MAP_FILL(\"remixmz-map-fill\", '\\uef07'),\n    MAP_LINE(\"remixmz-map-line\", '\\uef08'),\n    MAP_PIN_2_FILL(\"remixmz-map-pin-2-fill\", '\\uef09'),\n    MAP_PIN_2_LINE(\"remixmz-map-pin-2-line\", '\\uef0a'),\n    MAP_PIN_3_FILL(\"remixmz-map-pin-3-fill\", '\\uef0b'),\n    MAP_PIN_3_LINE(\"remixmz-map-pin-3-line\", '\\uef0c'),\n    MAP_PIN_4_FILL(\"remixmz-map-pin-4-fill\", '\\uef0d'),\n    MAP_PIN_4_LINE(\"remixmz-map-pin-4-line\", '\\uef0e'),\n    MAP_PIN_5_FILL(\"remixmz-map-pin-5-fill\", '\\uef0f'),\n    MAP_PIN_5_LINE(\"remixmz-map-pin-5-line\", '\\uef10'),\n    MAP_PIN_ADD_FILL(\"remixmz-map-pin-add-fill\", '\\uef11'),\n    MAP_PIN_ADD_LINE(\"remixmz-map-pin-add-line\", '\\uef12'),\n    MAP_PIN_FILL(\"remixmz-map-pin-fill\", '\\uef13'),\n    MAP_PIN_LINE(\"remixmz-map-pin-line\", '\\uef14'),\n    MAP_PIN_RANGE_FILL(\"remixmz-map-pin-range-fill\", '\\uef15'),\n    MAP_PIN_RANGE_LINE(\"remixmz-map-pin-range-line\", '\\uef16'),\n    MAP_PIN_TIME_FILL(\"remixmz-map-pin-time-fill\", '\\uef17'),\n    MAP_PIN_TIME_LINE(\"remixmz-map-pin-time-line\", '\\uef18'),\n    MAP_PIN_USER_FILL(\"remixmz-map-pin-user-fill\", '\\uef19'),\n    MAP_PIN_USER_LINE(\"remixmz-map-pin-user-line\", '\\uef1a'),\n    MARKDOWN_FILL(\"remixmz-markdown-fill\", '\\uef1d'),\n    MARKDOWN_LINE(\"remixmz-markdown-line\", '\\uef1e'),\n    MARKUP_FILL(\"remixmz-markup-fill\", '\\uef1f'),\n    MARKUP_LINE(\"remixmz-markup-line\", '\\uef20'),\n    MARK_PEN_FILL(\"remixmz-mark-pen-fill\", '\\uef1b'),\n    MARK_PEN_LINE(\"remixmz-mark-pen-line\", '\\uef1c'),\n    MASTERCARD_FILL(\"remixmz-mastercard-fill\", '\\uef21'),\n    MASTERCARD_LINE(\"remixmz-mastercard-line\", '\\uef22'),\n    MASTODON_FILL(\"remixmz-mastodon-fill\", '\\uef23'),\n    MASTODON_LINE(\"remixmz-mastodon-line\", '\\uef24'),\n    MEDAL_2_FILL(\"remixmz-medal-2-fill\", '\\uef25'),\n    MEDAL_2_LINE(\"remixmz-medal-2-line\", '\\uef26'),\n    MEDAL_FILL(\"remixmz-medal-fill\", '\\uef27'),\n    MEDAL_LINE(\"remixmz-medal-line\", '\\uef28'),\n    MEDICINE_BOTTLE_FILL(\"remixmz-medicine-bottle-fill\", '\\uef29'),\n    MEDICINE_BOTTLE_LINE(\"remixmz-medicine-bottle-line\", '\\uef2a'),\n    MEDIUM_FILL(\"remixmz-medium-fill\", '\\uef2b'),\n    MEDIUM_LINE(\"remixmz-medium-line\", '\\uef2c'),\n    MENTAL_HEALTH_FILL(\"remixmz-mental-health-fill\", '\\uef2f'),\n    MENTAL_HEALTH_LINE(\"remixmz-mental-health-line\", '\\uef30'),\n    MENU_2_FILL(\"remixmz-menu-2-fill\", '\\uef31'),\n    MENU_2_LINE(\"remixmz-menu-2-line\", '\\uef32'),\n    MENU_3_FILL(\"remixmz-menu-3-fill\", '\\uef33'),\n    MENU_3_LINE(\"remixmz-menu-3-line\", '\\uef34'),\n    MENU_4_FILL(\"remixmz-menu-4-fill\", '\\uef35'),\n    MENU_4_LINE(\"remixmz-menu-4-line\", '\\uef36'),\n    MENU_5_FILL(\"remixmz-menu-5-fill\", '\\uef37'),\n    MENU_5_LINE(\"remixmz-menu-5-line\", '\\uef38'),\n    MENU_ADD_FILL(\"remixmz-menu-add-fill\", '\\uef39'),\n    MENU_ADD_LINE(\"remixmz-menu-add-line\", '\\uef3a'),\n    MENU_FILL(\"remixmz-menu-fill\", '\\uef3b'),\n    MENU_FOLD_FILL(\"remixmz-menu-fold-fill\", '\\uef3c'),\n    MENU_FOLD_LINE(\"remixmz-menu-fold-line\", '\\uef3d'),\n    MENU_LINE(\"remixmz-menu-line\", '\\uef3e'),\n    MENU_UNFOLD_FILL(\"remixmz-menu-unfold-fill\", '\\uef3f'),\n    MENU_UNFOLD_LINE(\"remixmz-menu-unfold-line\", '\\uef40'),\n    MEN_FILL(\"remixmz-men-fill\", '\\uef2d'),\n    MEN_LINE(\"remixmz-men-line\", '\\uef2e'),\n    MERGE_CELLS_HORIZONTAL(\"remixmz-merge-cells-horizontal\", '\\uef41'),\n    MERGE_CELLS_VERTICAL(\"remixmz-merge-cells-vertical\", '\\uef42'),\n    MESSAGE_2_FILL(\"remixmz-message-2-fill\", '\\uef43'),\n    MESSAGE_2_LINE(\"remixmz-message-2-line\", '\\uef44'),\n    MESSAGE_3_FILL(\"remixmz-message-3-fill\", '\\uef45'),\n    MESSAGE_3_LINE(\"remixmz-message-3-line\", '\\uef46'),\n    MESSAGE_FILL(\"remixmz-message-fill\", '\\uef47'),\n    MESSAGE_LINE(\"remixmz-message-line\", '\\uef48'),\n    MESSENGER_FILL(\"remixmz-messenger-fill\", '\\uef49'),\n    MESSENGER_LINE(\"remixmz-messenger-line\", '\\uef4a'),\n    METEOR_FILL(\"remixmz-meteor-fill\", '\\uef4b'),\n    METEOR_LINE(\"remixmz-meteor-line\", '\\uef4c'),\n    MICKEY_FILL(\"remixmz-mickey-fill\", '\\uef53'),\n    MICKEY_LINE(\"remixmz-mickey-line\", '\\uef54'),\n    MICROSCOPE_FILL(\"remixmz-microscope-fill\", '\\uef55'),\n    MICROSCOPE_LINE(\"remixmz-microscope-line\", '\\uef56'),\n    MICROSOFT_FILL(\"remixmz-microsoft-fill\", '\\uef57'),\n    MICROSOFT_LINE(\"remixmz-microsoft-line\", '\\uef58'),\n    MIC_2_FILL(\"remixmz-mic-2-fill\", '\\uef4d'),\n    MIC_2_LINE(\"remixmz-mic-2-line\", '\\uef4e'),\n    MIC_FILL(\"remixmz-mic-fill\", '\\uef4f'),\n    MIC_LINE(\"remixmz-mic-line\", '\\uef50'),\n    MIC_OFF_FILL(\"remixmz-mic-off-fill\", '\\uef51'),\n    MIC_OFF_LINE(\"remixmz-mic-off-line\", '\\uef52'),\n    MIND_MAP(\"remixmz-mind-map\", '\\uef59'),\n    MINI_PROGRAM_FILL(\"remixmz-mini-program-fill\", '\\uef5a'),\n    MINI_PROGRAM_LINE(\"remixmz-mini-program-line\", '\\uef5b'),\n    MIST_FILL(\"remixmz-mist-fill\", '\\uef5c'),\n    MIST_LINE(\"remixmz-mist-line\", '\\uef5d'),\n    MONEY_CNY_BOX_FILL(\"remixmz-money-cny-box-fill\", '\\uef5e'),\n    MONEY_CNY_BOX_LINE(\"remixmz-money-cny-box-line\", '\\uef5f'),\n    MONEY_CNY_CIRCLE_FILL(\"remixmz-money-cny-circle-fill\", '\\uef60'),\n    MONEY_CNY_CIRCLE_LINE(\"remixmz-money-cny-circle-line\", '\\uef61'),\n    MONEY_DOLLAR_BOX_FILL(\"remixmz-money-dollar-box-fill\", '\\uef62'),\n    MONEY_DOLLAR_BOX_LINE(\"remixmz-money-dollar-box-line\", '\\uef63'),\n    MONEY_DOLLAR_CIRCLE_FILL(\"remixmz-money-dollar-circle-fill\", '\\uef64'),\n    MONEY_DOLLAR_CIRCLE_LINE(\"remixmz-money-dollar-circle-line\", '\\uef65'),\n    MONEY_EURO_BOX_FILL(\"remixmz-money-euro-box-fill\", '\\uef66'),\n    MONEY_EURO_BOX_LINE(\"remixmz-money-euro-box-line\", '\\uef67'),\n    MONEY_EURO_CIRCLE_FILL(\"remixmz-money-euro-circle-fill\", '\\uef68'),\n    MONEY_EURO_CIRCLE_LINE(\"remixmz-money-euro-circle-line\", '\\uef69'),\n    MONEY_POUND_BOX_FILL(\"remixmz-money-pound-box-fill\", '\\uef6a'),\n    MONEY_POUND_BOX_LINE(\"remixmz-money-pound-box-line\", '\\uef6b'),\n    MONEY_POUND_CIRCLE_FILL(\"remixmz-money-pound-circle-fill\", '\\uef6c'),\n    MONEY_POUND_CIRCLE_LINE(\"remixmz-money-pound-circle-line\", '\\uef6d'),\n    MOON_CLEAR_FILL(\"remixmz-moon-clear-fill\", '\\uef6e'),\n    MOON_CLEAR_LINE(\"remixmz-moon-clear-line\", '\\uef6f'),\n    MOON_CLOUDY_FILL(\"remixmz-moon-cloudy-fill\", '\\uef70'),\n    MOON_CLOUDY_LINE(\"remixmz-moon-cloudy-line\", '\\uef71'),\n    MOON_FILL(\"remixmz-moon-fill\", '\\uef72'),\n    MOON_FOGGY_FILL(\"remixmz-moon-foggy-fill\", '\\uef73'),\n    MOON_FOGGY_LINE(\"remixmz-moon-foggy-line\", '\\uef74'),\n    MOON_LINE(\"remixmz-moon-line\", '\\uef75'),\n    MORE_2_FILL(\"remixmz-more-2-fill\", '\\uef76'),\n    MORE_2_LINE(\"remixmz-more-2-line\", '\\uef77'),\n    MORE_FILL(\"remixmz-more-fill\", '\\uef78'),\n    MORE_LINE(\"remixmz-more-line\", '\\uef79'),\n    MOTORBIKE_FILL(\"remixmz-motorbike-fill\", '\\uef7a'),\n    MOTORBIKE_LINE(\"remixmz-motorbike-line\", '\\uef7b'),\n    MOUSE_FILL(\"remixmz-mouse-fill\", '\\uef7c'),\n    MOUSE_LINE(\"remixmz-mouse-line\", '\\uef7d'),\n    MOVIE_2_FILL(\"remixmz-movie-2-fill\", '\\uef7e'),\n    MOVIE_2_LINE(\"remixmz-movie-2-line\", '\\uef7f'),\n    MOVIE_FILL(\"remixmz-movie-fill\", '\\uef80'),\n    MOVIE_LINE(\"remixmz-movie-line\", '\\uef81'),\n    MUSIC_2_FILL(\"remixmz-music-2-fill\", '\\uef82'),\n    MUSIC_2_LINE(\"remixmz-music-2-line\", '\\uef83'),\n    MUSIC_FILL(\"remixmz-music-fill\", '\\uef84'),\n    MUSIC_LINE(\"remixmz-music-line\", '\\uef85'),\n    MV_FILL(\"remixmz-mv-fill\", '\\uef86'),\n    MV_LINE(\"remixmz-mv-line\", '\\uef87'),\n    NAVIGATION_FILL(\"remixmz-navigation-fill\", '\\uef88'),\n    NAVIGATION_LINE(\"remixmz-navigation-line\", '\\uef89'),\n    NETEASE_CLOUD_MUSIC_FILL(\"remixmz-netease-cloud-music-fill\", '\\uef8a'),\n    NETEASE_CLOUD_MUSIC_LINE(\"remixmz-netease-cloud-music-line\", '\\uef8b'),\n    NETFLIX_FILL(\"remixmz-netflix-fill\", '\\uef8c'),\n    NETFLIX_LINE(\"remixmz-netflix-line\", '\\uef8d'),\n    NEWSPAPER_FILL(\"remixmz-newspaper-fill\", '\\uef8e'),\n    NEWSPAPER_LINE(\"remixmz-newspaper-line\", '\\uef8f'),\n    NODE_TREE(\"remixmz-node-tree\", '\\uef90'),\n    NOTIFICATION_2_FILL(\"remixmz-notification-2-fill\", '\\uef91'),\n    NOTIFICATION_2_LINE(\"remixmz-notification-2-line\", '\\uef92'),\n    NOTIFICATION_3_FILL(\"remixmz-notification-3-fill\", '\\uef93'),\n    NOTIFICATION_3_LINE(\"remixmz-notification-3-line\", '\\uef94'),\n    NOTIFICATION_4_FILL(\"remixmz-notification-4-fill\", '\\uef95'),\n    NOTIFICATION_4_LINE(\"remixmz-notification-4-line\", '\\uef96'),\n    NOTIFICATION_BADGE_FILL(\"remixmz-notification-badge-fill\", '\\uef97'),\n    NOTIFICATION_BADGE_LINE(\"remixmz-notification-badge-line\", '\\uef98'),\n    NOTIFICATION_FILL(\"remixmz-notification-fill\", '\\uef99'),\n    NOTIFICATION_LINE(\"remixmz-notification-line\", '\\uef9a'),\n    NOTIFICATION_OFF_FILL(\"remixmz-notification-off-fill\", '\\uef9b'),\n    NOTIFICATION_OFF_LINE(\"remixmz-notification-off-line\", '\\uef9c'),\n    NPMJS_FILL(\"remixmz-npmjs-fill\", '\\uef9d'),\n    NPMJS_LINE(\"remixmz-npmjs-line\", '\\uef9e'),\n    NUMBERS_FILL(\"remixmz-numbers-fill\", '\\uefa9'),\n    NUMBERS_LINE(\"remixmz-numbers-line\", '\\uefaa'),\n    NUMBER_0(\"remixmz-number-0\", '\\uef9f'),\n    NUMBER_1(\"remixmz-number-1\", '\\uefa0'),\n    NUMBER_2(\"remixmz-number-2\", '\\uefa1'),\n    NUMBER_3(\"remixmz-number-3\", '\\uefa2'),\n    NUMBER_4(\"remixmz-number-4\", '\\uefa3'),\n    NUMBER_5(\"remixmz-number-5\", '\\uefa4'),\n    NUMBER_6(\"remixmz-number-6\", '\\uefa5'),\n    NUMBER_7(\"remixmz-number-7\", '\\uefa6'),\n    NUMBER_8(\"remixmz-number-8\", '\\uefa7'),\n    NUMBER_9(\"remixmz-number-9\", '\\uefa8'),\n    NURSE_FILL(\"remixmz-nurse-fill\", '\\uefab'),\n    NURSE_LINE(\"remixmz-nurse-line\", '\\uefac'),\n    OIL_FILL(\"remixmz-oil-fill\", '\\uefad'),\n    OIL_LINE(\"remixmz-oil-line\", '\\uefae'),\n    OMEGA(\"remixmz-omega\", '\\uefaf'),\n    OPEN_ARM_FILL(\"remixmz-open-arm-fill\", '\\uefb0'),\n    OPEN_ARM_LINE(\"remixmz-open-arm-line\", '\\uefb1'),\n    OPEN_SOURCE_FILL(\"remixmz-open-source-fill\", '\\uefb2'),\n    OPEN_SOURCE_LINE(\"remixmz-open-source-line\", '\\uefb3'),\n    OPERA_FILL(\"remixmz-opera-fill\", '\\uefb4'),\n    OPERA_LINE(\"remixmz-opera-line\", '\\uefb5'),\n    ORDER_PLAY_FILL(\"remixmz-order-play-fill\", '\\uefb6'),\n    ORDER_PLAY_LINE(\"remixmz-order-play-line\", '\\uefb7'),\n    ORGANIZATION_CHART(\"remixmz-organization-chart\", '\\uefb8'),\n    OUTLET_2_FILL(\"remixmz-outlet-2-fill\", '\\uefb9'),\n    OUTLET_2_LINE(\"remixmz-outlet-2-line\", '\\uefba'),\n    OUTLET_FILL(\"remixmz-outlet-fill\", '\\uefbb'),\n    OUTLET_LINE(\"remixmz-outlet-line\", '\\uefbc'),\n    PAGES_FILL(\"remixmz-pages-fill\", '\\uefbe'),\n    PAGES_LINE(\"remixmz-pages-line\", '\\uefbf'),\n    PAGE_SEPARATOR(\"remixmz-page-separator\", '\\uefbd'),\n    PAINT_BRUSH_FILL(\"remixmz-paint-brush-fill\", '\\uefc0'),\n    PAINT_BRUSH_LINE(\"remixmz-paint-brush-line\", '\\uefc1'),\n    PAINT_FILL(\"remixmz-paint-fill\", '\\uefc2'),\n    PAINT_LINE(\"remixmz-paint-line\", '\\uefc3'),\n    PALETTE_FILL(\"remixmz-palette-fill\", '\\uefc4'),\n    PALETTE_LINE(\"remixmz-palette-line\", '\\uefc5'),\n    PANTONE_FILL(\"remixmz-pantone-fill\", '\\uefc6'),\n    PANTONE_LINE(\"remixmz-pantone-line\", '\\uefc7'),\n    PARAGRAPH(\"remixmz-paragraph\", '\\uefc8'),\n    PARENTHESES_FILL(\"remixmz-parentheses-fill\", '\\uefcb'),\n    PARENTHESES_LINE(\"remixmz-parentheses-line\", '\\uefcc'),\n    PARENT_FILL(\"remixmz-parent-fill\", '\\uefc9'),\n    PARENT_LINE(\"remixmz-parent-line\", '\\uefca'),\n    PARKING_BOX_FILL(\"remixmz-parking-box-fill\", '\\uefcd'),\n    PARKING_BOX_LINE(\"remixmz-parking-box-line\", '\\uefce'),\n    PARKING_FILL(\"remixmz-parking-fill\", '\\uefcf'),\n    PARKING_LINE(\"remixmz-parking-line\", '\\uefd0'),\n    PASSPORT_FILL(\"remixmz-passport-fill\", '\\uefd1'),\n    PASSPORT_LINE(\"remixmz-passport-line\", '\\uefd2'),\n    PATREON_FILL(\"remixmz-patreon-fill\", '\\uefd3'),\n    PATREON_LINE(\"remixmz-patreon-line\", '\\uefd4'),\n    PAUSE_CIRCLE_FILL(\"remixmz-pause-circle-fill\", '\\uefd5'),\n    PAUSE_CIRCLE_LINE(\"remixmz-pause-circle-line\", '\\uefd6'),\n    PAUSE_FILL(\"remixmz-pause-fill\", '\\uefd7'),\n    PAUSE_LINE(\"remixmz-pause-line\", '\\uefd8'),\n    PAUSE_MINI_FILL(\"remixmz-pause-mini-fill\", '\\uefd9'),\n    PAUSE_MINI_LINE(\"remixmz-pause-mini-line\", '\\uefda'),\n    PAYPAL_FILL(\"remixmz-paypal-fill\", '\\uefdb'),\n    PAYPAL_LINE(\"remixmz-paypal-line\", '\\uefdc'),\n    PENCIL_FILL(\"remixmz-pencil-fill\", '\\uefdf'),\n    PENCIL_LINE(\"remixmz-pencil-line\", '\\uefe0'),\n    PENCIL_RULER_2_FILL(\"remixmz-pencil-ruler-2-fill\", '\\uefe1'),\n    PENCIL_RULER_2_LINE(\"remixmz-pencil-ruler-2-line\", '\\uefe2'),\n    PENCIL_RULER_FILL(\"remixmz-pencil-ruler-fill\", '\\uefe3'),\n    PENCIL_RULER_LINE(\"remixmz-pencil-ruler-line\", '\\uefe4'),\n    PEN_NIB_FILL(\"remixmz-pen-nib-fill\", '\\uefdd'),\n    PEN_NIB_LINE(\"remixmz-pen-nib-line\", '\\uefde'),\n    PERCENT_FILL(\"remixmz-percent-fill\", '\\uefe5'),\n    PERCENT_LINE(\"remixmz-percent-line\", '\\uefe6'),\n    PHONE_CAMERA_FILL(\"remixmz-phone-camera-fill\", '\\uefe7'),\n    PHONE_CAMERA_LINE(\"remixmz-phone-camera-line\", '\\uefe8'),\n    PHONE_FILL(\"remixmz-phone-fill\", '\\uefe9'),\n    PHONE_FIND_FILL(\"remixmz-phone-find-fill\", '\\uefea'),\n    PHONE_FIND_LINE(\"remixmz-phone-find-line\", '\\uefeb'),\n    PHONE_LINE(\"remixmz-phone-line\", '\\uefec'),\n    PHONE_LOCK_FILL(\"remixmz-phone-lock-fill\", '\\uefed'),\n    PHONE_LOCK_LINE(\"remixmz-phone-lock-line\", '\\uefee'),\n    PICTURE_IN_PICTURE_2_FILL(\"remixmz-picture-in-picture-2-fill\", '\\uefef'),\n    PICTURE_IN_PICTURE_2_LINE(\"remixmz-picture-in-picture-2-line\", '\\ueff0'),\n    PICTURE_IN_PICTURE_EXIT_FILL(\"remixmz-picture-in-picture-exit-fill\", '\\ueff1'),\n    PICTURE_IN_PICTURE_EXIT_LINE(\"remixmz-picture-in-picture-exit-line\", '\\ueff2'),\n    PICTURE_IN_PICTURE_FILL(\"remixmz-picture-in-picture-fill\", '\\ueff3'),\n    PICTURE_IN_PICTURE_LINE(\"remixmz-picture-in-picture-line\", '\\ueff4'),\n    PIE_CHART_2_FILL(\"remixmz-pie-chart-2-fill\", '\\ueff5'),\n    PIE_CHART_2_LINE(\"remixmz-pie-chart-2-line\", '\\ueff6'),\n    PIE_CHART_BOX_FILL(\"remixmz-pie-chart-box-fill\", '\\ueff7'),\n    PIE_CHART_BOX_LINE(\"remixmz-pie-chart-box-line\", '\\ueff8'),\n    PIE_CHART_FILL(\"remixmz-pie-chart-fill\", '\\ueff9'),\n    PIE_CHART_LINE(\"remixmz-pie-chart-line\", '\\ueffa'),\n    PING_PONG_FILL(\"remixmz-ping-pong-fill\", '\\ueffd'),\n    PING_PONG_LINE(\"remixmz-ping-pong-line\", '\\ueffe'),\n    PINTEREST_FILL(\"remixmz-pinterest-fill\", '\\uefff'),\n    PINTEREST_LINE(\"remixmz-pinterest-line\", '\\uf000'),\n    PINYIN_INPUT(\"remixmz-pinyin-input\", '\\uf001'),\n    PIN_DISTANCE_FILL(\"remixmz-pin-distance-fill\", '\\ueffb'),\n    PIN_DISTANCE_LINE(\"remixmz-pin-distance-line\", '\\ueffc'),\n    PIXELFED_FILL(\"remixmz-pixelfed-fill\", '\\uf002'),\n    PIXELFED_LINE(\"remixmz-pixelfed-line\", '\\uf003'),\n    PLANE_FILL(\"remixmz-plane-fill\", '\\uf004'),\n    PLANE_LINE(\"remixmz-plane-line\", '\\uf005'),\n    PLANT_FILL(\"remixmz-plant-fill\", '\\uf006'),\n    PLANT_LINE(\"remixmz-plant-line\", '\\uf007'),\n    PLAYSTATION_FILL(\"remixmz-playstation-fill\", '\\uf014'),\n    PLAYSTATION_LINE(\"remixmz-playstation-line\", '\\uf015'),\n    PLAY_CIRCLE_FILL(\"remixmz-play-circle-fill\", '\\uf008'),\n    PLAY_CIRCLE_LINE(\"remixmz-play-circle-line\", '\\uf009'),\n    PLAY_FILL(\"remixmz-play-fill\", '\\uf00a'),\n    PLAY_LINE(\"remixmz-play-line\", '\\uf00b'),\n    PLAY_LIST_2_FILL(\"remixmz-play-list-2-fill\", '\\uf00c'),\n    PLAY_LIST_2_LINE(\"remixmz-play-list-2-line\", '\\uf00d'),\n    PLAY_LIST_ADD_FILL(\"remixmz-play-list-add-fill\", '\\uf00e'),\n    PLAY_LIST_ADD_LINE(\"remixmz-play-list-add-line\", '\\uf00f'),\n    PLAY_LIST_FILL(\"remixmz-play-list-fill\", '\\uf010'),\n    PLAY_LIST_LINE(\"remixmz-play-list-line\", '\\uf011'),\n    PLAY_MINI_FILL(\"remixmz-play-mini-fill\", '\\uf012'),\n    PLAY_MINI_LINE(\"remixmz-play-mini-line\", '\\uf013'),\n    PLUG_2_FILL(\"remixmz-plug-2-fill\", '\\uf016'),\n    PLUG_2_LINE(\"remixmz-plug-2-line\", '\\uf017'),\n    PLUG_FILL(\"remixmz-plug-fill\", '\\uf018'),\n    PLUG_LINE(\"remixmz-plug-line\", '\\uf019'),\n    POLAROID_2_FILL(\"remixmz-polaroid-2-fill\", '\\uf01a'),\n    POLAROID_2_LINE(\"remixmz-polaroid-2-line\", '\\uf01b'),\n    POLAROID_FILL(\"remixmz-polaroid-fill\", '\\uf01c'),\n    POLAROID_LINE(\"remixmz-polaroid-line\", '\\uf01d'),\n    POLICE_CAR_FILL(\"remixmz-police-car-fill\", '\\uf01e'),\n    POLICE_CAR_LINE(\"remixmz-police-car-line\", '\\uf01f'),\n    PRICE_TAG_2_FILL(\"remixmz-price-tag-2-fill\", '\\uf020'),\n    PRICE_TAG_2_LINE(\"remixmz-price-tag-2-line\", '\\uf021'),\n    PRICE_TAG_3_FILL(\"remixmz-price-tag-3-fill\", '\\uf022'),\n    PRICE_TAG_3_LINE(\"remixmz-price-tag-3-line\", '\\uf023'),\n    PRICE_TAG_FILL(\"remixmz-price-tag-fill\", '\\uf024'),\n    PRICE_TAG_LINE(\"remixmz-price-tag-line\", '\\uf025'),\n    PRINTER_CLOUD_FILL(\"remixmz-printer-cloud-fill\", '\\uf026'),\n    PRINTER_CLOUD_LINE(\"remixmz-printer-cloud-line\", '\\uf027'),\n    PRINTER_FILL(\"remixmz-printer-fill\", '\\uf028'),\n    PRINTER_LINE(\"remixmz-printer-line\", '\\uf029'),\n    PRODUCT_HUNT_FILL(\"remixmz-product-hunt-fill\", '\\uf02a'),\n    PRODUCT_HUNT_LINE(\"remixmz-product-hunt-line\", '\\uf02b'),\n    PROFILE_FILL(\"remixmz-profile-fill\", '\\uf02c'),\n    PROFILE_LINE(\"remixmz-profile-line\", '\\uf02d'),\n    PROJECTOR_2_FILL(\"remixmz-projector-2-fill\", '\\uf02e'),\n    PROJECTOR_2_LINE(\"remixmz-projector-2-line\", '\\uf02f'),\n    PROJECTOR_FILL(\"remixmz-projector-fill\", '\\uf030'),\n    PROJECTOR_LINE(\"remixmz-projector-line\", '\\uf031'),\n    PSYCHOTHERAPY_FILL(\"remixmz-psychotherapy-fill\", '\\uf032'),\n    PSYCHOTHERAPY_LINE(\"remixmz-psychotherapy-line\", '\\uf033'),\n    PULSE_FILL(\"remixmz-pulse-fill\", '\\uf034'),\n    PULSE_LINE(\"remixmz-pulse-line\", '\\uf035'),\n    PUSHPIN_2_FILL(\"remixmz-pushpin-2-fill\", '\\uf036'),\n    PUSHPIN_2_LINE(\"remixmz-pushpin-2-line\", '\\uf037'),\n    PUSHPIN_FILL(\"remixmz-pushpin-fill\", '\\uf038'),\n    PUSHPIN_LINE(\"remixmz-pushpin-line\", '\\uf039'),\n    QQ_FILL(\"remixmz-qq-fill\", '\\uf03a'),\n    QQ_LINE(\"remixmz-qq-line\", '\\uf03b'),\n    QR_CODE_FILL(\"remixmz-qr-code-fill\", '\\uf03c'),\n    QR_CODE_LINE(\"remixmz-qr-code-line\", '\\uf03d'),\n    QR_SCAN_2_FILL(\"remixmz-qr-scan-2-fill\", '\\uf03e'),\n    QR_SCAN_2_LINE(\"remixmz-qr-scan-2-line\", '\\uf03f'),\n    QR_SCAN_FILL(\"remixmz-qr-scan-fill\", '\\uf040'),\n    QR_SCAN_LINE(\"remixmz-qr-scan-line\", '\\uf041'),\n    QUESTIONNAIRE_FILL(\"remixmz-questionnaire-fill\", '\\uf047'),\n    QUESTIONNAIRE_LINE(\"remixmz-questionnaire-line\", '\\uf048'),\n    QUESTION_ANSWER_FILL(\"remixmz-question-answer-fill\", '\\uf042'),\n    QUESTION_ANSWER_LINE(\"remixmz-question-answer-line\", '\\uf043'),\n    QUESTION_FILL(\"remixmz-question-fill\", '\\uf044'),\n    QUESTION_LINE(\"remixmz-question-line\", '\\uf045'),\n    QUESTION_MARK(\"remixmz-question-mark\", '\\uf046'),\n    QUILL_PEN_FILL(\"remixmz-quill-pen-fill\", '\\uf049'),\n    QUILL_PEN_LINE(\"remixmz-quill-pen-line\", '\\uf04a'),\n    RADAR_FILL(\"remixmz-radar-fill\", '\\uf04b'),\n    RADAR_LINE(\"remixmz-radar-line\", '\\uf04c'),\n    RADIO_2_FILL(\"remixmz-radio-2-fill\", '\\uf04d'),\n    RADIO_2_LINE(\"remixmz-radio-2-line\", '\\uf04e'),\n    RADIO_BUTTON_FILL(\"remixmz-radio-button-fill\", '\\uf04f'),\n    RADIO_BUTTON_LINE(\"remixmz-radio-button-line\", '\\uf050'),\n    RADIO_FILL(\"remixmz-radio-fill\", '\\uf051'),\n    RADIO_LINE(\"remixmz-radio-line\", '\\uf052'),\n    RAINBOW_FILL(\"remixmz-rainbow-fill\", '\\uf053'),\n    RAINBOW_LINE(\"remixmz-rainbow-line\", '\\uf054'),\n    RAINY_FILL(\"remixmz-rainy-fill\", '\\uf055'),\n    RAINY_LINE(\"remixmz-rainy-line\", '\\uf056'),\n    REACTJS_FILL(\"remixmz-reactjs-fill\", '\\uf057'),\n    REACTJS_LINE(\"remixmz-reactjs-line\", '\\uf058'),\n    RECORD_CIRCLE_FILL(\"remixmz-record-circle-fill\", '\\uf059'),\n    RECORD_CIRCLE_LINE(\"remixmz-record-circle-line\", '\\uf05a'),\n    RECORD_MAIL_FILL(\"remixmz-record-mail-fill\", '\\uf05b'),\n    RECORD_MAIL_LINE(\"remixmz-record-mail-line\", '\\uf05c'),\n    RECYCLE_FILL(\"remixmz-recycle-fill\", '\\uf05d'),\n    RECYCLE_LINE(\"remixmz-recycle-line\", '\\uf05e'),\n    REDDIT_FILL(\"remixmz-reddit-fill\", '\\uf061'),\n    REDDIT_LINE(\"remixmz-reddit-line\", '\\uf062'),\n    RED_PACKET_FILL(\"remixmz-red-packet-fill\", '\\uf05f'),\n    RED_PACKET_LINE(\"remixmz-red-packet-line\", '\\uf060'),\n    REFRESH_FILL(\"remixmz-refresh-fill\", '\\uf063'),\n    REFRESH_LINE(\"remixmz-refresh-line\", '\\uf064'),\n    REFUND_2_FILL(\"remixmz-refund-2-fill\", '\\uf065'),\n    REFUND_2_LINE(\"remixmz-refund-2-line\", '\\uf066'),\n    REFUND_FILL(\"remixmz-refund-fill\", '\\uf067'),\n    REFUND_LINE(\"remixmz-refund-line\", '\\uf068'),\n    REGISTERED_FILL(\"remixmz-registered-fill\", '\\uf069'),\n    REGISTERED_LINE(\"remixmz-registered-line\", '\\uf06a'),\n    REMIX_24_HOURS_FILL(\"remixmz-24-hours-fill\", '\\uea01'),\n    REMIX_24_HOURS_LINE(\"remixmz-24-hours-line\", '\\uea02'),\n    REMIX_4K_FILL(\"remixmz-4k-fill\", '\\uea03'),\n    REMIX_4K_LINE(\"remixmz-4k-line\", '\\uea04'),\n    REMIXICON_FILL(\"remixmz-remixicon-fill\", '\\uf06b'),\n    REMIXICON_LINE(\"remixmz-remixicon-line\", '\\uf06c'),\n    REMOTE_CONTROL_2_FILL(\"remixmz-remote-control-2-fill\", '\\uf06d'),\n    REMOTE_CONTROL_2_LINE(\"remixmz-remote-control-2-line\", '\\uf06e'),\n    REMOTE_CONTROL_FILL(\"remixmz-remote-control-fill\", '\\uf06f'),\n    REMOTE_CONTROL_LINE(\"remixmz-remote-control-line\", '\\uf070'),\n    REPEAT_2_FILL(\"remixmz-repeat-2-fill\", '\\uf071'),\n    REPEAT_2_LINE(\"remixmz-repeat-2-line\", '\\uf072'),\n    REPEAT_FILL(\"remixmz-repeat-fill\", '\\uf073'),\n    REPEAT_LINE(\"remixmz-repeat-line\", '\\uf074'),\n    REPEAT_ONE_FILL(\"remixmz-repeat-one-fill\", '\\uf075'),\n    REPEAT_ONE_LINE(\"remixmz-repeat-one-line\", '\\uf076'),\n    REPLY_ALL_FILL(\"remixmz-reply-all-fill\", '\\uf077'),\n    REPLY_ALL_LINE(\"remixmz-reply-all-line\", '\\uf078'),\n    REPLY_FILL(\"remixmz-reply-fill\", '\\uf079'),\n    REPLY_LINE(\"remixmz-reply-line\", '\\uf07a'),\n    RESERVED_FILL(\"remixmz-reserved-fill\", '\\uf07b'),\n    RESERVED_LINE(\"remixmz-reserved-line\", '\\uf07c'),\n    RESTART_FILL(\"remixmz-restart-fill\", '\\uf07f'),\n    RESTART_LINE(\"remixmz-restart-line\", '\\uf080'),\n    RESTAURANT_2_FILL(\"remixmz-restaurant-2-fill\", '\\uf081'),\n    RESTAURANT_2_LINE(\"remixmz-restaurant-2-line\", '\\uf082'),\n    RESTAURANT_FILL(\"remixmz-restaurant-fill\", '\\uf083'),\n    RESTAURANT_LINE(\"remixmz-restaurant-line\", '\\uf084'),\n    REST_TIME_FILL(\"remixmz-rest-time-fill\", '\\uf07d'),\n    REST_TIME_LINE(\"remixmz-rest-time-line\", '\\uf07e'),\n    REWIND_FILL(\"remixmz-rewind-fill\", '\\uf085'),\n    REWIND_LINE(\"remixmz-rewind-line\", '\\uf086'),\n    REWIND_MINI_FILL(\"remixmz-rewind-mini-fill\", '\\uf087'),\n    REWIND_MINI_LINE(\"remixmz-rewind-mini-line\", '\\uf088'),\n    RHYTHM_FILL(\"remixmz-rhythm-fill\", '\\uf089'),\n    RHYTHM_LINE(\"remixmz-rhythm-line\", '\\uf08a'),\n    RIDING_FILL(\"remixmz-riding-fill\", '\\uf08b'),\n    RIDING_LINE(\"remixmz-riding-line\", '\\uf08c'),\n    ROADSTER_FILL(\"remixmz-roadster-fill\", '\\uf08f'),\n    ROADSTER_LINE(\"remixmz-roadster-line\", '\\uf090'),\n    ROAD_MAP_FILL(\"remixmz-road-map-fill\", '\\uf08d'),\n    ROAD_MAP_LINE(\"remixmz-road-map-line\", '\\uf08e'),\n    ROBOT_FILL(\"remixmz-robot-fill\", '\\uf091'),\n    ROBOT_LINE(\"remixmz-robot-line\", '\\uf092'),\n    ROCKET_2_FILL(\"remixmz-rocket-2-fill\", '\\uf093'),\n    ROCKET_2_LINE(\"remixmz-rocket-2-line\", '\\uf094'),\n    ROCKET_FILL(\"remixmz-rocket-fill\", '\\uf095'),\n    ROCKET_LINE(\"remixmz-rocket-line\", '\\uf096'),\n    ROTATE_LOCK_FILL(\"remixmz-rotate-lock-fill\", '\\uf097'),\n    ROTATE_LOCK_LINE(\"remixmz-rotate-lock-line\", '\\uf098'),\n    ROUNDED_CORNER(\"remixmz-rounded-corner\", '\\uf099'),\n    ROUTER_FILL(\"remixmz-router-fill\", '\\uf09c'),\n    ROUTER_LINE(\"remixmz-router-line\", '\\uf09d'),\n    ROUTE_FILL(\"remixmz-route-fill\", '\\uf09a'),\n    ROUTE_LINE(\"remixmz-route-line\", '\\uf09b'),\n    RSS_FILL(\"remixmz-rss-fill\", '\\uf09e'),\n    RSS_LINE(\"remixmz-rss-line\", '\\uf09f'),\n    RULER_2_FILL(\"remixmz-ruler-2-fill\", '\\uf0a0'),\n    RULER_2_LINE(\"remixmz-ruler-2-line\", '\\uf0a1'),\n    RULER_FILL(\"remixmz-ruler-fill\", '\\uf0a2'),\n    RULER_LINE(\"remixmz-ruler-line\", '\\uf0a3'),\n    RUN_FILL(\"remixmz-run-fill\", '\\uf0a4'),\n    RUN_LINE(\"remixmz-run-line\", '\\uf0a5'),\n    SAFARI_FILL(\"remixmz-safari-fill\", '\\uf0a6'),\n    SAFARI_LINE(\"remixmz-safari-line\", '\\uf0a7'),\n    SAFE_2_FILL(\"remixmz-safe-2-fill\", '\\uf0a8'),\n    SAFE_2_LINE(\"remixmz-safe-2-line\", '\\uf0a9'),\n    SAFE_FILL(\"remixmz-safe-fill\", '\\uf0aa'),\n    SAFE_LINE(\"remixmz-safe-line\", '\\uf0ab'),\n    SAILBOAT_FILL(\"remixmz-sailboat-fill\", '\\uf0ac'),\n    SAILBOAT_LINE(\"remixmz-sailboat-line\", '\\uf0ad'),\n    SAVE_2_FILL(\"remixmz-save-2-fill\", '\\uf0ae'),\n    SAVE_2_LINE(\"remixmz-save-2-line\", '\\uf0af'),\n    SAVE_3_FILL(\"remixmz-save-3-fill\", '\\uf0b0'),\n    SAVE_3_LINE(\"remixmz-save-3-line\", '\\uf0b1'),\n    SAVE_FILL(\"remixmz-save-fill\", '\\uf0b2'),\n    SAVE_LINE(\"remixmz-save-line\", '\\uf0b3'),\n    SCALES_2_FILL(\"remixmz-scales-2-fill\", '\\uf0b4'),\n    SCALES_2_LINE(\"remixmz-scales-2-line\", '\\uf0b5'),\n    SCALES_3_FILL(\"remixmz-scales-3-fill\", '\\uf0b6'),\n    SCALES_3_LINE(\"remixmz-scales-3-line\", '\\uf0b7'),\n    SCALES_FILL(\"remixmz-scales-fill\", '\\uf0b8'),\n    SCALES_LINE(\"remixmz-scales-line\", '\\uf0b9'),\n    SCAN_2_FILL(\"remixmz-scan-2-fill\", '\\uf0ba'),\n    SCAN_2_LINE(\"remixmz-scan-2-line\", '\\uf0bb'),\n    SCAN_FILL(\"remixmz-scan-fill\", '\\uf0bc'),\n    SCAN_LINE(\"remixmz-scan-line\", '\\uf0bd'),\n    SCISSORS_2_FILL(\"remixmz-scissors-2-fill\", '\\uf0be'),\n    SCISSORS_2_LINE(\"remixmz-scissors-2-line\", '\\uf0bf'),\n    SCISSORS_CUT_FILL(\"remixmz-scissors-cut-fill\", '\\uf0c0'),\n    SCISSORS_CUT_LINE(\"remixmz-scissors-cut-line\", '\\uf0c1'),\n    SCISSORS_FILL(\"remixmz-scissors-fill\", '\\uf0c2'),\n    SCISSORS_LINE(\"remixmz-scissors-line\", '\\uf0c3'),\n    SCREENSHOT_2_FILL(\"remixmz-screenshot-2-fill\", '\\uf0c4'),\n    SCREENSHOT_2_LINE(\"remixmz-screenshot-2-line\", '\\uf0c5'),\n    SCREENSHOT_FILL(\"remixmz-screenshot-fill\", '\\uf0c6'),\n    SCREENSHOT_LINE(\"remixmz-screenshot-line\", '\\uf0c7'),\n    SD_CARD_FILL(\"remixmz-sd-card-fill\", '\\uf0c8'),\n    SD_CARD_LINE(\"remixmz-sd-card-line\", '\\uf0c9'),\n    SD_CARD_MINI_FILL(\"remixmz-sd-card-mini-fill\", '\\uf0ca'),\n    SD_CARD_MINI_LINE(\"remixmz-sd-card-mini-line\", '\\uf0cb'),\n    SEARCH_2_FILL(\"remixmz-search-2-fill\", '\\uf0cc'),\n    SEARCH_2_LINE(\"remixmz-search-2-line\", '\\uf0cd'),\n    SEARCH_EYE_FILL(\"remixmz-search-eye-fill\", '\\uf0ce'),\n    SEARCH_EYE_LINE(\"remixmz-search-eye-line\", '\\uf0cf'),\n    SEARCH_FILL(\"remixmz-search-fill\", '\\uf0d0'),\n    SEARCH_LINE(\"remixmz-search-line\", '\\uf0d1'),\n    SECURE_PAYMENT_FILL(\"remixmz-secure-payment-fill\", '\\uf0d2'),\n    SECURE_PAYMENT_LINE(\"remixmz-secure-payment-line\", '\\uf0d3'),\n    SEEDLING_FILL(\"remixmz-seedling-fill\", '\\uf0d4'),\n    SEEDLING_LINE(\"remixmz-seedling-line\", '\\uf0d5'),\n    SEND_BACKWARD(\"remixmz-send-backward\", '\\uf0d6'),\n    SEND_PLANE_2_FILL(\"remixmz-send-plane-2-fill\", '\\uf0d7'),\n    SEND_PLANE_2_LINE(\"remixmz-send-plane-2-line\", '\\uf0d8'),\n    SEND_PLANE_FILL(\"remixmz-send-plane-fill\", '\\uf0d9'),\n    SEND_PLANE_LINE(\"remixmz-send-plane-line\", '\\uf0da'),\n    SEND_TO_BACK(\"remixmz-send-to-back\", '\\uf0db'),\n    SENSOR_FILL(\"remixmz-sensor-fill\", '\\uf0dc'),\n    SENSOR_LINE(\"remixmz-sensor-line\", '\\uf0dd'),\n    SEPARATOR(\"remixmz-separator\", '\\uf0de'),\n    SERVER_FILL(\"remixmz-server-fill\", '\\uf0df'),\n    SERVER_LINE(\"remixmz-server-line\", '\\uf0e0'),\n    SERVICE_FILL(\"remixmz-service-fill\", '\\uf0e1'),\n    SERVICE_LINE(\"remixmz-service-line\", '\\uf0e2'),\n    SETTINGS_2_FILL(\"remixmz-settings-2-fill\", '\\uf0e3'),\n    SETTINGS_2_LINE(\"remixmz-settings-2-line\", '\\uf0e4'),\n    SETTINGS_3_FILL(\"remixmz-settings-3-fill\", '\\uf0e5'),\n    SETTINGS_3_LINE(\"remixmz-settings-3-line\", '\\uf0e6'),\n    SETTINGS_4_FILL(\"remixmz-settings-4-fill\", '\\uf0e7'),\n    SETTINGS_4_LINE(\"remixmz-settings-4-line\", '\\uf0e8'),\n    SETTINGS_5_FILL(\"remixmz-settings-5-fill\", '\\uf0e9'),\n    SETTINGS_5_LINE(\"remixmz-settings-5-line\", '\\uf0ea'),\n    SETTINGS_6_FILL(\"remixmz-settings-6-fill\", '\\uf0eb'),\n    SETTINGS_6_LINE(\"remixmz-settings-6-line\", '\\uf0ec'),\n    SETTINGS_FILL(\"remixmz-settings-fill\", '\\uf0ed'),\n    SETTINGS_LINE(\"remixmz-settings-line\", '\\uf0ee'),\n    SHAPE_2_FILL(\"remixmz-shape-2-fill\", '\\uf0ef'),\n    SHAPE_2_LINE(\"remixmz-shape-2-line\", '\\uf0f0'),\n    SHAPE_FILL(\"remixmz-shape-fill\", '\\uf0f1'),\n    SHAPE_LINE(\"remixmz-shape-line\", '\\uf0f2'),\n    SHARE_BOX_FILL(\"remixmz-share-box-fill\", '\\uf0f3'),\n    SHARE_BOX_LINE(\"remixmz-share-box-line\", '\\uf0f4'),\n    SHARE_CIRCLE_FILL(\"remixmz-share-circle-fill\", '\\uf0f5'),\n    SHARE_CIRCLE_LINE(\"remixmz-share-circle-line\", '\\uf0f6'),\n    SHARE_FILL(\"remixmz-share-fill\", '\\uf0f7'),\n    SHARE_FORWARD_2_FILL(\"remixmz-share-forward-2-fill\", '\\uf0f8'),\n    SHARE_FORWARD_2_LINE(\"remixmz-share-forward-2-line\", '\\uf0f9'),\n    SHARE_FORWARD_BOX_FILL(\"remixmz-share-forward-box-fill\", '\\uf0fa'),\n    SHARE_FORWARD_BOX_LINE(\"remixmz-share-forward-box-line\", '\\uf0fb'),\n    SHARE_FORWARD_FILL(\"remixmz-share-forward-fill\", '\\uf0fc'),\n    SHARE_FORWARD_LINE(\"remixmz-share-forward-line\", '\\uf0fd'),\n    SHARE_LINE(\"remixmz-share-line\", '\\uf0fe'),\n    SHIELD_CHECK_FILL(\"remixmz-shield-check-fill\", '\\uf0ff'),\n    SHIELD_CHECK_LINE(\"remixmz-shield-check-line\", '\\uf100'),\n    SHIELD_CROSS_FILL(\"remixmz-shield-cross-fill\", '\\uf101'),\n    SHIELD_CROSS_LINE(\"remixmz-shield-cross-line\", '\\uf102'),\n    SHIELD_FILL(\"remixmz-shield-fill\", '\\uf103'),\n    SHIELD_FLASH_FILL(\"remixmz-shield-flash-fill\", '\\uf104'),\n    SHIELD_FLASH_LINE(\"remixmz-shield-flash-line\", '\\uf105'),\n    SHIELD_KEYHOLE_FILL(\"remixmz-shield-keyhole-fill\", '\\uf106'),\n    SHIELD_KEYHOLE_LINE(\"remixmz-shield-keyhole-line\", '\\uf107'),\n    SHIELD_LINE(\"remixmz-shield-line\", '\\uf108'),\n    SHIELD_STAR_FILL(\"remixmz-shield-star-fill\", '\\uf109'),\n    SHIELD_STAR_LINE(\"remixmz-shield-star-line\", '\\uf10a'),\n    SHIELD_USER_FILL(\"remixmz-shield-user-fill\", '\\uf10b'),\n    SHIELD_USER_LINE(\"remixmz-shield-user-line\", '\\uf10c'),\n    SHIP_2_FILL(\"remixmz-ship-2-fill\", '\\uf10d'),\n    SHIP_2_LINE(\"remixmz-ship-2-line\", '\\uf10e'),\n    SHIP_FILL(\"remixmz-ship-fill\", '\\uf10f'),\n    SHIP_LINE(\"remixmz-ship-line\", '\\uf110'),\n    SHIRT_FILL(\"remixmz-shirt-fill\", '\\uf111'),\n    SHIRT_LINE(\"remixmz-shirt-line\", '\\uf112'),\n    SHOPPING_BAG_2_FILL(\"remixmz-shopping-bag-2-fill\", '\\uf113'),\n    SHOPPING_BAG_2_LINE(\"remixmz-shopping-bag-2-line\", '\\uf114'),\n    SHOPPING_BAG_3_FILL(\"remixmz-shopping-bag-3-fill\", '\\uf115'),\n    SHOPPING_BAG_3_LINE(\"remixmz-shopping-bag-3-line\", '\\uf116'),\n    SHOPPING_BAG_FILL(\"remixmz-shopping-bag-fill\", '\\uf117'),\n    SHOPPING_BAG_LINE(\"remixmz-shopping-bag-line\", '\\uf118'),\n    SHOPPING_BASKET_2_FILL(\"remixmz-shopping-basket-2-fill\", '\\uf119'),\n    SHOPPING_BASKET_2_LINE(\"remixmz-shopping-basket-2-line\", '\\uf11a'),\n    SHOPPING_BASKET_FILL(\"remixmz-shopping-basket-fill\", '\\uf11b'),\n    SHOPPING_BASKET_LINE(\"remixmz-shopping-basket-line\", '\\uf11c'),\n    SHOPPING_CART_2_FILL(\"remixmz-shopping-cart-2-fill\", '\\uf11d'),\n    SHOPPING_CART_2_LINE(\"remixmz-shopping-cart-2-line\", '\\uf11e'),\n    SHOPPING_CART_FILL(\"remixmz-shopping-cart-fill\", '\\uf11f'),\n    SHOPPING_CART_LINE(\"remixmz-shopping-cart-line\", '\\uf120'),\n    SHOWERS_FILL(\"remixmz-showers-fill\", '\\uf121'),\n    SHOWERS_LINE(\"remixmz-showers-line\", '\\uf122'),\n    SHUFFLE_FILL(\"remixmz-shuffle-fill\", '\\uf123'),\n    SHUFFLE_LINE(\"remixmz-shuffle-line\", '\\uf124'),\n    SHUT_DOWN_FILL(\"remixmz-shut-down-fill\", '\\uf125'),\n    SHUT_DOWN_LINE(\"remixmz-shut-down-line\", '\\uf126'),\n    SIDE_BAR_FILL(\"remixmz-side-bar-fill\", '\\uf127'),\n    SIDE_BAR_LINE(\"remixmz-side-bar-line\", '\\uf128'),\n    SIGNAL_TOWER_FILL(\"remixmz-signal-tower-fill\", '\\uf129'),\n    SIGNAL_TOWER_LINE(\"remixmz-signal-tower-line\", '\\uf12a'),\n    SIGNAL_WIFI_1_FILL(\"remixmz-signal-wifi-1-fill\", '\\uf12b'),\n    SIGNAL_WIFI_1_LINE(\"remixmz-signal-wifi-1-line\", '\\uf12c'),\n    SIGNAL_WIFI_2_FILL(\"remixmz-signal-wifi-2-fill\", '\\uf12d'),\n    SIGNAL_WIFI_2_LINE(\"remixmz-signal-wifi-2-line\", '\\uf12e'),\n    SIGNAL_WIFI_3_FILL(\"remixmz-signal-wifi-3-fill\", '\\uf12f'),\n    SIGNAL_WIFI_3_LINE(\"remixmz-signal-wifi-3-line\", '\\uf130'),\n    SIGNAL_WIFI_ERROR_FILL(\"remixmz-signal-wifi-error-fill\", '\\uf131'),\n    SIGNAL_WIFI_ERROR_LINE(\"remixmz-signal-wifi-error-line\", '\\uf132'),\n    SIGNAL_WIFI_FILL(\"remixmz-signal-wifi-fill\", '\\uf133'),\n    SIGNAL_WIFI_LINE(\"remixmz-signal-wifi-line\", '\\uf134'),\n    SIGNAL_WIFI_OFF_FILL(\"remixmz-signal-wifi-off-fill\", '\\uf135'),\n    SIGNAL_WIFI_OFF_LINE(\"remixmz-signal-wifi-off-line\", '\\uf136'),\n    SIM_CARD_2_FILL(\"remixmz-sim-card-2-fill\", '\\uf137'),\n    SIM_CARD_2_LINE(\"remixmz-sim-card-2-line\", '\\uf138'),\n    SIM_CARD_FILL(\"remixmz-sim-card-fill\", '\\uf139'),\n    SIM_CARD_LINE(\"remixmz-sim-card-line\", '\\uf13a'),\n    SINGLE_QUOTES_L(\"remixmz-single-quotes-l\", '\\uf13b'),\n    SINGLE_QUOTES_R(\"remixmz-single-quotes-r\", '\\uf13c'),\n    SIP_FILL(\"remixmz-sip-fill\", '\\uf13d'),\n    SIP_LINE(\"remixmz-sip-line\", '\\uf13e'),\n    SKIP_BACK_FILL(\"remixmz-skip-back-fill\", '\\uf13f'),\n    SKIP_BACK_LINE(\"remixmz-skip-back-line\", '\\uf140'),\n    SKIP_BACK_MINI_FILL(\"remixmz-skip-back-mini-fill\", '\\uf141'),\n    SKIP_BACK_MINI_LINE(\"remixmz-skip-back-mini-line\", '\\uf142'),\n    SKIP_FORWARD_FILL(\"remixmz-skip-forward-fill\", '\\uf143'),\n    SKIP_FORWARD_LINE(\"remixmz-skip-forward-line\", '\\uf144'),\n    SKIP_FORWARD_MINI_FILL(\"remixmz-skip-forward-mini-fill\", '\\uf145'),\n    SKIP_FORWARD_MINI_LINE(\"remixmz-skip-forward-mini-line\", '\\uf146'),\n    SKULL_2_FILL(\"remixmz-skull-2-fill\", '\\uf147'),\n    SKULL_2_LINE(\"remixmz-skull-2-line\", '\\uf148'),\n    SKULL_FILL(\"remixmz-skull-fill\", '\\uf149'),\n    SKULL_LINE(\"remixmz-skull-line\", '\\uf14a'),\n    SKYPE_FILL(\"remixmz-skype-fill\", '\\uf14b'),\n    SKYPE_LINE(\"remixmz-skype-line\", '\\uf14c'),\n    SLACK_FILL(\"remixmz-slack-fill\", '\\uf14d'),\n    SLACK_LINE(\"remixmz-slack-line\", '\\uf14e'),\n    SLICE_FILL(\"remixmz-slice-fill\", '\\uf14f'),\n    SLICE_LINE(\"remixmz-slice-line\", '\\uf150'),\n    SLIDESHOW_2_FILL(\"remixmz-slideshow-2-fill\", '\\uf151'),\n    SLIDESHOW_2_LINE(\"remixmz-slideshow-2-line\", '\\uf152'),\n    SLIDESHOW_3_FILL(\"remixmz-slideshow-3-fill\", '\\uf153'),\n    SLIDESHOW_3_LINE(\"remixmz-slideshow-3-line\", '\\uf154'),\n    SLIDESHOW_4_FILL(\"remixmz-slideshow-4-fill\", '\\uf155'),\n    SLIDESHOW_4_LINE(\"remixmz-slideshow-4-line\", '\\uf156'),\n    SLIDESHOW_FILL(\"remixmz-slideshow-fill\", '\\uf157'),\n    SLIDESHOW_LINE(\"remixmz-slideshow-line\", '\\uf158'),\n    SMARTPHONE_FILL(\"remixmz-smartphone-fill\", '\\uf159'),\n    SMARTPHONE_LINE(\"remixmz-smartphone-line\", '\\uf15a'),\n    SNAPCHAT_FILL(\"remixmz-snapchat-fill\", '\\uf15b'),\n    SNAPCHAT_LINE(\"remixmz-snapchat-line\", '\\uf15c'),\n    SNOWY_FILL(\"remixmz-snowy-fill\", '\\uf15d'),\n    SNOWY_LINE(\"remixmz-snowy-line\", '\\uf15e'),\n    SORT_ASC(\"remixmz-sort-asc\", '\\uf15f'),\n    SORT_DESC(\"remixmz-sort-desc\", '\\uf160'),\n    SOUNDCLOUD_FILL(\"remixmz-soundcloud-fill\", '\\uf163'),\n    SOUNDCLOUD_LINE(\"remixmz-soundcloud-line\", '\\uf164'),\n    SOUND_MODULE_FILL(\"remixmz-sound-module-fill\", '\\uf161'),\n    SOUND_MODULE_LINE(\"remixmz-sound-module-line\", '\\uf162'),\n    SPACE(\"remixmz-space\", '\\uf167'),\n    SPACE_SHIP_FILL(\"remixmz-space-ship-fill\", '\\uf165'),\n    SPACE_SHIP_LINE(\"remixmz-space-ship-line\", '\\uf166'),\n    SPAM_2_FILL(\"remixmz-spam-2-fill\", '\\uf168'),\n    SPAM_2_LINE(\"remixmz-spam-2-line\", '\\uf169'),\n    SPAM_3_FILL(\"remixmz-spam-3-fill\", '\\uf16a'),\n    SPAM_3_LINE(\"remixmz-spam-3-line\", '\\uf16b'),\n    SPAM_FILL(\"remixmz-spam-fill\", '\\uf16c'),\n    SPAM_LINE(\"remixmz-spam-line\", '\\uf16d'),\n    SPEAKER_2_FILL(\"remixmz-speaker-2-fill\", '\\uf16e'),\n    SPEAKER_2_LINE(\"remixmz-speaker-2-line\", '\\uf16f'),\n    SPEAKER_3_FILL(\"remixmz-speaker-3-fill\", '\\uf170'),\n    SPEAKER_3_LINE(\"remixmz-speaker-3-line\", '\\uf171'),\n    SPEAKER_FILL(\"remixmz-speaker-fill\", '\\uf172'),\n    SPEAKER_LINE(\"remixmz-speaker-line\", '\\uf173'),\n    SPECTRUM_FILL(\"remixmz-spectrum-fill\", '\\uf174'),\n    SPECTRUM_LINE(\"remixmz-spectrum-line\", '\\uf175'),\n    SPEED_FILL(\"remixmz-speed-fill\", '\\uf176'),\n    SPEED_LINE(\"remixmz-speed-line\", '\\uf177'),\n    SPEED_MINI_FILL(\"remixmz-speed-mini-fill\", '\\uf178'),\n    SPEED_MINI_LINE(\"remixmz-speed-mini-line\", '\\uf179'),\n    SPLIT_CELLS_HORIZONTAL(\"remixmz-split-cells-horizontal\", '\\uf17a'),\n    SPLIT_CELLS_VERTICAL(\"remixmz-split-cells-vertical\", '\\uf17b'),\n    SPOTIFY_FILL(\"remixmz-spotify-fill\", '\\uf17c'),\n    SPOTIFY_LINE(\"remixmz-spotify-line\", '\\uf17d'),\n    SPY_FILL(\"remixmz-spy-fill\", '\\uf17e'),\n    SPY_LINE(\"remixmz-spy-line\", '\\uf17f'),\n    STACKSHARE_FILL(\"remixmz-stackshare-fill\", '\\uf184'),\n    STACKSHARE_LINE(\"remixmz-stackshare-line\", '\\uf185'),\n    STACK_FILL(\"remixmz-stack-fill\", '\\uf180'),\n    STACK_LINE(\"remixmz-stack-line\", '\\uf181'),\n    STACK_OVERFLOW_FILL(\"remixmz-stack-overflow-fill\", '\\uf182'),\n    STACK_OVERFLOW_LINE(\"remixmz-stack-overflow-line\", '\\uf183'),\n    STAR_FILL(\"remixmz-star-fill\", '\\uf186'),\n    STAR_HALF_FILL(\"remixmz-star-half-fill\", '\\uf187'),\n    STAR_HALF_LINE(\"remixmz-star-half-line\", '\\uf188'),\n    STAR_HALF_S_FILL(\"remixmz-star-half-s-fill\", '\\uf189'),\n    STAR_HALF_S_LINE(\"remixmz-star-half-s-line\", '\\uf18a'),\n    STAR_LINE(\"remixmz-star-line\", '\\uf18b'),\n    STAR_SMILE_FILL(\"remixmz-star-smile-fill\", '\\uf18e'),\n    STAR_SMILE_LINE(\"remixmz-star-smile-line\", '\\uf18f'),\n    STAR_S_FILL(\"remixmz-star-s-fill\", '\\uf18c'),\n    STAR_S_LINE(\"remixmz-star-s-line\", '\\uf18d'),\n    STEAM_FILL(\"remixmz-steam-fill\", '\\uf190'),\n    STEAM_LINE(\"remixmz-steam-line\", '\\uf191'),\n    STEERING_2_FILL(\"remixmz-steering-2-fill\", '\\uf192'),\n    STEERING_2_LINE(\"remixmz-steering-2-line\", '\\uf193'),\n    STEERING_FILL(\"remixmz-steering-fill\", '\\uf194'),\n    STEERING_LINE(\"remixmz-steering-line\", '\\uf195'),\n    STETHOSCOPE_FILL(\"remixmz-stethoscope-fill\", '\\uf196'),\n    STETHOSCOPE_LINE(\"remixmz-stethoscope-line\", '\\uf197'),\n    STICKY_NOTE_2_FILL(\"remixmz-sticky-note-2-fill\", '\\uf198'),\n    STICKY_NOTE_2_LINE(\"remixmz-sticky-note-2-line\", '\\uf199'),\n    STICKY_NOTE_FILL(\"remixmz-sticky-note-fill\", '\\uf19a'),\n    STICKY_NOTE_LINE(\"remixmz-sticky-note-line\", '\\uf19b'),\n    STOCK_FILL(\"remixmz-stock-fill\", '\\uf19c'),\n    STOCK_LINE(\"remixmz-stock-line\", '\\uf19d'),\n    STOP_CIRCLE_FILL(\"remixmz-stop-circle-fill\", '\\uf19e'),\n    STOP_CIRCLE_LINE(\"remixmz-stop-circle-line\", '\\uf19f'),\n    STOP_FILL(\"remixmz-stop-fill\", '\\uf1a0'),\n    STOP_LINE(\"remixmz-stop-line\", '\\uf1a1'),\n    STOP_MINI_FILL(\"remixmz-stop-mini-fill\", '\\uf1a2'),\n    STOP_MINI_LINE(\"remixmz-stop-mini-line\", '\\uf1a3'),\n    STORE_2_FILL(\"remixmz-store-2-fill\", '\\uf1a4'),\n    STORE_2_LINE(\"remixmz-store-2-line\", '\\uf1a5'),\n    STORE_3_FILL(\"remixmz-store-3-fill\", '\\uf1a6'),\n    STORE_3_LINE(\"remixmz-store-3-line\", '\\uf1a7'),\n    STORE_FILL(\"remixmz-store-fill\", '\\uf1a8'),\n    STORE_LINE(\"remixmz-store-line\", '\\uf1a9'),\n    STRIKETHROUGH(\"remixmz-strikethrough\", '\\uf1ab'),\n    STRIKETHROUGH_2(\"remixmz-strikethrough-2\", '\\uf1aa'),\n    SUBSCRIPT(\"remixmz-subscript\", '\\uf1ad'),\n    SUBSCRIPT_2(\"remixmz-subscript-2\", '\\uf1ac'),\n    SUBTRACT_FILL(\"remixmz-subtract-fill\", '\\uf1ae'),\n    SUBTRACT_LINE(\"remixmz-subtract-line\", '\\uf1af'),\n    SUBWAY_FILL(\"remixmz-subway-fill\", '\\uf1b0'),\n    SUBWAY_LINE(\"remixmz-subway-line\", '\\uf1b1'),\n    SUBWAY_WIFI_FILL(\"remixmz-subway-wifi-fill\", '\\uf1b2'),\n    SUBWAY_WIFI_LINE(\"remixmz-subway-wifi-line\", '\\uf1b3'),\n    SUITCASE_2_FILL(\"remixmz-suitcase-2-fill\", '\\uf1b4'),\n    SUITCASE_2_LINE(\"remixmz-suitcase-2-line\", '\\uf1b5'),\n    SUITCASE_3_FILL(\"remixmz-suitcase-3-fill\", '\\uf1b6'),\n    SUITCASE_3_LINE(\"remixmz-suitcase-3-line\", '\\uf1b7'),\n    SUITCASE_FILL(\"remixmz-suitcase-fill\", '\\uf1b8'),\n    SUITCASE_LINE(\"remixmz-suitcase-line\", '\\uf1b9'),\n    SUN_CLOUDY_FILL(\"remixmz-sun-cloudy-fill\", '\\uf1ba'),\n    SUN_CLOUDY_LINE(\"remixmz-sun-cloudy-line\", '\\uf1bb'),\n    SUN_FILL(\"remixmz-sun-fill\", '\\uf1bc'),\n    SUN_FOGGY_FILL(\"remixmz-sun-foggy-fill\", '\\uf1bd'),\n    SUN_FOGGY_LINE(\"remixmz-sun-foggy-line\", '\\uf1be'),\n    SUN_LINE(\"remixmz-sun-line\", '\\uf1bf'),\n    SUPERSCRIPT(\"remixmz-superscript\", '\\uf1c1'),\n    SUPERSCRIPT_2(\"remixmz-superscript-2\", '\\uf1c0'),\n    SURGICAL_MASK_FILL(\"remixmz-surgical-mask-fill\", '\\uf1c2'),\n    SURGICAL_MASK_LINE(\"remixmz-surgical-mask-line\", '\\uf1c3'),\n    SURROUND_SOUND_FILL(\"remixmz-surround-sound-fill\", '\\uf1c4'),\n    SURROUND_SOUND_LINE(\"remixmz-surround-sound-line\", '\\uf1c5'),\n    SURVEY_FILL(\"remixmz-survey-fill\", '\\uf1c6'),\n    SURVEY_LINE(\"remixmz-survey-line\", '\\uf1c7'),\n    SWAP_BOX_FILL(\"remixmz-swap-box-fill\", '\\uf1c8'),\n    SWAP_BOX_LINE(\"remixmz-swap-box-line\", '\\uf1c9'),\n    SWAP_FILL(\"remixmz-swap-fill\", '\\uf1ca'),\n    SWAP_LINE(\"remixmz-swap-line\", '\\uf1cb'),\n    SWITCH_FILL(\"remixmz-switch-fill\", '\\uf1cc'),\n    SWITCH_LINE(\"remixmz-switch-line\", '\\uf1cd'),\n    SWORD_FILL(\"remixmz-sword-fill\", '\\uf1ce'),\n    SWORD_LINE(\"remixmz-sword-line\", '\\uf1cf'),\n    SYRINGE_FILL(\"remixmz-syringe-fill\", '\\uf1d0'),\n    SYRINGE_LINE(\"remixmz-syringe-line\", '\\uf1d1'),\n    TABLET_FILL(\"remixmz-tablet-fill\", '\\uf1df'),\n    TABLET_LINE(\"remixmz-tablet-line\", '\\uf1e0'),\n    TABLE_2(\"remixmz-table-2\", '\\uf1da'),\n    TABLE_ALT_FILL(\"remixmz-table-alt-fill\", '\\uf1db'),\n    TABLE_ALT_LINE(\"remixmz-table-alt-line\", '\\uf1dc'),\n    TABLE_FILL(\"remixmz-table-fill\", '\\uf1dd'),\n    TABLE_LINE(\"remixmz-table-line\", '\\uf1de'),\n    TAKEAWAY_FILL(\"remixmz-takeaway-fill\", '\\uf1e1'),\n    TAKEAWAY_LINE(\"remixmz-takeaway-line\", '\\uf1e2'),\n    TAOBAO_FILL(\"remixmz-taobao-fill\", '\\uf1e3'),\n    TAOBAO_LINE(\"remixmz-taobao-line\", '\\uf1e4'),\n    TAPE_FILL(\"remixmz-tape-fill\", '\\uf1e5'),\n    TAPE_LINE(\"remixmz-tape-line\", '\\uf1e6'),\n    TASK_FILL(\"remixmz-task-fill\", '\\uf1e7'),\n    TASK_LINE(\"remixmz-task-line\", '\\uf1e8'),\n    TAXI_FILL(\"remixmz-taxi-fill\", '\\uf1e9'),\n    TAXI_LINE(\"remixmz-taxi-line\", '\\uf1ea'),\n    TAXI_WIFI_FILL(\"remixmz-taxi-wifi-fill\", '\\uf1eb'),\n    TAXI_WIFI_LINE(\"remixmz-taxi-wifi-line\", '\\uf1ec'),\n    TEAM_FILL(\"remixmz-team-fill\", '\\uf1ed'),\n    TEAM_LINE(\"remixmz-team-line\", '\\uf1ee'),\n    TELEGRAM_FILL(\"remixmz-telegram-fill\", '\\uf1ef'),\n    TELEGRAM_LINE(\"remixmz-telegram-line\", '\\uf1f0'),\n    TEMP_COLD_FILL(\"remixmz-temp-cold-fill\", '\\uf1f1'),\n    TEMP_COLD_LINE(\"remixmz-temp-cold-line\", '\\uf1f2'),\n    TEMP_HOT_FILL(\"remixmz-temp-hot-fill\", '\\uf1f3'),\n    TEMP_HOT_LINE(\"remixmz-temp-hot-line\", '\\uf1f4'),\n    TERMINAL_BOX_FILL(\"remixmz-terminal-box-fill\", '\\uf1f5'),\n    TERMINAL_BOX_LINE(\"remixmz-terminal-box-line\", '\\uf1f6'),\n    TERMINAL_FILL(\"remixmz-terminal-fill\", '\\uf1f7'),\n    TERMINAL_LINE(\"remixmz-terminal-line\", '\\uf1f8'),\n    TERMINAL_WINDOW_FILL(\"remixmz-terminal-window-fill\", '\\uf1f9'),\n    TERMINAL_WINDOW_LINE(\"remixmz-terminal-window-line\", '\\uf1fa'),\n    TEST_TUBE_FILL(\"remixmz-test-tube-fill\", '\\uf1fb'),\n    TEST_TUBE_LINE(\"remixmz-test-tube-line\", '\\uf1fc'),\n    TEXT(\"remixmz-text\", '\\uf201'),\n    TEXT_DIRECTION_L(\"remixmz-text-direction-l\", '\\uf1fd'),\n    TEXT_DIRECTION_R(\"remixmz-text-direction-r\", '\\uf1fe'),\n    TEXT_SPACING(\"remixmz-text-spacing\", '\\uf1ff'),\n    TEXT_WRAP(\"remixmz-text-wrap\", '\\uf200'),\n    THERMOMETER_FILL(\"remixmz-thermometer-fill\", '\\uf202'),\n    THERMOMETER_LINE(\"remixmz-thermometer-line\", '\\uf203'),\n    THUMB_DOWN_FILL(\"remixmz-thumb-down-fill\", '\\uf204'),\n    THUMB_DOWN_LINE(\"remixmz-thumb-down-line\", '\\uf205'),\n    THUMB_UP_FILL(\"remixmz-thumb-up-fill\", '\\uf206'),\n    THUMB_UP_LINE(\"remixmz-thumb-up-line\", '\\uf207'),\n    THUNDERSTORMS_FILL(\"remixmz-thunderstorms-fill\", '\\uf208'),\n    THUNDERSTORMS_LINE(\"remixmz-thunderstorms-line\", '\\uf209'),\n    TICKET_2_FILL(\"remixmz-ticket-2-fill\", '\\uf20a'),\n    TICKET_2_LINE(\"remixmz-ticket-2-line\", '\\uf20b'),\n    TICKET_FILL(\"remixmz-ticket-fill\", '\\uf20c'),\n    TICKET_LINE(\"remixmz-ticket-line\", '\\uf20d'),\n    TIMER_2_FILL(\"remixmz-timer-2-fill\", '\\uf210'),\n    TIMER_2_LINE(\"remixmz-timer-2-line\", '\\uf211'),\n    TIMER_FILL(\"remixmz-timer-fill\", '\\uf212'),\n    TIMER_FLASH_FILL(\"remixmz-timer-flash-fill\", '\\uf213'),\n    TIMER_FLASH_LINE(\"remixmz-timer-flash-line\", '\\uf214'),\n    TIMER_LINE(\"remixmz-timer-line\", '\\uf215'),\n    TIME_FILL(\"remixmz-time-fill\", '\\uf20e'),\n    TIME_LINE(\"remixmz-time-line\", '\\uf20f'),\n    TODO_FILL(\"remixmz-todo-fill\", '\\uf216'),\n    TODO_LINE(\"remixmz-todo-line\", '\\uf217'),\n    TOGGLE_FILL(\"remixmz-toggle-fill\", '\\uf218'),\n    TOGGLE_LINE(\"remixmz-toggle-line\", '\\uf219'),\n    TOOLS_FILL(\"remixmz-tools-fill\", '\\uf21a'),\n    TOOLS_LINE(\"remixmz-tools-line\", '\\uf21b'),\n    TORNADO_FILL(\"remixmz-tornado-fill\", '\\uf21c'),\n    TORNADO_LINE(\"remixmz-tornado-line\", '\\uf21d'),\n    TRADEMARK_FILL(\"remixmz-trademark-fill\", '\\uf21e'),\n    TRADEMARK_LINE(\"remixmz-trademark-line\", '\\uf21f'),\n    TRAFFIC_LIGHT_FILL(\"remixmz-traffic-light-fill\", '\\uf220'),\n    TRAFFIC_LIGHT_LINE(\"remixmz-traffic-light-line\", '\\uf221'),\n    TRAIN_FILL(\"remixmz-train-fill\", '\\uf222'),\n    TRAIN_LINE(\"remixmz-train-line\", '\\uf223'),\n    TRAIN_WIFI_FILL(\"remixmz-train-wifi-fill\", '\\uf224'),\n    TRAIN_WIFI_LINE(\"remixmz-train-wifi-line\", '\\uf225'),\n    TRANSLATE(\"remixmz-translate\", '\\uf227'),\n    TRANSLATE_2(\"remixmz-translate-2\", '\\uf226'),\n    TRAVESTI_FILL(\"remixmz-travesti-fill\", '\\uf228'),\n    TRAVESTI_LINE(\"remixmz-travesti-line\", '\\uf229'),\n    TREASURE_MAP_FILL(\"remixmz-treasure-map-fill\", '\\uf22a'),\n    TREASURE_MAP_LINE(\"remixmz-treasure-map-line\", '\\uf22b'),\n    TRELLO_FILL(\"remixmz-trello-fill\", '\\uf22c'),\n    TRELLO_LINE(\"remixmz-trello-line\", '\\uf22d'),\n    TROPHY_FILL(\"remixmz-trophy-fill\", '\\uf22e'),\n    TROPHY_LINE(\"remixmz-trophy-line\", '\\uf22f'),\n    TRUCK_FILL(\"remixmz-truck-fill\", '\\uf230'),\n    TRUCK_LINE(\"remixmz-truck-line\", '\\uf231'),\n    TUMBLR_FILL(\"remixmz-tumblr-fill\", '\\uf232'),\n    TUMBLR_LINE(\"remixmz-tumblr-line\", '\\uf233'),\n    TV_2_FILL(\"remixmz-tv-2-fill\", '\\uf234'),\n    TV_2_LINE(\"remixmz-tv-2-line\", '\\uf235'),\n    TV_FILL(\"remixmz-tv-fill\", '\\uf236'),\n    TV_LINE(\"remixmz-tv-line\", '\\uf237'),\n    TWITCH_FILL(\"remixmz-twitch-fill\", '\\uf238'),\n    TWITCH_LINE(\"remixmz-twitch-line\", '\\uf239'),\n    TWITTER_FILL(\"remixmz-twitter-fill\", '\\uf23a'),\n    TWITTER_LINE(\"remixmz-twitter-line\", '\\uf23b'),\n    TYPHOON_FILL(\"remixmz-typhoon-fill\", '\\uf23c'),\n    TYPHOON_LINE(\"remixmz-typhoon-line\", '\\uf23d'),\n    T_BOX_FILL(\"remixmz-t-box-fill\", '\\uf1d2'),\n    T_BOX_LINE(\"remixmz-t-box-line\", '\\uf1d3'),\n    T_SHIRT_2_FILL(\"remixmz-t-shirt-2-fill\", '\\uf1d4'),\n    T_SHIRT_2_LINE(\"remixmz-t-shirt-2-line\", '\\uf1d5'),\n    T_SHIRT_AIR_FILL(\"remixmz-t-shirt-air-fill\", '\\uf1d6'),\n    T_SHIRT_AIR_LINE(\"remixmz-t-shirt-air-line\", '\\uf1d7'),\n    T_SHIRT_FILL(\"remixmz-t-shirt-fill\", '\\uf1d8'),\n    T_SHIRT_LINE(\"remixmz-t-shirt-line\", '\\uf1d9'),\n    UBUNTU_FILL(\"remixmz-ubuntu-fill\", '\\uf240'),\n    UBUNTU_LINE(\"remixmz-ubuntu-line\", '\\uf241'),\n    UMBRELLA_FILL(\"remixmz-umbrella-fill\", '\\uf242'),\n    UMBRELLA_LINE(\"remixmz-umbrella-line\", '\\uf243'),\n    UNDERLINE(\"remixmz-underline\", '\\uf244'),\n    UNINSTALL_FILL(\"remixmz-uninstall-fill\", '\\uf245'),\n    UNINSTALL_LINE(\"remixmz-uninstall-line\", '\\uf246'),\n    UNSPLASH_FILL(\"remixmz-unsplash-fill\", '\\uf247'),\n    UNSPLASH_LINE(\"remixmz-unsplash-line\", '\\uf248'),\n    UPLOAD_2_FILL(\"remixmz-upload-2-fill\", '\\uf249'),\n    UPLOAD_2_LINE(\"remixmz-upload-2-line\", '\\uf24a'),\n    UPLOAD_CLOUD_2_FILL(\"remixmz-upload-cloud-2-fill\", '\\uf24b'),\n    UPLOAD_CLOUD_2_LINE(\"remixmz-upload-cloud-2-line\", '\\uf24c'),\n    UPLOAD_CLOUD_FILL(\"remixmz-upload-cloud-fill\", '\\uf24d'),\n    UPLOAD_CLOUD_LINE(\"remixmz-upload-cloud-line\", '\\uf24e'),\n    UPLOAD_FILL(\"remixmz-upload-fill\", '\\uf24f'),\n    UPLOAD_LINE(\"remixmz-upload-line\", '\\uf250'),\n    USB_FILL(\"remixmz-usb-fill\", '\\uf251'),\n    USB_LINE(\"remixmz-usb-line\", '\\uf252'),\n    USER_2_FILL(\"remixmz-user-2-fill\", '\\uf253'),\n    USER_2_LINE(\"remixmz-user-2-line\", '\\uf254'),\n    USER_3_FILL(\"remixmz-user-3-fill\", '\\uf255'),\n    USER_3_LINE(\"remixmz-user-3-line\", '\\uf256'),\n    USER_4_FILL(\"remixmz-user-4-fill\", '\\uf257'),\n    USER_4_LINE(\"remixmz-user-4-line\", '\\uf258'),\n    USER_5_FILL(\"remixmz-user-5-fill\", '\\uf259'),\n    USER_5_LINE(\"remixmz-user-5-line\", '\\uf25a'),\n    USER_6_FILL(\"remixmz-user-6-fill\", '\\uf25b'),\n    USER_6_LINE(\"remixmz-user-6-line\", '\\uf25c'),\n    USER_ADD_FILL(\"remixmz-user-add-fill\", '\\uf25d'),\n    USER_ADD_LINE(\"remixmz-user-add-line\", '\\uf25e'),\n    USER_FILL(\"remixmz-user-fill\", '\\uf25f'),\n    USER_FOLLOW_FILL(\"remixmz-user-follow-fill\", '\\uf260'),\n    USER_FOLLOW_LINE(\"remixmz-user-follow-line\", '\\uf261'),\n    USER_HEART_FILL(\"remixmz-user-heart-fill\", '\\uf262'),\n    USER_HEART_LINE(\"remixmz-user-heart-line\", '\\uf263'),\n    USER_LINE(\"remixmz-user-line\", '\\uf264'),\n    USER_LOCATION_FILL(\"remixmz-user-location-fill\", '\\uf265'),\n    USER_LOCATION_LINE(\"remixmz-user-location-line\", '\\uf266'),\n    USER_RECEIVED_2_FILL(\"remixmz-user-received-2-fill\", '\\uf267'),\n    USER_RECEIVED_2_LINE(\"remixmz-user-received-2-line\", '\\uf268'),\n    USER_RECEIVED_FILL(\"remixmz-user-received-fill\", '\\uf269'),\n    USER_RECEIVED_LINE(\"remixmz-user-received-line\", '\\uf26a'),\n    USER_SEARCH_FILL(\"remixmz-user-search-fill\", '\\uf26b'),\n    USER_SEARCH_LINE(\"remixmz-user-search-line\", '\\uf26c'),\n    USER_SETTINGS_FILL(\"remixmz-user-settings-fill\", '\\uf26d'),\n    USER_SETTINGS_LINE(\"remixmz-user-settings-line\", '\\uf26e'),\n    USER_SHARED_2_FILL(\"remixmz-user-shared-2-fill\", '\\uf26f'),\n    USER_SHARED_2_LINE(\"remixmz-user-shared-2-line\", '\\uf270'),\n    USER_SHARED_FILL(\"remixmz-user-shared-fill\", '\\uf271'),\n    USER_SHARED_LINE(\"remixmz-user-shared-line\", '\\uf272'),\n    USER_SMILE_FILL(\"remixmz-user-smile-fill\", '\\uf273'),\n    USER_SMILE_LINE(\"remixmz-user-smile-line\", '\\uf274'),\n    USER_STAR_FILL(\"remixmz-user-star-fill\", '\\uf275'),\n    USER_STAR_LINE(\"remixmz-user-star-line\", '\\uf276'),\n    USER_UNFOLLOW_FILL(\"remixmz-user-unfollow-fill\", '\\uf277'),\n    USER_UNFOLLOW_LINE(\"remixmz-user-unfollow-line\", '\\uf278'),\n    USER_VOICE_FILL(\"remixmz-user-voice-fill\", '\\uf279'),\n    USER_VOICE_LINE(\"remixmz-user-voice-line\", '\\uf27a'),\n    U_DISK_FILL(\"remixmz-u-disk-fill\", '\\uf23e'),\n    U_DISK_LINE(\"remixmz-u-disk-line\", '\\uf23f'),\n    VIDEO_ADD_FILL(\"remixmz-video-add-fill\", '\\uf27b'),\n    VIDEO_ADD_LINE(\"remixmz-video-add-line\", '\\uf27c'),\n    VIDEO_CHAT_FILL(\"remixmz-video-chat-fill\", '\\uf27d'),\n    VIDEO_CHAT_LINE(\"remixmz-video-chat-line\", '\\uf27e'),\n    VIDEO_DOWNLOAD_FILL(\"remixmz-video-download-fill\", '\\uf27f'),\n    VIDEO_DOWNLOAD_LINE(\"remixmz-video-download-line\", '\\uf280'),\n    VIDEO_FILL(\"remixmz-video-fill\", '\\uf281'),\n    VIDEO_LINE(\"remixmz-video-line\", '\\uf282'),\n    VIDEO_UPLOAD_FILL(\"remixmz-video-upload-fill\", '\\uf283'),\n    VIDEO_UPLOAD_LINE(\"remixmz-video-upload-line\", '\\uf284'),\n    VIDICON_2_FILL(\"remixmz-vidicon-2-fill\", '\\uf285'),\n    VIDICON_2_LINE(\"remixmz-vidicon-2-line\", '\\uf286'),\n    VIDICON_FILL(\"remixmz-vidicon-fill\", '\\uf287'),\n    VIDICON_LINE(\"remixmz-vidicon-line\", '\\uf288'),\n    VIMEO_FILL(\"remixmz-vimeo-fill\", '\\uf289'),\n    VIMEO_LINE(\"remixmz-vimeo-line\", '\\uf28a'),\n    VIP_CROWN_2_FILL(\"remixmz-vip-crown-2-fill\", '\\uf28b'),\n    VIP_CROWN_2_LINE(\"remixmz-vip-crown-2-line\", '\\uf28c'),\n    VIP_CROWN_FILL(\"remixmz-vip-crown-fill\", '\\uf28d'),\n    VIP_CROWN_LINE(\"remixmz-vip-crown-line\", '\\uf28e'),\n    VIP_DIAMOND_FILL(\"remixmz-vip-diamond-fill\", '\\uf28f'),\n    VIP_DIAMOND_LINE(\"remixmz-vip-diamond-line\", '\\uf290'),\n    VIP_FILL(\"remixmz-vip-fill\", '\\uf291'),\n    VIP_LINE(\"remixmz-vip-line\", '\\uf292'),\n    VIRUS_FILL(\"remixmz-virus-fill\", '\\uf293'),\n    VIRUS_LINE(\"remixmz-virus-line\", '\\uf294'),\n    VISA_FILL(\"remixmz-visa-fill\", '\\uf295'),\n    VISA_LINE(\"remixmz-visa-line\", '\\uf296'),\n    VOICEPRINT_FILL(\"remixmz-voiceprint-fill\", '\\uf299'),\n    VOICEPRINT_LINE(\"remixmz-voiceprint-line\", '\\uf29a'),\n    VOICE_RECOGNITION_FILL(\"remixmz-voice-recognition-fill\", '\\uf297'),\n    VOICE_RECOGNITION_LINE(\"remixmz-voice-recognition-line\", '\\uf298'),\n    VOLUME_DOWN_FILL(\"remixmz-volume-down-fill\", '\\uf29b'),\n    VOLUME_DOWN_LINE(\"remixmz-volume-down-line\", '\\uf29c'),\n    VOLUME_MUTE_FILL(\"remixmz-volume-mute-fill\", '\\uf29d'),\n    VOLUME_MUTE_LINE(\"remixmz-volume-mute-line\", '\\uf29e'),\n    VOLUME_OFF_VIBRATE_FILL(\"remixmz-volume-off-vibrate-fill\", '\\uf29f'),\n    VOLUME_OFF_VIBRATE_LINE(\"remixmz-volume-off-vibrate-line\", '\\uf2a0'),\n    VOLUME_UP_FILL(\"remixmz-volume-up-fill\", '\\uf2a1'),\n    VOLUME_UP_LINE(\"remixmz-volume-up-line\", '\\uf2a2'),\n    VOLUME_VIBRATE_FILL(\"remixmz-volume-vibrate-fill\", '\\uf2a3'),\n    VOLUME_VIBRATE_LINE(\"remixmz-volume-vibrate-line\", '\\uf2a4'),\n    VUEJS_FILL(\"remixmz-vuejs-fill\", '\\uf2a5'),\n    VUEJS_LINE(\"remixmz-vuejs-line\", '\\uf2a6'),\n    WALK_FILL(\"remixmz-walk-fill\", '\\uf2a7'),\n    WALK_LINE(\"remixmz-walk-line\", '\\uf2a8'),\n    WALLET_2_FILL(\"remixmz-wallet-2-fill\", '\\uf2a9'),\n    WALLET_2_LINE(\"remixmz-wallet-2-line\", '\\uf2aa'),\n    WALLET_3_FILL(\"remixmz-wallet-3-fill\", '\\uf2ab'),\n    WALLET_3_LINE(\"remixmz-wallet-3-line\", '\\uf2ac'),\n    WALLET_FILL(\"remixmz-wallet-fill\", '\\uf2ad'),\n    WALLET_LINE(\"remixmz-wallet-line\", '\\uf2ae'),\n    WATER_FLASH_FILL(\"remixmz-water-flash-fill\", '\\uf2af'),\n    WATER_FLASH_LINE(\"remixmz-water-flash-line\", '\\uf2b0'),\n    WEBCAM_FILL(\"remixmz-webcam-fill\", '\\uf2b1'),\n    WEBCAM_LINE(\"remixmz-webcam-line\", '\\uf2b2'),\n    WECHAT_2_FILL(\"remixmz-wechat-2-fill\", '\\uf2b3'),\n    WECHAT_2_LINE(\"remixmz-wechat-2-line\", '\\uf2b4'),\n    WECHAT_FILL(\"remixmz-wechat-fill\", '\\uf2b5'),\n    WECHAT_LINE(\"remixmz-wechat-line\", '\\uf2b6'),\n    WECHAT_PAY_FILL(\"remixmz-wechat-pay-fill\", '\\uf2b7'),\n    WECHAT_PAY_LINE(\"remixmz-wechat-pay-line\", '\\uf2b8'),\n    WEIBO_FILL(\"remixmz-weibo-fill\", '\\uf2b9'),\n    WEIBO_LINE(\"remixmz-weibo-line\", '\\uf2ba'),\n    WHATSAPP_FILL(\"remixmz-whatsapp-fill\", '\\uf2bb'),\n    WHATSAPP_LINE(\"remixmz-whatsapp-line\", '\\uf2bc'),\n    WHEELCHAIR_FILL(\"remixmz-wheelchair-fill\", '\\uf2bd'),\n    WHEELCHAIR_LINE(\"remixmz-wheelchair-line\", '\\uf2be'),\n    WIFI_FILL(\"remixmz-wifi-fill\", '\\uf2bf'),\n    WIFI_LINE(\"remixmz-wifi-line\", '\\uf2c0'),\n    WIFI_OFF_FILL(\"remixmz-wifi-off-fill\", '\\uf2c1'),\n    WIFI_OFF_LINE(\"remixmz-wifi-off-line\", '\\uf2c2'),\n    WINDOWS_FILL(\"remixmz-windows-fill\", '\\uf2c7'),\n    WINDOWS_LINE(\"remixmz-windows-line\", '\\uf2c8'),\n    WINDOW_2_FILL(\"remixmz-window-2-fill\", '\\uf2c3'),\n    WINDOW_2_LINE(\"remixmz-window-2-line\", '\\uf2c4'),\n    WINDOW_FILL(\"remixmz-window-fill\", '\\uf2c5'),\n    WINDOW_LINE(\"remixmz-window-line\", '\\uf2c6'),\n    WINDY_FILL(\"remixmz-windy-fill\", '\\uf2c9'),\n    WINDY_LINE(\"remixmz-windy-line\", '\\uf2ca'),\n    WIRELESS_CHARGING_FILL(\"remixmz-wireless-charging-fill\", '\\uf2cb'),\n    WIRELESS_CHARGING_LINE(\"remixmz-wireless-charging-line\", '\\uf2cc'),\n    WOMEN_FILL(\"remixmz-women-fill\", '\\uf2cd'),\n    WOMEN_LINE(\"remixmz-women-line\", '\\uf2ce'),\n    WUBI_INPUT(\"remixmz-wubi-input\", '\\uf2cf'),\n    XBOX_FILL(\"remixmz-xbox-fill\", '\\uf2d0'),\n    XBOX_LINE(\"remixmz-xbox-line\", '\\uf2d1'),\n    XING_FILL(\"remixmz-xing-fill\", '\\uf2d2'),\n    XING_LINE(\"remixmz-xing-line\", '\\uf2d3'),\n    YOUTUBE_FILL(\"remixmz-youtube-fill\", '\\uf2d4'),\n    YOUTUBE_LINE(\"remixmz-youtube-line\", '\\uf2d5'),\n    ZCOOL_FILL(\"remixmz-zcool-fill\", '\\uf2d6'),\n    ZCOOL_LINE(\"remixmz-zcool-line\", '\\uf2d7'),\n    ZHIHU_FILL(\"remixmz-zhihu-fill\", '\\uf2d8'),\n    ZHIHU_LINE(\"remixmz-zhihu-line\", '\\uf2d9'),\n    ZOOM_IN_FILL(\"remixmz-zoom-in-fill\", '\\uf2da'),\n    ZOOM_IN_LINE(\"remixmz-zoom-in-line\", '\\uf2db'),\n    ZOOM_OUT_FILL(\"remixmz-zoom-out-fill\", '\\uf2dc'),\n    ZOOM_OUT_LINE(\"remixmz-zoom-out-line\", '\\uf2dd'),\n    ZZZ_FILL(\"remixmz-zzz-fill\", '\\uf2de'),\n    ZZZ_LINE(\"remixmz-zzz-line\", '\\uf2df');\n\n    public static RemixiconMZ findByDescription(String description) {\n        for (RemixiconMZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    RemixiconMZ(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-remixicon-pack/src/main/java/org/kordamp/ikonli/remixicon/RemixiconMZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.remixicon;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class RemixiconMZIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/remixicon/2.5.0/fonts/remixicon.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"remixmz-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return RemixiconMZ.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"remixicon\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-remixicon-pack/src/main/java/org/kordamp/ikonli/remixicon/RemixiconMZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.remixicon;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class RemixiconMZIkonProvider implements IkonProvider<RemixiconMZ> {\n    @Override\n    public Class<RemixiconMZ> getIkon() {\n        return RemixiconMZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-remixicon-pack/src/main/resources/META-INF/resources/remixicon/2.5.0/css/remixicon.css",
    "content": "/*\n* Remix Icon v2.5.0\n* https://remixicon.com\n* https://github.com/Remix-Design/RemixIcon\n*\n* Copyright RemixIcon.com\n* Released under the Apache License Version 2.0\n*\n* Date: 2020-05-23\n*/\n@font-face {\n  font-family: \"remixicon\";\n  src: url('../fonts/remixicon.eot?t=1590207869815'); /* IE9*/\n  src: url('../fonts/remixicon.eot?t=1590207869815#iefix') format('embedded-opentype'), /* IE6-IE8 */\n  url(\"../fonts/remixicon.woff2?t=1590207869815\") format(\"woff2\"),\n  url(\"../fonts/remixicon.woff?t=1590207869815\") format(\"woff\"),\n  url('../fonts/remixicon.ttf?t=1590207869815') format('truetype'), /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/\n  url('../fonts/remixicon.svg?t=1590207869815#remixicon') format('svg'); /* iOS 4.1- */\n  font-display: swap;\n}\n\n[class^=\"remix-\"], [class*=\" remix-\"] {\n  font-family: 'remixicon' !important;\n  font-style: normal;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.remix-lg { font-size: 1.3333em; line-height: 0.75em; vertical-align: -.0667em; }\n.remix-xl { font-size: 1.5em; line-height: 0.6666em; vertical-align: -.075em; }\n.remix-xxs { font-size: .5em; }\n.remix-xs { font-size: .75em; }\n.remix-sm { font-size: .875em }\n.remix-1x { font-size: 1em; }\n.remix-2x { font-size: 2em; }\n.remix-3x { font-size: 3em; }\n.remix-4x { font-size: 4em; }\n.remix-5x { font-size: 5em; }\n.remix-6x { font-size: 6em; }\n.remix-7x { font-size: 7em; }\n.remix-8x { font-size: 8em; }\n.remix-9x { font-size: 9em; }\n.remix-10x { font-size: 10em; }\n.remix-fw { text-align: center; width: 1.25em; }\n\n.remix-24-hours-fill:before { content: \"\\ea01\"; }\n.remix-24-hours-line:before { content: \"\\ea02\"; }\n.remix-4k-fill:before { content: \"\\ea03\"; }\n.remix-4k-line:before { content: \"\\ea04\"; }\n.remix-a-b:before { content: \"\\ea05\"; }\n.remix-account-box-fill:before { content: \"\\ea06\"; }\n.remix-account-box-line:before { content: \"\\ea07\"; }\n.remix-account-circle-fill:before { content: \"\\ea08\"; }\n.remix-account-circle-line:before { content: \"\\ea09\"; }\n.remix-account-pin-box-fill:before { content: \"\\ea0a\"; }\n.remix-account-pin-box-line:before { content: \"\\ea0b\"; }\n.remix-account-pin-circle-fill:before { content: \"\\ea0c\"; }\n.remix-account-pin-circle-line:before { content: \"\\ea0d\"; }\n.remix-add-box-fill:before { content: \"\\ea0e\"; }\n.remix-add-box-line:before { content: \"\\ea0f\"; }\n.remix-add-circle-fill:before { content: \"\\ea10\"; }\n.remix-add-circle-line:before { content: \"\\ea11\"; }\n.remix-add-fill:before { content: \"\\ea12\"; }\n.remix-add-line:before { content: \"\\ea13\"; }\n.remix-admin-fill:before { content: \"\\ea14\"; }\n.remix-admin-line:before { content: \"\\ea15\"; }\n.remix-advertisement-fill:before { content: \"\\ea16\"; }\n.remix-advertisement-line:before { content: \"\\ea17\"; }\n.remix-airplay-fill:before { content: \"\\ea18\"; }\n.remix-airplay-line:before { content: \"\\ea19\"; }\n.remix-alarm-fill:before { content: \"\\ea1a\"; }\n.remix-alarm-line:before { content: \"\\ea1b\"; }\n.remix-alarm-warning-fill:before { content: \"\\ea1c\"; }\n.remix-alarm-warning-line:before { content: \"\\ea1d\"; }\n.remix-album-fill:before { content: \"\\ea1e\"; }\n.remix-album-line:before { content: \"\\ea1f\"; }\n.remix-alert-fill:before { content: \"\\ea20\"; }\n.remix-alert-line:before { content: \"\\ea21\"; }\n.remix-aliens-fill:before { content: \"\\ea22\"; }\n.remix-aliens-line:before { content: \"\\ea23\"; }\n.remix-align-bottom:before { content: \"\\ea24\"; }\n.remix-align-center:before { content: \"\\ea25\"; }\n.remix-align-justify:before { content: \"\\ea26\"; }\n.remix-align-left:before { content: \"\\ea27\"; }\n.remix-align-right:before { content: \"\\ea28\"; }\n.remix-align-top:before { content: \"\\ea29\"; }\n.remix-align-vertically:before { content: \"\\ea2a\"; }\n.remix-alipay-fill:before { content: \"\\ea2b\"; }\n.remix-alipay-line:before { content: \"\\ea2c\"; }\n.remix-amazon-fill:before { content: \"\\ea2d\"; }\n.remix-amazon-line:before { content: \"\\ea2e\"; }\n.remix-anchor-fill:before { content: \"\\ea2f\"; }\n.remix-anchor-line:before { content: \"\\ea30\"; }\n.remix-ancient-gate-fill:before { content: \"\\ea31\"; }\n.remix-ancient-gate-line:before { content: \"\\ea32\"; }\n.remix-ancient-pavilion-fill:before { content: \"\\ea33\"; }\n.remix-ancient-pavilion-line:before { content: \"\\ea34\"; }\n.remix-android-fill:before { content: \"\\ea35\"; }\n.remix-android-line:before { content: \"\\ea36\"; }\n.remix-angularjs-fill:before { content: \"\\ea37\"; }\n.remix-angularjs-line:before { content: \"\\ea38\"; }\n.remix-anticlockwise-2-fill:before { content: \"\\ea39\"; }\n.remix-anticlockwise-2-line:before { content: \"\\ea3a\"; }\n.remix-anticlockwise-fill:before { content: \"\\ea3b\"; }\n.remix-anticlockwise-line:before { content: \"\\ea3c\"; }\n.remix-app-store-fill:before { content: \"\\ea3d\"; }\n.remix-app-store-line:before { content: \"\\ea3e\"; }\n.remix-apple-fill:before { content: \"\\ea3f\"; }\n.remix-apple-line:before { content: \"\\ea40\"; }\n.remix-apps-2-fill:before { content: \"\\ea41\"; }\n.remix-apps-2-line:before { content: \"\\ea42\"; }\n.remix-apps-fill:before { content: \"\\ea43\"; }\n.remix-apps-line:before { content: \"\\ea44\"; }\n.remix-archive-drawer-fill:before { content: \"\\ea45\"; }\n.remix-archive-drawer-line:before { content: \"\\ea46\"; }\n.remix-archive-fill:before { content: \"\\ea47\"; }\n.remix-archive-line:before { content: \"\\ea48\"; }\n.remix-arrow-down-circle-fill:before { content: \"\\ea49\"; }\n.remix-arrow-down-circle-line:before { content: \"\\ea4a\"; }\n.remix-arrow-down-fill:before { content: \"\\ea4b\"; }\n.remix-arrow-down-line:before { content: \"\\ea4c\"; }\n.remix-arrow-down-s-fill:before { content: \"\\ea4d\"; }\n.remix-arrow-down-s-line:before { content: \"\\ea4e\"; }\n.remix-arrow-drop-down-fill:before { content: \"\\ea4f\"; }\n.remix-arrow-drop-down-line:before { content: \"\\ea50\"; }\n.remix-arrow-drop-left-fill:before { content: \"\\ea51\"; }\n.remix-arrow-drop-left-line:before { content: \"\\ea52\"; }\n.remix-arrow-drop-right-fill:before { content: \"\\ea53\"; }\n.remix-arrow-drop-right-line:before { content: \"\\ea54\"; }\n.remix-arrow-drop-up-fill:before { content: \"\\ea55\"; }\n.remix-arrow-drop-up-line:before { content: \"\\ea56\"; }\n.remix-arrow-go-back-fill:before { content: \"\\ea57\"; }\n.remix-arrow-go-back-line:before { content: \"\\ea58\"; }\n.remix-arrow-go-forward-fill:before { content: \"\\ea59\"; }\n.remix-arrow-go-forward-line:before { content: \"\\ea5a\"; }\n.remix-arrow-left-circle-fill:before { content: \"\\ea5b\"; }\n.remix-arrow-left-circle-line:before { content: \"\\ea5c\"; }\n.remix-arrow-left-down-fill:before { content: \"\\ea5d\"; }\n.remix-arrow-left-down-line:before { content: \"\\ea5e\"; }\n.remix-arrow-left-fill:before { content: \"\\ea5f\"; }\n.remix-arrow-left-line:before { content: \"\\ea60\"; }\n.remix-arrow-left-right-fill:before { content: \"\\ea61\"; }\n.remix-arrow-left-right-line:before { content: \"\\ea62\"; }\n.remix-arrow-left-s-fill:before { content: \"\\ea63\"; }\n.remix-arrow-left-s-line:before { content: \"\\ea64\"; }\n.remix-arrow-left-up-fill:before { content: \"\\ea65\"; }\n.remix-arrow-left-up-line:before { content: \"\\ea66\"; }\n.remix-arrow-right-circle-fill:before { content: \"\\ea67\"; }\n.remix-arrow-right-circle-line:before { content: \"\\ea68\"; }\n.remix-arrow-right-down-fill:before { content: \"\\ea69\"; }\n.remix-arrow-right-down-line:before { content: \"\\ea6a\"; }\n.remix-arrow-right-fill:before { content: \"\\ea6b\"; }\n.remix-arrow-right-line:before { content: \"\\ea6c\"; }\n.remix-arrow-right-s-fill:before { content: \"\\ea6d\"; }\n.remix-arrow-right-s-line:before { content: \"\\ea6e\"; }\n.remix-arrow-right-up-fill:before { content: \"\\ea6f\"; }\n.remix-arrow-right-up-line:before { content: \"\\ea70\"; }\n.remix-arrow-up-circle-fill:before { content: \"\\ea71\"; }\n.remix-arrow-up-circle-line:before { content: \"\\ea72\"; }\n.remix-arrow-up-down-fill:before { content: \"\\ea73\"; }\n.remix-arrow-up-down-line:before { content: \"\\ea74\"; }\n.remix-arrow-up-fill:before { content: \"\\ea75\"; }\n.remix-arrow-up-line:before { content: \"\\ea76\"; }\n.remix-arrow-up-s-fill:before { content: \"\\ea77\"; }\n.remix-arrow-up-s-line:before { content: \"\\ea78\"; }\n.remix-artboard-2-fill:before { content: \"\\ea79\"; }\n.remix-artboard-2-line:before { content: \"\\ea7a\"; }\n.remix-artboard-fill:before { content: \"\\ea7b\"; }\n.remix-artboard-line:before { content: \"\\ea7c\"; }\n.remix-article-fill:before { content: \"\\ea7d\"; }\n.remix-article-line:before { content: \"\\ea7e\"; }\n.remix-aspect-ratio-fill:before { content: \"\\ea7f\"; }\n.remix-aspect-ratio-line:before { content: \"\\ea80\"; }\n.remix-asterisk:before { content: \"\\ea81\"; }\n.remix-at-fill:before { content: \"\\ea82\"; }\n.remix-at-line:before { content: \"\\ea83\"; }\n.remix-attachment-2:before { content: \"\\ea84\"; }\n.remix-attachment-fill:before { content: \"\\ea85\"; }\n.remix-attachment-line:before { content: \"\\ea86\"; }\n.remix-auction-fill:before { content: \"\\ea87\"; }\n.remix-auction-line:before { content: \"\\ea88\"; }\n.remix-award-fill:before { content: \"\\ea89\"; }\n.remix-award-line:before { content: \"\\ea8a\"; }\n.remix-baidu-fill:before { content: \"\\ea8b\"; }\n.remix-baidu-line:before { content: \"\\ea8c\"; }\n.remix-ball-pen-fill:before { content: \"\\ea8d\"; }\n.remix-ball-pen-line:before { content: \"\\ea8e\"; }\n.remix-bank-card-2-fill:before { content: \"\\ea8f\"; }\n.remix-bank-card-2-line:before { content: \"\\ea90\"; }\n.remix-bank-card-fill:before { content: \"\\ea91\"; }\n.remix-bank-card-line:before { content: \"\\ea92\"; }\n.remix-bank-fill:before { content: \"\\ea93\"; }\n.remix-bank-line:before { content: \"\\ea94\"; }\n.remix-bar-chart-2-fill:before { content: \"\\ea95\"; }\n.remix-bar-chart-2-line:before { content: \"\\ea96\"; }\n.remix-bar-chart-box-fill:before { content: \"\\ea97\"; }\n.remix-bar-chart-box-line:before { content: \"\\ea98\"; }\n.remix-bar-chart-fill:before { content: \"\\ea99\"; }\n.remix-bar-chart-grouped-fill:before { content: \"\\ea9a\"; }\n.remix-bar-chart-grouped-line:before { content: \"\\ea9b\"; }\n.remix-bar-chart-horizontal-fill:before { content: \"\\ea9c\"; }\n.remix-bar-chart-horizontal-line:before { content: \"\\ea9d\"; }\n.remix-bar-chart-line:before { content: \"\\ea9e\"; }\n.remix-barcode-box-fill:before { content: \"\\ea9f\"; }\n.remix-barcode-box-line:before { content: \"\\eaa0\"; }\n.remix-barcode-fill:before { content: \"\\eaa1\"; }\n.remix-barcode-line:before { content: \"\\eaa2\"; }\n.remix-barricade-fill:before { content: \"\\eaa3\"; }\n.remix-barricade-line:before { content: \"\\eaa4\"; }\n.remix-base-station-fill:before { content: \"\\eaa5\"; }\n.remix-base-station-line:before { content: \"\\eaa6\"; }\n.remix-basketball-fill:before { content: \"\\eaa7\"; }\n.remix-basketball-line:before { content: \"\\eaa8\"; }\n.remix-battery-2-charge-fill:before { content: \"\\eaa9\"; }\n.remix-battery-2-charge-line:before { content: \"\\eaaa\"; }\n.remix-battery-2-fill:before { content: \"\\eaab\"; }\n.remix-battery-2-line:before { content: \"\\eaac\"; }\n.remix-battery-charge-fill:before { content: \"\\eaad\"; }\n.remix-battery-charge-line:before { content: \"\\eaae\"; }\n.remix-battery-fill:before { content: \"\\eaaf\"; }\n.remix-battery-line:before { content: \"\\eab0\"; }\n.remix-battery-low-fill:before { content: \"\\eab1\"; }\n.remix-battery-low-line:before { content: \"\\eab2\"; }\n.remix-battery-saver-fill:before { content: \"\\eab3\"; }\n.remix-battery-saver-line:before { content: \"\\eab4\"; }\n.remix-battery-share-fill:before { content: \"\\eab5\"; }\n.remix-battery-share-line:before { content: \"\\eab6\"; }\n.remix-bear-smile-fill:before { content: \"\\eab7\"; }\n.remix-bear-smile-line:before { content: \"\\eab8\"; }\n.remix-behance-fill:before { content: \"\\eab9\"; }\n.remix-behance-line:before { content: \"\\eaba\"; }\n.remix-bell-fill:before { content: \"\\eabb\"; }\n.remix-bell-line:before { content: \"\\eabc\"; }\n.remix-bike-fill:before { content: \"\\eabd\"; }\n.remix-bike-line:before { content: \"\\eabe\"; }\n.remix-bilibili-fill:before { content: \"\\eabf\"; }\n.remix-bilibili-line:before { content: \"\\eac0\"; }\n.remix-bill-fill:before { content: \"\\eac1\"; }\n.remix-bill-line:before { content: \"\\eac2\"; }\n.remix-billiards-fill:before { content: \"\\eac3\"; }\n.remix-billiards-line:before { content: \"\\eac4\"; }\n.remix-bit-coin-fill:before { content: \"\\eac5\"; }\n.remix-bit-coin-line:before { content: \"\\eac6\"; }\n.remix-blaze-fill:before { content: \"\\eac7\"; }\n.remix-blaze-line:before { content: \"\\eac8\"; }\n.remix-bluetooth-connect-fill:before { content: \"\\eac9\"; }\n.remix-bluetooth-connect-line:before { content: \"\\eaca\"; }\n.remix-bluetooth-fill:before { content: \"\\eacb\"; }\n.remix-bluetooth-line:before { content: \"\\eacc\"; }\n.remix-blur-off-fill:before { content: \"\\eacd\"; }\n.remix-blur-off-line:before { content: \"\\eace\"; }\n.remix-body-scan-fill:before { content: \"\\eacf\"; }\n.remix-body-scan-line:before { content: \"\\ead0\"; }\n.remix-bold:before { content: \"\\ead1\"; }\n.remix-book-2-fill:before { content: \"\\ead2\"; }\n.remix-book-2-line:before { content: \"\\ead3\"; }\n.remix-book-3-fill:before { content: \"\\ead4\"; }\n.remix-book-3-line:before { content: \"\\ead5\"; }\n.remix-book-fill:before { content: \"\\ead6\"; }\n.remix-book-line:before { content: \"\\ead7\"; }\n.remix-book-mark-fill:before { content: \"\\ead8\"; }\n.remix-book-mark-line:before { content: \"\\ead9\"; }\n.remix-book-open-fill:before { content: \"\\eada\"; }\n.remix-book-open-line:before { content: \"\\eadb\"; }\n.remix-book-read-fill:before { content: \"\\eadc\"; }\n.remix-book-read-line:before { content: \"\\eadd\"; }\n.remix-booklet-fill:before { content: \"\\eade\"; }\n.remix-booklet-line:before { content: \"\\eadf\"; }\n.remix-bookmark-2-fill:before { content: \"\\eae0\"; }\n.remix-bookmark-2-line:before { content: \"\\eae1\"; }\n.remix-bookmark-3-fill:before { content: \"\\eae2\"; }\n.remix-bookmark-3-line:before { content: \"\\eae3\"; }\n.remix-bookmark-fill:before { content: \"\\eae4\"; }\n.remix-bookmark-line:before { content: \"\\eae5\"; }\n.remix-boxing-fill:before { content: \"\\eae6\"; }\n.remix-boxing-line:before { content: \"\\eae7\"; }\n.remix-braces-fill:before { content: \"\\eae8\"; }\n.remix-braces-line:before { content: \"\\eae9\"; }\n.remix-brackets-fill:before { content: \"\\eaea\"; }\n.remix-brackets-line:before { content: \"\\eaeb\"; }\n.remix-briefcase-2-fill:before { content: \"\\eaec\"; }\n.remix-briefcase-2-line:before { content: \"\\eaed\"; }\n.remix-briefcase-3-fill:before { content: \"\\eaee\"; }\n.remix-briefcase-3-line:before { content: \"\\eaef\"; }\n.remix-briefcase-4-fill:before { content: \"\\eaf0\"; }\n.remix-briefcase-4-line:before { content: \"\\eaf1\"; }\n.remix-briefcase-5-fill:before { content: \"\\eaf2\"; }\n.remix-briefcase-5-line:before { content: \"\\eaf3\"; }\n.remix-briefcase-fill:before { content: \"\\eaf4\"; }\n.remix-briefcase-line:before { content: \"\\eaf5\"; }\n.remix-bring-forward:before { content: \"\\eaf6\"; }\n.remix-bring-to-front:before { content: \"\\eaf7\"; }\n.remix-broadcast-fill:before { content: \"\\eaf8\"; }\n.remix-broadcast-line:before { content: \"\\eaf9\"; }\n.remix-brush-2-fill:before { content: \"\\eafa\"; }\n.remix-brush-2-line:before { content: \"\\eafb\"; }\n.remix-brush-3-fill:before { content: \"\\eafc\"; }\n.remix-brush-3-line:before { content: \"\\eafd\"; }\n.remix-brush-4-fill:before { content: \"\\eafe\"; }\n.remix-brush-4-line:before { content: \"\\eaff\"; }\n.remix-brush-fill:before { content: \"\\eb00\"; }\n.remix-brush-line:before { content: \"\\eb01\"; }\n.remix-bubble-chart-fill:before { content: \"\\eb02\"; }\n.remix-bubble-chart-line:before { content: \"\\eb03\"; }\n.remix-bug-2-fill:before { content: \"\\eb04\"; }\n.remix-bug-2-line:before { content: \"\\eb05\"; }\n.remix-bug-fill:before { content: \"\\eb06\"; }\n.remix-bug-line:before { content: \"\\eb07\"; }\n.remix-building-2-fill:before { content: \"\\eb08\"; }\n.remix-building-2-line:before { content: \"\\eb09\"; }\n.remix-building-3-fill:before { content: \"\\eb0a\"; }\n.remix-building-3-line:before { content: \"\\eb0b\"; }\n.remix-building-4-fill:before { content: \"\\eb0c\"; }\n.remix-building-4-line:before { content: \"\\eb0d\"; }\n.remix-building-fill:before { content: \"\\eb0e\"; }\n.remix-building-line:before { content: \"\\eb0f\"; }\n.remix-bus-2-fill:before { content: \"\\eb10\"; }\n.remix-bus-2-line:before { content: \"\\eb11\"; }\n.remix-bus-fill:before { content: \"\\eb12\"; }\n.remix-bus-line:before { content: \"\\eb13\"; }\n.remix-bus-wifi-fill:before { content: \"\\eb14\"; }\n.remix-bus-wifi-line:before { content: \"\\eb15\"; }\n.remix-cactus-fill:before { content: \"\\eb16\"; }\n.remix-cactus-line:before { content: \"\\eb17\"; }\n.remix-cake-2-fill:before { content: \"\\eb18\"; }\n.remix-cake-2-line:before { content: \"\\eb19\"; }\n.remix-cake-3-fill:before { content: \"\\eb1a\"; }\n.remix-cake-3-line:before { content: \"\\eb1b\"; }\n.remix-cake-fill:before { content: \"\\eb1c\"; }\n.remix-cake-line:before { content: \"\\eb1d\"; }\n.remix-calculator-fill:before { content: \"\\eb1e\"; }\n.remix-calculator-line:before { content: \"\\eb1f\"; }\n.remix-calendar-2-fill:before { content: \"\\eb20\"; }\n.remix-calendar-2-line:before { content: \"\\eb21\"; }\n.remix-calendar-check-fill:before { content: \"\\eb22\"; }\n.remix-calendar-check-line:before { content: \"\\eb23\"; }\n.remix-calendar-event-fill:before { content: \"\\eb24\"; }\n.remix-calendar-event-line:before { content: \"\\eb25\"; }\n.remix-calendar-fill:before { content: \"\\eb26\"; }\n.remix-calendar-line:before { content: \"\\eb27\"; }\n.remix-calendar-todo-fill:before { content: \"\\eb28\"; }\n.remix-calendar-todo-line:before { content: \"\\eb29\"; }\n.remix-camera-2-fill:before { content: \"\\eb2a\"; }\n.remix-camera-2-line:before { content: \"\\eb2b\"; }\n.remix-camera-3-fill:before { content: \"\\eb2c\"; }\n.remix-camera-3-line:before { content: \"\\eb2d\"; }\n.remix-camera-fill:before { content: \"\\eb2e\"; }\n.remix-camera-lens-fill:before { content: \"\\eb2f\"; }\n.remix-camera-lens-line:before { content: \"\\eb30\"; }\n.remix-camera-line:before { content: \"\\eb31\"; }\n.remix-camera-off-fill:before { content: \"\\eb32\"; }\n.remix-camera-off-line:before { content: \"\\eb33\"; }\n.remix-camera-switch-fill:before { content: \"\\eb34\"; }\n.remix-camera-switch-line:before { content: \"\\eb35\"; }\n.remix-capsule-fill:before { content: \"\\eb36\"; }\n.remix-capsule-line:before { content: \"\\eb37\"; }\n.remix-car-fill:before { content: \"\\eb38\"; }\n.remix-car-line:before { content: \"\\eb39\"; }\n.remix-car-washing-fill:before { content: \"\\eb3a\"; }\n.remix-car-washing-line:before { content: \"\\eb3b\"; }\n.remix-caravan-fill:before { content: \"\\eb3c\"; }\n.remix-caravan-line:before { content: \"\\eb3d\"; }\n.remix-cast-fill:before { content: \"\\eb3e\"; }\n.remix-cast-line:before { content: \"\\eb3f\"; }\n.remix-cellphone-fill:before { content: \"\\eb40\"; }\n.remix-cellphone-line:before { content: \"\\eb41\"; }\n.remix-celsius-fill:before { content: \"\\eb42\"; }\n.remix-celsius-line:before { content: \"\\eb43\"; }\n.remix-centos-fill:before { content: \"\\eb44\"; }\n.remix-centos-line:before { content: \"\\eb45\"; }\n.remix-character-recognition-fill:before { content: \"\\eb46\"; }\n.remix-character-recognition-line:before { content: \"\\eb47\"; }\n.remix-charging-pile-2-fill:before { content: \"\\eb48\"; }\n.remix-charging-pile-2-line:before { content: \"\\eb49\"; }\n.remix-charging-pile-fill:before { content: \"\\eb4a\"; }\n.remix-charging-pile-line:before { content: \"\\eb4b\"; }\n.remix-chat-1-fill:before { content: \"\\eb4c\"; }\n.remix-chat-1-line:before { content: \"\\eb4d\"; }\n.remix-chat-2-fill:before { content: \"\\eb4e\"; }\n.remix-chat-2-line:before { content: \"\\eb4f\"; }\n.remix-chat-3-fill:before { content: \"\\eb50\"; }\n.remix-chat-3-line:before { content: \"\\eb51\"; }\n.remix-chat-4-fill:before { content: \"\\eb52\"; }\n.remix-chat-4-line:before { content: \"\\eb53\"; }\n.remix-chat-check-fill:before { content: \"\\eb54\"; }\n.remix-chat-check-line:before { content: \"\\eb55\"; }\n.remix-chat-delete-fill:before { content: \"\\eb56\"; }\n.remix-chat-delete-line:before { content: \"\\eb57\"; }\n.remix-chat-download-fill:before { content: \"\\eb58\"; }\n.remix-chat-download-line:before { content: \"\\eb59\"; }\n.remix-chat-follow-up-fill:before { content: \"\\eb5a\"; }\n.remix-chat-follow-up-line:before { content: \"\\eb5b\"; }\n.remix-chat-forward-fill:before { content: \"\\eb5c\"; }\n.remix-chat-forward-line:before { content: \"\\eb5d\"; }\n.remix-chat-heart-fill:before { content: \"\\eb5e\"; }\n.remix-chat-heart-line:before { content: \"\\eb5f\"; }\n.remix-chat-history-fill:before { content: \"\\eb60\"; }\n.remix-chat-history-line:before { content: \"\\eb61\"; }\n.remix-chat-new-fill:before { content: \"\\eb62\"; }\n.remix-chat-new-line:before { content: \"\\eb63\"; }\n.remix-chat-off-fill:before { content: \"\\eb64\"; }\n.remix-chat-off-line:before { content: \"\\eb65\"; }\n.remix-chat-poll-fill:before { content: \"\\eb66\"; }\n.remix-chat-poll-line:before { content: \"\\eb67\"; }\n.remix-chat-private-fill:before { content: \"\\eb68\"; }\n.remix-chat-private-line:before { content: \"\\eb69\"; }\n.remix-chat-quote-fill:before { content: \"\\eb6a\"; }\n.remix-chat-quote-line:before { content: \"\\eb6b\"; }\n.remix-chat-settings-fill:before { content: \"\\eb6c\"; }\n.remix-chat-settings-line:before { content: \"\\eb6d\"; }\n.remix-chat-smile-2-fill:before { content: \"\\eb6e\"; }\n.remix-chat-smile-2-line:before { content: \"\\eb6f\"; }\n.remix-chat-smile-3-fill:before { content: \"\\eb70\"; }\n.remix-chat-smile-3-line:before { content: \"\\eb71\"; }\n.remix-chat-smile-fill:before { content: \"\\eb72\"; }\n.remix-chat-smile-line:before { content: \"\\eb73\"; }\n.remix-chat-upload-fill:before { content: \"\\eb74\"; }\n.remix-chat-upload-line:before { content: \"\\eb75\"; }\n.remix-chat-voice-fill:before { content: \"\\eb76\"; }\n.remix-chat-voice-line:before { content: \"\\eb77\"; }\n.remix-check-double-fill:before { content: \"\\eb78\"; }\n.remix-check-double-line:before { content: \"\\eb79\"; }\n.remix-check-fill:before { content: \"\\eb7a\"; }\n.remix-check-line:before { content: \"\\eb7b\"; }\n.remix-checkbox-blank-circle-fill:before { content: \"\\eb7c\"; }\n.remix-checkbox-blank-circle-line:before { content: \"\\eb7d\"; }\n.remix-checkbox-blank-fill:before { content: \"\\eb7e\"; }\n.remix-checkbox-blank-line:before { content: \"\\eb7f\"; }\n.remix-checkbox-circle-fill:before { content: \"\\eb80\"; }\n.remix-checkbox-circle-line:before { content: \"\\eb81\"; }\n.remix-checkbox-fill:before { content: \"\\eb82\"; }\n.remix-checkbox-indeterminate-fill:before { content: \"\\eb83\"; }\n.remix-checkbox-indeterminate-line:before { content: \"\\eb84\"; }\n.remix-checkbox-line:before { content: \"\\eb85\"; }\n.remix-checkbox-multiple-blank-fill:before { content: \"\\eb86\"; }\n.remix-checkbox-multiple-blank-line:before { content: \"\\eb87\"; }\n.remix-checkbox-multiple-fill:before { content: \"\\eb88\"; }\n.remix-checkbox-multiple-line:before { content: \"\\eb89\"; }\n.remix-china-railway-fill:before { content: \"\\eb8a\"; }\n.remix-china-railway-line:before { content: \"\\eb8b\"; }\n.remix-chrome-fill:before { content: \"\\eb8c\"; }\n.remix-chrome-line:before { content: \"\\eb8d\"; }\n.remix-clapperboard-fill:before { content: \"\\eb8e\"; }\n.remix-clapperboard-line:before { content: \"\\eb8f\"; }\n.remix-clipboard-fill:before { content: \"\\eb90\"; }\n.remix-clipboard-line:before { content: \"\\eb91\"; }\n.remix-clockwise-2-fill:before { content: \"\\eb92\"; }\n.remix-clockwise-2-line:before { content: \"\\eb93\"; }\n.remix-clockwise-fill:before { content: \"\\eb94\"; }\n.remix-clockwise-line:before { content: \"\\eb95\"; }\n.remix-close-circle-fill:before { content: \"\\eb96\"; }\n.remix-close-circle-line:before { content: \"\\eb97\"; }\n.remix-close-fill:before { content: \"\\eb98\"; }\n.remix-close-line:before { content: \"\\eb99\"; }\n.remix-closed-captioning-fill:before { content: \"\\eb9a\"; }\n.remix-closed-captioning-line:before { content: \"\\eb9b\"; }\n.remix-cloud-fill:before { content: \"\\eb9c\"; }\n.remix-cloud-line:before { content: \"\\eb9d\"; }\n.remix-cloud-off-fill:before { content: \"\\eb9e\"; }\n.remix-cloud-off-line:before { content: \"\\eb9f\"; }\n.remix-cloud-windy-fill:before { content: \"\\eba0\"; }\n.remix-cloud-windy-line:before { content: \"\\eba1\"; }\n.remix-cloudy-2-fill:before { content: \"\\eba2\"; }\n.remix-cloudy-2-line:before { content: \"\\eba3\"; }\n.remix-cloudy-fill:before { content: \"\\eba4\"; }\n.remix-cloudy-line:before { content: \"\\eba5\"; }\n.remix-code-box-fill:before { content: \"\\eba6\"; }\n.remix-code-box-line:before { content: \"\\eba7\"; }\n.remix-code-fill:before { content: \"\\eba8\"; }\n.remix-code-line:before { content: \"\\eba9\"; }\n.remix-code-s-fill:before { content: \"\\ebaa\"; }\n.remix-code-s-line:before { content: \"\\ebab\"; }\n.remix-code-s-slash-fill:before { content: \"\\ebac\"; }\n.remix-code-s-slash-line:before { content: \"\\ebad\"; }\n.remix-code-view:before { content: \"\\ebae\"; }\n.remix-codepen-fill:before { content: \"\\ebaf\"; }\n.remix-codepen-line:before { content: \"\\ebb0\"; }\n.remix-coin-fill:before { content: \"\\ebb1\"; }\n.remix-coin-line:before { content: \"\\ebb2\"; }\n.remix-coins-fill:before { content: \"\\ebb3\"; }\n.remix-coins-line:before { content: \"\\ebb4\"; }\n.remix-collage-fill:before { content: \"\\ebb5\"; }\n.remix-collage-line:before { content: \"\\ebb6\"; }\n.remix-command-fill:before { content: \"\\ebb7\"; }\n.remix-command-line:before { content: \"\\ebb8\"; }\n.remix-community-fill:before { content: \"\\ebb9\"; }\n.remix-community-line:before { content: \"\\ebba\"; }\n.remix-compass-2-fill:before { content: \"\\ebbb\"; }\n.remix-compass-2-line:before { content: \"\\ebbc\"; }\n.remix-compass-3-fill:before { content: \"\\ebbd\"; }\n.remix-compass-3-line:before { content: \"\\ebbe\"; }\n.remix-compass-4-fill:before { content: \"\\ebbf\"; }\n.remix-compass-4-line:before { content: \"\\ebc0\"; }\n.remix-compass-discover-fill:before { content: \"\\ebc1\"; }\n.remix-compass-discover-line:before { content: \"\\ebc2\"; }\n.remix-compass-fill:before { content: \"\\ebc3\"; }\n.remix-compass-line:before { content: \"\\ebc4\"; }\n.remix-compasses-2-fill:before { content: \"\\ebc5\"; }\n.remix-compasses-2-line:before { content: \"\\ebc6\"; }\n.remix-compasses-fill:before { content: \"\\ebc7\"; }\n.remix-compasses-line:before { content: \"\\ebc8\"; }\n.remix-computer-fill:before { content: \"\\ebc9\"; }\n.remix-computer-line:before { content: \"\\ebca\"; }\n.remix-contacts-book-2-fill:before { content: \"\\ebcb\"; }\n.remix-contacts-book-2-line:before { content: \"\\ebcc\"; }\n.remix-contacts-book-fill:before { content: \"\\ebcd\"; }\n.remix-contacts-book-line:before { content: \"\\ebce\"; }\n.remix-contacts-book-upload-fill:before { content: \"\\ebcf\"; }\n.remix-contacts-book-upload-line:before { content: \"\\ebd0\"; }\n.remix-contacts-fill:before { content: \"\\ebd1\"; }\n.remix-contacts-line:before { content: \"\\ebd2\"; }\n.remix-contrast-2-fill:before { content: \"\\ebd3\"; }\n.remix-contrast-2-line:before { content: \"\\ebd4\"; }\n.remix-contrast-drop-2-fill:before { content: \"\\ebd5\"; }\n.remix-contrast-drop-2-line:before { content: \"\\ebd6\"; }\n.remix-contrast-drop-fill:before { content: \"\\ebd7\"; }\n.remix-contrast-drop-line:before { content: \"\\ebd8\"; }\n.remix-contrast-fill:before { content: \"\\ebd9\"; }\n.remix-contrast-line:before { content: \"\\ebda\"; }\n.remix-copper-coin-fill:before { content: \"\\ebdb\"; }\n.remix-copper-coin-line:before { content: \"\\ebdc\"; }\n.remix-copper-diamond-fill:before { content: \"\\ebdd\"; }\n.remix-copper-diamond-line:before { content: \"\\ebde\"; }\n.remix-copyleft-fill:before { content: \"\\ebdf\"; }\n.remix-copyleft-line:before { content: \"\\ebe0\"; }\n.remix-copyright-fill:before { content: \"\\ebe1\"; }\n.remix-copyright-line:before { content: \"\\ebe2\"; }\n.remix-coreos-fill:before { content: \"\\ebe3\"; }\n.remix-coreos-line:before { content: \"\\ebe4\"; }\n.remix-coupon-2-fill:before { content: \"\\ebe5\"; }\n.remix-coupon-2-line:before { content: \"\\ebe6\"; }\n.remix-coupon-3-fill:before { content: \"\\ebe7\"; }\n.remix-coupon-3-line:before { content: \"\\ebe8\"; }\n.remix-coupon-4-fill:before { content: \"\\ebe9\"; }\n.remix-coupon-4-line:before { content: \"\\ebea\"; }\n.remix-coupon-5-fill:before { content: \"\\ebeb\"; }\n.remix-coupon-5-line:before { content: \"\\ebec\"; }\n.remix-coupon-fill:before { content: \"\\ebed\"; }\n.remix-coupon-line:before { content: \"\\ebee\"; }\n.remix-cpu-fill:before { content: \"\\ebef\"; }\n.remix-cpu-line:before { content: \"\\ebf0\"; }\n.remix-creative-commons-by-fill:before { content: \"\\ebf1\"; }\n.remix-creative-commons-by-line:before { content: \"\\ebf2\"; }\n.remix-creative-commons-fill:before { content: \"\\ebf3\"; }\n.remix-creative-commons-line:before { content: \"\\ebf4\"; }\n.remix-creative-commons-nc-fill:before { content: \"\\ebf5\"; }\n.remix-creative-commons-nc-line:before { content: \"\\ebf6\"; }\n.remix-creative-commons-nd-fill:before { content: \"\\ebf7\"; }\n.remix-creative-commons-nd-line:before { content: \"\\ebf8\"; }\n.remix-creative-commons-sa-fill:before { content: \"\\ebf9\"; }\n.remix-creative-commons-sa-line:before { content: \"\\ebfa\"; }\n.remix-creative-commons-zero-fill:before { content: \"\\ebfb\"; }\n.remix-creative-commons-zero-line:before { content: \"\\ebfc\"; }\n.remix-criminal-fill:before { content: \"\\ebfd\"; }\n.remix-criminal-line:before { content: \"\\ebfe\"; }\n.remix-crop-2-fill:before { content: \"\\ebff\"; }\n.remix-crop-2-line:before { content: \"\\ec00\"; }\n.remix-crop-fill:before { content: \"\\ec01\"; }\n.remix-crop-line:before { content: \"\\ec02\"; }\n.remix-css3-fill:before { content: \"\\ec03\"; }\n.remix-css3-line:before { content: \"\\ec04\"; }\n.remix-cup-fill:before { content: \"\\ec05\"; }\n.remix-cup-line:before { content: \"\\ec06\"; }\n.remix-currency-fill:before { content: \"\\ec07\"; }\n.remix-currency-line:before { content: \"\\ec08\"; }\n.remix-cursor-fill:before { content: \"\\ec09\"; }\n.remix-cursor-line:before { content: \"\\ec0a\"; }\n.remix-customer-service-2-fill:before { content: \"\\ec0b\"; }\n.remix-customer-service-2-line:before { content: \"\\ec0c\"; }\n.remix-customer-service-fill:before { content: \"\\ec0d\"; }\n.remix-customer-service-line:before { content: \"\\ec0e\"; }\n.remix-dashboard-2-fill:before { content: \"\\ec0f\"; }\n.remix-dashboard-2-line:before { content: \"\\ec10\"; }\n.remix-dashboard-3-fill:before { content: \"\\ec11\"; }\n.remix-dashboard-3-line:before { content: \"\\ec12\"; }\n.remix-dashboard-fill:before { content: \"\\ec13\"; }\n.remix-dashboard-line:before { content: \"\\ec14\"; }\n.remix-database-2-fill:before { content: \"\\ec15\"; }\n.remix-database-2-line:before { content: \"\\ec16\"; }\n.remix-database-fill:before { content: \"\\ec17\"; }\n.remix-database-line:before { content: \"\\ec18\"; }\n.remix-delete-back-2-fill:before { content: \"\\ec19\"; }\n.remix-delete-back-2-line:before { content: \"\\ec1a\"; }\n.remix-delete-back-fill:before { content: \"\\ec1b\"; }\n.remix-delete-back-line:before { content: \"\\ec1c\"; }\n.remix-delete-bin-2-fill:before { content: \"\\ec1d\"; }\n.remix-delete-bin-2-line:before { content: \"\\ec1e\"; }\n.remix-delete-bin-3-fill:before { content: \"\\ec1f\"; }\n.remix-delete-bin-3-line:before { content: \"\\ec20\"; }\n.remix-delete-bin-4-fill:before { content: \"\\ec21\"; }\n.remix-delete-bin-4-line:before { content: \"\\ec22\"; }\n.remix-delete-bin-5-fill:before { content: \"\\ec23\"; }\n.remix-delete-bin-5-line:before { content: \"\\ec24\"; }\n.remix-delete-bin-6-fill:before { content: \"\\ec25\"; }\n.remix-delete-bin-6-line:before { content: \"\\ec26\"; }\n.remix-delete-bin-7-fill:before { content: \"\\ec27\"; }\n.remix-delete-bin-7-line:before { content: \"\\ec28\"; }\n.remix-delete-bin-fill:before { content: \"\\ec29\"; }\n.remix-delete-bin-line:before { content: \"\\ec2a\"; }\n.remix-delete-column:before { content: \"\\ec2b\"; }\n.remix-delete-row:before { content: \"\\ec2c\"; }\n.remix-device-fill:before { content: \"\\ec2d\"; }\n.remix-device-line:before { content: \"\\ec2e\"; }\n.remix-device-recover-fill:before { content: \"\\ec2f\"; }\n.remix-device-recover-line:before { content: \"\\ec30\"; }\n.remix-dingding-fill:before { content: \"\\ec31\"; }\n.remix-dingding-line:before { content: \"\\ec32\"; }\n.remix-direction-fill:before { content: \"\\ec33\"; }\n.remix-direction-line:before { content: \"\\ec34\"; }\n.remix-disc-fill:before { content: \"\\ec35\"; }\n.remix-disc-line:before { content: \"\\ec36\"; }\n.remix-discord-fill:before { content: \"\\ec37\"; }\n.remix-discord-line:before { content: \"\\ec38\"; }\n.remix-discuss-fill:before { content: \"\\ec39\"; }\n.remix-discuss-line:before { content: \"\\ec3a\"; }\n.remix-dislike-fill:before { content: \"\\ec3b\"; }\n.remix-dislike-line:before { content: \"\\ec3c\"; }\n.remix-disqus-fill:before { content: \"\\ec3d\"; }\n.remix-disqus-line:before { content: \"\\ec3e\"; }\n.remix-divide-fill:before { content: \"\\ec3f\"; }\n.remix-divide-line:before { content: \"\\ec40\"; }\n.remix-donut-chart-fill:before { content: \"\\ec41\"; }\n.remix-donut-chart-line:before { content: \"\\ec42\"; }\n.remix-door-closed-fill:before { content: \"\\ec43\"; }\n.remix-door-closed-line:before { content: \"\\ec44\"; }\n.remix-door-fill:before { content: \"\\ec45\"; }\n.remix-door-line:before { content: \"\\ec46\"; }\n.remix-door-lock-box-fill:before { content: \"\\ec47\"; }\n.remix-door-lock-box-line:before { content: \"\\ec48\"; }\n.remix-door-lock-fill:before { content: \"\\ec49\"; }\n.remix-door-lock-line:before { content: \"\\ec4a\"; }\n.remix-door-open-fill:before { content: \"\\ec4b\"; }\n.remix-door-open-line:before { content: \"\\ec4c\"; }\n.remix-dossier-fill:before { content: \"\\ec4d\"; }\n.remix-dossier-line:before { content: \"\\ec4e\"; }\n.remix-douban-fill:before { content: \"\\ec4f\"; }\n.remix-douban-line:before { content: \"\\ec50\"; }\n.remix-double-quotes-l:before { content: \"\\ec51\"; }\n.remix-double-quotes-r:before { content: \"\\ec52\"; }\n.remix-download-2-fill:before { content: \"\\ec53\"; }\n.remix-download-2-line:before { content: \"\\ec54\"; }\n.remix-download-cloud-2-fill:before { content: \"\\ec55\"; }\n.remix-download-cloud-2-line:before { content: \"\\ec56\"; }\n.remix-download-cloud-fill:before { content: \"\\ec57\"; }\n.remix-download-cloud-line:before { content: \"\\ec58\"; }\n.remix-download-fill:before { content: \"\\ec59\"; }\n.remix-download-line:before { content: \"\\ec5a\"; }\n.remix-draft-fill:before { content: \"\\ec5b\"; }\n.remix-draft-line:before { content: \"\\ec5c\"; }\n.remix-drag-drop-fill:before { content: \"\\ec5d\"; }\n.remix-drag-drop-line:before { content: \"\\ec5e\"; }\n.remix-drag-move-2-fill:before { content: \"\\ec5f\"; }\n.remix-drag-move-2-line:before { content: \"\\ec60\"; }\n.remix-drag-move-fill:before { content: \"\\ec61\"; }\n.remix-drag-move-line:before { content: \"\\ec62\"; }\n.remix-dribbble-fill:before { content: \"\\ec63\"; }\n.remix-dribbble-line:before { content: \"\\ec64\"; }\n.remix-drive-fill:before { content: \"\\ec65\"; }\n.remix-drive-line:before { content: \"\\ec66\"; }\n.remix-drizzle-fill:before { content: \"\\ec67\"; }\n.remix-drizzle-line:before { content: \"\\ec68\"; }\n.remix-drop-fill:before { content: \"\\ec69\"; }\n.remix-drop-line:before { content: \"\\ec6a\"; }\n.remix-dropbox-fill:before { content: \"\\ec6b\"; }\n.remix-dropbox-line:before { content: \"\\ec6c\"; }\n.remix-dual-sim-1-fill:before { content: \"\\ec6d\"; }\n.remix-dual-sim-1-line:before { content: \"\\ec6e\"; }\n.remix-dual-sim-2-fill:before { content: \"\\ec6f\"; }\n.remix-dual-sim-2-line:before { content: \"\\ec70\"; }\n.remix-dv-fill:before { content: \"\\ec71\"; }\n.remix-dv-line:before { content: \"\\ec72\"; }\n.remix-dvd-fill:before { content: \"\\ec73\"; }\n.remix-dvd-line:before { content: \"\\ec74\"; }\n.remix-e-bike-2-fill:before { content: \"\\ec75\"; }\n.remix-e-bike-2-line:before { content: \"\\ec76\"; }\n.remix-e-bike-fill:before { content: \"\\ec77\"; }\n.remix-e-bike-line:before { content: \"\\ec78\"; }\n.remix-earth-fill:before { content: \"\\ec79\"; }\n.remix-earth-line:before { content: \"\\ec7a\"; }\n.remix-earthquake-fill:before { content: \"\\ec7b\"; }\n.remix-earthquake-line:before { content: \"\\ec7c\"; }\n.remix-edge-fill:before { content: \"\\ec7d\"; }\n.remix-edge-line:before { content: \"\\ec7e\"; }\n.remix-edit-2-fill:before { content: \"\\ec7f\"; }\n.remix-edit-2-line:before { content: \"\\ec80\"; }\n.remix-edit-box-fill:before { content: \"\\ec81\"; }\n.remix-edit-box-line:before { content: \"\\ec82\"; }\n.remix-edit-circle-fill:before { content: \"\\ec83\"; }\n.remix-edit-circle-line:before { content: \"\\ec84\"; }\n.remix-edit-fill:before { content: \"\\ec85\"; }\n.remix-edit-line:before { content: \"\\ec86\"; }\n.remix-eject-fill:before { content: \"\\ec87\"; }\n.remix-eject-line:before { content: \"\\ec88\"; }\n.remix-emotion-2-fill:before { content: \"\\ec89\"; }\n.remix-emotion-2-line:before { content: \"\\ec8a\"; }\n.remix-emotion-fill:before { content: \"\\ec8b\"; }\n.remix-emotion-happy-fill:before { content: \"\\ec8c\"; }\n.remix-emotion-happy-line:before { content: \"\\ec8d\"; }\n.remix-emotion-laugh-fill:before { content: \"\\ec8e\"; }\n.remix-emotion-laugh-line:before { content: \"\\ec8f\"; }\n.remix-emotion-line:before { content: \"\\ec90\"; }\n.remix-emotion-normal-fill:before { content: \"\\ec91\"; }\n.remix-emotion-normal-line:before { content: \"\\ec92\"; }\n.remix-emotion-sad-fill:before { content: \"\\ec93\"; }\n.remix-emotion-sad-line:before { content: \"\\ec94\"; }\n.remix-emotion-unhappy-fill:before { content: \"\\ec95\"; }\n.remix-emotion-unhappy-line:before { content: \"\\ec96\"; }\n.remix-empathize-fill:before { content: \"\\ec97\"; }\n.remix-empathize-line:before { content: \"\\ec98\"; }\n.remix-emphasis-cn:before { content: \"\\ec99\"; }\n.remix-emphasis:before { content: \"\\ec9a\"; }\n.remix-english-input:before { content: \"\\ec9b\"; }\n.remix-equalizer-fill:before { content: \"\\ec9c\"; }\n.remix-equalizer-line:before { content: \"\\ec9d\"; }\n.remix-eraser-fill:before { content: \"\\ec9e\"; }\n.remix-eraser-line:before { content: \"\\ec9f\"; }\n.remix-error-warning-fill:before { content: \"\\eca0\"; }\n.remix-error-warning-line:before { content: \"\\eca1\"; }\n.remix-evernote-fill:before { content: \"\\eca2\"; }\n.remix-evernote-line:before { content: \"\\eca3\"; }\n.remix-exchange-box-fill:before { content: \"\\eca4\"; }\n.remix-exchange-box-line:before { content: \"\\eca5\"; }\n.remix-exchange-cny-fill:before { content: \"\\eca6\"; }\n.remix-exchange-cny-line:before { content: \"\\eca7\"; }\n.remix-exchange-dollar-fill:before { content: \"\\eca8\"; }\n.remix-exchange-dollar-line:before { content: \"\\eca9\"; }\n.remix-exchange-fill:before { content: \"\\ecaa\"; }\n.remix-exchange-funds-fill:before { content: \"\\ecab\"; }\n.remix-exchange-funds-line:before { content: \"\\ecac\"; }\n.remix-exchange-line:before { content: \"\\ecad\"; }\n.remix-external-link-fill:before { content: \"\\ecae\"; }\n.remix-external-link-line:before { content: \"\\ecaf\"; }\n.remix-eye-2-fill:before { content: \"\\ecb0\"; }\n.remix-eye-2-line:before { content: \"\\ecb1\"; }\n.remix-eye-close-fill:before { content: \"\\ecb2\"; }\n.remix-eye-close-line:before { content: \"\\ecb3\"; }\n.remix-eye-fill:before { content: \"\\ecb4\"; }\n.remix-eye-line:before { content: \"\\ecb5\"; }\n.remix-eye-off-fill:before { content: \"\\ecb6\"; }\n.remix-eye-off-line:before { content: \"\\ecb7\"; }\n.remix-facebook-box-fill:before { content: \"\\ecb8\"; }\n.remix-facebook-box-line:before { content: \"\\ecb9\"; }\n.remix-facebook-circle-fill:before { content: \"\\ecba\"; }\n.remix-facebook-circle-line:before { content: \"\\ecbb\"; }\n.remix-facebook-fill:before { content: \"\\ecbc\"; }\n.remix-facebook-line:before { content: \"\\ecbd\"; }\n.remix-fahrenheit-fill:before { content: \"\\ecbe\"; }\n.remix-fahrenheit-line:before { content: \"\\ecbf\"; }\n.remix-feedback-fill:before { content: \"\\ecc0\"; }\n.remix-feedback-line:before { content: \"\\ecc1\"; }\n.remix-file-2-fill:before { content: \"\\ecc2\"; }\n.remix-file-2-line:before { content: \"\\ecc3\"; }\n.remix-file-3-fill:before { content: \"\\ecc4\"; }\n.remix-file-3-line:before { content: \"\\ecc5\"; }\n.remix-file-4-fill:before { content: \"\\ecc6\"; }\n.remix-file-4-line:before { content: \"\\ecc7\"; }\n.remix-file-add-fill:before { content: \"\\ecc8\"; }\n.remix-file-add-line:before { content: \"\\ecc9\"; }\n.remix-file-chart-2-fill:before { content: \"\\ecca\"; }\n.remix-file-chart-2-line:before { content: \"\\eccb\"; }\n.remix-file-chart-fill:before { content: \"\\eccc\"; }\n.remix-file-chart-line:before { content: \"\\eccd\"; }\n.remix-file-cloud-fill:before { content: \"\\ecce\"; }\n.remix-file-cloud-line:before { content: \"\\eccf\"; }\n.remix-file-code-fill:before { content: \"\\ecd0\"; }\n.remix-file-code-line:before { content: \"\\ecd1\"; }\n.remix-file-copy-2-fill:before { content: \"\\ecd2\"; }\n.remix-file-copy-2-line:before { content: \"\\ecd3\"; }\n.remix-file-copy-fill:before { content: \"\\ecd4\"; }\n.remix-file-copy-line:before { content: \"\\ecd5\"; }\n.remix-file-damage-fill:before { content: \"\\ecd6\"; }\n.remix-file-damage-line:before { content: \"\\ecd7\"; }\n.remix-file-download-fill:before { content: \"\\ecd8\"; }\n.remix-file-download-line:before { content: \"\\ecd9\"; }\n.remix-file-edit-fill:before { content: \"\\ecda\"; }\n.remix-file-edit-line:before { content: \"\\ecdb\"; }\n.remix-file-excel-2-fill:before { content: \"\\ecdc\"; }\n.remix-file-excel-2-line:before { content: \"\\ecdd\"; }\n.remix-file-excel-fill:before { content: \"\\ecde\"; }\n.remix-file-excel-line:before { content: \"\\ecdf\"; }\n.remix-file-fill:before { content: \"\\ece0\"; }\n.remix-file-forbid-fill:before { content: \"\\ece1\"; }\n.remix-file-forbid-line:before { content: \"\\ece2\"; }\n.remix-file-gif-fill:before { content: \"\\ece3\"; }\n.remix-file-gif-line:before { content: \"\\ece4\"; }\n.remix-file-history-fill:before { content: \"\\ece5\"; }\n.remix-file-history-line:before { content: \"\\ece6\"; }\n.remix-file-hwp-fill:before { content: \"\\ece7\"; }\n.remix-file-hwp-line:before { content: \"\\ece8\"; }\n.remix-file-info-fill:before { content: \"\\ece9\"; }\n.remix-file-info-line:before { content: \"\\ecea\"; }\n.remix-file-line:before { content: \"\\eceb\"; }\n.remix-file-list-2-fill:before { content: \"\\ecec\"; }\n.remix-file-list-2-line:before { content: \"\\eced\"; }\n.remix-file-list-3-fill:before { content: \"\\ecee\"; }\n.remix-file-list-3-line:before { content: \"\\ecef\"; }\n.remix-file-list-fill:before { content: \"\\ecf0\"; }\n.remix-file-list-line:before { content: \"\\ecf1\"; }\n.remix-file-lock-fill:before { content: \"\\ecf2\"; }\n.remix-file-lock-line:before { content: \"\\ecf3\"; }\n.remix-file-mark-fill:before { content: \"\\ecf4\"; }\n.remix-file-mark-line:before { content: \"\\ecf5\"; }\n.remix-file-music-fill:before { content: \"\\ecf6\"; }\n.remix-file-music-line:before { content: \"\\ecf7\"; }\n.remix-file-paper-2-fill:before { content: \"\\ecf8\"; }\n.remix-file-paper-2-line:before { content: \"\\ecf9\"; }\n.remix-file-paper-fill:before { content: \"\\ecfa\"; }\n.remix-file-paper-line:before { content: \"\\ecfb\"; }\n.remix-file-pdf-fill:before { content: \"\\ecfc\"; }\n.remix-file-pdf-line:before { content: \"\\ecfd\"; }\n.remix-file-ppt-2-fill:before { content: \"\\ecfe\"; }\n.remix-file-ppt-2-line:before { content: \"\\ecff\"; }\n.remix-file-ppt-fill:before { content: \"\\ed00\"; }\n.remix-file-ppt-line:before { content: \"\\ed01\"; }\n.remix-file-reduce-fill:before { content: \"\\ed02\"; }\n.remix-file-reduce-line:before { content: \"\\ed03\"; }\n.remix-file-search-fill:before { content: \"\\ed04\"; }\n.remix-file-search-line:before { content: \"\\ed05\"; }\n.remix-file-settings-fill:before { content: \"\\ed06\"; }\n.remix-file-settings-line:before { content: \"\\ed07\"; }\n.remix-file-shield-2-fill:before { content: \"\\ed08\"; }\n.remix-file-shield-2-line:before { content: \"\\ed09\"; }\n.remix-file-shield-fill:before { content: \"\\ed0a\"; }\n.remix-file-shield-line:before { content: \"\\ed0b\"; }\n.remix-file-shred-fill:before { content: \"\\ed0c\"; }\n.remix-file-shred-line:before { content: \"\\ed0d\"; }\n.remix-file-text-fill:before { content: \"\\ed0e\"; }\n.remix-file-text-line:before { content: \"\\ed0f\"; }\n.remix-file-transfer-fill:before { content: \"\\ed10\"; }\n.remix-file-transfer-line:before { content: \"\\ed11\"; }\n.remix-file-unknow-fill:before { content: \"\\ed12\"; }\n.remix-file-unknow-line:before { content: \"\\ed13\"; }\n.remix-file-upload-fill:before { content: \"\\ed14\"; }\n.remix-file-upload-line:before { content: \"\\ed15\"; }\n.remix-file-user-fill:before { content: \"\\ed16\"; }\n.remix-file-user-line:before { content: \"\\ed17\"; }\n.remix-file-warning-fill:before { content: \"\\ed18\"; }\n.remix-file-warning-line:before { content: \"\\ed19\"; }\n.remix-file-word-2-fill:before { content: \"\\ed1a\"; }\n.remix-file-word-2-line:before { content: \"\\ed1b\"; }\n.remix-file-word-fill:before { content: \"\\ed1c\"; }\n.remix-file-word-line:before { content: \"\\ed1d\"; }\n.remix-file-zip-fill:before { content: \"\\ed1e\"; }\n.remix-file-zip-line:before { content: \"\\ed1f\"; }\n.remix-film-fill:before { content: \"\\ed20\"; }\n.remix-film-line:before { content: \"\\ed21\"; }\n.remix-filter-2-fill:before { content: \"\\ed22\"; }\n.remix-filter-2-line:before { content: \"\\ed23\"; }\n.remix-filter-3-fill:before { content: \"\\ed24\"; }\n.remix-filter-3-line:before { content: \"\\ed25\"; }\n.remix-filter-fill:before { content: \"\\ed26\"; }\n.remix-filter-line:before { content: \"\\ed27\"; }\n.remix-filter-off-fill:before { content: \"\\ed28\"; }\n.remix-filter-off-line:before { content: \"\\ed29\"; }\n.remix-find-replace-fill:before { content: \"\\ed2a\"; }\n.remix-find-replace-line:before { content: \"\\ed2b\"; }\n.remix-finder-fill:before { content: \"\\ed2c\"; }\n.remix-finder-line:before { content: \"\\ed2d\"; }\n.remix-fingerprint-2-fill:before { content: \"\\ed2e\"; }\n.remix-fingerprint-2-line:before { content: \"\\ed2f\"; }\n.remix-fingerprint-fill:before { content: \"\\ed30\"; }\n.remix-fingerprint-line:before { content: \"\\ed31\"; }\n.remix-fire-fill:before { content: \"\\ed32\"; }\n.remix-fire-line:before { content: \"\\ed33\"; }\n.remix-firefox-fill:before { content: \"\\ed34\"; }\n.remix-firefox-line:before { content: \"\\ed35\"; }\n.remix-first-aid-kit-fill:before { content: \"\\ed36\"; }\n.remix-first-aid-kit-line:before { content: \"\\ed37\"; }\n.remix-flag-2-fill:before { content: \"\\ed38\"; }\n.remix-flag-2-line:before { content: \"\\ed39\"; }\n.remix-flag-fill:before { content: \"\\ed3a\"; }\n.remix-flag-line:before { content: \"\\ed3b\"; }\n.remix-flashlight-fill:before { content: \"\\ed3c\"; }\n.remix-flashlight-line:before { content: \"\\ed3d\"; }\n.remix-flask-fill:before { content: \"\\ed3e\"; }\n.remix-flask-line:before { content: \"\\ed3f\"; }\n.remix-flight-land-fill:before { content: \"\\ed40\"; }\n.remix-flight-land-line:before { content: \"\\ed41\"; }\n.remix-flight-takeoff-fill:before { content: \"\\ed42\"; }\n.remix-flight-takeoff-line:before { content: \"\\ed43\"; }\n.remix-flood-fill:before { content: \"\\ed44\"; }\n.remix-flood-line:before { content: \"\\ed45\"; }\n.remix-flow-chart:before { content: \"\\ed46\"; }\n.remix-flutter-fill:before { content: \"\\ed47\"; }\n.remix-flutter-line:before { content: \"\\ed48\"; }\n.remix-focus-2-fill:before { content: \"\\ed49\"; }\n.remix-focus-2-line:before { content: \"\\ed4a\"; }\n.remix-focus-3-fill:before { content: \"\\ed4b\"; }\n.remix-focus-3-line:before { content: \"\\ed4c\"; }\n.remix-focus-fill:before { content: \"\\ed4d\"; }\n.remix-focus-line:before { content: \"\\ed4e\"; }\n.remix-foggy-fill:before { content: \"\\ed4f\"; }\n.remix-foggy-line:before { content: \"\\ed50\"; }\n.remix-folder-2-fill:before { content: \"\\ed51\"; }\n.remix-folder-2-line:before { content: \"\\ed52\"; }\n.remix-folder-3-fill:before { content: \"\\ed53\"; }\n.remix-folder-3-line:before { content: \"\\ed54\"; }\n.remix-folder-4-fill:before { content: \"\\ed55\"; }\n.remix-folder-4-line:before { content: \"\\ed56\"; }\n.remix-folder-5-fill:before { content: \"\\ed57\"; }\n.remix-folder-5-line:before { content: \"\\ed58\"; }\n.remix-folder-add-fill:before { content: \"\\ed59\"; }\n.remix-folder-add-line:before { content: \"\\ed5a\"; }\n.remix-folder-chart-2-fill:before { content: \"\\ed5b\"; }\n.remix-folder-chart-2-line:before { content: \"\\ed5c\"; }\n.remix-folder-chart-fill:before { content: \"\\ed5d\"; }\n.remix-folder-chart-line:before { content: \"\\ed5e\"; }\n.remix-folder-download-fill:before { content: \"\\ed5f\"; }\n.remix-folder-download-line:before { content: \"\\ed60\"; }\n.remix-folder-fill:before { content: \"\\ed61\"; }\n.remix-folder-forbid-fill:before { content: \"\\ed62\"; }\n.remix-folder-forbid-line:before { content: \"\\ed63\"; }\n.remix-folder-history-fill:before { content: \"\\ed64\"; }\n.remix-folder-history-line:before { content: \"\\ed65\"; }\n.remix-folder-info-fill:before { content: \"\\ed66\"; }\n.remix-folder-info-line:before { content: \"\\ed67\"; }\n.remix-folder-keyhole-fill:before { content: \"\\ed68\"; }\n.remix-folder-keyhole-line:before { content: \"\\ed69\"; }\n.remix-folder-line:before { content: \"\\ed6a\"; }\n.remix-folder-lock-fill:before { content: \"\\ed6b\"; }\n.remix-folder-lock-line:before { content: \"\\ed6c\"; }\n.remix-folder-music-fill:before { content: \"\\ed6d\"; }\n.remix-folder-music-line:before { content: \"\\ed6e\"; }\n.remix-folder-open-fill:before { content: \"\\ed6f\"; }\n.remix-folder-open-line:before { content: \"\\ed70\"; }\n.remix-folder-received-fill:before { content: \"\\ed71\"; }\n.remix-folder-received-line:before { content: \"\\ed72\"; }\n.remix-folder-reduce-fill:before { content: \"\\ed73\"; }\n.remix-folder-reduce-line:before { content: \"\\ed74\"; }\n.remix-folder-settings-fill:before { content: \"\\ed75\"; }\n.remix-folder-settings-line:before { content: \"\\ed76\"; }\n.remix-folder-shared-fill:before { content: \"\\ed77\"; }\n.remix-folder-shared-line:before { content: \"\\ed78\"; }\n.remix-folder-shield-2-fill:before { content: \"\\ed79\"; }\n.remix-folder-shield-2-line:before { content: \"\\ed7a\"; }\n.remix-folder-shield-fill:before { content: \"\\ed7b\"; }\n.remix-folder-shield-line:before { content: \"\\ed7c\"; }\n.remix-folder-transfer-fill:before { content: \"\\ed7d\"; }\n.remix-folder-transfer-line:before { content: \"\\ed7e\"; }\n.remix-folder-unknow-fill:before { content: \"\\ed7f\"; }\n.remix-folder-unknow-line:before { content: \"\\ed80\"; }\n.remix-folder-upload-fill:before { content: \"\\ed81\"; }\n.remix-folder-upload-line:before { content: \"\\ed82\"; }\n.remix-folder-user-fill:before { content: \"\\ed83\"; }\n.remix-folder-user-line:before { content: \"\\ed84\"; }\n.remix-folder-warning-fill:before { content: \"\\ed85\"; }\n.remix-folder-warning-line:before { content: \"\\ed86\"; }\n.remix-folder-zip-fill:before { content: \"\\ed87\"; }\n.remix-folder-zip-line:before { content: \"\\ed88\"; }\n.remix-folders-fill:before { content: \"\\ed89\"; }\n.remix-folders-line:before { content: \"\\ed8a\"; }\n.remix-font-color:before { content: \"\\ed8b\"; }\n.remix-font-size-2:before { content: \"\\ed8c\"; }\n.remix-font-size:before { content: \"\\ed8d\"; }\n.remix-football-fill:before { content: \"\\ed8e\"; }\n.remix-football-line:before { content: \"\\ed8f\"; }\n.remix-footprint-fill:before { content: \"\\ed90\"; }\n.remix-footprint-line:before { content: \"\\ed91\"; }\n.remix-forbid-2-fill:before { content: \"\\ed92\"; }\n.remix-forbid-2-line:before { content: \"\\ed93\"; }\n.remix-forbid-fill:before { content: \"\\ed94\"; }\n.remix-forbid-line:before { content: \"\\ed95\"; }\n.remix-format-clear:before { content: \"\\ed96\"; }\n.remix-fridge-fill:before { content: \"\\ed97\"; }\n.remix-fridge-line:before { content: \"\\ed98\"; }\n.remix-fullscreen-exit-fill:before { content: \"\\ed99\"; }\n.remix-fullscreen-exit-line:before { content: \"\\ed9a\"; }\n.remix-fullscreen-fill:before { content: \"\\ed9b\"; }\n.remix-fullscreen-line:before { content: \"\\ed9c\"; }\n.remix-function-fill:before { content: \"\\ed9d\"; }\n.remix-function-line:before { content: \"\\ed9e\"; }\n.remix-functions:before { content: \"\\ed9f\"; }\n.remix-funds-box-fill:before { content: \"\\eda0\"; }\n.remix-funds-box-line:before { content: \"\\eda1\"; }\n.remix-funds-fill:before { content: \"\\eda2\"; }\n.remix-funds-line:before { content: \"\\eda3\"; }\n.remix-gallery-fill:before { content: \"\\eda4\"; }\n.remix-gallery-line:before { content: \"\\eda5\"; }\n.remix-gallery-upload-fill:before { content: \"\\eda6\"; }\n.remix-gallery-upload-line:before { content: \"\\eda7\"; }\n.remix-game-fill:before { content: \"\\eda8\"; }\n.remix-game-line:before { content: \"\\eda9\"; }\n.remix-gamepad-fill:before { content: \"\\edaa\"; }\n.remix-gamepad-line:before { content: \"\\edab\"; }\n.remix-gas-station-fill:before { content: \"\\edac\"; }\n.remix-gas-station-line:before { content: \"\\edad\"; }\n.remix-gatsby-fill:before { content: \"\\edae\"; }\n.remix-gatsby-line:before { content: \"\\edaf\"; }\n.remix-genderless-fill:before { content: \"\\edb0\"; }\n.remix-genderless-line:before { content: \"\\edb1\"; }\n.remix-ghost-2-fill:before { content: \"\\edb2\"; }\n.remix-ghost-2-line:before { content: \"\\edb3\"; }\n.remix-ghost-fill:before { content: \"\\edb4\"; }\n.remix-ghost-line:before { content: \"\\edb5\"; }\n.remix-ghost-smile-fill:before { content: \"\\edb6\"; }\n.remix-ghost-smile-line:before { content: \"\\edb7\"; }\n.remix-gift-2-fill:before { content: \"\\edb8\"; }\n.remix-gift-2-line:before { content: \"\\edb9\"; }\n.remix-gift-fill:before { content: \"\\edba\"; }\n.remix-gift-line:before { content: \"\\edbb\"; }\n.remix-git-branch-fill:before { content: \"\\edbc\"; }\n.remix-git-branch-line:before { content: \"\\edbd\"; }\n.remix-git-commit-fill:before { content: \"\\edbe\"; }\n.remix-git-commit-line:before { content: \"\\edbf\"; }\n.remix-git-merge-fill:before { content: \"\\edc0\"; }\n.remix-git-merge-line:before { content: \"\\edc1\"; }\n.remix-git-pull-request-fill:before { content: \"\\edc2\"; }\n.remix-git-pull-request-line:before { content: \"\\edc3\"; }\n.remix-git-repository-commits-fill:before { content: \"\\edc4\"; }\n.remix-git-repository-commits-line:before { content: \"\\edc5\"; }\n.remix-git-repository-fill:before { content: \"\\edc6\"; }\n.remix-git-repository-line:before { content: \"\\edc7\"; }\n.remix-git-repository-private-fill:before { content: \"\\edc8\"; }\n.remix-git-repository-private-line:before { content: \"\\edc9\"; }\n.remix-github-fill:before { content: \"\\edca\"; }\n.remix-github-line:before { content: \"\\edcb\"; }\n.remix-gitlab-fill:before { content: \"\\edcc\"; }\n.remix-gitlab-line:before { content: \"\\edcd\"; }\n.remix-global-fill:before { content: \"\\edce\"; }\n.remix-global-line:before { content: \"\\edcf\"; }\n.remix-globe-fill:before { content: \"\\edd0\"; }\n.remix-globe-line:before { content: \"\\edd1\"; }\n.remix-goblet-fill:before { content: \"\\edd2\"; }\n.remix-goblet-line:before { content: \"\\edd3\"; }\n.remix-google-fill:before { content: \"\\edd4\"; }\n.remix-google-line:before { content: \"\\edd5\"; }\n.remix-google-play-fill:before { content: \"\\edd6\"; }\n.remix-google-play-line:before { content: \"\\edd7\"; }\n.remix-government-fill:before { content: \"\\edd8\"; }\n.remix-government-line:before { content: \"\\edd9\"; }\n.remix-gps-fill:before { content: \"\\edda\"; }\n.remix-gps-line:before { content: \"\\eddb\"; }\n.remix-gradienter-fill:before { content: \"\\eddc\"; }\n.remix-gradienter-line:before { content: \"\\eddd\"; }\n.remix-grid-fill:before { content: \"\\edde\"; }\n.remix-grid-line:before { content: \"\\eddf\"; }\n.remix-group-2-fill:before { content: \"\\ede0\"; }\n.remix-group-2-line:before { content: \"\\ede1\"; }\n.remix-group-fill:before { content: \"\\ede2\"; }\n.remix-group-line:before { content: \"\\ede3\"; }\n.remix-guide-fill:before { content: \"\\ede4\"; }\n.remix-guide-line:before { content: \"\\ede5\"; }\n.remix-h-1:before { content: \"\\ede6\"; }\n.remix-h-2:before { content: \"\\ede7\"; }\n.remix-h-3:before { content: \"\\ede8\"; }\n.remix-h-4:before { content: \"\\ede9\"; }\n.remix-h-5:before { content: \"\\edea\"; }\n.remix-h-6:before { content: \"\\edeb\"; }\n.remix-hail-fill:before { content: \"\\edec\"; }\n.remix-hail-line:before { content: \"\\eded\"; }\n.remix-hammer-fill:before { content: \"\\edee\"; }\n.remix-hammer-line:before { content: \"\\edef\"; }\n.remix-hand-coin-fill:before { content: \"\\edf0\"; }\n.remix-hand-coin-line:before { content: \"\\edf1\"; }\n.remix-hand-heart-fill:before { content: \"\\edf2\"; }\n.remix-hand-heart-line:before { content: \"\\edf3\"; }\n.remix-hand-sanitizer-fill:before { content: \"\\edf4\"; }\n.remix-hand-sanitizer-line:before { content: \"\\edf5\"; }\n.remix-handbag-fill:before { content: \"\\edf6\"; }\n.remix-handbag-line:before { content: \"\\edf7\"; }\n.remix-hard-drive-2-fill:before { content: \"\\edf8\"; }\n.remix-hard-drive-2-line:before { content: \"\\edf9\"; }\n.remix-hard-drive-fill:before { content: \"\\edfa\"; }\n.remix-hard-drive-line:before { content: \"\\edfb\"; }\n.remix-hashtag:before { content: \"\\edfc\"; }\n.remix-haze-2-fill:before { content: \"\\edfd\"; }\n.remix-haze-2-line:before { content: \"\\edfe\"; }\n.remix-haze-fill:before { content: \"\\edff\"; }\n.remix-haze-line:before { content: \"\\ee00\"; }\n.remix-hd-fill:before { content: \"\\ee01\"; }\n.remix-hd-line:before { content: \"\\ee02\"; }\n.remix-heading:before { content: \"\\ee03\"; }\n.remix-headphone-fill:before { content: \"\\ee04\"; }\n.remix-headphone-line:before { content: \"\\ee05\"; }\n.remix-health-book-fill:before { content: \"\\ee06\"; }\n.remix-health-book-line:before { content: \"\\ee07\"; }\n.remix-heart-2-fill:before { content: \"\\ee08\"; }\n.remix-heart-2-line:before { content: \"\\ee09\"; }\n.remix-heart-3-fill:before { content: \"\\ee0a\"; }\n.remix-heart-3-line:before { content: \"\\ee0b\"; }\n.remix-heart-add-fill:before { content: \"\\ee0c\"; }\n.remix-heart-add-line:before { content: \"\\ee0d\"; }\n.remix-heart-fill:before { content: \"\\ee0e\"; }\n.remix-heart-line:before { content: \"\\ee0f\"; }\n.remix-heart-pulse-fill:before { content: \"\\ee10\"; }\n.remix-heart-pulse-line:before { content: \"\\ee11\"; }\n.remix-hearts-fill:before { content: \"\\ee12\"; }\n.remix-hearts-line:before { content: \"\\ee13\"; }\n.remix-heavy-showers-fill:before { content: \"\\ee14\"; }\n.remix-heavy-showers-line:before { content: \"\\ee15\"; }\n.remix-history-fill:before { content: \"\\ee16\"; }\n.remix-history-line:before { content: \"\\ee17\"; }\n.remix-home-2-fill:before { content: \"\\ee18\"; }\n.remix-home-2-line:before { content: \"\\ee19\"; }\n.remix-home-3-fill:before { content: \"\\ee1a\"; }\n.remix-home-3-line:before { content: \"\\ee1b\"; }\n.remix-home-4-fill:before { content: \"\\ee1c\"; }\n.remix-home-4-line:before { content: \"\\ee1d\"; }\n.remix-home-5-fill:before { content: \"\\ee1e\"; }\n.remix-home-5-line:before { content: \"\\ee1f\"; }\n.remix-home-6-fill:before { content: \"\\ee20\"; }\n.remix-home-6-line:before { content: \"\\ee21\"; }\n.remix-home-7-fill:before { content: \"\\ee22\"; }\n.remix-home-7-line:before { content: \"\\ee23\"; }\n.remix-home-8-fill:before { content: \"\\ee24\"; }\n.remix-home-8-line:before { content: \"\\ee25\"; }\n.remix-home-fill:before { content: \"\\ee26\"; }\n.remix-home-gear-fill:before { content: \"\\ee27\"; }\n.remix-home-gear-line:before { content: \"\\ee28\"; }\n.remix-home-heart-fill:before { content: \"\\ee29\"; }\n.remix-home-heart-line:before { content: \"\\ee2a\"; }\n.remix-home-line:before { content: \"\\ee2b\"; }\n.remix-home-smile-2-fill:before { content: \"\\ee2c\"; }\n.remix-home-smile-2-line:before { content: \"\\ee2d\"; }\n.remix-home-smile-fill:before { content: \"\\ee2e\"; }\n.remix-home-smile-line:before { content: \"\\ee2f\"; }\n.remix-home-wifi-fill:before { content: \"\\ee30\"; }\n.remix-home-wifi-line:before { content: \"\\ee31\"; }\n.remix-honor-of-kings-fill:before { content: \"\\ee32\"; }\n.remix-honor-of-kings-line:before { content: \"\\ee33\"; }\n.remix-honour-fill:before { content: \"\\ee34\"; }\n.remix-honour-line:before { content: \"\\ee35\"; }\n.remix-hospital-fill:before { content: \"\\ee36\"; }\n.remix-hospital-line:before { content: \"\\ee37\"; }\n.remix-hotel-bed-fill:before { content: \"\\ee38\"; }\n.remix-hotel-bed-line:before { content: \"\\ee39\"; }\n.remix-hotel-fill:before { content: \"\\ee3a\"; }\n.remix-hotel-line:before { content: \"\\ee3b\"; }\n.remix-hotspot-fill:before { content: \"\\ee3c\"; }\n.remix-hotspot-line:before { content: \"\\ee3d\"; }\n.remix-hq-fill:before { content: \"\\ee3e\"; }\n.remix-hq-line:before { content: \"\\ee3f\"; }\n.remix-html5-fill:before { content: \"\\ee40\"; }\n.remix-html5-line:before { content: \"\\ee41\"; }\n.remix-ie-fill:before { content: \"\\ee42\"; }\n.remix-ie-line:before { content: \"\\ee43\"; }\n.remix-image-2-fill:before { content: \"\\ee44\"; }\n.remix-image-2-line:before { content: \"\\ee45\"; }\n.remix-image-add-fill:before { content: \"\\ee46\"; }\n.remix-image-add-line:before { content: \"\\ee47\"; }\n.remix-image-edit-fill:before { content: \"\\ee48\"; }\n.remix-image-edit-line:before { content: \"\\ee49\"; }\n.remix-image-fill:before { content: \"\\ee4a\"; }\n.remix-image-line:before { content: \"\\ee4b\"; }\n.remix-inbox-archive-fill:before { content: \"\\ee4c\"; }\n.remix-inbox-archive-line:before { content: \"\\ee4d\"; }\n.remix-inbox-fill:before { content: \"\\ee4e\"; }\n.remix-inbox-line:before { content: \"\\ee4f\"; }\n.remix-inbox-unarchive-fill:before { content: \"\\ee50\"; }\n.remix-inbox-unarchive-line:before { content: \"\\ee51\"; }\n.remix-increase-decrease-fill:before { content: \"\\ee52\"; }\n.remix-increase-decrease-line:before { content: \"\\ee53\"; }\n.remix-indent-decrease:before { content: \"\\ee54\"; }\n.remix-indent-increase:before { content: \"\\ee55\"; }\n.remix-indeterminate-circle-fill:before { content: \"\\ee56\"; }\n.remix-indeterminate-circle-line:before { content: \"\\ee57\"; }\n.remix-information-fill:before { content: \"\\ee58\"; }\n.remix-information-line:before { content: \"\\ee59\"; }\n.remix-infrared-thermometer-fill:before { content: \"\\ee5a\"; }\n.remix-infrared-thermometer-line:before { content: \"\\ee5b\"; }\n.remix-ink-bottle-fill:before { content: \"\\ee5c\"; }\n.remix-ink-bottle-line:before { content: \"\\ee5d\"; }\n.remix-input-cursor-move:before { content: \"\\ee5e\"; }\n.remix-input-method-fill:before { content: \"\\ee5f\"; }\n.remix-input-method-line:before { content: \"\\ee60\"; }\n.remix-insert-column-left:before { content: \"\\ee61\"; }\n.remix-insert-column-right:before { content: \"\\ee62\"; }\n.remix-insert-row-bottom:before { content: \"\\ee63\"; }\n.remix-insert-row-top:before { content: \"\\ee64\"; }\n.remix-instagram-fill:before { content: \"\\ee65\"; }\n.remix-instagram-line:before { content: \"\\ee66\"; }\n.remix-install-fill:before { content: \"\\ee67\"; }\n.remix-install-line:before { content: \"\\ee68\"; }\n.remix-invision-fill:before { content: \"\\ee69\"; }\n.remix-invision-line:before { content: \"\\ee6a\"; }\n.remix-italic:before { content: \"\\ee6b\"; }\n.remix-kakao-talk-fill:before { content: \"\\ee6c\"; }\n.remix-kakao-talk-line:before { content: \"\\ee6d\"; }\n.remix-key-2-fill:before { content: \"\\ee6e\"; }\n.remix-key-2-line:before { content: \"\\ee6f\"; }\n.remix-key-fill:before { content: \"\\ee70\"; }\n.remix-key-line:before { content: \"\\ee71\"; }\n.remix-keyboard-box-fill:before { content: \"\\ee72\"; }\n.remix-keyboard-box-line:before { content: \"\\ee73\"; }\n.remix-keyboard-fill:before { content: \"\\ee74\"; }\n.remix-keyboard-line:before { content: \"\\ee75\"; }\n.remix-keynote-fill:before { content: \"\\ee76\"; }\n.remix-keynote-line:before { content: \"\\ee77\"; }\n.remix-knife-blood-fill:before { content: \"\\ee78\"; }\n.remix-knife-blood-line:before { content: \"\\ee79\"; }\n.remix-knife-fill:before { content: \"\\ee7a\"; }\n.remix-knife-line:before { content: \"\\ee7b\"; }\n.remix-landscape-fill:before { content: \"\\ee7c\"; }\n.remix-landscape-line:before { content: \"\\ee7d\"; }\n.remix-layout-2-fill:before { content: \"\\ee7e\"; }\n.remix-layout-2-line:before { content: \"\\ee7f\"; }\n.remix-layout-3-fill:before { content: \"\\ee80\"; }\n.remix-layout-3-line:before { content: \"\\ee81\"; }\n.remix-layout-4-fill:before { content: \"\\ee82\"; }\n.remix-layout-4-line:before { content: \"\\ee83\"; }\n.remix-layout-5-fill:before { content: \"\\ee84\"; }\n.remix-layout-5-line:before { content: \"\\ee85\"; }\n.remix-layout-6-fill:before { content: \"\\ee86\"; }\n.remix-layout-6-line:before { content: \"\\ee87\"; }\n.remix-layout-bottom-2-fill:before { content: \"\\ee88\"; }\n.remix-layout-bottom-2-line:before { content: \"\\ee89\"; }\n.remix-layout-bottom-fill:before { content: \"\\ee8a\"; }\n.remix-layout-bottom-line:before { content: \"\\ee8b\"; }\n.remix-layout-column-fill:before { content: \"\\ee8c\"; }\n.remix-layout-column-line:before { content: \"\\ee8d\"; }\n.remix-layout-fill:before { content: \"\\ee8e\"; }\n.remix-layout-grid-fill:before { content: \"\\ee8f\"; }\n.remix-layout-grid-line:before { content: \"\\ee90\"; }\n.remix-layout-left-2-fill:before { content: \"\\ee91\"; }\n.remix-layout-left-2-line:before { content: \"\\ee92\"; }\n.remix-layout-left-fill:before { content: \"\\ee93\"; }\n.remix-layout-left-line:before { content: \"\\ee94\"; }\n.remix-layout-line:before { content: \"\\ee95\"; }\n.remix-layout-masonry-fill:before { content: \"\\ee96\"; }\n.remix-layout-masonry-line:before { content: \"\\ee97\"; }\n.remix-layout-right-2-fill:before { content: \"\\ee98\"; }\n.remix-layout-right-2-line:before { content: \"\\ee99\"; }\n.remix-layout-right-fill:before { content: \"\\ee9a\"; }\n.remix-layout-right-line:before { content: \"\\ee9b\"; }\n.remix-layout-row-fill:before { content: \"\\ee9c\"; }\n.remix-layout-row-line:before { content: \"\\ee9d\"; }\n.remix-layout-top-2-fill:before { content: \"\\ee9e\"; }\n.remix-layout-top-2-line:before { content: \"\\ee9f\"; }\n.remix-layout-top-fill:before { content: \"\\eea0\"; }\n.remix-layout-top-line:before { content: \"\\eea1\"; }\n.remix-leaf-fill:before { content: \"\\eea2\"; }\n.remix-leaf-line:before { content: \"\\eea3\"; }\n.remix-lifebuoy-fill:before { content: \"\\eea4\"; }\n.remix-lifebuoy-line:before { content: \"\\eea5\"; }\n.remix-lightbulb-fill:before { content: \"\\eea6\"; }\n.remix-lightbulb-flash-fill:before { content: \"\\eea7\"; }\n.remix-lightbulb-flash-line:before { content: \"\\eea8\"; }\n.remix-lightbulb-line:before { content: \"\\eea9\"; }\n.remix-line-chart-fill:before { content: \"\\eeaa\"; }\n.remix-line-chart-line:before { content: \"\\eeab\"; }\n.remix-line-fill:before { content: \"\\eeac\"; }\n.remix-line-height:before { content: \"\\eead\"; }\n.remix-line-line:before { content: \"\\eeae\"; }\n.remix-link-m:before { content: \"\\eeaf\"; }\n.remix-link-unlink-m:before { content: \"\\eeb0\"; }\n.remix-link-unlink:before { content: \"\\eeb1\"; }\n.remix-link:before { content: \"\\eeb2\"; }\n.remix-linkedin-box-fill:before { content: \"\\eeb3\"; }\n.remix-linkedin-box-line:before { content: \"\\eeb4\"; }\n.remix-linkedin-fill:before { content: \"\\eeb5\"; }\n.remix-linkedin-line:before { content: \"\\eeb6\"; }\n.remix-links-fill:before { content: \"\\eeb7\"; }\n.remix-links-line:before { content: \"\\eeb8\"; }\n.remix-list-check-2:before { content: \"\\eeb9\"; }\n.remix-list-check:before { content: \"\\eeba\"; }\n.remix-list-ordered:before { content: \"\\eebb\"; }\n.remix-list-settings-fill:before { content: \"\\eebc\"; }\n.remix-list-settings-line:before { content: \"\\eebd\"; }\n.remix-list-unordered:before { content: \"\\eebe\"; }\n.remix-live-fill:before { content: \"\\eebf\"; }\n.remix-live-line:before { content: \"\\eec0\"; }\n.remix-loader-2-fill:before { content: \"\\eec1\"; }\n.remix-loader-2-line:before { content: \"\\eec2\"; }\n.remix-loader-3-fill:before { content: \"\\eec3\"; }\n.remix-loader-3-line:before { content: \"\\eec4\"; }\n.remix-loader-4-fill:before { content: \"\\eec5\"; }\n.remix-loader-4-line:before { content: \"\\eec6\"; }\n.remix-loader-5-fill:before { content: \"\\eec7\"; }\n.remix-loader-5-line:before { content: \"\\eec8\"; }\n.remix-loader-fill:before { content: \"\\eec9\"; }\n.remix-loader-line:before { content: \"\\eeca\"; }\n.remix-lock-2-fill:before { content: \"\\eecb\"; }\n.remix-lock-2-line:before { content: \"\\eecc\"; }\n.remix-lock-fill:before { content: \"\\eecd\"; }\n.remix-lock-line:before { content: \"\\eece\"; }\n.remix-lock-password-fill:before { content: \"\\eecf\"; }\n.remix-lock-password-line:before { content: \"\\eed0\"; }\n.remix-lock-unlock-fill:before { content: \"\\eed1\"; }\n.remix-lock-unlock-line:before { content: \"\\eed2\"; }\n.remix-login-box-fill:before { content: \"\\eed3\"; }\n.remix-login-box-line:before { content: \"\\eed4\"; }\n.remix-login-circle-fill:before { content: \"\\eed5\"; }\n.remix-login-circle-line:before { content: \"\\eed6\"; }\n.remix-logout-box-fill:before { content: \"\\eed7\"; }\n.remix-logout-box-line:before { content: \"\\eed8\"; }\n.remix-logout-box-r-fill:before { content: \"\\eed9\"; }\n.remix-logout-box-r-line:before { content: \"\\eeda\"; }\n.remix-logout-circle-fill:before { content: \"\\eedb\"; }\n.remix-logout-circle-line:before { content: \"\\eedc\"; }\n.remix-logout-circle-r-fill:before { content: \"\\eedd\"; }\n.remix-logout-circle-r-line:before { content: \"\\eede\"; }\n.remix-luggage-cart-fill:before { content: \"\\eedf\"; }\n.remix-luggage-cart-line:before { content: \"\\eee0\"; }\n.remix-luggage-deposit-fill:before { content: \"\\eee1\"; }\n.remix-luggage-deposit-line:before { content: \"\\eee2\"; }\n.remix-lungs-fill:before { content: \"\\eee3\"; }\n.remix-lungs-line:before { content: \"\\eee4\"; }\n.remix-mac-fill:before { content: \"\\eee5\"; }\n.remix-mac-line:before { content: \"\\eee6\"; }\n.remix-macbook-fill:before { content: \"\\eee7\"; }\n.remix-macbook-line:before { content: \"\\eee8\"; }\n.remix-magic-fill:before { content: \"\\eee9\"; }\n.remix-magic-line:before { content: \"\\eeea\"; }\n.remix-mail-add-fill:before { content: \"\\eeeb\"; }\n.remix-mail-add-line:before { content: \"\\eeec\"; }\n.remix-mail-check-fill:before { content: \"\\eeed\"; }\n.remix-mail-check-line:before { content: \"\\eeee\"; }\n.remix-mail-close-fill:before { content: \"\\eeef\"; }\n.remix-mail-close-line:before { content: \"\\eef0\"; }\n.remix-mail-download-fill:before { content: \"\\eef1\"; }\n.remix-mail-download-line:before { content: \"\\eef2\"; }\n.remix-mail-fill:before { content: \"\\eef3\"; }\n.remix-mail-forbid-fill:before { content: \"\\eef4\"; }\n.remix-mail-forbid-line:before { content: \"\\eef5\"; }\n.remix-mail-line:before { content: \"\\eef6\"; }\n.remix-mail-lock-fill:before { content: \"\\eef7\"; }\n.remix-mail-lock-line:before { content: \"\\eef8\"; }\n.remix-mail-open-fill:before { content: \"\\eef9\"; }\n.remix-mail-open-line:before { content: \"\\eefa\"; }\n.remix-mail-send-fill:before { content: \"\\eefb\"; }\n.remix-mail-send-line:before { content: \"\\eefc\"; }\n.remix-mail-settings-fill:before { content: \"\\eefd\"; }\n.remix-mail-settings-line:before { content: \"\\eefe\"; }\n.remix-mail-star-fill:before { content: \"\\eeff\"; }\n.remix-mail-star-line:before { content: \"\\ef00\"; }\n.remix-mail-unread-fill:before { content: \"\\ef01\"; }\n.remix-mail-unread-line:before { content: \"\\ef02\"; }\n.remix-mail-volume-fill:before { content: \"\\ef03\"; }\n.remix-mail-volume-line:before { content: \"\\ef04\"; }\n.remix-map-2-fill:before { content: \"\\ef05\"; }\n.remix-map-2-line:before { content: \"\\ef06\"; }\n.remix-map-fill:before { content: \"\\ef07\"; }\n.remix-map-line:before { content: \"\\ef08\"; }\n.remix-map-pin-2-fill:before { content: \"\\ef09\"; }\n.remix-map-pin-2-line:before { content: \"\\ef0a\"; }\n.remix-map-pin-3-fill:before { content: \"\\ef0b\"; }\n.remix-map-pin-3-line:before { content: \"\\ef0c\"; }\n.remix-map-pin-4-fill:before { content: \"\\ef0d\"; }\n.remix-map-pin-4-line:before { content: \"\\ef0e\"; }\n.remix-map-pin-5-fill:before { content: \"\\ef0f\"; }\n.remix-map-pin-5-line:before { content: \"\\ef10\"; }\n.remix-map-pin-add-fill:before { content: \"\\ef11\"; }\n.remix-map-pin-add-line:before { content: \"\\ef12\"; }\n.remix-map-pin-fill:before { content: \"\\ef13\"; }\n.remix-map-pin-line:before { content: \"\\ef14\"; }\n.remix-map-pin-range-fill:before { content: \"\\ef15\"; }\n.remix-map-pin-range-line:before { content: \"\\ef16\"; }\n.remix-map-pin-time-fill:before { content: \"\\ef17\"; }\n.remix-map-pin-time-line:before { content: \"\\ef18\"; }\n.remix-map-pin-user-fill:before { content: \"\\ef19\"; }\n.remix-map-pin-user-line:before { content: \"\\ef1a\"; }\n.remix-mark-pen-fill:before { content: \"\\ef1b\"; }\n.remix-mark-pen-line:before { content: \"\\ef1c\"; }\n.remix-markdown-fill:before { content: \"\\ef1d\"; }\n.remix-markdown-line:before { content: \"\\ef1e\"; }\n.remix-markup-fill:before { content: \"\\ef1f\"; }\n.remix-markup-line:before { content: \"\\ef20\"; }\n.remix-mastercard-fill:before { content: \"\\ef21\"; }\n.remix-mastercard-line:before { content: \"\\ef22\"; }\n.remix-mastodon-fill:before { content: \"\\ef23\"; }\n.remix-mastodon-line:before { content: \"\\ef24\"; }\n.remix-medal-2-fill:before { content: \"\\ef25\"; }\n.remix-medal-2-line:before { content: \"\\ef26\"; }\n.remix-medal-fill:before { content: \"\\ef27\"; }\n.remix-medal-line:before { content: \"\\ef28\"; }\n.remix-medicine-bottle-fill:before { content: \"\\ef29\"; }\n.remix-medicine-bottle-line:before { content: \"\\ef2a\"; }\n.remix-medium-fill:before { content: \"\\ef2b\"; }\n.remix-medium-line:before { content: \"\\ef2c\"; }\n.remix-men-fill:before { content: \"\\ef2d\"; }\n.remix-men-line:before { content: \"\\ef2e\"; }\n.remix-mental-health-fill:before { content: \"\\ef2f\"; }\n.remix-mental-health-line:before { content: \"\\ef30\"; }\n.remix-menu-2-fill:before { content: \"\\ef31\"; }\n.remix-menu-2-line:before { content: \"\\ef32\"; }\n.remix-menu-3-fill:before { content: \"\\ef33\"; }\n.remix-menu-3-line:before { content: \"\\ef34\"; }\n.remix-menu-4-fill:before { content: \"\\ef35\"; }\n.remix-menu-4-line:before { content: \"\\ef36\"; }\n.remix-menu-5-fill:before { content: \"\\ef37\"; }\n.remix-menu-5-line:before { content: \"\\ef38\"; }\n.remix-menu-add-fill:before { content: \"\\ef39\"; }\n.remix-menu-add-line:before { content: \"\\ef3a\"; }\n.remix-menu-fill:before { content: \"\\ef3b\"; }\n.remix-menu-fold-fill:before { content: \"\\ef3c\"; }\n.remix-menu-fold-line:before { content: \"\\ef3d\"; }\n.remix-menu-line:before { content: \"\\ef3e\"; }\n.remix-menu-unfold-fill:before { content: \"\\ef3f\"; }\n.remix-menu-unfold-line:before { content: \"\\ef40\"; }\n.remix-merge-cells-horizontal:before { content: \"\\ef41\"; }\n.remix-merge-cells-vertical:before { content: \"\\ef42\"; }\n.remix-message-2-fill:before { content: \"\\ef43\"; }\n.remix-message-2-line:before { content: \"\\ef44\"; }\n.remix-message-3-fill:before { content: \"\\ef45\"; }\n.remix-message-3-line:before { content: \"\\ef46\"; }\n.remix-message-fill:before { content: \"\\ef47\"; }\n.remix-message-line:before { content: \"\\ef48\"; }\n.remix-messenger-fill:before { content: \"\\ef49\"; }\n.remix-messenger-line:before { content: \"\\ef4a\"; }\n.remix-meteor-fill:before { content: \"\\ef4b\"; }\n.remix-meteor-line:before { content: \"\\ef4c\"; }\n.remix-mic-2-fill:before { content: \"\\ef4d\"; }\n.remix-mic-2-line:before { content: \"\\ef4e\"; }\n.remix-mic-fill:before { content: \"\\ef4f\"; }\n.remix-mic-line:before { content: \"\\ef50\"; }\n.remix-mic-off-fill:before { content: \"\\ef51\"; }\n.remix-mic-off-line:before { content: \"\\ef52\"; }\n.remix-mickey-fill:before { content: \"\\ef53\"; }\n.remix-mickey-line:before { content: \"\\ef54\"; }\n.remix-microscope-fill:before { content: \"\\ef55\"; }\n.remix-microscope-line:before { content: \"\\ef56\"; }\n.remix-microsoft-fill:before { content: \"\\ef57\"; }\n.remix-microsoft-line:before { content: \"\\ef58\"; }\n.remix-mind-map:before { content: \"\\ef59\"; }\n.remix-mini-program-fill:before { content: \"\\ef5a\"; }\n.remix-mini-program-line:before { content: \"\\ef5b\"; }\n.remix-mist-fill:before { content: \"\\ef5c\"; }\n.remix-mist-line:before { content: \"\\ef5d\"; }\n.remix-money-cny-box-fill:before { content: \"\\ef5e\"; }\n.remix-money-cny-box-line:before { content: \"\\ef5f\"; }\n.remix-money-cny-circle-fill:before { content: \"\\ef60\"; }\n.remix-money-cny-circle-line:before { content: \"\\ef61\"; }\n.remix-money-dollar-box-fill:before { content: \"\\ef62\"; }\n.remix-money-dollar-box-line:before { content: \"\\ef63\"; }\n.remix-money-dollar-circle-fill:before { content: \"\\ef64\"; }\n.remix-money-dollar-circle-line:before { content: \"\\ef65\"; }\n.remix-money-euro-box-fill:before { content: \"\\ef66\"; }\n.remix-money-euro-box-line:before { content: \"\\ef67\"; }\n.remix-money-euro-circle-fill:before { content: \"\\ef68\"; }\n.remix-money-euro-circle-line:before { content: \"\\ef69\"; }\n.remix-money-pound-box-fill:before { content: \"\\ef6a\"; }\n.remix-money-pound-box-line:before { content: \"\\ef6b\"; }\n.remix-money-pound-circle-fill:before { content: \"\\ef6c\"; }\n.remix-money-pound-circle-line:before { content: \"\\ef6d\"; }\n.remix-moon-clear-fill:before { content: \"\\ef6e\"; }\n.remix-moon-clear-line:before { content: \"\\ef6f\"; }\n.remix-moon-cloudy-fill:before { content: \"\\ef70\"; }\n.remix-moon-cloudy-line:before { content: \"\\ef71\"; }\n.remix-moon-fill:before { content: \"\\ef72\"; }\n.remix-moon-foggy-fill:before { content: \"\\ef73\"; }\n.remix-moon-foggy-line:before { content: \"\\ef74\"; }\n.remix-moon-line:before { content: \"\\ef75\"; }\n.remix-more-2-fill:before { content: \"\\ef76\"; }\n.remix-more-2-line:before { content: \"\\ef77\"; }\n.remix-more-fill:before { content: \"\\ef78\"; }\n.remix-more-line:before { content: \"\\ef79\"; }\n.remix-motorbike-fill:before { content: \"\\ef7a\"; }\n.remix-motorbike-line:before { content: \"\\ef7b\"; }\n.remix-mouse-fill:before { content: \"\\ef7c\"; }\n.remix-mouse-line:before { content: \"\\ef7d\"; }\n.remix-movie-2-fill:before { content: \"\\ef7e\"; }\n.remix-movie-2-line:before { content: \"\\ef7f\"; }\n.remix-movie-fill:before { content: \"\\ef80\"; }\n.remix-movie-line:before { content: \"\\ef81\"; }\n.remix-music-2-fill:before { content: \"\\ef82\"; }\n.remix-music-2-line:before { content: \"\\ef83\"; }\n.remix-music-fill:before { content: \"\\ef84\"; }\n.remix-music-line:before { content: \"\\ef85\"; }\n.remix-mv-fill:before { content: \"\\ef86\"; }\n.remix-mv-line:before { content: \"\\ef87\"; }\n.remix-navigation-fill:before { content: \"\\ef88\"; }\n.remix-navigation-line:before { content: \"\\ef89\"; }\n.remix-netease-cloud-music-fill:before { content: \"\\ef8a\"; }\n.remix-netease-cloud-music-line:before { content: \"\\ef8b\"; }\n.remix-netflix-fill:before { content: \"\\ef8c\"; }\n.remix-netflix-line:before { content: \"\\ef8d\"; }\n.remix-newspaper-fill:before { content: \"\\ef8e\"; }\n.remix-newspaper-line:before { content: \"\\ef8f\"; }\n.remix-node-tree:before { content: \"\\ef90\"; }\n.remix-notification-2-fill:before { content: \"\\ef91\"; }\n.remix-notification-2-line:before { content: \"\\ef92\"; }\n.remix-notification-3-fill:before { content: \"\\ef93\"; }\n.remix-notification-3-line:before { content: \"\\ef94\"; }\n.remix-notification-4-fill:before { content: \"\\ef95\"; }\n.remix-notification-4-line:before { content: \"\\ef96\"; }\n.remix-notification-badge-fill:before { content: \"\\ef97\"; }\n.remix-notification-badge-line:before { content: \"\\ef98\"; }\n.remix-notification-fill:before { content: \"\\ef99\"; }\n.remix-notification-line:before { content: \"\\ef9a\"; }\n.remix-notification-off-fill:before { content: \"\\ef9b\"; }\n.remix-notification-off-line:before { content: \"\\ef9c\"; }\n.remix-npmjs-fill:before { content: \"\\ef9d\"; }\n.remix-npmjs-line:before { content: \"\\ef9e\"; }\n.remix-number-0:before { content: \"\\ef9f\"; }\n.remix-number-1:before { content: \"\\efa0\"; }\n.remix-number-2:before { content: \"\\efa1\"; }\n.remix-number-3:before { content: \"\\efa2\"; }\n.remix-number-4:before { content: \"\\efa3\"; }\n.remix-number-5:before { content: \"\\efa4\"; }\n.remix-number-6:before { content: \"\\efa5\"; }\n.remix-number-7:before { content: \"\\efa6\"; }\n.remix-number-8:before { content: \"\\efa7\"; }\n.remix-number-9:before { content: \"\\efa8\"; }\n.remix-numbers-fill:before { content: \"\\efa9\"; }\n.remix-numbers-line:before { content: \"\\efaa\"; }\n.remix-nurse-fill:before { content: \"\\efab\"; }\n.remix-nurse-line:before { content: \"\\efac\"; }\n.remix-oil-fill:before { content: \"\\efad\"; }\n.remix-oil-line:before { content: \"\\efae\"; }\n.remix-omega:before { content: \"\\efaf\"; }\n.remix-open-arm-fill:before { content: \"\\efb0\"; }\n.remix-open-arm-line:before { content: \"\\efb1\"; }\n.remix-open-source-fill:before { content: \"\\efb2\"; }\n.remix-open-source-line:before { content: \"\\efb3\"; }\n.remix-opera-fill:before { content: \"\\efb4\"; }\n.remix-opera-line:before { content: \"\\efb5\"; }\n.remix-order-play-fill:before { content: \"\\efb6\"; }\n.remix-order-play-line:before { content: \"\\efb7\"; }\n.remix-organization-chart:before { content: \"\\efb8\"; }\n.remix-outlet-2-fill:before { content: \"\\efb9\"; }\n.remix-outlet-2-line:before { content: \"\\efba\"; }\n.remix-outlet-fill:before { content: \"\\efbb\"; }\n.remix-outlet-line:before { content: \"\\efbc\"; }\n.remix-page-separator:before { content: \"\\efbd\"; }\n.remix-pages-fill:before { content: \"\\efbe\"; }\n.remix-pages-line:before { content: \"\\efbf\"; }\n.remix-paint-brush-fill:before { content: \"\\efc0\"; }\n.remix-paint-brush-line:before { content: \"\\efc1\"; }\n.remix-paint-fill:before { content: \"\\efc2\"; }\n.remix-paint-line:before { content: \"\\efc3\"; }\n.remix-palette-fill:before { content: \"\\efc4\"; }\n.remix-palette-line:before { content: \"\\efc5\"; }\n.remix-pantone-fill:before { content: \"\\efc6\"; }\n.remix-pantone-line:before { content: \"\\efc7\"; }\n.remix-paragraph:before { content: \"\\efc8\"; }\n.remix-parent-fill:before { content: \"\\efc9\"; }\n.remix-parent-line:before { content: \"\\efca\"; }\n.remix-parentheses-fill:before { content: \"\\efcb\"; }\n.remix-parentheses-line:before { content: \"\\efcc\"; }\n.remix-parking-box-fill:before { content: \"\\efcd\"; }\n.remix-parking-box-line:before { content: \"\\efce\"; }\n.remix-parking-fill:before { content: \"\\efcf\"; }\n.remix-parking-line:before { content: \"\\efd0\"; }\n.remix-passport-fill:before { content: \"\\efd1\"; }\n.remix-passport-line:before { content: \"\\efd2\"; }\n.remix-patreon-fill:before { content: \"\\efd3\"; }\n.remix-patreon-line:before { content: \"\\efd4\"; }\n.remix-pause-circle-fill:before { content: \"\\efd5\"; }\n.remix-pause-circle-line:before { content: \"\\efd6\"; }\n.remix-pause-fill:before { content: \"\\efd7\"; }\n.remix-pause-line:before { content: \"\\efd8\"; }\n.remix-pause-mini-fill:before { content: \"\\efd9\"; }\n.remix-pause-mini-line:before { content: \"\\efda\"; }\n.remix-paypal-fill:before { content: \"\\efdb\"; }\n.remix-paypal-line:before { content: \"\\efdc\"; }\n.remix-pen-nib-fill:before { content: \"\\efdd\"; }\n.remix-pen-nib-line:before { content: \"\\efde\"; }\n.remix-pencil-fill:before { content: \"\\efdf\"; }\n.remix-pencil-line:before { content: \"\\efe0\"; }\n.remix-pencil-ruler-2-fill:before { content: \"\\efe1\"; }\n.remix-pencil-ruler-2-line:before { content: \"\\efe2\"; }\n.remix-pencil-ruler-fill:before { content: \"\\efe3\"; }\n.remix-pencil-ruler-line:before { content: \"\\efe4\"; }\n.remix-percent-fill:before { content: \"\\efe5\"; }\n.remix-percent-line:before { content: \"\\efe6\"; }\n.remix-phone-camera-fill:before { content: \"\\efe7\"; }\n.remix-phone-camera-line:before { content: \"\\efe8\"; }\n.remix-phone-fill:before { content: \"\\efe9\"; }\n.remix-phone-find-fill:before { content: \"\\efea\"; }\n.remix-phone-find-line:before { content: \"\\efeb\"; }\n.remix-phone-line:before { content: \"\\efec\"; }\n.remix-phone-lock-fill:before { content: \"\\efed\"; }\n.remix-phone-lock-line:before { content: \"\\efee\"; }\n.remix-picture-in-picture-2-fill:before { content: \"\\efef\"; }\n.remix-picture-in-picture-2-line:before { content: \"\\eff0\"; }\n.remix-picture-in-picture-exit-fill:before { content: \"\\eff1\"; }\n.remix-picture-in-picture-exit-line:before { content: \"\\eff2\"; }\n.remix-picture-in-picture-fill:before { content: \"\\eff3\"; }\n.remix-picture-in-picture-line:before { content: \"\\eff4\"; }\n.remix-pie-chart-2-fill:before { content: \"\\eff5\"; }\n.remix-pie-chart-2-line:before { content: \"\\eff6\"; }\n.remix-pie-chart-box-fill:before { content: \"\\eff7\"; }\n.remix-pie-chart-box-line:before { content: \"\\eff8\"; }\n.remix-pie-chart-fill:before { content: \"\\eff9\"; }\n.remix-pie-chart-line:before { content: \"\\effa\"; }\n.remix-pin-distance-fill:before { content: \"\\effb\"; }\n.remix-pin-distance-line:before { content: \"\\effc\"; }\n.remix-ping-pong-fill:before { content: \"\\effd\"; }\n.remix-ping-pong-line:before { content: \"\\effe\"; }\n.remix-pinterest-fill:before { content: \"\\efff\"; }\n.remix-pinterest-line:before { content: \"\\f000\"; }\n.remix-pinyin-input:before { content: \"\\f001\"; }\n.remix-pixelfed-fill:before { content: \"\\f002\"; }\n.remix-pixelfed-line:before { content: \"\\f003\"; }\n.remix-plane-fill:before { content: \"\\f004\"; }\n.remix-plane-line:before { content: \"\\f005\"; }\n.remix-plant-fill:before { content: \"\\f006\"; }\n.remix-plant-line:before { content: \"\\f007\"; }\n.remix-play-circle-fill:before { content: \"\\f008\"; }\n.remix-play-circle-line:before { content: \"\\f009\"; }\n.remix-play-fill:before { content: \"\\f00a\"; }\n.remix-play-line:before { content: \"\\f00b\"; }\n.remix-play-list-2-fill:before { content: \"\\f00c\"; }\n.remix-play-list-2-line:before { content: \"\\f00d\"; }\n.remix-play-list-add-fill:before { content: \"\\f00e\"; }\n.remix-play-list-add-line:before { content: \"\\f00f\"; }\n.remix-play-list-fill:before { content: \"\\f010\"; }\n.remix-play-list-line:before { content: \"\\f011\"; }\n.remix-play-mini-fill:before { content: \"\\f012\"; }\n.remix-play-mini-line:before { content: \"\\f013\"; }\n.remix-playstation-fill:before { content: \"\\f014\"; }\n.remix-playstation-line:before { content: \"\\f015\"; }\n.remix-plug-2-fill:before { content: \"\\f016\"; }\n.remix-plug-2-line:before { content: \"\\f017\"; }\n.remix-plug-fill:before { content: \"\\f018\"; }\n.remix-plug-line:before { content: \"\\f019\"; }\n.remix-polaroid-2-fill:before { content: \"\\f01a\"; }\n.remix-polaroid-2-line:before { content: \"\\f01b\"; }\n.remix-polaroid-fill:before { content: \"\\f01c\"; }\n.remix-polaroid-line:before { content: \"\\f01d\"; }\n.remix-police-car-fill:before { content: \"\\f01e\"; }\n.remix-police-car-line:before { content: \"\\f01f\"; }\n.remix-price-tag-2-fill:before { content: \"\\f020\"; }\n.remix-price-tag-2-line:before { content: \"\\f021\"; }\n.remix-price-tag-3-fill:before { content: \"\\f022\"; }\n.remix-price-tag-3-line:before { content: \"\\f023\"; }\n.remix-price-tag-fill:before { content: \"\\f024\"; }\n.remix-price-tag-line:before { content: \"\\f025\"; }\n.remix-printer-cloud-fill:before { content: \"\\f026\"; }\n.remix-printer-cloud-line:before { content: \"\\f027\"; }\n.remix-printer-fill:before { content: \"\\f028\"; }\n.remix-printer-line:before { content: \"\\f029\"; }\n.remix-product-hunt-fill:before { content: \"\\f02a\"; }\n.remix-product-hunt-line:before { content: \"\\f02b\"; }\n.remix-profile-fill:before { content: \"\\f02c\"; }\n.remix-profile-line:before { content: \"\\f02d\"; }\n.remix-projector-2-fill:before { content: \"\\f02e\"; }\n.remix-projector-2-line:before { content: \"\\f02f\"; }\n.remix-projector-fill:before { content: \"\\f030\"; }\n.remix-projector-line:before { content: \"\\f031\"; }\n.remix-psychotherapy-fill:before { content: \"\\f032\"; }\n.remix-psychotherapy-line:before { content: \"\\f033\"; }\n.remix-pulse-fill:before { content: \"\\f034\"; }\n.remix-pulse-line:before { content: \"\\f035\"; }\n.remix-pushpin-2-fill:before { content: \"\\f036\"; }\n.remix-pushpin-2-line:before { content: \"\\f037\"; }\n.remix-pushpin-fill:before { content: \"\\f038\"; }\n.remix-pushpin-line:before { content: \"\\f039\"; }\n.remix-qq-fill:before { content: \"\\f03a\"; }\n.remix-qq-line:before { content: \"\\f03b\"; }\n.remix-qr-code-fill:before { content: \"\\f03c\"; }\n.remix-qr-code-line:before { content: \"\\f03d\"; }\n.remix-qr-scan-2-fill:before { content: \"\\f03e\"; }\n.remix-qr-scan-2-line:before { content: \"\\f03f\"; }\n.remix-qr-scan-fill:before { content: \"\\f040\"; }\n.remix-qr-scan-line:before { content: \"\\f041\"; }\n.remix-question-answer-fill:before { content: \"\\f042\"; }\n.remix-question-answer-line:before { content: \"\\f043\"; }\n.remix-question-fill:before { content: \"\\f044\"; }\n.remix-question-line:before { content: \"\\f045\"; }\n.remix-question-mark:before { content: \"\\f046\"; }\n.remix-questionnaire-fill:before { content: \"\\f047\"; }\n.remix-questionnaire-line:before { content: \"\\f048\"; }\n.remix-quill-pen-fill:before { content: \"\\f049\"; }\n.remix-quill-pen-line:before { content: \"\\f04a\"; }\n.remix-radar-fill:before { content: \"\\f04b\"; }\n.remix-radar-line:before { content: \"\\f04c\"; }\n.remix-radio-2-fill:before { content: \"\\f04d\"; }\n.remix-radio-2-line:before { content: \"\\f04e\"; }\n.remix-radio-button-fill:before { content: \"\\f04f\"; }\n.remix-radio-button-line:before { content: \"\\f050\"; }\n.remix-radio-fill:before { content: \"\\f051\"; }\n.remix-radio-line:before { content: \"\\f052\"; }\n.remix-rainbow-fill:before { content: \"\\f053\"; }\n.remix-rainbow-line:before { content: \"\\f054\"; }\n.remix-rainy-fill:before { content: \"\\f055\"; }\n.remix-rainy-line:before { content: \"\\f056\"; }\n.remix-reactjs-fill:before { content: \"\\f057\"; }\n.remix-reactjs-line:before { content: \"\\f058\"; }\n.remix-record-circle-fill:before { content: \"\\f059\"; }\n.remix-record-circle-line:before { content: \"\\f05a\"; }\n.remix-record-mail-fill:before { content: \"\\f05b\"; }\n.remix-record-mail-line:before { content: \"\\f05c\"; }\n.remix-recycle-fill:before { content: \"\\f05d\"; }\n.remix-recycle-line:before { content: \"\\f05e\"; }\n.remix-red-packet-fill:before { content: \"\\f05f\"; }\n.remix-red-packet-line:before { content: \"\\f060\"; }\n.remix-reddit-fill:before { content: \"\\f061\"; }\n.remix-reddit-line:before { content: \"\\f062\"; }\n.remix-refresh-fill:before { content: \"\\f063\"; }\n.remix-refresh-line:before { content: \"\\f064\"; }\n.remix-refund-2-fill:before { content: \"\\f065\"; }\n.remix-refund-2-line:before { content: \"\\f066\"; }\n.remix-refund-fill:before { content: \"\\f067\"; }\n.remix-refund-line:before { content: \"\\f068\"; }\n.remix-registered-fill:before { content: \"\\f069\"; }\n.remix-registered-line:before { content: \"\\f06a\"; }\n.remix-remixicon-fill:before { content: \"\\f06b\"; }\n.remix-remixicon-line:before { content: \"\\f06c\"; }\n.remix-remote-control-2-fill:before { content: \"\\f06d\"; }\n.remix-remote-control-2-line:before { content: \"\\f06e\"; }\n.remix-remote-control-fill:before { content: \"\\f06f\"; }\n.remix-remote-control-line:before { content: \"\\f070\"; }\n.remix-repeat-2-fill:before { content: \"\\f071\"; }\n.remix-repeat-2-line:before { content: \"\\f072\"; }\n.remix-repeat-fill:before { content: \"\\f073\"; }\n.remix-repeat-line:before { content: \"\\f074\"; }\n.remix-repeat-one-fill:before { content: \"\\f075\"; }\n.remix-repeat-one-line:before { content: \"\\f076\"; }\n.remix-reply-all-fill:before { content: \"\\f077\"; }\n.remix-reply-all-line:before { content: \"\\f078\"; }\n.remix-reply-fill:before { content: \"\\f079\"; }\n.remix-reply-line:before { content: \"\\f07a\"; }\n.remix-reserved-fill:before { content: \"\\f07b\"; }\n.remix-reserved-line:before { content: \"\\f07c\"; }\n.remix-rest-time-fill:before { content: \"\\f07d\"; }\n.remix-rest-time-line:before { content: \"\\f07e\"; }\n.remix-restart-fill:before { content: \"\\f07f\"; }\n.remix-restart-line:before { content: \"\\f080\"; }\n.remix-restaurant-2-fill:before { content: \"\\f081\"; }\n.remix-restaurant-2-line:before { content: \"\\f082\"; }\n.remix-restaurant-fill:before { content: \"\\f083\"; }\n.remix-restaurant-line:before { content: \"\\f084\"; }\n.remix-rewind-fill:before { content: \"\\f085\"; }\n.remix-rewind-line:before { content: \"\\f086\"; }\n.remix-rewind-mini-fill:before { content: \"\\f087\"; }\n.remix-rewind-mini-line:before { content: \"\\f088\"; }\n.remix-rhythm-fill:before { content: \"\\f089\"; }\n.remix-rhythm-line:before { content: \"\\f08a\"; }\n.remix-riding-fill:before { content: \"\\f08b\"; }\n.remix-riding-line:before { content: \"\\f08c\"; }\n.remix-road-map-fill:before { content: \"\\f08d\"; }\n.remix-road-map-line:before { content: \"\\f08e\"; }\n.remix-roadster-fill:before { content: \"\\f08f\"; }\n.remix-roadster-line:before { content: \"\\f090\"; }\n.remix-robot-fill:before { content: \"\\f091\"; }\n.remix-robot-line:before { content: \"\\f092\"; }\n.remix-rocket-2-fill:before { content: \"\\f093\"; }\n.remix-rocket-2-line:before { content: \"\\f094\"; }\n.remix-rocket-fill:before { content: \"\\f095\"; }\n.remix-rocket-line:before { content: \"\\f096\"; }\n.remix-rotate-lock-fill:before { content: \"\\f097\"; }\n.remix-rotate-lock-line:before { content: \"\\f098\"; }\n.remix-rounded-corner:before { content: \"\\f099\"; }\n.remix-route-fill:before { content: \"\\f09a\"; }\n.remix-route-line:before { content: \"\\f09b\"; }\n.remix-router-fill:before { content: \"\\f09c\"; }\n.remix-router-line:before { content: \"\\f09d\"; }\n.remix-rss-fill:before { content: \"\\f09e\"; }\n.remix-rss-line:before { content: \"\\f09f\"; }\n.remix-ruler-2-fill:before { content: \"\\f0a0\"; }\n.remix-ruler-2-line:before { content: \"\\f0a1\"; }\n.remix-ruler-fill:before { content: \"\\f0a2\"; }\n.remix-ruler-line:before { content: \"\\f0a3\"; }\n.remix-run-fill:before { content: \"\\f0a4\"; }\n.remix-run-line:before { content: \"\\f0a5\"; }\n.remix-safari-fill:before { content: \"\\f0a6\"; }\n.remix-safari-line:before { content: \"\\f0a7\"; }\n.remix-safe-2-fill:before { content: \"\\f0a8\"; }\n.remix-safe-2-line:before { content: \"\\f0a9\"; }\n.remix-safe-fill:before { content: \"\\f0aa\"; }\n.remix-safe-line:before { content: \"\\f0ab\"; }\n.remix-sailboat-fill:before { content: \"\\f0ac\"; }\n.remix-sailboat-line:before { content: \"\\f0ad\"; }\n.remix-save-2-fill:before { content: \"\\f0ae\"; }\n.remix-save-2-line:before { content: \"\\f0af\"; }\n.remix-save-3-fill:before { content: \"\\f0b0\"; }\n.remix-save-3-line:before { content: \"\\f0b1\"; }\n.remix-save-fill:before { content: \"\\f0b2\"; }\n.remix-save-line:before { content: \"\\f0b3\"; }\n.remix-scales-2-fill:before { content: \"\\f0b4\"; }\n.remix-scales-2-line:before { content: \"\\f0b5\"; }\n.remix-scales-3-fill:before { content: \"\\f0b6\"; }\n.remix-scales-3-line:before { content: \"\\f0b7\"; }\n.remix-scales-fill:before { content: \"\\f0b8\"; }\n.remix-scales-line:before { content: \"\\f0b9\"; }\n.remix-scan-2-fill:before { content: \"\\f0ba\"; }\n.remix-scan-2-line:before { content: \"\\f0bb\"; }\n.remix-scan-fill:before { content: \"\\f0bc\"; }\n.remix-scan-line:before { content: \"\\f0bd\"; }\n.remix-scissors-2-fill:before { content: \"\\f0be\"; }\n.remix-scissors-2-line:before { content: \"\\f0bf\"; }\n.remix-scissors-cut-fill:before { content: \"\\f0c0\"; }\n.remix-scissors-cut-line:before { content: \"\\f0c1\"; }\n.remix-scissors-fill:before { content: \"\\f0c2\"; }\n.remix-scissors-line:before { content: \"\\f0c3\"; }\n.remix-screenshot-2-fill:before { content: \"\\f0c4\"; }\n.remix-screenshot-2-line:before { content: \"\\f0c5\"; }\n.remix-screenshot-fill:before { content: \"\\f0c6\"; }\n.remix-screenshot-line:before { content: \"\\f0c7\"; }\n.remix-sd-card-fill:before { content: \"\\f0c8\"; }\n.remix-sd-card-line:before { content: \"\\f0c9\"; }\n.remix-sd-card-mini-fill:before { content: \"\\f0ca\"; }\n.remix-sd-card-mini-line:before { content: \"\\f0cb\"; }\n.remix-search-2-fill:before { content: \"\\f0cc\"; }\n.remix-search-2-line:before { content: \"\\f0cd\"; }\n.remix-search-eye-fill:before { content: \"\\f0ce\"; }\n.remix-search-eye-line:before { content: \"\\f0cf\"; }\n.remix-search-fill:before { content: \"\\f0d0\"; }\n.remix-search-line:before { content: \"\\f0d1\"; }\n.remix-secure-payment-fill:before { content: \"\\f0d2\"; }\n.remix-secure-payment-line:before { content: \"\\f0d3\"; }\n.remix-seedling-fill:before { content: \"\\f0d4\"; }\n.remix-seedling-line:before { content: \"\\f0d5\"; }\n.remix-send-backward:before { content: \"\\f0d6\"; }\n.remix-send-plane-2-fill:before { content: \"\\f0d7\"; }\n.remix-send-plane-2-line:before { content: \"\\f0d8\"; }\n.remix-send-plane-fill:before { content: \"\\f0d9\"; }\n.remix-send-plane-line:before { content: \"\\f0da\"; }\n.remix-send-to-back:before { content: \"\\f0db\"; }\n.remix-sensor-fill:before { content: \"\\f0dc\"; }\n.remix-sensor-line:before { content: \"\\f0dd\"; }\n.remix-separator:before { content: \"\\f0de\"; }\n.remix-server-fill:before { content: \"\\f0df\"; }\n.remix-server-line:before { content: \"\\f0e0\"; }\n.remix-service-fill:before { content: \"\\f0e1\"; }\n.remix-service-line:before { content: \"\\f0e2\"; }\n.remix-settings-2-fill:before { content: \"\\f0e3\"; }\n.remix-settings-2-line:before { content: \"\\f0e4\"; }\n.remix-settings-3-fill:before { content: \"\\f0e5\"; }\n.remix-settings-3-line:before { content: \"\\f0e6\"; }\n.remix-settings-4-fill:before { content: \"\\f0e7\"; }\n.remix-settings-4-line:before { content: \"\\f0e8\"; }\n.remix-settings-5-fill:before { content: \"\\f0e9\"; }\n.remix-settings-5-line:before { content: \"\\f0ea\"; }\n.remix-settings-6-fill:before { content: \"\\f0eb\"; }\n.remix-settings-6-line:before { content: \"\\f0ec\"; }\n.remix-settings-fill:before { content: \"\\f0ed\"; }\n.remix-settings-line:before { content: \"\\f0ee\"; }\n.remix-shape-2-fill:before { content: \"\\f0ef\"; }\n.remix-shape-2-line:before { content: \"\\f0f0\"; }\n.remix-shape-fill:before { content: \"\\f0f1\"; }\n.remix-shape-line:before { content: \"\\f0f2\"; }\n.remix-share-box-fill:before { content: \"\\f0f3\"; }\n.remix-share-box-line:before { content: \"\\f0f4\"; }\n.remix-share-circle-fill:before { content: \"\\f0f5\"; }\n.remix-share-circle-line:before { content: \"\\f0f6\"; }\n.remix-share-fill:before { content: \"\\f0f7\"; }\n.remix-share-forward-2-fill:before { content: \"\\f0f8\"; }\n.remix-share-forward-2-line:before { content: \"\\f0f9\"; }\n.remix-share-forward-box-fill:before { content: \"\\f0fa\"; }\n.remix-share-forward-box-line:before { content: \"\\f0fb\"; }\n.remix-share-forward-fill:before { content: \"\\f0fc\"; }\n.remix-share-forward-line:before { content: \"\\f0fd\"; }\n.remix-share-line:before { content: \"\\f0fe\"; }\n.remix-shield-check-fill:before { content: \"\\f0ff\"; }\n.remix-shield-check-line:before { content: \"\\f100\"; }\n.remix-shield-cross-fill:before { content: \"\\f101\"; }\n.remix-shield-cross-line:before { content: \"\\f102\"; }\n.remix-shield-fill:before { content: \"\\f103\"; }\n.remix-shield-flash-fill:before { content: \"\\f104\"; }\n.remix-shield-flash-line:before { content: \"\\f105\"; }\n.remix-shield-keyhole-fill:before { content: \"\\f106\"; }\n.remix-shield-keyhole-line:before { content: \"\\f107\"; }\n.remix-shield-line:before { content: \"\\f108\"; }\n.remix-shield-star-fill:before { content: \"\\f109\"; }\n.remix-shield-star-line:before { content: \"\\f10a\"; }\n.remix-shield-user-fill:before { content: \"\\f10b\"; }\n.remix-shield-user-line:before { content: \"\\f10c\"; }\n.remix-ship-2-fill:before { content: \"\\f10d\"; }\n.remix-ship-2-line:before { content: \"\\f10e\"; }\n.remix-ship-fill:before { content: \"\\f10f\"; }\n.remix-ship-line:before { content: \"\\f110\"; }\n.remix-shirt-fill:before { content: \"\\f111\"; }\n.remix-shirt-line:before { content: \"\\f112\"; }\n.remix-shopping-bag-2-fill:before { content: \"\\f113\"; }\n.remix-shopping-bag-2-line:before { content: \"\\f114\"; }\n.remix-shopping-bag-3-fill:before { content: \"\\f115\"; }\n.remix-shopping-bag-3-line:before { content: \"\\f116\"; }\n.remix-shopping-bag-fill:before { content: \"\\f117\"; }\n.remix-shopping-bag-line:before { content: \"\\f118\"; }\n.remix-shopping-basket-2-fill:before { content: \"\\f119\"; }\n.remix-shopping-basket-2-line:before { content: \"\\f11a\"; }\n.remix-shopping-basket-fill:before { content: \"\\f11b\"; }\n.remix-shopping-basket-line:before { content: \"\\f11c\"; }\n.remix-shopping-cart-2-fill:before { content: \"\\f11d\"; }\n.remix-shopping-cart-2-line:before { content: \"\\f11e\"; }\n.remix-shopping-cart-fill:before { content: \"\\f11f\"; }\n.remix-shopping-cart-line:before { content: \"\\f120\"; }\n.remix-showers-fill:before { content: \"\\f121\"; }\n.remix-showers-line:before { content: \"\\f122\"; }\n.remix-shuffle-fill:before { content: \"\\f123\"; }\n.remix-shuffle-line:before { content: \"\\f124\"; }\n.remix-shut-down-fill:before { content: \"\\f125\"; }\n.remix-shut-down-line:before { content: \"\\f126\"; }\n.remix-side-bar-fill:before { content: \"\\f127\"; }\n.remix-side-bar-line:before { content: \"\\f128\"; }\n.remix-signal-tower-fill:before { content: \"\\f129\"; }\n.remix-signal-tower-line:before { content: \"\\f12a\"; }\n.remix-signal-wifi-1-fill:before { content: \"\\f12b\"; }\n.remix-signal-wifi-1-line:before { content: \"\\f12c\"; }\n.remix-signal-wifi-2-fill:before { content: \"\\f12d\"; }\n.remix-signal-wifi-2-line:before { content: \"\\f12e\"; }\n.remix-signal-wifi-3-fill:before { content: \"\\f12f\"; }\n.remix-signal-wifi-3-line:before { content: \"\\f130\"; }\n.remix-signal-wifi-error-fill:before { content: \"\\f131\"; }\n.remix-signal-wifi-error-line:before { content: \"\\f132\"; }\n.remix-signal-wifi-fill:before { content: \"\\f133\"; }\n.remix-signal-wifi-line:before { content: \"\\f134\"; }\n.remix-signal-wifi-off-fill:before { content: \"\\f135\"; }\n.remix-signal-wifi-off-line:before { content: \"\\f136\"; }\n.remix-sim-card-2-fill:before { content: \"\\f137\"; }\n.remix-sim-card-2-line:before { content: \"\\f138\"; }\n.remix-sim-card-fill:before { content: \"\\f139\"; }\n.remix-sim-card-line:before { content: \"\\f13a\"; }\n.remix-single-quotes-l:before { content: \"\\f13b\"; }\n.remix-single-quotes-r:before { content: \"\\f13c\"; }\n.remix-sip-fill:before { content: \"\\f13d\"; }\n.remix-sip-line:before { content: \"\\f13e\"; }\n.remix-skip-back-fill:before { content: \"\\f13f\"; }\n.remix-skip-back-line:before { content: \"\\f140\"; }\n.remix-skip-back-mini-fill:before { content: \"\\f141\"; }\n.remix-skip-back-mini-line:before { content: \"\\f142\"; }\n.remix-skip-forward-fill:before { content: \"\\f143\"; }\n.remix-skip-forward-line:before { content: \"\\f144\"; }\n.remix-skip-forward-mini-fill:before { content: \"\\f145\"; }\n.remix-skip-forward-mini-line:before { content: \"\\f146\"; }\n.remix-skull-2-fill:before { content: \"\\f147\"; }\n.remix-skull-2-line:before { content: \"\\f148\"; }\n.remix-skull-fill:before { content: \"\\f149\"; }\n.remix-skull-line:before { content: \"\\f14a\"; }\n.remix-skype-fill:before { content: \"\\f14b\"; }\n.remix-skype-line:before { content: \"\\f14c\"; }\n.remix-slack-fill:before { content: \"\\f14d\"; }\n.remix-slack-line:before { content: \"\\f14e\"; }\n.remix-slice-fill:before { content: \"\\f14f\"; }\n.remix-slice-line:before { content: \"\\f150\"; }\n.remix-slideshow-2-fill:before { content: \"\\f151\"; }\n.remix-slideshow-2-line:before { content: \"\\f152\"; }\n.remix-slideshow-3-fill:before { content: \"\\f153\"; }\n.remix-slideshow-3-line:before { content: \"\\f154\"; }\n.remix-slideshow-4-fill:before { content: \"\\f155\"; }\n.remix-slideshow-4-line:before { content: \"\\f156\"; }\n.remix-slideshow-fill:before { content: \"\\f157\"; }\n.remix-slideshow-line:before { content: \"\\f158\"; }\n.remix-smartphone-fill:before { content: \"\\f159\"; }\n.remix-smartphone-line:before { content: \"\\f15a\"; }\n.remix-snapchat-fill:before { content: \"\\f15b\"; }\n.remix-snapchat-line:before { content: \"\\f15c\"; }\n.remix-snowy-fill:before { content: \"\\f15d\"; }\n.remix-snowy-line:before { content: \"\\f15e\"; }\n.remix-sort-asc:before { content: \"\\f15f\"; }\n.remix-sort-desc:before { content: \"\\f160\"; }\n.remix-sound-module-fill:before { content: \"\\f161\"; }\n.remix-sound-module-line:before { content: \"\\f162\"; }\n.remix-soundcloud-fill:before { content: \"\\f163\"; }\n.remix-soundcloud-line:before { content: \"\\f164\"; }\n.remix-space-ship-fill:before { content: \"\\f165\"; }\n.remix-space-ship-line:before { content: \"\\f166\"; }\n.remix-space:before { content: \"\\f167\"; }\n.remix-spam-2-fill:before { content: \"\\f168\"; }\n.remix-spam-2-line:before { content: \"\\f169\"; }\n.remix-spam-3-fill:before { content: \"\\f16a\"; }\n.remix-spam-3-line:before { content: \"\\f16b\"; }\n.remix-spam-fill:before { content: \"\\f16c\"; }\n.remix-spam-line:before { content: \"\\f16d\"; }\n.remix-speaker-2-fill:before { content: \"\\f16e\"; }\n.remix-speaker-2-line:before { content: \"\\f16f\"; }\n.remix-speaker-3-fill:before { content: \"\\f170\"; }\n.remix-speaker-3-line:before { content: \"\\f171\"; }\n.remix-speaker-fill:before { content: \"\\f172\"; }\n.remix-speaker-line:before { content: \"\\f173\"; }\n.remix-spectrum-fill:before { content: \"\\f174\"; }\n.remix-spectrum-line:before { content: \"\\f175\"; }\n.remix-speed-fill:before { content: \"\\f176\"; }\n.remix-speed-line:before { content: \"\\f177\"; }\n.remix-speed-mini-fill:before { content: \"\\f178\"; }\n.remix-speed-mini-line:before { content: \"\\f179\"; }\n.remix-split-cells-horizontal:before { content: \"\\f17a\"; }\n.remix-split-cells-vertical:before { content: \"\\f17b\"; }\n.remix-spotify-fill:before { content: \"\\f17c\"; }\n.remix-spotify-line:before { content: \"\\f17d\"; }\n.remix-spy-fill:before { content: \"\\f17e\"; }\n.remix-spy-line:before { content: \"\\f17f\"; }\n.remix-stack-fill:before { content: \"\\f180\"; }\n.remix-stack-line:before { content: \"\\f181\"; }\n.remix-stack-overflow-fill:before { content: \"\\f182\"; }\n.remix-stack-overflow-line:before { content: \"\\f183\"; }\n.remix-stackshare-fill:before { content: \"\\f184\"; }\n.remix-stackshare-line:before { content: \"\\f185\"; }\n.remix-star-fill:before { content: \"\\f186\"; }\n.remix-star-half-fill:before { content: \"\\f187\"; }\n.remix-star-half-line:before { content: \"\\f188\"; }\n.remix-star-half-s-fill:before { content: \"\\f189\"; }\n.remix-star-half-s-line:before { content: \"\\f18a\"; }\n.remix-star-line:before { content: \"\\f18b\"; }\n.remix-star-s-fill:before { content: \"\\f18c\"; }\n.remix-star-s-line:before { content: \"\\f18d\"; }\n.remix-star-smile-fill:before { content: \"\\f18e\"; }\n.remix-star-smile-line:before { content: \"\\f18f\"; }\n.remix-steam-fill:before { content: \"\\f190\"; }\n.remix-steam-line:before { content: \"\\f191\"; }\n.remix-steering-2-fill:before { content: \"\\f192\"; }\n.remix-steering-2-line:before { content: \"\\f193\"; }\n.remix-steering-fill:before { content: \"\\f194\"; }\n.remix-steering-line:before { content: \"\\f195\"; }\n.remix-stethoscope-fill:before { content: \"\\f196\"; }\n.remix-stethoscope-line:before { content: \"\\f197\"; }\n.remix-sticky-note-2-fill:before { content: \"\\f198\"; }\n.remix-sticky-note-2-line:before { content: \"\\f199\"; }\n.remix-sticky-note-fill:before { content: \"\\f19a\"; }\n.remix-sticky-note-line:before { content: \"\\f19b\"; }\n.remix-stock-fill:before { content: \"\\f19c\"; }\n.remix-stock-line:before { content: \"\\f19d\"; }\n.remix-stop-circle-fill:before { content: \"\\f19e\"; }\n.remix-stop-circle-line:before { content: \"\\f19f\"; }\n.remix-stop-fill:before { content: \"\\f1a0\"; }\n.remix-stop-line:before { content: \"\\f1a1\"; }\n.remix-stop-mini-fill:before { content: \"\\f1a2\"; }\n.remix-stop-mini-line:before { content: \"\\f1a3\"; }\n.remix-store-2-fill:before { content: \"\\f1a4\"; }\n.remix-store-2-line:before { content: \"\\f1a5\"; }\n.remix-store-3-fill:before { content: \"\\f1a6\"; }\n.remix-store-3-line:before { content: \"\\f1a7\"; }\n.remix-store-fill:before { content: \"\\f1a8\"; }\n.remix-store-line:before { content: \"\\f1a9\"; }\n.remix-strikethrough-2:before { content: \"\\f1aa\"; }\n.remix-strikethrough:before { content: \"\\f1ab\"; }\n.remix-subscript-2:before { content: \"\\f1ac\"; }\n.remix-subscript:before { content: \"\\f1ad\"; }\n.remix-subtract-fill:before { content: \"\\f1ae\"; }\n.remix-subtract-line:before { content: \"\\f1af\"; }\n.remix-subway-fill:before { content: \"\\f1b0\"; }\n.remix-subway-line:before { content: \"\\f1b1\"; }\n.remix-subway-wifi-fill:before { content: \"\\f1b2\"; }\n.remix-subway-wifi-line:before { content: \"\\f1b3\"; }\n.remix-suitcase-2-fill:before { content: \"\\f1b4\"; }\n.remix-suitcase-2-line:before { content: \"\\f1b5\"; }\n.remix-suitcase-3-fill:before { content: \"\\f1b6\"; }\n.remix-suitcase-3-line:before { content: \"\\f1b7\"; }\n.remix-suitcase-fill:before { content: \"\\f1b8\"; }\n.remix-suitcase-line:before { content: \"\\f1b9\"; }\n.remix-sun-cloudy-fill:before { content: \"\\f1ba\"; }\n.remix-sun-cloudy-line:before { content: \"\\f1bb\"; }\n.remix-sun-fill:before { content: \"\\f1bc\"; }\n.remix-sun-foggy-fill:before { content: \"\\f1bd\"; }\n.remix-sun-foggy-line:before { content: \"\\f1be\"; }\n.remix-sun-line:before { content: \"\\f1bf\"; }\n.remix-superscript-2:before { content: \"\\f1c0\"; }\n.remix-superscript:before { content: \"\\f1c1\"; }\n.remix-surgical-mask-fill:before { content: \"\\f1c2\"; }\n.remix-surgical-mask-line:before { content: \"\\f1c3\"; }\n.remix-surround-sound-fill:before { content: \"\\f1c4\"; }\n.remix-surround-sound-line:before { content: \"\\f1c5\"; }\n.remix-survey-fill:before { content: \"\\f1c6\"; }\n.remix-survey-line:before { content: \"\\f1c7\"; }\n.remix-swap-box-fill:before { content: \"\\f1c8\"; }\n.remix-swap-box-line:before { content: \"\\f1c9\"; }\n.remix-swap-fill:before { content: \"\\f1ca\"; }\n.remix-swap-line:before { content: \"\\f1cb\"; }\n.remix-switch-fill:before { content: \"\\f1cc\"; }\n.remix-switch-line:before { content: \"\\f1cd\"; }\n.remix-sword-fill:before { content: \"\\f1ce\"; }\n.remix-sword-line:before { content: \"\\f1cf\"; }\n.remix-syringe-fill:before { content: \"\\f1d0\"; }\n.remix-syringe-line:before { content: \"\\f1d1\"; }\n.remix-t-box-fill:before { content: \"\\f1d2\"; }\n.remix-t-box-line:before { content: \"\\f1d3\"; }\n.remix-t-shirt-2-fill:before { content: \"\\f1d4\"; }\n.remix-t-shirt-2-line:before { content: \"\\f1d5\"; }\n.remix-t-shirt-air-fill:before { content: \"\\f1d6\"; }\n.remix-t-shirt-air-line:before { content: \"\\f1d7\"; }\n.remix-t-shirt-fill:before { content: \"\\f1d8\"; }\n.remix-t-shirt-line:before { content: \"\\f1d9\"; }\n.remix-table-2:before { content: \"\\f1da\"; }\n.remix-table-alt-fill:before { content: \"\\f1db\"; }\n.remix-table-alt-line:before { content: \"\\f1dc\"; }\n.remix-table-fill:before { content: \"\\f1dd\"; }\n.remix-table-line:before { content: \"\\f1de\"; }\n.remix-tablet-fill:before { content: \"\\f1df\"; }\n.remix-tablet-line:before { content: \"\\f1e0\"; }\n.remix-takeaway-fill:before { content: \"\\f1e1\"; }\n.remix-takeaway-line:before { content: \"\\f1e2\"; }\n.remix-taobao-fill:before { content: \"\\f1e3\"; }\n.remix-taobao-line:before { content: \"\\f1e4\"; }\n.remix-tape-fill:before { content: \"\\f1e5\"; }\n.remix-tape-line:before { content: \"\\f1e6\"; }\n.remix-task-fill:before { content: \"\\f1e7\"; }\n.remix-task-line:before { content: \"\\f1e8\"; }\n.remix-taxi-fill:before { content: \"\\f1e9\"; }\n.remix-taxi-line:before { content: \"\\f1ea\"; }\n.remix-taxi-wifi-fill:before { content: \"\\f1eb\"; }\n.remix-taxi-wifi-line:before { content: \"\\f1ec\"; }\n.remix-team-fill:before { content: \"\\f1ed\"; }\n.remix-team-line:before { content: \"\\f1ee\"; }\n.remix-telegram-fill:before { content: \"\\f1ef\"; }\n.remix-telegram-line:before { content: \"\\f1f0\"; }\n.remix-temp-cold-fill:before { content: \"\\f1f1\"; }\n.remix-temp-cold-line:before { content: \"\\f1f2\"; }\n.remix-temp-hot-fill:before { content: \"\\f1f3\"; }\n.remix-temp-hot-line:before { content: \"\\f1f4\"; }\n.remix-terminal-box-fill:before { content: \"\\f1f5\"; }\n.remix-terminal-box-line:before { content: \"\\f1f6\"; }\n.remix-terminal-fill:before { content: \"\\f1f7\"; }\n.remix-terminal-line:before { content: \"\\f1f8\"; }\n.remix-terminal-window-fill:before { content: \"\\f1f9\"; }\n.remix-terminal-window-line:before { content: \"\\f1fa\"; }\n.remix-test-tube-fill:before { content: \"\\f1fb\"; }\n.remix-test-tube-line:before { content: \"\\f1fc\"; }\n.remix-text-direction-l:before { content: \"\\f1fd\"; }\n.remix-text-direction-r:before { content: \"\\f1fe\"; }\n.remix-text-spacing:before { content: \"\\f1ff\"; }\n.remix-text-wrap:before { content: \"\\f200\"; }\n.remix-text:before { content: \"\\f201\"; }\n.remix-thermometer-fill:before { content: \"\\f202\"; }\n.remix-thermometer-line:before { content: \"\\f203\"; }\n.remix-thumb-down-fill:before { content: \"\\f204\"; }\n.remix-thumb-down-line:before { content: \"\\f205\"; }\n.remix-thumb-up-fill:before { content: \"\\f206\"; }\n.remix-thumb-up-line:before { content: \"\\f207\"; }\n.remix-thunderstorms-fill:before { content: \"\\f208\"; }\n.remix-thunderstorms-line:before { content: \"\\f209\"; }\n.remix-ticket-2-fill:before { content: \"\\f20a\"; }\n.remix-ticket-2-line:before { content: \"\\f20b\"; }\n.remix-ticket-fill:before { content: \"\\f20c\"; }\n.remix-ticket-line:before { content: \"\\f20d\"; }\n.remix-time-fill:before { content: \"\\f20e\"; }\n.remix-time-line:before { content: \"\\f20f\"; }\n.remix-timer-2-fill:before { content: \"\\f210\"; }\n.remix-timer-2-line:before { content: \"\\f211\"; }\n.remix-timer-fill:before { content: \"\\f212\"; }\n.remix-timer-flash-fill:before { content: \"\\f213\"; }\n.remix-timer-flash-line:before { content: \"\\f214\"; }\n.remix-timer-line:before { content: \"\\f215\"; }\n.remix-todo-fill:before { content: \"\\f216\"; }\n.remix-todo-line:before { content: \"\\f217\"; }\n.remix-toggle-fill:before { content: \"\\f218\"; }\n.remix-toggle-line:before { content: \"\\f219\"; }\n.remix-tools-fill:before { content: \"\\f21a\"; }\n.remix-tools-line:before { content: \"\\f21b\"; }\n.remix-tornado-fill:before { content: \"\\f21c\"; }\n.remix-tornado-line:before { content: \"\\f21d\"; }\n.remix-trademark-fill:before { content: \"\\f21e\"; }\n.remix-trademark-line:before { content: \"\\f21f\"; }\n.remix-traffic-light-fill:before { content: \"\\f220\"; }\n.remix-traffic-light-line:before { content: \"\\f221\"; }\n.remix-train-fill:before { content: \"\\f222\"; }\n.remix-train-line:before { content: \"\\f223\"; }\n.remix-train-wifi-fill:before { content: \"\\f224\"; }\n.remix-train-wifi-line:before { content: \"\\f225\"; }\n.remix-translate-2:before { content: \"\\f226\"; }\n.remix-translate:before { content: \"\\f227\"; }\n.remix-travesti-fill:before { content: \"\\f228\"; }\n.remix-travesti-line:before { content: \"\\f229\"; }\n.remix-treasure-map-fill:before { content: \"\\f22a\"; }\n.remix-treasure-map-line:before { content: \"\\f22b\"; }\n.remix-trello-fill:before { content: \"\\f22c\"; }\n.remix-trello-line:before { content: \"\\f22d\"; }\n.remix-trophy-fill:before { content: \"\\f22e\"; }\n.remix-trophy-line:before { content: \"\\f22f\"; }\n.remix-truck-fill:before { content: \"\\f230\"; }\n.remix-truck-line:before { content: \"\\f231\"; }\n.remix-tumblr-fill:before { content: \"\\f232\"; }\n.remix-tumblr-line:before { content: \"\\f233\"; }\n.remix-tv-2-fill:before { content: \"\\f234\"; }\n.remix-tv-2-line:before { content: \"\\f235\"; }\n.remix-tv-fill:before { content: \"\\f236\"; }\n.remix-tv-line:before { content: \"\\f237\"; }\n.remix-twitch-fill:before { content: \"\\f238\"; }\n.remix-twitch-line:before { content: \"\\f239\"; }\n.remix-twitter-fill:before { content: \"\\f23a\"; }\n.remix-twitter-line:before { content: \"\\f23b\"; }\n.remix-typhoon-fill:before { content: \"\\f23c\"; }\n.remix-typhoon-line:before { content: \"\\f23d\"; }\n.remix-u-disk-fill:before { content: \"\\f23e\"; }\n.remix-u-disk-line:before { content: \"\\f23f\"; }\n.remix-ubuntu-fill:before { content: \"\\f240\"; }\n.remix-ubuntu-line:before { content: \"\\f241\"; }\n.remix-umbrella-fill:before { content: \"\\f242\"; }\n.remix-umbrella-line:before { content: \"\\f243\"; }\n.remix-underline:before { content: \"\\f244\"; }\n.remix-uninstall-fill:before { content: \"\\f245\"; }\n.remix-uninstall-line:before { content: \"\\f246\"; }\n.remix-unsplash-fill:before { content: \"\\f247\"; }\n.remix-unsplash-line:before { content: \"\\f248\"; }\n.remix-upload-2-fill:before { content: \"\\f249\"; }\n.remix-upload-2-line:before { content: \"\\f24a\"; }\n.remix-upload-cloud-2-fill:before { content: \"\\f24b\"; }\n.remix-upload-cloud-2-line:before { content: \"\\f24c\"; }\n.remix-upload-cloud-fill:before { content: \"\\f24d\"; }\n.remix-upload-cloud-line:before { content: \"\\f24e\"; }\n.remix-upload-fill:before { content: \"\\f24f\"; }\n.remix-upload-line:before { content: \"\\f250\"; }\n.remix-usb-fill:before { content: \"\\f251\"; }\n.remix-usb-line:before { content: \"\\f252\"; }\n.remix-user-2-fill:before { content: \"\\f253\"; }\n.remix-user-2-line:before { content: \"\\f254\"; }\n.remix-user-3-fill:before { content: \"\\f255\"; }\n.remix-user-3-line:before { content: \"\\f256\"; }\n.remix-user-4-fill:before { content: \"\\f257\"; }\n.remix-user-4-line:before { content: \"\\f258\"; }\n.remix-user-5-fill:before { content: \"\\f259\"; }\n.remix-user-5-line:before { content: \"\\f25a\"; }\n.remix-user-6-fill:before { content: \"\\f25b\"; }\n.remix-user-6-line:before { content: \"\\f25c\"; }\n.remix-user-add-fill:before { content: \"\\f25d\"; }\n.remix-user-add-line:before { content: \"\\f25e\"; }\n.remix-user-fill:before { content: \"\\f25f\"; }\n.remix-user-follow-fill:before { content: \"\\f260\"; }\n.remix-user-follow-line:before { content: \"\\f261\"; }\n.remix-user-heart-fill:before { content: \"\\f262\"; }\n.remix-user-heart-line:before { content: \"\\f263\"; }\n.remix-user-line:before { content: \"\\f264\"; }\n.remix-user-location-fill:before { content: \"\\f265\"; }\n.remix-user-location-line:before { content: \"\\f266\"; }\n.remix-user-received-2-fill:before { content: \"\\f267\"; }\n.remix-user-received-2-line:before { content: \"\\f268\"; }\n.remix-user-received-fill:before { content: \"\\f269\"; }\n.remix-user-received-line:before { content: \"\\f26a\"; }\n.remix-user-search-fill:before { content: \"\\f26b\"; }\n.remix-user-search-line:before { content: \"\\f26c\"; }\n.remix-user-settings-fill:before { content: \"\\f26d\"; }\n.remix-user-settings-line:before { content: \"\\f26e\"; }\n.remix-user-shared-2-fill:before { content: \"\\f26f\"; }\n.remix-user-shared-2-line:before { content: \"\\f270\"; }\n.remix-user-shared-fill:before { content: \"\\f271\"; }\n.remix-user-shared-line:before { content: \"\\f272\"; }\n.remix-user-smile-fill:before { content: \"\\f273\"; }\n.remix-user-smile-line:before { content: \"\\f274\"; }\n.remix-user-star-fill:before { content: \"\\f275\"; }\n.remix-user-star-line:before { content: \"\\f276\"; }\n.remix-user-unfollow-fill:before { content: \"\\f277\"; }\n.remix-user-unfollow-line:before { content: \"\\f278\"; }\n.remix-user-voice-fill:before { content: \"\\f279\"; }\n.remix-user-voice-line:before { content: \"\\f27a\"; }\n.remix-video-add-fill:before { content: \"\\f27b\"; }\n.remix-video-add-line:before { content: \"\\f27c\"; }\n.remix-video-chat-fill:before { content: \"\\f27d\"; }\n.remix-video-chat-line:before { content: \"\\f27e\"; }\n.remix-video-download-fill:before { content: \"\\f27f\"; }\n.remix-video-download-line:before { content: \"\\f280\"; }\n.remix-video-fill:before { content: \"\\f281\"; }\n.remix-video-line:before { content: \"\\f282\"; }\n.remix-video-upload-fill:before { content: \"\\f283\"; }\n.remix-video-upload-line:before { content: \"\\f284\"; }\n.remix-vidicon-2-fill:before { content: \"\\f285\"; }\n.remix-vidicon-2-line:before { content: \"\\f286\"; }\n.remix-vidicon-fill:before { content: \"\\f287\"; }\n.remix-vidicon-line:before { content: \"\\f288\"; }\n.remix-vimeo-fill:before { content: \"\\f289\"; }\n.remix-vimeo-line:before { content: \"\\f28a\"; }\n.remix-vip-crown-2-fill:before { content: \"\\f28b\"; }\n.remix-vip-crown-2-line:before { content: \"\\f28c\"; }\n.remix-vip-crown-fill:before { content: \"\\f28d\"; }\n.remix-vip-crown-line:before { content: \"\\f28e\"; }\n.remix-vip-diamond-fill:before { content: \"\\f28f\"; }\n.remix-vip-diamond-line:before { content: \"\\f290\"; }\n.remix-vip-fill:before { content: \"\\f291\"; }\n.remix-vip-line:before { content: \"\\f292\"; }\n.remix-virus-fill:before { content: \"\\f293\"; }\n.remix-virus-line:before { content: \"\\f294\"; }\n.remix-visa-fill:before { content: \"\\f295\"; }\n.remix-visa-line:before { content: \"\\f296\"; }\n.remix-voice-recognition-fill:before { content: \"\\f297\"; }\n.remix-voice-recognition-line:before { content: \"\\f298\"; }\n.remix-voiceprint-fill:before { content: \"\\f299\"; }\n.remix-voiceprint-line:before { content: \"\\f29a\"; }\n.remix-volume-down-fill:before { content: \"\\f29b\"; }\n.remix-volume-down-line:before { content: \"\\f29c\"; }\n.remix-volume-mute-fill:before { content: \"\\f29d\"; }\n.remix-volume-mute-line:before { content: \"\\f29e\"; }\n.remix-volume-off-vibrate-fill:before { content: \"\\f29f\"; }\n.remix-volume-off-vibrate-line:before { content: \"\\f2a0\"; }\n.remix-volume-up-fill:before { content: \"\\f2a1\"; }\n.remix-volume-up-line:before { content: \"\\f2a2\"; }\n.remix-volume-vibrate-fill:before { content: \"\\f2a3\"; }\n.remix-volume-vibrate-line:before { content: \"\\f2a4\"; }\n.remix-vuejs-fill:before { content: \"\\f2a5\"; }\n.remix-vuejs-line:before { content: \"\\f2a6\"; }\n.remix-walk-fill:before { content: \"\\f2a7\"; }\n.remix-walk-line:before { content: \"\\f2a8\"; }\n.remix-wallet-2-fill:before { content: \"\\f2a9\"; }\n.remix-wallet-2-line:before { content: \"\\f2aa\"; }\n.remix-wallet-3-fill:before { content: \"\\f2ab\"; }\n.remix-wallet-3-line:before { content: \"\\f2ac\"; }\n.remix-wallet-fill:before { content: \"\\f2ad\"; }\n.remix-wallet-line:before { content: \"\\f2ae\"; }\n.remix-water-flash-fill:before { content: \"\\f2af\"; }\n.remix-water-flash-line:before { content: \"\\f2b0\"; }\n.remix-webcam-fill:before { content: \"\\f2b1\"; }\n.remix-webcam-line:before { content: \"\\f2b2\"; }\n.remix-wechat-2-fill:before { content: \"\\f2b3\"; }\n.remix-wechat-2-line:before { content: \"\\f2b4\"; }\n.remix-wechat-fill:before { content: \"\\f2b5\"; }\n.remix-wechat-line:before { content: \"\\f2b6\"; }\n.remix-wechat-pay-fill:before { content: \"\\f2b7\"; }\n.remix-wechat-pay-line:before { content: \"\\f2b8\"; }\n.remix-weibo-fill:before { content: \"\\f2b9\"; }\n.remix-weibo-line:before { content: \"\\f2ba\"; }\n.remix-whatsapp-fill:before { content: \"\\f2bb\"; }\n.remix-whatsapp-line:before { content: \"\\f2bc\"; }\n.remix-wheelchair-fill:before { content: \"\\f2bd\"; }\n.remix-wheelchair-line:before { content: \"\\f2be\"; }\n.remix-wifi-fill:before { content: \"\\f2bf\"; }\n.remix-wifi-line:before { content: \"\\f2c0\"; }\n.remix-wifi-off-fill:before { content: \"\\f2c1\"; }\n.remix-wifi-off-line:before { content: \"\\f2c2\"; }\n.remix-window-2-fill:before { content: \"\\f2c3\"; }\n.remix-window-2-line:before { content: \"\\f2c4\"; }\n.remix-window-fill:before { content: \"\\f2c5\"; }\n.remix-window-line:before { content: \"\\f2c6\"; }\n.remix-windows-fill:before { content: \"\\f2c7\"; }\n.remix-windows-line:before { content: \"\\f2c8\"; }\n.remix-windy-fill:before { content: \"\\f2c9\"; }\n.remix-windy-line:before { content: \"\\f2ca\"; }\n.remix-wireless-charging-fill:before { content: \"\\f2cb\"; }\n.remix-wireless-charging-line:before { content: \"\\f2cc\"; }\n.remix-women-fill:before { content: \"\\f2cd\"; }\n.remix-women-line:before { content: \"\\f2ce\"; }\n.remix-wubi-input:before { content: \"\\f2cf\"; }\n.remix-xbox-fill:before { content: \"\\f2d0\"; }\n.remix-xbox-line:before { content: \"\\f2d1\"; }\n.remix-xing-fill:before { content: \"\\f2d2\"; }\n.remix-xing-line:before { content: \"\\f2d3\"; }\n.remix-youtube-fill:before { content: \"\\f2d4\"; }\n.remix-youtube-line:before { content: \"\\f2d5\"; }\n.remix-zcool-fill:before { content: \"\\f2d6\"; }\n.remix-zcool-line:before { content: \"\\f2d7\"; }\n.remix-zhihu-fill:before { content: \"\\f2d8\"; }\n.remix-zhihu-line:before { content: \"\\f2d9\"; }\n.remix-zoom-in-fill:before { content: \"\\f2da\"; }\n.remix-zoom-in-line:before { content: \"\\f2db\"; }\n.remix-zoom-out-fill:before { content: \"\\f2dc\"; }\n.remix-zoom-out-line:before { content: \"\\f2dd\"; }\n.remix-zzz-fill:before { content: \"\\f2de\"; }\n.remix-zzz-line:before { content: \"\\f2df\"; }"
  },
  {
    "path": "icon-packs/ikonli-runestroicons-pack/ikonli-runestroicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-runestroicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.runestroicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.runestroicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.runestroicons.RunestroiconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.runestroicons.RunestroiconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-runestroicons-pack/src/main/java/org/kordamp/ikonli/runestroicons/Runestroicons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.runestroicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Runestroicons implements Ikon {\n    RI_3D(\"ri-3d\", '\\ue84a'),\n    RI_500PX(\"ri-500px\", '\\ue645'),\n    RI_5STAR_SHADOW(\"ri-5star-shadow\", '\\ue6ea'),\n    ACCESS(\"ri-access\", '\\ue8ee'),\n    ACROBAT(\"ri-acrobat\", '\\ue6fa'),\n    ADDRESS_BOOK(\"ri-address-book\", '\\ue7f2'),\n    ADDTHIS(\"ri-addthis\", '\\ue63d'),\n    ADD_TO_CART(\"ri-add-to-cart\", '\\ue71b'),\n    ADJUST(\"ri-adjust\", '\\ue8da'),\n    AFTER_EFFECTS(\"ri-after-effects\", '\\ue687'),\n    AIM(\"ri-aim\", '\\ue63f'),\n    AIRBNB(\"ri-airbnb\", '\\ue896'),\n    ALARM(\"ri-alarm\", '\\ue808'),\n    ALGOLIA(\"ri-algolia\", '\\ue857'),\n    ALIGN_CENTER(\"ri-align-center\", '\\ue8b9'),\n    ALIGN_JUSTIFY(\"ri-align-justify\", '\\ue8bb'),\n    ALIGN_LEFT(\"ri-align-left\", '\\ue8b8'),\n    ALIGN_RIGHT(\"ri-align-right\", '\\ue8ba'),\n    AMAZON(\"ri-amazon\", '\\ue6fc'),\n    AMEX(\"ri-amex\", '\\ue95c'),\n    ANDROID(\"ri-android\", '\\ue7d3'),\n    ANGELLIST(\"ri-angellist\", '\\ue6cc'),\n    ANGLE(\"ri-angle\", '\\ue738'),\n    ANGLE2(\"ri-angle2\", '\\ue739'),\n    ANGLE_DOUBLE(\"ri-angle-double\", '\\ue73a'),\n    ANGULAR(\"ri-angular\", '\\ue6ca'),\n    ANIMATE(\"ri-animate\", '\\ue8fd'),\n    APPLE(\"ri-apple\", '\\ue7d6'),\n    APPLE_PAY(\"ri-apple-pay\", '\\ue95b'),\n    APPLE_PAY_ALT(\"ri-apple-pay-alt\", '\\ue95a'),\n    APP_LAUNCHER(\"ri-app-launcher\", '\\ue6e2'),\n    APP_STORE(\"ri-app-store\", '\\ue835'),\n    APP_STORE_IOS(\"ri-app-store-ios\", '\\ue939'),\n    AQUARIUS(\"ri-aquarius\", '\\ue6be'),\n    ARCHERY(\"ri-archery\", '\\ue8ae'),\n    ARCHIVE(\"ri-archive\", '\\ue66c'),\n    ARCHIVE_BOX(\"ri-archive-box\", '\\ue6f0'),\n    ARIES(\"ri-aries\", '\\ue6b4'),\n    ARRIVING_FLIGHT(\"ri-arriving-flight\", '\\ue82a'),\n    ARROW(\"ri-arrow\", '\\ue737'),\n    ARROW2(\"ri-arrow2\", '\\ue828'),\n    ARROWS(\"ri-arrows\", '\\ue768'),\n    ARROW_SIGN(\"ri-arrow-sign\", '\\ue734'),\n    ASTERISK(\"ri-asterisk\", '\\ue6ee'),\n    ASTERISK2(\"ri-asterisk2\", '\\ue6f4'),\n    AT(\"ri-at\", '\\ue6e8'),\n    ATOM(\"ri-atom\", '\\ue842'),\n    ATTACHMENT(\"ri-attachment\", '\\ue705'),\n    ATTRACTION(\"ri-attraction\", '\\ue76d'),\n    ATV(\"ri-atv\", '\\ue8ab'),\n    AUDITION(\"ri-audition\", '\\ue689'),\n    BACKWARD_CIRCLE(\"ri-backward-circle\", '\\ue7b6'),\n    BADGE(\"ri-badge\", '\\ue6f3'),\n    BAHAI(\"ri-bahai\", '\\ue8c7'),\n    BALANCE_SCALE(\"ri-balance-scale\", '\\ue8c4'),\n    BANDCAMP(\"ri-bandcamp\", '\\ue96f'),\n    BARCODE(\"ri-barcode\", '\\ue71c'),\n    BASEBALL(\"ri-baseball\", '\\ue8d3'),\n    BASKET(\"ri-basket\", '\\ue71a'),\n    BASKETBALL(\"ri-basketball\", '\\ue8d2'),\n    BATTERY_0(\"ri-battery-0\", '\\ue628'),\n    BATTERY_1(\"ri-battery-1\", '\\ue629'),\n    BATTERY_2(\"ri-battery-2\", '\\ue62a'),\n    BATTERY_3(\"ri-battery-3\", '\\ue62b'),\n    BATTERY_CHARGING(\"ri-battery-charging\", '\\ue62c'),\n    BEAR(\"ri-bear\", '\\ue8a9'),\n    BEER(\"ri-beer\", '\\ue8b5'),\n    BEHANCE(\"ri-behance\", '\\ue643'),\n    BELL(\"ri-bell\", '\\ue8b6'),\n    BELL_SLASH(\"ri-bell-slash\", '\\ue8b7'),\n    BIN(\"ri-bin\", '\\ue741'),\n    BING(\"ri-bing\", '\\ue698'),\n    BIOHAZARD(\"ri-biohazard\", '\\ue6c4'),\n    BIRTHDAY_CAKE(\"ri-birthday-cake\", '\\ue8c3'),\n    BITCOIN(\"ri-bitcoin\", '\\ue899'),\n    BITNAMI(\"ri-bitnami\", '\\ue7fa'),\n    BLOCS(\"ri-blocs\", '\\ue83b'),\n    BLOG(\"ri-blog\", '\\ue834'),\n    BLOGGER(\"ri-blogger\", '\\ue64b'),\n    BLUERAY(\"ri-blueray\", '\\ue6f1'),\n    BLUETOOTH(\"ri-bluetooth\", '\\ue695'),\n    BOOK(\"ri-book\", '\\ue684'),\n    BOOKM_BLK(\"ri-bookm-blk\", '\\ue729'),\n    BOOKS(\"ri-books\", '\\ue66d'),\n    BOOTSTRAP(\"ri-bootstrap\", '\\ue7d9'),\n    BOWLING(\"ri-bowling\", '\\ue8d4'),\n    BOX_EMPTY(\"ri-box-empty\", '\\ue91c'),\n    BOX_SELECTED(\"ri-box-selected\", '\\ue91d'),\n    BRACKETS(\"ri-brackets\", '\\ue83d'),\n    BRAIN(\"ri-brain\", '\\ue88a'),\n    BRIDGE(\"ri-bridge\", '\\ue68a'),\n    BUCKET(\"ri-bucket\", '\\ue760'),\n    BULLET(\"ri-bullet\", '\\ue6eb'),\n    BUS(\"ri-bus\", '\\ue7eb'),\n    BUYSELLADS(\"ri-buysellads\", '\\ue96b'),\n    BY(\"ri-by\", '\\ue748'),\n    CAB(\"ri-cab\", '\\ue7ea'),\n    CABIN(\"ri-cabin\", '\\ue87a'),\n    CALCULATOR(\"ri-calculator\", '\\ue696'),\n    CALENDAR(\"ri-calendar\", '\\ue66a'),\n    CALENDAR_OPEN(\"ri-calendar-open\", '\\ue669'),\n    CAMERA(\"ri-camera\", '\\ue7ba'),\n    CAMERA_RETRO(\"ri-camera-retro\", '\\ue7b9'),\n    CAMPERVAN(\"ri-campervan\", '\\ue957'),\n    CAMPFIRE(\"ri-campfire\", '\\ue876'),\n    CAMPGROUND(\"ri-campground\", '\\ue87b'),\n    CANCEL(\"ri-cancel\", '\\ue798'),\n    CANCEL_CIRCLE(\"ri-cancel-circle\", '\\ue796'),\n    CANCER(\"ri-cancer\", '\\ue6b7'),\n    CANOEING(\"ri-canoeing\", '\\ue85c'),\n    CAPRICORN(\"ri-capricorn\", '\\ue6bd'),\n    CARAVAN(\"ri-caravan\", '\\ue878'),\n    CARD_CLUB(\"ri-card-club\", '\\ue67a'),\n    CARD_DIAMOND(\"ri-card-diamond\", '\\ue67c'),\n    CARD_HEART(\"ri-card-heart\", '\\ue67b'),\n    CARD_SPADE(\"ri-card-spade\", '\\ue679'),\n    CARET(\"ri-caret\", '\\ue73b'),\n    CARET_CIRCLE(\"ri-caret-circle\", '\\ue73c'),\n    CARS(\"ri-cars\", '\\ue8f8'),\n    CC(\"ri-cc\", '\\ue747'),\n    CC_MASTERCARD(\"ri-cc-mastercard\", '\\ue70f'),\n    CC_PAYPAL(\"ri-cc-paypal\", '\\ue710'),\n    CC_REMIX(\"ri-cc-remix\", '\\ue975'),\n    CC_SAMPLING(\"ri-cc-sampling\", '\\ue976'),\n    CC_SHARE(\"ri-cc-share\", '\\ue977'),\n    CC_VISA(\"ri-cc-visa\", '\\ue70e'),\n    CELCIUS(\"ri-celcius\", '\\ue6c0'),\n    CERTIFICATE(\"ri-certificate\", '\\ue88b'),\n    CE_MARK(\"ri-ce-mark\", '\\ue683'),\n    CHAR(\"ri-char\", '\\ue6c3'),\n    CHARACTER_ANIMATOR(\"ri-character-animator\", '\\ue8fe'),\n    CHARGING_STATION(\"ri-charging-station\", '\\ue8fa'),\n    CHART_AREA(\"ri-chart-area\", '\\ue8a4'),\n    CHART_BAR(\"ri-chart-bar\", '\\ue8a5'),\n    CHART_LINE(\"ri-chart-line\", '\\ue8a6'),\n    CHART_PIE(\"ri-chart-pie\", '\\ue8a7'),\n    CHAT(\"ri-chat\", '\\ue78a'),\n    CHAT2(\"ri-chat2\", '\\ue833'),\n    CHECKBOX_CHECKED(\"ri-checkbox-checked\", '\\ue779'),\n    CHESS(\"ri-chess\", '\\ue8c9'),\n    CHESS_BISHOP(\"ri-chess-bishop\", '\\ue8ca'),\n    CHESS_BOARD(\"ri-chess-board\", '\\ue8c8'),\n    CHESS_KING(\"ri-chess-king\", '\\ue8cb'),\n    CHESS_KNIGHT(\"ri-chess-knight\", '\\ue8cc'),\n    CHESS_PAWN(\"ri-chess-pawn\", '\\ue8cd'),\n    CHESS_QUEEN(\"ri-chess-queen\", '\\ue8ce'),\n    CHESS_ROOK(\"ri-chess-rook\", '\\ue8cf'),\n    CHEVRON(\"ri-chevron\", '\\ue735'),\n    CHEVRON_CIRCLE(\"ri-chevron-circle\", '\\ue736'),\n    CHROME(\"ri-chrome\", '\\ue7aa'),\n    CIRCLE(\"ri-circle\", '\\ue7db'),\n    CIRCLEADD(\"ri-circleadd\", '\\ue792'),\n    CIRCLEDELETE(\"ri-circledelete\", '\\ue794'),\n    CIRCLESELECT(\"ri-circleselect\", '\\ue795'),\n    CIRCLE_0(\"ri-circle-0\", '\\ue65d'),\n    CIRCLE_1(\"ri-circle-1\", '\\ue65e'),\n    CIRCLE_2(\"ri-circle-2\", '\\ue65f'),\n    CIRCLE_3(\"ri-circle-3\", '\\ue660'),\n    CIRCLE_4(\"ri-circle-4\", '\\ue661'),\n    CIRCLE_5(\"ri-circle-5\", '\\ue662'),\n    CIRCLE_6(\"ri-circle-6\", '\\ue663'),\n    CIRCLE_7(\"ri-circle-7\", '\\ue664'),\n    CIRCLE_8(\"ri-circle-8\", '\\ue665'),\n    CIRCLE_9(\"ri-circle-9\", '\\ue666'),\n    CIRCLE_ANGLE(\"ri-circle-angle\", '\\ue732'),\n    CIRCLE_ARROW(\"ri-circle-arrow\", '\\ue730'),\n    CIRCLE_ARROW_O(\"ri-circle-arrow-o\", '\\ue731'),\n    CIRCLE_DOWNLOAD(\"ri-circle-download\", '\\ue677'),\n    CIRCLE_FACEBOOK(\"ri-circle-facebook\", '\\ue781'),\n    CIRCLE_GITHUB(\"ri-circle-github\", '\\ue79b'),\n    CIRCLE_GOOGLEPLUS(\"ri-circle-googleplus\", '\\ue782'),\n    CIRCLE_INSTAGRAM(\"ri-circle-instagram\", '\\ue783'),\n    CIRCLE_LINKEDIN(\"ri-circle-linkedin\", '\\ue787'),\n    CIRCLE_MAIL(\"ri-circle-mail\", '\\ue784'),\n    CIRCLE_MINUS(\"ri-circle-minus\", '\\ue793'),\n    CIRCLE_O(\"ri-circle-o\", '\\ue7dd'),\n    CIRCLE_O_NOTCH(\"ri-circle-o-notch\", '\\ue765'),\n    CIRCLE_PINTEREST(\"ri-circle-pinterest\", '\\ue786'),\n    CIRCLE_SHARE(\"ri-circle-share\", '\\ue785'),\n    CIRCLE_THINLINE(\"ri-circle-thinline\", '\\ue7dc'),\n    CIRCLE_TWITTER(\"ri-circle-twitter\", '\\ue788'),\n    CIRCLE_UPLOAD(\"ri-circle-upload\", '\\ue676'),\n    CIRCLE_YOUTUBE(\"ri-circle-youtube\", '\\ue789'),\n    CLASS_NOTEBOOK(\"ri-class-notebook\", '\\ue8f1'),\n    CLIMBING(\"ri-climbing\", '\\ue888'),\n    CLOCK(\"ri-clock\", '\\ue772'),\n    CLOUDVERSIFY(\"ri-cloudversify\", '\\ue96d'),\n    CLOUDY(\"ri-cloudy\", '\\ue6d9'),\n    CODE(\"ri-code\", '\\ue83e'),\n    CODEANYWHERE(\"ri-codeanywhere\", '\\ue762'),\n    CODEPEN(\"ri-codepen\", '\\ue7a6'),\n    CODERWALL(\"ri-coderwall\", '\\ue6d0'),\n    CODIEPIE(\"ri-codiepie\", '\\ue89f'),\n    CODYHOUSE(\"ri-codyhouse\", '\\ue906'),\n    COFFEE(\"ri-coffee\", '\\ue7e6'),\n    COFFEE_MACHINE(\"ri-coffee-machine\", '\\ue94e'),\n    COGS(\"ri-cogs\", '\\ue770'),\n    COLOURS(\"ri-colours\", '\\ue75f'),\n    COMMENT(\"ri-comment\", '\\ue78b'),\n    COMMENT2(\"ri-comment2\", '\\ue7ef'),\n    COMMENT_QUOTE(\"ri-comment-quote\", '\\ue78c'),\n    COMMENT_QUOTES(\"ri-comment-quotes\", '\\ue909'),\n    COMPASS(\"ri-compass\", '\\ue809'),\n    CONNECTION_WIFI(\"ri-connection-wifi\", '\\ue691'),\n    CONSTRUCTION(\"ri-construction\", '\\ue771'),\n    CONTACTS(\"ri-contacts\", '\\ue7b0'),\n    COPY(\"ri-copy\", '\\ue707'),\n    CREATIVECLOUD(\"ri-creativecloud\", '\\ue6d6'),\n    CREDITCARD(\"ri-creditcard\", '\\ue70d'),\n    CREDITCARD_ALT(\"ri-creditcard-alt\", '\\ue8c1'),\n    CROSS_COUNTRY(\"ri-cross-country\", '\\ue85d'),\n    CROSS_PATTEE(\"ri-cross-pattee\", '\\ue860'),\n    CSS3(\"ri-css3\", '\\ue75e'),\n    CSSDECK(\"ri-cssdeck\", '\\ue837'),\n    CURSOR(\"ri-cursor\", '\\ue924'),\n    CUT(\"ri-cut\", '\\ue706'),\n    CUTLERY(\"ri-cutlery\", '\\ue7e7'),\n    CUTTLEFISH(\"ri-cuttlefish\", '\\ue95e'),\n    CYCLING(\"ri-cycling\", '\\ue81d'),\n    C_TICK(\"ri-c-tick\", '\\ue882'),\n    DANGER_AHEAD(\"ri-danger-ahead\", '\\ue87f'),\n    DATABASE(\"ri-database\", '\\ue674'),\n    DATA_MOUSE(\"ri-data-mouse\", '\\ue94a'),\n    DECO_BULLET(\"ri-deco-bullet\", '\\ue6ec'),\n    DELICIOUS(\"ri-delicious\", '\\ue648'),\n    DEPARTING_FLIGHT(\"ri-departing-flight\", '\\ue829'),\n    DESKPRO(\"ri-deskpro\", '\\ue940'),\n    DESKTOP(\"ri-desktop\", '\\ue7e0'),\n    DEVIANTART(\"ri-deviantart\", '\\ue7c7'),\n    DHARMA_WHEEL(\"ri-dharma-wheel\", '\\ue864'),\n    DIALPAD(\"ri-dialpad\", '\\ue97e'),\n    DICE_FIVE(\"ri-dice-five\", '\\ue77e'),\n    DICE_FOUR(\"ri-dice-four\", '\\ue77d'),\n    DICE_ONE(\"ri-dice-one\", '\\ue77a'),\n    DICE_SIX(\"ri-dice-six\", '\\ue77f'),\n    DICE_THREE(\"ri-dice-three\", '\\ue77c'),\n    DICE_TWO(\"ri-dice-two\", '\\ue77b'),\n    DIGG(\"ri-digg\", '\\ue64c'),\n    DIGITALOCEAN(\"ri-digitalocean\", '\\ue963'),\n    DIMENSION(\"ri-dimension\", '\\ue8ff'),\n    DINERS_CLUB(\"ri-diners-club\", '\\ue966'),\n    DINING_SET(\"ri-dining-set\", '\\ue8fb'),\n    DISAPPOINTED_FACE(\"ri-disappointed-face\", '\\ue6af'),\n    DISC(\"ri-disc\", '\\ue7f5'),\n    DISCOURSE(\"ri-discourse\", '\\ue970'),\n    DISHWASHER(\"ri-dishwasher\", '\\ue951'),\n    DIVING(\"ri-diving\", '\\ue873'),\n    DOCKER(\"ri-docker\", '\\ue8f5'),\n    DOCS_COM(\"ri-docs-com\", '\\ue600'),\n    DOC_EDIT(\"ri-doc-edit\", '\\ue88d'),\n    DOGS_ON_LEASH(\"ri-dogs-on-leash\", '\\ue870'),\n    DOMAIN2(\"ri-domain2\", '\\ue73e'),\n    DOWNLOAD(\"ri-download\", '\\ue682'),\n    DREAMWEAVER(\"ri-dreamweaver\", '\\ue68b'),\n    DRIBBBLE(\"ri-dribbble\", '\\ue638'),\n    DRIVE(\"ri-drive\", '\\ue921'),\n    DRIVE_O(\"ri-drive-o\", '\\ue922'),\n    DROPBOX(\"ri-dropbox\", '\\ue7c6'),\n    DRUPAL8(\"ri-drupal8\", '\\ue7ff'),\n    DVD(\"ri-dvd\", '\\ue6f2'),\n    DYALOG(\"ri-dyalog\", '\\ue972'),\n    EASEL(\"ri-easel\", '\\ue920'),\n    EDIT(\"ri-edit\", '\\ue746'),\n    EJECT(\"ri-eject\", '\\ue659'),\n    EJECT_CIRCLE(\"ri-eject-circle\", '\\ue7b8'),\n    ELECTRICITY(\"ri-electricity\", '\\ue8f6'),\n    ELLIPSIS(\"ri-ellipsis\", '\\ue774'),\n    EL_HAZARD(\"ri-el-hazard\", '\\ue831'),\n    ENCORE(\"ri-encore\", '\\ue900'),\n    ENVATO(\"ri-envato\", '\\ue838'),\n    ENVELOPE(\"ri-envelope\", '\\ue714'),\n    ENVELOPE_O(\"ri-envelope-o\", '\\ue713'),\n    ENVIRA(\"ri-envira\", '\\ue96c'),\n    ETSY(\"ri-etsy\", '\\ue62e'),\n    EVERNOTE(\"ri-evernote\", '\\ue642'),\n    EXCEL(\"ri-excel\", '\\ue60a'),\n    EXCHANGE(\"ri-exchange\", '\\ue601'),\n    EXCLAMATION_CIRCLE(\"ri-exclamation-circle\", '\\ue7df'),\n    EXIT(\"ri-exit\", '\\ue884'),\n    EXPAND(\"ri-expand\", '\\ue72e'),\n    EXPEDITEDSSL(\"ri-expeditedssl\", '\\ue89b'),\n    EXPOSURE(\"ri-exposure\", '\\ue686'),\n    EYE(\"ri-eye\", '\\ue80c'),\n    EYEDROPPER(\"ri-eyedropper\", '\\ue745'),\n    FACEBOOK(\"ri-facebook\", '\\ue649'),\n    FACEBOOK2(\"ri-facebook2\", '\\ue7a4'),\n    FAHRENHEIT(\"ri-fahrenheit\", '\\ue6c1'),\n    FAMILY(\"ri-family\", '\\ue821'),\n    FAMILY_GROUP(\"ri-family-group\", '\\ue90a'),\n    FAST_FORWARD(\"ri-fast-forward\", '\\ue657'),\n    FAVORITES(\"ri-favorites\", '\\ue728'),\n    FEEDLY(\"ri-feedly\", '\\ue6c6'),\n    FILES(\"ri-files\", '\\ue6a8'),\n    FILE_AI(\"ri-file-ai\", '\\ue619'),\n    FILE_AIF(\"ri-file-aif\", '\\ue90c'),\n    FILE_ASP(\"ri-file-asp\", '\\ue622'),\n    FILE_AVI(\"ri-file-avi\", '\\ue612'),\n    FILE_CSS(\"ri-file-css\", '\\ue61e'),\n    FILE_CSV(\"ri-file-csv\", '\\ue90d'),\n    FILE_DMG(\"ri-file-dmg\", '\\ue90e'),\n    FILE_DOCX(\"ri-file-docx\", '\\ue60f'),\n    FILE_EOT(\"ri-file-eot\", '\\ue90f'),\n    FILE_EPS(\"ri-file-eps\", '\\ue61a'),\n    FILE_EXE(\"ri-file-exe\", '\\ue61d'),\n    FILE_GIF(\"ri-file-gif\", '\\ue618'),\n    FILE_HTML(\"ri-file-html\", '\\ue621'),\n    FILE_ICO(\"ri-file-ico\", '\\ue910'),\n    FILE_INDD(\"ri-file-indd\", '\\ue911'),\n    FILE_ISO(\"ri-file-iso\", '\\ue912'),\n    FILE_JPG(\"ri-file-jpg\", '\\ue617'),\n    FILE_JS(\"ri-file-js\", '\\ue61f'),\n    FILE_LESS(\"ri-file-less\", '\\ue913'),\n    FILE_MID(\"ri-file-mid\", '\\ue914'),\n    FILE_MOV(\"ri-file-mov\", '\\ue614'),\n    FILE_MP3(\"ri-file-mp3\", '\\ue610'),\n    FILE_MP4(\"ri-file-mp4\", '\\ue613'),\n    FILE_MPG(\"ri-file-mpg\", '\\ue915'),\n    FILE_O(\"ri-file-o\", '\\ue709'),\n    FILE_OTF(\"ri-file-otf\", '\\ue623'),\n    FILE_PDF(\"ri-file-pdf\", '\\ue61b'),\n    FILE_PHP(\"ri-file-php\", '\\ue620'),\n    FILE_PNG(\"ri-file-png\", '\\ue615'),\n    FILE_PPTX(\"ri-file-pptx\", '\\ue916'),\n    FILE_PSD(\"ri-file-psd\", '\\ue616'),\n    FILE_RAR(\"ri-file-rar\", '\\ue625'),\n    FILE_RAW(\"ri-file-raw\", '\\ue811'),\n    FILE_RTF(\"ri-file-rtf\", '\\ue917'),\n    FILE_SITX(\"ri-file-sitx\", '\\ue918'),\n    FILE_SQL(\"ri-file-sql\", '\\ue61c'),\n    FILE_SVG(\"ri-file-svg\", '\\ue626'),\n    FILE_TTF(\"ri-file-ttf\", '\\ue810'),\n    FILE_TXT(\"ri-file-txt\", '\\ue627'),\n    FILE_WAV(\"ri-file-wav\", '\\ue611'),\n    FILE_WOFF(\"ri-file-woff\", '\\ue919'),\n    FILE_XLSX(\"ri-file-xlsx\", '\\ue91a'),\n    FILE_ZIP(\"ri-file-zip\", '\\ue624'),\n    FILM(\"ri-film\", '\\ue76b'),\n    FINDER(\"ri-finder\", '\\ue7d7'),\n    FIND_IN_PAGE(\"ri-find-in-page\", '\\ue65b'),\n    FINGERPRINT(\"ri-fingerprint\", '\\ue701'),\n    FIREFOX(\"ri-firefox\", '\\ue7ab'),\n    FIREWORKS(\"ri-fireworks\", '\\ue68c'),\n    FIRE_EXTINGUISHER(\"ri-fire-extinguisher\", '\\ue75a'),\n    FISHING(\"ri-fishing\", '\\ue86d'),\n    FLASHPLAYER(\"ri-flashplayer\", '\\ue636'),\n    FLICKR(\"ri-flickr\", '\\ue63b'),\n    FLIPBOARD(\"ri-flipboard\", '\\ue644'),\n    FLY(\"ri-fly\", '\\ue96e'),\n    FOLDER(\"ri-folder\", '\\ue978'),\n    FOLDER_ADD(\"ri-folder-add\", '\\ue97a'),\n    FOLDER_OPEN(\"ri-folder-open\", '\\ue979'),\n    FOLDER_SHARED(\"ri-folder-shared\", '\\ue97b'),\n    FONT(\"ri-font\", '\\ue8d9'),\n    FOOD_WASTE(\"ri-food-waste\", '\\ue82e'),\n    FOOTBALL(\"ri-football\", '\\ue8d5'),\n    FOREST(\"ri-forest\", '\\ue8e0'),\n    FORUMBEE(\"ri-forumbee\", '\\ue89d'),\n    FORWARD(\"ri-forward\", '\\ue656'),\n    FORWARD_CIRCLE(\"ri-forward-circle\", '\\ue7b7'),\n    FOURSQUARE(\"ri-foursquare\", '\\ue631'),\n    FRAME(\"ri-frame\", '\\ue7f0'),\n    FREEBSB(\"ri-freebsb\", '\\ue960'),\n    FRIDGE(\"ri-fridge\", '\\ue953'),\n    FROWNING_FACE(\"ri-frowning-face\", '\\ue6b2'),\n    FULLSCR(\"ri-fullscr\", '\\ue72c'),\n    FULLSCR_ESC(\"ri-fullscr-esc\", '\\ue72d'),\n    FUSE(\"ri-fuse\", '\\ue901'),\n    GAME_PAD(\"ri-game-pad\", '\\ue948'),\n    GEMINI(\"ri-gemini\", '\\ue6b6'),\n    GESTURE(\"ri-gesture\", '\\ue981'),\n    GETTYIMAGES(\"ri-gettyimages\", '\\ue66b'),\n    GG(\"ri-gg\", '\\ue971'),\n    GIFT(\"ri-gift\", '\\ue8c2'),\n    GITHUB(\"ri-github\", '\\ue637'),\n    GITLAB(\"ri-gitlab\", '\\ue69f'),\n    GLIDE(\"ri-glide\", '\\ue6a0'),\n    GLOBE(\"ri-globe\", '\\ue6e4'),\n    GLOBE_2(\"ri-globe-2\", '\\ue73d'),\n    GLOBUS(\"ri-globus\", '\\ue91e'),\n    GMAIL(\"ri-gmail\", '\\ue7a5'),\n    GO(\"ri-go\", '\\ue6df'),\n    GO2(\"ri-go2\", '\\ue780'),\n    GOFORE(\"ri-gofore\", '\\ue973'),\n    GOLF(\"ri-golf\", '\\ue8d0'),\n    GOLFING(\"ri-golfing\", '\\ue859'),\n    GOLF_CART(\"ri-golf-cart\", '\\ue954'),\n    GOOGLE(\"ri-google\", '\\ue79f'),\n    GOOGLEPLUS(\"ri-googleplus\", '\\ue7a0'),\n    GOOGLE_DRIVE(\"ri-google-drive\", '\\ue7ca'),\n    GOOGLE_PLAY(\"ri-google-play\", '\\ue6fb'),\n    GOOGLE_WD(\"ri-google-wd\", '\\ue69c'),\n    GRAV(\"ri-grav\", '\\ue635'),\n    GREEN_DOT(\"ri-green-dot\", '\\ue7f9'),\n    GROUP(\"ri-group\", '\\ue7b1'),\n    GUITAR(\"ri-guitar\", '\\ue886'),\n    G_TRANSLATE(\"ri-g-translate\", '\\ue65c'),\n    G_WALLET(\"ri-g-wallet\", '\\ue711'),\n    HANGOUTS(\"ri-hangouts\", '\\ue7cb'),\n    HD(\"ri-hd\", '\\ue65a'),\n    HEADPHONES(\"ri-headphones\", '\\ue6d3'),\n    HEADSET(\"ri-headset\", '\\ue949'),\n    HEART(\"ri-heart\", '\\ue777'),\n    HEART_O(\"ri-heart-o\", '\\ue80d'),\n    HEROKU(\"ri-heroku\", '\\ue850'),\n    HIKING(\"ri-hiking\", '\\ue8ad'),\n    HIKING_TRAIL(\"ri-hiking-trail\", '\\ue86c'),\n    HOME(\"ri-home\", '\\ue703'),\n    HOME2(\"ri-home2\", '\\ue704'),\n    HOOTSUITE(\"ri-hootsuite\", '\\ue69d'),\n    HOOVER(\"ri-hoover\", '\\ue94d'),\n    HORSE_RIDING(\"ri-horse-riding\", '\\ue858'),\n    HOURGLASS(\"ri-hourglass\", '\\ue925'),\n    HOUSES(\"ri-houses\", '\\ue8fc'),\n    HTML5(\"ri-html5\", '\\ue75d'),\n    ICLOUD(\"ri-icloud\", '\\ue6ce'),\n    ICQ(\"ri-icq\", '\\ue63a'),\n    IE(\"ri-ie\", '\\ue7ac'),\n    ILLUSTRATOR(\"ri-illustrator\", '\\ue688'),\n    IMAGE(\"ri-image\", '\\ue7bd'),\n    IMAGE_GALLERY(\"ri-image-gallery\", '\\ue7bb'),\n    IMAGE_GALLERY2(\"ri-image-gallery2\", '\\ue7bc'),\n    IMAGE_PORTRAIT(\"ri-image-portrait\", '\\ue7be'),\n    IMDB(\"ri-imdb\", '\\ue719'),\n    IMPORT(\"ri-import\", '\\ue715'),\n    IMPORT_EXPORT(\"ri-import-export\", '\\ue980'),\n    INDENT(\"ri-indent\", '\\ue8dc'),\n    INDESIGN(\"ri-indesign\", '\\ue68d'),\n    INDUSTRY(\"ri-industry\", '\\ue894'),\n    INFINITY(\"ri-infinity\", '\\ue761'),\n    INFO(\"ri-info\", '\\ue71f'),\n    INFO_CIRCLE(\"ri-info-circle\", '\\ue71d'),\n    INFO_CIRCLE2(\"ri-info-circle2\", '\\ue71e'),\n    INSTAGRAM(\"ri-instagram\", '\\ue64e'),\n    INTERSECTION(\"ri-intersection\", '\\ue983'),\n    INT_ALPINE(\"ri-int-alpine\", '\\ue74f'),\n    INT_BED(\"ri-int-bed\", '\\ue753'),\n    INT_BICYCLE(\"ri-int-bicycle\", '\\ue845'),\n    INT_BUS(\"ri-int-bus\", '\\ue754'),\n    INT_CAR_RENTAL(\"ri-int-car-rental\", '\\ue822'),\n    INT_CUTLERY(\"ri-int-cutlery\", '\\ue8af'),\n    INT_DEPARTURE(\"ri-int-departure\", '\\ue825'),\n    INT_ELEVATOR(\"ri-int-elevator\", '\\ue751'),\n    INT_ESCALATOR(\"ri-int-escalator\", '\\ue868'),\n    INT_EXIT(\"ri-int-exit\", '\\ue848'),\n    INT_FIRSTAID(\"ri-int-firstaid\", '\\ue759'),\n    INT_FUEL(\"ri-int-fuel\", '\\ue758'),\n    INT_GENTS(\"ri-int-gents\", '\\ue75c'),\n    INT_GUARD(\"ri-int-guard\", '\\ue750'),\n    INT_HELIPORT(\"ri-int-heliport\", '\\ue846'),\n    INT_HORSE_RIDING(\"ri-int-horse-riding\", '\\ue8aa'),\n    INT_LADIES(\"ri-int-ladies\", '\\ue75b'),\n    INT_LIGHTHOUSE(\"ri-int-lighthouse\", '\\ue844'),\n    INT_LITTER(\"ri-int-litter\", '\\ue752'),\n    INT_LOCKER(\"ri-int-locker\", '\\ue74e'),\n    INT_P(\"ri-int-p\", '\\ue757'),\n    INT_PHONE(\"ri-int-phone\", '\\ue756'),\n    INT_PLANE(\"ri-int-plane\", '\\ue755'),\n    INT_SHIP(\"ri-int-ship\", '\\ue823'),\n    INT_STAIRS(\"ri-int-stairs\", '\\ue869'),\n    INT_SWIM(\"ri-int-swim\", '\\ue74d'),\n    INT_TOILETS(\"ri-int-toilets\", '\\ue824'),\n    INT_TRAIN(\"ri-int-train\", '\\ue74c'),\n    INT_TRAM(\"ri-int-tram\", '\\ue847'),\n    INT_WATER(\"ri-int-water\", '\\ue74b'),\n    INT_WHEELCHAIR(\"ri-int-wheelchair\", '\\ue74a'),\n    IOS_PHOTO(\"ri-ios-photo\", '\\ue93a'),\n    ISSUU(\"ri-issuu\", '\\ue630'),\n    ITUNES(\"ri-itunes\", '\\ue7c4'),\n    JOOMLA(\"ri-joomla\", '\\ue79d'),\n    JQUERY(\"ri-jquery\", '\\ue7a8'),\n    JQUERY_UI(\"ri-jquery-ui\", '\\ue83a'),\n    JSDELIVR(\"ri-jsdelivr\", '\\ue6c5'),\n    JSFIDDLE(\"ri-jsfiddle\", '\\ue79e'),\n    KAKAOTALK(\"ri-kakaotalk\", '\\ue819'),\n    KAYAKING(\"ri-kayaking\", '\\ue85b'),\n    KEY(\"ri-key\", '\\ue67d'),\n    KEYBOARD(\"ri-keyboard\", '\\ue718'),\n    KEYB_A(\"ri-keyb-a\", '\\ue8e9'),\n    KEYB_DOWN(\"ri-keyb-down\", '\\ue8eb'),\n    KEYB_LEFT(\"ri-keyb-left\", '\\ue8ec'),\n    KEYB_RIGHT(\"ri-keyb-right\", '\\ue8ed'),\n    KEYB_UP(\"ri-keyb-up\", '\\ue8ea'),\n    KICKSTARTER(\"ri-kickstarter\", '\\ue944'),\n    KIK(\"ri-kik\", '\\ue633'),\n    KISSING_FACE(\"ri-kissing-face\", '\\ue6ae'),\n    KLOUT(\"ri-klout\", '\\ue851'),\n    LAB(\"ri-lab\", '\\ue93c'),\n    LAPTOP(\"ri-laptop\", '\\ue7e1'),\n    LASTFM(\"ri-lastfm\", '\\ue6f9'),\n    LATIN_CROSS(\"ri-latin-cross\", '\\ue865'),\n    LAUGHING_SMILING_EYES(\"ri-laughing-smiling-eyes\", '\\ue6ab'),\n    LAUNCHPAD(\"ri-launchpad\", '\\ue76a'),\n    LEMON(\"ri-lemon\", '\\ue8d7'),\n    LEO(\"ri-leo\", '\\ue6b8'),\n    LESS(\"ri-less\", '\\ue840'),\n    LIBRA(\"ri-libra\", '\\ue6ba'),\n    LIBRARY(\"ri-library\", '\\ue6ff'),\n    LIFE_RING(\"ri-life-ring\", '\\ue895'),\n    LIGHTNING(\"ri-lightning\", '\\ue6db'),\n    LIGHTROOM(\"ri-lightroom\", '\\ue68e'),\n    LINE(\"ri-line\", '\\ue6c9'),\n    LINK(\"ri-link\", '\\ue673'),\n    LINKEDIN(\"ri-linkedin\", '\\ue79a'),\n    LINUX(\"ri-linux\", '\\ue7d2'),\n    LINUX_NEW(\"ri-linux-new\", '\\ue947'),\n    LIST(\"ri-list\", '\\ue8bc'),\n    LIST_ALT(\"ri-list-alt\", '\\ue8c0'),\n    LIST_OL(\"ri-list-ol\", '\\ue8bd'),\n    LIST_UL(\"ri-list-ul\", '\\ue8be'),\n    LIVESTREAM(\"ri-livestream\", '\\ue7d8'),\n    LOCK(\"ri-lock\", '\\ue667'),\n    LOCK_OPEN(\"ri-lock-open\", '\\ue668'),\n    LOGOUT(\"ri-logout\", '\\ue81b'),\n    LONDON_TUBE(\"ri-london-tube\", '\\ue670'),\n    LYNC(\"ri-lync\", '\\ue8f0'),\n    MAGENTO(\"ri-magento\", '\\ue84f'),\n    MAGIC_WAND(\"ri-magic-wand\", '\\ue93d'),\n    MAILCHIMP(\"ri-mailchimp\", '\\ue943'),\n    MAIL_SEND(\"ri-mail-send\", '\\ue6de'),\n    MAIL_SEND2(\"ri-mail-send2\", '\\ue812'),\n    MAP(\"ri-map\", '\\ue80a'),\n    MAP2(\"ri-map2\", '\\ue80b'),\n    MAP_MARKER(\"ri-map-marker\", '\\ue671'),\n    MARKER(\"ri-marker\", '\\ue813'),\n    MARKETPLACE(\"ri-marketplace\", '\\ue699'),\n    MARKET_RESEARCH(\"ri-market-research\", '\\ue891'),\n    MARS(\"ri-mars\", '\\ue80f'),\n    MAXCDN(\"ri-maxcdn\", '\\ue6cb'),\n    MEDAL_ONE(\"ri-medal-one\", '\\ue88c'),\n    MEDIUM(\"ri-medium\", '\\ue7fc'),\n    MEDKIT(\"ri-medkit\", '\\ue7f4'),\n    MEETUP(\"ri-meetup\", '\\ue6a2'),\n    MENU(\"ri-menu\", '\\ue775'),\n    MESSENGER(\"ri-messenger\", '\\ue7c1'),\n    METAL_GLASS_WASTE(\"ri-metal-glass-waste\", '\\ue82f'),\n    MIC(\"ri-mic\", '\\ue6d2'),\n    MICROSOFT(\"ri-microsoft\", '\\ue60d'),\n    MICROWAVE_OVEN(\"ri-microwave-oven\", '\\ue94f'),\n    MISC_WASTE(\"ri-misc-waste\", '\\ue82b'),\n    MIXCLOUD(\"ri-mixcloud\", '\\ue7fe'),\n    MODX(\"ri-modx\", '\\ue800'),\n    MONERO(\"ri-monero\", '\\ue96a'),\n    MONITOR(\"ri-monitor\", '\\ue94c'),\n    MOON(\"ri-moon\", '\\ue6e5'),\n    MOTORHOME(\"ri-motorhome\", '\\ue879'),\n    MOUNTAIN(\"ri-mountain\", '\\ue8de'),\n    MOUNTAIN_BIKING(\"ri-mountain-biking\", '\\ue887'),\n    MOUSE(\"ri-mouse\", '\\ue6f8'),\n    MOVIE_CLAPPER(\"ri-movie-clapper\", '\\ue6e7'),\n    MSN(\"ri-msn\", '\\ue7c0'),\n    MS_EDGE(\"ri-ms-edge\", '\\ue7a9'),\n    MS_FORMS(\"ri-ms-forms\", '\\ue8ef'),\n    MUSE(\"ri-muse\", '\\ue903'),\n    MUSICALNOTE(\"ri-musicalnote\", '\\ue67e'),\n    MYSPACE(\"ri-myspace\", '\\ue7cf'),\n    NEWSPAPER(\"ri-newspaper\", '\\ue697'),\n    NODE_JS(\"ri-node-js\", '\\ue854'),\n    NOENTRY(\"ri-noentry\", '\\ue76c'),\n    NORTH(\"ri-north\", '\\ue8e3'),\n    NORTH_ALT(\"ri-north-alt\", '\\ue8e5'),\n    NORTH_BADGE(\"ri-north-badge\", '\\ue8e6'),\n    NORTH_BADGE_O(\"ri-north-badge-o\", '\\ue8e7'),\n    NORTH_BANNER(\"ri-north-banner\", '\\ue8e8'),\n    NORTH_O(\"ri-north-o\", '\\ue8e4'),\n    NOTEPAD(\"ri-notepad\", '\\ue7f1'),\n    NOTIFICATIONS(\"ri-notifications\", '\\ue6e0'),\n    NO_ENTRY(\"ri-no-entry\", '\\ue87d'),\n    NO_SMOKING(\"ri-no-smoking\", '\\ue87c'),\n    NPM(\"ri-npm\", '\\ue969'),\n    OFFICE(\"ri-office\", '\\ue60b'),\n    OFFICE365(\"ri-office365\", '\\ue60c'),\n    OFFROAD(\"ri-offroad\", '\\ue8ac'),\n    OK(\"ri-ok\", '\\ue799'),\n    OM(\"ri-om\", '\\ue862'),\n    ONEDRIVE(\"ri-onedrive\", '\\ue6d5'),\n    ONENOTE(\"ri-onenote\", '\\ue602'),\n    OPACITY(\"ri-opacity\", '\\ue849'),\n    OPEN_ID(\"ri-open-id\", '\\ue89c'),\n    OPERA(\"ri-opera\", '\\ue7ad'),\n    ORANGE(\"ri-orange\", '\\ue8d8'),\n    OUTDENT(\"ri-outdent\", '\\ue8db'),\n    OUTLOOK(\"ri-outlook\", '\\ue603'),\n    OVEN(\"ri-oven\", '\\ue952'),\n    PAGELINES(\"ri-pagelines\", '\\ue7a2'),\n    PAINTBRUSH(\"ri-paintbrush\", '\\ue742'),\n    PAINTBRUSH_ALT(\"ri-paintbrush-alt\", '\\ue90b'),\n    PALETTE(\"ri-palette\", '\\ue6f7'),\n    PAPER_WASTE(\"ri-paper-waste\", '\\ue82d'),\n    PARK(\"ri-park\", '\\ue8df'),\n    PARTLY_CLOUDY(\"ri-partly-cloudy\", '\\ue6d8'),\n    PASTE(\"ri-paste\", '\\ue708'),\n    PATH(\"ri-path\", '\\ue7fb'),\n    PAUSE(\"ri-pause\", '\\ue654'),\n    PAUSE_CIRCLE(\"ri-pause-circle\", '\\ue7b4'),\n    PAYPAL(\"ri-paypal\", '\\ue7fd'),\n    PEACE(\"ri-peace\", '\\ue866'),\n    PENCIL(\"ri-pencil\", '\\ue743'),\n    PENCIL2(\"ri-pencil2\", '\\ue744'),\n    PENS(\"ri-pens\", '\\ue923'),\n    PERFORMANCE_UP(\"ri-performance-up\", '\\ue88f'),\n    PERSEVERING_FACE(\"ri-persevering-face\", '\\ue6b1'),\n    PHONE(\"ri-phone\", '\\ue716'),\n    PHONEGAP(\"ri-phonegap\", '\\ue83c'),\n    PHONE_VOL(\"ri-phone-vol\", '\\ue6cf'),\n    PHOTOSHOP(\"ri-photoshop\", '\\ue690'),\n    PHP(\"ri-php\", '\\ue841'),\n    PICASA(\"ri-picasa\", '\\ue640'),\n    PIE(\"ri-pie\", '\\ue6c2'),\n    PINTEREST(\"ri-pinterest\", '\\ue639'),\n    PISCES(\"ri-pisces\", '\\ue6bf'),\n    PLASTIC_WASTE(\"ri-plastic-waste\", '\\ue82c'),\n    PLAY(\"ri-play\", '\\ue653'),\n    PLAYSTATION(\"ri-playstation\", '\\ue69b'),\n    PLAY_CIRCLE(\"ri-play-circle\", '\\ue7b3'),\n    PLUG(\"ri-plug\", '\\ue93b'),\n    PLUS(\"ri-plus\", '\\ue807'),\n    POCKET(\"ri-pocket\", '\\ue7cd'),\n    PODCAST(\"ri-podcast\", '\\ue6a5'),\n    POWERPOINT(\"ri-powerpoint\", '\\ue604'),\n    PRELUDE(\"ri-prelude\", '\\ue904'),\n    PREMIERE(\"ri-premiere\", '\\ue68f'),\n    PRINTER(\"ri-printer\", '\\ue70b'),\n    PRODUCTHUNT(\"ri-producthunt\", '\\ue6a6'),\n    PROJECT(\"ri-project\", '\\ue605'),\n    PUBLISHER(\"ri-publisher\", '\\ue606'),\n    PYTHON(\"ri-python\", '\\ue856'),\n    QRCODE(\"ri-qrcode\", '\\ue773'),\n    QROSS(\"ri-qross\", '\\ue84d'),\n    QUESTION(\"ri-question\", '\\ue70c'),\n    QUORA(\"ri-quora\", '\\ue84c'),\n    QUOTES1(\"ri-quotes1\", '\\ue685'),\n    QUOTES2(\"ri-quotes2\", '\\ue6a4'),\n    QWANT(\"ri-qwant\", '\\ue802'),\n    QZONE(\"ri-qzone\", '\\ue961'),\n    RADIO(\"ri-radio\", '\\ue717'),\n    RADIOACTIVE(\"ri-radioactive\", '\\ue680'),\n    RAINY(\"ri-rainy\", '\\ue6da'),\n    REACT(\"ri-react\", '\\ue843'),\n    REASON_ML(\"ri-reason-ml\", '\\ue968'),\n    RECYCLE(\"ri-recycle\", '\\ue6cd'),\n    RECYCLE_O(\"ri-recycle-o\", '\\ue7d1'),\n    REDDIT(\"ri-reddit\", '\\ue7a1'),\n    REFRESH(\"ri-refresh\", '\\ue766'),\n    REGISTERED(\"ri-registered\", '\\ue702'),\n    REMOVE(\"ri-remove\", '\\ue740'),\n    RENREN(\"ri-renren\", '\\ue93f'),\n    RESPONSIVE(\"ri-responsive\", '\\ue7e5'),\n    REST_STOP(\"ri-rest-stop\", '\\ue956'),\n    ROAD_WORKS(\"ri-road-works\", '\\ue87e'),\n    ROCK_CLIMBING(\"ri-rock-climbing\", '\\ue86b'),\n    ROTATE_C(\"ri-rotate-c\", '\\ue907'),\n    ROTATE_CC(\"ri-rotate-cc\", '\\ue908'),\n    RSS(\"ri-rss\", '\\ue769'),\n    RUBY(\"ri-ruby\", '\\ue855'),\n    RUNNING(\"ri-running\", '\\ue81e'),\n    SA(\"ri-sa\", '\\ue749'),\n    SAFARI(\"ri-safari\", '\\ue7ae'),\n    SAGITTARIUS(\"ri-sagittarius\", '\\ue6bc'),\n    SAILING(\"ri-sailing\", '\\ue86e'),\n    SASS(\"ri-sass\", '\\ue83f'),\n    SAVE(\"ri-save\", '\\ue70a'),\n    SCALA(\"ri-scala\", '\\ue853'),\n    SCIENCE(\"ri-science\", '\\ue6fe'),\n    SCOOPIT(\"ri-scoopit\", '\\ue63c'),\n    SCORPIO(\"ri-scorpio\", '\\ue6bb'),\n    SCRIBD(\"ri-scribd\", '\\ue6fd'),\n    SDG(\"ri-sdg\", '\\ue938'),\n    SDG1(\"ri-sdg1\", '\\ue927'),\n    SDG10(\"ri-sdg10\", '\\ue930'),\n    SDG11(\"ri-sdg11\", '\\ue931'),\n    SDG12(\"ri-sdg12\", '\\ue932'),\n    SDG13(\"ri-sdg13\", '\\ue933'),\n    SDG14(\"ri-sdg14\", '\\ue934'),\n    SDG15(\"ri-sdg15\", '\\ue935'),\n    SDG16(\"ri-sdg16\", '\\ue936'),\n    SDG17(\"ri-sdg17\", '\\ue937'),\n    SDG2(\"ri-sdg2\", '\\ue928'),\n    SDG3(\"ri-sdg3\", '\\ue929'),\n    SDG4(\"ri-sdg4\", '\\ue92a'),\n    SDG5(\"ri-sdg5\", '\\ue92b'),\n    SDG6(\"ri-sdg6\", '\\ue92c'),\n    SDG7(\"ri-sdg7\", '\\ue92d'),\n    SDG8(\"ri-sdg8\", '\\ue92e'),\n    SDG9(\"ri-sdg9\", '\\ue92f'),\n    SD_CARD(\"ri-sd-card\", '\\ue72b'),\n    SEAPLANE(\"ri-seaplane\", '\\ue86f'),\n    SEARCH(\"ri-search\", '\\ue763'),\n    SELECT(\"ri-select\", '\\ue6e1'),\n    SELECT_CELLS(\"ri-select-cells\", '\\ue66f'),\n    SELECT_CIRCLE(\"ri-select-circle\", '\\ue797'),\n    SELLFY(\"ri-sellfy\", '\\ue95d'),\n    SENTRY(\"ri-sentry\", '\\ue965'),\n    SEO_MONITORING(\"ri-seo-monitoring\", '\\ue890'),\n    SHAPES(\"ri-shapes\", '\\ue6e3'),\n    SHARE(\"ri-share\", '\\ue803'),\n    SHARE2(\"ri-share2\", '\\ue804'),\n    SHAREPOINT(\"ri-sharepoint\", '\\ue607'),\n    SHARING(\"ri-sharing\", '\\ue73f'),\n    SHIELD(\"ri-shield\", '\\ue91f'),\n    SHINTO(\"ri-shinto\", '\\ue8c5'),\n    SHIPPING_EXPRESS(\"ri-shipping-express\", '\\ue955'),\n    SHOWER(\"ri-shower\", '\\ue875'),\n    SHRINK(\"ri-shrink\", '\\ue72f'),\n    SHUT_DOWN(\"ri-shut-down\", '\\ue778'),\n    SIGNAL_0(\"ri-signal-0\", '\\ue722'),\n    SIGNAL_1(\"ri-signal-1\", '\\ue723'),\n    SIGNAL_2(\"ri-signal-2\", '\\ue724'),\n    SIGNAL_3(\"ri-signal-3\", '\\ue725'),\n    SIGNAL_4(\"ri-signal-4\", '\\ue726'),\n    SIGNAL_5(\"ri-signal-5\", '\\ue727'),\n    SIGN_IN(\"ri-sign-in\", '\\ue805'),\n    SIGN_OUT(\"ri-sign-out\", '\\ue806'),\n    SIKH(\"ri-sikh\", '\\ue8c6'),\n    SIMPLEVIEW(\"ri-simpleview\", '\\ue93e'),\n    SITEMAP(\"ri-sitemap\", '\\ue7f6'),\n    SKATEBOARDING(\"ri-skateboarding\", '\\ue85a'),\n    SKATING(\"ri-skating\", '\\ue85e'),\n    SKI_RACING(\"ri-ski-racing\", '\\ue85f'),\n    SKYPE(\"ri-skype\", '\\ue7c5'),\n    SLACK(\"ri-slack\", '\\ue6a7'),\n    SLIDERS(\"ri-sliders\", '\\ue892'),\n    SLIPPERY_STEPS(\"ri-slippery-steps\", '\\ue8a8'),\n    SMARTPHONE(\"ri-smartphone\", '\\ue7e3'),\n    SMARTWATCH(\"ri-smartwatch\", '\\ue81a'),\n    SMILING_EYES(\"ri-smiling-eyes\", '\\ue6aa'),\n    SMILING_FACE(\"ri-smiling-face\", '\\ue6a9'),\n    SMILING_HEART_EYES(\"ri-smiling-heart-eyes\", '\\ue6ad'),\n    SNAPCHAT(\"ri-snapchat\", '\\ue6a3'),\n    SNOWFLAKE(\"ri-snowflake\", '\\ue6dd'),\n    SNOWY(\"ri-snowy\", '\\ue6dc'),\n    SOCCER(\"ri-soccer\", '\\ue8d6'),\n    SOUNDCLOUD(\"ri-soundcloud\", '\\ue7d0'),\n    SPEAKER(\"ri-speaker\", '\\ue97d'),\n    SPEED_GRADE(\"ri-speed-grade\", '\\ue905'),\n    SPINNER(\"ri-spinner\", '\\ue764'),\n    SPINNER3(\"ri-spinner3\", '\\ue767'),\n    SPOTIFY(\"ri-spotify\", '\\ue7c9'),\n    SQUARE(\"ri-square\", '\\ue7da'),\n    SQUARESPACE(\"ri-squarespace\", '\\ue634'),\n    SQUARE_BULLET(\"ri-square-bullet\", '\\ue6e9'),\n    SQUARE_BULLET2(\"ri-square-bullet2\", '\\ue6ed'),\n    SQUARE_CALC(\"ri-square-calc\", '\\ue776'),\n    SQUARE_DIVIDE(\"ri-square-divide\", '\\ue790'),\n    SQUARE_MINUS(\"ri-square-minus\", '\\ue78e'),\n    SQUARE_MULTI(\"ri-square-multi\", '\\ue78f'),\n    SQUARE_PHONE(\"ri-square-phone\", '\\ue817'),\n    SQUARE_PLUS(\"ri-square-plus\", '\\ue78d'),\n    SQUARE_SUM(\"ri-square-sum\", '\\ue791'),\n    STACKEXCHANGE(\"ri-stackexchange\", '\\ue69e'),\n    STACKOVERFLOW(\"ri-stackoverflow\", '\\ue62d'),\n    STACKPATH(\"ri-stackpath\", '\\ue974'),\n    START_CHAT(\"ri-start-chat\", '\\ue712'),\n    STAR_AND_CRESCENT(\"ri-star-and-crescent\", '\\ue863'),\n    STAR_E(\"ri-star-e\", '\\ue6ef'),\n    STAR_OF_DAVID(\"ri-star-of-david\", '\\ue861'),\n    STAR_SMALL(\"ri-star-small\", '\\ue6f5'),\n    STATIONARY_PC(\"ri-stationary-pc\", '\\ue94b'),\n    STATS(\"ri-stats\", '\\ue830'),\n    STEP_FORWARD(\"ri-step-forward\", '\\ue658'),\n    STOP(\"ri-stop\", '\\ue655'),\n    STOPWATCH(\"ri-stopwatch\", '\\ue678'),\n    STOP_CIRCLE(\"ri-stop-circle\", '\\ue7b5'),\n    STOP_SIGN(\"ri-stop-sign\", '\\ue6e6'),\n    STRATOCASTER(\"ri-stratocaster\", '\\ue885'),\n    STRAVA(\"ri-strava\", '\\ue897'),\n    STREET_VIEW(\"ri-street-view\", '\\ue672'),\n    STRIPE(\"ri-stripe\", '\\ue967'),\n    STUMBLEUPON(\"ri-stumbleupon\", '\\ue647'),\n    SUBLIME_TEXT(\"ri-sublime-text\", '\\ue852'),\n    SUBWAY(\"ri-subway\", '\\ue7ed'),\n    SUITCASE(\"ri-suitcase\", '\\ue700'),\n    SUNNY(\"ri-sunny\", '\\ue6d7'),\n    SURFACE(\"ri-surface\", '\\ue7e4'),\n    SURVEILLANCE_CAM(\"ri-surveillance-cam\", '\\ue6d1'),\n    SWAP(\"ri-swap\", '\\ue97f'),\n    SWAY(\"ri-sway\", '\\ue608'),\n    SWIMMING(\"ri-swimming\", '\\ue81f'),\n    TABLE(\"ri-table\", '\\ue66e'),\n    TABLET(\"ri-tablet\", '\\ue7e2'),\n    TAG(\"ri-tag\", '\\ue8a0'),\n    TAPLYTICS(\"ri-taplytics\", '\\ue964'),\n    TARGET(\"ri-target\", '\\ue6f6'),\n    TASKS(\"ri-tasks\", '\\ue8bf'),\n    TAURUS(\"ri-taurus\", '\\ue6b5'),\n    TAXI(\"ri-taxi\", '\\ue86a'),\n    TEAMS(\"ri-teams\", '\\ue8f2'),\n    TEAMS_ALT(\"ri-teams-alt\", '\\ue8f3'),\n    TELEGRAM(\"ri-telegram\", '\\ue818'),\n    TENT(\"ri-tent\", '\\ue8e1'),\n    TENTING(\"ri-tenting\", '\\ue877'),\n    TERMINAL(\"ri-terminal\", '\\ue72a'),\n    THEMEISLE(\"ri-themeisle\", '\\ue89a'),\n    THINKFUL(\"ri-thinkful\", '\\ue962'),\n    THUMBS_UP(\"ri-thumbs-up\", '\\ue675'),\n    THUMBTACK(\"ri-thumbtack\", '\\ue8a3'),\n    TICKET(\"ri-ticket\", '\\ue8a1'),\n    TIDAL(\"ri-tidal\", '\\ue7cc'),\n    TOGGLE_OFF(\"ri-toggle-off\", '\\ue721'),\n    TOGGLE_ON(\"ri-toggle-on\", '\\ue720'),\n    TOWN(\"ri-town\", '\\ue8e2'),\n    TRADEMARK(\"ri-trademark\", '\\ue8a2'),\n    TRAFFIC_CONE(\"ri-traffic-cone\", '\\ue814'),\n    TRAFFIC_CONTROL(\"ri-traffic-control\", '\\ue958'),\n    TRAFFIC_LIGHT(\"ri-traffic-light\", '\\ue959'),\n    TRAIN(\"ri-train\", '\\ue7ec'),\n    TRAM(\"ri-tram\", '\\ue7ee'),\n    TRAM_ALT(\"ri-tram-alt\", '\\ue8f7'),\n    TREKKING(\"ri-trekking\", '\\ue820'),\n    TRELLO(\"ri-trello\", '\\ue91b'),\n    TRIPADVISOR(\"ri-tripadvisor\", '\\ue7c8'),\n    TROPHY(\"ri-trophy\", '\\ue8b1'),\n    TUMBLR(\"ri-tumblr\", '\\ue641'),\n    TVG(\"ri-tvg\", '\\ue7e9'),\n    TWITCH(\"ri-twitch\", '\\ue836'),\n    TWITTER(\"ri-twitter\", '\\ue64a'),\n    TYPE_KIT(\"ri-type-kit\", '\\ue902'),\n    TYPO3(\"ri-typo3\", '\\ue839'),\n    UBER(\"ri-uber\", '\\ue898'),\n    UBUNTU(\"ri-ubuntu\", '\\ue84e'),\n    UIKIT(\"ri-uikit\", '\\ue89e'),\n    UMBRELLA(\"ri-umbrella\", '\\ue832'),\n    UN(\"ri-un\", '\\ue926'),\n    UNAMUSED_FACE(\"ri-unamused-face\", '\\ue6b0'),\n    UNHAPPY_FACE(\"ri-unhappy-face\", '\\ue6b3'),\n    UNIREGISTRY(\"ri-uniregistry\", '\\ue95f'),\n    UNIVERSAL_ACCESS(\"ri-universal-access\", '\\ue6d4'),\n    UPLOAD(\"ri-upload\", '\\ue681'),\n    UP_LEFT(\"ri-up-left\", '\\ue826'),\n    UP_LEFT_ARROW(\"ri-up-left-arrow\", '\\ue827'),\n    USB(\"ri-usb\", '\\ue693'),\n    USB_DRIVE(\"ri-usb-drive\", '\\ue694'),\n    USER(\"ri-user\", '\\ue7af'),\n    USERS_GROUP(\"ri-users-group\", '\\ue893'),\n    USER_PLUS(\"ri-user-plus\", '\\ue7b2'),\n    VAN(\"ri-van\", '\\ue8f9'),\n    VCARD_O(\"ri-vcard-o\", '\\ue7f3'),\n    VENUS(\"ri-venus\", '\\ue80e'),\n    VIBER(\"ri-viber\", '\\ue7c3'),\n    VIEWING_AREA(\"ri-viewing-area\", '\\ue8b0'),\n    VIEWPOINT(\"ri-viewpoint\", '\\ue871'),\n    VIMEO(\"ri-vimeo\", '\\ue7d4'),\n    VIRAL_MARKETING(\"ri-viral-marketing\", '\\ue88e'),\n    VIRGO(\"ri-virgo\", '\\ue6b9'),\n    VISIO(\"ri-visio\", '\\ue8f4'),\n    VISUALLY_IMPAIRED(\"ri-visually-impaired\", '\\ue867'),\n    VISUAL_STUDIO(\"ri-visual-studio\", '\\ue60e'),\n    VIVALDI(\"ri-vivaldi\", '\\ue801'),\n    VKONTAKTE(\"ri-vkontakte\", '\\ue64d'),\n    VLC(\"ri-vlc\", '\\ue7a7'),\n    VOLLEYBALL(\"ri-volleyball\", '\\ue8d1'),\n    VOLUME_DOWN(\"ri-volume-down\", '\\ue650'),\n    VOLUME_MUTE(\"ri-volume-mute\", '\\ue64f'),\n    VOLUME_OFF(\"ri-volume-off\", '\\ue652'),\n    VOLUME_UP(\"ri-volume-up\", '\\ue651'),\n    VS_CODE(\"ri-vs-code\", '\\ue883'),\n    VUEJS(\"ri-vuejs\", '\\ue946'),\n    W3SCHOOLS(\"ri-w3schools\", '\\ue7bf'),\n    WALKING(\"ri-walking\", '\\ue81c'),\n    WARNING_SIGN(\"ri-warning-sign\", '\\ue7de'),\n    WASHING_MACHINE(\"ri-washing-machine\", '\\ue950'),\n    WATCH(\"ri-watch\", '\\ue97c'),\n    WATERCRAFT(\"ri-watercraft\", '\\ue874'),\n    WAVES(\"ri-waves\", '\\ue982'),\n    WECHAT(\"ri-wechat\", '\\ue6c8'),\n    WEEBLY(\"ri-weebly\", '\\ue6c7'),\n    WEEE(\"ri-weee\", '\\ue881'),\n    WEIBO(\"ri-weibo\", '\\ue7a3'),\n    WEIXIN(\"ri-weixin\", '\\ue942'),\n    WHALE_WATCHING(\"ri-whale-watching\", '\\ue872'),\n    WHATSAPP(\"ri-whatsapp\", '\\ue7c2'),\n    WHMCS(\"ri-whmcs\", '\\ue941'),\n    WIFI(\"ri-wifi\", '\\ue692'),\n    WINDOWS8(\"ri-windows8\", '\\ue7d5'),\n    WINDOW_CLOSE(\"ri-window-close\", '\\ue816'),\n    WINDOW_MAXIMIZE(\"ri-window-maximize\", '\\ue8b3'),\n    WINDOW_MINIMIZE(\"ri-window-minimize\", '\\ue8b2'),\n    WINDOW_RESTORE(\"ri-window-restore\", '\\ue8b4'),\n    WINE_BOTTLE(\"ri-wine-bottle\", '\\ue7e8'),\n    WINKING_FACE(\"ri-winking-face\", '\\ue6ac'),\n    WIX(\"ri-wix\", '\\ue6a1'),\n    WOLF(\"ri-wolf\", '\\ue8dd'),\n    WOOLMARK(\"ri-woolmark\", '\\ue880'),\n    WORD(\"ri-word\", '\\ue609'),\n    WORDPRESS(\"ri-wordpress\", '\\ue79c'),\n    WORDPRESS_SIMPLE(\"ri-wordpress-simple\", '\\ue945'),\n    WPEXPLORER(\"ri-wpexplorer\", '\\ue84b'),\n    WP_ARROW(\"ri-wp-arrow\", '\\ue733'),\n    WP_COG(\"ri-wp-cog\", '\\ue76f'),\n    WP_COG_O(\"ri-wp-cog-o\", '\\ue76e'),\n    WRENCH(\"ri-wrench\", '\\ue815'),\n    XBOX(\"ri-xbox\", '\\ue69a'),\n    YAHOO(\"ri-yahoo\", '\\ue63e'),\n    YELP(\"ri-yelp\", '\\ue632'),\n    YIN_YANG(\"ri-yin-yang\", '\\ue67f'),\n    YOGA(\"ri-yoga\", '\\ue889'),\n    YOUTUBE(\"ri-youtube\", '\\ue646'),\n    YOUTUBE2(\"ri-youtube2\", '\\ue7ce'),\n    ZOOM_IN(\"ri-zoom-in\", '\\ue7f7'),\n    ZOOM_OUT(\"ri-zoom-out\", '\\ue7f8'),\n    ZURB(\"ri-zurb\", '\\ue62f');\n\n    public static Runestroicons findByDescription(String description) {\n        for (Runestroicons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    Runestroicons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-runestroicons-pack/src/main/java/org/kordamp/ikonli/runestroicons/RunestroiconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.runestroicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class RunestroiconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/runestroicons/5.6/fonts/runestroicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"ri-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Runestroicons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"525icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-runestroicons-pack/src/main/java/org/kordamp/ikonli/runestroicons/RunestroiconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.runestroicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class RunestroiconsIkonProvider implements IkonProvider<Runestroicons> {\n    @Override\n    public Class<Runestroicons> getIkon() {\n        return Runestroicons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-runestroicons-pack/src/main/resources/META-INF/resources/runestroicons/5.6/css/runestroicons.css",
    "content": "/*!\n * 525icons.css v5.6 by @runestro - https://525icons.com\n */\n@font-face {\n    font-family: '525icons';\n\tsrc:url('../fonts/runestroicons.eot');\n\tsrc:url('../fonts/runestroicons.eot?#iefix') format('embedded-opentype'),\n\t\turl('../fonts/runestroicons.woff2') format('woff2'),\n\t\turl('../fonts/runestroicons.woff') format('woff'),\n\t\turl('../fonts/runestroicons.ttf') format('truetype'),\n\t\turl('../fonts/runestroicons.svg?#525icons') format('svg');\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n.ri {\n\tdisplay: inline-block;\n/* \tuse !important to prevent issues with browser extensions that change fonts */\n\tfont-family: '525icons' !important;\n\tfont-size: inherit;\n\tfont-style: normal;\n\tfont-weight: normal;\n\tfont-variant: normal;\n\tline-height: 1;\n\tspeak: none;\t\n\ttext-transform: none;\n\ttransform: translate(0, 0);\n\t/* aria-hidden:true; */\n}\n\n.ri-docs-com:before {\n  content: \"\\e600\";\n}\n.ri-exchange:before {\n  content: \"\\e601\";\n}\n.ri-onenote:before {\n  content: \"\\e602\";\n}\n.ri-outlook:before {\n  content: \"\\e603\";\n}\n.ri-powerpoint:before {\n  content: \"\\e604\";\n}\n.ri-project:before {\n  content: \"\\e605\";\n}\n.ri-publisher:before {\n  content: \"\\e606\";\n}\n.ri-sharepoint:before {\n  content: \"\\e607\";\n}\n.ri-sway:before {\n  content: \"\\e608\";\n}\n.ri-word:before {\n  content: \"\\e609\";\n}\n.ri-excel:before {\n  content: \"\\e60a\";\n}\n.ri-office:before {\n  content: \"\\e60b\";\n}\n.ri-office365:before {\n  content: \"\\e60c\";\n}\n.ri-microsoft:before {\n  content: \"\\e60d\";\n}\n.ri-visual-studio:before {\n  content: \"\\e60e\";\n}\n.ri-file-docx:before {\n  content: \"\\e60f\";\n}\n.ri-file-mp3:before {\n  content: \"\\e610\";\n}\n.ri-file-wav:before {\n  content: \"\\e611\";\n}\n.ri-file-avi:before {\n  content: \"\\e612\";\n}\n.ri-file-mp4:before {\n  content: \"\\e613\";\n}\n.ri-file-mov:before {\n  content: \"\\e614\";\n}\n.ri-file-png:before {\n  content: \"\\e615\";\n}\n.ri-file-psd:before {\n  content: \"\\e616\";\n}\n.ri-file-jpg:before {\n  content: \"\\e617\";\n}\n.ri-file-gif:before {\n  content: \"\\e618\";\n}\n.ri-file-ai:before {\n  content: \"\\e619\";\n}\n.ri-file-eps:before {\n  content: \"\\e61a\";\n}\n.ri-file-pdf:before {\n  content: \"\\e61b\";\n}\n.ri-file-sql:before {\n  content: \"\\e61c\";\n}\n.ri-file-exe:before {\n  content: \"\\e61d\";\n}\n.ri-file-css:before {\n  content: \"\\e61e\";\n}\n.ri-file-js:before {\n  content: \"\\e61f\";\n}\n.ri-file-php:before {\n  content: \"\\e620\";\n}\n.ri-file-html:before {\n  content: \"\\e621\";\n}\n.ri-file-asp:before {\n  content: \"\\e622\";\n}\n.ri-file-otf:before {\n  content: \"\\e623\";\n}\n.ri-file-zip:before {\n  content: \"\\e624\";\n}\n.ri-file-rar:before {\n  content: \"\\e625\";\n}\n.ri-file-svg:before {\n  content: \"\\e626\";\n}\n.ri-file-txt:before {\n  content: \"\\e627\";\n}\n.ri-battery-0:before {\n  content: \"\\e628\";\n}\n.ri-battery-1:before {\n  content: \"\\e629\";\n}\n.ri-battery-2:before {\n  content: \"\\e62a\";\n}\n.ri-battery-3:before {\n  content: \"\\e62b\";\n}\n.ri-battery-charging:before {\n  content: \"\\e62c\";\n}\n.ri-stackoverflow:before {\n  content: \"\\e62d\";\n}\n.ri-etsy:before {\n  content: \"\\e62e\";\n}\n.ri-zurb:before {\n  content: \"\\e62f\";\n}\n.ri-issuu:before {\n  content: \"\\e630\";\n}\n.ri-foursquare:before {\n  content: \"\\e631\";\n}\n.ri-yelp:before {\n  content: \"\\e632\";\n}\n.ri-kik:before {\n  content: \"\\e633\";\n}\n.ri-squarespace:before {\n  content: \"\\e634\";\n}\n.ri-grav:before {\n  content: \"\\e635\";\n}\n.ri-flashplayer:before {\n  content: \"\\e636\";\n}\n.ri-github:before {\n  content: \"\\e637\";\n}\n.ri-dribbble:before {\n  content: \"\\e638\";\n}\n.ri-pinterest:before {\n  content: \"\\e639\";\n}\n.ri-icq:before {\n  content: \"\\e63a\";\n}\n.ri-flickr:before {\n  content: \"\\e63b\";\n}\n.ri-scoopit:before {\n  content: \"\\e63c\";\n}\n.ri-addthis:before {\n  content: \"\\e63d\";\n}\n.ri-yahoo:before {\n  content: \"\\e63e\";\n}\n.ri-aim:before {\n  content: \"\\e63f\";\n}\n.ri-picasa:before {\n  content: \"\\e640\";\n}\n.ri-tumblr:before {\n  content: \"\\e641\";\n}\n.ri-evernote:before {\n  content: \"\\e642\";\n}\n.ri-behance:before {\n  content: \"\\e643\";\n}\n.ri-flipboard:before {\n  content: \"\\e644\";\n}\n.ri-500px:before {\n  content: \"\\e645\";\n}\n.ri-youtube:before {\n  content: \"\\e646\";\n}\n.ri-stumbleupon:before {\n  content: \"\\e647\";\n}\n.ri-delicious:before {\n  content: \"\\e648\";\n}\n.ri-facebook:before {\n  content: \"\\e649\";\n}\n.ri-twitter:before {\n  content: \"\\e64a\";\n}\n.ri-blogger:before {\n  content: \"\\e64b\";\n}\n.ri-digg:before {\n  content: \"\\e64c\";\n}\n.ri-vkontakte:before {\n  content: \"\\e64d\";\n}\n.ri-instagram:before {\n  content: \"\\e64e\";\n}\n.ri-volume-mute:before {\n  content: \"\\e64f\";\n}\n.ri-volume-down:before {\n  content: \"\\e650\";\n}\n.ri-volume-up:before {\n  content: \"\\e651\";\n}\n.ri-volume-off:before {\n  content: \"\\e652\";\n}\n.ri-play:before {\n  content: \"\\e653\";\n}\n.ri-pause:before {\n  content: \"\\e654\";\n}\n.ri-stop:before {\n  content: \"\\e655\";\n}\n.ri-forward:before {\n  content: \"\\e656\";\n}\n.ri-fast-forward:before {\n  content: \"\\e657\";\n}\n.ri-step-forward:before {\n  content: \"\\e658\";\n}\n.ri-eject:before {\n  content: \"\\e659\";\n}\n.ri-hd:before {\n  content: \"\\e65a\";\n}\n.ri-find-in-page:before {\n  content: \"\\e65b\";\n}\n.ri-g-translate:before {\n  content: \"\\e65c\";\n}\n.ri-circle-0:before {\n  content: \"\\e65d\";\n}\n.ri-circle-1:before {\n  content: \"\\e65e\";\n}\n.ri-circle-2:before {\n  content: \"\\e65f\";\n}\n.ri-circle-3:before {\n  content: \"\\e660\";\n}\n.ri-circle-4:before {\n  content: \"\\e661\";\n}\n.ri-circle-5:before {\n  content: \"\\e662\";\n}\n.ri-circle-6:before {\n  content: \"\\e663\";\n}\n.ri-circle-7:before {\n  content: \"\\e664\";\n}\n.ri-circle-8:before {\n  content: \"\\e665\";\n}\n.ri-circle-9:before {\n  content: \"\\e666\";\n}\n.ri-lock:before {\n  content: \"\\e667\";\n}\n.ri-lock-open:before {\n  content: \"\\e668\";\n}\n.ri-calendar-open:before {\n  content: \"\\e669\";\n}\n.ri-calendar:before {\n  content: \"\\e66a\";\n}\n.ri-gettyimages:before {\n  content: \"\\e66b\";\n}\n.ri-archive:before {\n  content: \"\\e66c\";\n}\n.ri-books:before {\n  content: \"\\e66d\";\n}\n.ri-table:before {\n  content: \"\\e66e\";\n}\n.ri-select-cells:before {\n  content: \"\\e66f\";\n}\n.ri-london-tube:before {\n  content: \"\\e670\";\n}\n.ri-map-marker:before {\n  content: \"\\e671\";\n}\n.ri-street-view:before {\n  content: \"\\e672\";\n}\n.ri-link:before {\n  content: \"\\e673\";\n}\n.ri-database:before {\n  content: \"\\e674\";\n}\n.ri-thumbs-up:before {\n  content: \"\\e675\";\n}\n.ri-circle-upload:before {\n  content: \"\\e676\";\n}\n.ri-circle-download:before {\n  content: \"\\e677\";\n}\n.ri-stopwatch:before {\n  content: \"\\e678\";\n}\n.ri-card-spade:before {\n  content: \"\\e679\";\n}\n.ri-card-club:before {\n  content: \"\\e67a\";\n}\n.ri-card-heart:before {\n  content: \"\\e67b\";\n}\n.ri-card-diamond:before {\n  content: \"\\e67c\";\n}\n.ri-key:before {\n  content: \"\\e67d\";\n}\n.ri-musicalnote:before {\n  content: \"\\e67e\";\n}\n.ri-yin-yang:before {\n  content: \"\\e67f\";\n}\n.ri-radioactive:before {\n  content: \"\\e680\";\n}\n.ri-upload:before {\n  content: \"\\e681\";\n}\n.ri-download:before {\n  content: \"\\e682\";\n}\n.ri-ce-mark:before {\n  content: \"\\e683\";\n}\n.ri-book:before {\n  content: \"\\e684\";\n}\n.ri-quotes1:before {\n  content: \"\\e685\";\n}\n.ri-exposure:before {\n  content: \"\\e686\";\n}\n.ri-after-effects:before {\n  content: \"\\e687\";\n}\n.ri-illustrator:before {\n  content: \"\\e688\";\n}\n.ri-audition:before {\n  content: \"\\e689\";\n}\n.ri-bridge:before {\n  content: \"\\e68a\";\n}\n.ri-dreamweaver:before {\n  content: \"\\e68b\";\n}\n.ri-fireworks:before {\n  content: \"\\e68c\";\n}\n.ri-indesign:before {\n  content: \"\\e68d\";\n}\n.ri-lightroom:before {\n  content: \"\\e68e\";\n}\n.ri-premiere:before {\n  content: \"\\e68f\";\n}\n.ri-photoshop:before {\n  content: \"\\e690\";\n}\n.ri-connection-wifi:before {\n  content: \"\\e691\";\n}\n.ri-wifi:before {\n  content: \"\\e692\";\n}\n.ri-usb:before {\n  content: \"\\e693\";\n}\n.ri-usb-drive:before {\n  content: \"\\e694\";\n}\n.ri-bluetooth:before {\n  content: \"\\e695\";\n}\n.ri-calculator:before {\n  content: \"\\e696\";\n}\n.ri-newspaper:before {\n  content: \"\\e697\";\n}\n.ri-bing:before {\n  content: \"\\e698\";\n}\n.ri-marketplace:before {\n  content: \"\\e699\";\n}\n.ri-xbox:before {\n  content: \"\\e69a\";\n}\n.ri-playstation:before {\n  content: \"\\e69b\";\n}\n.ri-google-wd:before {\n  content: \"\\e69c\";\n}\n.ri-hootsuite:before {\n  content: \"\\e69d\";\n}\n.ri-stackexchange:before {\n  content: \"\\e69e\";\n}\n.ri-gitlab:before {\n  content: \"\\e69f\";\n}\n.ri-glide:before {\n  content: \"\\e6a0\";\n}\n.ri-wix:before {\n  content: \"\\e6a1\";\n}\n.ri-meetup:before {\n  content: \"\\e6a2\";\n}\n.ri-snapchat:before {\n  content: \"\\e6a3\";\n}\n.ri-quotes2:before {\n  content: \"\\e6a4\";\n}\n.ri-podcast:before {\n  content: \"\\e6a5\";\n}\n.ri-producthunt:before {\n  content: \"\\e6a6\";\n}\n.ri-slack:before {\n  content: \"\\e6a7\";\n}\n.ri-files:before {\n  content: \"\\e6a8\";\n}\n.ri-smiling-face:before {\n  content: \"\\e6a9\";\n}\n.ri-smiling-eyes:before {\n  content: \"\\e6aa\";\n}\n.ri-laughing-smiling-eyes:before {\n  content: \"\\e6ab\";\n}\n.ri-winking-face:before {\n  content: \"\\e6ac\";\n}\n.ri-smiling-heart-eyes:before {\n  content: \"\\e6ad\";\n}\n.ri-kissing-face:before {\n  content: \"\\e6ae\";\n}\n.ri-disappointed-face:before {\n  content: \"\\e6af\";\n}\n.ri-unamused-face:before {\n  content: \"\\e6b0\";\n}\n.ri-persevering-face:before {\n  content: \"\\e6b1\";\n}\n.ri-frowning-face:before {\n  content: \"\\e6b2\";\n}\n.ri-unhappy-face:before {\n  content: \"\\e6b3\";\n}\n.ri-aries:before {\n  content: \"\\e6b4\";\n}\n.ri-taurus:before {\n  content: \"\\e6b5\";\n}\n.ri-gemini:before {\n  content: \"\\e6b6\";\n}\n.ri-cancer:before {\n  content: \"\\e6b7\";\n}\n.ri-leo:before {\n  content: \"\\e6b8\";\n}\n.ri-virgo:before {\n  content: \"\\e6b9\";\n}\n.ri-libra:before {\n  content: \"\\e6ba\";\n}\n.ri-scorpio:before {\n  content: \"\\e6bb\";\n}\n.ri-sagittarius:before {\n  content: \"\\e6bc\";\n}\n.ri-capricorn:before {\n  content: \"\\e6bd\";\n}\n.ri-aquarius:before {\n  content: \"\\e6be\";\n}\n.ri-pisces:before {\n  content: \"\\e6bf\";\n}\n.ri-celcius:before {\n  content: \"\\e6c0\";\n}\n.ri-fahrenheit:before {\n  content: \"\\e6c1\";\n}\n.ri-pie:before {\n  content: \"\\e6c2\";\n}\n.ri-char:before {\n  content: \"\\e6c3\";\n}\n.ri-biohazard:before {\n  content: \"\\e6c4\";\n}\n.ri-jsdelivr:before {\n  content: \"\\e6c5\";\n}\n.ri-feedly:before {\n  content: \"\\e6c6\";\n}\n.ri-weebly:before {\n  content: \"\\e6c7\";\n}\n.ri-wechat:before {\n  content: \"\\e6c8\";\n}\n.ri-line:before {\n  content: \"\\e6c9\";\n}\n.ri-angular:before {\n  content: \"\\e6ca\";\n}\n.ri-maxcdn:before {\n  content: \"\\e6cb\";\n}\n.ri-angellist:before {\n  content: \"\\e6cc\";\n}\n.ri-recycle:before {\n  content: \"\\e6cd\";\n}\n.ri-icloud:before {\n  content: \"\\e6ce\";\n}\n.ri-phone-vol:before {\n  content: \"\\e6cf\";\n}\n.ri-coderwall:before {\n  content: \"\\e6d0\";\n}\n.ri-surveillance-cam:before {\n  content: \"\\e6d1\";\n}\n.ri-mic:before {\n  content: \"\\e6d2\";\n}\n.ri-headphones:before {\n  content: \"\\e6d3\";\n}\n.ri-universal-access:before {\n  content: \"\\e6d4\";\n}\n.ri-onedrive:before {\n  content: \"\\e6d5\";\n}\n.ri-creativecloud:before {\n  content: \"\\e6d6\";\n}\n.ri-sunny:before {\n  content: \"\\e6d7\";\n}\n.ri-partly-cloudy:before {\n  content: \"\\e6d8\";\n}\n.ri-cloudy:before {\n  content: \"\\e6d9\";\n}\n.ri-rainy:before {\n  content: \"\\e6da\";\n}\n.ri-lightning:before {\n  content: \"\\e6db\";\n}\n.ri-snowy:before {\n  content: \"\\e6dc\";\n}\n.ri-snowflake:before {\n  content: \"\\e6dd\";\n}\n.ri-mail-send:before {\n  content: \"\\e6de\";\n}\n.ri-go:before {\n  content: \"\\e6df\";\n}\n.ri-notifications:before {\n  content: \"\\e6e0\";\n}\n.ri-select:before {\n  content: \"\\e6e1\";\n}\n.ri-app-launcher:before {\n  content: \"\\e6e2\";\n}\n.ri-shapes:before {\n  content: \"\\e6e3\";\n}\n.ri-globe:before {\n  content: \"\\e6e4\";\n}\n.ri-moon:before {\n  content: \"\\e6e5\";\n}\n.ri-stop-sign:before {\n  content: \"\\e6e6\";\n}\n.ri-movie-clapper:before {\n  content: \"\\e6e7\";\n}\n.ri-at:before {\n  content: \"\\e6e8\";\n}\n.ri-square-bullet:before {\n  content: \"\\e6e9\";\n}\n.ri-5star-shadow:before {\n  content: \"\\e6ea\";\n}\n.ri-bullet:before {\n  content: \"\\e6eb\";\n}\n.ri-deco-bullet:before {\n  content: \"\\e6ec\";\n}\n.ri-square-bullet2:before {\n  content: \"\\e6ed\";\n}\n.ri-asterisk:before {\n  content: \"\\e6ee\";\n}\n.ri-star-e:before {\n  content: \"\\e6ef\";\n}\n.ri-archive-box:before {\n  content: \"\\e6f0\";\n}\n.ri-blueray:before {\n  content: \"\\e6f1\";\n}\n.ri-dvd:before {\n  content: \"\\e6f2\";\n}\n.ri-badge:before {\n  content: \"\\e6f3\";\n}\n.ri-asterisk2:before {\n  content: \"\\e6f4\";\n}\n.ri-star-small:before {\n  content: \"\\e6f5\";\n}\n.ri-target:before {\n  content: \"\\e6f6\";\n}\n.ri-palette:before {\n  content: \"\\e6f7\";\n}\n.ri-mouse:before {\n  content: \"\\e6f8\";\n}\n.ri-lastfm:before {\n  content: \"\\e6f9\";\n}\n.ri-acrobat:before {\n  content: \"\\e6fa\";\n}\n.ri-google-play:before {\n  content: \"\\e6fb\";\n}\n.ri-amazon:before {\n  content: \"\\e6fc\";\n}\n.ri-scribd:before {\n  content: \"\\e6fd\";\n}\n.ri-science:before {\n  content: \"\\e6fe\";\n}\n.ri-library:before {\n  content: \"\\e6ff\";\n}\n.ri-suitcase:before {\n  content: \"\\e700\";\n}\n.ri-fingerprint:before {\n  content: \"\\e701\";\n}\n.ri-registered:before {\n  content: \"\\e702\";\n}\n.ri-home:before {\n  content: \"\\e703\";\n}\n.ri-home2:before {\n  content: \"\\e704\";\n}\n.ri-attachment:before {\n  content: \"\\e705\";\n}\n.ri-cut:before {\n  content: \"\\e706\";\n}\n.ri-copy:before {\n  content: \"\\e707\";\n}\n.ri-paste:before {\n  content: \"\\e708\";\n}\n.ri-file-o:before {\n  content: \"\\e709\";\n}\n.ri-save:before {\n  content: \"\\e70a\";\n}\n.ri-printer:before {\n  content: \"\\e70b\";\n}\n.ri-question:before {\n  content: \"\\e70c\";\n}\n.ri-creditcard:before {\n  content: \"\\e70d\";\n}\n.ri-cc-visa:before {\n  content: \"\\e70e\";\n}\n.ri-cc-mastercard:before {\n  content: \"\\e70f\";\n}\n.ri-cc-paypal:before {\n  content: \"\\e710\";\n}\n.ri-g-wallet:before {\n  content: \"\\e711\";\n}\n.ri-start-chat:before {\n  content: \"\\e712\";\n}\n.ri-envelope-o:before {\n  content: \"\\e713\";\n}\n.ri-envelope:before {\n  content: \"\\e714\";\n}\n.ri-import:before {\n  content: \"\\e715\";\n}\n.ri-phone:before {\n  content: \"\\e716\";\n}\n.ri-radio:before {\n  content: \"\\e717\";\n}\n.ri-keyboard:before {\n  content: \"\\e718\";\n}\n.ri-imdb:before {\n  content: \"\\e719\";\n}\n.ri-basket:before {\n  content: \"\\e71a\";\n}\n.ri-add-to-cart:before {\n  content: \"\\e71b\";\n}\n.ri-barcode:before {\n  content: \"\\e71c\";\n}\n.ri-info-circle:before {\n  content: \"\\e71d\";\n}\n.ri-info-circle2:before {\n  content: \"\\e71e\";\n}\n.ri-info:before {\n  content: \"\\e71f\";\n}\n.ri-toggle-on:before {\n  content: \"\\e720\";\n}\n.ri-toggle-off:before {\n  content: \"\\e721\";\n}\n.ri-signal-0:before {\n  content: \"\\e722\";\n}\n.ri-signal-1:before {\n  content: \"\\e723\";\n}\n.ri-signal-2:before {\n  content: \"\\e724\";\n}\n.ri-signal-3:before {\n  content: \"\\e725\";\n}\n.ri-signal-4:before {\n  content: \"\\e726\";\n}\n.ri-signal-5:before {\n  content: \"\\e727\";\n}\n.ri-favorites:before {\n  content: \"\\e728\";\n}\n.ri-bookm-blk:before {\n  content: \"\\e729\";\n}\n.ri-terminal:before {\n  content: \"\\e72a\";\n}\n.ri-sd-card:before {\n  content: \"\\e72b\";\n}\n.ri-fullscr:before {\n  content: \"\\e72c\";\n}\n.ri-fullscr-esc:before {\n  content: \"\\e72d\";\n}\n.ri-expand:before {\n  content: \"\\e72e\";\n}\n.ri-shrink:before {\n  content: \"\\e72f\";\n}\n.ri-circle-arrow:before {\n  content: \"\\e730\";\n}\n.ri-circle-arrow-o:before {\n  content: \"\\e731\";\n}\n.ri-circle-angle:before {\n  content: \"\\e732\";\n}\n.ri-wp-arrow:before {\n  content: \"\\e733\";\n}\n.ri-arrow-sign:before {\n  content: \"\\e734\";\n}\n.ri-chevron:before {\n  content: \"\\e735\";\n}\n.ri-chevron-circle:before {\n  content: \"\\e736\";\n}\n.ri-arrow:before {\n  content: \"\\e737\";\n}\n.ri-angle:before {\n  content: \"\\e738\";\n}\n.ri-angle2:before {\n  content: \"\\e739\";\n}\n.ri-angle-double:before {\n  content: \"\\e73a\";\n}\n.ri-caret:before {\n  content: \"\\e73b\";\n}\n.ri-caret-circle:before {\n  content: \"\\e73c\";\n}\n.ri-globe-2:before {\n  content: \"\\e73d\";\n}\n.ri-domain2:before {\n  content: \"\\e73e\";\n}\n.ri-sharing:before {\n  content: \"\\e73f\";\n}\n.ri-remove:before {\n  content: \"\\e740\";\n}\n.ri-bin:before {\n  content: \"\\e741\";\n}\n.ri-paintbrush:before {\n  content: \"\\e742\";\n}\n.ri-pencil:before {\n  content: \"\\e743\";\n}\n.ri-pencil2:before {\n  content: \"\\e744\";\n}\n.ri-eyedropper:before {\n  content: \"\\e745\";\n}\n.ri-edit:before {\n  content: \"\\e746\";\n}\n.ri-cc:before {\n  content: \"\\e747\";\n}\n.ri-by:before {\n  content: \"\\e748\";\n}\n.ri-sa:before {\n  content: \"\\e749\";\n}\n.ri-int-wheelchair:before {\n  content: \"\\e74a\";\n}\n.ri-int-water:before {\n  content: \"\\e74b\";\n}\n.ri-int-train:before {\n  content: \"\\e74c\";\n}\n.ri-int-swim:before {\n  content: \"\\e74d\";\n}\n.ri-int-locker:before {\n  content: \"\\e74e\";\n}\n.ri-int-alpine:before {\n  content: \"\\e74f\";\n}\n.ri-int-guard:before {\n  content: \"\\e750\";\n}\n.ri-int-elevator:before {\n  content: \"\\e751\";\n}\n.ri-int-litter:before {\n  content: \"\\e752\";\n}\n.ri-int-bed:before {\n  content: \"\\e753\";\n}\n.ri-int-bus:before {\n  content: \"\\e754\";\n}\n.ri-int-plane:before {\n  content: \"\\e755\";\n}\n.ri-int-phone:before {\n  content: \"\\e756\";\n}\n.ri-int-p:before {\n  content: \"\\e757\";\n}\n.ri-int-fuel:before {\n  content: \"\\e758\";\n}\n.ri-int-firstaid:before {\n  content: \"\\e759\";\n}\n.ri-fire-extinguisher:before {\n  content: \"\\e75a\";\n}\n.ri-int-ladies:before {\n  content: \"\\e75b\";\n}\n.ri-int-gents:before {\n  content: \"\\e75c\";\n}\n.ri-html5:before {\n  content: \"\\e75d\";\n}\n.ri-css3:before {\n  content: \"\\e75e\";\n}\n.ri-colours:before {\n  content: \"\\e75f\";\n}\n.ri-bucket:before {\n  content: \"\\e760\";\n}\n.ri-infinity:before {\n  content: \"\\e761\";\n}\n.ri-codeanywhere:before {\n  content: \"\\e762\";\n}\n.ri-search:before {\n  content: \"\\e763\";\n}\n.ri-spinner:before {\n  content: \"\\e764\";\n}\n.ri-circle-o-notch:before {\n  content: \"\\e765\";\n}\n.ri-refresh:before {\n  content: \"\\e766\";\n}\n.ri-spinner3:before {\n  content: \"\\e767\";\n}\n.ri-arrows:before {\n  content: \"\\e768\";\n}\n.ri-rss:before {\n  content: \"\\e769\";\n}\n.ri-launchpad:before {\n  content: \"\\e76a\";\n}\n.ri-film:before {\n  content: \"\\e76b\";\n}\n.ri-noentry:before {\n  content: \"\\e76c\";\n}\n.ri-attraction:before {\n  content: \"\\e76d\";\n}\n.ri-wp-cog-o:before {\n  content: \"\\e76e\";\n}\n.ri-wp-cog:before {\n  content: \"\\e76f\";\n}\n.ri-cogs:before {\n  content: \"\\e770\";\n}\n.ri-construction:before {\n  content: \"\\e771\";\n}\n.ri-clock:before {\n  content: \"\\e772\";\n}\n.ri-qrcode:before {\n  content: \"\\e773\";\n}\n.ri-ellipsis:before {\n  content: \"\\e774\";\n}\n.ri-menu:before {\n  content: \"\\e775\";\n}\n.ri-square-calc:before {\n  content: \"\\e776\";\n}\n.ri-heart:before {\n  content: \"\\e777\";\n}\n.ri-shut-down:before {\n  content: \"\\e778\";\n}\n.ri-checkbox-checked:before {\n  content: \"\\e779\";\n}\n.ri-dice-one:before {\n  content: \"\\e77a\";\n}\n.ri-dice-two:before {\n  content: \"\\e77b\";\n}\n.ri-dice-three:before {\n  content: \"\\e77c\";\n}\n.ri-dice-four:before {\n  content: \"\\e77d\";\n}\n.ri-dice-five:before {\n  content: \"\\e77e\";\n}\n.ri-dice-six:before {\n  content: \"\\e77f\";\n}\n.ri-go2:before {\n  content: \"\\e780\";\n}\n.ri-circle-facebook:before {\n  content: \"\\e781\";\n}\n.ri-circle-googleplus:before {\n  content: \"\\e782\";\n}\n.ri-circle-instagram:before {\n  content: \"\\e783\";\n}\n.ri-circle-mail:before {\n  content: \"\\e784\";\n}\n.ri-circle-share:before {\n  content: \"\\e785\";\n}\n.ri-circle-pinterest:before {\n  content: \"\\e786\";\n}\n.ri-circle-linkedin:before {\n  content: \"\\e787\";\n}\n.ri-circle-twitter:before {\n  content: \"\\e788\";\n}\n.ri-circle-youtube:before {\n  content: \"\\e789\";\n}\n.ri-chat:before {\n  content: \"\\e78a\";\n}\n.ri-comment:before {\n  content: \"\\e78b\";\n}\n.ri-comment-quote:before {\n  content: \"\\e78c\";\n}\n.ri-square-plus:before {\n  content: \"\\e78d\";\n}\n.ri-square-minus:before {\n  content: \"\\e78e\";\n}\n.ri-square-multi:before {\n  content: \"\\e78f\";\n}\n.ri-square-divide:before {\n  content: \"\\e790\";\n}\n.ri-square-sum:before {\n  content: \"\\e791\";\n}\n.ri-circleadd:before {\n  content: \"\\e792\";\n}\n.ri-circle-minus:before {\n  content: \"\\e793\";\n}\n.ri-circledelete:before {\n  content: \"\\e794\";\n}\n.ri-circleselect:before {\n  content: \"\\e795\";\n}\n.ri-cancel-circle:before {\n  content: \"\\e796\";\n}\n.ri-select-circle:before {\n  content: \"\\e797\";\n}\n.ri-cancel:before {\n  content: \"\\e798\";\n}\n.ri-ok:before {\n  content: \"\\e799\";\n}\n.ri-linkedin:before {\n  content: \"\\e79a\";\n}\n.ri-circle-github:before {\n  content: \"\\e79b\";\n}\n.ri-wordpress:before {\n  content: \"\\e79c\";\n}\n.ri-joomla:before {\n  content: \"\\e79d\";\n}\n.ri-jsfiddle:before {\n  content: \"\\e79e\";\n}\n.ri-google:before {\n  content: \"\\e79f\";\n}\n.ri-googleplus:before {\n  content: \"\\e7a0\";\n}\n.ri-reddit:before {\n  content: \"\\e7a1\";\n}\n.ri-pagelines:before {\n  content: \"\\e7a2\";\n}\n.ri-weibo:before {\n  content: \"\\e7a3\";\n}\n.ri-facebook2:before {\n  content: \"\\e7a4\";\n}\n.ri-gmail:before {\n  content: \"\\e7a5\";\n}\n.ri-codepen:before {\n  content: \"\\e7a6\";\n}\n.ri-vlc:before {\n  content: \"\\e7a7\";\n}\n.ri-jquery:before {\n  content: \"\\e7a8\";\n}\n.ri-ms-edge:before {\n  content: \"\\e7a9\";\n}\n.ri-chrome:before {\n  content: \"\\e7aa\";\n}\n.ri-firefox:before {\n  content: \"\\e7ab\";\n}\n.ri-ie:before {\n  content: \"\\e7ac\";\n}\n.ri-opera:before {\n  content: \"\\e7ad\";\n}\n.ri-safari:before {\n  content: \"\\e7ae\";\n}\n.ri-user:before {\n  content: \"\\e7af\";\n}\n.ri-contacts:before {\n  content: \"\\e7b0\";\n}\n.ri-group:before {\n  content: \"\\e7b1\";\n}\n.ri-user-plus:before {\n  content: \"\\e7b2\";\n}\n.ri-play-circle:before {\n  content: \"\\e7b3\";\n}\n.ri-pause-circle:before {\n  content: \"\\e7b4\";\n}\n.ri-stop-circle:before {\n  content: \"\\e7b5\";\n}\n.ri-backward-circle:before {\n  content: \"\\e7b6\";\n}\n.ri-forward-circle:before {\n  content: \"\\e7b7\";\n}\n.ri-eject-circle:before {\n  content: \"\\e7b8\";\n}\n.ri-camera-retro:before {\n  content: \"\\e7b9\";\n}\n.ri-camera:before {\n  content: \"\\e7ba\";\n}\n.ri-image-gallery:before {\n  content: \"\\e7bb\";\n}\n.ri-image-gallery2:before {\n  content: \"\\e7bc\";\n}\n.ri-image:before {\n  content: \"\\e7bd\";\n}\n.ri-image-portrait:before {\n  content: \"\\e7be\";\n}\n.ri-w3schools:before {\n  content: \"\\e7bf\";\n}\n.ri-msn:before {\n  content: \"\\e7c0\";\n}\n.ri-messenger:before {\n  content: \"\\e7c1\";\n}\n.ri-whatsapp:before {\n  content: \"\\e7c2\";\n}\n.ri-viber:before {\n  content: \"\\e7c3\";\n}\n.ri-itunes:before {\n  content: \"\\e7c4\";\n}\n.ri-skype:before {\n  content: \"\\e7c5\";\n}\n.ri-dropbox:before {\n  content: \"\\e7c6\";\n}\n.ri-deviantart:before {\n  content: \"\\e7c7\";\n}\n.ri-tripadvisor:before {\n  content: \"\\e7c8\";\n}\n.ri-spotify:before {\n  content: \"\\e7c9\";\n}\n.ri-google-drive:before {\n  content: \"\\e7ca\";\n}\n.ri-hangouts:before {\n  content: \"\\e7cb\";\n}\n.ri-tidal:before {\n  content: \"\\e7cc\";\n}\n.ri-pocket:before {\n  content: \"\\e7cd\";\n}\n.ri-youtube2:before {\n  content: \"\\e7ce\";\n}\n.ri-myspace:before {\n  content: \"\\e7cf\";\n}\n.ri-soundcloud:before {\n  content: \"\\e7d0\";\n}\n.ri-recycle-o:before {\n  content: \"\\e7d1\";\n}\n.ri-linux:before {\n  content: \"\\e7d2\";\n}\n.ri-android:before {\n  content: \"\\e7d3\";\n}\n.ri-vimeo:before {\n  content: \"\\e7d4\";\n}\n.ri-windows8:before {\n  content: \"\\e7d5\";\n}\n.ri-apple:before {\n  content: \"\\e7d6\";\n}\n.ri-finder:before {\n  content: \"\\e7d7\";\n}\n.ri-livestream:before {\n  content: \"\\e7d8\";\n}\n.ri-bootstrap:before {\n  content: \"\\e7d9\";\n}\n.ri-square:before {\n  content: \"\\e7da\";\n}\n.ri-circle:before {\n  content: \"\\e7db\";\n}\n.ri-circle-thinline:before {\n  content: \"\\e7dc\";\n}\n.ri-circle-o:before {\n  content: \"\\e7dd\";\n}\n.ri-warning-sign:before {\n  content: \"\\e7de\";\n}\n.ri-exclamation-circle:before {\n  content: \"\\e7df\";\n}\n.ri-desktop:before {\n  content: \"\\e7e0\";\n}\n.ri-laptop:before {\n  content: \"\\e7e1\";\n}\n.ri-tablet:before {\n  content: \"\\e7e2\";\n}\n.ri-smartphone:before {\n  content: \"\\e7e3\";\n}\n.ri-surface:before {\n  content: \"\\e7e4\";\n}\n.ri-responsive:before {\n  content: \"\\e7e5\";\n}\n.ri-coffee:before {\n  content: \"\\e7e6\";\n}\n.ri-cutlery:before {\n  content: \"\\e7e7\";\n}\n.ri-wine-bottle:before {\n  content: \"\\e7e8\";\n}\n.ri-tvg:before {\n  content: \"\\e7e9\";\n}\n.ri-cab:before {\n  content: \"\\e7ea\";\n}\n.ri-bus:before {\n  content: \"\\e7eb\";\n}\n.ri-train:before {\n  content: \"\\e7ec\";\n}\n.ri-subway:before {\n  content: \"\\e7ed\";\n}\n.ri-tram:before {\n  content: \"\\e7ee\";\n}\n.ri-comment2:before {\n  content: \"\\e7ef\";\n}\n.ri-frame:before {\n  content: \"\\e7f0\";\n}\n.ri-notepad:before {\n  content: \"\\e7f1\";\n}\n.ri-address-book:before {\n  content: \"\\e7f2\";\n}\n.ri-vcard-o:before {\n  content: \"\\e7f3\";\n}\n.ri-medkit:before {\n  content: \"\\e7f4\";\n}\n.ri-disc:before {\n  content: \"\\e7f5\";\n}\n.ri-sitemap:before {\n  content: \"\\e7f6\";\n}\n.ri-zoom-in:before {\n  content: \"\\e7f7\";\n}\n.ri-zoom-out:before {\n  content: \"\\e7f8\";\n}\n.ri-green-dot:before {\n  content: \"\\e7f9\";\n}\n.ri-bitnami:before {\n  content: \"\\e7fa\";\n}\n.ri-path:before {\n  content: \"\\e7fb\";\n}\n.ri-medium:before {\n  content: \"\\e7fc\";\n}\n.ri-paypal:before {\n  content: \"\\e7fd\";\n}\n.ri-mixcloud:before {\n  content: \"\\e7fe\";\n}\n.ri-drupal8:before {\n  content: \"\\e7ff\";\n}\n.ri-modx:before {\n  content: \"\\e800\";\n}\n.ri-vivaldi:before {\n  content: \"\\e801\";\n}\n.ri-qwant:before {\n  content: \"\\e802\";\n}\n.ri-share:before {\n  content: \"\\e803\";\n}\n.ri-share2:before {\n  content: \"\\e804\";\n}\n.ri-sign-in:before {\n  content: \"\\e805\";\n}\n.ri-sign-out:before {\n  content: \"\\e806\";\n}\n.ri-plus:before {\n  content: \"\\e807\";\n}\n.ri-alarm:before {\n  content: \"\\e808\";\n}\n.ri-compass:before {\n  content: \"\\e809\";\n}\n.ri-map:before {\n  content: \"\\e80a\";\n}\n.ri-map2:before {\n  content: \"\\e80b\";\n}\n.ri-eye:before {\n  content: \"\\e80c\";\n}\n.ri-heart-o:before {\n  content: \"\\e80d\";\n}\n.ri-venus:before {\n  content: \"\\e80e\";\n}\n.ri-mars:before {\n  content: \"\\e80f\";\n}\n.ri-file-ttf:before {\n  content: \"\\e810\";\n}\n.ri-file-raw:before {\n  content: \"\\e811\";\n}\n.ri-mail-send2:before {\n  content: \"\\e812\";\n}\n.ri-marker:before {\n  content: \"\\e813\";\n}\n.ri-traffic-cone:before {\n  content: \"\\e814\";\n}\n.ri-wrench:before {\n  content: \"\\e815\";\n}\n.ri-window-close:before {\n  content: \"\\e816\";\n}\n.ri-square-phone:before {\n  content: \"\\e817\";\n}\n.ri-telegram:before {\n  content: \"\\e818\";\n}\n.ri-kakaotalk:before {\n  content: \"\\e819\";\n}\n.ri-smartwatch:before {\n  content: \"\\e81a\";\n}\n.ri-logout:before {\n  content: \"\\e81b\";\n}\n.ri-walking:before {\n  content: \"\\e81c\";\n}\n.ri-cycling:before {\n  content: \"\\e81d\";\n}\n.ri-running:before {\n  content: \"\\e81e\";\n}\n.ri-swimming:before {\n  content: \"\\e81f\";\n}\n.ri-trekking:before {\n  content: \"\\e820\";\n}\n.ri-family:before {\n  content: \"\\e821\";\n}\n.ri-int-car-rental:before {\n  content: \"\\e822\";\n}\n.ri-int-ship:before {\n  content: \"\\e823\";\n}\n.ri-int-toilets:before {\n  content: \"\\e824\";\n}\n.ri-int-departure:before {\n  content: \"\\e825\";\n}\n.ri-up-left:before {\n  content: \"\\e826\";\n}\n.ri-up-left-arrow:before {\n  content: \"\\e827\";\n}\n.ri-arrow2:before {\n  content: \"\\e828\";\n}\n.ri-departing-flight:before {\n  content: \"\\e829\";\n}\n.ri-arriving-flight:before {\n  content: \"\\e82a\";\n}\n.ri-misc-waste:before {\n  content: \"\\e82b\";\n}\n.ri-plastic-waste:before {\n  content: \"\\e82c\";\n}\n.ri-paper-waste:before {\n  content: \"\\e82d\";\n}\n.ri-food-waste:before {\n  content: \"\\e82e\";\n}\n.ri-metal-glass-waste:before {\n  content: \"\\e82f\";\n}\n.ri-stats:before {\n  content: \"\\e830\";\n}\n.ri-el-hazard:before {\n  content: \"\\e831\";\n}\n.ri-umbrella:before {\n  content: \"\\e832\";\n}\n.ri-chat2:before {\n  content: \"\\e833\";\n}\n.ri-blog:before {\n  content: \"\\e834\";\n}\n.ri-app-store:before {\n  content: \"\\e835\";\n}\n.ri-twitch:before {\n  content: \"\\e836\";\n}\n.ri-cssdeck:before {\n  content: \"\\e837\";\n}\n.ri-envato:before {\n  content: \"\\e838\";\n}\n.ri-typo3:before {\n  content: \"\\e839\";\n}\n.ri-jquery-ui:before {\n  content: \"\\e83a\";\n}\n.ri-blocs:before {\n  content: \"\\e83b\";\n}\n.ri-phonegap:before {\n  content: \"\\e83c\";\n}\n.ri-brackets:before {\n  content: \"\\e83d\";\n}\n.ri-code:before {\n  content: \"\\e83e\";\n}\n.ri-sass:before {\n  content: \"\\e83f\";\n}\n.ri-less:before {\n  content: \"\\e840\";\n}\n.ri-php:before {\n  content: \"\\e841\";\n}\n.ri-atom:before {\n  content: \"\\e842\";\n}\n.ri-react:before {\n  content: \"\\e843\";\n}\n.ri-int-lighthouse:before {\n  content: \"\\e844\";\n}\n.ri-int-bicycle:before {\n  content: \"\\e845\";\n}\n.ri-int-heliport:before {\n  content: \"\\e846\";\n}\n.ri-int-tram:before {\n  content: \"\\e847\";\n}\n.ri-int-exit:before {\n  content: \"\\e848\";\n}\n.ri-opacity:before {\n  content: \"\\e849\";\n}\n.ri-3d:before {\n  content: \"\\e84a\";\n}\n.ri-wpexplorer:before {\n  content: \"\\e84b\";\n}\n.ri-quora:before {\n  content: \"\\e84c\";\n}\n.ri-qross:before {\n  content: \"\\e84d\";\n}\n.ri-ubuntu:before {\n  content: \"\\e84e\";\n}\n.ri-magento:before {\n  content: \"\\e84f\";\n}\n.ri-heroku:before {\n  content: \"\\e850\";\n}\n.ri-klout:before {\n  content: \"\\e851\";\n}\n.ri-sublime-text:before {\n  content: \"\\e852\";\n}\n.ri-scala:before {\n  content: \"\\e853\";\n}\n.ri-node-js:before {\n  content: \"\\e854\";\n}\n.ri-ruby:before {\n  content: \"\\e855\";\n}\n.ri-python:before {\n  content: \"\\e856\";\n}\n.ri-algolia:before {\n  content: \"\\e857\";\n}\n.ri-horse-riding:before {\n  content: \"\\e858\";\n}\n.ri-golfing:before {\n  content: \"\\e859\";\n}\n.ri-skateboarding:before {\n  content: \"\\e85a\";\n}\n.ri-kayaking:before {\n  content: \"\\e85b\";\n}\n.ri-canoeing:before {\n  content: \"\\e85c\";\n}\n.ri-cross-country:before {\n  content: \"\\e85d\";\n}\n.ri-skating:before {\n  content: \"\\e85e\";\n}\n.ri-ski-racing:before {\n  content: \"\\e85f\";\n}\n.ri-cross-pattee:before {\n  content: \"\\e860\";\n}\n.ri-star-of-david:before {\n  content: \"\\e861\";\n}\n.ri-om:before {\n  content: \"\\e862\";\n}\n.ri-star-and-crescent:before {\n  content: \"\\e863\";\n}\n.ri-dharma-wheel:before {\n  content: \"\\e864\";\n}\n.ri-latin-cross:before {\n  content: \"\\e865\";\n}\n.ri-peace:before {\n  content: \"\\e866\";\n}\n.ri-visually-impaired:before {\n  content: \"\\e867\";\n}\n.ri-int-escalator:before {\n  content: \"\\e868\";\n}\n.ri-int-stairs:before {\n  content: \"\\e869\";\n}\n.ri-taxi:before {\n  content: \"\\e86a\";\n}\n.ri-rock-climbing:before {\n  content: \"\\e86b\";\n}\n.ri-hiking-trail:before {\n  content: \"\\e86c\";\n}\n.ri-fishing:before {\n  content: \"\\e86d\";\n}\n.ri-sailing:before {\n  content: \"\\e86e\";\n}\n.ri-seaplane:before {\n  content: \"\\e86f\";\n}\n.ri-dogs-on-leash:before {\n  content: \"\\e870\";\n}\n.ri-viewpoint:before {\n  content: \"\\e871\";\n}\n.ri-whale-watching:before {\n  content: \"\\e872\";\n}\n.ri-diving:before {\n  content: \"\\e873\";\n}\n.ri-watercraft:before {\n  content: \"\\e874\";\n}\n.ri-shower:before {\n  content: \"\\e875\";\n}\n.ri-campfire:before {\n  content: \"\\e876\";\n}\n.ri-tenting:before {\n  content: \"\\e877\";\n}\n.ri-caravan:before {\n  content: \"\\e878\";\n}\n.ri-motorhome:before {\n  content: \"\\e879\";\n}\n.ri-cabin:before {\n  content: \"\\e87a\";\n}\n.ri-campground:before {\n  content: \"\\e87b\";\n}\n.ri-no-smoking:before {\n  content: \"\\e87c\";\n}\n.ri-no-entry:before {\n  content: \"\\e87d\";\n}\n.ri-road-works:before {\n  content: \"\\e87e\";\n}\n.ri-danger-ahead:before {\n  content: \"\\e87f\";\n}\n.ri-woolmark:before {\n  content: \"\\e880\";\n}\n.ri-weee:before {\n  content: \"\\e881\";\n}\n.ri-c-tick:before {\n  content: \"\\e882\";\n}\n.ri-vs-code:before {\n  content: \"\\e883\";\n}\n.ri-exit:before {\n  content: \"\\e884\";\n}\n.ri-stratocaster:before {\n  content: \"\\e885\";\n}\n.ri-guitar:before {\n  content: \"\\e886\";\n}\n.ri-mountain-biking:before {\n  content: \"\\e887\";\n}\n.ri-climbing:before {\n  content: \"\\e888\";\n}\n.ri-yoga:before {\n  content: \"\\e889\";\n}\n.ri-brain:before {\n  content: \"\\e88a\";\n}\n.ri-certificate:before {\n  content: \"\\e88b\";\n}\n.ri-medal-one:before {\n  content: \"\\e88c\";\n}\n.ri-doc-edit:before {\n  content: \"\\e88d\";\n}\n.ri-viral-marketing:before {\n  content: \"\\e88e\";\n}\n.ri-performance-up:before {\n  content: \"\\e88f\";\n}\n.ri-seo-monitoring:before {\n  content: \"\\e890\";\n}\n.ri-market-research:before {\n  content: \"\\e891\";\n}\n.ri-sliders:before {\n  content: \"\\e892\";\n}\n.ri-users-group:before {\n  content: \"\\e893\";\n}\n.ri-industry:before {\n  content: \"\\e894\";\n}\n.ri-life-ring:before {\n  content: \"\\e895\";\n}\n.ri-airbnb:before {\n  content: \"\\e896\";\n}\n.ri-strava:before {\n  content: \"\\e897\";\n}\n.ri-uber:before {\n  content: \"\\e898\";\n}\n.ri-bitcoin:before {\n  content: \"\\e899\";\n}\n.ri-themeisle:before {\n  content: \"\\e89a\";\n}\n.ri-expeditedssl:before {\n  content: \"\\e89b\";\n}\n.ri-open-id:before {\n  content: \"\\e89c\";\n}\n.ri-forumbee:before {\n  content: \"\\e89d\";\n}\n.ri-uikit:before {\n  content: \"\\e89e\";\n}\n.ri-codiepie:before {\n  content: \"\\e89f\";\n}\n.ri-tag:before {\n  content: \"\\e8a0\";\n}\n.ri-ticket:before {\n  content: \"\\e8a1\";\n}\n.ri-trademark:before {\n  content: \"\\e8a2\";\n}\n.ri-thumbtack:before {\n  content: \"\\e8a3\";\n}\n.ri-chart-area:before {\n  content: \"\\e8a4\";\n}\n.ri-chart-bar:before {\n  content: \"\\e8a5\";\n}\n.ri-chart-line:before {\n  content: \"\\e8a6\";\n}\n.ri-chart-pie:before {\n  content: \"\\e8a7\";\n}\n.ri-slippery-steps:before {\n  content: \"\\e8a8\";\n}\n.ri-bear:before {\n  content: \"\\e8a9\";\n}\n.ri-int-horse-riding:before {\n  content: \"\\e8aa\";\n}\n.ri-atv:before {\n  content: \"\\e8ab\";\n}\n.ri-offroad:before {\n  content: \"\\e8ac\";\n}\n.ri-hiking:before {\n  content: \"\\e8ad\";\n}\n.ri-archery:before {\n  content: \"\\e8ae\";\n}\n.ri-int-cutlery:before {\n  content: \"\\e8af\";\n}\n.ri-viewing-area:before {\n  content: \"\\e8b0\";\n}\n.ri-trophy:before {\n  content: \"\\e8b1\";\n}\n.ri-window-minimize:before {\n  content: \"\\e8b2\";\n}\n.ri-window-maximize:before {\n  content: \"\\e8b3\";\n}\n.ri-window-restore:before {\n  content: \"\\e8b4\";\n}\n.ri-beer:before {\n  content: \"\\e8b5\";\n}\n.ri-bell:before {\n  content: \"\\e8b6\";\n}\n.ri-bell-slash:before {\n  content: \"\\e8b7\";\n}\n.ri-align-left:before {\n  content: \"\\e8b8\";\n}\n.ri-align-center:before {\n  content: \"\\e8b9\";\n}\n.ri-align-right:before {\n  content: \"\\e8ba\";\n}\n.ri-align-justify:before {\n  content: \"\\e8bb\";\n}\n.ri-list:before {\n  content: \"\\e8bc\";\n}\n.ri-list-ol:before {\n  content: \"\\e8bd\";\n}\n.ri-list-ul:before {\n  content: \"\\e8be\";\n}\n.ri-tasks:before {\n  content: \"\\e8bf\";\n}\n.ri-list-alt:before {\n  content: \"\\e8c0\";\n}\n.ri-creditcard-alt:before {\n  content: \"\\e8c1\";\n}\n.ri-gift:before {\n  content: \"\\e8c2\";\n}\n.ri-birthday-cake:before {\n  content: \"\\e8c3\";\n}\n.ri-balance-scale:before {\n  content: \"\\e8c4\";\n}\n.ri-shinto:before {\n  content: \"\\e8c5\";\n}\n.ri-sikh:before {\n  content: \"\\e8c6\";\n}\n.ri-bahai:before {\n  content: \"\\e8c7\";\n}\n.ri-chess-board:before {\n  content: \"\\e8c8\";\n}\n.ri-chess:before {\n  content: \"\\e8c9\";\n}\n.ri-chess-bishop:before {\n  content: \"\\e8ca\";\n}\n.ri-chess-king:before {\n  content: \"\\e8cb\";\n}\n.ri-chess-knight:before {\n  content: \"\\e8cc\";\n}\n.ri-chess-pawn:before {\n  content: \"\\e8cd\";\n}\n.ri-chess-queen:before {\n  content: \"\\e8ce\";\n}\n.ri-chess-rook:before {\n  content: \"\\e8cf\";\n}\n.ri-golf:before {\n  content: \"\\e8d0\";\n}\n.ri-volleyball:before {\n  content: \"\\e8d1\";\n}\n.ri-basketball:before {\n  content: \"\\e8d2\";\n}\n.ri-baseball:before {\n  content: \"\\e8d3\";\n}\n.ri-bowling:before {\n  content: \"\\e8d4\";\n}\n.ri-football:before {\n  content: \"\\e8d5\";\n}\n.ri-soccer:before {\n  content: \"\\e8d6\";\n}\n.ri-lemon:before {\n  content: \"\\e8d7\";\n}\n.ri-orange:before {\n  content: \"\\e8d8\";\n}\n.ri-font:before {\n  content: \"\\e8d9\";\n}\n.ri-adjust:before {\n  content: \"\\e8da\";\n}\n.ri-outdent:before {\n  content: \"\\e8db\";\n}\n.ri-indent:before {\n  content: \"\\e8dc\";\n}\n.ri-wolf:before {\n  content: \"\\e8dd\";\n}\n.ri-mountain:before {\n  content: \"\\e8de\";\n}\n.ri-park:before {\n  content: \"\\e8df\";\n}\n.ri-forest:before {\n  content: \"\\e8e0\";\n}\n.ri-tent:before {\n  content: \"\\e8e1\";\n}\n.ri-town:before {\n  content: \"\\e8e2\";\n}\n.ri-north:before {\n  content: \"\\e8e3\";\n}\n.ri-north-o:before {\n  content: \"\\e8e4\";\n}\n.ri-north-alt:before {\n  content: \"\\e8e5\";\n}\n.ri-north-badge:before {\n  content: \"\\e8e6\";\n}\n.ri-north-badge-o:before {\n  content: \"\\e8e7\";\n}\n.ri-north-banner:before {\n  content: \"\\e8e8\";\n}\n.ri-keyb-a:before {\n  content: \"\\e8e9\";\n}\n.ri-keyb-up:before {\n  content: \"\\e8ea\";\n}\n.ri-keyb-down:before {\n  content: \"\\e8eb\";\n}\n.ri-keyb-left:before {\n  content: \"\\e8ec\";\n}\n.ri-keyb-right:before {\n  content: \"\\e8ed\";\n}\n.ri-access:before {\n  content: \"\\e8ee\";\n}\n.ri-ms-forms:before {\n  content: \"\\e8ef\";\n}\n.ri-lync:before {\n  content: \"\\e8f0\";\n}\n.ri-class-notebook:before {\n  content: \"\\e8f1\";\n}\n.ri-teams:before {\n  content: \"\\e8f2\";\n}\n.ri-teams-alt:before {\n  content: \"\\e8f3\";\n}\n.ri-visio:before {\n  content: \"\\e8f4\";\n}\n.ri-docker:before {\n  content: \"\\e8f5\";\n}\n.ri-electricity:before {\n  content: \"\\e8f6\";\n}\n.ri-tram-alt:before {\n  content: \"\\e8f7\";\n}\n.ri-cars:before {\n  content: \"\\e8f8\";\n}\n.ri-van:before {\n  content: \"\\e8f9\";\n}\n.ri-charging-station:before {\n  content: \"\\e8fa\";\n}\n.ri-dining-set:before {\n  content: \"\\e8fb\";\n}\n.ri-houses:before {\n  content: \"\\e8fc\";\n}\n.ri-animate:before {\n  content: \"\\e8fd\";\n}\n.ri-character-animator:before {\n  content: \"\\e8fe\";\n}\n.ri-dimension:before {\n  content: \"\\e8ff\";\n}\n.ri-encore:before {\n  content: \"\\e900\";\n}\n.ri-fuse:before {\n  content: \"\\e901\";\n}\n.ri-type-kit:before {\n  content: \"\\e902\";\n}\n.ri-muse:before {\n  content: \"\\e903\";\n}\n.ri-prelude:before {\n  content: \"\\e904\";\n}\n.ri-speed-grade:before {\n  content: \"\\e905\";\n}\n.ri-codyhouse:before {\n  content: \"\\e906\";\n}\n.ri-rotate-c:before {\n  content: \"\\e907\";\n}\n.ri-rotate-cc:before {\n  content: \"\\e908\";\n}\n.ri-comment-quotes:before {\n  content: \"\\e909\";\n}\n.ri-family-group:before {\n  content: \"\\e90a\";\n}\n.ri-paintbrush-alt:before {\n  content: \"\\e90b\";\n}\n.ri-file-aif:before {\n  content: \"\\e90c\";\n}\n.ri-file-csv:before {\n  content: \"\\e90d\";\n}\n.ri-file-dmg:before {\n  content: \"\\e90e\";\n}\n.ri-file-eot:before {\n  content: \"\\e90f\";\n}\n.ri-file-ico:before {\n  content: \"\\e910\";\n}\n.ri-file-indd:before {\n  content: \"\\e911\";\n}\n.ri-file-iso:before {\n  content: \"\\e912\";\n}\n.ri-file-less:before {\n  content: \"\\e913\";\n}\n.ri-file-mid:before {\n  content: \"\\e914\";\n}\n.ri-file-mpg:before {\n  content: \"\\e915\";\n}\n.ri-file-pptx:before {\n  content: \"\\e916\";\n}\n.ri-file-rtf:before {\n  content: \"\\e917\";\n}\n.ri-file-sitx:before {\n  content: \"\\e918\";\n}\n.ri-file-woff:before {\n  content: \"\\e919\";\n}\n.ri-file-xlsx:before {\n  content: \"\\e91a\";\n}\n.ri-trello:before {\n  content: \"\\e91b\";\n}\n.ri-box-empty:before {\n  content: \"\\e91c\";\n}\n.ri-box-selected:before {\n  content: \"\\e91d\";\n}\n.ri-globus:before {\n  content: \"\\e91e\";\n}\n.ri-shield:before {\n  content: \"\\e91f\";\n}\n.ri-easel:before {\n  content: \"\\e920\";\n}\n.ri-drive:before {\n  content: \"\\e921\";\n}\n.ri-drive-o:before {\n  content: \"\\e922\";\n}\n.ri-pens:before {\n  content: \"\\e923\";\n}\n.ri-cursor:before {\n  content: \"\\e924\";\n}\n.ri-hourglass:before {\n  content: \"\\e925\";\n}\n.ri-un:before {\n  content: \"\\e926\";\n}\n.ri-sdg1:before {\n  content: \"\\e927\";\n}\n.ri-sdg2:before {\n  content: \"\\e928\";\n}\n.ri-sdg3:before {\n  content: \"\\e929\";\n}\n.ri-sdg4:before {\n  content: \"\\e92a\";\n}\n.ri-sdg5:before {\n  content: \"\\e92b\";\n}\n.ri-sdg6:before {\n  content: \"\\e92c\";\n}\n.ri-sdg7:before {\n  content: \"\\e92d\";\n}\n.ri-sdg8:before {\n  content: \"\\e92e\";\n}\n.ri-sdg9:before {\n  content: \"\\e92f\";\n}\n.ri-sdg10:before {\n  content: \"\\e930\";\n}\n.ri-sdg11:before {\n  content: \"\\e931\";\n}\n.ri-sdg12:before {\n  content: \"\\e932\";\n}\n.ri-sdg13:before {\n  content: \"\\e933\";\n}\n.ri-sdg14:before {\n  content: \"\\e934\";\n}\n.ri-sdg15:before {\n  content: \"\\e935\";\n}\n.ri-sdg16:before {\n  content: \"\\e936\";\n}\n.ri-sdg17:before {\n  content: \"\\e937\";\n}\n.ri-sdg:before {\n  content: \"\\e938\";\n}\n.ri-app-store-ios:before {\n  content: \"\\e939\";\n}\n.ri-ios-photo:before {\n  content: \"\\e93a\";\n}\n.ri-plug:before {\n  content: \"\\e93b\";\n}\n.ri-lab:before {\n  content: \"\\e93c\";\n}\n.ri-magic-wand:before {\n  content: \"\\e93d\";\n}\n.ri-simpleview:before {\n  content: \"\\e93e\";\n}\n.ri-renren:before {\n  content: \"\\e93f\";\n}\n.ri-deskpro:before {\n  content: \"\\e940\";\n}\n.ri-whmcs:before {\n  content: \"\\e941\";\n}\n.ri-weixin:before {\n  content: \"\\e942\";\n}\n.ri-mailchimp:before {\n  content: \"\\e943\";\n}\n.ri-kickstarter:before {\n  content: \"\\e944\";\n}\n.ri-wordpress-simple:before {\n  content: \"\\e945\";\n}\n.ri-vuejs:before {\n  content: \"\\e946\";\n}\n.ri-linux-new:before {\n  content: \"\\e947\";\n}\n.ri-game-pad:before {\n  content: \"\\e948\";\n}\n.ri-headset:before {\n  content: \"\\e949\";\n}\n.ri-data-mouse:before {\n  content: \"\\e94a\";\n}\n.ri-stationary-pc:before {\n  content: \"\\e94b\";\n}\n.ri-monitor:before {\n  content: \"\\e94c\";\n}\n.ri-hoover:before {\n  content: \"\\e94d\";\n}\n.ri-coffee-machine:before {\n  content: \"\\e94e\";\n}\n.ri-microwave-oven:before {\n  content: \"\\e94f\";\n}\n.ri-washing-machine:before {\n  content: \"\\e950\";\n}\n.ri-dishwasher:before {\n  content: \"\\e951\";\n}\n.ri-oven:before {\n  content: \"\\e952\";\n}\n.ri-fridge:before {\n  content: \"\\e953\";\n}\n.ri-golf-cart:before {\n  content: \"\\e954\";\n}\n.ri-shipping-express:before {\n  content: \"\\e955\";\n}\n.ri-rest-stop:before {\n  content: \"\\e956\";\n}\n.ri-campervan:before {\n  content: \"\\e957\";\n}\n.ri-traffic-control:before {\n  content: \"\\e958\";\n}\n.ri-traffic-light:before {\n  content: \"\\e959\";\n}\n.ri-apple-pay-alt:before {\n  content: \"\\e95a\";\n}\n.ri-apple-pay:before {\n  content: \"\\e95b\";\n}\n.ri-amex:before {\n  content: \"\\e95c\";\n}\n.ri-sellfy:before {\n  content: \"\\e95d\";\n}\n.ri-cuttlefish:before {\n  content: \"\\e95e\";\n}\n.ri-uniregistry:before {\n  content: \"\\e95f\";\n}\n.ri-freebsb:before {\n  content: \"\\e960\";\n}\n.ri-qzone:before {\n  content: \"\\e961\";\n}\n.ri-thinkful:before {\n  content: \"\\e962\";\n}\n.ri-digitalocean:before {\n  content: \"\\e963\";\n}\n.ri-taplytics:before {\n  content: \"\\e964\";\n}\n.ri-sentry:before {\n  content: \"\\e965\";\n}\n.ri-diners-club:before {\n  content: \"\\e966\";\n}\n.ri-stripe:before {\n  content: \"\\e967\";\n}\n.ri-reason-ml:before {\n  content: \"\\e968\";\n}\n.ri-npm:before {\n  content: \"\\e969\";\n}\n.ri-monero:before {\n  content: \"\\e96a\";\n}\n.ri-buysellads:before {\n  content: \"\\e96b\";\n}\n.ri-envira:before {\n  content: \"\\e96c\";\n}\n.ri-cloudversify:before {\n  content: \"\\e96d\";\n}\n.ri-fly:before {\n  content: \"\\e96e\";\n}\n.ri-bandcamp:before {\n  content: \"\\e96f\";\n}\n.ri-discourse:before {\n  content: \"\\e970\";\n}\n.ri-gg:before {\n  content: \"\\e971\";\n}\n.ri-dyalog:before {\n  content: \"\\e972\";\n}\n.ri-gofore:before {\n  content: \"\\e973\";\n}\n.ri-stackpath:before {\n  content: \"\\e974\";\n}\n.ri-cc-remix:before {\n  content: \"\\e975\";\n}\n.ri-cc-sampling:before {\n  content: \"\\e976\";\n}\n.ri-cc-share:before {\n  content: \"\\e977\";\n}\n.ri-folder:before {\n  content: \"\\e978\";\n}\n.ri-folder-open:before {\n  content: \"\\e979\";\n}\n.ri-folder-add:before {\n  content: \"\\e97a\";\n}\n.ri-folder-shared:before {\n  content: \"\\e97b\";\n}\n.ri-watch:before {\n  content: \"\\e97c\";\n}\n.ri-speaker:before {\n  content: \"\\e97d\";\n}\n.ri-dialpad:before {\n  content: \"\\e97e\";\n}\n.ri-swap:before {\n  content: \"\\e97f\";\n}\n.ri-import-export:before {\n  content: \"\\e980\";\n}\n.ri-gesture:before {\n  content: \"\\e981\";\n}\n.ri-waves:before {\n  content: \"\\e982\";\n}\n.ri-intersection:before {\n  content: \"\\e983\";\n}\n\n"
  },
  {
    "path": "icon-packs/ikonli-simpleicons-pack/ikonli-simpleicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-simpleicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.simpleicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.simpleicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.simpleicons.SimpleIconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.simpleicons.SimpleIconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-simpleicons-pack/src/main/java/org/kordamp/ikonli/simpleicons/SimpleIcons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.simpleicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum SimpleIcons implements Ikon {\n    ABBROBOTSTUDIO(\"si-abbrobotstudio\", '\\ue906'),\n    ABLETONLIVE(\"si-abletonlive\", '\\ue907'),\n    ABOUT_DOT_ME(\"si-about-dot-me\", '\\ue908'),\n    ABSTRACT(\"si-abstract\", '\\ue909'),\n    ACADEMIA(\"si-academia\", '\\ue90a'),\n    ACCUSOFT(\"si-accusoft\", '\\ue90b'),\n    ACM(\"si-acm\", '\\ue90c'),\n    ACTIGRAPH(\"si-actigraph\", '\\ue90d'),\n    ACTIVISION(\"si-activision\", '\\ue90e'),\n    ADBLOCK(\"si-adblock\", '\\ue90f'),\n    ADBLOCKPLUS(\"si-adblockplus\", '\\ue910'),\n    ADDTHIS(\"si-addthis\", '\\ue911'),\n    ADGUARD(\"si-adguard\", '\\ue912'),\n    ADOBE(\"si-adobe\", '\\ue913'),\n    ADOBEACROBATREADER(\"si-adobeacrobatreader\", '\\ue914'),\n    ADOBEAFTEREFFECTS(\"si-adobeaftereffects\", '\\ue915'),\n    ADOBEAUDITION(\"si-adobeaudition\", '\\ue916'),\n    ADOBECREATIVECLOUD(\"si-adobecreativecloud\", '\\ue917'),\n    ADOBEDREAMWEAVER(\"si-adobedreamweaver\", '\\ue918'),\n    ADOBEFONTS(\"si-adobefonts\", '\\ue919'),\n    ADOBEILLUSTRATOR(\"si-adobeillustrator\", '\\ue91a'),\n    ADOBEINDESIGN(\"si-adobeindesign\", '\\ue91b'),\n    ADOBELIGHTROOMCC(\"si-adobelightroomcc\", '\\ue91c'),\n    ADOBELIGHTROOMCLASSIC(\"si-adobelightroomclassic\", '\\ue91d'),\n    ADOBEPHONEGAP(\"si-adobephonegap\", '\\ue91e'),\n    ADOBEPHOTOSHOP(\"si-adobephotoshop\", '\\ue91f'),\n    ADOBEPREMIEREPRO(\"si-adobepremierepro\", '\\ue920'),\n    ADOBEXD(\"si-adobexd\", '\\ue921'),\n    ADONISJS(\"si-adonisjs\", '\\ue922'),\n    AERLINGUS(\"si-aerlingus\", '\\ue923'),\n    AFFINITY(\"si-affinity\", '\\ue924'),\n    AFFINITYDESIGNER(\"si-affinitydesigner\", '\\ue925'),\n    AFFINITYPHOTO(\"si-affinityphoto\", '\\ue926'),\n    AFFINITYPUBLISHER(\"si-affinitypublisher\", '\\ue927'),\n    AIQFOME(\"si-aiqfome\", '\\ue928'),\n    AIRBNB(\"si-airbnb\", '\\ue929'),\n    AIRBUS(\"si-airbus\", '\\ue92a'),\n    AIRCALL(\"si-aircall\", '\\ue92b'),\n    AIRCANADA(\"si-aircanada\", '\\ue92c'),\n    AIRFRANCE(\"si-airfrance\", '\\ue92d'),\n    AIRPLAYAUDIO(\"si-airplayaudio\", '\\ue92e'),\n    AIRPLAYVIDEO(\"si-airplayvideo\", '\\ue92f'),\n    AIRTABLE(\"si-airtable\", '\\ue930'),\n    ALFAROMEO(\"si-alfaromeo\", '\\ue931'),\n    ALGOLIA(\"si-algolia\", '\\ue932'),\n    ALIPAY(\"si-alipay\", '\\ue933'),\n    ALLIEDMODDERS(\"si-alliedmodders\", '\\ue934'),\n    ALLOCINE(\"si-allocine\", '\\ue935'),\n    ALPINELINUX(\"si-alpinelinux\", '\\ue936'),\n    ALTIUMDESIGNER(\"si-altiumdesigner\", '\\ue937'),\n    AMAZON(\"si-amazon\", '\\ue938'),\n    AMAZONALEXA(\"si-amazonalexa\", '\\ue939'),\n    AMAZONAWS(\"si-amazonaws\", '\\ue93a'),\n    AMAZONFIRETV(\"si-amazonfiretv\", '\\ue93b'),\n    AMAZONLUMBERYARD(\"si-amazonlumberyard\", '\\ue93c'),\n    AMAZONPRIME(\"si-amazonprime\", '\\ue93d'),\n    AMD(\"si-amd\", '\\ue93e'),\n    AMERICANAIRLINES(\"si-americanairlines\", '\\ue93f'),\n    AMERICANEXPRESS(\"si-americanexpress\", '\\ue940'),\n    ANACONDA(\"si-anaconda\", '\\ue941'),\n    ANALOGUE(\"si-analogue\", '\\ue942'),\n    ANCHOR(\"si-anchor\", '\\ue943'),\n    ANDELA(\"si-andela\", '\\ue944'),\n    ANDROID(\"si-android\", '\\ue945'),\n    ANDROIDAUTO(\"si-androidauto\", '\\ue946'),\n    ANDROIDSTUDIO(\"si-androidstudio\", '\\ue947'),\n    ANGELLIST(\"si-angellist\", '\\ue948'),\n    ANGULAR(\"si-angular\", '\\ue949'),\n    ANGULARJS(\"si-angularjs\", '\\ue94a'),\n    ANGULARUNIVERSAL(\"si-angularuniversal\", '\\ue94b'),\n    ANSIBLE(\"si-ansible\", '\\ue94c'),\n    ANSYS(\"si-ansys\", '\\ue94d'),\n    ANTDESIGN(\"si-antdesign\", '\\ue94e'),\n    ANTENA3(\"si-antena3\", '\\ue94f'),\n    APACHE(\"si-apache\", '\\ue950'),\n    APACHEAIRFLOW(\"si-apacheairflow\", '\\ue951'),\n    APACHEANT(\"si-apacheant\", '\\ue952'),\n    APACHECASSANDRA(\"si-apachecassandra\", '\\ue953'),\n    APACHECLOUDSTACK(\"si-apachecloudstack\", '\\ue954'),\n    APACHECORDOVA(\"si-apachecordova\", '\\ue955'),\n    APACHEDRUID(\"si-apachedruid\", '\\ue956'),\n    APACHEECHARTS(\"si-apacheecharts\", '\\ue957'),\n    APACHEFLINK(\"si-apacheflink\", '\\ue958'),\n    APACHEKAFKA(\"si-apachekafka\", '\\ue959'),\n    APACHEMAVEN(\"si-apachemaven\", '\\ue95a'),\n    APACHENETBEANSIDE(\"si-apachenetbeanside\", '\\ue95b'),\n    APACHEOPENOFFICE(\"si-apacheopenoffice\", '\\ue95c'),\n    APACHEPULSAR(\"si-apachepulsar\", '\\ue95d'),\n    APACHEROCKETMQ(\"si-apacherocketmq\", '\\ue95e'),\n    APACHESOLR(\"si-apachesolr\", '\\ue95f'),\n    APACHESPARK(\"si-apachespark\", '\\ue960'),\n    APOLLOGRAPHQL(\"si-apollographql\", '\\ue961'),\n    APPLE(\"si-apple\", '\\ue962'),\n    APPLEMUSIC(\"si-applemusic\", '\\ue963'),\n    APPLEPAY(\"si-applepay\", '\\ue964'),\n    APPLEPODCASTS(\"si-applepodcasts\", '\\ue965'),\n    APPLETV(\"si-appletv\", '\\ue966'),\n    APPSIGNAL(\"si-appsignal\", '\\ue967'),\n    APPSTORE(\"si-appstore\", '\\ue968'),\n    APPVEYOR(\"si-appveyor\", '\\ue969'),\n    ARAL(\"si-aral\", '\\ue96a'),\n    ARCHICAD(\"si-archicad\", '\\ue96b'),\n    ARCHIVEOFOUROWN(\"si-archiveofourown\", '\\ue96c'),\n    ARCHLINUX(\"si-archlinux\", '\\ue96d'),\n    ARDOUR(\"si-ardour\", '\\ue96e'),\n    ARDUINO(\"si-arduino\", '\\ue96f'),\n    ARLO(\"si-arlo\", '\\ue970'),\n    ARTSTATION(\"si-artstation\", '\\ue971'),\n    ARXIV(\"si-arxiv\", '\\ue972'),\n    ASANA(\"si-asana\", '\\ue973'),\n    ASCIIDOCTOR(\"si-asciidoctor\", '\\ue974'),\n    ASCIINEMA(\"si-asciinema\", '\\ue975'),\n    ASEPRITE(\"si-aseprite\", '\\ue976'),\n    ASKFM(\"si-askfm\", '\\ue977'),\n    ASUS(\"si-asus\", '\\ue978'),\n    ATARI(\"si-atari\", '\\ue97a'),\n    ATLASSIAN(\"si-atlassian\", '\\ue97b'),\n    ATOM(\"si-atom\", '\\ue97c'),\n    AT_AND_T(\"si-at-and-t\", '\\ue979'),\n    AUDACITY(\"si-audacity\", '\\ue97d'),\n    AUDI(\"si-audi\", '\\ue97e'),\n    AUDIBLE(\"si-audible\", '\\ue97f'),\n    AUDIOBOOM(\"si-audioboom\", '\\ue981'),\n    AUDIOMACK(\"si-audiomack\", '\\ue982'),\n    AUDIO_TECHNICA(\"si-audio-technica\", '\\ue980'),\n    AURELIA(\"si-aurelia\", '\\ue983'),\n    AUTH0(\"si-auth0\", '\\ue984'),\n    AUTHY(\"si-authy\", '\\ue985'),\n    AUTODESK(\"si-autodesk\", '\\ue986'),\n    AUTOMATIC(\"si-automatic\", '\\ue987'),\n    AUTOTASK(\"si-autotask\", '\\ue988'),\n    AVENTRIX(\"si-aventrix\", '\\ue989'),\n    AWESOMELISTS(\"si-awesomelists\", '\\ue98a'),\n    AWESOMEWM(\"si-awesomewm\", '\\ue98b'),\n    AZUREARTIFACTS(\"si-azureartifacts\", '\\ue98c'),\n    AZUREDATAEXPLORER(\"si-azuredataexplorer\", '\\ue98d'),\n    AZUREDEVOPS(\"si-azuredevops\", '\\ue98e'),\n    AZUREFUNCTIONS(\"si-azurefunctions\", '\\ue98f'),\n    AZUREPIPELINES(\"si-azurepipelines\", '\\ue990'),\n    A_FRAME(\"si-a-frame\", '\\ue905'),\n    BABEL(\"si-babel\", '\\ue991'),\n    BADGR(\"si-badgr\", '\\ue992'),\n    BADOO(\"si-badoo\", '\\ue993'),\n    BAIDU(\"si-baidu\", '\\ue994'),\n    BAMBOO(\"si-bamboo\", '\\ue995'),\n    BANCONTACT(\"si-bancontact\", '\\ue996'),\n    BANDCAMP(\"si-bandcamp\", '\\ue997'),\n    BANDLAB(\"si-bandlab\", '\\ue998'),\n    BANDSINTOWN(\"si-bandsintown\", '\\ue999'),\n    BASECAMP(\"si-basecamp\", '\\ue99a'),\n    BATA(\"si-bata\", '\\ue99b'),\n    BATHASU(\"si-bathasu\", '\\ue99c'),\n    BATTLE_DOT_NET(\"si-battle-dot-net\", '\\ue99d'),\n    BBCIPLAYER(\"si-bbciplayer\", '\\ue99e'),\n    BEATPORT(\"si-beatport\", '\\ue99f'),\n    BEATS(\"si-beats\", '\\ue9a0'),\n    BEATSBYDRE(\"si-beatsbydre\", '\\ue9a1'),\n    BEHANCE(\"si-behance\", '\\ue9a2'),\n    BEIJINGSUBWAY(\"si-beijingsubway\", '\\ue9a3'),\n    BENTLEY(\"si-bentley\", '\\ue9a4'),\n    BIGCARTEL(\"si-bigcartel\", '\\ue9a5'),\n    BILIBILI(\"si-bilibili\", '\\ue9a6'),\n    BING(\"si-bing\", '\\ue9a7'),\n    BIT(\"si-bit\", '\\ue9a8'),\n    BITBUCKET(\"si-bitbucket\", '\\ue9a9'),\n    BITCOIN(\"si-bitcoin\", '\\ue9aa'),\n    BITDEFENDER(\"si-bitdefender\", '\\ue9ab'),\n    BITLY(\"si-bitly\", '\\ue9ac'),\n    BITRISE(\"si-bitrise\", '\\ue9ad'),\n    BITWARDEN(\"si-bitwarden\", '\\ue9ae'),\n    BLACKBERRY(\"si-blackberry\", '\\ue9af'),\n    BLENDER(\"si-blender\", '\\ue9b0'),\n    BLOGGER(\"si-blogger\", '\\ue9b1'),\n    BLOGLOVIN(\"si-bloglovin\", '\\ue9b2'),\n    BLUETOOTH(\"si-bluetooth\", '\\ue9b3'),\n    BMCSOFTWARE(\"si-bmcsoftware\", '\\ue9b4'),\n    BMW(\"si-bmw\", '\\ue9b5'),\n    BOEING(\"si-boeing\", '\\ue9b6'),\n    BOOST(\"si-boost\", '\\ue9b7'),\n    BOOTSTRAP(\"si-bootstrap\", '\\ue9b8'),\n    BOSCH(\"si-bosch\", '\\ue9b9'),\n    BOSE(\"si-bose\", '\\ue9ba'),\n    BOWER(\"si-bower\", '\\ue9bb'),\n    BOX(\"si-box\", '\\ue9bc'),\n    BRANDFOLDER(\"si-brandfolder\", '\\ue9be'),\n    BRAND_DOT_AI(\"si-brand-dot-ai\", '\\ue9bd'),\n    BRAVE(\"si-brave\", '\\ue9bf'),\n    BREAKER(\"si-breaker\", '\\ue9c0'),\n    BROADCOM(\"si-broadcom\", '\\ue9c1'),\n    BT(\"si-bt\", '\\ue9c2'),\n    BUDDY(\"si-buddy\", '\\ue9c3'),\n    BUEFY(\"si-buefy\", '\\ue9c4'),\n    BUFFER(\"si-buffer\", '\\ue9c5'),\n    BUGATTI(\"si-bugatti\", '\\ue9c6'),\n    BUGSNAG(\"si-bugsnag\", '\\ue9c7'),\n    BUILDKITE(\"si-buildkite\", '\\ue9c8'),\n    BULMA(\"si-bulma\", '\\ue9c9'),\n    BUNQ(\"si-bunq\", '\\ue9ca'),\n    BUYMEACOFFEE(\"si-buymeacoffee\", '\\ue9cb'),\n    BUZZFEED(\"si-buzzfeed\", '\\ue9cc'),\n    BYTE(\"si-byte\", '\\ue9cd'),\n    C(\"si-c\", '\\ue9ce'),\n    CAIROMETRO(\"si-cairometro\", '\\ue9cf'),\n    CAKEPHP(\"si-cakephp\", '\\ue9d0'),\n    CAMPAIGNMONITOR(\"si-campaignmonitor\", '\\ue9d1'),\n    CANONICAL(\"si-canonical\", '\\ue9d2'),\n    CANVA(\"si-canva\", '\\ue9d3'),\n    CARTHROTTLE(\"si-carthrottle\", '\\ue9d4'),\n    CARTO(\"si-carto\", '\\ue9d5'),\n    CASHAPP(\"si-cashapp\", '\\ue9d6'),\n    CASTBOX(\"si-castbox\", '\\ue9d7'),\n    CASTORAMA(\"si-castorama\", '\\ue9d8'),\n    CASTRO(\"si-castro\", '\\ue9d9'),\n    CATERPILLAR(\"si-caterpillar\", '\\ue9da'),\n    CDPROJEKT(\"si-cdprojekt\", '\\ue9db'),\n    CELERY(\"si-celery\", '\\ue9dc'),\n    CENTOS(\"si-centos\", '\\ue9dd'),\n    CESIUM(\"si-cesium\", '\\ue9de'),\n    CEVO(\"si-cevo\", '\\ue9df'),\n    CHARTMOGUL(\"si-chartmogul\", '\\ue9e0'),\n    CHASE(\"si-chase\", '\\ue9e1'),\n    CHECKMARX(\"si-checkmarx\", '\\ue9e2'),\n    CHEF(\"si-chef\", '\\ue9e3'),\n    CHOCOLATEY(\"si-chocolatey\", '\\ue9e4'),\n    CHUPACHUPS(\"si-chupachups\", '\\ue9e5'),\n    CINEMA4D(\"si-cinema4d\", '\\ue9e6'),\n    CIRCLE(\"si-circle\", '\\ue9e7'),\n    CIRCLECI(\"si-circleci\", '\\ue9e8'),\n    CIRRUSCI(\"si-cirrusci\", '\\ue9e9'),\n    CISCO(\"si-cisco\", '\\ue9ea'),\n    CITRIX(\"si-citrix\", '\\ue9eb'),\n    CITROEN(\"si-citroen\", '\\ue9ec'),\n    CIVICRM(\"si-civicrm\", '\\ue9ed'),\n    CLARIS(\"si-claris\", '\\ue9ee'),\n    CLICKUP(\"si-clickup\", '\\ue9ef'),\n    CLIQZ(\"si-cliqz\", '\\ue9f0'),\n    CLOCKIFY(\"si-clockify\", '\\ue9f1'),\n    CLOJURE(\"si-clojure\", '\\ue9f2'),\n    CLOUD66(\"si-cloud66\", '\\ue9f3'),\n    CLOUDBEES(\"si-cloudbees\", '\\ue9f4'),\n    CLOUDCANNON(\"si-cloudcannon\", '\\ue9f5'),\n    CLOUDFLARE(\"si-cloudflare\", '\\ue9f6'),\n    CLOUDSMITH(\"si-cloudsmith\", '\\ue9f7'),\n    CLUBHOUSE(\"si-clubhouse\", '\\ue9f8'),\n    CLYP(\"si-clyp\", '\\ue9f9'),\n    CMAKE(\"si-cmake\", '\\ue9fa'),\n    CNN(\"si-cnn\", '\\ue9fb'),\n    COCOAPODS(\"si-cocoapods\", '\\ue9fd'),\n    CODA(\"si-coda\", '\\ue9fe'),\n    CODACY(\"si-codacy\", '\\ue9ff'),\n    CODECADEMY(\"si-codecademy\", '\\uea00'),\n    CODECHEF(\"si-codechef\", '\\uea01'),\n    CODECLIMATE(\"si-codeclimate\", '\\uea02'),\n    CODECOV(\"si-codecov\", '\\uea03'),\n    CODEFACTOR(\"si-codefactor\", '\\uea04'),\n    CODEFORCES(\"si-codeforces\", '\\uea05'),\n    CODEIGNITER(\"si-codeigniter\", '\\uea06'),\n    CODEPEN(\"si-codepen\", '\\uea07'),\n    CODERSRANK(\"si-codersrank\", '\\uea08'),\n    CODERWALL(\"si-coderwall\", '\\uea09'),\n    CODESANDBOX(\"si-codesandbox\", '\\uea0a'),\n    CODESHIP(\"si-codeship\", '\\uea0b'),\n    CODEWARS(\"si-codewars\", '\\uea0c'),\n    CODIO(\"si-codio\", '\\uea0d'),\n    COFFEESCRIPT(\"si-coffeescript\", '\\uea0e'),\n    COINBASE(\"si-coinbase\", '\\uea0f'),\n    COMMONWORKFLOWLANGUAGE(\"si-commonworkflowlanguage\", '\\uea10'),\n    COMPOSER(\"si-composer\", '\\uea11'),\n    COMPROPAGO(\"si-compropago\", '\\uea12'),\n    CONCOURSE(\"si-concourse\", '\\uea13'),\n    CONDA_FORGE(\"si-conda-forge\", '\\uea14'),\n    CONEKTA(\"si-conekta\", '\\uea15'),\n    CONFLUENCE(\"si-confluence\", '\\uea16'),\n    CONSUL(\"si-consul\", '\\uea17'),\n    CONTACTLESSPAYMENT(\"si-contactlesspayment\", '\\uea18'),\n    CONVERTIO(\"si-convertio\", '\\uea19'),\n    CORONAENGINE(\"si-coronaengine\", '\\uea1a'),\n    CORONARENDERER(\"si-coronarenderer\", '\\uea1b'),\n    COUNTER_STRIKE(\"si-counter-strike\", '\\uea1c'),\n    COURSERA(\"si-coursera\", '\\uea1d'),\n    COVERALLS(\"si-coveralls\", '\\uea1e'),\n    CO_OP(\"si-co-op\", '\\ue9fc'),\n    CPANEL(\"si-cpanel\", '\\uea1f'),\n    CPLUSPLUS(\"si-cplusplus\", '\\uea20'),\n    CRAFTCMS(\"si-craftcms\", '\\uea21'),\n    CREATIVECOMMONS(\"si-creativecommons\", '\\uea22'),\n    CREHANA(\"si-crehana\", '\\uea23'),\n    CROWDIN(\"si-crowdin\", '\\uea24'),\n    CRUNCHBASE(\"si-crunchbase\", '\\uea25'),\n    CRUNCHYROLL(\"si-crunchyroll\", '\\uea26'),\n    CRYENGINE(\"si-cryengine\", '\\uea27'),\n    CSHARP(\"si-csharp\", '\\uea28'),\n    CSS3(\"si-css3\", '\\uea29'),\n    CSSWIZARDRY(\"si-csswizardry\", '\\uea2a'),\n    CURL(\"si-curl\", '\\uea2b'),\n    CURSEFORGE(\"si-curseforge\", '\\uea2c'),\n    CYPRESS(\"si-cypress\", '\\uea2d'),\n    D3_DOT_JS(\"si-d3-dot-js\", '\\uea2e'),\n    DAF(\"si-daf\", '\\uea2f'),\n    DAILYMOTION(\"si-dailymotion\", '\\uea30'),\n    DAIMLER(\"si-daimler\", '\\uea31'),\n    DARKREADER(\"si-darkreader\", '\\uea32'),\n    DART(\"si-dart\", '\\uea33'),\n    DASERSTE(\"si-daserste\", '\\uea34'),\n    DASH(\"si-dash\", '\\uea35'),\n    DASHLANE(\"si-dashlane\", '\\uea36'),\n    DASSAULTSYSTEMES(\"si-dassaultsystemes\", '\\uea37'),\n    DATACAMP(\"si-datacamp\", '\\uea38'),\n    DATADOG(\"si-datadog\", '\\uea39'),\n    DAZN(\"si-dazn\", '\\uea3a'),\n    DBLP(\"si-dblp\", '\\uea3b'),\n    DCENTERTAINMENT(\"si-dcentertainment\", '\\uea3c'),\n    DEBIAN(\"si-debian\", '\\uea3d'),\n    DEEPIN(\"si-deepin\", '\\uea3e'),\n    DEEZER(\"si-deezer\", '\\uea3f'),\n    DELICIOUS(\"si-delicious\", '\\uea40'),\n    DELIVEROO(\"si-deliveroo\", '\\uea41'),\n    DELL(\"si-dell\", '\\uea42'),\n    DENO(\"si-deno\", '\\uea43'),\n    DEPENDABOT(\"si-dependabot\", '\\uea44'),\n    DERSPIEGEL(\"si-derspiegel\", '\\uea45'),\n    DESIGNERNEWS(\"si-designernews\", '\\uea46'),\n    DEVIANTART(\"si-deviantart\", '\\uea48'),\n    DEVRANT(\"si-devrant\", '\\uea49'),\n    DEV_DOT_TO(\"si-dev-dot-to\", '\\uea47'),\n    DHL(\"si-dhl\", '\\uea4a'),\n    DIASPORA(\"si-diaspora\", '\\uea4b'),\n    DIGG(\"si-digg\", '\\uea4c'),\n    DIGITALOCEAN(\"si-digitalocean\", '\\uea4d'),\n    DIOR(\"si-dior\", '\\uea4e'),\n    DIRECTUS(\"si-directus\", '\\uea4f'),\n    DISCOGS(\"si-discogs\", '\\uea50'),\n    DISCORD(\"si-discord\", '\\uea51'),\n    DISCOURSE(\"si-discourse\", '\\uea52'),\n    DISCOVER(\"si-discover\", '\\uea53'),\n    DISQUS(\"si-disqus\", '\\uea54'),\n    DISROOT(\"si-disroot\", '\\uea55'),\n    DJANGO(\"si-django\", '\\uea56'),\n    DLNA(\"si-dlna\", '\\uea57'),\n    DOCKER(\"si-docker\", '\\uea58'),\n    DOCUSIGN(\"si-docusign\", '\\uea59'),\n    DOLBY(\"si-dolby\", '\\uea5a'),\n    DOT_NET(\"si-dot-net\", '\\uea5b'),\n    DOUBAN(\"si-douban\", '\\uea5c'),\n    DRAUGIEM_DOT_LV(\"si-draugiem-dot-lv\", '\\uea5d'),\n    DRIBBBLE(\"si-dribbble\", '\\uea5e'),\n    DRONE(\"si-drone\", '\\uea5f'),\n    DROOBLE(\"si-drooble\", '\\uea60'),\n    DROPBOX(\"si-dropbox\", '\\uea61'),\n    DRUPAL(\"si-drupal\", '\\uea62'),\n    DSAUTOMOBILES(\"si-dsautomobiles\", '\\uea63'),\n    DTUBE(\"si-dtube\", '\\uea64'),\n    DUCKDUCKGO(\"si-duckduckgo\", '\\uea65'),\n    DUNKED(\"si-dunked\", '\\uea66'),\n    DUOLINGO(\"si-duolingo\", '\\uea67'),\n    DYNAMICS365(\"si-dynamics365\", '\\uea68'),\n    DYNATRACE(\"si-dynatrace\", '\\uea69'),\n    EA(\"si-ea\", '\\uea6a'),\n    EASYJET(\"si-easyjet\", '\\uea6b'),\n    EBAY(\"si-ebay\", '\\uea6c'),\n    ECLIPSEIDE(\"si-eclipseide\", '\\uea6d'),\n    ECLIPSEMOSQUITTO(\"si-eclipsemosquitto\", '\\uea6e'),\n    EGNYTE(\"si-egnyte\", '\\uea6f'),\n    ELASTIC(\"si-elastic\", '\\uea70'),\n    ELASTICCLOUD(\"si-elasticcloud\", '\\uea71'),\n    ELASTICSEARCH(\"si-elasticsearch\", '\\uea72'),\n    ELASTICSTACK(\"si-elasticstack\", '\\uea73'),\n    ELECTRON(\"si-electron\", '\\uea74'),\n    ELEMENTARY(\"si-elementary\", '\\uea75'),\n    ELEVENTY(\"si-eleventy\", '\\uea76'),\n    ELIXIR(\"si-elixir\", '\\uea77'),\n    ELJUEVES(\"si-eljueves\", '\\uea78'),\n    ELLO(\"si-ello\", '\\uea79'),\n    ELM(\"si-elm\", '\\uea7a'),\n    ELSEVIER(\"si-elsevier\", '\\uea7b'),\n    EMBARCADERO(\"si-embarcadero\", '\\uea7c'),\n    EMBER_DOT_JS(\"si-ember-dot-js\", '\\uea7d'),\n    EMBY(\"si-emby\", '\\uea7e'),\n    EMLAKJET(\"si-emlakjet\", '\\uea7f'),\n    EMPIREKRED(\"si-empirekred\", '\\uea80'),\n    ENVATO(\"si-envato\", '\\uea81'),\n    EPEL(\"si-epel\", '\\uea82'),\n    EPICGAMES(\"si-epicgames\", '\\uea83'),\n    EPSON(\"si-epson\", '\\uea84'),\n    ERLANG(\"si-erlang\", '\\uea85'),\n    ESEA(\"si-esea\", '\\uea86'),\n    ESLGAMING(\"si-eslgaming\", '\\uea87'),\n    ESLINT(\"si-eslint\", '\\uea88'),\n    ETHEREUM(\"si-ethereum\", '\\uea89'),\n    ETSY(\"si-etsy\", '\\uea8a'),\n    EVENTBRITE(\"si-eventbrite\", '\\uea8b'),\n    EVENTSTORE(\"si-eventstore\", '\\uea8c'),\n    EVERNOTE(\"si-evernote\", '\\uea8d'),\n    EVERPLACES(\"si-everplaces\", '\\uea8e'),\n    EVRY(\"si-evry\", '\\uea8f'),\n    EXERCISM(\"si-exercism\", '\\uea90'),\n    EXPERTSEXCHANGE(\"si-expertsexchange\", '\\uea91'),\n    EXPO(\"si-expo\", '\\uea92'),\n    EYEEM(\"si-eyeem\", '\\uea93'),\n    FACEBOOK(\"si-facebook\", '\\uea96'),\n    FACEBOOKGAMING(\"si-facebookgaming\", '\\uea97'),\n    FACEBOOKLIVE(\"si-facebooklive\", '\\uea98'),\n    FACEIT(\"si-faceit\", '\\uea99'),\n    FANDANGO(\"si-fandango\", '\\uea9a'),\n    FANDOM(\"si-fandom\", '\\uea9b'),\n    FARFETCH(\"si-farfetch\", '\\uea9c'),\n    FASTAPI(\"si-fastapi\", '\\uea9d'),\n    FASTIFY(\"si-fastify\", '\\uea9e'),\n    FASTLY(\"si-fastly\", '\\uea9f'),\n    FAVRO(\"si-favro\", '\\ueaa0'),\n    FEATHUB(\"si-feathub\", '\\ueaa1'),\n    FEDORA(\"si-fedora\", '\\ueaa2'),\n    FEDRAMP(\"si-fedramp\", '\\ueaa3'),\n    FEEDLY(\"si-feedly\", '\\ueaa4'),\n    FERRARI(\"si-ferrari\", '\\ueaa5'),\n    FERRARIN_DOT_V_DOT(\"si-ferrarin-dot-v-dot\", '\\ueaa6'),\n    FIAT(\"si-fiat\", '\\ueaa7'),\n    FIDOALLIANCE(\"si-fidoalliance\", '\\ueaa8'),\n    FIFA(\"si-fifa\", '\\ueaa9'),\n    FIGMA(\"si-figma\", '\\ueaaa'),\n    FIGSHARE(\"si-figshare\", '\\ueaab'),\n    FILA(\"si-fila\", '\\ueaac'),\n    FILEZILLA(\"si-filezilla\", '\\ueaad'),\n    FIREBASE(\"si-firebase\", '\\ueaae'),\n    FIREFOX(\"si-firefox\", '\\ueaaf'),\n    FIREFOXBROWSER(\"si-firefoxbrowser\", '\\ueab0'),\n    FIRST(\"si-first\", '\\ueab1'),\n    FITBIT(\"si-fitbit\", '\\ueab2'),\n    FITE(\"si-fite\", '\\ueab3'),\n    FIVERR(\"si-fiverr\", '\\ueab4'),\n    FLASK(\"si-flask\", '\\ueab5'),\n    FLATHUB(\"si-flathub\", '\\ueab6'),\n    FLATTR(\"si-flattr\", '\\ueab7'),\n    FLICKR(\"si-flickr\", '\\ueab8'),\n    FLIPBOARD(\"si-flipboard\", '\\ueab9'),\n    FLOATPLANE(\"si-floatplane\", '\\ueaba'),\n    FLOOD(\"si-flood\", '\\ueabb'),\n    FLUENTD(\"si-fluentd\", '\\ueabc'),\n    FLUTTER(\"si-flutter\", '\\ueabd'),\n    FNAC(\"si-fnac\", '\\ueabe'),\n    FONTAWESOME(\"si-fontawesome\", '\\ueabf'),\n    FORD(\"si-ford\", '\\ueac0'),\n    FORMSTACK(\"si-formstack\", '\\ueac1'),\n    FORTINET(\"si-fortinet\", '\\ueac2'),\n    FOSSA(\"si-fossa\", '\\ueac3'),\n    FOSSILSCM(\"si-fossilscm\", '\\ueac4'),\n    FOURSQUARE(\"si-foursquare\", '\\ueac5'),\n    FRAMER(\"si-framer\", '\\ueac6'),\n    FREEBSD(\"si-freebsd\", '\\ueac7'),\n    FREECODECAMP(\"si-freecodecamp\", '\\ueac8'),\n    FREEDESKTOP_DOT_ORG(\"si-freedesktop-dot-org\", '\\ueac9'),\n    FREELANCER(\"si-freelancer\", '\\ueaca'),\n    FUJIFILM(\"si-fujifilm\", '\\ueacb'),\n    FUJITSU(\"si-fujitsu\", '\\ueacc'),\n    FURAFFINITY(\"si-furaffinity\", '\\ueacd'),\n    FURRYNETWORK(\"si-furrynetwork\", '\\ueace'),\n    F_DROID(\"si-f-droid\", '\\uea94'),\n    F_SECURE(\"si-f-secure\", '\\uea95'),\n    G2A(\"si-g2a\", '\\ueacf'),\n    GARMIN(\"si-garmin\", '\\uead0'),\n    GATLING(\"si-gatling\", '\\uead1'),\n    GATSBY(\"si-gatsby\", '\\uead2'),\n    GAUGES(\"si-gauges\", '\\uead3'),\n    GEEKSFORGEEKS(\"si-geeksforgeeks\", '\\uead4'),\n    GENERALMOTORS(\"si-generalmotors\", '\\uead5'),\n    GENIUS(\"si-genius\", '\\uead6'),\n    GENTOO(\"si-gentoo\", '\\uead7'),\n    GEOCACHING(\"si-geocaching\", '\\uead8'),\n    GERRIT(\"si-gerrit\", '\\uead9'),\n    GHOST(\"si-ghost\", '\\ueada'),\n    GHOSTERY(\"si-ghostery\", '\\ueadb'),\n    GIMP(\"si-gimp\", '\\ueadc'),\n    GIPHY(\"si-giphy\", '\\ueadd'),\n    GIT(\"si-git\", '\\ueade'),\n    GITEA(\"si-gitea\", '\\ueadf'),\n    GITHUB(\"si-github\", '\\ueae0'),\n    GITHUBACTIONS(\"si-githubactions\", '\\ueae1'),\n    GITKRAKEN(\"si-gitkraken\", '\\ueae2'),\n    GITLAB(\"si-gitlab\", '\\ueae3'),\n    GITPOD(\"si-gitpod\", '\\ueae4'),\n    GITTER(\"si-gitter\", '\\ueae5'),\n    GLASSDOOR(\"si-glassdoor\", '\\ueae6'),\n    GLITCH(\"si-glitch\", '\\ueae7'),\n    GMAIL(\"si-gmail\", '\\ueae8'),\n    GNOME(\"si-gnome\", '\\ueae9'),\n    GNU(\"si-gnu\", '\\ueaea'),\n    GNUBASH(\"si-gnubash\", '\\ueaeb'),\n    GNUEMACS(\"si-gnuemacs\", '\\ueaec'),\n    GNUICECAT(\"si-gnuicecat\", '\\ueaed'),\n    GNUPRIVACYGUARD(\"si-gnuprivacyguard\", '\\ueaee'),\n    GNUSOCIAL(\"si-gnusocial\", '\\ueaef'),\n    GO(\"si-go\", '\\ueaf0'),\n    GODOTENGINE(\"si-godotengine\", '\\ueaf1'),\n    GOFUNDME(\"si-gofundme\", '\\ueaf2'),\n    GOG_DOT_COM(\"si-gog-dot-com\", '\\ueaf3'),\n    GOLDENLINE(\"si-goldenline\", '\\ueaf4'),\n    GOODREADS(\"si-goodreads\", '\\ueaf5'),\n    GOOGLE(\"si-google\", '\\ueaf6'),\n    GOOGLEADS(\"si-googleads\", '\\ueaf7'),\n    GOOGLEADSENSE(\"si-googleadsense\", '\\ueaf8'),\n    GOOGLEANALYTICS(\"si-googleanalytics\", '\\ueaf9'),\n    GOOGLEASSISTANT(\"si-googleassistant\", '\\ueafa'),\n    GOOGLECALENDAR(\"si-googlecalendar\", '\\ueafb'),\n    GOOGLECARDBOARD(\"si-googlecardboard\", '\\ueafc'),\n    GOOGLECAST(\"si-googlecast\", '\\ueafd'),\n    GOOGLECHROME(\"si-googlechrome\", '\\ueafe'),\n    GOOGLECLASSROOM(\"si-googleclassroom\", '\\ueaff'),\n    GOOGLECLOUD(\"si-googlecloud\", '\\ueb00'),\n    GOOGLEDRIVE(\"si-googledrive\", '\\ueb01'),\n    GOOGLEEARTH(\"si-googleearth\", '\\ueb02'),\n    GOOGLEFIT(\"si-googlefit\", '\\ueb03'),\n    GOOGLEHANGOUTS(\"si-googlehangouts\", '\\ueb04'),\n    GOOGLEHANGOUTSCHAT(\"si-googlehangoutschat\", '\\ueb05'),\n    GOOGLEHANGOUTSMEET(\"si-googlehangoutsmeet\", '\\ueb06'),\n    GOOGLEKEEP(\"si-googlekeep\", '\\ueb07'),\n    GOOGLELENS(\"si-googlelens\", '\\ueb08'),\n    GOOGLEMAPS(\"si-googlemaps\", '\\ueb09'),\n    GOOGLEMESSAGES(\"si-googlemessages\", '\\ueb0a'),\n    GOOGLEMYBUSINESS(\"si-googlemybusiness\", '\\ueb0b'),\n    GOOGLENEARBY(\"si-googlenearby\", '\\ueb0c'),\n    GOOGLENEWS(\"si-googlenews\", '\\ueb0d'),\n    GOOGLEPAY(\"si-googlepay\", '\\ueb0e'),\n    GOOGLEPLAY(\"si-googleplay\", '\\ueb0f'),\n    GOOGLEPODCASTS(\"si-googlepodcasts\", '\\ueb10'),\n    GOOGLESCHOLAR(\"si-googlescholar\", '\\ueb11'),\n    GOOGLESEARCHCONSOLE(\"si-googlesearchconsole\", '\\ueb12'),\n    GOOGLESHEETS(\"si-googlesheets\", '\\ueb13'),\n    GOOGLESTREETVIEW(\"si-googlestreetview\", '\\ueb14'),\n    GOOGLETAGMANAGER(\"si-googletagmanager\", '\\ueb15'),\n    GOOGLETRANSLATE(\"si-googletranslate\", '\\ueb16'),\n    GOV_DOT_UK(\"si-gov-dot-uk\", '\\ueb17'),\n    GRADLE(\"si-gradle\", '\\ueb18'),\n    GRAFANA(\"si-grafana\", '\\ueb19'),\n    GRAPHCOOL(\"si-graphcool\", '\\ueb1a'),\n    GRAPHQL(\"si-graphql\", '\\ueb1b'),\n    GRAV(\"si-grav\", '\\ueb1c'),\n    GRAVATAR(\"si-gravatar\", '\\ueb1d'),\n    GREENSOCK(\"si-greensock\", '\\ueb1e'),\n    GRIDSOME(\"si-gridsome\", '\\ueb1f'),\n    GROOVY(\"si-groovy\", '\\ueb20'),\n    GROUPON(\"si-groupon\", '\\ueb21'),\n    GRUNT(\"si-grunt\", '\\ueb22'),\n    GUANGZHOUMETRO(\"si-guangzhoumetro\", '\\ueb23'),\n    GULP(\"si-gulp\", '\\ueb24'),\n    GUMROAD(\"si-gumroad\", '\\ueb25'),\n    GUMTREE(\"si-gumtree\", '\\ueb26'),\n    GUTENBERG(\"si-gutenberg\", '\\ueb27'),\n    HABR(\"si-habr\", '\\ueb28'),\n    HACKADAY(\"si-hackaday\", '\\ueb29'),\n    HACKCLUB(\"si-hackclub\", '\\ueb2a'),\n    HACKEREARTH(\"si-hackerearth\", '\\ueb2b'),\n    HACKERONE(\"si-hackerone\", '\\ueb2c'),\n    HACKERRANK(\"si-hackerrank\", '\\ueb2d'),\n    HACKHANDS(\"si-hackhands\", '\\ueb2e'),\n    HACKSTER(\"si-hackster\", '\\ueb2f'),\n    HAPPYCOW(\"si-happycow\", '\\ueb30'),\n    HARBOR(\"si-harbor\", '\\ueb31'),\n    HASHNODE(\"si-hashnode\", '\\ueb32'),\n    HASKELL(\"si-haskell\", '\\ueb33'),\n    HATENABOOKMARK(\"si-hatenabookmark\", '\\ueb34'),\n    HAVEIBEENPWNED(\"si-haveibeenpwned\", '\\ueb35'),\n    HAXE(\"si-haxe\", '\\ueb36'),\n    HBO(\"si-hbo\", '\\ueb37'),\n    HCL(\"si-hcl\", '\\ueb38'),\n    HELLOFRESH(\"si-hellofresh\", '\\ueb39'),\n    HELLYHANSEN(\"si-hellyhansen\", '\\ueb3a'),\n    HELM(\"si-helm\", '\\ueb3b'),\n    HERE(\"si-here\", '\\ueb3c'),\n    HEROKU(\"si-heroku\", '\\ueb3d'),\n    HEXO(\"si-hexo\", '\\ueb3e'),\n    HEY(\"si-hey\", '\\ueb3f'),\n    HIGHLY(\"si-highly\", '\\ueb40'),\n    HILTON(\"si-hilton\", '\\ueb41'),\n    HIPCHAT(\"si-hipchat\", '\\ueb42'),\n    HITACHI(\"si-hitachi\", '\\ueb43'),\n    HIVE(\"si-hive\", '\\ueb44'),\n    HOCKEYAPP(\"si-hockeyapp\", '\\ueb45'),\n    HOMEADVISOR(\"si-homeadvisor\", '\\ueb46'),\n    HOMEASSISTANT(\"si-homeassistant\", '\\ueb47'),\n    HOMEBREW(\"si-homebrew\", '\\ueb48'),\n    HOMIFY(\"si-homify\", '\\ueb49'),\n    HONDA(\"si-honda\", '\\ueb4a'),\n    HOOTSUITE(\"si-hootsuite\", '\\ueb4b'),\n    HOTELS_DOT_COM(\"si-hotels-dot-com\", '\\ueb4c'),\n    HOUDINI(\"si-houdini\", '\\ueb4d'),\n    HOUZZ(\"si-houzz\", '\\ueb4e'),\n    HP(\"si-hp\", '\\ueb4f'),\n    HTML5(\"si-html5\", '\\ueb50'),\n    HTMLACADEMY(\"si-htmlacademy\", '\\ueb51'),\n    HUAWEI(\"si-huawei\", '\\ueb52'),\n    HUBSPOT(\"si-hubspot\", '\\ueb53'),\n    HUGO(\"si-hugo\", '\\ueb54'),\n    HULU(\"si-hulu\", '\\ueb55'),\n    HUMBLEBUNDLE(\"si-humblebundle\", '\\ueb56'),\n    HURRIYETEMLAK(\"si-hurriyetemlak\", '\\ueb57'),\n    HUSQVARNA(\"si-husqvarna\", '\\ueb58'),\n    HYPOTHESIS(\"si-hypothesis\", '\\ueb59'),\n    HYUNDAI(\"si-hyundai\", '\\ueb5a'),\n    IATA(\"si-iata\", '\\ueb5b'),\n    IBEACON(\"si-ibeacon\", '\\ueb5c'),\n    IBM(\"si-ibm\", '\\ueb5d'),\n    ICLOUD(\"si-icloud\", '\\ueb5e'),\n    ICOMOON(\"si-icomoon\", '\\ueb5f'),\n    ICON(\"si-icon\", '\\ueb60'),\n    ICONFINDER(\"si-iconfinder\", '\\ueb61'),\n    ICONIFY(\"si-iconify\", '\\ueb62'),\n    ICONJAR(\"si-iconjar\", '\\ueb63'),\n    ICQ(\"si-icq\", '\\ueb64'),\n    IDEAL(\"si-ideal\", '\\ueb65'),\n    IFIXIT(\"si-ifixit\", '\\ueb66'),\n    IFOOD(\"si-ifood\", '\\ueb67'),\n    IFTTT(\"si-ifttt\", '\\ueb68'),\n    IHEARTRADIO(\"si-iheartradio\", '\\ueb69'),\n    IMDB(\"si-imdb\", '\\ueb6a'),\n    IMGUR(\"si-imgur\", '\\ueb6b'),\n    INDEED(\"si-indeed\", '\\ueb6c'),\n    INFLUXDB(\"si-influxdb\", '\\ueb6d'),\n    INKSCAPE(\"si-inkscape\", '\\ueb6e'),\n    INSOMNIA(\"si-insomnia\", '\\ueb6f'),\n    INSTACART(\"si-instacart\", '\\ueb70'),\n    INSTAGRAM(\"si-instagram\", '\\ueb71'),\n    INSTAPAPER(\"si-instapaper\", '\\ueb72'),\n    INSTRUCTABLES(\"si-instructables\", '\\ueb73'),\n    INTEL(\"si-intel\", '\\ueb74'),\n    INTELLIJIDEA(\"si-intellijidea\", '\\ueb75'),\n    INTERCOM(\"si-intercom\", '\\ueb76'),\n    INTERNETARCHIVE(\"si-internetarchive\", '\\ueb77'),\n    INTERNETEXPLORER(\"si-internetexplorer\", '\\ueb78'),\n    INVISION(\"si-invision\", '\\ueb79'),\n    INVOICENINJA(\"si-invoiceninja\", '\\ueb7a'),\n    IOBROKER(\"si-iobroker\", '\\ueb7b'),\n    IONIC(\"si-ionic\", '\\ueb7c'),\n    IOS(\"si-ios\", '\\ueb7d'),\n    IPFS(\"si-ipfs\", '\\ueb7e'),\n    ISSUU(\"si-issuu\", '\\ueb7f'),\n    ITCH_DOT_IO(\"si-itch-dot-io\", '\\ueb80'),\n    ITUNES(\"si-itunes\", '\\ueb81'),\n    IVECO(\"si-iveco\", '\\ueb82'),\n    JABBER(\"si-jabber\", '\\ueb83'),\n    JAMBOARD(\"si-jamboard\", '\\ueb84'),\n    JAMESON(\"si-jameson\", '\\ueb85'),\n    JASMINE(\"si-jasmine\", '\\ueb86'),\n    JAVA(\"si-java\", '\\ueb87'),\n    JAVASCRIPT(\"si-javascript\", '\\ueb88'),\n    JBL(\"si-jbl\", '\\ueb89'),\n    JCB(\"si-jcb\", '\\ueb8a'),\n    JEEP(\"si-jeep\", '\\ueb8b'),\n    JEKYLL(\"si-jekyll\", '\\ueb8c'),\n    JENKINS(\"si-jenkins\", '\\ueb8d'),\n    JENKINSX(\"si-jenkinsx\", '\\ueb8e'),\n    JEST(\"si-jest\", '\\ueb8f'),\n    JET(\"si-jet\", '\\ueb90'),\n    JETBRAINS(\"si-jetbrains\", '\\ueb91'),\n    JFROG(\"si-jfrog\", '\\ueb92'),\n    JFROGBINTRAY(\"si-jfrogbintray\", '\\ueb93'),\n    JINJA(\"si-jinja\", '\\ueb94'),\n    JIRA(\"si-jira\", '\\ueb95'),\n    JIRASOFTWARE(\"si-jirasoftware\", '\\ueb96'),\n    JOHNDEERE(\"si-johndeere\", '\\ueb97'),\n    JOOMLA(\"si-joomla\", '\\ueb98'),\n    JPEG(\"si-jpeg\", '\\ueb99'),\n    JQUERY(\"si-jquery\", '\\ueb9a'),\n    JRGROUP(\"si-jrgroup\", '\\ueb9b'),\n    JSDELIVR(\"si-jsdelivr\", '\\ueb9c'),\n    JSFIDDLE(\"si-jsfiddle\", '\\ueb9d'),\n    JSON(\"si-json\", '\\ueb9e'),\n    JSONWEBTOKENS(\"si-jsonwebtokens\", '\\ueb9f'),\n    JULIA(\"si-julia\", '\\ueba0'),\n    JUPYTER(\"si-jupyter\", '\\ueba1'),\n    JUSTEAT(\"si-justeat\", '\\ueba2'),\n    JUSTGIVING(\"si-justgiving\", '\\ueba3'),\n    KAGGLE(\"si-kaggle\", '\\ueba4'),\n    KAHOOT(\"si-kahoot\", '\\ueba5'),\n    KAIOS(\"si-kaios\", '\\ueba6'),\n    KAKAO(\"si-kakao\", '\\ueba7'),\n    KARLSRUHERVERKEHRSVERBUND(\"si-karlsruherverkehrsverbund\", '\\ueba8'),\n    KASPERSKY(\"si-kaspersky\", '\\ueba9'),\n    KATANA(\"si-katana\", '\\uebaa'),\n    KDE(\"si-kde\", '\\uebab'),\n    KEEPASSXC(\"si-keepassxc\", '\\uebac'),\n    KENTICO(\"si-kentico\", '\\uebad'),\n    KERAS(\"si-keras\", '\\uebae'),\n    KEYBASE(\"si-keybase\", '\\uebaf'),\n    KEYCDN(\"si-keycdn\", '\\uebb0'),\n    KHANACADEMY(\"si-khanacademy\", '\\uebb1'),\n    KHRONOSGROUP(\"si-khronosgroup\", '\\uebb2'),\n    KIA(\"si-kia\", '\\uebb3'),\n    KIBANA(\"si-kibana\", '\\uebb4'),\n    KICKSTARTER(\"si-kickstarter\", '\\uebb5'),\n    KIK(\"si-kik\", '\\uebb6'),\n    KIRBY(\"si-kirby\", '\\uebb7'),\n    KLM(\"si-klm\", '\\uebb8'),\n    KLOUT(\"si-klout\", '\\uebb9'),\n    KNOWN(\"si-known\", '\\uebba'),\n    KODI(\"si-kodi\", '\\uebbc'),\n    KODING(\"si-koding\", '\\uebbd'),\n    KOFAX(\"si-kofax\", '\\uebbe'),\n    KOMOOT(\"si-komoot\", '\\uebbf'),\n    KOTLIN(\"si-kotlin\", '\\uebc0'),\n    KO_FI(\"si-ko-fi\", '\\uebbb'),\n    KRITA(\"si-krita\", '\\uebc1'),\n    KTM(\"si-ktm\", '\\uebc2'),\n    KUBERNETES(\"si-kubernetes\", '\\uebc3'),\n    KYOCERA(\"si-kyocera\", '\\uebc4'),\n    LABVIEW(\"si-labview\", '\\uebc5'),\n    LAMBORGHINI(\"si-lamborghini\", '\\uebc6'),\n    LANDROVER(\"si-landrover\", '\\uebc7'),\n    LARAVEL(\"si-laravel\", '\\uebc8'),\n    LARAVELHORIZON(\"si-laravelhorizon\", '\\uebc9'),\n    LARAVELNOVA(\"si-laravelnova\", '\\uebca'),\n    LASTPASS(\"si-lastpass\", '\\uebcc'),\n    LAST_DOT_FM(\"si-last-dot-fm\", '\\uebcb'),\n    LATEX(\"si-latex\", '\\uebcd'),\n    LAUNCHPAD(\"si-launchpad\", '\\uebce'),\n    LBRY(\"si-lbry\", '\\uebcf'),\n    LEAFLET(\"si-leaflet\", '\\uebd0'),\n    LEANPUB(\"si-leanpub\", '\\uebd1'),\n    LEETCODE(\"si-leetcode\", '\\uebd2'),\n    LENOVO(\"si-lenovo\", '\\uebd3'),\n    LETSENCRYPT(\"si-letsencrypt\", '\\uebd4'),\n    LETTERBOXD(\"si-letterboxd\", '\\uebd5'),\n    LG(\"si-lg\", '\\uebd6'),\n    LGTM(\"si-lgtm\", '\\uebd7'),\n    LIBERAPAY(\"si-liberapay\", '\\uebd8'),\n    LIBRARYTHING(\"si-librarything\", '\\uebd9'),\n    LIBREOFFICE(\"si-libreoffice\", '\\uebda'),\n    LIBUV(\"si-libuv\", '\\uebdb'),\n    LIGHTHOUSE(\"si-lighthouse\", '\\uebdc'),\n    LINE(\"si-line\", '\\uebdd'),\n    LINEAGEOS(\"si-lineageos\", '\\uebde'),\n    LINEWEBTOON(\"si-linewebtoon\", '\\uebdf'),\n    LINKEDIN(\"si-linkedin\", '\\uebe0'),\n    LINODE(\"si-linode\", '\\uebe1'),\n    LINUX(\"si-linux\", '\\uebe2'),\n    LINUXFOUNDATION(\"si-linuxfoundation\", '\\uebe3'),\n    LINUXMINT(\"si-linuxmint\", '\\uebe4'),\n    LITECOIN(\"si-litecoin\", '\\uebe5'),\n    LIVEJOURNAL(\"si-livejournal\", '\\uebe6'),\n    LIVESTREAM(\"si-livestream\", '\\uebe7'),\n    LLVM(\"si-llvm\", '\\uebe8'),\n    LMMS(\"si-lmms\", '\\uebe9'),\n    LOGITECH(\"si-logitech\", '\\uebea'),\n    LOGMEIN(\"si-logmein\", '\\uebeb'),\n    LOGSTASH(\"si-logstash\", '\\uebec'),\n    LOOM(\"si-loom\", '\\uebed'),\n    LOOP(\"si-loop\", '\\uebee'),\n    LOSPEC(\"si-lospec\", '\\uebef'),\n    LUA(\"si-lua\", '\\uebf0'),\n    LUBUNTU(\"si-lubuntu\", '\\uebf1'),\n    LUFTHANSA(\"si-lufthansa\", '\\uebf2'),\n    LUMEN(\"si-lumen\", '\\uebf3'),\n    LYFT(\"si-lyft\", '\\uebf4'),\n    MAAS(\"si-maas\", '\\uebf5'),\n    MACYS(\"si-macys\", '\\uebf6'),\n    MAGENTO(\"si-magento\", '\\uebf7'),\n    MAGISK(\"si-magisk\", '\\uebf8'),\n    MAILCHIMP(\"si-mailchimp\", '\\uebfa'),\n    MAIL_DOT_RU(\"si-mail-dot-ru\", '\\uebf9'),\n    MAKERBOT(\"si-makerbot\", '\\uebfb'),\n    MAN(\"si-man\", '\\uebfc'),\n    MANAGEIQ(\"si-manageiq\", '\\uebfd'),\n    MANJARO(\"si-manjaro\", '\\uebfe'),\n    MAPBOX(\"si-mapbox\", '\\uebff'),\n    MARIADB(\"si-mariadb\", '\\uec00'),\n    MARIADBFOUNDATION(\"si-mariadbfoundation\", '\\uec01'),\n    MARKDOWN(\"si-markdown\", '\\uec02'),\n    MARKETO(\"si-marketo\", '\\uec03'),\n    MARRIOTT(\"si-marriott\", '\\uec04'),\n    MASERATI(\"si-maserati\", '\\uec05'),\n    MASTERCARD(\"si-mastercard\", '\\uec06'),\n    MASTODON(\"si-mastodon\", '\\uec07'),\n    MATERIALDESIGN(\"si-materialdesign\", '\\uec09'),\n    MATERIALDESIGNICONS(\"si-materialdesignicons\", '\\uec0a'),\n    MATERIAL_UI(\"si-material-ui\", '\\uec08'),\n    MATHWORKS(\"si-mathworks\", '\\uec0b'),\n    MATRIX(\"si-matrix\", '\\uec0c'),\n    MATTERMOST(\"si-mattermost\", '\\uec0d'),\n    MATTERNET(\"si-matternet\", '\\uec0e'),\n    MAYTAG(\"si-maytag\", '\\uec0f'),\n    MAZDA(\"si-mazda\", '\\uec10'),\n    MCAFEE(\"si-mcafee\", '\\uec11'),\n    MCDONALDS(\"si-mcdonalds\", '\\uec12'),\n    MDNWEBDOCS(\"si-mdnwebdocs\", '\\uec13'),\n    MEDIAFIRE(\"si-mediafire\", '\\uec14'),\n    MEDIATEMPLE(\"si-mediatemple\", '\\uec15'),\n    MEDIUM(\"si-medium\", '\\uec16'),\n    MEETUP(\"si-meetup\", '\\uec17'),\n    MEGA(\"si-mega\", '\\uec18'),\n    MENDELEY(\"si-mendeley\", '\\uec19'),\n    MERCEDES(\"si-mercedes\", '\\uec1a'),\n    MESSENGER(\"si-messenger\", '\\uec1b'),\n    METEOR(\"si-meteor\", '\\uec1c'),\n    METRODELACIUDADDEMEXICO(\"si-metrodelaciudaddemexico\", '\\uec1d'),\n    METRODEMADRID(\"si-metrodemadrid\", '\\uec1e'),\n    METRODEPARIS(\"si-metrodeparis\", '\\uec1f'),\n    MICROBIT(\"si-microbit\", '\\uec21'),\n    MICROGENETICS(\"si-microgenetics\", '\\uec22'),\n    MICROSOFT(\"si-microsoft\", '\\uec23'),\n    MICROSOFTACADEMIC(\"si-microsoftacademic\", '\\uec24'),\n    MICROSOFTACCESS(\"si-microsoftaccess\", '\\uec25'),\n    MICROSOFTAZURE(\"si-microsoftazure\", '\\uec26'),\n    MICROSOFTEDGE(\"si-microsoftedge\", '\\uec27'),\n    MICROSOFTEXCEL(\"si-microsoftexcel\", '\\uec28'),\n    MICROSOFTEXCHANGE(\"si-microsoftexchange\", '\\uec29'),\n    MICROSOFTOFFICE(\"si-microsoftoffice\", '\\uec2a'),\n    MICROSOFTONEDRIVE(\"si-microsoftonedrive\", '\\uec2b'),\n    MICROSOFTONENOTE(\"si-microsoftonenote\", '\\uec2c'),\n    MICROSOFTOUTLOOK(\"si-microsoftoutlook\", '\\uec2d'),\n    MICROSOFTPOWERPOINT(\"si-microsoftpowerpoint\", '\\uec2e'),\n    MICROSOFTSHAREPOINT(\"si-microsoftsharepoint\", '\\uec2f'),\n    MICROSOFTSQLSERVER(\"si-microsoftsqlserver\", '\\uec30'),\n    MICROSOFTTEAMS(\"si-microsoftteams\", '\\uec31'),\n    MICROSOFTVISIO(\"si-microsoftvisio\", '\\uec32'),\n    MICROSOFTWORD(\"si-microsoftword\", '\\uec33'),\n    MICROSTRATEGY(\"si-microstrategy\", '\\uec34'),\n    MICRO_DOT_BLOG(\"si-micro-dot-blog\", '\\uec20'),\n    MIDI(\"si-midi\", '\\uec35'),\n    MINDS(\"si-minds\", '\\uec36'),\n    MINECRAFT(\"si-minecraft\", '\\uec37'),\n    MINETEST(\"si-minetest\", '\\uec38'),\n    MINI(\"si-mini\", '\\uec39'),\n    MINUTEMAILER(\"si-minutemailer\", '\\uec3a'),\n    MITSUBISHI(\"si-mitsubishi\", '\\uec3b'),\n    MIX(\"si-mix\", '\\uec3c'),\n    MIXCLOUD(\"si-mixcloud\", '\\uec3d'),\n    MIXER(\"si-mixer\", '\\uec3e'),\n    MOCHA(\"si-mocha\", '\\uec3f'),\n    MOJANGSTUDIOS(\"si-mojangstudios\", '\\uec40'),\n    MOLECULER(\"si-moleculer\", '\\uec41'),\n    MONERO(\"si-monero\", '\\uec42'),\n    MONGODB(\"si-mongodb\", '\\uec43'),\n    MONKEYTIE(\"si-monkeytie\", '\\uec44'),\n    MONOGRAM(\"si-monogram\", '\\uec45'),\n    MONSTER(\"si-monster\", '\\uec46'),\n    MONZO(\"si-monzo\", '\\uec47'),\n    MOO(\"si-moo\", '\\uec48'),\n    MOSCOWMETRO(\"si-moscowmetro\", '\\uec49'),\n    MOZILLA(\"si-mozilla\", '\\uec4a'),\n    MTA(\"si-mta\", '\\uec4b'),\n    MTR(\"si-mtr\", '\\uec4c'),\n    MUSESCORE(\"si-musescore\", '\\uec4d'),\n    MUSICBRAINZ(\"si-musicbrainz\", '\\uec4e'),\n    MXLINUX(\"si-mxlinux\", '\\uec4f'),\n    MYSPACE(\"si-myspace\", '\\uec50'),\n    MYSQL(\"si-mysql\", '\\uec51'),\n    N26(\"si-n26\", '\\uec52'),\n    NATIVESCRIPT(\"si-nativescript\", '\\uec53'),\n    NBB(\"si-nbb\", '\\uec54'),\n    NDR(\"si-ndr\", '\\uec55'),\n    NEC(\"si-nec\", '\\uec56'),\n    NEO4J(\"si-neo4j\", '\\uec57'),\n    NEOVIM(\"si-neovim\", '\\uec58'),\n    NESTJS(\"si-nestjs\", '\\uec59'),\n    NETAPP(\"si-netapp\", '\\uec5a'),\n    NETFLIX(\"si-netflix\", '\\uec5b'),\n    NETLIFY(\"si-netlify\", '\\uec5c'),\n    NEWRELIC(\"si-newrelic\", '\\uec5d'),\n    NEWYORKTIMES(\"si-newyorktimes\", '\\uec5e'),\n    NEXTCLOUD(\"si-nextcloud\", '\\uec60'),\n    NEXTDOOR(\"si-nextdoor\", '\\uec61'),\n    NEXT_DOT_JS(\"si-next-dot-js\", '\\uec5f'),\n    NFC(\"si-nfc\", '\\uec62'),\n    NGINX(\"si-nginx\", '\\uec63'),\n    NICONICO(\"si-niconico\", '\\uec64'),\n    NIM(\"si-nim\", '\\uec65'),\n    NINTENDO(\"si-nintendo\", '\\uec66'),\n    NINTENDO3DS(\"si-nintendo3ds\", '\\uec67'),\n    NINTENDOGAMECUBE(\"si-nintendogamecube\", '\\uec68'),\n    NINTENDONETWORK(\"si-nintendonetwork\", '\\uec69'),\n    NINTENDOSWITCH(\"si-nintendoswitch\", '\\uec6a'),\n    NISSAN(\"si-nissan\", '\\uec6b'),\n    NIXOS(\"si-nixos\", '\\uec6c'),\n    NODEMON(\"si-nodemon\", '\\uec6f'),\n    NODE_DOT_JS(\"si-node-dot-js\", '\\uec6d'),\n    NODE_RED(\"si-node-red\", '\\uec6e'),\n    NOKIA(\"si-nokia\", '\\uec70'),\n    NOTEPADPLUSPLUS(\"si-notepadplusplus\", '\\uec71'),\n    NOTION(\"si-notion\", '\\uec72'),\n    NOTIST(\"si-notist\", '\\uec73'),\n    NPM(\"si-npm\", '\\uec74'),\n    NUCLEO(\"si-nucleo\", '\\uec75'),\n    NUGET(\"si-nuget\", '\\uec76'),\n    NUKE(\"si-nuke\", '\\uec77'),\n    NUMPY(\"si-numpy\", '\\uec78'),\n    NUTANIX(\"si-nutanix\", '\\uec79'),\n    NUXT_DOT_JS(\"si-nuxt-dot-js\", '\\uec7a'),\n    NVIDIA(\"si-nvidia\", '\\uec7b'),\n    OBSSTUDIO(\"si-obsstudio\", '\\uec7c'),\n    OCAML(\"si-ocaml\", '\\uec7d'),\n    OCTAVE(\"si-octave\", '\\uec7e'),\n    OCTOPUSDEPLOY(\"si-octopusdeploy\", '\\uec7f'),\n    OCULUS(\"si-oculus\", '\\uec80'),\n    ODNOKLASSNIKI(\"si-odnoklassniki\", '\\uec81'),\n    ONEPLUS(\"si-oneplus\", '\\uec82'),\n    ONSTAR(\"si-onstar\", '\\uec83'),\n    OPEL(\"si-opel\", '\\uec84'),\n    OPENACCESS(\"si-openaccess\", '\\uec85'),\n    OPENAI(\"si-openai\", '\\uec86'),\n    OPENAIGYM(\"si-openaigym\", '\\uec87'),\n    OPENAPIINITIATIVE(\"si-openapiinitiative\", '\\uec88'),\n    OPENBADGES(\"si-openbadges\", '\\uec89'),\n    OPENBSD(\"si-openbsd\", '\\uec8a'),\n    OPENCOLLECTIVE(\"si-opencollective\", '\\uec8b'),\n    OPENCONTAINERSINITIATIVE(\"si-opencontainersinitiative\", '\\uec8c'),\n    OPENGL(\"si-opengl\", '\\uec8d'),\n    OPENID(\"si-openid\", '\\uec8e'),\n    OPENLAYERS(\"si-openlayers\", '\\uec8f'),\n    OPENSOURCEINITIATIVE(\"si-opensourceinitiative\", '\\uec90'),\n    OPENSSL(\"si-openssl\", '\\uec91'),\n    OPENSTACK(\"si-openstack\", '\\uec92'),\n    OPENSTREETMAP(\"si-openstreetmap\", '\\uec93'),\n    OPENSUSE(\"si-opensuse\", '\\uec94'),\n    OPENVPN(\"si-openvpn\", '\\uec95'),\n    OPERA(\"si-opera\", '\\uec96'),\n    OPSGENIE(\"si-opsgenie\", '\\uec97'),\n    OPSLEVEL(\"si-opslevel\", '\\uec98'),\n    ORACLE(\"si-oracle\", '\\uec99'),\n    ORCID(\"si-orcid\", '\\uec9a'),\n    ORIGIN(\"si-origin\", '\\uec9b'),\n    OSANO(\"si-osano\", '\\uec9c'),\n    OSHKOSH(\"si-oshkosh\", '\\uec9d'),\n    OSMC(\"si-osmc\", '\\uec9e'),\n    OVERCAST(\"si-overcast\", '\\uec9f'),\n    OVERLEAF(\"si-overleaf\", '\\ueca0'),\n    OVH(\"si-ovh\", '\\ueca1'),\n    PAGEKIT(\"si-pagekit\", '\\ueca2'),\n    PAGERDUTY(\"si-pagerduty\", '\\ueca3'),\n    PAGSEGURO(\"si-pagseguro\", '\\ueca4'),\n    PALANTIR(\"si-palantir\", '\\ueca5'),\n    PALOALTOSOFTWARE(\"si-paloaltosoftware\", '\\ueca6'),\n    PANDAS(\"si-pandas\", '\\ueca7'),\n    PANDORA(\"si-pandora\", '\\ueca8'),\n    PANTHEON(\"si-pantheon\", '\\ueca9'),\n    PARITYSUBSTRATE(\"si-paritysubstrate\", '\\uecaa'),\n    PARSE_DOT_LY(\"si-parse-dot-ly\", '\\uecab'),\n    PASTEBIN(\"si-pastebin\", '\\uecac'),\n    PATREON(\"si-patreon\", '\\uecad'),\n    PAYONEER(\"si-payoneer\", '\\uecae'),\n    PAYPAL(\"si-paypal\", '\\uecaf'),\n    PEERTUBE(\"si-peertube\", '\\uecb0'),\n    PELICAN(\"si-pelican\", '\\uecb1'),\n    PEPSI(\"si-pepsi\", '\\uecb2'),\n    PERISCOPE(\"si-periscope\", '\\uecb3'),\n    PERL(\"si-perl\", '\\uecb4'),\n    PEUGEOT(\"si-peugeot\", '\\uecb5'),\n    PEXELS(\"si-pexels\", '\\uecb6'),\n    PHABRICATOR(\"si-phabricator\", '\\uecb7'),\n    PHILIPSHUE(\"si-philipshue\", '\\uecb8'),\n    PHOTOCROWD(\"si-photocrowd\", '\\uecb9'),\n    PHP(\"si-php\", '\\uecba'),\n    PICARTO_DOT_TV(\"si-picarto-dot-tv\", '\\uecbc'),\n    PICPAY(\"si-picpay\", '\\uecbd'),\n    PIMCORE(\"si-pimcore\", '\\uecbe'),\n    PINBOARD(\"si-pinboard\", '\\uecbf'),\n    PINGDOM(\"si-pingdom\", '\\uecc0'),\n    PINGUP(\"si-pingup\", '\\uecc1'),\n    PINTEREST(\"si-pinterest\", '\\uecc2'),\n    PIVOTALTRACKER(\"si-pivotaltracker\", '\\uecc3'),\n    PIWIGO(\"si-piwigo\", '\\uecc4'),\n    PIXABAY(\"si-pixabay\", '\\uecc5'),\n    PIXIV(\"si-pixiv\", '\\uecc6'),\n    PI_HOLE(\"si-pi-hole\", '\\uecbb'),\n    PJSIP(\"si-pjsip\", '\\uecc7'),\n    PLANET(\"si-planet\", '\\uecc8'),\n    PLANGRID(\"si-plangrid\", '\\uecc9'),\n    PLATZI(\"si-platzi\", '\\uecca'),\n    PLAYERFM(\"si-playerfm\", '\\ueccc'),\n    PLAYER_DOT_ME(\"si-player-dot-me\", '\\ueccb'),\n    PLAYSTATION(\"si-playstation\", '\\ueccd'),\n    PLAYSTATION2(\"si-playstation2\", '\\uecce'),\n    PLAYSTATION3(\"si-playstation3\", '\\ueccf'),\n    PLAYSTATION4(\"si-playstation4\", '\\uecd0'),\n    PLAYSTATIONVITA(\"si-playstationvita\", '\\uecd1'),\n    PLEROMA(\"si-pleroma\", '\\uecd2'),\n    PLESK(\"si-plesk\", '\\uecd3'),\n    PLEX(\"si-plex\", '\\uecd4'),\n    PLURALSIGHT(\"si-pluralsight\", '\\uecd5'),\n    PLURK(\"si-plurk\", '\\uecd6'),\n    PLUSCODES(\"si-pluscodes\", '\\uecd7'),\n    POCKET(\"si-pocket\", '\\uecd8'),\n    POCKETCASTS(\"si-pocketcasts\", '\\uecd9'),\n    POKEMON(\"si-pokemon\", '\\uecda'),\n    POLY(\"si-poly\", '\\uecdb'),\n    POLYMERPROJECT(\"si-polymerproject\", '\\uecdc'),\n    PORSCHE(\"si-porsche\", '\\uecdd'),\n    POSTCSS(\"si-postcss\", '\\uecde'),\n    POSTGRESQL(\"si-postgresql\", '\\uecdf'),\n    POSTMAN(\"si-postman\", '\\uece0'),\n    POSTWOMAN(\"si-postwoman\", '\\uece1'),\n    POWERBI(\"si-powerbi\", '\\uece2'),\n    POWERS(\"si-powers\", '\\uece3'),\n    POWERSHELL(\"si-powershell\", '\\uece4'),\n    PRESTASHOP(\"si-prestashop\", '\\uece7'),\n    PRETTIER(\"si-prettier\", '\\uece8'),\n    PREZI(\"si-prezi\", '\\uece9'),\n    PRE_COMMIT(\"si-pre-commit\", '\\uece6'),\n    PRIME(\"si-prime\", '\\uecea'),\n    PRIMEVIDEO(\"si-primevideo\", '\\ueceb'),\n    PRISMIC(\"si-prismic\", '\\uecec'),\n    PROBOT(\"si-probot\", '\\ueced'),\n    PROCESSWIRE(\"si-processwire\", '\\uecee'),\n    PRODUCTHUNT(\"si-producthunt\", '\\uecef'),\n    PROMETHEUS(\"si-prometheus\", '\\uecf0'),\n    PROSIEBEN(\"si-prosieben\", '\\uecf1'),\n    PROTOCOLS_DOT_IO(\"si-protocols-dot-io\", '\\uecf3'),\n    PROTONMAIL(\"si-protonmail\", '\\uecf4'),\n    PROTO_DOT_IO(\"si-proto-dot-io\", '\\uecf2'),\n    PROXMOX(\"si-proxmox\", '\\uecf5'),\n    PR_DOT_CO(\"si-pr-dot-co\", '\\uece5'),\n    PUBLONS(\"si-publons\", '\\uecf6'),\n    PUPPET(\"si-puppet\", '\\uecf7'),\n    PURESCRIPT(\"si-purescript\", '\\uecf8'),\n    PYCHARM(\"si-pycharm\", '\\uecf9'),\n    PYPI(\"si-pypi\", '\\uecfa'),\n    PYTHON(\"si-python\", '\\uecfb'),\n    PYTORCH(\"si-pytorch\", '\\uecfc'),\n    PYUP(\"si-pyup\", '\\uecfd'),\n    QANTAS(\"si-qantas\", '\\uecfe'),\n    QEMU(\"si-qemu\", '\\uecff'),\n    QGIS(\"si-qgis\", '\\ued00'),\n    QI(\"si-qi\", '\\ued01'),\n    QIITA(\"si-qiita\", '\\ued02'),\n    QIWI(\"si-qiwi\", '\\ued03'),\n    QT(\"si-qt\", '\\ued04'),\n    QUALCOMM(\"si-qualcomm\", '\\ued05'),\n    QUALTRICS(\"si-qualtrics\", '\\ued06'),\n    QUANTCAST(\"si-quantcast\", '\\ued07'),\n    QUANTOPIAN(\"si-quantopian\", '\\ued08'),\n    QUARKUS(\"si-quarkus\", '\\ued09'),\n    QUASAR(\"si-quasar\", '\\ued0a'),\n    QUEST(\"si-quest\", '\\ued0b'),\n    QUICKTIME(\"si-quicktime\", '\\ued0c'),\n    QUIP(\"si-quip\", '\\ued0d'),\n    QUORA(\"si-quora\", '\\ued0e'),\n    QWIKLABS(\"si-qwiklabs\", '\\ued0f'),\n    QZONE(\"si-qzone\", '\\ued10'),\n    R(\"si-r\", '\\ued11'),\n    RABBITMQ(\"si-rabbitmq\", '\\ued12'),\n    RADIOPUBLIC(\"si-radiopublic\", '\\ued13'),\n    RANCHER(\"si-rancher\", '\\ued14'),\n    RASPBERRYPI(\"si-raspberrypi\", '\\ued15'),\n    RAZER(\"si-razer\", '\\ued16'),\n    REACT(\"si-react\", '\\ued17'),\n    REACTIVEX(\"si-reactivex\", '\\ued18'),\n    REACTOS(\"si-reactos\", '\\ued19'),\n    REACTROUTER(\"si-reactrouter\", '\\ued1a'),\n    READTHEDOCS(\"si-readthedocs\", '\\ued1b'),\n    REALM(\"si-realm\", '\\ued1c'),\n    REASON(\"si-reason\", '\\ued1d'),\n    REASONSTUDIOS(\"si-reasonstudios\", '\\ued1e'),\n    REDBUBBLE(\"si-redbubble\", '\\ued1f'),\n    REDDIT(\"si-reddit\", '\\ued20'),\n    REDHAT(\"si-redhat\", '\\ued21'),\n    REDHATOPENSHIFT(\"si-redhatopenshift\", '\\ued22'),\n    REDIS(\"si-redis\", '\\ued23'),\n    REDUX(\"si-redux\", '\\ued24'),\n    RENAULT(\"si-renault\", '\\ued25'),\n    RENOVATEBOT(\"si-renovatebot\", '\\ued26'),\n    RENPY(\"si-renpy\", '\\ued27'),\n    RENREN(\"si-renren\", '\\ued28'),\n    REPL_DOT_IT(\"si-repl-dot-it\", '\\ued29'),\n    RESEARCHGATE(\"si-researchgate\", '\\ued2a'),\n    RETROARCH(\"si-retroarch\", '\\ued2b'),\n    RETROPIE(\"si-retropie\", '\\ued2c'),\n    REVERBNATION(\"si-reverbnation\", '\\ued2d'),\n    REVOLUT(\"si-revolut\", '\\ued2e'),\n    REWE(\"si-rewe\", '\\ued2f'),\n    RHINOCEROS(\"si-rhinoceros\", '\\ued30'),\n    RING(\"si-ring\", '\\ued31'),\n    RIOT(\"si-riot\", '\\ued32'),\n    RIOTGAMES(\"si-riotgames\", '\\ued33'),\n    RIPPLE(\"si-ripple\", '\\ued34'),\n    RISEUP(\"si-riseup\", '\\ued35'),\n    ROKU(\"si-roku\", '\\ued36'),\n    ROLLUP_DOT_JS(\"si-rollup-dot-js\", '\\ued37'),\n    ROOTS(\"si-roots\", '\\ued38'),\n    ROOTSBEDROCK(\"si-rootsbedrock\", '\\ued39'),\n    ROOTSSAGE(\"si-rootssage\", '\\ued3a'),\n    ROUNDCUBE(\"si-roundcube\", '\\ued3b'),\n    RSS(\"si-rss\", '\\ued3c'),\n    RSTUDIO(\"si-rstudio\", '\\ued3d'),\n    RTE(\"si-rte\", '\\ued3e'),\n    RTL(\"si-rtl\", '\\ued3f'),\n    RTLZWEI(\"si-rtlzwei\", '\\ued40'),\n    RUBY(\"si-ruby\", '\\ued41'),\n    RUBYGEMS(\"si-rubygems\", '\\ued42'),\n    RUBYONRAILS(\"si-rubyonrails\", '\\ued43'),\n    RUNKEEPER(\"si-runkeeper\", '\\ued44'),\n    RUNKIT(\"si-runkit\", '\\ued45'),\n    RUST(\"si-rust\", '\\ued46'),\n    RYANAIR(\"si-ryanair\", '\\ued47'),\n    SAFARI(\"si-safari\", '\\ued48'),\n    SAHIBINDEN(\"si-sahibinden\", '\\ued49'),\n    SALESFORCE(\"si-salesforce\", '\\ued4a'),\n    SALTSTACK(\"si-saltstack\", '\\ued4b'),\n    SAMSUNG(\"si-samsung\", '\\ued4c'),\n    SAMSUNGPAY(\"si-samsungpay\", '\\ued4d'),\n    SANFRANCISCOMUNICIPALRAILWAY(\"si-sanfranciscomunicipalrailway\", '\\ued4e'),\n    SAP(\"si-sap\", '\\ued4f'),\n    SASS(\"si-sass\", '\\ued50'),\n    SAT_DOT_1(\"si-sat-dot-1\", '\\ued51'),\n    SAUCELABS(\"si-saucelabs\", '\\ued52'),\n    SCALA(\"si-scala\", '\\ued53'),\n    SCALEWAY(\"si-scaleway\", '\\ued54'),\n    SCANIA(\"si-scania\", '\\ued55'),\n    SCIKIT_LEARN(\"si-scikit-learn\", '\\ued56'),\n    SCOPUS(\"si-scopus\", '\\ued57'),\n    SCRATCH(\"si-scratch\", '\\ued58'),\n    SCRIBD(\"si-scribd\", '\\ued59'),\n    SCRUTINIZERCI(\"si-scrutinizerci\", '\\ued5a'),\n    SEAGATE(\"si-seagate\", '\\ued5b'),\n    SEAT(\"si-seat\", '\\ued5c'),\n    SEGA(\"si-sega\", '\\ued5d'),\n    SELLFY(\"si-sellfy\", '\\ued5e'),\n    SEMANTICWEB(\"si-semanticweb\", '\\ued5f'),\n    SEMAPHORECI(\"si-semaphoreci\", '\\ued60'),\n    SENCHA(\"si-sencha\", '\\ued61'),\n    SENNHEISER(\"si-sennheiser\", '\\ued62'),\n    SENSU(\"si-sensu\", '\\ued63'),\n    SENTRY(\"si-sentry\", '\\ued64'),\n    SERVERFAULT(\"si-serverfault\", '\\ued65'),\n    SERVERLESS(\"si-serverless\", '\\ued66'),\n    SHANGHAIMETRO(\"si-shanghaimetro\", '\\ued67'),\n    SHAZAM(\"si-shazam\", '\\ued68'),\n    SHELL(\"si-shell\", '\\ued69'),\n    SHENZHENMETRO(\"si-shenzhenmetro\", '\\ued6a'),\n    SHIKIMORI(\"si-shikimori\", '\\ued6b'),\n    SHOPIFY(\"si-shopify\", '\\ued6c'),\n    SHOPWARE(\"si-shopware\", '\\ued6d'),\n    SHOWPAD(\"si-showpad\", '\\ued6e'),\n    SHUTTERSTOCK(\"si-shutterstock\", '\\ued6f'),\n    SI_1001TRACKLISTS(\"si-1001tracklists\", '\\ue904'),\n    SI_1_PASSWORD(\"si-1-password\", '\\ue900'),\n    SI_42(\"si-42\", '\\ue902'),\n    SI_4D(\"si-4d\", '\\ue901'),\n    SI_500PX(\"si-500px\", '\\ue903'),\n    SIEMENS(\"si-siemens\", '\\ued70'),\n    SIGNAL(\"si-signal\", '\\ued71'),\n    SIMPLEICONS(\"si-simpleicons\", '\\ued72'),\n    SINAWEIBO(\"si-sinaweibo\", '\\ued73'),\n    SITEPOINT(\"si-sitepoint\", '\\ued74'),\n    SKETCH(\"si-sketch\", '\\ued75'),\n    SKETCHFAB(\"si-sketchfab\", '\\ued76'),\n    SKETCHUP(\"si-sketchup\", '\\ued77'),\n    SKILLSHARE(\"si-skillshare\", '\\ued78'),\n    SKODA(\"si-skoda\", '\\ued79'),\n    SKY(\"si-sky\", '\\ued7a'),\n    SKYLINER(\"si-skyliner\", '\\ued7b'),\n    SKYPE(\"si-skype\", '\\ued7c'),\n    SKYPEFORBUSINESS(\"si-skypeforbusiness\", '\\ued7d'),\n    SLACK(\"si-slack\", '\\ued7e'),\n    SLACKWARE(\"si-slackware\", '\\ued7f'),\n    SLASHDOT(\"si-slashdot\", '\\ued80'),\n    SLICKPIC(\"si-slickpic\", '\\ued81'),\n    SLIDES(\"si-slides\", '\\ued82'),\n    SLIDESHARE(\"si-slideshare\", '\\ued83'),\n    SMART(\"si-smart\", '\\ued84'),\n    SMARTTHINGS(\"si-smartthings\", '\\ued85'),\n    SMASHINGMAGAZINE(\"si-smashingmagazine\", '\\ued86'),\n    SMRT(\"si-smrt\", '\\ued87'),\n    SMUGMUG(\"si-smugmug\", '\\ued88'),\n    SNAPCHAT(\"si-snapchat\", '\\ued89'),\n    SNAPCRAFT(\"si-snapcraft\", '\\ued8a'),\n    SNYK(\"si-snyk\", '\\ued8b'),\n    SOCIETY6(\"si-society6\", '\\ued8c'),\n    SOCKET_DOT_IO(\"si-socket-dot-io\", '\\ued8d'),\n    SOGOU(\"si-sogou\", '\\ued8e'),\n    SOLUS(\"si-solus\", '\\ued8f'),\n    SONARCLOUD(\"si-sonarcloud\", '\\ued90'),\n    SONARLINT(\"si-sonarlint\", '\\ued91'),\n    SONARQUBE(\"si-sonarqube\", '\\ued92'),\n    SONARSOURCE(\"si-sonarsource\", '\\ued93'),\n    SONGKICK(\"si-songkick\", '\\ued94'),\n    SONICWALL(\"si-sonicwall\", '\\ued95'),\n    SONOS(\"si-sonos\", '\\ued96'),\n    SOUNDCLOUD(\"si-soundcloud\", '\\ued97'),\n    SOURCEENGINE(\"si-sourceengine\", '\\ued98'),\n    SOURCEFORGE(\"si-sourceforge\", '\\ued99'),\n    SOURCEGRAPH(\"si-sourcegraph\", '\\ued9a'),\n    SPACEMACS(\"si-spacemacs\", '\\ued9b'),\n    SPACEX(\"si-spacex\", '\\ued9c'),\n    SPARKFUN(\"si-sparkfun\", '\\ued9d'),\n    SPARKPOST(\"si-sparkpost\", '\\ued9e'),\n    SPDX(\"si-spdx\", '\\ued9f'),\n    SPEAKERDECK(\"si-speakerdeck\", '\\ueda0'),\n    SPECTRUM(\"si-spectrum\", '\\ueda1'),\n    SPINNAKER(\"si-spinnaker\", '\\ueda2'),\n    SPINRILLA(\"si-spinrilla\", '\\ueda3'),\n    SPLUNK(\"si-splunk\", '\\ueda4'),\n    SPOTIFY(\"si-spotify\", '\\ueda5'),\n    SPOTLIGHT(\"si-spotlight\", '\\ueda6'),\n    SPREAKER(\"si-spreaker\", '\\ueda7'),\n    SPRING(\"si-spring\", '\\ueda8'),\n    SPRINT(\"si-sprint\", '\\ueda9'),\n    SQLITE(\"si-sqlite\", '\\uedaa'),\n    SQUARE(\"si-square\", '\\uedab'),\n    SQUAREENIX(\"si-squareenix\", '\\uedac'),\n    SQUARESPACE(\"si-squarespace\", '\\uedad'),\n    SSRN(\"si-ssrn\", '\\uedae'),\n    STACKBIT(\"si-stackbit\", '\\uedaf'),\n    STACKEXCHANGE(\"si-stackexchange\", '\\uedb0'),\n    STACKOVERFLOW(\"si-stackoverflow\", '\\uedb1'),\n    STACKPATH(\"si-stackpath\", '\\uedb2'),\n    STACKSHARE(\"si-stackshare\", '\\uedb3'),\n    STADIA(\"si-stadia\", '\\uedb4'),\n    STAFFBASE(\"si-staffbase\", '\\uedb5'),\n    STARLINGBANK(\"si-starlingbank\", '\\uedb6'),\n    STATAMIC(\"si-statamic\", '\\uedb7'),\n    STATICMAN(\"si-staticman\", '\\uedb8'),\n    STATUSPAGE(\"si-statuspage\", '\\uedb9'),\n    STEAM(\"si-steam\", '\\uedba'),\n    STEAMWORKS(\"si-steamworks\", '\\uedbb'),\n    STEEM(\"si-steem\", '\\uedbc'),\n    STEEMIT(\"si-steemit\", '\\uedbd'),\n    STEINBERG(\"si-steinberg\", '\\uedbe'),\n    STELLAR(\"si-stellar\", '\\uedbf'),\n    STENCYL(\"si-stencyl\", '\\uedc0'),\n    STITCHER(\"si-stitcher\", '\\uedc1'),\n    STORIFY(\"si-storify\", '\\uedc2'),\n    STORYBOOK(\"si-storybook\", '\\uedc3'),\n    STRAPI(\"si-strapi\", '\\uedc4'),\n    STRAVA(\"si-strava\", '\\uedc5'),\n    STRIPE(\"si-stripe\", '\\uedc6'),\n    STRONGSWAN(\"si-strongswan\", '\\uedc7'),\n    STUBHUB(\"si-stubhub\", '\\uedc8'),\n    STYLED_COMPONENTS(\"si-styled-components\", '\\uedc9'),\n    STYLESHARE(\"si-styleshare\", '\\uedca'),\n    STYLUS(\"si-stylus\", '\\uedcb'),\n    SUBARU(\"si-subaru\", '\\uedcc'),\n    SUBLIMETEXT(\"si-sublimetext\", '\\uedcd'),\n    SUBVERSION(\"si-subversion\", '\\uedce'),\n    SUPERUSER(\"si-superuser\", '\\uedcf'),\n    SUZUKI(\"si-suzuki\", '\\uedd0'),\n    SVELTE(\"si-svelte\", '\\uedd1'),\n    SVG(\"si-svg\", '\\uedd2'),\n    SVGO(\"si-svgo\", '\\uedd3'),\n    SWAGGER(\"si-swagger\", '\\uedd4'),\n    SWARM(\"si-swarm\", '\\uedd5'),\n    SWIFT(\"si-swift\", '\\uedd6'),\n    SYMANTEC(\"si-symantec\", '\\uedd7'),\n    SYMFONY(\"si-symfony\", '\\uedd8'),\n    SYMPHONY(\"si-symphony\", '\\uedd9'),\n    SYNOLOGY(\"si-synology\", '\\uedda'),\n    TABLEAU(\"si-tableau\", '\\ueddc'),\n    TAILS(\"si-tails\", '\\ueddd'),\n    TAILWINDCSS(\"si-tailwindcss\", '\\uedde'),\n    TALEND(\"si-talend\", '\\ueddf'),\n    TAPAS(\"si-tapas\", '\\uede0'),\n    TATA(\"si-tata\", '\\uede1'),\n    TEAMSPEAK(\"si-teamspeak\", '\\uede2'),\n    TEAMVIEWER(\"si-teamviewer\", '\\uede3'),\n    TED(\"si-ted\", '\\uede4'),\n    TEESPRING(\"si-teespring\", '\\uede5'),\n    TELE5(\"si-tele5\", '\\uede6'),\n    TELEGRAM(\"si-telegram\", '\\uede7'),\n    TENCENTQQ(\"si-tencentqq\", '\\uede8'),\n    TENCENTWEIBO(\"si-tencentweibo\", '\\uede9'),\n    TENSORFLOW(\"si-tensorflow\", '\\uedea'),\n    TERADATA(\"si-teradata\", '\\uedeb'),\n    TERRAFORM(\"si-terraform\", '\\uedec'),\n    TESLA(\"si-tesla\", '\\ueded'),\n    THECONVERSATION(\"si-theconversation\", '\\uedee'),\n    THEMIGHTY(\"si-themighty\", '\\uedef'),\n    THEMODELSRESOURCE(\"si-themodelsresource\", '\\uedf0'),\n    THEMOVIEDATABASE(\"si-themoviedatabase\", '\\uedf1'),\n    THEREGISTER(\"si-theregister\", '\\uedf2'),\n    THESOUNDSRESOURCE(\"si-thesoundsresource\", '\\uedf3'),\n    THESPRITERSRESOURCE(\"si-thespritersresource\", '\\uedf4'),\n    THEWASHINGTONPOST(\"si-thewashingtonpost\", '\\uedf5'),\n    THREEMA(\"si-threema\", '\\uedf6'),\n    THUMBTACK(\"si-thumbtack\", '\\uedf7'),\n    THUNDERBIRD(\"si-thunderbird\", '\\uedf8'),\n    TIDAL(\"si-tidal\", '\\uedf9'),\n    TIDE(\"si-tide\", '\\uedfa'),\n    TIKTOK(\"si-tiktok\", '\\uedfb'),\n    TIMESCALE(\"si-timescale\", '\\uedfc'),\n    TINDER(\"si-tinder\", '\\uedfd'),\n    TODOIST(\"si-todoist\", '\\uedfe'),\n    TOGGL(\"si-toggl\", '\\uedff'),\n    TOKYOMETRO(\"si-tokyometro\", '\\uee00'),\n    TOMORROWLAND(\"si-tomorrowland\", '\\uee01'),\n    TOPCODER(\"si-topcoder\", '\\uee02'),\n    TOPTAL(\"si-toptal\", '\\uee03'),\n    TOR(\"si-tor\", '\\uee04'),\n    TORBROWSER(\"si-torbrowser\", '\\uee05'),\n    TOSHIBA(\"si-toshiba\", '\\uee06'),\n    TOYOTA(\"si-toyota\", '\\uee07'),\n    TRAINERROAD(\"si-trainerroad\", '\\uee08'),\n    TRAKT(\"si-trakt\", '\\uee09'),\n    TRANSPORTFORIRELAND(\"si-transportforireland\", '\\uee0a'),\n    TRANSPORTFORLONDON(\"si-transportforlondon\", '\\uee0b'),\n    TRAVISCI(\"si-travisci\", '\\uee0c'),\n    TREEHOUSE(\"si-treehouse\", '\\uee0d'),\n    TRELLO(\"si-trello\", '\\uee0e'),\n    TRENDMICRO(\"si-trendmicro\", '\\uee0f'),\n    TRIPADVISOR(\"si-tripadvisor\", '\\uee10'),\n    TROVE(\"si-trove\", '\\uee11'),\n    TRULIA(\"si-trulia\", '\\uee12'),\n    TRUSTEDSHOPS(\"si-trustedshops\", '\\uee13'),\n    TRUSTPILOT(\"si-trustpilot\", '\\uee14'),\n    TRYITONLINE(\"si-tryitonline\", '\\uee15'),\n    TUI(\"si-tui\", '\\uee16'),\n    TUMBLR(\"si-tumblr\", '\\uee17'),\n    TUNEIN(\"si-tunein\", '\\uee18'),\n    TURBOSQUID(\"si-turbosquid\", '\\uee19'),\n    TURKISHAIRLINES(\"si-turkishairlines\", '\\uee1a'),\n    TWILIO(\"si-twilio\", '\\uee1b'),\n    TWITCH(\"si-twitch\", '\\uee1c'),\n    TWITTER(\"si-twitter\", '\\uee1d'),\n    TWOO(\"si-twoo\", '\\uee1e'),\n    TYPESCRIPT(\"si-typescript\", '\\uee1f'),\n    TYPO3(\"si-typo3\", '\\uee20'),\n    T_MOBILE(\"si-t-mobile\", '\\ueddb'),\n    UBER(\"si-uber\", '\\uee21'),\n    UBEREATS(\"si-ubereats\", '\\uee22'),\n    UBIQUITI(\"si-ubiquiti\", '\\uee23'),\n    UBISOFT(\"si-ubisoft\", '\\uee24'),\n    UBLOCKORIGIN(\"si-ublockorigin\", '\\uee25'),\n    UBUNTU(\"si-ubuntu\", '\\uee26'),\n    UDACITY(\"si-udacity\", '\\uee27'),\n    UDEMY(\"si-udemy\", '\\uee28'),\n    UIKIT(\"si-uikit\", '\\uee29'),\n    ULULE(\"si-ulule\", '\\uee2a'),\n    UMBRACO(\"si-umbraco\", '\\uee2b'),\n    UNICODE(\"si-unicode\", '\\uee2c'),\n    UNILEVER(\"si-unilever\", '\\uee2d'),\n    UNITEDAIRLINES(\"si-unitedairlines\", '\\uee2e'),\n    UNITY(\"si-unity\", '\\uee2f'),\n    UNREALENGINE(\"si-unrealengine\", '\\uee30'),\n    UNSPLASH(\"si-unsplash\", '\\uee31'),\n    UNTANGLE(\"si-untangle\", '\\uee32'),\n    UNTAPPD(\"si-untappd\", '\\uee33'),\n    UPLABS(\"si-uplabs\", '\\uee34'),\n    UPLOADED(\"si-uploaded\", '\\uee35'),\n    UPWORK(\"si-upwork\", '\\uee36'),\n    V(\"si-v\", '\\uee37'),\n    V8(\"si-v8\", '\\uee38'),\n    VAGRANT(\"si-vagrant\", '\\uee39'),\n    VALVE(\"si-valve\", '\\uee3a'),\n    VAUXHALL(\"si-vauxhall\", '\\uee3b'),\n    VBULLETIN(\"si-vbulletin\", '\\uee3c'),\n    VEEAM(\"si-veeam\", '\\uee3d'),\n    VENMO(\"si-venmo\", '\\uee3e'),\n    VERCEL(\"si-vercel\", '\\uee3f'),\n    VERITAS(\"si-veritas\", '\\uee40'),\n    VERIZON(\"si-verizon\", '\\uee41'),\n    VFAIRS(\"si-vfairs\", '\\uee42'),\n    VIADEO(\"si-viadeo\", '\\uee43'),\n    VIBER(\"si-viber\", '\\uee44'),\n    VIM(\"si-vim\", '\\uee45'),\n    VIMEO(\"si-vimeo\", '\\uee46'),\n    VINE(\"si-vine\", '\\uee47'),\n    VIRB(\"si-virb\", '\\uee48'),\n    VIRTUALBOX(\"si-virtualbox\", '\\uee49'),\n    VIRUSTOTAL(\"si-virustotal\", '\\uee4a'),\n    VISA(\"si-visa\", '\\uee4b'),\n    VISUALSTUDIO(\"si-visualstudio\", '\\uee4c'),\n    VISUALSTUDIOCODE(\"si-visualstudiocode\", '\\uee4d'),\n    VIVALDI(\"si-vivaldi\", '\\uee4e'),\n    VIVINO(\"si-vivino\", '\\uee4f'),\n    VK(\"si-vk\", '\\uee50'),\n    VLCMEDIAPLAYER(\"si-vlcmediaplayer\", '\\uee51'),\n    VMWARE(\"si-vmware\", '\\uee52'),\n    VODAFONE(\"si-vodafone\", '\\uee53'),\n    VOLKSWAGEN(\"si-volkswagen\", '\\uee54'),\n    VOLVO(\"si-volvo\", '\\uee55'),\n    VSCO(\"si-vsco\", '\\uee56'),\n    VUETIFY(\"si-vuetify\", '\\uee58'),\n    VUE_DOT_JS(\"si-vue-dot-js\", '\\uee57'),\n    VULKAN(\"si-vulkan\", '\\uee59'),\n    VULTR(\"si-vultr\", '\\uee5a'),\n    W3C(\"si-w3c\", '\\uee5b'),\n    WAGTAIL(\"si-wagtail\", '\\uee5c'),\n    WAKATIME(\"si-wakatime\", '\\uee5d'),\n    WARNERBROS_DOT(\"si-warnerbros-dot\", '\\uee5e'),\n    WATTPAD(\"si-wattpad\", '\\uee5f'),\n    WAZE(\"si-waze\", '\\uee60'),\n    WEAROS(\"si-wearos\", '\\uee61'),\n    WEASYL(\"si-weasyl\", '\\uee62'),\n    WEBASSEMBLY(\"si-webassembly\", '\\uee63'),\n    WEBAUTHN(\"si-webauthn\", '\\uee64'),\n    WEBCOMPONENTS_DOT_ORG(\"si-webcomponents-dot-org\", '\\uee65'),\n    WEBGL(\"si-webgl\", '\\uee66'),\n    WEBMIN(\"si-webmin\", '\\uee67'),\n    WEBMONEY(\"si-webmoney\", '\\uee68'),\n    WEBPACK(\"si-webpack\", '\\uee69'),\n    WEBRTC(\"si-webrtc\", '\\uee6a'),\n    WEBSTORM(\"si-webstorm\", '\\uee6b'),\n    WECHAT(\"si-wechat\", '\\uee6c'),\n    WEMO(\"si-wemo\", '\\uee6d'),\n    WHATSAPP(\"si-whatsapp\", '\\uee6e'),\n    WHENIWORK(\"si-wheniwork\", '\\uee6f'),\n    WHITESOURCE(\"si-whitesource\", '\\uee70'),\n    WII(\"si-wii\", '\\uee71'),\n    WIIU(\"si-wiiu\", '\\uee72'),\n    WIKIMEDIACOMMONS(\"si-wikimediacommons\", '\\uee73'),\n    WIKIPEDIA(\"si-wikipedia\", '\\uee74'),\n    WINDOWS(\"si-windows\", '\\uee75'),\n    WINDOWS95(\"si-windows95\", '\\uee76'),\n    WINDOWSXP(\"si-windowsxp\", '\\uee77'),\n    WIRE(\"si-wire\", '\\uee78'),\n    WIREGUARD(\"si-wireguard\", '\\uee79'),\n    WISH(\"si-wish\", '\\uee7a'),\n    WISTIA(\"si-wistia\", '\\uee7b'),\n    WIX(\"si-wix\", '\\uee7c'),\n    WIZZAIR(\"si-wizzair\", '\\uee7d'),\n    WOLFRAM(\"si-wolfram\", '\\uee7e'),\n    WOLFRAMLANGUAGE(\"si-wolframlanguage\", '\\uee7f'),\n    WOLFRAMMATHEMATICA(\"si-wolframmathematica\", '\\uee80'),\n    WOO(\"si-woo\", '\\uee81'),\n    WOOCOMMERCE(\"si-woocommerce\", '\\uee82'),\n    WORDPRESS(\"si-wordpress\", '\\uee83'),\n    WORKPLACE(\"si-workplace\", '\\uee84'),\n    WORLDHEALTHORGANIZATION(\"si-worldhealthorganization\", '\\uee85'),\n    WPENGINE(\"si-wpengine\", '\\uee86'),\n    WPROCKET(\"si-wprocket\", '\\uee87'),\n    WRITE_DOT_AS(\"si-write-dot-as\", '\\uee88'),\n    WWE(\"si-wwe\", '\\uee89'),\n    XAMARIN(\"si-xamarin\", '\\uee8c'),\n    XAML(\"si-xaml\", '\\uee8d'),\n    XAMPP(\"si-xampp\", '\\uee8e'),\n    XBOX(\"si-xbox\", '\\uee8f'),\n    XCODE(\"si-xcode\", '\\uee90'),\n    XDADEVELOPERS(\"si-xdadevelopers\", '\\uee91'),\n    XERO(\"si-xero\", '\\uee92'),\n    XFCE(\"si-xfce\", '\\uee93'),\n    XIAOMI(\"si-xiaomi\", '\\uee94'),\n    XING(\"si-xing\", '\\uee95'),\n    XMPP(\"si-xmpp\", '\\uee96'),\n    XRP(\"si-xrp\", '\\uee97'),\n    XSPLIT(\"si-xsplit\", '\\uee98'),\n    X_DOT_ORG(\"si-x-dot-org\", '\\uee8a'),\n    X_PACK(\"si-x-pack\", '\\uee8b'),\n    YAHOO(\"si-yahoo\", '\\uee99'),\n    YAMAHACORPORATION(\"si-yamahacorporation\", '\\uee9a'),\n    YAMAHAMOTORCORPORATION(\"si-yamahamotorcorporation\", '\\uee9b'),\n    YAMMER(\"si-yammer\", '\\uee9c'),\n    YANDEX(\"si-yandex\", '\\uee9d'),\n    YARN(\"si-yarn\", '\\uee9e'),\n    YCOMBINATOR(\"si-ycombinator\", '\\uee9f'),\n    YELP(\"si-yelp\", '\\ueea0'),\n    YOAST(\"si-yoast\", '\\ueea1'),\n    YOUTUBE(\"si-youtube\", '\\ueea2'),\n    YOUTUBEGAMING(\"si-youtubegaming\", '\\ueea3'),\n    YOUTUBEMUSIC(\"si-youtubemusic\", '\\ueea4'),\n    YOUTUBESTUDIO(\"si-youtubestudio\", '\\ueea5'),\n    YOUTUBETV(\"si-youtubetv\", '\\ueea6'),\n    ZALANDO(\"si-zalando\", '\\ueea8'),\n    ZAPIER(\"si-zapier\", '\\ueea9'),\n    ZDF(\"si-zdf\", '\\ueeaa'),\n    ZEND(\"si-zend\", '\\ueeab'),\n    ZENDESK(\"si-zendesk\", '\\ueeac'),\n    ZENDFRAMEWORK(\"si-zendframework\", '\\ueead'),\n    ZEROMQ(\"si-zeromq\", '\\ueeae'),\n    ZERPLY(\"si-zerply\", '\\ueeaf'),\n    ZHIHU(\"si-zhihu\", '\\ueeb0'),\n    ZIGBEE(\"si-zigbee\", '\\ueeb1'),\n    ZILLOW(\"si-zillow\", '\\ueeb2'),\n    ZINGAT(\"si-zingat\", '\\ueeb3'),\n    ZOOM(\"si-zoom\", '\\ueeb4'),\n    ZORIN(\"si-zorin\", '\\ueeb5'),\n    ZULIP(\"si-zulip\", '\\ueeb6'),\n    Z_WAVE(\"si-z-wave\", '\\ueea7');\n\n    public static SimpleIcons findByDescription(String description) {\n        for (SimpleIcons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    SimpleIcons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-simpleicons-pack/src/main/java/org/kordamp/ikonli/simpleicons/SimpleIconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.simpleicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class SimpleIconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/simpleicons/3.12.2/fonts/Simple-Icons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"si-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return SimpleIcons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Simple-Icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-simpleicons-pack/src/main/java/org/kordamp/ikonli/simpleicons/SimpleIconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.simpleicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class SimpleIconsIkonProvider implements IkonProvider<SimpleIcons> {\n    @Override\n    public Class<SimpleIcons> getIkon() {\n        return SimpleIcons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-simpleicons-pack/src/main/resources/META-INF/resources/simpleicons/3.12.2/css/simpleicons.css",
    "content": "@font-face {\n  font-family: 'Simple-Icons';\n  src:  url('../fonts/Simple-Icons.eot?tutprr');\n  src:  url('../fonts/Simple-Icons.eot?tutprr#iefix') format('embedded-opentype'),\n    url('../fonts/Simple-Icons.ttf?tutprr') format('truetype'),\n    url('../fonts/Simple-Icons.woff?tutprr') format('woff'),\n    url('../fonts/Simple-Icons.svg?tutprr#Simple-Icons') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"si-\"], [class*=\" si-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Simple-Icons' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.si-1-password:before {\n  content: \"\\e900\";\n}\n.si-4d:before {\n  content: \"\\e901\";\n}\n.si-42:before {\n  content: \"\\e902\";\n}\n.si-500px:before {\n  content: \"\\e903\";\n}\n.si-1001tracklists:before {\n  content: \"\\e904\";\n}\n.si-a-frame:before {\n  content: \"\\e905\";\n}\n.si-abbrobotstudio:before {\n  content: \"\\e906\";\n}\n.si-abletonlive:before {\n  content: \"\\e907\";\n}\n.si-about-dot-me:before {\n  content: \"\\e908\";\n}\n.si-abstract:before {\n  content: \"\\e909\";\n}\n.si-academia:before {\n  content: \"\\e90a\";\n}\n.si-accusoft:before {\n  content: \"\\e90b\";\n}\n.si-acm:before {\n  content: \"\\e90c\";\n}\n.si-actigraph:before {\n  content: \"\\e90d\";\n}\n.si-activision:before {\n  content: \"\\e90e\";\n}\n.si-adblock:before {\n  content: \"\\e90f\";\n}\n.si-adblockplus:before {\n  content: \"\\e910\";\n}\n.si-addthis:before {\n  content: \"\\e911\";\n}\n.si-adguard:before {\n  content: \"\\e912\";\n}\n.si-adobe:before {\n  content: \"\\e913\";\n}\n.si-adobeacrobatreader:before {\n  content: \"\\e914\";\n}\n.si-adobeaftereffects:before {\n  content: \"\\e915\";\n}\n.si-adobeaudition:before {\n  content: \"\\e916\";\n}\n.si-adobecreativecloud:before {\n  content: \"\\e917\";\n}\n.si-adobedreamweaver:before {\n  content: \"\\e918\";\n}\n.si-adobefonts:before {\n  content: \"\\e919\";\n}\n.si-adobeillustrator:before {\n  content: \"\\e91a\";\n}\n.si-adobeindesign:before {\n  content: \"\\e91b\";\n}\n.si-adobelightroomcc:before {\n  content: \"\\e91c\";\n}\n.si-adobelightroomclassic:before {\n  content: \"\\e91d\";\n}\n.si-adobephonegap:before {\n  content: \"\\e91e\";\n}\n.si-adobephotoshop:before {\n  content: \"\\e91f\";\n}\n.si-adobepremierepro:before {\n  content: \"\\e920\";\n}\n.si-adobexd:before {\n  content: \"\\e921\";\n}\n.si-adonisjs:before {\n  content: \"\\e922\";\n}\n.si-aerlingus:before {\n  content: \"\\e923\";\n}\n.si-affinity:before {\n  content: \"\\e924\";\n}\n.si-affinitydesigner:before {\n  content: \"\\e925\";\n}\n.si-affinityphoto:before {\n  content: \"\\e926\";\n}\n.si-affinitypublisher:before {\n  content: \"\\e927\";\n}\n.si-aiqfome:before {\n  content: \"\\e928\";\n}\n.si-airbnb:before {\n  content: \"\\e929\";\n}\n.si-airbus:before {\n  content: \"\\e92a\";\n}\n.si-aircall:before {\n  content: \"\\e92b\";\n}\n.si-aircanada:before {\n  content: \"\\e92c\";\n}\n.si-airfrance:before {\n  content: \"\\e92d\";\n}\n.si-airplayaudio:before {\n  content: \"\\e92e\";\n}\n.si-airplayvideo:before {\n  content: \"\\e92f\";\n}\n.si-airtable:before {\n  content: \"\\e930\";\n}\n.si-alfaromeo:before {\n  content: \"\\e931\";\n}\n.si-algolia:before {\n  content: \"\\e932\";\n}\n.si-alipay:before {\n  content: \"\\e933\";\n}\n.si-alliedmodders:before {\n  content: \"\\e934\";\n}\n.si-allocine:before {\n  content: \"\\e935\";\n}\n.si-alpinelinux:before {\n  content: \"\\e936\";\n}\n.si-altiumdesigner:before {\n  content: \"\\e937\";\n}\n.si-amazon:before {\n  content: \"\\e938\";\n}\n.si-amazonalexa:before {\n  content: \"\\e939\";\n}\n.si-amazonaws:before {\n  content: \"\\e93a\";\n}\n.si-amazonfiretv:before {\n  content: \"\\e93b\";\n}\n.si-amazonlumberyard:before {\n  content: \"\\e93c\";\n}\n.si-amazonprime:before {\n  content: \"\\e93d\";\n}\n.si-amd:before {\n  content: \"\\e93e\";\n}\n.si-americanairlines:before {\n  content: \"\\e93f\";\n}\n.si-americanexpress:before {\n  content: \"\\e940\";\n}\n.si-anaconda:before {\n  content: \"\\e941\";\n}\n.si-analogue:before {\n  content: \"\\e942\";\n}\n.si-anchor:before {\n  content: \"\\e943\";\n}\n.si-andela:before {\n  content: \"\\e944\";\n}\n.si-android:before {\n  content: \"\\e945\";\n}\n.si-androidauto:before {\n  content: \"\\e946\";\n}\n.si-androidstudio:before {\n  content: \"\\e947\";\n}\n.si-angellist:before {\n  content: \"\\e948\";\n}\n.si-angular:before {\n  content: \"\\e949\";\n}\n.si-angularjs:before {\n  content: \"\\e94a\";\n}\n.si-angularuniversal:before {\n  content: \"\\e94b\";\n}\n.si-ansible:before {\n  content: \"\\e94c\";\n}\n.si-ansys:before {\n  content: \"\\e94d\";\n}\n.si-antdesign:before {\n  content: \"\\e94e\";\n}\n.si-antena3:before {\n  content: \"\\e94f\";\n}\n.si-apache:before {\n  content: \"\\e950\";\n}\n.si-apacheairflow:before {\n  content: \"\\e951\";\n}\n.si-apacheant:before {\n  content: \"\\e952\";\n}\n.si-apachecassandra:before {\n  content: \"\\e953\";\n}\n.si-apachecloudstack:before {\n  content: \"\\e954\";\n}\n.si-apachecordova:before {\n  content: \"\\e955\";\n}\n.si-apachedruid:before {\n  content: \"\\e956\";\n}\n.si-apacheecharts:before {\n  content: \"\\e957\";\n}\n.si-apacheflink:before {\n  content: \"\\e958\";\n}\n.si-apachekafka:before {\n  content: \"\\e959\";\n}\n.si-apachemaven:before {\n  content: \"\\e95a\";\n}\n.si-apachenetbeanside:before {\n  content: \"\\e95b\";\n}\n.si-apacheopenoffice:before {\n  content: \"\\e95c\";\n}\n.si-apachepulsar:before {\n  content: \"\\e95d\";\n}\n.si-apacherocketmq:before {\n  content: \"\\e95e\";\n}\n.si-apachesolr:before {\n  content: \"\\e95f\";\n}\n.si-apachespark:before {\n  content: \"\\e960\";\n}\n.si-apollographql:before {\n  content: \"\\e961\";\n}\n.si-apple:before {\n  content: \"\\e962\";\n}\n.si-applemusic:before {\n  content: \"\\e963\";\n}\n.si-applepay:before {\n  content: \"\\e964\";\n}\n.si-applepodcasts:before {\n  content: \"\\e965\";\n}\n.si-appletv:before {\n  content: \"\\e966\";\n}\n.si-appsignal:before {\n  content: \"\\e967\";\n}\n.si-appstore:before {\n  content: \"\\e968\";\n}\n.si-appveyor:before {\n  content: \"\\e969\";\n}\n.si-aral:before {\n  content: \"\\e96a\";\n}\n.si-archicad:before {\n  content: \"\\e96b\";\n}\n.si-archiveofourown:before {\n  content: \"\\e96c\";\n}\n.si-archlinux:before {\n  content: \"\\e96d\";\n}\n.si-ardour:before {\n  content: \"\\e96e\";\n}\n.si-arduino:before {\n  content: \"\\e96f\";\n}\n.si-arlo:before {\n  content: \"\\e970\";\n}\n.si-artstation:before {\n  content: \"\\e971\";\n}\n.si-arxiv:before {\n  content: \"\\e972\";\n}\n.si-asana:before {\n  content: \"\\e973\";\n}\n.si-asciidoctor:before {\n  content: \"\\e974\";\n}\n.si-asciinema:before {\n  content: \"\\e975\";\n}\n.si-aseprite:before {\n  content: \"\\e976\";\n}\n.si-askfm:before {\n  content: \"\\e977\";\n}\n.si-asus:before {\n  content: \"\\e978\";\n}\n.si-at-and-t:before {\n  content: \"\\e979\";\n}\n.si-atari:before {\n  content: \"\\e97a\";\n}\n.si-atlassian:before {\n  content: \"\\e97b\";\n}\n.si-atom:before {\n  content: \"\\e97c\";\n}\n.si-audacity:before {\n  content: \"\\e97d\";\n}\n.si-audi:before {\n  content: \"\\e97e\";\n}\n.si-audible:before {\n  content: \"\\e97f\";\n}\n.si-audio-technica:before {\n  content: \"\\e980\";\n}\n.si-audioboom:before {\n  content: \"\\e981\";\n}\n.si-audiomack:before {\n  content: \"\\e982\";\n}\n.si-aurelia:before {\n  content: \"\\e983\";\n}\n.si-auth0:before {\n  content: \"\\e984\";\n}\n.si-authy:before {\n  content: \"\\e985\";\n}\n.si-autodesk:before {\n  content: \"\\e986\";\n}\n.si-automatic:before {\n  content: \"\\e987\";\n}\n.si-autotask:before {\n  content: \"\\e988\";\n}\n.si-aventrix:before {\n  content: \"\\e989\";\n}\n.si-awesomelists:before {\n  content: \"\\e98a\";\n}\n.si-awesomewm:before {\n  content: \"\\e98b\";\n}\n.si-azureartifacts:before {\n  content: \"\\e98c\";\n}\n.si-azuredataexplorer:before {\n  content: \"\\e98d\";\n}\n.si-azuredevops:before {\n  content: \"\\e98e\";\n}\n.si-azurefunctions:before {\n  content: \"\\e98f\";\n}\n.si-azurepipelines:before {\n  content: \"\\e990\";\n}\n.si-babel:before {\n  content: \"\\e991\";\n}\n.si-badgr:before {\n  content: \"\\e992\";\n}\n.si-badoo:before {\n  content: \"\\e993\";\n}\n.si-baidu:before {\n  content: \"\\e994\";\n}\n.si-bamboo:before {\n  content: \"\\e995\";\n}\n.si-bancontact:before {\n  content: \"\\e996\";\n}\n.si-bandcamp:before {\n  content: \"\\e997\";\n}\n.si-bandlab:before {\n  content: \"\\e998\";\n}\n.si-bandsintown:before {\n  content: \"\\e999\";\n}\n.si-basecamp:before {\n  content: \"\\e99a\";\n}\n.si-bata:before {\n  content: \"\\e99b\";\n}\n.si-bathasu:before {\n  content: \"\\e99c\";\n}\n.si-battle-dot-net:before {\n  content: \"\\e99d\";\n}\n.si-bbciplayer:before {\n  content: \"\\e99e\";\n}\n.si-beatport:before {\n  content: \"\\e99f\";\n}\n.si-beats:before {\n  content: \"\\e9a0\";\n}\n.si-beatsbydre:before {\n  content: \"\\e9a1\";\n}\n.si-behance:before {\n  content: \"\\e9a2\";\n}\n.si-beijingsubway:before {\n  content: \"\\e9a3\";\n}\n.si-bentley:before {\n  content: \"\\e9a4\";\n}\n.si-bigcartel:before {\n  content: \"\\e9a5\";\n}\n.si-bilibili:before {\n  content: \"\\e9a6\";\n}\n.si-bing:before {\n  content: \"\\e9a7\";\n}\n.si-bit:before {\n  content: \"\\e9a8\";\n}\n.si-bitbucket:before {\n  content: \"\\e9a9\";\n}\n.si-bitcoin:before {\n  content: \"\\e9aa\";\n}\n.si-bitdefender:before {\n  content: \"\\e9ab\";\n}\n.si-bitly:before {\n  content: \"\\e9ac\";\n}\n.si-bitrise:before {\n  content: \"\\e9ad\";\n}\n.si-bitwarden:before {\n  content: \"\\e9ae\";\n}\n.si-blackberry:before {\n  content: \"\\e9af\";\n}\n.si-blender:before {\n  content: \"\\e9b0\";\n}\n.si-blogger:before {\n  content: \"\\e9b1\";\n}\n.si-bloglovin:before {\n  content: \"\\e9b2\";\n}\n.si-bluetooth:before {\n  content: \"\\e9b3\";\n}\n.si-bmcsoftware:before {\n  content: \"\\e9b4\";\n}\n.si-bmw:before {\n  content: \"\\e9b5\";\n}\n.si-boeing:before {\n  content: \"\\e9b6\";\n}\n.si-boost:before {\n  content: \"\\e9b7\";\n}\n.si-bootstrap:before {\n  content: \"\\e9b8\";\n}\n.si-bosch:before {\n  content: \"\\e9b9\";\n}\n.si-bose:before {\n  content: \"\\e9ba\";\n}\n.si-bower:before {\n  content: \"\\e9bb\";\n}\n.si-box:before {\n  content: \"\\e9bc\";\n}\n.si-brand-dot-ai:before {\n  content: \"\\e9bd\";\n}\n.si-brandfolder:before {\n  content: \"\\e9be\";\n}\n.si-brave:before {\n  content: \"\\e9bf\";\n}\n.si-breaker:before {\n  content: \"\\e9c0\";\n}\n.si-broadcom:before {\n  content: \"\\e9c1\";\n}\n.si-bt:before {\n  content: \"\\e9c2\";\n}\n.si-buddy:before {\n  content: \"\\e9c3\";\n}\n.si-buefy:before {\n  content: \"\\e9c4\";\n}\n.si-buffer:before {\n  content: \"\\e9c5\";\n}\n.si-bugatti:before {\n  content: \"\\e9c6\";\n}\n.si-bugsnag:before {\n  content: \"\\e9c7\";\n}\n.si-buildkite:before {\n  content: \"\\e9c8\";\n}\n.si-bulma:before {\n  content: \"\\e9c9\";\n}\n.si-bunq:before {\n  content: \"\\e9ca\";\n}\n.si-buymeacoffee:before {\n  content: \"\\e9cb\";\n}\n.si-buzzfeed:before {\n  content: \"\\e9cc\";\n}\n.si-byte:before {\n  content: \"\\e9cd\";\n}\n.si-c:before {\n  content: \"\\e9ce\";\n}\n.si-cairometro:before {\n  content: \"\\e9cf\";\n}\n.si-cakephp:before {\n  content: \"\\e9d0\";\n}\n.si-campaignmonitor:before {\n  content: \"\\e9d1\";\n}\n.si-canonical:before {\n  content: \"\\e9d2\";\n}\n.si-canva:before {\n  content: \"\\e9d3\";\n}\n.si-carthrottle:before {\n  content: \"\\e9d4\";\n}\n.si-carto:before {\n  content: \"\\e9d5\";\n}\n.si-cashapp:before {\n  content: \"\\e9d6\";\n}\n.si-castbox:before {\n  content: \"\\e9d7\";\n}\n.si-castorama:before {\n  content: \"\\e9d8\";\n}\n.si-castro:before {\n  content: \"\\e9d9\";\n}\n.si-caterpillar:before {\n  content: \"\\e9da\";\n}\n.si-cdprojekt:before {\n  content: \"\\e9db\";\n}\n.si-celery:before {\n  content: \"\\e9dc\";\n}\n.si-centos:before {\n  content: \"\\e9dd\";\n}\n.si-cesium:before {\n  content: \"\\e9de\";\n}\n.si-cevo:before {\n  content: \"\\e9df\";\n}\n.si-chartmogul:before {\n  content: \"\\e9e0\";\n}\n.si-chase:before {\n  content: \"\\e9e1\";\n}\n.si-checkmarx:before {\n  content: \"\\e9e2\";\n}\n.si-chef:before {\n  content: \"\\e9e3\";\n}\n.si-chocolatey:before {\n  content: \"\\e9e4\";\n}\n.si-chupachups:before {\n  content: \"\\e9e5\";\n}\n.si-cinema4d:before {\n  content: \"\\e9e6\";\n}\n.si-circle:before {\n  content: \"\\e9e7\";\n}\n.si-circleci:before {\n  content: \"\\e9e8\";\n}\n.si-cirrusci:before {\n  content: \"\\e9e9\";\n}\n.si-cisco:before {\n  content: \"\\e9ea\";\n}\n.si-citrix:before {\n  content: \"\\e9eb\";\n}\n.si-citroen:before {\n  content: \"\\e9ec\";\n}\n.si-civicrm:before {\n  content: \"\\e9ed\";\n}\n.si-claris:before {\n  content: \"\\e9ee\";\n}\n.si-clickup:before {\n  content: \"\\e9ef\";\n}\n.si-cliqz:before {\n  content: \"\\e9f0\";\n}\n.si-clockify:before {\n  content: \"\\e9f1\";\n}\n.si-clojure:before {\n  content: \"\\e9f2\";\n}\n.si-cloud66:before {\n  content: \"\\e9f3\";\n}\n.si-cloudbees:before {\n  content: \"\\e9f4\";\n}\n.si-cloudcannon:before {\n  content: \"\\e9f5\";\n}\n.si-cloudflare:before {\n  content: \"\\e9f6\";\n}\n.si-cloudsmith:before {\n  content: \"\\e9f7\";\n}\n.si-clubhouse:before {\n  content: \"\\e9f8\";\n}\n.si-clyp:before {\n  content: \"\\e9f9\";\n}\n.si-cmake:before {\n  content: \"\\e9fa\";\n}\n.si-cnn:before {\n  content: \"\\e9fb\";\n}\n.si-co-op:before {\n  content: \"\\e9fc\";\n}\n.si-cocoapods:before {\n  content: \"\\e9fd\";\n}\n.si-coda:before {\n  content: \"\\e9fe\";\n}\n.si-codacy:before {\n  content: \"\\e9ff\";\n}\n.si-codecademy:before {\n  content: \"\\ea00\";\n}\n.si-codechef:before {\n  content: \"\\ea01\";\n}\n.si-codeclimate:before {\n  content: \"\\ea02\";\n}\n.si-codecov:before {\n  content: \"\\ea03\";\n}\n.si-codefactor:before {\n  content: \"\\ea04\";\n}\n.si-codeforces:before {\n  content: \"\\ea05\";\n}\n.si-codeigniter:before {\n  content: \"\\ea06\";\n}\n.si-codepen:before {\n  content: \"\\ea07\";\n}\n.si-codersrank:before {\n  content: \"\\ea08\";\n}\n.si-coderwall:before {\n  content: \"\\ea09\";\n}\n.si-codesandbox:before {\n  content: \"\\ea0a\";\n}\n.si-codeship:before {\n  content: \"\\ea0b\";\n}\n.si-codewars:before {\n  content: \"\\ea0c\";\n}\n.si-codio:before {\n  content: \"\\ea0d\";\n}\n.si-coffeescript:before {\n  content: \"\\ea0e\";\n}\n.si-coinbase:before {\n  content: \"\\ea0f\";\n}\n.si-commonworkflowlanguage:before {\n  content: \"\\ea10\";\n}\n.si-composer:before {\n  content: \"\\ea11\";\n}\n.si-compropago:before {\n  content: \"\\ea12\";\n}\n.si-concourse:before {\n  content: \"\\ea13\";\n}\n.si-conda-forge:before {\n  content: \"\\ea14\";\n}\n.si-conekta:before {\n  content: \"\\ea15\";\n}\n.si-confluence:before {\n  content: \"\\ea16\";\n}\n.si-consul:before {\n  content: \"\\ea17\";\n}\n.si-contactlesspayment:before {\n  content: \"\\ea18\";\n}\n.si-convertio:before {\n  content: \"\\ea19\";\n}\n.si-coronaengine:before {\n  content: \"\\ea1a\";\n}\n.si-coronarenderer:before {\n  content: \"\\ea1b\";\n}\n.si-counter-strike:before {\n  content: \"\\ea1c\";\n}\n.si-coursera:before {\n  content: \"\\ea1d\";\n}\n.si-coveralls:before {\n  content: \"\\ea1e\";\n}\n.si-cpanel:before {\n  content: \"\\ea1f\";\n}\n.si-cplusplus:before {\n  content: \"\\ea20\";\n}\n.si-craftcms:before {\n  content: \"\\ea21\";\n}\n.si-creativecommons:before {\n  content: \"\\ea22\";\n}\n.si-crehana:before {\n  content: \"\\ea23\";\n}\n.si-crowdin:before {\n  content: \"\\ea24\";\n}\n.si-crunchbase:before {\n  content: \"\\ea25\";\n}\n.si-crunchyroll:before {\n  content: \"\\ea26\";\n}\n.si-cryengine:before {\n  content: \"\\ea27\";\n}\n.si-csharp:before {\n  content: \"\\ea28\";\n}\n.si-css3:before {\n  content: \"\\ea29\";\n}\n.si-csswizardry:before {\n  content: \"\\ea2a\";\n}\n.si-curl:before {\n  content: \"\\ea2b\";\n}\n.si-curseforge:before {\n  content: \"\\ea2c\";\n}\n.si-cypress:before {\n  content: \"\\ea2d\";\n}\n.si-d3-dot-js:before {\n  content: \"\\ea2e\";\n}\n.si-daf:before {\n  content: \"\\ea2f\";\n}\n.si-dailymotion:before {\n  content: \"\\ea30\";\n}\n.si-daimler:before {\n  content: \"\\ea31\";\n}\n.si-darkreader:before {\n  content: \"\\ea32\";\n}\n.si-dart:before {\n  content: \"\\ea33\";\n}\n.si-daserste:before {\n  content: \"\\ea34\";\n}\n.si-dash:before {\n  content: \"\\ea35\";\n}\n.si-dashlane:before {\n  content: \"\\ea36\";\n}\n.si-dassaultsystemes:before {\n  content: \"\\ea37\";\n}\n.si-datacamp:before {\n  content: \"\\ea38\";\n}\n.si-datadog:before {\n  content: \"\\ea39\";\n}\n.si-dazn:before {\n  content: \"\\ea3a\";\n}\n.si-dblp:before {\n  content: \"\\ea3b\";\n}\n.si-dcentertainment:before {\n  content: \"\\ea3c\";\n}\n.si-debian:before {\n  content: \"\\ea3d\";\n}\n.si-deepin:before {\n  content: \"\\ea3e\";\n}\n.si-deezer:before {\n  content: \"\\ea3f\";\n}\n.si-delicious:before {\n  content: \"\\ea40\";\n}\n.si-deliveroo:before {\n  content: \"\\ea41\";\n}\n.si-dell:before {\n  content: \"\\ea42\";\n}\n.si-deno:before {\n  content: \"\\ea43\";\n}\n.si-dependabot:before {\n  content: \"\\ea44\";\n}\n.si-derspiegel:before {\n  content: \"\\ea45\";\n}\n.si-designernews:before {\n  content: \"\\ea46\";\n}\n.si-dev-dot-to:before {\n  content: \"\\ea47\";\n}\n.si-deviantart:before {\n  content: \"\\ea48\";\n}\n.si-devrant:before {\n  content: \"\\ea49\";\n}\n.si-dhl:before {\n  content: \"\\ea4a\";\n}\n.si-diaspora:before {\n  content: \"\\ea4b\";\n}\n.si-digg:before {\n  content: \"\\ea4c\";\n}\n.si-digitalocean:before {\n  content: \"\\ea4d\";\n}\n.si-dior:before {\n  content: \"\\ea4e\";\n}\n.si-directus:before {\n  content: \"\\ea4f\";\n}\n.si-discogs:before {\n  content: \"\\ea50\";\n}\n.si-discord:before {\n  content: \"\\ea51\";\n}\n.si-discourse:before {\n  content: \"\\ea52\";\n}\n.si-discover:before {\n  content: \"\\ea53\";\n}\n.si-disqus:before {\n  content: \"\\ea54\";\n}\n.si-disroot:before {\n  content: \"\\ea55\";\n}\n.si-django:before {\n  content: \"\\ea56\";\n}\n.si-dlna:before {\n  content: \"\\ea57\";\n}\n.si-docker:before {\n  content: \"\\ea58\";\n}\n.si-docusign:before {\n  content: \"\\ea59\";\n}\n.si-dolby:before {\n  content: \"\\ea5a\";\n}\n.si-dot-net:before {\n  content: \"\\ea5b\";\n}\n.si-douban:before {\n  content: \"\\ea5c\";\n}\n.si-draugiem-dot-lv:before {\n  content: \"\\ea5d\";\n}\n.si-dribbble:before {\n  content: \"\\ea5e\";\n}\n.si-drone:before {\n  content: \"\\ea5f\";\n}\n.si-drooble:before {\n  content: \"\\ea60\";\n}\n.si-dropbox:before {\n  content: \"\\ea61\";\n}\n.si-drupal:before {\n  content: \"\\ea62\";\n}\n.si-dsautomobiles:before {\n  content: \"\\ea63\";\n}\n.si-dtube:before {\n  content: \"\\ea64\";\n}\n.si-duckduckgo:before {\n  content: \"\\ea65\";\n}\n.si-dunked:before {\n  content: \"\\ea66\";\n}\n.si-duolingo:before {\n  content: \"\\ea67\";\n}\n.si-dynamics365:before {\n  content: \"\\ea68\";\n}\n.si-dynatrace:before {\n  content: \"\\ea69\";\n}\n.si-ea:before {\n  content: \"\\ea6a\";\n}\n.si-easyjet:before {\n  content: \"\\ea6b\";\n}\n.si-ebay:before {\n  content: \"\\ea6c\";\n}\n.si-eclipseide:before {\n  content: \"\\ea6d\";\n}\n.si-eclipsemosquitto:before {\n  content: \"\\ea6e\";\n}\n.si-egnyte:before {\n  content: \"\\ea6f\";\n}\n.si-elastic:before {\n  content: \"\\ea70\";\n}\n.si-elasticcloud:before {\n  content: \"\\ea71\";\n}\n.si-elasticsearch:before {\n  content: \"\\ea72\";\n}\n.si-elasticstack:before {\n  content: \"\\ea73\";\n}\n.si-electron:before {\n  content: \"\\ea74\";\n}\n.si-elementary:before {\n  content: \"\\ea75\";\n}\n.si-eleventy:before {\n  content: \"\\ea76\";\n}\n.si-elixir:before {\n  content: \"\\ea77\";\n}\n.si-eljueves:before {\n  content: \"\\ea78\";\n}\n.si-ello:before {\n  content: \"\\ea79\";\n}\n.si-elm:before {\n  content: \"\\ea7a\";\n}\n.si-elsevier:before {\n  content: \"\\ea7b\";\n}\n.si-embarcadero:before {\n  content: \"\\ea7c\";\n}\n.si-ember-dot-js:before {\n  content: \"\\ea7d\";\n}\n.si-emby:before {\n  content: \"\\ea7e\";\n}\n.si-emlakjet:before {\n  content: \"\\ea7f\";\n}\n.si-empirekred:before {\n  content: \"\\ea80\";\n}\n.si-envato:before {\n  content: \"\\ea81\";\n}\n.si-epel:before {\n  content: \"\\ea82\";\n}\n.si-epicgames:before {\n  content: \"\\ea83\";\n}\n.si-epson:before {\n  content: \"\\ea84\";\n}\n.si-erlang:before {\n  content: \"\\ea85\";\n}\n.si-esea:before {\n  content: \"\\ea86\";\n}\n.si-eslgaming:before {\n  content: \"\\ea87\";\n}\n.si-eslint:before {\n  content: \"\\ea88\";\n}\n.si-ethereum:before {\n  content: \"\\ea89\";\n}\n.si-etsy:before {\n  content: \"\\ea8a\";\n}\n.si-eventbrite:before {\n  content: \"\\ea8b\";\n}\n.si-eventstore:before {\n  content: \"\\ea8c\";\n}\n.si-evernote:before {\n  content: \"\\ea8d\";\n}\n.si-everplaces:before {\n  content: \"\\ea8e\";\n}\n.si-evry:before {\n  content: \"\\ea8f\";\n}\n.si-exercism:before {\n  content: \"\\ea90\";\n}\n.si-expertsexchange:before {\n  content: \"\\ea91\";\n}\n.si-expo:before {\n  content: \"\\ea92\";\n}\n.si-eyeem:before {\n  content: \"\\ea93\";\n}\n.si-f-droid:before {\n  content: \"\\ea94\";\n}\n.si-f-secure:before {\n  content: \"\\ea95\";\n}\n.si-facebook:before {\n  content: \"\\ea96\";\n}\n.si-facebookgaming:before {\n  content: \"\\ea97\";\n}\n.si-facebooklive:before {\n  content: \"\\ea98\";\n}\n.si-faceit:before {\n  content: \"\\ea99\";\n}\n.si-fandango:before {\n  content: \"\\ea9a\";\n}\n.si-fandom:before {\n  content: \"\\ea9b\";\n}\n.si-farfetch:before {\n  content: \"\\ea9c\";\n}\n.si-fastapi:before {\n  content: \"\\ea9d\";\n}\n.si-fastify:before {\n  content: \"\\ea9e\";\n}\n.si-fastly:before {\n  content: \"\\ea9f\";\n}\n.si-favro:before {\n  content: \"\\eaa0\";\n}\n.si-feathub:before {\n  content: \"\\eaa1\";\n}\n.si-fedora:before {\n  content: \"\\eaa2\";\n}\n.si-fedramp:before {\n  content: \"\\eaa3\";\n}\n.si-feedly:before {\n  content: \"\\eaa4\";\n}\n.si-ferrari:before {\n  content: \"\\eaa5\";\n}\n.si-ferrarin-dot-v-dot:before {\n  content: \"\\eaa6\";\n}\n.si-fiat:before {\n  content: \"\\eaa7\";\n}\n.si-fidoalliance:before {\n  content: \"\\eaa8\";\n}\n.si-fifa:before {\n  content: \"\\eaa9\";\n}\n.si-figma:before {\n  content: \"\\eaaa\";\n}\n.si-figshare:before {\n  content: \"\\eaab\";\n}\n.si-fila:before {\n  content: \"\\eaac\";\n}\n.si-filezilla:before {\n  content: \"\\eaad\";\n}\n.si-firebase:before {\n  content: \"\\eaae\";\n}\n.si-firefox:before {\n  content: \"\\eaaf\";\n}\n.si-firefoxbrowser:before {\n  content: \"\\eab0\";\n}\n.si-first:before {\n  content: \"\\eab1\";\n}\n.si-fitbit:before {\n  content: \"\\eab2\";\n}\n.si-fite:before {\n  content: \"\\eab3\";\n}\n.si-fiverr:before {\n  content: \"\\eab4\";\n}\n.si-flask:before {\n  content: \"\\eab5\";\n}\n.si-flathub:before {\n  content: \"\\eab6\";\n}\n.si-flattr:before {\n  content: \"\\eab7\";\n}\n.si-flickr:before {\n  content: \"\\eab8\";\n}\n.si-flipboard:before {\n  content: \"\\eab9\";\n}\n.si-floatplane:before {\n  content: \"\\eaba\";\n}\n.si-flood:before {\n  content: \"\\eabb\";\n}\n.si-fluentd:before {\n  content: \"\\eabc\";\n}\n.si-flutter:before {\n  content: \"\\eabd\";\n}\n.si-fnac:before {\n  content: \"\\eabe\";\n}\n.si-fontawesome:before {\n  content: \"\\eabf\";\n}\n.si-ford:before {\n  content: \"\\eac0\";\n}\n.si-formstack:before {\n  content: \"\\eac1\";\n}\n.si-fortinet:before {\n  content: \"\\eac2\";\n}\n.si-fossa:before {\n  content: \"\\eac3\";\n}\n.si-fossilscm:before {\n  content: \"\\eac4\";\n}\n.si-foursquare:before {\n  content: \"\\eac5\";\n}\n.si-framer:before {\n  content: \"\\eac6\";\n}\n.si-freebsd:before {\n  content: \"\\eac7\";\n}\n.si-freecodecamp:before {\n  content: \"\\eac8\";\n}\n.si-freedesktop-dot-org:before {\n  content: \"\\eac9\";\n}\n.si-freelancer:before {\n  content: \"\\eaca\";\n}\n.si-fujifilm:before {\n  content: \"\\eacb\";\n}\n.si-fujitsu:before {\n  content: \"\\eacc\";\n}\n.si-furaffinity:before {\n  content: \"\\eacd\";\n}\n.si-furrynetwork:before {\n  content: \"\\eace\";\n}\n.si-g2a:before {\n  content: \"\\eacf\";\n}\n.si-garmin:before {\n  content: \"\\ead0\";\n}\n.si-gatling:before {\n  content: \"\\ead1\";\n}\n.si-gatsby:before {\n  content: \"\\ead2\";\n}\n.si-gauges:before {\n  content: \"\\ead3\";\n}\n.si-geeksforgeeks:before {\n  content: \"\\ead4\";\n}\n.si-generalmotors:before {\n  content: \"\\ead5\";\n}\n.si-genius:before {\n  content: \"\\ead6\";\n}\n.si-gentoo:before {\n  content: \"\\ead7\";\n}\n.si-geocaching:before {\n  content: \"\\ead8\";\n}\n.si-gerrit:before {\n  content: \"\\ead9\";\n}\n.si-ghost:before {\n  content: \"\\eada\";\n}\n.si-ghostery:before {\n  content: \"\\eadb\";\n}\n.si-gimp:before {\n  content: \"\\eadc\";\n}\n.si-giphy:before {\n  content: \"\\eadd\";\n}\n.si-git:before {\n  content: \"\\eade\";\n}\n.si-gitea:before {\n  content: \"\\eadf\";\n}\n.si-github:before {\n  content: \"\\eae0\";\n}\n.si-githubactions:before {\n  content: \"\\eae1\";\n}\n.si-gitkraken:before {\n  content: \"\\eae2\";\n}\n.si-gitlab:before {\n  content: \"\\eae3\";\n}\n.si-gitpod:before {\n  content: \"\\eae4\";\n}\n.si-gitter:before {\n  content: \"\\eae5\";\n}\n.si-glassdoor:before {\n  content: \"\\eae6\";\n}\n.si-glitch:before {\n  content: \"\\eae7\";\n}\n.si-gmail:before {\n  content: \"\\eae8\";\n}\n.si-gnome:before {\n  content: \"\\eae9\";\n}\n.si-gnu:before {\n  content: \"\\eaea\";\n}\n.si-gnubash:before {\n  content: \"\\eaeb\";\n}\n.si-gnuemacs:before {\n  content: \"\\eaec\";\n}\n.si-gnuicecat:before {\n  content: \"\\eaed\";\n}\n.si-gnuprivacyguard:before {\n  content: \"\\eaee\";\n}\n.si-gnusocial:before {\n  content: \"\\eaef\";\n}\n.si-go:before {\n  content: \"\\eaf0\";\n}\n.si-godotengine:before {\n  content: \"\\eaf1\";\n}\n.si-gofundme:before {\n  content: \"\\eaf2\";\n}\n.si-gog-dot-com:before {\n  content: \"\\eaf3\";\n}\n.si-goldenline:before {\n  content: \"\\eaf4\";\n}\n.si-goodreads:before {\n  content: \"\\eaf5\";\n}\n.si-google:before {\n  content: \"\\eaf6\";\n}\n.si-googleads:before {\n  content: \"\\eaf7\";\n}\n.si-googleadsense:before {\n  content: \"\\eaf8\";\n}\n.si-googleanalytics:before {\n  content: \"\\eaf9\";\n}\n.si-googleassistant:before {\n  content: \"\\eafa\";\n}\n.si-googlecalendar:before {\n  content: \"\\eafb\";\n}\n.si-googlecardboard:before {\n  content: \"\\eafc\";\n}\n.si-googlecast:before {\n  content: \"\\eafd\";\n}\n.si-googlechrome:before {\n  content: \"\\eafe\";\n}\n.si-googleclassroom:before {\n  content: \"\\eaff\";\n}\n.si-googlecloud:before {\n  content: \"\\eb00\";\n}\n.si-googledrive:before {\n  content: \"\\eb01\";\n}\n.si-googleearth:before {\n  content: \"\\eb02\";\n}\n.si-googlefit:before {\n  content: \"\\eb03\";\n}\n.si-googlehangouts:before {\n  content: \"\\eb04\";\n}\n.si-googlehangoutschat:before {\n  content: \"\\eb05\";\n}\n.si-googlehangoutsmeet:before {\n  content: \"\\eb06\";\n}\n.si-googlekeep:before {\n  content: \"\\eb07\";\n}\n.si-googlelens:before {\n  content: \"\\eb08\";\n}\n.si-googlemaps:before {\n  content: \"\\eb09\";\n}\n.si-googlemessages:before {\n  content: \"\\eb0a\";\n}\n.si-googlemybusiness:before {\n  content: \"\\eb0b\";\n}\n.si-googlenearby:before {\n  content: \"\\eb0c\";\n}\n.si-googlenews:before {\n  content: \"\\eb0d\";\n}\n.si-googlepay:before {\n  content: \"\\eb0e\";\n}\n.si-googleplay:before {\n  content: \"\\eb0f\";\n}\n.si-googlepodcasts:before {\n  content: \"\\eb10\";\n}\n.si-googlescholar:before {\n  content: \"\\eb11\";\n}\n.si-googlesearchconsole:before {\n  content: \"\\eb12\";\n}\n.si-googlesheets:before {\n  content: \"\\eb13\";\n}\n.si-googlestreetview:before {\n  content: \"\\eb14\";\n}\n.si-googletagmanager:before {\n  content: \"\\eb15\";\n}\n.si-googletranslate:before {\n  content: \"\\eb16\";\n}\n.si-gov-dot-uk:before {\n  content: \"\\eb17\";\n}\n.si-gradle:before {\n  content: \"\\eb18\";\n}\n.si-grafana:before {\n  content: \"\\eb19\";\n}\n.si-graphcool:before {\n  content: \"\\eb1a\";\n}\n.si-graphql:before {\n  content: \"\\eb1b\";\n}\n.si-grav:before {\n  content: \"\\eb1c\";\n}\n.si-gravatar:before {\n  content: \"\\eb1d\";\n}\n.si-greensock:before {\n  content: \"\\eb1e\";\n}\n.si-gridsome:before {\n  content: \"\\eb1f\";\n}\n.si-groovy:before {\n  content: \"\\eb20\";\n}\n.si-groupon:before {\n  content: \"\\eb21\";\n}\n.si-grunt:before {\n  content: \"\\eb22\";\n}\n.si-guangzhoumetro:before {\n  content: \"\\eb23\";\n}\n.si-gulp:before {\n  content: \"\\eb24\";\n}\n.si-gumroad:before {\n  content: \"\\eb25\";\n}\n.si-gumtree:before {\n  content: \"\\eb26\";\n}\n.si-gutenberg:before {\n  content: \"\\eb27\";\n}\n.si-habr:before {\n  content: \"\\eb28\";\n}\n.si-hackaday:before {\n  content: \"\\eb29\";\n}\n.si-hackclub:before {\n  content: \"\\eb2a\";\n}\n.si-hackerearth:before {\n  content: \"\\eb2b\";\n}\n.si-hackerone:before {\n  content: \"\\eb2c\";\n}\n.si-hackerrank:before {\n  content: \"\\eb2d\";\n}\n.si-hackhands:before {\n  content: \"\\eb2e\";\n}\n.si-hackster:before {\n  content: \"\\eb2f\";\n}\n.si-happycow:before {\n  content: \"\\eb30\";\n}\n.si-harbor:before {\n  content: \"\\eb31\";\n}\n.si-hashnode:before {\n  content: \"\\eb32\";\n}\n.si-haskell:before {\n  content: \"\\eb33\";\n}\n.si-hatenabookmark:before {\n  content: \"\\eb34\";\n}\n.si-haveibeenpwned:before {\n  content: \"\\eb35\";\n}\n.si-haxe:before {\n  content: \"\\eb36\";\n}\n.si-hbo:before {\n  content: \"\\eb37\";\n}\n.si-hcl:before {\n  content: \"\\eb38\";\n}\n.si-hellofresh:before {\n  content: \"\\eb39\";\n}\n.si-hellyhansen:before {\n  content: \"\\eb3a\";\n}\n.si-helm:before {\n  content: \"\\eb3b\";\n}\n.si-here:before {\n  content: \"\\eb3c\";\n}\n.si-heroku:before {\n  content: \"\\eb3d\";\n}\n.si-hexo:before {\n  content: \"\\eb3e\";\n}\n.si-hey:before {\n  content: \"\\eb3f\";\n}\n.si-highly:before {\n  content: \"\\eb40\";\n}\n.si-hilton:before {\n  content: \"\\eb41\";\n}\n.si-hipchat:before {\n  content: \"\\eb42\";\n}\n.si-hitachi:before {\n  content: \"\\eb43\";\n}\n.si-hive:before {\n  content: \"\\eb44\";\n}\n.si-hockeyapp:before {\n  content: \"\\eb45\";\n}\n.si-homeadvisor:before {\n  content: \"\\eb46\";\n}\n.si-homeassistant:before {\n  content: \"\\eb47\";\n}\n.si-homebrew:before {\n  content: \"\\eb48\";\n}\n.si-homify:before {\n  content: \"\\eb49\";\n}\n.si-honda:before {\n  content: \"\\eb4a\";\n}\n.si-hootsuite:before {\n  content: \"\\eb4b\";\n}\n.si-hotels-dot-com:before {\n  content: \"\\eb4c\";\n}\n.si-houdini:before {\n  content: \"\\eb4d\";\n}\n.si-houzz:before {\n  content: \"\\eb4e\";\n}\n.si-hp:before {\n  content: \"\\eb4f\";\n}\n.si-html5:before {\n  content: \"\\eb50\";\n}\n.si-htmlacademy:before {\n  content: \"\\eb51\";\n}\n.si-huawei:before {\n  content: \"\\eb52\";\n}\n.si-hubspot:before {\n  content: \"\\eb53\";\n}\n.si-hugo:before {\n  content: \"\\eb54\";\n}\n.si-hulu:before {\n  content: \"\\eb55\";\n}\n.si-humblebundle:before {\n  content: \"\\eb56\";\n}\n.si-hurriyetemlak:before {\n  content: \"\\eb57\";\n}\n.si-husqvarna:before {\n  content: \"\\eb58\";\n}\n.si-hypothesis:before {\n  content: \"\\eb59\";\n}\n.si-hyundai:before {\n  content: \"\\eb5a\";\n}\n.si-iata:before {\n  content: \"\\eb5b\";\n}\n.si-ibeacon:before {\n  content: \"\\eb5c\";\n}\n.si-ibm:before {\n  content: \"\\eb5d\";\n}\n.si-icloud:before {\n  content: \"\\eb5e\";\n}\n.si-icomoon:before {\n  content: \"\\eb5f\";\n}\n.si-icon:before {\n  content: \"\\eb60\";\n}\n.si-iconfinder:before {\n  content: \"\\eb61\";\n}\n.si-iconify:before {\n  content: \"\\eb62\";\n}\n.si-iconjar:before {\n  content: \"\\eb63\";\n}\n.si-icq:before {\n  content: \"\\eb64\";\n}\n.si-ideal:before {\n  content: \"\\eb65\";\n}\n.si-ifixit:before {\n  content: \"\\eb66\";\n}\n.si-ifood:before {\n  content: \"\\eb67\";\n}\n.si-ifttt:before {\n  content: \"\\eb68\";\n}\n.si-iheartradio:before {\n  content: \"\\eb69\";\n}\n.si-imdb:before {\n  content: \"\\eb6a\";\n}\n.si-imgur:before {\n  content: \"\\eb6b\";\n}\n.si-indeed:before {\n  content: \"\\eb6c\";\n}\n.si-influxdb:before {\n  content: \"\\eb6d\";\n}\n.si-inkscape:before {\n  content: \"\\eb6e\";\n}\n.si-insomnia:before {\n  content: \"\\eb6f\";\n}\n.si-instacart:before {\n  content: \"\\eb70\";\n}\n.si-instagram:before {\n  content: \"\\eb71\";\n}\n.si-instapaper:before {\n  content: \"\\eb72\";\n}\n.si-instructables:before {\n  content: \"\\eb73\";\n}\n.si-intel:before {\n  content: \"\\eb74\";\n}\n.si-intellijidea:before {\n  content: \"\\eb75\";\n}\n.si-intercom:before {\n  content: \"\\eb76\";\n}\n.si-internetarchive:before {\n  content: \"\\eb77\";\n}\n.si-internetexplorer:before {\n  content: \"\\eb78\";\n}\n.si-invision:before {\n  content: \"\\eb79\";\n}\n.si-invoiceninja:before {\n  content: \"\\eb7a\";\n}\n.si-iobroker:before {\n  content: \"\\eb7b\";\n}\n.si-ionic:before {\n  content: \"\\eb7c\";\n}\n.si-ios:before {\n  content: \"\\eb7d\";\n}\n.si-ipfs:before {\n  content: \"\\eb7e\";\n}\n.si-issuu:before {\n  content: \"\\eb7f\";\n}\n.si-itch-dot-io:before {\n  content: \"\\eb80\";\n}\n.si-itunes:before {\n  content: \"\\eb81\";\n}\n.si-iveco:before {\n  content: \"\\eb82\";\n}\n.si-jabber:before {\n  content: \"\\eb83\";\n}\n.si-jamboard:before {\n  content: \"\\eb84\";\n}\n.si-jameson:before {\n  content: \"\\eb85\";\n}\n.si-jasmine:before {\n  content: \"\\eb86\";\n}\n.si-java:before {\n  content: \"\\eb87\";\n}\n.si-javascript:before {\n  content: \"\\eb88\";\n}\n.si-jbl:before {\n  content: \"\\eb89\";\n}\n.si-jcb:before {\n  content: \"\\eb8a\";\n}\n.si-jeep:before {\n  content: \"\\eb8b\";\n}\n.si-jekyll:before {\n  content: \"\\eb8c\";\n}\n.si-jenkins:before {\n  content: \"\\eb8d\";\n}\n.si-jenkinsx:before {\n  content: \"\\eb8e\";\n}\n.si-jest:before {\n  content: \"\\eb8f\";\n}\n.si-jet:before {\n  content: \"\\eb90\";\n}\n.si-jetbrains:before {\n  content: \"\\eb91\";\n}\n.si-jfrog:before {\n  content: \"\\eb92\";\n}\n.si-jfrogbintray:before {\n  content: \"\\eb93\";\n}\n.si-jinja:before {\n  content: \"\\eb94\";\n}\n.si-jira:before {\n  content: \"\\eb95\";\n}\n.si-jirasoftware:before {\n  content: \"\\eb96\";\n}\n.si-johndeere:before {\n  content: \"\\eb97\";\n}\n.si-joomla:before {\n  content: \"\\eb98\";\n}\n.si-jpeg:before {\n  content: \"\\eb99\";\n}\n.si-jquery:before {\n  content: \"\\eb9a\";\n}\n.si-jrgroup:before {\n  content: \"\\eb9b\";\n}\n.si-jsdelivr:before {\n  content: \"\\eb9c\";\n}\n.si-jsfiddle:before {\n  content: \"\\eb9d\";\n}\n.si-json:before {\n  content: \"\\eb9e\";\n}\n.si-jsonwebtokens:before {\n  content: \"\\eb9f\";\n}\n.si-julia:before {\n  content: \"\\eba0\";\n}\n.si-jupyter:before {\n  content: \"\\eba1\";\n}\n.si-justeat:before {\n  content: \"\\eba2\";\n}\n.si-justgiving:before {\n  content: \"\\eba3\";\n}\n.si-kaggle:before {\n  content: \"\\eba4\";\n}\n.si-kahoot:before {\n  content: \"\\eba5\";\n}\n.si-kaios:before {\n  content: \"\\eba6\";\n}\n.si-kakao:before {\n  content: \"\\eba7\";\n}\n.si-karlsruherverkehrsverbund:before {\n  content: \"\\eba8\";\n}\n.si-kaspersky:before {\n  content: \"\\eba9\";\n}\n.si-katana:before {\n  content: \"\\ebaa\";\n}\n.si-kde:before {\n  content: \"\\ebab\";\n}\n.si-keepassxc:before {\n  content: \"\\ebac\";\n}\n.si-kentico:before {\n  content: \"\\ebad\";\n}\n.si-keras:before {\n  content: \"\\ebae\";\n}\n.si-keybase:before {\n  content: \"\\ebaf\";\n}\n.si-keycdn:before {\n  content: \"\\ebb0\";\n}\n.si-khanacademy:before {\n  content: \"\\ebb1\";\n}\n.si-khronosgroup:before {\n  content: \"\\ebb2\";\n}\n.si-kia:before {\n  content: \"\\ebb3\";\n}\n.si-kibana:before {\n  content: \"\\ebb4\";\n}\n.si-kickstarter:before {\n  content: \"\\ebb5\";\n}\n.si-kik:before {\n  content: \"\\ebb6\";\n}\n.si-kirby:before {\n  content: \"\\ebb7\";\n}\n.si-klm:before {\n  content: \"\\ebb8\";\n}\n.si-klout:before {\n  content: \"\\ebb9\";\n}\n.si-known:before {\n  content: \"\\ebba\";\n}\n.si-ko-fi:before {\n  content: \"\\ebbb\";\n}\n.si-kodi:before {\n  content: \"\\ebbc\";\n}\n.si-koding:before {\n  content: \"\\ebbd\";\n}\n.si-kofax:before {\n  content: \"\\ebbe\";\n}\n.si-komoot:before {\n  content: \"\\ebbf\";\n}\n.si-kotlin:before {\n  content: \"\\ebc0\";\n}\n.si-krita:before {\n  content: \"\\ebc1\";\n}\n.si-ktm:before {\n  content: \"\\ebc2\";\n}\n.si-kubernetes:before {\n  content: \"\\ebc3\";\n}\n.si-kyocera:before {\n  content: \"\\ebc4\";\n}\n.si-labview:before {\n  content: \"\\ebc5\";\n}\n.si-lamborghini:before {\n  content: \"\\ebc6\";\n}\n.si-landrover:before {\n  content: \"\\ebc7\";\n}\n.si-laravel:before {\n  content: \"\\ebc8\";\n}\n.si-laravelhorizon:before {\n  content: \"\\ebc9\";\n}\n.si-laravelnova:before {\n  content: \"\\ebca\";\n}\n.si-last-dot-fm:before {\n  content: \"\\ebcb\";\n}\n.si-lastpass:before {\n  content: \"\\ebcc\";\n}\n.si-latex:before {\n  content: \"\\ebcd\";\n}\n.si-launchpad:before {\n  content: \"\\ebce\";\n}\n.si-lbry:before {\n  content: \"\\ebcf\";\n}\n.si-leaflet:before {\n  content: \"\\ebd0\";\n}\n.si-leanpub:before {\n  content: \"\\ebd1\";\n}\n.si-leetcode:before {\n  content: \"\\ebd2\";\n}\n.si-lenovo:before {\n  content: \"\\ebd3\";\n}\n.si-letsencrypt:before {\n  content: \"\\ebd4\";\n}\n.si-letterboxd:before {\n  content: \"\\ebd5\";\n}\n.si-lg:before {\n  content: \"\\ebd6\";\n}\n.si-lgtm:before {\n  content: \"\\ebd7\";\n}\n.si-liberapay:before {\n  content: \"\\ebd8\";\n}\n.si-librarything:before {\n  content: \"\\ebd9\";\n}\n.si-libreoffice:before {\n  content: \"\\ebda\";\n}\n.si-libuv:before {\n  content: \"\\ebdb\";\n}\n.si-lighthouse:before {\n  content: \"\\ebdc\";\n}\n.si-line:before {\n  content: \"\\ebdd\";\n}\n.si-lineageos:before {\n  content: \"\\ebde\";\n}\n.si-linewebtoon:before {\n  content: \"\\ebdf\";\n}\n.si-linkedin:before {\n  content: \"\\ebe0\";\n}\n.si-linode:before {\n  content: \"\\ebe1\";\n}\n.si-linux:before {\n  content: \"\\ebe2\";\n}\n.si-linuxfoundation:before {\n  content: \"\\ebe3\";\n}\n.si-linuxmint:before {\n  content: \"\\ebe4\";\n}\n.si-litecoin:before {\n  content: \"\\ebe5\";\n}\n.si-livejournal:before {\n  content: \"\\ebe6\";\n}\n.si-livestream:before {\n  content: \"\\ebe7\";\n}\n.si-llvm:before {\n  content: \"\\ebe8\";\n}\n.si-lmms:before {\n  content: \"\\ebe9\";\n}\n.si-logitech:before {\n  content: \"\\ebea\";\n}\n.si-logmein:before {\n  content: \"\\ebeb\";\n}\n.si-logstash:before {\n  content: \"\\ebec\";\n}\n.si-loom:before {\n  content: \"\\ebed\";\n}\n.si-loop:before {\n  content: \"\\ebee\";\n}\n.si-lospec:before {\n  content: \"\\ebef\";\n}\n.si-lua:before {\n  content: \"\\ebf0\";\n}\n.si-lubuntu:before {\n  content: \"\\ebf1\";\n}\n.si-lufthansa:before {\n  content: \"\\ebf2\";\n}\n.si-lumen:before {\n  content: \"\\ebf3\";\n}\n.si-lyft:before {\n  content: \"\\ebf4\";\n}\n.si-maas:before {\n  content: \"\\ebf5\";\n}\n.si-macys:before {\n  content: \"\\ebf6\";\n}\n.si-magento:before {\n  content: \"\\ebf7\";\n}\n.si-magisk:before {\n  content: \"\\ebf8\";\n}\n.si-mail-dot-ru:before {\n  content: \"\\ebf9\";\n}\n.si-mailchimp:before {\n  content: \"\\ebfa\";\n}\n.si-makerbot:before {\n  content: \"\\ebfb\";\n}\n.si-man:before {\n  content: \"\\ebfc\";\n}\n.si-manageiq:before {\n  content: \"\\ebfd\";\n}\n.si-manjaro:before {\n  content: \"\\ebfe\";\n}\n.si-mapbox:before {\n  content: \"\\ebff\";\n}\n.si-mariadb:before {\n  content: \"\\ec00\";\n}\n.si-mariadbfoundation:before {\n  content: \"\\ec01\";\n}\n.si-markdown:before {\n  content: \"\\ec02\";\n}\n.si-marketo:before {\n  content: \"\\ec03\";\n}\n.si-marriott:before {\n  content: \"\\ec04\";\n}\n.si-maserati:before {\n  content: \"\\ec05\";\n}\n.si-mastercard:before {\n  content: \"\\ec06\";\n}\n.si-mastodon:before {\n  content: \"\\ec07\";\n}\n.si-material-ui:before {\n  content: \"\\ec08\";\n}\n.si-materialdesign:before {\n  content: \"\\ec09\";\n}\n.si-materialdesignicons:before {\n  content: \"\\ec0a\";\n}\n.si-mathworks:before {\n  content: \"\\ec0b\";\n}\n.si-matrix:before {\n  content: \"\\ec0c\";\n}\n.si-mattermost:before {\n  content: \"\\ec0d\";\n}\n.si-matternet:before {\n  content: \"\\ec0e\";\n}\n.si-maytag:before {\n  content: \"\\ec0f\";\n}\n.si-mazda:before {\n  content: \"\\ec10\";\n}\n.si-mcafee:before {\n  content: \"\\ec11\";\n}\n.si-mcdonalds:before {\n  content: \"\\ec12\";\n}\n.si-mdnwebdocs:before {\n  content: \"\\ec13\";\n}\n.si-mediafire:before {\n  content: \"\\ec14\";\n}\n.si-mediatemple:before {\n  content: \"\\ec15\";\n}\n.si-medium:before {\n  content: \"\\ec16\";\n}\n.si-meetup:before {\n  content: \"\\ec17\";\n}\n.si-mega:before {\n  content: \"\\ec18\";\n}\n.si-mendeley:before {\n  content: \"\\ec19\";\n}\n.si-mercedes:before {\n  content: \"\\ec1a\";\n}\n.si-messenger:before {\n  content: \"\\ec1b\";\n}\n.si-meteor:before {\n  content: \"\\ec1c\";\n}\n.si-metrodelaciudaddemexico:before {\n  content: \"\\ec1d\";\n}\n.si-metrodemadrid:before {\n  content: \"\\ec1e\";\n}\n.si-metrodeparis:before {\n  content: \"\\ec1f\";\n}\n.si-micro-dot-blog:before {\n  content: \"\\ec20\";\n}\n.si-microbit:before {\n  content: \"\\ec21\";\n}\n.si-microgenetics:before {\n  content: \"\\ec22\";\n}\n.si-microsoft:before {\n  content: \"\\ec23\";\n}\n.si-microsoftacademic:before {\n  content: \"\\ec24\";\n}\n.si-microsoftaccess:before {\n  content: \"\\ec25\";\n}\n.si-microsoftazure:before {\n  content: \"\\ec26\";\n}\n.si-microsoftedge:before {\n  content: \"\\ec27\";\n}\n.si-microsoftexcel:before {\n  content: \"\\ec28\";\n}\n.si-microsoftexchange:before {\n  content: \"\\ec29\";\n}\n.si-microsoftoffice:before {\n  content: \"\\ec2a\";\n}\n.si-microsoftonedrive:before {\n  content: \"\\ec2b\";\n}\n.si-microsoftonenote:before {\n  content: \"\\ec2c\";\n}\n.si-microsoftoutlook:before {\n  content: \"\\ec2d\";\n}\n.si-microsoftpowerpoint:before {\n  content: \"\\ec2e\";\n}\n.si-microsoftsharepoint:before {\n  content: \"\\ec2f\";\n}\n.si-microsoftsqlserver:before {\n  content: \"\\ec30\";\n}\n.si-microsoftteams:before {\n  content: \"\\ec31\";\n}\n.si-microsoftvisio:before {\n  content: \"\\ec32\";\n}\n.si-microsoftword:before {\n  content: \"\\ec33\";\n}\n.si-microstrategy:before {\n  content: \"\\ec34\";\n}\n.si-midi:before {\n  content: \"\\ec35\";\n}\n.si-minds:before {\n  content: \"\\ec36\";\n}\n.si-minecraft:before {\n  content: \"\\ec37\";\n}\n.si-minetest:before {\n  content: \"\\ec38\";\n}\n.si-mini:before {\n  content: \"\\ec39\";\n}\n.si-minutemailer:before {\n  content: \"\\ec3a\";\n}\n.si-mitsubishi:before {\n  content: \"\\ec3b\";\n}\n.si-mix:before {\n  content: \"\\ec3c\";\n}\n.si-mixcloud:before {\n  content: \"\\ec3d\";\n}\n.si-mixer:before {\n  content: \"\\ec3e\";\n}\n.si-mocha:before {\n  content: \"\\ec3f\";\n}\n.si-mojangstudios:before {\n  content: \"\\ec40\";\n}\n.si-moleculer:before {\n  content: \"\\ec41\";\n}\n.si-monero:before {\n  content: \"\\ec42\";\n}\n.si-mongodb:before {\n  content: \"\\ec43\";\n}\n.si-monkeytie:before {\n  content: \"\\ec44\";\n}\n.si-monogram:before {\n  content: \"\\ec45\";\n}\n.si-monster:before {\n  content: \"\\ec46\";\n}\n.si-monzo:before {\n  content: \"\\ec47\";\n}\n.si-moo:before {\n  content: \"\\ec48\";\n}\n.si-moscowmetro:before {\n  content: \"\\ec49\";\n}\n.si-mozilla:before {\n  content: \"\\ec4a\";\n}\n.si-mta:before {\n  content: \"\\ec4b\";\n}\n.si-mtr:before {\n  content: \"\\ec4c\";\n}\n.si-musescore:before {\n  content: \"\\ec4d\";\n}\n.si-musicbrainz:before {\n  content: \"\\ec4e\";\n}\n.si-mxlinux:before {\n  content: \"\\ec4f\";\n}\n.si-myspace:before {\n  content: \"\\ec50\";\n}\n.si-mysql:before {\n  content: \"\\ec51\";\n}\n.si-n26:before {\n  content: \"\\ec52\";\n}\n.si-nativescript:before {\n  content: \"\\ec53\";\n}\n.si-nbb:before {\n  content: \"\\ec54\";\n}\n.si-ndr:before {\n  content: \"\\ec55\";\n}\n.si-nec:before {\n  content: \"\\ec56\";\n}\n.si-neo4j:before {\n  content: \"\\ec57\";\n}\n.si-neovim:before {\n  content: \"\\ec58\";\n}\n.si-nestjs:before {\n  content: \"\\ec59\";\n}\n.si-netapp:before {\n  content: \"\\ec5a\";\n}\n.si-netflix:before {\n  content: \"\\ec5b\";\n}\n.si-netlify:before {\n  content: \"\\ec5c\";\n}\n.si-newrelic:before {\n  content: \"\\ec5d\";\n}\n.si-newyorktimes:before {\n  content: \"\\ec5e\";\n}\n.si-next-dot-js:before {\n  content: \"\\ec5f\";\n}\n.si-nextcloud:before {\n  content: \"\\ec60\";\n}\n.si-nextdoor:before {\n  content: \"\\ec61\";\n}\n.si-nfc:before {\n  content: \"\\ec62\";\n}\n.si-nginx:before {\n  content: \"\\ec63\";\n}\n.si-niconico:before {\n  content: \"\\ec64\";\n}\n.si-nim:before {\n  content: \"\\ec65\";\n}\n.si-nintendo:before {\n  content: \"\\ec66\";\n}\n.si-nintendo3ds:before {\n  content: \"\\ec67\";\n}\n.si-nintendogamecube:before {\n  content: \"\\ec68\";\n}\n.si-nintendonetwork:before {\n  content: \"\\ec69\";\n}\n.si-nintendoswitch:before {\n  content: \"\\ec6a\";\n}\n.si-nissan:before {\n  content: \"\\ec6b\";\n}\n.si-nixos:before {\n  content: \"\\ec6c\";\n}\n.si-node-dot-js:before {\n  content: \"\\ec6d\";\n}\n.si-node-red:before {\n  content: \"\\ec6e\";\n}\n.si-nodemon:before {\n  content: \"\\ec6f\";\n}\n.si-nokia:before {\n  content: \"\\ec70\";\n}\n.si-notepadplusplus:before {\n  content: \"\\ec71\";\n}\n.si-notion:before {\n  content: \"\\ec72\";\n}\n.si-notist:before {\n  content: \"\\ec73\";\n}\n.si-npm:before {\n  content: \"\\ec74\";\n}\n.si-nucleo:before {\n  content: \"\\ec75\";\n}\n.si-nuget:before {\n  content: \"\\ec76\";\n}\n.si-nuke:before {\n  content: \"\\ec77\";\n}\n.si-numpy:before {\n  content: \"\\ec78\";\n}\n.si-nutanix:before {\n  content: \"\\ec79\";\n}\n.si-nuxt-dot-js:before {\n  content: \"\\ec7a\";\n}\n.si-nvidia:before {\n  content: \"\\ec7b\";\n}\n.si-obsstudio:before {\n  content: \"\\ec7c\";\n}\n.si-ocaml:before {\n  content: \"\\ec7d\";\n}\n.si-octave:before {\n  content: \"\\ec7e\";\n}\n.si-octopusdeploy:before {\n  content: \"\\ec7f\";\n}\n.si-oculus:before {\n  content: \"\\ec80\";\n}\n.si-odnoklassniki:before {\n  content: \"\\ec81\";\n}\n.si-oneplus:before {\n  content: \"\\ec82\";\n}\n.si-onstar:before {\n  content: \"\\ec83\";\n}\n.si-opel:before {\n  content: \"\\ec84\";\n}\n.si-openaccess:before {\n  content: \"\\ec85\";\n}\n.si-openai:before {\n  content: \"\\ec86\";\n}\n.si-openaigym:before {\n  content: \"\\ec87\";\n}\n.si-openapiinitiative:before {\n  content: \"\\ec88\";\n}\n.si-openbadges:before {\n  content: \"\\ec89\";\n}\n.si-openbsd:before {\n  content: \"\\ec8a\";\n}\n.si-opencollective:before {\n  content: \"\\ec8b\";\n}\n.si-opencontainersinitiative:before {\n  content: \"\\ec8c\";\n}\n.si-opengl:before {\n  content: \"\\ec8d\";\n}\n.si-openid:before {\n  content: \"\\ec8e\";\n}\n.si-openlayers:before {\n  content: \"\\ec8f\";\n}\n.si-opensourceinitiative:before {\n  content: \"\\ec90\";\n}\n.si-openssl:before {\n  content: \"\\ec91\";\n}\n.si-openstack:before {\n  content: \"\\ec92\";\n}\n.si-openstreetmap:before {\n  content: \"\\ec93\";\n}\n.si-opensuse:before {\n  content: \"\\ec94\";\n}\n.si-openvpn:before {\n  content: \"\\ec95\";\n}\n.si-opera:before {\n  content: \"\\ec96\";\n}\n.si-opsgenie:before {\n  content: \"\\ec97\";\n}\n.si-opslevel:before {\n  content: \"\\ec98\";\n}\n.si-oracle:before {\n  content: \"\\ec99\";\n}\n.si-orcid:before {\n  content: \"\\ec9a\";\n}\n.si-origin:before {\n  content: \"\\ec9b\";\n}\n.si-osano:before {\n  content: \"\\ec9c\";\n}\n.si-oshkosh:before {\n  content: \"\\ec9d\";\n}\n.si-osmc:before {\n  content: \"\\ec9e\";\n}\n.si-overcast:before {\n  content: \"\\ec9f\";\n}\n.si-overleaf:before {\n  content: \"\\eca0\";\n}\n.si-ovh:before {\n  content: \"\\eca1\";\n}\n.si-pagekit:before {\n  content: \"\\eca2\";\n}\n.si-pagerduty:before {\n  content: \"\\eca3\";\n}\n.si-pagseguro:before {\n  content: \"\\eca4\";\n}\n.si-palantir:before {\n  content: \"\\eca5\";\n}\n.si-paloaltosoftware:before {\n  content: \"\\eca6\";\n}\n.si-pandas:before {\n  content: \"\\eca7\";\n}\n.si-pandora:before {\n  content: \"\\eca8\";\n}\n.si-pantheon:before {\n  content: \"\\eca9\";\n}\n.si-paritysubstrate:before {\n  content: \"\\ecaa\";\n}\n.si-parse-dot-ly:before {\n  content: \"\\ecab\";\n}\n.si-pastebin:before {\n  content: \"\\ecac\";\n}\n.si-patreon:before {\n  content: \"\\ecad\";\n}\n.si-payoneer:before {\n  content: \"\\ecae\";\n}\n.si-paypal:before {\n  content: \"\\ecaf\";\n}\n.si-peertube:before {\n  content: \"\\ecb0\";\n}\n.si-pelican:before {\n  content: \"\\ecb1\";\n}\n.si-pepsi:before {\n  content: \"\\ecb2\";\n}\n.si-periscope:before {\n  content: \"\\ecb3\";\n}\n.si-perl:before {\n  content: \"\\ecb4\";\n}\n.si-peugeot:before {\n  content: \"\\ecb5\";\n}\n.si-pexels:before {\n  content: \"\\ecb6\";\n}\n.si-phabricator:before {\n  content: \"\\ecb7\";\n}\n.si-philipshue:before {\n  content: \"\\ecb8\";\n}\n.si-photocrowd:before {\n  content: \"\\ecb9\";\n}\n.si-php:before {\n  content: \"\\ecba\";\n}\n.si-pi-hole:before {\n  content: \"\\ecbb\";\n}\n.si-picarto-dot-tv:before {\n  content: \"\\ecbc\";\n}\n.si-picpay:before {\n  content: \"\\ecbd\";\n}\n.si-pimcore:before {\n  content: \"\\ecbe\";\n}\n.si-pinboard:before {\n  content: \"\\ecbf\";\n}\n.si-pingdom:before {\n  content: \"\\ecc0\";\n}\n.si-pingup:before {\n  content: \"\\ecc1\";\n}\n.si-pinterest:before {\n  content: \"\\ecc2\";\n}\n.si-pivotaltracker:before {\n  content: \"\\ecc3\";\n}\n.si-piwigo:before {\n  content: \"\\ecc4\";\n}\n.si-pixabay:before {\n  content: \"\\ecc5\";\n}\n.si-pixiv:before {\n  content: \"\\ecc6\";\n}\n.si-pjsip:before {\n  content: \"\\ecc7\";\n}\n.si-planet:before {\n  content: \"\\ecc8\";\n}\n.si-plangrid:before {\n  content: \"\\ecc9\";\n}\n.si-platzi:before {\n  content: \"\\ecca\";\n}\n.si-player-dot-me:before {\n  content: \"\\eccb\";\n}\n.si-playerfm:before {\n  content: \"\\eccc\";\n}\n.si-playstation:before {\n  content: \"\\eccd\";\n}\n.si-playstation2:before {\n  content: \"\\ecce\";\n}\n.si-playstation3:before {\n  content: \"\\eccf\";\n}\n.si-playstation4:before {\n  content: \"\\ecd0\";\n}\n.si-playstationvita:before {\n  content: \"\\ecd1\";\n}\n.si-pleroma:before {\n  content: \"\\ecd2\";\n}\n.si-plesk:before {\n  content: \"\\ecd3\";\n}\n.si-plex:before {\n  content: \"\\ecd4\";\n}\n.si-pluralsight:before {\n  content: \"\\ecd5\";\n}\n.si-plurk:before {\n  content: \"\\ecd6\";\n}\n.si-pluscodes:before {\n  content: \"\\ecd7\";\n}\n.si-pocket:before {\n  content: \"\\ecd8\";\n}\n.si-pocketcasts:before {\n  content: \"\\ecd9\";\n}\n.si-pokemon:before {\n  content: \"\\ecda\";\n}\n.si-poly:before {\n  content: \"\\ecdb\";\n}\n.si-polymerproject:before {\n  content: \"\\ecdc\";\n}\n.si-porsche:before {\n  content: \"\\ecdd\";\n}\n.si-postcss:before {\n  content: \"\\ecde\";\n}\n.si-postgresql:before {\n  content: \"\\ecdf\";\n}\n.si-postman:before {\n  content: \"\\ece0\";\n}\n.si-postwoman:before {\n  content: \"\\ece1\";\n}\n.si-powerbi:before {\n  content: \"\\ece2\";\n}\n.si-powers:before {\n  content: \"\\ece3\";\n}\n.si-powershell:before {\n  content: \"\\ece4\";\n}\n.si-pr-dot-co:before {\n  content: \"\\ece5\";\n}\n.si-pre-commit:before {\n  content: \"\\ece6\";\n}\n.si-prestashop:before {\n  content: \"\\ece7\";\n}\n.si-prettier:before {\n  content: \"\\ece8\";\n}\n.si-prezi:before {\n  content: \"\\ece9\";\n}\n.si-prime:before {\n  content: \"\\ecea\";\n}\n.si-primevideo:before {\n  content: \"\\eceb\";\n}\n.si-prismic:before {\n  content: \"\\ecec\";\n}\n.si-probot:before {\n  content: \"\\eced\";\n}\n.si-processwire:before {\n  content: \"\\ecee\";\n}\n.si-producthunt:before {\n  content: \"\\ecef\";\n}\n.si-prometheus:before {\n  content: \"\\ecf0\";\n}\n.si-prosieben:before {\n  content: \"\\ecf1\";\n}\n.si-proto-dot-io:before {\n  content: \"\\ecf2\";\n}\n.si-protocols-dot-io:before {\n  content: \"\\ecf3\";\n}\n.si-protonmail:before {\n  content: \"\\ecf4\";\n}\n.si-proxmox:before {\n  content: \"\\ecf5\";\n}\n.si-publons:before {\n  content: \"\\ecf6\";\n}\n.si-puppet:before {\n  content: \"\\ecf7\";\n}\n.si-purescript:before {\n  content: \"\\ecf8\";\n}\n.si-pycharm:before {\n  content: \"\\ecf9\";\n}\n.si-pypi:before {\n  content: \"\\ecfa\";\n}\n.si-python:before {\n  content: \"\\ecfb\";\n}\n.si-pytorch:before {\n  content: \"\\ecfc\";\n}\n.si-pyup:before {\n  content: \"\\ecfd\";\n}\n.si-qantas:before {\n  content: \"\\ecfe\";\n}\n.si-qemu:before {\n  content: \"\\ecff\";\n}\n.si-qgis:before {\n  content: \"\\ed00\";\n}\n.si-qi:before {\n  content: \"\\ed01\";\n}\n.si-qiita:before {\n  content: \"\\ed02\";\n}\n.si-qiwi:before {\n  content: \"\\ed03\";\n}\n.si-qt:before {\n  content: \"\\ed04\";\n}\n.si-qualcomm:before {\n  content: \"\\ed05\";\n}\n.si-qualtrics:before {\n  content: \"\\ed06\";\n}\n.si-quantcast:before {\n  content: \"\\ed07\";\n}\n.si-quantopian:before {\n  content: \"\\ed08\";\n}\n.si-quarkus:before {\n  content: \"\\ed09\";\n}\n.si-quasar:before {\n  content: \"\\ed0a\";\n}\n.si-quest:before {\n  content: \"\\ed0b\";\n}\n.si-quicktime:before {\n  content: \"\\ed0c\";\n}\n.si-quip:before {\n  content: \"\\ed0d\";\n}\n.si-quora:before {\n  content: \"\\ed0e\";\n}\n.si-qwiklabs:before {\n  content: \"\\ed0f\";\n}\n.si-qzone:before {\n  content: \"\\ed10\";\n}\n.si-r:before {\n  content: \"\\ed11\";\n}\n.si-rabbitmq:before {\n  content: \"\\ed12\";\n}\n.si-radiopublic:before {\n  content: \"\\ed13\";\n}\n.si-rancher:before {\n  content: \"\\ed14\";\n}\n.si-raspberrypi:before {\n  content: \"\\ed15\";\n}\n.si-razer:before {\n  content: \"\\ed16\";\n}\n.si-react:before {\n  content: \"\\ed17\";\n}\n.si-reactivex:before {\n  content: \"\\ed18\";\n}\n.si-reactos:before {\n  content: \"\\ed19\";\n}\n.si-reactrouter:before {\n  content: \"\\ed1a\";\n}\n.si-readthedocs:before {\n  content: \"\\ed1b\";\n}\n.si-realm:before {\n  content: \"\\ed1c\";\n}\n.si-reason:before {\n  content: \"\\ed1d\";\n}\n.si-reasonstudios:before {\n  content: \"\\ed1e\";\n}\n.si-redbubble:before {\n  content: \"\\ed1f\";\n}\n.si-reddit:before {\n  content: \"\\ed20\";\n}\n.si-redhat:before {\n  content: \"\\ed21\";\n}\n.si-redhatopenshift:before {\n  content: \"\\ed22\";\n}\n.si-redis:before {\n  content: \"\\ed23\";\n}\n.si-redux:before {\n  content: \"\\ed24\";\n}\n.si-renault:before {\n  content: \"\\ed25\";\n}\n.si-renovatebot:before {\n  content: \"\\ed26\";\n}\n.si-renpy:before {\n  content: \"\\ed27\";\n}\n.si-renren:before {\n  content: \"\\ed28\";\n}\n.si-repl-dot-it:before {\n  content: \"\\ed29\";\n}\n.si-researchgate:before {\n  content: \"\\ed2a\";\n}\n.si-retroarch:before {\n  content: \"\\ed2b\";\n}\n.si-retropie:before {\n  content: \"\\ed2c\";\n}\n.si-reverbnation:before {\n  content: \"\\ed2d\";\n}\n.si-revolut:before {\n  content: \"\\ed2e\";\n}\n.si-rewe:before {\n  content: \"\\ed2f\";\n}\n.si-rhinoceros:before {\n  content: \"\\ed30\";\n}\n.si-ring:before {\n  content: \"\\ed31\";\n}\n.si-riot:before {\n  content: \"\\ed32\";\n}\n.si-riotgames:before {\n  content: \"\\ed33\";\n}\n.si-ripple:before {\n  content: \"\\ed34\";\n}\n.si-riseup:before {\n  content: \"\\ed35\";\n}\n.si-roku:before {\n  content: \"\\ed36\";\n}\n.si-rollup-dot-js:before {\n  content: \"\\ed37\";\n}\n.si-roots:before {\n  content: \"\\ed38\";\n}\n.si-rootsbedrock:before {\n  content: \"\\ed39\";\n}\n.si-rootssage:before {\n  content: \"\\ed3a\";\n}\n.si-roundcube:before {\n  content: \"\\ed3b\";\n}\n.si-rss:before {\n  content: \"\\ed3c\";\n}\n.si-rstudio:before {\n  content: \"\\ed3d\";\n}\n.si-rte:before {\n  content: \"\\ed3e\";\n}\n.si-rtl:before {\n  content: \"\\ed3f\";\n}\n.si-rtlzwei:before {\n  content: \"\\ed40\";\n}\n.si-ruby:before {\n  content: \"\\ed41\";\n}\n.si-rubygems:before {\n  content: \"\\ed42\";\n}\n.si-rubyonrails:before {\n  content: \"\\ed43\";\n}\n.si-runkeeper:before {\n  content: \"\\ed44\";\n}\n.si-runkit:before {\n  content: \"\\ed45\";\n}\n.si-rust:before {\n  content: \"\\ed46\";\n}\n.si-ryanair:before {\n  content: \"\\ed47\";\n}\n.si-safari:before {\n  content: \"\\ed48\";\n}\n.si-sahibinden:before {\n  content: \"\\ed49\";\n}\n.si-salesforce:before {\n  content: \"\\ed4a\";\n}\n.si-saltstack:before {\n  content: \"\\ed4b\";\n}\n.si-samsung:before {\n  content: \"\\ed4c\";\n}\n.si-samsungpay:before {\n  content: \"\\ed4d\";\n}\n.si-sanfranciscomunicipalrailway:before {\n  content: \"\\ed4e\";\n}\n.si-sap:before {\n  content: \"\\ed4f\";\n}\n.si-sass:before {\n  content: \"\\ed50\";\n}\n.si-sat-dot-1:before {\n  content: \"\\ed51\";\n}\n.si-saucelabs:before {\n  content: \"\\ed52\";\n}\n.si-scala:before {\n  content: \"\\ed53\";\n}\n.si-scaleway:before {\n  content: \"\\ed54\";\n}\n.si-scania:before {\n  content: \"\\ed55\";\n}\n.si-scikit-learn:before {\n  content: \"\\ed56\";\n}\n.si-scopus:before {\n  content: \"\\ed57\";\n}\n.si-scratch:before {\n  content: \"\\ed58\";\n}\n.si-scribd:before {\n  content: \"\\ed59\";\n}\n.si-scrutinizerci:before {\n  content: \"\\ed5a\";\n}\n.si-seagate:before {\n  content: \"\\ed5b\";\n}\n.si-seat:before {\n  content: \"\\ed5c\";\n}\n.si-sega:before {\n  content: \"\\ed5d\";\n}\n.si-sellfy:before {\n  content: \"\\ed5e\";\n}\n.si-semanticweb:before {\n  content: \"\\ed5f\";\n}\n.si-semaphoreci:before {\n  content: \"\\ed60\";\n}\n.si-sencha:before {\n  content: \"\\ed61\";\n}\n.si-sennheiser:before {\n  content: \"\\ed62\";\n}\n.si-sensu:before {\n  content: \"\\ed63\";\n}\n.si-sentry:before {\n  content: \"\\ed64\";\n}\n.si-serverfault:before {\n  content: \"\\ed65\";\n}\n.si-serverless:before {\n  content: \"\\ed66\";\n}\n.si-shanghaimetro:before {\n  content: \"\\ed67\";\n}\n.si-shazam:before {\n  content: \"\\ed68\";\n}\n.si-shell:before {\n  content: \"\\ed69\";\n}\n.si-shenzhenmetro:before {\n  content: \"\\ed6a\";\n}\n.si-shikimori:before {\n  content: \"\\ed6b\";\n}\n.si-shopify:before {\n  content: \"\\ed6c\";\n}\n.si-shopware:before {\n  content: \"\\ed6d\";\n}\n.si-showpad:before {\n  content: \"\\ed6e\";\n}\n.si-shutterstock:before {\n  content: \"\\ed6f\";\n}\n.si-siemens:before {\n  content: \"\\ed70\";\n}\n.si-signal:before {\n  content: \"\\ed71\";\n}\n.si-simpleicons:before {\n  content: \"\\ed72\";\n}\n.si-sinaweibo:before {\n  content: \"\\ed73\";\n}\n.si-sitepoint:before {\n  content: \"\\ed74\";\n}\n.si-sketch:before {\n  content: \"\\ed75\";\n}\n.si-sketchfab:before {\n  content: \"\\ed76\";\n}\n.si-sketchup:before {\n  content: \"\\ed77\";\n}\n.si-skillshare:before {\n  content: \"\\ed78\";\n}\n.si-skoda:before {\n  content: \"\\ed79\";\n}\n.si-sky:before {\n  content: \"\\ed7a\";\n}\n.si-skyliner:before {\n  content: \"\\ed7b\";\n}\n.si-skype:before {\n  content: \"\\ed7c\";\n}\n.si-skypeforbusiness:before {\n  content: \"\\ed7d\";\n}\n.si-slack:before {\n  content: \"\\ed7e\";\n}\n.si-slackware:before {\n  content: \"\\ed7f\";\n}\n.si-slashdot:before {\n  content: \"\\ed80\";\n}\n.si-slickpic:before {\n  content: \"\\ed81\";\n}\n.si-slides:before {\n  content: \"\\ed82\";\n}\n.si-slideshare:before {\n  content: \"\\ed83\";\n}\n.si-smart:before {\n  content: \"\\ed84\";\n}\n.si-smartthings:before {\n  content: \"\\ed85\";\n}\n.si-smashingmagazine:before {\n  content: \"\\ed86\";\n}\n.si-smrt:before {\n  content: \"\\ed87\";\n}\n.si-smugmug:before {\n  content: \"\\ed88\";\n}\n.si-snapchat:before {\n  content: \"\\ed89\";\n}\n.si-snapcraft:before {\n  content: \"\\ed8a\";\n}\n.si-snyk:before {\n  content: \"\\ed8b\";\n}\n.si-society6:before {\n  content: \"\\ed8c\";\n}\n.si-socket-dot-io:before {\n  content: \"\\ed8d\";\n}\n.si-sogou:before {\n  content: \"\\ed8e\";\n}\n.si-solus:before {\n  content: \"\\ed8f\";\n}\n.si-sonarcloud:before {\n  content: \"\\ed90\";\n}\n.si-sonarlint:before {\n  content: \"\\ed91\";\n}\n.si-sonarqube:before {\n  content: \"\\ed92\";\n}\n.si-sonarsource:before {\n  content: \"\\ed93\";\n}\n.si-songkick:before {\n  content: \"\\ed94\";\n}\n.si-sonicwall:before {\n  content: \"\\ed95\";\n}\n.si-sonos:before {\n  content: \"\\ed96\";\n}\n.si-soundcloud:before {\n  content: \"\\ed97\";\n}\n.si-sourceengine:before {\n  content: \"\\ed98\";\n}\n.si-sourceforge:before {\n  content: \"\\ed99\";\n}\n.si-sourcegraph:before {\n  content: \"\\ed9a\";\n}\n.si-spacemacs:before {\n  content: \"\\ed9b\";\n}\n.si-spacex:before {\n  content: \"\\ed9c\";\n}\n.si-sparkfun:before {\n  content: \"\\ed9d\";\n}\n.si-sparkpost:before {\n  content: \"\\ed9e\";\n}\n.si-spdx:before {\n  content: \"\\ed9f\";\n}\n.si-speakerdeck:before {\n  content: \"\\eda0\";\n}\n.si-spectrum:before {\n  content: \"\\eda1\";\n}\n.si-spinnaker:before {\n  content: \"\\eda2\";\n}\n.si-spinrilla:before {\n  content: \"\\eda3\";\n}\n.si-splunk:before {\n  content: \"\\eda4\";\n}\n.si-spotify:before {\n  content: \"\\eda5\";\n}\n.si-spotlight:before {\n  content: \"\\eda6\";\n}\n.si-spreaker:before {\n  content: \"\\eda7\";\n}\n.si-spring:before {\n  content: \"\\eda8\";\n}\n.si-sprint:before {\n  content: \"\\eda9\";\n}\n.si-sqlite:before {\n  content: \"\\edaa\";\n}\n.si-square:before {\n  content: \"\\edab\";\n}\n.si-squareenix:before {\n  content: \"\\edac\";\n}\n.si-squarespace:before {\n  content: \"\\edad\";\n}\n.si-ssrn:before {\n  content: \"\\edae\";\n}\n.si-stackbit:before {\n  content: \"\\edaf\";\n}\n.si-stackexchange:before {\n  content: \"\\edb0\";\n}\n.si-stackoverflow:before {\n  content: \"\\edb1\";\n}\n.si-stackpath:before {\n  content: \"\\edb2\";\n}\n.si-stackshare:before {\n  content: \"\\edb3\";\n}\n.si-stadia:before {\n  content: \"\\edb4\";\n}\n.si-staffbase:before {\n  content: \"\\edb5\";\n}\n.si-starlingbank:before {\n  content: \"\\edb6\";\n}\n.si-statamic:before {\n  content: \"\\edb7\";\n}\n.si-staticman:before {\n  content: \"\\edb8\";\n}\n.si-statuspage:before {\n  content: \"\\edb9\";\n}\n.si-steam:before {\n  content: \"\\edba\";\n}\n.si-steamworks:before {\n  content: \"\\edbb\";\n}\n.si-steem:before {\n  content: \"\\edbc\";\n}\n.si-steemit:before {\n  content: \"\\edbd\";\n}\n.si-steinberg:before {\n  content: \"\\edbe\";\n}\n.si-stellar:before {\n  content: \"\\edbf\";\n}\n.si-stencyl:before {\n  content: \"\\edc0\";\n}\n.si-stitcher:before {\n  content: \"\\edc1\";\n}\n.si-storify:before {\n  content: \"\\edc2\";\n}\n.si-storybook:before {\n  content: \"\\edc3\";\n}\n.si-strapi:before {\n  content: \"\\edc4\";\n}\n.si-strava:before {\n  content: \"\\edc5\";\n}\n.si-stripe:before {\n  content: \"\\edc6\";\n}\n.si-strongswan:before {\n  content: \"\\edc7\";\n}\n.si-stubhub:before {\n  content: \"\\edc8\";\n}\n.si-styled-components:before {\n  content: \"\\edc9\";\n}\n.si-styleshare:before {\n  content: \"\\edca\";\n}\n.si-stylus:before {\n  content: \"\\edcb\";\n}\n.si-subaru:before {\n  content: \"\\edcc\";\n}\n.si-sublimetext:before {\n  content: \"\\edcd\";\n}\n.si-subversion:before {\n  content: \"\\edce\";\n}\n.si-superuser:before {\n  content: \"\\edcf\";\n}\n.si-suzuki:before {\n  content: \"\\edd0\";\n}\n.si-svelte:before {\n  content: \"\\edd1\";\n}\n.si-svg:before {\n  content: \"\\edd2\";\n}\n.si-svgo:before {\n  content: \"\\edd3\";\n}\n.si-swagger:before {\n  content: \"\\edd4\";\n}\n.si-swarm:before {\n  content: \"\\edd5\";\n}\n.si-swift:before {\n  content: \"\\edd6\";\n}\n.si-symantec:before {\n  content: \"\\edd7\";\n}\n.si-symfony:before {\n  content: \"\\edd8\";\n}\n.si-symphony:before {\n  content: \"\\edd9\";\n}\n.si-synology:before {\n  content: \"\\edda\";\n}\n.si-t-mobile:before {\n  content: \"\\eddb\";\n}\n.si-tableau:before {\n  content: \"\\eddc\";\n}\n.si-tails:before {\n  content: \"\\eddd\";\n}\n.si-tailwindcss:before {\n  content: \"\\edde\";\n}\n.si-talend:before {\n  content: \"\\eddf\";\n}\n.si-tapas:before {\n  content: \"\\ede0\";\n}\n.si-tata:before {\n  content: \"\\ede1\";\n}\n.si-teamspeak:before {\n  content: \"\\ede2\";\n}\n.si-teamviewer:before {\n  content: \"\\ede3\";\n}\n.si-ted:before {\n  content: \"\\ede4\";\n}\n.si-teespring:before {\n  content: \"\\ede5\";\n}\n.si-tele5:before {\n  content: \"\\ede6\";\n}\n.si-telegram:before {\n  content: \"\\ede7\";\n}\n.si-tencentqq:before {\n  content: \"\\ede8\";\n}\n.si-tencentweibo:before {\n  content: \"\\ede9\";\n}\n.si-tensorflow:before {\n  content: \"\\edea\";\n}\n.si-teradata:before {\n  content: \"\\edeb\";\n}\n.si-terraform:before {\n  content: \"\\edec\";\n}\n.si-tesla:before {\n  content: \"\\eded\";\n}\n.si-theconversation:before {\n  content: \"\\edee\";\n}\n.si-themighty:before {\n  content: \"\\edef\";\n}\n.si-themodelsresource:before {\n  content: \"\\edf0\";\n}\n.si-themoviedatabase:before {\n  content: \"\\edf1\";\n}\n.si-theregister:before {\n  content: \"\\edf2\";\n}\n.si-thesoundsresource:before {\n  content: \"\\edf3\";\n}\n.si-thespritersresource:before {\n  content: \"\\edf4\";\n}\n.si-thewashingtonpost:before {\n  content: \"\\edf5\";\n}\n.si-threema:before {\n  content: \"\\edf6\";\n}\n.si-thumbtack:before {\n  content: \"\\edf7\";\n}\n.si-thunderbird:before {\n  content: \"\\edf8\";\n}\n.si-tidal:before {\n  content: \"\\edf9\";\n}\n.si-tide:before {\n  content: \"\\edfa\";\n}\n.si-tiktok:before {\n  content: \"\\edfb\";\n}\n.si-timescale:before {\n  content: \"\\edfc\";\n}\n.si-tinder:before {\n  content: \"\\edfd\";\n}\n.si-todoist:before {\n  content: \"\\edfe\";\n}\n.si-toggl:before {\n  content: \"\\edff\";\n}\n.si-tokyometro:before {\n  content: \"\\ee00\";\n}\n.si-tomorrowland:before {\n  content: \"\\ee01\";\n}\n.si-topcoder:before {\n  content: \"\\ee02\";\n}\n.si-toptal:before {\n  content: \"\\ee03\";\n}\n.si-tor:before {\n  content: \"\\ee04\";\n}\n.si-torbrowser:before {\n  content: \"\\ee05\";\n}\n.si-toshiba:before {\n  content: \"\\ee06\";\n}\n.si-toyota:before {\n  content: \"\\ee07\";\n}\n.si-trainerroad:before {\n  content: \"\\ee08\";\n}\n.si-trakt:before {\n  content: \"\\ee09\";\n}\n.si-transportforireland:before {\n  content: \"\\ee0a\";\n}\n.si-transportforlondon:before {\n  content: \"\\ee0b\";\n}\n.si-travisci:before {\n  content: \"\\ee0c\";\n}\n.si-treehouse:before {\n  content: \"\\ee0d\";\n}\n.si-trello:before {\n  content: \"\\ee0e\";\n}\n.si-trendmicro:before {\n  content: \"\\ee0f\";\n}\n.si-tripadvisor:before {\n  content: \"\\ee10\";\n}\n.si-trove:before {\n  content: \"\\ee11\";\n}\n.si-trulia:before {\n  content: \"\\ee12\";\n}\n.si-trustedshops:before {\n  content: \"\\ee13\";\n}\n.si-trustpilot:before {\n  content: \"\\ee14\";\n}\n.si-tryitonline:before {\n  content: \"\\ee15\";\n}\n.si-tui:before {\n  content: \"\\ee16\";\n}\n.si-tumblr:before {\n  content: \"\\ee17\";\n}\n.si-tunein:before {\n  content: \"\\ee18\";\n}\n.si-turbosquid:before {\n  content: \"\\ee19\";\n}\n.si-turkishairlines:before {\n  content: \"\\ee1a\";\n}\n.si-twilio:before {\n  content: \"\\ee1b\";\n}\n.si-twitch:before {\n  content: \"\\ee1c\";\n}\n.si-twitter:before {\n  content: \"\\ee1d\";\n}\n.si-twoo:before {\n  content: \"\\ee1e\";\n}\n.si-typescript:before {\n  content: \"\\ee1f\";\n}\n.si-typo3:before {\n  content: \"\\ee20\";\n}\n.si-uber:before {\n  content: \"\\ee21\";\n}\n.si-ubereats:before {\n  content: \"\\ee22\";\n}\n.si-ubiquiti:before {\n  content: \"\\ee23\";\n}\n.si-ubisoft:before {\n  content: \"\\ee24\";\n}\n.si-ublockorigin:before {\n  content: \"\\ee25\";\n}\n.si-ubuntu:before {\n  content: \"\\ee26\";\n}\n.si-udacity:before {\n  content: \"\\ee27\";\n}\n.si-udemy:before {\n  content: \"\\ee28\";\n}\n.si-uikit:before {\n  content: \"\\ee29\";\n}\n.si-ulule:before {\n  content: \"\\ee2a\";\n}\n.si-umbraco:before {\n  content: \"\\ee2b\";\n}\n.si-unicode:before {\n  content: \"\\ee2c\";\n}\n.si-unilever:before {\n  content: \"\\ee2d\";\n}\n.si-unitedairlines:before {\n  content: \"\\ee2e\";\n}\n.si-unity:before {\n  content: \"\\ee2f\";\n}\n.si-unrealengine:before {\n  content: \"\\ee30\";\n}\n.si-unsplash:before {\n  content: \"\\ee31\";\n}\n.si-untangle:before {\n  content: \"\\ee32\";\n}\n.si-untappd:before {\n  content: \"\\ee33\";\n}\n.si-uplabs:before {\n  content: \"\\ee34\";\n}\n.si-uploaded:before {\n  content: \"\\ee35\";\n}\n.si-upwork:before {\n  content: \"\\ee36\";\n}\n.si-v:before {\n  content: \"\\ee37\";\n}\n.si-v8:before {\n  content: \"\\ee38\";\n}\n.si-vagrant:before {\n  content: \"\\ee39\";\n}\n.si-valve:before {\n  content: \"\\ee3a\";\n}\n.si-vauxhall:before {\n  content: \"\\ee3b\";\n}\n.si-vbulletin:before {\n  content: \"\\ee3c\";\n}\n.si-veeam:before {\n  content: \"\\ee3d\";\n}\n.si-venmo:before {\n  content: \"\\ee3e\";\n}\n.si-vercel:before {\n  content: \"\\ee3f\";\n}\n.si-veritas:before {\n  content: \"\\ee40\";\n}\n.si-verizon:before {\n  content: \"\\ee41\";\n}\n.si-vfairs:before {\n  content: \"\\ee42\";\n}\n.si-viadeo:before {\n  content: \"\\ee43\";\n}\n.si-viber:before {\n  content: \"\\ee44\";\n}\n.si-vim:before {\n  content: \"\\ee45\";\n}\n.si-vimeo:before {\n  content: \"\\ee46\";\n}\n.si-vine:before {\n  content: \"\\ee47\";\n}\n.si-virb:before {\n  content: \"\\ee48\";\n}\n.si-virtualbox:before {\n  content: \"\\ee49\";\n}\n.si-virustotal:before {\n  content: \"\\ee4a\";\n}\n.si-visa:before {\n  content: \"\\ee4b\";\n}\n.si-visualstudio:before {\n  content: \"\\ee4c\";\n}\n.si-visualstudiocode:before {\n  content: \"\\ee4d\";\n}\n.si-vivaldi:before {\n  content: \"\\ee4e\";\n}\n.si-vivino:before {\n  content: \"\\ee4f\";\n}\n.si-vk:before {\n  content: \"\\ee50\";\n}\n.si-vlcmediaplayer:before {\n  content: \"\\ee51\";\n}\n.si-vmware:before {\n  content: \"\\ee52\";\n}\n.si-vodafone:before {\n  content: \"\\ee53\";\n}\n.si-volkswagen:before {\n  content: \"\\ee54\";\n}\n.si-volvo:before {\n  content: \"\\ee55\";\n}\n.si-vsco:before {\n  content: \"\\ee56\";\n}\n.si-vue-dot-js:before {\n  content: \"\\ee57\";\n}\n.si-vuetify:before {\n  content: \"\\ee58\";\n}\n.si-vulkan:before {\n  content: \"\\ee59\";\n}\n.si-vultr:before {\n  content: \"\\ee5a\";\n}\n.si-w3c:before {\n  content: \"\\ee5b\";\n}\n.si-wagtail:before {\n  content: \"\\ee5c\";\n}\n.si-wakatime:before {\n  content: \"\\ee5d\";\n}\n.si-warnerbros-dot:before {\n  content: \"\\ee5e\";\n}\n.si-wattpad:before {\n  content: \"\\ee5f\";\n}\n.si-waze:before {\n  content: \"\\ee60\";\n}\n.si-wearos:before {\n  content: \"\\ee61\";\n}\n.si-weasyl:before {\n  content: \"\\ee62\";\n}\n.si-webassembly:before {\n  content: \"\\ee63\";\n}\n.si-webauthn:before {\n  content: \"\\ee64\";\n}\n.si-webcomponents-dot-org:before {\n  content: \"\\ee65\";\n}\n.si-webgl:before {\n  content: \"\\ee66\";\n}\n.si-webmin:before {\n  content: \"\\ee67\";\n}\n.si-webmoney:before {\n  content: \"\\ee68\";\n}\n.si-webpack:before {\n  content: \"\\ee69\";\n}\n.si-webrtc:before {\n  content: \"\\ee6a\";\n}\n.si-webstorm:before {\n  content: \"\\ee6b\";\n}\n.si-wechat:before {\n  content: \"\\ee6c\";\n}\n.si-wemo:before {\n  content: \"\\ee6d\";\n}\n.si-whatsapp:before {\n  content: \"\\ee6e\";\n}\n.si-wheniwork:before {\n  content: \"\\ee6f\";\n}\n.si-whitesource:before {\n  content: \"\\ee70\";\n}\n.si-wii:before {\n  content: \"\\ee71\";\n}\n.si-wiiu:before {\n  content: \"\\ee72\";\n}\n.si-wikimediacommons:before {\n  content: \"\\ee73\";\n}\n.si-wikipedia:before {\n  content: \"\\ee74\";\n}\n.si-windows:before {\n  content: \"\\ee75\";\n}\n.si-windows95:before {\n  content: \"\\ee76\";\n}\n.si-windowsxp:before {\n  content: \"\\ee77\";\n}\n.si-wire:before {\n  content: \"\\ee78\";\n}\n.si-wireguard:before {\n  content: \"\\ee79\";\n}\n.si-wish:before {\n  content: \"\\ee7a\";\n}\n.si-wistia:before {\n  content: \"\\ee7b\";\n}\n.si-wix:before {\n  content: \"\\ee7c\";\n}\n.si-wizzair:before {\n  content: \"\\ee7d\";\n}\n.si-wolfram:before {\n  content: \"\\ee7e\";\n}\n.si-wolframlanguage:before {\n  content: \"\\ee7f\";\n}\n.si-wolframmathematica:before {\n  content: \"\\ee80\";\n}\n.si-woo:before {\n  content: \"\\ee81\";\n}\n.si-woocommerce:before {\n  content: \"\\ee82\";\n}\n.si-wordpress:before {\n  content: \"\\ee83\";\n}\n.si-workplace:before {\n  content: \"\\ee84\";\n}\n.si-worldhealthorganization:before {\n  content: \"\\ee85\";\n}\n.si-wpengine:before {\n  content: \"\\ee86\";\n}\n.si-wprocket:before {\n  content: \"\\ee87\";\n}\n.si-write-dot-as:before {\n  content: \"\\ee88\";\n}\n.si-wwe:before {\n  content: \"\\ee89\";\n}\n.si-x-dot-org:before {\n  content: \"\\ee8a\";\n}\n.si-x-pack:before {\n  content: \"\\ee8b\";\n}\n.si-xamarin:before {\n  content: \"\\ee8c\";\n}\n.si-xaml:before {\n  content: \"\\ee8d\";\n}\n.si-xampp:before {\n  content: \"\\ee8e\";\n}\n.si-xbox:before {\n  content: \"\\ee8f\";\n}\n.si-xcode:before {\n  content: \"\\ee90\";\n}\n.si-xdadevelopers:before {\n  content: \"\\ee91\";\n}\n.si-xero:before {\n  content: \"\\ee92\";\n}\n.si-xfce:before {\n  content: \"\\ee93\";\n}\n.si-xiaomi:before {\n  content: \"\\ee94\";\n}\n.si-xing:before {\n  content: \"\\ee95\";\n}\n.si-xmpp:before {\n  content: \"\\ee96\";\n}\n.si-xrp:before {\n  content: \"\\ee97\";\n}\n.si-xsplit:before {\n  content: \"\\ee98\";\n}\n.si-yahoo:before {\n  content: \"\\ee99\";\n}\n.si-yamahacorporation:before {\n  content: \"\\ee9a\";\n}\n.si-yamahamotorcorporation:before {\n  content: \"\\ee9b\";\n}\n.si-yammer:before {\n  content: \"\\ee9c\";\n}\n.si-yandex:before {\n  content: \"\\ee9d\";\n}\n.si-yarn:before {\n  content: \"\\ee9e\";\n}\n.si-ycombinator:before {\n  content: \"\\ee9f\";\n}\n.si-yelp:before {\n  content: \"\\eea0\";\n}\n.si-yoast:before {\n  content: \"\\eea1\";\n}\n.si-youtube:before {\n  content: \"\\eea2\";\n}\n.si-youtubegaming:before {\n  content: \"\\eea3\";\n}\n.si-youtubemusic:before {\n  content: \"\\eea4\";\n}\n.si-youtubestudio:before {\n  content: \"\\eea5\";\n}\n.si-youtubetv:before {\n  content: \"\\eea6\";\n}\n.si-z-wave:before {\n  content: \"\\eea7\";\n}\n.si-zalando:before {\n  content: \"\\eea8\";\n}\n.si-zapier:before {\n  content: \"\\eea9\";\n}\n.si-zdf:before {\n  content: \"\\eeaa\";\n}\n.si-zend:before {\n  content: \"\\eeab\";\n}\n.si-zendesk:before {\n  content: \"\\eeac\";\n}\n.si-zendframework:before {\n  content: \"\\eead\";\n}\n.si-zeromq:before {\n  content: \"\\eeae\";\n}\n.si-zerply:before {\n  content: \"\\eeaf\";\n}\n.si-zhihu:before {\n  content: \"\\eeb0\";\n}\n.si-zigbee:before {\n  content: \"\\eeb1\";\n}\n.si-zillow:before {\n  content: \"\\eeb2\";\n}\n.si-zingat:before {\n  content: \"\\eeb3\";\n}\n.si-zoom:before {\n  content: \"\\eeb4\";\n}\n.si-zorin:before {\n  content: \"\\eeb5\";\n}\n.si-zulip:before {\n  content: \"\\eeb6\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-simplelineicons-pack/ikonli-simplelineicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-simplelineicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.simplelineicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.simplelineicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.simplelineicons.SimpleLineIconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.simplelineicons.SimpleLineIconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-simplelineicons-pack/src/main/java/org/kordamp/ikonli/simplelineicons/SimpleLineIcons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.simplelineicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum SimpleLineIcons implements Ikon {\n    ACTION_REDO(\"sil-action-redo\", '\\ue051'),\n    ACTION_UNDO(\"sil-action-undo\", '\\ue050'),\n    ANCHOR(\"sil-anchor\", '\\ue029'),\n    ARROW_DOWN(\"sil-arrow-down\", '\\ue604'),\n    ARROW_DOWN_CIRCLE(\"sil-arrow-down-circle\", '\\ue07b'),\n    ARROW_LEFT(\"sil-arrow-left\", '\\ue605'),\n    ARROW_LEFT_CIRCLE(\"sil-arrow-left-circle\", '\\ue07a'),\n    ARROW_RIGHT(\"sil-arrow-right\", '\\ue606'),\n    ARROW_RIGHT_CIRCLE(\"sil-arrow-right-circle\", '\\ue079'),\n    ARROW_UP(\"sil-arrow-up\", '\\ue607'),\n    ARROW_UP_CIRCLE(\"sil-arrow-up-circle\", '\\ue078'),\n    BADGE(\"sil-badge\", '\\ue028'),\n    BAG(\"sil-bag\", '\\ue04f'),\n    BAN(\"sil-ban\", '\\ue07c'),\n    BASKET(\"sil-basket\", '\\ue04e'),\n    BASKET_LOADED(\"sil-basket-loaded\", '\\ue04d'),\n    BELL(\"sil-bell\", '\\ue027'),\n    BOOK_OPEN(\"sil-book-open\", '\\ue04c'),\n    BRIEFCASE(\"sil-briefcase\", '\\ue04b'),\n    BUBBLE(\"sil-bubble\", '\\ue07d'),\n    BUBBLES(\"sil-bubbles\", '\\ue04a'),\n    BULB(\"sil-bulb\", '\\ue076'),\n    CALCULATOR(\"sil-calculator\", '\\ue049'),\n    CALENDAR(\"sil-calendar\", '\\ue075'),\n    CALL_END(\"sil-call-end\", '\\ue048'),\n    CALL_IN(\"sil-call-in\", '\\ue047'),\n    CALL_OUT(\"sil-call-out\", '\\ue046'),\n    CAMERA(\"sil-camera\", '\\ue07f'),\n    CAMRECORDER(\"sil-camrecorder\", '\\ue07e'),\n    CHART(\"sil-chart\", '\\ue077'),\n    CHECK(\"sil-check\", '\\ue080'),\n    CHEMISTRY(\"sil-chemistry\", '\\ue026'),\n    CLOCK(\"sil-clock\", '\\ue081'),\n    CLOSE(\"sil-close\", '\\ue082'),\n    CLOUD_DOWNLOAD(\"sil-cloud-download\", '\\ue083'),\n    CLOUD_UPLOAD(\"sil-cloud-upload\", '\\ue084'),\n    COMPASS(\"sil-compass\", '\\ue045'),\n    CONTROL_END(\"sil-control-end\", '\\ue074'),\n    CONTROL_FORWARD(\"sil-control-forward\", '\\ue073'),\n    CONTROL_PAUSE(\"sil-control-pause\", '\\ue072'),\n    CONTROL_PLAY(\"sil-control-play\", '\\ue071'),\n    CONTROL_REWIND(\"sil-control-rewind\", '\\ue070'),\n    CONTROL_START(\"sil-control-start\", '\\ue06f'),\n    CREDIT_CARD(\"sil-credit-card\", '\\ue025'),\n    CROP(\"sil-crop\", '\\ue024'),\n    CUP(\"sil-cup\", '\\ue044'),\n    CURSOR(\"sil-cursor\", '\\ue06e'),\n    CURSOR_MOVE(\"sil-cursor-move\", '\\ue023'),\n    DIAMOND(\"sil-diamond\", '\\ue043'),\n    DIRECTION(\"sil-direction\", '\\ue042'),\n    DIRECTIONS(\"sil-directions\", '\\ue041'),\n    DISC(\"sil-disc\", '\\ue022'),\n    DISLIKE(\"sil-dislike\", '\\ue06d'),\n    DOC(\"sil-doc\", '\\ue085'),\n    DOCS(\"sil-docs\", '\\ue040'),\n    DRAWER(\"sil-drawer\", '\\ue03f'),\n    DROP(\"sil-drop\", '\\ue03e'),\n    EARPHONES(\"sil-earphones\", '\\ue03d'),\n    EARPHONES_ALT(\"sil-earphones-alt\", '\\ue03c'),\n    EMOTSMILE(\"sil-emotsmile\", '\\ue021'),\n    ENERGY(\"sil-energy\", '\\ue020'),\n    ENVELOPE(\"sil-envelope\", '\\ue086'),\n    ENVELOPE_LETTER(\"sil-envelope-letter\", '\\ue01f'),\n    ENVELOPE_OPEN(\"sil-envelope-open\", '\\ue01e'),\n    EQUALIZER(\"sil-equalizer\", '\\ue06c'),\n    EVENT(\"sil-event\", '\\ue619'),\n    EXCLAMATION(\"sil-exclamation\", '\\ue617'),\n    EYE(\"sil-eye\", '\\ue087'),\n    EYEGLASS(\"sil-eyeglass\", '\\ue01d'),\n    FEED(\"sil-feed\", '\\ue03b'),\n    FILM(\"sil-film\", '\\ue03a'),\n    FIRE(\"sil-fire\", '\\ue01c'),\n    FLAG(\"sil-flag\", '\\ue088'),\n    FOLDER(\"sil-folder\", '\\ue089'),\n    FOLDER_ALT(\"sil-folder-alt\", '\\ue039'),\n    FRAME(\"sil-frame\", '\\ue038'),\n    GAME_CONTROLLER(\"sil-game-controller\", '\\ue01b'),\n    GHOST(\"sil-ghost\", '\\ue01a'),\n    GLOBE(\"sil-globe\", '\\ue037'),\n    GLOBE_ALT(\"sil-globe-alt\", '\\ue036'),\n    GRADUATION(\"sil-graduation\", '\\ue019'),\n    GRAPH(\"sil-graph\", '\\ue06b'),\n    GRID(\"sil-grid\", '\\ue06a'),\n    HANDBAG(\"sil-handbag\", '\\ue035'),\n    HEART(\"sil-heart\", '\\ue08a'),\n    HOME(\"sil-home\", '\\ue069'),\n    HOURGLASS(\"sil-hourglass\", '\\ue018'),\n    INFO(\"sil-info\", '\\ue08b'),\n    KEY(\"sil-key\", '\\ue08c'),\n    LAYERS(\"sil-layers\", '\\ue034'),\n    LIKE(\"sil-like\", '\\ue068'),\n    LINK(\"sil-link\", '\\ue08d'),\n    LIST(\"sil-list\", '\\ue067'),\n    LOCATION_PIN(\"sil-location-pin\", '\\ue096'),\n    LOCK(\"sil-lock\", '\\ue08e'),\n    LOCK_OPEN(\"sil-lock-open\", '\\ue08f'),\n    LOGIN(\"sil-login\", '\\ue066'),\n    LOGOUT(\"sil-logout\", '\\ue065'),\n    LOOP(\"sil-loop\", '\\ue064'),\n    MAGIC_WAND(\"sil-magic-wand\", '\\ue017'),\n    MAGNET(\"sil-magnet\", '\\ue016'),\n    MAGNIFIER(\"sil-magnifier\", '\\ue090'),\n    MAGNIFIER_ADD(\"sil-magnifier-add\", '\\ue091'),\n    MAGNIFIER_REMOVE(\"sil-magnifier-remove\", '\\ue092'),\n    MAP(\"sil-map\", '\\ue033'),\n    MENU(\"sil-menu\", '\\ue601'),\n    MICROPHONE(\"sil-microphone\", '\\ue063'),\n    MINUS(\"sil-minus\", '\\ue615'),\n    MOUSE(\"sil-mouse\", '\\ue015'),\n    MUSIC_TONE(\"sil-music-tone\", '\\ue062'),\n    MUSIC_TONE_ALT(\"sil-music-tone-alt\", '\\ue061'),\n    MUSTACHE(\"sil-mustache\", '\\ue014'),\n    NOTE(\"sil-note\", '\\ue060'),\n    NOTEBOOK(\"sil-notebook\", '\\ue013'),\n    OPTIONS(\"sil-options\", '\\ue603'),\n    OPTIONS_VERTICAL(\"sil-options-vertical\", '\\ue602'),\n    ORGANIZATION(\"sil-organization\", '\\ue616'),\n    PAPER_CLIP(\"sil-paper-clip\", '\\ue093'),\n    PAPER_PLANE(\"sil-paper-plane\", '\\ue094'),\n    PAYPAL(\"sil-paypal\", '\\ue608'),\n    PENCIL(\"sil-pencil\", '\\ue05f'),\n    PEOPLE(\"sil-people\", '\\ue001'),\n    PHONE(\"sil-phone\", '\\ue600'),\n    PICTURE(\"sil-picture\", '\\ue032'),\n    PIE_CHART(\"sil-pie-chart\", '\\ue05e'),\n    PIN(\"sil-pin\", '\\ue031'),\n    PLANE(\"sil-plane\", '\\ue012'),\n    PLAYLIST(\"sil-playlist\", '\\ue030'),\n    PLUS(\"sil-plus\", '\\ue095'),\n    POWER(\"sil-power\", '\\ue097'),\n    PRESENT(\"sil-present\", '\\ue02f'),\n    PRINTER(\"sil-printer\", '\\ue02e'),\n    PUZZLE(\"sil-puzzle\", '\\ue02d'),\n    QUESTION(\"sil-question\", '\\ue05d'),\n    REFRESH(\"sil-refresh\", '\\ue098'),\n    RELOAD(\"sil-reload\", '\\ue099'),\n    ROCKET(\"sil-rocket\", '\\ue05c'),\n    SCREEN_DESKTOP(\"sil-screen-desktop\", '\\ue011'),\n    SCREEN_SMARTPHONE(\"sil-screen-smartphone\", '\\ue010'),\n    SCREEN_TABLET(\"sil-screen-tablet\", '\\ue00f'),\n    SETTINGS(\"sil-settings\", '\\ue09a'),\n    SHARE(\"sil-share\", '\\ue05b'),\n    SHARE_ALT(\"sil-share-alt\", '\\ue05a'),\n    SHIELD(\"sil-shield\", '\\ue00e'),\n    SHUFFLE(\"sil-shuffle\", '\\ue059'),\n    SIZE_ACTUAL(\"sil-size-actual\", '\\ue058'),\n    SIZE_FULLSCREEN(\"sil-size-fullscreen\", '\\ue057'),\n    SOCIAL_BEHANCE(\"sil-social-behance\", '\\ue610'),\n    SOCIAL_DRIBBBLE(\"sil-social-dribbble\", '\\ue00d'),\n    SOCIAL_DROPBOX(\"sil-social-dropbox\", '\\ue00c'),\n    SOCIAL_FACEBOOK(\"sil-social-facebook\", '\\ue00b'),\n    SOCIAL_FOURSQARE(\"sil-social-foursqare\", '\\ue611'),\n    SOCIAL_GITHUB(\"sil-social-github\", '\\ue60c'),\n    SOCIAL_GOOGLE(\"sil-social-google\", '\\ue60d'),\n    SOCIAL_INSTAGRAM(\"sil-social-instagram\", '\\ue609'),\n    SOCIAL_LINKEDIN(\"sil-social-linkedin\", '\\ue60a'),\n    SOCIAL_PINTEREST(\"sil-social-pinterest\", '\\ue60b'),\n    SOCIAL_REDDIT(\"sil-social-reddit\", '\\ue60e'),\n    SOCIAL_SKYPE(\"sil-social-skype\", '\\ue60f'),\n    SOCIAL_SOUNDCLOUD(\"sil-social-soundcloud\", '\\ue612'),\n    SOCIAL_SPOTIFY(\"sil-social-spotify\", '\\ue613'),\n    SOCIAL_STEAM(\"sil-social-steam\", '\\ue620'),\n    SOCIAL_STUMBLEUPON(\"sil-social-stumbleupon\", '\\ue614'),\n    SOCIAL_TUMBLR(\"sil-social-tumblr\", '\\ue00a'),\n    SOCIAL_TWITTER(\"sil-social-twitter\", '\\ue009'),\n    SOCIAL_VKONTAKTE(\"sil-social-vkontakte\", '\\ue618'),\n    SOCIAL_YOUTUBE(\"sil-social-youtube\", '\\ue008'),\n    SPEECH(\"sil-speech\", '\\ue02c'),\n    SPEEDOMETER(\"sil-speedometer\", '\\ue007'),\n    STAR(\"sil-star\", '\\ue09b'),\n    SUPPORT(\"sil-support\", '\\ue056'),\n    SYMBOL_FEMALE(\"sil-symbol-female\", '\\ue09c'),\n    SYMBOL_MALE(\"sil-symbol-male\", '\\ue09d'),\n    TAG(\"sil-tag\", '\\ue055'),\n    TARGET(\"sil-target\", '\\ue09e'),\n    TRASH(\"sil-trash\", '\\ue054'),\n    TROPHY(\"sil-trophy\", '\\ue006'),\n    UMBRELLA(\"sil-umbrella\", '\\ue053'),\n    USER(\"sil-user\", '\\ue005'),\n    USER_FEMALE(\"sil-user-female\", '\\ue000'),\n    USER_FOLLOW(\"sil-user-follow\", '\\ue002'),\n    USER_FOLLOWING(\"sil-user-following\", '\\ue003'),\n    USER_UNFOLLOW(\"sil-user-unfollow\", '\\ue004'),\n    VECTOR(\"sil-vector\", '\\ue02b'),\n    VOLUME_1(\"sil-volume-1\", '\\ue09f'),\n    VOLUME_2(\"sil-volume-2\", '\\ue0a0'),\n    VOLUME_OFF(\"sil-volume-off\", '\\ue0a1'),\n    WALLET(\"sil-wallet\", '\\ue02a'),\n    WRENCH(\"sil-wrench\", '\\ue052');\n\n    public static SimpleLineIcons findByDescription(String description) {\n        for (SimpleLineIcons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    SimpleLineIcons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-simplelineicons-pack/src/main/java/org/kordamp/ikonli/simplelineicons/SimpleLineIconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.simplelineicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class SimpleLineIconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/simplelineicons/2.5.4/fonts/Simple-Line-Icons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"sil-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return SimpleLineIcons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"simple-line-icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-simplelineicons-pack/src/main/java/org/kordamp/ikonli/simplelineicons/SimpleLineIconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.simplelineicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class SimpleLineIconsIkonProvider implements IkonProvider<SimpleLineIcons> {\n    @Override\n    public Class<SimpleLineIcons> getIkon() {\n        return SimpleLineIcons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-simplelineicons-pack/src/main/resources/META-INF/resources/simplelineicons/2.5.4/css/simple-line-icons.css",
    "content": "/*\n* Font Face\n*/\n@font-face {\n  font-family: 'simple-line-icons';\n  src: url('../fonts/Simple-Line-Icons.eot?v=2.4.0');\n  src: url('../fonts/Simple-Line-Icons.eot?v=2.4.0#iefix') format('embedded-opentype'), url('../fonts/Simple-Line-Icons.woff2?v=2.4.0') format('woff2'), url('../fonts/Simple-Line-Icons.ttf?v=2.4.0') format('truetype'), url('../fonts/Simple-Line-Icons.woff?v=2.4.0') format('woff'), url('../fonts/Simple-Line-Icons.svg?v=2.4.0#simple-line-icons') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n/*\n Use the following code if you want to have a class per icon.\n Instead of a list of all class selectors, you can use the generic [class*=\"icon-\"] selector,\n but it's slower.\n*/\n[class^=\"sil-\"]:before, [class*=\" sil-\"]:before {\n  font-family: 'simple-line-icons';\n  speak: none;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n.sil-user:before {\n  content: \"\\e005\";\n}\n.sil-people:before {\n  content: \"\\e001\";\n}\n.sil-user-female:before {\n  content: \"\\e000\";\n}\n.sil-user-follow:before {\n  content: \"\\e002\";\n}\n.sil-user-following:before {\n  content: \"\\e003\";\n}\n.sil-user-unfollow:before {\n  content: \"\\e004\";\n}\n.sil-login:before {\n  content: \"\\e066\";\n}\n.sil-logout:before {\n  content: \"\\e065\";\n}\n.sil-emotsmile:before {\n  content: \"\\e021\";\n}\n.sil-phone:before {\n  content: \"\\e600\";\n}\n.sil-call-end:before {\n  content: \"\\e048\";\n}\n.sil-call-in:before {\n  content: \"\\e047\";\n}\n.sil-call-out:before {\n  content: \"\\e046\";\n}\n.sil-map:before {\n  content: \"\\e033\";\n}\n.sil-location-pin:before {\n  content: \"\\e096\";\n}\n.sil-direction:before {\n  content: \"\\e042\";\n}\n.sil-directions:before {\n  content: \"\\e041\";\n}\n.sil-compass:before {\n  content: \"\\e045\";\n}\n.sil-layers:before {\n  content: \"\\e034\";\n}\n.sil-menu:before {\n  content: \"\\e601\";\n}\n.sil-list:before {\n  content: \"\\e067\";\n}\n.sil-options-vertical:before {\n  content: \"\\e602\";\n}\n.sil-options:before {\n  content: \"\\e603\";\n}\n.sil-arrow-down:before {\n  content: \"\\e604\";\n}\n.sil-arrow-left:before {\n  content: \"\\e605\";\n}\n.sil-arrow-right:before {\n  content: \"\\e606\";\n}\n.sil-arrow-up:before {\n  content: \"\\e607\";\n}\n.sil-arrow-up-circle:before {\n  content: \"\\e078\";\n}\n.sil-arrow-left-circle:before {\n  content: \"\\e07a\";\n}\n.sil-arrow-right-circle:before {\n  content: \"\\e079\";\n}\n.sil-arrow-down-circle:before {\n  content: \"\\e07b\";\n}\n.sil-check:before {\n  content: \"\\e080\";\n}\n.sil-clock:before {\n  content: \"\\e081\";\n}\n.sil-plus:before {\n  content: \"\\e095\";\n}\n.sil-minus:before {\n  content: \"\\e615\";\n}\n.sil-close:before {\n  content: \"\\e082\";\n}\n.sil-event:before {\n  content: \"\\e619\";\n}\n.sil-exclamation:before {\n  content: \"\\e617\";\n}\n.sil-organization:before {\n  content: \"\\e616\";\n}\n.sil-trophy:before {\n  content: \"\\e006\";\n}\n.sil-screen-smartphone:before {\n  content: \"\\e010\";\n}\n.sil-screen-desktop:before {\n  content: \"\\e011\";\n}\n.sil-plane:before {\n  content: \"\\e012\";\n}\n.sil-notebook:before {\n  content: \"\\e013\";\n}\n.sil-mustache:before {\n  content: \"\\e014\";\n}\n.sil-mouse:before {\n  content: \"\\e015\";\n}\n.sil-magnet:before {\n  content: \"\\e016\";\n}\n.sil-energy:before {\n  content: \"\\e020\";\n}\n.sil-disc:before {\n  content: \"\\e022\";\n}\n.sil-cursor:before {\n  content: \"\\e06e\";\n}\n.sil-cursor-move:before {\n  content: \"\\e023\";\n}\n.sil-crop:before {\n  content: \"\\e024\";\n}\n.sil-chemistry:before {\n  content: \"\\e026\";\n}\n.sil-speedometer:before {\n  content: \"\\e007\";\n}\n.sil-shield:before {\n  content: \"\\e00e\";\n}\n.sil-screen-tablet:before {\n  content: \"\\e00f\";\n}\n.sil-magic-wand:before {\n  content: \"\\e017\";\n}\n.sil-hourglass:before {\n  content: \"\\e018\";\n}\n.sil-graduation:before {\n  content: \"\\e019\";\n}\n.sil-ghost:before {\n  content: \"\\e01a\";\n}\n.sil-game-controller:before {\n  content: \"\\e01b\";\n}\n.sil-fire:before {\n  content: \"\\e01c\";\n}\n.sil-eyeglass:before {\n  content: \"\\e01d\";\n}\n.sil-envelope-open:before {\n  content: \"\\e01e\";\n}\n.sil-envelope-letter:before {\n  content: \"\\e01f\";\n}\n.sil-bell:before {\n  content: \"\\e027\";\n}\n.sil-badge:before {\n  content: \"\\e028\";\n}\n.sil-anchor:before {\n  content: \"\\e029\";\n}\n.sil-wallet:before {\n  content: \"\\e02a\";\n}\n.sil-vector:before {\n  content: \"\\e02b\";\n}\n.sil-speech:before {\n  content: \"\\e02c\";\n}\n.sil-puzzle:before {\n  content: \"\\e02d\";\n}\n.sil-printer:before {\n  content: \"\\e02e\";\n}\n.sil-present:before {\n  content: \"\\e02f\";\n}\n.sil-playlist:before {\n  content: \"\\e030\";\n}\n.sil-pin:before {\n  content: \"\\e031\";\n}\n.sil-picture:before {\n  content: \"\\e032\";\n}\n.sil-handbag:before {\n  content: \"\\e035\";\n}\n.sil-globe-alt:before {\n  content: \"\\e036\";\n}\n.sil-globe:before {\n  content: \"\\e037\";\n}\n.sil-folder-alt:before {\n  content: \"\\e039\";\n}\n.sil-folder:before {\n  content: \"\\e089\";\n}\n.sil-film:before {\n  content: \"\\e03a\";\n}\n.sil-feed:before {\n  content: \"\\e03b\";\n}\n.sil-drop:before {\n  content: \"\\e03e\";\n}\n.sil-drawer:before {\n  content: \"\\e03f\";\n}\n.sil-docs:before {\n  content: \"\\e040\";\n}\n.sil-doc:before {\n  content: \"\\e085\";\n}\n.sil-diamond:before {\n  content: \"\\e043\";\n}\n.sil-cup:before {\n  content: \"\\e044\";\n}\n.sil-calculator:before {\n  content: \"\\e049\";\n}\n.sil-bubbles:before {\n  content: \"\\e04a\";\n}\n.sil-briefcase:before {\n  content: \"\\e04b\";\n}\n.sil-book-open:before {\n  content: \"\\e04c\";\n}\n.sil-basket-loaded:before {\n  content: \"\\e04d\";\n}\n.sil-basket:before {\n  content: \"\\e04e\";\n}\n.sil-bag:before {\n  content: \"\\e04f\";\n}\n.sil-action-undo:before {\n  content: \"\\e050\";\n}\n.sil-action-redo:before {\n  content: \"\\e051\";\n}\n.sil-wrench:before {\n  content: \"\\e052\";\n}\n.sil-umbrella:before {\n  content: \"\\e053\";\n}\n.sil-trash:before {\n  content: \"\\e054\";\n}\n.sil-tag:before {\n  content: \"\\e055\";\n}\n.sil-support:before {\n  content: \"\\e056\";\n}\n.sil-frame:before {\n  content: \"\\e038\";\n}\n.sil-size-fullscreen:before {\n  content: \"\\e057\";\n}\n.sil-size-actual:before {\n  content: \"\\e058\";\n}\n.sil-shuffle:before {\n  content: \"\\e059\";\n}\n.sil-share-alt:before {\n  content: \"\\e05a\";\n}\n.sil-share:before {\n  content: \"\\e05b\";\n}\n.sil-rocket:before {\n  content: \"\\e05c\";\n}\n.sil-question:before {\n  content: \"\\e05d\";\n}\n.sil-pie-chart:before {\n  content: \"\\e05e\";\n}\n.sil-pencil:before {\n  content: \"\\e05f\";\n}\n.sil-note:before {\n  content: \"\\e060\";\n}\n.sil-loop:before {\n  content: \"\\e064\";\n}\n.sil-home:before {\n  content: \"\\e069\";\n}\n.sil-grid:before {\n  content: \"\\e06a\";\n}\n.sil-graph:before {\n  content: \"\\e06b\";\n}\n.sil-microphone:before {\n  content: \"\\e063\";\n}\n.sil-music-tone-alt:before {\n  content: \"\\e061\";\n}\n.sil-music-tone:before {\n  content: \"\\e062\";\n}\n.sil-earphones-alt:before {\n  content: \"\\e03c\";\n}\n.sil-earphones:before {\n  content: \"\\e03d\";\n}\n.sil-equalizer:before {\n  content: \"\\e06c\";\n}\n.sil-like:before {\n  content: \"\\e068\";\n}\n.sil-dislike:before {\n  content: \"\\e06d\";\n}\n.sil-control-start:before {\n  content: \"\\e06f\";\n}\n.sil-control-rewind:before {\n  content: \"\\e070\";\n}\n.sil-control-play:before {\n  content: \"\\e071\";\n}\n.sil-control-pause:before {\n  content: \"\\e072\";\n}\n.sil-control-forward:before {\n  content: \"\\e073\";\n}\n.sil-control-end:before {\n  content: \"\\e074\";\n}\n.sil-volume-1:before {\n  content: \"\\e09f\";\n}\n.sil-volume-2:before {\n  content: \"\\e0a0\";\n}\n.sil-volume-off:before {\n  content: \"\\e0a1\";\n}\n.sil-calendar:before {\n  content: \"\\e075\";\n}\n.sil-bulb:before {\n  content: \"\\e076\";\n}\n.sil-chart:before {\n  content: \"\\e077\";\n}\n.sil-ban:before {\n  content: \"\\e07c\";\n}\n.sil-bubble:before {\n  content: \"\\e07d\";\n}\n.sil-camrecorder:before {\n  content: \"\\e07e\";\n}\n.sil-camera:before {\n  content: \"\\e07f\";\n}\n.sil-cloud-download:before {\n  content: \"\\e083\";\n}\n.sil-cloud-upload:before {\n  content: \"\\e084\";\n}\n.sil-envelope:before {\n  content: \"\\e086\";\n}\n.sil-eye:before {\n  content: \"\\e087\";\n}\n.sil-flag:before {\n  content: \"\\e088\";\n}\n.sil-heart:before {\n  content: \"\\e08a\";\n}\n.sil-info:before {\n  content: \"\\e08b\";\n}\n.sil-key:before {\n  content: \"\\e08c\";\n}\n.sil-link:before {\n  content: \"\\e08d\";\n}\n.sil-lock:before {\n  content: \"\\e08e\";\n}\n.sil-lock-open:before {\n  content: \"\\e08f\";\n}\n.sil-magnifier:before {\n  content: \"\\e090\";\n}\n.sil-magnifier-add:before {\n  content: \"\\e091\";\n}\n.sil-magnifier-remove:before {\n  content: \"\\e092\";\n}\n.sil-paper-clip:before {\n  content: \"\\e093\";\n}\n.sil-paper-plane:before {\n  content: \"\\e094\";\n}\n.sil-power:before {\n  content: \"\\e097\";\n}\n.sil-refresh:before {\n  content: \"\\e098\";\n}\n.sil-reload:before {\n  content: \"\\e099\";\n}\n.sil-settings:before {\n  content: \"\\e09a\";\n}\n.sil-star:before {\n  content: \"\\e09b\";\n}\n.sil-symbol-female:before {\n  content: \"\\e09c\";\n}\n.sil-symbol-male:before {\n  content: \"\\e09d\";\n}\n.sil-target:before {\n  content: \"\\e09e\";\n}\n.sil-credit-card:before {\n  content: \"\\e025\";\n}\n.sil-paypal:before {\n  content: \"\\e608\";\n}\n.sil-social-tumblr:before {\n  content: \"\\e00a\";\n}\n.sil-social-twitter:before {\n  content: \"\\e009\";\n}\n.sil-social-facebook:before {\n  content: \"\\e00b\";\n}\n.sil-social-instagram:before {\n  content: \"\\e609\";\n}\n.sil-social-linkedin:before {\n  content: \"\\e60a\";\n}\n.sil-social-pinterest:before {\n  content: \"\\e60b\";\n}\n.sil-social-github:before {\n  content: \"\\e60c\";\n}\n.sil-social-google:before {\n  content: \"\\e60d\";\n}\n.sil-social-reddit:before {\n  content: \"\\e60e\";\n}\n.sil-social-skype:before {\n  content: \"\\e60f\";\n}\n.sil-social-dribbble:before {\n  content: \"\\e00d\";\n}\n.sil-social-behance:before {\n  content: \"\\e610\";\n}\n.sil-social-foursqare:before {\n  content: \"\\e611\";\n}\n.sil-social-soundcloud:before {\n  content: \"\\e612\";\n}\n.sil-social-spotify:before {\n  content: \"\\e613\";\n}\n.sil-social-stumbleupon:before {\n  content: \"\\e614\";\n}\n.sil-social-youtube:before {\n  content: \"\\e008\";\n}\n.sil-social-dropbox:before {\n  content: \"\\e00c\";\n}\n.sil-social-vkontakte:before {\n  content: \"\\e618\";\n}\n.sil-social-steam:before {\n  content: \"\\e620\";\n}"
  },
  {
    "path": "icon-packs/ikonli-subway-pack/ikonli-subway-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-subway-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.subway {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.subway;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.subway.SubwayIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.subway.SubwayIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-subway-pack/src/main/java/org/kordamp/ikonli/subway/Subway.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.subway;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Subway implements Ikon {\n    ADD(\"subway-add\", '\\ue903'),\n    ADD_1(\"subway-add-1\", '\\ue901'),\n    ADD_PLAYLIST(\"subway-add-playlist\", '\\ue902'),\n    ADMIN(\"subway-admin\", '\\ue906'),\n    ADMIN_1(\"subway-admin-1\", '\\ue904'),\n    ADMIN_2(\"subway-admin-2\", '\\ue905'),\n    AIRPLANE_MODE(\"subway-airplane-mode\", '\\ue907'),\n    ALAM(\"subway-alam\", '\\ue908'),\n    AT(\"subway-at\", '\\ue900'),\n    BACKWARD(\"subway-backward\", '\\ue909'),\n    BACKWARD_1(\"subway-backward-1\", '\\ue90a'),\n    BAG(\"subway-bag\", '\\ue90b'),\n    BASKET(\"subway-basket\", '\\ue90c'),\n    BELL(\"subway-bell\", '\\ue90d'),\n    BLACK_WHITE(\"subway-black-white\", '\\ue90e'),\n    BLUETOOTH(\"subway-bluetooth\", '\\ue90f'),\n    BLUR(\"subway-blur\", '\\ue910'),\n    BOOK(\"subway-book\", '\\ue912'),\n    BOOK_1(\"subway-book-1\", '\\ue911'),\n    BOX(\"subway-box\", '\\ue914'),\n    BOX_1(\"subway-box-1\", '\\ue913'),\n    BRIGHTEST(\"subway-brightest\", '\\ue915'),\n    BRUSH(\"subway-brush\", '\\ue916'),\n    C(\"subway-c\", '\\ue917'),\n    CAIN(\"subway-cain\", '\\ue918'),\n    CALENDAR(\"subway-calendar\", '\\ue91f'),\n    CALENDAR_1(\"subway-calendar-1\", '\\ue919'),\n    CALENDAR_2(\"subway-calendar-2\", '\\ue91a'),\n    CALENDAR_3(\"subway-calendar-3\", '\\ue91b'),\n    CALENDAR_4(\"subway-calendar-4\", '\\ue91c'),\n    CALENDAR_5(\"subway-calendar-5\", '\\ue91d'),\n    CALENDAR_6(\"subway-calendar-6\", '\\ue91e'),\n    CALL(\"subway-call\", '\\ue924'),\n    CALL_1(\"subway-call-1\", '\\ue920'),\n    CALL_2(\"subway-call-2\", '\\ue921'),\n    CALL_3(\"subway-call-3\", '\\ue922'),\n    CALL_4(\"subway-call-4\", '\\ue923'),\n    CAMERA(\"subway-camera\", '\\ue925'),\n    CERCLE_1(\"subway-cercle-1\", '\\ue926'),\n    CERCLE_2(\"subway-cercle-2\", '\\ue927'),\n    CERCLE_3(\"subway-cercle-3\", '\\ue928'),\n    CERCLE_4(\"subway-cercle-4\", '\\ue929'),\n    CERCLE_5(\"subway-cercle-5\", '\\ue92a'),\n    CERCLE_6(\"subway-cercle-6\", '\\ue92b'),\n    CERCLE_7(\"subway-cercle-7\", '\\ue92c'),\n    CERCLE_8(\"subway-cercle-8\", '\\ue92d'),\n    CIRCLE(\"subway-circle\", '\\ue92e'),\n    CLOSE_2(\"subway-close-2\", '\\ue92f'),\n    CLOSE_CORNER_ARROW_1(\"subway-close-corner-arrow-1\", '\\ue930'),\n    CLOSE_CORNER_ARROW_2(\"subway-close-corner-arrow-2\", '\\ue931'),\n    CLOTH(\"subway-cloth\", '\\ue933'),\n    CLOTH_1(\"subway-cloth-1\", '\\ue932'),\n    CLOUD(\"subway-cloud\", '\\ue937'),\n    CLOUD_DOWNLOAD(\"subway-cloud-download\", '\\ue934'),\n    CLOUD_RELOAD(\"subway-cloud-reload\", '\\ue935'),\n    CLOUD_UPLOAD(\"subway-cloud-upload\", '\\ue936'),\n    COIN(\"subway-coin\", '\\ue939'),\n    COIN_1(\"subway-coin-1\", '\\ue938'),\n    COMPASS(\"subway-compass\", '\\ue93c'),\n    COMPASS_1(\"subway-compass-1\", '\\ue93a'),\n    COMPASS_2(\"subway-compass-2\", '\\ue93b'),\n    COMPOSE(\"subway-compose\", '\\ue93d'),\n    COVER(\"subway-cover\", '\\ue93e'),\n    CROP(\"subway-crop\", '\\ue93f'),\n    CRPSS(\"subway-crpss\", '\\ue940'),\n    DAIL_PAD(\"subway-dail-pad\", '\\ue941'),\n    DELETE(\"subway-delete\", '\\ue942'),\n    DIVIDE(\"subway-divide\", '\\ue944'),\n    DIVIDE_1(\"subway-divide-1\", '\\ue943'),\n    DOCUMENT(\"subway-document\", '\\ue948'),\n    DOCUMENT_1(\"subway-document-1\", '\\ue945'),\n    DOCUMENT_2(\"subway-document-2\", '\\ue946'),\n    DOCUMENT_3(\"subway-document-3\", '\\ue947'),\n    DOWN(\"subway-down\", '\\ue94c'),\n    DOWNLOAD_1(\"subway-download-1\", '\\ue94d'),\n    DOWNLOAD_2(\"subway-download-2\", '\\ue94e'),\n    DOWNLOAD_3(\"subway-download-3\", '\\ue94f'),\n    DOWNLOAD_4(\"subway-download-4\", '\\ue950'),\n    DOWN_2(\"subway-down-2\", '\\ue949'),\n    DOWN_ARROW(\"subway-down-arrow\", '\\ue94b'),\n    DOWN_ARROW_1(\"subway-down-arrow-1\", '\\ue94a'),\n    DUBLE_CORNER_ARROW_1(\"subway-duble-corner-arrow-1\", '\\ue951'),\n    DUBLE_CORNER_ARROW_3(\"subway-duble-corner-arrow-3\", '\\ue952'),\n    DUBLE_CORNER_ARROW_4(\"subway-duble-corner-arrow-4\", '\\ue953'),\n    DUBLE_CORNER_ARROW_5(\"subway-duble-corner-arrow-5\", '\\ue954'),\n    DUBLE_CORNER_ARROW_6(\"subway-duble-corner-arrow-6\", '\\ue955'),\n    DUBLE_CORNER_ARROW_BLOD_2(\"subway-duble-corner-arrow-blod-2\", '\\ue956'),\n    EQUAL(\"subway-equal\", '\\ue958'),\n    EQUALIZER(\"subway-equalizer\", '\\ue95b'),\n    EQUALIZER_1(\"subway-equalizer-1\", '\\ue959'),\n    EQUALIZER_2(\"subway-equalizer-2\", '\\ue95a'),\n    EQUAL_1(\"subway-equal-1\", '\\ue957'),\n    ERROR(\"subway-error\", '\\ue95c'),\n    EURO(\"subway-euro\", '\\ue95d'),\n    EXIT(\"subway-exit\", '\\ue95e'),\n    EYE(\"subway-eye\", '\\ue95f'),\n    F(\"subway-f\", '\\ue960'),\n    FEED(\"subway-feed\", '\\ue961'),\n    FILE(\"subway-file\", '\\ue96f'),\n    FILE_1(\"subway-file-1\", '\\ue962'),\n    FILE_10(\"subway-file-10\", '\\ue96b'),\n    FILE_11(\"subway-file-11\", '\\ue96c'),\n    FILE_12(\"subway-file-12\", '\\ue96d'),\n    FILE_13(\"subway-file-13\", '\\ue96e'),\n    FILE_2(\"subway-file-2\", '\\ue963'),\n    FILE_3(\"subway-file-3\", '\\ue964'),\n    FILE_4(\"subway-file-4\", '\\ue965'),\n    FILE_5(\"subway-file-5\", '\\ue966'),\n    FILE_6(\"subway-file-6\", '\\ue967'),\n    FILE_7(\"subway-file-7\", '\\ue968'),\n    FILE_8(\"subway-file-8\", '\\ue969'),\n    FILE_9(\"subway-file-9\", '\\ue96a'),\n    FOLDER(\"subway-folder\", '\\ue973'),\n    FOLDER_1(\"subway-folder-1\", '\\ue970'),\n    FOLDER_2(\"subway-folder-2\", '\\ue971'),\n    FOLDER_3(\"subway-folder-3\", '\\ue972'),\n    FOT_SCREEN(\"subway-fot-screen\", '\\ue974'),\n    FOUR_BOX(\"subway-four-box\", '\\ue975'),\n    FROWARD(\"subway-froward\", '\\ue977'),\n    FROWARD_1(\"subway-froward-1\", '\\ue976'),\n    FULLSCREEN(\"subway-fullscreen\", '\\ue978'),\n    GLASS(\"subway-glass\", '\\ue979'),\n    HOME(\"subway-home\", '\\ue97d'),\n    HOME_1(\"subway-home-1\", '\\ue97a'),\n    HOME_2(\"subway-home-2\", '\\ue97b'),\n    HOME_3(\"subway-home-3\", '\\ue97c'),\n    HULF_OF_CIRCLE_2(\"subway-hulf-of-circle-2\", '\\ue97e'),\n    HURT(\"subway-hurt\", '\\ue981'),\n    HURT_1(\"subway-hurt-1\", '\\ue97f'),\n    HURT_3(\"subway-hurt-3\", '\\ue980'),\n    ID_CARD(\"subway-id-card\", '\\ue983'),\n    ID_CARD_1(\"subway-id-card-1\", '\\ue982'),\n    IMAGE(\"subway-image\", '\\ue984'),\n    JOIN_CORNER_ARROW_1(\"subway-join-corner-arrow-1\", '\\ue985'),\n    JOIN_CORNER_ARROW_2(\"subway-join-corner-arrow-2\", '\\ue986'),\n    JOIN_CORNER_ARROW_3(\"subway-join-corner-arrow-3\", '\\ue987'),\n    JOIN_CORNER_ARROW_4(\"subway-join-corner-arrow-4\", '\\ue988'),\n    JOIN_CORNER_ARROW_5(\"subway-join-corner-arrow-5\", '\\ue989'),\n    JOIN_CORNER_ARROW_6(\"subway-join-corner-arrow-6\", '\\ue98a'),\n    KEY(\"subway-key\", '\\ue98b'),\n    LEFT_ARROW(\"subway-left-arrow\", '\\ue98d'),\n    LEFT_ARROW_1(\"subway-left-arrow-1\", '\\ue98c'),\n    LEFT_DOWN_CORNER_ARROW(\"subway-left-down-corner-arrow\", '\\ue98f'),\n    LEFT_DOWN_CORNER_ARROW_1(\"subway-left-down-corner-arrow-1\", '\\ue98e'),\n    LEFT_UP_CORNER_ARROW(\"subway-left-up-corner-arrow\", '\\ue991'),\n    LEFT_UP_CORNER_ARROW_1(\"subway-left-up-corner-arrow-1\", '\\ue990'),\n    LIKE(\"subway-like\", '\\ue992'),\n    LOCATION(\"subway-location\", '\\ue996'),\n    LOCATION_1(\"subway-location-1\", '\\ue993'),\n    LOCATION_2(\"subway-location-2\", '\\ue994'),\n    LOCATION_3(\"subway-location-3\", '\\ue995'),\n    LOCK(\"subway-lock\", '\\ue999'),\n    LOCK_1(\"subway-lock-1\", '\\ue997'),\n    LOCK_2(\"subway-lock-2\", '\\ue998'),\n    MAGIC(\"subway-magic\", '\\ue99a'),\n    MAIL_ICON(\"subway-mail-icon\", '\\ue99d'),\n    MAIL_ICON_1(\"subway-mail-icon-1\", '\\ue99b'),\n    MAIL_ICON_2(\"subway-mail-icon-2\", '\\ue99c'),\n    MARK(\"subway-mark\", '\\ue9a2'),\n    MARK_1(\"subway-mark-1\", '\\ue99e'),\n    MARK_2(\"subway-mark-2\", '\\ue99f'),\n    MARK_3(\"subway-mark-3\", '\\ue9a0'),\n    MARK_4(\"subway-mark-4\", '\\ue9a1'),\n    MASSAGE(\"subway-massage\", '\\ue9a4'),\n    MASSAGE_1(\"subway-massage-1\", '\\ue9a3'),\n    MEDIA(\"subway-media\", '\\ue9a5'),\n    MEMORI_CARD(\"subway-memori-card\", '\\ue9a6'),\n    MENU(\"subway-menu\", '\\ue9a7'),\n    MIC(\"subway-mic\", '\\ue9a8'),\n    MISSING(\"subway-missing\", '\\ue9a9'),\n    MOVE(\"subway-move\", '\\ue9ac'),\n    MOVE_1(\"subway-move-1\", '\\ue9aa'),\n    MOVE_2(\"subway-move-2\", '\\ue9ab'),\n    MOVIE(\"subway-movie\", '\\ue9ad'),\n    MULTIPLY(\"subway-multiply\", '\\ue9af'),\n    MULTIPLY_1(\"subway-multiply-1\", '\\ue9ae'),\n    MUSIC(\"subway-music\", '\\ue9b0'),\n    MUSK(\"subway-musk\", '\\ue9b1'),\n    MUTE(\"subway-mute\", '\\ue9b2'),\n    NETWARK(\"subway-netwark\", '\\ue9b3'),\n    NEXT(\"subway-next\", '\\ue9b5'),\n    NEXT_1(\"subway-next-1\", '\\ue9b4'),\n    PARAGRAPH(\"subway-paragraph\", '\\ue9be'),\n    PARAGRAPH_2(\"subway-paragraph-2\", '\\ue9b6'),\n    PARAGRAPH_3(\"subway-paragraph-3\", '\\ue9b7'),\n    PARAGRAPH_4(\"subway-paragraph-4\", '\\ue9b8'),\n    PARAGRAPH_5(\"subway-paragraph-5\", '\\ue9b9'),\n    PARAGRAPH_6(\"subway-paragraph-6\", '\\ue9ba'),\n    PARAGRAPH_7(\"subway-paragraph-7\", '\\ue9bb'),\n    PARAGRAPH_8(\"subway-paragraph-8\", '\\ue9bc'),\n    PARAGRAPH_9(\"subway-paragraph-9\", '\\ue9bd'),\n    PART_OF_CIRCLE(\"subway-part-of-circle\", '\\ue9c4'),\n    PART_OF_CIRCLE_1(\"subway-part-of-circle-1\", '\\ue9bf'),\n    PART_OF_CIRCLE_2(\"subway-part-of-circle-2\", '\\ue9c0'),\n    PART_OF_CIRCLE_3(\"subway-part-of-circle-3\", '\\ue9c1'),\n    PART_OF_CIRCLE_4(\"subway-part-of-circle-4\", '\\ue9c2'),\n    PART_OF_CIRCLE_5(\"subway-part-of-circle-5\", '\\ue9c3'),\n    PASSING(\"subway-passing\", '\\ue9c5'),\n    PAUSE(\"subway-pause\", '\\ue9c7'),\n    PAUSE_1(\"subway-pause-1\", '\\ue9c6'),\n    PENCIL(\"subway-pencil\", '\\ue9c8'),\n    PIN(\"subway-pin\", '\\ue9ca'),\n    PIN_1(\"subway-pin-1\", '\\ue9c9'),\n    PLAY(\"subway-play\", '\\ue9cc'),\n    PLAY_1(\"subway-play-1\", '\\ue9cb'),\n    POUND(\"subway-pound\", '\\ue9cd'),\n    POWER(\"subway-power\", '\\ue9cf'),\n    POWER_BATTON(\"subway-power-batton\", '\\ue9ce'),\n    PREVIOUS(\"subway-previous\", '\\ue9d1'),\n    PREVIOUS_1(\"subway-previous-1\", '\\ue9d0'),\n    PRINT(\"subway-print\", '\\ue9d2'),\n    RANDOM(\"subway-random\", '\\ue9d3'),\n    RECTANGLE(\"subway-rectangle\", '\\ue9d8'),\n    RECTANGLE_1(\"subway-rectangle-1\", '\\ue9d4'),\n    RECTANGLE_2(\"subway-rectangle-2\", '\\ue9d5'),\n    RECTANGLE_3(\"subway-rectangle-3\", '\\ue9d6'),\n    RECTANGLE_4(\"subway-rectangle-4\", '\\ue9d7'),\n    RECTANGULAR(\"subway-rectangular\", '\\ue9d9'),\n    REDO(\"subway-redo\", '\\ue9dc'),\n    REDO_1(\"subway-redo-1\", '\\ue9da'),\n    REDO_ICON(\"subway-redo-icon\", '\\ue9db'),\n    REFRESH_TIME(\"subway-refresh-time\", '\\ue9dd'),\n    REMOVE_PLAYLIST(\"subway-remove-playlist\", '\\ue9de'),\n    REPLY(\"subway-reply\", '\\ue9df'),\n    RIGHT_ARROW(\"subway-right-arrow\", '\\ue9e1'),\n    RIGHT_ARROW_1(\"subway-right-arrow-1\", '\\ue9e0'),\n    RIGHT_DOWN_CORNER_ARROW(\"subway-right-down-corner-arrow\", '\\ue9e3'),\n    RIGHT_DOWN_CORNER_ARROW_1(\"subway-right-down-corner-arrow-1\", '\\ue9e2'),\n    RIGHT_UP_CORNER_ARROW(\"subway-right-up-corner-arrow\", '\\ue9e5'),\n    RIGHT_UP_CORNER_ARROW_1(\"subway-right-up-corner-arrow-1\", '\\ue9e4'),\n    ROUND_ARROW_1(\"subway-round-arrow-1\", '\\ue9e6'),\n    ROUND_ARROW_2(\"subway-round-arrow-2\", '\\ue9e7'),\n    ROUND_ARROW_3(\"subway-round-arrow-3\", '\\ue9e8'),\n    ROUND_ARROW_4(\"subway-round-arrow-4\", '\\ue9e9'),\n    ROUND_ARROW_5(\"subway-round-arrow-5\", '\\ue9ea'),\n    ROUND_ARROW_6(\"subway-round-arrow-6\", '\\ue9eb'),\n    SAVE(\"subway-save\", '\\ue9ec'),\n    SEARCH(\"subway-search\", '\\ue9ed'),\n    SETTONG(\"subway-settong\", '\\ue9ee'),\n    SHARE(\"subway-share\", '\\ue9f0'),\n    SHARE_1(\"subway-share-1\", '\\ue9ef'),\n    SHARING(\"subway-sharing\", '\\ue9f2'),\n    SHARING_1(\"subway-sharing-1\", '\\ue9f1'),\n    SHUFFILE(\"subway-shuffile\", '\\ue9f3'),\n    SMS(\"subway-sms\", '\\ue9fd'),\n    SMS_1(\"subway-sms-1\", '\\ue9f4'),\n    SMS_2(\"subway-sms-2\", '\\ue9f5'),\n    SMS_3(\"subway-sms-3\", '\\ue9f6'),\n    SMS_4(\"subway-sms-4\", '\\ue9f7'),\n    SMS_5(\"subway-sms-5\", '\\ue9f8'),\n    SMS_6(\"subway-sms-6\", '\\ue9f9'),\n    SMS_7(\"subway-sms-7\", '\\ue9fa'),\n    SMS_8(\"subway-sms-8\", '\\ue9fb'),\n    SMS_9(\"subway-sms-9\", '\\ue9fc'),\n    SOUND(\"subway-sound\", '\\uea00'),\n    SOUND_1(\"subway-sound-1\", '\\ue9fe'),\n    SOUND_2(\"subway-sound-2\", '\\ue9ff'),\n    STAR(\"subway-star\", '\\uea02'),\n    STAR_1(\"subway-star-1\", '\\uea01'),\n    STEP(\"subway-step\", '\\uea05'),\n    STEP_1(\"subway-step-1\", '\\uea03'),\n    STEP_2(\"subway-step-2\", '\\uea04'),\n    STOP(\"subway-stop\", '\\uea07'),\n    STOP_1(\"subway-stop-1\", '\\uea06'),\n    SUBTRACTION(\"subway-subtraction\", '\\uea09'),\n    SUBTRACTION_1(\"subway-subtraction-1\", '\\uea08'),\n    SWITCH(\"subway-switch\", '\\uea0a'),\n    SYMBOL(\"subway-symbol\", '\\uea0d'),\n    SYMBOL_1(\"subway-symbol-1\", '\\uea0b'),\n    SYMBOL_2(\"subway-symbol-2\", '\\uea0c'),\n    TEP(\"subway-tep\", '\\uea0e'),\n    TICK(\"subway-tick\", '\\uea0f'),\n    TIME(\"subway-time\", '\\uea15'),\n    TIME_1(\"subway-time-1\", '\\uea10'),\n    TIME_2(\"subway-time-2\", '\\uea11'),\n    TIME_3(\"subway-time-3\", '\\uea12'),\n    TIME_4(\"subway-time-4\", '\\uea13'),\n    TIME_5(\"subway-time-5\", '\\uea14'),\n    TITLE(\"subway-title\", '\\uea16'),\n    TOOL_BOX(\"subway-tool-box\", '\\uea18'),\n    TOOL_BOX_1(\"subway-tool-box-1\", '\\uea17'),\n    UNDO(\"subway-undo\", '\\uea1b'),\n    UNDO_1(\"subway-undo-1\", '\\uea19'),\n    UNDO_ICON(\"subway-undo-icon\", '\\uea1a'),\n    UNLIKE(\"subway-unlike\", '\\uea1c'),\n    UNLOCK(\"subway-unlock\", '\\uea1e'),\n    UNLOCK_1(\"subway-unlock-1\", '\\uea1d'),\n    UP(\"subway-up\", '\\uea22'),\n    UPLOAD_1(\"subway-upload-1\", '\\uea23'),\n    UPLOAD_2(\"subway-upload-2\", '\\uea24'),\n    UPLOAD_3(\"subway-upload-3\", '\\uea25'),\n    UPLOAD_4(\"subway-upload-4\", '\\uea26'),\n    UP_2(\"subway-up-2\", '\\uea1f'),\n    UP_ARROW(\"subway-up-arrow\", '\\uea21'),\n    UP_ARROW_1(\"subway-up-arrow-1\", '\\uea20'),\n    USD(\"subway-usd\", '\\uea27'),\n    VIDEO(\"subway-video\", '\\uea29'),\n    VIDEO_1(\"subway-video-1\", '\\uea28'),\n    WEBCAM(\"subway-webcam\", '\\uea2a'),\n    WORLD(\"subway-world\", '\\uea2c'),\n    WORLD_1(\"subway-world-1\", '\\uea2b'),\n    WRITE(\"subway-write\", '\\uea2e'),\n    WRITE_1(\"subway-write-1\", '\\uea2d'),\n    ZIP(\"subway-zip\", '\\uea2f'),\n    ZOOM_IN(\"subway-zoom-in\", '\\uea31'),\n    ZOOM_OUT(\"subway-zoom-out\", '\\uea30');\n\n    public static Subway findByDescription(String description) {\n        for (Subway font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Subway(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-subway-pack/src/main/java/org/kordamp/ikonli/subway/SubwayIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.subway;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class SubwayIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/subway/20201108/fonts/Subway-Icons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"subway-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Subway.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Subway-Icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-subway-pack/src/main/java/org/kordamp/ikonli/subway/SubwayIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.subway;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class SubwayIkonProvider implements IkonProvider<Subway> {\n    @Override\n    public Class<Subway> getIkon() {\n        return Subway.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-subway-pack/src/main/resources/META-INF/resources/subway/20201108/css/subway.css",
    "content": "@font-face {\n  font-family: 'Subway-Icons';\n  src:  url('../fonts/Subway-Icons.eot?nqe6p0');\n  src:  url('../fonts/Subway-Icons.eot?nqe6p0#iefix') format('embedded-opentype'),\n    url('../fonts/Subway-Icons.ttf?nqe6p0') format('truetype'),\n    url('../fonts/Subway-Icons.woff?nqe6p0') format('woff'),\n    url('../fonts/Subway-Icons.svg?nqe6p0#Subway-Icons') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"subway-\"], [class*=\" subway-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Subway-Icons' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.subway-at:before {\n  content: \"\\e900\";\n}\n.subway-add-1:before {\n  content: \"\\e901\";\n}\n.subway-add-playlist:before {\n  content: \"\\e902\";\n}\n.subway-add:before {\n  content: \"\\e903\";\n}\n.subway-admin-1:before {\n  content: \"\\e904\";\n}\n.subway-admin-2:before {\n  content: \"\\e905\";\n}\n.subway-admin:before {\n  content: \"\\e906\";\n}\n.subway-airplane-mode:before {\n  content: \"\\e907\";\n}\n.subway-alam:before {\n  content: \"\\e908\";\n}\n.subway-backward:before {\n  content: \"\\e909\";\n}\n.subway-backward-1:before {\n  content: \"\\e90a\";\n}\n.subway-bag:before {\n  content: \"\\e90b\";\n}\n.subway-basket:before {\n  content: \"\\e90c\";\n}\n.subway-bell:before {\n  content: \"\\e90d\";\n}\n.subway-black-white:before {\n  content: \"\\e90e\";\n}\n.subway-bluetooth:before {\n  content: \"\\e90f\";\n}\n.subway-blur:before {\n  content: \"\\e910\";\n}\n.subway-book-1:before {\n  content: \"\\e911\";\n}\n.subway-book:before {\n  content: \"\\e912\";\n}\n.subway-box-1:before {\n  content: \"\\e913\";\n}\n.subway-box:before {\n  content: \"\\e914\";\n}\n.subway-brightest:before {\n  content: \"\\e915\";\n}\n.subway-brush:before {\n  content: \"\\e916\";\n}\n.subway-c:before {\n  content: \"\\e917\";\n}\n.subway-cain:before {\n  content: \"\\e918\";\n}\n.subway-calendar-1:before {\n  content: \"\\e919\";\n}\n.subway-calendar-2:before {\n  content: \"\\e91a\";\n}\n.subway-calendar-3:before {\n  content: \"\\e91b\";\n}\n.subway-calendar-4:before {\n  content: \"\\e91c\";\n}\n.subway-calendar-5:before {\n  content: \"\\e91d\";\n}\n.subway-calendar-6:before {\n  content: \"\\e91e\";\n}\n.subway-calendar:before {\n  content: \"\\e91f\";\n}\n.subway-call-1:before {\n  content: \"\\e920\";\n}\n.subway-call-2:before {\n  content: \"\\e921\";\n}\n.subway-call-3:before {\n  content: \"\\e922\";\n}\n.subway-call-4:before {\n  content: \"\\e923\";\n}\n.subway-call:before {\n  content: \"\\e924\";\n}\n.subway-camera:before {\n  content: \"\\e925\";\n}\n.subway-cercle-1:before {\n  content: \"\\e926\";\n}\n.subway-cercle-2:before {\n  content: \"\\e927\";\n}\n.subway-cercle-3:before {\n  content: \"\\e928\";\n}\n.subway-cercle-4:before {\n  content: \"\\e929\";\n}\n.subway-cercle-5:before {\n  content: \"\\e92a\";\n}\n.subway-cercle-6:before {\n  content: \"\\e92b\";\n}\n.subway-cercle-7:before {\n  content: \"\\e92c\";\n}\n.subway-cercle-8:before {\n  content: \"\\e92d\";\n}\n.subway-circle:before {\n  content: \"\\e92e\";\n}\n.subway-close-2:before {\n  content: \"\\e92f\";\n}\n.subway-close-corner-arrow-1:before {\n  content: \"\\e930\";\n}\n.subway-close-corner-arrow-2:before {\n  content: \"\\e931\";\n}\n.subway-cloth-1:before {\n  content: \"\\e932\";\n}\n.subway-cloth:before {\n  content: \"\\e933\";\n}\n.subway-cloud-download:before {\n  content: \"\\e934\";\n}\n.subway-cloud-reload:before {\n  content: \"\\e935\";\n}\n.subway-cloud-upload:before {\n  content: \"\\e936\";\n}\n.subway-cloud:before {\n  content: \"\\e937\";\n}\n.subway-coin-1:before {\n  content: \"\\e938\";\n}\n.subway-coin:before {\n  content: \"\\e939\";\n}\n.subway-compass-1:before {\n  content: \"\\e93a\";\n}\n.subway-compass-2:before {\n  content: \"\\e93b\";\n}\n.subway-compass:before {\n  content: \"\\e93c\";\n}\n.subway-compose:before {\n  content: \"\\e93d\";\n}\n.subway-cover:before {\n  content: \"\\e93e\";\n}\n.subway-crop:before {\n  content: \"\\e93f\";\n}\n.subway-crpss:before {\n  content: \"\\e940\";\n}\n.subway-dail-pad:before {\n  content: \"\\e941\";\n}\n.subway-delete:before {\n  content: \"\\e942\";\n}\n.subway-divide-1:before {\n  content: \"\\e943\";\n}\n.subway-divide:before {\n  content: \"\\e944\";\n}\n.subway-document-1:before {\n  content: \"\\e945\";\n}\n.subway-document-2:before {\n  content: \"\\e946\";\n}\n.subway-document-3:before {\n  content: \"\\e947\";\n}\n.subway-document:before {\n  content: \"\\e948\";\n}\n.subway-down-2:before {\n  content: \"\\e949\";\n}\n.subway-down-arrow-1:before {\n  content: \"\\e94a\";\n}\n.subway-down-arrow:before {\n  content: \"\\e94b\";\n}\n.subway-down:before {\n  content: \"\\e94c\";\n}\n.subway-download-1:before {\n  content: \"\\e94d\";\n}\n.subway-download-2:before {\n  content: \"\\e94e\";\n}\n.subway-download-3:before {\n  content: \"\\e94f\";\n}\n.subway-download-4:before {\n  content: \"\\e950\";\n}\n.subway-duble-corner-arrow-1:before {\n  content: \"\\e951\";\n}\n.subway-duble-corner-arrow-3:before {\n  content: \"\\e952\";\n}\n.subway-duble-corner-arrow-4:before {\n  content: \"\\e953\";\n}\n.subway-duble-corner-arrow-5:before {\n  content: \"\\e954\";\n}\n.subway-duble-corner-arrow-6:before {\n  content: \"\\e955\";\n}\n.subway-duble-corner-arrow-blod-2:before {\n  content: \"\\e956\";\n}\n.subway-equal-1:before {\n  content: \"\\e957\";\n}\n.subway-equal:before {\n  content: \"\\e958\";\n}\n.subway-equalizer-1:before {\n  content: \"\\e959\";\n}\n.subway-equalizer-2:before {\n  content: \"\\e95a\";\n}\n.subway-equalizer:before {\n  content: \"\\e95b\";\n}\n.subway-error:before {\n  content: \"\\e95c\";\n}\n.subway-euro:before {\n  content: \"\\e95d\";\n}\n.subway-exit:before {\n  content: \"\\e95e\";\n}\n.subway-eye:before {\n  content: \"\\e95f\";\n}\n.subway-f:before {\n  content: \"\\e960\";\n}\n.subway-feed:before {\n  content: \"\\e961\";\n}\n.subway-file-1:before {\n  content: \"\\e962\";\n}\n.subway-file-2:before {\n  content: \"\\e963\";\n}\n.subway-file-3:before {\n  content: \"\\e964\";\n}\n.subway-file-4:before {\n  content: \"\\e965\";\n}\n.subway-file-5:before {\n  content: \"\\e966\";\n}\n.subway-file-6:before {\n  content: \"\\e967\";\n}\n.subway-file-7:before {\n  content: \"\\e968\";\n}\n.subway-file-8:before {\n  content: \"\\e969\";\n}\n.subway-file-9:before {\n  content: \"\\e96a\";\n}\n.subway-file-10:before {\n  content: \"\\e96b\";\n}\n.subway-file-11:before {\n  content: \"\\e96c\";\n}\n.subway-file-12:before {\n  content: \"\\e96d\";\n}\n.subway-file-13:before {\n  content: \"\\e96e\";\n}\n.subway-file:before {\n  content: \"\\e96f\";\n}\n.subway-folder-1:before {\n  content: \"\\e970\";\n}\n.subway-folder-2:before {\n  content: \"\\e971\";\n}\n.subway-folder-3:before {\n  content: \"\\e972\";\n}\n.subway-folder:before {\n  content: \"\\e973\";\n}\n.subway-fot-screen:before {\n  content: \"\\e974\";\n}\n.subway-four-box:before {\n  content: \"\\e975\";\n}\n.subway-froward-1:before {\n  content: \"\\e976\";\n}\n.subway-froward:before {\n  content: \"\\e977\";\n}\n.subway-fullscreen:before {\n  content: \"\\e978\";\n}\n.subway-glass:before {\n  content: \"\\e979\";\n}\n.subway-home-1:before {\n  content: \"\\e97a\";\n}\n.subway-home-2:before {\n  content: \"\\e97b\";\n}\n.subway-home-3:before {\n  content: \"\\e97c\";\n}\n.subway-home:before {\n  content: \"\\e97d\";\n}\n.subway-hulf-of-circle-2:before {\n  content: \"\\e97e\";\n}\n.subway-hurt-1:before {\n  content: \"\\e97f\";\n}\n.subway-hurt-3:before {\n  content: \"\\e980\";\n}\n.subway-hurt:before {\n  content: \"\\e981\";\n}\n.subway-id-card-1:before {\n  content: \"\\e982\";\n}\n.subway-id-card:before {\n  content: \"\\e983\";\n}\n.subway-image:before {\n  content: \"\\e984\";\n}\n.subway-join-corner-arrow-1:before {\n  content: \"\\e985\";\n}\n.subway-join-corner-arrow-2:before {\n  content: \"\\e986\";\n}\n.subway-join-corner-arrow-3:before {\n  content: \"\\e987\";\n}\n.subway-join-corner-arrow-4:before {\n  content: \"\\e988\";\n}\n.subway-join-corner-arrow-5:before {\n  content: \"\\e989\";\n}\n.subway-join-corner-arrow-6:before {\n  content: \"\\e98a\";\n}\n.subway-key:before {\n  content: \"\\e98b\";\n}\n.subway-left-arrow-1:before {\n  content: \"\\e98c\";\n}\n.subway-left-arrow:before {\n  content: \"\\e98d\";\n}\n.subway-left-down-corner-arrow-1:before {\n  content: \"\\e98e\";\n}\n.subway-left-down-corner-arrow:before {\n  content: \"\\e98f\";\n}\n.subway-left-up-corner-arrow-1:before {\n  content: \"\\e990\";\n}\n.subway-left-up-corner-arrow:before {\n  content: \"\\e991\";\n}\n.subway-like:before {\n  content: \"\\e992\";\n}\n.subway-location-1:before {\n  content: \"\\e993\";\n}\n.subway-location-2:before {\n  content: \"\\e994\";\n}\n.subway-location-3:before {\n  content: \"\\e995\";\n}\n.subway-location:before {\n  content: \"\\e996\";\n}\n.subway-lock-1:before {\n  content: \"\\e997\";\n}\n.subway-lock-2:before {\n  content: \"\\e998\";\n}\n.subway-lock:before {\n  content: \"\\e999\";\n}\n.subway-magic:before {\n  content: \"\\e99a\";\n}\n.subway-mail-icon-1:before {\n  content: \"\\e99b\";\n}\n.subway-mail-icon-2:before {\n  content: \"\\e99c\";\n}\n.subway-mail-icon:before {\n  content: \"\\e99d\";\n}\n.subway-mark-1:before {\n  content: \"\\e99e\";\n}\n.subway-mark-2:before {\n  content: \"\\e99f\";\n}\n.subway-mark-3:before {\n  content: \"\\e9a0\";\n}\n.subway-mark-4:before {\n  content: \"\\e9a1\";\n}\n.subway-mark:before {\n  content: \"\\e9a2\";\n}\n.subway-massage-1:before {\n  content: \"\\e9a3\";\n}\n.subway-massage:before {\n  content: \"\\e9a4\";\n}\n.subway-media:before {\n  content: \"\\e9a5\";\n}\n.subway-memori-card:before {\n  content: \"\\e9a6\";\n}\n.subway-menu:before {\n  content: \"\\e9a7\";\n}\n.subway-mic:before {\n  content: \"\\e9a8\";\n}\n.subway-missing:before {\n  content: \"\\e9a9\";\n}\n.subway-move-1:before {\n  content: \"\\e9aa\";\n}\n.subway-move-2:before {\n  content: \"\\e9ab\";\n}\n.subway-move:before {\n  content: \"\\e9ac\";\n}\n.subway-movie:before {\n  content: \"\\e9ad\";\n}\n.subway-multiply-1:before {\n  content: \"\\e9ae\";\n}\n.subway-multiply:before {\n  content: \"\\e9af\";\n}\n.subway-music:before {\n  content: \"\\e9b0\";\n}\n.subway-musk:before {\n  content: \"\\e9b1\";\n}\n.subway-mute:before {\n  content: \"\\e9b2\";\n}\n.subway-netwark:before {\n  content: \"\\e9b3\";\n}\n.subway-next-1:before {\n  content: \"\\e9b4\";\n}\n.subway-next:before {\n  content: \"\\e9b5\";\n}\n.subway-paragraph-2:before {\n  content: \"\\e9b6\";\n}\n.subway-paragraph-3:before {\n  content: \"\\e9b7\";\n}\n.subway-paragraph-4:before {\n  content: \"\\e9b8\";\n}\n.subway-paragraph-5:before {\n  content: \"\\e9b9\";\n}\n.subway-paragraph-6:before {\n  content: \"\\e9ba\";\n}\n.subway-paragraph-7:before {\n  content: \"\\e9bb\";\n}\n.subway-paragraph-8:before {\n  content: \"\\e9bc\";\n}\n.subway-paragraph-9:before {\n  content: \"\\e9bd\";\n}\n.subway-paragraph:before {\n  content: \"\\e9be\";\n}\n.subway-part-of-circle-1:before {\n  content: \"\\e9bf\";\n}\n.subway-part-of-circle-2:before {\n  content: \"\\e9c0\";\n}\n.subway-part-of-circle-3:before {\n  content: \"\\e9c1\";\n}\n.subway-part-of-circle-4:before {\n  content: \"\\e9c2\";\n}\n.subway-part-of-circle-5:before {\n  content: \"\\e9c3\";\n}\n.subway-part-of-circle:before {\n  content: \"\\e9c4\";\n}\n.subway-passing:before {\n  content: \"\\e9c5\";\n}\n.subway-pause-1:before {\n  content: \"\\e9c6\";\n}\n.subway-pause:before {\n  content: \"\\e9c7\";\n}\n.subway-pencil:before {\n  content: \"\\e9c8\";\n}\n.subway-pin-1:before {\n  content: \"\\e9c9\";\n}\n.subway-pin:before {\n  content: \"\\e9ca\";\n}\n.subway-play-1:before {\n  content: \"\\e9cb\";\n}\n.subway-play:before {\n  content: \"\\e9cc\";\n}\n.subway-pound:before {\n  content: \"\\e9cd\";\n}\n.subway-power-batton:before {\n  content: \"\\e9ce\";\n}\n.subway-power:before {\n  content: \"\\e9cf\";\n}\n.subway-previous-1:before {\n  content: \"\\e9d0\";\n}\n.subway-previous:before {\n  content: \"\\e9d1\";\n}\n.subway-print:before {\n  content: \"\\e9d2\";\n}\n.subway-random:before {\n  content: \"\\e9d3\";\n}\n.subway-rectangle-1:before {\n  content: \"\\e9d4\";\n}\n.subway-rectangle-2:before {\n  content: \"\\e9d5\";\n}\n.subway-rectangle-3:before {\n  content: \"\\e9d6\";\n}\n.subway-rectangle-4:before {\n  content: \"\\e9d7\";\n}\n.subway-rectangle:before {\n  content: \"\\e9d8\";\n}\n.subway-rectangular:before {\n  content: \"\\e9d9\";\n}\n.subway-redo-1:before {\n  content: \"\\e9da\";\n}\n.subway-redo-icon:before {\n  content: \"\\e9db\";\n}\n.subway-redo:before {\n  content: \"\\e9dc\";\n}\n.subway-refresh-time:before {\n  content: \"\\e9dd\";\n}\n.subway-remove-playlist:before {\n  content: \"\\e9de\";\n}\n.subway-reply:before {\n  content: \"\\e9df\";\n}\n.subway-right-arrow-1:before {\n  content: \"\\e9e0\";\n}\n.subway-right-arrow:before {\n  content: \"\\e9e1\";\n}\n.subway-right-down-corner-arrow-1:before {\n  content: \"\\e9e2\";\n}\n.subway-right-down-corner-arrow:before {\n  content: \"\\e9e3\";\n}\n.subway-right-up-corner-arrow-1:before {\n  content: \"\\e9e4\";\n}\n.subway-right-up-corner-arrow:before {\n  content: \"\\e9e5\";\n}\n.subway-round-arrow-1:before {\n  content: \"\\e9e6\";\n}\n.subway-round-arrow-2:before {\n  content: \"\\e9e7\";\n}\n.subway-round-arrow-3:before {\n  content: \"\\e9e8\";\n}\n.subway-round-arrow-4:before {\n  content: \"\\e9e9\";\n}\n.subway-round-arrow-5:before {\n  content: \"\\e9ea\";\n}\n.subway-round-arrow-6:before {\n  content: \"\\e9eb\";\n}\n.subway-save:before {\n  content: \"\\e9ec\";\n}\n.subway-search:before {\n  content: \"\\e9ed\";\n}\n.subway-settong:before {\n  content: \"\\e9ee\";\n}\n.subway-share-1:before {\n  content: \"\\e9ef\";\n}\n.subway-share:before {\n  content: \"\\e9f0\";\n}\n.subway-sharing-1:before {\n  content: \"\\e9f1\";\n}\n.subway-sharing:before {\n  content: \"\\e9f2\";\n}\n.subway-shuffile:before {\n  content: \"\\e9f3\";\n}\n.subway-sms-1:before {\n  content: \"\\e9f4\";\n}\n.subway-sms-2:before {\n  content: \"\\e9f5\";\n}\n.subway-sms-3:before {\n  content: \"\\e9f6\";\n}\n.subway-sms-4:before {\n  content: \"\\e9f7\";\n}\n.subway-sms-5:before {\n  content: \"\\e9f8\";\n}\n.subway-sms-6:before {\n  content: \"\\e9f9\";\n}\n.subway-sms-7:before {\n  content: \"\\e9fa\";\n}\n.subway-sms-8:before {\n  content: \"\\e9fb\";\n}\n.subway-sms-9:before {\n  content: \"\\e9fc\";\n}\n.subway-sms:before {\n  content: \"\\e9fd\";\n}\n.subway-sound-1:before {\n  content: \"\\e9fe\";\n}\n.subway-sound-2:before {\n  content: \"\\e9ff\";\n}\n.subway-sound:before {\n  content: \"\\ea00\";\n}\n.subway-star-1:before {\n  content: \"\\ea01\";\n}\n.subway-star:before {\n  content: \"\\ea02\";\n}\n.subway-step-1:before {\n  content: \"\\ea03\";\n}\n.subway-step-2:before {\n  content: \"\\ea04\";\n}\n.subway-step:before {\n  content: \"\\ea05\";\n}\n.subway-stop-1:before {\n  content: \"\\ea06\";\n}\n.subway-stop:before {\n  content: \"\\ea07\";\n}\n.subway-subtraction-1:before {\n  content: \"\\ea08\";\n}\n.subway-subtraction:before {\n  content: \"\\ea09\";\n}\n.subway-switch:before {\n  content: \"\\ea0a\";\n}\n.subway-symbol-1:before {\n  content: \"\\ea0b\";\n}\n.subway-symbol-2:before {\n  content: \"\\ea0c\";\n}\n.subway-symbol:before {\n  content: \"\\ea0d\";\n}\n.subway-tep:before {\n  content: \"\\ea0e\";\n}\n.subway-tick:before {\n  content: \"\\ea0f\";\n}\n.subway-time-1:before {\n  content: \"\\ea10\";\n}\n.subway-time-2:before {\n  content: \"\\ea11\";\n}\n.subway-time-3:before {\n  content: \"\\ea12\";\n}\n.subway-time-4:before {\n  content: \"\\ea13\";\n}\n.subway-time-5:before {\n  content: \"\\ea14\";\n}\n.subway-time:before {\n  content: \"\\ea15\";\n}\n.subway-title:before {\n  content: \"\\ea16\";\n}\n.subway-tool-box-1:before {\n  content: \"\\ea17\";\n}\n.subway-tool-box:before {\n  content: \"\\ea18\";\n}\n.subway-undo-1:before {\n  content: \"\\ea19\";\n}\n.subway-undo-icon:before {\n  content: \"\\ea1a\";\n}\n.subway-undo:before {\n  content: \"\\ea1b\";\n}\n.subway-unlike:before {\n  content: \"\\ea1c\";\n}\n.subway-unlock-1:before {\n  content: \"\\ea1d\";\n}\n.subway-unlock:before {\n  content: \"\\ea1e\";\n}\n.subway-up-2:before {\n  content: \"\\ea1f\";\n}\n.subway-up-arrow-1:before {\n  content: \"\\ea20\";\n}\n.subway-up-arrow:before {\n  content: \"\\ea21\";\n}\n.subway-up:before {\n  content: \"\\ea22\";\n}\n.subway-upload-1:before {\n  content: \"\\ea23\";\n}\n.subway-upload-2:before {\n  content: \"\\ea24\";\n}\n.subway-upload-3:before {\n  content: \"\\ea25\";\n}\n.subway-upload-4:before {\n  content: \"\\ea26\";\n}\n.subway-usd:before {\n  content: \"\\ea27\";\n}\n.subway-video-1:before {\n  content: \"\\ea28\";\n}\n.subway-video:before {\n  content: \"\\ea29\";\n}\n.subway-webcam:before {\n  content: \"\\ea2a\";\n}\n.subway-world-1:before {\n  content: \"\\ea2b\";\n}\n.subway-world:before {\n  content: \"\\ea2c\";\n}\n.subway-write-1:before {\n  content: \"\\ea2d\";\n}\n.subway-write:before {\n  content: \"\\ea2e\";\n}\n.subway-zip:before {\n  content: \"\\ea2f\";\n}\n.subway-zoom-out:before {\n  content: \"\\ea30\";\n}\n.subway-zoom-in:before {\n  content: \"\\ea31\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-themify-pack/ikonli-themify-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-themify-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.themify {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.themify;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.themify.ThemifyIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.themify.ThemifyIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-themify-pack/src/main/java/org/kordamp/ikonli/themify/Themify.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.themify;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\npublic enum Themify implements Ikon {\n    // last is e75f\n    AGENDA(\"ti-agenda\", '\\ue6c7'),\n    ALARM_CLOCK(\"ti-alarm-clock\", '\\ue6c6'),\n    ALERT(\"ti-alert\", '\\ue6c5'),\n    ALIGN_CENTER(\"ti-align-center\", '\\ue6c4'),\n    ALIGN_JUSTIFY(\"ti-align-justify\", '\\ue6c3'),\n    ALIGN_LEFT(\"ti-align-left\", '\\ue6c2'),\n    ALIGN_RIGHT(\"ti-align-right\", '\\ue6c1'),\n    ANCHOR(\"ti-anchor\", '\\ue6c0'),\n    ANDROID(\"ti-android\", '\\ue745'),\n    ANGLE_DOUBLE_DOWN(\"ti-angle-double-down\", '\\ue663'),\n    ANGLE_DOUBLE_LEFT(\"ti-angle-double-left\", '\\ue662'),\n    ANGLE_DOUBLE_RIGHT(\"ti-angle-double-right\", '\\ue661'),\n    ANGLE_DOUBLE_UP(\"ti-angle-double-up\", '\\ue660'),\n    ANGLE_DOWN(\"ti-angle-down\", '\\ue64b'),\n    ANGLE_LEFT(\"ti-angle-left\", '\\ue64a'),\n    ANGLE_RIGHT(\"ti-angle-right\", '\\ue649'),\n    ANGLE_UP(\"ti-angle-up\", '\\ue648'),\n    ANNOUNCEMENT(\"ti-announcement\", '\\ue64f'),\n    APPLE(\"ti-apple\", '\\ue744'),\n    ARCHIVE(\"ti-archive\", '\\ue6bf'),\n    ARROWS_CORNER(\"ti-arrows-corner\", '\\ue6be'),\n    ARROWS_HORIZONTAL(\"ti-arrows-horizontal\", '\\ue658'),\n    ARROWS_VERTICAL(\"ti-arrows-vertical\", '\\ue657'),\n    ARROW_CIRCLE_DOWN(\"ti-arrow-circle-down\", '\\ue65f'),\n    ARROW_CIRCLE_LEFT(\"ti-arrow-circle-left\", '\\ue65e'),\n    ARROW_CIRCLE_RIGHT(\"ti-arrow-circle-right\", '\\ue65d'),\n    ARROW_CIRCLE_UP(\"ti-arrow-circle-up\", '\\ue65c'),\n    ARROW_DOWN(\"ti-arrow-down\", '\\ue62a'),\n    ARROW_LEFT(\"ti-arrow-left\", '\\ue629'),\n    ARROW_RIGHT(\"ti-arrow-right\", '\\ue628'),\n    ARROW_TOP_LEFT(\"ti-arrow-top-left\", '\\ue65b'),\n    ARROW_TOP_RIGHT(\"ti-arrow-top-right\", '\\ue65a'),\n    ARROW_UP(\"ti-arrow-up\", '\\ue627'),\n    BACK_LEFT(\"ti-back-left\", '\\ue6bd'),\n    BACK_RIGHT(\"ti-back-right\", '\\ue6bc'),\n    BAG(\"ti-bag\", '\\ue655'),\n    BAR_CHART(\"ti-bar-chart\", '\\ue6ba'),\n    BAR_CHART_ALT(\"ti-bar-chart-alt\", '\\ue6bb'),\n    BASKETBALL(\"ti-basketball\", '\\ue6b9'),\n    BELL(\"ti-bell\", '\\ue6b8'),\n    BLACKBOARD(\"ti-blackboard\", '\\ue654'),\n    BOLT(\"ti-bolt\", '\\ue652'),\n    BOLT_ALT(\"ti-bolt-alt\", '\\ue653'),\n    BOOK(\"ti-book\", '\\ue6b7'),\n    BOOKMARK(\"ti-bookmark\", '\\ue617'),\n    BOOKMARK_ALT(\"ti-bookmark-alt\", '\\ue618'),\n    BRIEFCASE(\"ti-briefcase\", '\\ue651'),\n    BRUSH(\"ti-brush\", '\\ue650'),\n    BRUSH_ALT(\"ti-brush-alt\", '\\ue727'),\n    CALENDAR(\"ti-calendar\", '\\ue6b6'),\n    CAMERA(\"ti-camera\", '\\ue64e'),\n    CAR(\"ti-car\", '\\ue6b5'),\n    CHECK(\"ti-check\", '\\ue64c'),\n    CHECK_BOX(\"ti-check-box\", '\\ue64d'),\n    CLIP(\"ti-clip\", '\\ue647'),\n    CLIPBOARD(\"ti-clipboard\", '\\ue6b4'),\n    CLOSE(\"ti-close\", '\\ue646'),\n    CLOUD(\"ti-cloud\", '\\ue6b1'),\n    CLOUD_DOWN(\"ti-cloud-down\", '\\ue6b3'),\n    CLOUD_UP(\"ti-cloud-up\", '\\ue6b2'),\n    COMMENT(\"ti-comment\", '\\ue644'),\n    COMMENTS(\"ti-comments\", '\\ue643'),\n    COMMENTS_SMILEY(\"ti-comments-smiley\", '\\ue726'),\n    COMMENT_ALT(\"ti-comment-alt\", '\\ue645'),\n    CONTROL_BACKWARD(\"ti-control-backward\", '\\ue6b0'),\n    CONTROL_EJECT(\"ti-control-eject\", '\\ue725'),\n    CONTROL_FORWARD(\"ti-control-forward\", '\\ue6af'),\n    CONTROL_PAUSE(\"ti-control-pause\", '\\ue6ae'),\n    CONTROL_PLAY(\"ti-control-play\", '\\ue6ad'),\n    CONTROL_RECORD(\"ti-control-record\", '\\ue724'),\n    CONTROL_SHUFFLE(\"ti-control-shuffle\", '\\ue6ac'),\n    CONTROL_SKIP_BACKWARD(\"ti-control-skip-backward\", '\\ue723'),\n    CONTROL_SKIP_FORWARD(\"ti-control-skip-forward\", '\\ue722'),\n    CONTROL_STOP(\"ti-control-stop\", '\\ue6ab'),\n    CREDIT_CARD(\"ti-credit-card\", '\\ue721'),\n    CROWN(\"ti-crown\", '\\ue642'),\n    CSS3(\"ti-css3\", '\\ue75d'),\n    CUP(\"ti-cup\", '\\ue641'),\n    CUT(\"ti-cut\", '\\ue613'),\n    DASHBOARD(\"ti-dashboard\", '\\ue6aa'),\n    DESKTOP(\"ti-desktop\", '\\ue640'),\n    DIRECTION(\"ti-direction\", '\\ue6a8'),\n    DIRECTION_ALT(\"ti-direction-alt\", '\\ue6a9'),\n    DOWNLOAD(\"ti-download\", '\\ue6a7'),\n    DRIBBBLE(\"ti-dribbble\", '\\ue743'),\n    DROPBOX(\"ti-dropbox\", '\\ue742'),\n    DROPBOX_ALT(\"ti-dropbox-alt\", '\\ue75c'),\n    DRUPAL(\"ti-drupal\", '\\ue75b'),\n    EMAIL(\"ti-email\", '\\ue75a'),\n    ENVELOPE(\"ti-envelope\", '\\ue6a6'),\n    ERASER(\"ti-eraser\", '\\ue6a5'),\n    EXCHANGE_VERTICAL(\"ti-exchange-vertical\", '\\ue63f'),\n    EXPORT(\"ti-export\", '\\ue63e'),\n    EYE(\"ti-eye\", '\\ue63d'),\n    FACEBOOK(\"ti-facebook\", '\\ue741'),\n    FACE_SAD(\"ti-face-sad\", '\\ue720'),\n    FACE_SMILE(\"ti-face-smile\", '\\ue71f'),\n    FILE(\"ti-file\", '\\ue6a4'),\n    FILES(\"ti-files\", '\\ue6a3'),\n    FILTER(\"ti-filter\", '\\ue6a2'),\n    FLAG(\"ti-flag\", '\\ue63a'),\n    FLAG_ALT(\"ti-flag-alt\", '\\ue63b'),\n    FLAG_ALT_2(\"ti-flag-alt-2\", '\\ue63c'),\n    FLICKR(\"ti-flickr\", '\\ue740'),\n    FLICKR_ALT(\"ti-flickr-alt\", '\\ue759'),\n    FOLDER(\"ti-folder\", '\\ue639'),\n    FULLSCREEN(\"ti-fullscreen\", '\\ue659'),\n    GALLERY(\"ti-gallery\", '\\ue71e'),\n    GAME(\"ti-game\", '\\ue6a1'),\n    GIFT(\"ti-gift\", '\\ue6a0'),\n    GITHUB(\"ti-github\", '\\ue73f'),\n    GOOGLE(\"ti-google\", '\\ue73e'),\n    HAND_DRAG(\"ti-hand-drag\", '\\ue638'),\n    HAND_OPEN(\"ti-hand-open\", '\\ue637'),\n    HAND_POINT_DOWN(\"ti-hand-point-down\", '\\ue71d'),\n    HAND_POINT_LEFT(\"ti-hand-point-left\", '\\ue71c'),\n    HAND_POINT_RIGHT(\"ti-hand-point-right\", '\\ue71b'),\n    HAND_POINT_UP(\"ti-hand-point-up\", '\\ue71a'),\n    HAND_STOP(\"ti-hand-stop\", '\\ue636'),\n    HARDDRIVE(\"ti-harddrive\", '\\ue69f'),\n    HARDDRIVES(\"ti-harddrives\", '\\ue69e'),\n    HEADPHONE(\"ti-headphone\", '\\ue69d'),\n    HEADPHONE_ALT(\"ti-headphone-alt\", '\\ue719'),\n    HEART(\"ti-heart\", '\\ue634'),\n    HEART_BROKEN(\"ti-heart-broken\", '\\ue635'),\n    HELP(\"ti-help\", '\\ue69c'),\n    HELP_ALT(\"ti-help-alt\", '\\ue718'),\n    HOME(\"ti-home\", '\\ue69b'),\n    HTML5(\"ti-html5\", '\\ue758'),\n    HUMMER(\"ti-hummer\", '\\ue69a'),\n    ID_BADGE(\"ti-id-badge\", '\\ue699'),\n    IMAGE(\"ti-image\", '\\ue633'),\n    IMPORT(\"ti-import\", '\\ue632'),\n    INFINITE(\"ti-infinite\", '\\ue698'),\n    INFO(\"ti-info\", '\\ue697'),\n    INFO_ALT(\"ti-info-alt\", '\\ue717'),\n    INK_PEN(\"ti-ink-pen\", '\\ue716'),\n    INSTAGRAM(\"ti-instagram\", '\\ue73d'),\n    ITALIC(\"ti-Italic\", '\\ue696'),\n    JOOMLA(\"ti-joomla\", '\\ue757'),\n    JSFIDDLE(\"ti-jsfiddle\", '\\ue756'),\n    KEY(\"ti-key\", '\\ue631'),\n    LAYERS(\"ti-layers\", '\\ue62f'),\n    LAYERS_ALT(\"ti-layers-alt\", '\\ue630'),\n    LAYOUT(\"ti-layout\", '\\ue62e'),\n    LAYOUT_ACCORDION_LIST(\"ti-layout-accordion-list\", '\\ue715'),\n    LAYOUT_ACCORDION_MERGED(\"ti-layout-accordion-merged\", '\\ue714'),\n    LAYOUT_ACCORDION_SEPARATED(\"ti-layout-accordion-separated\", '\\ue713'),\n    LAYOUT_COLUMN2(\"ti-layout-column2\", '\\ue712'),\n    LAYOUT_COLUMN2_ALT(\"ti-layout-column2-alt\", '\\ue73c'),\n    LAYOUT_COLUMN3(\"ti-layout-column3\", '\\ue711'),\n    LAYOUT_COLUMN3_ALT(\"ti-layout-column3-alt\", '\\ue73b'),\n    LAYOUT_COLUMN4(\"ti-layout-column4\", '\\ue710'),\n    LAYOUT_COLUMN4_ALT(\"ti-layout-column4-alt\", '\\ue73a'),\n    LAYOUT_CTA_BTN_LEFT(\"ti-layout-cta-btn-left\", '\\ue70f'),\n    LAYOUT_CTA_BTN_RIGHT(\"ti-layout-cta-btn-right\", '\\ue70e'),\n    LAYOUT_CTA_CENTER(\"ti-layout-cta-center\", '\\ue70d'),\n    LAYOUT_CTA_LEFT(\"ti-layout-cta-left\", '\\ue70c'),\n    LAYOUT_CTA_RIGHT(\"ti-layout-cta-right\", '\\ue70b'),\n    LAYOUT_GRID2(\"ti-layout-grid2\", '\\ue709'),\n    LAYOUT_GRID2_ALT(\"ti-layout-grid2-alt\", '\\ue739'),\n    LAYOUT_GRID2_THUMB(\"ti-layout-grid2-thumb\", '\\ue70a'),\n    LAYOUT_GRID3(\"ti-layout-grid3\", '\\ue708'),\n    LAYOUT_GRID3_ALT(\"ti-layout-grid3-alt\", '\\ue738'),\n    LAYOUT_GRID4(\"ti-layout-grid4\", '\\ue707'),\n    LAYOUT_GRID4_ALT(\"ti-layout-grid4-alt\", '\\ue737'),\n    LAYOUT_LINE_SOLID(\"ti-layout-line-solid\", '\\ue706'),\n    LAYOUT_LIST_LARGE_IMAGE(\"ti-layout-list-large-image\", '\\ue705'),\n    LAYOUT_LIST_POST(\"ti-layout-list-post\", '\\ue704'),\n    LAYOUT_LIST_THUMB(\"ti-layout-list-thumb\", '\\ue702'),\n    LAYOUT_LIST_THUMB_ALT(\"ti-layout-list-thumb-alt\", '\\ue703'),\n    LAYOUT_MEDIA_CENTER(\"ti-layout-media-center\", '\\ue701'),\n    LAYOUT_MEDIA_CENTER_ALT(\"ti-layout-media-center-alt\", '\\ue700'),\n    LAYOUT_MEDIA_LEFT(\"ti-layout-media-left\", '\\ue6ff'),\n    LAYOUT_MEDIA_LEFT_ALT(\"ti-layout-media-left-alt\", '\\ue6fe'),\n    LAYOUT_MEDIA_OVERLAY(\"ti-layout-media-overlay\", '\\ue6fb'),\n    LAYOUT_MEDIA_OVERLAY_ALT(\"ti-layout-media-overlay-alt\", '\\ue6fc'),\n    LAYOUT_MEDIA_OVERLAY_ALT_2(\"ti-layout-media-overlay-alt-2\", '\\ue6fd'),\n    LAYOUT_MEDIA_RIGHT(\"ti-layout-media-right\", '\\ue6fa'),\n    LAYOUT_MEDIA_RIGHT_ALT(\"ti-layout-media-right-alt\", '\\ue6f9'),\n    LAYOUT_MENU(\"ti-layout-menu\", '\\ue6f5'),\n    LAYOUT_MENU_FULL(\"ti-layout-menu-full\", '\\ue6f8'),\n    LAYOUT_MENU_SEPARATED(\"ti-layout-menu-separated\", '\\ue6f7'),\n    LAYOUT_MENU_V(\"ti-layout-menu-v\", '\\ue6f6'),\n    LAYOUT_PLACEHOLDER(\"ti-layout-placeholder\", '\\ue6f4'),\n    LAYOUT_SIDEBAR_2(\"ti-layout-sidebar-2\", '\\ue736'),\n    LAYOUT_SIDEBAR_LEFT(\"ti-layout-sidebar-left\", '\\ue6f3'),\n    LAYOUT_SIDEBAR_NONE(\"ti-layout-sidebar-none\", '\\ue6f2'),\n    LAYOUT_SIDEBAR_RIGHT(\"ti-layout-sidebar-right\", '\\ue6f1'),\n    LAYOUT_SLIDER(\"ti-layout-slider\", '\\ue6ef'),\n    LAYOUT_SLIDER_ALT(\"ti-layout-slider-alt\", '\\ue6f0'),\n    LAYOUT_TAB(\"ti-layout-tab\", '\\ue6eb'),\n    LAYOUT_TAB_MIN(\"ti-layout-tab-min\", '\\ue6ee'),\n    LAYOUT_TAB_V(\"ti-layout-tab-v\", '\\ue6ed'),\n    LAYOUT_TAB_WINDOW(\"ti-layout-tab-window\", '\\ue6ec'),\n    LAYOUT_WIDTH_DEFAULT(\"ti-layout-width-default\", '\\ue6e9'),\n    LAYOUT_WIDTH_DEFAULT_ALT(\"ti-layout-width-default-alt\", '\\ue6ea'),\n    LAYOUT_WIDTH_FULL(\"ti-layout-width-full\", '\\ue6e8'),\n    LIGHT_BULB(\"ti-light-bulb\", '\\ue695'),\n    LINE_DASHED(\"ti-line-dashed\", '\\ue6e7'),\n    LINE_DOTTED(\"ti-line-dotted\", '\\ue6e6'),\n    LINE_DOUBLE(\"ti-line-double\", '\\ue6e5'),\n    LINK(\"ti-link\", '\\ue62d'),\n    LINKEDIN(\"ti-linkedin\", '\\ue735'),\n    LINUX(\"ti-linux\", '\\ue755'),\n    LIST(\"ti-list\", '\\ue694'),\n    LIST_OL(\"ti-list-ol\", '\\ue734'),\n    LOCATION_ARROW(\"ti-location-arrow\", '\\ue62c'),\n    LOCATION_PIN(\"ti-location-pin\", '\\ue693'),\n    LOCK(\"ti-lock\", '\\ue62b'),\n    LOOP(\"ti-loop\", '\\ue692'),\n    MAGNET(\"ti-magnet\", '\\ue6e4'),\n    MAP(\"ti-map\", '\\ue690'),\n    MAP_ALT(\"ti-map-alt\", '\\ue691'),\n    MARKER(\"ti-marker\", '\\ue625'),\n    MARKER_ALT(\"ti-marker-alt\", '\\ue626'),\n    MEDALL(\"ti-medall\", '\\ue623'),\n    MEDALL_ALT(\"ti-medall-alt\", '\\ue624'),\n    MENU(\"ti-menu\", '\\ue68e'),\n    MENU_ALT(\"ti-menu-alt\", '\\ue68f'),\n    MICROPHONE(\"ti-microphone\", '\\ue68d'),\n    MICROPHONE_ALT(\"ti-microphone-alt\", '\\ue6e3'),\n    MICROSOFT(\"ti-microsoft\", '\\ue733'),\n    MICROSOFT_ALT(\"ti-microsoft-alt\", '\\ue754'),\n    MINUS(\"ti-minus\", '\\ue622'),\n    MOBILE(\"ti-mobile\", '\\ue621'),\n    MONEY(\"ti-money\", '\\ue68c'),\n    MORE(\"ti-more\", '\\ue6e1'),\n    MORE_ALT(\"ti-more-alt\", '\\ue6e2'),\n    MOUSE(\"ti-mouse\", '\\ue68a'),\n    MOUSE_ALT(\"ti-mouse-alt\", '\\ue68b'),\n    MOVE(\"ti-move\", '\\ue656'),\n    MUSIC(\"ti-music\", '\\ue688'),\n    MUSIC_ALT(\"ti-music-alt\", '\\ue689'),\n    NA(\"ti-na\", '\\ue620'),\n    NEW_WINDOW(\"ti-new-window\", '\\ue732'),\n    NOTEPAD(\"ti-notepad\", '\\ue67c'),\n    PACKAGE(\"ti-package\", '\\ue687'),\n    PAINT_BUCKET(\"ti-paint-bucket\", '\\ue61f'),\n    PAINT_ROLLER(\"ti-paint-roller\", '\\ue61e'),\n    PALETTE(\"ti-palette\", '\\ue6e0'),\n    PANEL(\"ti-panel\", '\\ue686'),\n    PARAGRAPH(\"ti-paragraph\", '\\ue685'),\n    PENCIL(\"ti-pencil\", '\\ue61c'),\n    PENCIL_ALT(\"ti-pencil-alt\", '\\ue61d'),\n    PENCIL_ALT2(\"ti-pencil-alt2\", '\\ue6df'),\n    PIE_CHART(\"ti-pie-chart\", '\\ue684'),\n    PIN(\"ti-pin\", '\\ue61b'),\n    PIN2(\"ti-pin2\", '\\ue6dd'),\n    PINTEREST(\"ti-pinterest\", '\\ue731'),\n    PINTEREST_ALT(\"ti-pinterest-alt\", '\\ue753'),\n    PIN_ALT(\"ti-pin-alt\", '\\ue6de'),\n    PLUG(\"ti-plug\", '\\ue683'),\n    PLUS(\"ti-plus\", '\\ue61a'),\n    POWER_OFF(\"ti-power-off\", '\\ue682'),\n    PRINTER(\"ti-printer\", '\\ue681'),\n    PULSE(\"ti-pulse\", '\\ue680'),\n    QUOTE_LEFT(\"ti-quote-left\", '\\ue67f'),\n    QUOTE_RIGHT(\"ti-quote-right\", '\\ue67e'),\n    RECEIPT(\"ti-receipt\", '\\ue6dc'),\n    REDDIT(\"ti-reddit\", '\\ue752'),\n    RELOAD(\"ti-reload\", '\\ue619'),\n    ROCKET(\"ti-rocket\", '\\ue730'),\n    RSS(\"ti-rss\", '\\ue75e'),\n    RSS_ALT(\"ti-rss-alt\", '\\ue75f'),\n    RULER(\"ti-ruler\", '\\ue614'),\n    RULER_ALT(\"ti-ruler-alt\", '\\ue616'),\n    RULER_ALT_2(\"ti-ruler-alt-2\", '\\ue6db'),\n    RULER_PENCIL(\"ti-ruler-pencil\", '\\ue615'),\n    SAVE(\"ti-save\", '\\ue746'),\n    SAVE_ALT(\"ti-save-alt\", '\\ue747'),\n    SEARCH(\"ti-search\", '\\ue610'),\n    SERVER(\"ti-server\", '\\ue67d'),\n    SETTINGS(\"ti-settings\", '\\ue60f'),\n    SHARE(\"ti-share\", '\\ue72e'),\n    SHARETHIS(\"ti-sharethis\", '\\ue750'),\n    SHARETHIS_ALT(\"ti-sharethis-alt\", '\\ue751'),\n    SHARE_ALT(\"ti-share-alt\", '\\ue72f'),\n    SHIELD(\"ti-shield\", '\\ue67b'),\n    SHIFT_LEFT(\"ti-shift-left\", '\\ue67a'),\n    SHIFT_LEFT_ALT(\"ti-shift-left-alt\", '\\ue6da'),\n    SHIFT_RIGHT(\"ti-shift-right\", '\\ue679'),\n    SHIFT_RIGHT_ALT(\"ti-shift-right-alt\", '\\ue6d9'),\n    SHINE(\"ti-shine\", '\\ue678'),\n    SHOPPING_CART(\"ti-shopping-cart\", '\\ue60d'),\n    SHOPPING_CART_FULL(\"ti-shopping-cart-full\", '\\ue60e'),\n    SHORTCODE(\"ti-shortcode\", '\\ue6d8'),\n    SIGNAL(\"ti-signal\", '\\ue60c'),\n    SKYPE(\"ti-skype\", '\\ue72d'),\n    SLICE(\"ti-slice\", '\\ue6d7'),\n    SMALLCAP(\"ti-smallcap\", '\\ue677'),\n    SOUNDCLOUD(\"ti-soundcloud\", '\\ue74f'),\n    SPLIT_H(\"ti-split-h\", '\\ue676'),\n    SPLIT_V(\"ti-split-v\", '\\ue675'),\n    SPLIT_V_ALT(\"ti-split-v-alt\", '\\ue6d6'),\n    SPRAY(\"ti-spray\", '\\ue60b'),\n    STACK_OVERFLOW(\"ti-stack-overflow\", '\\ue74e'),\n    STAMP(\"ti-stamp\", '\\ue6d5'),\n    STAR(\"ti-star\", '\\ue60a'),\n    STATS_DOWN(\"ti-stats-down\", '\\ue674'),\n    STATS_UP(\"ti-stats-up\", '\\ue673'),\n    SUPPORT(\"ti-support\", '\\ue6d4'),\n    TABLET(\"ti-tablet\", '\\ue609'),\n    TAG(\"ti-tag\", '\\ue608'),\n    TARGET(\"ti-target\", '\\ue607'),\n    TEXT(\"ti-text\", '\\ue672'),\n    THEMIFY_FAVICON(\"ti-themify-favicon\", '\\ue6d2'),\n    THEMIFY_FAVICON_ALT(\"ti-themify-favicon-alt\", '\\ue6d3'),\n    THEMIFY_LOGO(\"ti-themify-logo\", '\\ue6d1'),\n    THOUGHT(\"ti-thought\", '\\ue606'),\n    THUMB_DOWN(\"ti-thumb-down\", '\\ue671'),\n    THUMB_UP(\"ti-thumb-up\", '\\ue670'),\n    TICKET(\"ti-ticket\", '\\ue66f'),\n    TIME(\"ti-time\", '\\ue72b'),\n    TIMER(\"ti-timer\", '\\ue66e'),\n    TRASH(\"ti-trash\", '\\ue605'),\n    TRELLO(\"ti-trello\", '\\ue74d'),\n    TRUCK(\"ti-truck\", '\\ue66d'),\n    TUMBLR(\"ti-tumblr\", '\\ue72c'),\n    TUMBLR_ALT(\"ti-tumblr-alt\", '\\ue74c'),\n    TWITTER(\"ti-twitter\", '\\ue72a'),\n    TWITTER_ALT(\"ti-twitter-alt\", '\\ue74b'),\n    UNDERLINE(\"ti-underline\", '\\ue66c'),\n    UNLINK(\"ti-unlink\", '\\ue604'),\n    UNLOCK(\"ti-unlock\", '\\ue603'),\n    UPLOAD(\"ti-upload\", '\\ue66b'),\n    UPPERCASE(\"ti-uppercase\", '\\ue66a'),\n    USER(\"ti-user\", '\\ue602'),\n    VECTOR(\"ti-vector\", '\\ue6d0'),\n    VIDEO_CAMERA(\"ti-video-camera\", '\\ue6cf'),\n    VIDEO_CLAPPER(\"ti-video-clapper\", '\\ue6ce'),\n    VIEW_GRID(\"ti-view-grid\", '\\ue669'),\n    VIEW_LIST(\"ti-view-list\", '\\ue667'),\n    VIEW_LIST_ALT(\"ti-view-list-alt\", '\\ue668'),\n    VIMEO(\"ti-vimeo\", '\\ue729'),\n    VIMEO_ALT(\"ti-vimeo-alt\", '\\ue74a'),\n    VOLUME(\"ti-volume\", '\\ue601'),\n    WALLET(\"ti-wallet\", '\\ue6cd'),\n    WAND(\"ti-wand\", '\\ue600'),\n    WHEELCHAIR(\"ti-wheelchair\", '\\ue666'),\n    WIDGET(\"ti-widget\", '\\ue6cb'),\n    WIDGETIZED(\"ti-widgetized\", '\\ue6ca'),\n    WIDGET_ALT(\"ti-widget-alt\", '\\ue6cc'),\n    WINDOW(\"ti-window\", '\\ue6c9'),\n    WORDPRESS(\"ti-wordpress\", '\\ue749'),\n    WORLD(\"ti-world\", '\\ue665'),\n    WRITE(\"ti-write\", '\\ue6c8'),\n    YAHOO(\"ti-yahoo\", '\\ue748'),\n    YOUTUBE(\"ti-youtube\", '\\ue728'),\n    ZIP(\"ti-zip\", '\\ue664'),\n    ZOOM_IN(\"ti-zoom-in\", '\\ue611'),\n    ZOOM_OUT(\"ti-zoom-out\", '\\ue612');\n\n    public static Themify findByDescription(String description) {\n        for (Themify font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Themify(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}\n"
  },
  {
    "path": "icon-packs/ikonli-themify-pack/src/main/java/org/kordamp/ikonli/themify/ThemifyIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.themify;/*\n * Copyright 2015-2017 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.4.1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class ThemifyIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/themify/1.0.1/fonts/themify.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"ti-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Themify.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"themify\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-themify-pack/src/main/java/org/kordamp/ikonli/themify/ThemifyIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.themify;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class ThemifyIkonProvider implements IkonProvider<Themify> {\n    @Override\n    public Class<Themify> getIkon() {\n        return Themify.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-themify-pack/src/main/resources/META-INF/resources/themify/1.0.1/LICENSE",
    "content": "LICENSE\n\n- Themify Icons font licensed under: http://scripts.sil.org/OFL\n- Code licensed under: http://opensource.org/licenses/mit-license.html\n- All brand icons are copyright/trademarks of their respective owners."
  },
  {
    "path": "icon-packs/ikonli-themify-pack/src/main/resources/META-INF/resources/themify/1.0.1/css/themify-icons.css",
    "content": "@font-face {\n\tfont-family: 'themify';\n\tsrc:url('../fonts/themify.eot?-fvbane');\n\tsrc:url('../fonts/themify.eot?#iefix-fvbane') format('embedded-opentype'),\n\t\turl('../fonts/themify.woff?-fvbane') format('woff'),\n\t\turl('../fonts/themify.ttf?-fvbane') format('truetype'),\n\t\turl('../fonts/themify.svg?-fvbane#themify') format('svg');\n\tfont-weight: normal;\n\tfont-style: normal;\n}\n\n[class^=\"ti-\"], [class*=\" ti-\"] {\n\tfont-family: 'themify';\n\tspeak: none;\n\tfont-style: normal;\n\tfont-weight: normal;\n\tfont-variant: normal;\n\ttext-transform: none;\n\tline-height: 1;\n\n\t/* Better Font Rendering =========== */\n\t-webkit-font-smoothing: antialiased;\n\t-moz-osx-font-smoothing: grayscale;\n}\n\n.ti-wand:before {\n\tcontent: \"\\e600\";\n}\n.ti-volume:before {\n\tcontent: \"\\e601\";\n}\n.ti-user:before {\n\tcontent: \"\\e602\";\n}\n.ti-unlock:before {\n\tcontent: \"\\e603\";\n}\n.ti-unlink:before {\n\tcontent: \"\\e604\";\n}\n.ti-trash:before {\n\tcontent: \"\\e605\";\n}\n.ti-thought:before {\n\tcontent: \"\\e606\";\n}\n.ti-target:before {\n\tcontent: \"\\e607\";\n}\n.ti-tag:before {\n\tcontent: \"\\e608\";\n}\n.ti-tablet:before {\n\tcontent: \"\\e609\";\n}\n.ti-star:before {\n\tcontent: \"\\e60a\";\n}\n.ti-spray:before {\n\tcontent: \"\\e60b\";\n}\n.ti-signal:before {\n\tcontent: \"\\e60c\";\n}\n.ti-shopping-cart:before {\n\tcontent: \"\\e60d\";\n}\n.ti-shopping-cart-full:before {\n\tcontent: \"\\e60e\";\n}\n.ti-settings:before {\n\tcontent: \"\\e60f\";\n}\n.ti-search:before {\n\tcontent: \"\\e610\";\n}\n.ti-zoom-in:before {\n\tcontent: \"\\e611\";\n}\n.ti-zoom-out:before {\n\tcontent: \"\\e612\";\n}\n.ti-cut:before {\n\tcontent: \"\\e613\";\n}\n.ti-ruler:before {\n\tcontent: \"\\e614\";\n}\n.ti-ruler-pencil:before {\n\tcontent: \"\\e615\";\n}\n.ti-ruler-alt:before {\n\tcontent: \"\\e616\";\n}\n.ti-bookmark:before {\n\tcontent: \"\\e617\";\n}\n.ti-bookmark-alt:before {\n\tcontent: \"\\e618\";\n}\n.ti-reload:before {\n\tcontent: \"\\e619\";\n}\n.ti-plus:before {\n\tcontent: \"\\e61a\";\n}\n.ti-pin:before {\n\tcontent: \"\\e61b\";\n}\n.ti-pencil:before {\n\tcontent: \"\\e61c\";\n}\n.ti-pencil-alt:before {\n\tcontent: \"\\e61d\";\n}\n.ti-paint-roller:before {\n\tcontent: \"\\e61e\";\n}\n.ti-paint-bucket:before {\n\tcontent: \"\\e61f\";\n}\n.ti-na:before {\n\tcontent: \"\\e620\";\n}\n.ti-mobile:before {\n\tcontent: \"\\e621\";\n}\n.ti-minus:before {\n\tcontent: \"\\e622\";\n}\n.ti-medall:before {\n\tcontent: \"\\e623\";\n}\n.ti-medall-alt:before {\n\tcontent: \"\\e624\";\n}\n.ti-marker:before {\n\tcontent: \"\\e625\";\n}\n.ti-marker-alt:before {\n\tcontent: \"\\e626\";\n}\n.ti-arrow-up:before {\n\tcontent: \"\\e627\";\n}\n.ti-arrow-right:before {\n\tcontent: \"\\e628\";\n}\n.ti-arrow-left:before {\n\tcontent: \"\\e629\";\n}\n.ti-arrow-down:before {\n\tcontent: \"\\e62a\";\n}\n.ti-lock:before {\n\tcontent: \"\\e62b\";\n}\n.ti-location-arrow:before {\n\tcontent: \"\\e62c\";\n}\n.ti-link:before {\n\tcontent: \"\\e62d\";\n}\n.ti-layout:before {\n\tcontent: \"\\e62e\";\n}\n.ti-layers:before {\n\tcontent: \"\\e62f\";\n}\n.ti-layers-alt:before {\n\tcontent: \"\\e630\";\n}\n.ti-key:before {\n\tcontent: \"\\e631\";\n}\n.ti-import:before {\n\tcontent: \"\\e632\";\n}\n.ti-image:before {\n\tcontent: \"\\e633\";\n}\n.ti-heart:before {\n\tcontent: \"\\e634\";\n}\n.ti-heart-broken:before {\n\tcontent: \"\\e635\";\n}\n.ti-hand-stop:before {\n\tcontent: \"\\e636\";\n}\n.ti-hand-open:before {\n\tcontent: \"\\e637\";\n}\n.ti-hand-drag:before {\n\tcontent: \"\\e638\";\n}\n.ti-folder:before {\n\tcontent: \"\\e639\";\n}\n.ti-flag:before {\n\tcontent: \"\\e63a\";\n}\n.ti-flag-alt:before {\n\tcontent: \"\\e63b\";\n}\n.ti-flag-alt-2:before {\n\tcontent: \"\\e63c\";\n}\n.ti-eye:before {\n\tcontent: \"\\e63d\";\n}\n.ti-export:before {\n\tcontent: \"\\e63e\";\n}\n.ti-exchange-vertical:before {\n\tcontent: \"\\e63f\";\n}\n.ti-desktop:before {\n\tcontent: \"\\e640\";\n}\n.ti-cup:before {\n\tcontent: \"\\e641\";\n}\n.ti-crown:before {\n\tcontent: \"\\e642\";\n}\n.ti-comments:before {\n\tcontent: \"\\e643\";\n}\n.ti-comment:before {\n\tcontent: \"\\e644\";\n}\n.ti-comment-alt:before {\n\tcontent: \"\\e645\";\n}\n.ti-close:before {\n\tcontent: \"\\e646\";\n}\n.ti-clip:before {\n\tcontent: \"\\e647\";\n}\n.ti-angle-up:before {\n\tcontent: \"\\e648\";\n}\n.ti-angle-right:before {\n\tcontent: \"\\e649\";\n}\n.ti-angle-left:before {\n\tcontent: \"\\e64a\";\n}\n.ti-angle-down:before {\n\tcontent: \"\\e64b\";\n}\n.ti-check:before {\n\tcontent: \"\\e64c\";\n}\n.ti-check-box:before {\n\tcontent: \"\\e64d\";\n}\n.ti-camera:before {\n\tcontent: \"\\e64e\";\n}\n.ti-announcement:before {\n\tcontent: \"\\e64f\";\n}\n.ti-brush:before {\n\tcontent: \"\\e650\";\n}\n.ti-briefcase:before {\n\tcontent: \"\\e651\";\n}\n.ti-bolt:before {\n\tcontent: \"\\e652\";\n}\n.ti-bolt-alt:before {\n\tcontent: \"\\e653\";\n}\n.ti-blackboard:before {\n\tcontent: \"\\e654\";\n}\n.ti-bag:before {\n\tcontent: \"\\e655\";\n}\n.ti-move:before {\n\tcontent: \"\\e656\";\n}\n.ti-arrows-vertical:before {\n\tcontent: \"\\e657\";\n}\n.ti-arrows-horizontal:before {\n\tcontent: \"\\e658\";\n}\n.ti-fullscreen:before {\n\tcontent: \"\\e659\";\n}\n.ti-arrow-top-right:before {\n\tcontent: \"\\e65a\";\n}\n.ti-arrow-top-left:before {\n\tcontent: \"\\e65b\";\n}\n.ti-arrow-circle-up:before {\n\tcontent: \"\\e65c\";\n}\n.ti-arrow-circle-right:before {\n\tcontent: \"\\e65d\";\n}\n.ti-arrow-circle-left:before {\n\tcontent: \"\\e65e\";\n}\n.ti-arrow-circle-down:before {\n\tcontent: \"\\e65f\";\n}\n.ti-angle-double-up:before {\n\tcontent: \"\\e660\";\n}\n.ti-angle-double-right:before {\n\tcontent: \"\\e661\";\n}\n.ti-angle-double-left:before {\n\tcontent: \"\\e662\";\n}\n.ti-angle-double-down:before {\n\tcontent: \"\\e663\";\n}\n.ti-zip:before {\n\tcontent: \"\\e664\";\n}\n.ti-world:before {\n\tcontent: \"\\e665\";\n}\n.ti-wheelchair:before {\n\tcontent: \"\\e666\";\n}\n.ti-view-list:before {\n\tcontent: \"\\e667\";\n}\n.ti-view-list-alt:before {\n\tcontent: \"\\e668\";\n}\n.ti-view-grid:before {\n\tcontent: \"\\e669\";\n}\n.ti-uppercase:before {\n\tcontent: \"\\e66a\";\n}\n.ti-upload:before {\n\tcontent: \"\\e66b\";\n}\n.ti-underline:before {\n\tcontent: \"\\e66c\";\n}\n.ti-truck:before {\n\tcontent: \"\\e66d\";\n}\n.ti-timer:before {\n\tcontent: \"\\e66e\";\n}\n.ti-ticket:before {\n\tcontent: \"\\e66f\";\n}\n.ti-thumb-up:before {\n\tcontent: \"\\e670\";\n}\n.ti-thumb-down:before {\n\tcontent: \"\\e671\";\n}\n.ti-text:before {\n\tcontent: \"\\e672\";\n}\n.ti-stats-up:before {\n\tcontent: \"\\e673\";\n}\n.ti-stats-down:before {\n\tcontent: \"\\e674\";\n}\n.ti-split-v:before {\n\tcontent: \"\\e675\";\n}\n.ti-split-h:before {\n\tcontent: \"\\e676\";\n}\n.ti-smallcap:before {\n\tcontent: \"\\e677\";\n}\n.ti-shine:before {\n\tcontent: \"\\e678\";\n}\n.ti-shift-right:before {\n\tcontent: \"\\e679\";\n}\n.ti-shift-left:before {\n\tcontent: \"\\e67a\";\n}\n.ti-shield:before {\n\tcontent: \"\\e67b\";\n}\n.ti-notepad:before {\n\tcontent: \"\\e67c\";\n}\n.ti-server:before {\n\tcontent: \"\\e67d\";\n}\n.ti-quote-right:before {\n\tcontent: \"\\e67e\";\n}\n.ti-quote-left:before {\n\tcontent: \"\\e67f\";\n}\n.ti-pulse:before {\n\tcontent: \"\\e680\";\n}\n.ti-printer:before {\n\tcontent: \"\\e681\";\n}\n.ti-power-off:before {\n\tcontent: \"\\e682\";\n}\n.ti-plug:before {\n\tcontent: \"\\e683\";\n}\n.ti-pie-chart:before {\n\tcontent: \"\\e684\";\n}\n.ti-paragraph:before {\n\tcontent: \"\\e685\";\n}\n.ti-panel:before {\n\tcontent: \"\\e686\";\n}\n.ti-package:before {\n\tcontent: \"\\e687\";\n}\n.ti-music:before {\n\tcontent: \"\\e688\";\n}\n.ti-music-alt:before {\n\tcontent: \"\\e689\";\n}\n.ti-mouse:before {\n\tcontent: \"\\e68a\";\n}\n.ti-mouse-alt:before {\n\tcontent: \"\\e68b\";\n}\n.ti-money:before {\n\tcontent: \"\\e68c\";\n}\n.ti-microphone:before {\n\tcontent: \"\\e68d\";\n}\n.ti-menu:before {\n\tcontent: \"\\e68e\";\n}\n.ti-menu-alt:before {\n\tcontent: \"\\e68f\";\n}\n.ti-map:before {\n\tcontent: \"\\e690\";\n}\n.ti-map-alt:before {\n\tcontent: \"\\e691\";\n}\n.ti-loop:before {\n\tcontent: \"\\e692\";\n}\n.ti-location-pin:before {\n\tcontent: \"\\e693\";\n}\n.ti-list:before {\n\tcontent: \"\\e694\";\n}\n.ti-light-bulb:before {\n\tcontent: \"\\e695\";\n}\n.ti-Italic:before {\n\tcontent: \"\\e696\";\n}\n.ti-info:before {\n\tcontent: \"\\e697\";\n}\n.ti-infinite:before {\n\tcontent: \"\\e698\";\n}\n.ti-id-badge:before {\n\tcontent: \"\\e699\";\n}\n.ti-hummer:before {\n\tcontent: \"\\e69a\";\n}\n.ti-home:before {\n\tcontent: \"\\e69b\";\n}\n.ti-help:before {\n\tcontent: \"\\e69c\";\n}\n.ti-headphone:before {\n\tcontent: \"\\e69d\";\n}\n.ti-harddrives:before {\n\tcontent: \"\\e69e\";\n}\n.ti-harddrive:before {\n\tcontent: \"\\e69f\";\n}\n.ti-gift:before {\n\tcontent: \"\\e6a0\";\n}\n.ti-game:before {\n\tcontent: \"\\e6a1\";\n}\n.ti-filter:before {\n\tcontent: \"\\e6a2\";\n}\n.ti-files:before {\n\tcontent: \"\\e6a3\";\n}\n.ti-file:before {\n\tcontent: \"\\e6a4\";\n}\n.ti-eraser:before {\n\tcontent: \"\\e6a5\";\n}\n.ti-envelope:before {\n\tcontent: \"\\e6a6\";\n}\n.ti-download:before {\n\tcontent: \"\\e6a7\";\n}\n.ti-direction:before {\n\tcontent: \"\\e6a8\";\n}\n.ti-direction-alt:before {\n\tcontent: \"\\e6a9\";\n}\n.ti-dashboard:before {\n\tcontent: \"\\e6aa\";\n}\n.ti-control-stop:before {\n\tcontent: \"\\e6ab\";\n}\n.ti-control-shuffle:before {\n\tcontent: \"\\e6ac\";\n}\n.ti-control-play:before {\n\tcontent: \"\\e6ad\";\n}\n.ti-control-pause:before {\n\tcontent: \"\\e6ae\";\n}\n.ti-control-forward:before {\n\tcontent: \"\\e6af\";\n}\n.ti-control-backward:before {\n\tcontent: \"\\e6b0\";\n}\n.ti-cloud:before {\n\tcontent: \"\\e6b1\";\n}\n.ti-cloud-up:before {\n\tcontent: \"\\e6b2\";\n}\n.ti-cloud-down:before {\n\tcontent: \"\\e6b3\";\n}\n.ti-clipboard:before {\n\tcontent: \"\\e6b4\";\n}\n.ti-car:before {\n\tcontent: \"\\e6b5\";\n}\n.ti-calendar:before {\n\tcontent: \"\\e6b6\";\n}\n.ti-book:before {\n\tcontent: \"\\e6b7\";\n}\n.ti-bell:before {\n\tcontent: \"\\e6b8\";\n}\n.ti-basketball:before {\n\tcontent: \"\\e6b9\";\n}\n.ti-bar-chart:before {\n\tcontent: \"\\e6ba\";\n}\n.ti-bar-chart-alt:before {\n\tcontent: \"\\e6bb\";\n}\n.ti-back-right:before {\n\tcontent: \"\\e6bc\";\n}\n.ti-back-left:before {\n\tcontent: \"\\e6bd\";\n}\n.ti-arrows-corner:before {\n\tcontent: \"\\e6be\";\n}\n.ti-archive:before {\n\tcontent: \"\\e6bf\";\n}\n.ti-anchor:before {\n\tcontent: \"\\e6c0\";\n}\n.ti-align-right:before {\n\tcontent: \"\\e6c1\";\n}\n.ti-align-left:before {\n\tcontent: \"\\e6c2\";\n}\n.ti-align-justify:before {\n\tcontent: \"\\e6c3\";\n}\n.ti-align-center:before {\n\tcontent: \"\\e6c4\";\n}\n.ti-alert:before {\n\tcontent: \"\\e6c5\";\n}\n.ti-alarm-clock:before {\n\tcontent: \"\\e6c6\";\n}\n.ti-agenda:before {\n\tcontent: \"\\e6c7\";\n}\n.ti-write:before {\n\tcontent: \"\\e6c8\";\n}\n.ti-window:before {\n\tcontent: \"\\e6c9\";\n}\n.ti-widgetized:before {\n\tcontent: \"\\e6ca\";\n}\n.ti-widget:before {\n\tcontent: \"\\e6cb\";\n}\n.ti-widget-alt:before {\n\tcontent: \"\\e6cc\";\n}\n.ti-wallet:before {\n\tcontent: \"\\e6cd\";\n}\n.ti-video-clapper:before {\n\tcontent: \"\\e6ce\";\n}\n.ti-video-camera:before {\n\tcontent: \"\\e6cf\";\n}\n.ti-vector:before {\n\tcontent: \"\\e6d0\";\n}\n.ti-themify-logo:before {\n\tcontent: \"\\e6d1\";\n}\n.ti-themify-favicon:before {\n\tcontent: \"\\e6d2\";\n}\n.ti-themify-favicon-alt:before {\n\tcontent: \"\\e6d3\";\n}\n.ti-support:before {\n\tcontent: \"\\e6d4\";\n}\n.ti-stamp:before {\n\tcontent: \"\\e6d5\";\n}\n.ti-split-v-alt:before {\n\tcontent: \"\\e6d6\";\n}\n.ti-slice:before {\n\tcontent: \"\\e6d7\";\n}\n.ti-shortcode:before {\n\tcontent: \"\\e6d8\";\n}\n.ti-shift-right-alt:before {\n\tcontent: \"\\e6d9\";\n}\n.ti-shift-left-alt:before {\n\tcontent: \"\\e6da\";\n}\n.ti-ruler-alt-2:before {\n\tcontent: \"\\e6db\";\n}\n.ti-receipt:before {\n\tcontent: \"\\e6dc\";\n}\n.ti-pin2:before {\n\tcontent: \"\\e6dd\";\n}\n.ti-pin-alt:before {\n\tcontent: \"\\e6de\";\n}\n.ti-pencil-alt2:before {\n\tcontent: \"\\e6df\";\n}\n.ti-palette:before {\n\tcontent: \"\\e6e0\";\n}\n.ti-more:before {\n\tcontent: \"\\e6e1\";\n}\n.ti-more-alt:before {\n\tcontent: \"\\e6e2\";\n}\n.ti-microphone-alt:before {\n\tcontent: \"\\e6e3\";\n}\n.ti-magnet:before {\n\tcontent: \"\\e6e4\";\n}\n.ti-line-double:before {\n\tcontent: \"\\e6e5\";\n}\n.ti-line-dotted:before {\n\tcontent: \"\\e6e6\";\n}\n.ti-line-dashed:before {\n\tcontent: \"\\e6e7\";\n}\n.ti-layout-width-full:before {\n\tcontent: \"\\e6e8\";\n}\n.ti-layout-width-default:before {\n\tcontent: \"\\e6e9\";\n}\n.ti-layout-width-default-alt:before {\n\tcontent: \"\\e6ea\";\n}\n.ti-layout-tab:before {\n\tcontent: \"\\e6eb\";\n}\n.ti-layout-tab-window:before {\n\tcontent: \"\\e6ec\";\n}\n.ti-layout-tab-v:before {\n\tcontent: \"\\e6ed\";\n}\n.ti-layout-tab-min:before {\n\tcontent: \"\\e6ee\";\n}\n.ti-layout-slider:before {\n\tcontent: \"\\e6ef\";\n}\n.ti-layout-slider-alt:before {\n\tcontent: \"\\e6f0\";\n}\n.ti-layout-sidebar-right:before {\n\tcontent: \"\\e6f1\";\n}\n.ti-layout-sidebar-none:before {\n\tcontent: \"\\e6f2\";\n}\n.ti-layout-sidebar-left:before {\n\tcontent: \"\\e6f3\";\n}\n.ti-layout-placeholder:before {\n\tcontent: \"\\e6f4\";\n}\n.ti-layout-menu:before {\n\tcontent: \"\\e6f5\";\n}\n.ti-layout-menu-v:before {\n\tcontent: \"\\e6f6\";\n}\n.ti-layout-menu-separated:before {\n\tcontent: \"\\e6f7\";\n}\n.ti-layout-menu-full:before {\n\tcontent: \"\\e6f8\";\n}\n.ti-layout-media-right-alt:before {\n\tcontent: \"\\e6f9\";\n}\n.ti-layout-media-right:before {\n\tcontent: \"\\e6fa\";\n}\n.ti-layout-media-overlay:before {\n\tcontent: \"\\e6fb\";\n}\n.ti-layout-media-overlay-alt:before {\n\tcontent: \"\\e6fc\";\n}\n.ti-layout-media-overlay-alt-2:before {\n\tcontent: \"\\e6fd\";\n}\n.ti-layout-media-left-alt:before {\n\tcontent: \"\\e6fe\";\n}\n.ti-layout-media-left:before {\n\tcontent: \"\\e6ff\";\n}\n.ti-layout-media-center-alt:before {\n\tcontent: \"\\e700\";\n}\n.ti-layout-media-center:before {\n\tcontent: \"\\e701\";\n}\n.ti-layout-list-thumb:before {\n\tcontent: \"\\e702\";\n}\n.ti-layout-list-thumb-alt:before {\n\tcontent: \"\\e703\";\n}\n.ti-layout-list-post:before {\n\tcontent: \"\\e704\";\n}\n.ti-layout-list-large-image:before {\n\tcontent: \"\\e705\";\n}\n.ti-layout-line-solid:before {\n\tcontent: \"\\e706\";\n}\n.ti-layout-grid4:before {\n\tcontent: \"\\e707\";\n}\n.ti-layout-grid3:before {\n\tcontent: \"\\e708\";\n}\n.ti-layout-grid2:before {\n\tcontent: \"\\e709\";\n}\n.ti-layout-grid2-thumb:before {\n\tcontent: \"\\e70a\";\n}\n.ti-layout-cta-right:before {\n\tcontent: \"\\e70b\";\n}\n.ti-layout-cta-left:before {\n\tcontent: \"\\e70c\";\n}\n.ti-layout-cta-center:before {\n\tcontent: \"\\e70d\";\n}\n.ti-layout-cta-btn-right:before {\n\tcontent: \"\\e70e\";\n}\n.ti-layout-cta-btn-left:before {\n\tcontent: \"\\e70f\";\n}\n.ti-layout-column4:before {\n\tcontent: \"\\e710\";\n}\n.ti-layout-column3:before {\n\tcontent: \"\\e711\";\n}\n.ti-layout-column2:before {\n\tcontent: \"\\e712\";\n}\n.ti-layout-accordion-separated:before {\n\tcontent: \"\\e713\";\n}\n.ti-layout-accordion-merged:before {\n\tcontent: \"\\e714\";\n}\n.ti-layout-accordion-list:before {\n\tcontent: \"\\e715\";\n}\n.ti-ink-pen:before {\n\tcontent: \"\\e716\";\n}\n.ti-info-alt:before {\n\tcontent: \"\\e717\";\n}\n.ti-help-alt:before {\n\tcontent: \"\\e718\";\n}\n.ti-headphone-alt:before {\n\tcontent: \"\\e719\";\n}\n.ti-hand-point-up:before {\n\tcontent: \"\\e71a\";\n}\n.ti-hand-point-right:before {\n\tcontent: \"\\e71b\";\n}\n.ti-hand-point-left:before {\n\tcontent: \"\\e71c\";\n}\n.ti-hand-point-down:before {\n\tcontent: \"\\e71d\";\n}\n.ti-gallery:before {\n\tcontent: \"\\e71e\";\n}\n.ti-face-smile:before {\n\tcontent: \"\\e71f\";\n}\n.ti-face-sad:before {\n\tcontent: \"\\e720\";\n}\n.ti-credit-card:before {\n\tcontent: \"\\e721\";\n}\n.ti-control-skip-forward:before {\n\tcontent: \"\\e722\";\n}\n.ti-control-skip-backward:before {\n\tcontent: \"\\e723\";\n}\n.ti-control-record:before {\n\tcontent: \"\\e724\";\n}\n.ti-control-eject:before {\n\tcontent: \"\\e725\";\n}\n.ti-comments-smiley:before {\n\tcontent: \"\\e726\";\n}\n.ti-brush-alt:before {\n\tcontent: \"\\e727\";\n}\n.ti-youtube:before {\n\tcontent: \"\\e728\";\n}\n.ti-vimeo:before {\n\tcontent: \"\\e729\";\n}\n.ti-twitter:before {\n\tcontent: \"\\e72a\";\n}\n.ti-time:before {\n\tcontent: \"\\e72b\";\n}\n.ti-tumblr:before {\n\tcontent: \"\\e72c\";\n}\n.ti-skype:before {\n\tcontent: \"\\e72d\";\n}\n.ti-share:before {\n\tcontent: \"\\e72e\";\n}\n.ti-share-alt:before {\n\tcontent: \"\\e72f\";\n}\n.ti-rocket:before {\n\tcontent: \"\\e730\";\n}\n.ti-pinterest:before {\n\tcontent: \"\\e731\";\n}\n.ti-new-window:before {\n\tcontent: \"\\e732\";\n}\n.ti-microsoft:before {\n\tcontent: \"\\e733\";\n}\n.ti-list-ol:before {\n\tcontent: \"\\e734\";\n}\n.ti-linkedin:before {\n\tcontent: \"\\e735\";\n}\n.ti-layout-sidebar-2:before {\n\tcontent: \"\\e736\";\n}\n.ti-layout-grid4-alt:before {\n\tcontent: \"\\e737\";\n}\n.ti-layout-grid3-alt:before {\n\tcontent: \"\\e738\";\n}\n.ti-layout-grid2-alt:before {\n\tcontent: \"\\e739\";\n}\n.ti-layout-column4-alt:before {\n\tcontent: \"\\e73a\";\n}\n.ti-layout-column3-alt:before {\n\tcontent: \"\\e73b\";\n}\n.ti-layout-column2-alt:before {\n\tcontent: \"\\e73c\";\n}\n.ti-instagram:before {\n\tcontent: \"\\e73d\";\n}\n.ti-google:before {\n\tcontent: \"\\e73e\";\n}\n.ti-github:before {\n\tcontent: \"\\e73f\";\n}\n.ti-flickr:before {\n\tcontent: \"\\e740\";\n}\n.ti-facebook:before {\n\tcontent: \"\\e741\";\n}\n.ti-dropbox:before {\n\tcontent: \"\\e742\";\n}\n.ti-dribbble:before {\n\tcontent: \"\\e743\";\n}\n.ti-apple:before {\n\tcontent: \"\\e744\";\n}\n.ti-android:before {\n\tcontent: \"\\e745\";\n}\n.ti-save:before {\n\tcontent: \"\\e746\";\n}\n.ti-save-alt:before {\n\tcontent: \"\\e747\";\n}\n.ti-yahoo:before {\n\tcontent: \"\\e748\";\n}\n.ti-wordpress:before {\n\tcontent: \"\\e749\";\n}\n.ti-vimeo-alt:before {\n\tcontent: \"\\e74a\";\n}\n.ti-twitter-alt:before {\n\tcontent: \"\\e74b\";\n}\n.ti-tumblr-alt:before {\n\tcontent: \"\\e74c\";\n}\n.ti-trello:before {\n\tcontent: \"\\e74d\";\n}\n.ti-stack-overflow:before {\n\tcontent: \"\\e74e\";\n}\n.ti-soundcloud:before {\n\tcontent: \"\\e74f\";\n}\n.ti-sharethis:before {\n\tcontent: \"\\e750\";\n}\n.ti-sharethis-alt:before {\n\tcontent: \"\\e751\";\n}\n.ti-reddit:before {\n\tcontent: \"\\e752\";\n}\n.ti-pinterest-alt:before {\n\tcontent: \"\\e753\";\n}\n.ti-microsoft-alt:before {\n\tcontent: \"\\e754\";\n}\n.ti-linux:before {\n\tcontent: \"\\e755\";\n}\n.ti-jsfiddle:before {\n\tcontent: \"\\e756\";\n}\n.ti-joomla:before {\n\tcontent: \"\\e757\";\n}\n.ti-html5:before {\n\tcontent: \"\\e758\";\n}\n.ti-flickr-alt:before {\n\tcontent: \"\\e759\";\n}\n.ti-email:before {\n\tcontent: \"\\e75a\";\n}\n.ti-drupal:before {\n\tcontent: \"\\e75b\";\n}\n.ti-dropbox-alt:before {\n\tcontent: \"\\e75c\";\n}\n.ti-css3:before {\n\tcontent: \"\\e75d\";\n}\n.ti-rss:before {\n\tcontent: \"\\e75e\";\n}\n.ti-rss-alt:before {\n\tcontent: \"\\e75f\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-typicons-pack/ikonli-typicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-typicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.typicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.typicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.typicons.TypiconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.typicons.TypiconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-typicons-pack/src/main/java/org/kordamp/ikonli/typicons/Typicons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.typicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Typicons implements Ikon {\n    // latest is e14f\n    ADJUST_BRIGHTNESS(\"typ-adjust-brightness\", '\\ue000'),\n    ADJUST_CONTRAST(\"typ-adjust-contrast\", '\\ue001'),\n    ANCHOR(\"typ-anchor\", '\\ue003'),\n    ANCHOR_OUTLINE(\"typ-anchor-outline\", '\\ue002'),\n    ARCHIVE(\"typ-archive\", '\\ue004'),\n    ARROW_BACK(\"typ-arrow-back\", '\\ue006'),\n    ARROW_BACK_OUTLINE(\"typ-arrow-back-outline\", '\\ue005'),\n    ARROW_DOWN(\"typ-arrow-down\", '\\ue009'),\n    ARROW_DOWN_OUTLINE(\"typ-arrow-down-outline\", '\\ue007'),\n    ARROW_DOWN_THICK(\"typ-arrow-down-thick\", '\\ue008'),\n    ARROW_FORWARD(\"typ-arrow-forward\", '\\ue00b'),\n    ARROW_FORWARD_OUTLINE(\"typ-arrow-forward-outline\", '\\ue00a'),\n    ARROW_LEFT(\"typ-arrow-left\", '\\ue00e'),\n    ARROW_LEFT_OUTLINE(\"typ-arrow-left-outline\", '\\ue00c'),\n    ARROW_LEFT_THICK(\"typ-arrow-left-thick\", '\\ue00d'),\n    ARROW_LOOP(\"typ-arrow-loop\", '\\ue010'),\n    ARROW_LOOP_OUTLINE(\"typ-arrow-loop-outline\", '\\ue00f'),\n    ARROW_MAXIMISE(\"typ-arrow-maximise\", '\\ue012'),\n    ARROW_MAXIMISE_OUTLINE(\"typ-arrow-maximise-outline\", '\\ue011'),\n    ARROW_MINIMISE(\"typ-arrow-minimise\", '\\ue014'),\n    ARROW_MINIMISE_OUTLINE(\"typ-arrow-minimise-outline\", '\\ue013'),\n    ARROW_MOVE(\"typ-arrow-move\", '\\ue016'),\n    ARROW_MOVE_OUTLINE(\"typ-arrow-move-outline\", '\\ue015'),\n    ARROW_REPEAT(\"typ-arrow-repeat\", '\\ue018'),\n    ARROW_REPEAT_OUTLINE(\"typ-arrow-repeat-outline\", '\\ue017'),\n    ARROW_RIGHT(\"typ-arrow-right\", '\\ue01b'),\n    ARROW_RIGHT_OUTLINE(\"typ-arrow-right-outline\", '\\ue019'),\n    ARROW_RIGHT_THICK(\"typ-arrow-right-thick\", '\\ue01a'),\n    ARROW_SHUFFLE(\"typ-arrow-shuffle\", '\\ue01c'),\n    ARROW_SORTED_DOWN(\"typ-arrow-sorted-down\", '\\ue01d'),\n    ARROW_SORTED_UP(\"typ-arrow-sorted-up\", '\\ue01e'),\n    ARROW_SYNC(\"typ-arrow-sync\", '\\ue020'),\n    ARROW_SYNC_OUTLINE(\"typ-arrow-sync-outline\", '\\ue01f'),\n    ARROW_UNSORTED(\"typ-arrow-unsorted\", '\\ue021'),\n    ARROW_UP(\"typ-arrow-up\", '\\ue024'),\n    ARROW_UP_OUTLINE(\"typ-arrow-up-outline\", '\\ue022'),\n    ARROW_UP_THICK(\"typ-arrow-up-thick\", '\\ue023'),\n    AT(\"typ-at\", '\\ue025'),\n    ATTACHMENT(\"typ-attachment\", '\\ue027'),\n    ATTACHMENT_OUTLINE(\"typ-attachment-outline\", '\\ue026'),\n    BACKSPACE(\"typ-backspace\", '\\ue029'),\n    BACKSPACE_OUTLINE(\"typ-backspace-outline\", '\\ue028'),\n    BATTERY_CHARGE(\"typ-battery-charge\", '\\ue02a'),\n    BATTERY_FULL(\"typ-battery-full\", '\\ue02b'),\n    BATTERY_HIGH(\"typ-battery-high\", '\\ue02c'),\n    BATTERY_LOW(\"typ-battery-low\", '\\ue02d'),\n    BATTERY_MID(\"typ-battery-mid\", '\\ue02e'),\n    BEAKER(\"typ-beaker\", '\\ue02f'),\n    BEER(\"typ-beer\", '\\ue030'),\n    BELL(\"typ-bell\", '\\ue031'),\n    BOOK(\"typ-book\", '\\ue032'),\n    BOOKMARK(\"typ-bookmark\", '\\ue033'),\n    BRIEFCASE(\"typ-briefcase\", '\\ue034'),\n    BRUSH(\"typ-brush\", '\\ue035'),\n    BUSINESS_CARD(\"typ-business-card\", '\\ue036'),\n    CALCULATOR(\"typ-calculator\", '\\ue037'),\n    CALENDAR(\"typ-calendar\", '\\ue039'),\n    CALENDAR_OUTLINE(\"typ-calendar-outline\", '\\ue038'),\n    CAMERA(\"typ-camera\", '\\ue03b'),\n    CAMERA_OUTLINE(\"typ-camera-outline\", '\\ue03a'),\n    CANCEL(\"typ-cancel\", '\\ue03d'),\n    CANCEL_OUTLINE(\"typ-cancel-outline\", '\\ue03c'),\n    CHART_AREA(\"typ-chart-area\", '\\ue03f'),\n    CHART_AREA_OUTLINE(\"typ-chart-area-outline\", '\\ue03e'),\n    CHART_BAR(\"typ-chart-bar\", '\\ue041'),\n    CHART_BAR_OUTLINE(\"typ-chart-bar-outline\", '\\ue040'),\n    CHART_LINE(\"typ-chart-line\", '\\ue043'),\n    CHART_LINE_OUTLINE(\"typ-chart-line-outline\", '\\ue042'),\n    CHART_PIE(\"typ-chart-pie\", '\\ue045'),\n    CHART_PIE_OUTLINE(\"typ-chart-pie-outline\", '\\ue044'),\n    CHEVRON_LEFT(\"typ-chevron-left\", '\\ue047'),\n    CHEVRON_LEFT_OUTLINE(\"typ-chevron-left-outline\", '\\ue046'),\n    CHEVRON_RIGHT(\"typ-chevron-right\", '\\ue049'),\n    CHEVRON_RIGHT_OUTLINE(\"typ-chevron-right-outline\", '\\ue048'),\n    CLIPBOARD(\"typ-clipboard\", '\\ue04a'),\n    CLOUD_STORAGE(\"typ-cloud-storage\", '\\ue04b'),\n    CLOUD_STORAGE_OUTLINE(\"typ-cloud-storage-outline\", '\\ue054'),\n    CODE(\"typ-code\", '\\ue04d'),\n    CODE_OUTLINE(\"typ-code-outline\", '\\ue04c'),\n    COFFEE(\"typ-coffee\", '\\ue04e'),\n    COG(\"typ-cog\", '\\ue050'),\n    COG_OUTLINE(\"typ-cog-outline\", '\\ue04f'),\n    COMPASS(\"typ-compass\", '\\ue051'),\n    CONTACTS(\"typ-contacts\", '\\ue052'),\n    CREDIT_CARD(\"typ-credit-card\", '\\ue053'),\n    CSS3(\"typ-css3\", '\\ue055'),\n    DATABASE(\"typ-database\", '\\ue056'),\n    DELETE(\"typ-delete\", '\\ue058'),\n    DELETE_OUTLINE(\"typ-delete-outline\", '\\ue057'),\n    DEVICE_DESKTOP(\"typ-device-desktop\", '\\ue059'),\n    DEVICE_LAPTOP(\"typ-device-laptop\", '\\ue05a'),\n    DEVICE_PHONE(\"typ-device-phone\", '\\ue05b'),\n    DEVICE_TABLET(\"typ-device-tablet\", '\\ue05c'),\n    DIRECTIONS(\"typ-directions\", '\\ue05d'),\n    DIVIDE(\"typ-divide\", '\\ue05f'),\n    DIVIDE_OUTLINE(\"typ-divide-outline\", '\\ue05e'),\n    DOCUMENT(\"typ-document\", '\\ue063'),\n    DOCUMENT_ADD(\"typ-document-add\", '\\ue060'),\n    DOCUMENT_DELETE(\"typ-document-delete\", '\\ue061'),\n    DOCUMENT_TEXT(\"typ-document-text\", '\\ue062'),\n    DOWNLOAD(\"typ-download\", '\\ue065'),\n    DOWNLOAD_OUTLINE(\"typ-download-outline\", '\\ue064'),\n    DROPBOX(\"typ-dropbox\", '\\ue066'),\n    EDIT(\"typ-edit\", '\\ue067'),\n    EJECT(\"typ-eject\", '\\ue069'),\n    EJECT_OUTLINE(\"typ-eject-outline\", '\\ue068'),\n    EQUALS(\"typ-equals\", '\\ue06b'),\n    EQUALS_OUTLINE(\"typ-equals-outline\", '\\ue06a'),\n    EXPORT(\"typ-export\", '\\ue06d'),\n    EXPORT_OUTLINE(\"typ-export-outline\", '\\ue06c'),\n    EYE(\"typ-eye\", '\\ue06f'),\n    EYE_OUTLINE(\"typ-eye-outline\", '\\ue06e'),\n    FEATHER(\"typ-feather\", '\\ue070'),\n    FILM(\"typ-film\", '\\ue071'),\n    FILTER(\"typ-filter\", '\\ue072'),\n    FLAG(\"typ-flag\", '\\ue074'),\n    FLAG_OUTLINE(\"typ-flag-outline\", '\\ue073'),\n    FLASH(\"typ-flash\", '\\ue076'),\n    FLASH_OUTLINE(\"typ-flash-outline\", '\\ue075'),\n    FLOW_CHILDREN(\"typ-flow-children\", '\\ue077'),\n    FLOW_MERGE(\"typ-flow-merge\", '\\ue078'),\n    FLOW_PARALLEL(\"typ-flow-parallel\", '\\ue079'),\n    FLOW_SWITCH(\"typ-flow-switch\", '\\ue07a'),\n    FOLDER(\"typ-folder\", '\\ue07e'),\n    FOLDER_ADD(\"typ-folder-add\", '\\ue07b'),\n    FOLDER_DELETE(\"typ-folder-delete\", '\\ue07c'),\n    FOLDER_OPEN(\"typ-folder-open\", '\\ue07d'),\n    GIFT(\"typ-gift\", '\\ue07f'),\n    GLOBE(\"typ-globe\", '\\ue081'),\n    GLOBE_OUTLINE(\"typ-globe-outline\", '\\ue080'),\n    GROUP(\"typ-group\", '\\ue083'),\n    GROUP_OUTLINE(\"typ-group-outline\", '\\ue082'),\n    HEADPHONES(\"typ-headphones\", '\\ue084'),\n    HEART(\"typ-heart\", '\\ue088'),\n    HEART_FULL_OUTLINE(\"typ-heart-full-outline\", '\\ue085'),\n    HEART_HALF_OUTLINE(\"typ-heart-half-outline\", '\\ue086'),\n    HEART_OUTLINE(\"typ-heart-outline\", '\\ue087'),\n    HOME(\"typ-home\", '\\ue08a'),\n    HOME_OUTLINE(\"typ-home-outline\", '\\ue089'),\n    HTML5(\"typ-html5\", '\\ue08b'),\n    IMAGE(\"typ-image\", '\\ue08d'),\n    IMAGE_OUTLINE(\"typ-image-outline\", '\\ue08c'),\n    INFINITY(\"typ-infinity\", '\\ue08f'),\n    INFINITY_OUTLINE(\"typ-infinity-outline\", '\\ue08e'),\n    INFO(\"typ-info\", '\\ue093'),\n    INFO_LARGE(\"typ-info-large\", '\\ue091'),\n    INFO_LARGE_OUTLINE(\"typ-info-large-outline\", '\\ue090'),\n    INFO_OUTLINE(\"typ-info-outline\", '\\ue092'),\n    INPUT_CHECKED(\"typ-input-checked\", '\\ue095'),\n    INPUT_CHECKED_OUTLINE(\"typ-input-checked-outline\", '\\ue094'),\n    KEY(\"typ-key\", '\\ue097'),\n    KEYBOARD(\"typ-keyboard\", '\\ue098'),\n    KEY_OUTLINE(\"typ-key-outline\", '\\ue096'),\n    LEAF(\"typ-leaf\", '\\ue099'),\n    LIGHTBULB(\"typ-lightbulb\", '\\ue09a'),\n    LINK(\"typ-link\", '\\ue09c'),\n    LINK_OUTLINE(\"typ-link-outline\", '\\ue09b'),\n    LOCATION(\"typ-location\", '\\ue0a0'),\n    LOCATION_ARROW(\"typ-location-arrow\", '\\ue09e'),\n    LOCATION_ARROW_OUTLINE(\"typ-location-arrow-outline\", '\\ue09d'),\n    LOCATION_OUTLINE(\"typ-location-outline\", '\\ue09f'),\n    LOCK_CLOSED(\"typ-lock-closed\", '\\ue0a2'),\n    LOCK_CLOSED_OUTLINE(\"typ-lock-closed-outline\", '\\ue0a1'),\n    LOCK_OPEN(\"typ-lock-open\", '\\ue0a4'),\n    LOCK_OPEN_OUTLINE(\"typ-lock-open-outline\", '\\ue0a3'),\n    MAIL(\"typ-mail\", '\\ue0a5'),\n    MAP(\"typ-map\", '\\ue0a6'),\n    MEDIA_EJECT(\"typ-media-eject\", '\\ue0a8'),\n    MEDIA_EJECT_OUTLINE(\"typ-media-eject-outline\", '\\ue0a7'),\n    MEDIA_FAST_FORWARD(\"typ-media-fast-forward\", '\\ue0aa'),\n    MEDIA_FAST_FORWARD_OUTLINE(\"typ-media-fast-forward-outline\", '\\ue0a9'),\n    MEDIA_PAUSE(\"typ-media-pause\", '\\ue0ac'),\n    MEDIA_PAUSE_OUTLINE(\"typ-media-pause-outline\", '\\ue0ab'),\n    MEDIA_PLAY(\"typ-media-play\", '\\ue0b0'),\n    MEDIA_PLAY_OUTLINE(\"typ-media-play-outline\", '\\ue0ad'),\n    MEDIA_PLAY_REVERSE(\"typ-media-play-reverse\", '\\ue0af'),\n    MEDIA_PLAY_REVERSE_OUTLINE(\"typ-media-play-reverse-outline\", '\\ue0ae'),\n    MEDIA_RECORD(\"typ-media-record\", '\\ue0b2'),\n    MEDIA_RECORD_OUTLINE(\"typ-media-record-outline\", '\\ue0b1'),\n    MEDIA_REWIND(\"typ-media-rewind\", '\\ue0b4'),\n    MEDIA_REWIND_OUTLINE(\"typ-media-rewind-outline\", '\\ue0b3'),\n    MEDIA_STOP(\"typ-media-stop\", '\\ue0b6'),\n    MEDIA_STOP_OUTLINE(\"typ-media-stop-outline\", '\\ue0b5'),\n    MESSAGE(\"typ-message\", '\\ue0b8'),\n    MESSAGES(\"typ-messages\", '\\ue0b9'),\n    MESSAGE_TYPING(\"typ-message-typing\", '\\ue0b7'),\n    MICROPHONE(\"typ-microphone\", '\\ue0bb'),\n    MICROPHONE_OUTLINE(\"typ-microphone-outline\", '\\ue0ba'),\n    MINUS(\"typ-minus\", '\\ue0bd'),\n    MINUS_OUTLINE(\"typ-minus-outline\", '\\ue0bc'),\n    MORTAR_BOARD(\"typ-mortar-board\", '\\ue0be'),\n    NEWS(\"typ-news\", '\\ue0bf'),\n    NOTES(\"typ-notes\", '\\ue0c1'),\n    NOTES_OUTLINE(\"typ-notes-outline\", '\\ue0c0'),\n    PEN(\"typ-pen\", '\\ue0c2'),\n    PENCIL(\"typ-pencil\", '\\ue0c3'),\n    PHONE(\"typ-phone\", '\\ue0c5'),\n    PHONE_OUTLINE(\"typ-phone-outline\", '\\ue0c4'),\n    PI(\"typ-pi\", '\\ue0c7'),\n    PIN(\"typ-pin\", '\\ue0c9'),\n    PIN_OUTLINE(\"typ-pin-outline\", '\\ue0c8'),\n    PIPETTE(\"typ-pipette\", '\\ue0ca'),\n    PI_OUTLINE(\"typ-pi-outline\", '\\ue0c6'),\n    PLANE(\"typ-plane\", '\\ue0cc'),\n    PLANE_OUTLINE(\"typ-plane-outline\", '\\ue0cb'),\n    PLUG(\"typ-plug\", '\\ue0cd'),\n    PLUS(\"typ-plus\", '\\ue0cf'),\n    PLUS_OUTLINE(\"typ-plus-outline\", '\\ue0ce'),\n    POINT_OF_INTEREST(\"typ-point-of-interest\", '\\ue0d1'),\n    POINT_OF_INTEREST_OUTLINE(\"typ-point-of-interest-outline\", '\\ue0d0'),\n    POWER(\"typ-power\", '\\ue0d3'),\n    POWER_OUTLINE(\"typ-power-outline\", '\\ue0d2'),\n    PRINTER(\"typ-printer\", '\\ue0d4'),\n    PUZZLE(\"typ-puzzle\", '\\ue0d6'),\n    PUZZLE_OUTLINE(\"typ-puzzle-outline\", '\\ue0d5'),\n    RADAR(\"typ-radar\", '\\ue0d8'),\n    RADAR_OUTLINE(\"typ-radar-outline\", '\\ue0d7'),\n    REFRESH(\"typ-refresh\", '\\ue0da'),\n    REFRESH_OUTLINE(\"typ-refresh-outline\", '\\ue0d9'),\n    RSS(\"typ-rss\", '\\ue0dc'),\n    RSS_OUTLINE(\"typ-rss-outline\", '\\ue0db'),\n    SCISSORS(\"typ-scissors\", '\\ue0de'),\n    SCISSORS_OUTLINE(\"typ-scissors-outline\", '\\ue0dd'),\n    SHOPPING_BAG(\"typ-shopping-bag\", '\\ue0df'),\n    SHOPPING_CART(\"typ-shopping-cart\", '\\ue0e0'),\n    SOCIAL_AT_CIRCULAR(\"typ-social-at-circular\", '\\ue0e1'),\n    SOCIAL_DRIBBBLE(\"typ-social-dribbble\", '\\ue0e3'),\n    SOCIAL_DRIBBBLE_CIRCULAR(\"typ-social-dribbble-circular\", '\\ue0e2'),\n    SOCIAL_FACEBOOK(\"typ-social-facebook\", '\\ue0e5'),\n    SOCIAL_FACEBOOK_CIRCULAR(\"typ-social-facebook-circular\", '\\ue0e4'),\n    SOCIAL_FLICKR(\"typ-social-flickr\", '\\ue0e7'),\n    SOCIAL_FLICKR_CIRCULAR(\"typ-social-flickr-circular\", '\\ue0e6'),\n    SOCIAL_GITHUB(\"typ-social-github\", '\\ue0e9'),\n    SOCIAL_GITHUB_CIRCULAR(\"typ-social-github-circular\", '\\ue0e8'),\n    SOCIAL_GOOGLE_PLUS(\"typ-social-google-plus\", '\\ue0eb'),\n    SOCIAL_GOOGLE_PLUS_CIRCULAR(\"typ-social-google-plus-circular\", '\\ue0ea'),\n    SOCIAL_INSTAGRAM(\"typ-social-instagram\", '\\ue0ed'),\n    SOCIAL_INSTAGRAM_CIRCULAR(\"typ-social-instagram-circular\", '\\ue0ec'),\n    SOCIAL_LAST_FM(\"typ-social-last-fm\", '\\ue0ef'),\n    SOCIAL_LAST_FM_CIRCULAR(\"typ-social-last-fm-circular\", '\\ue0ee'),\n    SOCIAL_LINKEDIN(\"typ-social-linkedin\", '\\ue0f1'),\n    SOCIAL_LINKEDIN_CIRCULAR(\"typ-social-linkedin-circular\", '\\ue0f0'),\n    SOCIAL_PINTEREST(\"typ-social-pinterest\", '\\ue0f3'),\n    SOCIAL_PINTEREST_CIRCULAR(\"typ-social-pinterest-circular\", '\\ue0f2'),\n    SOCIAL_SKYPE(\"typ-social-skype\", '\\ue0f5'),\n    SOCIAL_SKYPE_OUTLINE(\"typ-social-skype-outline\", '\\ue0f4'),\n    SOCIAL_TUMBLER(\"typ-social-tumbler\", '\\ue0f7'),\n    SOCIAL_TUMBLER_CIRCULAR(\"typ-social-tumbler-circular\", '\\ue0f6'),\n    SOCIAL_TWITTER(\"typ-social-twitter\", '\\ue0f9'),\n    SOCIAL_TWITTER_CIRCULAR(\"typ-social-twitter-circular\", '\\ue0f8'),\n    SOCIAL_VIMEO(\"typ-social-vimeo\", '\\ue0fb'),\n    SOCIAL_VIMEO_CIRCULAR(\"typ-social-vimeo-circular\", '\\ue0fa'),\n    SOCIAL_YOUTUBE(\"typ-social-youtube\", '\\ue0fd'),\n    SOCIAL_YOUTUBE_CIRCULAR(\"typ-social-youtube-circular\", '\\ue0fc'),\n    SORT_ALPHABETICALLY(\"typ-sort-alphabetically\", '\\ue0ff'),\n    SORT_ALPHABETICALLY_OUTLINE(\"typ-sort-alphabetically-outline\", '\\ue0fe'),\n    SORT_NUMERICALLY(\"typ-sort-numerically\", '\\ue101'),\n    SORT_NUMERICALLY_OUTLINE(\"typ-sort-numerically-outline\", '\\ue100'),\n    SPANNER(\"typ-spanner\", '\\ue103'),\n    SPANNER_OUTLINE(\"typ-spanner-outline\", '\\ue102'),\n    SPIRAL(\"typ-spiral\", '\\ue104'),\n    STAR(\"typ-star\", '\\ue109'),\n    STARBURST(\"typ-starburst\", '\\ue10b'),\n    STARBURST_OUTLINE(\"typ-starburst-outline\", '\\ue10a'),\n    STAR_FULL_OUTLINE(\"typ-star-full-outline\", '\\ue105'),\n    STAR_HALF(\"typ-star-half\", '\\ue107'),\n    STAR_HALF_OUTLINE(\"typ-star-half-outline\", '\\ue106'),\n    STAR_OUTLINE(\"typ-star-outline\", '\\ue108'),\n    STOPWATCH(\"typ-stopwatch\", '\\ue10c'),\n    SUPPORT(\"typ-support\", '\\ue10d'),\n    TABS_OUTLINE(\"typ-tabs-outline\", '\\ue10e'),\n    TAG(\"typ-tag\", '\\ue10f'),\n    TAGS(\"typ-tags\", '\\ue110'),\n    THERMOMETER(\"typ-thermometer\", '\\ue119'),\n    THUMBS_DOWN(\"typ-thumbs-down\", '\\ue11a'),\n    THUMBS_OK(\"typ-thumbs-ok\", '\\ue11b'),\n    THUMBS_UP(\"typ-thumbs-up\", '\\ue11c'),\n    TH_LARGE(\"typ-th-large\", '\\ue112'),\n    TH_LARGE_OUTLINE(\"typ-th-large-outline\", '\\ue111'),\n    TH_LIST(\"typ-th-list\", '\\ue114'),\n    TH_LIST_OUTLINE(\"typ-th-list-outline\", '\\ue113'),\n    TH_MENU(\"typ-th-menu\", '\\ue116'),\n    TH_MENU_OUTLINE(\"typ-th-menu-outline\", '\\ue115'),\n    TH_SMALL(\"typ-th-small\", '\\ue118'),\n    TH_SMALL_OUTLINE(\"typ-th-small-outline\", '\\ue117'),\n    TICK(\"typ-tick\", '\\ue11e'),\n    TICKET(\"typ-ticket\", '\\ue11f'),\n    TICK_OUTLINE(\"typ-tick-outline\", '\\ue11d'),\n    TIME(\"typ-time\", '\\ue120'),\n    TIMES(\"typ-times\", '\\ue122'),\n    TIMES_OUTLINE(\"typ-times-outline\", '\\ue121'),\n    TRASH(\"typ-trash\", '\\ue123'),\n    TREE(\"typ-tree\", '\\ue124'),\n    UPLOAD(\"typ-upload\", '\\ue126'),\n    UPLOAD_OUTLINE(\"typ-upload-outline\", '\\ue125'),\n    USER(\"typ-user\", '\\ue12c'),\n    USER_ADD(\"typ-user-add\", '\\ue128'),\n    USER_ADD_OUTLINE(\"typ-user-add-outline\", '\\ue127'),\n    USER_DELETE(\"typ-user-delete\", '\\ue12a'),\n    USER_DELETE_OUTLINE(\"typ-user-delete-outline\", '\\ue129'),\n    USER_OUTLINE(\"typ-user-outline\", '\\ue12b'),\n    VENDOR_ANDROID(\"typ-vendor-android\", '\\ue12d'),\n    VENDOR_APPLE(\"typ-vendor-apple\", '\\ue12e'),\n    VENDOR_MICROSOFT(\"typ-vendor-microsoft\", '\\ue12f'),\n    VIDEO(\"typ-video\", '\\ue131'),\n    VIDEO_OUTLINE(\"typ-video-outline\", '\\ue130'),\n    VOLUME(\"typ-volume\", '\\ue135'),\n    VOLUME_DOWN(\"typ-volume-down\", '\\ue132'),\n    VOLUME_MUTE(\"typ-volume-mute\", '\\ue133'),\n    VOLUME_UP(\"typ-volume-up\", '\\ue134'),\n    WARNING(\"typ-warning\", '\\ue137'),\n    WARNING_OUTLINE(\"typ-warning-outline\", '\\ue136'),\n    WATCH(\"typ-watch\", '\\ue138'),\n    WAVES(\"typ-waves\", '\\ue13a'),\n    WAVES_OUTLINE(\"typ-waves-outline\", '\\ue139'),\n    WEATHER_CLOUDY(\"typ-weather-cloudy\", '\\ue13b'),\n    WEATHER_DOWNPOUR(\"typ-weather-downpour\", '\\ue13c'),\n    WEATHER_NIGHT(\"typ-weather-night\", '\\ue13d'),\n    WEATHER_PARTLY_SUNNY(\"typ-weather-partly-sunny\", '\\ue13e'),\n    WEATHER_SHOWER(\"typ-weather-shower\", '\\ue13f'),\n    WEATHER_SNOW(\"typ-weather-snow\", '\\ue140'),\n    WEATHER_STORMY(\"typ-weather-stormy\", '\\ue141'),\n    WEATHER_SUNNY(\"typ-weather-sunny\", '\\ue142'),\n    WEATHER_WINDY(\"typ-weather-windy\", '\\ue144'),\n    WEATHER_WINDY_CLOUDY(\"typ-weather-windy-cloudy\", '\\ue143'),\n    WINE(\"typ-wine\", '\\ue147'),\n    WI_FI(\"typ-wi-fi\", '\\ue146'),\n    WI_FI_OUTLINE(\"typ-wi-fi-outline\", '\\ue145'),\n    WORLD(\"typ-world\", '\\ue149'),\n    WORLD_OUTLINE(\"typ-world-outline\", '\\ue148'),\n    ZOOM(\"typ-zoom\", '\\ue14f'),\n    ZOOM_IN(\"typ-zoom-in\", '\\ue14b'),\n    ZOOM_IN_OUTLINE(\"typ-zoom-in-outline\", '\\ue14a'),\n    ZOOM_OUT(\"typ-zoom-out\", '\\ue14d'),\n    ZOOM_OUTLINE(\"typ-zoom-outline\", '\\ue14e'),\n    ZOOM_OUT_OUTLINE(\"typ-zoom-out-outline\", '\\ue14c');\n\n    public static Typicons findByDescription(String description) {\n        for (Typicons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Typicons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-typicons-pack/src/main/java/org/kordamp/ikonli/typicons/TypiconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.typicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class TypiconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/typicons/2.0.7/fonts/typicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"typ-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Typicons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Typicons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-typicons-pack/src/main/java/org/kordamp/ikonli/typicons/TypiconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.typicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class TypiconsIkonProvider implements IkonProvider<Typicons> {\n    @Override\n    public Class<Typicons> getIkon() {\n        return Typicons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-typicons-pack/src/main/resources/META-INF/resources/typicons/2.0.7/LICENCE.md",
    "content": "Copyright (c) 2014, Stephen Hutchings (http://www.s-ings.com/).\n\nThis Font Software is licensed under the SIL Open Font License, Version 1.1.\n\nThis license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL\n\nSIL OPEN FONT LICENSE\n\nVersion 1.1 - 26 February 2007\n\nPREAMBLE\nThe goals of the Open Font License (OFL) are to stimulate worldwide\ndevelopment of collaborative font projects, to support the font creation\nefforts of academic and linguistic communities, and to provide a free and\nopen framework in which fonts may be shared and improved in partnership\nwith others.\n\nThe OFL allows the licensed fonts to be used, studied, modified and\nredistributed freely as long as they are not sold by themselves. The\nfonts, including any derivative works, can be bundled, embedded,\nredistributed and/or sold with any software provided that any reserved\nnames are not used by derivative works. The fonts and derivatives,\nhowever, cannot be released under any other type of license. The\nrequirement for fonts to remain under this license does not apply\nto any document created using the fonts or their derivatives.\n\nDEFINITIONS\n\"Font Software\" refers to the set of files released by the Copyright\nHolder(s) under this license and clearly marked as such. This may\ninclude source files, build scripts and documentation.\n\n\"Reserved Font Name\" refers to any names specified as such after the\ncopyright statement(s).\n\n\"Original Version\" refers to the collection of Font Software components as\ndistributed by the Copyright Holder(s).\n\n\"Modified Version\" refers to any derivative made by adding to, deleting,\nor substituting — in part or in whole — any of the components of the\nOriginal Version, by changing formats or by porting the Font Software to a\nnew environment.\n\n\"Author\" refers to any designer, engineer, programmer, technical\nwriter or other person who contributed to the Font Software.\n\nPERMISSION & CONDITIONS\nPermission is hereby granted, free of charge, to any person obtaining\na copy of the Font Software, to use, study, copy, merge, embed, modify,\nredistribute, and sell modified and unmodified copies of the Font\nSoftware, subject to the following conditions:\n\n1) Neither the Font Software nor any of its individual components,\nin Original or Modified Versions, may be sold by itself.\n\n2) Original or Modified Versions of the Font Software may be bundled,\nredistributed and/or sold with any software, provided that each copy\ncontains the above copyright notice and this license. These can be\nincluded either as stand-alone text files, human-readable headers or\nin the appropriate machine-readable metadata fields within text or\nbinary files as long as those fields can be easily viewed by the user.\n\n3) No Modified Version of the Font Software may use the Reserved Font\nName(s) unless explicit written permission is granted by the corresponding\nCopyright Holder. This restriction only applies to the primary font name as\npresented to the users.\n\n4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font\nSoftware shall not be used to promote, endorse or advertise any\nModified Version, except to acknowledge the contribution(s) of the\nCopyright Holder(s) and the Author(s) or with their explicit written\npermission.\n\n5) The Font Software, modified or unmodified, in part or in whole,\nmust be distributed entirely under this license, and must not be\ndistributed under any other license. The requirement for fonts to\nremain under this license does not apply to any document created\nusing the Font Software.\n\nTERMINATION\nThis license becomes null and void if any of the above conditions are\nnot met.\n\nDISCLAIMER\nTHE FONT SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT\nOF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE\nCOPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,\nINCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL\nDAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING\nFROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM\nOTHER DEALINGS IN THE FONT SOFTWARE.\n"
  },
  {
    "path": "icon-packs/ikonli-typicons-pack/src/main/resources/META-INF/resources/typicons/2.0.7/css/typicons.css",
    "content": "/**\n * Copyright 2014-2015 the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n@charset 'UTF-8';\n \n/* @FONT-FACE loads font into browser */\n@font-face {\n  font-family: 'typicons';\n  font-weight: normal;\n  font-style: normal;\n  src: url('../fonts/typicons.eot');\n  src: url('../fonts/typicons.eot?#iefix') format('embedded-opentype'),\n       url('../fonts/typicons.woff') format('woff'),\n       url('../fonts/typicons.ttf') format('truetype'),\n       url('../fonts/typicons.svg#typicons') format('svg');\n}\n \n/* :before psuedo-selector inserts and styles icon */\n.typcn:before {\n  font-family: 'typicons';\n  font-style: normal;\n  font-weight: normal;\n  speak: none;\n  display: inline-block;\n  text-decoration: inherit;\n  width: 1em;\n  height: 1em;\n  font-size: 1em;\n  text-align: center;\n  -webkit-font-smoothing: antialiased;\n  font-smoothing: antialiased;\n  text-rendering: optimizeLegibility;\n}\n \n/* Code for individual icons */ \n.typcn-adjust-brightness:before { \n  content: '\\e000'; /* '' */\n} \n.typcn-adjust-contrast:before { \n  content: '\\e001'; /* '' */\n} \n.typcn-anchor-outline:before { \n  content: '\\e002'; /* '' */\n} \n.typcn-anchor:before { \n  content: '\\e003'; /* '' */\n} \n.typcn-archive:before { \n  content: '\\e004'; /* '' */\n} \n.typcn-arrow-back-outline:before { \n  content: '\\e005'; /* '' */\n} \n.typcn-arrow-back:before { \n  content: '\\e006'; /* '' */\n} \n.typcn-arrow-down-outline:before { \n  content: '\\e007'; /* '' */\n} \n.typcn-arrow-down-thick:before { \n  content: '\\e008'; /* '' */\n} \n.typcn-arrow-down:before { \n  content: '\\e009'; /* '' */\n} \n.typcn-arrow-forward-outline:before { \n  content: '\\e00a'; /* '' */\n} \n.typcn-arrow-forward:before { \n  content: '\\e00b'; /* '' */\n} \n.typcn-arrow-left-outline:before { \n  content: '\\e00c'; /* '' */\n} \n.typcn-arrow-left-thick:before { \n  content: '\\e00d'; /* '' */\n} \n.typcn-arrow-left:before { \n  content: '\\e00e'; /* '' */\n} \n.typcn-arrow-loop-outline:before { \n  content: '\\e00f'; /* '' */\n} \n.typcn-arrow-loop:before { \n  content: '\\e010'; /* '' */\n} \n.typcn-arrow-maximise-outline:before { \n  content: '\\e011'; /* '' */\n} \n.typcn-arrow-maximise:before { \n  content: '\\e012'; /* '' */\n} \n.typcn-arrow-minimise-outline:before { \n  content: '\\e013'; /* '' */\n} \n.typcn-arrow-minimise:before { \n  content: '\\e014'; /* '' */\n} \n.typcn-arrow-move-outline:before { \n  content: '\\e015'; /* '' */\n} \n.typcn-arrow-move:before { \n  content: '\\e016'; /* '' */\n} \n.typcn-arrow-repeat-outline:before { \n  content: '\\e017'; /* '' */\n} \n.typcn-arrow-repeat:before { \n  content: '\\e018'; /* '' */\n} \n.typcn-arrow-right-outline:before { \n  content: '\\e019'; /* '' */\n} \n.typcn-arrow-right-thick:before { \n  content: '\\e01a'; /* '' */\n} \n.typcn-arrow-right:before { \n  content: '\\e01b'; /* '' */\n} \n.typcn-arrow-shuffle:before { \n  content: '\\e01c'; /* '' */\n} \n.typcn-arrow-sorted-down:before { \n  content: '\\e01d'; /* '' */\n} \n.typcn-arrow-sorted-up:before { \n  content: '\\e01e'; /* '' */\n} \n.typcn-arrow-sync-outline:before { \n  content: '\\e01f'; /* '' */\n} \n.typcn-arrow-sync:before { \n  content: '\\e020'; /* '' */\n} \n.typcn-arrow-unsorted:before { \n  content: '\\e021'; /* '' */\n} \n.typcn-arrow-up-outline:before { \n  content: '\\e022'; /* '' */\n} \n.typcn-arrow-up-thick:before { \n  content: '\\e023'; /* '' */\n} \n.typcn-arrow-up:before { \n  content: '\\e024'; /* '' */\n} \n.typcn-at:before { \n  content: '\\e025'; /* '' */\n} \n.typcn-attachment-outline:before { \n  content: '\\e026'; /* '' */\n} \n.typcn-attachment:before { \n  content: '\\e027'; /* '' */\n} \n.typcn-backspace-outline:before { \n  content: '\\e028'; /* '' */\n} \n.typcn-backspace:before { \n  content: '\\e029'; /* '' */\n} \n.typcn-battery-charge:before { \n  content: '\\e02a'; /* '' */\n} \n.typcn-battery-full:before { \n  content: '\\e02b'; /* '' */\n} \n.typcn-battery-high:before { \n  content: '\\e02c'; /* '' */\n} \n.typcn-battery-low:before { \n  content: '\\e02d'; /* '' */\n} \n.typcn-battery-mid:before { \n  content: '\\e02e'; /* '' */\n} \n.typcn-beaker:before { \n  content: '\\e02f'; /* '' */\n} \n.typcn-beer:before { \n  content: '\\e030'; /* '' */\n} \n.typcn-bell:before { \n  content: '\\e031'; /* '' */\n} \n.typcn-book:before { \n  content: '\\e032'; /* '' */\n} \n.typcn-bookmark:before { \n  content: '\\e033'; /* '' */\n} \n.typcn-briefcase:before { \n  content: '\\e034'; /* '' */\n} \n.typcn-brush:before { \n  content: '\\e035'; /* '' */\n} \n.typcn-business-card:before { \n  content: '\\e036'; /* '' */\n} \n.typcn-calculator:before { \n  content: '\\e037'; /* '' */\n} \n.typcn-calendar-outline:before { \n  content: '\\e038'; /* '' */\n} \n.typcn-calendar:before { \n  content: '\\e039'; /* '' */\n} \n.typcn-camera-outline:before { \n  content: '\\e03a'; /* '' */\n} \n.typcn-camera:before { \n  content: '\\e03b'; /* '' */\n} \n.typcn-cancel-outline:before { \n  content: '\\e03c'; /* '' */\n} \n.typcn-cancel:before { \n  content: '\\e03d'; /* '' */\n} \n.typcn-chart-area-outline:before { \n  content: '\\e03e'; /* '' */\n} \n.typcn-chart-area:before { \n  content: '\\e03f'; /* '' */\n} \n.typcn-chart-bar-outline:before { \n  content: '\\e040'; /* '' */\n} \n.typcn-chart-bar:before { \n  content: '\\e041'; /* '' */\n} \n.typcn-chart-line-outline:before { \n  content: '\\e042'; /* '' */\n} \n.typcn-chart-line:before { \n  content: '\\e043'; /* '' */\n} \n.typcn-chart-pie-outline:before { \n  content: '\\e044'; /* '' */\n} \n.typcn-chart-pie:before { \n  content: '\\e045'; /* '' */\n} \n.typcn-chevron-left-outline:before { \n  content: '\\e046'; /* '' */\n} \n.typcn-chevron-left:before { \n  content: '\\e047'; /* '' */\n} \n.typcn-chevron-right-outline:before { \n  content: '\\e048'; /* '' */\n} \n.typcn-chevron-right:before { \n  content: '\\e049'; /* '' */\n} \n.typcn-clipboard:before { \n  content: '\\e04a'; /* '' */\n} \n.typcn-cloud-storage:before { \n  content: '\\e04b'; /* '' */\n} \n.typcn-cloud-storage-outline:before { \n  content: '\\e054'; /* '' */\n} \n.typcn-code-outline:before { \n  content: '\\e04c'; /* '' */\n} \n.typcn-code:before { \n  content: '\\e04d'; /* '' */\n} \n.typcn-coffee:before { \n  content: '\\e04e'; /* '' */\n} \n.typcn-cog-outline:before { \n  content: '\\e04f'; /* '' */\n} \n.typcn-cog:before { \n  content: '\\e050'; /* '' */\n} \n.typcn-compass:before { \n  content: '\\e051'; /* '' */\n} \n.typcn-contacts:before { \n  content: '\\e052'; /* '' */\n} \n.typcn-credit-card:before { \n  content: '\\e053'; /* '' */\n} \n.typcn-css3:before { \n  content: '\\e055'; /* '' */\n} \n.typcn-database:before { \n  content: '\\e056'; /* '' */\n} \n.typcn-delete-outline:before { \n  content: '\\e057'; /* '' */\n} \n.typcn-delete:before { \n  content: '\\e058'; /* '' */\n} \n.typcn-device-desktop:before { \n  content: '\\e059'; /* '' */\n} \n.typcn-device-laptop:before { \n  content: '\\e05a'; /* '' */\n} \n.typcn-device-phone:before { \n  content: '\\e05b'; /* '' */\n} \n.typcn-device-tablet:before { \n  content: '\\e05c'; /* '' */\n} \n.typcn-directions:before { \n  content: '\\e05d'; /* '' */\n} \n.typcn-divide-outline:before { \n  content: '\\e05e'; /* '' */\n} \n.typcn-divide:before { \n  content: '\\e05f'; /* '' */\n} \n.typcn-document-add:before { \n  content: '\\e060'; /* '' */\n} \n.typcn-document-delete:before { \n  content: '\\e061'; /* '' */\n} \n.typcn-document-text:before { \n  content: '\\e062'; /* '' */\n} \n.typcn-document:before { \n  content: '\\e063'; /* '' */\n} \n.typcn-download-outline:before { \n  content: '\\e064'; /* '' */\n} \n.typcn-download:before { \n  content: '\\e065'; /* '' */\n} \n.typcn-dropbox:before { \n  content: '\\e066'; /* '' */\n} \n.typcn-edit:before { \n  content: '\\e067'; /* '' */\n} \n.typcn-eject-outline:before { \n  content: '\\e068'; /* '' */\n} \n.typcn-eject:before { \n  content: '\\e069'; /* '' */\n} \n.typcn-equals-outline:before { \n  content: '\\e06a'; /* '' */\n} \n.typcn-equals:before { \n  content: '\\e06b'; /* '' */\n} \n.typcn-export-outline:before { \n  content: '\\e06c'; /* '' */\n} \n.typcn-export:before { \n  content: '\\e06d'; /* '' */\n} \n.typcn-eye-outline:before { \n  content: '\\e06e'; /* '' */\n} \n.typcn-eye:before { \n  content: '\\e06f'; /* '' */\n} \n.typcn-feather:before { \n  content: '\\e070'; /* '' */\n} \n.typcn-film:before { \n  content: '\\e071'; /* '' */\n} \n.typcn-filter:before { \n  content: '\\e072'; /* '' */\n} \n.typcn-flag-outline:before { \n  content: '\\e073'; /* '' */\n} \n.typcn-flag:before { \n  content: '\\e074'; /* '' */\n} \n.typcn-flash-outline:before { \n  content: '\\e075'; /* '' */\n} \n.typcn-flash:before { \n  content: '\\e076'; /* '' */\n} \n.typcn-flow-children:before { \n  content: '\\e077'; /* '' */\n} \n.typcn-flow-merge:before { \n  content: '\\e078'; /* '' */\n} \n.typcn-flow-parallel:before { \n  content: '\\e079'; /* '' */\n} \n.typcn-flow-switch:before { \n  content: '\\e07a'; /* '' */\n} \n.typcn-folder-add:before { \n  content: '\\e07b'; /* '' */\n} \n.typcn-folder-delete:before { \n  content: '\\e07c'; /* '' */\n} \n.typcn-folder-open:before { \n  content: '\\e07d'; /* '' */\n} \n.typcn-folder:before { \n  content: '\\e07e'; /* '' */\n} \n.typcn-gift:before { \n  content: '\\e07f'; /* '' */\n} \n.typcn-globe-outline:before { \n  content: '\\e080'; /* '' */\n} \n.typcn-globe:before { \n  content: '\\e081'; /* '' */\n} \n.typcn-group-outline:before { \n  content: '\\e082'; /* '' */\n} \n.typcn-group:before { \n  content: '\\e083'; /* '' */\n} \n.typcn-headphones:before { \n  content: '\\e084'; /* '' */\n} \n.typcn-heart-full-outline:before { \n  content: '\\e085'; /* '' */\n} \n.typcn-heart-half-outline:before { \n  content: '\\e086'; /* '' */\n} \n.typcn-heart-outline:before { \n  content: '\\e087'; /* '' */\n} \n.typcn-heart:before { \n  content: '\\e088'; /* '' */\n} \n.typcn-home-outline:before { \n  content: '\\e089'; /* '' */\n} \n.typcn-home:before { \n  content: '\\e08a'; /* '' */\n} \n.typcn-html5:before { \n  content: '\\e08b'; /* '' */\n} \n.typcn-image-outline:before { \n  content: '\\e08c'; /* '' */\n} \n.typcn-image:before { \n  content: '\\e08d'; /* '' */\n} \n.typcn-infinity-outline:before { \n  content: '\\e08e'; /* '' */\n} \n.typcn-infinity:before { \n  content: '\\e08f'; /* '' */\n} \n.typcn-info-large-outline:before { \n  content: '\\e090'; /* '' */\n} \n.typcn-info-large:before { \n  content: '\\e091'; /* '' */\n} \n.typcn-info-outline:before { \n  content: '\\e092'; /* '' */\n} \n.typcn-info:before { \n  content: '\\e093'; /* '' */\n} \n.typcn-input-checked-outline:before { \n  content: '\\e094'; /* '' */\n} \n.typcn-input-checked:before { \n  content: '\\e095'; /* '' */\n} \n.typcn-key-outline:before { \n  content: '\\e096'; /* '' */\n} \n.typcn-key:before { \n  content: '\\e097'; /* '' */\n} \n.typcn-keyboard:before { \n  content: '\\e098'; /* '' */\n} \n.typcn-leaf:before { \n  content: '\\e099'; /* '' */\n} \n.typcn-lightbulb:before { \n  content: '\\e09a'; /* '' */\n} \n.typcn-link-outline:before { \n  content: '\\e09b'; /* '' */\n} \n.typcn-link:before { \n  content: '\\e09c'; /* '' */\n} \n.typcn-location-arrow-outline:before { \n  content: '\\e09d'; /* '' */\n} \n.typcn-location-arrow:before { \n  content: '\\e09e'; /* '' */\n} \n.typcn-location-outline:before { \n  content: '\\e09f'; /* '' */\n} \n.typcn-location:before { \n  content: '\\e0a0'; /* '' */\n} \n.typcn-lock-closed-outline:before { \n  content: '\\e0a1'; /* '' */\n} \n.typcn-lock-closed:before { \n  content: '\\e0a2'; /* '' */\n} \n.typcn-lock-open-outline:before { \n  content: '\\e0a3'; /* '' */\n} \n.typcn-lock-open:before { \n  content: '\\e0a4'; /* '' */\n} \n.typcn-mail:before { \n  content: '\\e0a5'; /* '' */\n} \n.typcn-map:before { \n  content: '\\e0a6'; /* '' */\n} \n.typcn-media-eject-outline:before { \n  content: '\\e0a7'; /* '' */\n} \n.typcn-media-eject:before { \n  content: '\\e0a8'; /* '' */\n} \n.typcn-media-fast-forward-outline:before { \n  content: '\\e0a9'; /* '' */\n} \n.typcn-media-fast-forward:before { \n  content: '\\e0aa'; /* '' */\n} \n.typcn-media-pause-outline:before { \n  content: '\\e0ab'; /* '' */\n} \n.typcn-media-pause:before { \n  content: '\\e0ac'; /* '' */\n} \n.typcn-media-play-outline:before { \n  content: '\\e0ad'; /* '' */\n} \n.typcn-media-play-reverse-outline:before { \n  content: '\\e0ae'; /* '' */\n} \n.typcn-media-play-reverse:before { \n  content: '\\e0af'; /* '' */\n} \n.typcn-media-play:before { \n  content: '\\e0b0'; /* '' */\n} \n.typcn-media-record-outline:before { \n  content: '\\e0b1'; /* '' */\n} \n.typcn-media-record:before { \n  content: '\\e0b2'; /* '' */\n} \n.typcn-media-rewind-outline:before { \n  content: '\\e0b3'; /* '' */\n} \n.typcn-media-rewind:before { \n  content: '\\e0b4'; /* '' */\n} \n.typcn-media-stop-outline:before { \n  content: '\\e0b5'; /* '' */\n} \n.typcn-media-stop:before { \n  content: '\\e0b6'; /* '' */\n} \n.typcn-message-typing:before { \n  content: '\\e0b7'; /* '' */\n} \n.typcn-message:before { \n  content: '\\e0b8'; /* '' */\n} \n.typcn-messages:before { \n  content: '\\e0b9'; /* '' */\n} \n.typcn-microphone-outline:before { \n  content: '\\e0ba'; /* '' */\n} \n.typcn-microphone:before { \n  content: '\\e0bb'; /* '' */\n} \n.typcn-minus-outline:before { \n  content: '\\e0bc'; /* '' */\n} \n.typcn-minus:before { \n  content: '\\e0bd'; /* '' */\n} \n.typcn-mortar-board:before { \n  content: '\\e0be'; /* '' */\n} \n.typcn-news:before { \n  content: '\\e0bf'; /* '' */\n} \n.typcn-notes-outline:before { \n  content: '\\e0c0'; /* '' */\n} \n.typcn-notes:before { \n  content: '\\e0c1'; /* '' */\n} \n.typcn-pen:before { \n  content: '\\e0c2'; /* '' */\n} \n.typcn-pencil:before { \n  content: '\\e0c3'; /* '' */\n} \n.typcn-phone-outline:before { \n  content: '\\e0c4'; /* '' */\n} \n.typcn-phone:before { \n  content: '\\e0c5'; /* '' */\n} \n.typcn-pi-outline:before { \n  content: '\\e0c6'; /* '' */\n} \n.typcn-pi:before { \n  content: '\\e0c7'; /* '' */\n} \n.typcn-pin-outline:before { \n  content: '\\e0c8'; /* '' */\n} \n.typcn-pin:before { \n  content: '\\e0c9'; /* '' */\n} \n.typcn-pipette:before { \n  content: '\\e0ca'; /* '' */\n} \n.typcn-plane-outline:before { \n  content: '\\e0cb'; /* '' */\n} \n.typcn-plane:before { \n  content: '\\e0cc'; /* '' */\n} \n.typcn-plug:before { \n  content: '\\e0cd'; /* '' */\n} \n.typcn-plus-outline:before { \n  content: '\\e0ce'; /* '' */\n} \n.typcn-plus:before { \n  content: '\\e0cf'; /* '' */\n} \n.typcn-point-of-interest-outline:before { \n  content: '\\e0d0'; /* '' */\n} \n.typcn-point-of-interest:before { \n  content: '\\e0d1'; /* '' */\n} \n.typcn-power-outline:before { \n  content: '\\e0d2'; /* '' */\n} \n.typcn-power:before { \n  content: '\\e0d3'; /* '' */\n} \n.typcn-printer:before { \n  content: '\\e0d4'; /* '' */\n} \n.typcn-puzzle-outline:before { \n  content: '\\e0d5'; /* '' */\n} \n.typcn-puzzle:before { \n  content: '\\e0d6'; /* '' */\n} \n.typcn-radar-outline:before { \n  content: '\\e0d7'; /* '' */\n} \n.typcn-radar:before { \n  content: '\\e0d8'; /* '' */\n} \n.typcn-refresh-outline:before { \n  content: '\\e0d9'; /* '' */\n} \n.typcn-refresh:before { \n  content: '\\e0da'; /* '' */\n} \n.typcn-rss-outline:before { \n  content: '\\e0db'; /* '' */\n} \n.typcn-rss:before { \n  content: '\\e0dc'; /* '' */\n} \n.typcn-scissors-outline:before { \n  content: '\\e0dd'; /* '' */\n} \n.typcn-scissors:before { \n  content: '\\e0de'; /* '' */\n} \n.typcn-shopping-bag:before { \n  content: '\\e0df'; /* '' */\n} \n.typcn-shopping-cart:before { \n  content: '\\e0e0'; /* '' */\n} \n.typcn-social-at-circular:before { \n  content: '\\e0e1'; /* '' */\n} \n.typcn-social-dribbble-circular:before { \n  content: '\\e0e2'; /* '' */\n} \n.typcn-social-dribbble:before { \n  content: '\\e0e3'; /* '' */\n} \n.typcn-social-facebook-circular:before { \n  content: '\\e0e4'; /* '' */\n} \n.typcn-social-facebook:before { \n  content: '\\e0e5'; /* '' */\n} \n.typcn-social-flickr-circular:before { \n  content: '\\e0e6'; /* '' */\n} \n.typcn-social-flickr:before { \n  content: '\\e0e7'; /* '' */\n} \n.typcn-social-github-circular:before { \n  content: '\\e0e8'; /* '' */\n} \n.typcn-social-github:before { \n  content: '\\e0e9'; /* '' */\n} \n.typcn-social-google-plus-circular:before { \n  content: '\\e0ea'; /* '' */\n} \n.typcn-social-google-plus:before { \n  content: '\\e0eb'; /* '' */\n} \n.typcn-social-instagram-circular:before { \n  content: '\\e0ec'; /* '' */\n} \n.typcn-social-instagram:before { \n  content: '\\e0ed'; /* '' */\n} \n.typcn-social-last-fm-circular:before { \n  content: '\\e0ee'; /* '' */\n} \n.typcn-social-last-fm:before { \n  content: '\\e0ef'; /* '' */\n} \n.typcn-social-linkedin-circular:before { \n  content: '\\e0f0'; /* '' */\n} \n.typcn-social-linkedin:before { \n  content: '\\e0f1'; /* '' */\n} \n.typcn-social-pinterest-circular:before { \n  content: '\\e0f2'; /* '' */\n} \n.typcn-social-pinterest:before { \n  content: '\\e0f3'; /* '' */\n} \n.typcn-social-skype-outline:before { \n  content: '\\e0f4'; /* '' */\n} \n.typcn-social-skype:before { \n  content: '\\e0f5'; /* '' */\n} \n.typcn-social-tumbler-circular:before { \n  content: '\\e0f6'; /* '' */\n} \n.typcn-social-tumbler:before { \n  content: '\\e0f7'; /* '' */\n} \n.typcn-social-twitter-circular:before { \n  content: '\\e0f8'; /* '' */\n} \n.typcn-social-twitter:before { \n  content: '\\e0f9'; /* '' */\n} \n.typcn-social-vimeo-circular:before { \n  content: '\\e0fa'; /* '' */\n} \n.typcn-social-vimeo:before { \n  content: '\\e0fb'; /* '' */\n} \n.typcn-social-youtube-circular:before { \n  content: '\\e0fc'; /* '' */\n} \n.typcn-social-youtube:before { \n  content: '\\e0fd'; /* '' */\n} \n.typcn-sort-alphabetically-outline:before { \n  content: '\\e0fe'; /* '' */\n} \n.typcn-sort-alphabetically:before { \n  content: '\\e0ff'; /* '' */\n} \n.typcn-sort-numerically-outline:before { \n  content: '\\e100'; /* '' */\n} \n.typcn-sort-numerically:before { \n  content: '\\e101'; /* '' */\n} \n.typcn-spanner-outline:before { \n  content: '\\e102'; /* '' */\n} \n.typcn-spanner:before { \n  content: '\\e103'; /* '' */\n} \n.typcn-spiral:before { \n  content: '\\e104'; /* '' */\n} \n.typcn-star-full-outline:before { \n  content: '\\e105'; /* '' */\n} \n.typcn-star-half-outline:before { \n  content: '\\e106'; /* '' */\n} \n.typcn-star-half:before { \n  content: '\\e107'; /* '' */\n} \n.typcn-star-outline:before { \n  content: '\\e108'; /* '' */\n} \n.typcn-star:before { \n  content: '\\e109'; /* '' */\n} \n.typcn-starburst-outline:before { \n  content: '\\e10a'; /* '' */\n} \n.typcn-starburst:before { \n  content: '\\e10b'; /* '' */\n} \n.typcn-stopwatch:before { \n  content: '\\e10c'; /* '' */\n} \n.typcn-support:before { \n  content: '\\e10d'; /* '' */\n} \n.typcn-tabs-outline:before { \n  content: '\\e10e'; /* '' */\n} \n.typcn-tag:before { \n  content: '\\e10f'; /* '' */\n} \n.typcn-tags:before { \n  content: '\\e110'; /* '' */\n} \n.typcn-th-large-outline:before { \n  content: '\\e111'; /* '' */\n} \n.typcn-th-large:before { \n  content: '\\e112'; /* '' */\n} \n.typcn-th-list-outline:before { \n  content: '\\e113'; /* '' */\n} \n.typcn-th-list:before { \n  content: '\\e114'; /* '' */\n} \n.typcn-th-menu-outline:before { \n  content: '\\e115'; /* '' */\n} \n.typcn-th-menu:before { \n  content: '\\e116'; /* '' */\n} \n.typcn-th-small-outline:before { \n  content: '\\e117'; /* '' */\n} \n.typcn-th-small:before { \n  content: '\\e118'; /* '' */\n} \n.typcn-thermometer:before { \n  content: '\\e119'; /* '' */\n} \n.typcn-thumbs-down:before { \n  content: '\\e11a'; /* '' */\n} \n.typcn-thumbs-ok:before { \n  content: '\\e11b'; /* '' */\n} \n.typcn-thumbs-up:before { \n  content: '\\e11c'; /* '' */\n} \n.typcn-tick-outline:before { \n  content: '\\e11d'; /* '' */\n} \n.typcn-tick:before { \n  content: '\\e11e'; /* '' */\n} \n.typcn-ticket:before { \n  content: '\\e11f'; /* '' */\n} \n.typcn-time:before { \n  content: '\\e120'; /* '' */\n} \n.typcn-times-outline:before { \n  content: '\\e121'; /* '' */\n} \n.typcn-times:before { \n  content: '\\e122'; /* '' */\n} \n.typcn-trash:before { \n  content: '\\e123'; /* '' */\n} \n.typcn-tree:before { \n  content: '\\e124'; /* '' */\n} \n.typcn-upload-outline:before { \n  content: '\\e125'; /* '' */\n} \n.typcn-upload:before { \n  content: '\\e126'; /* '' */\n} \n.typcn-user-add-outline:before { \n  content: '\\e127'; /* '' */\n} \n.typcn-user-add:before { \n  content: '\\e128'; /* '' */\n} \n.typcn-user-delete-outline:before { \n  content: '\\e129'; /* '' */\n} \n.typcn-user-delete:before { \n  content: '\\e12a'; /* '' */\n} \n.typcn-user-outline:before { \n  content: '\\e12b'; /* '' */\n} \n.typcn-user:before { \n  content: '\\e12c'; /* '' */\n} \n.typcn-vendor-android:before { \n  content: '\\e12d'; /* '' */\n} \n.typcn-vendor-apple:before { \n  content: '\\e12e'; /* '' */\n} \n.typcn-vendor-microsoft:before { \n  content: '\\e12f'; /* '' */\n} \n.typcn-video-outline:before { \n  content: '\\e130'; /* '' */\n} \n.typcn-video:before { \n  content: '\\e131'; /* '' */\n} \n.typcn-volume-down:before { \n  content: '\\e132'; /* '' */\n} \n.typcn-volume-mute:before { \n  content: '\\e133'; /* '' */\n} \n.typcn-volume-up:before { \n  content: '\\e134'; /* '' */\n} \n.typcn-volume:before { \n  content: '\\e135'; /* '' */\n} \n.typcn-warning-outline:before { \n  content: '\\e136'; /* '' */\n} \n.typcn-warning:before { \n  content: '\\e137'; /* '' */\n} \n.typcn-watch:before { \n  content: '\\e138'; /* '' */\n} \n.typcn-waves-outline:before { \n  content: '\\e139'; /* '' */\n} \n.typcn-waves:before { \n  content: '\\e13a'; /* '' */\n} \n.typcn-weather-cloudy:before { \n  content: '\\e13b'; /* '' */\n} \n.typcn-weather-downpour:before { \n  content: '\\e13c'; /* '' */\n} \n.typcn-weather-night:before { \n  content: '\\e13d'; /* '' */\n} \n.typcn-weather-partly-sunny:before { \n  content: '\\e13e'; /* '' */\n} \n.typcn-weather-shower:before { \n  content: '\\e13f'; /* '' */\n} \n.typcn-weather-snow:before { \n  content: '\\e140'; /* '' */\n} \n.typcn-weather-stormy:before { \n  content: '\\e141'; /* '' */\n} \n.typcn-weather-sunny:before { \n  content: '\\e142'; /* '' */\n} \n.typcn-weather-windy-cloudy:before { \n  content: '\\e143'; /* '' */\n} \n.typcn-weather-windy:before { \n  content: '\\e144'; /* '' */\n} \n.typcn-wi-fi-outline:before { \n  content: '\\e145'; /* '' */\n} \n.typcn-wi-fi:before { \n  content: '\\e146'; /* '' */\n} \n.typcn-wine:before { \n  content: '\\e147'; /* '' */\n} \n.typcn-world-outline:before { \n  content: '\\e148'; /* '' */\n} \n.typcn-world:before { \n  content: '\\e149'; /* '' */\n} \n.typcn-zoom-in-outline:before { \n  content: '\\e14a'; /* '' */\n} \n.typcn-zoom-in:before { \n  content: '\\e14b'; /* '' */\n} \n.typcn-zoom-out-outline:before { \n  content: '\\e14c'; /* '' */\n} \n.typcn-zoom-out:before { \n  content: '\\e14d'; /* '' */\n} \n.typcn-zoom-outline:before { \n  content: '\\e14e'; /* '' */\n} \n.typcn-zoom:before { \n  content: '\\e14f'; /* '' */\n}"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/ikonli-unicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.unicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.unicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.unicons.UniconsLineIkonHandler,\n            org.kordamp.ikonli.unicons.UniconsMonochromeIkonHandler,\n            org.kordamp.ikonli.unicons.UniconsSolidIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.unicons.UniconsLineIkonProvider,\n            org.kordamp.ikonli.unicons.UniconsMonochromeIkonProvider,\n            org.kordamp.ikonli.unicons.UniconsSolidIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/java/org/kordamp/ikonli/unicons/UniconsLine.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.unicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum UniconsLine implements Ikon {\n    UNIL_500PX(\"unil-500px\", '\\ue90a'),\n    ABACUS(\"unil-abacus\", '\\ue90b'),\n    ACCESSIBLE_ICON_ALT(\"unil-accessible-icon-alt\", '\\ue90c'),\n    ADJUST(\"unil-adjust\", '\\ue910'),\n    ADJUST_ALT(\"unil-adjust-alt\", '\\ue90d'),\n    ADJUST_CIRCLE(\"unil-adjust-circle\", '\\ue90e'),\n    ADJUST_HALF(\"unil-adjust-half\", '\\ue90f'),\n    ADOBE(\"unil-adobe\", '\\ue912'),\n    ADOBE_ALT(\"unil-adobe-alt\", '\\ue911'),\n    AIRPLAY(\"unil-airplay\", '\\ue913'),\n    ALIGN(\"unil-align\", '\\ue920'),\n    ALIGN_ALT(\"unil-align-alt\", '\\ue914'),\n    ALIGN_CENTER(\"unil-align-center\", '\\ue919'),\n    ALIGN_CENTER_ALT(\"unil-align-center-alt\", '\\ue915'),\n    ALIGN_CENTER_H(\"unil-align-center-h\", '\\ue916'),\n    ALIGN_CENTER_JUSTIFY(\"unil-align-center-justify\", '\\ue917'),\n    ALIGN_CENTER_V(\"unil-align-center-v\", '\\ue918'),\n    ALIGN_JUSTIFY(\"unil-align-justify\", '\\ue91a'),\n    ALIGN_LEFT(\"unil-align-left\", '\\ue91c'),\n    ALIGN_LEFT_JUSTIFY(\"unil-align-left-justify\", '\\ue91b'),\n    ALIGN_LETTER_RIGHT(\"unil-align-letter-right\", '\\ue91d'),\n    ALIGN_RIGHT(\"unil-align-right\", '\\ue91f'),\n    ALIGN_RIGHT_JUSTIFY(\"unil-align-right-justify\", '\\ue91e'),\n    AMAZON(\"unil-amazon\", '\\ue921'),\n    AMBULANCE(\"unil-ambulance\", '\\ue922'),\n    ANALYSIS(\"unil-analysis\", '\\ue923'),\n    ANALYTICS(\"unil-analytics\", '\\ue924'),\n    ANCHOR(\"unil-anchor\", '\\ue925'),\n    ANDROID(\"unil-android\", '\\ue928'),\n    ANDROID_ALT(\"unil-android-alt\", '\\ue926'),\n    ANDROID_PHONE_SLASH(\"unil-android-phone-slash\", '\\ue927'),\n    ANGLE_DOUBLE_DOWN(\"unil-angle-double-down\", '\\ue929'),\n    ANGLE_DOUBLE_LEFT(\"unil-angle-double-left\", '\\ue92a'),\n    ANGLE_DOUBLE_RIGHT(\"unil-angle-double-right\", '\\ue92b'),\n    ANGLE_DOUBLE_UP(\"unil-angle-double-up\", '\\ue92c'),\n    ANGLE_DOWN(\"unil-angle-down\", '\\ue92d'),\n    ANGLE_LEFT(\"unil-angle-left\", '\\ue92f'),\n    ANGLE_LEFT_B(\"unil-angle-left-b\", '\\ue92e'),\n    ANGLE_RIGHT(\"unil-angle-right\", '\\ue931'),\n    ANGLE_RIGHT_B(\"unil-angle-right-b\", '\\ue930'),\n    ANGLE_UP(\"unil-angle-up\", '\\ue932'),\n    ANGRY(\"unil-angry\", '\\ue933'),\n    ANKH(\"unil-ankh\", '\\ue934'),\n    ANNOYED(\"unil-annoyed\", '\\ue936'),\n    ANNOYED_ALT(\"unil-annoyed-alt\", '\\ue935'),\n    APPLE(\"unil-apple\", '\\ue938'),\n    APPLE_ALT(\"unil-apple-alt\", '\\ue937'),\n    APPS(\"unil-apps\", '\\ue939'),\n    ARCHIVE(\"unil-archive\", '\\ue93b'),\n    ARCHIVE_ALT(\"unil-archive-alt\", '\\ue93a'),\n    ARCHWAY(\"unil-archway\", '\\ue93c'),\n    ARROW(\"unil-arrow\", '\\ue952'),\n    ARROWS_H(\"unil-arrows-h\", '\\ue954'),\n    ARROWS_H_ALT(\"unil-arrows-h-alt\", '\\ue953'),\n    ARROWS_LEFT_DOWN(\"unil-arrows-left-down\", '\\ue955'),\n    ARROWS_MAXIMIZE(\"unil-arrows-maximize\", '\\ue956'),\n    ARROWS_MERGE(\"unil-arrows-merge\", '\\ue957'),\n    ARROWS_RESIZE(\"unil-arrows-resize\", '\\ue95a'),\n    ARROWS_RESIZE_H(\"unil-arrows-resize-h\", '\\ue958'),\n    ARROWS_RESIZE_V(\"unil-arrows-resize-v\", '\\ue959'),\n    ARROWS_RIGHT_DOWN(\"unil-arrows-right-down\", '\\ue95b'),\n    ARROWS_SHRINK_H(\"unil-arrows-shrink-h\", '\\ue95c'),\n    ARROWS_SHRINK_V(\"unil-arrows-shrink-v\", '\\ue95d'),\n    ARROWS_UP_RIGHT(\"unil-arrows-up-right\", '\\ue95e'),\n    ARROWS_V(\"unil-arrows-v\", '\\ue960'),\n    ARROWS_V_ALT(\"unil-arrows-v-alt\", '\\ue95f'),\n    ARROW_BREAK(\"unil-arrow-break\", '\\ue93d'),\n    ARROW_CIRCLE_DOWN(\"unil-arrow-circle-down\", '\\ue93e'),\n    ARROW_CIRCLE_LEFT(\"unil-arrow-circle-left\", '\\ue93f'),\n    ARROW_CIRCLE_RIGHT(\"unil-arrow-circle-right\", '\\ue940'),\n    ARROW_CIRCLE_UP(\"unil-arrow-circle-up\", '\\ue941'),\n    ARROW_COMPRESS_H(\"unil-arrow-compress-h\", '\\ue942'),\n    ARROW_DOWN(\"unil-arrow-down\", '\\ue945'),\n    ARROW_DOWN_LEFT(\"unil-arrow-down-left\", '\\ue943'),\n    ARROW_DOWN_RIGHT(\"unil-arrow-down-right\", '\\ue944'),\n    ARROW_FROM_RIGHT(\"unil-arrow-from-right\", '\\ue946'),\n    ARROW_FROM_TOP(\"unil-arrow-from-top\", '\\ue947'),\n    ARROW_GROWTH(\"unil-arrow-growth\", '\\ue948'),\n    ARROW_LEFT(\"unil-arrow-left\", '\\ue949'),\n    ARROW_RANDOM(\"unil-arrow-random\", '\\ue94a'),\n    ARROW_RESIZE_DIAGONAL(\"unil-arrow-resize-diagonal\", '\\ue94b'),\n    ARROW_RIGHT(\"unil-arrow-right\", '\\ue94c'),\n    ARROW_TO_BOTTOM(\"unil-arrow-to-bottom\", '\\ue94d'),\n    ARROW_TO_RIGHT(\"unil-arrow-to-right\", '\\ue94e'),\n    ARROW_UP(\"unil-arrow-up\", '\\ue951'),\n    ARROW_UP_LEFT(\"unil-arrow-up-left\", '\\ue94f'),\n    ARROW_UP_RIGHT(\"unil-arrow-up-right\", '\\ue950'),\n    ASSISTIVE_LISTENING_SYSTEMS(\"unil-assistive-listening-systems\", '\\ue961'),\n    ASTERISK(\"unil-asterisk\", '\\ue962'),\n    AT(\"unil-at\", '\\ue963'),\n    ATOM(\"unil-atom\", '\\ue964'),\n    AUTO_FLASH(\"unil-auto-flash\", '\\ue965'),\n    AWARD(\"unil-award\", '\\ue967'),\n    AWARD_ALT(\"unil-award-alt\", '\\ue966'),\n    BABY_CARRIAGE(\"unil-baby-carriage\", '\\ue968'),\n    BACKPACK(\"unil-backpack\", '\\ue969'),\n    BACKSPACE(\"unil-backspace\", '\\ue96a'),\n    BACKWARD(\"unil-backward\", '\\ue96b'),\n    BAG(\"unil-bag\", '\\ue96e'),\n    BAG_ALT(\"unil-bag-alt\", '\\ue96c'),\n    BAG_SLASH(\"unil-bag-slash\", '\\ue96d'),\n    BALANCE_SCALE(\"unil-balance-scale\", '\\ue96f'),\n    BAN(\"unil-ban\", '\\ue970'),\n    BAND_AID(\"unil-band-aid\", '\\ue971'),\n    BARS(\"unil-bars\", '\\ue972'),\n    BASEBALL_BALL(\"unil-baseball-ball\", '\\ue973'),\n    BASKETBALL(\"unil-basketball\", '\\ue975'),\n    BASKETBALL_HOOP(\"unil-basketball-hoop\", '\\ue974'),\n    BATH(\"unil-bath\", '\\ue976'),\n    BATTERY_BOLT(\"unil-battery-bolt\", '\\ue977'),\n    BATTERY_EMPTY(\"unil-battery-empty\", '\\ue978'),\n    BED(\"unil-bed\", '\\ue97a'),\n    BED_DOUBLE(\"unil-bed-double\", '\\ue979'),\n    BEHANCE(\"unil-behance\", '\\ue97c'),\n    BEHANCE_ALT(\"unil-behance-alt\", '\\ue97b'),\n    BELL(\"unil-bell\", '\\ue97f'),\n    BELL_SCHOOL(\"unil-bell-school\", '\\ue97d'),\n    BELL_SLASH(\"unil-bell-slash\", '\\ue97e'),\n    BILL(\"unil-bill\", '\\ue980'),\n    BING(\"unil-bing\", '\\ue981'),\n    BITCOIN(\"unil-bitcoin\", '\\ue985'),\n    BITCOIN_ALT(\"unil-bitcoin-alt\", '\\ue982'),\n    BITCOIN_CIRCLE(\"unil-bitcoin-circle\", '\\ue983'),\n    BITCOIN_SIGN(\"unil-bitcoin-sign\", '\\ue984'),\n    BLACK_BERRY(\"unil-black-berry\", '\\ue986'),\n    BLOGGER(\"unil-blogger\", '\\ue988'),\n    BLOGGER_ALT(\"unil-blogger-alt\", '\\ue987'),\n    BLUETOOTH_B(\"unil-bluetooth-b\", '\\ue989'),\n    BOLD(\"unil-bold\", '\\ue98a'),\n    BOLT(\"unil-bolt\", '\\ue98d'),\n    BOLT_ALT(\"unil-bolt-alt\", '\\ue98b'),\n    BOLT_SLASH(\"unil-bolt-slash\", '\\ue98c'),\n    BOOK(\"unil-book\", '\\ue992'),\n    BOOKMARK(\"unil-bookmark\", '\\ue994'),\n    BOOKMARK_FULL(\"unil-bookmark-full\", '\\ue993'),\n    BOOKS(\"unil-books\", '\\ue995'),\n    BOOK_ALT(\"unil-book-alt\", '\\ue98e'),\n    BOOK_MEDICAL(\"unil-book-medical\", '\\ue98f'),\n    BOOK_OPEN(\"unil-book-open\", '\\ue990'),\n    BOOK_READER(\"unil-book-reader\", '\\ue991'),\n    BOOMBOX(\"unil-boombox\", '\\ue996'),\n    BORDER_ALT(\"unil-border-alt\", '\\ue997'),\n    BORDER_BOTTOM(\"unil-border-bottom\", '\\ue998'),\n    BORDER_CLEAR(\"unil-border-clear\", '\\ue999'),\n    BORDER_HORIZONTAL(\"unil-border-horizontal\", '\\ue99a'),\n    BORDER_INNER(\"unil-border-inner\", '\\ue99b'),\n    BORDER_LEFT(\"unil-border-left\", '\\ue99c'),\n    BORDER_OUT(\"unil-border-out\", '\\ue99d'),\n    BORDER_RIGHT(\"unil-border-right\", '\\ue99e'),\n    BORDER_TOP(\"unil-border-top\", '\\ue99f'),\n    BORDER_VERTICAL(\"unil-border-vertical\", '\\ue9a0'),\n    BOWLING_BALL(\"unil-bowling-ball\", '\\ue9a1'),\n    BOX(\"unil-box\", '\\ue9a2'),\n    BRACKETS_CURLY(\"unil-brackets-curly\", '\\ue9a3'),\n    BRAIN(\"unil-brain\", '\\ue9a4'),\n    BRIEFCASE(\"unil-briefcase\", '\\ue9a6'),\n    BRIEFCASE_ALT(\"unil-briefcase-alt\", '\\ue9a5'),\n    BRIGHT(\"unil-bright\", '\\ue9a7'),\n    BRIGHTNESS(\"unil-brightness\", '\\ue9ad'),\n    BRIGHTNESS_EMPTY(\"unil-brightness-empty\", '\\ue9a8'),\n    BRIGHTNESS_HALF(\"unil-brightness-half\", '\\ue9a9'),\n    BRIGHTNESS_LOW(\"unil-brightness-low\", '\\ue9aa'),\n    BRIGHTNESS_MINUS(\"unil-brightness-minus\", '\\ue9ab'),\n    BRIGHTNESS_PLUS(\"unil-brightness-plus\", '\\ue9ac'),\n    BRING_BOTTOM(\"unil-bring-bottom\", '\\ue9ae'),\n    BRING_FRONT(\"unil-bring-front\", '\\ue9af'),\n    BROWSER(\"unil-browser\", '\\ue9b0'),\n    BRUSH_ALT(\"unil-brush-alt\", '\\ue9b1'),\n    BUG(\"unil-bug\", '\\ue9b2'),\n    BUILDING(\"unil-building\", '\\ue9b3'),\n    BULLSEYE(\"unil-bullseye\", '\\ue9b4'),\n    BUS(\"unil-bus\", '\\ue9b7'),\n    BUS_ALT(\"unil-bus-alt\", '\\ue9b5'),\n    BUS_SCHOOL(\"unil-bus-school\", '\\ue9b6'),\n    CALCULATOR(\"unil-calculator\", '\\ue9b9'),\n    CALCULATOR_ALT(\"unil-calculator-alt\", '\\ue9b8'),\n    CALENDAR_ALT(\"unil-calendar-alt\", '\\ue9ba'),\n    CALENDAR_SLASH(\"unil-calendar-slash\", '\\ue9bb'),\n    CALENDER(\"unil-calender\", '\\ue9bc'),\n    CALLING(\"unil-calling\", '\\ue9bd'),\n    CAMERA(\"unil-camera\", '\\ue9c1'),\n    CAMERA_CHANGE(\"unil-camera-change\", '\\ue9be'),\n    CAMERA_PLUS(\"unil-camera-plus\", '\\ue9bf'),\n    CAMERA_SLASH(\"unil-camera-slash\", '\\ue9c0'),\n    CANCEL(\"unil-cancel\", '\\ue9c2'),\n    CAPSULE(\"unil-capsule\", '\\ue9c3'),\n    CAPTURE(\"unil-capture\", '\\ue9c4'),\n    CAR(\"unil-car\", '\\ue9c8'),\n    CARD_ATM(\"unil-card-atm\", '\\ue9c9'),\n    CARET_RIGHT(\"unil-caret-right\", '\\ue9ca'),\n    CAR_SIDEVIEW(\"unil-car-sideview\", '\\ue9c5'),\n    CAR_SLASH(\"unil-car-slash\", '\\ue9c6'),\n    CAR_WASH(\"unil-car-wash\", '\\ue9c7'),\n    CELL(\"unil-cell\", '\\ue9cb'),\n    CELSIUS(\"unil-celsius\", '\\ue9cc'),\n    CHANNEL(\"unil-channel\", '\\ue9ce'),\n    CHANNEL_ADD(\"unil-channel-add\", '\\ue9cd'),\n    CHART(\"unil-chart\", '\\ue9d7'),\n    CHART_BAR(\"unil-chart-bar\", '\\ue9d0'),\n    CHART_BAR_ALT(\"unil-chart-bar-alt\", '\\ue9cf'),\n    CHART_DOWN(\"unil-chart-down\", '\\ue9d1'),\n    CHART_GROWTH(\"unil-chart-growth\", '\\ue9d3'),\n    CHART_GROWTH_ALT(\"unil-chart-growth-alt\", '\\ue9d2'),\n    CHART_LINE(\"unil-chart-line\", '\\ue9d4'),\n    CHART_PIE(\"unil-chart-pie\", '\\ue9d6'),\n    CHART_PIE_ALT(\"unil-chart-pie-alt\", '\\ue9d5'),\n    CHAT(\"unil-chat\", '\\ue9da'),\n    CHAT_BUBBLE_USER(\"unil-chat-bubble-user\", '\\ue9d8'),\n    CHAT_INFO(\"unil-chat-info\", '\\ue9d9'),\n    CHECK(\"unil-check\", '\\ue9dd'),\n    CHECK_CIRCLE(\"unil-check-circle\", '\\ue9db'),\n    CHECK_SQUARE(\"unil-check-square\", '\\ue9dc'),\n    CIRCLE(\"unil-circle\", '\\ue9df'),\n    CIRCLE_LAYER(\"unil-circle-layer\", '\\ue9de'),\n    CIRCUIT(\"unil-circuit\", '\\ue9e0'),\n    CLAPPER_BOARD(\"unil-clapper-board\", '\\ue9e1'),\n    CLINIC_MEDICAL(\"unil-clinic-medical\", '\\ue9e2'),\n    CLIPBOARD(\"unil-clipboard\", '\\ue9e6'),\n    CLIPBOARD_ALT(\"unil-clipboard-alt\", '\\ue9e3'),\n    CLIPBOARD_BLANK(\"unil-clipboard-blank\", '\\ue9e4'),\n    CLIPBOARD_NOTES(\"unil-clipboard-notes\", '\\ue9e5'),\n    CLOCK(\"unil-clock\", '\\ue9ee'),\n    CLOCK_EIGHT(\"unil-clock-eight\", '\\ue9e7'),\n    CLOCK_FIVE(\"unil-clock-five\", '\\ue9e8'),\n    CLOCK_NINE(\"unil-clock-nine\", '\\ue9e9'),\n    CLOCK_SEVEN(\"unil-clock-seven\", '\\ue9ea'),\n    CLOCK_TEN(\"unil-clock-ten\", '\\ue9eb'),\n    CLOCK_THREE(\"unil-clock-three\", '\\ue9ec'),\n    CLOCK_TWO(\"unil-clock-two\", '\\ue9ed'),\n    CLOSED_CAPTIONING(\"unil-closed-captioning\", '\\ue9f0'),\n    CLOSED_CAPTIONING_SLASH(\"unil-closed-captioning-slash\", '\\ue9ef'),\n    CLOUD(\"unil-cloud\", '\\uea19'),\n    CLOUDS(\"unil-clouds\", '\\uea1a'),\n    CLOUD_BLOCK(\"unil-cloud-block\", '\\ue9f1'),\n    CLOUD_BOOKMARK(\"unil-cloud-bookmark\", '\\ue9f2'),\n    CLOUD_CHECK(\"unil-cloud-check\", '\\ue9f3'),\n    CLOUD_COMPUTING(\"unil-cloud-computing\", '\\ue9f4'),\n    CLOUD_DATABASE_TREE(\"unil-cloud-database-tree\", '\\ue9f6'),\n    CLOUD_DATA_CONNECTION(\"unil-cloud-data-connection\", '\\ue9f5'),\n    CLOUD_DOWNLOAD(\"unil-cloud-download\", '\\ue9f7'),\n    CLOUD_DRIZZLE(\"unil-cloud-drizzle\", '\\ue9f8'),\n    CLOUD_EXCLAMATION(\"unil-cloud-exclamation\", '\\ue9f9'),\n    CLOUD_HAIL(\"unil-cloud-hail\", '\\ue9fa'),\n    CLOUD_HEART(\"unil-cloud-heart\", '\\ue9fb'),\n    CLOUD_INFO(\"unil-cloud-info\", '\\ue9fc'),\n    CLOUD_LOCK(\"unil-cloud-lock\", '\\ue9fd'),\n    CLOUD_MEATBALL(\"unil-cloud-meatball\", '\\ue9fe'),\n    CLOUD_MOON(\"unil-cloud-moon\", '\\uea03'),\n    CLOUD_MOON_HAIL(\"unil-cloud-moon-hail\", '\\ue9ff'),\n    CLOUD_MOON_MEATBALL(\"unil-cloud-moon-meatball\", '\\uea00'),\n    CLOUD_MOON_RAIN(\"unil-cloud-moon-rain\", '\\uea01'),\n    CLOUD_MOON_SHOWERS(\"unil-cloud-moon-showers\", '\\uea02'),\n    CLOUD_QUESTION(\"unil-cloud-question\", '\\uea04'),\n    CLOUD_RAIN(\"unil-cloud-rain\", '\\uea06'),\n    CLOUD_RAIN_SUN(\"unil-cloud-rain-sun\", '\\uea05'),\n    CLOUD_REDO(\"unil-cloud-redo\", '\\uea07'),\n    CLOUD_SHARE(\"unil-cloud-share\", '\\uea08'),\n    CLOUD_SHIELD(\"unil-cloud-shield\", '\\uea09'),\n    CLOUD_SHOWERS(\"unil-cloud-showers\", '\\uea0c'),\n    CLOUD_SHOWERS_ALT(\"unil-cloud-showers-alt\", '\\uea0a'),\n    CLOUD_SHOWERS_HEAVY(\"unil-cloud-showers-heavy\", '\\uea0b'),\n    CLOUD_SLASH(\"unil-cloud-slash\", '\\uea0d'),\n    CLOUD_SUN(\"unil-cloud-sun\", '\\uea13'),\n    CLOUD_SUN_HAIL(\"unil-cloud-sun-hail\", '\\uea0e'),\n    CLOUD_SUN_MEATBALL(\"unil-cloud-sun-meatball\", '\\uea0f'),\n    CLOUD_SUN_RAIN(\"unil-cloud-sun-rain\", '\\uea11'),\n    CLOUD_SUN_RAIN_ALT(\"unil-cloud-sun-rain-alt\", '\\uea10'),\n    CLOUD_SUN_TEAR(\"unil-cloud-sun-tear\", '\\uea12'),\n    CLOUD_TIMES(\"unil-cloud-times\", '\\uea14'),\n    CLOUD_UNLOCK(\"unil-cloud-unlock\", '\\uea15'),\n    CLOUD_UPLOAD(\"unil-cloud-upload\", '\\uea16'),\n    CLOUD_WIFI(\"unil-cloud-wifi\", '\\uea17'),\n    CLOUD_WIND(\"unil-cloud-wind\", '\\uea18'),\n    CLUB(\"unil-club\", '\\uea1b'),\n    CODE_BRANCH(\"unil-code-branch\", '\\uea1c'),\n    COFFEE(\"unil-coffee\", '\\uea1d'),\n    COG(\"unil-cog\", '\\uea1e'),\n    COINS(\"unil-coins\", '\\uea1f'),\n    COLUMNS(\"unil-columns\", '\\uea20'),\n    COMMENT(\"unil-comment\", '\\uea54'),\n    COMMENTS(\"unil-comments\", '\\uea56'),\n    COMMENTS_ALT(\"unil-comments-alt\", '\\uea55'),\n    COMMENT_ADD(\"unil-comment-add\", '\\uea21'),\n    COMMENT_ALT(\"unil-comment-alt\", '\\uea3a'),\n    COMMENT_ALT_BLOCK(\"unil-comment-alt-block\", '\\uea22'),\n    COMMENT_ALT_CHART_LINES(\"unil-comment-alt-chart-lines\", '\\uea23'),\n    COMMENT_ALT_CHECK(\"unil-comment-alt-check\", '\\uea24'),\n    COMMENT_ALT_DOTS(\"unil-comment-alt-dots\", '\\uea25'),\n    COMMENT_ALT_DOWNLOAD(\"unil-comment-alt-download\", '\\uea26'),\n    COMMENT_ALT_EDIT(\"unil-comment-alt-edit\", '\\uea27'),\n    COMMENT_ALT_EXCLAMATION(\"unil-comment-alt-exclamation\", '\\uea28'),\n    COMMENT_ALT_HEART(\"unil-comment-alt-heart\", '\\uea29'),\n    COMMENT_ALT_IMAGE(\"unil-comment-alt-image\", '\\uea2a'),\n    COMMENT_ALT_INFO(\"unil-comment-alt-info\", '\\uea2b'),\n    COMMENT_ALT_LINES(\"unil-comment-alt-lines\", '\\uea2c'),\n    COMMENT_ALT_LOCK(\"unil-comment-alt-lock\", '\\uea2d'),\n    COMMENT_ALT_MEDICAL(\"unil-comment-alt-medical\", '\\uea2e'),\n    COMMENT_ALT_MESSAGE(\"unil-comment-alt-message\", '\\uea2f'),\n    COMMENT_ALT_NOTES(\"unil-comment-alt-notes\", '\\uea30'),\n    COMMENT_ALT_PLUS(\"unil-comment-alt-plus\", '\\uea31'),\n    COMMENT_ALT_QUESTION(\"unil-comment-alt-question\", '\\uea32'),\n    COMMENT_ALT_REDO(\"unil-comment-alt-redo\", '\\uea33'),\n    COMMENT_ALT_SEARCH(\"unil-comment-alt-search\", '\\uea34'),\n    COMMENT_ALT_SHARE(\"unil-comment-alt-share\", '\\uea35'),\n    COMMENT_ALT_SHIELD(\"unil-comment-alt-shield\", '\\uea36'),\n    COMMENT_ALT_SLASH(\"unil-comment-alt-slash\", '\\uea37'),\n    COMMENT_ALT_UPLOAD(\"unil-comment-alt-upload\", '\\uea38'),\n    COMMENT_ALT_VERIFY(\"unil-comment-alt-verify\", '\\uea39'),\n    COMMENT_BLOCK(\"unil-comment-block\", '\\uea3b'),\n    COMMENT_CHART_LINE(\"unil-comment-chart-line\", '\\uea3c'),\n    COMMENT_CHECK(\"unil-comment-check\", '\\uea3d'),\n    COMMENT_DOTS(\"unil-comment-dots\", '\\uea3e'),\n    COMMENT_DOWNLOAD(\"unil-comment-download\", '\\uea3f'),\n    COMMENT_EDIT(\"unil-comment-edit\", '\\uea40'),\n    COMMENT_EXCLAMATION(\"unil-comment-exclamation\", '\\uea41'),\n    COMMENT_HEART(\"unil-comment-heart\", '\\uea42'),\n    COMMENT_IMAGE(\"unil-comment-image\", '\\uea43'),\n    COMMENT_INFO(\"unil-comment-info\", '\\uea45'),\n    COMMENT_INFO_ALT(\"unil-comment-info-alt\", '\\uea44'),\n    COMMENT_LINES(\"unil-comment-lines\", '\\uea46'),\n    COMMENT_LOCK(\"unil-comment-lock\", '\\uea47'),\n    COMMENT_MEDICAL(\"unil-comment-medical\", '\\uea48'),\n    COMMENT_MESSAGE(\"unil-comment-message\", '\\uea49'),\n    COMMENT_NOTES(\"unil-comment-notes\", '\\uea4a'),\n    COMMENT_PLUS(\"unil-comment-plus\", '\\uea4b'),\n    COMMENT_QUESTION(\"unil-comment-question\", '\\uea4c'),\n    COMMENT_REDO(\"unil-comment-redo\", '\\uea4d'),\n    COMMENT_SEARCH(\"unil-comment-search\", '\\uea4e'),\n    COMMENT_SHARE(\"unil-comment-share\", '\\uea4f'),\n    COMMENT_SHIELD(\"unil-comment-shield\", '\\uea50'),\n    COMMENT_SLASH(\"unil-comment-slash\", '\\uea51'),\n    COMMENT_UPLOAD(\"unil-comment-upload\", '\\uea52'),\n    COMMENT_VERIFY(\"unil-comment-verify\", '\\uea53'),\n    COMPACT_DISC(\"unil-compact-disc\", '\\uea57'),\n    COMPARISON(\"unil-comparison\", '\\uea58'),\n    COMPASS(\"unil-compass\", '\\uea59'),\n    COMPRESS(\"unil-compress\", '\\uea60'),\n    COMPRESS_ALT(\"unil-compress-alt\", '\\uea5b'),\n    COMPRESS_ALT_LEFT(\"unil-compress-alt-left\", '\\uea5a'),\n    COMPRESS_ARROWS(\"unil-compress-arrows\", '\\uea5c'),\n    COMPRESS_LINES(\"unil-compress-lines\", '\\uea5d'),\n    COMPRESS_POINT(\"unil-compress-point\", '\\uea5e'),\n    COMPRESS_V(\"unil-compress-v\", '\\uea5f'),\n    CONFUSED(\"unil-confused\", '\\uea61'),\n    CONSTRUCTOR(\"unil-constructor\", '\\uea62'),\n    COPY(\"unil-copy\", '\\uea65'),\n    COPYRIGHT(\"unil-copyright\", '\\uea66'),\n    COPY_ALT(\"unil-copy-alt\", '\\uea63'),\n    COPY_LANDSCAPE(\"unil-copy-landscape\", '\\uea64'),\n    CORNER_DOWN_LEFT(\"unil-corner-down-left\", '\\uea67'),\n    CORNER_DOWN_RIGHT(\"unil-corner-down-right\", '\\uea69'),\n    CORNER_DOWN_RIGHT_ALT(\"unil-corner-down-right-alt\", '\\uea68'),\n    CORNER_LEFT_DOWN(\"unil-corner-left-down\", '\\uea6a'),\n    CORNER_RIGHT_DOWN(\"unil-corner-right-down\", '\\uea6b'),\n    CORNER_UP_LEFT(\"unil-corner-up-left\", '\\uea6d'),\n    CORNER_UP_LEFT_ALT(\"unil-corner-up-left-alt\", '\\uea6c'),\n    CORNER_UP_RIGHT(\"unil-corner-up-right\", '\\uea6f'),\n    CORNER_UP_RIGHT_ALT(\"unil-corner-up-right-alt\", '\\uea6e'),\n    CORONAVIRUS(\"unil-coronavirus\", '\\uea70'),\n    CREATE_DASHBOARD(\"unil-create-dashboard\", '\\uea71'),\n    CREATIVE_COMMONS_PD(\"unil-creative-commons-pd\", '\\uea72'),\n    CREDIT_CARD(\"unil-credit-card\", '\\uea74'),\n    CREDIT_CARD_SEARCH(\"unil-credit-card-search\", '\\uea73'),\n    CROCKERY(\"unil-crockery\", '\\uea75'),\n    CROP_ALT(\"unil-crop-alt\", '\\uea78'),\n    CROP_ALT_ROTATE_LEFT(\"unil-crop-alt-rotate-left\", '\\uea76'),\n    CROP_ALT_ROTATE_RIGHT(\"unil-crop-alt-rotate-right\", '\\uea77'),\n    CROSSHAIR(\"unil-crosshair\", '\\uea7a'),\n    CROSSHAIRS(\"unil-crosshairs\", '\\uea7b'),\n    CROSSHAIR_ALT(\"unil-crosshair-alt\", '\\uea79'),\n    CSS3_SIMPLE(\"unil-css3-simple\", '\\uea7c'),\n    CUBE(\"unil-cube\", '\\uea7d'),\n    DASHBOARD(\"unil-dashboard\", '\\uea7e'),\n    DATABASE(\"unil-database\", '\\uea81'),\n    DATABASE_ALT(\"unil-database-alt\", '\\uea80'),\n    DATA_SHARING(\"unil-data-sharing\", '\\uea7f'),\n    DESERT(\"unil-desert\", '\\uea82'),\n    DESKTOP(\"unil-desktop\", '\\uea87'),\n    DESKTOP_ALT(\"unil-desktop-alt\", '\\uea84'),\n    DESKTOP_ALT_SLASH(\"unil-desktop-alt-slash\", '\\uea83'),\n    DESKTOP_CLOUD_ALT(\"unil-desktop-cloud-alt\", '\\uea85'),\n    DESKTOP_SLASH(\"unil-desktop-slash\", '\\uea86'),\n    DIALPAD(\"unil-dialpad\", '\\uea89'),\n    DIALPAD_ALT(\"unil-dialpad-alt\", '\\uea88'),\n    DIAMOND(\"unil-diamond\", '\\uea8a'),\n    DIARY(\"unil-diary\", '\\uea8c'),\n    DIARY_ALT(\"unil-diary-alt\", '\\uea8b'),\n    DICE_FIVE(\"unil-dice-five\", '\\uea8d'),\n    DICE_FOUR(\"unil-dice-four\", '\\uea8e'),\n    DICE_ONE(\"unil-dice-one\", '\\uea8f'),\n    DICE_SIX(\"unil-dice-six\", '\\uea90'),\n    DICE_THREE(\"unil-dice-three\", '\\uea91'),\n    DICE_TWO(\"unil-dice-two\", '\\uea92'),\n    DIRECTION(\"unil-direction\", '\\uea93'),\n    DIRECTIONS(\"unil-directions\", '\\uea94'),\n    DISCORD(\"unil-discord\", '\\uea95'),\n    DIZZY_MEH(\"unil-dizzy-meh\", '\\uea96'),\n    DNA(\"unil-dna\", '\\uea97'),\n    DOCUMENT_INFO(\"unil-document-info\", '\\uea98'),\n    DOCUMENT_LAYOUT_CENTER(\"unil-document-layout-center\", '\\uea99'),\n    DOCUMENT_LAYOUT_LEFT(\"unil-document-layout-left\", '\\uea9a'),\n    DOCUMENT_LAYOUT_RIGHT(\"unil-document-layout-right\", '\\uea9b'),\n    DOLLAR_ALT(\"unil-dollar-alt\", '\\uea9c'),\n    DOLLAR_SIGN(\"unil-dollar-sign\", '\\uea9e'),\n    DOLLAR_SIGN_ALT(\"unil-dollar-sign-alt\", '\\uea9d'),\n    DOWNLOAD_ALT(\"unil-download-alt\", '\\uea9f'),\n    DRAGGABLEDOTS(\"unil-draggabledots\", '\\ueaa0'),\n    DRIBBBLE(\"unil-dribbble\", '\\ueaa1'),\n    DRILL(\"unil-drill\", '\\ueaa2'),\n    DROPBOX(\"unil-dropbox\", '\\ueaa3'),\n    DUMBBELL(\"unil-dumbbell\", '\\ueaa4'),\n    EAR(\"unil-ear\", '\\ueaa5'),\n    EDIT(\"unil-edit\", '\\ueaa7'),\n    EDIT_ALT(\"unil-edit-alt\", '\\ueaa6'),\n    ELLIPSIS_H(\"unil-ellipsis-h\", '\\ueaa8'),\n    ELLIPSIS_V(\"unil-ellipsis-v\", '\\ueaa9'),\n    EMOJI(\"unil-emoji\", '\\ueaaa'),\n    ENGLISH_TO_CHINESE(\"unil-english-to-chinese\", '\\ueaab'),\n    ENTER(\"unil-enter\", '\\ueaac'),\n    ENVELOPE(\"unil-envelope\", '\\ueac6'),\n    ENVELOPES(\"unil-envelopes\", '\\ueac7'),\n    ENVELOPE_ADD(\"unil-envelope-add\", '\\ueaad'),\n    ENVELOPE_ALT(\"unil-envelope-alt\", '\\ueaae'),\n    ENVELOPE_BLOCK(\"unil-envelope-block\", '\\ueaaf'),\n    ENVELOPE_BOOKMARK(\"unil-envelope-bookmark\", '\\ueab0'),\n    ENVELOPE_CHECK(\"unil-envelope-check\", '\\ueab1'),\n    ENVELOPE_DOWNLOAD(\"unil-envelope-download\", '\\ueab3'),\n    ENVELOPE_DOWNLOAD_ALT(\"unil-envelope-download-alt\", '\\ueab2'),\n    ENVELOPE_EDIT(\"unil-envelope-edit\", '\\ueab4'),\n    ENVELOPE_EXCLAMATION(\"unil-envelope-exclamation\", '\\ueab5'),\n    ENVELOPE_HEART(\"unil-envelope-heart\", '\\ueab6'),\n    ENVELOPE_INFO(\"unil-envelope-info\", '\\ueab7'),\n    ENVELOPE_LOCK(\"unil-envelope-lock\", '\\ueab8'),\n    ENVELOPE_MINUS(\"unil-envelope-minus\", '\\ueab9'),\n    ENVELOPE_OPEN(\"unil-envelope-open\", '\\ueaba'),\n    ENVELOPE_QUESTION(\"unil-envelope-question\", '\\ueabb'),\n    ENVELOPE_RECEIVE(\"unil-envelope-receive\", '\\ueabc'),\n    ENVELOPE_REDO(\"unil-envelope-redo\", '\\ueabd'),\n    ENVELOPE_SEARCH(\"unil-envelope-search\", '\\ueabe'),\n    ENVELOPE_SEND(\"unil-envelope-send\", '\\ueabf'),\n    ENVELOPE_SHARE(\"unil-envelope-share\", '\\ueac0'),\n    ENVELOPE_SHIELD(\"unil-envelope-shield\", '\\ueac1'),\n    ENVELOPE_STAR(\"unil-envelope-star\", '\\ueac2'),\n    ENVELOPE_TIMES(\"unil-envelope-times\", '\\ueac3'),\n    ENVELOPE_UPLOAD(\"unil-envelope-upload\", '\\ueac5'),\n    ENVELOPE_UPLOAD_ALT(\"unil-envelope-upload-alt\", '\\ueac4'),\n    EQUAL_CIRCLE(\"unil-equal-circle\", '\\ueac8'),\n    ESTATE(\"unil-estate\", '\\ueac9'),\n    EURO(\"unil-euro\", '\\ueacb'),\n    EURO_CIRCLE(\"unil-euro-circle\", '\\ueaca'),\n    EXCHANGE(\"unil-exchange\", '\\ueacd'),\n    EXCHANGE_ALT(\"unil-exchange-alt\", '\\ueacc'),\n    EXCLAMATION(\"unil-exclamation\", '\\uead1'),\n    EXCLAMATION_CIRCLE(\"unil-exclamation-circle\", '\\ueace'),\n    EXCLAMATION_OCTAGON(\"unil-exclamation-octagon\", '\\ueacf'),\n    EXCLAMATION_TRIANGLE(\"unil-exclamation-triangle\", '\\uead0'),\n    EXCLUDE(\"unil-exclude\", '\\uead2'),\n    EXIT(\"unil-exit\", '\\uead3'),\n    EXPAND_ALT(\"unil-expand-alt\", '\\uead4'),\n    EXPAND_ARROWS(\"unil-expand-arrows\", '\\uead6'),\n    EXPAND_ARROWS_ALT(\"unil-expand-arrows-alt\", '\\uead5'),\n    EXPAND_FROM_CORNER(\"unil-expand-from-corner\", '\\uead7'),\n    EXPAND_LEFT(\"unil-expand-left\", '\\uead8'),\n    EXPAND_RIGHT(\"unil-expand-right\", '\\uead9'),\n    EXPORT(\"unil-export\", '\\ueada'),\n    EXPOSURE_ALT(\"unil-exposure-alt\", '\\ueadb'),\n    EXPOSURE_INCREASE(\"unil-exposure-increase\", '\\ueadc'),\n    EXTERNAL_LINK_ALT(\"unil-external-link-alt\", '\\ueadd'),\n    EYE(\"unil-eye\", '\\ueadf'),\n    EYE_SLASH(\"unil-eye-slash\", '\\ueade'),\n    FACEBOOK(\"unil-facebook\", '\\ueae3'),\n    FACEBOOK_F(\"unil-facebook-f\", '\\ueae0'),\n    FACEBOOK_MESSENGER(\"unil-facebook-messenger\", '\\ueae2'),\n    FACEBOOK_MESSENGER_ALT(\"unil-facebook-messenger-alt\", '\\ueae1'),\n    FAHRENHEIT(\"unil-fahrenheit\", '\\ueae4'),\n    FAST_MAIL(\"unil-fast-mail\", '\\ueae6'),\n    FAST_MAIL_ALT(\"unil-fast-mail-alt\", '\\ueae5'),\n    FAVORITE(\"unil-favorite\", '\\ueae7'),\n    FEEDBACK(\"unil-feedback\", '\\ueae8'),\n    FILE(\"unil-file\", '\\ueb11'),\n    FILES_LANDSCAPES(\"unil-files-landscapes\", '\\ueb13'),\n    FILES_LANDSCAPES_ALT(\"unil-files-landscapes-alt\", '\\ueb12'),\n    FILE_ALT(\"unil-file-alt\", '\\ueae9'),\n    FILE_BLANK(\"unil-file-blank\", '\\ueaea'),\n    FILE_BLOCK_ALT(\"unil-file-block-alt\", '\\ueaeb'),\n    FILE_BOOKMARK_ALT(\"unil-file-bookmark-alt\", '\\ueaec'),\n    FILE_CHECK(\"unil-file-check\", '\\ueaee'),\n    FILE_CHECK_ALT(\"unil-file-check-alt\", '\\ueaed'),\n    FILE_CONTRACT_DOLLAR(\"unil-file-contract-dollar\", '\\ueaef'),\n    FILE_COPY_ALT(\"unil-file-copy-alt\", '\\ueaf0'),\n    FILE_DOWNLOAD(\"unil-file-download\", '\\ueaf2'),\n    FILE_DOWNLOAD_ALT(\"unil-file-download-alt\", '\\ueaf1'),\n    FILE_EDIT_ALT(\"unil-file-edit-alt\", '\\ueaf3'),\n    FILE_EXCLAMATION(\"unil-file-exclamation\", '\\ueaf5'),\n    FILE_EXCLAMATION_ALT(\"unil-file-exclamation-alt\", '\\ueaf4'),\n    FILE_EXPORT(\"unil-file-export\", '\\ueaf6'),\n    FILE_GRAPH(\"unil-file-graph\", '\\ueaf7'),\n    FILE_HEART(\"unil-file-heart\", '\\ueaf8'),\n    FILE_IMPORT(\"unil-file-import\", '\\ueaf9'),\n    FILE_INFO_ALT(\"unil-file-info-alt\", '\\ueafa'),\n    FILE_LANDSCAPE(\"unil-file-landscape\", '\\ueafc'),\n    FILE_LANDSCAPE_ALT(\"unil-file-landscape-alt\", '\\ueafb'),\n    FILE_LANSCAPE_SLASH(\"unil-file-lanscape-slash\", '\\ueafd'),\n    FILE_LOCK_ALT(\"unil-file-lock-alt\", '\\ueafe'),\n    FILE_MEDICAL(\"unil-file-medical\", '\\ueb00'),\n    FILE_MEDICAL_ALT(\"unil-file-medical-alt\", '\\ueaff'),\n    FILE_MINUS(\"unil-file-minus\", '\\ueb02'),\n    FILE_MINUS_ALT(\"unil-file-minus-alt\", '\\ueb01'),\n    FILE_NETWORK(\"unil-file-network\", '\\ueb03'),\n    FILE_PLUS(\"unil-file-plus\", '\\ueb05'),\n    FILE_PLUS_ALT(\"unil-file-plus-alt\", '\\ueb04'),\n    FILE_QUESTION(\"unil-file-question\", '\\ueb07'),\n    FILE_QUESTION_ALT(\"unil-file-question-alt\", '\\ueb06'),\n    FILE_REDO_ALT(\"unil-file-redo-alt\", '\\ueb08'),\n    FILE_SEARCH_ALT(\"unil-file-search-alt\", '\\ueb09'),\n    FILE_SHARE_ALT(\"unil-file-share-alt\", '\\ueb0a'),\n    FILE_SHIELD_ALT(\"unil-file-shield-alt\", '\\ueb0b'),\n    FILE_SLASH(\"unil-file-slash\", '\\ueb0c'),\n    FILE_TIMES(\"unil-file-times\", '\\ueb0e'),\n    FILE_TIMES_ALT(\"unil-file-times-alt\", '\\ueb0d'),\n    FILE_UPLOAD(\"unil-file-upload\", '\\ueb10'),\n    FILE_UPLOAD_ALT(\"unil-file-upload-alt\", '\\ueb0f'),\n    FILM(\"unil-film\", '\\ueb14'),\n    FILTER(\"unil-filter\", '\\ueb16'),\n    FILTER_SLASH(\"unil-filter-slash\", '\\ueb15'),\n    FIRE(\"unil-fire\", '\\ueb17'),\n    FLASK(\"unil-flask\", '\\ueb19'),\n    FLASK_POTION(\"unil-flask-potion\", '\\ueb18'),\n    FLIP_H(\"unil-flip-h\", '\\ueb1b'),\n    FLIP_H_ALT(\"unil-flip-h-alt\", '\\ueb1a'),\n    FLIP_V(\"unil-flip-v\", '\\ueb1d'),\n    FLIP_V_ALT(\"unil-flip-v-alt\", '\\ueb1c'),\n    FLOWER(\"unil-flower\", '\\ueb1e'),\n    FOCUS(\"unil-focus\", '\\ueb21'),\n    FOCUS_ADD(\"unil-focus-add\", '\\ueb1f'),\n    FOCUS_TARGET(\"unil-focus-target\", '\\ueb20'),\n    FOLDER(\"unil-folder\", '\\ueb31'),\n    FOLDER_CHECK(\"unil-folder-check\", '\\ueb22'),\n    FOLDER_DOWNLOAD(\"unil-folder-download\", '\\ueb23'),\n    FOLDER_EXCLAMATION(\"unil-folder-exclamation\", '\\ueb24'),\n    FOLDER_HEART(\"unil-folder-heart\", '\\ueb25'),\n    FOLDER_INFO(\"unil-folder-info\", '\\ueb26'),\n    FOLDER_LOCK(\"unil-folder-lock\", '\\ueb27'),\n    FOLDER_MEDICAL(\"unil-folder-medical\", '\\ueb28'),\n    FOLDER_MINUS(\"unil-folder-minus\", '\\ueb29'),\n    FOLDER_NETWORK(\"unil-folder-network\", '\\ueb2a'),\n    FOLDER_OPEN(\"unil-folder-open\", '\\ueb2b'),\n    FOLDER_PLUS(\"unil-folder-plus\", '\\ueb2c'),\n    FOLDER_QUESTION(\"unil-folder-question\", '\\ueb2d'),\n    FOLDER_SLASH(\"unil-folder-slash\", '\\ueb2e'),\n    FOLDER_TIMES(\"unil-folder-times\", '\\ueb2f'),\n    FOLDER_UPLOAD(\"unil-folder-upload\", '\\ueb30'),\n    FONT(\"unil-font\", '\\ueb32'),\n    FOOTBALL(\"unil-football\", '\\ueb35'),\n    FOOTBALL_AMERICAN(\"unil-football-american\", '\\ueb33'),\n    FOOTBALL_BALL(\"unil-football-ball\", '\\ueb34'),\n    FORECASTCLOUD_MOON_TEAR(\"unil-forecastcloud-moon-tear\", '\\ueb36'),\n    FORWADED_CALL(\"unil-forwaded-call\", '\\ueb37'),\n    FORWARD(\"unil-forward\", '\\ueb38'),\n    FROWN(\"unil-frown\", '\\ueb39'),\n    GAME_STRUCTURE(\"unil-game-structure\", '\\ueb3a'),\n    GIFT(\"unil-gift\", '\\ueb3b'),\n    GITHUB(\"unil-github\", '\\ueb3d'),\n    GITHUB_ALT(\"unil-github-alt\", '\\ueb3c'),\n    GLASS(\"unil-glass\", '\\ueb42'),\n    GLASS_MARTINI(\"unil-glass-martini\", '\\ueb40'),\n    GLASS_MARTINI_ALT(\"unil-glass-martini-alt\", '\\ueb3f'),\n    GLASS_MARTINI_ALT_SLASH(\"unil-glass-martini-alt-slash\", '\\ueb3e'),\n    GLASS_TEA(\"unil-glass-tea\", '\\ueb41'),\n    GLOBE(\"unil-globe\", '\\ueb43'),\n    GOLD(\"unil-gold\", '\\ueb44'),\n    GOLF_BALL(\"unil-golf-ball\", '\\ueb45'),\n    GOOGLE(\"unil-google\", '\\ueb4b'),\n    GOOGLE_DRIVE(\"unil-google-drive\", '\\ueb47'),\n    GOOGLE_DRIVE_ALT(\"unil-google-drive-alt\", '\\ueb46'),\n    GOOGLE_HANGOUTS(\"unil-google-hangouts\", '\\ueb49'),\n    GOOGLE_HANGOUTS_ALT(\"unil-google-hangouts-alt\", '\\ueb48'),\n    GOOGLE_PLAY(\"unil-google-play\", '\\ueb4a'),\n    GRADUATION_CAP(\"unil-graduation-cap\", '\\ueb4c'),\n    GRAPH_BAR(\"unil-graph-bar\", '\\ueb4d'),\n    GRID(\"unil-grid\", '\\ueb4e'),\n    GRIDS(\"unil-grids\", '\\ueb4f'),\n    GRIN(\"unil-grin\", '\\ueb52'),\n    GRIN_TONGUE_WINK(\"unil-grin-tongue-wink\", '\\ueb51'),\n    GRIN_TONGUE_WINK_ALT(\"unil-grin-tongue-wink-alt\", '\\ueb50'),\n    GRIP_HORIZONTAL_LINE(\"unil-grip-horizontal-line\", '\\ueb53'),\n    HARD_HAT(\"unil-hard-hat\", '\\ueb54'),\n    HDD(\"unil-hdd\", '\\ueb55'),\n    HEADPHONES(\"unil-headphones\", '\\ueb5b'),\n    HEADPHONES_ALT(\"unil-headphones-alt\", '\\ueb5a'),\n    HEADPHONE_SLASH(\"unil-headphone-slash\", '\\ueb59'),\n    HEAD_SIDE(\"unil-head-side\", '\\ueb58'),\n    HEAD_SIDE_COUGH(\"unil-head-side-cough\", '\\ueb56'),\n    HEAD_SIDE_MASK(\"unil-head-side-mask\", '\\ueb57'),\n    HEART(\"unil-heart\", '\\ueb61'),\n    HEARTBEAT(\"unil-heartbeat\", '\\ueb62'),\n    HEART_ALT(\"unil-heart-alt\", '\\ueb5c'),\n    HEART_BREAK(\"unil-heart-break\", '\\ueb5d'),\n    HEART_MEDICAL(\"unil-heart-medical\", '\\ueb5e'),\n    HEART_RATE(\"unil-heart-rate\", '\\ueb5f'),\n    HEART_SIGN(\"unil-heart-sign\", '\\ueb60'),\n    HINDI_TO_CHINESE(\"unil-hindi-to-chinese\", '\\ueb63'),\n    HISTORY(\"unil-history\", '\\ueb65'),\n    HISTORY_ALT(\"unil-history-alt\", '\\ueb64'),\n    HOME(\"unil-home\", '\\ueb67'),\n    HOME_ALT(\"unil-home-alt\", '\\ueb66'),\n    HORIZONTAL_ALIGN_CENTER(\"unil-horizontal-align-center\", '\\ueb68'),\n    HORIZONTAL_ALIGN_LEFT(\"unil-horizontal-align-left\", '\\ueb69'),\n    HORIZONTAL_ALIGN_RIGHT(\"unil-horizontal-align-right\", '\\ueb6a'),\n    HORIZONTAL_DISTRIBUTION_CENTER(\"unil-horizontal-distribution-center\", '\\ueb6b'),\n    HORIZONTAL_DISTRIBUTION_LEFT(\"unil-horizontal-distribution-left\", '\\ueb6c'),\n    HORIZONTAL_DISTRIBUTION_RIGHT(\"unil-horizontal-distribution-right\", '\\ueb6d'),\n    HOSPITAL(\"unil-hospital\", '\\ueb70'),\n    HOSPITAL_SQUARE_SIGN(\"unil-hospital-square-sign\", '\\ueb6e'),\n    HOSPITAL_SYMBOL(\"unil-hospital-symbol\", '\\ueb6f'),\n    HOURGLASS(\"unil-hourglass\", '\\ueb71'),\n    HOUSE_USER(\"unil-house-user\", '\\ueb72'),\n    HTML3(\"unil-html3\", '\\ueb74'),\n    HTML3_ALT(\"unil-html3-alt\", '\\ueb73'),\n    HTML5(\"unil-html5\", '\\ueb76'),\n    HTML5_ALT(\"unil-html5-alt\", '\\ueb75'),\n    HUNTING(\"unil-hunting\", '\\ueb77'),\n    IMAGE(\"unil-image\", '\\ueb8c'),\n    IMAGES(\"unil-images\", '\\ueb8d'),\n    IMAGE_ALT_SLASH(\"unil-image-alt-slash\", '\\ueb78'),\n    IMAGE_BLOCK(\"unil-image-block\", '\\ueb79'),\n    IMAGE_BROKEN(\"unil-image-broken\", '\\ueb7a'),\n    IMAGE_CHECK(\"unil-image-check\", '\\ueb7b'),\n    IMAGE_DOWNLOAD(\"unil-image-download\", '\\ueb7c'),\n    IMAGE_EDIT(\"unil-image-edit\", '\\ueb7d'),\n    IMAGE_LOCK(\"unil-image-lock\", '\\ueb7e'),\n    IMAGE_MINUS(\"unil-image-minus\", '\\ueb7f'),\n    IMAGE_PLUS(\"unil-image-plus\", '\\ueb80'),\n    IMAGE_QUESTION(\"unil-image-question\", '\\ueb81'),\n    IMAGE_REDO(\"unil-image-redo\", '\\ueb82'),\n    IMAGE_RESIZE_LANDSCAPE(\"unil-image-resize-landscape\", '\\ueb83'),\n    IMAGE_RESIZE_SQUARE(\"unil-image-resize-square\", '\\ueb84'),\n    IMAGE_SEARCH(\"unil-image-search\", '\\ueb85'),\n    IMAGE_SHARE(\"unil-image-share\", '\\ueb86'),\n    IMAGE_SHIELD(\"unil-image-shield\", '\\ueb87'),\n    IMAGE_SLASH(\"unil-image-slash\", '\\ueb88'),\n    IMAGE_TIMES(\"unil-image-times\", '\\ueb89'),\n    IMAGE_UPLOAD(\"unil-image-upload\", '\\ueb8a'),\n    IMAGE_V(\"unil-image-v\", '\\ueb8b'),\n    IMPORT(\"unil-import\", '\\ueb8e'),\n    INBOX(\"unil-inbox\", '\\ueb8f'),\n    INCOMING_CALL(\"unil-incoming-call\", '\\ueb90'),\n    INFO(\"unil-info\", '\\ueb92'),\n    INFO_CIRCLE(\"unil-info-circle\", '\\ueb91'),\n    INSTAGRAM(\"unil-instagram\", '\\ueb94'),\n    INSTAGRAM_ALT(\"unil-instagram-alt\", '\\ueb93'),\n    INTERCOM(\"unil-intercom\", '\\ueb96'),\n    INTERCOM_ALT(\"unil-intercom-alt\", '\\ueb95'),\n    INVOICE(\"unil-invoice\", '\\ueb97'),\n    ITALIC(\"unil-italic\", '\\ueb98'),\n    JACKHAMMER(\"unil-jackhammer\", '\\ueb99'),\n    JAVA_SCRIPT(\"unil-java-script\", '\\ueb9a'),\n    KAYAK(\"unil-kayak\", '\\ueb9b'),\n    KEYBOARD(\"unil-keyboard\", '\\ueba1'),\n    KEYBOARD_ALT(\"unil-keyboard-alt\", '\\ueb9e'),\n    KEYBOARD_HIDE(\"unil-keyboard-hide\", '\\ueb9f'),\n    KEYBOARD_SHOW(\"unil-keyboard-show\", '\\ueba0'),\n    KEYHOLE_CIRCLE(\"unil-keyhole-circle\", '\\ueba2'),\n    KEYHOLE_SQUARE(\"unil-keyhole-square\", '\\ueba4'),\n    KEYHOLE_SQUARE_FULL(\"unil-keyhole-square-full\", '\\ueba3'),\n    KEY_SKELETON(\"unil-key-skeleton\", '\\ueb9d'),\n    KEY_SKELETON_ALT(\"unil-key-skeleton-alt\", '\\ueb9c'),\n    KID(\"unil-kid\", '\\ueba5'),\n    LABEL(\"unil-label\", '\\ueba7'),\n    LABEL_ALT(\"unil-label-alt\", '\\ueba6'),\n    LAMP(\"unil-lamp\", '\\ueba8'),\n    LANGUAGE(\"unil-language\", '\\ueba9'),\n    LAPTOP(\"unil-laptop\", '\\uebac'),\n    LAPTOP_CLOUD(\"unil-laptop-cloud\", '\\uebaa'),\n    LAPTOP_CONNECTION(\"unil-laptop-connection\", '\\uebab'),\n    LAUGHING(\"unil-laughing\", '\\uebad'),\n    LAYERS(\"unil-layers\", '\\uebb2'),\n    LAYERS_ALT(\"unil-layers-alt\", '\\uebb0'),\n    LAYERS_SLASH(\"unil-layers-slash\", '\\uebb1'),\n    LAYER_GROUP(\"unil-layer-group\", '\\uebaf'),\n    LAYER_GROUP_SLASH(\"unil-layer-group-slash\", '\\uebae'),\n    LEFT_ARROW_FROM_LEFT(\"unil-left-arrow-from-left\", '\\uebb3'),\n    LEFT_ARROW_TO_LEFT(\"unil-left-arrow-to-left\", '\\uebb4'),\n    LEFT_INDENT(\"unil-left-indent\", '\\uebb6'),\n    LEFT_INDENT_ALT(\"unil-left-indent-alt\", '\\uebb5'),\n    LEFT_TO_RIGHT_TEXT_DIRECTION(\"unil-left-to-right-text-direction\", '\\uebb7'),\n    LETTER_CHINESE_A(\"unil-letter-chinese-a\", '\\uebb8'),\n    LETTER_ENGLISH_A(\"unil-letter-english-a\", '\\uebb9'),\n    LETTER_HINDI_A(\"unil-letter-hindi-a\", '\\uebba'),\n    LETTER_JAPANESE_A(\"unil-letter-japanese-a\", '\\uebbb'),\n    LIFE_RING(\"unil-life-ring\", '\\uebbc'),\n    LIGHTBULB(\"unil-lightbulb\", '\\uebbe'),\n    LIGHTBULB_ALT(\"unil-lightbulb-alt\", '\\uebbd'),\n    LINE(\"unil-line\", '\\uebc1'),\n    LINE_ALT(\"unil-line-alt\", '\\uebbf'),\n    LINE_SPACING(\"unil-line-spacing\", '\\uebc0'),\n    LINK(\"unil-link\", '\\uebc6'),\n    LINKEDIN(\"unil-linkedin\", '\\uebc8'),\n    LINKEDIN_ALT(\"unil-linkedin-alt\", '\\uebc7'),\n    LINK_ADD(\"unil-link-add\", '\\uebc2'),\n    LINK_ALT(\"unil-link-alt\", '\\uebc3'),\n    LINK_BROKEN(\"unil-link-broken\", '\\uebc4'),\n    LINK_H(\"unil-link-h\", '\\uebc5'),\n    LIRA_SIGN(\"unil-lira-sign\", '\\uebc9'),\n    LIST_UI_ALT(\"unil-list-ui-alt\", '\\uebca'),\n    LIST_UL(\"unil-list-ul\", '\\uebcb'),\n    LOCATION_ARROW(\"unil-location-arrow\", '\\uebcd'),\n    LOCATION_ARROW_ALT(\"unil-location-arrow-alt\", '\\uebcc'),\n    LOCATION_PIN_ALT(\"unil-location-pin-alt\", '\\uebce'),\n    LOCATION_POINT(\"unil-location-point\", '\\uebcf'),\n    LOCK(\"unil-lock\", '\\uebd4'),\n    LOCK_ACCESS(\"unil-lock-access\", '\\uebd0'),\n    LOCK_ALT(\"unil-lock-alt\", '\\uebd1'),\n    LOCK_OPEN_ALT(\"unil-lock-open-alt\", '\\uebd2'),\n    LOCK_SLASH(\"unil-lock-slash\", '\\uebd3'),\n    LUGGAGE_CART(\"unil-luggage-cart\", '\\uebd5'),\n    MAILBOX(\"unil-mailbox\", '\\uebd7'),\n    MAILBOX_ALT(\"unil-mailbox-alt\", '\\uebd6'),\n    MAP(\"unil-map\", '\\uebe3'),\n    MAP_MARKER(\"unil-map-marker\", '\\uebe0'),\n    MAP_MARKER_ALT(\"unil-map-marker-alt\", '\\uebd8'),\n    MAP_MARKER_EDIT(\"unil-map-marker-edit\", '\\uebd9'),\n    MAP_MARKER_INFO(\"unil-map-marker-info\", '\\uebda'),\n    MAP_MARKER_MINUS(\"unil-map-marker-minus\", '\\uebdb'),\n    MAP_MARKER_PLUS(\"unil-map-marker-plus\", '\\uebdc'),\n    MAP_MARKER_QUESTION(\"unil-map-marker-question\", '\\uebdd'),\n    MAP_MARKER_SHIELD(\"unil-map-marker-shield\", '\\uebde'),\n    MAP_MARKER_SLASH(\"unil-map-marker-slash\", '\\uebdf'),\n    MAP_PIN(\"unil-map-pin\", '\\uebe2'),\n    MAP_PIN_ALT(\"unil-map-pin-alt\", '\\uebe1'),\n    MARS(\"unil-mars\", '\\uebe4'),\n    MASTER_CARD(\"unil-master-card\", '\\uebe5'),\n    MAXIMIZE_LEFT(\"unil-maximize-left\", '\\uebe6'),\n    MEDAL(\"unil-medal\", '\\uebe7'),\n    MEDICAL_DRIP(\"unil-medical-drip\", '\\uebe8'),\n    MEDICAL_SQUARE(\"unil-medical-square\", '\\uebea'),\n    MEDICAL_SQUARE_FULL(\"unil-medical-square-full\", '\\uebe9'),\n    MEDIUM_M(\"unil-medium-m\", '\\uebeb'),\n    MEDKIT(\"unil-medkit\", '\\uebec'),\n    MEETING_BOARD(\"unil-meeting-board\", '\\uebed'),\n    MEGAPHONE(\"unil-megaphone\", '\\uebee'),\n    MEH(\"unil-meh\", '\\uebf1'),\n    MEH_ALT(\"unil-meh-alt\", '\\uebef'),\n    MEH_CLOSED_EYE(\"unil-meh-closed-eye\", '\\uebf0'),\n    MESSAGE(\"unil-message\", '\\uebf2'),\n    METRO(\"unil-metro\", '\\uebf3'),\n    MICROPHONE(\"unil-microphone\", '\\uebf5'),\n    MICROPHONE_SLASH(\"unil-microphone-slash\", '\\uebf4'),\n    MICROSCOPE(\"unil-microscope\", '\\uebf6'),\n    MINUS(\"unil-minus\", '\\uebfb'),\n    MINUS_CIRCLE(\"unil-minus-circle\", '\\uebf7'),\n    MINUS_PATH(\"unil-minus-path\", '\\uebf8'),\n    MINUS_SQUARE(\"unil-minus-square\", '\\uebfa'),\n    MINUS_SQUARE_FULL(\"unil-minus-square-full\", '\\uebf9'),\n    MISSED_CALL(\"unil-missed-call\", '\\uebfc'),\n    MOBILE_ANDROID(\"unil-mobile-android\", '\\uebfe'),\n    MOBILE_ANDROID_ALT(\"unil-mobile-android-alt\", '\\uebfd'),\n    MOBILE_VIBRATE(\"unil-mobile-vibrate\", '\\uebff'),\n    MODEM(\"unil-modem\", '\\uec00'),\n    MONEYBAG(\"unil-moneybag\", '\\uec09'),\n    MONEYBAG_ALT(\"unil-moneybag-alt\", '\\uec08'),\n    MONEY_BILL(\"unil-money-bill\", '\\uec03'),\n    MONEY_BILL_SLASH(\"unil-money-bill-slash\", '\\uec01'),\n    MONEY_BILL_STACK(\"unil-money-bill-stack\", '\\uec02'),\n    MONEY_INSERT(\"unil-money-insert\", '\\uec04'),\n    MONEY_STACK(\"unil-money-stack\", '\\uec05'),\n    MONEY_WITHDRAW(\"unil-money-withdraw\", '\\uec06'),\n    MONEY_WITHDRAWAL(\"unil-money-withdrawal\", '\\uec07'),\n    MONITOR(\"unil-monitor\", '\\uec0b'),\n    MONITOR_HEART_RATE(\"unil-monitor-heart-rate\", '\\uec0a'),\n    MOON(\"unil-moon\", '\\uec0d'),\n    MOONSET(\"unil-moonset\", '\\uec0e'),\n    MOON_ECLIPSE(\"unil-moon-eclipse\", '\\uec0c'),\n    MOUNTAINS(\"unil-mountains\", '\\uec10'),\n    MOUNTAINS_SUN(\"unil-mountains-sun\", '\\uec0f'),\n    MOUSE(\"unil-mouse\", '\\uec13'),\n    MOUSE_ALT(\"unil-mouse-alt\", '\\uec12'),\n    MOUSE_ALT_2(\"unil-mouse-alt-2\", '\\uec11'),\n    MULTIPLY(\"unil-multiply\", '\\uec14'),\n    MUSIC(\"unil-music\", '\\uec17'),\n    MUSIC_NOTE(\"unil-music-note\", '\\uec15'),\n    MUSIC_TUNE_SLASH(\"unil-music-tune-slash\", '\\uec16'),\n    NAVIGATOR(\"unil-navigator\", '\\uec19'),\n    NERD(\"unil-nerd\", '\\uec1a'),\n    NEWSPAPER(\"unil-newspaper\", '\\uec1b'),\n    NINJA(\"unil-ninja\", '\\uec1c'),\n    NOTEBOOKS(\"unil-notebooks\", '\\uec1e'),\n    NOTES(\"unil-notes\", '\\uec1f'),\n    NO_ENTRY(\"unil-no-entry\", '\\uec1d'),\n    N_A(\"unil-n-a\", '\\uec18'),\n    OBJECT_GROUP(\"unil-object-group\", '\\uec20'),\n    OBJECT_UNGROUP(\"unil-object-ungroup\", '\\uec21'),\n    OCTAGON(\"unil-octagon\", '\\uec22'),\n    OPERA(\"unil-opera\", '\\uec24'),\n    OPERA_ALT(\"unil-opera-alt\", '\\uec23'),\n    OUTGOING_CALL(\"unil-outgoing-call\", '\\uec25'),\n    PACKAGE(\"unil-package\", '\\uec26'),\n    PADLOCK(\"unil-padlock\", '\\uec27'),\n    PAINT_TOOL(\"unil-paint-tool\", '\\uec28'),\n    PALETTE(\"unil-palette\", '\\uec29'),\n    PANEL_ADD(\"unil-panel-add\", '\\uec2a'),\n    PANORAMA_H(\"unil-panorama-h\", '\\uec2c'),\n    PANORAMA_H_ALT(\"unil-panorama-h-alt\", '\\uec2b'),\n    PANORAMA_V(\"unil-panorama-v\", '\\uec2d'),\n    PAPERCLIP(\"unil-paperclip\", '\\uec2e'),\n    PARAGRAPH(\"unil-paragraph\", '\\uec2f'),\n    PARCEL(\"unil-parcel\", '\\uec30'),\n    PARKING_CIRCLE(\"unil-parking-circle\", '\\uec31'),\n    PARKING_SQUARE(\"unil-parking-square\", '\\uec32'),\n    PATHFINDER(\"unil-pathfinder\", '\\uec34'),\n    PATHFINDER_UNITE(\"unil-pathfinder-unite\", '\\uec33'),\n    PAUSE(\"unil-pause\", '\\uec36'),\n    PAUSE_CIRCLE(\"unil-pause-circle\", '\\uec35'),\n    PAYPAL(\"unil-paypal\", '\\uec37'),\n    PEN(\"unil-pen\", '\\uec38'),\n    PENTAGON(\"unil-pentagon\", '\\uec39'),\n    PERCENTAGE(\"unil-percentage\", '\\uec3a'),\n    PHONE(\"unil-phone\", '\\uec40'),\n    PHONE_ALT(\"unil-phone-alt\", '\\uec3b'),\n    PHONE_PAUSE(\"unil-phone-pause\", '\\uec3c'),\n    PHONE_SLASH(\"unil-phone-slash\", '\\uec3d'),\n    PHONE_TIMES(\"unil-phone-times\", '\\uec3e'),\n    PHONE_VOLUME(\"unil-phone-volume\", '\\uec3f'),\n    PICTURE(\"unil-picture\", '\\uec41'),\n    PIZZA_SLICE(\"unil-pizza-slice\", '\\uec42'),\n    PLANE(\"unil-plane\", '\\uec46'),\n    PLANE_ARRIVAL(\"unil-plane-arrival\", '\\uec43'),\n    PLANE_DEPARTURE(\"unil-plane-departure\", '\\uec44'),\n    PLANE_FLY(\"unil-plane-fly\", '\\uec45'),\n    PLAY(\"unil-play\", '\\uec48'),\n    PLAY_CIRCLE(\"unil-play-circle\", '\\uec47'),\n    PLUG(\"unil-plug\", '\\uec49'),\n    PLUS(\"unil-plus\", '\\uec4c'),\n    PLUS_0(\"unil-plus-0\", '\\ue900'),\n    PLUS_10(\"unil-plus-10\", '\\ue903'),\n    PLUS_12(\"unil-plus-12\", '\\ue904'),\n    PLUS_13(\"unil-plus-13\", '\\ue905'),\n    PLUS_16(\"unil-plus-16\", '\\ue906'),\n    PLUS_17(\"unil-plus-17\", '\\ue907'),\n    PLUS_18(\"unil-plus-18\", '\\ue908'),\n    PLUS_21(\"unil-plus-21\", '\\ue909'),\n    PLUS_3(\"unil-plus-3\", '\\ue901'),\n    PLUS_6(\"unil-plus-6\", '\\ue902'),\n    PLUS_CIRCLE(\"unil-plus-circle\", '\\uec4a'),\n    PLUS_SQUARE(\"unil-plus-square\", '\\uec4b'),\n    PODIUM(\"unil-podium\", '\\uec4d'),\n    POLYGON(\"unil-polygon\", '\\uec4e'),\n    POSTCARD(\"unil-postcard\", '\\uec50'),\n    POST_STAMP(\"unil-post-stamp\", '\\uec4f'),\n    POUND(\"unil-pound\", '\\uec52'),\n    POUND_CIRCLE(\"unil-pound-circle\", '\\uec51'),\n    POWER(\"unil-power\", '\\uec53'),\n    PRESCRIPTION_BOTTLE(\"unil-prescription-bottle\", '\\uec54'),\n    PRESENTATION(\"unil-presentation\", '\\uec5d'),\n    PRESENTATION_CHECK(\"unil-presentation-check\", '\\uec55'),\n    PRESENTATION_EDIT(\"unil-presentation-edit\", '\\uec56'),\n    PRESENTATION_LINE(\"unil-presentation-line\", '\\uec57'),\n    PRESENTATION_LINES_ALT(\"unil-presentation-lines-alt\", '\\uec58'),\n    PRESENTATION_MINUS(\"unil-presentation-minus\", '\\uec59'),\n    PRESENTATION_PLAY(\"unil-presentation-play\", '\\uec5a'),\n    PRESENTATION_PLUS(\"unil-presentation-plus\", '\\uec5b'),\n    PRESENTATION_TIMES(\"unil-presentation-times\", '\\uec5c'),\n    PREVIOUS(\"unil-previous\", '\\uec5e'),\n    PRICETAG_ALT(\"unil-pricetag-alt\", '\\uec5f'),\n    PRINT(\"unil-print\", '\\uec61'),\n    PRINT_SLASH(\"unil-print-slash\", '\\uec60'),\n    PROCESS(\"unil-process\", '\\uec62'),\n    PROCESSOR(\"unil-processor\", '\\uec63'),\n    PROGRAMMING_LANGUAGE(\"unil-programming-language\", '\\uec64'),\n    PUMP(\"unil-pump\", '\\uec65'),\n    PUZZLE_PIECE(\"unil-puzzle-piece\", '\\uec66'),\n    QRCODE_SCAN(\"unil-qrcode-scan\", '\\uec67'),\n    QUESTION(\"unil-question\", '\\uec69'),\n    QUESTION_CIRCLE(\"unil-question-circle\", '\\uec68'),\n    RAINBOW(\"unil-rainbow\", '\\uec6a'),\n    RAINDROPS(\"unil-raindrops\", '\\uec6c'),\n    RAINDROPS_ALT(\"unil-raindrops-alt\", '\\uec6b'),\n    REACT(\"unil-react\", '\\uec6d'),\n    RECEIPT(\"unil-receipt\", '\\uec6f'),\n    RECEIPT_ALT(\"unil-receipt-alt\", '\\uec6e'),\n    RECORD_AUDIO(\"unil-record-audio\", '\\uec70'),\n    REDDIT_ALIEN_ALT(\"unil-reddit-alien-alt\", '\\uec71'),\n    REDO(\"unil-redo\", '\\uec72'),\n    REFRESH(\"unil-refresh\", '\\uec73'),\n    REGISTERED(\"unil-registered\", '\\uec74'),\n    REPEAT(\"unil-repeat\", '\\uec75'),\n    RESTAURANT(\"unil-restaurant\", '\\uec76'),\n    RIGHT_INDENT_ALT(\"unil-right-indent-alt\", '\\uec77'),\n    RIGHT_TO_LEFT_TEXT_DIRECTION(\"unil-right-to-left-text-direction\", '\\uec78'),\n    ROBOT(\"unil-robot\", '\\uec79'),\n    ROCKET(\"unil-rocket\", '\\uec7a'),\n    ROPE_WAY(\"unil-rope-way\", '\\uec7b'),\n    ROTATE_360(\"unil-rotate-360\", '\\uec7c'),\n    RSS(\"unil-rss\", '\\uec7f'),\n    RSS_ALT(\"unil-rss-alt\", '\\uec7d'),\n    RSS_INTERFACE(\"unil-rss-interface\", '\\uec7e'),\n    RULER(\"unil-ruler\", '\\uec81'),\n    RULER_COMBINED(\"unil-ruler-combined\", '\\uec80'),\n    RUPEE_SIGN(\"unil-rupee-sign\", '\\uec82'),\n    SAD(\"unil-sad\", '\\uec87'),\n    SAD_CRY(\"unil-sad-cry\", '\\uec83'),\n    SAD_CRYING(\"unil-sad-crying\", '\\uec84'),\n    SAD_DIZZY(\"unil-sad-dizzy\", '\\uec85'),\n    SAD_SQUINT(\"unil-sad-squint\", '\\uec86'),\n    SANITIZER(\"unil-sanitizer\", '\\uec89'),\n    SANITIZER_ALT(\"unil-sanitizer-alt\", '\\uec88'),\n    SAVE(\"unil-save\", '\\uec8a'),\n    SCALING_LEFT(\"unil-scaling-left\", '\\uec8b'),\n    SCALING_RIGHT(\"unil-scaling-right\", '\\uec8c'),\n    SCENERY(\"unil-scenery\", '\\uec8d'),\n    SCHEDULE(\"unil-schedule\", '\\uec8e'),\n    SCREW(\"unil-screw\", '\\uec8f'),\n    SCROLL(\"unil-scroll\", '\\uec91'),\n    SCROLL_H(\"unil-scroll-h\", '\\uec90'),\n    SEARCH(\"unil-search\", '\\uec95'),\n    SEARCH_ALT(\"unil-search-alt\", '\\uec92'),\n    SEARCH_MINUS(\"unil-search-minus\", '\\uec93'),\n    SEARCH_PLUS(\"unil-search-plus\", '\\uec94'),\n    SELFIE(\"unil-selfie\", '\\uec96'),\n    SERVER(\"unil-server\", '\\uec9b'),\n    SERVERS(\"unil-servers\", '\\uec9c'),\n    SERVER_ALT(\"unil-server-alt\", '\\uec97'),\n    SERVER_CONNECTION(\"unil-server-connection\", '\\uec98'),\n    SERVER_NETWORK(\"unil-server-network\", '\\uec9a'),\n    SERVER_NETWORK_ALT(\"unil-server-network-alt\", '\\uec99'),\n    SERVICEMARK(\"unil-servicemark\", '\\uec9d'),\n    SETTING(\"unil-setting\", '\\uec9e'),\n    SHARE(\"unil-share\", '\\ueca0'),\n    SHARE_ALT(\"unil-share-alt\", '\\uec9f'),\n    SHIELD(\"unil-shield\", '\\ueca6'),\n    SHIELD_CHECK(\"unil-shield-check\", '\\ueca1'),\n    SHIELD_EXCLAMATION(\"unil-shield-exclamation\", '\\ueca2'),\n    SHIELD_PLUS(\"unil-shield-plus\", '\\ueca3'),\n    SHIELD_QUESTION(\"unil-shield-question\", '\\ueca4'),\n    SHIELD_SLASH(\"unil-shield-slash\", '\\ueca5'),\n    SHIP(\"unil-ship\", '\\ueca7'),\n    SHOP(\"unil-shop\", '\\ueca8'),\n    SHOPPING_BAG(\"unil-shopping-bag\", '\\ueca9'),\n    SHOPPING_BASKET(\"unil-shopping-basket\", '\\uecaa'),\n    SHOPPING_CART(\"unil-shopping-cart\", '\\uecac'),\n    SHOPPING_CART_ALT(\"unil-shopping-cart-alt\", '\\uecab'),\n    SHOVEL(\"unil-shovel\", '\\uecad'),\n    SHRINK(\"unil-shrink\", '\\uecae'),\n    SHUFFLE(\"unil-shuffle\", '\\uecaf'),\n    SHUTTER(\"unil-shutter\", '\\uecb1'),\n    SHUTTER_ALT(\"unil-shutter-alt\", '\\uecb0'),\n    SICK(\"unil-sick\", '\\uecb2'),\n    SIGMA(\"unil-sigma\", '\\uecb3'),\n    SIGNAL(\"unil-signal\", '\\uecbb'),\n    SIGNAL_ALT(\"unil-signal-alt\", '\\uecba'),\n    SIGNAL_ALT_3(\"unil-signal-alt-3\", '\\uecb9'),\n    SIGNIN(\"unil-signin\", '\\uecbc'),\n    SIGNOUT(\"unil-signout\", '\\uecbd'),\n    SIGN_ALT(\"unil-sign-alt\", '\\uecb4'),\n    SIGN_IN_ALT(\"unil-sign-in-alt\", '\\uecb5'),\n    SIGN_LEFT(\"unil-sign-left\", '\\uecb6'),\n    SIGN_OUT_ALT(\"unil-sign-out-alt\", '\\uecb7'),\n    SIGN_RIGHT(\"unil-sign-right\", '\\uecb8'),\n    SILENCE(\"unil-silence\", '\\uecbe'),\n    SILENT_SQUINT(\"unil-silent-squint\", '\\uecbf'),\n    SIM_CARD(\"unil-sim-card\", '\\uecc0'),\n    SITEMAP(\"unil-sitemap\", '\\uecc1'),\n    SKIP_FORWARD(\"unil-skip-forward\", '\\uecc4'),\n    SKIP_FORWARD_ALT(\"unil-skip-forward-alt\", '\\uecc2'),\n    SKIP_FORWARD_CIRCLE(\"unil-skip-forward-circle\", '\\uecc3'),\n    SKYPE(\"unil-skype\", '\\uecc6'),\n    SKYPE_ALT(\"unil-skype-alt\", '\\uecc5'),\n    SLACK(\"unil-slack\", '\\uecc8'),\n    SLACK_ALT(\"unil-slack-alt\", '\\uecc7'),\n    SLIDERS_V(\"unil-sliders-v\", '\\ueccc'),\n    SLIDERS_V_ALT(\"unil-sliders-v-alt\", '\\ueccb'),\n    SLIDER_H(\"unil-slider-h\", '\\uecca'),\n    SLIDER_H_RANGE(\"unil-slider-h-range\", '\\uecc9'),\n    SMILE(\"unil-smile\", '\\uecd3'),\n    SMILE_BEAM(\"unil-smile-beam\", '\\ueccd'),\n    SMILE_DIZZY(\"unil-smile-dizzy\", '\\uecce'),\n    SMILE_SQUINT_WINK(\"unil-smile-squint-wink\", '\\uecd0'),\n    SMILE_SQUINT_WINK_ALT(\"unil-smile-squint-wink-alt\", '\\ueccf'),\n    SMILE_WINK(\"unil-smile-wink\", '\\uecd2'),\n    SMILE_WINK_ALT(\"unil-smile-wink-alt\", '\\uecd1'),\n    SNAPCHAT_ALT(\"unil-snapchat-alt\", '\\uecd4'),\n    SNAPCHAT_GHOST(\"unil-snapchat-ghost\", '\\uecd5'),\n    SNAPCHAT_SQUARE(\"unil-snapchat-square\", '\\uecd6'),\n    SNOWFLAKE(\"unil-snowflake\", '\\uecd9'),\n    SNOWFLAKE_ALT(\"unil-snowflake-alt\", '\\uecd8'),\n    SNOW_FLAKE(\"unil-snow-flake\", '\\uecd7'),\n    SOCIAL_DISTANCING(\"unil-social-distancing\", '\\uecda'),\n    SORT(\"unil-sort\", '\\uecdd'),\n    SORTING(\"unil-sorting\", '\\uecde'),\n    SORT_AMOUNT_DOWN(\"unil-sort-amount-down\", '\\uecdb'),\n    SORT_AMOUNT_UP(\"unil-sort-amount-up\", '\\uecdc'),\n    SPACE_KEY(\"unil-space-key\", '\\uecdf'),\n    SPADE(\"unil-spade\", '\\uece0'),\n    SPERMS(\"unil-sperms\", '\\uece1'),\n    SPIN(\"unil-spin\", '\\uece2'),\n    SQUARE(\"unil-square\", '\\uece5'),\n    SQUARE_FULL(\"unil-square-full\", '\\uece3'),\n    SQUARE_SHAPE(\"unil-square-shape\", '\\uece4'),\n    SQUINT(\"unil-squint\", '\\uece6'),\n    STAR(\"unil-star\", '\\uece8'),\n    STAR_HALF_ALT(\"unil-star-half-alt\", '\\uece7'),\n    STEP_BACKWARD(\"unil-step-backward\", '\\ueceb'),\n    STEP_BACKWARD_ALT(\"unil-step-backward-alt\", '\\uece9'),\n    STEP_BACKWARD_CIRCLE(\"unil-step-backward-circle\", '\\uecea'),\n    STEP_FORWARD(\"unil-step-forward\", '\\uecec'),\n    STETHOSCOPE(\"unil-stethoscope\", '\\uecee'),\n    STETHOSCOPE_ALT(\"unil-stethoscope-alt\", '\\ueced'),\n    STOPWATCH(\"unil-stopwatch\", '\\uecf1'),\n    STOPWATCH_SLASH(\"unil-stopwatch-slash\", '\\uecf0'),\n    STOP_CIRCLE(\"unil-stop-circle\", '\\uecef'),\n    STORE(\"unil-store\", '\\uecf4'),\n    STORE_ALT(\"unil-store-alt\", '\\uecf2'),\n    STORE_SLASH(\"unil-store-slash\", '\\uecf3'),\n    STREERING(\"unil-streering\", '\\uecf5'),\n    STRETCHER(\"unil-stretcher\", '\\uecf6'),\n    SUBJECT(\"unil-subject\", '\\uecf7'),\n    SUBWAY(\"unil-subway\", '\\uecf9'),\n    SUBWAY_ALT(\"unil-subway-alt\", '\\uecf8'),\n    SUITCASE(\"unil-suitcase\", '\\uecfb'),\n    SUITCASE_ALT(\"unil-suitcase-alt\", '\\uecfa'),\n    SUN(\"unil-sun\", '\\uecfc'),\n    SUNSET(\"unil-sunset\", '\\uecfd'),\n    SURPRISE(\"unil-surprise\", '\\uecfe'),\n    SWATCHBOOK(\"unil-swatchbook\", '\\uecff'),\n    SWIGGY(\"unil-swiggy\", '\\ued00'),\n    SWIMMER(\"unil-swimmer\", '\\ued01'),\n    SYNC(\"unil-sync\", '\\ued04'),\n    SYNC_EXCLAMATION(\"unil-sync-exclamation\", '\\ued02'),\n    SYNC_SLASH(\"unil-sync-slash\", '\\ued03'),\n    SYRINGE(\"unil-syringe\", '\\ued05'),\n    TABLE(\"unil-table\", '\\ued07'),\n    TABLET(\"unil-tablet\", '\\ued08'),\n    TABLETS(\"unil-tablets\", '\\ued09'),\n    TABLE_TENNIS(\"unil-table-tennis\", '\\ued06'),\n    TACHOMETER_FAST(\"unil-tachometer-fast\", '\\ued0b'),\n    TACHOMETER_FAST_ALT(\"unil-tachometer-fast-alt\", '\\ued0a'),\n    TAG(\"unil-tag\", '\\ued0d'),\n    TAG_ALT(\"unil-tag-alt\", '\\ued0c'),\n    TAPE(\"unil-tape\", '\\ued0e'),\n    TAXI(\"unil-taxi\", '\\ued0f'),\n    TEAR(\"unil-tear\", '\\ued10'),\n    TELEGRAM(\"unil-telegram\", '\\ued12'),\n    TELEGRAM_ALT(\"unil-telegram-alt\", '\\ued11'),\n    TELESCOPE(\"unil-telescope\", '\\ued13'),\n    TEMPERATURE(\"unil-temperature\", '\\ued1a'),\n    TEMPERATURE_EMPTY(\"unil-temperature-empty\", '\\ued14'),\n    TEMPERATURE_HALF(\"unil-temperature-half\", '\\ued15'),\n    TEMPERATURE_MINUS(\"unil-temperature-minus\", '\\ued16'),\n    TEMPERATURE_PLUS(\"unil-temperature-plus\", '\\ued17'),\n    TEMPERATURE_QUARTER(\"unil-temperature-quarter\", '\\ued18'),\n    TEMPERATURE_THREE_QUARTER(\"unil-temperature-three-quarter\", '\\ued19'),\n    TENNIS_BALL(\"unil-tennis-ball\", '\\ued1b'),\n    TEXT(\"unil-text\", '\\ued1f'),\n    TEXT_FIELDS(\"unil-text-fields\", '\\ued1c'),\n    TEXT_SIZE(\"unil-text-size\", '\\ued1d'),\n    TEXT_STRIKE_THROUGH(\"unil-text-strike-through\", '\\ued1e'),\n    TH(\"unil-th\", '\\ued22'),\n    THERMOMETER(\"unil-thermometer\", '\\ued23'),\n    THUMBS_DOWN(\"unil-thumbs-down\", '\\ued24'),\n    THUMBS_UP(\"unil-thumbs-up\", '\\ued25'),\n    THUNDERSTORM(\"unil-thunderstorm\", '\\ued28'),\n    THUNDERSTORM_MOON(\"unil-thunderstorm-moon\", '\\ued26'),\n    THUNDERSTORM_SUN(\"unil-thunderstorm-sun\", '\\ued27'),\n    TH_LARGE(\"unil-th-large\", '\\ued20'),\n    TH_SLASH(\"unil-th-slash\", '\\ued21'),\n    TICKET(\"unil-ticket\", '\\ued29'),\n    TIMES(\"unil-times\", '\\ued2c'),\n    TIMES_CIRCLE(\"unil-times-circle\", '\\ued2a'),\n    TIMES_SQUARE(\"unil-times-square\", '\\ued2b'),\n    TOGGLE_OFF(\"unil-toggle-off\", '\\ued2d'),\n    TOGGLE_ON(\"unil-toggle-on\", '\\ued2e'),\n    TOILET_PAPER(\"unil-toilet-paper\", '\\ued2f'),\n    TOP_ARROW_FROM_TOP(\"unil-top-arrow-from-top\", '\\ued30'),\n    TOP_ARROW_TO_TOP(\"unil-top-arrow-to-top\", '\\ued31'),\n    TORNADO(\"unil-tornado\", '\\ued32'),\n    TRADEMARK(\"unil-trademark\", '\\ued34'),\n    TRADEMARK_CIRCLE(\"unil-trademark-circle\", '\\ued33'),\n    TRAFFIC_BARRIER(\"unil-traffic-barrier\", '\\ued35'),\n    TRAFFIC_LIGHT(\"unil-traffic-light\", '\\ued36'),\n    TRANSACTION(\"unil-transaction\", '\\ued37'),\n    TRASH(\"unil-trash\", '\\ued39'),\n    TRASH_ALT(\"unil-trash-alt\", '\\ued38'),\n    TREES(\"unil-trees\", '\\ued3a'),\n    TRIANGLE(\"unil-triangle\", '\\ued3b'),\n    TROPHY(\"unil-trophy\", '\\ued3c'),\n    TROWEL(\"unil-trowel\", '\\ued3d'),\n    TRUCK(\"unil-truck\", '\\ued3f'),\n    TRUCK_LOADING(\"unil-truck-loading\", '\\ued3e'),\n    TUMBLR(\"unil-tumblr\", '\\ued42'),\n    TUMBLR_ALT(\"unil-tumblr-alt\", '\\ued40'),\n    TUMBLR_SQUARE(\"unil-tumblr-square\", '\\ued41'),\n    TV_RETRO(\"unil-tv-retro\", '\\ued44'),\n    TV_RETRO_SLASH(\"unil-tv-retro-slash\", '\\ued43'),\n    TWITTER(\"unil-twitter\", '\\ued46'),\n    TWITTER_ALT(\"unil-twitter-alt\", '\\ued45'),\n    UMBRELLA(\"unil-umbrella\", '\\ued47'),\n    UNAMUSED(\"unil-unamused\", '\\ued48'),\n    UNDERLINE(\"unil-underline\", '\\ued49'),\n    UNIVERSITY(\"unil-university\", '\\ued4a'),\n    UNLOCK(\"unil-unlock\", '\\ued4c'),\n    UNLOCK_ALT(\"unil-unlock-alt\", '\\ued4b'),\n    UPLOAD(\"unil-upload\", '\\ued4e'),\n    UPLOAD_ALT(\"unil-upload-alt\", '\\ued4d'),\n    USD_CIRCLE(\"unil-usd-circle\", '\\ued4f'),\n    USD_SQUARE(\"unil-usd-square\", '\\ued50'),\n    USER(\"unil-user\", '\\ued5c'),\n    USERS_ALT(\"unil-users-alt\", '\\ued5d'),\n    USER_ARROWS(\"unil-user-arrows\", '\\ued51'),\n    USER_CHECK(\"unil-user-check\", '\\ued52'),\n    USER_CIRCLE(\"unil-user-circle\", '\\ued53'),\n    USER_EXCLAMATION(\"unil-user-exclamation\", '\\ued54'),\n    USER_LOCATION(\"unil-user-location\", '\\ued55'),\n    USER_MD(\"unil-user-md\", '\\ued56'),\n    USER_MINUS(\"unil-user-minus\", '\\ued57'),\n    USER_NURSE(\"unil-user-nurse\", '\\ued58'),\n    USER_PLUS(\"unil-user-plus\", '\\ued59'),\n    USER_SQUARE(\"unil-user-square\", '\\ued5a'),\n    USER_TIMES(\"unil-user-times\", '\\ued5b'),\n    UTENSILS(\"unil-utensils\", '\\ued5f'),\n    UTENSILS_ALT(\"unil-utensils-alt\", '\\ued5e'),\n    VECTOR_SQUARE(\"unil-vector-square\", '\\ued61'),\n    VECTOR_SQUARE_ALT(\"unil-vector-square-alt\", '\\ued60'),\n    VENUS(\"unil-venus\", '\\ued62'),\n    VERTICAL_ALIGN_BOTTOM(\"unil-vertical-align-bottom\", '\\ued63'),\n    VERTICAL_ALIGN_CENTER(\"unil-vertical-align-center\", '\\ued64'),\n    VERTICAL_ALIGN_TOP(\"unil-vertical-align-top\", '\\ued65'),\n    VERTICAL_DISTRIBUTE_BOTTOM(\"unil-vertical-distribute-bottom\", '\\ued66'),\n    VERTICAL_DISTRIBUTION_CENTER(\"unil-vertical-distribution-center\", '\\ued67'),\n    VERTICAL_DISTRIBUTION_TOP(\"unil-vertical-distribution-top\", '\\ued68'),\n    VIDEO(\"unil-video\", '\\ued6b'),\n    VIDEO_QUESTION(\"unil-video-question\", '\\ued69'),\n    VIDEO_SLASH(\"unil-video-slash\", '\\ued6a'),\n    VIRUS_SLASH(\"unil-virus-slash\", '\\ued6c'),\n    VISUAL_STUDIO(\"unil-visual-studio\", '\\ued6d'),\n    VK(\"unil-vk\", '\\ued6f'),\n    VK_ALT(\"unil-vk-alt\", '\\ued6e'),\n    VOICEMAIL(\"unil-voicemail\", '\\ued71'),\n    VOICEMAIL_RECTANGLE(\"unil-voicemail-rectangle\", '\\ued70'),\n    VOLLEYBALL(\"unil-volleyball\", '\\ued72'),\n    VOLUME(\"unil-volume\", '\\ued77'),\n    VOLUME_DOWN(\"unil-volume-down\", '\\ued73'),\n    VOLUME_MUTE(\"unil-volume-mute\", '\\ued74'),\n    VOLUME_OFF(\"unil-volume-off\", '\\ued75'),\n    VOLUME_UP(\"unil-volume-up\", '\\ued76'),\n    VUEJS(\"unil-vuejs\", '\\ued79'),\n    VUEJS_ALT(\"unil-vuejs-alt\", '\\ued78'),\n    WALL(\"unil-wall\", '\\ued7a'),\n    WALLET(\"unil-wallet\", '\\ued7b'),\n    WATCH(\"unil-watch\", '\\ued7d'),\n    WATCH_ALT(\"unil-watch-alt\", '\\ued7c'),\n    WATER(\"unil-water\", '\\ued80'),\n    WATER_DROP_SLASH(\"unil-water-drop-slash\", '\\ued7e'),\n    WATER_GLASS(\"unil-water-glass\", '\\ued7f'),\n    WEBCAM(\"unil-webcam\", '\\ued85'),\n    WEB_GRID(\"unil-web-grid\", '\\ued82'),\n    WEB_GRID_ALT(\"unil-web-grid-alt\", '\\ued81'),\n    WEB_SECTION(\"unil-web-section\", '\\ued84'),\n    WEB_SECTION_ALT(\"unil-web-section-alt\", '\\ued83'),\n    WEIGHT(\"unil-weight\", '\\ued86'),\n    WHATSAPP(\"unil-whatsapp\", '\\ued88'),\n    WHATSAPP_ALT(\"unil-whatsapp-alt\", '\\ued87'),\n    WHEELCHAIR(\"unil-wheelchair\", '\\ued8b'),\n    WHEELCHAIR_ALT(\"unil-wheelchair-alt\", '\\ued8a'),\n    WHEEL_BARROW(\"unil-wheel-barrow\", '\\ued89'),\n    WIFI(\"unil-wifi\", '\\ued8e'),\n    WIFI_ROUTER(\"unil-wifi-router\", '\\ued8c'),\n    WIFI_SLASH(\"unil-wifi-slash\", '\\ued8d'),\n    WIND(\"unil-wind\", '\\ued91'),\n    WINDOW(\"unil-window\", '\\ued95'),\n    WINDOW_GRID(\"unil-window-grid\", '\\ued92'),\n    WINDOW_MAXIMIZE(\"unil-window-maximize\", '\\ued93'),\n    WINDOW_SECTION(\"unil-window-section\", '\\ued94'),\n    WINDSOCK(\"unil-windsock\", '\\ued96'),\n    WINDY(\"unil-windy\", '\\ued97'),\n    WIND_MOON(\"unil-wind-moon\", '\\ued8f'),\n    WIND_SUN(\"unil-wind-sun\", '\\ued90'),\n    WORDPRESS(\"unil-wordpress\", '\\ued99'),\n    WORDPRESS_SIMPLE(\"unil-wordpress-simple\", '\\ued98'),\n    WRAP_TEXT(\"unil-wrap-text\", '\\ued9a'),\n    WRENCH(\"unil-wrench\", '\\ued9b'),\n    X(\"unil-x\", '\\ued9d'),\n    X_ADD(\"unil-x-add\", '\\ued9c'),\n    YEN(\"unil-yen\", '\\ued9f'),\n    YEN_CIRCLE(\"unil-yen-circle\", '\\ued9e'),\n    YIN_YANG(\"unil-yin-yang\", '\\ueda0'),\n    YOUTUBE(\"unil-youtube\", '\\ueda1');\n\n    public static UniconsLine findByDescription(String description) {\n        for (UniconsLine font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    UniconsLine(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/java/org/kordamp/ikonli/unicons/UniconsLineIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.unicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class UniconsLineIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/unicons/20201106/fonts/Unicons-Line.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"unil-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return UniconsLine.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Unicons-Line\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/java/org/kordamp/ikonli/unicons/UniconsLineIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.unicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class UniconsLineIkonProvider implements IkonProvider<UniconsLine> {\n    @Override\n    public Class<UniconsLine> getIkon() {\n        return UniconsLine.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/java/org/kordamp/ikonli/unicons/UniconsMonochrome.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.unicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum UniconsMonochrome implements Ikon {\n    UNIM_500PX(\"unim-500px\", '\\ue900'),\n    ADOBE(\"unim-adobe\", '\\ue902'),\n    ADOBE_ALT(\"unim-adobe-alt\", '\\ue901'),\n    AIRPLAY(\"unim-airplay\", '\\ue903'),\n    ALIGN(\"unim-align\", '\\ue90d'),\n    ALIGN_ALT(\"unim-align-alt\", '\\ue904'),\n    ALIGN_CENTER(\"unim-align-center\", '\\ue906'),\n    ALIGN_CENTER_JUSTIFY(\"unim-align-center-justify\", '\\ue905'),\n    ALIGN_JUSTIFY(\"unim-align-justify\", '\\ue907'),\n    ALIGN_LEFT(\"unim-align-left\", '\\ue909'),\n    ALIGN_LEFT_JUSTIFY(\"unim-align-left-justify\", '\\ue908'),\n    ALIGN_LETTER_RIGHT(\"unim-align-letter-right\", '\\ue90a'),\n    ALIGN_RIGHT(\"unim-align-right\", '\\ue90c'),\n    ALIGN_RIGHT_JUSTIFY(\"unim-align-right-justify\", '\\ue90b'),\n    AMAZON(\"unim-amazon\", '\\ue90e'),\n    ANALYSIS(\"unim-analysis\", '\\ue90f'),\n    ANALYTICS(\"unim-analytics\", '\\ue910'),\n    ANCHOR(\"unim-anchor\", '\\ue911'),\n    ANDROID(\"unim-android\", '\\ue913'),\n    ANDROID_ALT(\"unim-android-alt\", '\\ue912'),\n    ANGLE_DOUBLE_DOWN(\"unim-angle-double-down\", '\\ue914'),\n    ANGLE_DOUBLE_LEFT(\"unim-angle-double-left\", '\\ue915'),\n    ANGLE_DOUBLE_RIGHT(\"unim-angle-double-right\", '\\ue916'),\n    ANGLE_DOUBLE_UP(\"unim-angle-double-up\", '\\ue917'),\n    ANGLE_DOWN(\"unim-angle-down\", '\\ue918'),\n    ANGLE_LEFT(\"unim-angle-left\", '\\ue919'),\n    ANGLE_RIGHT(\"unim-angle-right\", '\\ue91b'),\n    ANGLE_RIGHT_B(\"unim-angle-right-b\", '\\ue91a'),\n    ANGLE_UP(\"unim-angle-up\", '\\ue91c'),\n    APPLE(\"unim-apple\", '\\ue91e'),\n    APPLE_ALT(\"unim-apple-alt\", '\\ue91d'),\n    APPS(\"unim-apps\", '\\ue91f'),\n    ARROW_CIRCLE_DOWN(\"unim-arrow-circle-down\", '\\ue920'),\n    ARROW_CIRCLE_LEFT(\"unim-arrow-circle-left\", '\\ue921'),\n    ARROW_CIRCLE_RIGHT(\"unim-arrow-circle-right\", '\\ue922'),\n    ARROW_CIRCLE_UP(\"unim-arrow-circle-up\", '\\ue923'),\n    ARROW_DOWN_LEFT(\"unim-arrow-down-left\", '\\ue924'),\n    ARROW_DOWN_RIGHT(\"unim-arrow-down-right\", '\\ue925'),\n    ARROW_UP_LEFT(\"unim-arrow-up-left\", '\\ue926'),\n    ARROW_UP_RIGHT(\"unim-arrow-up-right\", '\\ue927'),\n    AT(\"unim-at\", '\\ue928'),\n    BAG(\"unim-bag\", '\\ue929'),\n    BARS(\"unim-bars\", '\\ue92a'),\n    BATTERY_BOLT(\"unim-battery-bolt\", '\\ue92b'),\n    BATTERY_EMPTY(\"unim-battery-empty\", '\\ue92c'),\n    BEHANCE(\"unim-behance\", '\\ue92e'),\n    BEHANCE_ALT(\"unim-behance-alt\", '\\ue92d'),\n    BING(\"unim-bing\", '\\ue92f'),\n    BITCOIN(\"unim-bitcoin\", '\\ue931'),\n    BITCOIN_ALT(\"unim-bitcoin-alt\", '\\ue930'),\n    BLACKBERRY(\"unim-blackberry\", '\\ue932'),\n    BLOGGER(\"unim-blogger\", '\\ue934'),\n    BLOGGER_ALT(\"unim-blogger-alt\", '\\ue933'),\n    BOOKMARK(\"unim-bookmark\", '\\ue935'),\n    BORDER_ALT(\"unim-border-alt\", '\\ue936'),\n    BORDER_BOTTOM(\"unim-border-bottom\", '\\ue937'),\n    BORDER_CLEAR(\"unim-border-clear\", '\\ue938'),\n    BORDER_HORIZONTAL(\"unim-border-horizontal\", '\\ue939'),\n    BORDER_INNER(\"unim-border-inner\", '\\ue93a'),\n    BORDER_LEFT(\"unim-border-left\", '\\ue93b'),\n    BORDER_OUT(\"unim-border-out\", '\\ue93c'),\n    BORDER_RIGHT(\"unim-border-right\", '\\ue93d'),\n    BORDER_TOP(\"unim-border-top\", '\\ue93e'),\n    BORDER_VERTICAL(\"unim-border-vertical\", '\\ue93f'),\n    BOX(\"unim-box\", '\\ue940'),\n    BRIEFCASE(\"unim-briefcase\", '\\ue941'),\n    CALENDER(\"unim-calender\", '\\ue942'),\n    CHART(\"unim-chart\", '\\ue944'),\n    CHART_PIE(\"unim-chart-pie\", '\\ue943'),\n    CHECK(\"unim-check\", '\\ue948'),\n    CHECK_SQUARE(\"unim-check-square\", '\\ue947'),\n    CIRCLE(\"unim-circle\", '\\ue94a'),\n    CIRCLE_LAYER(\"unim-circle-layer\", '\\ue949'),\n    CLINIC_MEDICAL(\"unim-clinic-medical\", '\\ue94b'),\n    CLOCK(\"unim-clock\", '\\ue953'),\n    CLOCK_EIGHT(\"unim-clock-eight\", '\\ue94c'),\n    CLOCK_FIVE(\"unim-clock-five\", '\\ue94d'),\n    CLOCK_NINE(\"unim-clock-nine\", '\\ue94e'),\n    CLOCK_SEVEN(\"unim-clock-seven\", '\\ue94f'),\n    CLOCK_TEN(\"unim-clock-ten\", '\\ue950'),\n    CLOCK_THREE(\"unim-clock-three\", '\\ue951'),\n    CLOCK_TWO(\"unim-clock-two\", '\\ue952'),\n    COLUMNS(\"unim-columns\", '\\ue954'),\n    COMMENT(\"unim-comment\", '\\ue95c'),\n    COMMENT_ALT(\"unim-comment-alt\", '\\ue958'),\n    COMMENT_ALT_DOTS(\"unim-comment-alt-dots\", '\\ue955'),\n    COMMENT_ALT_MESSAGE(\"unim-comment-alt-message\", '\\ue956'),\n    COMMENT_ALT_PLUS(\"unim-comment-alt-plus\", '\\ue957'),\n    COMMENT_DOTS(\"unim-comment-dots\", '\\ue959'),\n    COMMENT_MESSAGE(\"unim-comment-message\", '\\ue95a'),\n    COMMENT_PLUS(\"unim-comment-plus\", '\\ue95b'),\n    COMPRESS(\"unim-compress\", '\\ue95d'),\n    CORNER_DOWN_LEFT(\"unim-corner-down-left\", '\\ue95e'),\n    CORNER_DOWN_RIGHT(\"unim-corner-down-right\", '\\ue95f'),\n    CORNER_LEFT_DOWN(\"unim-corner-left-down\", '\\ue960'),\n    CORNER_RIGHT_DOWN(\"unim-corner-right-down\", '\\ue961'),\n    CORNER_UP_LEFT(\"unim-corner-up-left\", '\\ue962'),\n    CORNER_UP_RIGHT(\"unim-corner-up-right\", '\\ue963'),\n    CORONAVIRUS(\"unim-coronavirus\", '\\ue964'),\n    CSS3(\"unim-css3\", '\\ue966'),\n    CSS3_SIMPLE(\"unim-css3-simple\", '\\ue965'),\n    CUBE(\"unim-cube\", '\\ue967'),\n    DIALPAD(\"unim-dialpad\", '\\ue969'),\n    DIALPAD_ALT(\"unim-dialpad-alt\", '\\ue968'),\n    DIRECTION(\"unim-direction\", '\\ue96a'),\n    DISCORD(\"unim-discord\", '\\ue96b'),\n    DOCUMENT_LAYOUT_CENTER(\"unim-document-layout-center\", '\\ue96c'),\n    DOCUMENT_LAYOUT_LEFT(\"unim-document-layout-left\", '\\ue96d'),\n    DOCUMENT_LAYOUT_RIGHT(\"unim-document-layout-right\", '\\ue96e'),\n    DOWNLOAD_ALT(\"unim-download-alt\", '\\ue96f'),\n    DRIBBBLE(\"unim-dribbble\", '\\ue970'),\n    DROPBOX(\"unim-dropbox\", '\\ue971'),\n    ELLIPSIS_H(\"unim-ellipsis-h\", '\\ue972'),\n    ELLIPSIS_V(\"unim-ellipsis-v\", '\\ue973'),\n    ENTRY(\"unim-entry\", '\\ue974'),\n    EXCLAMATION_CIRCLE(\"unim-exclamation-circle\", '\\ue975'),\n    EXCLAMATION_OCTAGON(\"unim-exclamation-octagon\", '\\ue976'),\n    EXCLAMATION_TRIANGLE(\"unim-exclamation-triangle\", '\\ue977'),\n    EXIT(\"unim-exit\", '\\ue978'),\n    FACEBOOK(\"unim-facebook\", '\\ue97c'),\n    FACEBOOK_F(\"unim-facebook-f\", '\\ue979'),\n    FACEBOOK_MESSENGER(\"unim-facebook-messenger\", '\\ue97b'),\n    FACEBOOK_MESSENGER_ALT(\"unim-facebook-messenger-alt\", '\\ue97a'),\n    FAVORITE(\"unim-favorite\", '\\ue97d'),\n    FLIP_H(\"unim-flip-h\", '\\ue97f'),\n    FLIP_H_ALT(\"unim-flip-h-alt\", '\\ue97e'),\n    FLIP_V(\"unim-flip-v\", '\\ue981'),\n    FLIP_V_ALT(\"unim-flip-v-alt\", '\\ue980'),\n    GITHUB(\"unim-github\", '\\ue983'),\n    GITHUB_ALT(\"unim-github-alt\", '\\ue982'),\n    GOOGLE(\"unim-google\", '\\ue989'),\n    GOOGLE_DRIVE(\"unim-google-drive\", '\\ue985'),\n    GOOGLE_DRIVE_ALT(\"unim-google-drive-alt\", '\\ue984'),\n    GOOGLE_HANGOUTS(\"unim-google-hangouts\", '\\ue987'),\n    GOOGLE_HANGOUTS_ALT(\"unim-google-hangouts-alt\", '\\ue986'),\n    GOOGLE_PLAY(\"unim-google-play\", '\\ue988'),\n    GRAPH_BAR(\"unim-graph-bar\", '\\ue98a'),\n    GRID(\"unim-grid\", '\\ue98b'),\n    GRIDS(\"unim-grids\", '\\ue98c'),\n    GRIP_HORIZONTAL_LINE(\"unim-grip-horizontal-line\", '\\ue98d'),\n    HEAD_SIDE(\"unim-head-side\", '\\ue990'),\n    HEAD_SIDE_COUGH(\"unim-head-side-cough\", '\\ue98e'),\n    HEAD_SIDE_MASK(\"unim-head-side-mask\", '\\ue98f'),\n    HISTORY(\"unim-history\", '\\ue992'),\n    HISTORY_ALT(\"unim-history-alt\", '\\ue991'),\n    HORIZONTAL_ALIGN_LEFT(\"unim-horizontal-align-left\", '\\ue993'),\n    HOSPITAL(\"unim-hospital\", '\\ue996'),\n    HOSPITAL_SQUARE_SIGN(\"unim-hospital-square-sign\", '\\ue994'),\n    HOSPITAL_SYMBOL(\"unim-hospital-symbol\", '\\ue995'),\n    HOUSE_USER(\"unim-house-user\", '\\ue997'),\n    HTML3(\"unim-html3\", '\\ue999'),\n    HTML3_ALT(\"unim-html3-alt\", '\\ue998'),\n    HTML5(\"unim-html5\", '\\ue99b'),\n    HTML5_ALT(\"unim-html5-alt\", '\\ue99a'),\n    IMAGE_V(\"unim-image-v\", '\\ue99c'),\n    INSTAGRAM(\"unim-instagram\", '\\ue99e'),\n    INSTAGRAM_ALT(\"unim-instagram-alt\", '\\ue99d'),\n    INTERCOM(\"unim-intercom\", '\\ue9a0'),\n    INTERCOM_ALT(\"unim-intercom-alt\", '\\ue99f'),\n    JAVA_SCRIPT(\"unim-java-script\", '\\ue9a1'),\n    KEYHOLE_CIRCLE(\"unim-keyhole-circle\", '\\ue9a4'),\n    KEYHOLE_SQUARE(\"unim-keyhole-square\", '\\ue9a6'),\n    KEYHOLE_SQUARE_FULL(\"unim-keyhole-square-full\", '\\ue9a5'),\n    KEY_SKELETON(\"unim-key-skeleton\", '\\ue9a3'),\n    KEY_SKELETON_ALT(\"unim-key-skeleton-alt\", '\\ue9a2'),\n    LAYERS_ALT(\"unim-layers-alt\", '\\ue9a8'),\n    LAYER_GROUP(\"unim-layer-group\", '\\ue9a7'),\n    LEFT_INDENT(\"unim-left-indent\", '\\ue9aa'),\n    LEFT_INDENT_ALT(\"unim-left-indent-alt\", '\\ue9a9'),\n    LINE(\"unim-line\", '\\ue9ac'),\n    LINE_SPACING(\"unim-line-spacing\", '\\ue9ab'),\n    LINKEDIN(\"unim-linkedin\", '\\ue9af'),\n    LINKEDIN_ALT(\"unim-linkedin-alt\", '\\ue9ae'),\n    LINK_H(\"unim-link-h\", '\\ue9ad'),\n    LIST_UI_ALT(\"unim-list-ui-alt\", '\\ue9b0'),\n    LIST_UL(\"unim-list-ul\", '\\ue9b1'),\n    LOCK(\"unim-lock\", '\\ue9b5'),\n    LOCK_ACCESS(\"unim-lock-access\", '\\ue9b2'),\n    LOCK_ALT(\"unim-lock-alt\", '\\ue9b3'),\n    LOCK_OPEN_ALT(\"unim-lock-open-alt\", '\\ue9b4'),\n    MASTER_CARD(\"unim-master-card\", '\\ue9b6'),\n    MEDIUM_M(\"unim-medium-m\", '\\ue9b7'),\n    MICROSCOPE(\"unim-microscope\", '\\ue9b8'),\n    MINUS_SQUARE_FULL(\"unim-minus-square-full\", '\\ue9b9'),\n    MULTIPLY(\"unim-multiply\", '\\ue9ba'),\n    OBJECT_GROUP(\"unim-object-group\", '\\ue9bb'),\n    OBJECT_UNGROUP(\"unim-object-ungroup\", '\\ue9bc'),\n    OPERA(\"unim-opera\", '\\ue9be'),\n    OPERA_ALT(\"unim-opera-alt\", '\\ue9bd'),\n    PADLOCK(\"unim-padlock\", '\\ue9bf'),\n    PAPERCLIP(\"unim-paperclip\", '\\ue9c0'),\n    PARAGRAPH(\"unim-paragraph\", '\\ue9c1'),\n    PAYPAL(\"unim-paypal\", '\\ue9c2'),\n    PENTAGON(\"unim-pentagon\", '\\ue9c3'),\n    PLUS_SQUARE(\"unim-plus-square\", '\\ue9c4'),\n    POLYGON(\"unim-polygon\", '\\ue9c5'),\n    PREVIOUS(\"unim-previous\", '\\ue9c6'),\n    PROCESS(\"unim-process\", '\\ue9c7'),\n    REACT(\"unim-react\", '\\ue9c8'),\n    RECORD_AUDIO(\"unim-record-audio\", '\\ue9c9'),\n    REDDIT_ALIEN_ALT(\"unim-reddit-alien-alt\", '\\ue9ca'),\n    REDO(\"unim-redo\", '\\ue9cb'),\n    REFRESH(\"unim-refresh\", '\\ue9cc'),\n    REPEAT(\"unim-repeat\", '\\ue9cd'),\n    RIGHT_INDENT_ALT(\"unim-right-indent-alt\", '\\ue9ce'),\n    ROCKET(\"unim-rocket\", '\\ue9cf'),\n    RULER(\"unim-ruler\", '\\ue9d1'),\n    RULER_COMBINED(\"unim-ruler-combined\", '\\ue9d0'),\n    SANITIZER(\"unim-sanitizer\", '\\ue9d3'),\n    SANITIZER_ALT(\"unim-sanitizer-alt\", '\\ue9d2'),\n    SCENERY(\"unim-scenery\", '\\ue9d4'),\n    SCHEDULE(\"unim-schedule\", '\\ue9d5'),\n    SHIELD_PLUS(\"unim-shield-plus\", '\\ue9d6'),\n    SIGNAL_ALT(\"unim-signal-alt\", '\\ue9db'),\n    SIGNAL_ALT_3(\"unim-signal-alt-3\", '\\ue9da'),\n    SIGNIN(\"unim-signin\", '\\ue9dc'),\n    SIGNOUT(\"unim-signout\", '\\ue9dd'),\n    SIGN_IN(\"unim-sign-in\", '\\ue9d8'),\n    SIGN_IN_ALT(\"unim-sign-in-alt\", '\\ue9d7'),\n    SIGN_OUT_ALT(\"unim-sign-out-alt\", '\\ue9d9'),\n    SKYPE(\"unim-skype\", '\\ue9df'),\n    SKYPE_ALT(\"unim-skype-alt\", '\\ue9de'),\n    SLACK(\"unim-slack\", '\\ue9e1'),\n    SLACK_ALT(\"unim-slack-alt\", '\\ue9e0'),\n    SNAPCHAT_ALT(\"unim-snapchat-alt\", '\\ue9e2'),\n    SNAPCHAT_GHOST(\"unim-snapchat-ghost\", '\\ue9e3'),\n    SNAPCHAT_SQUARE(\"unim-snapchat-square\", '\\ue9e4'),\n    SOCIAL_DISTANCING(\"unim-social-distancing\", '\\ue9e5'),\n    SORTING(\"unim-sorting\", '\\ue9e6'),\n    SPACE_KEY(\"unim-space-key\", '\\ue9e7'),\n    SQUARE(\"unim-square\", '\\ue9ea'),\n    SQUARE_FULL(\"unim-square-full\", '\\ue9e8'),\n    SQUARE_SHAPE(\"unim-square-shape\", '\\ue9e9'),\n    SQURE_SHAPE(\"unim-squre-shape\", '\\ue9eb'),\n    STAR(\"unim-star\", '\\ue9ed'),\n    STAR_HALF_ALT(\"unim-star-half-alt\", '\\ue9ec'),\n    STEP_FORWARD(\"unim-step-forward\", '\\ue9ee'),\n    STETHOSCOPE(\"unim-stethoscope\", '\\ue9f0'),\n    STETHOSCOPE_ALT(\"unim-stethoscope-alt\", '\\ue9ef'),\n    STORE_SLASH(\"unim-store-slash\", '\\ue9f1'),\n    SUBJECT(\"unim-subject\", '\\ue9f2'),\n    SWIGGY(\"unim-swiggy\", '\\ue9f3'),\n    SYNC_EXCLAMATION(\"unim-sync-exclamation\", '\\ue9f4'),\n    SYNC_SLASH(\"unim-sync-slash\", '\\ue9f5'),\n    TABLE(\"unim-table\", '\\ue9f6'),\n    TELEGRAM(\"unim-telegram\", '\\ue9f8'),\n    TELEGRAM_ALT(\"unim-telegram-alt\", '\\ue9f7'),\n    TH_LARGE(\"unim-th-large\", '\\ue9f9'),\n    TIMES_CIRCLE(\"unim-times-circle\", '\\ue9fa'),\n    TOGGLE_OFF(\"unim-toggle-off\", '\\ue9fb'),\n    TOGGLE_ON(\"unim-toggle-on\", '\\ue9fc'),\n    TOILET_PAPER(\"unim-toilet-paper\", '\\ue9fd'),\n    TRIANGLE(\"unim-triangle\", '\\ue9fe'),\n    TUMBLR(\"unim-tumblr\", '\\uea01'),\n    TUMBLR_ALT(\"unim-tumblr-alt\", '\\ue9ff'),\n    TUMBLR_SQUARE(\"unim-tumblr-square\", '\\uea00'),\n    TWITTER(\"unim-twitter\", '\\uea03'),\n    TWITTER_ALT(\"unim-twitter-alt\", '\\uea02'),\n    UNLOCK(\"unim-unlock\", '\\uea05'),\n    UNLOCK_ALT(\"unim-unlock-alt\", '\\uea04'),\n    UPLOAD_ALT(\"unim-upload-alt\", '\\uea06'),\n    USER_ARROWS(\"unim-user-arrows\", '\\uea07'),\n    USER_MD(\"unim-user-md\", '\\uea08'),\n    USER_NURSE(\"unim-user-nurse\", '\\uea09'),\n    VECTOR_SQUARE(\"unim-vector-square\", '\\uea0b'),\n    VECTOR_SQUARE_ALT(\"unim-vector-square-alt\", '\\uea0a'),\n    VIRUS_SLASH(\"unim-virus-slash\", '\\uea0c'),\n    VISUAL_STUDIO(\"unim-visual-studio\", '\\uea0d'),\n    VK(\"unim-vk\", '\\uea0f'),\n    VK_ALT(\"unim-vk-alt\", '\\uea0e'),\n    VUEJS(\"unim-vuejs\", '\\uea11'),\n    VUEJS_ALT(\"unim-vuejs-alt\", '\\uea10'),\n    WEB_GRID(\"unim-web-grid\", '\\uea13'),\n    WEB_GRID_ALT(\"unim-web-grid-alt\", '\\uea12'),\n    WEB_SECTION(\"unim-web-section\", '\\uea15'),\n    WEB_SECTION_ALT(\"unim-web-section-alt\", '\\uea14'),\n    WHATSAPP(\"unim-whatsapp\", '\\uea16'),\n    WINDOW_GRID(\"unim-window-grid\", '\\uea17'),\n    WINDOW_MAXIMIZE(\"unim-window-maximize\", '\\uea18'),\n    WINDOW_SECTION(\"unim-window-section\", '\\uea19'),\n    WORDPRESS(\"unim-wordpress\", '\\uea1b'),\n    WORDPRESS_SIMPLE(\"unim-wordpress-simple\", '\\uea1a'),\n    WRAP_TEXT(\"unim-wrap-text\", '\\uea1c'),\n    YOUTUBE(\"unim-youtube\", '\\uea1d');\n\n    public static UniconsMonochrome findByDescription(String description) {\n        for (UniconsMonochrome font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    UniconsMonochrome(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/java/org/kordamp/ikonli/unicons/UniconsMonochromeIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.unicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class UniconsMonochromeIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/unicons/20201106/fonts/Unicons-Monochrome.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"unim-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return UniconsMonochrome.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Unicons-Monochrome\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/java/org/kordamp/ikonli/unicons/UniconsMonochromeIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.unicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class UniconsMonochromeIkonProvider implements IkonProvider<UniconsMonochrome> {\n    @Override\n    public Class<UniconsMonochrome> getIkon() {\n        return UniconsMonochrome.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/java/org/kordamp/ikonli/unicons/UniconsSolid.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.unicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum UniconsSolid implements Ikon {\n    AIRPLAY(\"unis-airplay\", '\\ue900'),\n    ALIGN_ALT(\"unis-align-alt\", '\\ue901'),\n    ALIGN_CENTER(\"unis-align-center\", '\\ue903'),\n    ALIGN_CENTER_JUSTIFY(\"unis-align-center-justify\", '\\ue902'),\n    ALIGN_JUSTIFY(\"unis-align-justify\", '\\ue904'),\n    ALIGN_LEFT(\"unis-align-left\", '\\ue906'),\n    ALIGN_LEFT_JUSTIFY(\"unis-align-left-justify\", '\\ue905'),\n    ALIGN_LETTER_RIGHT(\"unis-align-letter-right\", '\\ue907'),\n    ALIGN_RIGHT(\"unis-align-right\", '\\ue909'),\n    ALIGN_RIGHT_JUSTIFY(\"unis-align-right-justify\", '\\ue908'),\n    ANALYSIS(\"unis-analysis\", '\\ue90a'),\n    ANALYTICS(\"unis-analytics\", '\\ue90b'),\n    ANCHOR(\"unis-anchor\", '\\ue90c'),\n    ANGLE_DOUBLE_DOWN(\"unis-angle-double-down\", '\\ue90d'),\n    ANGLE_DOUBLE_LEFT(\"unis-angle-double-left\", '\\ue90e'),\n    ANGLE_DOUBLE_RIGHT(\"unis-angle-double-right\", '\\ue90f'),\n    ANGLE_DOUBLE_UP(\"unis-angle-double-up\", '\\ue910'),\n    ANGLE_DOWN(\"unis-angle-down\", '\\ue911'),\n    ANGLE_LEFT(\"unis-angle-left\", '\\ue912'),\n    ANGLE_RIGHT(\"unis-angle-right\", '\\ue914'),\n    ANGLE_RIGHT_B(\"unis-angle-right-b\", '\\ue913'),\n    ANGLE_UP(\"unis-angle-up\", '\\ue915'),\n    APPS(\"unis-apps\", '\\ue916'),\n    ARROW_CIRCLE_DOWN(\"unis-arrow-circle-down\", '\\ue917'),\n    ARROW_CIRCLE_LEFT(\"unis-arrow-circle-left\", '\\ue918'),\n    ARROW_CIRCLE_RIGHT(\"unis-arrow-circle-right\", '\\ue919'),\n    ARROW_CIRCLE_UP(\"unis-arrow-circle-up\", '\\ue91a'),\n    ARROW_DOWN_LEFT(\"unis-arrow-down-left\", '\\ue91b'),\n    ARROW_DOWN_RIGHT(\"unis-arrow-down-right\", '\\ue91c'),\n    ARROW_UP_LEFT(\"unis-arrow-up-left\", '\\ue91d'),\n    ARROW_UP_RIGHT(\"unis-arrow-up-right\", '\\ue91e'),\n    AT(\"unis-at\", '\\ue91f'),\n    BAG(\"unis-bag\", '\\ue920'),\n    BARS(\"unis-bars\", '\\ue921'),\n    BATTERY_BOLT(\"unis-battery-bolt\", '\\ue922'),\n    BATTERY_EMPTY(\"unis-battery-empty\", '\\ue923'),\n    BOOKMARK(\"unis-bookmark\", '\\ue924'),\n    BORDER_ALT(\"unis-border-alt\", '\\ue925'),\n    BORDER_BOTTOM(\"unis-border-bottom\", '\\ue926'),\n    BORDER_CLEAR(\"unis-border-clear\", '\\ue927'),\n    BORDER_HORIZONTAL(\"unis-border-horizontal\", '\\ue928'),\n    BORDER_INNER(\"unis-border-inner\", '\\ue929'),\n    BORDER_LEFT(\"unis-border-left\", '\\ue92a'),\n    BORDER_OUT(\"unis-border-out\", '\\ue92b'),\n    BORDER_RIGHT(\"unis-border-right\", '\\ue92c'),\n    BORDER_TOP(\"unis-border-top\", '\\ue92d'),\n    BORDER_VERTICAL(\"unis-border-vertical\", '\\ue92e'),\n    BRIEFCASE(\"unis-briefcase\", '\\ue92f'),\n    CALENDER(\"unis-calender\", '\\ue930'),\n    CHART(\"unis-chart\", '\\ue932'),\n    CHART_PIE(\"unis-chart-pie\", '\\ue931'),\n    CHECK(\"unis-check\", '\\ue935'),\n    CHECK_CIRCLE(\"unis-check-circle\", '\\ue933'),\n    CHECK_SQUARE(\"unis-check-square\", '\\ue934'),\n    CIRCLE_LAYER(\"unis-circle-layer\", '\\ue936'),\n    CLINIC_MEDICAL(\"unis-clinic-medical\", '\\ue937'),\n    CLOCK(\"unis-clock\", '\\ue93f'),\n    CLOCK_EIGHT(\"unis-clock-eight\", '\\ue938'),\n    CLOCK_FIVE(\"unis-clock-five\", '\\ue939'),\n    CLOCK_NINE(\"unis-clock-nine\", '\\ue93a'),\n    CLOCK_SEVEN(\"unis-clock-seven\", '\\ue93b'),\n    CLOCK_TEN(\"unis-clock-ten\", '\\ue93c'),\n    CLOCK_THREE(\"unis-clock-three\", '\\ue93d'),\n    CLOCK_TWO(\"unis-clock-two\", '\\ue93e'),\n    COLUMNS(\"unis-columns\", '\\ue940'),\n    COMMENT_DOTS(\"unis-comment-dots\", '\\ue941'),\n    COMPRESS(\"unis-compress\", '\\ue942'),\n    CORNER_DOWN_LEFT(\"unis-corner-down-left\", '\\ue943'),\n    CORNER_DOWN_RIGHT(\"unis-corner-down-right\", '\\ue944'),\n    CORNER_LEFT_DOWN(\"unis-corner-left-down\", '\\ue945'),\n    CORNER_RIGHT_DOWN(\"unis-corner-right-down\", '\\ue946'),\n    CORNER_UP_LEFT(\"unis-corner-up-left\", '\\ue947'),\n    CORNER_UP_RIGHT(\"unis-corner-up-right\", '\\ue948'),\n    CORONAVIRUS(\"unis-coronavirus\", '\\ue949'),\n    DIALPAD(\"unis-dialpad\", '\\ue94a'),\n    DIRECTION(\"unis-direction\", '\\ue94b'),\n    DOCUMENT_LAYOUT_CENTER(\"unis-document-layout-center\", '\\ue94c'),\n    DOCUMENT_LAYOUT_LEFT(\"unis-document-layout-left\", '\\ue94d'),\n    DOCUMENT_LAYOUT_RIGHT(\"unis-document-layout-right\", '\\ue94e'),\n    DOWNLOAD_ALT(\"unis-download-alt\", '\\ue94f'),\n    ELLIPSIS_H(\"unis-ellipsis-h\", '\\ue950'),\n    ELLIPSIS_V(\"unis-ellipsis-v\", '\\ue951'),\n    EXCLAMATION_CIRCLE(\"unis-exclamation-circle\", '\\ue952'),\n    EXCLAMATION_OCTAGON(\"unis-exclamation-octagon\", '\\ue953'),\n    EXCLAMATION_TRIANGLE(\"unis-exclamation-triangle\", '\\ue954'),\n    FAVORITE(\"unis-favorite\", '\\ue955'),\n    FLIP_H(\"unis-flip-h\", '\\ue957'),\n    FLIP_H_ALT(\"unis-flip-h-alt\", '\\ue956'),\n    FLIP_V(\"unis-flip-v\", '\\ue959'),\n    FLIP_V_ALT(\"unis-flip-v-alt\", '\\ue958'),\n    GRAPH_BAR(\"unis-graph-bar\", '\\ue95a'),\n    GRID(\"unis-grid\", '\\ue95b'),\n    GRIDS(\"unis-grids\", '\\ue95c'),\n    GRIP_HORIZONTAL_LINE(\"unis-grip-horizontal-line\", '\\ue95d'),\n    HEAD_SIDE(\"unis-head-side\", '\\ue960'),\n    HEAD_SIDE_COUGH(\"unis-head-side-cough\", '\\ue95e'),\n    HEAD_SIDE_MASK(\"unis-head-side-mask\", '\\ue95f'),\n    HISTORY(\"unis-history\", '\\ue962'),\n    HISTORY_ALT(\"unis-history-alt\", '\\ue961'),\n    HORIZONTAL_ALIGN_LEFT(\"unis-horizontal-align-left\", '\\ue963'),\n    HOSPITAL(\"unis-hospital\", '\\ue966'),\n    HOSPITAL_SQUARE_SIGN(\"unis-hospital-square-sign\", '\\ue964'),\n    HOSPITAL_SYMBOL(\"unis-hospital-symbol\", '\\ue965'),\n    HOUSE_USER(\"unis-house-user\", '\\ue967'),\n    IMAGE_V(\"unis-image-v\", '\\ue968'),\n    KEYHOLE_CIRCLE(\"unis-keyhole-circle\", '\\ue96b'),\n    KEYHOLE_SQUARE(\"unis-keyhole-square\", '\\ue96d'),\n    KEYHOLE_SQUARE_FULL(\"unis-keyhole-square-full\", '\\ue96c'),\n    KEY_SKELETON(\"unis-key-skeleton\", '\\ue96a'),\n    KEY_SKELETON_ALT(\"unis-key-skeleton-alt\", '\\ue969'),\n    LAYERS_ALT(\"unis-layers-alt\", '\\ue96f'),\n    LAYER_GROUP(\"unis-layer-group\", '\\ue96e'),\n    LEFT_INDENT(\"unis-left-indent\", '\\ue971'),\n    LEFT_INDENT_ALT(\"unis-left-indent-alt\", '\\ue970'),\n    LINE_SPACING(\"unis-line-spacing\", '\\ue972'),\n    LINK_H(\"unis-link-h\", '\\ue973'),\n    LIST_UI_ALT(\"unis-list-ui-alt\", '\\ue974'),\n    LIST_UL(\"unis-list-ul\", '\\ue975'),\n    LOCK(\"unis-lock\", '\\ue979'),\n    LOCK_ACCESS(\"unis-lock-access\", '\\ue976'),\n    LOCK_ALT(\"unis-lock-alt\", '\\ue977'),\n    LOCK_OPEN_ALT(\"unis-lock-open-alt\", '\\ue978'),\n    MICROSCOPE(\"unis-microscope\", '\\ue97a'),\n    MINUS_SQUARE_FULL(\"unis-minus-square-full\", '\\ue97b'),\n    MULTIPLY(\"unis-multiply\", '\\ue97c'),\n    OBJECT_GROUP(\"unis-object-group\", '\\ue97d'),\n    OBJECT_UNGROUP(\"unis-object-ungroup\", '\\ue97e'),\n    PADLOCK(\"unis-padlock\", '\\ue97f'),\n    PAPERCLIP(\"unis-paperclip\", '\\ue980'),\n    PARAGRAPH(\"unis-paragraph\", '\\ue981'),\n    PENTAGON(\"unis-pentagon\", '\\ue982'),\n    POLYGON(\"unis-polygon\", '\\ue983'),\n    PREVIOUS(\"unis-previous\", '\\ue984'),\n    PROCESS(\"unis-process\", '\\ue985'),\n    RECORD_AUDIO(\"unis-record-audio\", '\\ue986'),\n    REDO(\"unis-redo\", '\\ue987'),\n    REFRESH(\"unis-refresh\", '\\ue988'),\n    REPEAT(\"unis-repeat\", '\\ue989'),\n    RIGHT_INDENT(\"unis-right-indent\", '\\ue98b'),\n    RIGHT_INDENT_ALT(\"unis-right-indent-alt\", '\\ue98a'),\n    ROCKET(\"unis-rocket\", '\\ue98c'),\n    RULER(\"unis-ruler\", '\\ue98e'),\n    RULER_COMBINED(\"unis-ruler-combined\", '\\ue98d'),\n    SANITIZER(\"unis-sanitizer\", '\\ue990'),\n    SANITIZER_ALT(\"unis-sanitizer-alt\", '\\ue98f'),\n    SCENERY(\"unis-scenery\", '\\ue991'),\n    SCHEDULE(\"unis-schedule\", '\\ue992'),\n    SHIELD_PLUS(\"unis-shield-plus\", '\\ue993'),\n    SIGNAL_ALT(\"unis-signal-alt\", '\\ue995'),\n    SIGNAL_ALT_3(\"unis-signal-alt-3\", '\\ue994'),\n    SIGNOUT(\"unis-signout\", '\\ue996'),\n    SOCIAL_DISTANCING(\"unis-social-distancing\", '\\ue997'),\n    SORTING(\"unis-sorting\", '\\ue998'),\n    SPACE_KEY(\"unis-space-key\", '\\ue999'),\n    SQUARE_FULL(\"unis-square-full\", '\\ue99a'),\n    STAR(\"unis-star\", '\\ue99c'),\n    STAR_HALF_ALT(\"unis-star-half-alt\", '\\ue99b'),\n    STEP_FORWARD(\"unis-step-forward\", '\\ue99d'),\n    STETHOSCOPE(\"unis-stethoscope\", '\\ue99f'),\n    STETHOSCOPE_ALT(\"unis-stethoscope-alt\", '\\ue99e'),\n    STOPWATCH(\"unis-stopwatch\", '\\ue9a0'),\n    STORE_SLASH(\"unis-store-slash\", '\\ue9a1'),\n    SUBJECT(\"unis-subject\", '\\ue9a2'),\n    SYNC_EXCLAMATION(\"unis-sync-exclamation\", '\\ue9a3'),\n    SYNC_SLASH(\"unis-sync-slash\", '\\ue9a4'),\n    TABLE(\"unis-table\", '\\ue9a5'),\n    TH_LARGE(\"unis-th-large\", '\\ue9a6'),\n    TIMES_CIRCLE(\"unis-times-circle\", '\\ue9a7'),\n    TOGGLE_OFF(\"unis-toggle-off\", '\\ue9a8'),\n    TOGGLE_ON(\"unis-toggle-on\", '\\ue9a9'),\n    TOILET_PAPER(\"unis-toilet-paper\", '\\ue9aa'),\n    TRIANGLE(\"unis-triangle\", '\\ue9ab'),\n    UNLOCK(\"unis-unlock\", '\\ue9ad'),\n    UNLOCK_ALT(\"unis-unlock-alt\", '\\ue9ac'),\n    UPLOAD_ALT(\"unis-upload-alt\", '\\ue9ae'),\n    USER_ARROWS(\"unis-user-arrows\", '\\ue9af'),\n    USER_MD(\"unis-user-md\", '\\ue9b0'),\n    USER_NURSE(\"unis-user-nurse\", '\\ue9b1'),\n    VECTOR_SQUARE(\"unis-vector-square\", '\\ue9b3'),\n    VECTOR_SQUARE_ALT(\"unis-vector-square-alt\", '\\ue9b2'),\n    VIRUS_SLASH(\"unis-virus-slash\", '\\ue9b4'),\n    WEB_GRID(\"unis-web-grid\", '\\ue9b6'),\n    WEB_GRID_ALT(\"unis-web-grid-alt\", '\\ue9b5'),\n    WEB_SECTION(\"unis-web-section\", '\\ue9b8'),\n    WEB_SECTION_ALT(\"unis-web-section-alt\", '\\ue9b7'),\n    WINDOW_GRID(\"unis-window-grid\", '\\ue9b9'),\n    WINDOW_MAXIMIZE(\"unis-window-maximize\", '\\ue9ba'),\n    WINDOW_SECTION(\"unis-window-section\", '\\ue9bb'),\n    WRAP_TEXT(\"unis-wrap-text\", '\\ue9bc');\n\n    public static UniconsSolid findByDescription(String description) {\n        for (UniconsSolid font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    UniconsSolid(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/java/org/kordamp/ikonli/unicons/UniconsSolidIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.unicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class UniconsSolidIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/unicons/20201106/fonts/Unicons-Solid.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"unis-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return UniconsSolid.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Unicons-Solid\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/java/org/kordamp/ikonli/unicons/UniconsSolidIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.unicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class UniconsSolidIkonProvider implements IkonProvider<UniconsSolid> {\n    @Override\n    public Class<UniconsSolid> getIkon() {\n        return UniconsSolid.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/resources/META-INF/resources/unicons/20201106/css/unicons-line.css",
    "content": "@font-face {\n  font-family: 'Unicons-Line';\n  src:  url('../fonts/Unicons-Line.eot?6a90u9');\n  src:  url('../fonts/Unicons-Line.eot?6a90u9#iefix') format('embedded-opentype'),\n    url('../fonts/Unicons-Line.ttf?6a90u9') format('truetype'),\n    url('../fonts/Unicons-Line.woff?6a90u9') format('woff'),\n    url('../fonts/Unicons-Line.svg?6a90u9#Unicons-Line') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"unil-\"], [class*=\" unil-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Unicons-Line' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.unil-plus-0:before {\n  content: \"\\e900\";\n}\n.unil-plus-3:before {\n  content: \"\\e901\";\n}\n.unil-plus-6:before {\n  content: \"\\e902\";\n}\n.unil-plus-10:before {\n  content: \"\\e903\";\n}\n.unil-plus-12:before {\n  content: \"\\e904\";\n}\n.unil-plus-13:before {\n  content: \"\\e905\";\n}\n.unil-plus-16:before {\n  content: \"\\e906\";\n}\n.unil-plus-17:before {\n  content: \"\\e907\";\n}\n.unil-plus-18:before {\n  content: \"\\e908\";\n}\n.unil-plus-21:before {\n  content: \"\\e909\";\n}\n.unil-500px:before {\n  content: \"\\e90a\";\n}\n.unil-abacus:before {\n  content: \"\\e90b\";\n}\n.unil-accessible-icon-alt:before {\n  content: \"\\e90c\";\n}\n.unil-adjust-alt:before {\n  content: \"\\e90d\";\n}\n.unil-adjust-circle:before {\n  content: \"\\e90e\";\n}\n.unil-adjust-half:before {\n  content: \"\\e90f\";\n}\n.unil-adjust:before {\n  content: \"\\e910\";\n}\n.unil-adobe-alt:before {\n  content: \"\\e911\";\n}\n.unil-adobe:before {\n  content: \"\\e912\";\n}\n.unil-airplay:before {\n  content: \"\\e913\";\n}\n.unil-align-alt:before {\n  content: \"\\e914\";\n}\n.unil-align-center-alt:before {\n  content: \"\\e915\";\n}\n.unil-align-center-h:before {\n  content: \"\\e916\";\n}\n.unil-align-center-justify:before {\n  content: \"\\e917\";\n}\n.unil-align-center-v:before {\n  content: \"\\e918\";\n}\n.unil-align-center:before {\n  content: \"\\e919\";\n}\n.unil-align-justify:before {\n  content: \"\\e91a\";\n}\n.unil-align-left-justify:before {\n  content: \"\\e91b\";\n}\n.unil-align-left:before {\n  content: \"\\e91c\";\n}\n.unil-align-letter-right:before {\n  content: \"\\e91d\";\n}\n.unil-align-right-justify:before {\n  content: \"\\e91e\";\n}\n.unil-align-right:before {\n  content: \"\\e91f\";\n}\n.unil-align:before {\n  content: \"\\e920\";\n}\n.unil-amazon:before {\n  content: \"\\e921\";\n}\n.unil-ambulance:before {\n  content: \"\\e922\";\n}\n.unil-analysis:before {\n  content: \"\\e923\";\n}\n.unil-analytics:before {\n  content: \"\\e924\";\n}\n.unil-anchor:before {\n  content: \"\\e925\";\n}\n.unil-android-alt:before {\n  content: \"\\e926\";\n}\n.unil-android-phone-slash:before {\n  content: \"\\e927\";\n}\n.unil-android:before {\n  content: \"\\e928\";\n}\n.unil-angle-double-down:before {\n  content: \"\\e929\";\n}\n.unil-angle-double-left:before {\n  content: \"\\e92a\";\n}\n.unil-angle-double-right:before {\n  content: \"\\e92b\";\n}\n.unil-angle-double-up:before {\n  content: \"\\e92c\";\n}\n.unil-angle-down:before {\n  content: \"\\e92d\";\n}\n.unil-angle-left-b:before {\n  content: \"\\e92e\";\n}\n.unil-angle-left:before {\n  content: \"\\e92f\";\n}\n.unil-angle-right-b:before {\n  content: \"\\e930\";\n}\n.unil-angle-right:before {\n  content: \"\\e931\";\n}\n.unil-angle-up:before {\n  content: \"\\e932\";\n}\n.unil-angry:before {\n  content: \"\\e933\";\n}\n.unil-ankh:before {\n  content: \"\\e934\";\n}\n.unil-annoyed-alt:before {\n  content: \"\\e935\";\n}\n.unil-annoyed:before {\n  content: \"\\e936\";\n}\n.unil-apple-alt:before {\n  content: \"\\e937\";\n}\n.unil-apple:before {\n  content: \"\\e938\";\n}\n.unil-apps:before {\n  content: \"\\e939\";\n}\n.unil-archive-alt:before {\n  content: \"\\e93a\";\n}\n.unil-archive:before {\n  content: \"\\e93b\";\n}\n.unil-archway:before {\n  content: \"\\e93c\";\n}\n.unil-arrow-break:before {\n  content: \"\\e93d\";\n}\n.unil-arrow-circle-down:before {\n  content: \"\\e93e\";\n}\n.unil-arrow-circle-left:before {\n  content: \"\\e93f\";\n}\n.unil-arrow-circle-right:before {\n  content: \"\\e940\";\n}\n.unil-arrow-circle-up:before {\n  content: \"\\e941\";\n}\n.unil-arrow-compress-h:before {\n  content: \"\\e942\";\n}\n.unil-arrow-down-left:before {\n  content: \"\\e943\";\n}\n.unil-arrow-down-right:before {\n  content: \"\\e944\";\n}\n.unil-arrow-down:before {\n  content: \"\\e945\";\n}\n.unil-arrow-from-right:before {\n  content: \"\\e946\";\n}\n.unil-arrow-from-top:before {\n  content: \"\\e947\";\n}\n.unil-arrow-growth:before {\n  content: \"\\e948\";\n}\n.unil-arrow-left:before {\n  content: \"\\e949\";\n}\n.unil-arrow-random:before {\n  content: \"\\e94a\";\n}\n.unil-arrow-resize-diagonal:before {\n  content: \"\\e94b\";\n}\n.unil-arrow-right:before {\n  content: \"\\e94c\";\n}\n.unil-arrow-to-bottom:before {\n  content: \"\\e94d\";\n}\n.unil-arrow-to-right:before {\n  content: \"\\e94e\";\n}\n.unil-arrow-up-left:before {\n  content: \"\\e94f\";\n}\n.unil-arrow-up-right:before {\n  content: \"\\e950\";\n}\n.unil-arrow-up:before {\n  content: \"\\e951\";\n}\n.unil-arrow:before {\n  content: \"\\e952\";\n}\n.unil-arrows-h-alt:before {\n  content: \"\\e953\";\n}\n.unil-arrows-h:before {\n  content: \"\\e954\";\n}\n.unil-arrows-left-down:before {\n  content: \"\\e955\";\n}\n.unil-arrows-maximize:before {\n  content: \"\\e956\";\n}\n.unil-arrows-merge:before {\n  content: \"\\e957\";\n}\n.unil-arrows-resize-h:before {\n  content: \"\\e958\";\n}\n.unil-arrows-resize-v:before {\n  content: \"\\e959\";\n}\n.unil-arrows-resize:before {\n  content: \"\\e95a\";\n}\n.unil-arrows-right-down:before {\n  content: \"\\e95b\";\n}\n.unil-arrows-shrink-h:before {\n  content: \"\\e95c\";\n}\n.unil-arrows-shrink-v:before {\n  content: \"\\e95d\";\n}\n.unil-arrows-up-right:before {\n  content: \"\\e95e\";\n}\n.unil-arrows-v-alt:before {\n  content: \"\\e95f\";\n}\n.unil-arrows-v:before {\n  content: \"\\e960\";\n}\n.unil-assistive-listening-systems:before {\n  content: \"\\e961\";\n}\n.unil-asterisk:before {\n  content: \"\\e962\";\n}\n.unil-at:before {\n  content: \"\\e963\";\n}\n.unil-atom:before {\n  content: \"\\e964\";\n}\n.unil-auto-flash:before {\n  content: \"\\e965\";\n}\n.unil-award-alt:before {\n  content: \"\\e966\";\n}\n.unil-award:before {\n  content: \"\\e967\";\n}\n.unil-baby-carriage:before {\n  content: \"\\e968\";\n}\n.unil-backpack:before {\n  content: \"\\e969\";\n}\n.unil-backspace:before {\n  content: \"\\e96a\";\n}\n.unil-backward:before {\n  content: \"\\e96b\";\n}\n.unil-bag-alt:before {\n  content: \"\\e96c\";\n}\n.unil-bag-slash:before {\n  content: \"\\e96d\";\n}\n.unil-bag:before {\n  content: \"\\e96e\";\n}\n.unil-balance-scale:before {\n  content: \"\\e96f\";\n}\n.unil-ban:before {\n  content: \"\\e970\";\n}\n.unil-band-aid:before {\n  content: \"\\e971\";\n}\n.unil-bars:before {\n  content: \"\\e972\";\n}\n.unil-baseball-ball:before {\n  content: \"\\e973\";\n}\n.unil-basketball-hoop:before {\n  content: \"\\e974\";\n}\n.unil-basketball:before {\n  content: \"\\e975\";\n}\n.unil-bath:before {\n  content: \"\\e976\";\n}\n.unil-battery-bolt:before {\n  content: \"\\e977\";\n}\n.unil-battery-empty:before {\n  content: \"\\e978\";\n}\n.unil-bed-double:before {\n  content: \"\\e979\";\n}\n.unil-bed:before {\n  content: \"\\e97a\";\n}\n.unil-behance-alt:before {\n  content: \"\\e97b\";\n}\n.unil-behance:before {\n  content: \"\\e97c\";\n}\n.unil-bell-school:before {\n  content: \"\\e97d\";\n}\n.unil-bell-slash:before {\n  content: \"\\e97e\";\n}\n.unil-bell:before {\n  content: \"\\e97f\";\n}\n.unil-bill:before {\n  content: \"\\e980\";\n}\n.unil-bing:before {\n  content: \"\\e981\";\n}\n.unil-bitcoin-alt:before {\n  content: \"\\e982\";\n}\n.unil-bitcoin-circle:before {\n  content: \"\\e983\";\n}\n.unil-bitcoin-sign:before {\n  content: \"\\e984\";\n}\n.unil-bitcoin:before {\n  content: \"\\e985\";\n}\n.unil-black-berry:before {\n  content: \"\\e986\";\n}\n.unil-blogger-alt:before {\n  content: \"\\e987\";\n}\n.unil-blogger:before {\n  content: \"\\e988\";\n}\n.unil-bluetooth-b:before {\n  content: \"\\e989\";\n}\n.unil-bold:before {\n  content: \"\\e98a\";\n}\n.unil-bolt-alt:before {\n  content: \"\\e98b\";\n}\n.unil-bolt-slash:before {\n  content: \"\\e98c\";\n}\n.unil-bolt:before {\n  content: \"\\e98d\";\n}\n.unil-book-alt:before {\n  content: \"\\e98e\";\n}\n.unil-book-medical:before {\n  content: \"\\e98f\";\n}\n.unil-book-open:before {\n  content: \"\\e990\";\n}\n.unil-book-reader:before {\n  content: \"\\e991\";\n}\n.unil-book:before {\n  content: \"\\e992\";\n}\n.unil-bookmark-full:before {\n  content: \"\\e993\";\n}\n.unil-bookmark:before {\n  content: \"\\e994\";\n}\n.unil-books:before {\n  content: \"\\e995\";\n}\n.unil-boombox:before {\n  content: \"\\e996\";\n}\n.unil-border-alt:before {\n  content: \"\\e997\";\n}\n.unil-border-bottom:before {\n  content: \"\\e998\";\n}\n.unil-border-clear:before {\n  content: \"\\e999\";\n}\n.unil-border-horizontal:before {\n  content: \"\\e99a\";\n}\n.unil-border-inner:before {\n  content: \"\\e99b\";\n}\n.unil-border-left:before {\n  content: \"\\e99c\";\n}\n.unil-border-out:before {\n  content: \"\\e99d\";\n}\n.unil-border-right:before {\n  content: \"\\e99e\";\n}\n.unil-border-top:before {\n  content: \"\\e99f\";\n}\n.unil-border-vertical:before {\n  content: \"\\e9a0\";\n}\n.unil-bowling-ball:before {\n  content: \"\\e9a1\";\n}\n.unil-box:before {\n  content: \"\\e9a2\";\n}\n.unil-brackets-curly:before {\n  content: \"\\e9a3\";\n}\n.unil-brain:before {\n  content: \"\\e9a4\";\n}\n.unil-briefcase-alt:before {\n  content: \"\\e9a5\";\n}\n.unil-briefcase:before {\n  content: \"\\e9a6\";\n}\n.unil-bright:before {\n  content: \"\\e9a7\";\n}\n.unil-brightness-empty:before {\n  content: \"\\e9a8\";\n}\n.unil-brightness-half:before {\n  content: \"\\e9a9\";\n}\n.unil-brightness-low:before {\n  content: \"\\e9aa\";\n}\n.unil-brightness-minus:before {\n  content: \"\\e9ab\";\n}\n.unil-brightness-plus:before {\n  content: \"\\e9ac\";\n}\n.unil-brightness:before {\n  content: \"\\e9ad\";\n}\n.unil-bring-bottom:before {\n  content: \"\\e9ae\";\n}\n.unil-bring-front:before {\n  content: \"\\e9af\";\n}\n.unil-browser:before {\n  content: \"\\e9b0\";\n}\n.unil-brush-alt:before {\n  content: \"\\e9b1\";\n}\n.unil-bug:before {\n  content: \"\\e9b2\";\n}\n.unil-building:before {\n  content: \"\\e9b3\";\n}\n.unil-bullseye:before {\n  content: \"\\e9b4\";\n}\n.unil-bus-alt:before {\n  content: \"\\e9b5\";\n}\n.unil-bus-school:before {\n  content: \"\\e9b6\";\n}\n.unil-bus:before {\n  content: \"\\e9b7\";\n}\n.unil-calculator-alt:before {\n  content: \"\\e9b8\";\n}\n.unil-calculator:before {\n  content: \"\\e9b9\";\n}\n.unil-calendar-alt:before {\n  content: \"\\e9ba\";\n}\n.unil-calendar-slash:before {\n  content: \"\\e9bb\";\n}\n.unil-calender:before {\n  content: \"\\e9bc\";\n}\n.unil-calling:before {\n  content: \"\\e9bd\";\n}\n.unil-camera-change:before {\n  content: \"\\e9be\";\n}\n.unil-camera-plus:before {\n  content: \"\\e9bf\";\n}\n.unil-camera-slash:before {\n  content: \"\\e9c0\";\n}\n.unil-camera:before {\n  content: \"\\e9c1\";\n}\n.unil-cancel:before {\n  content: \"\\e9c2\";\n}\n.unil-capsule:before {\n  content: \"\\e9c3\";\n}\n.unil-capture:before {\n  content: \"\\e9c4\";\n}\n.unil-car-sideview:before {\n  content: \"\\e9c5\";\n}\n.unil-car-slash:before {\n  content: \"\\e9c6\";\n}\n.unil-car-wash:before {\n  content: \"\\e9c7\";\n}\n.unil-car:before {\n  content: \"\\e9c8\";\n}\n.unil-card-atm:before {\n  content: \"\\e9c9\";\n}\n.unil-caret-right:before {\n  content: \"\\e9ca\";\n}\n.unil-cell:before {\n  content: \"\\e9cb\";\n}\n.unil-celsius:before {\n  content: \"\\e9cc\";\n}\n.unil-channel-add:before {\n  content: \"\\e9cd\";\n}\n.unil-channel:before {\n  content: \"\\e9ce\";\n}\n.unil-chart-bar-alt:before {\n  content: \"\\e9cf\";\n}\n.unil-chart-bar:before {\n  content: \"\\e9d0\";\n}\n.unil-chart-down:before {\n  content: \"\\e9d1\";\n}\n.unil-chart-growth-alt:before {\n  content: \"\\e9d2\";\n}\n.unil-chart-growth:before {\n  content: \"\\e9d3\";\n}\n.unil-chart-line:before {\n  content: \"\\e9d4\";\n}\n.unil-chart-pie-alt:before {\n  content: \"\\e9d5\";\n}\n.unil-chart-pie:before {\n  content: \"\\e9d6\";\n}\n.unil-chart:before {\n  content: \"\\e9d7\";\n}\n.unil-chat-bubble-user:before {\n  content: \"\\e9d8\";\n}\n.unil-chat-info:before {\n  content: \"\\e9d9\";\n}\n.unil-chat:before {\n  content: \"\\e9da\";\n}\n.unil-check-circle:before {\n  content: \"\\e9db\";\n}\n.unil-check-square:before {\n  content: \"\\e9dc\";\n}\n.unil-check:before {\n  content: \"\\e9dd\";\n}\n.unil-circle-layer:before {\n  content: \"\\e9de\";\n}\n.unil-circle:before {\n  content: \"\\e9df\";\n}\n.unil-circuit:before {\n  content: \"\\e9e0\";\n}\n.unil-clapper-board:before {\n  content: \"\\e9e1\";\n}\n.unil-clinic-medical:before {\n  content: \"\\e9e2\";\n}\n.unil-clipboard-alt:before {\n  content: \"\\e9e3\";\n}\n.unil-clipboard-blank:before {\n  content: \"\\e9e4\";\n}\n.unil-clipboard-notes:before {\n  content: \"\\e9e5\";\n}\n.unil-clipboard:before {\n  content: \"\\e9e6\";\n}\n.unil-clock-eight:before {\n  content: \"\\e9e7\";\n}\n.unil-clock-five:before {\n  content: \"\\e9e8\";\n}\n.unil-clock-nine:before {\n  content: \"\\e9e9\";\n}\n.unil-clock-seven:before {\n  content: \"\\e9ea\";\n}\n.unil-clock-ten:before {\n  content: \"\\e9eb\";\n}\n.unil-clock-three:before {\n  content: \"\\e9ec\";\n}\n.unil-clock-two:before {\n  content: \"\\e9ed\";\n}\n.unil-clock:before {\n  content: \"\\e9ee\";\n}\n.unil-closed-captioning-slash:before {\n  content: \"\\e9ef\";\n}\n.unil-closed-captioning:before {\n  content: \"\\e9f0\";\n}\n.unil-cloud-block:before {\n  content: \"\\e9f1\";\n}\n.unil-cloud-bookmark:before {\n  content: \"\\e9f2\";\n}\n.unil-cloud-check:before {\n  content: \"\\e9f3\";\n}\n.unil-cloud-computing:before {\n  content: \"\\e9f4\";\n}\n.unil-cloud-data-connection:before {\n  content: \"\\e9f5\";\n}\n.unil-cloud-database-tree:before {\n  content: \"\\e9f6\";\n}\n.unil-cloud-download:before {\n  content: \"\\e9f7\";\n}\n.unil-cloud-drizzle:before {\n  content: \"\\e9f8\";\n}\n.unil-cloud-exclamation:before {\n  content: \"\\e9f9\";\n}\n.unil-cloud-hail:before {\n  content: \"\\e9fa\";\n}\n.unil-cloud-heart:before {\n  content: \"\\e9fb\";\n}\n.unil-cloud-info:before {\n  content: \"\\e9fc\";\n}\n.unil-cloud-lock:before {\n  content: \"\\e9fd\";\n}\n.unil-cloud-meatball:before {\n  content: \"\\e9fe\";\n}\n.unil-cloud-moon-hail:before {\n  content: \"\\e9ff\";\n}\n.unil-cloud-moon-meatball:before {\n  content: \"\\ea00\";\n}\n.unil-cloud-moon-rain:before {\n  content: \"\\ea01\";\n}\n.unil-cloud-moon-showers:before {\n  content: \"\\ea02\";\n}\n.unil-cloud-moon:before {\n  content: \"\\ea03\";\n}\n.unil-cloud-question:before {\n  content: \"\\ea04\";\n}\n.unil-cloud-rain-sun:before {\n  content: \"\\ea05\";\n}\n.unil-cloud-rain:before {\n  content: \"\\ea06\";\n}\n.unil-cloud-redo:before {\n  content: \"\\ea07\";\n}\n.unil-cloud-share:before {\n  content: \"\\ea08\";\n}\n.unil-cloud-shield:before {\n  content: \"\\ea09\";\n}\n.unil-cloud-showers-alt:before {\n  content: \"\\ea0a\";\n}\n.unil-cloud-showers-heavy:before {\n  content: \"\\ea0b\";\n}\n.unil-cloud-showers:before {\n  content: \"\\ea0c\";\n}\n.unil-cloud-slash:before {\n  content: \"\\ea0d\";\n}\n.unil-cloud-sun-hail:before {\n  content: \"\\ea0e\";\n}\n.unil-cloud-sun-meatball:before {\n  content: \"\\ea0f\";\n}\n.unil-cloud-sun-rain-alt:before {\n  content: \"\\ea10\";\n}\n.unil-cloud-sun-rain:before {\n  content: \"\\ea11\";\n}\n.unil-cloud-sun-tear:before {\n  content: \"\\ea12\";\n}\n.unil-cloud-sun:before {\n  content: \"\\ea13\";\n}\n.unil-cloud-times:before {\n  content: \"\\ea14\";\n}\n.unil-cloud-unlock:before {\n  content: \"\\ea15\";\n}\n.unil-cloud-upload:before {\n  content: \"\\ea16\";\n}\n.unil-cloud-wifi:before {\n  content: \"\\ea17\";\n}\n.unil-cloud-wind:before {\n  content: \"\\ea18\";\n}\n.unil-cloud:before {\n  content: \"\\ea19\";\n}\n.unil-clouds:before {\n  content: \"\\ea1a\";\n}\n.unil-club:before {\n  content: \"\\ea1b\";\n}\n.unil-code-branch:before {\n  content: \"\\ea1c\";\n}\n.unil-coffee:before {\n  content: \"\\ea1d\";\n}\n.unil-cog:before {\n  content: \"\\ea1e\";\n}\n.unil-coins:before {\n  content: \"\\ea1f\";\n}\n.unil-columns:before {\n  content: \"\\ea20\";\n}\n.unil-comment-add:before {\n  content: \"\\ea21\";\n}\n.unil-comment-alt-block:before {\n  content: \"\\ea22\";\n}\n.unil-comment-alt-chart-lines:before {\n  content: \"\\ea23\";\n}\n.unil-comment-alt-check:before {\n  content: \"\\ea24\";\n}\n.unil-comment-alt-dots:before {\n  content: \"\\ea25\";\n}\n.unil-comment-alt-download:before {\n  content: \"\\ea26\";\n}\n.unil-comment-alt-edit:before {\n  content: \"\\ea27\";\n}\n.unil-comment-alt-exclamation:before {\n  content: \"\\ea28\";\n}\n.unil-comment-alt-heart:before {\n  content: \"\\ea29\";\n}\n.unil-comment-alt-image:before {\n  content: \"\\ea2a\";\n}\n.unil-comment-alt-info:before {\n  content: \"\\ea2b\";\n}\n.unil-comment-alt-lines:before {\n  content: \"\\ea2c\";\n}\n.unil-comment-alt-lock:before {\n  content: \"\\ea2d\";\n}\n.unil-comment-alt-medical:before {\n  content: \"\\ea2e\";\n}\n.unil-comment-alt-message:before {\n  content: \"\\ea2f\";\n}\n.unil-comment-alt-notes:before {\n  content: \"\\ea30\";\n}\n.unil-comment-alt-plus:before {\n  content: \"\\ea31\";\n}\n.unil-comment-alt-question:before {\n  content: \"\\ea32\";\n}\n.unil-comment-alt-redo:before {\n  content: \"\\ea33\";\n}\n.unil-comment-alt-search:before {\n  content: \"\\ea34\";\n}\n.unil-comment-alt-share:before {\n  content: \"\\ea35\";\n}\n.unil-comment-alt-shield:before {\n  content: \"\\ea36\";\n}\n.unil-comment-alt-slash:before {\n  content: \"\\ea37\";\n}\n.unil-comment-alt-upload:before {\n  content: \"\\ea38\";\n}\n.unil-comment-alt-verify:before {\n  content: \"\\ea39\";\n}\n.unil-comment-alt:before {\n  content: \"\\ea3a\";\n}\n.unil-comment-block:before {\n  content: \"\\ea3b\";\n}\n.unil-comment-chart-line:before {\n  content: \"\\ea3c\";\n}\n.unil-comment-check:before {\n  content: \"\\ea3d\";\n}\n.unil-comment-dots:before {\n  content: \"\\ea3e\";\n}\n.unil-comment-download:before {\n  content: \"\\ea3f\";\n}\n.unil-comment-edit:before {\n  content: \"\\ea40\";\n}\n.unil-comment-exclamation:before {\n  content: \"\\ea41\";\n}\n.unil-comment-heart:before {\n  content: \"\\ea42\";\n}\n.unil-comment-image:before {\n  content: \"\\ea43\";\n}\n.unil-comment-info-alt:before {\n  content: \"\\ea44\";\n}\n.unil-comment-info:before {\n  content: \"\\ea45\";\n}\n.unil-comment-lines:before {\n  content: \"\\ea46\";\n}\n.unil-comment-lock:before {\n  content: \"\\ea47\";\n}\n.unil-comment-medical:before {\n  content: \"\\ea48\";\n}\n.unil-comment-message:before {\n  content: \"\\ea49\";\n}\n.unil-comment-notes:before {\n  content: \"\\ea4a\";\n}\n.unil-comment-plus:before {\n  content: \"\\ea4b\";\n}\n.unil-comment-question:before {\n  content: \"\\ea4c\";\n}\n.unil-comment-redo:before {\n  content: \"\\ea4d\";\n}\n.unil-comment-search:before {\n  content: \"\\ea4e\";\n}\n.unil-comment-share:before {\n  content: \"\\ea4f\";\n}\n.unil-comment-shield:before {\n  content: \"\\ea50\";\n}\n.unil-comment-slash:before {\n  content: \"\\ea51\";\n}\n.unil-comment-upload:before {\n  content: \"\\ea52\";\n}\n.unil-comment-verify:before {\n  content: \"\\ea53\";\n}\n.unil-comment:before {\n  content: \"\\ea54\";\n}\n.unil-comments-alt:before {\n  content: \"\\ea55\";\n}\n.unil-comments:before {\n  content: \"\\ea56\";\n}\n.unil-compact-disc:before {\n  content: \"\\ea57\";\n}\n.unil-comparison:before {\n  content: \"\\ea58\";\n}\n.unil-compass:before {\n  content: \"\\ea59\";\n}\n.unil-compress-alt-left:before {\n  content: \"\\ea5a\";\n}\n.unil-compress-alt:before {\n  content: \"\\ea5b\";\n}\n.unil-compress-arrows:before {\n  content: \"\\ea5c\";\n}\n.unil-compress-lines:before {\n  content: \"\\ea5d\";\n}\n.unil-compress-point:before {\n  content: \"\\ea5e\";\n}\n.unil-compress-v:before {\n  content: \"\\ea5f\";\n}\n.unil-compress:before {\n  content: \"\\ea60\";\n}\n.unil-confused:before {\n  content: \"\\ea61\";\n}\n.unil-constructor:before {\n  content: \"\\ea62\";\n}\n.unil-copy-alt:before {\n  content: \"\\ea63\";\n}\n.unil-copy-landscape:before {\n  content: \"\\ea64\";\n}\n.unil-copy:before {\n  content: \"\\ea65\";\n}\n.unil-copyright:before {\n  content: \"\\ea66\";\n}\n.unil-corner-down-left:before {\n  content: \"\\ea67\";\n}\n.unil-corner-down-right-alt:before {\n  content: \"\\ea68\";\n}\n.unil-corner-down-right:before {\n  content: \"\\ea69\";\n}\n.unil-corner-left-down:before {\n  content: \"\\ea6a\";\n}\n.unil-corner-right-down:before {\n  content: \"\\ea6b\";\n}\n.unil-corner-up-left-alt:before {\n  content: \"\\ea6c\";\n}\n.unil-corner-up-left:before {\n  content: \"\\ea6d\";\n}\n.unil-corner-up-right-alt:before {\n  content: \"\\ea6e\";\n}\n.unil-corner-up-right:before {\n  content: \"\\ea6f\";\n}\n.unil-coronavirus:before {\n  content: \"\\ea70\";\n}\n.unil-create-dashboard:before {\n  content: \"\\ea71\";\n}\n.unil-creative-commons-pd:before {\n  content: \"\\ea72\";\n}\n.unil-credit-card-search:before {\n  content: \"\\ea73\";\n}\n.unil-credit-card:before {\n  content: \"\\ea74\";\n}\n.unil-crockery:before {\n  content: \"\\ea75\";\n}\n.unil-crop-alt-rotate-left:before {\n  content: \"\\ea76\";\n}\n.unil-crop-alt-rotate-right:before {\n  content: \"\\ea77\";\n}\n.unil-crop-alt:before {\n  content: \"\\ea78\";\n}\n.unil-crosshair-alt:before {\n  content: \"\\ea79\";\n}\n.unil-crosshair:before {\n  content: \"\\ea7a\";\n}\n.unil-crosshairs:before {\n  content: \"\\ea7b\";\n}\n.unil-css3-simple:before {\n  content: \"\\ea7c\";\n}\n.unil-cube:before {\n  content: \"\\ea7d\";\n}\n.unil-dashboard:before {\n  content: \"\\ea7e\";\n}\n.unil-data-sharing:before {\n  content: \"\\ea7f\";\n}\n.unil-database-alt:before {\n  content: \"\\ea80\";\n}\n.unil-database:before {\n  content: \"\\ea81\";\n}\n.unil-desert:before {\n  content: \"\\ea82\";\n}\n.unil-desktop-alt-slash:before {\n  content: \"\\ea83\";\n}\n.unil-desktop-alt:before {\n  content: \"\\ea84\";\n}\n.unil-desktop-cloud-alt:before {\n  content: \"\\ea85\";\n}\n.unil-desktop-slash:before {\n  content: \"\\ea86\";\n}\n.unil-desktop:before {\n  content: \"\\ea87\";\n}\n.unil-dialpad-alt:before {\n  content: \"\\ea88\";\n}\n.unil-dialpad:before {\n  content: \"\\ea89\";\n}\n.unil-diamond:before {\n  content: \"\\ea8a\";\n}\n.unil-diary-alt:before {\n  content: \"\\ea8b\";\n}\n.unil-diary:before {\n  content: \"\\ea8c\";\n}\n.unil-dice-five:before {\n  content: \"\\ea8d\";\n}\n.unil-dice-four:before {\n  content: \"\\ea8e\";\n}\n.unil-dice-one:before {\n  content: \"\\ea8f\";\n}\n.unil-dice-six:before {\n  content: \"\\ea90\";\n}\n.unil-dice-three:before {\n  content: \"\\ea91\";\n}\n.unil-dice-two:before {\n  content: \"\\ea92\";\n}\n.unil-direction:before {\n  content: \"\\ea93\";\n}\n.unil-directions:before {\n  content: \"\\ea94\";\n}\n.unil-discord:before {\n  content: \"\\ea95\";\n}\n.unil-dizzy-meh:before {\n  content: \"\\ea96\";\n}\n.unil-dna:before {\n  content: \"\\ea97\";\n}\n.unil-document-info:before {\n  content: \"\\ea98\";\n}\n.unil-document-layout-center:before {\n  content: \"\\ea99\";\n}\n.unil-document-layout-left:before {\n  content: \"\\ea9a\";\n}\n.unil-document-layout-right:before {\n  content: \"\\ea9b\";\n}\n.unil-dollar-alt:before {\n  content: \"\\ea9c\";\n}\n.unil-dollar-sign-alt:before {\n  content: \"\\ea9d\";\n}\n.unil-dollar-sign:before {\n  content: \"\\ea9e\";\n}\n.unil-download-alt:before {\n  content: \"\\ea9f\";\n}\n.unil-draggabledots:before {\n  content: \"\\eaa0\";\n}\n.unil-dribbble:before {\n  content: \"\\eaa1\";\n}\n.unil-drill:before {\n  content: \"\\eaa2\";\n}\n.unil-dropbox:before {\n  content: \"\\eaa3\";\n}\n.unil-dumbbell:before {\n  content: \"\\eaa4\";\n}\n.unil-ear:before {\n  content: \"\\eaa5\";\n}\n.unil-edit-alt:before {\n  content: \"\\eaa6\";\n}\n.unil-edit:before {\n  content: \"\\eaa7\";\n}\n.unil-ellipsis-h:before {\n  content: \"\\eaa8\";\n}\n.unil-ellipsis-v:before {\n  content: \"\\eaa9\";\n}\n.unil-emoji:before {\n  content: \"\\eaaa\";\n}\n.unil-english-to-chinese:before {\n  content: \"\\eaab\";\n}\n.unil-enter:before {\n  content: \"\\eaac\";\n}\n.unil-envelope-add:before {\n  content: \"\\eaad\";\n}\n.unil-envelope-alt:before {\n  content: \"\\eaae\";\n}\n.unil-envelope-block:before {\n  content: \"\\eaaf\";\n}\n.unil-envelope-bookmark:before {\n  content: \"\\eab0\";\n}\n.unil-envelope-check:before {\n  content: \"\\eab1\";\n}\n.unil-envelope-download-alt:before {\n  content: \"\\eab2\";\n}\n.unil-envelope-download:before {\n  content: \"\\eab3\";\n}\n.unil-envelope-edit:before {\n  content: \"\\eab4\";\n}\n.unil-envelope-exclamation:before {\n  content: \"\\eab5\";\n}\n.unil-envelope-heart:before {\n  content: \"\\eab6\";\n}\n.unil-envelope-info:before {\n  content: \"\\eab7\";\n}\n.unil-envelope-lock:before {\n  content: \"\\eab8\";\n}\n.unil-envelope-minus:before {\n  content: \"\\eab9\";\n}\n.unil-envelope-open:before {\n  content: \"\\eaba\";\n}\n.unil-envelope-question:before {\n  content: \"\\eabb\";\n}\n.unil-envelope-receive:before {\n  content: \"\\eabc\";\n}\n.unil-envelope-redo:before {\n  content: \"\\eabd\";\n}\n.unil-envelope-search:before {\n  content: \"\\eabe\";\n}\n.unil-envelope-send:before {\n  content: \"\\eabf\";\n}\n.unil-envelope-share:before {\n  content: \"\\eac0\";\n}\n.unil-envelope-shield:before {\n  content: \"\\eac1\";\n}\n.unil-envelope-star:before {\n  content: \"\\eac2\";\n}\n.unil-envelope-times:before {\n  content: \"\\eac3\";\n}\n.unil-envelope-upload-alt:before {\n  content: \"\\eac4\";\n}\n.unil-envelope-upload:before {\n  content: \"\\eac5\";\n}\n.unil-envelope:before {\n  content: \"\\eac6\";\n}\n.unil-envelopes:before {\n  content: \"\\eac7\";\n}\n.unil-equal-circle:before {\n  content: \"\\eac8\";\n}\n.unil-estate:before {\n  content: \"\\eac9\";\n}\n.unil-euro-circle:before {\n  content: \"\\eaca\";\n}\n.unil-euro:before {\n  content: \"\\eacb\";\n}\n.unil-exchange-alt:before {\n  content: \"\\eacc\";\n}\n.unil-exchange:before {\n  content: \"\\eacd\";\n}\n.unil-exclamation-circle:before {\n  content: \"\\eace\";\n}\n.unil-exclamation-octagon:before {\n  content: \"\\eacf\";\n}\n.unil-exclamation-triangle:before {\n  content: \"\\ead0\";\n}\n.unil-exclamation:before {\n  content: \"\\ead1\";\n}\n.unil-exclude:before {\n  content: \"\\ead2\";\n}\n.unil-exit:before {\n  content: \"\\ead3\";\n}\n.unil-expand-alt:before {\n  content: \"\\ead4\";\n}\n.unil-expand-arrows-alt:before {\n  content: \"\\ead5\";\n}\n.unil-expand-arrows:before {\n  content: \"\\ead6\";\n}\n.unil-expand-from-corner:before {\n  content: \"\\ead7\";\n}\n.unil-expand-left:before {\n  content: \"\\ead8\";\n}\n.unil-expand-right:before {\n  content: \"\\ead9\";\n}\n.unil-export:before {\n  content: \"\\eada\";\n}\n.unil-exposure-alt:before {\n  content: \"\\eadb\";\n}\n.unil-exposure-increase:before {\n  content: \"\\eadc\";\n}\n.unil-external-link-alt:before {\n  content: \"\\eadd\";\n}\n.unil-eye-slash:before {\n  content: \"\\eade\";\n}\n.unil-eye:before {\n  content: \"\\eadf\";\n}\n.unil-facebook-f:before {\n  content: \"\\eae0\";\n}\n.unil-facebook-messenger-alt:before {\n  content: \"\\eae1\";\n}\n.unil-facebook-messenger:before {\n  content: \"\\eae2\";\n}\n.unil-facebook:before {\n  content: \"\\eae3\";\n}\n.unil-fahrenheit:before {\n  content: \"\\eae4\";\n}\n.unil-fast-mail-alt:before {\n  content: \"\\eae5\";\n}\n.unil-fast-mail:before {\n  content: \"\\eae6\";\n}\n.unil-favorite:before {\n  content: \"\\eae7\";\n}\n.unil-feedback:before {\n  content: \"\\eae8\";\n}\n.unil-file-alt:before {\n  content: \"\\eae9\";\n}\n.unil-file-blank:before {\n  content: \"\\eaea\";\n}\n.unil-file-block-alt:before {\n  content: \"\\eaeb\";\n}\n.unil-file-bookmark-alt:before {\n  content: \"\\eaec\";\n}\n.unil-file-check-alt:before {\n  content: \"\\eaed\";\n}\n.unil-file-check:before {\n  content: \"\\eaee\";\n}\n.unil-file-contract-dollar:before {\n  content: \"\\eaef\";\n}\n.unil-file-copy-alt:before {\n  content: \"\\eaf0\";\n}\n.unil-file-download-alt:before {\n  content: \"\\eaf1\";\n}\n.unil-file-download:before {\n  content: \"\\eaf2\";\n}\n.unil-file-edit-alt:before {\n  content: \"\\eaf3\";\n}\n.unil-file-exclamation-alt:before {\n  content: \"\\eaf4\";\n}\n.unil-file-exclamation:before {\n  content: \"\\eaf5\";\n}\n.unil-file-export:before {\n  content: \"\\eaf6\";\n}\n.unil-file-graph:before {\n  content: \"\\eaf7\";\n}\n.unil-file-heart:before {\n  content: \"\\eaf8\";\n}\n.unil-file-import:before {\n  content: \"\\eaf9\";\n}\n.unil-file-info-alt:before {\n  content: \"\\eafa\";\n}\n.unil-file-landscape-alt:before {\n  content: \"\\eafb\";\n}\n.unil-file-landscape:before {\n  content: \"\\eafc\";\n}\n.unil-file-lanscape-slash:before {\n  content: \"\\eafd\";\n}\n.unil-file-lock-alt:before {\n  content: \"\\eafe\";\n}\n.unil-file-medical-alt:before {\n  content: \"\\eaff\";\n}\n.unil-file-medical:before {\n  content: \"\\eb00\";\n}\n.unil-file-minus-alt:before {\n  content: \"\\eb01\";\n}\n.unil-file-minus:before {\n  content: \"\\eb02\";\n}\n.unil-file-network:before {\n  content: \"\\eb03\";\n}\n.unil-file-plus-alt:before {\n  content: \"\\eb04\";\n}\n.unil-file-plus:before {\n  content: \"\\eb05\";\n}\n.unil-file-question-alt:before {\n  content: \"\\eb06\";\n}\n.unil-file-question:before {\n  content: \"\\eb07\";\n}\n.unil-file-redo-alt:before {\n  content: \"\\eb08\";\n}\n.unil-file-search-alt:before {\n  content: \"\\eb09\";\n}\n.unil-file-share-alt:before {\n  content: \"\\eb0a\";\n}\n.unil-file-shield-alt:before {\n  content: \"\\eb0b\";\n}\n.unil-file-slash:before {\n  content: \"\\eb0c\";\n}\n.unil-file-times-alt:before {\n  content: \"\\eb0d\";\n}\n.unil-file-times:before {\n  content: \"\\eb0e\";\n}\n.unil-file-upload-alt:before {\n  content: \"\\eb0f\";\n}\n.unil-file-upload:before {\n  content: \"\\eb10\";\n}\n.unil-file:before {\n  content: \"\\eb11\";\n}\n.unil-files-landscapes-alt:before {\n  content: \"\\eb12\";\n}\n.unil-files-landscapes:before {\n  content: \"\\eb13\";\n}\n.unil-film:before {\n  content: \"\\eb14\";\n}\n.unil-filter-slash:before {\n  content: \"\\eb15\";\n}\n.unil-filter:before {\n  content: \"\\eb16\";\n}\n.unil-fire:before {\n  content: \"\\eb17\";\n}\n.unil-flask-potion:before {\n  content: \"\\eb18\";\n}\n.unil-flask:before {\n  content: \"\\eb19\";\n}\n.unil-flip-h-alt:before {\n  content: \"\\eb1a\";\n}\n.unil-flip-h:before {\n  content: \"\\eb1b\";\n}\n.unil-flip-v-alt:before {\n  content: \"\\eb1c\";\n}\n.unil-flip-v:before {\n  content: \"\\eb1d\";\n}\n.unil-flower:before {\n  content: \"\\eb1e\";\n}\n.unil-focus-add:before {\n  content: \"\\eb1f\";\n}\n.unil-focus-target:before {\n  content: \"\\eb20\";\n}\n.unil-focus:before {\n  content: \"\\eb21\";\n}\n.unil-folder-check:before {\n  content: \"\\eb22\";\n}\n.unil-folder-download:before {\n  content: \"\\eb23\";\n}\n.unil-folder-exclamation:before {\n  content: \"\\eb24\";\n}\n.unil-folder-heart:before {\n  content: \"\\eb25\";\n}\n.unil-folder-info:before {\n  content: \"\\eb26\";\n}\n.unil-folder-lock:before {\n  content: \"\\eb27\";\n}\n.unil-folder-medical:before {\n  content: \"\\eb28\";\n}\n.unil-folder-minus:before {\n  content: \"\\eb29\";\n}\n.unil-folder-network:before {\n  content: \"\\eb2a\";\n}\n.unil-folder-open:before {\n  content: \"\\eb2b\";\n}\n.unil-folder-plus:before {\n  content: \"\\eb2c\";\n}\n.unil-folder-question:before {\n  content: \"\\eb2d\";\n}\n.unil-folder-slash:before {\n  content: \"\\eb2e\";\n}\n.unil-folder-times:before {\n  content: \"\\eb2f\";\n}\n.unil-folder-upload:before {\n  content: \"\\eb30\";\n}\n.unil-folder:before {\n  content: \"\\eb31\";\n}\n.unil-font:before {\n  content: \"\\eb32\";\n}\n.unil-football-american:before {\n  content: \"\\eb33\";\n}\n.unil-football-ball:before {\n  content: \"\\eb34\";\n}\n.unil-football:before {\n  content: \"\\eb35\";\n}\n.unil-forecastcloud-moon-tear:before {\n  content: \"\\eb36\";\n}\n.unil-forwaded-call:before {\n  content: \"\\eb37\";\n}\n.unil-forward:before {\n  content: \"\\eb38\";\n}\n.unil-frown:before {\n  content: \"\\eb39\";\n}\n.unil-game-structure:before {\n  content: \"\\eb3a\";\n}\n.unil-gift:before {\n  content: \"\\eb3b\";\n}\n.unil-github-alt:before {\n  content: \"\\eb3c\";\n}\n.unil-github:before {\n  content: \"\\eb3d\";\n}\n.unil-glass-martini-alt-slash:before {\n  content: \"\\eb3e\";\n}\n.unil-glass-martini-alt:before {\n  content: \"\\eb3f\";\n}\n.unil-glass-martini:before {\n  content: \"\\eb40\";\n}\n.unil-glass-tea:before {\n  content: \"\\eb41\";\n}\n.unil-glass:before {\n  content: \"\\eb42\";\n}\n.unil-globe:before {\n  content: \"\\eb43\";\n}\n.unil-gold:before {\n  content: \"\\eb44\";\n}\n.unil-golf-ball:before {\n  content: \"\\eb45\";\n}\n.unil-google-drive-alt:before {\n  content: \"\\eb46\";\n}\n.unil-google-drive:before {\n  content: \"\\eb47\";\n}\n.unil-google-hangouts-alt:before {\n  content: \"\\eb48\";\n}\n.unil-google-hangouts:before {\n  content: \"\\eb49\";\n}\n.unil-google-play:before {\n  content: \"\\eb4a\";\n}\n.unil-google:before {\n  content: \"\\eb4b\";\n}\n.unil-graduation-cap:before {\n  content: \"\\eb4c\";\n}\n.unil-graph-bar:before {\n  content: \"\\eb4d\";\n}\n.unil-grid:before {\n  content: \"\\eb4e\";\n}\n.unil-grids:before {\n  content: \"\\eb4f\";\n}\n.unil-grin-tongue-wink-alt:before {\n  content: \"\\eb50\";\n}\n.unil-grin-tongue-wink:before {\n  content: \"\\eb51\";\n}\n.unil-grin:before {\n  content: \"\\eb52\";\n}\n.unil-grip-horizontal-line:before {\n  content: \"\\eb53\";\n}\n.unil-hard-hat:before {\n  content: \"\\eb54\";\n}\n.unil-hdd:before {\n  content: \"\\eb55\";\n}\n.unil-head-side-cough:before {\n  content: \"\\eb56\";\n}\n.unil-head-side-mask:before {\n  content: \"\\eb57\";\n}\n.unil-head-side:before {\n  content: \"\\eb58\";\n}\n.unil-headphone-slash:before {\n  content: \"\\eb59\";\n}\n.unil-headphones-alt:before {\n  content: \"\\eb5a\";\n}\n.unil-headphones:before {\n  content: \"\\eb5b\";\n}\n.unil-heart-alt:before {\n  content: \"\\eb5c\";\n}\n.unil-heart-break:before {\n  content: \"\\eb5d\";\n}\n.unil-heart-medical:before {\n  content: \"\\eb5e\";\n}\n.unil-heart-rate:before {\n  content: \"\\eb5f\";\n}\n.unil-heart-sign:before {\n  content: \"\\eb60\";\n}\n.unil-heart:before {\n  content: \"\\eb61\";\n}\n.unil-heartbeat:before {\n  content: \"\\eb62\";\n}\n.unil-hindi-to-chinese:before {\n  content: \"\\eb63\";\n}\n.unil-history-alt:before {\n  content: \"\\eb64\";\n}\n.unil-history:before {\n  content: \"\\eb65\";\n}\n.unil-home-alt:before {\n  content: \"\\eb66\";\n}\n.unil-home:before {\n  content: \"\\eb67\";\n}\n.unil-horizontal-align-center:before {\n  content: \"\\eb68\";\n}\n.unil-horizontal-align-left:before {\n  content: \"\\eb69\";\n}\n.unil-horizontal-align-right:before {\n  content: \"\\eb6a\";\n}\n.unil-horizontal-distribution-center:before {\n  content: \"\\eb6b\";\n}\n.unil-horizontal-distribution-left:before {\n  content: \"\\eb6c\";\n}\n.unil-horizontal-distribution-right:before {\n  content: \"\\eb6d\";\n}\n.unil-hospital-square-sign:before {\n  content: \"\\eb6e\";\n}\n.unil-hospital-symbol:before {\n  content: \"\\eb6f\";\n}\n.unil-hospital:before {\n  content: \"\\eb70\";\n}\n.unil-hourglass:before {\n  content: \"\\eb71\";\n}\n.unil-house-user:before {\n  content: \"\\eb72\";\n}\n.unil-html3-alt:before {\n  content: \"\\eb73\";\n}\n.unil-html3:before {\n  content: \"\\eb74\";\n}\n.unil-html5-alt:before {\n  content: \"\\eb75\";\n}\n.unil-html5:before {\n  content: \"\\eb76\";\n}\n.unil-hunting:before {\n  content: \"\\eb77\";\n}\n.unil-image-alt-slash:before {\n  content: \"\\eb78\";\n}\n.unil-image-block:before {\n  content: \"\\eb79\";\n}\n.unil-image-broken:before {\n  content: \"\\eb7a\";\n}\n.unil-image-check:before {\n  content: \"\\eb7b\";\n}\n.unil-image-download:before {\n  content: \"\\eb7c\";\n}\n.unil-image-edit:before {\n  content: \"\\eb7d\";\n}\n.unil-image-lock:before {\n  content: \"\\eb7e\";\n}\n.unil-image-minus:before {\n  content: \"\\eb7f\";\n}\n.unil-image-plus:before {\n  content: \"\\eb80\";\n}\n.unil-image-question:before {\n  content: \"\\eb81\";\n}\n.unil-image-redo:before {\n  content: \"\\eb82\";\n}\n.unil-image-resize-landscape:before {\n  content: \"\\eb83\";\n}\n.unil-image-resize-square:before {\n  content: \"\\eb84\";\n}\n.unil-image-search:before {\n  content: \"\\eb85\";\n}\n.unil-image-share:before {\n  content: \"\\eb86\";\n}\n.unil-image-shield:before {\n  content: \"\\eb87\";\n}\n.unil-image-slash:before {\n  content: \"\\eb88\";\n}\n.unil-image-times:before {\n  content: \"\\eb89\";\n}\n.unil-image-upload:before {\n  content: \"\\eb8a\";\n}\n.unil-image-v:before {\n  content: \"\\eb8b\";\n}\n.unil-image:before {\n  content: \"\\eb8c\";\n}\n.unil-images:before {\n  content: \"\\eb8d\";\n}\n.unil-import:before {\n  content: \"\\eb8e\";\n}\n.unil-inbox:before {\n  content: \"\\eb8f\";\n}\n.unil-incoming-call:before {\n  content: \"\\eb90\";\n}\n.unil-info-circle:before {\n  content: \"\\eb91\";\n}\n.unil-info:before {\n  content: \"\\eb92\";\n}\n.unil-instagram-alt:before {\n  content: \"\\eb93\";\n}\n.unil-instagram:before {\n  content: \"\\eb94\";\n}\n.unil-intercom-alt:before {\n  content: \"\\eb95\";\n}\n.unil-intercom:before {\n  content: \"\\eb96\";\n}\n.unil-invoice:before {\n  content: \"\\eb97\";\n}\n.unil-italic:before {\n  content: \"\\eb98\";\n}\n.unil-jackhammer:before {\n  content: \"\\eb99\";\n}\n.unil-java-script:before {\n  content: \"\\eb9a\";\n}\n.unil-kayak:before {\n  content: \"\\eb9b\";\n}\n.unil-key-skeleton-alt:before {\n  content: \"\\eb9c\";\n}\n.unil-key-skeleton:before {\n  content: \"\\eb9d\";\n}\n.unil-keyboard-alt:before {\n  content: \"\\eb9e\";\n}\n.unil-keyboard-hide:before {\n  content: \"\\eb9f\";\n}\n.unil-keyboard-show:before {\n  content: \"\\eba0\";\n}\n.unil-keyboard:before {\n  content: \"\\eba1\";\n}\n.unil-keyhole-circle:before {\n  content: \"\\eba2\";\n}\n.unil-keyhole-square-full:before {\n  content: \"\\eba3\";\n}\n.unil-keyhole-square:before {\n  content: \"\\eba4\";\n}\n.unil-kid:before {\n  content: \"\\eba5\";\n}\n.unil-label-alt:before {\n  content: \"\\eba6\";\n}\n.unil-label:before {\n  content: \"\\eba7\";\n}\n.unil-lamp:before {\n  content: \"\\eba8\";\n}\n.unil-language:before {\n  content: \"\\eba9\";\n}\n.unil-laptop-cloud:before {\n  content: \"\\ebaa\";\n}\n.unil-laptop-connection:before {\n  content: \"\\ebab\";\n}\n.unil-laptop:before {\n  content: \"\\ebac\";\n}\n.unil-laughing:before {\n  content: \"\\ebad\";\n}\n.unil-layer-group-slash:before {\n  content: \"\\ebae\";\n}\n.unil-layer-group:before {\n  content: \"\\ebaf\";\n}\n.unil-layers-alt:before {\n  content: \"\\ebb0\";\n}\n.unil-layers-slash:before {\n  content: \"\\ebb1\";\n}\n.unil-layers:before {\n  content: \"\\ebb2\";\n}\n.unil-left-arrow-from-left:before {\n  content: \"\\ebb3\";\n}\n.unil-left-arrow-to-left:before {\n  content: \"\\ebb4\";\n}\n.unil-left-indent-alt:before {\n  content: \"\\ebb5\";\n}\n.unil-left-indent:before {\n  content: \"\\ebb6\";\n}\n.unil-left-to-right-text-direction:before {\n  content: \"\\ebb7\";\n}\n.unil-letter-chinese-a:before {\n  content: \"\\ebb8\";\n}\n.unil-letter-english-a:before {\n  content: \"\\ebb9\";\n}\n.unil-letter-hindi-a:before {\n  content: \"\\ebba\";\n}\n.unil-letter-japanese-a:before {\n  content: \"\\ebbb\";\n}\n.unil-life-ring:before {\n  content: \"\\ebbc\";\n}\n.unil-lightbulb-alt:before {\n  content: \"\\ebbd\";\n}\n.unil-lightbulb:before {\n  content: \"\\ebbe\";\n}\n.unil-line-alt:before {\n  content: \"\\ebbf\";\n}\n.unil-line-spacing:before {\n  content: \"\\ebc0\";\n}\n.unil-line:before {\n  content: \"\\ebc1\";\n}\n.unil-link-add:before {\n  content: \"\\ebc2\";\n}\n.unil-link-alt:before {\n  content: \"\\ebc3\";\n}\n.unil-link-broken:before {\n  content: \"\\ebc4\";\n}\n.unil-link-h:before {\n  content: \"\\ebc5\";\n}\n.unil-link:before {\n  content: \"\\ebc6\";\n}\n.unil-linkedin-alt:before {\n  content: \"\\ebc7\";\n}\n.unil-linkedin:before {\n  content: \"\\ebc8\";\n}\n.unil-lira-sign:before {\n  content: \"\\ebc9\";\n}\n.unil-list-ui-alt:before {\n  content: \"\\ebca\";\n}\n.unil-list-ul:before {\n  content: \"\\ebcb\";\n}\n.unil-location-arrow-alt:before {\n  content: \"\\ebcc\";\n}\n.unil-location-arrow:before {\n  content: \"\\ebcd\";\n}\n.unil-location-pin-alt:before {\n  content: \"\\ebce\";\n}\n.unil-location-point:before {\n  content: \"\\ebcf\";\n}\n.unil-lock-access:before {\n  content: \"\\ebd0\";\n}\n.unil-lock-alt:before {\n  content: \"\\ebd1\";\n}\n.unil-lock-open-alt:before {\n  content: \"\\ebd2\";\n}\n.unil-lock-slash:before {\n  content: \"\\ebd3\";\n}\n.unil-lock:before {\n  content: \"\\ebd4\";\n}\n.unil-luggage-cart:before {\n  content: \"\\ebd5\";\n}\n.unil-mailbox-alt:before {\n  content: \"\\ebd6\";\n}\n.unil-mailbox:before {\n  content: \"\\ebd7\";\n}\n.unil-map-marker-alt:before {\n  content: \"\\ebd8\";\n}\n.unil-map-marker-edit:before {\n  content: \"\\ebd9\";\n}\n.unil-map-marker-info:before {\n  content: \"\\ebda\";\n}\n.unil-map-marker-minus:before {\n  content: \"\\ebdb\";\n}\n.unil-map-marker-plus:before {\n  content: \"\\ebdc\";\n}\n.unil-map-marker-question:before {\n  content: \"\\ebdd\";\n}\n.unil-map-marker-shield:before {\n  content: \"\\ebde\";\n}\n.unil-map-marker-slash:before {\n  content: \"\\ebdf\";\n}\n.unil-map-marker:before {\n  content: \"\\ebe0\";\n}\n.unil-map-pin-alt:before {\n  content: \"\\ebe1\";\n}\n.unil-map-pin:before {\n  content: \"\\ebe2\";\n}\n.unil-map:before {\n  content: \"\\ebe3\";\n}\n.unil-mars:before {\n  content: \"\\ebe4\";\n}\n.unil-master-card:before {\n  content: \"\\ebe5\";\n}\n.unil-maximize-left:before {\n  content: \"\\ebe6\";\n}\n.unil-medal:before {\n  content: \"\\ebe7\";\n}\n.unil-medical-drip:before {\n  content: \"\\ebe8\";\n}\n.unil-medical-square-full:before {\n  content: \"\\ebe9\";\n}\n.unil-medical-square:before {\n  content: \"\\ebea\";\n}\n.unil-medium-m:before {\n  content: \"\\ebeb\";\n}\n.unil-medkit:before {\n  content: \"\\ebec\";\n}\n.unil-meeting-board:before {\n  content: \"\\ebed\";\n}\n.unil-megaphone:before {\n  content: \"\\ebee\";\n}\n.unil-meh-alt:before {\n  content: \"\\ebef\";\n}\n.unil-meh-closed-eye:before {\n  content: \"\\ebf0\";\n}\n.unil-meh:before {\n  content: \"\\ebf1\";\n}\n.unil-message:before {\n  content: \"\\ebf2\";\n}\n.unil-metro:before {\n  content: \"\\ebf3\";\n}\n.unil-microphone-slash:before {\n  content: \"\\ebf4\";\n}\n.unil-microphone:before {\n  content: \"\\ebf5\";\n}\n.unil-microscope:before {\n  content: \"\\ebf6\";\n}\n.unil-minus-circle:before {\n  content: \"\\ebf7\";\n}\n.unil-minus-path:before {\n  content: \"\\ebf8\";\n}\n.unil-minus-square-full:before {\n  content: \"\\ebf9\";\n}\n.unil-minus-square:before {\n  content: \"\\ebfa\";\n}\n.unil-minus:before {\n  content: \"\\ebfb\";\n}\n.unil-missed-call:before {\n  content: \"\\ebfc\";\n}\n.unil-mobile-android-alt:before {\n  content: \"\\ebfd\";\n}\n.unil-mobile-android:before {\n  content: \"\\ebfe\";\n}\n.unil-mobile-vibrate:before {\n  content: \"\\ebff\";\n}\n.unil-modem:before {\n  content: \"\\ec00\";\n}\n.unil-money-bill-slash:before {\n  content: \"\\ec01\";\n}\n.unil-money-bill-stack:before {\n  content: \"\\ec02\";\n}\n.unil-money-bill:before {\n  content: \"\\ec03\";\n}\n.unil-money-insert:before {\n  content: \"\\ec04\";\n}\n.unil-money-stack:before {\n  content: \"\\ec05\";\n}\n.unil-money-withdraw:before {\n  content: \"\\ec06\";\n}\n.unil-money-withdrawal:before {\n  content: \"\\ec07\";\n}\n.unil-moneybag-alt:before {\n  content: \"\\ec08\";\n}\n.unil-moneybag:before {\n  content: \"\\ec09\";\n}\n.unil-monitor-heart-rate:before {\n  content: \"\\ec0a\";\n}\n.unil-monitor:before {\n  content: \"\\ec0b\";\n}\n.unil-moon-eclipse:before {\n  content: \"\\ec0c\";\n}\n.unil-moon:before {\n  content: \"\\ec0d\";\n}\n.unil-moonset:before {\n  content: \"\\ec0e\";\n}\n.unil-mountains-sun:before {\n  content: \"\\ec0f\";\n}\n.unil-mountains:before {\n  content: \"\\ec10\";\n}\n.unil-mouse-alt-2:before {\n  content: \"\\ec11\";\n}\n.unil-mouse-alt:before {\n  content: \"\\ec12\";\n}\n.unil-mouse:before {\n  content: \"\\ec13\";\n}\n.unil-multiply:before {\n  content: \"\\ec14\";\n}\n.unil-music-note:before {\n  content: \"\\ec15\";\n}\n.unil-music-tune-slash:before {\n  content: \"\\ec16\";\n}\n.unil-music:before {\n  content: \"\\ec17\";\n}\n.unil-n-a:before {\n  content: \"\\ec18\";\n}\n.unil-navigator:before {\n  content: \"\\ec19\";\n}\n.unil-nerd:before {\n  content: \"\\ec1a\";\n}\n.unil-newspaper:before {\n  content: \"\\ec1b\";\n}\n.unil-ninja:before {\n  content: \"\\ec1c\";\n}\n.unil-no-entry:before {\n  content: \"\\ec1d\";\n}\n.unil-notebooks:before {\n  content: \"\\ec1e\";\n}\n.unil-notes:before {\n  content: \"\\ec1f\";\n}\n.unil-object-group:before {\n  content: \"\\ec20\";\n}\n.unil-object-ungroup:before {\n  content: \"\\ec21\";\n}\n.unil-octagon:before {\n  content: \"\\ec22\";\n}\n.unil-opera-alt:before {\n  content: \"\\ec23\";\n}\n.unil-opera:before {\n  content: \"\\ec24\";\n}\n.unil-outgoing-call:before {\n  content: \"\\ec25\";\n}\n.unil-package:before {\n  content: \"\\ec26\";\n}\n.unil-padlock:before {\n  content: \"\\ec27\";\n}\n.unil-paint-tool:before {\n  content: \"\\ec28\";\n}\n.unil-palette:before {\n  content: \"\\ec29\";\n}\n.unil-panel-add:before {\n  content: \"\\ec2a\";\n}\n.unil-panorama-h-alt:before {\n  content: \"\\ec2b\";\n}\n.unil-panorama-h:before {\n  content: \"\\ec2c\";\n}\n.unil-panorama-v:before {\n  content: \"\\ec2d\";\n}\n.unil-paperclip:before {\n  content: \"\\ec2e\";\n}\n.unil-paragraph:before {\n  content: \"\\ec2f\";\n}\n.unil-parcel:before {\n  content: \"\\ec30\";\n}\n.unil-parking-circle:before {\n  content: \"\\ec31\";\n}\n.unil-parking-square:before {\n  content: \"\\ec32\";\n}\n.unil-pathfinder-unite:before {\n  content: \"\\ec33\";\n}\n.unil-pathfinder:before {\n  content: \"\\ec34\";\n}\n.unil-pause-circle:before {\n  content: \"\\ec35\";\n}\n.unil-pause:before {\n  content: \"\\ec36\";\n}\n.unil-paypal:before {\n  content: \"\\ec37\";\n}\n.unil-pen:before {\n  content: \"\\ec38\";\n}\n.unil-pentagon:before {\n  content: \"\\ec39\";\n}\n.unil-percentage:before {\n  content: \"\\ec3a\";\n}\n.unil-phone-alt:before {\n  content: \"\\ec3b\";\n}\n.unil-phone-pause:before {\n  content: \"\\ec3c\";\n}\n.unil-phone-slash:before {\n  content: \"\\ec3d\";\n}\n.unil-phone-times:before {\n  content: \"\\ec3e\";\n}\n.unil-phone-volume:before {\n  content: \"\\ec3f\";\n}\n.unil-phone:before {\n  content: \"\\ec40\";\n}\n.unil-picture:before {\n  content: \"\\ec41\";\n}\n.unil-pizza-slice:before {\n  content: \"\\ec42\";\n}\n.unil-plane-arrival:before {\n  content: \"\\ec43\";\n}\n.unil-plane-departure:before {\n  content: \"\\ec44\";\n}\n.unil-plane-fly:before {\n  content: \"\\ec45\";\n}\n.unil-plane:before {\n  content: \"\\ec46\";\n}\n.unil-play-circle:before {\n  content: \"\\ec47\";\n}\n.unil-play:before {\n  content: \"\\ec48\";\n}\n.unil-plug:before {\n  content: \"\\ec49\";\n}\n.unil-plus-circle:before {\n  content: \"\\ec4a\";\n}\n.unil-plus-square:before {\n  content: \"\\ec4b\";\n}\n.unil-plus:before {\n  content: \"\\ec4c\";\n}\n.unil-podium:before {\n  content: \"\\ec4d\";\n}\n.unil-polygon:before {\n  content: \"\\ec4e\";\n}\n.unil-post-stamp:before {\n  content: \"\\ec4f\";\n}\n.unil-postcard:before {\n  content: \"\\ec50\";\n}\n.unil-pound-circle:before {\n  content: \"\\ec51\";\n}\n.unil-pound:before {\n  content: \"\\ec52\";\n}\n.unil-power:before {\n  content: \"\\ec53\";\n}\n.unil-prescription-bottle:before {\n  content: \"\\ec54\";\n}\n.unil-presentation-check:before {\n  content: \"\\ec55\";\n}\n.unil-presentation-edit:before {\n  content: \"\\ec56\";\n}\n.unil-presentation-line:before {\n  content: \"\\ec57\";\n}\n.unil-presentation-lines-alt:before {\n  content: \"\\ec58\";\n}\n.unil-presentation-minus:before {\n  content: \"\\ec59\";\n}\n.unil-presentation-play:before {\n  content: \"\\ec5a\";\n}\n.unil-presentation-plus:before {\n  content: \"\\ec5b\";\n}\n.unil-presentation-times:before {\n  content: \"\\ec5c\";\n}\n.unil-presentation:before {\n  content: \"\\ec5d\";\n}\n.unil-previous:before {\n  content: \"\\ec5e\";\n}\n.unil-pricetag-alt:before {\n  content: \"\\ec5f\";\n}\n.unil-print-slash:before {\n  content: \"\\ec60\";\n}\n.unil-print:before {\n  content: \"\\ec61\";\n}\n.unil-process:before {\n  content: \"\\ec62\";\n}\n.unil-processor:before {\n  content: \"\\ec63\";\n}\n.unil-programming-language:before {\n  content: \"\\ec64\";\n}\n.unil-pump:before {\n  content: \"\\ec65\";\n}\n.unil-puzzle-piece:before {\n  content: \"\\ec66\";\n}\n.unil-qrcode-scan:before {\n  content: \"\\ec67\";\n}\n.unil-question-circle:before {\n  content: \"\\ec68\";\n}\n.unil-question:before {\n  content: \"\\ec69\";\n}\n.unil-rainbow:before {\n  content: \"\\ec6a\";\n}\n.unil-raindrops-alt:before {\n  content: \"\\ec6b\";\n}\n.unil-raindrops:before {\n  content: \"\\ec6c\";\n}\n.unil-react:before {\n  content: \"\\ec6d\";\n}\n.unil-receipt-alt:before {\n  content: \"\\ec6e\";\n}\n.unil-receipt:before {\n  content: \"\\ec6f\";\n}\n.unil-record-audio:before {\n  content: \"\\ec70\";\n}\n.unil-reddit-alien-alt:before {\n  content: \"\\ec71\";\n}\n.unil-redo:before {\n  content: \"\\ec72\";\n}\n.unil-refresh:before {\n  content: \"\\ec73\";\n}\n.unil-registered:before {\n  content: \"\\ec74\";\n}\n.unil-repeat:before {\n  content: \"\\ec75\";\n}\n.unil-restaurant:before {\n  content: \"\\ec76\";\n}\n.unil-right-indent-alt:before {\n  content: \"\\ec77\";\n}\n.unil-right-to-left-text-direction:before {\n  content: \"\\ec78\";\n}\n.unil-robot:before {\n  content: \"\\ec79\";\n}\n.unil-rocket:before {\n  content: \"\\ec7a\";\n}\n.unil-rope-way:before {\n  content: \"\\ec7b\";\n}\n.unil-rotate-360:before {\n  content: \"\\ec7c\";\n}\n.unil-rss-alt:before {\n  content: \"\\ec7d\";\n}\n.unil-rss-interface:before {\n  content: \"\\ec7e\";\n}\n.unil-rss:before {\n  content: \"\\ec7f\";\n}\n.unil-ruler-combined:before {\n  content: \"\\ec80\";\n}\n.unil-ruler:before {\n  content: \"\\ec81\";\n}\n.unil-rupee-sign:before {\n  content: \"\\ec82\";\n}\n.unil-sad-cry:before {\n  content: \"\\ec83\";\n}\n.unil-sad-crying:before {\n  content: \"\\ec84\";\n}\n.unil-sad-dizzy:before {\n  content: \"\\ec85\";\n}\n.unil-sad-squint:before {\n  content: \"\\ec86\";\n}\n.unil-sad:before {\n  content: \"\\ec87\";\n}\n.unil-sanitizer-alt:before {\n  content: \"\\ec88\";\n}\n.unil-sanitizer:before {\n  content: \"\\ec89\";\n}\n.unil-save:before {\n  content: \"\\ec8a\";\n}\n.unil-scaling-left:before {\n  content: \"\\ec8b\";\n}\n.unil-scaling-right:before {\n  content: \"\\ec8c\";\n}\n.unil-scenery:before {\n  content: \"\\ec8d\";\n}\n.unil-schedule:before {\n  content: \"\\ec8e\";\n}\n.unil-screw:before {\n  content: \"\\ec8f\";\n}\n.unil-scroll-h:before {\n  content: \"\\ec90\";\n}\n.unil-scroll:before {\n  content: \"\\ec91\";\n}\n.unil-search-alt:before {\n  content: \"\\ec92\";\n}\n.unil-search-minus:before {\n  content: \"\\ec93\";\n}\n.unil-search-plus:before {\n  content: \"\\ec94\";\n}\n.unil-search:before {\n  content: \"\\ec95\";\n}\n.unil-selfie:before {\n  content: \"\\ec96\";\n}\n.unil-server-alt:before {\n  content: \"\\ec97\";\n}\n.unil-server-connection:before {\n  content: \"\\ec98\";\n}\n.unil-server-network-alt:before {\n  content: \"\\ec99\";\n}\n.unil-server-network:before {\n  content: \"\\ec9a\";\n}\n.unil-server:before {\n  content: \"\\ec9b\";\n}\n.unil-servers:before {\n  content: \"\\ec9c\";\n}\n.unil-servicemark:before {\n  content: \"\\ec9d\";\n}\n.unil-setting:before {\n  content: \"\\ec9e\";\n}\n.unil-share-alt:before {\n  content: \"\\ec9f\";\n}\n.unil-share:before {\n  content: \"\\eca0\";\n}\n.unil-shield-check:before {\n  content: \"\\eca1\";\n}\n.unil-shield-exclamation:before {\n  content: \"\\eca2\";\n}\n.unil-shield-plus:before {\n  content: \"\\eca3\";\n}\n.unil-shield-question:before {\n  content: \"\\eca4\";\n}\n.unil-shield-slash:before {\n  content: \"\\eca5\";\n}\n.unil-shield:before {\n  content: \"\\eca6\";\n}\n.unil-ship:before {\n  content: \"\\eca7\";\n}\n.unil-shop:before {\n  content: \"\\eca8\";\n}\n.unil-shopping-bag:before {\n  content: \"\\eca9\";\n}\n.unil-shopping-basket:before {\n  content: \"\\ecaa\";\n}\n.unil-shopping-cart-alt:before {\n  content: \"\\ecab\";\n}\n.unil-shopping-cart:before {\n  content: \"\\ecac\";\n}\n.unil-shovel:before {\n  content: \"\\ecad\";\n}\n.unil-shrink:before {\n  content: \"\\ecae\";\n}\n.unil-shuffle:before {\n  content: \"\\ecaf\";\n}\n.unil-shutter-alt:before {\n  content: \"\\ecb0\";\n}\n.unil-shutter:before {\n  content: \"\\ecb1\";\n}\n.unil-sick:before {\n  content: \"\\ecb2\";\n}\n.unil-sigma:before {\n  content: \"\\ecb3\";\n}\n.unil-sign-alt:before {\n  content: \"\\ecb4\";\n}\n.unil-sign-in-alt:before {\n  content: \"\\ecb5\";\n}\n.unil-sign-left:before {\n  content: \"\\ecb6\";\n}\n.unil-sign-out-alt:before {\n  content: \"\\ecb7\";\n}\n.unil-sign-right:before {\n  content: \"\\ecb8\";\n}\n.unil-signal-alt-3:before {\n  content: \"\\ecb9\";\n}\n.unil-signal-alt:before {\n  content: \"\\ecba\";\n}\n.unil-signal:before {\n  content: \"\\ecbb\";\n}\n.unil-signin:before {\n  content: \"\\ecbc\";\n}\n.unil-signout:before {\n  content: \"\\ecbd\";\n}\n.unil-silence:before {\n  content: \"\\ecbe\";\n}\n.unil-silent-squint:before {\n  content: \"\\ecbf\";\n}\n.unil-sim-card:before {\n  content: \"\\ecc0\";\n}\n.unil-sitemap:before {\n  content: \"\\ecc1\";\n}\n.unil-skip-forward-alt:before {\n  content: \"\\ecc2\";\n}\n.unil-skip-forward-circle:before {\n  content: \"\\ecc3\";\n}\n.unil-skip-forward:before {\n  content: \"\\ecc4\";\n}\n.unil-skype-alt:before {\n  content: \"\\ecc5\";\n}\n.unil-skype:before {\n  content: \"\\ecc6\";\n}\n.unil-slack-alt:before {\n  content: \"\\ecc7\";\n}\n.unil-slack:before {\n  content: \"\\ecc8\";\n}\n.unil-slider-h-range:before {\n  content: \"\\ecc9\";\n}\n.unil-slider-h:before {\n  content: \"\\ecca\";\n}\n.unil-sliders-v-alt:before {\n  content: \"\\eccb\";\n}\n.unil-sliders-v:before {\n  content: \"\\eccc\";\n}\n.unil-smile-beam:before {\n  content: \"\\eccd\";\n}\n.unil-smile-dizzy:before {\n  content: \"\\ecce\";\n}\n.unil-smile-squint-wink-alt:before {\n  content: \"\\eccf\";\n}\n.unil-smile-squint-wink:before {\n  content: \"\\ecd0\";\n}\n.unil-smile-wink-alt:before {\n  content: \"\\ecd1\";\n}\n.unil-smile-wink:before {\n  content: \"\\ecd2\";\n}\n.unil-smile:before {\n  content: \"\\ecd3\";\n}\n.unil-snapchat-alt:before {\n  content: \"\\ecd4\";\n}\n.unil-snapchat-ghost:before {\n  content: \"\\ecd5\";\n}\n.unil-snapchat-square:before {\n  content: \"\\ecd6\";\n}\n.unil-snow-flake:before {\n  content: \"\\ecd7\";\n}\n.unil-snowflake-alt:before {\n  content: \"\\ecd8\";\n}\n.unil-snowflake:before {\n  content: \"\\ecd9\";\n}\n.unil-social-distancing:before {\n  content: \"\\ecda\";\n}\n.unil-sort-amount-down:before {\n  content: \"\\ecdb\";\n}\n.unil-sort-amount-up:before {\n  content: \"\\ecdc\";\n}\n.unil-sort:before {\n  content: \"\\ecdd\";\n}\n.unil-sorting:before {\n  content: \"\\ecde\";\n}\n.unil-space-key:before {\n  content: \"\\ecdf\";\n}\n.unil-spade:before {\n  content: \"\\ece0\";\n}\n.unil-sperms:before {\n  content: \"\\ece1\";\n}\n.unil-spin:before {\n  content: \"\\ece2\";\n}\n.unil-square-full:before {\n  content: \"\\ece3\";\n}\n.unil-square-shape:before {\n  content: \"\\ece4\";\n}\n.unil-square:before {\n  content: \"\\ece5\";\n}\n.unil-squint:before {\n  content: \"\\ece6\";\n}\n.unil-star-half-alt:before {\n  content: \"\\ece7\";\n}\n.unil-star:before {\n  content: \"\\ece8\";\n}\n.unil-step-backward-alt:before {\n  content: \"\\ece9\";\n}\n.unil-step-backward-circle:before {\n  content: \"\\ecea\";\n}\n.unil-step-backward:before {\n  content: \"\\eceb\";\n}\n.unil-step-forward:before {\n  content: \"\\ecec\";\n}\n.unil-stethoscope-alt:before {\n  content: \"\\eced\";\n}\n.unil-stethoscope:before {\n  content: \"\\ecee\";\n}\n.unil-stop-circle:before {\n  content: \"\\ecef\";\n}\n.unil-stopwatch-slash:before {\n  content: \"\\ecf0\";\n}\n.unil-stopwatch:before {\n  content: \"\\ecf1\";\n}\n.unil-store-alt:before {\n  content: \"\\ecf2\";\n}\n.unil-store-slash:before {\n  content: \"\\ecf3\";\n}\n.unil-store:before {\n  content: \"\\ecf4\";\n}\n.unil-streering:before {\n  content: \"\\ecf5\";\n}\n.unil-stretcher:before {\n  content: \"\\ecf6\";\n}\n.unil-subject:before {\n  content: \"\\ecf7\";\n}\n.unil-subway-alt:before {\n  content: \"\\ecf8\";\n}\n.unil-subway:before {\n  content: \"\\ecf9\";\n}\n.unil-suitcase-alt:before {\n  content: \"\\ecfa\";\n}\n.unil-suitcase:before {\n  content: \"\\ecfb\";\n}\n.unil-sun:before {\n  content: \"\\ecfc\";\n}\n.unil-sunset:before {\n  content: \"\\ecfd\";\n}\n.unil-surprise:before {\n  content: \"\\ecfe\";\n}\n.unil-swatchbook:before {\n  content: \"\\ecff\";\n}\n.unil-swiggy:before {\n  content: \"\\ed00\";\n}\n.unil-swimmer:before {\n  content: \"\\ed01\";\n}\n.unil-sync-exclamation:before {\n  content: \"\\ed02\";\n}\n.unil-sync-slash:before {\n  content: \"\\ed03\";\n}\n.unil-sync:before {\n  content: \"\\ed04\";\n}\n.unil-syringe:before {\n  content: \"\\ed05\";\n}\n.unil-table-tennis:before {\n  content: \"\\ed06\";\n}\n.unil-table:before {\n  content: \"\\ed07\";\n}\n.unil-tablet:before {\n  content: \"\\ed08\";\n}\n.unil-tablets:before {\n  content: \"\\ed09\";\n}\n.unil-tachometer-fast-alt:before {\n  content: \"\\ed0a\";\n}\n.unil-tachometer-fast:before {\n  content: \"\\ed0b\";\n}\n.unil-tag-alt:before {\n  content: \"\\ed0c\";\n}\n.unil-tag:before {\n  content: \"\\ed0d\";\n}\n.unil-tape:before {\n  content: \"\\ed0e\";\n}\n.unil-taxi:before {\n  content: \"\\ed0f\";\n}\n.unil-tear:before {\n  content: \"\\ed10\";\n}\n.unil-telegram-alt:before {\n  content: \"\\ed11\";\n}\n.unil-telegram:before {\n  content: \"\\ed12\";\n}\n.unil-telescope:before {\n  content: \"\\ed13\";\n}\n.unil-temperature-empty:before {\n  content: \"\\ed14\";\n}\n.unil-temperature-half:before {\n  content: \"\\ed15\";\n}\n.unil-temperature-minus:before {\n  content: \"\\ed16\";\n}\n.unil-temperature-plus:before {\n  content: \"\\ed17\";\n}\n.unil-temperature-quarter:before {\n  content: \"\\ed18\";\n}\n.unil-temperature-three-quarter:before {\n  content: \"\\ed19\";\n}\n.unil-temperature:before {\n  content: \"\\ed1a\";\n}\n.unil-tennis-ball:before {\n  content: \"\\ed1b\";\n}\n.unil-text-fields:before {\n  content: \"\\ed1c\";\n}\n.unil-text-size:before {\n  content: \"\\ed1d\";\n}\n.unil-text-strike-through:before {\n  content: \"\\ed1e\";\n}\n.unil-text:before {\n  content: \"\\ed1f\";\n}\n.unil-th-large:before {\n  content: \"\\ed20\";\n}\n.unil-th-slash:before {\n  content: \"\\ed21\";\n}\n.unil-th:before {\n  content: \"\\ed22\";\n}\n.unil-thermometer:before {\n  content: \"\\ed23\";\n}\n.unil-thumbs-down:before {\n  content: \"\\ed24\";\n}\n.unil-thumbs-up:before {\n  content: \"\\ed25\";\n}\n.unil-thunderstorm-moon:before {\n  content: \"\\ed26\";\n}\n.unil-thunderstorm-sun:before {\n  content: \"\\ed27\";\n}\n.unil-thunderstorm:before {\n  content: \"\\ed28\";\n}\n.unil-ticket:before {\n  content: \"\\ed29\";\n}\n.unil-times-circle:before {\n  content: \"\\ed2a\";\n}\n.unil-times-square:before {\n  content: \"\\ed2b\";\n}\n.unil-times:before {\n  content: \"\\ed2c\";\n}\n.unil-toggle-off:before {\n  content: \"\\ed2d\";\n}\n.unil-toggle-on:before {\n  content: \"\\ed2e\";\n}\n.unil-toilet-paper:before {\n  content: \"\\ed2f\";\n}\n.unil-top-arrow-from-top:before {\n  content: \"\\ed30\";\n}\n.unil-top-arrow-to-top:before {\n  content: \"\\ed31\";\n}\n.unil-tornado:before {\n  content: \"\\ed32\";\n}\n.unil-trademark-circle:before {\n  content: \"\\ed33\";\n}\n.unil-trademark:before {\n  content: \"\\ed34\";\n}\n.unil-traffic-barrier:before {\n  content: \"\\ed35\";\n}\n.unil-traffic-light:before {\n  content: \"\\ed36\";\n}\n.unil-transaction:before {\n  content: \"\\ed37\";\n}\n.unil-trash-alt:before {\n  content: \"\\ed38\";\n}\n.unil-trash:before {\n  content: \"\\ed39\";\n}\n.unil-trees:before {\n  content: \"\\ed3a\";\n}\n.unil-triangle:before {\n  content: \"\\ed3b\";\n}\n.unil-trophy:before {\n  content: \"\\ed3c\";\n}\n.unil-trowel:before {\n  content: \"\\ed3d\";\n}\n.unil-truck-loading:before {\n  content: \"\\ed3e\";\n}\n.unil-truck:before {\n  content: \"\\ed3f\";\n}\n.unil-tumblr-alt:before {\n  content: \"\\ed40\";\n}\n.unil-tumblr-square:before {\n  content: \"\\ed41\";\n}\n.unil-tumblr:before {\n  content: \"\\ed42\";\n}\n.unil-tv-retro-slash:before {\n  content: \"\\ed43\";\n}\n.unil-tv-retro:before {\n  content: \"\\ed44\";\n}\n.unil-twitter-alt:before {\n  content: \"\\ed45\";\n}\n.unil-twitter:before {\n  content: \"\\ed46\";\n}\n.unil-umbrella:before {\n  content: \"\\ed47\";\n}\n.unil-unamused:before {\n  content: \"\\ed48\";\n}\n.unil-underline:before {\n  content: \"\\ed49\";\n}\n.unil-university:before {\n  content: \"\\ed4a\";\n}\n.unil-unlock-alt:before {\n  content: \"\\ed4b\";\n}\n.unil-unlock:before {\n  content: \"\\ed4c\";\n}\n.unil-upload-alt:before {\n  content: \"\\ed4d\";\n}\n.unil-upload:before {\n  content: \"\\ed4e\";\n}\n.unil-usd-circle:before {\n  content: \"\\ed4f\";\n}\n.unil-usd-square:before {\n  content: \"\\ed50\";\n}\n.unil-user-arrows:before {\n  content: \"\\ed51\";\n}\n.unil-user-check:before {\n  content: \"\\ed52\";\n}\n.unil-user-circle:before {\n  content: \"\\ed53\";\n}\n.unil-user-exclamation:before {\n  content: \"\\ed54\";\n}\n.unil-user-location:before {\n  content: \"\\ed55\";\n}\n.unil-user-md:before {\n  content: \"\\ed56\";\n}\n.unil-user-minus:before {\n  content: \"\\ed57\";\n}\n.unil-user-nurse:before {\n  content: \"\\ed58\";\n}\n.unil-user-plus:before {\n  content: \"\\ed59\";\n}\n.unil-user-square:before {\n  content: \"\\ed5a\";\n}\n.unil-user-times:before {\n  content: \"\\ed5b\";\n}\n.unil-user:before {\n  content: \"\\ed5c\";\n}\n.unil-users-alt:before {\n  content: \"\\ed5d\";\n}\n.unil-utensils-alt:before {\n  content: \"\\ed5e\";\n}\n.unil-utensils:before {\n  content: \"\\ed5f\";\n}\n.unil-vector-square-alt:before {\n  content: \"\\ed60\";\n}\n.unil-vector-square:before {\n  content: \"\\ed61\";\n}\n.unil-venus:before {\n  content: \"\\ed62\";\n}\n.unil-vertical-align-bottom:before {\n  content: \"\\ed63\";\n}\n.unil-vertical-align-center:before {\n  content: \"\\ed64\";\n}\n.unil-vertical-align-top:before {\n  content: \"\\ed65\";\n}\n.unil-vertical-distribute-bottom:before {\n  content: \"\\ed66\";\n}\n.unil-vertical-distribution-center:before {\n  content: \"\\ed67\";\n}\n.unil-vertical-distribution-top:before {\n  content: \"\\ed68\";\n}\n.unil-video-question:before {\n  content: \"\\ed69\";\n}\n.unil-video-slash:before {\n  content: \"\\ed6a\";\n}\n.unil-video:before {\n  content: \"\\ed6b\";\n}\n.unil-virus-slash:before {\n  content: \"\\ed6c\";\n}\n.unil-visual-studio:before {\n  content: \"\\ed6d\";\n}\n.unil-vk-alt:before {\n  content: \"\\ed6e\";\n}\n.unil-vk:before {\n  content: \"\\ed6f\";\n}\n.unil-voicemail-rectangle:before {\n  content: \"\\ed70\";\n}\n.unil-voicemail:before {\n  content: \"\\ed71\";\n}\n.unil-volleyball:before {\n  content: \"\\ed72\";\n}\n.unil-volume-down:before {\n  content: \"\\ed73\";\n}\n.unil-volume-mute:before {\n  content: \"\\ed74\";\n}\n.unil-volume-off:before {\n  content: \"\\ed75\";\n}\n.unil-volume-up:before {\n  content: \"\\ed76\";\n}\n.unil-volume:before {\n  content: \"\\ed77\";\n}\n.unil-vuejs-alt:before {\n  content: \"\\ed78\";\n}\n.unil-vuejs:before {\n  content: \"\\ed79\";\n}\n.unil-wall:before {\n  content: \"\\ed7a\";\n}\n.unil-wallet:before {\n  content: \"\\ed7b\";\n}\n.unil-watch-alt:before {\n  content: \"\\ed7c\";\n}\n.unil-watch:before {\n  content: \"\\ed7d\";\n}\n.unil-water-drop-slash:before {\n  content: \"\\ed7e\";\n}\n.unil-water-glass:before {\n  content: \"\\ed7f\";\n}\n.unil-water:before {\n  content: \"\\ed80\";\n}\n.unil-web-grid-alt:before {\n  content: \"\\ed81\";\n}\n.unil-web-grid:before {\n  content: \"\\ed82\";\n}\n.unil-web-section-alt:before {\n  content: \"\\ed83\";\n}\n.unil-web-section:before {\n  content: \"\\ed84\";\n}\n.unil-webcam:before {\n  content: \"\\ed85\";\n}\n.unil-weight:before {\n  content: \"\\ed86\";\n}\n.unil-whatsapp-alt:before {\n  content: \"\\ed87\";\n}\n.unil-whatsapp:before {\n  content: \"\\ed88\";\n}\n.unil-wheel-barrow:before {\n  content: \"\\ed89\";\n}\n.unil-wheelchair-alt:before {\n  content: \"\\ed8a\";\n}\n.unil-wheelchair:before {\n  content: \"\\ed8b\";\n}\n.unil-wifi-router:before {\n  content: \"\\ed8c\";\n}\n.unil-wifi-slash:before {\n  content: \"\\ed8d\";\n}\n.unil-wifi:before {\n  content: \"\\ed8e\";\n}\n.unil-wind-moon:before {\n  content: \"\\ed8f\";\n}\n.unil-wind-sun:before {\n  content: \"\\ed90\";\n}\n.unil-wind:before {\n  content: \"\\ed91\";\n}\n.unil-window-grid:before {\n  content: \"\\ed92\";\n}\n.unil-window-maximize:before {\n  content: \"\\ed93\";\n}\n.unil-window-section:before {\n  content: \"\\ed94\";\n}\n.unil-window:before {\n  content: \"\\ed95\";\n}\n.unil-windsock:before {\n  content: \"\\ed96\";\n}\n.unil-windy:before {\n  content: \"\\ed97\";\n}\n.unil-wordpress-simple:before {\n  content: \"\\ed98\";\n}\n.unil-wordpress:before {\n  content: \"\\ed99\";\n}\n.unil-wrap-text:before {\n  content: \"\\ed9a\";\n}\n.unil-wrench:before {\n  content: \"\\ed9b\";\n}\n.unil-x-add:before {\n  content: \"\\ed9c\";\n}\n.unil-x:before {\n  content: \"\\ed9d\";\n}\n.unil-yen-circle:before {\n  content: \"\\ed9e\";\n}\n.unil-yen:before {\n  content: \"\\ed9f\";\n}\n.unil-yin-yang:before {\n  content: \"\\eda0\";\n}\n.unil-youtube:before {\n  content: \"\\eda1\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/resources/META-INF/resources/unicons/20201106/css/unicons-monochrome.css",
    "content": "@font-face {\n  font-family: 'Unicons-Monochrome';\n  src:  url('../fonts/Unicons-Monochrome.eot?j7bjoq');\n  src:  url('../fonts/Unicons-Monochrome.eot?j7bjoq#iefix') format('embedded-opentype'),\n    url('../fonts/Unicons-Monochrome.ttf?j7bjoq') format('truetype'),\n    url('../fonts/Unicons-Monochrome.woff?j7bjoq') format('woff'),\n    url('../fonts/Unicons-Monochrome.svg?j7bjoq#Unicons-Monochrome') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"unim-\"], [class*=\" unim-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Unicons-Monochrome' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.unim-500px:before {\n  content: \"\\e900\";\n}\n.unim-adobe-alt:before {\n  content: \"\\e901\";\n}\n.unim-adobe:before {\n  content: \"\\e902\";\n}\n.unim-airplay:before {\n  content: \"\\e903\";\n}\n.unim-align-alt:before {\n  content: \"\\e904\";\n}\n.unim-align-center-justify:before {\n  content: \"\\e905\";\n}\n.unim-align-center:before {\n  content: \"\\e906\";\n}\n.unim-align-justify:before {\n  content: \"\\e907\";\n}\n.unim-align-left-justify:before {\n  content: \"\\e908\";\n}\n.unim-align-left:before {\n  content: \"\\e909\";\n}\n.unim-align-letter-right:before {\n  content: \"\\e90a\";\n}\n.unim-align-right-justify:before {\n  content: \"\\e90b\";\n}\n.unim-align-right:before {\n  content: \"\\e90c\";\n}\n.unim-align:before {\n  content: \"\\e90d\";\n}\n.unim-amazon:before {\n  content: \"\\e90e\";\n}\n.unim-analysis:before {\n  content: \"\\e90f\";\n}\n.unim-analytics:before {\n  content: \"\\e910\";\n}\n.unim-anchor:before {\n  content: \"\\e911\";\n}\n.unim-android-alt:before {\n  content: \"\\e912\";\n}\n.unim-android:before {\n  content: \"\\e913\";\n}\n.unim-angle-double-down:before {\n  content: \"\\e914\";\n}\n.unim-angle-double-left:before {\n  content: \"\\e915\";\n}\n.unim-angle-double-right:before {\n  content: \"\\e916\";\n}\n.unim-angle-double-up:before {\n  content: \"\\e917\";\n}\n.unim-angle-down:before {\n  content: \"\\e918\";\n}\n.unim-angle-left:before {\n  content: \"\\e919\";\n}\n.unim-angle-right-b:before {\n  content: \"\\e91a\";\n}\n.unim-angle-right:before {\n  content: \"\\e91b\";\n}\n.unim-angle-up:before {\n  content: \"\\e91c\";\n}\n.unim-apple-alt:before {\n  content: \"\\e91d\";\n}\n.unim-apple:before {\n  content: \"\\e91e\";\n}\n.unim-apps:before {\n  content: \"\\e91f\";\n}\n.unim-arrow-circle-down:before {\n  content: \"\\e920\";\n}\n.unim-arrow-circle-left:before {\n  content: \"\\e921\";\n}\n.unim-arrow-circle-right:before {\n  content: \"\\e922\";\n}\n.unim-arrow-circle-up:before {\n  content: \"\\e923\";\n}\n.unim-arrow-down-left:before {\n  content: \"\\e924\";\n}\n.unim-arrow-down-right:before {\n  content: \"\\e925\";\n}\n.unim-arrow-up-left:before {\n  content: \"\\e926\";\n}\n.unim-arrow-up-right:before {\n  content: \"\\e927\";\n}\n.unim-at:before {\n  content: \"\\e928\";\n}\n.unim-bag:before {\n  content: \"\\e929\";\n}\n.unim-bars:before {\n  content: \"\\e92a\";\n}\n.unim-battery-bolt:before {\n  content: \"\\e92b\";\n}\n.unim-battery-empty:before {\n  content: \"\\e92c\";\n}\n.unim-behance-alt:before {\n  content: \"\\e92d\";\n}\n.unim-behance:before {\n  content: \"\\e92e\";\n}\n.unim-bing:before {\n  content: \"\\e92f\";\n}\n.unim-bitcoin-alt:before {\n  content: \"\\e930\";\n}\n.unim-bitcoin:before {\n  content: \"\\e931\";\n}\n.unim-blackberry:before {\n  content: \"\\e932\";\n}\n.unim-blogger-alt:before {\n  content: \"\\e933\";\n}\n.unim-blogger:before {\n  content: \"\\e934\";\n}\n.unim-bookmark:before {\n  content: \"\\e935\";\n}\n.unim-border-alt:before {\n  content: \"\\e936\";\n}\n.unim-border-bottom:before {\n  content: \"\\e937\";\n}\n.unim-border-clear:before {\n  content: \"\\e938\";\n}\n.unim-border-horizontal:before {\n  content: \"\\e939\";\n}\n.unim-border-inner:before {\n  content: \"\\e93a\";\n}\n.unim-border-left:before {\n  content: \"\\e93b\";\n}\n.unim-border-out:before {\n  content: \"\\e93c\";\n}\n.unim-border-right:before {\n  content: \"\\e93d\";\n}\n.unim-border-top:before {\n  content: \"\\e93e\";\n}\n.unim-border-vertical:before {\n  content: \"\\e93f\";\n}\n.unim-box:before {\n  content: \"\\e940\";\n}\n.unim-briefcase:before {\n  content: \"\\e941\";\n}\n.unim-calender:before {\n  content: \"\\e942\";\n}\n.unim-chart-pie:before {\n  content: \"\\e943\";\n}\n.unim-chart:before {\n  content: \"\\e944\";\n}\n.unim-check-circle .path1:before {\n  content: \"\\e945\";\n  color: rgb(0, 0, 0);\n  opacity: 0.99;\n}\n.unim-check-circle .path2:before {\n  content: \"\\e946\";\n  margin-left: -1em;\n  color: rgb(0, 0, 0);\n}\n.unim-check-square:before {\n  content: \"\\e947\";\n}\n.unim-check:before {\n  content: \"\\e948\";\n}\n.unim-circle-layer:before {\n  content: \"\\e949\";\n}\n.unim-circle:before {\n  content: \"\\e94a\";\n}\n.unim-clinic-medical:before {\n  content: \"\\e94b\";\n}\n.unim-clock-eight:before {\n  content: \"\\e94c\";\n}\n.unim-clock-five:before {\n  content: \"\\e94d\";\n}\n.unim-clock-nine:before {\n  content: \"\\e94e\";\n}\n.unim-clock-seven:before {\n  content: \"\\e94f\";\n}\n.unim-clock-ten:before {\n  content: \"\\e950\";\n}\n.unim-clock-three:before {\n  content: \"\\e951\";\n}\n.unim-clock-two:before {\n  content: \"\\e952\";\n}\n.unim-clock:before {\n  content: \"\\e953\";\n}\n.unim-columns:before {\n  content: \"\\e954\";\n}\n.unim-comment-alt-dots:before {\n  content: \"\\e955\";\n}\n.unim-comment-alt-message:before {\n  content: \"\\e956\";\n}\n.unim-comment-alt-plus:before {\n  content: \"\\e957\";\n}\n.unim-comment-alt:before {\n  content: \"\\e958\";\n}\n.unim-comment-dots:before {\n  content: \"\\e959\";\n}\n.unim-comment-message:before {\n  content: \"\\e95a\";\n}\n.unim-comment-plus:before {\n  content: \"\\e95b\";\n}\n.unim-comment:before {\n  content: \"\\e95c\";\n}\n.unim-compress:before {\n  content: \"\\e95d\";\n}\n.unim-corner-down-left:before {\n  content: \"\\e95e\";\n}\n.unim-corner-down-right:before {\n  content: \"\\e95f\";\n}\n.unim-corner-left-down:before {\n  content: \"\\e960\";\n}\n.unim-corner-right-down:before {\n  content: \"\\e961\";\n}\n.unim-corner-up-left:before {\n  content: \"\\e962\";\n}\n.unim-corner-up-right:before {\n  content: \"\\e963\";\n}\n.unim-coronavirus:before {\n  content: \"\\e964\";\n}\n.unim-css3-simple:before {\n  content: \"\\e965\";\n}\n.unim-css3:before {\n  content: \"\\e966\";\n}\n.unim-cube:before {\n  content: \"\\e967\";\n}\n.unim-dialpad-alt:before {\n  content: \"\\e968\";\n}\n.unim-dialpad:before {\n  content: \"\\e969\";\n}\n.unim-direction:before {\n  content: \"\\e96a\";\n}\n.unim-discord:before {\n  content: \"\\e96b\";\n}\n.unim-document-layout-center:before {\n  content: \"\\e96c\";\n}\n.unim-document-layout-left:before {\n  content: \"\\e96d\";\n}\n.unim-document-layout-right:before {\n  content: \"\\e96e\";\n}\n.unim-download-alt:before {\n  content: \"\\e96f\";\n}\n.unim-dribbble:before {\n  content: \"\\e970\";\n}\n.unim-dropbox:before {\n  content: \"\\e971\";\n}\n.unim-ellipsis-h:before {\n  content: \"\\e972\";\n}\n.unim-ellipsis-v:before {\n  content: \"\\e973\";\n}\n.unim-entry:before {\n  content: \"\\e974\";\n}\n.unim-exclamation-circle:before {\n  content: \"\\e975\";\n}\n.unim-exclamation-octagon:before {\n  content: \"\\e976\";\n}\n.unim-exclamation-triangle:before {\n  content: \"\\e977\";\n}\n.unim-exit:before {\n  content: \"\\e978\";\n}\n.unim-facebook-f:before {\n  content: \"\\e979\";\n}\n.unim-facebook-messenger-alt:before {\n  content: \"\\e97a\";\n}\n.unim-facebook-messenger:before {\n  content: \"\\e97b\";\n}\n.unim-facebook:before {\n  content: \"\\e97c\";\n}\n.unim-favorite:before {\n  content: \"\\e97d\";\n}\n.unim-flip-h-alt:before {\n  content: \"\\e97e\";\n}\n.unim-flip-h:before {\n  content: \"\\e97f\";\n}\n.unim-flip-v-alt:before {\n  content: \"\\e980\";\n}\n.unim-flip-v:before {\n  content: \"\\e981\";\n}\n.unim-github-alt:before {\n  content: \"\\e982\";\n}\n.unim-github:before {\n  content: \"\\e983\";\n}\n.unim-google-drive-alt:before {\n  content: \"\\e984\";\n}\n.unim-google-drive:before {\n  content: \"\\e985\";\n}\n.unim-google-hangouts-alt:before {\n  content: \"\\e986\";\n}\n.unim-google-hangouts:before {\n  content: \"\\e987\";\n}\n.unim-google-play:before {\n  content: \"\\e988\";\n}\n.unim-google:before {\n  content: \"\\e989\";\n}\n.unim-graph-bar:before {\n  content: \"\\e98a\";\n}\n.unim-grid:before {\n  content: \"\\e98b\";\n}\n.unim-grids:before {\n  content: \"\\e98c\";\n}\n.unim-grip-horizontal-line:before {\n  content: \"\\e98d\";\n}\n.unim-head-side-cough:before {\n  content: \"\\e98e\";\n}\n.unim-head-side-mask:before {\n  content: \"\\e98f\";\n}\n.unim-head-side:before {\n  content: \"\\e990\";\n}\n.unim-history-alt:before {\n  content: \"\\e991\";\n}\n.unim-history:before {\n  content: \"\\e992\";\n}\n.unim-horizontal-align-left:before {\n  content: \"\\e993\";\n}\n.unim-hospital-square-sign:before {\n  content: \"\\e994\";\n}\n.unim-hospital-symbol:before {\n  content: \"\\e995\";\n}\n.unim-hospital:before {\n  content: \"\\e996\";\n}\n.unim-house-user:before {\n  content: \"\\e997\";\n}\n.unim-html3-alt:before {\n  content: \"\\e998\";\n}\n.unim-html3:before {\n  content: \"\\e999\";\n}\n.unim-html5-alt:before {\n  content: \"\\e99a\";\n}\n.unim-html5:before {\n  content: \"\\e99b\";\n}\n.unim-image-v:before {\n  content: \"\\e99c\";\n}\n.unim-instagram-alt:before {\n  content: \"\\e99d\";\n}\n.unim-instagram:before {\n  content: \"\\e99e\";\n}\n.unim-intercom-alt:before {\n  content: \"\\e99f\";\n}\n.unim-intercom:before {\n  content: \"\\e9a0\";\n}\n.unim-java-script:before {\n  content: \"\\e9a1\";\n}\n.unim-key-skeleton-alt:before {\n  content: \"\\e9a2\";\n}\n.unim-key-skeleton:before {\n  content: \"\\e9a3\";\n}\n.unim-keyhole-circle:before {\n  content: \"\\e9a4\";\n}\n.unim-keyhole-square-full:before {\n  content: \"\\e9a5\";\n}\n.unim-keyhole-square:before {\n  content: \"\\e9a6\";\n}\n.unim-layer-group:before {\n  content: \"\\e9a7\";\n}\n.unim-layers-alt:before {\n  content: \"\\e9a8\";\n}\n.unim-left-indent-alt:before {\n  content: \"\\e9a9\";\n}\n.unim-left-indent:before {\n  content: \"\\e9aa\";\n}\n.unim-line-spacing:before {\n  content: \"\\e9ab\";\n}\n.unim-line:before {\n  content: \"\\e9ac\";\n}\n.unim-link-h:before {\n  content: \"\\e9ad\";\n}\n.unim-linkedin-alt:before {\n  content: \"\\e9ae\";\n}\n.unim-linkedin:before {\n  content: \"\\e9af\";\n}\n.unim-list-ui-alt:before {\n  content: \"\\e9b0\";\n}\n.unim-list-ul:before {\n  content: \"\\e9b1\";\n}\n.unim-lock-access:before {\n  content: \"\\e9b2\";\n}\n.unim-lock-alt:before {\n  content: \"\\e9b3\";\n}\n.unim-lock-open-alt:before {\n  content: \"\\e9b4\";\n}\n.unim-lock:before {\n  content: \"\\e9b5\";\n}\n.unim-master-card:before {\n  content: \"\\e9b6\";\n}\n.unim-medium-m:before {\n  content: \"\\e9b7\";\n}\n.unim-microscope:before {\n  content: \"\\e9b8\";\n}\n.unim-minus-square-full:before {\n  content: \"\\e9b9\";\n}\n.unim-multiply:before {\n  content: \"\\e9ba\";\n}\n.unim-object-group:before {\n  content: \"\\e9bb\";\n}\n.unim-object-ungroup:before {\n  content: \"\\e9bc\";\n}\n.unim-opera-alt:before {\n  content: \"\\e9bd\";\n}\n.unim-opera:before {\n  content: \"\\e9be\";\n}\n.unim-padlock:before {\n  content: \"\\e9bf\";\n}\n.unim-paperclip:before {\n  content: \"\\e9c0\";\n}\n.unim-paragraph:before {\n  content: \"\\e9c1\";\n}\n.unim-paypal:before {\n  content: \"\\e9c2\";\n}\n.unim-pentagon:before {\n  content: \"\\e9c3\";\n}\n.unim-plus-square:before {\n  content: \"\\e9c4\";\n}\n.unim-polygon:before {\n  content: \"\\e9c5\";\n}\n.unim-previous:before {\n  content: \"\\e9c6\";\n}\n.unim-process:before {\n  content: \"\\e9c7\";\n}\n.unim-react:before {\n  content: \"\\e9c8\";\n}\n.unim-record-audio:before {\n  content: \"\\e9c9\";\n}\n.unim-reddit-alien-alt:before {\n  content: \"\\e9ca\";\n}\n.unim-redo:before {\n  content: \"\\e9cb\";\n}\n.unim-refresh:before {\n  content: \"\\e9cc\";\n}\n.unim-repeat:before {\n  content: \"\\e9cd\";\n}\n.unim-right-indent-alt:before {\n  content: \"\\e9ce\";\n}\n.unim-rocket:before {\n  content: \"\\e9cf\";\n}\n.unim-ruler-combined:before {\n  content: \"\\e9d0\";\n}\n.unim-ruler:before {\n  content: \"\\e9d1\";\n}\n.unim-sanitizer-alt:before {\n  content: \"\\e9d2\";\n}\n.unim-sanitizer:before {\n  content: \"\\e9d3\";\n}\n.unim-scenery:before {\n  content: \"\\e9d4\";\n}\n.unim-schedule:before {\n  content: \"\\e9d5\";\n}\n.unim-shield-plus:before {\n  content: \"\\e9d6\";\n}\n.unim-sign-in-alt:before {\n  content: \"\\e9d7\";\n}\n.unim-sign-in:before {\n  content: \"\\e9d8\";\n}\n.unim-sign-out-alt:before {\n  content: \"\\e9d9\";\n}\n.unim-signal-alt-3:before {\n  content: \"\\e9da\";\n}\n.unim-signal-alt:before {\n  content: \"\\e9db\";\n}\n.unim-signin:before {\n  content: \"\\e9dc\";\n}\n.unim-signout:before {\n  content: \"\\e9dd\";\n}\n.unim-skype-alt:before {\n  content: \"\\e9de\";\n}\n.unim-skype:before {\n  content: \"\\e9df\";\n}\n.unim-slack-alt:before {\n  content: \"\\e9e0\";\n}\n.unim-slack:before {\n  content: \"\\e9e1\";\n}\n.unim-snapchat-alt:before {\n  content: \"\\e9e2\";\n}\n.unim-snapchat-ghost:before {\n  content: \"\\e9e3\";\n}\n.unim-snapchat-square:before {\n  content: \"\\e9e4\";\n}\n.unim-social-distancing:before {\n  content: \"\\e9e5\";\n}\n.unim-sorting:before {\n  content: \"\\e9e6\";\n}\n.unim-space-key:before {\n  content: \"\\e9e7\";\n}\n.unim-square-full:before {\n  content: \"\\e9e8\";\n}\n.unim-square-shape:before {\n  content: \"\\e9e9\";\n}\n.unim-square:before {\n  content: \"\\e9ea\";\n}\n.unim-squre-shape:before {\n  content: \"\\e9eb\";\n}\n.unim-star-half-alt:before {\n  content: \"\\e9ec\";\n}\n.unim-star:before {\n  content: \"\\e9ed\";\n}\n.unim-step-forward:before {\n  content: \"\\e9ee\";\n}\n.unim-stethoscope-alt:before {\n  content: \"\\e9ef\";\n}\n.unim-stethoscope:before {\n  content: \"\\e9f0\";\n}\n.unim-store-slash:before {\n  content: \"\\e9f1\";\n}\n.unim-subject:before {\n  content: \"\\e9f2\";\n}\n.unim-swiggy:before {\n  content: \"\\e9f3\";\n}\n.unim-sync-exclamation:before {\n  content: \"\\e9f4\";\n}\n.unim-sync-slash:before {\n  content: \"\\e9f5\";\n}\n.unim-table:before {\n  content: \"\\e9f6\";\n}\n.unim-telegram-alt:before {\n  content: \"\\e9f7\";\n}\n.unim-telegram:before {\n  content: \"\\e9f8\";\n}\n.unim-th-large:before {\n  content: \"\\e9f9\";\n}\n.unim-times-circle:before {\n  content: \"\\e9fa\";\n}\n.unim-toggle-off:before {\n  content: \"\\e9fb\";\n}\n.unim-toggle-on:before {\n  content: \"\\e9fc\";\n}\n.unim-toilet-paper:before {\n  content: \"\\e9fd\";\n}\n.unim-triangle:before {\n  content: \"\\e9fe\";\n}\n.unim-tumblr-alt:before {\n  content: \"\\e9ff\";\n}\n.unim-tumblr-square:before {\n  content: \"\\ea00\";\n}\n.unim-tumblr:before {\n  content: \"\\ea01\";\n}\n.unim-twitter-alt:before {\n  content: \"\\ea02\";\n}\n.unim-twitter:before {\n  content: \"\\ea03\";\n}\n.unim-unlock-alt:before {\n  content: \"\\ea04\";\n}\n.unim-unlock:before {\n  content: \"\\ea05\";\n}\n.unim-upload-alt:before {\n  content: \"\\ea06\";\n}\n.unim-user-arrows:before {\n  content: \"\\ea07\";\n}\n.unim-user-md:before {\n  content: \"\\ea08\";\n}\n.unim-user-nurse:before {\n  content: \"\\ea09\";\n}\n.unim-vector-square-alt:before {\n  content: \"\\ea0a\";\n}\n.unim-vector-square:before {\n  content: \"\\ea0b\";\n}\n.unim-virus-slash:before {\n  content: \"\\ea0c\";\n}\n.unim-visual-studio:before {\n  content: \"\\ea0d\";\n}\n.unim-vk-alt:before {\n  content: \"\\ea0e\";\n}\n.unim-vk:before {\n  content: \"\\ea0f\";\n}\n.unim-vuejs-alt:before {\n  content: \"\\ea10\";\n}\n.unim-vuejs:before {\n  content: \"\\ea11\";\n}\n.unim-web-grid-alt:before {\n  content: \"\\ea12\";\n}\n.unim-web-grid:before {\n  content: \"\\ea13\";\n}\n.unim-web-section-alt:before {\n  content: \"\\ea14\";\n}\n.unim-web-section:before {\n  content: \"\\ea15\";\n}\n.unim-whatsapp:before {\n  content: \"\\ea16\";\n}\n.unim-window-grid:before {\n  content: \"\\ea17\";\n}\n.unim-window-maximize:before {\n  content: \"\\ea18\";\n}\n.unim-window-section:before {\n  content: \"\\ea19\";\n}\n.unim-wordpress-simple:before {\n  content: \"\\ea1a\";\n}\n.unim-wordpress:before {\n  content: \"\\ea1b\";\n}\n.unim-wrap-text:before {\n  content: \"\\ea1c\";\n}\n.unim-youtube:before {\n  content: \"\\ea1d\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-unicons-pack/src/main/resources/META-INF/resources/unicons/20201106/css/unicons-solid.css",
    "content": "@font-face {\n  font-family: 'Unicons-Solid';\n  src:  url('../fonts/Unicons-Solid.eot?rnot1e');\n  src:  url('../fonts/Unicons-Solid.eot?rnot1e#iefix') format('embedded-opentype'),\n    url('../fonts/Unicons-Solid.ttf?rnot1e') format('truetype'),\n    url('../fonts/Unicons-Solid.woff?rnot1e') format('woff'),\n    url('../fonts/Unicons-Solid.svg?rnot1e#Unicons-Solid') format('svg');\n  font-weight: normal;\n  font-style: normal;\n  font-display: block;\n}\n\n[class^=\"unis-\"], [class*=\" unis-\"] {\n  /* use !important to prevent issues with browser extensions that change fonts */\n  font-family: 'Unicons-Solid' !important;\n  speak: never;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  line-height: 1;\n\n  /* Better Font Rendering =========== */\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n\n.unis-airplay:before {\n  content: \"\\e900\";\n}\n.unis-align-alt:before {\n  content: \"\\e901\";\n}\n.unis-align-center-justify:before {\n  content: \"\\e902\";\n}\n.unis-align-center:before {\n  content: \"\\e903\";\n}\n.unis-align-justify:before {\n  content: \"\\e904\";\n}\n.unis-align-left-justify:before {\n  content: \"\\e905\";\n}\n.unis-align-left:before {\n  content: \"\\e906\";\n}\n.unis-align-letter-right:before {\n  content: \"\\e907\";\n}\n.unis-align-right-justify:before {\n  content: \"\\e908\";\n}\n.unis-align-right:before {\n  content: \"\\e909\";\n}\n.unis-analysis:before {\n  content: \"\\e90a\";\n}\n.unis-analytics:before {\n  content: \"\\e90b\";\n}\n.unis-anchor:before {\n  content: \"\\e90c\";\n}\n.unis-angle-double-down:before {\n  content: \"\\e90d\";\n}\n.unis-angle-double-left:before {\n  content: \"\\e90e\";\n}\n.unis-angle-double-right:before {\n  content: \"\\e90f\";\n}\n.unis-angle-double-up:before {\n  content: \"\\e910\";\n}\n.unis-angle-down:before {\n  content: \"\\e911\";\n}\n.unis-angle-left:before {\n  content: \"\\e912\";\n}\n.unis-angle-right-b:before {\n  content: \"\\e913\";\n}\n.unis-angle-right:before {\n  content: \"\\e914\";\n}\n.unis-angle-up:before {\n  content: \"\\e915\";\n}\n.unis-apps:before {\n  content: \"\\e916\";\n}\n.unis-arrow-circle-down:before {\n  content: \"\\e917\";\n}\n.unis-arrow-circle-left:before {\n  content: \"\\e918\";\n}\n.unis-arrow-circle-right:before {\n  content: \"\\e919\";\n}\n.unis-arrow-circle-up:before {\n  content: \"\\e91a\";\n}\n.unis-arrow-down-left:before {\n  content: \"\\e91b\";\n}\n.unis-arrow-down-right:before {\n  content: \"\\e91c\";\n}\n.unis-arrow-up-left:before {\n  content: \"\\e91d\";\n}\n.unis-arrow-up-right:before {\n  content: \"\\e91e\";\n}\n.unis-at:before {\n  content: \"\\e91f\";\n}\n.unis-bag:before {\n  content: \"\\e920\";\n}\n.unis-bars:before {\n  content: \"\\e921\";\n}\n.unis-battery-bolt:before {\n  content: \"\\e922\";\n}\n.unis-battery-empty:before {\n  content: \"\\e923\";\n}\n.unis-bookmark:before {\n  content: \"\\e924\";\n}\n.unis-border-alt:before {\n  content: \"\\e925\";\n}\n.unis-border-bottom:before {\n  content: \"\\e926\";\n}\n.unis-border-clear:before {\n  content: \"\\e927\";\n}\n.unis-border-horizontal:before {\n  content: \"\\e928\";\n}\n.unis-border-inner:before {\n  content: \"\\e929\";\n}\n.unis-border-left:before {\n  content: \"\\e92a\";\n}\n.unis-border-out:before {\n  content: \"\\e92b\";\n}\n.unis-border-right:before {\n  content: \"\\e92c\";\n}\n.unis-border-top:before {\n  content: \"\\e92d\";\n}\n.unis-border-vertical:before {\n  content: \"\\e92e\";\n}\n.unis-briefcase:before {\n  content: \"\\e92f\";\n}\n.unis-calender:before {\n  content: \"\\e930\";\n}\n.unis-chart-pie:before {\n  content: \"\\e931\";\n}\n.unis-chart:before {\n  content: \"\\e932\";\n}\n.unis-check-circle:before {\n  content: \"\\e933\";\n}\n.unis-check-square:before {\n  content: \"\\e934\";\n}\n.unis-check:before {\n  content: \"\\e935\";\n}\n.unis-circle-layer:before {\n  content: \"\\e936\";\n}\n.unis-clinic-medical:before {\n  content: \"\\e937\";\n}\n.unis-clock-eight:before {\n  content: \"\\e938\";\n}\n.unis-clock-five:before {\n  content: \"\\e939\";\n}\n.unis-clock-nine:before {\n  content: \"\\e93a\";\n}\n.unis-clock-seven:before {\n  content: \"\\e93b\";\n}\n.unis-clock-ten:before {\n  content: \"\\e93c\";\n}\n.unis-clock-three:before {\n  content: \"\\e93d\";\n}\n.unis-clock-two:before {\n  content: \"\\e93e\";\n}\n.unis-clock:before {\n  content: \"\\e93f\";\n}\n.unis-columns:before {\n  content: \"\\e940\";\n}\n.unis-comment-dots:before {\n  content: \"\\e941\";\n}\n.unis-compress:before {\n  content: \"\\e942\";\n}\n.unis-corner-down-left:before {\n  content: \"\\e943\";\n}\n.unis-corner-down-right:before {\n  content: \"\\e944\";\n}\n.unis-corner-left-down:before {\n  content: \"\\e945\";\n}\n.unis-corner-right-down:before {\n  content: \"\\e946\";\n}\n.unis-corner-up-left:before {\n  content: \"\\e947\";\n}\n.unis-corner-up-right:before {\n  content: \"\\e948\";\n}\n.unis-coronavirus:before {\n  content: \"\\e949\";\n}\n.unis-dialpad:before {\n  content: \"\\e94a\";\n}\n.unis-direction:before {\n  content: \"\\e94b\";\n}\n.unis-document-layout-center:before {\n  content: \"\\e94c\";\n}\n.unis-document-layout-left:before {\n  content: \"\\e94d\";\n}\n.unis-document-layout-right:before {\n  content: \"\\e94e\";\n}\n.unis-download-alt:before {\n  content: \"\\e94f\";\n}\n.unis-ellipsis-h:before {\n  content: \"\\e950\";\n}\n.unis-ellipsis-v:before {\n  content: \"\\e951\";\n}\n.unis-exclamation-circle:before {\n  content: \"\\e952\";\n}\n.unis-exclamation-octagon:before {\n  content: \"\\e953\";\n}\n.unis-exclamation-triangle:before {\n  content: \"\\e954\";\n}\n.unis-favorite:before {\n  content: \"\\e955\";\n}\n.unis-flip-h-alt:before {\n  content: \"\\e956\";\n}\n.unis-flip-h:before {\n  content: \"\\e957\";\n}\n.unis-flip-v-alt:before {\n  content: \"\\e958\";\n}\n.unis-flip-v:before {\n  content: \"\\e959\";\n}\n.unis-graph-bar:before {\n  content: \"\\e95a\";\n}\n.unis-grid:before {\n  content: \"\\e95b\";\n}\n.unis-grids:before {\n  content: \"\\e95c\";\n}\n.unis-grip-horizontal-line:before {\n  content: \"\\e95d\";\n}\n.unis-head-side-cough:before {\n  content: \"\\e95e\";\n}\n.unis-head-side-mask:before {\n  content: \"\\e95f\";\n}\n.unis-head-side:before {\n  content: \"\\e960\";\n}\n.unis-history-alt:before {\n  content: \"\\e961\";\n}\n.unis-history:before {\n  content: \"\\e962\";\n}\n.unis-horizontal-align-left:before {\n  content: \"\\e963\";\n}\n.unis-hospital-square-sign:before {\n  content: \"\\e964\";\n}\n.unis-hospital-symbol:before {\n  content: \"\\e965\";\n}\n.unis-hospital:before {\n  content: \"\\e966\";\n}\n.unis-house-user:before {\n  content: \"\\e967\";\n}\n.unis-image-v:before {\n  content: \"\\e968\";\n}\n.unis-key-skeleton-alt:before {\n  content: \"\\e969\";\n}\n.unis-key-skeleton:before {\n  content: \"\\e96a\";\n}\n.unis-keyhole-circle:before {\n  content: \"\\e96b\";\n}\n.unis-keyhole-square-full:before {\n  content: \"\\e96c\";\n}\n.unis-keyhole-square:before {\n  content: \"\\e96d\";\n}\n.unis-layer-group:before {\n  content: \"\\e96e\";\n}\n.unis-layers-alt:before {\n  content: \"\\e96f\";\n}\n.unis-left-indent-alt:before {\n  content: \"\\e970\";\n}\n.unis-left-indent:before {\n  content: \"\\e971\";\n}\n.unis-line-spacing:before {\n  content: \"\\e972\";\n}\n.unis-link-h:before {\n  content: \"\\e973\";\n}\n.unis-list-ui-alt:before {\n  content: \"\\e974\";\n}\n.unis-list-ul:before {\n  content: \"\\e975\";\n}\n.unis-lock-access:before {\n  content: \"\\e976\";\n}\n.unis-lock-alt:before {\n  content: \"\\e977\";\n}\n.unis-lock-open-alt:before {\n  content: \"\\e978\";\n}\n.unis-lock:before {\n  content: \"\\e979\";\n}\n.unis-microscope:before {\n  content: \"\\e97a\";\n}\n.unis-minus-square-full:before {\n  content: \"\\e97b\";\n}\n.unis-multiply:before {\n  content: \"\\e97c\";\n}\n.unis-object-group:before {\n  content: \"\\e97d\";\n}\n.unis-object-ungroup:before {\n  content: \"\\e97e\";\n}\n.unis-padlock:before {\n  content: \"\\e97f\";\n}\n.unis-paperclip:before {\n  content: \"\\e980\";\n}\n.unis-paragraph:before {\n  content: \"\\e981\";\n}\n.unis-pentagon:before {\n  content: \"\\e982\";\n}\n.unis-polygon:before {\n  content: \"\\e983\";\n}\n.unis-previous:before {\n  content: \"\\e984\";\n}\n.unis-process:before {\n  content: \"\\e985\";\n}\n.unis-record-audio:before {\n  content: \"\\e986\";\n}\n.unis-redo:before {\n  content: \"\\e987\";\n}\n.unis-refresh:before {\n  content: \"\\e988\";\n}\n.unis-repeat:before {\n  content: \"\\e989\";\n}\n.unis-right-indent-alt:before {\n  content: \"\\e98a\";\n}\n.unis-right-indent:before {\n  content: \"\\e98b\";\n}\n.unis-rocket:before {\n  content: \"\\e98c\";\n}\n.unis-ruler-combined:before {\n  content: \"\\e98d\";\n}\n.unis-ruler:before {\n  content: \"\\e98e\";\n}\n.unis-sanitizer-alt:before {\n  content: \"\\e98f\";\n}\n.unis-sanitizer:before {\n  content: \"\\e990\";\n}\n.unis-scenery:before {\n  content: \"\\e991\";\n}\n.unis-schedule:before {\n  content: \"\\e992\";\n}\n.unis-shield-plus:before {\n  content: \"\\e993\";\n}\n.unis-signal-alt-3:before {\n  content: \"\\e994\";\n}\n.unis-signal-alt:before {\n  content: \"\\e995\";\n}\n.unis-signout:before {\n  content: \"\\e996\";\n}\n.unis-social-distancing:before {\n  content: \"\\e997\";\n}\n.unis-sorting:before {\n  content: \"\\e998\";\n}\n.unis-space-key:before {\n  content: \"\\e999\";\n}\n.unis-square-full:before {\n  content: \"\\e99a\";\n}\n.unis-star-half-alt:before {\n  content: \"\\e99b\";\n}\n.unis-star:before {\n  content: \"\\e99c\";\n}\n.unis-step-forward:before {\n  content: \"\\e99d\";\n}\n.unis-stethoscope-alt:before {\n  content: \"\\e99e\";\n}\n.unis-stethoscope:before {\n  content: \"\\e99f\";\n}\n.unis-stopwatch:before {\n  content: \"\\e9a0\";\n}\n.unis-store-slash:before {\n  content: \"\\e9a1\";\n}\n.unis-subject:before {\n  content: \"\\e9a2\";\n}\n.unis-sync-exclamation:before {\n  content: \"\\e9a3\";\n}\n.unis-sync-slash:before {\n  content: \"\\e9a4\";\n}\n.unis-table:before {\n  content: \"\\e9a5\";\n}\n.unis-th-large:before {\n  content: \"\\e9a6\";\n}\n.unis-times-circle:before {\n  content: \"\\e9a7\";\n}\n.unis-toggle-off:before {\n  content: \"\\e9a8\";\n}\n.unis-toggle-on:before {\n  content: \"\\e9a9\";\n}\n.unis-toilet-paper:before {\n  content: \"\\e9aa\";\n}\n.unis-triangle:before {\n  content: \"\\e9ab\";\n}\n.unis-unlock-alt:before {\n  content: \"\\e9ac\";\n}\n.unis-unlock:before {\n  content: \"\\e9ad\";\n}\n.unis-upload-alt:before {\n  content: \"\\e9ae\";\n}\n.unis-user-arrows:before {\n  content: \"\\e9af\";\n}\n.unis-user-md:before {\n  content: \"\\e9b0\";\n}\n.unis-user-nurse:before {\n  content: \"\\e9b1\";\n}\n.unis-vector-square-alt:before {\n  content: \"\\e9b2\";\n}\n.unis-vector-square:before {\n  content: \"\\e9b3\";\n}\n.unis-virus-slash:before {\n  content: \"\\e9b4\";\n}\n.unis-web-grid-alt:before {\n  content: \"\\e9b5\";\n}\n.unis-web-grid:before {\n  content: \"\\e9b6\";\n}\n.unis-web-section-alt:before {\n  content: \"\\e9b7\";\n}\n.unis-web-section:before {\n  content: \"\\e9b8\";\n}\n.unis-window-grid:before {\n  content: \"\\e9b9\";\n}\n.unis-window-maximize:before {\n  content: \"\\e9ba\";\n}\n.unis-window-section:before {\n  content: \"\\e9bb\";\n}\n.unis-wrap-text:before {\n  content: \"\\e9bc\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-weathericons-pack/ikonli-weathericons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-weathericons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.weathericons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n\trequires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.weathericons;\n    \n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.weathericons.WeatherIconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.weathericons.WeatherIconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-weathericons-pack/src/main/java/org/kordamp/ikonli/weathericons/WeatherIcons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.weathericons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum WeatherIcons implements Ikon {\n    // latest is f0c3\n    ALIEN(\"wi-alien\", '\\uf075'),\n    BAROMETER(\"wi-barometer\", '\\uf079'),\n    CELSIUS(\"wi-celsius\", '\\uf03c'),\n    CLOUD(\"wi-cloud\", '\\uf041'),\n    CLOUDY(\"wi-cloudy\", '\\uf013'),\n    CLOUDY_GUSTS(\"wi-cloudy-gusts\", '\\uf011'),\n    CLOUDY_WINDY(\"wi-cloudy-windy\", '\\uf012'),\n    CLOUD_DOWN(\"wi-cloud-down\", '\\uf03d'),\n    CLOUD_REFRESH(\"wi-cloud-refresh\", '\\uf03e'),\n    CLOUD_UP(\"wi-cloud-up\", '\\uf040'),\n    DAY_CLOUDY(\"wi-day-cloudy\", '\\uf002'),\n    DAY_CLOUDY_GUSTS(\"wi-day-cloudy-gusts\", '\\uf000'),\n    DAY_CLOUDY_HIGH(\"wi-day-cloudy-high\", '\\uf07d'),\n    DAY_CLOUDY_WINDY(\"wi-day-cloudy-windy\", '\\uf001'),\n    DAY_FOG(\"wi-day-fog\", '\\uf003'),\n    DAY_HAIL(\"wi-day-hail\", '\\uf004'),\n    DAY_HAZE(\"wi-day-haze\", '\\uf0b6'),\n    DAY_LIGHTNING(\"wi-day-lightning\", '\\uf005'),\n    DAY_LIGHT_WIND(\"wi-day-light-wind\", '\\uf0c4'),\n    DAY_RAIN(\"wi-day-rain\", '\\uf008'),\n    DAY_RAIN_MIX(\"wi-day-rain-mix\", '\\uf006'),\n    DAY_RAIN_WIND(\"wi-day-rain-wind\", '\\uf007'),\n    DAY_SHOWERS(\"wi-day-showers\", '\\uf009'),\n    DAY_SLEET(\"wi-day-sleet\", '\\uf0b2'),\n    DAY_SLEET_STORM(\"wi-day-sleet-storm\", '\\uf068'),\n    DAY_SNOW(\"wi-day-snow\", '\\uf00a'),\n    DAY_SNOW_THUNDERSTORM(\"wi-day-snow-thunderstorm\", '\\uf06b'),\n    DAY_SNOW_WIND(\"wi-day-snow-wind\", '\\uf065'),\n    DAY_SPRINKLE(\"wi-day-sprinkle\", '\\uf00b'),\n    DAY_STORM_SHOWERS(\"wi-day-storm-showers\", '\\uf00e'),\n    DAY_SUNNY(\"wi-day-sunny\", '\\uf00d'),\n    DAY_SUNNY_OVERCAST(\"wi-day-sunny-overcast\", '\\uf00c'),\n    DAY_THUNDERSTORM(\"wi-day-thunderstorm\", '\\uf010'),\n    DAY_WINDY(\"wi-day-windy\", '\\uf085'),\n    DEGREES(\"wi-degrees\", '\\uf042'),\n    DIRECTION_DOWN(\"wi-direction-down\", '\\uf044'),\n    DIRECTION_DOWN_LEFT(\"wi-direction-down-left\", '\\uf043'),\n    DIRECTION_DOWN_RIGHT(\"wi-direction-down-right\", '\\uf088'),\n    DIRECTION_LEFT(\"wi-direction-left\", '\\uf048'),\n    DIRECTION_RIGHT(\"wi-direction-right\", '\\uf04d'),\n    DIRECTION_UP(\"wi-direction-up\", '\\uf058'),\n    DIRECTION_UP_LEFT(\"wi-direction-up-left\", '\\uf087'),\n    DIRECTION_UP_RIGHT(\"wi-direction-up-right\", '\\uf057'),\n    DUST(\"wi-dust\", '\\uf063'),\n    EARTHQUAKE(\"wi-earthquake\", '\\uf0c6'),\n    FAHRENHEIT(\"wi-fahrenheit\", '\\uf045'),\n    FIRE(\"wi-fire\", '\\uf0c7'),\n    FLOOD(\"wi-flood\", '\\uf07c'),\n    FOG(\"wi-fog\", '\\uf014'),\n    GALE_WARNING(\"wi-gale-warning\", '\\uf0cd'),\n    HAIL(\"wi-hail\", '\\uf015'),\n    HORIZON(\"wi-horizon\", '\\uf047'),\n    HORIZON_ALT(\"wi-horizon-alt\", '\\uf046'),\n    HOT(\"wi-hot\", '\\uf072'),\n    HUMIDITY(\"wi-humidity\", '\\uf07a'),\n    HURRICANE(\"wi-hurricane\", '\\uf073'),\n    HURRICANE_WARNING(\"wi-hurricane-warning\", '\\uf0cf'),\n    LIGHTNING(\"wi-lightning\", '\\uf016'),\n    LUNAR_ECLIPSE(\"wi-lunar-eclipse\", '\\uf070'),\n    METEOR(\"wi-meteor\", '\\uf071'),\n    MOONRISE(\"wi-moonrise\", '\\uf0c9'),\n    MOONSET(\"wi-moonset\", '\\uf0ca'),\n    MOON_0(\"wi-moon-0\", '\\uf095'),\n    MOON_1(\"wi-moon-1\", '\\uf096'),\n    MOON_10(\"wi-moon-10\", '\\uf09f'),\n    MOON_11(\"wi-moon-11\", '\\uf0a0'),\n    MOON_12(\"wi-moon-12\", '\\uf0a1'),\n    MOON_13(\"wi-moon-13\", '\\uf0a2'),\n    MOON_14(\"wi-moon-14\", '\\uf0a3'),\n    MOON_15(\"wi-moon-15\", '\\uf0a4'),\n    MOON_16(\"wi-moon-16\", '\\uf0a5'),\n    MOON_17(\"wi-moon-17\", '\\uf0a6'),\n    MOON_18(\"wi-moon-18\", '\\uf0a7'),\n    MOON_19(\"wi-moon-19\", '\\uf0a8'),\n    MOON_2(\"wi-moon-2\", '\\uf097'),\n    MOON_20(\"wi-moon-20\", '\\uf0a9'),\n    MOON_21(\"wi-moon-21\", '\\uf0aa'),\n    MOON_22(\"wi-moon-22\", '\\uf0ab'),\n    MOON_23(\"wi-moon-23\", '\\uf0ac'),\n    MOON_24(\"wi-moon-24\", '\\uf0ad'),\n    MOON_25(\"wi-moon-25\", '\\uf0ae'),\n    MOON_26(\"wi-moon-26\", '\\uf0af'),\n    MOON_27(\"wi-moon-27\", '\\uf0b0'),\n    MOON_3(\"wi-moon-3\", '\\uf098'),\n    MOON_4(\"wi-moon-4\", '\\uf099'),\n    MOON_5(\"wi-moon-5\", '\\uf09a'),\n    MOON_6(\"wi-moon-6\", '\\uf09b'),\n    MOON_7(\"wi-moon-7\", '\\uf09c'),\n    MOON_8(\"wi-moon-8\", '\\uf09d'),\n    MOON_9(\"wi-moon-9\", '\\uf09e'),\n    MOON_ALT_FIRST_QUARTER(\"wi-moon-alt-first-quarter\", '\\uf0d6'),\n    MOON_ALT_FULL(\"wi-moon-alt-full\", '\\uf0dd'),\n    MOON_ALT_NEW(\"wi-moon-alt-new\", '\\uf0eb'),\n    MOON_ALT_THIRD_QUARTER(\"wi-moon-alt-third-quarter\", '\\uf0e4'),\n    MOON_ALT_WANING_CRESCENT_1(\"wi-moon-alt-waning-crescent-1\", '\\uf0e5'),\n    MOON_ALT_WANING_CRESCENT_2(\"wi-moon-alt-waning-crescent-2\", '\\uf0e6'),\n    MOON_ALT_WANING_CRESCENT_3(\"wi-moon-alt-waning-crescent-3\", '\\uf0e7'),\n    MOON_ALT_WANING_CRESCENT_4(\"wi-moon-alt-waning-crescent-4\", '\\uf0e8'),\n    MOON_ALT_WANING_CRESCENT_5(\"wi-moon-alt-waning-crescent-5\", '\\uf0e9'),\n    MOON_ALT_WANING_CRESCENT_6(\"wi-moon-alt-waning-crescent-6\", '\\uf0ea'),\n    MOON_ALT_WANING_GIBBOUS_1(\"wi-moon-alt-waning-gibbous-1\", '\\uf0de'),\n    MOON_ALT_WANING_GIBBOUS_2(\"wi-moon-alt-waning-gibbous-2\", '\\uf0df'),\n    MOON_ALT_WANING_GIBBOUS_3(\"wi-moon-alt-waning-gibbous-3\", '\\uf0e0'),\n    MOON_ALT_WANING_GIBBOUS_4(\"wi-moon-alt-waning-gibbous-4\", '\\uf0e1'),\n    MOON_ALT_WANING_GIBBOUS_5(\"wi-moon-alt-waning-gibbous-5\", '\\uf0e2'),\n    MOON_ALT_WANING_GIBBOUS_6(\"wi-moon-alt-waning-gibbous-6\", '\\uf0e3'),\n    MOON_ALT_WAXING_CRESCENT_1(\"wi-moon-alt-waxing-crescent-1\", '\\uf0d0'),\n    MOON_ALT_WAXING_CRESCENT_2(\"wi-moon-alt-waxing-crescent-2\", '\\uf0d1'),\n    MOON_ALT_WAXING_CRESCENT_3(\"wi-moon-alt-waxing-crescent-3\", '\\uf0d2'),\n    MOON_ALT_WAXING_CRESCENT_4(\"wi-moon-alt-waxing-crescent-4\", '\\uf0d3'),\n    MOON_ALT_WAXING_CRESCENT_5(\"wi-moon-alt-waxing-crescent-5\", '\\uf0d4'),\n    MOON_ALT_WAXING_CRESCENT_6(\"wi-moon-alt-waxing-crescent-6\", '\\uf0d5'),\n    MOON_ALT_WAXING_GIBBOUS_1(\"wi-moon-alt-waxing-gibbous-1\", '\\uf0d7'),\n    MOON_ALT_WAXING_GIBBOUS_2(\"wi-moon-alt-waxing-gibbous-2\", '\\uf0d8'),\n    MOON_ALT_WAXING_GIBBOUS_3(\"wi-moon-alt-waxing-gibbous-3\", '\\uf0d9'),\n    MOON_ALT_WAXING_GIBBOUS_4(\"wi-moon-alt-waxing-gibbous-4\", '\\uf0da'),\n    MOON_ALT_WAXING_GIBBOUS_5(\"wi-moon-alt-waxing-gibbous-5\", '\\uf0db'),\n    MOON_ALT_WAXING_GIBBOUS_6(\"wi-moon-alt-waxing-gibbous-6\", '\\uf0dc'),\n    MOON_FIRST_QUARTER(\"wi-moon-first-quarter\", '\\uf09c'),\n    MOON_FULL(\"wi-moon-full\", '\\uf0a3'),\n    MOON_NEW(\"wi-moon-new\", '\\uf095'),\n    MOON_THIRD_QUARTER(\"wi-moon-third-quarter\", '\\uf0aa'),\n    MOON_WANING_CRESCENT_1(\"wi-moon-waning-crescent-1\", '\\uf0ab'),\n    MOON_WANING_CRESCENT_2(\"wi-moon-waning-crescent-2\", '\\uf0ac'),\n    MOON_WANING_CRESCENT_3(\"wi-moon-waning-crescent-3\", '\\uf0ad'),\n    MOON_WANING_CRESCENT_4(\"wi-moon-waning-crescent-4\", '\\uf0ae'),\n    MOON_WANING_CRESCENT_5(\"wi-moon-waning-crescent-5\", '\\uf0af'),\n    MOON_WANING_CRESCENT_6(\"wi-moon-waning-crescent-6\", '\\uf0b0'),\n    MOON_WANING_GIBBOUS_1(\"wi-moon-waning-gibbous-1\", '\\uf0a4'),\n    MOON_WANING_GIBBOUS_2(\"wi-moon-waning-gibbous-2\", '\\uf0a5'),\n    MOON_WANING_GIBBOUS_3(\"wi-moon-waning-gibbous-3\", '\\uf0a6'),\n    MOON_WANING_GIBBOUS_4(\"wi-moon-waning-gibbous-4\", '\\uf0a7'),\n    MOON_WANING_GIBBOUS_5(\"wi-moon-waning-gibbous-5\", '\\uf0a8'),\n    MOON_WANING_GIBBOUS_6(\"wi-moon-waning-gibbous-6\", '\\uf0a9'),\n    MOON_WAXING_CRESCENT_1(\"wi-moon-waxing-crescent-1\", '\\uf096'),\n    MOON_WAXING_CRESCENT_2(\"wi-moon-waxing-crescent-2\", '\\uf097'),\n    MOON_WAXING_CRESCENT_3(\"wi-moon-waxing-crescent-3\", '\\uf098'),\n    MOON_WAXING_CRESCENT_4(\"wi-moon-waxing-crescent-4\", '\\uf099'),\n    MOON_WAXING_CRESCENT_5(\"wi-moon-waxing-crescent-5\", '\\uf09a'),\n    MOON_WAXING_CRESCENT_6(\"wi-moon-waxing-crescent-6\", '\\uf09b'),\n    MOON_WAXING_GIBBOUS_1(\"wi-moon-waxing-gibbous-1\", '\\uf09d'),\n    MOON_WAXING_GIBBOUS_2(\"wi-moon-waxing-gibbous-2\", '\\uf09e'),\n    MOON_WAXING_GIBBOUS_3(\"wi-moon-waxing-gibbous-3\", '\\uf09f'),\n    MOON_WAXING_GIBBOUS_4(\"wi-moon-waxing-gibbous-4\", '\\uf0a0'),\n    MOON_WAXING_GIBBOUS_5(\"wi-moon-waxing-gibbous-5\", '\\uf0a1'),\n    MOON_WAXING_GIBBOUS_6(\"wi-moon-waxing-gibbous-6\", '\\uf0a2'),\n    NA(\"wi-na\", '\\uf07b'),\n    NIGHT_ALT_CLOUDY(\"wi-night-alt-cloudy\", '\\uf086'),\n    NIGHT_ALT_CLOUDY_GUSTS(\"wi-night-alt-cloudy-gusts\", '\\uf022'),\n    NIGHT_ALT_CLOUDY_HIGH(\"wi-night-alt-cloudy-high\", '\\uf07e'),\n    NIGHT_ALT_CLOUDY_WINDY(\"wi-night-alt-cloudy-windy\", '\\uf023'),\n    NIGHT_ALT_HAIL(\"wi-night-alt-hail\", '\\uf024'),\n    NIGHT_ALT_LIGHTNING(\"wi-night-alt-lightning\", '\\uf025'),\n    NIGHT_ALT_PARTLY_CLOUDY(\"wi-night-alt-partly-cloudy\", '\\uf081'),\n    NIGHT_ALT_RAIN(\"wi-night-alt-rain\", '\\uf028'),\n    NIGHT_ALT_RAIN_MIX(\"wi-night-alt-rain-mix\", '\\uf026'),\n    NIGHT_ALT_RAIN_WIND(\"wi-night-alt-rain-wind\", '\\uf027'),\n    NIGHT_ALT_SHOWERS(\"wi-night-alt-showers\", '\\uf029'),\n    NIGHT_ALT_SLEET(\"wi-night-alt-sleet\", '\\uf0b4'),\n    NIGHT_ALT_SLEET_STORM(\"wi-night-alt-sleet-storm\", '\\uf06a'),\n    NIGHT_ALT_SNOW(\"wi-night-alt-snow\", '\\uf02a'),\n    NIGHT_ALT_SNOW_THUNDERSTORM(\"wi-night-alt-snow-thunderstorm\", '\\uf06d'),\n    NIGHT_ALT_SNOW_WIND(\"wi-night-alt-snow-wind\", '\\uf067'),\n    NIGHT_ALT_SPRINKLE(\"wi-night-alt-sprinkle\", '\\uf02b'),\n    NIGHT_ALT_STORM_SHOWERS(\"wi-night-alt-storm-showers\", '\\uf02c'),\n    NIGHT_ALT_THUNDERSTORM(\"wi-night-alt-thunderstorm\", '\\uf02d'),\n    NIGHT_CLEAR(\"wi-night-clear\", '\\uf02e'),\n    NIGHT_CLOUDY(\"wi-night-cloudy\", '\\uf031'),\n    NIGHT_CLOUDY_GUSTS(\"wi-night-cloudy-gusts\", '\\uf02f'),\n    NIGHT_CLOUDY_HIGH(\"wi-night-cloudy-high\", '\\uf080'),\n    NIGHT_CLOUDY_WINDY(\"wi-night-cloudy-windy\", '\\uf030'),\n    NIGHT_FOG(\"wi-night-fog\", '\\uf04a'),\n    NIGHT_HAIL(\"wi-night-hail\", '\\uf032'),\n    NIGHT_LIGHTNING(\"wi-night-lightning\", '\\uf033'),\n    NIGHT_PARTLY_CLOUDY(\"wi-night-partly-cloudy\", '\\uf083'),\n    NIGHT_RAIN(\"wi-night-rain\", '\\uf036'),\n    NIGHT_RAIN_MIX(\"wi-night-rain-mix\", '\\uf034'),\n    NIGHT_RAIN_WIND(\"wi-night-rain-wind\", '\\uf035'),\n    NIGHT_SHOWERS(\"wi-night-showers\", '\\uf037'),\n    NIGHT_SLEET(\"wi-night-sleet\", '\\uf0b3'),\n    NIGHT_SLEET_STORM(\"wi-night-sleet-storm\", '\\uf069'),\n    NIGHT_SNOW(\"wi-night-snow\", '\\uf038'),\n    NIGHT_SNOW_THUNDERSTORM(\"wi-night-snow-thunderstorm\", '\\uf06c'),\n    NIGHT_SNOW_WIND(\"wi-night-snow-wind\", '\\uf066'),\n    NIGHT_SPRINKLE(\"wi-night-sprinkle\", '\\uf039'),\n    NIGHT_STORM_SHOWERS(\"wi-night-storm-showers\", '\\uf03a'),\n    NIGHT_THUNDERSTORM(\"wi-night-thunderstorm\", '\\uf03b'),\n    RAIN(\"wi-rain\", '\\uf019'),\n    RAINDROP(\"wi-raindrop\", '\\uf078'),\n    RAINDROPS(\"wi-raindrops\", '\\uf04e'),\n    RAIN_MIX(\"wi-rain-mix\", '\\uf017'),\n    RAIN_WIND(\"wi-rain-wind\", '\\uf018'),\n    REFRESH(\"wi-refresh\", '\\uf04c'),\n    REFRESH_ALT(\"wi-refresh-alt\", '\\uf04b'),\n    SANDSTORM(\"wi-sandstorm\", '\\uf082'),\n    SHOWERS(\"wi-showers\", '\\uf01a'),\n    SLEET(\"wi-sleet\", '\\uf0b5'),\n    SMALL_CRAFT_ADVISORY(\"wi-small-craft-advisory\", '\\uf0cc'),\n    SMOG(\"wi-smog\", '\\uf074'),\n    SMOKE(\"wi-smoke\", '\\uf062'),\n    SNOW(\"wi-snow\", '\\uf01b'),\n    SNOWFLAKE_COLD(\"wi-snowflake-cold\", '\\uf076'),\n    SNOW_WIND(\"wi-snow-wind\", '\\uf064'),\n    SOLAR_ECLIPSE(\"wi-solar-eclipse\", '\\uf06e'),\n    SPRINKLE(\"wi-sprinkle\", '\\uf01c'),\n    STARS(\"wi-stars\", '\\uf077'),\n    STORM_SHOWERS(\"wi-storm-showers\", '\\uf01d'),\n    STORM_WARNING(\"wi-storm-warning\", '\\uf0ce'),\n    STRONG_WIND(\"wi-strong-wind\", '\\uf050'),\n    SUNRISE(\"wi-sunrise\", '\\uf051'),\n    SUNSET(\"wi-sunset\", '\\uf052'),\n    THERMOMETER(\"wi-thermometer\", '\\uf055'),\n    THERMOMETER_EXTERIOR(\"wi-thermometer-exterior\", '\\uf053'),\n    THERMOMETER_INTERNAL(\"wi-thermometer-internal\", '\\uf054'),\n    THUNDERSTORM(\"wi-thunderstorm\", '\\uf01e'),\n    TIME_1(\"wi-time-1\", '\\uf08a'),\n    TIME_10(\"wi-time-10\", '\\uf093'),\n    TIME_11(\"wi-time-11\", '\\uf094'),\n    TIME_12(\"wi-time-12\", '\\uf089'),\n    TIME_2(\"wi-time-2\", '\\uf08b'),\n    TIME_3(\"wi-time-3\", '\\uf08c'),\n    TIME_4(\"wi-time-4\", '\\uf08d'),\n    TIME_5(\"wi-time-5\", '\\uf08e'),\n    TIME_6(\"wi-time-6\", '\\uf08f'),\n    TIME_7(\"wi-time-7\", '\\uf090'),\n    TIME_8(\"wi-time-8\", '\\uf091'),\n    TIME_9(\"wi-time-9\", '\\uf092'),\n    TORNADO(\"wi-tornado\", '\\uf056'),\n    TRAIN(\"wi-train\", '\\uf0cb'),\n    TSUNAMI(\"wi-tsunami\", '\\uf0c5'),\n    UMBRELLA(\"wi-umbrella\", '\\uf084'),\n    VOLCANO(\"wi-volcano\", '\\uf0c8'),\n    WINDY(\"wi-windy\", '\\uf021'),\n    WIND_BEAUFORT_0(\"wi-wind-beaufort-0\", '\\uf0b7'),\n    WIND_BEAUFORT_1(\"wi-wind-beaufort-1\", '\\uf0b8'),\n    WIND_BEAUFORT_10(\"wi-wind-beaufort-10\", '\\uf0c1'),\n    WIND_BEAUFORT_11(\"wi-wind-beaufort-11\", '\\uf0c2'),\n    WIND_BEAUFORT_12(\"wi-wind-beaufort-12\", '\\uf0c3'),\n    WIND_BEAUFORT_2(\"wi-wind-beaufort-2\", '\\uf0b9'),\n    WIND_BEAUFORT_3(\"wi-wind-beaufort-3\", '\\uf0ba'),\n    WIND_BEAUFORT_4(\"wi-wind-beaufort-4\", '\\uf0bb'),\n    WIND_BEAUFORT_5(\"wi-wind-beaufort-5\", '\\uf0bc'),\n    WIND_BEAUFORT_6(\"wi-wind-beaufort-6\", '\\uf0bd'),\n    WIND_BEAUFORT_7(\"wi-wind-beaufort-7\", '\\uf0be'),\n    WIND_BEAUFORT_8(\"wi-wind-beaufort-8\", '\\uf0bf'),\n    WIND_BEAUFORT_9(\"wi-wind-beaufort-9\", '\\uf0c0'),\n    WIND_DIRECTION(\"wi-wind-direction\", '\\uf0b1');\n\n    public static WeatherIcons findByDescription(String description) {\n        for (WeatherIcons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private String description;\n    private int code;\n\n    WeatherIcons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-weathericons-pack/src/main/java/org/kordamp/ikonli/weathericons/WeatherIconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.weathericons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class WeatherIconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/weathericons/2.0.10/fonts/weathericons-regular-webfont.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"wi-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return WeatherIcons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Weather Icons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-weathericons-pack/src/main/java/org/kordamp/ikonli/weathericons/WeatherIconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.weathericons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class WeatherIconsIkonProvider implements IkonProvider<WeatherIcons> {\n    @Override\n    public Class<WeatherIcons> getIkon() {\n        return WeatherIcons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-weathericons-pack/src/main/resources/META-INF/resources/weathericons/2.0.10/css/weather-icons.css",
    "content": "/*!\n *  Weather Icons 2.0.8\n *  Updated September 19, 2015\n *  Weather themed icons for Bootstrap\n *  Author - Erik Flowers - erik@helloerik.com\n *  Email: erik@helloerik.com\n *  Twitter: http://twitter.com/Erik_UX\n *  ------------------------------------------------------------------------------\n *  Maintained at http://erikflowers.github.io/weather-icons\n *\n *  License\n *  ------------------------------------------------------------------------------\n *  - Font licensed under SIL OFL 1.1 -\n *    http://scripts.sil.org/OFL\n *  - CSS, SCSS and LESS are licensed under MIT License -\n *    http://opensource.org/licenses/mit-license.html\n *  - Documentation licensed under CC BY 3.0 -\n *    http://creativecommons.org/licenses/by/3.0/\n *  - Inspired by and works great as a companion with Font Awesome\n *    \"Font Awesome by Dave Gandy - http://fontawesome.io\"\n */\n@font-face {\n  font-family: 'weathericons';\n  src: url('../fonts/weathericons-regular-webfont.eot');\n  src: url('../fonts/weathericons-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/weathericons-regular-webfont.woff') format('woff'), url('../fonts/weathericons-regular-webfont.ttf') format('truetype'), url('../fonts/weathericons-regular-webfont.svg#weather_iconsregular') format('svg');\n  font-weight: normal;\n  font-style: normal;\n}\n.wi {\n  display: inline-block;\n  font-family: 'weathericons';\n  font-style: normal;\n  font-weight: normal;\n  line-height: 1;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n.wi-fw {\n  text-align: center;\n  width: 1.4em;\n}\n.wi-rotate-90 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);\n  -webkit-transform: rotate(90deg);\n  -ms-transform: rotate(90deg);\n  transform: rotate(90deg);\n}\n.wi-rotate-180 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);\n  -webkit-transform: rotate(180deg);\n  -ms-transform: rotate(180deg);\n  transform: rotate(180deg);\n}\n.wi-rotate-270 {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);\n  -webkit-transform: rotate(270deg);\n  -ms-transform: rotate(270deg);\n  transform: rotate(270deg);\n}\n.wi-flip-horizontal {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);\n  -webkit-transform: scale(-1, 1);\n  -ms-transform: scale(-1, 1);\n  transform: scale(-1, 1);\n}\n.wi-flip-vertical {\n  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);\n  -webkit-transform: scale(1, -1);\n  -ms-transform: scale(1, -1);\n  transform: scale(1, -1);\n}\n.wi-day-sunny:before {\n  content: \"\\f00d\";\n}\n.wi-day-cloudy:before {\n  content: \"\\f002\";\n}\n.wi-day-cloudy-gusts:before {\n  content: \"\\f000\";\n}\n.wi-day-cloudy-windy:before {\n  content: \"\\f001\";\n}\n.wi-day-fog:before {\n  content: \"\\f003\";\n}\n.wi-day-hail:before {\n  content: \"\\f004\";\n}\n.wi-day-haze:before {\n  content: \"\\f0b6\";\n}\n.wi-day-lightning:before {\n  content: \"\\f005\";\n}\n.wi-day-rain:before {\n  content: \"\\f008\";\n}\n.wi-day-rain-mix:before {\n  content: \"\\f006\";\n}\n.wi-day-rain-wind:before {\n  content: \"\\f007\";\n}\n.wi-day-showers:before {\n  content: \"\\f009\";\n}\n.wi-day-sleet:before {\n  content: \"\\f0b2\";\n}\n.wi-day-sleet-storm:before {\n  content: \"\\f068\";\n}\n.wi-day-snow:before {\n  content: \"\\f00a\";\n}\n.wi-day-snow-thunderstorm:before {\n  content: \"\\f06b\";\n}\n.wi-day-snow-wind:before {\n  content: \"\\f065\";\n}\n.wi-day-sprinkle:before {\n  content: \"\\f00b\";\n}\n.wi-day-storm-showers:before {\n  content: \"\\f00e\";\n}\n.wi-day-sunny-overcast:before {\n  content: \"\\f00c\";\n}\n.wi-day-thunderstorm:before {\n  content: \"\\f010\";\n}\n.wi-day-windy:before {\n  content: \"\\f085\";\n}\n.wi-solar-eclipse:before {\n  content: \"\\f06e\";\n}\n.wi-hot:before {\n  content: \"\\f072\";\n}\n.wi-day-cloudy-high:before {\n  content: \"\\f07d\";\n}\n.wi-day-light-wind:before {\n  content: \"\\f0c4\";\n}\n.wi-night-clear:before {\n  content: \"\\f02e\";\n}\n.wi-night-alt-cloudy:before {\n  content: \"\\f086\";\n}\n.wi-night-alt-cloudy-gusts:before {\n  content: \"\\f022\";\n}\n.wi-night-alt-cloudy-windy:before {\n  content: \"\\f023\";\n}\n.wi-night-alt-hail:before {\n  content: \"\\f024\";\n}\n.wi-night-alt-lightning:before {\n  content: \"\\f025\";\n}\n.wi-night-alt-rain:before {\n  content: \"\\f028\";\n}\n.wi-night-alt-rain-mix:before {\n  content: \"\\f026\";\n}\n.wi-night-alt-rain-wind:before {\n  content: \"\\f027\";\n}\n.wi-night-alt-showers:before {\n  content: \"\\f029\";\n}\n.wi-night-alt-sleet:before {\n  content: \"\\f0b4\";\n}\n.wi-night-alt-sleet-storm:before {\n  content: \"\\f06a\";\n}\n.wi-night-alt-snow:before {\n  content: \"\\f02a\";\n}\n.wi-night-alt-snow-thunderstorm:before {\n  content: \"\\f06d\";\n}\n.wi-night-alt-snow-wind:before {\n  content: \"\\f067\";\n}\n.wi-night-alt-sprinkle:before {\n  content: \"\\f02b\";\n}\n.wi-night-alt-storm-showers:before {\n  content: \"\\f02c\";\n}\n.wi-night-alt-thunderstorm:before {\n  content: \"\\f02d\";\n}\n.wi-night-cloudy:before {\n  content: \"\\f031\";\n}\n.wi-night-cloudy-gusts:before {\n  content: \"\\f02f\";\n}\n.wi-night-cloudy-windy:before {\n  content: \"\\f030\";\n}\n.wi-night-fog:before {\n  content: \"\\f04a\";\n}\n.wi-night-hail:before {\n  content: \"\\f032\";\n}\n.wi-night-lightning:before {\n  content: \"\\f033\";\n}\n.wi-night-partly-cloudy:before {\n  content: \"\\f083\";\n}\n.wi-night-rain:before {\n  content: \"\\f036\";\n}\n.wi-night-rain-mix:before {\n  content: \"\\f034\";\n}\n.wi-night-rain-wind:before {\n  content: \"\\f035\";\n}\n.wi-night-showers:before {\n  content: \"\\f037\";\n}\n.wi-night-sleet:before {\n  content: \"\\f0b3\";\n}\n.wi-night-sleet-storm:before {\n  content: \"\\f069\";\n}\n.wi-night-snow:before {\n  content: \"\\f038\";\n}\n.wi-night-snow-thunderstorm:before {\n  content: \"\\f06c\";\n}\n.wi-night-snow-wind:before {\n  content: \"\\f066\";\n}\n.wi-night-sprinkle:before {\n  content: \"\\f039\";\n}\n.wi-night-storm-showers:before {\n  content: \"\\f03a\";\n}\n.wi-night-thunderstorm:before {\n  content: \"\\f03b\";\n}\n.wi-lunar-eclipse:before {\n  content: \"\\f070\";\n}\n.wi-stars:before {\n  content: \"\\f077\";\n}\n.wi-storm-showers:before {\n  content: \"\\f01d\";\n}\n.wi-thunderstorm:before {\n  content: \"\\f01e\";\n}\n.wi-night-alt-cloudy-high:before {\n  content: \"\\f07e\";\n}\n.wi-night-cloudy-high:before {\n  content: \"\\f080\";\n}\n.wi-night-alt-partly-cloudy:before {\n  content: \"\\f081\";\n}\n.wi-cloud:before {\n  content: \"\\f041\";\n}\n.wi-cloudy:before {\n  content: \"\\f013\";\n}\n.wi-cloudy-gusts:before {\n  content: \"\\f011\";\n}\n.wi-cloudy-windy:before {\n  content: \"\\f012\";\n}\n.wi-fog:before {\n  content: \"\\f014\";\n}\n.wi-hail:before {\n  content: \"\\f015\";\n}\n.wi-rain:before {\n  content: \"\\f019\";\n}\n.wi-rain-mix:before {\n  content: \"\\f017\";\n}\n.wi-rain-wind:before {\n  content: \"\\f018\";\n}\n.wi-showers:before {\n  content: \"\\f01a\";\n}\n.wi-sleet:before {\n  content: \"\\f0b5\";\n}\n.wi-snow:before {\n  content: \"\\f01b\";\n}\n.wi-sprinkle:before {\n  content: \"\\f01c\";\n}\n.wi-storm-showers:before {\n  content: \"\\f01d\";\n}\n.wi-thunderstorm:before {\n  content: \"\\f01e\";\n}\n.wi-snow-wind:before {\n  content: \"\\f064\";\n}\n.wi-snow:before {\n  content: \"\\f01b\";\n}\n.wi-smog:before {\n  content: \"\\f074\";\n}\n.wi-smoke:before {\n  content: \"\\f062\";\n}\n.wi-lightning:before {\n  content: \"\\f016\";\n}\n.wi-raindrops:before {\n  content: \"\\f04e\";\n}\n.wi-raindrop:before {\n  content: \"\\f078\";\n}\n.wi-dust:before {\n  content: \"\\f063\";\n}\n.wi-snowflake-cold:before {\n  content: \"\\f076\";\n}\n.wi-windy:before {\n  content: \"\\f021\";\n}\n.wi-strong-wind:before {\n  content: \"\\f050\";\n}\n.wi-sandstorm:before {\n  content: \"\\f082\";\n}\n.wi-earthquake:before {\n  content: \"\\f0c6\";\n}\n.wi-fire:before {\n  content: \"\\f0c7\";\n}\n.wi-flood:before {\n  content: \"\\f07c\";\n}\n.wi-meteor:before {\n  content: \"\\f071\";\n}\n.wi-tsunami:before {\n  content: \"\\f0c5\";\n}\n.wi-volcano:before {\n  content: \"\\f0c8\";\n}\n.wi-hurricane:before {\n  content: \"\\f073\";\n}\n.wi-tornado:before {\n  content: \"\\f056\";\n}\n.wi-small-craft-advisory:before {\n  content: \"\\f0cc\";\n}\n.wi-gale-warning:before {\n  content: \"\\f0cd\";\n}\n.wi-storm-warning:before {\n  content: \"\\f0ce\";\n}\n.wi-hurricane-warning:before {\n  content: \"\\f0cf\";\n}\n.wi-wind-direction:before {\n  content: \"\\f0b1\";\n}\n.wi-alien:before {\n  content: \"\\f075\";\n}\n.wi-celsius:before {\n  content: \"\\f03c\";\n}\n.wi-fahrenheit:before {\n  content: \"\\f045\";\n}\n.wi-degrees:before {\n  content: \"\\f042\";\n}\n.wi-thermometer:before {\n  content: \"\\f055\";\n}\n.wi-thermometer-exterior:before {\n  content: \"\\f053\";\n}\n.wi-thermometer-internal:before {\n  content: \"\\f054\";\n}\n.wi-cloud-down:before {\n  content: \"\\f03d\";\n}\n.wi-cloud-up:before {\n  content: \"\\f040\";\n}\n.wi-cloud-refresh:before {\n  content: \"\\f03e\";\n}\n.wi-horizon:before {\n  content: \"\\f047\";\n}\n.wi-horizon-alt:before {\n  content: \"\\f046\";\n}\n.wi-sunrise:before {\n  content: \"\\f051\";\n}\n.wi-sunset:before {\n  content: \"\\f052\";\n}\n.wi-moonrise:before {\n  content: \"\\f0c9\";\n}\n.wi-moonset:before {\n  content: \"\\f0ca\";\n}\n.wi-refresh:before {\n  content: \"\\f04c\";\n}\n.wi-refresh-alt:before {\n  content: \"\\f04b\";\n}\n.wi-umbrella:before {\n  content: \"\\f084\";\n}\n.wi-barometer:before {\n  content: \"\\f079\";\n}\n.wi-humidity:before {\n  content: \"\\f07a\";\n}\n.wi-na:before {\n  content: \"\\f07b\";\n}\n.wi-train:before {\n  content: \"\\f0cb\";\n}\n.wi-moon-new:before {\n  content: \"\\f095\";\n}\n.wi-moon-waxing-crescent-1:before {\n  content: \"\\f096\";\n}\n.wi-moon-waxing-crescent-2:before {\n  content: \"\\f097\";\n}\n.wi-moon-waxing-crescent-3:before {\n  content: \"\\f098\";\n}\n.wi-moon-waxing-crescent-4:before {\n  content: \"\\f099\";\n}\n.wi-moon-waxing-crescent-5:before {\n  content: \"\\f09a\";\n}\n.wi-moon-waxing-crescent-6:before {\n  content: \"\\f09b\";\n}\n.wi-moon-first-quarter:before {\n  content: \"\\f09c\";\n}\n.wi-moon-waxing-gibbous-1:before {\n  content: \"\\f09d\";\n}\n.wi-moon-waxing-gibbous-2:before {\n  content: \"\\f09e\";\n}\n.wi-moon-waxing-gibbous-3:before {\n  content: \"\\f09f\";\n}\n.wi-moon-waxing-gibbous-4:before {\n  content: \"\\f0a0\";\n}\n.wi-moon-waxing-gibbous-5:before {\n  content: \"\\f0a1\";\n}\n.wi-moon-waxing-gibbous-6:before {\n  content: \"\\f0a2\";\n}\n.wi-moon-full:before {\n  content: \"\\f0a3\";\n}\n.wi-moon-waning-gibbous-1:before {\n  content: \"\\f0a4\";\n}\n.wi-moon-waning-gibbous-2:before {\n  content: \"\\f0a5\";\n}\n.wi-moon-waning-gibbous-3:before {\n  content: \"\\f0a6\";\n}\n.wi-moon-waning-gibbous-4:before {\n  content: \"\\f0a7\";\n}\n.wi-moon-waning-gibbous-5:before {\n  content: \"\\f0a8\";\n}\n.wi-moon-waning-gibbous-6:before {\n  content: \"\\f0a9\";\n}\n.wi-moon-third-quarter:before {\n  content: \"\\f0aa\";\n}\n.wi-moon-waning-crescent-1:before {\n  content: \"\\f0ab\";\n}\n.wi-moon-waning-crescent-2:before {\n  content: \"\\f0ac\";\n}\n.wi-moon-waning-crescent-3:before {\n  content: \"\\f0ad\";\n}\n.wi-moon-waning-crescent-4:before {\n  content: \"\\f0ae\";\n}\n.wi-moon-waning-crescent-5:before {\n  content: \"\\f0af\";\n}\n.wi-moon-waning-crescent-6:before {\n  content: \"\\f0b0\";\n}\n.wi-moon-alt-new:before {\n  content: \"\\f0eb\";\n}\n.wi-moon-alt-waxing-crescent-1:before {\n  content: \"\\f0d0\";\n}\n.wi-moon-alt-waxing-crescent-2:before {\n  content: \"\\f0d1\";\n}\n.wi-moon-alt-waxing-crescent-3:before {\n  content: \"\\f0d2\";\n}\n.wi-moon-alt-waxing-crescent-4:before {\n  content: \"\\f0d3\";\n}\n.wi-moon-alt-waxing-crescent-5:before {\n  content: \"\\f0d4\";\n}\n.wi-moon-alt-waxing-crescent-6:before {\n  content: \"\\f0d5\";\n}\n.wi-moon-alt-first-quarter:before {\n  content: \"\\f0d6\";\n}\n.wi-moon-alt-waxing-gibbous-1:before {\n  content: \"\\f0d7\";\n}\n.wi-moon-alt-waxing-gibbous-2:before {\n  content: \"\\f0d8\";\n}\n.wi-moon-alt-waxing-gibbous-3:before {\n  content: \"\\f0d9\";\n}\n.wi-moon-alt-waxing-gibbous-4:before {\n  content: \"\\f0da\";\n}\n.wi-moon-alt-waxing-gibbous-5:before {\n  content: \"\\f0db\";\n}\n.wi-moon-alt-waxing-gibbous-6:before {\n  content: \"\\f0dc\";\n}\n.wi-moon-alt-full:before {\n  content: \"\\f0dd\";\n}\n.wi-moon-alt-waning-gibbous-1:before {\n  content: \"\\f0de\";\n}\n.wi-moon-alt-waning-gibbous-2:before {\n  content: \"\\f0df\";\n}\n.wi-moon-alt-waning-gibbous-3:before {\n  content: \"\\f0e0\";\n}\n.wi-moon-alt-waning-gibbous-4:before {\n  content: \"\\f0e1\";\n}\n.wi-moon-alt-waning-gibbous-5:before {\n  content: \"\\f0e2\";\n}\n.wi-moon-alt-waning-gibbous-6:before {\n  content: \"\\f0e3\";\n}\n.wi-moon-alt-third-quarter:before {\n  content: \"\\f0e4\";\n}\n.wi-moon-alt-waning-crescent-1:before {\n  content: \"\\f0e5\";\n}\n.wi-moon-alt-waning-crescent-2:before {\n  content: \"\\f0e6\";\n}\n.wi-moon-alt-waning-crescent-3:before {\n  content: \"\\f0e7\";\n}\n.wi-moon-alt-waning-crescent-4:before {\n  content: \"\\f0e8\";\n}\n.wi-moon-alt-waning-crescent-5:before {\n  content: \"\\f0e9\";\n}\n.wi-moon-alt-waning-crescent-6:before {\n  content: \"\\f0ea\";\n}\n.wi-moon-0:before {\n  content: \"\\f095\";\n}\n.wi-moon-1:before {\n  content: \"\\f096\";\n}\n.wi-moon-2:before {\n  content: \"\\f097\";\n}\n.wi-moon-3:before {\n  content: \"\\f098\";\n}\n.wi-moon-4:before {\n  content: \"\\f099\";\n}\n.wi-moon-5:before {\n  content: \"\\f09a\";\n}\n.wi-moon-6:before {\n  content: \"\\f09b\";\n}\n.wi-moon-7:before {\n  content: \"\\f09c\";\n}\n.wi-moon-8:before {\n  content: \"\\f09d\";\n}\n.wi-moon-9:before {\n  content: \"\\f09e\";\n}\n.wi-moon-10:before {\n  content: \"\\f09f\";\n}\n.wi-moon-11:before {\n  content: \"\\f0a0\";\n}\n.wi-moon-12:before {\n  content: \"\\f0a1\";\n}\n.wi-moon-13:before {\n  content: \"\\f0a2\";\n}\n.wi-moon-14:before {\n  content: \"\\f0a3\";\n}\n.wi-moon-15:before {\n  content: \"\\f0a4\";\n}\n.wi-moon-16:before {\n  content: \"\\f0a5\";\n}\n.wi-moon-17:before {\n  content: \"\\f0a6\";\n}\n.wi-moon-18:before {\n  content: \"\\f0a7\";\n}\n.wi-moon-19:before {\n  content: \"\\f0a8\";\n}\n.wi-moon-20:before {\n  content: \"\\f0a9\";\n}\n.wi-moon-21:before {\n  content: \"\\f0aa\";\n}\n.wi-moon-22:before {\n  content: \"\\f0ab\";\n}\n.wi-moon-23:before {\n  content: \"\\f0ac\";\n}\n.wi-moon-24:before {\n  content: \"\\f0ad\";\n}\n.wi-moon-25:before {\n  content: \"\\f0ae\";\n}\n.wi-moon-26:before {\n  content: \"\\f0af\";\n}\n.wi-moon-27:before {\n  content: \"\\f0b0\";\n}\n.wi-time-1:before {\n  content: \"\\f08a\";\n}\n.wi-time-2:before {\n  content: \"\\f08b\";\n}\n.wi-time-3:before {\n  content: \"\\f08c\";\n}\n.wi-time-4:before {\n  content: \"\\f08d\";\n}\n.wi-time-5:before {\n  content: \"\\f08e\";\n}\n.wi-time-6:before {\n  content: \"\\f08f\";\n}\n.wi-time-7:before {\n  content: \"\\f090\";\n}\n.wi-time-8:before {\n  content: \"\\f091\";\n}\n.wi-time-9:before {\n  content: \"\\f092\";\n}\n.wi-time-10:before {\n  content: \"\\f093\";\n}\n.wi-time-11:before {\n  content: \"\\f094\";\n}\n.wi-time-12:before {\n  content: \"\\f089\";\n}\n.wi-direction-up:before {\n  content: \"\\f058\";\n}\n.wi-direction-up-right:before {\n  content: \"\\f057\";\n}\n.wi-direction-right:before {\n  content: \"\\f04d\";\n}\n.wi-direction-down-right:before {\n  content: \"\\f088\";\n}\n.wi-direction-down:before {\n  content: \"\\f044\";\n}\n.wi-direction-down-left:before {\n  content: \"\\f043\";\n}\n.wi-direction-left:before {\n  content: \"\\f048\";\n}\n.wi-direction-up-left:before {\n  content: \"\\f087\";\n}\n.wi-wind-beaufort-0:before {\n  content: \"\\f0b7\";\n}\n.wi-wind-beaufort-1:before {\n  content: \"\\f0b8\";\n}\n.wi-wind-beaufort-2:before {\n  content: \"\\f0b9\";\n}\n.wi-wind-beaufort-3:before {\n  content: \"\\f0ba\";\n}\n.wi-wind-beaufort-4:before {\n  content: \"\\f0bb\";\n}\n.wi-wind-beaufort-5:before {\n  content: \"\\f0bc\";\n}\n.wi-wind-beaufort-6:before {\n  content: \"\\f0bd\";\n}\n.wi-wind-beaufort-7:before {\n  content: \"\\f0be\";\n}\n.wi-wind-beaufort-8:before {\n  content: \"\\f0bf\";\n}\n.wi-wind-beaufort-9:before {\n  content: \"\\f0c0\";\n}\n.wi-wind-beaufort-10:before {\n  content: \"\\f0c1\";\n}\n.wi-wind-beaufort-11:before {\n  content: \"\\f0c2\";\n}\n.wi-wind-beaufort-12:before {\n  content: \"\\f0c3\";\n}\n.wi-yahoo-0:before {\n  content: \"\\f056\";\n}\n.wi-yahoo-1:before {\n  content: \"\\f00e\";\n}\n.wi-yahoo-2:before {\n  content: \"\\f073\";\n}\n.wi-yahoo-3:before {\n  content: \"\\f01e\";\n}\n.wi-yahoo-4:before {\n  content: \"\\f01e\";\n}\n.wi-yahoo-5:before {\n  content: \"\\f017\";\n}\n.wi-yahoo-6:before {\n  content: \"\\f017\";\n}\n.wi-yahoo-7:before {\n  content: \"\\f017\";\n}\n.wi-yahoo-8:before {\n  content: \"\\f015\";\n}\n.wi-yahoo-9:before {\n  content: \"\\f01a\";\n}\n.wi-yahoo-10:before {\n  content: \"\\f015\";\n}\n.wi-yahoo-11:before {\n  content: \"\\f01a\";\n}\n.wi-yahoo-12:before {\n  content: \"\\f01a\";\n}\n.wi-yahoo-13:before {\n  content: \"\\f01b\";\n}\n.wi-yahoo-14:before {\n  content: \"\\f00a\";\n}\n.wi-yahoo-15:before {\n  content: \"\\f064\";\n}\n.wi-yahoo-16:before {\n  content: \"\\f01b\";\n}\n.wi-yahoo-17:before {\n  content: \"\\f015\";\n}\n.wi-yahoo-18:before {\n  content: \"\\f017\";\n}\n.wi-yahoo-19:before {\n  content: \"\\f063\";\n}\n.wi-yahoo-20:before {\n  content: \"\\f014\";\n}\n.wi-yahoo-21:before {\n  content: \"\\f021\";\n}\n.wi-yahoo-22:before {\n  content: \"\\f062\";\n}\n.wi-yahoo-23:before {\n  content: \"\\f050\";\n}\n.wi-yahoo-24:before {\n  content: \"\\f050\";\n}\n.wi-yahoo-25:before {\n  content: \"\\f076\";\n}\n.wi-yahoo-26:before {\n  content: \"\\f013\";\n}\n.wi-yahoo-27:before {\n  content: \"\\f031\";\n}\n.wi-yahoo-28:before {\n  content: \"\\f002\";\n}\n.wi-yahoo-29:before {\n  content: \"\\f031\";\n}\n.wi-yahoo-30:before {\n  content: \"\\f002\";\n}\n.wi-yahoo-31:before {\n  content: \"\\f02e\";\n}\n.wi-yahoo-32:before {\n  content: \"\\f00d\";\n}\n.wi-yahoo-33:before {\n  content: \"\\f083\";\n}\n.wi-yahoo-34:before {\n  content: \"\\f00c\";\n}\n.wi-yahoo-35:before {\n  content: \"\\f017\";\n}\n.wi-yahoo-36:before {\n  content: \"\\f072\";\n}\n.wi-yahoo-37:before {\n  content: \"\\f00e\";\n}\n.wi-yahoo-38:before {\n  content: \"\\f00e\";\n}\n.wi-yahoo-39:before {\n  content: \"\\f00e\";\n}\n.wi-yahoo-40:before {\n  content: \"\\f01a\";\n}\n.wi-yahoo-41:before {\n  content: \"\\f064\";\n}\n.wi-yahoo-42:before {\n  content: \"\\f01b\";\n}\n.wi-yahoo-43:before {\n  content: \"\\f064\";\n}\n.wi-yahoo-44:before {\n  content: \"\\f00c\";\n}\n.wi-yahoo-45:before {\n  content: \"\\f00e\";\n}\n.wi-yahoo-46:before {\n  content: \"\\f01b\";\n}\n.wi-yahoo-47:before {\n  content: \"\\f00e\";\n}\n.wi-yahoo-3200:before {\n  content: \"\\f077\";\n}\n.wi-forecast-io-clear-day:before {\n  content: \"\\f00d\";\n}\n.wi-forecast-io-clear-night:before {\n  content: \"\\f02e\";\n}\n.wi-forecast-io-rain:before {\n  content: \"\\f019\";\n}\n.wi-forecast-io-snow:before {\n  content: \"\\f01b\";\n}\n.wi-forecast-io-sleet:before {\n  content: \"\\f0b5\";\n}\n.wi-forecast-io-wind:before {\n  content: \"\\f050\";\n}\n.wi-forecast-io-fog:before {\n  content: \"\\f014\";\n}\n.wi-forecast-io-cloudy:before {\n  content: \"\\f013\";\n}\n.wi-forecast-io-partly-cloudy-day:before {\n  content: \"\\f002\";\n}\n.wi-forecast-io-partly-cloudy-night:before {\n  content: \"\\f031\";\n}\n.wi-forecast-io-hail:before {\n  content: \"\\f015\";\n}\n.wi-forecast-io-thunderstorm:before {\n  content: \"\\f01e\";\n}\n.wi-forecast-io-tornado:before {\n  content: \"\\f056\";\n}\n.wi-wmo4680-0:before,\n.wi-wmo4680-00:before {\n  content: \"\\f055\";\n}\n.wi-wmo4680-1:before,\n.wi-wmo4680-01:before {\n  content: \"\\f013\";\n}\n.wi-wmo4680-2:before,\n.wi-wmo4680-02:before {\n  content: \"\\f055\";\n}\n.wi-wmo4680-3:before,\n.wi-wmo4680-03:before {\n  content: \"\\f013\";\n}\n.wi-wmo4680-4:before,\n.wi-wmo4680-04:before {\n  content: \"\\f014\";\n}\n.wi-wmo4680-5:before,\n.wi-wmo4680-05:before {\n  content: \"\\f014\";\n}\n.wi-wmo4680-10:before {\n  content: \"\\f014\";\n}\n.wi-wmo4680-11:before {\n  content: \"\\f014\";\n}\n.wi-wmo4680-12:before {\n  content: \"\\f016\";\n}\n.wi-wmo4680-18:before {\n  content: \"\\f050\";\n}\n.wi-wmo4680-20:before {\n  content: \"\\f014\";\n}\n.wi-wmo4680-21:before {\n  content: \"\\f017\";\n}\n.wi-wmo4680-22:before {\n  content: \"\\f017\";\n}\n.wi-wmo4680-23:before {\n  content: \"\\f019\";\n}\n.wi-wmo4680-24:before {\n  content: \"\\f01b\";\n}\n.wi-wmo4680-25:before {\n  content: \"\\f015\";\n}\n.wi-wmo4680-26:before {\n  content: \"\\f01e\";\n}\n.wi-wmo4680-27:before {\n  content: \"\\f063\";\n}\n.wi-wmo4680-28:before {\n  content: \"\\f063\";\n}\n.wi-wmo4680-29:before {\n  content: \"\\f063\";\n}\n.wi-wmo4680-30:before {\n  content: \"\\f014\";\n}\n.wi-wmo4680-31:before {\n  content: \"\\f014\";\n}\n.wi-wmo4680-32:before {\n  content: \"\\f014\";\n}\n.wi-wmo4680-33:before {\n  content: \"\\f014\";\n}\n.wi-wmo4680-34:before {\n  content: \"\\f014\";\n}\n.wi-wmo4680-35:before {\n  content: \"\\f014\";\n}\n.wi-wmo4680-40:before {\n  content: \"\\f017\";\n}\n.wi-wmo4680-41:before {\n  content: \"\\f01c\";\n}\n.wi-wmo4680-42:before {\n  content: \"\\f019\";\n}\n.wi-wmo4680-43:before {\n  content: \"\\f01c\";\n}\n.wi-wmo4680-44:before {\n  content: \"\\f019\";\n}\n.wi-wmo4680-45:before {\n  content: \"\\f015\";\n}\n.wi-wmo4680-46:before {\n  content: \"\\f015\";\n}\n.wi-wmo4680-47:before {\n  content: \"\\f01b\";\n}\n.wi-wmo4680-48:before {\n  content: \"\\f01b\";\n}\n.wi-wmo4680-50:before {\n  content: \"\\f01c\";\n}\n.wi-wmo4680-51:before {\n  content: \"\\f01c\";\n}\n.wi-wmo4680-52:before {\n  content: \"\\f019\";\n}\n.wi-wmo4680-53:before {\n  content: \"\\f019\";\n}\n.wi-wmo4680-54:before {\n  content: \"\\f076\";\n}\n.wi-wmo4680-55:before {\n  content: \"\\f076\";\n}\n.wi-wmo4680-56:before {\n  content: \"\\f076\";\n}\n.wi-wmo4680-57:before {\n  content: \"\\f01c\";\n}\n.wi-wmo4680-58:before {\n  content: \"\\f019\";\n}\n.wi-wmo4680-60:before {\n  content: \"\\f01c\";\n}\n.wi-wmo4680-61:before {\n  content: \"\\f01c\";\n}\n.wi-wmo4680-62:before {\n  content: \"\\f019\";\n}\n.wi-wmo4680-63:before {\n  content: \"\\f019\";\n}\n.wi-wmo4680-64:before {\n  content: \"\\f015\";\n}\n.wi-wmo4680-65:before {\n  content: \"\\f015\";\n}\n.wi-wmo4680-66:before {\n  content: \"\\f015\";\n}\n.wi-wmo4680-67:before {\n  content: \"\\f017\";\n}\n.wi-wmo4680-68:before {\n  content: \"\\f017\";\n}\n.wi-wmo4680-70:before {\n  content: \"\\f01b\";\n}\n.wi-wmo4680-71:before {\n  content: \"\\f01b\";\n}\n.wi-wmo4680-72:before {\n  content: \"\\f01b\";\n}\n.wi-wmo4680-73:before {\n  content: \"\\f01b\";\n}\n.wi-wmo4680-74:before {\n  content: \"\\f076\";\n}\n.wi-wmo4680-75:before {\n  content: \"\\f076\";\n}\n.wi-wmo4680-76:before {\n  content: \"\\f076\";\n}\n.wi-wmo4680-77:before {\n  content: \"\\f01b\";\n}\n.wi-wmo4680-78:before {\n  content: \"\\f076\";\n}\n.wi-wmo4680-80:before {\n  content: \"\\f019\";\n}\n.wi-wmo4680-81:before {\n  content: \"\\f01c\";\n}\n.wi-wmo4680-82:before {\n  content: \"\\f019\";\n}\n.wi-wmo4680-83:before {\n  content: \"\\f019\";\n}\n.wi-wmo4680-84:before {\n  content: \"\\f01d\";\n}\n.wi-wmo4680-85:before {\n  content: \"\\f017\";\n}\n.wi-wmo4680-86:before {\n  content: \"\\f017\";\n}\n.wi-wmo4680-87:before {\n  content: \"\\f017\";\n}\n.wi-wmo4680-89:before {\n  content: \"\\f015\";\n}\n.wi-wmo4680-90:before {\n  content: \"\\f016\";\n}\n.wi-wmo4680-91:before {\n  content: \"\\f01d\";\n}\n.wi-wmo4680-92:before {\n  content: \"\\f01e\";\n}\n.wi-wmo4680-93:before {\n  content: \"\\f01e\";\n}\n.wi-wmo4680-94:before {\n  content: \"\\f016\";\n}\n.wi-wmo4680-95:before {\n  content: \"\\f01e\";\n}\n.wi-wmo4680-96:before {\n  content: \"\\f01e\";\n}\n.wi-wmo4680-99:before {\n  content: \"\\f056\";\n}\n.wi-owm-200:before {\n  content: \"\\f01e\";\n}\n.wi-owm-201:before {\n  content: \"\\f01e\";\n}\n.wi-owm-202:before {\n  content: \"\\f01e\";\n}\n.wi-owm-210:before {\n  content: \"\\f016\";\n}\n.wi-owm-211:before {\n  content: \"\\f016\";\n}\n.wi-owm-212:before {\n  content: \"\\f016\";\n}\n.wi-owm-221:before {\n  content: \"\\f016\";\n}\n.wi-owm-230:before {\n  content: \"\\f01e\";\n}\n.wi-owm-231:before {\n  content: \"\\f01e\";\n}\n.wi-owm-232:before {\n  content: \"\\f01e\";\n}\n.wi-owm-300:before {\n  content: \"\\f01c\";\n}\n.wi-owm-301:before {\n  content: \"\\f01c\";\n}\n.wi-owm-302:before {\n  content: \"\\f019\";\n}\n.wi-owm-310:before {\n  content: \"\\f017\";\n}\n.wi-owm-311:before {\n  content: \"\\f019\";\n}\n.wi-owm-312:before {\n  content: \"\\f019\";\n}\n.wi-owm-313:before {\n  content: \"\\f01a\";\n}\n.wi-owm-314:before {\n  content: \"\\f019\";\n}\n.wi-owm-321:before {\n  content: \"\\f01c\";\n}\n.wi-owm-500:before {\n  content: \"\\f01c\";\n}\n.wi-owm-501:before {\n  content: \"\\f019\";\n}\n.wi-owm-502:before {\n  content: \"\\f019\";\n}\n.wi-owm-503:before {\n  content: \"\\f019\";\n}\n.wi-owm-504:before {\n  content: \"\\f019\";\n}\n.wi-owm-511:before {\n  content: \"\\f017\";\n}\n.wi-owm-520:before {\n  content: \"\\f01a\";\n}\n.wi-owm-521:before {\n  content: \"\\f01a\";\n}\n.wi-owm-522:before {\n  content: \"\\f01a\";\n}\n.wi-owm-531:before {\n  content: \"\\f01d\";\n}\n.wi-owm-600:before {\n  content: \"\\f01b\";\n}\n.wi-owm-601:before {\n  content: \"\\f01b\";\n}\n.wi-owm-602:before {\n  content: \"\\f0b5\";\n}\n.wi-owm-611:before {\n  content: \"\\f017\";\n}\n.wi-owm-612:before {\n  content: \"\\f017\";\n}\n.wi-owm-615:before {\n  content: \"\\f017\";\n}\n.wi-owm-616:before {\n  content: \"\\f017\";\n}\n.wi-owm-620:before {\n  content: \"\\f017\";\n}\n.wi-owm-621:before {\n  content: \"\\f01b\";\n}\n.wi-owm-622:before {\n  content: \"\\f01b\";\n}\n.wi-owm-701:before {\n  content: \"\\f01a\";\n}\n.wi-owm-711:before {\n  content: \"\\f062\";\n}\n.wi-owm-721:before {\n  content: \"\\f0b6\";\n}\n.wi-owm-731:before {\n  content: \"\\f063\";\n}\n.wi-owm-741:before {\n  content: \"\\f014\";\n}\n.wi-owm-761:before {\n  content: \"\\f063\";\n}\n.wi-owm-762:before {\n  content: \"\\f063\";\n}\n.wi-owm-771:before {\n  content: \"\\f011\";\n}\n.wi-owm-781:before {\n  content: \"\\f056\";\n}\n.wi-owm-800:before {\n  content: \"\\f00d\";\n}\n.wi-owm-801:before {\n  content: \"\\f011\";\n}\n.wi-owm-802:before {\n  content: \"\\f011\";\n}\n.wi-owm-803:before {\n  content: \"\\f012\";\n}\n.wi-owm-804:before {\n  content: \"\\f013\";\n}\n.wi-owm-900:before {\n  content: \"\\f056\";\n}\n.wi-owm-901:before {\n  content: \"\\f01d\";\n}\n.wi-owm-902:before {\n  content: \"\\f073\";\n}\n.wi-owm-903:before {\n  content: \"\\f076\";\n}\n.wi-owm-904:before {\n  content: \"\\f072\";\n}\n.wi-owm-905:before {\n  content: \"\\f021\";\n}\n.wi-owm-906:before {\n  content: \"\\f015\";\n}\n.wi-owm-957:before {\n  content: \"\\f050\";\n}\n.wi-owm-day-200:before {\n  content: \"\\f010\";\n}\n.wi-owm-day-201:before {\n  content: \"\\f010\";\n}\n.wi-owm-day-202:before {\n  content: \"\\f010\";\n}\n.wi-owm-day-210:before {\n  content: \"\\f005\";\n}\n.wi-owm-day-211:before {\n  content: \"\\f005\";\n}\n.wi-owm-day-212:before {\n  content: \"\\f005\";\n}\n.wi-owm-day-221:before {\n  content: \"\\f005\";\n}\n.wi-owm-day-230:before {\n  content: \"\\f010\";\n}\n.wi-owm-day-231:before {\n  content: \"\\f010\";\n}\n.wi-owm-day-232:before {\n  content: \"\\f010\";\n}\n.wi-owm-day-300:before {\n  content: \"\\f00b\";\n}\n.wi-owm-day-301:before {\n  content: \"\\f00b\";\n}\n.wi-owm-day-302:before {\n  content: \"\\f008\";\n}\n.wi-owm-day-310:before {\n  content: \"\\f008\";\n}\n.wi-owm-day-311:before {\n  content: \"\\f008\";\n}\n.wi-owm-day-312:before {\n  content: \"\\f008\";\n}\n.wi-owm-day-313:before {\n  content: \"\\f008\";\n}\n.wi-owm-day-314:before {\n  content: \"\\f008\";\n}\n.wi-owm-day-321:before {\n  content: \"\\f00b\";\n}\n.wi-owm-day-500:before {\n  content: \"\\f00b\";\n}\n.wi-owm-day-501:before {\n  content: \"\\f008\";\n}\n.wi-owm-day-502:before {\n  content: \"\\f008\";\n}\n.wi-owm-day-503:before {\n  content: \"\\f008\";\n}\n.wi-owm-day-504:before {\n  content: \"\\f008\";\n}\n.wi-owm-day-511:before {\n  content: \"\\f006\";\n}\n.wi-owm-day-520:before {\n  content: \"\\f009\";\n}\n.wi-owm-day-521:before {\n  content: \"\\f009\";\n}\n.wi-owm-day-522:before {\n  content: \"\\f009\";\n}\n.wi-owm-day-531:before {\n  content: \"\\f00e\";\n}\n.wi-owm-day-600:before {\n  content: \"\\f00a\";\n}\n.wi-owm-day-601:before {\n  content: \"\\f0b2\";\n}\n.wi-owm-day-602:before {\n  content: \"\\f00a\";\n}\n.wi-owm-day-611:before {\n  content: \"\\f006\";\n}\n.wi-owm-day-612:before {\n  content: \"\\f006\";\n}\n.wi-owm-day-615:before {\n  content: \"\\f006\";\n}\n.wi-owm-day-616:before {\n  content: \"\\f006\";\n}\n.wi-owm-day-620:before {\n  content: \"\\f006\";\n}\n.wi-owm-day-621:before {\n  content: \"\\f00a\";\n}\n.wi-owm-day-622:before {\n  content: \"\\f00a\";\n}\n.wi-owm-day-701:before {\n  content: \"\\f009\";\n}\n.wi-owm-day-711:before {\n  content: \"\\f062\";\n}\n.wi-owm-day-721:before {\n  content: \"\\f0b6\";\n}\n.wi-owm-day-731:before {\n  content: \"\\f063\";\n}\n.wi-owm-day-741:before {\n  content: \"\\f003\";\n}\n.wi-owm-day-761:before {\n  content: \"\\f063\";\n}\n.wi-owm-day-762:before {\n  content: \"\\f063\";\n}\n.wi-owm-day-781:before {\n  content: \"\\f056\";\n}\n.wi-owm-day-800:before {\n  content: \"\\f00d\";\n}\n.wi-owm-day-801:before {\n  content: \"\\f000\";\n}\n.wi-owm-day-802:before {\n  content: \"\\f000\";\n}\n.wi-owm-day-803:before {\n  content: \"\\f000\";\n}\n.wi-owm-day-804:before {\n  content: \"\\f00c\";\n}\n.wi-owm-day-900:before {\n  content: \"\\f056\";\n}\n.wi-owm-day-902:before {\n  content: \"\\f073\";\n}\n.wi-owm-day-903:before {\n  content: \"\\f076\";\n}\n.wi-owm-day-904:before {\n  content: \"\\f072\";\n}\n.wi-owm-day-906:before {\n  content: \"\\f004\";\n}\n.wi-owm-day-957:before {\n  content: \"\\f050\";\n}\n.wi-owm-night-200:before {\n  content: \"\\f02d\";\n}\n.wi-owm-night-201:before {\n  content: \"\\f02d\";\n}\n.wi-owm-night-202:before {\n  content: \"\\f02d\";\n}\n.wi-owm-night-210:before {\n  content: \"\\f025\";\n}\n.wi-owm-night-211:before {\n  content: \"\\f025\";\n}\n.wi-owm-night-212:before {\n  content: \"\\f025\";\n}\n.wi-owm-night-221:before {\n  content: \"\\f025\";\n}\n.wi-owm-night-230:before {\n  content: \"\\f02d\";\n}\n.wi-owm-night-231:before {\n  content: \"\\f02d\";\n}\n.wi-owm-night-232:before {\n  content: \"\\f02d\";\n}\n.wi-owm-night-300:before {\n  content: \"\\f02b\";\n}\n.wi-owm-night-301:before {\n  content: \"\\f02b\";\n}\n.wi-owm-night-302:before {\n  content: \"\\f028\";\n}\n.wi-owm-night-310:before {\n  content: \"\\f028\";\n}\n.wi-owm-night-311:before {\n  content: \"\\f028\";\n}\n.wi-owm-night-312:before {\n  content: \"\\f028\";\n}\n.wi-owm-night-313:before {\n  content: \"\\f028\";\n}\n.wi-owm-night-314:before {\n  content: \"\\f028\";\n}\n.wi-owm-night-321:before {\n  content: \"\\f02b\";\n}\n.wi-owm-night-500:before {\n  content: \"\\f02b\";\n}\n.wi-owm-night-501:before {\n  content: \"\\f028\";\n}\n.wi-owm-night-502:before {\n  content: \"\\f028\";\n}\n.wi-owm-night-503:before {\n  content: \"\\f028\";\n}\n.wi-owm-night-504:before {\n  content: \"\\f028\";\n}\n.wi-owm-night-511:before {\n  content: \"\\f026\";\n}\n.wi-owm-night-520:before {\n  content: \"\\f029\";\n}\n.wi-owm-night-521:before {\n  content: \"\\f029\";\n}\n.wi-owm-night-522:before {\n  content: \"\\f029\";\n}\n.wi-owm-night-531:before {\n  content: \"\\f02c\";\n}\n.wi-owm-night-600:before {\n  content: \"\\f02a\";\n}\n.wi-owm-night-601:before {\n  content: \"\\f0b4\";\n}\n.wi-owm-night-602:before {\n  content: \"\\f02a\";\n}\n.wi-owm-night-611:before {\n  content: \"\\f026\";\n}\n.wi-owm-night-612:before {\n  content: \"\\f026\";\n}\n.wi-owm-night-615:before {\n  content: \"\\f026\";\n}\n.wi-owm-night-616:before {\n  content: \"\\f026\";\n}\n.wi-owm-night-620:before {\n  content: \"\\f026\";\n}\n.wi-owm-night-621:before {\n  content: \"\\f02a\";\n}\n.wi-owm-night-622:before {\n  content: \"\\f02a\";\n}\n.wi-owm-night-701:before {\n  content: \"\\f029\";\n}\n.wi-owm-night-711:before {\n  content: \"\\f062\";\n}\n.wi-owm-night-721:before {\n  content: \"\\f0b6\";\n}\n.wi-owm-night-731:before {\n  content: \"\\f063\";\n}\n.wi-owm-night-741:before {\n  content: \"\\f04a\";\n}\n.wi-owm-night-761:before {\n  content: \"\\f063\";\n}\n.wi-owm-night-762:before {\n  content: \"\\f063\";\n}\n.wi-owm-night-781:before {\n  content: \"\\f056\";\n}\n.wi-owm-night-800:before {\n  content: \"\\f02e\";\n}\n.wi-owm-night-801:before {\n  content: \"\\f022\";\n}\n.wi-owm-night-802:before {\n  content: \"\\f022\";\n}\n.wi-owm-night-803:before {\n  content: \"\\f022\";\n}\n.wi-owm-night-804:before {\n  content: \"\\f086\";\n}\n.wi-owm-night-900:before {\n  content: \"\\f056\";\n}\n.wi-owm-night-902:before {\n  content: \"\\f073\";\n}\n.wi-owm-night-903:before {\n  content: \"\\f076\";\n}\n.wi-owm-night-904:before {\n  content: \"\\f072\";\n}\n.wi-owm-night-906:before {\n  content: \"\\f024\";\n}\n.wi-owm-night-957:before {\n  content: \"\\f050\";\n}\n.wi-wu-chanceflurries:before {\n  content: \"\\f064\";\n}\n.wi-wu-chancerain:before {\n  content: \"\\f019\";\n}\n.wi-wu-chancesleat:before {\n  content: \"\\f0b5\";\n}\n.wi-wu-chancesnow:before {\n  content: \"\\f01b\";\n}\n.wi-wu-chancetstorms:before {\n  content: \"\\f01e\";\n}\n.wi-wu-clear:before {\n  content: \"\\f00d\";\n}\n.wi-wu-cloudy:before {\n  content: \"\\f002\";\n}\n.wi-wu-flurries:before {\n  content: \"\\f064\";\n}\n.wi-wu-hazy:before {\n  content: \"\\f0b6\";\n}\n.wi-wu-mostlycloudy:before {\n  content: \"\\f002\";\n}\n.wi-wu-mostlysunny:before {\n  content: \"\\f00d\";\n}\n.wi-wu-partlycloudy:before {\n  content: \"\\f002\";\n}\n.wi-wu-partlysunny:before {\n  content: \"\\f00d\";\n}\n.wi-wu-rain:before {\n  content: \"\\f01a\";\n}\n.wi-wu-sleat:before {\n  content: \"\\f0b5\";\n}\n.wi-wu-snow:before {\n  content: \"\\f01b\";\n}\n.wi-wu-sunny:before {\n  content: \"\\f00d\";\n}\n.wi-wu-tstorms:before {\n  content: \"\\f01e\";\n}\n.wi-wu-unknown:before {\n  content: \"\\f00d\";\n}\n"
  },
  {
    "path": "icon-packs/ikonli-websymbols-pack/ikonli-websymbols-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-websymbols-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.websymbols {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.websymbols;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.websymbols.WebsymbolsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.websymbols.WebsymbolsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-websymbols-pack/src/main/java/org/kordamp/ikonli/websymbols/Websymbols.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.websymbols;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Websymbols implements Ikon {\n    ADDUSER(\"ws-adduser\", (char) 171),\n    ALBUM(\"ws-album\", (char) 110),\n    ALERT(\"ws-alert\", (char) 92),\n    ALIGNCENTER(\"ws-aligncenter\", (char) 69),\n    ALIGNLEFT(\"ws-alignleft\", (char) 70),\n    ALIGNRIGHT(\"ws-alignright\", (char) 68),\n    ARCHIVE(\"ws-archive\", (char) 89),\n    ATTACHMENT(\"ws-attachment\", (char) 61),\n    BEHANCE(\"ws-behance\", (char) 79),\n    BLOGGER(\"ws-blogger\", (char) 80),\n    BOTTOM(\"ws-bottom\", (char) 203),\n    BOTTOMFILL(\"ws-bottomfill\", (char) 202),\n    BOTTOMOUTLINE(\"ws-bottomoutline\", (char) 201),\n    BOXED(\"ws-boxed\", (char) 65),\n    BOXEDLIST(\"ws-boxedlist\", (char) 66),\n    BULLETS(\"ws-bullets\", (char) 73),\n    CALENDAR(\"ws-calendar\", (char) 59),\n    CHAT(\"ws-chat\", (char) 75),\n    CHATACTIVE(\"ws-chatactive\", (char) 76),\n    CLOCK(\"ws-clock\", (char) 58),\n    CLOSE(\"ws-close\", (char) 206),\n    CLOSEFILL(\"ws-closefill\", (char) 205),\n    CLOSEMENU(\"ws-closemenu\", (char) 125),\n    CLOSEOUTLINE(\"ws-closeoutline\", (char) 204),\n    CLOUD(\"ws-cloud\", (char) 107),\n    CLOUDUP(\"ws-cloudup\", (char) 108),\n    CODE(\"ws-code\", (char) 95),\n    COMMENT(\"ws-comment\", (char) 115),\n    COMMENTEMPTY(\"ws-commentempty\", (char) 81),\n    DIAGONAL(\"ws-diagonal\", (char) 112),\n    DONE(\"ws-done\", (char) 245),\n    DONEFILL(\"ws-donefill\", (char) 243),\n    DONEOUTLINE(\"ws-doneoutline\", (char) 244),\n    DOWNLOAD(\"ws-download\", (char) 42),\n    DOWNLOADFILL(\"ws-downloadfill\", (char) 38),\n    DOWNLOADOUTLINE(\"ws-downloadoutline\", (char) 40),\n    DRIBBLE(\"ws-dribble\", (char) 164),\n    DROPBOX(\"ws-dropbox\", (char) 168),\n    EDIT(\"ws-edit\", (char) 63),\n    EVERNOTE(\"ws-evernote\", (char) 162),\n    FACEBOOK(\"ws-facebook\", (char) 228),\n    FLICKR(\"ws-flickr\", (char) 78),\n    FOLD(\"ws-fold\", (char) 91),\n    FOLDER(\"ws-folder\", (char) 106),\n    FORWARD(\"ws-forward\", (char) 45),\n    FULLSCREEN(\"ws-fullscreen\", (char) 62),\n    GALLERY(\"ws-gallery\", (char) 100),\n    GITHUB(\"ws-github\", (char) 82),\n    GOOGLE(\"ws-google\", (char) 242),\n    GOOGLEPLUS(\"ws-googleplus\", (char) 232),\n    GROUP(\"ws-group\", (char) 161),\n    HALFLOUD(\"ws-halfloud\", (char) 121),\n    HEART(\"ws-heart\", (char) 83),\n    HEARTEMPTY(\"ws-heartempty\", (char) 84),\n    HORISONTAL(\"ws-horisontal\", (char) 103),\n    INDENT(\"ws-indent\", (char) 71),\n    INSTAGRAM(\"ws-instagram\", (char) 235),\n    KICKSTARTER(\"ws-kickstarter\", (char) 175),\n    LASTFM(\"ws-lastfm\", (char) 166),\n    LEFT(\"ws-left\", (char) 212),\n    LEFTFILL(\"ws-leftfill\", (char) 211),\n    LEFTOUTLINE(\"ws-leftoutline\", (char) 210),\n    LINK(\"ws-link\", (char) 111),\n    LINKEDIN(\"ws-linkedin\", (char) 231),\n    LIST(\"ws-list\", (char) 67),\n    LIVEJOURNAL(\"ws-livejournal\", (char) 236),\n    LOCK(\"ws-lock\", (char) 119),\n    LOGOUT(\"ws-logout\", (char) 96),\n    LOUD(\"ws-loud\", (char) 122),\n    MAIL(\"ws-mail\", (char) 56),\n    MOVIE(\"ws-movie\", (char) 98),\n    MOVIECLIP(\"ws-movieclip\", (char) 99),\n    MUTE(\"ws-mute\", (char) 120),\n    NEXT(\"ws-next\", (char) 251),\n    NEXTFILL(\"ws-nextfill\", (char) 249),\n    NEXTOUTLINE(\"ws-nextoutline\", (char) 250),\n    NORMAL(\"ws-normal\", (char) 109),\n    NORMALSCREEN(\"ws-normalscreen\", (char) 60),\n    ODNOKLASSNIKI(\"ws-odnoklassniki\", (char) 233),\n    OPENMENU(\"ws-openmenu\", (char) 123),\n    ORDERED(\"ws-ordered\", (char) 74),\n    OUTDENT(\"ws-outdent\", (char) 72),\n    PAUSE(\"ws-pause\", (char) 221),\n    PAUSEFILL(\"ws-pausefill\", (char) 220),\n    PAUSEOUTLINE(\"ws-pauseoutline\", (char) 219),\n    PHONE(\"ws-phone\", (char) 124),\n    PICASSA(\"ws-picassa\", (char) 163),\n    PICTURE(\"ws-picture\", (char) 97),\n    PIN(\"ws-pin\", (char) 117),\n    PINTEREST(\"ws-pinterest\", (char) 237),\n    PLAY(\"ws-play\", (char) 218),\n    PLAYFILL(\"ws-playfill\", (char) 217),\n    PLAYOUTLINE(\"ws-playoutline\", (char) 216),\n    PREVIOUS(\"ws-previous\", (char) 248),\n    PREVIOUSFILL(\"ws-previousfill\", (char) 246),\n    PREVIOUSOUTLINE(\"ws-previousoutline\", (char) 247),\n    RATING(\"ws-rating\", (char) 113),\n    REPEAT(\"ws-repeat\", (char) 172),\n    REPLY(\"ws-reply\", (char) 44),\n    REPLYALL(\"ws-replyall\", (char) 43),\n    RESIZE(\"ws-resize\", (char) 209),\n    RESIZEFILL(\"ws-resizefill\", (char) 208),\n    RESIZEOUTLINE(\"ws-resizeoutline\", (char) 207),\n    RETWEET(\"ws-retweet\", (char) 34),\n    REVISION(\"ws-revision\", (char) 174),\n    RIGHT(\"ws-right\", (char) 215),\n    RIGHTFILL(\"ws-rightfill\", (char) 214),\n    RIGHTOUTLINE(\"ws-rightoutline\", (char) 213),\n    ROTATE(\"ws-rotate\", (char) 85),\n    ROTATEFILL(\"ws-rotatefill\", (char) 86),\n    ROTATELEFT(\"ws-rotateleft\", (char) 170),\n    ROTATEOUTLINE(\"ws-rotateoutline\", (char) 87),\n    ROTATERIGHT(\"ws-rotateright\", (char) 169),\n    RSS(\"ws-rss\", (char) 36),\n    RSSBOX(\"ws-rssbox\", (char) 241),\n    SEARCH(\"ws-search\", (char) 35),\n    SETTINGS(\"ws-settings\", (char) 94),\n    SHARE(\"ws-share\", (char) 64),\n    SHUFFLE(\"ws-shuffle\", (char) 126),\n    SKYPE(\"ws-skype\", (char) 239),\n    SLIDESHOW(\"ws-slideshow\", (char) 102),\n    SORT(\"ws-sort\", (char) 227),\n    SORTFILL(\"ws-sortfill\", (char) 226),\n    SORTOUTLINE(\"ws-sortoutline\", (char) 225),\n    SOUNDCLOUD(\"ws-soundcloud\", (char) 167),\n    SPINNER_1(\"ws-spinner-1\", (char) 0),\n    SPINNER_2(\"ws-spinner-2\", (char) 1),\n    SPINNER_3(\"ws-spinner-3\", (char) 2),\n    SPINNER_4(\"ws-spinner-4\", (char) 3),\n    SPINNER_5(\"ws-spinner-5\", (char) 4),\n    SPINNER_6(\"ws-spinner-6\", (char) 5),\n    SPINNER_7(\"ws-spinner-7\", (char) 6),\n    SPINNER_8(\"ws-spinner-8\", (char) 7),\n    STAR(\"ws-star\", (char) 116),\n    STOP(\"ws-stop\", (char) 224),\n    STOPFILL(\"ws-stopfill\", (char) 223),\n    STOPOUTLINE(\"ws-stopoutline\", (char) 222),\n    SYNCHRONISE(\"ws-synchronise\", (char) 33),\n    TABLE(\"ws-table\", (char) 105),\n    TAG(\"ws-tag\", (char) 114),\n    TERMINAL(\"ws-terminal\", (char) 101),\n    TEXT(\"ws-text\", (char) 90),\n    TOP(\"ws-top\", (char) 200),\n    TOPFILL(\"ws-topfill\", (char) 199),\n    TOPOUTLINE(\"ws-topoutline\", (char) 198),\n    TUMBLR(\"ws-tumblr\", (char) 234),\n    TWITTER(\"ws-twitter\", (char) 229),\n    UNFOLD(\"ws-unfold\", (char) 93),\n    UNLOCK(\"ws-unlock\", (char) 118),\n    UPLOAD(\"ws-upload\", (char) 41),\n    UPLOADFILL(\"ws-uploadfill\", (char) 37),\n    UPLOADOUTLINE(\"ws-uploadoutline\", (char) 39),\n    USER(\"ws-user\", (char) 46),\n    VERTICAL(\"ws-vertical\", (char) 104),\n    VIEWS(\"ws-views\", (char) 88),\n    VIMEO(\"ws-vimeo\", (char) 238),\n    VKONTAKTE(\"ws-vkontakte\", (char) 230),\n    WEIBO(\"ws-weibo\", (char) 165),\n    WINDOW(\"ws-window\", (char) 47),\n    YOUTUBE(\"ws-youtube\", (char) 240),\n    ZOOMIN(\"ws-zoomin\", (char) 194),\n    ZOOMINFILL(\"ws-zoominfill\", (char) 193),\n    ZOOMINOUTLINE(\"ws-zoominoutline\", (char) 192),\n    ZOOMOUT(\"ws-zoomout\", (char) 197),\n    ZOOMOUTFILL(\"ws-zoomoutfill\", (char) 196),\n    ZOOMOUTOUTLINE(\"ws-zoomoutoutline\", (char) 195);\n\n    public static Websymbols findByDescription(String description) {\n        for (Websymbols font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Websymbols(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-websymbols-pack/src/main/java/org/kordamp/ikonli/websymbols/WebsymbolsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.websymbols;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class WebsymbolsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/websymbols/0.0/fonts/websymbols.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"ws-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Websymbols.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"WebSymbols\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-websymbols-pack/src/main/java/org/kordamp/ikonli/websymbols/WebsymbolsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.websymbols;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class WebsymbolsIkonProvider implements IkonProvider<Websymbols> {\n    @Override\n    public Class<Websymbols> getIkon() {\n        return Websymbols.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-websymbols-pack/src/main/resources/META-INF/resources/websymbols/0.0/css/websymbols.css",
    "content": "﻿/*!\n *  Websymbols 1.8.0 made by Theodore Vorillas / http://vorillaz.com \n */\n@font-face {\n    font-family: 'WebSymbols';\n    src: url(\"../fonts/websymbols.eot?xqxft6\");\n    src: url(\"../fonts/websymbols.eot?#iefixxqxft6\") format(\"embedded-opentype\"), url(\"../fonts/websymbols.woff?xqxft6\") format(\"woff\"), url(\"../fonts/websymbols.ttf?xqxft6\") format(\"truetype\"), url(\"../fonts/websymbols.svg?xqxft6#websymbols\") format(\"svg\");\n    font-weight: normal;\n    font-style: normal;\n}\n\n.websymbols {\n    font-family: 'WebSymbols';\n    speak: none;\n    font-style: normal;\n    font-weight: normal;\n    font-variant: normal;\n    text-transform: none;\n    line-height: 1;\n    /* Better Font Rendering =========== */\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n}\n\n.websymbols-adduser:before { content: \"«\"; }\n.websymbols-album:before { content: \"n\"; }\n.websymbols-alert:before { content: '\\\\'; }\n.websymbols-aligncenter:before { content: \"E\"; }\n.websymbols-alignleft:before { content: \"F\"; }\n.websymbols-alignright:before { content: \"D\"; }\n.websymbols-archive:before { content: \"Y\"; }\n.websymbols-attachment:before { content: \"=\"; }\n.websymbols-behance:before { content: \"O\"; }\n.websymbols-blogger:before { content: \"P\"; }\n.websymbols-bottom:before { content: \"Ë\"; }\n.websymbols-bottomfill:before { content: \"Ê\"; }\n.websymbols-bottomoutline:before { content: \"É\"; }\n.websymbols-boxed:before { content: \"A\"; }\n.websymbols-boxedlist:before { content: \"B\"; }\n.websymbols-bullets:before { content: \"I\"; }\n.websymbols-calendar:before { content: \";\"; }\n.websymbols-chat:before { content: \"K\"; }\n.websymbols-chatactive:before { content: \"L\"; }\n.websymbols-clock:before { content: \":\"; }\n.websymbols-close:before { content: \"Î\"; }\n.websymbols-closefill:before { content: \"Í\"; }\n.websymbols-closemenu:before { content: \"}\"; }\n.websymbols-closeoutline:before { content: \"Ì\"; }\n.websymbols-cloud:before { content: \"k\"; }\n.websymbols-cloudup:before { content: \"l\"; }\n.websymbols-code:before { content: \"_\"; }\n.websymbols-comment:before { content: \"s\"; }\n.websymbols-commentempty:before { content: \"Q\"; }\n.websymbols-diagonal:before { content: \"p\"; }\n.websymbols-done:before { content: \"õ\"; }\n.websymbols-donefill:before { content: \"ó\"; }\n.websymbols-doneoutline:before { content: \"ô\"; }\n.websymbols-download:before { content: \"*\"; }\n.websymbols-downloadfill:before { content: \"&\"; }\n.websymbols-downloadoutline:before { content: \"(\"; }\n.websymbols-dribble:before { content: \"¤\"; }\n.websymbols-dropbox:before { content: \"¨\"; }\n.websymbols-edit:before { content: \"?\"; }\n.websymbols-evernote:before { content: \"¢\"; }\n.websymbols-facebook:before { content: \"ä\"; }\n.websymbols-flickr:before { content: \"N\"; }\n.websymbols-fold:before { content: \"[\"; }\n.websymbols-folder:before { content: \"j\"; }\n.websymbols-forward:before { content: \"-\"; }\n.websymbols-fullscreen:before { content: \">\"; }\n.websymbols-gallery:before { content: \"d\"; }\n.websymbols-github:before { content: \"R\"; }\n.websymbols-google:before { content: \"ò\"; }\n.websymbols-googleplus:before { content: \"è\"; }\n.websymbols-group:before { content: \"¡\"; }\n.websymbols-halfloud:before { content: \"y\"; }\n.websymbols-heart:before { content: \"S\"; }\n.websymbols-heartempty:before { content: \"T\"; }\n.websymbols-horisontal:before { content: \"g\"; }\n.websymbols-indent:before { content: \"G\"; }\n.websymbols-instagram:before { content: \"ë\"; }\n.websymbols-kickstarter:before { content: \"¯\"; }\n.websymbols-lastfm:before { content: \"¦\"; }\n.websymbols-left:before { content: \"Ô\"; }\n.websymbols-leftfill:before { content: \"Ó\"; }\n.websymbols-leftoutline:before { content: \"Ò\"; }\n.websymbols-link:before { content: \"o\"; }\n.websymbols-linkedin:before { content: \"ç\"; }\n.websymbols-list:before { content: \"C\"; }\n.websymbols-livejournal:before { content: \"ì\"; }\n.websymbols-lock:before { content: \"w\"; }\n.websymbols-logout:before { content: \"`\"; }\n.websymbols-loud:before { content: \"z\"; }\n.websymbols-mail:before { content: \"8\"; }\n.websymbols-movie:before { content: \"b\"; }\n.websymbols-movieclip:before { content: \"c\"; }\n.websymbols-mute:before { content: \"x\"; }\n.websymbols-next:before { content: \"û\"; }\n.websymbols-nextfill:before { content: \"ù\"; }\n.websymbols-nextoutline:before { content: \"ú\"; }\n.websymbols-normal:before { content: \"m\"; }\n.websymbols-normalscreen:before { content: \"<\"; }\n.websymbols-odnoklassniki:before { content: \"é\"; }\n.websymbols-openmenu:before { content: \"{\"; }\n.websymbols-ordered:before { content: \"J\"; }\n.websymbols-outdent:before { content: \"H\"; }\n.websymbols-pause:before { content: \"Ý\"; }\n.websymbols-pausefill:before { content: \"Ü\"; }\n.websymbols-pauseoutline:before { content: \"Û\"; }\n.websymbols-phone:before { content: \"|\"; }\n.websymbols-picassa:before { content: \"£\"; }\n.websymbols-picture:before { content: \"a\"; }\n.websymbols-pin:before { content: \"u\"; }\n.websymbols-pinterest:before { content: \"í\"; }\n.websymbols-play:before { content: \"Ú\"; }\n.websymbols-playfill:before { content: \"Ù\"; }\n.websymbols-playoutline:before { content: \"Ø\"; }\n.websymbols-previous:before { content: \"ø\"; }\n.websymbols-previousfill:before { content: \"ö\"; }\n.websymbols-previousoutline:before { content: \"÷\"; }\n.websymbols-rating:before { content: \"q\"; }\n.websymbols-repeat:before { content: \"¬\"; }\n.websymbols-reply:before { content: \",\"; }\n.websymbols-replyall:before { content: \"+\"; }\n.websymbols-resize:before { content: \"Ñ\"; }\n.websymbols-resizefill:before { content: \"Ð\"; }\n.websymbols-resizeoutline:before { content: \"Ï\"; }\n.websymbols-retweet:before { content: \"\\\"\"; }\n.websymbols-revision:before { content: \"®\"; }\n.websymbols-right:before { content: \"×\"; }\n.websymbols-rightfill:before { content: \"Ö\"; }\n.websymbols-rightoutline:before { content: \"Õ\"; }\n.websymbols-rotate:before { content: \"U\"; }\n.websymbols-rotatefill:before { content: \"V\"; }\n.websymbols-rotateleft:before { content: \"ª\"; }\n.websymbols-rotateoutline:before { content: \"W\"; }\n.websymbols-rotateright:before { content: \"©\"; }\n.websymbols-rss:before { content: \"$\"; }\n.websymbols-rssbox:before { content: \"ñ\"; }\n.websymbols-search:before { content: \"#\"; }\n.websymbols-settings:before { content: \"^\"; }\n.websymbols-share:before { content: \"@\"; }\n.websymbols-shuffle:before { content: \"~\"; }\n.websymbols-skype:before { content: \"ï\"; }\n.websymbols-slideshow:before { content: \"f\"; }\n.websymbols-sort:before { content: \"ã\"; }\n.websymbols-sortfill:before { content: \"â\"; }\n.websymbols-sortoutline:before { content: \"á\"; }\n.websymbols-soundcloud:before { content: \"§\"; }\n.websymbols-spinner-1:before { content: \"0\"; }\n.websymbols-spinner-2:before { content: \"1\"; }\n.websymbols-spinner-3:before { content: \"2\"; }\n.websymbols-spinner-4:before { content: \"3\"; }\n.websymbols-spinner-5:before { content: \"4\"; }\n.websymbols-spinner-6:before { content: \"5\"; }\n.websymbols-spinner-7:before { content: \"6\"; }\n.websymbols-spinner-8:before { content: \"7\"; }\n.websymbols-star:before { content: \"t\"; }\n.websymbols-stop:before { content: \"à\"; }\n.websymbols-stopfill:before { content: \"ß\"; }\n.websymbols-stopoutline:before { content: \"Þ\"; }\n.websymbols-synchronise:before { content: \"!\"; }\n.websymbols-table:before { content: \"i\"; }\n.websymbols-tag:before { content: \"r\"; }\n.websymbols-terminal:before { content: \"e\"; }\n.websymbols-text:before { content: \"Z\"; }\n.websymbols-top:before { content: \"È\"; }\n.websymbols-topfill:before { content: \"Ç\"; }\n.websymbols-topoutline:before { content: \"Æ\"; }\n.websymbols-tumblr:before { content: \"ê\"; }\n.websymbols-twitter:before { content: \"å\"; }\n.websymbols-unfold:before { content: \"]\"; }\n.websymbols-unlock:before { content: \"v\"; }\n.websymbols-upload:before { content: \")\"; }\n.websymbols-uploadfill:before { content: \"%\"; }\n.websymbols-uploadoutline:before { content: \"'\"; }\n.websymbols-user:before { content: \".\"; }\n.websymbols-vertical:before { content: \"h\"; }\n.websymbols-views:before { content: \"X\"; }\n.websymbols-vimeo:before { content: \"î\"; }\n.websymbols-vkontakte:before { content: \"æ\"; }\n.websymbols-weibo:before { content: \"¥\"; }\n.websymbols-window:before { content: \"/\"; }\n.websymbols-youtube:before { content: \"ð\"; }\n.websymbols-zoomin:before { content: \"Â\"; }\n.websymbols-zoominfill:before { content: \"Á\"; }\n.websymbols-zoominoutline:before { content: \"À\"; }\n.websymbols-zoomout:before { content: \"Å\"; }\n.websymbols-zoomoutfill:before { content: \"Ä\"; }\n.websymbols-zoomoutoutline:before { content: \"Ã\"; }"
  },
  {
    "path": "icon-packs/ikonli-websymbols-pack/src/main/resources/META-INF/resources/websymbols/0.0/fonts/foo.html",
    "content": "<!--\n\n    SPDX-License-Identifier: Apache-2.0\n\n    Copyright 2015-2025 Andres Almiray\n\n    Licensed under the Apache License, Version 2.0 (the \"License\");\n    you may not use this file except in compliance with the License.\n    You may obtain a copy of the License at\n\n        http://www.apache.org/licenses/LICENSE-2.0\n\n    Unless required by applicable law or agreed to in writing, software\n    distributed under the License is distributed on an \"AS IS\" BASIS,\n    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n    See the License for the specific language governing permissions and\n    limitations under the License.\n\n-->\n228;facebook\n229;twitter\n230;vkontakte\n231;linkedin\n232;googleplus\n233;odnoklassniki\n234;tumblr\n235;instagram\n236;livejournal\n238;vimeo\n242;google\n78;flickr\n79;behance\n80;blogger\n82;github\n240;youtube\n239;skype\n237;pinterest\n162;evernote\n163;picassa\n164;dribble\n165;weibo\n166;lastfm\n167;soundcloud\n168;dropbox\n174;revision\n175;kickstarter\n241;rssbox\n36;rss\n97;picture\n90;text\n102;slideshow\n100;gallery\n98;movie\n99;movieclip\n105;table\n95;code\n111;link\n101;terminal\n109;normal\n110;album\n70;alignleft\n69;aligncenter\n68;alignright\n72;outdent\n71;indent\n73;bullets\n74;ordered\n89;archive\n106;folder\n169;rotateright\n170;rotateleft\n46;user\n161;group\n171;adduser\n33;synchronise\n65;boxed\n66;boxedlist\n67;list\n96;logout\n92;alert\n63;edit\n104;vertical\n103;horisontal\n112;diagonal\n119;lock\n118;unlock\n61;attachment\n94;settings\n108;cloudup\n107;cloud\n59;calendar\n58;clock\n115;comment\n81;commentempty\n83;heart\n84;heartempty\n88;views\n113;rating\n116;star\n64;share\n75;chat\n76;chatactive\n114;tag\n117;pin\n47;window\n35;search\n126;shuffle\n172;repeat\n34;retweet\n91;fold\n93;unfold\n123;openmenu\n125;closemenu\n120;mute\n121;halfloud\n122;loud\n44;reply\n43;replyall\n45;forward\n62;fullscreen\n60;normalscreen\n124;phone\n56;mail\n194;zoomin\n192;zoominoutline\n193;zoominfill\n197;zoomout\n195;zoomoutoutline\n196;zoomoutfill\n209;resize\n207;resizeoutline\n208;resizefill\n200;top\n198;topoutline\n199;topfill\n203;bottom\n201;bottomoutline\n202;bottomfill\n215;right\n213;rightoutline\n214;rightfill\n212;left\n210;leftoutline\n211;leftfill\n218;play\n216;playoutline\n217;playfill\n221;pause\n219;pauseoutline\n220;pausefill\n224;stop\n222;stopoutline\n223;stopfill\n227;sort\n225;sortoutline\n226;sortfill\n206;close\n204;closeoutline\n205;closefill\n85;rotate\n87;rotateoutline\n86;rotatefill\n42;download\n40;downloadoutline\n38;downloadfill\n41;upload\n39;uploadoutline\n37;uploadfill\n245;done\n244;doneoutline\n243;donefill\n248;previous\n247;previousoutline\n246;previousfill\n251;next\n250;nextoutline\n249;nextfill\n"
  },
  {
    "path": "icon-packs/ikonli-whhg-pack/ikonli-whhg-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-whhg-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.whhg {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.whhg;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.whhg.WhhgALIkonHandler,\n            org.kordamp.ikonli.whhg.WhhgMZIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.whhg.WhhgALIkonProvider,\n            org.kordamp.ikonli.whhg.WhhgMZIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-whhg-pack/src/main/java/org/kordamp/ikonli/whhg/WhhgAL.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.whhg;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum WhhgAL implements Ikon {\n    AAABATTERY(\"whhgal-aaabattery\", '\\uf413'),\n    ABACUS(\"whhgal-abacus\", '\\uf261'),\n    ACCOUNTFILTER(\"whhgal-accountfilter\", '\\uf05e'),\n    ACORN(\"whhgal-acorn\", '\\uf643'),\n    ACSOURCE(\"whhgal-acsource\", '\\uf3ea'),\n    ADDALARM(\"whhgal-addalarm\", '\\uf67b'),\n    ADDCOMMENT(\"whhgal-addcomment\", '\\uf74a'),\n    ADDFOLDERALT(\"whhgal-addfolderalt\", '\\uf73c'),\n    ADDFRIEND(\"whhgal-addfriend\", '\\uf3da'),\n    ADDRESS(\"whhgal-address\", '\\uf08f'),\n    ADDSHAPE(\"whhgal-addshape\", '\\uf1fd'),\n    ADDTAGS(\"whhgal-addtags\", '\\uf551'),\n    ADDTOCART(\"whhgal-addtocart\", '\\uf394'),\n    ADDTOLIST(\"whhgal-addtolist\", '\\uf2ac'),\n    ADDUSERALT(\"whhgal-adduseralt\", '\\uf5cf'),\n    ADJUST(\"whhgal-adjust\", '\\uf484'),\n    ADOBE(\"whhgal-adobe\", '\\uf1c9'),\n    ADS_BILBOARD(\"whhgal-ads-bilboard\", '\\uf082'),\n    AEF(\"whhgal-aef\", '\\uf58b'),\n    AFFILIATE(\"whhgal-affiliate\", '\\uf01e'),\n    AJAX(\"whhgal-ajax\", '\\uf06f'),\n    ALARM(\"whhgal-alarm\", '\\uf233'),\n    ALARMALT(\"whhgal-alarmalt\", '\\uf23d'),\n    ALARMCLOCK(\"whhgal-alarmclock\", '\\uf67a'),\n    ALBUM_COVER(\"whhgal-album-cover\", '\\uf19f'),\n    ALERTALT(\"whhgal-alertalt\", '\\uf2b4'),\n    ALERTPAY(\"whhgal-alertpay\", '\\uf269'),\n    ALGORHYTHM(\"whhgal-algorhythm\", '\\uf0b8'),\n    ALIENSHIP(\"whhgal-alienship\", '\\uf41f'),\n    ALIENWARE(\"whhgal-alienware\", '\\uf3be'),\n    ALIGNBOTTOMEDGE(\"whhgal-alignbottomedge\", '\\uf1d3'),\n    ALIGNHORIZONTALCENTER(\"whhgal-alignhorizontalcenter\", '\\uf1d2'),\n    ALIGNLEFTEDGE(\"whhgal-alignleftedge\", '\\uf1d6'),\n    ALIGNRIGHTEDGE(\"whhgal-alignrightedge\", '\\uf1d5'),\n    ALIGNTOPEDGE(\"whhgal-aligntopedge\", '\\uf1d4'),\n    ALIGNVERTICALCENTER(\"whhgal-alignverticalcenter\", '\\uf1d1'),\n    ALIGN_CENTER(\"whhgal-align-center\", '\\uf1d9'),\n    ALIGN_JUSTIFY(\"whhgal-align-justify\", '\\uf1da'),\n    ALIGN_LEFT(\"whhgal-align-left\", '\\uf1d7'),\n    ALIGN_RIGHT(\"whhgal-align-right\", '\\uf1d8'),\n    AMAZON(\"whhgal-amazon\", '\\uf527'),\n    AMD(\"whhgal-amd\", '\\uf020'),\n    ANALOGDOWN(\"whhgal-analogdown\", '\\uf2cb'),\n    ANALOGLEFT(\"whhgal-analogleft\", '\\uf2c8'),\n    ANALOGRIGHT(\"whhgal-analogright\", '\\uf2c9'),\n    ANALOGUP(\"whhgal-analogup\", '\\uf2ca'),\n    ANALYTICSALT_PIECHARTALT(\"whhgal-analyticsalt-piechartalt\", '\\uf001'),\n    ANALYTICS_PIECHART(\"whhgal-analytics-piechart\", '\\uf000'),\n    ANCHOR_PORT(\"whhgal-anchor-port\", '\\uf21d'),\n    ANDROID(\"whhgal-android\", '\\uf12a'),\n    ANGLE(\"whhgal-angle\", '\\uf641'),\n    ANGRYBIRDS(\"whhgal-angrybirds\", '\\uf3c1'),\n    ANTENNA(\"whhgal-antenna\", '\\uf3ec'),\n    APACHE_FEATHER(\"whhgal-apache-feather\", '\\uf056'),\n    APERTURE(\"whhgal-aperture\", '\\uf356'),\n    APPLE(\"whhgal-apple\", '\\uf5df'),\n    APPOINTMENT_AGENDA(\"whhgal-appointment-agenda\", '\\uf26c'),\n    ARCH(\"whhgal-arch\", '\\uf635'),\n    ARCHIVE(\"whhgal-archive\", '\\uf171'),\n    ARCHLINUX(\"whhgal-archlinux\", '\\uf65d'),\n    ARROW_DOWN(\"whhgal-arrow-down\", '\\uf2fe'),\n    ARROW_LEFT(\"whhgal-arrow-left\", '\\uf305'),\n    ARROW_RIGHT(\"whhgal-arrow-right\", '\\uf304'),\n    ARROW_UP(\"whhgal-arrow-up\", '\\uf301'),\n    ASTERISK(\"whhgal-asterisk\", '\\uf317'),\n    ASTERISKALT(\"whhgal-asteriskalt\", '\\u002a'),\n    ASTEROID(\"whhgal-asteroid\", '\\uf6e4'),\n    ASTRONAUT(\"whhgal-astronaut\", '\\uf6e3'),\n    AT(\"whhgal-at\", '\\u0040'),\n    ATARI(\"whhgal-atari\", '\\uf3b9'),\n    AUTHENTICATION_KEYALT(\"whhgal-authentication-keyalt\", '\\uf051'),\n    AUTOFLASH(\"whhgal-autoflash\", '\\uf61e'),\n    AUTOMOBILE_CAR(\"whhgal-automobile-car\", '\\uf239'),\n    AUTORESPOND(\"whhgal-autorespond\", '\\uf08e'),\n    AVATAR(\"whhgal-avatar\", '\\uf15a'),\n    AVATARALT(\"whhgal-avataralt\", '\\uf161'),\n    AVENGERS(\"whhgal-avengers\", '\\uf342'),\n    AVOCADO(\"whhgal-avocado\", '\\uf633'),\n    AWSTATS(\"whhgal-awstats\", '\\uf04c'),\n    AXE(\"whhgal-axe\", '\\uf2ef'),\n    BABY(\"whhgal-baby\", '\\uf7c9'),\n    BACKUPALT_VAULTALT(\"whhgal-backupalt-vaultalt\", '\\uf005'),\n    BACKUPWIZARD(\"whhgal-backupwizard\", '\\uf05f'),\n    BACKUP_VAULT(\"whhgal-backup-vault\", '\\uf004'),\n    BACKWARD(\"whhgal-backward\", '\\uf183'),\n    BACON(\"whhgal-bacon\", '\\uf53a'),\n    BAG(\"whhgal-bag\", '\\uf234'),\n    BAIT(\"whhgal-bait\", '\\uf56c'),\n    BALOON(\"whhgal-baloon\", '\\uf405'),\n    BAMBOO(\"whhgal-bamboo\", '\\uf64a'),\n    BANANA(\"whhgal-banana\", '\\uf3f4'),\n    BANDWIDTH(\"whhgal-bandwidth\", '\\uf006'),\n    BANK(\"whhgal-bank\", '\\uf262'),\n    BANUSER(\"whhgal-banuser\", '\\uf5d2'),\n    BANUSERALT(\"whhgal-banuseralt\", '\\uf5d1'),\n    BAN_CIRCLE(\"whhgal-ban-circle\", '\\uf313'),\n    BARCHART(\"whhgal-barchart\", '\\uf02f'),\n    BARCHARTALT(\"whhgal-barchartalt\", '\\uf07d'),\n    BARCHARTASC(\"whhgal-barchartasc\", '\\uf5eb'),\n    BARCHARTDESC(\"whhgal-barchartdesc\", '\\uf5ec'),\n    BARCODE(\"whhgal-barcode\", '\\uf276'),\n    BARREL(\"whhgal-barrel\", '\\uf6f7'),\n    BASECAMP(\"whhgal-basecamp\", '\\uf160'),\n    BASKETBALL(\"whhgal-basketball\", '\\uf2e9'),\n    BAT(\"whhgal-bat\", '\\uf3d3'),\n    BATHTUB(\"whhgal-bathtub\", '\\uf49b'),\n    BATMAN(\"whhgal-batman\", '\\uf348'),\n    BATTERYALTCHARGING(\"whhgal-batteryaltcharging\", '\\uf104'),\n    BATTERYALTFULL(\"whhgal-batteryaltfull\", '\\uf101'),\n    BATTERYALTSIXTY(\"whhgal-batteryaltsixty\", '\\uf102'),\n    BATTERYALTTHIRD(\"whhgal-batteryaltthird\", '\\uf103'),\n    BATTERYCHARGED(\"whhgal-batterycharged\", '\\uf0f4'),\n    BATTERYCHARGING(\"whhgal-batterycharging\", '\\uf0f3'),\n    BATTERYEIGHTY(\"whhgal-batteryeighty\", '\\uf0f9'),\n    BATTERYEMPTY(\"whhgal-batteryempty\", '\\uf0f5'),\n    BATTERYFORTY(\"whhgal-batteryforty\", '\\uf0f7'),\n    BATTERYFULL(\"whhgal-batteryfull\", '\\uf0fa'),\n    BATTERYSIXTY(\"whhgal-batterysixty\", '\\uf0f8'),\n    BATTERYTWENTY(\"whhgal-batterytwenty\", '\\uf0f6'),\n    BBPRESS(\"whhgal-bbpress\", '\\uf4b7'),\n    BEAKER(\"whhgal-beaker\", '\\uf672'),\n    BEAKERALT(\"whhgal-beakeralt\", '\\uf673'),\n    BED(\"whhgal-bed\", '\\uf2b9'),\n    BEER(\"whhgal-beer\", '\\uf244'),\n    BEERALT(\"whhgal-beeralt\", '\\uf5f3'),\n    BEHANCE(\"whhgal-behance\", '\\uf523'),\n    BELL(\"whhgal-bell\", '\\u2407'),\n    BELLALT(\"whhgal-bellalt\", '\\uf76c'),\n    BELT(\"whhgal-belt\", '\\uf56b'),\n    BIGACE(\"whhgal-bigace\", '\\uf58a'),\n    BIGGER(\"whhgal-bigger\", '\\uf30a'),\n    BILL(\"whhgal-bill\", '\\uf278'),\n    BINARY(\"whhgal-binary\", '\\uf087'),\n    BING(\"whhgal-bing\", '\\uf546'),\n    BINOCULARS_SEARCHALT(\"whhgal-binoculars-searchalt\", '\\uf2a0'),\n    BIOHAZARD(\"whhgal-biohazard\", '\\uf542'),\n    BIRDHOUSE(\"whhgal-birdhouse\", '\\uf390'),\n    BIRTHDAY(\"whhgal-birthday\", '\\uf36b'),\n    BISHOP(\"whhgal-bishop\", '\\uf2f9'),\n    BITCOIN(\"whhgal-bitcoin\", '\\uf584'),\n    BITCOINALT(\"whhgal-bitcoinalt\", '\\uf5e9'),\n    BITCOINSQUARE(\"whhgal-bitcoinsquare\", '\\uf5e6'),\n    BLACKBERRY(\"whhgal-blackberry\", '\\uf421'),\n    BLANKSTARE(\"whhgal-blankstare\", '\\uf13e'),\n    BLOGGER_BLOG(\"whhgal-blogger-blog\", '\\uf167'),\n    BLUETOOTH(\"whhgal-bluetooth\", '\\uf12b'),\n    BLUETOOTHCONNECTED(\"whhgal-bluetoothconnected\", '\\uf386'),\n    BOARDGAME(\"whhgal-boardgame\", '\\uf2d9'),\n    BOAT(\"whhgal-boat\", '\\uf21a'),\n    BOLD(\"whhgal-bold\", '\\uf1f4'),\n    BOMB(\"whhgal-bomb\", '\\uf2dc'),\n    BONE(\"whhgal-bone\", '\\uf35f'),\n    BOOK(\"whhgal-book\", '\\uf1ba'),\n    BOOKALT(\"whhgal-bookalt\", '\\uf4a1'),\n    BOOKMARK(\"whhgal-bookmark\", '\\uf143'),\n    BOOKMARKALT(\"whhgal-bookmarkalt\", '\\uf4cf'),\n    BOOKMARKFOUR(\"whhgal-bookmarkfour\", '\\uf5d9'),\n    BOOKMARKTHREE(\"whhgal-bookmarkthree\", '\\uf5d8'),\n    BOOKTHREE(\"whhgal-bookthree\", '\\uf64f'),\n    BOOMBOX(\"whhgal-boombox\", '\\uf195'),\n    BOTTLE(\"whhgal-bottle\", '\\uf361'),\n    BOTTOMBORDER(\"whhgal-bottomborder\", '\\uf4db'),\n    BOW(\"whhgal-bow\", '\\uf2ee'),\n    BOWL(\"whhgal-bowl\", '\\uf7a8'),\n    BOWLING(\"whhgal-bowling\", '\\uf2f3'),\n    BOWLINGPINS(\"whhgal-bowlingpins\", '\\uf3d2'),\n    BOWTIE(\"whhgal-bowtie\", '\\uf37f'),\n    BOXBILLING(\"whhgal-boxbilling\", '\\uf5aa'),\n    BOXING(\"whhgal-boxing\", '\\uf783'),\n    BOXTRAPPER_MOUSETRAP(\"whhgal-boxtrapper-mousetrap\", '\\uf046'),\n    BRACES(\"whhgal-braces\", '\\uf0b4'),\n    BRAILLE0(\"whhgal-braille0\", '\\uf44b'),\n    BRAILLE1(\"whhgal-braille1\", '\\uf44c'),\n    BRAILLE2(\"whhgal-braille2\", '\\uf44d'),\n    BRAILLE3(\"whhgal-braille3\", '\\uf44e'),\n    BRAILLE4(\"whhgal-braille4\", '\\uf44f'),\n    BRAILLE5(\"whhgal-braille5\", '\\uf450'),\n    BRAILLE6(\"whhgal-braille6\", '\\uf451'),\n    BRAILLE7(\"whhgal-braille7\", '\\uf452'),\n    BRAILLE8(\"whhgal-braille8\", '\\uf453'),\n    BRAILLE9(\"whhgal-braille9\", '\\uf454'),\n    BRAILLEA(\"whhgal-braillea\", '\\uf431'),\n    BRAILLEB(\"whhgal-brailleb\", '\\uf432'),\n    BRAILLEC(\"whhgal-braillec\", '\\uf433'),\n    BRAILLED(\"whhgal-brailled\", '\\uf434'),\n    BRAILLEE(\"whhgal-braillee\", '\\uf435'),\n    BRAILLEF(\"whhgal-braillef\", '\\uf436'),\n    BRAILLEG(\"whhgal-brailleg\", '\\uf437'),\n    BRAILLEH(\"whhgal-brailleh\", '\\uf438'),\n    BRAILLEI(\"whhgal-braillei\", '\\uf439'),\n    BRAILLEJ(\"whhgal-braillej\", '\\uf43a'),\n    BRAILLEK(\"whhgal-braillek\", '\\uf43b'),\n    BRAILLEL(\"whhgal-braillel\", '\\uf43c'),\n    BRAILLEM(\"whhgal-braillem\", '\\uf43d'),\n    BRAILLEN(\"whhgal-braillen\", '\\uf43e'),\n    BRAILLEO(\"whhgal-brailleo\", '\\uf43f'),\n    BRAILLEP(\"whhgal-braillep\", '\\uf440'),\n    BRAILLEQ(\"whhgal-brailleq\", '\\uf441'),\n    BRAILLER(\"whhgal-brailler\", '\\uf442'),\n    BRAILLES(\"whhgal-brailles\", '\\uf443'),\n    BRAILLESPACE(\"whhgal-braillespace\", '\\uf455'),\n    BRAILLET(\"whhgal-braillet\", '\\uf444'),\n    BRAILLEU(\"whhgal-brailleu\", '\\uf445'),\n    BRAILLEV(\"whhgal-braillev\", '\\uf446'),\n    BRAILLEW(\"whhgal-braillew\", '\\uf447'),\n    BRAILLEX(\"whhgal-braillex\", '\\uf448'),\n    BRAILLEY(\"whhgal-brailley\", '\\uf449'),\n    BRAILLEZ(\"whhgal-braillez\", '\\uf44a'),\n    BRAIN(\"whhgal-brain\", '\\uf3e3'),\n    BRANCH(\"whhgal-branch\", '\\uf79b'),\n    BREAD(\"whhgal-bread\", '\\uf42f'),\n    BREAKABLE(\"whhgal-breakable\", '\\uf41c'),\n    BRIEFCASE(\"whhgal-briefcase\", '\\uf25e'),\n    BRIEFCASETHREE(\"whhgal-briefcasethree\", '\\uf25f'),\n    BRIEFCASETWO(\"whhgal-briefcasetwo\", '\\uf0a2'),\n    BRIGHTNESS(\"whhgal-brightness\", '\\uf10a'),\n    BRIGHTNESSALT(\"whhgal-brightnessalt\", '\\uf7a1'),\n    BRIGHTNESSALTAUTO(\"whhgal-brightnessaltauto\", '\\uf7a4'),\n    BRIGHTNESSALTFULL(\"whhgal-brightnessaltfull\", '\\uf7a3'),\n    BRIGHTNESSALTHALF(\"whhgal-brightnessalthalf\", '\\uf7a2'),\n    BRIGHTNESSFULL(\"whhgal-brightnessfull\", '\\uf10b'),\n    BRIGHTNESSHALF(\"whhgal-brightnesshalf\", '\\uf10c'),\n    BRINGFORWARD(\"whhgal-bringforward\", '\\uf67f'),\n    BRINGTOFRONT(\"whhgal-bringtofront\", '\\uf681'),\n    BROKENHEART(\"whhgal-brokenheart\", '\\uf667'),\n    BROKENLINK(\"whhgal-brokenlink\", '\\uf5d7'),\n    BROOM(\"whhgal-broom\", '\\uf40a'),\n    BROWSER(\"whhgal-browser\", '\\uf159'),\n    BRUSH(\"whhgal-brush\", '\\uf1b8'),\n    BTWOEVOLUTION(\"whhgal-btwoevolution\", '\\uf4b2'),\n    BUCKET(\"whhgal-bucket\", '\\uf1b5'),\n    BUG(\"whhgal-bug\", '\\uf0a7'),\n    BULLET(\"whhgal-bullet\", '\\uf4f0'),\n    BULLHORN(\"whhgal-bullhorn\", '\\uf287'),\n    BURSTMODE(\"whhgal-burstmode\", '\\uf61c'),\n    BUS(\"whhgal-bus\", '\\uf241'),\n    BUSALT(\"whhgal-busalt\", '\\uf50e'),\n    BUSINESSCARDALT(\"whhgal-businesscardalt\", '\\uf137'),\n    BUTTERFLY(\"whhgal-butterfly\", '\\uf627'),\n    BUTTERFLYALT(\"whhgal-butterflyalt\", '\\uf626'),\n    BUTTONA(\"whhgal-buttona\", '\\uf2bf'),\n    BUTTONB(\"whhgal-buttonb\", '\\uf2c0'),\n    BUTTONX(\"whhgal-buttonx\", '\\uf2c1'),\n    BUTTONY(\"whhgal-buttony\", '\\uf2c2'),\n    CACTUS_DESERT(\"whhgal-cactus-desert\", '\\uf22c'),\n    CALCDIVIDE(\"whhgal-calcdivide\", '\\uf574'),\n    CALCEQUALS(\"whhgal-calcequals\", '\\uf575'),\n    CALCMINUS(\"whhgal-calcminus\", '\\uf572'),\n    CALCMULTIPLY(\"whhgal-calcmultiply\", '\\uf573'),\n    CALCPLUS(\"whhgal-calcplus\", '\\uf571'),\n    CALCULATOR(\"whhgal-calculator\", '\\uf258'),\n    CALCULATORALT(\"whhgal-calculatoralt\", '\\uf265'),\n    CALENDAR(\"whhgal-calendar\", '\\uf20f'),\n    CALENDARALT_CRONJOBS(\"whhgal-calendaralt-cronjobs\", '\\uf0a1'),\n    CALENDARTHREE(\"whhgal-calendarthree\", '\\uf4d0'),\n    CALIGRAPHY(\"whhgal-caligraphy\", '\\uf65a'),\n    CALLALT(\"whhgal-callalt\", '\\uf74d'),\n    CAMCORDER(\"whhgal-camcorder\", '\\uf604'),\n    CAMERA(\"whhgal-camera\", '\\uf19b'),\n    CAMERAFLASH(\"whhgal-cameraflash\", '\\uf61d'),\n    CAMPFIRE(\"whhgal-campfire\", '\\uf611'),\n    CANDLE(\"whhgal-candle\", '\\uf29a'),\n    CANDY(\"whhgal-candy\", '\\uf42d'),\n    CANDYCANE(\"whhgal-candycane\", '\\uf37d'),\n    CANISTER(\"whhgal-canister\", '\\uf6f8'),\n    CANNON(\"whhgal-cannon\", '\\uf401'),\n    CANVAS(\"whhgal-canvas\", '\\uf1c8'),\n    CANVASRULERS(\"whhgal-canvasrulers\", '\\uf205'),\n    CAPACITATOR(\"whhgal-capacitator\", '\\uf3e8'),\n    CAPSLOCK(\"whhgal-capslock\", '\\u21ea'),\n    CAPTAINAMERICA(\"whhgal-captainamerica\", '\\uf341'),\n    CARBATTERY(\"whhgal-carbattery\", '\\uf553'),\n    CARROT(\"whhgal-carrot\", '\\uf3f2'),\n    CARTALT(\"whhgal-cartalt\", '\\uf68f'),\n    CASHREGISTER(\"whhgal-cashregister\", '\\uf26e'),\n    CASSETTE(\"whhgal-cassette\", '\\uf377'),\n    CASSETTEALT(\"whhgal-cassettealt\", '\\uf4bd'),\n    CAT(\"whhgal-cat\", '\\uf622'),\n    CATFACE(\"whhgal-catface\", '\\uf601'),\n    CCTV(\"whhgal-cctv\", '\\uf612'),\n    CD_DVD(\"whhgal-cd-dvd\", '\\uf0cd'),\n    CEILINGLIGHT(\"whhgal-ceilinglight\", '\\uf4ec'),\n    CELL(\"whhgal-cell\", '\\uf66a'),\n    CERTIFICATE(\"whhgal-certificate\", '\\uf277'),\n    CERTIFICATEALT(\"whhgal-certificatealt\", '\\uf058'),\n    CERTIFICATETHREE(\"whhgal-certificatethree\", '\\uf059'),\n    CGI(\"whhgal-cgi\", '\\uf086'),\n    CGICENTER(\"whhgal-cgicenter\", '\\uf079'),\n    CHAIR(\"whhgal-chair\", '\\u2441'),\n    CHANDELIER(\"whhgal-chandelier\", '\\uf4ed'),\n    CHARLIECHAPLIN(\"whhgal-charliechaplin\", '\\uf502'),\n    CHAT(\"whhgal-chat\", '\\uf162'),\n    CHECK(\"whhgal-check\", '\\uf310'),\n    CHECKBOXALT(\"whhgal-checkboxalt\", '\\uf311'),\n    CHECKIN(\"whhgal-checkin\", '\\uf223'),\n    CHECKINALT(\"whhgal-checkinalt\", '\\uf227'),\n    CHEF(\"whhgal-chef\", '\\uf3ce'),\n    CHERRY(\"whhgal-cherry\", '\\uf35d'),\n    CHERRYALT(\"whhgal-cherryalt\", '\\uf753'),\n    CHEVRONS(\"whhgal-chevrons\", '\\uf0b5'),\n    CHEVRON_DOWN(\"whhgal-chevron-down\", '\\uf48b'),\n    CHEVRON_LEFT(\"whhgal-chevron-left\", '\\uf489'),\n    CHEVRON_RIGHT(\"whhgal-chevron-right\", '\\uf488'),\n    CHEVRON_UP(\"whhgal-chevron-up\", '\\uf48a'),\n    CHICKEN(\"whhgal-chicken\", '\\uf359'),\n    CHICKENALT(\"whhgal-chickenalt\", '\\uf54b'),\n    CHOCOLATE(\"whhgal-chocolate\", '\\uf367'),\n    CHRISTIANCROSS(\"whhgal-christiancross\", '\\uf40f'),\n    CHRISTMASTREE(\"whhgal-christmastree\", '\\uf37b'),\n    CHROME(\"whhgal-chrome\", '\\uf14e'),\n    CHURCH(\"whhgal-church\", '\\uf536'),\n    CHYRP(\"whhgal-chyrp\", '\\uf4b9'),\n    CIGAR(\"whhgal-cigar\", '\\uf581'),\n    CIGARETTE(\"whhgal-cigarette\", '\\uf229'),\n    CIRCLEA(\"whhgal-circlea\", '\\uf709'),\n    CIRCLEADD(\"whhgal-circleadd\", '\\uf0d1'),\n    CIRCLEB(\"whhgal-circleb\", '\\uf70a'),\n    CIRCLEBACKWARD(\"whhgal-circlebackward\", '\\uf560'),\n    CIRCLEBACKWARDEMPTY(\"whhgal-circlebackwardempty\", '\\uf568'),\n    CIRCLEC(\"whhgal-circlec\", '\\uf70b'),\n    CIRCLECALLINCOMING(\"whhgal-circlecallincoming\", '\\uf7d3'),\n    CIRCLECALLMISSED(\"whhgal-circlecallmissed\", '\\uf7d2'),\n    CIRCLECALLOUTGOING(\"whhgal-circlecalloutgoing\", '\\uf7d4'),\n    CIRCLED(\"whhgal-circled\", '\\uf70c'),\n    CIRCLEDELETE(\"whhgal-circledelete\", '\\uf0d2'),\n    CIRCLEDOWN(\"whhgal-circledown\", '\\uf3c7'),\n    CIRCLEDOWNLOAD(\"whhgal-circledownload\", '\\uf7d5'),\n    CIRCLEDRIBBBLE(\"whhgal-circledribbble\", '\\uf7e7'),\n    CIRCLEE(\"whhgal-circlee\", '\\uf70d'),\n    CIRCLEEIGHT(\"whhgal-circleeight\", '\\uf707'),\n    CIRCLEF(\"whhgal-circlef\", '\\uf70e'),\n    CIRCLEFACEBOOK(\"whhgal-circlefacebook\", '\\uf78d'),\n    CIRCLEFIVE(\"whhgal-circlefive\", '\\uf704'),\n    CIRCLEFORK(\"whhgal-circlefork\", '\\uf6ac'),\n    CIRCLEFORWARD(\"whhgal-circleforward\", '\\uf55f'),\n    CIRCLEFORWARDEMPTY(\"whhgal-circleforwardempty\", '\\uf567'),\n    CIRCLEFOUR(\"whhgal-circlefour\", '\\uf703'),\n    CIRCLEG(\"whhgal-circleg\", '\\uf70f'),\n    CIRCLEGITHUB(\"whhgal-circlegithub\", '\\uf78f'),\n    CIRCLEGOOGLEPLUS(\"whhgal-circlegoogleplus\", '\\uf78b'),\n    CIRCLEH(\"whhgal-circleh\", '\\uf710'),\n    CIRCLEHAMMER(\"whhgal-circlehammer\", '\\uf6b0'),\n    CIRCLEI(\"whhgal-circlei\", '\\uf711'),\n    CIRCLEINSTAGRAM(\"whhgal-circleinstagram\", '\\uf7c4'),\n    CIRCLEJ(\"whhgal-circlej\", '\\uf712'),\n    CIRCLEK(\"whhgal-circlek\", '\\uf713'),\n    CIRCLEKNIFE(\"whhgal-circleknife\", '\\uf6ae'),\n    CIRCLEL(\"whhgal-circlel\", '\\uf714'),\n    CIRCLELEFT(\"whhgal-circleleft\", '\\uf3c6'),\n    CIRCLELOADEREMPTY(\"whhgal-circleloaderempty\", '\\uf77a'),\n    CIRCLELOADERFIVE(\"whhgal-circleloaderfive\", '\\uf775'),\n    CIRCLELOADERFOUR(\"whhgal-circleloaderfour\", '\\uf776'),\n    CIRCLELOADERFULL(\"whhgal-circleloaderfull\", '\\uf772'),\n    CIRCLELOADERONE(\"whhgal-circleloaderone\", '\\uf779'),\n    CIRCLELOADERSEVEN(\"whhgal-circleloaderseven\", '\\uf773'),\n    CIRCLELOADERSIX(\"whhgal-circleloadersix\", '\\uf774'),\n    CIRCLELOADERTHREE(\"whhgal-circleloaderthree\", '\\uf777'),\n    CIRCLELOADERTWO(\"whhgal-circleloadertwo\", '\\uf778'),\n    CIRCLEM(\"whhgal-circlem\", '\\uf715'),\n    CIRCLEN(\"whhgal-circlen\", '\\uf716'),\n    CIRCLENEXT(\"whhgal-circlenext\", '\\uf561'),\n    CIRCLENEXTEMPTY(\"whhgal-circlenextempty\", '\\uf569'),\n    CIRCLENINE(\"whhgal-circlenine\", '\\uf708'),\n    CIRCLEO(\"whhgal-circleo\", '\\uf717'),\n    CIRCLEONE(\"whhgal-circleone\", '\\uf700'),\n    CIRCLEP(\"whhgal-circlep\", '\\uf718'),\n    CIRCLEPATH(\"whhgal-circlepath\", '\\uf791'),\n    CIRCLEPAUSE(\"whhgal-circlepause\", '\\uf55d'),\n    CIRCLEPAUSEEMPTY(\"whhgal-circlepauseempty\", '\\uf565'),\n    CIRCLEPENCIL(\"whhgal-circlepencil\", '\\uf6af'),\n    CIRCLEPLAY(\"whhgal-circleplay\", '\\uf55b'),\n    CIRCLEPLAYEMPTY(\"whhgal-circleplayempty\", '\\uf563'),\n    CIRCLEPREVIOUS(\"whhgal-circleprevious\", '\\uf562'),\n    CIRCLEPREVIOUSEMPTY(\"whhgal-circlepreviousempty\", '\\uf56a'),\n    CIRCLEQ(\"whhgal-circleq\", '\\uf719'),\n    CIRCLEQUORA(\"whhgal-circlequora\", '\\uf799'),\n    CIRCLER(\"whhgal-circler\", '\\uf71a'),\n    CIRCLERECORD(\"whhgal-circlerecord\", '\\uf55e'),\n    CIRCLERECORDEMPTY(\"whhgal-circlerecordempty\", '\\uf566'),\n    CIRCLERIGHT(\"whhgal-circleright\", '\\uf3c9'),\n    CIRCLES(\"whhgal-circles\", '\\uf71b'),\n    CIRCLESCREWDRIVER(\"whhgal-circlescrewdriver\", '\\uf6b1'),\n    CIRCLESELECT(\"whhgal-circleselect\", '\\uf0d3'),\n    CIRCLESELECTION(\"whhgal-circleselection\", '\\uf1b1'),\n    CIRCLESEVEN(\"whhgal-circleseven\", '\\uf706'),\n    CIRCLESIX(\"whhgal-circlesix\", '\\uf705'),\n    CIRCLESPOON(\"whhgal-circlespoon\", '\\uf6ad'),\n    CIRCLESTOP(\"whhgal-circlestop\", '\\uf55c'),\n    CIRCLESTOPEMPTY(\"whhgal-circlestopempty\", '\\uf564'),\n    CIRCLET(\"whhgal-circlet\", '\\uf71c'),\n    CIRCLETHREE(\"whhgal-circlethree\", '\\uf702'),\n    CIRCLETWITTER(\"whhgal-circletwitter\", '\\uf78c'),\n    CIRCLETWO(\"whhgal-circletwo\", '\\uf701'),\n    CIRCLEU(\"whhgal-circleu\", '\\uf71d'),\n    CIRCLEUP(\"whhgal-circleup\", '\\uf3c8'),\n    CIRCLEUPLOAD(\"whhgal-circleupload\", '\\uf7d6'),\n    CIRCLEV(\"whhgal-circlev\", '\\uf71e'),\n    CIRCLEVIMEO(\"whhgal-circlevimeo\", '\\uf792'),\n    CIRCLEVINE(\"whhgal-circlevine\", '\\uf793'),\n    CIRCLEW(\"whhgal-circlew\", '\\uf71f'),\n    CIRCLEX(\"whhgal-circlex\", '\\uf720'),\n    CIRCLEY(\"whhgal-circley\", '\\uf721'),\n    CIRCLEYAHOO(\"whhgal-circleyahoo\", '\\uf78e'),\n    CIRCLEZ(\"whhgal-circlez\", '\\uf722'),\n    CIRCLEZERO(\"whhgal-circlezero\", '\\uf6ff'),\n    CIRCLEZERPLY(\"whhgal-circlezerply\", '\\uf79e'),\n    CIRCLE_ARROW_DOWN(\"whhgal-circle-arrow-down\", '\\uf475'),\n    CIRCLE_ARROW_LEFT(\"whhgal-circle-arrow-left\", '\\uf472'),\n    CIRCLE_ARROW_RIGHT(\"whhgal-circle-arrow-right\", '\\uf473'),\n    CIRCLE_ARROW_UP(\"whhgal-circle-arrow-up\", '\\uf474'),\n    CITY(\"whhgal-city\", '\\uf576'),\n    CLEARFORMATTING(\"whhgal-clearformatting\", '\\uf1e7'),\n    CLIPBOARDALT(\"whhgal-clipboardalt\", '\\uf73f'),\n    CLIPBOARD_PASTE(\"whhgal-clipboard-paste\", '\\uf0cb'),\n    CLOCKALT_TIMEALT(\"whhgal-clockalt-timealt\", '\\uf22b'),\n    CLOSETAB(\"whhgal-closetab\", '\\uf170'),\n    CLOSEWINDOW(\"whhgal-closewindow\", '\\uf16e'),\n    CLOUD(\"whhgal-cloud\", '\\uf0b9'),\n    CLOUDALT(\"whhgal-cloudalt\", '\\uf7a9'),\n    CLOUDALTDOWNLOAD(\"whhgal-cloudaltdownload\", '\\uf7aa'),\n    CLOUDALTPRIVATE(\"whhgal-cloudaltprivate\", '\\uf7ad'),\n    CLOUDALTSYNC(\"whhgal-cloudaltsync\", '\\uf7ac'),\n    CLOUDALTUPLOAD(\"whhgal-cloudaltupload\", '\\uf7ab'),\n    CLOUDDOWNLOAD(\"whhgal-clouddownload\", '\\uf0bb'),\n    CLOUDERROR(\"whhgal-clouderror\", '\\uf603'),\n    CLOUDHOSTING(\"whhgal-cloudhosting\", '\\uf007'),\n    CLOUDSYNC(\"whhgal-cloudsync\", '\\uf0bc'),\n    CLOUDUPLOAD(\"whhgal-cloudupload\", '\\uf0ba'),\n    CLOVER(\"whhgal-clover\", '\\uf56f'),\n    CLOVERALT(\"whhgal-cloveralt\", '\\uf744'),\n    CLUBS(\"whhgal-clubs\", '\\uf2f6'),\n    CMD(\"whhgal-cmd\", '\\uf33a'),\n    CMS(\"whhgal-cms\", '\\uf036'),\n    CMSMADESIMPLE(\"whhgal-cmsmadesimple\", '\\uf0b0'),\n    COCKTAIL(\"whhgal-cocktail\", '\\uf535'),\n    CODE(\"whhgal-code\", '\\uf743'),\n    CODEIGNITER(\"whhgal-codeigniter\", '\\uf077'),\n    COFFEE(\"whhgal-coffee\", '\\uf235'),\n    COFFEEBEAN(\"whhgal-coffeebean\", '\\uf366'),\n    COFFEECUPALT(\"whhgal-coffeecupalt\", '\\uf497'),\n    COG(\"whhgal-cog\", '\\uf00f'),\n    COINSALT(\"whhgal-coinsalt\", '\\uf5be'),\n    COLLABTIVE(\"whhgal-collabtive\", '\\uf5a1'),\n    COLOCATION(\"whhgal-colocation\", '\\uf024'),\n    COLOCATIONALT(\"whhgal-colocationalt\", '\\uf023'),\n    COLORS(\"whhgal-colors\", '\\uf1e6'),\n    COMEDY(\"whhgal-comedy\", '\\uf538'),\n    COMMENT(\"whhgal-comment\", '\\uf12c'),\n    COMMENTLOVE(\"whhgal-commentlove\", '\\uf5dc'),\n    COMMENTOUT(\"whhgal-commentout\", '\\uf080'),\n    COMMENTROUND(\"whhgal-commentround\", '\\uf155'),\n    COMMENTROUNDEMPTY(\"whhgal-commentroundempty\", '\\uf156'),\n    COMMENTROUNDTYPING(\"whhgal-commentroundtyping\", '\\uf157'),\n    COMMENTROUNDTYPINGEMPTY(\"whhgal-commentroundtypingempty\", '\\uf158'),\n    COMMENTSMILEY(\"whhgal-commentsmiley\", '\\uf5dd'),\n    COMMENTTYPING(\"whhgal-commenttyping\", '\\uf12d'),\n    COMMIT(\"whhgal-commit\", '\\uf7bd'),\n    COMMUNITY(\"whhgal-community\", '\\uf637'),\n    COMMUNITYSMALL(\"whhgal-communitysmall\", '\\uf75f'),\n    COMPASS(\"whhgal-compass\", '\\u263c'),\n    COMPILE(\"whhgal-compile\", '\\uf650'),\n    COMPRESS(\"whhgal-compress\", '\\uf7c8'),\n    CONCRETEFIVE(\"whhgal-concretefive\", '\\uf0af'),\n    CONNECTED(\"whhgal-connected\", '\\uf51c'),\n    CONNECTEDPC(\"whhgal-connectedpc\", '\\uf51d'),\n    CONSTELLATION(\"whhgal-constellation\", '\\uf6a0'),\n    CONSTRUCTION(\"whhgal-construction\", '\\uf654'),\n    CONTACT_BUSINESSCARD(\"whhgal-contact-businesscard\", '\\uf040'),\n    CONTAO(\"whhgal-contao\", '\\uf495'),\n    CONTROLLERNES(\"whhgal-controllernes\", '\\uf2d2'),\n    CONTROLLERPS(\"whhgal-controllerps\", '\\uf2d1'),\n    CONTROLLERSNES(\"whhgal-controllersnes\", '\\uf2d3'),\n    CONTROLPANEL(\"whhgal-controlpanel\", '\\uf008'),\n    CONTROLPANELALT(\"whhgal-controlpanelalt\", '\\uf009'),\n    COOLING(\"whhgal-cooling\", '\\uf00a'),\n    COPPERMINE(\"whhgal-coppermine\", '\\uf0a4'),\n    COPY(\"whhgal-copy\", '\\uf0c9'),\n    COPYAPP(\"whhgal-copyapp\", '\\uf7a7'),\n    COPYRIGHT(\"whhgal-copyright\", '\\u00a9'),\n    COUNTER(\"whhgal-counter\", '\\uf656'),\n    COUNTERALT(\"whhgal-counteralt\", '\\uf655'),\n    COUPON(\"whhgal-coupon\", '\\uf254'),\n    COW(\"whhgal-cow\", '\\uf6fc'),\n    CPANEL(\"whhgal-cpanel\", '\\uf072'),\n    CPLUSPLUS(\"whhgal-cplusplus\", '\\uf0b1'),\n    CPUALT_PROCESSORALT(\"whhgal-cpualt-processoralt\", '\\uf003'),\n    CPU_PROCESSOR(\"whhgal-cpu-processor\", '\\uf002'),\n    CRACKEDEGG(\"whhgal-crackedegg\", '\\uf496'),\n    CRAYON(\"whhgal-crayon\", '\\uf383'),\n    CREATEFILE(\"whhgal-createfile\", '\\uf0c6'),\n    CREATEFOLDER(\"whhgal-createfolder\", '\\uf0da'),\n    CREATIVECOMMONS(\"whhgal-creativecommons\", '\\uf1fc'),\n    CREDITCARD(\"whhgal-creditcard\", '\\uf279'),\n    CREEPER(\"whhgal-creeper\", '\\uf723'),\n    CRICKET(\"whhgal-cricket\", '\\uf418'),\n    CROISANT(\"whhgal-croisant\", '\\uf29f'),\n    CROP(\"whhgal-crop\", '\\uf1af'),\n    CROWN(\"whhgal-crown\", '\\uf28f'),\n    CSHARP(\"whhgal-csharp\", '\\uf0b2'),\n    CSSTHREE(\"whhgal-cssthree\", '\\uf06a'),\n    CUBE(\"whhgal-cube\", '\\uf4ea'),\n    CUCKOOCLOCK(\"whhgal-cuckooclock\", '\\uf50a'),\n    CUPCAKE(\"whhgal-cupcake\", '\\uf35b'),\n    CUP_COFFEEALT(\"whhgal-cup-coffeealt\", '\\uf24b'),\n    CURLING(\"whhgal-curling\", '\\uf3d7'),\n    CURRENTS(\"whhgal-currents\", '\\uf75e'),\n    CURSOR(\"whhgal-cursor\", '\\uf0dc'),\n    CUTHERE(\"whhgal-cuthere\", '\\uf5bd'),\n    CUT_SCISSORS(\"whhgal-cut-scissors\", '\\uf0ca'),\n    DAGGER(\"whhgal-dagger\", '\\u2020'),\n    DANGER(\"whhgal-danger\", '\\uf415'),\n    DART(\"whhgal-dart\", '\\uf3d4'),\n    DARTHVADER(\"whhgal-darthvader\", '\\uf34a'),\n    DATABASE(\"whhgal-database\", '\\uf00b'),\n    DATABASEADD(\"whhgal-databaseadd\", '\\uf00c'),\n    DATABASEDELETE(\"whhgal-databasedelete\", '\\uf00d'),\n    DAVIDSTAR(\"whhgal-davidstar\", '\\uf40e'),\n    DCSOURCE(\"whhgal-dcsource\", '\\uf3e9'),\n    DEATHSTAR(\"whhgal-deathstar\", '\\uf6ef'),\n    DEATHSTARBULDING(\"whhgal-deathstarbulding\", '\\uf6f0'),\n    DEBUG(\"whhgal-debug\", '\\uf554'),\n    DEDICATEDSERVER(\"whhgal-dedicatedserver\", '\\uf00e'),\n    DEFRAGMENT(\"whhgal-defragment\", '\\uf616'),\n    DELETEALARM(\"whhgal-deletealarm\", '\\uf67c'),\n    DELETECOMMENT(\"whhgal-deletecomment\", '\\uf74b'),\n    DELETEFILE(\"whhgal-deletefile\", '\\uf0c7'),\n    DELETEFOLDER(\"whhgal-deletefolder\", '\\uf0db'),\n    DELETEFOLDERALT(\"whhgal-deletefolderalt\", '\\uf73d'),\n    DELICIOUS(\"whhgal-delicious\", '\\uf152'),\n    DESIGN(\"whhgal-design\", '\\uf53d'),\n    DESIGNCONTEST(\"whhgal-designcontest\", '\\uf351'),\n    DESKLAMP(\"whhgal-desklamp\", '\\uf412'),\n    DETAILS(\"whhgal-details\", '\\uf4ee'),\n    DETAILSALT(\"whhgal-detailsalt\", '\\uf4ef'),\n    DEVIANTART(\"whhgal-deviantart\", '\\uf521'),\n    DIALPAD(\"whhgal-dialpad\", '\\uf399'),\n    DIAMOND(\"whhgal-diamond\", '\\u2666'),\n    DIAMONDS(\"whhgal-diamonds\", '\\uf2f7'),\n    DIEFIVE(\"whhgal-diefive\", '\\uf3fb'),\n    DIEFOUR(\"whhgal-diefour\", '\\uf3fa'),\n    DIEONE(\"whhgal-dieone\", '\\uf3f7'),\n    DIESIX(\"whhgal-diesix\", '\\uf3fc'),\n    DIETHREE(\"whhgal-diethree\", '\\uf3f9'),\n    DIETWO(\"whhgal-dietwo\", '\\uf3f8'),\n    DIE_DICE(\"whhgal-die-dice\", '\\uf2d8'),\n    DIGG(\"whhgal-digg\", '\\uf529'),\n    DIODE(\"whhgal-diode\", '\\uf3e7'),\n    DIRECTIONS(\"whhgal-directions\", '\\uf543'),\n    DIRECTOR(\"whhgal-director\", '\\uf2ae'),\n    DISKSPACE(\"whhgal-diskspace\", '\\uf096'),\n    DISTRIBUTEHORIZONTALCENTERS(\"whhgal-distributehorizontalcenters\", '\\uf1dc'),\n    DISTRIBUTEVERTICALCENTERS(\"whhgal-distributeverticalcenters\", '\\uf1db'),\n    DIVIDE(\"whhgal-divide\", '\\u00f7'),\n    DNA(\"whhgal-dna\", '\\uf409'),\n    DNSZONE(\"whhgal-dnszone\", '\\uf07f'),\n    DOCUMENT(\"whhgal-document\", '\\uf0c2'),\n    DOG(\"whhgal-dog\", '\\uf623'),\n    DOGHOUSE(\"whhgal-doghouse\", '\\uf38f'),\n    DOLLAR(\"whhgal-dollar\", '\\u0024'),\n    DOLLARALT(\"whhgal-dollaralt\", '\\uf259'),\n    DOLLARSQUARE(\"whhgal-dollarsquare\", '\\uf5e2'),\n    DOLPHINSOFTWARE(\"whhgal-dolphinsoftware\", '\\uf064'),\n    DOMAIN(\"whhgal-domain\", '\\uf01d'),\n    DOMAINADDON(\"whhgal-domainaddon\", '\\uf053'),\n    DOMINO(\"whhgal-domino\", '\\uf3d5'),\n    DOMINOEIGHT(\"whhgal-dominoeight\", '\\uf51a'),\n    DOMINOFIVE(\"whhgal-dominofive\", '\\uf517'),\n    DOMINOFOUR(\"whhgal-dominofour\", '\\uf516'),\n    DOMINONINE(\"whhgal-dominonine\", '\\uf51b'),\n    DOMINOONE(\"whhgal-dominoone\", '\\uf513'),\n    DOMINOSEVEN(\"whhgal-dominoseven\", '\\uf519'),\n    DOMINOSIX(\"whhgal-dominosix\", '\\uf518'),\n    DOMINOTHREE(\"whhgal-dominothree\", '\\uf515'),\n    DOMINOTWO(\"whhgal-dominotwo\", '\\uf514'),\n    DONOTDISTURB(\"whhgal-donotdisturb\", '\\uf550'),\n    DONUT(\"whhgal-donut\", '\\uf3ca'),\n    DOTCLEAR(\"whhgal-dotclear\", '\\uf4aa'),\n    DOTLIST(\"whhgal-dotlist\", '\\uf4c2'),\n    DOTPROJECT(\"whhgal-dotproject\", '\\uf5a0'),\n    DOUBLETAP(\"whhgal-doubletap\", '\\uf7d0'),\n    DOWNLEFT(\"whhgal-downleft\", '\\uf2ff'),\n    DOWNLOAD(\"whhgal-download\", '\\uf47b'),\n    DOWNLOAD_ALT(\"whhgal-download-alt\", '\\uf11a'),\n    DOWNRIGHT(\"whhgal-downright\", '\\uf300'),\n    DRAFT(\"whhgal-draft\", '\\uf172'),\n    DREAMWEAVER(\"whhgal-dreamweaver\", '\\uf1d0'),\n    DRIBBBLE(\"whhgal-dribbble\", '\\uf14c'),\n    DRIBBBLEALT(\"whhgal-dribbblealt\", '\\uf7d1'),\n    DRILL(\"whhgal-drill\", '\\uf613'),\n    DRMANHATTAN(\"whhgal-drmanhattan\", '\\uf68a'),\n    DROPBOX(\"whhgal-dropbox\", '\\uf582'),\n    DROPMENU(\"whhgal-dropmenu\", '\\uf0a5'),\n    DRUPAL(\"whhgal-drupal\", '\\uf075'),\n    DRWHO(\"whhgal-drwho\", '\\uf3c0'),\n    DUCKY(\"whhgal-ducky\", '\\uf7ca'),\n    EARBUDS(\"whhgal-earbuds\", '\\uf526'),\n    EARBUDSALT(\"whhgal-earbudsalt\", '\\uf525'),\n    EDIT(\"whhgal-edit\", '\\uf47c'),\n    EDITALT(\"whhgal-editalt\", '\\uf0f2'),\n    EGG(\"whhgal-egg\", '\\uf407'),\n    EGGPLANT(\"whhgal-eggplant\", '\\uf632'),\n    EGYPTPYRAMID(\"whhgal-egyptpyramid\", '\\uf75b'),\n    EIGHTBALL(\"whhgal-eightball\", '\\uf36e'),\n    EJECT(\"whhgal-eject\", '\\uf199'),\n    ELEMENTARYOS(\"whhgal-elementaryos\", '\\uf65e'),\n    ELEVATOR(\"whhgal-elevator\", '\\uf57e'),\n    ELGG(\"whhgal-elgg\", '\\uf594'),\n    ELIPSE(\"whhgal-elipse\", '\\uf1bc'),\n    EMAILALT(\"whhgal-emailalt\", '\\uf136'),\n    EMAILEXPORT(\"whhgal-emailexport\", '\\uf176'),\n    EMAILFORWARD(\"whhgal-emailforward\", '\\uf175'),\n    EMAILFORWARDERS(\"whhgal-emailforwarders\", '\\uf049'),\n    EMAILIMPORT(\"whhgal-emailimport\", '\\uf177'),\n    EMAILREFRESH(\"whhgal-emailrefresh\", '\\uf174'),\n    EMAILTRACE(\"whhgal-emailtrace\", '\\uf091'),\n    EMERGENCY(\"whhgal-emergency\", '\\uf246'),\n    EMOJIANGRY(\"whhgal-emojiangry\", '\\uf6a3'),\n    EMOJICONFUSED(\"whhgal-emojiconfused\", '\\uf6a9'),\n    EMOJICRY(\"whhgal-emojicry\", '\\uf6ab'),\n    EMOJIDEAD(\"whhgal-emojidead\", '\\uf6a2'),\n    EMOJIDEVIL(\"whhgal-emojidevil\", '\\uf6a4'),\n    EMOJIGRIN(\"whhgal-emojigrin\", '\\uf69f'),\n    EMOJIGRINALT(\"whhgal-emojigrinalt\", '\\uf69e'),\n    EMOJISLEEP(\"whhgal-emojisleep\", '\\uf6aa'),\n    EMOJISMILE(\"whhgal-emojismile\", '\\uf6a7'),\n    EMOJISORRY(\"whhgal-emojisorry\", '\\uf6a8'),\n    EMOJISURPRISE(\"whhgal-emojisurprise\", '\\uf6a1'),\n    EMOJIWINK(\"whhgal-emojiwink\", '\\uf6a5'),\n    EMPTYCART(\"whhgal-emptycart\", '\\uf395'),\n    EMPTYSTAR(\"whhgal-emptystar\", '\\uf2de'),\n    ENTER(\"whhgal-enter\", '\\uf323'),\n    ENTERALT(\"whhgal-enteralt\", '\\uf68d'),\n    ENVELOPE(\"whhgal-envelope\", '\\uf028'),\n    EONEOHSEVEN(\"whhgal-eoneohseven\", '\\uf48e'),\n    EQUALIZER(\"whhgal-equalizer\", '\\uf18e'),\n    EQUALIZERALT(\"whhgal-equalizeralt\", '\\uf18f'),\n    EQUALIZERTHREE(\"whhgal-equalizerthree\", '\\uf544'),\n    EQUALS(\"whhgal-equals\", '\\uf30c'),\n    ERASER(\"whhgal-eraser\", '\\uf1f1'),\n    ERRORALT(\"whhgal-erroralt\", '\\uf05a'),\n    ESCALATOR(\"whhgal-escalator\", '\\uf57f'),\n    ETANO(\"whhgal-etano\", '\\uf595'),\n    EURO(\"whhgal-euro\", '\\u20ac'),\n    EUROALT(\"whhgal-euroalt\", '\\uf25a'),\n    EUROSQUARE(\"whhgal-eurosquare\", '\\uf5e5'),\n    EVENT(\"whhgal-event\", '\\uf63b'),\n    EVENTUM(\"whhgal-eventum\", '\\uf5a4'),\n    EVERNOTE(\"whhgal-evernote\", '\\uf17c'),\n    EXCHANGE_CURRENCY(\"whhgal-exchange-currency\", '\\uf26b'),\n    EXCLAMATION_SIGN(\"whhgal-exclamation-sign\", '\\uf04a'),\n    EXCLUDESHAPE(\"whhgal-excludeshape\", '\\uf200'),\n    EXIT(\"whhgal-exit\", '\\uf324'),\n    EXITALT(\"whhgal-exitalt\", '\\uf68e'),\n    EXPLORERWINDOW(\"whhgal-explorerwindow\", '\\uf0d9'),\n    EXPORT(\"whhgal-export\", '\\uf751'),\n    EXPORTFILE(\"whhgal-exportfile\", '\\uf32f'),\n    EXPOSURE(\"whhgal-exposure\", '\\uf1de'),\n    EXTINGUISHER(\"whhgal-extinguisher\", '\\uf2b7'),\n    EXTJS(\"whhgal-extjs\", '\\uf5b8'),\n    EYEDROPPER(\"whhgal-eyedropper\", '\\uf1ad'),\n    EYEOS(\"whhgal-eyeos\", '\\uf59f'),\n    EYE_CLOSE(\"whhgal-eye-close\", '\\uf481'),\n    EYE_OPEN(\"whhgal-eye-open\", '\\uf2b5'),\n    EYE_VIEW(\"whhgal-eye-view\", '\\uf280'),\n    FACEBOOK(\"whhgal-facebook\", '\\uf140'),\n    FACEBOOKALT(\"whhgal-facebookalt\", '\\uf14b'),\n    FACETIME_VIDEO(\"whhgal-facetime-video\", '\\uf19c'),\n    FACTORY(\"whhgal-factory\", '\\uf27a'),\n    FALLINGSTAR(\"whhgal-fallingstar\", '\\uf6f1'),\n    FAN(\"whhgal-fan\", '\\uf66f'),\n    FANTASTICO(\"whhgal-fantastico\", '\\uf0ae'),\n    FAQ(\"whhgal-faq\", '\\uf099'),\n    FASTDOWN(\"whhgal-fastdown\", '\\uf31d'),\n    FASTLEFT(\"whhgal-fastleft\", '\\uf31a'),\n    FASTRIGHT(\"whhgal-fastright\", '\\uf31b'),\n    FASTUP(\"whhgal-fastup\", '\\uf31c'),\n    FAST_BACKWARD(\"whhgal-fast-backward\", '\\uf47e'),\n    FAST_FORWARD(\"whhgal-fast-forward\", '\\uf47f'),\n    FATARROWDOWN(\"whhgal-fatarrowdown\", '\\uf506'),\n    FATARROWLEFT(\"whhgal-fatarrowleft\", '\\uf505'),\n    FATARROWRIGHT(\"whhgal-fatarrowright\", '\\uf504'),\n    FATARROWUP(\"whhgal-fatarrowup\", '\\uf507'),\n    FATREDO(\"whhgal-fatredo\", '\\uf692'),\n    FATUNDO(\"whhgal-fatundo\", '\\uf691'),\n    FAVORITEFILE(\"whhgal-favoritefile\", '\\uf381'),\n    FAVORITEFOLDER(\"whhgal-favoritefolder\", '\\uf382'),\n    FBDISLIKE(\"whhgal-fbdislike\", '\\uf4c7'),\n    FBLIKE(\"whhgal-fblike\", '\\uf4c6'),\n    FEATHERALT_WRITE(\"whhgal-featheralt-write\", '\\uf1c5'),\n    FEDORA(\"whhgal-fedora\", '\\uf3f1'),\n    FEEDLY(\"whhgal-feedly\", '\\uf693'),\n    FEEDLYALT(\"whhgal-feedlyalt\", '\\uf694'),\n    FENCE(\"whhgal-fence\", '\\uf2af'),\n    FENGOFFICE(\"whhgal-fengoffice\", '\\uf59e'),\n    FILE(\"whhgal-file\", '\\uf0d6'),\n    FILM(\"whhgal-film\", '\\uf19d'),\n    FILMSTRIP(\"whhgal-filmstrip\", '\\uf3ed'),\n    FILTER(\"whhgal-filter\", '\\uf05c'),\n    FINANCE(\"whhgal-finance\", '\\uf6b8'),\n    FINDER(\"whhgal-finder\", '\\uf398'),\n    FINDFRIENDS(\"whhgal-findfriends\", '\\uf54d'),\n    FIRE(\"whhgal-fire\", '\\uf27f'),\n    FIREFOX(\"whhgal-firefox\", '\\uf420'),\n    FIREPLACE(\"whhgal-fireplace\", '\\uf53f'),\n    FIREWALL(\"whhgal-firewall\", '\\uf021'),\n    FIREWIRE(\"whhgal-firewire\", '\\uf0fc'),\n    FIRSTAID(\"whhgal-firstaid\", '\\uf2ba'),\n    FISH(\"whhgal-fish\", '\\uf35a'),\n    FISHBONE(\"whhgal-fishbone\", '\\uf42b'),\n    FLAG(\"whhgal-flag\", '\\uf487'),\n    FLAGALT(\"whhgal-flagalt\", '\\uf232'),\n    FLAGTRIANGLE(\"whhgal-flagtriangle\", '\\uf20b'),\n    FLASH(\"whhgal-flash\", '\\uf1cf'),\n    FLASHLIGHT(\"whhgal-flashlight\", '\\uf299'),\n    FLASHLIGHTALT(\"whhgal-flashlightalt\", '\\uf610'),\n    FLASHPLAYER(\"whhgal-flashplayer\", '\\uf070'),\n    FLASKFULL(\"whhgal-flaskfull\", '\\uf27e'),\n    FLICKR(\"whhgal-flickr\", '\\uf146'),\n    FLICKRALT(\"whhgal-flickralt\", '\\uf57c'),\n    FLICKRTHREE(\"whhgal-flickrthree\", '\\uf796'),\n    FLIPBOARD(\"whhgal-flipboard\", '\\uf7ae'),\n    FLIPHORIZONTAL(\"whhgal-fliphorizontal\", '\\uf652'),\n    FLIPVERTICAL(\"whhgal-flipvertical\", '\\uf653'),\n    FLOWDOWN(\"whhgal-flowdown\", '\\uf63f'),\n    FLOWER(\"whhgal-flower\", '\\uf2a5'),\n    FLOWERNEW(\"whhgal-flowernew\", '\\uf3a8'),\n    FLOWERPOT(\"whhgal-flowerpot\", '\\uf615'),\n    FLOWUP(\"whhgal-flowup\", '\\uf63e'),\n    FLUXBB(\"whhgal-fluxbb\", '\\uf58e'),\n    FOLDERALT(\"whhgal-folderalt\", '\\uf73a'),\n    FOLDERTREE(\"whhgal-foldertree\", '\\uf0f0'),\n    FOLDER_CLOSE(\"whhgal-folder-close\", '\\uf094'),\n    FOLDER_OPEN(\"whhgal-folder-open\", '\\uf483'),\n    FONT(\"whhgal-font\", '\\uf1ae'),\n    FONTCALIGRAPHY(\"whhgal-fontcaligraphy\", '\\uf7f1'),\n    FONTCASE(\"whhgal-fontcase\", '\\uf4e8'),\n    FONTCOMIC(\"whhgal-fontcomic\", '\\uf7f0'),\n    FONTGOTHIC(\"whhgal-fontgothic\", '\\uf7f2'),\n    FONTHANDWRITING(\"whhgal-fonthandwriting\", '\\uf7ee'),\n    FONTROUNDED(\"whhgal-fontrounded\", '\\uf7ed'),\n    FONTSANSSERIF(\"whhgal-fontsansserif\", '\\uf7ec'),\n    FONTSERIF(\"whhgal-fontserif\", '\\uf7eb'),\n    FONTSTENCIL(\"whhgal-fontstencil\", '\\uf7f3'),\n    FONTTYPEWRITER(\"whhgal-fonttypewriter\", '\\uf7ef'),\n    FOODTRAY(\"whhgal-foodtray\", '\\uf3d0'),\n    FOOTBALL_SOCCER(\"whhgal-football-soccer\", '\\uf2eb'),\n    FORBIDDEN(\"whhgal-forbidden\", '\\uf314'),\n    FORBIDDENALT(\"whhgal-forbiddenalt\", '\\uf314'),\n    FORESTALT_TREEALT(\"whhgal-forestalt-treealt\", '\\uf21c'),\n    FOREST_TREE(\"whhgal-forest-tree\", '\\uf217'),\n    FORK(\"whhgal-fork\", '\\u22d4'),\n    FORKCMS(\"whhgal-forkcms\", '\\uf588'),\n    FORKLIFT(\"whhgal-forklift\", '\\uf29b'),\n    FORM(\"whhgal-form\", '\\uf08c'),\n    FORRST(\"whhgal-forrst\", '\\uf14d'),\n    FORT(\"whhgal-fort\", '\\uf400'),\n    FORUMSALT(\"whhgal-forumsalt\", '\\uf790'),\n    FORWARD(\"whhgal-forward\", '\\uf182'),\n    FOUNTAIN(\"whhgal-fountain\", '\\uf6fe'),\n    FOURG(\"whhgal-fourg\", '\\uf770'),\n    FOURIMAGES(\"whhgal-fourimages\", '\\uf591'),\n    FOUROHFOUR(\"whhgal-fourohfour\", '\\uf09d'),\n    FOURSQUARE(\"whhgal-foursquare\", '\\uf42a'),\n    FOURSQUAREALT(\"whhgal-foursquarealt\", '\\uf68b'),\n    FREEWAY(\"whhgal-freeway\", '\\uf24a'),\n    FRIDGE(\"whhgal-fridge\", '\\uf40d'),\n    FRIES(\"whhgal-fries\", '\\uf36a'),\n    FTP(\"whhgal-ftp\", '\\uf029'),\n    FTPACCOUNTS(\"whhgal-ftpaccounts\", '\\uf07b'),\n    FTPSESSION(\"whhgal-ftpsession\", '\\uf07c'),\n    FUELPHP(\"whhgal-fuelphp\", '\\uf5b2'),\n    FULLBORDERS(\"whhgal-fullborders\", '\\uf4e3'),\n    FULLSCREEN(\"whhgal-fullscreen\", '\\uf485'),\n    FULLSTAR(\"whhgal-fullstar\", '\\uf2e0'),\n    FX(\"whhgal-fx\", '\\uf607'),\n    GALAXY(\"whhgal-galaxy\", '\\uf6e1'),\n    GALAXYALT(\"whhgal-galaxyalt\", '\\uf6ea'),\n    GAMEBOY(\"whhgal-gameboy\", '\\uf403'),\n    GAMECURSOR(\"whhgal-gamecursor\", '\\uf2d0'),\n    GARAGE(\"whhgal-garage\", '\\uf5ee'),\n    GASSTATION(\"whhgal-gasstation\", '\\uf216'),\n    GAVEL(\"whhgal-gavel\", '\\uf5ea'),\n    GEARFOUR(\"whhgal-gearfour\", '\\uf3a7'),\n    GENDER(\"whhgal-gender\", '\\uf74c'),\n    GHOST(\"whhgal-ghost\", '\\uf2da'),\n    GIFT(\"whhgal-gift\", '\\uf260'),\n    GITHUB(\"whhgal-github\", '\\uf081'),\n    GLASS(\"whhgal-glass\", '\\uf236'),\n    GLASSES(\"whhgal-glasses\", '\\uf295'),\n    GLASSESALT(\"whhgal-glassesalt\", '\\uf39d'),\n    GLOBE(\"whhgal-globe\", '\\uf01b'),\n    GLOBEALT(\"whhgal-globealt\", '\\uf36c'),\n    GLUE(\"whhgal-glue\", '\\uf36d'),\n    GMAIL(\"whhgal-gmail\", '\\uf150'),\n    GOLF(\"whhgal-golf\", '\\uf2f1'),\n    GOOGLE(\"whhgal-google\", '\\uf69d'),\n    GOOGLEDRIVE(\"whhgal-googledrive\", '\\uf163'),\n    GOOGLEGLASS(\"whhgal-googleglass\", '\\uf677'),\n    GOOGLEPLUS(\"whhgal-googleplus\", '\\uf165'),\n    GOOGLEPLUSOLD(\"whhgal-googleplusold\", '\\uf639'),\n    GOOGLEWALLET(\"whhgal-googlewallet\", '\\uf270'),\n    GPSALT(\"whhgal-gpsalt\", '\\uf771'),\n    GPSOFF_GPS(\"whhgal-gpsoff-gps\", '\\uf21e'),\n    GPSON(\"whhgal-gpson\", '\\uf21f'),\n    GPU_GRAPHICSCARD(\"whhgal-gpu-graphicscard\", '\\uf108'),\n    GRADIENT(\"whhgal-gradient\", '\\u2207'),\n    GRAILS(\"whhgal-grails\", '\\uf085'),\n    GRAMOPHONE(\"whhgal-gramophone\", '\\uf608'),\n    GRAPES(\"whhgal-grapes\", '\\uf541'),\n    GRAVE(\"whhgal-grave\", '\\uf684'),\n    GRAVEFOUR(\"whhgal-gravefour\", '\\uf687'),\n    GRAVETHREE(\"whhgal-gravethree\", '\\uf686'),\n    GRAVETWO(\"whhgal-gravetwo\", '\\uf685'),\n    GREEKCOLUMN(\"whhgal-greekcolumn\", '\\uf5e0'),\n    GREENLANTERN(\"whhgal-greenlantern\", '\\uf340'),\n    GREENLIGHTBULB(\"whhgal-greenlightbulb\", '\\uf406'),\n    GROOVESHARK(\"whhgal-grooveshark\", '\\uf3a2'),\n    GROUPS_FRIENDS(\"whhgal-groups-friends\", '\\uf134'),\n    GUITAR(\"whhgal-guitar\", '\\uf19a'),\n    GUN(\"whhgal-gun\", '\\uf4f1'),\n    HALFLIFE(\"whhgal-halflife\", '\\uf3ba'),\n    HALFSTAR(\"whhgal-halfstar\", '\\uf2df'),\n    HALO(\"whhgal-halo\", '\\uf3bb'),\n    HAMBURGER(\"whhgal-hamburger\", '\\uf2b3'),\n    HAMMER(\"whhgal-hammer\", '\\uf291'),\n    HAMMERALT(\"whhgal-hammeralt\", '\\uf649'),\n    HANDCUFFS(\"whhgal-handcuffs\", '\\uf393'),\n    HANDDRAG(\"whhgal-handdrag\", '\\uf0de'),\n    HANDEXPAND(\"whhgal-handexpand\", '\\uf7e9'),\n    HANDPINCH(\"whhgal-handpinch\", '\\uf7ea'),\n    HANDSWIPE(\"whhgal-handswipe\", '\\uf7cb'),\n    HANDTWOFINGERS(\"whhgal-handtwofingers\", '\\uf0df'),\n    HAND_DOWN(\"whhgal-hand-down\", '\\uf387'),\n    HAND_LEFT(\"whhgal-hand-left\", '\\uf389'),\n    HAND_RIGHT(\"whhgal-hand-right\", '\\uf388'),\n    HAND_UP(\"whhgal-hand-up\", '\\uf0dd'),\n    HANGER(\"whhgal-hanger\", '\\uf2ab'),\n    HANGOUT(\"whhgal-hangout\", '\\uf671'),\n    HANGOUTS(\"whhgal-hangouts\", '\\uf6ba'),\n    HAPPY(\"whhgal-happy\", '\\uf13c'),\n    HARRYPOTTER(\"whhgal-harrypotter\", '\\uf38b'),\n    HASHTAG(\"whhgal-hashtag\", '\\uf68c'),\n    HDD(\"whhgal-hdd\", '\\uf02a'),\n    HDDALT(\"whhgal-hddalt\", '\\uf60a'),\n    HDTV(\"whhgal-hdtv\", '\\uf1a0'),\n    HDVIDEO(\"whhgal-hdvideo\", '\\uf577'),\n    HEADPHONES(\"whhgal-headphones\", '\\uf180'),\n    HEADPHONESALT(\"whhgal-headphonesalt\", '\\uf1a3'),\n    HEADPHONESTHREE(\"whhgal-headphonesthree\", '\\uf66e'),\n    HEART(\"whhgal-heart\", '\\uf131'),\n    HEARTARROW(\"whhgal-heartarrow\", '\\uf668'),\n    HEARTEMPTY_LOVE(\"whhgal-heartempty-love\", '\\uf132'),\n    HEARTS(\"whhgal-hearts\", '\\uf2f4'),\n    HEARTSPARKLE(\"whhgal-heartsparkle\", '\\uf669'),\n    HEAVYMETAL(\"whhgal-heavymetal\", '\\uf6b3'),\n    HELICOPTER(\"whhgal-helicopter\", '\\uf3e4'),\n    HEXAGON_POLYGON(\"whhgal-hexagon-polygon\", '\\uf1be'),\n    HISTORY(\"whhgal-history\", '\\uf764'),\n    HOCKEY(\"whhgal-hockey\", '\\uf3d9'),\n    HOME(\"whhgal-home\", '\\u21b8'),\n    HOMEALT(\"whhgal-homealt\", '\\uf02b'),\n    HONEYCOMB(\"whhgal-honeycomb\", '\\uf4a6'),\n    HORIZONTALBORDER(\"whhgal-horizontalborder\", '\\uf4df'),\n    HORIZONTALCONTRACT(\"whhgal-horizontalcontract\", '\\uf579'),\n    HORIZONTALEXPAND(\"whhgal-horizontalexpand\", '\\uf578'),\n    HOSPITAL(\"whhgal-hospital\", '\\uf247'),\n    HOT(\"whhgal-hot\", '\\uf63d'),\n    HOTDOG(\"whhgal-hotdog\", '\\uf3cc'),\n    HOTLINKPROTECTION(\"whhgal-hotlinkprotection\", '\\uf050'),\n    HOURGLASSALT(\"whhgal-hourglassalt\", '\\uf122'),\n    HOUSE(\"whhgal-house\", '\\uf5ed'),\n    HRYVNIA(\"whhgal-hryvnia\", '\\uf5f0'),\n    HRYVNIAALT(\"whhgal-hryvniaalt\", '\\uf5f2'),\n    HRYVNIASQUARE(\"whhgal-hryvniasquare\", '\\uf5f1'),\n    HTML(\"whhgal-html\", '\\uf068'),\n    HTMLFILE(\"whhgal-htmlfile\", '\\uf7be'),\n    HTMLFIVE(\"whhgal-htmlfive\", '\\uf069'),\n    HYDRANT(\"whhgal-hydrant\", '\\uf3ff'),\n    ICECREAM(\"whhgal-icecream\", '\\uf2a4'),\n    ICECREAMALT(\"whhgal-icecreamalt\", '\\uf289'),\n    ICECREAMTHREE(\"whhgal-icecreamthree\", '\\uf65b'),\n    ILLUSTRATOR(\"whhgal-illustrator\", '\\uf1ce'),\n    IMAC(\"whhgal-imac\", '\\uf0fb'),\n    IMAGES_GALLERY(\"whhgal-images-gallery\", '\\uf09f'),\n    IMPORT(\"whhgal-import\", '\\uf752'),\n    IMPORTCONTACTS(\"whhgal-importcontacts\", '\\uf092'),\n    IMPORTFILE(\"whhgal-importfile\", '\\uf32e'),\n    IMPRESSCMS(\"whhgal-impresscms\", '\\uf4ab'),\n    IMPRESSPAGES(\"whhgal-impresspages\", '\\uf4ad'),\n    INBOX(\"whhgal-inbox\", '\\uf17a'),\n    INBOXALT(\"whhgal-inboxalt\", '\\uf178'),\n    INCOMINGCALL(\"whhgal-incomingcall\", '\\uf15d'),\n    INCOMINGCALLALT(\"whhgal-incomingcallalt\", '\\uf74f'),\n    INDENTLEFT(\"whhgal-indentleft\", '\\uf4c4'),\n    INDENTLEFTALT(\"whhgal-indentleftalt\", '\\uf4c4'),\n    INDENTRIGHT(\"whhgal-indentright\", '\\uf4c5'),\n    INDENTRIGHTALT(\"whhgal-indentrightalt\", '\\uf4c5'),\n    INDENT_LEFT(\"whhgal-indent-left\", '\\uf1f2'),\n    INDENT_RIGHT(\"whhgal-indent-right\", '\\uf1f3'),\n    INDEXMANAGER(\"whhgal-indexmanager\", '\\uf09e'),\n    INFINITY(\"whhgal-infinity\", '\\u221e'),\n    INFINITYALT(\"whhgal-infinityalt\", '\\uf7b9'),\n    INFOGRAPHIC(\"whhgal-infographic\", '\\uf336'),\n    INFO_SIGN(\"whhgal-info-sign\", '\\uf315'),\n    INGRESS(\"whhgal-ingress\", '\\uf79c'),\n    INK(\"whhgal-ink\", '\\uf3f6'),\n    INKPEN(\"whhgal-inkpen\", '\\uf1ac'),\n    INNERBORDERS(\"whhgal-innerborders\", '\\uf4e2'),\n    INSERTBARCHART(\"whhgal-insertbarchart\", '\\uf1e5'),\n    INSERTPICTURE(\"whhgal-insertpicture\", '\\uf1e0'),\n    INSERTPICTURECENTER(\"whhgal-insertpicturecenter\", '\\uf1e3'),\n    INSERTPICTURELEFT(\"whhgal-insertpictureleft\", '\\uf1e1'),\n    INSERTPICTURERIGHT(\"whhgal-insertpictureright\", '\\uf1e2'),\n    INSERTPIECHART(\"whhgal-insertpiechart\", '\\uf1e4'),\n    INSTAGRAM(\"whhgal-instagram\", '\\uf14a'),\n    INSTAGRAMFOUR(\"whhgal-instagramfour\", '\\uf7c3'),\n    INSTAGRAMTHREE(\"whhgal-instagramthree\", '\\uf795'),\n    INSTAGRAMTWO(\"whhgal-instagramtwo\", '\\uf794'),\n    INSTALL(\"whhgal-install\", '\\uf128'),\n    INTEL(\"whhgal-intel\", '\\uf01f'),\n    INTERSECTION(\"whhgal-intersection\", '\\u2229'),\n    INTERSECTSHAPE(\"whhgal-intersectshape\", '\\uf1ff'),\n    INVERT(\"whhgal-invert\", '\\uf1df'),\n    INVOICE(\"whhgal-invoice\", '\\uf3e5'),\n    IPCONTROL(\"whhgal-ipcontrol\", '\\uf08b'),\n    IPHONE(\"whhgal-iphone\", '\\uf0e6'),\n    IPOD(\"whhgal-ipod\", '\\uf190'),\n    IRONMAN(\"whhgal-ironman\", '\\uf349'),\n    ISLAM(\"whhgal-islam\", '\\uf410'),\n    ISLAND(\"whhgal-island\", '\\uf392'),\n    ISSUE(\"whhgal-issue\", '\\uf766'),\n    ISSUECLOSED(\"whhgal-issueclosed\", '\\uf767'),\n    ISSUEREOPENED(\"whhgal-issuereopened\", '\\uf768'),\n    ITALIC(\"whhgal-italic\", '\\uf1f5'),\n    JAR(\"whhgal-jar\", '\\uf2b6'),\n    JASON(\"whhgal-jason\", '\\uf38c'),\n    JAVA(\"whhgal-java\", '\\uf083'),\n    JCORE(\"whhgal-jcore\", '\\uf4b0'),\n    JCOW(\"whhgal-jcow\", '\\uf593'),\n    JERSEY(\"whhgal-jersey\", '\\uf5c4'),\n    JOOMLA(\"whhgal-joomla\", '\\uf073'),\n    JOYSTICKARCADE(\"whhgal-joystickarcade\", '\\uf2d4'),\n    JOYSTICKATARI(\"whhgal-joystickatari\", '\\uf2d5'),\n    JQUERY(\"whhgal-jquery\", '\\uf06b'),\n    JQUERYUI(\"whhgal-jqueryui\", '\\uf06c'),\n    KERNING(\"whhgal-kerning\", '\\uf1e9'),\n    KEY(\"whhgal-key\", '\\uf093'),\n    KEYBOARD(\"whhgal-keyboard\", '\\uf119'),\n    KEYBOARDALT(\"whhgal-keyboardalt\", '\\uf105'),\n    KEYBOARDDELETE(\"whhgal-keyboarddelete\", '\\uf3a6'),\n    KIDNEY(\"whhgal-kidney\", '\\uf3e0'),\n    KIMAI(\"whhgal-kimai\", '\\uf755'),\n    KING(\"whhgal-king\", '\\uf2fc'),\n    KISS(\"whhgal-kiss\", '\\uf746'),\n    KIWI(\"whhgal-kiwi\", '\\uf62b'),\n    KIWIFRUIT(\"whhgal-kiwifruit\", '\\uf62c'),\n    KNIFE(\"whhgal-knife\", '\\uf214'),\n    KNIGHT(\"whhgal-knight\", '\\uf2fb'),\n    KNOB(\"whhgal-knob\", '\\uf376'),\n    KOALA(\"whhgal-koala\", '\\uf625'),\n    KOHANA(\"whhgal-kohana\", '\\uf5b3'),\n    LAB_FLASK(\"whhgal-lab-flask\", '\\uf27d'),\n    LAMP(\"whhgal-lamp\", '\\uf2b1'),\n    LAMPALT(\"whhgal-lampalt\", '\\uf614'),\n    LAN(\"whhgal-lan\", '\\uf0ee'),\n    LANGUAGE(\"whhgal-language\", '\\uf042'),\n    LAPTOP(\"whhgal-laptop\", '\\uf0d8'),\n    LASSO(\"whhgal-lasso\", '\\uf396'),\n    LASTFM(\"whhgal-lastfm\", '\\uf3a3'),\n    LAUGH(\"whhgal-laugh\", '\\uf13f'),\n    LAW(\"whhgal-law\", '\\uf263'),\n    LAYERORDER(\"whhgal-layerorder\", '\\uf7e6'),\n    LAYERORDERDOWN(\"whhgal-layerorderdown\", '\\uf7e5'),\n    LAYERORDERUP(\"whhgal-layerorderup\", '\\uf7e4'),\n    LAYERS(\"whhgal-layers\", '\\uf1ca'),\n    LAYERSALT(\"whhgal-layersalt\", '\\uf1cb'),\n    LAYERSTHREE(\"whhgal-layersthree\", '\\uf788'),\n    LEAF(\"whhgal-leaf\", '\\uf039'),\n    LEATHER(\"whhgal-leather\", '\\uf558'),\n    LEECHPROTECT(\"whhgal-leechprotect\", '\\uf07e'),\n    LEFTBORDER(\"whhgal-leftborder\", '\\uf4dd'),\n    LEGACYFILEMANAGER(\"whhgal-legacyfilemanager\", '\\uf095'),\n    LEGO(\"whhgal-lego\", '\\uf370'),\n    LEMON(\"whhgal-lemon\", '\\uf62d'),\n    LENS(\"whhgal-lens\", '\\uf50b'),\n    LIFEEMPTY(\"whhgal-lifeempty\", '\\uf2e1'),\n    LIFEFULL(\"whhgal-lifefull\", '\\uf2e3'),\n    LIFEHACKER(\"whhgal-lifehacker\", '\\uf380'),\n    LIFEHALF(\"whhgal-lifehalf\", '\\uf2e2'),\n    LIFEPRESERVER(\"whhgal-lifepreserver\", '\\uf015'),\n    LIGHTBULB_IDEA(\"whhgal-lightbulb-idea\", '\\uf338'),\n    LIGHTHOUSE(\"whhgal-lighthouse\", '\\uf3e6'),\n    LIGHTNING(\"whhgal-lightning\", '\\uf231'),\n    LIGHTNINGALT(\"whhgal-lightningalt\", '\\uf2a8'),\n    LIGHTOFF(\"whhgal-lightoff\", '\\uf76b'),\n    LIGHTON(\"whhgal-lighton\", '\\uf76a'),\n    LIMESURVEY(\"whhgal-limesurvey\", '\\uf59d'),\n    LINE(\"whhgal-line\", '\\uf1bf'),\n    LINEHEIGHT(\"whhgal-lineheight\", '\\uf1c0'),\n    LINK(\"whhgal-link\", '\\uf022'),\n    LINKALT(\"whhgal-linkalt\", '\\uf333'),\n    LINKEDIN(\"whhgal-linkedin\", '\\uf166'),\n    LINUX(\"whhgal-linux\", '\\uf01a'),\n    LIPS(\"whhgal-lips\", '\\uf745'),\n    LIPSTICK(\"whhgal-lipstick\", '\\uf50f'),\n    LIST(\"whhgal-list\", '\\uf111'),\n    LIST_ALT(\"whhgal-list-alt\", '\\uf480'),\n    LIVEJOURNAL(\"whhgal-livejournal\", '\\uf756'),\n    LIVEJOURNALALT(\"whhgal-livejournalalt\", '\\uf757'),\n    LIVER(\"whhgal-liver\", '\\uf3e2'),\n    LOADINGALT(\"whhgal-loadingalt\", '\\uf339'),\n    LOADINGEIGHT(\"whhgal-loadingeight\", '\\uf666'),\n    LOADINGFIVE(\"whhgal-loadingfive\", '\\uf663'),\n    LOADINGFLOWCCW(\"whhgal-loadingflowccw\", '\\uf741'),\n    LOADINGFLOWCW(\"whhgal-loadingflowcw\", '\\uf742'),\n    LOADINGFOUR(\"whhgal-loadingfour\", '\\uf662'),\n    LOADINGONE(\"whhgal-loadingone\", '\\uf65f'),\n    LOADINGSEVEN(\"whhgal-loadingseven\", '\\uf665'),\n    LOADINGSIX(\"whhgal-loadingsix\", '\\uf664'),\n    LOADINGTHREE(\"whhgal-loadingthree\", '\\uf661'),\n    LOADINGTWO(\"whhgal-loadingtwo\", '\\uf660'),\n    LOADING_HOURGLASS(\"whhgal-loading-hourglass\", '\\uf123'),\n    LOCK(\"whhgal-lock\", '\\uf0be'),\n    LOCKALT_KEYHOLE(\"whhgal-lockalt-keyhole\", '\\uf0eb'),\n    LOLLYPOP(\"whhgal-lollypop\", '\\uf3ee'),\n    LUNGS(\"whhgal-lungs\", '\\uf3df');\n\n    public static WhhgAL findByDescription(String description) {\n        for (WhhgAL font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    WhhgAL(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-whhg-pack/src/main/java/org/kordamp/ikonli/whhg/WhhgALIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.whhg;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class WhhgALIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/whhg/20201105/fonts/webhostinghub-glyphs.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"whhgal-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return WhhgAL.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"WebHostingHub-Glyphs\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-whhg-pack/src/main/java/org/kordamp/ikonli/whhg/WhhgALIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.whhg;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class WhhgALIkonProvider implements IkonProvider<WhhgAL> {\n    @Override\n    public Class<WhhgAL> getIkon() {\n        return WhhgAL.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-whhg-pack/src/main/java/org/kordamp/ikonli/whhg/WhhgMZ.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.whhg;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum WhhgMZ implements Ikon {\n    MACPRO(\"whhgmz-macpro\", '\\uf3a5'),\n    MACRO_PLANT(\"whhgmz-macro-plant\", '\\uf1c6'),\n    MAGAZINE(\"whhgmz-magazine\", '\\uf1ec'),\n    MAGENTO(\"whhgmz-magento\", '\\uf06e'),\n    MAGNET(\"whhgmz-magnet\", '\\uf281'),\n    MAHARA(\"whhgmz-mahara\", '\\uf587'),\n    MAILBOX(\"whhgmz-mailbox\", '\\uf044'),\n    MAILINGLISTS(\"whhgmz-mailinglists\", '\\uf090'),\n    MAMBO(\"whhgmz-mambo\", '\\uf494'),\n    MANAGEDHOSTING(\"whhgmz-managedhosting\", '\\uf038'),\n    MANALT(\"whhgmz-manalt\", '\\uf56d'),\n    MANILLAENVELOPE(\"whhgmz-manillaenvelope\", '\\uf60c'),\n    MANTISBUGTRACKER(\"whhgmz-mantisbugtracker\", '\\uf5a6'),\n    MANUALSHIFT(\"whhgmz-manualshift\", '\\uf747'),\n    MAN_MALE(\"whhgmz-man-male\", '\\uf2a1'),\n    MAP(\"whhgmz-map\", '\\uf209'),\n    MAP_MARKER(\"whhgmz-map-marker\", '\\uf220'),\n    MARKER(\"whhgmz-marker\", '\\uf204'),\n    MARKERDOWN(\"whhgmz-markerdown\", '\\uf4cb'),\n    MARKERLEFT(\"whhgmz-markerleft\", '\\uf4cd'),\n    MARKERRIGHT(\"whhgmz-markerright\", '\\uf4ce'),\n    MARKERUP(\"whhgmz-markerup\", '\\uf4cc'),\n    MARVIN(\"whhgmz-marvin\", '\\uf3dd'),\n    MASTERCARD(\"whhgmz-mastercard\", '\\uf266'),\n    MAXIMIZE(\"whhgmz-maximize\", '\\uf30f'),\n    MAYANPYRAMID(\"whhgmz-mayanpyramid\", '\\uf75a'),\n    MEDAL(\"whhgmz-medal\", '\\uf2e5'),\n    MEDALBRONZE(\"whhgmz-medalbronze\", '\\uf2e8'),\n    MEDALGOLD(\"whhgmz-medalgold\", '\\uf2e6'),\n    MEDALSILVER(\"whhgmz-medalsilver\", '\\uf2e7'),\n    MEDIAREPEAT(\"whhgmz-mediarepeat\", '\\uf187'),\n    MEGA(\"whhgmz-mega\", '\\uf501'),\n    MEN(\"whhgmz-men\", '\\uf24c'),\n    MENU(\"whhgmz-menu\", '\\uf127'),\n    MERGE(\"whhgmz-merge\", '\\uf334'),\n    MERGECELLS(\"whhgmz-mergecells\", '\\uf327'),\n    MERGESHAPES(\"whhgmz-mergeshapes\", '\\uf201'),\n    MERGETHREE(\"whhgmz-mergethree\", '\\uf787'),\n    METEOR(\"whhgmz-meteor\", '\\uf6e0'),\n    METEORITE(\"whhgmz-meteorite\", '\\uf6ee'),\n    METRONOME(\"whhgmz-metronome\", '\\uf374'),\n    METRO_SUBWAY(\"whhgmz-metro-subway\", '\\uf24f'),\n    MIBEW(\"whhgmz-mibew\", '\\uf5ae'),\n    MICKEYMOUSE(\"whhgmz-mickeymouse\", '\\uf37a'),\n    MICROPHONE(\"whhgmz-microphone\", '\\uf191'),\n    MICROPHONEALT(\"whhgmz-microphonealt\", '\\uf4f6'),\n    MICROPHONETHREE(\"whhgmz-microphonethree\", '\\uf54e'),\n    MICROSCOPE(\"whhgmz-microscope\", '\\uf283'),\n    MICROSD(\"whhgmz-microsd\", '\\uf107'),\n    MICROSOFTOFFICE(\"whhgmz-microsoftoffice\", '\\uf548'),\n    MICROWAVE(\"whhgmz-microwave\", '\\uf42e'),\n    MIDDLEFINGER(\"whhgmz-middlefinger\", '\\uf6b2'),\n    MILK(\"whhgmz-milk\", '\\uf5ef'),\n    MIMETYPE(\"whhgmz-mimetype\", '\\uf057'),\n    MINECRAFT(\"whhgmz-minecraft\", '\\uf724'),\n    MINECRAFTALT(\"whhgmz-minecraftalt\", '\\uf725'),\n    MINIANGRY(\"whhgmz-miniangry\", '\\uf7db'),\n    MINIBB(\"whhgmz-minibb\", '\\uf58f'),\n    MINICONFUSED(\"whhgmz-miniconfused\", '\\uf7e0'),\n    MINIGRIN(\"whhgmz-minigrin\", '\\uf7da'),\n    MINILAUGH(\"whhgmz-minilaugh\", '\\uf7d9'),\n    MINIMIZE(\"whhgmz-minimize\", '\\uf30e'),\n    MINISAD(\"whhgmz-minisad\", '\\uf7d8'),\n    MINISMILE(\"whhgmz-minismile\", '\\uf7d7'),\n    MINITONGUE(\"whhgmz-minitongue\", '\\uf7dc'),\n    MINITONGUEALT(\"whhgmz-minitonguealt\", '\\uf7dd'),\n    MINITONGUEWINK(\"whhgmz-minitonguewink\", '\\uf7df'),\n    MINIWINK(\"whhgmz-miniwink\", '\\uf7de'),\n    MINUS(\"whhgmz-minus\", '\\u2212'),\n    MINUS_SIGN(\"whhgmz-minus-sign\", '\\uf477'),\n    MIRROR(\"whhgmz-mirror\", '\\uf66d'),\n    MISSEDCALL(\"whhgmz-missedcall\", '\\uf15c'),\n    MISSEDCALLALT(\"whhgmz-missedcallalt\", '\\uf750'),\n    MIUI(\"whhgmz-miui\", '\\uf63c'),\n    MOBILE(\"whhgmz-mobile\", '\\uf0e8'),\n    MODX(\"whhgmz-modx\", '\\uf48d'),\n    MODXALT(\"whhgmz-modxalt\", '\\uf5de'),\n    MOLECULE(\"whhgmz-molecule\", '\\uf556'),\n    MOLESKINE(\"whhgmz-moleskine\", '\\uf1f0'),\n    MONEYALT(\"whhgmz-moneyalt\", '\\uf4e7'),\n    MONEYBAG(\"whhgmz-moneybag\", '\\uf271'),\n    MONEY_CASH(\"whhgmz-money-cash\", '\\uf27b'),\n    MONGODB(\"whhgmz-mongodb\", '\\uf5fe'),\n    MONITOR(\"whhgmz-monitor\", '\\uf0d5'),\n    MONSTERSINC(\"whhgmz-monstersinc\", '\\uf3bd'),\n    MONSTRA(\"whhgmz-monstra\", '\\uf4ae'),\n    MOONFIRSTQUARTER(\"whhgmz-moonfirstquarter\", '\\uf52d'),\n    MOONFULL(\"whhgmz-moonfull\", '\\uf52f'),\n    MOONNEW(\"whhgmz-moonnew\", '\\uf52b'),\n    MOONORBIT(\"whhgmz-moonorbit\", '\\uf6a6'),\n    MOONTHIRDQUARTER(\"whhgmz-moonthirdquarter\", '\\uf531'),\n    MOONWANINGCRESCENT(\"whhgmz-moonwaningcrescent\", '\\uf532'),\n    MOONWANINGGIBBOUS(\"whhgmz-moonwaninggibbous\", '\\uf530'),\n    MOONWAXINGCRESCENT(\"whhgmz-moonwaxingcrescent\", '\\uf52c'),\n    MOONWAXINGGIBBOUS(\"whhgmz-moonwaxinggibbous\", '\\uf52e'),\n    MOON_NIGHT(\"whhgmz-moon-night\", '\\uf207'),\n    MOOTOOLS(\"whhgmz-mootools\", '\\uf5f8'),\n    MOOTOOLSTHREE(\"whhgmz-mootoolsthree\", '\\uf5fa'),\n    MOOTOOLSTWO(\"whhgmz-mootoolstwo\", '\\uf5f9'),\n    MOSQUE(\"whhgmz-mosque\", '\\uf537'),\n    MOUNTAINS(\"whhgmz-mountains\", '\\uf545'),\n    MOUSE(\"whhgmz-mouse\", '\\uf0d4'),\n    MOUSEALT(\"whhgmz-mousealt\", '\\uf126'),\n    MOUSTACHE(\"whhgmz-moustache\", '\\uf640'),\n    MOVE(\"whhgmz-move\", '\\uf322'),\n    MOVIECLAPPER(\"whhgmz-movieclapper\", '\\uf193'),\n    MOVIEREEL(\"whhgmz-moviereel\", '\\uf17f'),\n    MOVIEREELALT(\"whhgmz-moviereelalt\", '\\uf4bc'),\n    MUFFIN(\"whhgmz-muffin\", '\\uf363'),\n    MUG(\"whhgmz-mug\", '\\uf24e'),\n    MUSHROOM(\"whhgmz-mushroom\", '\\uf35e'),\n    MUSHROOMCLOUD(\"whhgmz-mushroomcloud\", '\\uf6e9'),\n    MUSIC(\"whhgmz-music\", '\\uf181'),\n    MUSICALT(\"whhgmz-musicalt\", '\\uf18d'),\n    MUSICSHEET(\"whhgmz-musicsheet\", '\\uf51e'),\n    MUSICTHREE(\"whhgmz-musicthree\", '\\uf49e'),\n    MUTEALT(\"whhgmz-mutealt\", '\\uf0e5'),\n    MUTEMIC(\"whhgmz-mutemic\", '\\uf789'),\n    MXENTRY(\"whhgmz-mxentry\", '\\uf07a'),\n    MYBB(\"whhgmz-mybb\", '\\uf065'),\n    MYMUSIC(\"whhgmz-mymusic\", '\\uf64c'),\n    MYPICTURES(\"whhgmz-mypictures\", '\\uf64b'),\n    MYSPACE(\"whhgmz-myspace\", '\\uf153'),\n    MYSQLALT(\"whhgmz-mysqlalt\", '\\uf5fc'),\n    MYSQLTHREE(\"whhgmz-mysqlthree\", '\\uf5fb'),\n    MYSQL_DOLPHIN(\"whhgmz-mysql-dolphin\", '\\uf076'),\n    MYVIDEOS(\"whhgmz-myvideos\", '\\uf64d'),\n    NAIL(\"whhgmz-nail\", '\\uf428'),\n    NAVIGATION(\"whhgmz-navigation\", '\\uf23a'),\n    NEOFOURJ(\"whhgmz-neofourj\", '\\uf5ff'),\n    NETWORK(\"whhgmz-network\", '\\uf0a6'),\n    NETWORKSIGNAL(\"whhgmz-networksignal\", '\\uf3a9'),\n    NETWORKSIGNALALT(\"whhgmz-networksignalalt\", '\\uf4e4'),\n    NEWS(\"whhgmz-news\", '\\uf256'),\n    NEWTAB(\"whhgmz-newtab\", '\\uf16f'),\n    NEWWINDOW(\"whhgmz-newwindow\", '\\uf16d'),\n    NEXT(\"whhgmz-next\", '\\uf18a'),\n    NEXUS(\"whhgmz-nexus\", '\\uf0e7'),\n    NFC(\"whhgmz-nfc\", '\\uf524'),\n    NINEGAG(\"whhgmz-ninegag\", '\\uf49c'),\n    NINTENDODS(\"whhgmz-nintendods\", '\\uf404'),\n    NOBORDERS(\"whhgmz-noborders\", '\\uf4da'),\n    NODEJS(\"whhgmz-nodejs\", '\\uf084'),\n    NOFLASH(\"whhgmz-noflash\", '\\uf61f'),\n    NOSQL(\"whhgmz-nosql\", '\\uf600'),\n    NOTEBOOK(\"whhgmz-notebook\", '\\uf765'),\n    NOTES(\"whhgmz-notes\", '\\uf0d7'),\n    NOTESDATE(\"whhgmz-notesdate\", '\\uf5c8'),\n    NOTESDATEALT(\"whhgmz-notesdatealt\", '\\uf5cc'),\n    NOTESLIST(\"whhgmz-noteslist\", '\\uf5c6'),\n    NOTESLISTALT(\"whhgmz-noteslistalt\", '\\uf5ca'),\n    NOTESLOCATION(\"whhgmz-noteslocation\", '\\uf5c9'),\n    NOTESLOCATIONALT(\"whhgmz-noteslocationalt\", '\\uf5cd'),\n    NOTESTASKS(\"whhgmz-notestasks\", '\\uf5c7'),\n    NOTESTASKSALT(\"whhgmz-notestasksalt\", '\\uf5cb'),\n    NOTIFICATION(\"whhgmz-notification\", '\\uf676'),\n    NOTIFICATIONBOTTOM(\"whhgmz-notificationbottom\", '\\uf144'),\n    NOTIFICATIONTOP(\"whhgmz-notificationtop\", '\\uf145'),\n    NUCLEARPLANT(\"whhgmz-nuclearplant\", '\\uf6f5'),\n    NUCLEUS(\"whhgmz-nucleus\", '\\uf4b3'),\n    NUMBERLIST(\"whhgmz-numberlist\", '\\uf4c3'),\n    NUT(\"whhgmz-nut\", '\\uf427'),\n    OBSERVATORY(\"whhgmz-observatory\", '\\uf6e2'),\n    OCTOLOADEREMPTY(\"whhgmz-octoloaderempty\", '\\uf7af'),\n    OCTOLOADERFIVE(\"whhgmz-octoloaderfive\", '\\uf7b4'),\n    OCTOLOADERFOUR(\"whhgmz-octoloaderfour\", '\\uf7b3'),\n    OCTOLOADERFULL(\"whhgmz-octoloaderfull\", '\\uf7b7'),\n    OCTOLOADERONE(\"whhgmz-octoloaderone\", '\\uf7b0'),\n    OCTOLOADERSEVEN(\"whhgmz-octoloaderseven\", '\\uf7b6'),\n    OCTOLOADERSIX(\"whhgmz-octoloadersix\", '\\uf7b5'),\n    OCTOLOADERTHREE(\"whhgmz-octoloaderthree\", '\\uf7b2'),\n    OCTOLOADERTWO(\"whhgmz-octoloadertwo\", '\\uf7b1'),\n    OFF(\"whhgmz-off\", '\\uf11d'),\n    OFFICECHAIR(\"whhgmz-officechair\", '\\uf26d'),\n    OFFICE_BUILDING(\"whhgmz-office-building\", '\\uf245'),\n    OK(\"whhgmz-ok\", '\\u2713'),\n    OK_CIRCLE(\"whhgmz-ok-circle\", '\\uf471'),\n    OK_SIGN(\"whhgmz-ok-sign\", '\\uf479'),\n    ONEUP(\"whhgmz-oneup\", '\\uf3b7'),\n    ONEUPALT(\"whhgmz-oneupalt\", '\\uf3b6'),\n    ONION(\"whhgmz-onion\", '\\uf630'),\n    OPENCART(\"whhgmz-opencart\", '\\uf060'),\n    OPENCLASSIFIEDS(\"whhgmz-openclassifieds\", '\\uf596'),\n    OPENFOLDERALT(\"whhgmz-openfolderalt\", '\\uf73e'),\n    OPENID(\"whhgmz-openid\", '\\uf528'),\n    OPENNEWWINDOW(\"whhgmz-opennewwindow\", '\\uf332'),\n    OPENSHARE(\"whhgmz-openshare\", '\\uf7a6'),\n    OPENSOURCE(\"whhgmz-opensource\", '\\uf585'),\n    OPENX(\"whhgmz-openx\", '\\uf598'),\n    ORANGE(\"whhgmz-orange\", '\\uf29e'),\n    ORANGEHRM(\"whhgmz-orangehrm\", '\\uf5ac'),\n    ORIGAMI(\"whhgmz-origami\", '\\uf583'),\n    OSCLASS(\"whhgmz-osclass\", '\\uf597'),\n    OSCOMMERCE(\"whhgmz-oscommerce\", '\\uf5a7'),\n    OUTBOX(\"whhgmz-outbox\", '\\uf179'),\n    OUTERBORDERS(\"whhgmz-outerborders\", '\\uf4e1'),\n    OUTGOINGCALL(\"whhgmz-outgoingcall\", '\\uf15e'),\n    OUTGOINGCALLALT(\"whhgmz-outgoingcallalt\", '\\uf74e'),\n    OXWALL(\"whhgmz-oxwall\", '\\uf06d'),\n    PACIFIER(\"whhgmz-pacifier\", '\\uf570'),\n    PACKARCHIVE(\"whhgmz-packarchive\", '\\uf5c1'),\n    PACMAN(\"whhgmz-pacman\", '\\uf2db'),\n    PAGEBACK(\"whhgmz-pageback\", '\\uf31e'),\n    PAGEBREAK(\"whhgmz-pagebreak\", '\\uf1cc'),\n    PAGECOOKERY(\"whhgmz-pagecookery\", '\\uf4bb'),\n    PAGEFORWARD(\"whhgmz-pageforward\", '\\uf31f'),\n    PAGESETUP(\"whhgmz-pagesetup\", '\\uf331'),\n    PAINTBRUSH(\"whhgmz-paintbrush\", '\\uf1e8'),\n    PAINTROLL(\"whhgmz-paintroll\", '\\uf1fa'),\n    PAINTROLLALT(\"whhgmz-paintrollalt\", '\\uf5d3'),\n    PALETTE_PAINTING(\"whhgmz-palette-painting\", '\\uf1b9'),\n    PANDA(\"whhgmz-panda\", '\\uf66b'),\n    PANORAMA(\"whhgmz-panorama\", '\\uf618'),\n    PANORAMAALT(\"whhgmz-panoramaalt\", '\\uf61a'),\n    PANORAMIO(\"whhgmz-panoramio\", '\\uf617'),\n    PANTIES(\"whhgmz-panties\", '\\uf754'),\n    PAPERBOAT(\"whhgmz-paperboat\", '\\uf511'),\n    PAPERCLIP(\"whhgmz-paperclip\", '\\uf284'),\n    PAPERCLIPALT(\"whhgmz-paperclipalt\", '\\uf285'),\n    PAPERCLIPVERTICAL(\"whhgmz-paperclipvertical\", '\\uf286'),\n    PAPERCUTTER(\"whhgmz-papercutter\", '\\uf657'),\n    PAPERPLANE(\"whhgmz-paperplane\", '\\uf296'),\n    PARENTHESES(\"whhgmz-parentheses\", '\\uf3c4'),\n    PARKEDDOMAIN(\"whhgmz-parkeddomain\", '\\uf055'),\n    PARKINGMETER(\"whhgmz-parkingmeter\", '\\uf5bf'),\n    PARTHENON(\"whhgmz-parthenon\", '\\uf749'),\n    PASSWORD(\"whhgmz-password\", '\\uf03e'),\n    PASSWORDALT(\"whhgmz-passwordalt\", '\\uf03f'),\n    PASTA(\"whhgmz-pasta\", '\\uf408'),\n    PASTEALT(\"whhgmz-pastealt\", '\\uf740'),\n    PATCH(\"whhgmz-patch\", '\\uf2a3'),\n    PATH(\"whhgmz-path\", '\\uf169'),\n    PATTERN(\"whhgmz-pattern\", '\\uf57d'),\n    PAUSE(\"whhgmz-pause\", '\\uf186'),\n    PAWN(\"whhgmz-pawn\", '\\uf2f8'),\n    PAW_PET(\"whhgmz-paw-pet\", '\\uf29d'),\n    PAYPAL(\"whhgmz-paypal\", '\\uf267'),\n    PEACE(\"whhgmz-peace\", '\\uf2a7'),\n    PEAR(\"whhgmz-pear\", '\\uf62e'),\n    PEBBLE(\"whhgmz-pebble\", '\\uf49d'),\n    PEN(\"whhgmz-pen\", '\\uf1ee'),\n    PENCIL(\"whhgmz-pencil\", '\\uf1b7'),\n    PEPPERONI(\"whhgmz-pepperoni\", '\\uf364'),\n    PERCENT(\"whhgmz-percent\", '\\u0025'),\n    PERFUME(\"whhgmz-perfume\", '\\uf634'),\n    PERLALT(\"whhgmz-perlalt\", '\\uf0b7'),\n    PERL_CAMEL(\"whhgmz-perl-camel\", '\\uf0b6'),\n    PGSQL(\"whhgmz-pgsql\", '\\uf5fd'),\n    PHONEALT(\"whhgmz-phonealt\", '\\uf15b'),\n    PHONEBOOK(\"whhgmz-phonebook\", '\\uf149'),\n    PHONEBOOKALT(\"whhgmz-phonebookalt\", '\\uf135'),\n    PHONEMIC(\"whhgmz-phonemic\", '\\uf391'),\n    PHONEOLD(\"whhgmz-phoneold\", '\\uf148'),\n    PHONESCREENSIZE(\"whhgmz-phonescreensize\", '\\uf674'),\n    PHONE_CALL(\"whhgmz-phone-call\", '\\uf14f'),\n    PHORUM(\"whhgmz-phorum\", '\\uf58d'),\n    PHOTOBUCKET(\"whhgmz-photobucket\", '\\uf4be'),\n    PHOTONINEFRAMES(\"whhgmz-photonineframes\", '\\uf7c1'),\n    PHOTOSHOP(\"whhgmz-photoshop\", '\\uf1cd'),\n    PHOTOSPHERE(\"whhgmz-photosphere\", '\\uf619'),\n    PHP(\"whhgmz-php\", '\\uf09c'),\n    PHPBB(\"whhgmz-phpbb\", '\\uf063'),\n    PHPBBALT(\"whhgmz-phpbbalt\", '\\uf4b8'),\n    PHPLIST(\"whhgmz-phplist\", '\\uf599'),\n    PHPMYFAQ(\"whhgmz-phpmyfaq\", '\\uf5af'),\n    PHPNUKE(\"whhgmz-phpnuke\", '\\uf48c'),\n    PHPPEAR(\"whhgmz-phppear\", '\\uf09b'),\n    PIANO(\"whhgmz-piano\", '\\uf19e'),\n    PICASA(\"whhgmz-picasa\", '\\uf79a'),\n    PICKAXE(\"whhgmz-pickaxe\", '\\uf6fb'),\n    PICTURE(\"whhgmz-picture\", '\\u22b7'),\n    PICTUREFRAME(\"whhgmz-pictureframe\", '\\uf41e'),\n    PIGGYBANK(\"whhgmz-piggybank\", '\\uf257'),\n    PIGPENA(\"whhgmz-pigpena\", '\\uf456'),\n    PIGPENB(\"whhgmz-pigpenb\", '\\uf457'),\n    PIGPENC(\"whhgmz-pigpenc\", '\\uf458'),\n    PIGPEND(\"whhgmz-pigpend\", '\\uf459'),\n    PIGPENE(\"whhgmz-pigpene\", '\\uf45a'),\n    PIGPENF(\"whhgmz-pigpenf\", '\\uf45b'),\n    PIGPENG(\"whhgmz-pigpeng\", '\\uf45c'),\n    PIGPENH(\"whhgmz-pigpenh\", '\\uf45d'),\n    PIGPENI(\"whhgmz-pigpeni\", '\\uf45e'),\n    PIGPENJ(\"whhgmz-pigpenj\", '\\uf45f'),\n    PIGPENK(\"whhgmz-pigpenk\", '\\uf460'),\n    PIGPENL(\"whhgmz-pigpenl\", '\\uf461'),\n    PIGPENM(\"whhgmz-pigpenm\", '\\uf462'),\n    PIGPENN(\"whhgmz-pigpenn\", '\\uf463'),\n    PIGPENO(\"whhgmz-pigpeno\", '\\uf464'),\n    PIGPENP(\"whhgmz-pigpenp\", '\\uf465'),\n    PIGPENQ(\"whhgmz-pigpenq\", '\\uf466'),\n    PIGPENR(\"whhgmz-pigpenr\", '\\uf467'),\n    PIGPENS(\"whhgmz-pigpens\", '\\uf468'),\n    PIGPENT(\"whhgmz-pigpent\", '\\uf469'),\n    PIGPENU(\"whhgmz-pigpenu\", '\\uf46a'),\n    PIGPENV(\"whhgmz-pigpenv\", '\\uf46b'),\n    PIGPENW(\"whhgmz-pigpenw\", '\\uf46c'),\n    PIGPENX(\"whhgmz-pigpenx\", '\\uf46d'),\n    PIGPENY(\"whhgmz-pigpeny\", '\\uf46e'),\n    PIGPENZ(\"whhgmz-pigpenz\", '\\uf46f'),\n    PILCROW(\"whhgmz-pilcrow\", '\\u00b6'),\n    PILL_ANTIVIRUSALT(\"whhgmz-pill-antivirusalt\", '\\uf0aa'),\n    PIMCORE(\"whhgmz-pimcore\", '\\uf589'),\n    PIN(\"whhgmz-pin\", '\\uf20a'),\n    PINTEREST(\"whhgmz-pinterest\", '\\uf678'),\n    PIPE(\"whhgmz-pipe\", '\\u01c0'),\n    PIVOTX(\"whhgmz-pivotx\", '\\uf4ba'),\n    PIWIGO(\"whhgmz-piwigo\", '\\uf0ad'),\n    PIXELARROW(\"whhgmz-pixelarrow\", '\\uf72d'),\n    PIXELAXE(\"whhgmz-pixelaxe\", '\\uf72e'),\n    PIXELBASTARDSWORD(\"whhgmz-pixelbastardsword\", '\\uf730'),\n    PIXELBATTLEAXE(\"whhgmz-pixelbattleaxe\", '\\uf732'),\n    PIXELBOW(\"whhgmz-pixelbow\", '\\uf72c'),\n    PIXELBROADSWORD(\"whhgmz-pixelbroadsword\", '\\uf727'),\n    PIXELCHEST(\"whhgmz-pixelchest\", '\\uf736'),\n    PIXELDAGGER(\"whhgmz-pixeldagger\", '\\uf72f'),\n    PIXELELIXIR(\"whhgmz-pixelelixir\", '\\uf735'),\n    PIXELHEART(\"whhgmz-pixelheart\", '\\uf738'),\n    PIXELLANCE(\"whhgmz-pixellance\", '\\uf731'),\n    PIXELPICKAXE(\"whhgmz-pixelpickaxe\", '\\uf72b'),\n    PIXELPOTION(\"whhgmz-pixelpotion\", '\\uf729'),\n    PIXELPOTIONALT(\"whhgmz-pixelpotionalt\", '\\uf72a'),\n    PIXELSHIELD(\"whhgmz-pixelshield\", '\\uf737'),\n    PIXELSHOVEL(\"whhgmz-pixelshovel\", '\\uf733'),\n    PIXELSPHERE(\"whhgmz-pixelsphere\", '\\uf734'),\n    PIXELSWORD(\"whhgmz-pixelsword\", '\\uf726'),\n    PIXELWAND(\"whhgmz-pixelwand\", '\\uf728'),\n    PIXIE(\"whhgmz-pixie\", '\\uf4a9'),\n    PIZZA(\"whhgmz-pizza\", '\\uf35c'),\n    PLACEADD(\"whhgmz-placeadd\", '\\uf221'),\n    PLACEALT(\"whhgmz-placealt\", '\\uf224'),\n    PLACEALTADD(\"whhgmz-placealtadd\", '\\uf225'),\n    PLACEALTDELETE(\"whhgmz-placealtdelete\", '\\uf226'),\n    PLACEDELETE(\"whhgmz-placedelete\", '\\uf222'),\n    PLACEIOS(\"whhgmz-placeios\", '\\uf20c'),\n    PLANE(\"whhgmz-plane\", '\\uf23e'),\n    PLANEALT(\"whhgmz-planealt\", '\\uf50d'),\n    PLANET(\"whhgmz-planet\", '\\uf533'),\n    PLANTALT(\"whhgmz-plantalt\", '\\uf510'),\n    PLAQUE(\"whhgmz-plaque\", '\\uf2b8'),\n    PLAY(\"whhgmz-play\", '\\uf184'),\n    PLAYSTATION(\"whhgmz-playstation\", '\\uf4e9'),\n    PLAYSTORE(\"whhgmz-playstore\", '\\uf255'),\n    PLAYVIDEO(\"whhgmz-playvideo\", '\\uf03d'),\n    PLAY_CIRCLE(\"whhgmz-play-circle\", '\\uf17e'),\n    PLIGG(\"whhgmz-pligg\", '\\uf492'),\n    PLOGGER(\"whhgmz-plogger\", '\\uf592'),\n    PLUG(\"whhgmz-plug\", '\\uf0ea'),\n    PLUGINALT(\"whhgmz-pluginalt\", '\\uf098'),\n    PLUS(\"whhgmz-plus\", '\\u002b'),\n    PLUSCIRCLES(\"whhgmz-pluscircles\", '\\uf638'),\n    PLUSGAMES(\"whhgmz-plusgames\", '\\uf63a'),\n    PLUSPAGES(\"whhgmz-pluspages\", '\\uf636'),\n    PLUS_SIGN(\"whhgmz-plus-sign\", '\\uf476'),\n    POCKET(\"whhgmz-pocket\", '\\uf16b'),\n    PODCAST(\"whhgmz-podcast\", '\\uf1a2'),\n    PODIUM(\"whhgmz-podium\", '\\uf54c'),\n    PODIUM_WINNER(\"whhgmz-podium-winner\", '\\uf2d6'),\n    POKEMON(\"whhgmz-pokemon\", '\\uf354'),\n    POLAROID(\"whhgmz-polaroid\", '\\uf602'),\n    POLICE(\"whhgmz-police\", '\\uf2aa'),\n    POLYGONLASSO(\"whhgmz-polygonlasso\", '\\uf397'),\n    POMMO(\"whhgmz-pommo\", '\\uf59b'),\n    POOP(\"whhgmz-poop\", '\\uf629'),\n    POOPALT(\"whhgmz-poopalt\", '\\uf62a'),\n    POPCORN(\"whhgmz-popcorn\", '\\uf503'),\n    PORTRAIT(\"whhgmz-portrait\", '\\uf580'),\n    POST(\"whhgmz-post\", '\\uf12e'),\n    POSTALT(\"whhgmz-postalt\", '\\uf130'),\n    POUND(\"whhgmz-pound\", '\\uf25b'),\n    POUNDALT(\"whhgmz-poundalt\", '\\uf25c'),\n    POUNDSQUARE(\"whhgmz-poundsquare\", '\\uf5e3'),\n    POWERJACK(\"whhgmz-powerjack\", '\\uf0fd'),\n    POWERPLUG(\"whhgmz-powerplug\", '\\uf0ed'),\n    POWERPLUGEU(\"whhgmz-powerplugeu\", '\\uf28b'),\n    POWERPLUGUS(\"whhgmz-powerplugus\", '\\uf28c'),\n    PRECISECURSOR(\"whhgmz-precisecursor\", '\\uf5d6'),\n    PRESENTATION(\"whhgmz-presentation\", '\\uf0c4'),\n    PRESTASHOP(\"whhgmz-prestashop\", '\\uf061'),\n    PRETZEL(\"whhgmz-pretzel\", '\\uf3cf'),\n    PREVIEW(\"whhgmz-preview\", '\\uf330'),\n    PREVIOUS(\"whhgmz-previous\", '\\uf18b'),\n    PRINT(\"whhgmz-print\", '\\uf125'),\n    PROCESSORTHREE(\"whhgmz-processorthree\", '\\uf4f2'),\n    PROGRAMCLOSE(\"whhgmz-programclose\", '\\uf4a2'),\n    PROGRAMOK(\"whhgmz-programok\", '\\uf4a3'),\n    PROJECTCOMPARE(\"whhgmz-projectcompare\", '\\uf763'),\n    PROJECTFORK(\"whhgmz-projectfork\", '\\uf761'),\n    PROJECTFORKDELETE(\"whhgmz-projectforkdelete\", '\\uf7bb'),\n    PROJECTFORKPRIVATE(\"whhgmz-projectforkprivate\", '\\uf7bc'),\n    PROJECTMERGE(\"whhgmz-projectmerge\", '\\uf762'),\n    PROJECTOR(\"whhgmz-projector\", '\\uf605'),\n    PROJECTPIER(\"whhgmz-projectpier\", '\\uf5a2'),\n    PROJECTSEND(\"whhgmz-projectsend\", '\\uf5b7'),\n    PROTECTEDDIRECTORY(\"whhgmz-protecteddirectory\", '\\uf04d'),\n    PSCIRCLE(\"whhgmz-pscircle\", '\\uf2bb'),\n    PSCURSOR(\"whhgmz-pscursor\", '\\uf2c3'),\n    PSDOWN(\"whhgmz-psdown\", '\\uf2c6'),\n    PSLEFT(\"whhgmz-psleft\", '\\uf2c7'),\n    PSLONE(\"whhgmz-pslone\", '\\uf2cc'),\n    PSLTWO(\"whhgmz-psltwo\", '\\uf2cd'),\n    PSRIGHT(\"whhgmz-psright\", '\\uf2c5'),\n    PSRONE(\"whhgmz-psrone\", '\\uf2ce'),\n    PSRTWO(\"whhgmz-psrtwo\", '\\uf2cf'),\n    PSSQUARE(\"whhgmz-pssquare\", '\\uf2bc'),\n    PSTRIANGLE(\"whhgmz-pstriangle\", '\\uf2bd'),\n    PSUP(\"whhgmz-psup\", '\\uf2c4'),\n    PSX(\"whhgmz-psx\", '\\uf2be'),\n    PULL(\"whhgmz-pull\", '\\uf089'),\n    PULLALT(\"whhgmz-pullalt\", '\\uf7c0'),\n    PULLREQUEST(\"whhgmz-pullrequest\", '\\uf7ba'),\n    PUMPJACK(\"whhgmz-pumpjack\", '\\uf6f4'),\n    PUNBB(\"whhgmz-punbb\", '\\uf58c'),\n    PUNISHER(\"whhgmz-punisher\", '\\uf343'),\n    PURSE(\"whhgmz-purse\", '\\uf54a'),\n    PUSH(\"whhgmz-push\", '\\uf088'),\n    PUSHALT(\"whhgmz-pushalt\", '\\uf7bf'),\n    PUSHBULLET(\"whhgmz-pushbullet\", '\\uf75d'),\n    PUZZLE_PLUGIN(\"whhgmz-puzzle-plugin\", '\\uf0a0'),\n    PYROCMS(\"whhgmz-pyrocms\", '\\uf493'),\n    PYTHON(\"whhgmz-python\", '\\uf071'),\n    QRCODE(\"whhgmz-qrcode\", '\\uf275'),\n    QUAKE(\"whhgmz-quake\", '\\uf355'),\n    QUEEN(\"whhgmz-queen\", '\\uf2fd'),\n    QUERY(\"whhgmz-query\", '\\uf08a'),\n    QUESTION_SIGN(\"whhgmz-question-sign\", '\\uf0a3'),\n    QUORA(\"whhgmz-quora\", '\\uf797'),\n    QUOTE(\"whhgmz-quote\", '\\uf12f'),\n    QUOTEDOWN(\"whhgmz-quotedown\", '\\uf329'),\n    QUOTEUP(\"whhgmz-quoteup\", '\\uf328'),\n    RABBIT(\"whhgmz-rabbit\", '\\uf624'),\n    RACEFLAG(\"whhgmz-raceflag\", '\\uf38e'),\n    RACQUET(\"whhgmz-racquet\", '\\uf2f2'),\n    RADAR(\"whhgmz-radar\", '\\uf57a'),\n    RADIO(\"whhgmz-radio\", '\\uf1a1'),\n    RADIOACTIVE(\"whhgmz-radioactive\", '\\uf282'),\n    RADIOBUTTON(\"whhgmz-radiobutton\", '\\uf312'),\n    RAILROAD(\"whhgmz-railroad\", '\\uf248'),\n    RAILTUNNEL(\"whhgmz-railtunnel\", '\\uf6f9'),\n    RAIN(\"whhgmz-rain\", '\\uf22f'),\n    RAM(\"whhgmz-ram\", '\\uf02c'),\n    RANDOM(\"whhgmz-random\", '\\uf188'),\n    RAPHAEL(\"whhgmz-raphael\", '\\uf5b9'),\n    RAR(\"whhgmz-rar\", '\\uf117'),\n    RASPBERRY(\"whhgmz-raspberry\", '\\uf368'),\n    RASPBERRYPI(\"whhgmz-raspberrypi\", '\\uf369'),\n    RAWACCESSLOGS(\"whhgmz-rawaccesslogs\", '\\uf0c1'),\n    RAZOR(\"whhgmz-razor\", '\\uf416'),\n    RDIO(\"whhgmz-rdio\", '\\uf51f'),\n    READEMAIL(\"whhgmz-reademail\", '\\uf173'),\n    READEMAILALT(\"whhgmz-reademailalt\", '\\uf498'),\n    RECORD(\"whhgmz-record\", '\\uf189'),\n    RECTANGLE(\"whhgmz-rectangle\", '\\u25ad'),\n    RECYCLE(\"whhgmz-recycle\", '\\uf297'),\n    REDAXSCRIPT(\"whhgmz-redaxscript\", '\\uf586'),\n    REDDIT(\"whhgmz-reddit\", '\\uf154'),\n    REDIRECT(\"whhgmz-redirect\", '\\uf054'),\n    REFRESH(\"whhgmz-refresh\", '\\uf078'),\n    REFRESHALT(\"whhgmz-refreshalt\", '\\uf66c'),\n    RELIABILITY(\"whhgmz-reliability\", '\\uf016'),\n    REMOTE(\"whhgmz-remote\", '\\uf298'),\n    REMOVE(\"whhgmz-remove\", '\\u00d7'),\n    REMOVEFOLDERALT(\"whhgmz-removefolderalt\", '\\uf73b'),\n    REMOVEFRIEND(\"whhgmz-removefriend\", '\\uf3db'),\n    REMOVETAGS(\"whhgmz-removetags\", '\\uf556'),\n    REMOVEUSERALT(\"whhgmz-removeuseralt\", '\\uf5d0'),\n    REMOVE_CIRCLE(\"whhgmz-remove-circle\", '\\uf470'),\n    REMOVE_SIGN(\"whhgmz-remove-sign\", '\\uf478'),\n    REPEAT(\"whhgmz-repeat\", '\\uf32b'),\n    REPEATONE(\"whhgmz-repeatone\", '\\uf196'),\n    REPORT(\"whhgmz-report\", '\\uf651'),\n    RESELLERHOSTING(\"whhgmz-resellerhosting\", '\\uf03a'),\n    RESIDENTEVIL(\"whhgmz-residentevil\", '\\uf350'),\n    RESISTOR(\"whhgmz-resistor\", '\\uf3eb'),\n    RESIZE(\"whhgmz-resize\", '\\uf1ed'),\n    RESIZEDOWNLEFT(\"whhgmz-resizedownleft\", '\\uf648'),\n    RESIZEDOWNRIGHT(\"whhgmz-resizedownright\", '\\uf647'),\n    RESIZEHORIZONTALALT(\"whhgmz-resizehorizontalalt\", '\\uf4e6'),\n    RESIZEUPLEFT(\"whhgmz-resizeupleft\", '\\uf645'),\n    RESIZEUPRIGHT(\"whhgmz-resizeupright\", '\\uf646'),\n    RESIZEVERTICALALT(\"whhgmz-resizeverticalalt\", '\\uf4e5'),\n    RESIZE_FULL(\"whhgmz-resize-full\", '\\uf325'),\n    RESIZE_HORIZONTAL(\"whhgmz-resize-horizontal\", '\\uf318'),\n    RESIZE_SMALL(\"whhgmz-resize-small\", '\\uf326'),\n    RESIZE_VERTICAL(\"whhgmz-resize-vertical\", '\\uf319'),\n    RESTART(\"whhgmz-restart\", '\\uf11f'),\n    RESTAURANTMENU(\"whhgmz-restaurantmenu\", '\\uf362'),\n    RESTORE(\"whhgmz-restore\", '\\uf30d'),\n    RESTRICTED(\"whhgmz-restricted\", '\\uf0ab'),\n    RETWEET(\"whhgmz-retweet\", '\\uf486'),\n    // RETWEET_ALT(\"whhgmz-retweet-alt\", '\\uf52a'),\n    RIGHTBORDER(\"whhgmz-rightborder\", '\\uf4de'),\n    RIM(\"whhgmz-rim\", '\\uf36f'),\n    RING(\"whhgmz-ring\", '\\u02da'),\n    ROAD(\"whhgmz-road\", '\\uf249'),\n    ROADSIGNLEFT(\"whhgmz-roadsignleft\", '\\uf240'),\n    ROADSIGN_ROADSIGNRIGHT(\"whhgmz-roadsign-roadsignright\", '\\uf21b'),\n    ROADTUNNEL(\"whhgmz-roadtunnel\", '\\uf6fa'),\n    ROBOCOP(\"whhgmz-robocop\", '\\uf357'),\n    ROCKET_LAUNCH(\"whhgmz-rocket-launch\", '\\uf29c'),\n    ROOK(\"whhgmz-rook\", '\\uf2fa'),\n    ROOT(\"whhgmz-root\", '\\uf33c'),\n    RORSCHACH(\"whhgmz-rorschach\", '\\uf358'),\n    ROTATECLOCKWISE(\"whhgmz-rotateclockwise\", '\\uf202'),\n    ROTATECOUNTERCLOCKWISE(\"whhgmz-rotatecounterclockwise\", '\\uf203'),\n    ROUBLE(\"whhgmz-rouble\", '\\uf4ca'),\n    ROUBLEALT(\"whhgmz-roublealt\", '\\uf5e8'),\n    ROUBLESQUARE(\"whhgmz-roublesquare\", '\\uf5e7'),\n    ROUNDCUBE(\"whhgmz-roundcube\", '\\uf59a'),\n    ROUNDRECTANGLE(\"whhgmz-roundrectangle\", '\\uf1bd'),\n    ROUTE(\"whhgmz-route\", '\\uf402'),\n    ROUTER(\"whhgmz-router\", '\\uf0e9'),\n    ROUTERALT(\"whhgmz-routeralt\", '\\uf4f7'),\n    RSS(\"whhgmz-rss\", '\\uf17b'),\n    RUBBERSTAMP(\"whhgmz-rubberstamp\", '\\uf274'),\n    RUBY(\"whhgmz-ruby\", '\\uf067'),\n    RUBYALT(\"whhgmz-rubyalt\", '\\uf769'),\n    RUDDER(\"whhgmz-rudder\", '\\uf739'),\n    RULER(\"whhgmz-ruler\", '\\uf1ef'),\n    SAD(\"whhgmz-sad\", '\\uf13d'),\n    SAFETYGOGGLES(\"whhgmz-safetygoggles\", '\\uf557'),\n    SAFETYPIN(\"whhgmz-safetypin\", '\\uf417'),\n    SALE(\"whhgmz-sale\", '\\uf4c8'),\n    SALEALT(\"whhgmz-salealt\", '\\uf549'),\n    SATELLITE(\"whhgmz-satellite\", '\\uf38a'),\n    SATELLITEDISH_REMOTEMYSQL(\"whhgmz-satellitedish-remotemysql\", '\\uf0c0'),\n    SAURUS(\"whhgmz-saurus\", '\\uf4ac'),\n    SAVETODRIVE(\"whhgmz-savetodrive\", '\\uf7e3'),\n    SAVE_FLOPPY(\"whhgmz-save-floppy\", '\\uf0c8'),\n    SCALES(\"whhgmz-scales\", '\\uf3fd'),\n    SCIENCE_ATOM(\"whhgmz-science-atom\", '\\uf2b0'),\n    SCISSORSALT(\"whhgmz-scissorsalt\", '\\uf5bc'),\n    SCOPEALT(\"whhgmz-scopealt\", '\\uf237'),\n    SCOPE_SCAN(\"whhgmz-scope-scan\", '\\uf212'),\n    SCREENSHOT(\"whhgmz-screenshot\", '\\uf109'),\n    SCREW(\"whhgmz-screw\", '\\uf426'),\n    SCREWDRIVER(\"whhgmz-screwdriver\", '\\uf292'),\n    SCREWDRIVERALT(\"whhgmz-screwdriveralt\", '\\uf293'),\n    SCRIPT(\"whhgmz-script\", '\\uf08d'),\n    SCRIPTALT(\"whhgmz-scriptalt\", '\\uf785'),\n    SD(\"whhgmz-sd\", '\\uf106'),\n    SDVIDEO(\"whhgmz-sdvideo\", '\\uf606'),\n    SEARCH(\"whhgmz-search\", '\\uf0c5'),\n    SEARCHDOCUMENT(\"whhgmz-searchdocument\", '\\uf419'),\n    SEARCHFOLDER(\"whhgmz-searchfolder\", '\\uf41a'),\n    SECURITYALT_SHIELDALT(\"whhgmz-securityalt-shieldalt\", '\\uf02e'),\n    SECURITY_SHIELD(\"whhgmz-security-shield\", '\\uf02d'),\n    SELECTIONADD(\"whhgmz-selectionadd\", '\\uf1b2'),\n    SELECTIONINTERSECT(\"whhgmz-selectionintersect\", '\\uf1b4'),\n    SELECTIONREMOVE(\"whhgmz-selectionremove\", '\\uf1b3'),\n    SELECTIONSYMBOL(\"whhgmz-selectionsymbol\", '\\uf7b8'),\n    SELECTION_RECTANGLESELECTION(\"whhgmz-selection-rectangleselection\", '\\uf1b0'),\n    SENDBACKWARD(\"whhgmz-sendbackward\", '\\uf680'),\n    SENDTOBACK(\"whhgmz-sendtoback\", '\\uf682'),\n    SEO(\"whhgmz-seo\", '\\uf030'),\n    SERVER(\"whhgmz-server\", '\\uf026'),\n    SERVERS(\"whhgmz-servers\", '\\uf027'),\n    SETTINGSANDROID(\"whhgmz-settingsandroid\", '\\uf309'),\n    SETTINGSFOUR_GEARSALT(\"whhgmz-settingsfour-gearsalt\", '\\uf306'),\n    SETTINGSTHREE_GEARS(\"whhgmz-settingsthree-gears\", '\\uf307'),\n    SETTINGSTWO_GEARALT(\"whhgmz-settingstwo-gearalt\", '\\uf308'),\n    SEXTANT(\"whhgmz-sextant\", '\\uf6ec'),\n    SHADES_SUNGLASSES(\"whhgmz-shades-sunglasses\", '\\uf294'),\n    SHAPES(\"whhgmz-shapes\", '\\uf1dd'),\n    SHARE(\"whhgmz-share\", '\\uf47d'),\n    SHAREALT(\"whhgmz-sharealt\", '\\uf147'),\n    SHAREDFILE(\"whhgmz-sharedfile\", '\\uf0ef'),\n    SHAREDHOSTING(\"whhgmz-sharedhosting\", '\\uf037'),\n    SHARETHREE(\"whhgmz-sharethree\", '\\uf414'),\n    SHARETRONIX(\"whhgmz-sharetronix\", '\\uf4c9'),\n    SHARETWO(\"whhgmz-sharetwo\", '\\uf147'),\n    SHARE_ALT(\"whhgmz-share-alt\", '\\uf16c'),\n    SHEEP(\"whhgmz-sheep\", '\\uf6fd'),\n    SHELL(\"whhgmz-shell\", '\\uf4f8'),\n    SHERIFF(\"whhgmz-sheriff\", '\\uf2a9'),\n    SHIPPING(\"whhgmz-shipping\", '\\uf23f'),\n    SHIRTBUTTON(\"whhgmz-shirtbutton\", '\\uf508'),\n    SHIRTBUTTONALT(\"whhgmz-shirtbuttonalt\", '\\uf509'),\n    SHIRTBUTTONTHREE(\"whhgmz-shirtbuttonthree\", '\\uf7a5'),\n    SHOEBOX(\"whhgmz-shoebox\", '\\uf49a'),\n    SHOPPING(\"whhgmz-shopping\", '\\uf010'),\n    SHOPPINGBAG(\"whhgmz-shoppingbag\", '\\uf273'),\n    SHOPPINGCARTALT(\"whhgmz-shoppingcartalt\", '\\uf4f5'),\n    SHOPPING_CART(\"whhgmz-shopping-cart\", '\\uf035'),\n    SHORTCUT(\"whhgmz-shortcut\", '\\uf043'),\n    SHOVEL(\"whhgmz-shovel\", '\\uf290'),\n    SHREDDER(\"whhgmz-shredder\", '\\uf27c'),\n    SHUTDOWN(\"whhgmz-shutdown\", '\\uf11e'),\n    SHUTTLE(\"whhgmz-shuttle\", '\\uf6df'),\n    SIDEBAR(\"whhgmz-sidebar\", '\\uf124'),\n    SIDU(\"whhgmz-sidu\", '\\uf5b5'),\n    SIGNAL(\"whhgmz-signal\", '\\uf100'),\n    SILVERSTRIPE(\"whhgmz-silverstripe\", '\\uf4b1'),\n    SIM(\"whhgmz-sim\", '\\uf0e1'),\n    SIMALT(\"whhgmz-simalt\", '\\uf121'),\n    SIMCARDTHREE(\"whhgmz-simcardthree\", '\\uf748'),\n    SIMPLEPIE(\"whhgmz-simplepie\", '\\uf5b6'),\n    SIXTEENTONINE(\"whhgmz-sixteentonine\", '\\uf621'),\n    SIZZLE(\"whhgmz-sizzle\", '\\uf5ba'),\n    SKITCH(\"whhgmz-skitch\", '\\uf65c'),\n    SKRILL(\"whhgmz-skrill\", '\\uf268'),\n    SKULL(\"whhgmz-skull\", '\\uf38d'),\n    SKYPE(\"whhgmz-skype\", '\\uf141'),\n    SKYPEAWAY(\"whhgmz-skypeaway\", '\\uf39f'),\n    SKYPEBUSY(\"whhgmz-skypebusy\", '\\uf3a0'),\n    SKYPEOFFLINE(\"whhgmz-skypeoffline\", '\\uf3a1'),\n    SKYPEONLINE(\"whhgmz-skypeonline\", '\\uf39e'),\n    SLEEP(\"whhgmz-sleep\", '\\uf642'),\n    SLIDERONEFULL(\"whhgmz-slideronefull\", '\\uf4d7'),\n    SLIDERSASC(\"whhgmz-slidersasc\", '\\uf4d6'),\n    SLIDERSDESC(\"whhgmz-slidersdesc\", '\\uf4d5'),\n    SLIDERSFULL(\"whhgmz-slidersfull\", '\\uf4d4'),\n    SLIDERSMIDDLE(\"whhgmz-slidersmiddle\", '\\uf4d3'),\n    SLIDERSOFF(\"whhgmz-slidersoff\", '\\uf4d2'),\n    SLIDERTHREEFULL(\"whhgmz-sliderthreefull\", '\\uf4d9'),\n    SLIDERTWOFULL(\"whhgmz-slidertwofull\", '\\uf4d8'),\n    SMALLER(\"whhgmz-smaller\", '\\uf30b'),\n    SMARTY(\"whhgmz-smarty\", '\\uf5b4'),\n    SMF(\"whhgmz-smf\", '\\uf062'),\n    SMILE(\"whhgmz-smile\", '\\u263a'),\n    SNAPTODOT(\"whhgmz-snaptodot\", '\\uf658'),\n    SNAPTOGRID(\"whhgmz-snaptogrid\", '\\uf659'),\n    SNEWS(\"whhgmz-snews\", '\\uf4af'),\n    SNOOZE(\"whhgmz-snooze\", '\\uf67e'),\n    SNOW(\"whhgmz-snow\", '\\uf22e'),\n    SNOWMAN(\"whhgmz-snowman\", '\\uf37c'),\n    SOCIALNETWORK(\"whhgmz-socialnetwork\", '\\uf03b'),\n    SODACUP(\"whhgmz-sodacup\", '\\uf534'),\n    SOFTWARE(\"whhgmz-software\", '\\uf09a'),\n    SOLARPANEL(\"whhgmz-solarpanel\", '\\uf6f6'),\n    SOLARSYSTEM(\"whhgmz-solarsystem\", '\\uf4a5'),\n    SORTBYNAMEASCENDING_ATOZ(\"whhgmz-sortbynameascending-atoz\", '\\uf1c2'),\n    SORTBYNAMEDESCENDING_ZTOA(\"whhgmz-sortbynamedescending-ztoa\", '\\uf1c1'),\n    SORTBYSIZEASCENDING(\"whhgmz-sortbysizeascending\", '\\uf1c3'),\n    SORTBYSIZEDESCENDING(\"whhgmz-sortbysizedescending\", '\\uf1c4'),\n    SOUNDCLOUD(\"whhgmz-soundcloud\", '\\uf679'),\n    SOUNDLEFT(\"whhgmz-soundleft\", '\\uf7e2'),\n    SOUNDRIGHT(\"whhgmz-soundright\", '\\uf7e1'),\n    SOUNDWAVE(\"whhgmz-soundwave\", '\\uf194'),\n    SOUP(\"whhgmz-soup\", '\\uf3d1'),\n    SPACEINVADERS(\"whhgmz-spaceinvaders\", '\\uf352'),\n    SPADES(\"whhgmz-spades\", '\\uf2f5'),\n    SPAM(\"whhgmz-spam\", '\\uf047'),\n    SPAMALT(\"whhgmz-spamalt\", '\\uf048'),\n    SPAWN(\"whhgmz-spawn\", '\\uf344'),\n    SPEAKER(\"whhgmz-speaker\", '\\uf372'),\n    SPEAKERALT(\"whhgmz-speakeralt\", '\\uf609'),\n    SPEED(\"whhgmz-speed\", '\\uf40b'),\n    SPEEDALT(\"whhgmz-speedalt\", '\\uf784'),\n    SPHERE(\"whhgmz-sphere\", '\\uf4eb'),\n    SPIDER(\"whhgmz-spider\", '\\uf346'),\n    SPIDERMAN(\"whhgmz-spiderman\", '\\uf347'),\n    SPIDERWEB(\"whhgmz-spiderweb\", '\\uf53e'),\n    SPLIT(\"whhgmz-split\", '\\uf335'),\n    SPLITALT(\"whhgmz-splitalt\", '\\uf4a4'),\n    SPLITTHREE(\"whhgmz-splitthree\", '\\uf786'),\n    SPOCK(\"whhgmz-spock\", '\\uf6ed'),\n    SPOON(\"whhgmz-spoon\", '\\uf213'),\n    SPOTIFY(\"whhgmz-spotify\", '\\uf520'),\n    SPRAY(\"whhgmz-spray\", '\\uf1c7'),\n    SPREADSHEET(\"whhgmz-spreadsheet\", '\\uf0c3'),\n    SPUTNIK(\"whhgmz-sputnik\", '\\uf6eb'),\n    SQUARE0(\"whhgmz-square0\", '\\uf6bb'),\n    SQUARE1(\"whhgmz-square1\", '\\uf6bc'),\n    SQUARE2(\"whhgmz-square2\", '\\uf6bd'),\n    SQUARE3(\"whhgmz-square3\", '\\uf6be'),\n    SQUARE4(\"whhgmz-square4\", '\\uf6bf'),\n    SQUARE5(\"whhgmz-square5\", '\\uf6c0'),\n    SQUARE6(\"whhgmz-square6\", '\\uf6c1'),\n    SQUARE7(\"whhgmz-square7\", '\\uf6c2'),\n    SQUARE8(\"whhgmz-square8\", '\\uf6c3'),\n    SQUARE9(\"whhgmz-square9\", '\\uf6c4'),\n    SQUAREA(\"whhgmz-squarea\", '\\uf6c5'),\n    SQUAREAPP(\"whhgmz-squareapp\", '\\uf26f'),\n    SQUAREB(\"whhgmz-squareb\", '\\uf6c6'),\n    SQUAREBACK(\"whhgmz-squareback\", '\\uf4fe'),\n    SQUAREBOOKMARK(\"whhgmz-squarebookmark\", '\\uf699'),\n    SQUAREBRACKETS(\"whhgmz-squarebrackets\", '\\uf0b3'),\n    SQUAREC(\"whhgmz-squarec\", '\\uf6c7'),\n    SQUARECOMMENT(\"whhgmz-squarecomment\", '\\uf697'),\n    SQUARED(\"whhgmz-squared\", '\\uf6c8'),\n    SQUAREDRIBBBLE(\"whhgmz-squaredribbble\", '\\uf7e8'),\n    SQUAREE(\"whhgmz-squaree\", '\\uf6c9'),\n    SQUAREF(\"whhgmz-squaref\", '\\uf6ca'),\n    SQUAREFORWARD(\"whhgmz-squareforward\", '\\uf4fd'),\n    SQUAREG(\"whhgmz-squareg\", '\\uf6cb'),\n    SQUAREGITHUB(\"whhgmz-squaregithub\", '\\uf760'),\n    SQUAREH(\"whhgmz-squareh\", '\\uf6cc'),\n    SQUAREHEART(\"whhgmz-squareheart\", '\\uf695'),\n    SQUAREI(\"whhgmz-squarei\", '\\uf6cd'),\n    SQUAREJ(\"whhgmz-squarej\", '\\uf6ce'),\n    SQUAREK(\"whhgmz-squarek\", '\\uf6cf'),\n    SQUAREL(\"whhgmz-squarel\", '\\uf6d0'),\n    SQUARELIKE(\"whhgmz-squarelike\", '\\uf698'),\n    SQUAREM(\"whhgmz-squarem\", '\\uf6d1'),\n    SQUAREN(\"whhgmz-squaren\", '\\uf6d2'),\n    SQUARENEXT(\"whhgmz-squarenext\", '\\uf4ff'),\n    SQUAREO(\"whhgmz-squareo\", '\\uf6d3'),\n    SQUAREP(\"whhgmz-squarep\", '\\uf6d4'),\n    SQUAREPAUSE(\"whhgmz-squarepause\", '\\uf4fb'),\n    SQUAREPLAY(\"whhgmz-squareplay\", '\\uf4f9'),\n    SQUAREPREVIOUS(\"whhgmz-squareprevious\", '\\uf500'),\n    SQUAREQ(\"whhgmz-squareq\", '\\uf6d5'),\n    SQUAREQUORA(\"whhgmz-squarequora\", '\\uf798'),\n    SQUARER(\"whhgmz-squarer\", '\\uf6d6'),\n    SQUARERECORD(\"whhgmz-squarerecord\", '\\uf4fc'),\n    SQUARES(\"whhgmz-squares\", '\\uf6d7'),\n    SQUARESEARCH(\"whhgmz-squaresearch\", '\\uf69a'),\n    SQUARESETTINGS(\"whhgmz-squaresettings\", '\\uf69b'),\n    SQUARESTAR(\"whhgmz-squarestar\", '\\uf696'),\n    SQUARESTOP(\"whhgmz-squarestop\", '\\uf4fa'),\n    SQUARET(\"whhgmz-squaret\", '\\uf6d8'),\n    SQUARETWITTER(\"whhgmz-squaretwitter\", '\\uf7a0'),\n    SQUAREU(\"whhgmz-squareu\", '\\uf6d9'),\n    SQUAREV(\"whhgmz-squarev\", '\\uf6da'),\n    SQUAREVIBER(\"whhgmz-squareviber\", '\\uf77e'),\n    SQUAREVIMEO(\"whhgmz-squarevimeo\", '\\uf79f'),\n    SQUAREVOICE(\"whhgmz-squarevoice\", '\\uf69c'),\n    SQUAREW(\"whhgmz-squarew\", '\\uf6db'),\n    SQUAREX(\"whhgmz-squarex\", '\\uf6dc'),\n    SQUAREY(\"whhgmz-squarey\", '\\uf6dd'),\n    SQUAREZ(\"whhgmz-squarez\", '\\uf6de'),\n    SQUAREZERPLY(\"whhgmz-squarezerply\", '\\uf79d'),\n    SSH(\"whhgmz-ssh\", '\\uf04e'),\n    SSLMANAGER(\"whhgmz-sslmanager\", '\\uf04f'),\n    STACKS(\"whhgmz-stacks\", '\\uf4c1'),\n    STADIUM(\"whhgmz-stadium\", '\\uf3d6'),\n    STAIRSDOWN(\"whhgmz-stairsdown\", '\\uf4a0'),\n    STAIRSUP(\"whhgmz-stairsup\", '\\uf49f'),\n    STAMP(\"whhgmz-stamp\", '\\uf242'),\n    STAMPALT(\"whhgmz-stampalt\", '\\uf243'),\n    STAR(\"whhgmz-star\", '\\uf13a'),\n    STAREMPTY(\"whhgmz-starempty\", '\\uf2de'),\n    STARFULL(\"whhgmz-starfull\", '\\uf2e0'),\n    STARHALF(\"whhgmz-starhalf\", '\\uf2df'),\n    STAR_EMPTY(\"whhgmz-star-empty\", '\\uf13b'),\n    STATISTICS(\"whhgmz-statistics\", '\\uf4f4'),\n    STEAK(\"whhgmz-steak\", '\\uf360'),\n    STEAM(\"whhgmz-steam\", '\\uf2dd'),\n    STEAMALT(\"whhgmz-steamalt\", '\\uf644'),\n    STEP_BACKWARD(\"whhgmz-step-backward\", '\\uf198'),\n    STEP_FORWARD(\"whhgmz-step-forward\", '\\uf197'),\n    STICKER(\"whhgmz-sticker\", '\\uf3f5'),\n    STICKYNOTE(\"whhgmz-stickynote\", '\\uf60d'),\n    STICKYNOTEALT(\"whhgmz-stickynotealt\", '\\uf60e'),\n    STILETTO(\"whhgmz-stiletto\", '\\uf429'),\n    STOCKDOWN(\"whhgmz-stockdown\", '\\uf252'),\n    STOCKS(\"whhgmz-stocks\", '\\uf250'),\n    STOCKUP(\"whhgmz-stockup\", '\\uf251'),\n    STOMACH(\"whhgmz-stomach\", '\\uf3e1'),\n    STOP(\"whhgmz-stop\", '\\uf185'),\n    STOPWATCH(\"whhgmz-stopwatch\", '\\uf219'),\n    STORAGEALT_DRAWER(\"whhgmz-storagealt-drawer\", '\\uf012'),\n    STORAGE_BOX(\"whhgmz-storage-box\", '\\uf011'),\n    STORE(\"whhgmz-store\", '\\uf272'),\n    STORM(\"whhgmz-storm\", '\\uf230'),\n    STOVE(\"whhgmz-stove\", '\\uf371'),\n    STRAWBERRY(\"whhgmz-strawberry\", '\\uf3f3'),\n    STRIKETHROUGH(\"whhgmz-strikethrough\", '\\uf1f7'),\n    STROLLER(\"whhgmz-stroller\", '\\uf55a'),\n    STUDENT_SCHOOL(\"whhgmz-student-school\", '\\uf288'),\n    STUMBLEUPON(\"whhgmz-stumbleupon\", '\\uf40c'),\n    SUBDOMAIN(\"whhgmz-subdomain\", '\\uf052'),\n    SUBMARINE(\"whhgmz-submarine\", '\\uf373'),\n    SUBRION(\"whhgmz-subrion\", '\\uf48f'),\n    SUBSCRIPT(\"whhgmz-subscript\", '\\uf1ea'),\n    SUBTITLES(\"whhgmz-subtitles\", '\\uf7c6'),\n    SUBTITLESOFF(\"whhgmz-subtitlesoff\", '\\uf7c7'),\n    SUBTRACTSHAPE(\"whhgmz-subtractshape\", '\\uf1fe'),\n    SUM(\"whhgmz-sum\", '\\uf33b'),\n    SUNNYSIDEUP(\"whhgmz-sunnysideup\", '\\uf365'),\n    SUNRISE(\"whhgmz-sunrise\", '\\uf6e5'),\n    SUNSET(\"whhgmz-sunset\", '\\uf6e6'),\n    SUN_DAY(\"whhgmz-sun-day\", '\\uf206'),\n    SUPERMAN(\"whhgmz-superman\", '\\uf33f'),\n    SUPERSCRIPT(\"whhgmz-superscript\", '\\uf1eb'),\n    SUPPORT(\"whhgmz-support\", '\\uf013'),\n    SUPPORTALT(\"whhgmz-supportalt\", '\\uf014'),\n    SURVEY(\"whhgmz-survey\", '\\uf6b9'),\n    SWIPEDOWN(\"whhgmz-swipedown\", '\\uf7cd'),\n    SWIPEUP(\"whhgmz-swipeup\", '\\uf7cc'),\n    SWITCH(\"whhgmz-switch\", '\\uf28a'),\n    SWITCHOFF(\"whhgmz-switchoff\", '\\uf32d'),\n    SWITCHOFFALT(\"whhgmz-switchoffalt\", '\\uf28e'),\n    SWITCHON(\"whhgmz-switchon\", '\\uf32c'),\n    SWITCHONALT(\"whhgmz-switchonalt\", '\\uf28d'),\n    SWORD(\"whhgmz-sword\", '\\uf2ed'),\n    SYMPHONY(\"whhgmz-symphony\", '\\uf4b5'),\n    SYNC(\"whhgmz-sync\", '\\uf0bd'),\n    SYNCALT(\"whhgmz-syncalt\", '\\uf11c'),\n    SYNCKEEPLOCAL(\"whhgmz-synckeeplocal\", '\\uf33e'),\n    SYNCKEEPSERVER(\"whhgmz-synckeepserver\", '\\uf33d'),\n    SYRINGE_ANTIVIRUS(\"whhgmz-syringe-antivirus\", '\\uf0a9'),\n    SYSTEMFOLDER(\"whhgmz-systemfolder\", '\\uf64e'),\n    TABLET(\"whhgmz-tablet\", '\\uf118'),\n    TABLETENNIS_PINGPONG(\"whhgmz-tabletennis-pingpong\", '\\uf2f0'),\n    TABLETSCREENSIZE(\"whhgmz-tabletscreensize\", '\\uf675'),\n    TACO(\"whhgmz-taco\", '\\uf3cd'),\n    TAG(\"whhgmz-tag\", '\\uf032'),\n    TAGALT_PRICEALT(\"whhgmz-tagalt-pricealt\", '\\uf264'),\n    TAGGED(\"whhgmz-tagged\", '\\uf758'),\n    TAGS(\"whhgmz-tags\", '\\uf482'),\n    TAGVERTICAL(\"whhgmz-tagvertical\", '\\uf15f'),\n    TALLGLASS(\"whhgmz-tallglass\", '\\uf540'),\n    TAMPERMONKEY(\"whhgmz-tampermonkey\", '\\uf75c'),\n    TANK(\"whhgmz-tank\", '\\uf423'),\n    TARGET(\"whhgmz-target\", '\\uf2a6'),\n    TASKFREAK(\"whhgmz-taskfreak\", '\\uf5a3'),\n    TASKMANAGER_LOGPROGRAMS(\"whhgmz-taskmanager-logprograms\", '\\uf04b'),\n    TASKS(\"whhgmz-tasks\", '\\uf0e0'),\n    TAXI(\"whhgmz-taxi\", '\\uf3a4'),\n    TEA(\"whhgmz-tea\", '\\uf3cb'),\n    TEAMVIEWER(\"whhgmz-teamviewer\", '\\uf77f'),\n    TEAPOT(\"whhgmz-teapot\", '\\uf42c'),\n    TECHNORATI(\"whhgmz-technorati\", '\\uf4bf'),\n    TECTILE(\"whhgmz-tectile\", '\\uf683'),\n    TEDDYBEAR(\"whhgmz-teddybear\", '\\uf559'),\n    TELESCOPE(\"whhgmz-telescope\", '\\uf3ef'),\n    TEMPERATUREALT_THERMOMETERALT(\"whhgmz-temperaturealt-thermometeralt\", '\\uf20e'),\n    TEMPERATURE_THERMOMETER(\"whhgmz-temperature-thermometer\", '\\uf20d'),\n    TEMPLE(\"whhgmz-temple\", '\\uf759'),\n    TENNIS(\"whhgmz-tennis\", '\\uf2ea'),\n    TENT_CAMPING(\"whhgmz-tent-camping\", '\\uf215'),\n    TERMINAL(\"whhgmz-terminal\", '\\uf114'),\n    TERMINALALT(\"whhgmz-terminalalt\", '\\uf5c3'),\n    TETHERING(\"whhgmz-tethering\", '\\uf0f1'),\n    TETRISONE(\"whhgmz-tetrisone\", '\\uf34b'),\n    TETRISTHREE(\"whhgmz-tetristhree\", '\\uf34d'),\n    TETRISTWO(\"whhgmz-tetristwo\", '\\uf34c'),\n    TEXTCURSOR(\"whhgmz-textcursor\", '\\uf5d4'),\n    TEXTFIELD(\"whhgmz-textfield\", '\\uf5d5'),\n    TEXTLAYER(\"whhgmz-textlayer\", '\\uf688'),\n    TEXTURE(\"whhgmz-texture\", '\\uf512'),\n    TEXT_HEIGHT(\"whhgmz-text-height\", '\\uf1f8'),\n    TEXT_WIDTH(\"whhgmz-text-width\", '\\uf1f9'),\n    TH(\"whhgmz-th\", '\\uf110'),\n    THEATHER(\"whhgmz-theather\", '\\uf39c'),\n    THEME_STYLE(\"whhgmz-theme-style\", '\\uf041'),\n    THEVERGE(\"whhgmz-theverge\", '\\uf4c0'),\n    THINKING(\"whhgmz-thinking\", '\\uf5db'),\n    THISSIDEUP(\"whhgmz-thissideup\", '\\uf41d'),\n    THREECOLUMNS(\"whhgmz-threecolumns\", '\\uf1ab'),\n    THREED(\"whhgmz-threed\", '\\uf57b'),\n    THREEG(\"whhgmz-threeg\", '\\uf76f'),\n    THREETOFOUR(\"whhgmz-threetofour\", '\\uf620'),\n    THUMBS_DOWN(\"whhgmz-thumbs-down\", '\\uf139'),\n    THUMBS_UP(\"whhgmz-thumbs-up\", '\\uf138'),\n    TH_LARGE(\"whhgmz-th-large\", '\\uf112'),\n    TH_LIST(\"whhgmz-th-list\", '\\uf113'),\n    TICKET(\"whhgmz-ticket\", '\\uf3dc'),\n    TICTACTOE(\"whhgmz-tictactoe\", '\\uf39a'),\n    TIDEFALL(\"whhgmz-tidefall\", '\\uf6e8'),\n    TIDERISE(\"whhgmz-tiderise\", '\\uf6e7'),\n    TIE_BUSINESS(\"whhgmz-tie-business\", '\\u2040'),\n    TIKIWIKI(\"whhgmz-tikiwiki\", '\\uf491'),\n    TIME(\"whhgmz-time\", '\\uf210'),\n    TIMELINE(\"whhgmz-timeline\", '\\uf253'),\n    TIMER(\"whhgmz-timer\", '\\uf61b'),\n    TINT(\"whhgmz-tint\", '\\uf208'),\n    TOAST(\"whhgmz-toast\", '\\uf2ad'),\n    TOILETPAPER(\"whhgmz-toiletpaper\", '\\uf384'),\n    TOMATOCART(\"whhgmz-tomatocart\", '\\uf5a9'),\n    TOOLS(\"whhgmz-tools\", '\\uf4a7'),\n    TOOTH(\"whhgmz-tooth\", '\\uf3de'),\n    TOOTHBRUSH(\"whhgmz-toothbrush\", '\\uf385'),\n    TOPBORDER(\"whhgmz-topborder\", '\\uf4dc'),\n    TOPHAT(\"whhgmz-tophat\", '\\uf3f0'),\n    TORCH(\"whhgmz-torch\", '\\uf60f'),\n    TORIGATE(\"whhgmz-torigate\", '\\uf411'),\n    TORNADO(\"whhgmz-tornado\", '\\uf670'),\n    TOUCHPAD(\"whhgmz-touchpad\", '\\uf115'),\n    TRAFFICLIGHT(\"whhgmz-trafficlight\", '\\uf22a'),\n    TRAGEDY(\"whhgmz-tragedy\", '\\uf539'),\n    TRAILOR(\"whhgmz-trailor\", '\\uf53b'),\n    TRAIN(\"whhgmz-train\", '\\uf499'),\n    TRANSFORM(\"whhgmz-transform\", '\\uf1a6'),\n    TRAQ(\"whhgmz-traq\", '\\uf5a5'),\n    TRASH(\"whhgmz-trash\", '\\uf0ce'),\n    TRASHEMPTY(\"whhgmz-trashempty\", '\\uf0cf'),\n    TRASHFULL(\"whhgmz-trashfull\", '\\uf0d0'),\n    TRAVEL(\"whhgmz-travel\", '\\uf422'),\n    TREEDIAGRAM(\"whhgmz-treediagram\", '\\uf0ec'),\n    TREEORNAMENT(\"whhgmz-treeornament\", '\\uf37e'),\n    TREETHREE(\"whhgmz-treethree\", '\\uf5c0'),\n    TRIANGLE(\"whhgmz-triangle\", '\\u25b3'),\n    TROJAN(\"whhgmz-trojan\", '\\uf555'),\n    TROLLEYEMPTY(\"whhgmz-trolleyempty\", '\\uf5f7'),\n    TROLLEYFULL(\"whhgmz-trolleyfull\", '\\uf5f4'),\n    TROLLEYLOAD(\"whhgmz-trolleyload\", '\\uf5f5'),\n    TROLLEYUNLOAD(\"whhgmz-trolleyunload\", '\\uf5f6'),\n    TRON(\"whhgmz-tron\", '\\uf34f'),\n    TROPHY(\"whhgmz-trophy\", '\\uf2d7'),\n    TRUCK(\"whhgmz-truck\", '\\uf211'),\n    TRUMPET(\"whhgmz-trumpet\", '\\uf375'),\n    TSHIRT(\"whhgmz-tshirt\", '\\uf53c'),\n    TUMBLR(\"whhgmz-tumblr\", '\\uf164'),\n    TUNEIN(\"whhgmz-tunein\", '\\uf780'),\n    TUNEINALT(\"whhgmz-tuneinalt\", '\\uf781'),\n    TURNIP(\"whhgmz-turnip\", '\\uf631'),\n    TURNLEFT(\"whhgmz-turnleft\", '\\uf6b5'),\n    TURNOFFALARM(\"whhgmz-turnoffalarm\", '\\uf67d'),\n    TURNRIGHT(\"whhgmz-turnright\", '\\uf6b4'),\n    TV(\"whhgmz-tv\", '\\uf1a4'),\n    TWITTER(\"whhgmz-twitter\", '\\uf16a'),\n    TWOCOLUMNSLEFT(\"whhgmz-twocolumnsleft\", '\\uf1a9'),\n    TWOCOLUMNSLEFTALT(\"whhgmz-twocolumnsleftalt\", '\\uf1aa'),\n    TWOCOLUMNSRIGHT(\"whhgmz-twocolumnsright\", '\\uf1a7'),\n    TWOCOLUMNSRIGHTALT(\"whhgmz-twocolumnsrightalt\", '\\uf1a8'),\n    TWOFINGERSWIPEDOWN(\"whhgmz-twofingerswipedown\", '\\uf7ce'),\n    TWOFINGERSWIPEUP(\"whhgmz-twofingerswipeup\", '\\uf7cf'),\n    TWOG(\"whhgmz-twog\", '\\uf76e'),\n    TYPOTHREE(\"whhgmz-typothree\", '\\uf490'),\n    UBUNTU(\"whhgmz-ubuntu\", '\\uf120'),\n    UMBRELLA(\"whhgmz-umbrella\", '\\uf218'),\n    UNDERLINE(\"whhgmz-underline\", '\\uf1f6'),\n    UNDO(\"whhgmz-undo\", '\\uf32a'),\n    UNLOCK(\"whhgmz-unlock\", '\\uf0bf'),\n    UNPACKARCHIVE(\"whhgmz-unpackarchive\", '\\uf5c2'),\n    UPLEFT(\"whhgmz-upleft\", '\\uf302'),\n    UPLOAD(\"whhgmz-upload\", '\\uf47a'),\n    UPLOADALT(\"whhgmz-uploadalt\", '\\uf11b'),\n    UPRIGHT(\"whhgmz-upright\", '\\uf303'),\n    UPTIME(\"whhgmz-uptime\", '\\uf017'),\n    USB(\"whhgmz-usb\", '\\uf10d'),\n    USBALT(\"whhgmz-usbalt\", '\\uf10e'),\n    USBFLASH(\"whhgmz-usbflash\", '\\uf60b'),\n    USBPLUG(\"whhgmz-usbplug\", '\\uf10f'),\n    USER(\"whhgmz-user\", '\\uf133'),\n    USERALT(\"whhgmz-useralt\", '\\uf5ce'),\n    USERFILTER(\"whhgmz-userfilter\", '\\uf05d'),\n    USFOOTBALL(\"whhgmz-usfootball\", '\\uf2ec'),\n    VALUE_COINS(\"whhgmz-value-coins\", '\\uf018'),\n    VANILLACMS(\"whhgmz-vanillacms\", '\\uf4b6'),\n    VAULTTHREE(\"whhgmz-vaultthree\", '\\uf690'),\n    VECTOR(\"whhgmz-vector\", '\\uf1b6'),\n    VECTORALT(\"whhgmz-vectoralt\", '\\uf689'),\n    VENDETTA(\"whhgmz-vendetta\", '\\uf3c5'),\n    VERSIONS(\"whhgmz-versions\", '\\uf777'),\n    VERTICALBORDER(\"whhgmz-verticalborder\", '\\uf4e0'),\n    VIAL(\"whhgmz-vial\", '\\uf5c5'),\n    VIBER(\"whhgmz-viber\", '\\uf77d'),\n    VIDEO(\"whhgmz-video\", '\\uf17d'),\n    VIDEOCAMERATHREE(\"whhgmz-videocamerathree\", '\\uf7c5'),\n    VIKING(\"whhgmz-viking\", '\\uf379'),\n    VIMEO(\"whhgmz-vimeo\", '\\uf168'),\n    VINEAPP(\"whhgmz-vineapp\", '\\uf6b6'),\n    VINEAPPALT(\"whhgmz-vineappalt\", '\\uf6b7'),\n    VINYL(\"whhgmz-vinyl\", '\\uf0cc'),\n    VIOLIN(\"whhgmz-violin\", '\\uf1a5'),\n    VIRUS(\"whhgmz-virus\", '\\uf0a8'),\n    VISA(\"whhgmz-visa\", '\\uf3c2'),\n    VISITOR(\"whhgmz-visitor\", '\\uf097'),\n    VK(\"whhgmz-vk\", '\\uf34e'),\n    VLC_CONE(\"whhgmz-vlc-cone\", '\\uf192'),\n    VOICE(\"whhgmz-voice\", '\\uf18c'),\n    VOLTAGE(\"whhgmz-voltage\", '\\uf50c'),\n    VOLUME_DOWN(\"whhgmz-volume-down\", '\\uf0e3'),\n    VOLUME_OFF(\"whhgmz-volume-off\", '\\uf0e4'),\n    VOLUME_UP(\"whhgmz-volume-up\", '\\uf0e2'),\n    VPS(\"whhgmz-vps\", '\\uf025'),\n    VTIGER(\"whhgmz-vtiger\", '\\uf5ad'),\n    WACOM(\"whhgmz-wacom\", '\\uf1bb'),\n    WALLE(\"whhgmz-walle\", '\\uf3bc'),\n    WALLET(\"whhgmz-wallet\", '\\ue000'),\n    WALLETALT(\"whhgmz-walletalt\", '\\uf5e1'),\n    WARCRAFT(\"whhgmz-warcraft\", '\\uf3bf'),\n    WARMEDAL(\"whhgmz-warmedal\", '\\uf2e4'),\n    WARMEDALALT(\"whhgmz-warmedalalt\", '\\uf5da'),\n    WARNING_SIGN(\"whhgmz-warning-sign\", '\\uf316'),\n    WASHER(\"whhgmz-washer\", '\\uf39b'),\n    WATCH(\"whhgmz-watch\", '\\uf378'),\n    WATERMELON(\"whhgmz-watermelon\", '\\uf62f'),\n    WATERTAP_PLUMBING(\"whhgmz-watertap-plumbing\", '\\uf22d'),\n    WAVEALT_SEAALT(\"whhgmz-wavealt-seaalt\", '\\uf23b'),\n    WAVE_SEA(\"whhgmz-wave-sea\", '\\uf23c'),\n    WEBCAM(\"whhgmz-webcam\", '\\uf0fe'),\n    WEBCAMALT(\"whhgmz-webcamalt\", '\\uf129'),\n    WEBHOSTINGHUB(\"whhgmz-webhostinghub\", '\\uf031'),\n    WEBINSTA(\"whhgmz-webinsta\", '\\uf59c'),\n    WEBMAIL(\"whhgmz-webmail\", '\\uf045'),\n    WEBPAGE(\"whhgmz-webpage\", '\\uf033'),\n    WEBPLATFORM(\"whhgmz-webplatform\", '\\uf3c3'),\n    WEBSITEALT(\"whhgmz-websitealt\", '\\uf01c'),\n    WEBSITEBUILDER(\"whhgmz-websitebuilder\", '\\uf034'),\n    WEIGHT(\"whhgmz-weight\", '\\uf430'),\n    WEIGHTSCALE(\"whhgmz-weightscale\", '\\uf782'),\n    WESTERNUNION(\"whhgmz-westernunion\", '\\uf26a'),\n    WETFLOOR(\"whhgmz-wetfloor\", '\\uf7c2'),\n    WHATSAPP(\"whhgmz-whatsapp\", '\\uf77b'),\n    WHATSAPPALT(\"whhgmz-whatsappalt\", '\\uf77c'),\n    WHEEL(\"whhgmz-wheel\", '\\uf228'),\n    WHEELCHAIR(\"whhgmz-wheelchair\", '\\uf3fe'),\n    WHISTLE(\"whhgmz-whistle\", '\\uf3d8'),\n    WHMCS(\"whhgmz-whmcs\", '\\uf066'),\n    WIFI(\"whhgmz-wifi\", '\\uf0ff'),\n    WIND(\"whhgmz-wind\", '\\uf41b'),\n    WINDLEFT(\"whhgmz-windleft\", '\\uf424'),\n    WINDMILL(\"whhgmz-windmill\", '\\uf6f2'),\n    WINDMILLALT(\"whhgmz-windmillalt\", '\\uf6f3'),\n    WINDOWS(\"whhgmz-windows\", '\\uf019'),\n    WINDOWSEIGHT(\"whhgmz-windowseight\", '\\uf547'),\n    WINDRIGHT(\"whhgmz-windright\", '\\uf425'),\n    WINE(\"whhgmz-wine\", '\\uf238'),\n    WINEGLASS(\"whhgmz-wineglass\", '\\uf4d1'),\n    WIZARD(\"whhgmz-wizard\", '\\uf03c'),\n    WIZARDALT(\"whhgmz-wizardalt\", '\\uf1fb'),\n    WIZARDHAT(\"whhgmz-wizardhat\", '\\uf337'),\n    WOMANALT(\"whhgmz-womanalt\", '\\uf56e'),\n    WOMAN_FEMALE(\"whhgmz-woman-female\", '\\uf2a2'),\n    WOMEN(\"whhgmz-women\", '\\uf24d'),\n    WORDPRESS(\"whhgmz-wordpress\", '\\uf074'),\n    WORKSHIRT(\"whhgmz-workshirt\", '\\uf54f'),\n    WORLD(\"whhgmz-world\", '\\uf4f3'),\n    WRENCH(\"whhgmz-wrench\", '\\uf05b'),\n    WRENCHALT(\"whhgmz-wrenchalt\", '\\uf2b2'),\n    WWF(\"whhgmz-wwf\", '\\uf628'),\n    XBOX(\"whhgmz-xbox\", '\\uf353'),\n    XMEN(\"whhgmz-xmen\", '\\uf345'),\n    XOOPS(\"whhgmz-xoops\", '\\uf4a8'),\n    YAHOO(\"whhgmz-yahoo\", '\\uf151'),\n    YELP(\"whhgmz-yelp\", '\\uf522'),\n    YEN(\"whhgmz-yen\", '\\u00a5'),\n    YENALT(\"whhgmz-yenalt\", '\\uf25d'),\n    YENSQUARE(\"whhgmz-yensquare\", '\\uf5e4'),\n    YIIFRAMEWORK(\"whhgmz-yiiframework\", '\\uf5b0'),\n    YINYANG(\"whhgmz-yinyang\", '\\u262f'),\n    YOUTUBE(\"whhgmz-youtube\", '\\uf142'),\n    YUI(\"whhgmz-yui\", '\\uf5bb'),\n    ZELDA(\"whhgmz-zelda\", '\\uf3b8'),\n    ZENCART(\"whhgmz-zencart\", '\\uf5a8'),\n    ZENDFRAMEWORK(\"whhgmz-zendframework\", '\\uf5b1'),\n    ZENPHOTO(\"whhgmz-zenphoto\", '\\uf590'),\n    ZERPLY(\"whhgmz-zerply\", '\\uf78a'),\n    ZIKULA(\"whhgmz-zikula\", '\\uf0ac'),\n    ZIP(\"whhgmz-zip\", '\\uf116'),\n    ZODIAC_AQUARIUS(\"whhgmz-zodiac-aquarius\", '\\uf3b4'),\n    ZODIAC_ARIES(\"whhgmz-zodiac-aries\", '\\uf3aa'),\n    ZODIAC_CANCER(\"whhgmz-zodiac-cancer\", '\\uf3ad'),\n    ZODIAC_CAPRICORN(\"whhgmz-zodiac-capricorn\", '\\uf3b3'),\n    ZODIAC_GEMINI(\"whhgmz-zodiac-gemini\", '\\uf3ac'),\n    ZODIAC_LEO(\"whhgmz-zodiac-leo\", '\\uf3ae'),\n    ZODIAC_LIBRA(\"whhgmz-zodiac-libra\", '\\uf3b0'),\n    ZODIAC_PISCES(\"whhgmz-zodiac-pisces\", '\\uf3b5'),\n    ZODIAC_SAGITARIUS(\"whhgmz-zodiac-sagitarius\", '\\uf3b2'),\n    ZODIAC_SCORPIO(\"whhgmz-zodiac-scorpio\", '\\uf3b1'),\n    ZODIAC_TAURUS(\"whhgmz-zodiac-taurus\", '\\uf3ab'),\n    ZODIAC_VIRGO(\"whhgmz-zodiac-virgo\", '\\uf3af'),\n    ZOOM_IN(\"whhgmz-zoom-in\", '\\uf320'),\n    ZOOM_OUT(\"whhgmz-zoom-out\", '\\uf321'),\n    ZURMO(\"whhgmz-zurmo\", '\\uf5ab');\n\n    public static WhhgMZ findByDescription(String description) {\n        for (WhhgMZ font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    WhhgMZ(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-whhg-pack/src/main/java/org/kordamp/ikonli/whhg/WhhgMZIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.whhg;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class WhhgMZIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/whhg/20201105/fonts/webhostinghub-glyphs.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"whhgmz-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return WhhgMZ.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"WebHostingHub-Glyphs\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-whhg-pack/src/main/java/org/kordamp/ikonli/whhg/WhhgMZIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.whhg;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\npublic class WhhgMZIkonProvider implements IkonProvider<WhhgMZ> {\n    @Override\n    public Class<WhhgMZ> getIkon() {\n        return WhhgMZ.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-whhg-pack/src/main/resources/META-INF/resources/whhg/20201105/css/whhg.css",
    "content": "@font-face {\n    font-family: 'WebHostingHub-Glyphs';\n    src: url('../fonts/webhostinghub-glyphs.eot');\n    src: url('../fonts/webhostinghub-glyphs.eot?#iefix') format('embedded-opentype'),\n         url('../fonts/webhostinghub-glyphs.ttf') format('truetype');\n    font-weight: normal;\n    font-style: normal;\n    -moz-font-feature-settings: \"calt=0,liga=0\";\n}\n[class^=\"whhg-\"], [class*=\" whhg-\"] {font-family:'WebHostingHub-Glyphs';background:none;width:auto;height:auto;font-style:normal}\n.whhg-aaabattery:before{content:'\\f413'}\n.whhg-abacus:before{content:'\\f261'}\n.whhg-accountfilter:before{content:'\\f05e'}\n.whhg-acsource:before{content:'\\f3ea'}\n.whhg-addfriend:before{content:'\\f3da'}\n.whhg-address:before{content:'\\f08f'}\n.whhg-addshape:before{content:'\\f1fd'}\n.whhg-addtocart:before{content:'\\f394'}\n.whhg-addtolist:before{content:'\\f2ac'}\n.whhg-adjust:before{content:'\\f484'}\n.whhg-adobe:before{content:'\\f1c9'}\n.whhg-ads-bilboard:before{content:'\\f082'}\n.whhg-affiliate:before{content:'\\f01e'}\n.whhg-ajax:before{content:'\\f06f'}\n.whhg-alarm:before{content:'\\f233'}\n.whhg-alarmalt:before{content:'\\f23d'}\n.whhg-album-cover:before{content:'\\f19f'}\n.whhg-alertalt:before{content:'\\f2b4'}\n.whhg-alertpay:before{content:'\\f269'}\n.whhg-algorhythm:before{content:'\\f0b8'}\n.whhg-alienship:before{content:'\\f41f'}\n.whhg-alienware:before{content:'\\f3be'}\n.whhg-align-center:before{content:'\\f1d9'}\n.whhg-align-justify:before{content:'\\f1da'}\n.whhg-align-left:before{content:'\\f1d7'}\n.whhg-align-right:before{content:'\\f1d8'}\n.whhg-alignbottomedge:before{content:'\\f1d3'}\n.whhg-alignhorizontalcenter:before{content:'\\f1d2'}\n.whhg-alignleftedge:before{content:'\\f1d6'}\n.whhg-alignrightedge:before{content:'\\f1d5'}\n.whhg-aligntopedge:before{content:'\\f1d4'}\n.whhg-alignverticalcenter:before{content:'\\f1d1'}\n.whhg-amd:before{content:'\\f020'}\n.whhg-analogdown:before{content:'\\f2cb'}\n.whhg-analogleft:before{content:'\\f2c8'}\n.whhg-analogright:before{content:'\\f2c9'}\n.whhg-analogup:before{content:'\\f2ca'}\n.whhg-analytics-piechart:before{content:'\\f000'}\n.whhg-analyticsalt-piechartalt:before{content:'\\f001'}\n.whhg-anchor-port:before{content:'\\f21d'}\n.whhg-android:before{content:'\\f12a'}\n.whhg-angrybirds:before{content:'\\f3c1'}\n.whhg-antenna:before{content:'\\f3ec'}\n.whhg-apache-feather:before{content:'\\f056'}\n.whhg-aperture:before{content:'\\f356'}\n.whhg-appointment-agenda:before{content:'\\f26c'}\n.whhg-archive:before{content:'\\f171'}\n.whhg-arrow-down:before{content:'\\f2fe'}\n.whhg-arrow-left:before{content:'\\f305'}\n.whhg-arrow-right:before{content:'\\f304'}\n.whhg-arrow-up:before{content:'\\f301'}\n.whhg-asterisk:before{content:'\\f317'}\n.whhg-asteriskalt:before{content:'\\002a'}\n.whhg-at:before{content:'\\0040'}\n.whhg-atari:before{content:'\\f3b9'}\n.whhg-authentication-keyalt:before{content:'\\f051'}\n.whhg-automobile-car:before{content:'\\f239'}\n.whhg-autorespond:before{content:'\\f08e'}\n.whhg-avatar:before{content:'\\f15a'}\n.whhg-avataralt:before{content:'\\f161'}\n.whhg-avengers:before{content:'\\f342'}\n.whhg-awstats:before{content:'\\f04c'}\n.whhg-axe:before{content:'\\f2ef'}\n.whhg-backup-vault:before{content:'\\f004'}\n.whhg-backupalt-vaultalt:before{content:'\\f005'}\n.whhg-backupwizard:before{content:'\\f05f'}\n.whhg-backward:before{content:'\\f183'}\n.whhg-bag:before{content:'\\f234'}\n.whhg-baloon:before{content:'\\f405'}\n.whhg-ban-circle:before{content:'\\f313'}\n.whhg-banana:before{content:'\\f3f4'}\n.whhg-bandwidth:before{content:'\\f006'}\n.whhg-bank:before{content:'\\f262'}\n.whhg-barchart:before{content:'\\f02f'}\n.whhg-barchartalt:before{content:'\\f07d'}\n.whhg-barcode:before{content:'\\f276'}\n.whhg-basecamp:before{content:'\\f160'}\n.whhg-basketball:before{content:'\\f2e9'}\n.whhg-bat:before{content:'\\f3d3'}\n.whhg-batman:before{content:'\\f348'}\n.whhg-batteryaltcharging:before{content:'\\f104'}\n.whhg-batteryaltfull:before{content:'\\f101'}\n.whhg-batteryaltsixty:before{content:'\\f102'}\n.whhg-batteryaltthird:before{content:'\\f103'}\n.whhg-batterycharged:before{content:'\\f0f4'}\n.whhg-batterycharging:before{content:'\\f0f3'}\n.whhg-batteryeighty:before{content:'\\f0f9'}\n.whhg-batteryempty:before{content:'\\f0f5'}\n.whhg-batteryforty:before{content:'\\f0f7'}\n.whhg-batteryfull:before{content:'\\f0fa'}\n.whhg-batterysixty:before{content:'\\f0f8'}\n.whhg-batterytwenty:before{content:'\\f0f6'}\n.whhg-bed:before{content:'\\f2b9'}\n.whhg-beer:before{content:'\\f244'}\n.whhg-bell:before{content:'\\2407'}\n.whhg-bigger:before{content:'\\f30a'}\n.whhg-bill:before{content:'\\f278'}\n.whhg-binary:before{content:'\\f087'}\n.whhg-binoculars-searchalt:before{content:'\\f2a0'}\n.whhg-birdhouse:before{content:'\\f390'}\n.whhg-birthday:before{content:'\\f36b'}\n.whhg-bishop:before{content:'\\f2f9'}\n.whhg-blackberry:before{content:'\\f421'}\n.whhg-blankstare:before{content:'\\f13e'}\n.whhg-blogger-blog:before{content:'\\f167'}\n.whhg-bluetooth:before{content:'\\f12b'}\n.whhg-bluetoothconnected:before{content:'\\f386'}\n.whhg-boardgame:before{content:'\\f2d9'}\n.whhg-boat:before{content:'\\f21a'}\n.whhg-bold:before{content:'\\f1f4'}\n.whhg-bomb:before{content:'\\f2dc'}\n.whhg-bone:before{content:'\\f35f'}\n.whhg-book:before{content:'\\f1ba'}\n.whhg-bookmark:before{content:'\\f143'}\n.whhg-boombox:before{content:'\\f195'}\n.whhg-bottle:before{content:'\\f361'}\n.whhg-bow:before{content:'\\f2ee'}\n.whhg-bowling:before{content:'\\f2f3'}\n.whhg-bowlingpins:before{content:'\\f3d2'}\n.whhg-bowtie:before{content:'\\f37f'}\n.whhg-boxtrapper-mousetrap:before{content:'\\f046'}\n.whhg-braces:before{content:'\\f0b4'}\n.whhg-braille0:before{content:'\\f44b'}\n.whhg-braille1:before{content:'\\f44c'}\n.whhg-braille2:before{content:'\\f44d'}\n.whhg-braille3:before{content:'\\f44e'}\n.whhg-braille4:before{content:'\\f44f'}\n.whhg-braille5:before{content:'\\f450'}\n.whhg-braille6:before{content:'\\f451'}\n.whhg-braille7:before{content:'\\f452'}\n.whhg-braille8:before{content:'\\f453'}\n.whhg-braille9:before{content:'\\f454'}\n.whhg-braillea:before{content:'\\f431'}\n.whhg-brailleb:before{content:'\\f432'}\n.whhg-braillec:before{content:'\\f433'}\n.whhg-brailled:before{content:'\\f434'}\n.whhg-braillee:before{content:'\\f435'}\n.whhg-braillef:before{content:'\\f436'}\n.whhg-brailleg:before{content:'\\f437'}\n.whhg-brailleh:before{content:'\\f438'}\n.whhg-braillei:before{content:'\\f439'}\n.whhg-braillej:before{content:'\\f43a'}\n.whhg-braillek:before{content:'\\f43b'}\n.whhg-braillel:before{content:'\\f43c'}\n.whhg-braillem:before{content:'\\f43d'}\n.whhg-braillen:before{content:'\\f43e'}\n.whhg-brailleo:before{content:'\\f43f'}\n.whhg-braillep:before{content:'\\f440'}\n.whhg-brailleq:before{content:'\\f441'}\n.whhg-brailler:before{content:'\\f442'}\n.whhg-brailles:before{content:'\\f443'}\n.whhg-braillespace:before{content:'\\f455'}\n.whhg-braillet:before{content:'\\f444'}\n.whhg-brailleu:before{content:'\\f445'}\n.whhg-braillev:before{content:'\\f446'}\n.whhg-braillew:before{content:'\\f447'}\n.whhg-braillex:before{content:'\\f448'}\n.whhg-brailley:before{content:'\\f449'}\n.whhg-braillez:before{content:'\\f44a'}\n.whhg-brain:before{content:'\\f3e3'}\n.whhg-bread:before{content:'\\f42f'}\n.whhg-breakable:before{content:'\\f41c'}\n.whhg-briefcase:before{content:'\\f25e'}\n.whhg-briefcasethree:before{content:'\\f25f'}\n.whhg-briefcasetwo:before{content:'\\f0a2'}\n.whhg-brightness:before{content:'\\f10a'}\n.whhg-brightnessfull:before{content:'\\f10b'}\n.whhg-brightnesshalf:before{content:'\\f10c'}\n.whhg-broom:before{content:'\\f40a'}\n.whhg-browser:before{content:'\\f159'}\n.whhg-brush:before{content:'\\f1b8'}\n.whhg-bucket:before{content:'\\f1b5'}\n.whhg-bug:before{content:'\\f0a7'}\n.whhg-bullhorn:before{content:'\\f287'}\n.whhg-bus:before{content:'\\f241'}\n.whhg-businesscardalt:before{content:'\\f137'}\n.whhg-buttona:before{content:'\\f2bf'}\n.whhg-buttonb:before{content:'\\f2c0'}\n.whhg-buttonx:before{content:'\\f2c1'}\n.whhg-buttony:before{content:'\\f2c2'}\n.whhg-cactus-desert:before{content:'\\f22c'}\n.whhg-calculator:before{content:'\\f258'}\n.whhg-calculatoralt:before{content:'\\f265'}\n.whhg-calendar:before{content:'\\f20f'}\n.whhg-calendaralt-cronjobs:before{content:'\\f0a1'}\n.whhg-camera:before{content:'\\f19b'}\n.whhg-candle:before{content:'\\f29a'}\n.whhg-candy:before{content:'\\f42d'}\n.whhg-candycane:before{content:'\\f37d'}\n.whhg-cannon:before{content:'\\f401'}\n.whhg-canvas:before{content:'\\f1c8'}\n.whhg-canvasrulers:before{content:'\\f205'}\n.whhg-capacitator:before{content:'\\f3e8'}\n.whhg-capslock:before{content:'\\21ea'}\n.whhg-captainamerica:before{content:'\\f341'}\n.whhg-carrot:before{content:'\\f3f2'}\n.whhg-cashregister:before{content:'\\f26e'}\n.whhg-cassette:before{content:'\\f377'}\n.whhg-cd-dvd:before{content:'\\f0cd'}\n.whhg-certificate:before{content:'\\f277'}\n.whhg-certificatealt:before{content:'\\f058'}\n.whhg-certificatethree:before{content:'\\f059'}\n.whhg-cgi:before{content:'\\f086'}\n.whhg-cgicenter:before{content:'\\f079'}\n.whhg-chair:before{content:'\\2441'}\n.whhg-chat:before{content:'\\f162'}\n.whhg-check:before{content:'\\f310'}\n.whhg-checkboxalt:before{content:'\\f311'}\n.whhg-checkin:before{content:'\\f223'}\n.whhg-checkinalt:before{content:'\\f227'}\n.whhg-chef:before{content:'\\f3ce'}\n.whhg-cherry:before{content:'\\f35d'}\n.whhg-chevron-down:before{content:'\\f48b'}\n.whhg-chevron-left:before{content:'\\f489'}\n.whhg-chevron-right:before{content:'\\f488'}\n.whhg-chevron-up:before{content:'\\f48a'}\n.whhg-chevrons:before{content:'\\f0b5'}\n.whhg-chicken:before{content:'\\f359'}\n.whhg-chocolate:before{content:'\\f367'}\n.whhg-christiancross:before{content:'\\f40f'}\n.whhg-christmastree:before{content:'\\f37b'}\n.whhg-chrome:before{content:'\\f14e'}\n.whhg-cigarette:before{content:'\\f229'}\n.whhg-circle-arrow-down:before{content:'\\f475'}\n.whhg-circle-arrow-left:before{content:'\\f472'}\n.whhg-circle-arrow-right:before{content:'\\f473'}\n.whhg-circle-arrow-up:before{content:'\\f474'}\n.whhg-circleadd:before{content:'\\f0d1'}\n.whhg-circledelete:before{content:'\\f0d2'}\n.whhg-circledown:before{content:'\\f3c7'}\n.whhg-circleleft:before{content:'\\f3c6'}\n.whhg-circleright:before{content:'\\f3c9'}\n.whhg-circleselect:before{content:'\\f0d3'}\n.whhg-circleselection:before{content:'\\f1b1'}\n.whhg-circleup:before{content:'\\f3c8'}\n.whhg-clearformatting:before{content:'\\f1e7'}\n.whhg-clipboard-paste:before{content:'\\f0cb'}\n.whhg-clockalt-timealt:before{content:'\\f22b'}\n.whhg-closetab:before{content:'\\f170'}\n.whhg-closewindow:before{content:'\\f16e'}\n.whhg-cloud:before{content:'\\f0b9'}\n.whhg-clouddownload:before{content:'\\f0bb'}\n.whhg-cloudhosting:before{content:'\\f007'}\n.whhg-cloudsync:before{content:'\\f0bc'}\n.whhg-cloudupload:before{content:'\\f0ba'}\n.whhg-clubs:before{content:'\\f2f6'}\n.whhg-cmd:before{content:'\\f33a'}\n.whhg-cms:before{content:'\\f036'}\n.whhg-cmsmadesimple:before{content:'\\f0b0'}\n.whhg-codeigniter:before{content:'\\f077'}\n.whhg-coffee:before{content:'\\f235'}\n.whhg-coffeebean:before{content:'\\f366'}\n.whhg-cog:before{content:'\\f00f'}\n.whhg-colocation:before{content:'\\f024'}\n.whhg-colocationalt:before{content:'\\f023'}\n.whhg-colors:before{content:'\\f1e6'}\n.whhg-comment:before{content:'\\f12c'}\n.whhg-commentout:before{content:'\\f080'}\n.whhg-commentround:before{content:'\\f155'}\n.whhg-commentroundempty:before{content:'\\f156'}\n.whhg-commentroundtyping:before{content:'\\f157'}\n.whhg-commentroundtypingempty:before{content:'\\f158'}\n.whhg-commenttyping:before{content:'\\f12d'}\n.whhg-compass:before{content:'\\263c'}\n.whhg-concretefive:before{content:'\\f0af'}\n.whhg-contact-businesscard:before{content:'\\f040'}\n.whhg-controllernes:before{content:'\\f2d2'}\n.whhg-controllerps:before{content:'\\f2d1'}\n.whhg-controllersnes:before{content:'\\f2d3'}\n.whhg-controlpanel:before{content:'\\f008'}\n.whhg-controlpanelalt:before{content:'\\f009'}\n.whhg-cooling:before{content:'\\f00a'}\n.whhg-coppermine:before{content:'\\f0a4'}\n.whhg-copy:before{content:'\\f0c9'}\n.whhg-copyright:before{content:'\\00a9'}\n.whhg-coupon:before{content:'\\f254'}\n.whhg-cpanel:before{content:'\\f072'}\n.whhg-cplusplus:before{content:'\\f0b1'}\n.whhg-cpu-processor:before{content:'\\f002'}\n.whhg-cpualt-processoralt:before{content:'\\f003'}\n.whhg-crayon:before{content:'\\f383'}\n.whhg-createfile:before{content:'\\f0c6'}\n.whhg-createfolder:before{content:'\\f0da'}\n.whhg-creativecommons:before{content:'\\f1fc'}\n.whhg-creditcard:before{content:'\\f279'}\n.whhg-cricket:before{content:'\\f418'}\n.whhg-croisant:before{content:'\\f29f'}\n.whhg-crop:before{content:'\\f1af'}\n.whhg-crown:before{content:'\\f28f'}\n.whhg-csharp:before{content:'\\f0b2'}\n.whhg-cssthree:before{content:'\\f06a'}\n.whhg-cup-coffeealt:before{content:'\\f24b'}\n.whhg-cupcake:before{content:'\\f35b'}\n.whhg-curling:before{content:'\\f3d7'}\n.whhg-cursor:before{content:'\\f0dc'}\n.whhg-cut-scissors:before{content:'\\f0ca'}\n.whhg-dagger:before{content:'\\2020'}\n.whhg-danger:before{content:'\\f415'}\n.whhg-dart:before{content:'\\f3d4'}\n.whhg-darthvader:before{content:'\\f34a'}\n.whhg-database:before{content:'\\f00b'}\n.whhg-databaseadd:before{content:'\\f00c'}\n.whhg-databasedelete:before{content:'\\f00d'}\n.whhg-davidstar:before{content:'\\f40e'}\n.whhg-dcsource:before{content:'\\f3e9'}\n.whhg-dedicatedserver:before{content:'\\f00e'}\n.whhg-deletefile:before{content:'\\f0c7'}\n.whhg-deletefolder:before{content:'\\f0db'}\n.whhg-delicious:before{content:'\\f152'}\n.whhg-designcontest:before{content:'\\f351'}\n.whhg-desklamp:before{content:'\\f412'}\n.whhg-dialpad:before{content:'\\f399'}\n.whhg-diamond:before{content:'\\2666'}\n.whhg-diamonds:before{content:'\\f2f7'}\n.whhg-die-dice:before{content:'\\f2d8'}\n.whhg-diefive:before{content:'\\f3fb'}\n.whhg-diefour:before{content:'\\f3fa'}\n.whhg-dieone:before{content:'\\f3f7'}\n.whhg-diesix:before{content:'\\f3fc'}\n.whhg-diethree:before{content:'\\f3f9'}\n.whhg-dietwo:before{content:'\\f3f8'}\n.whhg-diode:before{content:'\\f3e7'}\n.whhg-director:before{content:'\\f2ae'}\n.whhg-diskspace:before{content:'\\f096'}\n.whhg-distributehorizontalcenters:before{content:'\\f1dc'}\n.whhg-distributeverticalcenters:before{content:'\\f1db'}\n.whhg-divide:before{content:'\\00f7'}\n.whhg-dna:before{content:'\\f409'}\n.whhg-dnszone:before{content:'\\f07f'}\n.whhg-document:before{content:'\\f0c2'}\n.whhg-doghouse:before{content:'\\f38f'}\n.whhg-dollar:before{content:'\\0024'}\n.whhg-dollaralt:before{content:'\\f259'}\n.whhg-dolphinsoftware:before{content:'\\f064'}\n.whhg-domain:before{content:'\\f01d'}\n.whhg-domainaddon:before{content:'\\f053'}\n.whhg-domino:before{content:'\\f3d5'}\n.whhg-donut:before{content:'\\f3ca'}\n.whhg-downleft:before{content:'\\f2ff'}\n.whhg-download:before{content:'\\f47b'}\n.whhg-download-alt:before{content:'\\f11a'}\n.whhg-downright:before{content:'\\f300'}\n.whhg-draft:before{content:'\\f172'}\n.whhg-dreamweaver:before{content:'\\f1d0'}\n.whhg-dribbble:before{content:'\\f14c'}\n.whhg-dropmenu:before{content:'\\f0a5'}\n.whhg-drupal:before{content:'\\f075'}\n.whhg-drwho:before{content:'\\f3c0'}\n.whhg-edit:before{content:'\\f47c'}\n.whhg-editalt:before{content:'\\f0f2'}\n.whhg-egg:before{content:'\\f407'}\n.whhg-eightball:before{content:'\\f36e'}\n.whhg-eject:before{content:'\\f199'}\n.whhg-elipse:before{content:'\\f1bc'}\n.whhg-emailalt:before{content:'\\f136'}\n.whhg-emailexport:before{content:'\\f176'}\n.whhg-emailforward:before{content:'\\f175'}\n.whhg-emailforwarders:before{content:'\\f049'}\n.whhg-emailimport:before{content:'\\f177'}\n.whhg-emailrefresh:before{content:'\\f174'}\n.whhg-emailtrace:before{content:'\\f091'}\n.whhg-emergency:before{content:'\\f246'}\n.whhg-emptycart:before{content:'\\f395'}\n.whhg-enter:before{content:'\\f323'}\n.whhg-envelope:before{content:'\\f028'}\n.whhg-equalizer:before{content:'\\f18e'}\n.whhg-equalizeralt:before{content:'\\f18f'}\n.whhg-equals:before{content:'\\f30c'}\n.whhg-eraser:before{content:'\\f1f1'}\n.whhg-erroralt:before{content:'\\f05a'}\n.whhg-euro:before{content:'\\20ac'}\n.whhg-euroalt:before{content:'\\f25a'}\n.whhg-evernote:before{content:'\\f17c'}\n.whhg-exchange-currency:before{content:'\\f26b'}\n.whhg-exclamation-sign:before{content:'\\f04a'}\n.whhg-excludeshape:before{content:'\\f200'}\n.whhg-exit:before{content:'\\f324'}\n.whhg-explorerwindow:before{content:'\\f0d9'}\n.whhg-exportfile:before{content:'\\f32f'}\n.whhg-exposure:before{content:'\\f1de'}\n.whhg-extinguisher:before{content:'\\f2b7'}\n.whhg-eye-close:before{content:'\\f481'}\n.whhg-eye-open:before{content:'\\f2b5'}\n.whhg-eye-view:before{content:'\\f280'}\n.whhg-eyedropper:before{content:'\\f1ad'}\n.whhg-facebook:before{content:'\\f140'}\n.whhg-facebookalt:before{content:'\\f14b'}\n.whhg-facetime-video:before{content:'\\f19c'}\n.whhg-factory:before{content:'\\f27a'}\n.whhg-fantastico:before{content:'\\f0ae'}\n.whhg-faq:before{content:'\\f099'}\n.whhg-fast-backward:before{content:'\\f47e'}\n.whhg-fast-forward:before{content:'\\f47f'}\n.whhg-fastdown:before{content:'\\f31d'}\n.whhg-fastleft:before{content:'\\f31a'}\n.whhg-fastright:before{content:'\\f31b'}\n.whhg-fastup:before{content:'\\f31c'}\n.whhg-favoritefile:before{content:'\\f381'}\n.whhg-favoritefolder:before{content:'\\f382'}\n.whhg-featheralt-write:before{content:'\\f1c5'}\n.whhg-fedora:before{content:'\\f3f1'}\n.whhg-fence:before{content:'\\f2af'}\n.whhg-file:before{content:'\\f0d6'}\n.whhg-film:before{content:'\\f19d'}\n.whhg-filmstrip:before{content:'\\f3ed'}\n.whhg-filter:before{content:'\\f05c'}\n.whhg-finder:before{content:'\\f398'}\n.whhg-fire:before{content:'\\f27f'}\n.whhg-firefox:before{content:'\\f420'}\n.whhg-firewall:before{content:'\\f021'}\n.whhg-firewire:before{content:'\\f0fc'}\n.whhg-firstaid:before{content:'\\f2ba'}\n.whhg-fish:before{content:'\\f35a'}\n.whhg-fishbone:before{content:'\\f42b'}\n.whhg-flag:before{content:'\\f487'}\n.whhg-flagalt:before{content:'\\f232'}\n.whhg-flagtriangle:before{content:'\\f20b'}\n.whhg-flash:before{content:'\\f1cf'}\n.whhg-flashlight:before{content:'\\f299'}\n.whhg-flashplayer:before{content:'\\f070'}\n.whhg-flaskfull:before{content:'\\f27e'}\n.whhg-flickr:before{content:'\\f146'}\n.whhg-flower:before{content:'\\f2a5'}\n.whhg-flowernew:before{content:'\\f3a8'}\n.whhg-folder-close:before{content:'\\f094'}\n.whhg-folder-open:before{content:'\\f483'}\n.whhg-foldertree:before{content:'\\f0f0'}\n.whhg-font:before{content:'\\f1ae'}\n.whhg-foodtray:before{content:'\\f3d0'}\n.whhg-football-soccer:before{content:'\\f2eb'}\n.whhg-forbiddenalt:before{content:'\\f314'}\n.whhg-forest-tree:before{content:'\\f217'}\n.whhg-forestalt-treealt:before{content:'\\f21c'}\n.whhg-fork:before{content:'\\22d4'}\n.whhg-forklift:before{content:'\\f29b'}\n.whhg-form:before{content:'\\f08c'}\n.whhg-forrst:before{content:'\\f14d'}\n.whhg-fort:before{content:'\\f400'}\n.whhg-forward:before{content:'\\f182'}\n.whhg-fourohfour:before{content:'\\f09d'}\n.whhg-foursquare:before{content:'\\f42a'}\n.whhg-freeway:before{content:'\\f24a'}\n.whhg-fridge:before{content:'\\f40d'}\n.whhg-fries:before{content:'\\f36a'}\n.whhg-ftp:before{content:'\\f029'}\n.whhg-ftpaccounts:before{content:'\\f07b'}\n.whhg-ftpsession:before{content:'\\f07c'}\n.whhg-fullscreen:before{content:'\\f485'}\n.whhg-gameboy:before{content:'\\f403'}\n.whhg-gamecursor:before{content:'\\f2d0'}\n.whhg-gasstation:before{content:'\\f216'}\n.whhg-gearfour:before{content:'\\f3a7'}\n.whhg-ghost:before{content:'\\f2da'}\n.whhg-gift:before{content:'\\f260'}\n.whhg-github:before{content:'\\f081'}\n.whhg-glass:before{content:'\\f236'}\n.whhg-glasses:before{content:'\\f295'}\n.whhg-glassesalt:before{content:'\\f39d'}\n.whhg-globe:before{content:'\\f01b'}\n.whhg-globealt:before{content:'\\f36c'}\n.whhg-glue:before{content:'\\f36d'}\n.whhg-gmail:before{content:'\\f150'}\n.whhg-golf:before{content:'\\f2f1'}\n.whhg-googledrive:before{content:'\\f163'}\n.whhg-googleplus:before{content:'\\f165'}\n.whhg-googlewallet:before{content:'\\f270'}\n.whhg-gpsoff-gps:before{content:'\\f21e'}\n.whhg-gpson:before{content:'\\f21f'}\n.whhg-gpu-graphicscard:before{content:'\\f108'}\n.whhg-gradient:before{content:'\\2207'}\n.whhg-grails:before{content:'\\f085'}\n.whhg-greenlantern:before{content:'\\f340'}\n.whhg-greenlightbulb:before{content:'\\f406'}\n.whhg-grooveshark:before{content:'\\f3a2'}\n.whhg-groups-friends:before{content:'\\f134'}\n.whhg-guitar:before{content:'\\f19a'}\n.whhg-halflife:before{content:'\\f3ba'}\n.whhg-halo:before{content:'\\f3bb'}\n.whhg-hamburger:before{content:'\\f2b3'}\n.whhg-hammer:before{content:'\\f291'}\n.whhg-hand-down:before{content:'\\f387'}\n.whhg-hand-left:before{content:'\\f389'}\n.whhg-hand-right:before{content:'\\f388'}\n.whhg-hand-up:before{content:'\\f0dd'}\n.whhg-handcuffs:before{content:'\\f393'}\n.whhg-handdrag:before{content:'\\f0de'}\n.whhg-handtwofingers:before{content:'\\f0df'}\n.whhg-hanger:before{content:'\\f2ab'}\n.whhg-happy:before{content:'\\f13c'}\n.whhg-harrypotter:before{content:'\\f38b'}\n.whhg-hdd:before{content:'\\f02a'}\n.whhg-hdtv:before{content:'\\f1a0'}\n.whhg-headphones:before{content:'\\f180'}\n.whhg-headphonesalt:before{content:'\\f1a3'}\n.whhg-heart:before{content:'\\f131'}\n.whhg-heartempty-love:before{content:'\\f132'}\n.whhg-hearts:before{content:'\\f2f4'}\n.whhg-helicopter:before{content:'\\f3e4'}\n.whhg-hexagon-polygon:before{content:'\\f1be'}\n.whhg-hockey:before{content:'\\f3d9'}\n.whhg-home:before{content:'\\21b8'}\n.whhg-homealt:before{content:'\\f02b'}\n.whhg-hospital:before{content:'\\f247'}\n.whhg-hotdog:before{content:'\\f3cc'}\n.whhg-hotlinkprotection:before{content:'\\f050'}\n.whhg-hourglassalt:before{content:'\\f122'}\n.whhg-html:before{content:'\\f068'}\n.whhg-htmlfive:before{content:'\\f069'}\n.whhg-hydrant:before{content:'\\f3ff'}\n.whhg-icecream:before{content:'\\f2a4'}\n.whhg-icecreamalt:before{content:'\\f289'}\n.whhg-illustrator:before{content:'\\f1ce'}\n.whhg-imac:before{content:'\\f0fb'}\n.whhg-images-gallery:before{content:'\\f09f'}\n.whhg-importcontacts:before{content:'\\f092'}\n.whhg-importfile:before{content:'\\f32e'}\n.whhg-inbox:before{content:'\\f17a'}\n.whhg-inboxalt:before{content:'\\f178'}\n.whhg-incomingcall:before{content:'\\f15d'}\n.whhg-indent-left:before{content:'\\f1f2'}\n.whhg-indent-right:before{content:'\\f1f3'}\n.whhg-indexmanager:before{content:'\\f09e'}\n.whhg-infinity:before{content:'\\221e'}\n.whhg-info-sign:before{content:'\\f315'}\n.whhg-infographic:before{content:'\\f336'}\n.whhg-ink:before{content:'\\f3f6'}\n.whhg-inkpen:before{content:'\\f1ac'}\n.whhg-insertbarchart:before{content:'\\f1e5'}\n.whhg-insertpicture:before{content:'\\f1e0'}\n.whhg-insertpicturecenter:before{content:'\\f1e3'}\n.whhg-insertpictureleft:before{content:'\\f1e1'}\n.whhg-insertpictureright:before{content:'\\f1e2'}\n.whhg-insertpiechart:before{content:'\\f1e4'}\n.whhg-instagram:before{content:'\\f14a'}\n.whhg-install:before{content:'\\f128'}\n.whhg-intel:before{content:'\\f01f'}\n.whhg-intersection:before{content:'\\2229'}\n.whhg-intersectshape:before{content:'\\f1ff'}\n.whhg-invert:before{content:'\\f1df'}\n.whhg-invoice:before{content:'\\f3e5'}\n.whhg-ipcontrol:before{content:'\\f08b'}\n.whhg-iphone:before{content:'\\f0e6'}\n.whhg-ipod:before{content:'\\f190'}\n.whhg-ironman:before{content:'\\f349'}\n.whhg-islam:before{content:'\\f410'}\n.whhg-island:before{content:'\\f392'}\n.whhg-italic:before{content:'\\f1f5'}\n.whhg-jar:before{content:'\\f2b6'}\n.whhg-jason:before{content:'\\f38c'}\n.whhg-java:before{content:'\\f083'}\n.whhg-joomla:before{content:'\\f073'}\n.whhg-joystickarcade:before{content:'\\f2d4'}\n.whhg-joystickatari:before{content:'\\f2d5'}\n.whhg-jquery:before{content:'\\f06b'}\n.whhg-jqueryui:before{content:'\\f06c'}\n.whhg-kerning:before{content:'\\f1e9'}\n.whhg-key:before{content:'\\f093'}\n.whhg-keyboard:before{content:'\\f119'}\n.whhg-keyboardalt:before{content:'\\f105'}\n.whhg-keyboarddelete:before{content:'\\f3a6'}\n.whhg-kidney:before{content:'\\f3e0'}\n.whhg-king:before{content:'\\f2fc'}\n.whhg-knife:before{content:'\\f214'}\n.whhg-knight:before{content:'\\f2fb'}\n.whhg-knob:before{content:'\\f376'}\n.whhg-lab-flask:before{content:'\\f27d'}\n.whhg-lamp:before{content:'\\f2b1'}\n.whhg-lan:before{content:'\\f0ee'}\n.whhg-language:before{content:'\\f042'}\n.whhg-laptop:before{content:'\\f0d8'}\n.whhg-lasso:before{content:'\\f396'}\n.whhg-lastfm:before{content:'\\f3a3'}\n.whhg-laugh:before{content:'\\f13f'}\n.whhg-law:before{content:'\\f263'}\n.whhg-layers:before{content:'\\f1ca'}\n.whhg-layersalt:before{content:'\\f1cb'}\n.whhg-leaf:before{content:'\\f039'}\n.whhg-leechprotect:before{content:'\\f07e'}\n.whhg-legacyfilemanager:before{content:'\\f095'}\n.whhg-lego:before{content:'\\f370'}\n.whhg-lifeempty:before{content:'\\f2e1'}\n.whhg-lifefull:before{content:'\\f2e3'}\n.whhg-lifehacker:before{content:'\\f380'}\n.whhg-lifehalf:before{content:'\\f2e2'}\n.whhg-lifepreserver:before{content:'\\f015'}\n.whhg-lightbulb-idea:before{content:'\\f338'}\n.whhg-lighthouse:before{content:'\\f3e6'}\n.whhg-lightning:before{content:'\\f231'}\n.whhg-lightningalt:before{content:'\\f2a8'}\n.whhg-line:before{content:'\\f1bf'}\n.whhg-lineheight:before{content:'\\f1c0'}\n.whhg-link:before{content:'\\f022'}\n.whhg-linkalt:before{content:'\\f333'}\n.whhg-linkedin:before{content:'\\f166'}\n.whhg-linux:before{content:'\\f01a'}\n.whhg-list:before{content:'\\f111'}\n.whhg-list-alt:before{content:'\\f480'}\n.whhg-liver:before{content:'\\f3e2'}\n.whhg-loading-hourglass:before{content:'\\f123'}\n.whhg-loadingalt:before{content:'\\f339'}\n.whhg-lock:before{content:'\\f0be'}\n.whhg-lockalt-keyhole:before{content:'\\f0eb'}\n.whhg-lollypop:before{content:'\\f3ee'}\n.whhg-lungs:before{content:'\\f3df'}\n.whhg-macpro:before{content:'\\f3a5'}\n.whhg-macro-plant:before{content:'\\f1c6'}\n.whhg-magazine:before{content:'\\f1ec'}\n.whhg-magento:before{content:'\\f06e'}\n.whhg-magnet:before{content:'\\f281'}\n.whhg-mailbox:before{content:'\\f044'}\n.whhg-mailinglists:before{content:'\\f090'}\n.whhg-man-male:before{content:'\\f2a1'}\n.whhg-managedhosting:before{content:'\\f038'}\n.whhg-map:before{content:'\\f209'}\n.whhg-map-marker:before{content:'\\f220'}\n.whhg-marker:before{content:'\\f204'}\n.whhg-marvin:before{content:'\\f3dd'}\n.whhg-mastercard:before{content:'\\f266'}\n.whhg-maximize:before{content:'\\f30f'}\n.whhg-medal:before{content:'\\f2e5'}\n.whhg-medalbronze:before{content:'\\f2e8'}\n.whhg-medalgold:before{content:'\\f2e6'}\n.whhg-medalsilver:before{content:'\\f2e7'}\n.whhg-mediarepeat:before{content:'\\f187'}\n.whhg-men:before{content:'\\f24c'}\n.whhg-menu:before{content:'\\f127'}\n.whhg-merge:before{content:'\\f334'}\n.whhg-mergecells:before{content:'\\f327'}\n.whhg-mergeshapes:before{content:'\\f201'}\n.whhg-metro-subway:before{content:'\\f24f'}\n.whhg-metronome:before{content:'\\f374'}\n.whhg-mickeymouse:before{content:'\\f37a'}\n.whhg-microphone:before{content:'\\f191'}\n.whhg-microscope:before{content:'\\f283'}\n.whhg-microsd:before{content:'\\f107'}\n.whhg-microwave:before{content:'\\f42e'}\n.whhg-mimetype:before{content:'\\f057'}\n.whhg-minimize:before{content:'\\f30e'}\n.whhg-minus:before{content:'\\2212'}\n.whhg-minus-sign:before{content:'\\f477'}\n.whhg-missedcall:before{content:'\\f15c'}\n.whhg-mobile:before{content:'\\f0e8'}\n.whhg-moleskine:before{content:'\\f1f0'}\n.whhg-money-cash:before{content:'\\f27b'}\n.whhg-moneybag:before{content:'\\f271'}\n.whhg-monitor:before{content:'\\f0d5'}\n.whhg-monstersinc:before{content:'\\f3bd'}\n.whhg-moon-night:before{content:'\\f207'}\n.whhg-mouse:before{content:'\\f0d4'}\n.whhg-mousealt:before{content:'\\f126'}\n.whhg-move:before{content:'\\f322'}\n.whhg-movieclapper:before{content:'\\f193'}\n.whhg-moviereel:before{content:'\\f17f'}\n.whhg-muffin:before{content:'\\f363'}\n.whhg-mug:before{content:'\\f24e'}\n.whhg-mushroom:before{content:'\\f35e'}\n.whhg-music:before{content:'\\f181'}\n.whhg-musicalt:before{content:'\\f18d'}\n.whhg-mutealt:before{content:'\\f0e5'}\n.whhg-mxentry:before{content:'\\f07a'}\n.whhg-mybb:before{content:'\\f065'}\n.whhg-myspace:before{content:'\\f153'}\n.whhg-mysql-dolphin:before{content:'\\f076'}\n.whhg-nail:before{content:'\\f428'}\n.whhg-navigation:before{content:'\\f23a'}\n.whhg-network:before{content:'\\f0a6'}\n.whhg-networksignal:before{content:'\\f3a9'}\n.whhg-news:before{content:'\\f256'}\n.whhg-newtab:before{content:'\\f16f'}\n.whhg-newwindow:before{content:'\\f16d'}\n.whhg-next:before{content:'\\f18a'}\n.whhg-nexus:before{content:'\\f0e7'}\n.whhg-nintendods:before{content:'\\f404'}\n.whhg-nodejs:before{content:'\\f084'}\n.whhg-notes:before{content:'\\f0d7'}\n.whhg-notificationbottom:before{content:'\\f144'}\n.whhg-notificationtop:before{content:'\\f145'}\n.whhg-nut:before{content:'\\f427'}\n.whhg-off:before{content:'\\f11d'}\n.whhg-office-building:before{content:'\\f245'}\n.whhg-officechair:before{content:'\\f26d'}\n.whhg-ok:before{content:'\\2713'}\n.whhg-ok-circle:before{content:'\\f471'}\n.whhg-ok-sign:before{content:'\\f479'}\n.whhg-oneup:before{content:'\\f3b7'}\n.whhg-oneupalt:before{content:'\\f3b6'}\n.whhg-opencart:before{content:'\\f060'}\n.whhg-opennewwindow:before{content:'\\f332'}\n.whhg-orange:before{content:'\\f29e'}\n.whhg-outbox:before{content:'\\f179'}\n.whhg-outgoingcall:before{content:'\\f15e'}\n.whhg-oxwall:before{content:'\\f06d'}\n.whhg-pacman:before{content:'\\f2db'}\n.whhg-pageback:before{content:'\\f31e'}\n.whhg-pagebreak:before{content:'\\f1cc'}\n.whhg-pageforward:before{content:'\\f31f'}\n.whhg-pagesetup:before{content:'\\f331'}\n.whhg-paintbrush:before{content:'\\f1e8'}\n.whhg-paintroll:before{content:'\\f1fa'}\n.whhg-palette-painting:before{content:'\\f1b9'}\n.whhg-paperclip:before{content:'\\f284'}\n.whhg-paperclipalt:before{content:'\\f285'}\n.whhg-paperclipvertical:before{content:'\\f286'}\n.whhg-paperplane:before{content:'\\f296'}\n.whhg-parentheses:before{content:'\\f3c4'}\n.whhg-parkeddomain:before{content:'\\f055'}\n.whhg-password:before{content:'\\f03e'}\n.whhg-passwordalt:before{content:'\\f03f'}\n.whhg-pasta:before{content:'\\f408'}\n.whhg-patch:before{content:'\\f2a3'}\n.whhg-path:before{content:'\\f169'}\n.whhg-pause:before{content:'\\f186'}\n.whhg-paw-pet:before{content:'\\f29d'}\n.whhg-pawn:before{content:'\\f2f8'}\n.whhg-paypal:before{content:'\\f267'}\n.whhg-peace:before{content:'\\f2a7'}\n.whhg-pen:before{content:'\\f1ee'}\n.whhg-pencil:before{content:'\\f1b7'}\n.whhg-pepperoni:before{content:'\\f364'}\n.whhg-percent:before{content:'\\0025'}\n.whhg-perl-camel:before{content:'\\f0b6'}\n.whhg-perlalt:before{content:'\\f0b7'}\n.whhg-phone-call:before{content:'\\f14f'}\n.whhg-phonealt:before{content:'\\f15b'}\n.whhg-phonebook:before{content:'\\f149'}\n.whhg-phonebookalt:before{content:'\\f135'}\n.whhg-phonemic:before{content:'\\f391'}\n.whhg-phoneold:before{content:'\\f148'}\n.whhg-photoshop:before{content:'\\f1cd'}\n.whhg-php:before{content:'\\f09c'}\n.whhg-phpbb:before{content:'\\f063'}\n.whhg-phppear:before{content:'\\f09b'}\n.whhg-piano:before{content:'\\f19e'}\n.whhg-picture:before{content:'\\22b7'}\n.whhg-pictureframe:before{content:'\\f41e'}\n.whhg-piggybank:before{content:'\\f257'}\n.whhg-pigpena:before{content:'\\f456'}\n.whhg-pigpenb:before{content:'\\f457'}\n.whhg-pigpenc:before{content:'\\f458'}\n.whhg-pigpend:before{content:'\\f459'}\n.whhg-pigpene:before{content:'\\f45a'}\n.whhg-pigpenf:before{content:'\\f45b'}\n.whhg-pigpeng:before{content:'\\f45c'}\n.whhg-pigpenh:before{content:'\\f45d'}\n.whhg-pigpeni:before{content:'\\f45e'}\n.whhg-pigpenj:before{content:'\\f45f'}\n.whhg-pigpenk:before{content:'\\f460'}\n.whhg-pigpenl:before{content:'\\f461'}\n.whhg-pigpenm:before{content:'\\f462'}\n.whhg-pigpenn:before{content:'\\f463'}\n.whhg-pigpeno:before{content:'\\f464'}\n.whhg-pigpenp:before{content:'\\f465'}\n.whhg-pigpenq:before{content:'\\f466'}\n.whhg-pigpenr:before{content:'\\f467'}\n.whhg-pigpens:before{content:'\\f468'}\n.whhg-pigpent:before{content:'\\f469'}\n.whhg-pigpenu:before{content:'\\f46a'}\n.whhg-pigpenv:before{content:'\\f46b'}\n.whhg-pigpenw:before{content:'\\f46c'}\n.whhg-pigpenx:before{content:'\\f46d'}\n.whhg-pigpeny:before{content:'\\f46e'}\n.whhg-pigpenz:before{content:'\\f46f'}\n.whhg-pilcrow:before{content:'\\00b6'}\n.whhg-pill-antivirusalt:before{content:'\\f0aa'}\n.whhg-pin:before{content:'\\f20a'}\n.whhg-pipe:before{content:'\\01c0'}\n.whhg-piwigo:before{content:'\\f0ad'}\n.whhg-pizza:before{content:'\\f35c'}\n.whhg-placeadd:before{content:'\\f221'}\n.whhg-placealt:before{content:'\\f224'}\n.whhg-placealtadd:before{content:'\\f225'}\n.whhg-placealtdelete:before{content:'\\f226'}\n.whhg-placedelete:before{content:'\\f222'}\n.whhg-placeios:before{content:'\\f20c'}\n.whhg-plane:before{content:'\\f23e'}\n.whhg-plaque:before{content:'\\f2b8'}\n.whhg-play:before{content:'\\f184'}\n.whhg-play-circle:before{content:'\\f17e'}\n.whhg-playstore:before{content:'\\f255'}\n.whhg-playvideo:before{content:'\\f03d'}\n.whhg-plug:before{content:'\\f0ea'}\n.whhg-pluginalt:before{content:'\\f098'}\n.whhg-plus:before{content:'\\002b'}\n.whhg-plus-sign:before{content:'\\f476'}\n.whhg-pocket:before{content:'\\f16b'}\n.whhg-podcast:before{content:'\\f1a2'}\n.whhg-podium-winner:before{content:'\\f2d6'}\n.whhg-pokemon:before{content:'\\f354'}\n.whhg-police:before{content:'\\f2aa'}\n.whhg-polygonlasso:before{content:'\\f397'}\n.whhg-post:before{content:'\\f12e'}\n.whhg-postalt:before{content:'\\f130'}\n.whhg-pound:before{content:'\\f25b'}\n.whhg-poundalt:before{content:'\\f25c'}\n.whhg-powerjack:before{content:'\\f0fd'}\n.whhg-powerplug:before{content:'\\f0ed'}\n.whhg-powerplugeu:before{content:'\\f28b'}\n.whhg-powerplugus:before{content:'\\f28c'}\n.whhg-presentation:before{content:'\\f0c4'}\n.whhg-prestashop:before{content:'\\f061'}\n.whhg-pretzel:before{content:'\\f3cf'}\n.whhg-preview:before{content:'\\f330'}\n.whhg-previous:before{content:'\\f18b'}\n.whhg-print:before{content:'\\f125'}\n.whhg-protecteddirectory:before{content:'\\f04d'}\n.whhg-pscircle:before{content:'\\f2bb'}\n.whhg-pscursor:before{content:'\\f2c3'}\n.whhg-psdown:before{content:'\\f2c6'}\n.whhg-psleft:before{content:'\\f2c7'}\n.whhg-pslone:before{content:'\\f2cc'}\n.whhg-psltwo:before{content:'\\f2cd'}\n.whhg-psright:before{content:'\\f2c5'}\n.whhg-psrone:before{content:'\\f2ce'}\n.whhg-psrtwo:before{content:'\\f2cf'}\n.whhg-pssquare:before{content:'\\f2bc'}\n.whhg-pstriangle:before{content:'\\f2bd'}\n.whhg-psup:before{content:'\\f2c4'}\n.whhg-psx:before{content:'\\f2be'}\n.whhg-pull:before{content:'\\f089'}\n.whhg-punisher:before{content:'\\f343'}\n.whhg-push:before{content:'\\f088'}\n.whhg-puzzle-plugin:before{content:'\\f0a0'}\n.whhg-python:before{content:'\\f071'}\n.whhg-qrcode:before{content:'\\f275'}\n.whhg-quake:before{content:'\\f355'}\n.whhg-queen:before{content:'\\f2fd'}\n.whhg-query:before{content:'\\f08a'}\n.whhg-question-sign:before{content:'\\f0a3'}\n.whhg-quote:before{content:'\\f12f'}\n.whhg-quotedown:before{content:'\\f329'}\n.whhg-quoteup:before{content:'\\f328'}\n.whhg-raceflag:before{content:'\\f38e'}\n.whhg-racquet:before{content:'\\f2f2'}\n.whhg-radio:before{content:'\\f1a1'}\n.whhg-radioactive:before{content:'\\f282'}\n.whhg-radiobutton:before{content:'\\f312'}\n.whhg-railroad:before{content:'\\f248'}\n.whhg-rain:before{content:'\\f22f'}\n.whhg-ram:before{content:'\\f02c'}\n.whhg-random:before{content:'\\f188'}\n.whhg-rar:before{content:'\\f117'}\n.whhg-raspberry:before{content:'\\f368'}\n.whhg-raspberrypi:before{content:'\\f369'}\n.whhg-rawaccesslogs:before{content:'\\f0c1'}\n.whhg-razor:before{content:'\\f416'}\n.whhg-reademail:before{content:'\\f173'}\n.whhg-record:before{content:'\\f189'}\n.whhg-rectangle:before{content:'\\25ad'}\n.whhg-recycle:before{content:'\\f297'}\n.whhg-reddit:before{content:'\\f154'}\n.whhg-redirect:before{content:'\\f054'}\n.whhg-refresh:before{content:'\\f078'}\n.whhg-reliability:before{content:'\\f016'}\n.whhg-remote:before{content:'\\f298'}\n.whhg-remove:before{content:'\\00d7'}\n.whhg-remove-circle:before{content:'\\f470'}\n.whhg-remove-sign:before{content:'\\f478'}\n.whhg-removefriend:before{content:'\\f3db'}\n.whhg-repeat:before{content:'\\f32b'}\n.whhg-repeatone:before{content:'\\f196'}\n.whhg-resellerhosting:before{content:'\\f03a'}\n.whhg-residentevil:before{content:'\\f350'}\n.whhg-resistor:before{content:'\\f3eb'}\n.whhg-resize:before{content:'\\f1ed'}\n.whhg-resize-full:before{content:'\\f325'}\n.whhg-resize-horizontal:before{content:'\\f318'}\n.whhg-resize-small:before{content:'\\f326'}\n.whhg-resize-vertical:before{content:'\\f319'}\n.whhg-restart:before{content:'\\f11f'}\n.whhg-restaurantmenu:before{content:'\\f362'}\n.whhg-restore:before{content:'\\f30d'}\n.whhg-restricted:before{content:'\\f0ab'}\n.whhg-retweet:before{content:'\\f486'}\n.whhg-rim:before{content:'\\f36f'}\n.whhg-ring:before{content:'\\02da'}\n.whhg-road:before{content:'\\f249'}\n.whhg-roadsign-roadsignright:before{content:'\\f21b'}\n.whhg-roadsignleft:before{content:'\\f240'}\n.whhg-robocop:before{content:'\\f357'}\n.whhg-rocket-launch:before{content:'\\f29c'}\n.whhg-rook:before{content:'\\f2fa'}\n.whhg-root:before{content:'\\f33c'}\n.whhg-rorschach:before{content:'\\f358'}\n.whhg-rotateclockwise:before{content:'\\f202'}\n.whhg-rotatecounterclockwise:before{content:'\\f203'}\n.whhg-roundrectangle:before{content:'\\f1bd'}\n.whhg-route:before{content:'\\f402'}\n.whhg-router:before{content:'\\f0e9'}\n.whhg-rss:before{content:'\\f17b'}\n.whhg-rubberstamp:before{content:'\\f274'}\n.whhg-ruby:before{content:'\\f067'}\n.whhg-ruler:before{content:'\\f1ef'}\n.whhg-sad:before{content:'\\f13d'}\n.whhg-safetypin:before{content:'\\f417'}\n.whhg-satellite:before{content:'\\f38a'}\n.whhg-satellitedish-remotemysql:before{content:'\\f0c0'}\n.whhg-save-floppy:before{content:'\\f0c8'}\n.whhg-scales:before{content:'\\f3fd'}\n.whhg-science-atom:before{content:'\\f2b0'}\n.whhg-scope-scan:before{content:'\\f212'}\n.whhg-scopealt:before{content:'\\f237'}\n.whhg-screenshot:before{content:'\\f109'}\n.whhg-screw:before{content:'\\f426'}\n.whhg-screwdriver:before{content:'\\f292'}\n.whhg-screwdriveralt:before{content:'\\f293'}\n.whhg-script:before{content:'\\f08d'}\n.whhg-sd:before{content:'\\f106'}\n.whhg-search:before{content:'\\f0c5'}\n.whhg-searchdocument:before{content:'\\f419'}\n.whhg-searchfolder:before{content:'\\f41a'}\n.whhg-security-shield:before{content:'\\f02d'}\n.whhg-securityalt-shieldalt:before{content:'\\f02e'}\n.whhg-selection-rectangleselection:before{content:'\\f1b0'}\n.whhg-selectionadd:before{content:'\\f1b2'}\n.whhg-selectionintersect:before{content:'\\f1b4'}\n.whhg-selectionremove:before{content:'\\f1b3'}\n.whhg-seo:before{content:'\\f030'}\n.whhg-server:before{content:'\\f026'}\n.whhg-servers:before{content:'\\f027'}\n.whhg-settingsandroid:before{content:'\\f309'}\n.whhg-settingsfour-gearsalt:before{content:'\\f306'}\n.whhg-settingsthree-gears:before{content:'\\f307'}\n.whhg-settingstwo-gearalt:before{content:'\\f308'}\n.whhg-shades-sunglasses:before{content:'\\f294'}\n.whhg-shapes:before{content:'\\f1dd'}\n.whhg-share:before{content:'\\f47d'}\n.whhg-share-alt:before{content:'\\f16c'}\n.whhg-sharealt:before{content:'\\f147'}\n.whhg-sharedfile:before{content:'\\f0ef'}\n.whhg-sharedhosting:before{content:'\\f037'}\n.whhg-sharethree:before{content:'\\f414'}\n.whhg-sheriff:before{content:'\\f2a9'}\n.whhg-shipping:before{content:'\\f23f'}\n.whhg-shopping:before{content:'\\f010'}\n.whhg-shopping-cart:before{content:'\\f035'}\n.whhg-shoppingbag:before{content:'\\f273'}\n.whhg-shortcut:before{content:'\\f043'}\n.whhg-shovel:before{content:'\\f290'}\n.whhg-shredder:before{content:'\\f27c'}\n.whhg-shutdown:before{content:'\\f11e'}\n.whhg-sidebar:before{content:'\\f124'}\n.whhg-signal:before{content:'\\f100'}\n.whhg-sim:before{content:'\\f0e1'}\n.whhg-simalt:before{content:'\\f121'}\n.whhg-skrill:before{content:'\\f268'}\n.whhg-skull:before{content:'\\f38d'}\n.whhg-skype:before{content:'\\f141'}\n.whhg-skypeaway:before{content:'\\f39f'}\n.whhg-skypebusy:before{content:'\\f3a0'}\n.whhg-skypeoffline:before{content:'\\f3a1'}\n.whhg-skypeonline:before{content:'\\f39e'}\n.whhg-smaller:before{content:'\\f30b'}\n.whhg-smf:before{content:'\\f062'}\n.whhg-smile:before{content:'\\263a'}\n.whhg-snow:before{content:'\\f22e'}\n.whhg-snowman:before{content:'\\f37c'}\n.whhg-socialnetwork:before{content:'\\f03b'}\n.whhg-software:before{content:'\\f09a'}\n.whhg-sortbynameascending-atoz:before{content:'\\f1c2'}\n.whhg-sortbynamedescending-ztoa:before{content:'\\f1c1'}\n.whhg-sortbysizeascending:before{content:'\\f1c3'}\n.whhg-sortbysizedescending:before{content:'\\f1c4'}\n.whhg-soundwave:before{content:'\\f194'}\n.whhg-soup:before{content:'\\f3d1'}\n.whhg-spaceinvaders:before{content:'\\f352'}\n.whhg-spades:before{content:'\\f2f5'}\n.whhg-spam:before{content:'\\f047'}\n.whhg-spamalt:before{content:'\\f048'}\n.whhg-spawn:before{content:'\\f344'}\n.whhg-speaker:before{content:'\\f372'}\n.whhg-speed:before{content:'\\f40b'}\n.whhg-spider:before{content:'\\f346'}\n.whhg-spiderman:before{content:'\\f347'}\n.whhg-split:before{content:'\\f335'}\n.whhg-spoon:before{content:'\\f213'}\n.whhg-spray:before{content:'\\f1c7'}\n.whhg-spreadsheet:before{content:'\\f0c3'}\n.whhg-squareapp:before{content:'\\f26f'}\n.whhg-squarebrackets:before{content:'\\f0b3'}\n.whhg-ssh:before{content:'\\f04e'}\n.whhg-sslmanager:before{content:'\\f04f'}\n.whhg-stadium:before{content:'\\f3d6'}\n.whhg-stamp:before{content:'\\f242'}\n.whhg-stampalt:before{content:'\\f243'}\n.whhg-star:before{content:'\\f13a'}\n.whhg-star-empty:before{content:'\\f13b'}\n.whhg-starempty:before{content:'\\f2de'}\n.whhg-starfull:before{content:'\\f2e0'}\n.whhg-starhalf:before{content:'\\f2df'}\n.whhg-steak:before{content:'\\f360'}\n.whhg-steam:before{content:'\\f2dd'}\n.whhg-step-backward:before{content:'\\f198'}\n.whhg-step-forward:before{content:'\\f197'}\n.whhg-sticker:before{content:'\\f3f5'}\n.whhg-stiletto:before{content:'\\f429'}\n.whhg-stockdown:before{content:'\\f252'}\n.whhg-stocks:before{content:'\\f250'}\n.whhg-stockup:before{content:'\\f251'}\n.whhg-stomach:before{content:'\\f3e1'}\n.whhg-stop:before{content:'\\f185'}\n.whhg-stopwatch:before{content:'\\f219'}\n.whhg-storage-box:before{content:'\\f011'}\n.whhg-storagealt-drawer:before{content:'\\f012'}\n.whhg-store:before{content:'\\f272'}\n.whhg-storm:before{content:'\\f230'}\n.whhg-stove:before{content:'\\f371'}\n.whhg-strawberry:before{content:'\\f3f3'}\n.whhg-strikethrough:before{content:'\\f1f7'}\n.whhg-student-school:before{content:'\\f288'}\n.whhg-stumbleupon:before{content:'\\f40c'}\n.whhg-subdomain:before{content:'\\f052'}\n.whhg-submarine:before{content:'\\f373'}\n.whhg-subscript:before{content:'\\f1ea'}\n.whhg-subtractshape:before{content:'\\f1fe'}\n.whhg-sum:before{content:'\\f33b'}\n.whhg-sun-day:before{content:'\\f206'}\n.whhg-sunnysideup:before{content:'\\f365'}\n.whhg-superman:before{content:'\\f33f'}\n.whhg-superscript:before{content:'\\f1eb'}\n.whhg-support:before{content:'\\f013'}\n.whhg-supportalt:before{content:'\\f014'}\n.whhg-switch:before{content:'\\f28a'}\n.whhg-switchoff:before{content:'\\f32d'}\n.whhg-switchoffalt:before{content:'\\f28e'}\n.whhg-switchon:before{content:'\\f32c'}\n.whhg-switchonalt:before{content:'\\f28d'}\n.whhg-sword:before{content:'\\f2ed'}\n.whhg-sync:before{content:'\\f0bd'}\n.whhg-syncalt:before{content:'\\f11c'}\n.whhg-synckeeplocal:before{content:'\\f33e'}\n.whhg-synckeepserver:before{content:'\\f33d'}\n.whhg-syringe-antivirus:before{content:'\\f0a9'}\n.whhg-tablet:before{content:'\\f118'}\n.whhg-tabletennis-pingpong:before{content:'\\f2f0'}\n.whhg-taco:before{content:'\\f3cd'}\n.whhg-tag:before{content:'\\f032'}\n.whhg-tagalt-pricealt:before{content:'\\f264'}\n.whhg-tags:before{content:'\\f482'}\n.whhg-tagvertical:before{content:'\\f15f'}\n.whhg-tank:before{content:'\\f423'}\n.whhg-target:before{content:'\\f2a6'}\n.whhg-taskmanager-logprograms:before{content:'\\f04b'}\n.whhg-tasks:before{content:'\\f0e0'}\n.whhg-taxi:before{content:'\\f3a4'}\n.whhg-tea:before{content:'\\f3cb'}\n.whhg-teapot:before{content:'\\f42c'}\n.whhg-telescope:before{content:'\\f3ef'}\n.whhg-temperature-thermometer:before{content:'\\f20d'}\n.whhg-temperaturealt-thermometeralt:before{content:'\\f20e'}\n.whhg-tennis:before{content:'\\f2ea'}\n.whhg-tent-camping:before{content:'\\f215'}\n.whhg-terminal:before{content:'\\f114'}\n.whhg-tethering:before{content:'\\f0f1'}\n.whhg-tetrisone:before{content:'\\f34b'}\n.whhg-tetristhree:before{content:'\\f34d'}\n.whhg-tetristwo:before{content:'\\f34c'}\n.whhg-text-height:before{content:'\\f1f8'}\n.whhg-text-width:before{content:'\\f1f9'}\n.whhg-th:before{content:'\\f110'}\n.whhg-th-large:before{content:'\\f112'}\n.whhg-th-list:before{content:'\\f113'}\n.whhg-theather:before{content:'\\f39c'}\n.whhg-theme-style:before{content:'\\f041'}\n.whhg-thissideup:before{content:'\\f41d'}\n.whhg-threecolumns:before{content:'\\f1ab'}\n.whhg-thumbs-down:before{content:'\\f139'}\n.whhg-thumbs-up:before{content:'\\f138'}\n.whhg-ticket:before{content:'\\f3dc'}\n.whhg-tictactoe:before{content:'\\f39a'}\n.whhg-tie-business:before{content:'\\2040'}\n.whhg-time:before{content:'\\f210'}\n.whhg-timeline:before{content:'\\f253'}\n.whhg-tint:before{content:'\\f208'}\n.whhg-toast:before{content:'\\f2ad'}\n.whhg-toiletpaper:before{content:'\\f384'}\n.whhg-tooth:before{content:'\\f3de'}\n.whhg-toothbrush:before{content:'\\f385'}\n.whhg-tophat:before{content:'\\f3f0'}\n.whhg-torigate:before{content:'\\f411'}\n.whhg-touchpad:before{content:'\\f115'}\n.whhg-trafficlight:before{content:'\\f22a'}\n.whhg-transform:before{content:'\\f1a6'}\n.whhg-trash:before{content:'\\f0ce'}\n.whhg-trashempty:before{content:'\\f0cf'}\n.whhg-trashfull:before{content:'\\f0d0'}\n.whhg-travel:before{content:'\\f422'}\n.whhg-treediagram:before{content:'\\f0ec'}\n.whhg-treeornament:before{content:'\\f37e'}\n.whhg-triangle:before{content:'\\25b3'}\n.whhg-tron:before{content:'\\f34f'}\n.whhg-trophy:before{content:'\\f2d7'}\n.whhg-truck:before{content:'\\f211'}\n.whhg-trumpet:before{content:'\\f375'}\n.whhg-tumblr:before{content:'\\f164'}\n.whhg-tv:before{content:'\\f1a4'}\n.whhg-twitter:before{content:'\\f16a'}\n.whhg-twocolumnsleft:before{content:'\\f1a9'}\n.whhg-twocolumnsleftalt:before{content:'\\f1aa'}\n.whhg-twocolumnsright:before{content:'\\f1a7'}\n.whhg-twocolumnsrightalt:before{content:'\\f1a8'}\n.whhg-ubuntu:before{content:'\\f120'}\n.whhg-umbrella:before{content:'\\f218'}\n.whhg-underline:before{content:'\\f1f6'}\n.whhg-undo:before{content:'\\f32a'}\n.whhg-unlock:before{content:'\\f0bf'}\n.whhg-upleft:before{content:'\\f302'}\n.whhg-upload:before{content:'\\f47a'}\n.whhg-uploadalt:before{content:'\\f11b'}\n.whhg-upright:before{content:'\\f303'}\n.whhg-uptime:before{content:'\\f017'}\n.whhg-usb:before{content:'\\f10d'}\n.whhg-usbalt:before{content:'\\f10e'}\n.whhg-usbplug:before{content:'\\f10f'}\n.whhg-user:before{content:'\\f133'}\n.whhg-userfilter:before{content:'\\f05d'}\n.whhg-usfootball:before{content:'\\f2ec'}\n.whhg-value-coins:before{content:'\\f018'}\n.whhg-vector:before{content:'\\f1b6'}\n.whhg-vendetta:before{content:'\\f3c5'}\n.whhg-video:before{content:'\\f17d'}\n.whhg-viking:before{content:'\\f379'}\n.whhg-vimeo:before{content:'\\f168'}\n.whhg-vinyl:before{content:'\\f0cc'}\n.whhg-violin:before{content:'\\f1a5'}\n.whhg-virus:before{content:'\\f0a8'}\n.whhg-visa:before{content:'\\f3c2'}\n.whhg-visitor:before{content:'\\f097'}\n.whhg-vlc-cone:before{content:'\\f192'}\n.whhg-voice:before{content:'\\f18c'}\n.whhg-volume-down:before{content:'\\f0e3'}\n.whhg-volume-off:before{content:'\\f0e4'}\n.whhg-volume-up:before{content:'\\f0e2'}\n.whhg-vps:before{content:'\\f025'}\n.whhg-wacom:before{content:'\\f1bb'}\n.whhg-walle:before{content:'\\f3bc'}\n.whhg-wallet:before{content:'\\e000'}\n.whhg-warcraft:before{content:'\\f3bf'}\n.whhg-warmedal:before{content:'\\f2e4'}\n.whhg-warning-sign:before{content:'\\f316'}\n.whhg-washer:before{content:'\\f39b'}\n.whhg-watch:before{content:'\\f378'}\n.whhg-watertap-plumbing:before{content:'\\f22d'}\n.whhg-wave-sea:before{content:'\\f23c'}\n.whhg-wavealt-seaalt:before{content:'\\f23b'}\n.whhg-webcam:before{content:'\\f0fe'}\n.whhg-webcamalt:before{content:'\\f129'}\n.whhg-webhostinghub:before{content:'\\f031'}\n.whhg-webmail:before{content:'\\f045'}\n.whhg-webpage:before{content:'\\f033'}\n.whhg-webplatform:before{content:'\\f3c3'}\n.whhg-websitealt:before{content:'\\f01c'}\n.whhg-websitebuilder:before{content:'\\f034'}\n.whhg-weight:before{content:'\\f430'}\n.whhg-westernunion:before{content:'\\f26a'}\n.whhg-wheel:before{content:'\\f228'}\n.whhg-wheelchair:before{content:'\\f3fe'}\n.whhg-whistle:before{content:'\\f3d8'}\n.whhg-whmcs:before{content:'\\f066'}\n.whhg-wifi:before{content:'\\f0ff'}\n.whhg-wind:before{content:'\\f41b'}\n.whhg-windleft:before{content:'\\f424'}\n.whhg-windows:before{content:'\\f019'}\n.whhg-windright:before{content:'\\f425'}\n.whhg-wine:before{content:'\\f238'}\n.whhg-wizard:before{content:'\\f03c'}\n.whhg-wizardalt:before{content:'\\f1fb'}\n.whhg-wizardhat:before{content:'\\f337'}\n.whhg-woman-female:before{content:'\\f2a2'}\n.whhg-women:before{content:'\\f24d'}\n.whhg-wordpress:before{content:'\\f074'}\n.whhg-wrench:before{content:'\\f05b'}\n.whhg-wrenchalt:before{content:'\\f2b2'}\n.whhg-xbox:before{content:'\\f353'}\n.whhg-xmen:before{content:'\\f345'}\n.whhg-yahoo:before{content:'\\f151'}\n.whhg-yen:before{content:'\\00a5'}\n.whhg-yenalt:before{content:'\\f25d'}\n.whhg-yinyang:before{content:'\\262f'}\n.whhg-youtube:before{content:'\\f142'}\n.whhg-zelda:before{content:'\\f3b8'}\n.whhg-zikula:before{content:'\\f0ac'}\n.whhg-zip:before{content:'\\f116'}\n.whhg-zodiac-aquarius:before{content:'\\f3b4'}\n.whhg-zodiac-aries:before{content:'\\f3aa'}\n.whhg-zodiac-cancer:before{content:'\\f3ad'}\n.whhg-zodiac-capricorn:before{content:'\\f3b3'}\n.whhg-zodiac-gemini:before{content:'\\f3ac'}\n.whhg-zodiac-leo:before{content:'\\f3ae'}\n.whhg-zodiac-libra:before{content:'\\f3b0'}\n.whhg-zodiac-pisces:before{content:'\\f3b5'}\n.whhg-zodiac-sagitarius:before{content:'\\f3b2'}\n.whhg-zodiac-scorpio:before{content:'\\f3b1'}\n.whhg-zodiac-taurus:before{content:'\\f3ab'}\n.whhg-zodiac-virgo:before{content:'\\f3af'}\n.whhg-zoom-in:before{content:'\\f320'}\n.whhg-zoom-out:before{content:'\\f321'}\n.whhg-vk:before{content:'\\f34e'}\n.whhg-bitcoin:before{content:'\\f584'}\n.whhg-rouble:before{content:'\\f4ca'}\n.whhg-phpnuke:before{content:'\\f48c'}\n.whhg-modx:before{content:'\\f48d'}\n.whhg-eoneohseven:before{content:'\\f48e'}\n.whhg-subrion:before{content:'\\f48f'}\n.whhg-typothree:before{content:'\\f490'}\n.whhg-tikiwiki:before{content:'\\f491'}\n.whhg-pligg:before{content:'\\f492'}\n.whhg-pyrocms:before{content:'\\f493'}\n.whhg-mambo:before{content:'\\f494'}\n.whhg-contao:before{content:'\\f495'}\n.whhg-crackedegg:before{content:'\\f496'}\n.whhg-coffeecupalt:before{content:'\\f497'}\n.whhg-reademailalt:before{content:'\\f498'}\n.whhg-train:before{content:'\\f499'}\n.whhg-shoebox:before{content:'\\f49a'}\n.whhg-bathtub:before{content:'\\f49b'}\n.whhg-ninegag:before{content:'\\f49c'}\n.whhg-pebble:before{content:'\\f49d'}\n.whhg-musicthree:before{content:'\\f49e'}\n.whhg-stairsup:before{content:'\\f49f'}\n.whhg-stairsdown:before{content:'\\f4a0'}\n.whhg-bookalt:before{content:'\\f4a1'}\n.whhg-programclose:before{content:'\\f4a2'}\n.whhg-programok:before{content:'\\f4a3'}\n.whhg-splitalt:before{content:'\\f4a4'}\n.whhg-solarsystem:before{content:'\\f4a5'}\n.whhg-honeycomb:before{content:'\\f4a6'}\n.whhg-tools:before{content:'\\f4a7'}\n.whhg-xoops:before{content:'\\f4a8'}\n.whhg-pixie:before{content:'\\f4a9'}\n.whhg-dotclear:before{content:'\\f4aa'}\n.whhg-impresscms:before{content:'\\f4ab'}\n.whhg-saurus:before{content:'\\f4ac'}\n.whhg-impresspages:before{content:'\\f4ad'}\n.whhg-monstra:before{content:'\\f4ae'}\n.whhg-snews:before{content:'\\f4af'}\n.whhg-jcore:before{content:'\\f4b0'}\n.whhg-silverstripe:before{content:'\\f4b1'}\n.whhg-btwoevolution:before{content:'\\f4b2'}\n.whhg-nucleus:before{content:'\\f4b3'}\n.whhg-symphony:before{content:'\\f4b5'}\n.whhg-vanillacms:before{content:'\\f4b6'}\n.whhg-bbpress:before{content:'\\f4b7'}\n.whhg-phpbbalt:before{content:'\\f4b8'}\n.whhg-chyrp:before{content:'\\f4b9'}\n.whhg-pivotx:before{content:'\\f4ba'}\n.whhg-pagecookery:before{content:'\\f4bb'}\n.whhg-moviereelalt:before{content:'\\f4bc'}\n.whhg-cassettealt:before{content:'\\f4bd'}\n.whhg-photobucket:before{content:'\\f4be'}\n.whhg-technorati:before{content:'\\f4bf'}\n.whhg-theverge:before{content:'\\f4c0'}\n.whhg-stacks:before{content:'\\f4c1'}\n.whhg-dotlist:before{content:'\\f4c2'}\n.whhg-numberlist:before{content:'\\f4c3'}\n.whhg-indentleft:before{content:'\\f4c4'}\n.whhg-indentright:before{content:'\\f4c5'}\n.whhg-fblike:before{content:'\\f4c6'}\n.whhg-fbdislike:before{content:'\\f4c7'}\n.whhg-sale:before{content:'\\f4c8'}\n.whhg-sharetronix:before{content:'\\f4c9'}\n.whhg-markerdown:before{content:'\\f4cb'}\n.whhg-markerup:before{content:'\\f4cc'}\n.whhg-markerleft:before{content:'\\f4cd'}\n.whhg-markerright:before{content:'\\f4ce'}\n.whhg-bookmarkalt:before{content:'\\f4cf'}\n.whhg-calendarthree:before{content:'\\f4d0'}\n.whhg-wineglass:before{content:'\\f4d1'}\n.whhg-slidersoff:before{content:'\\f4d2'}\n.whhg-slidersmiddle:before{content:'\\f4d3'}\n.whhg-slidersfull:before{content:'\\f4d4'}\n.whhg-slidersdesc:before{content:'\\f4d5'}\n.whhg-slidersasc:before{content:'\\f4d6'}\n.whhg-slideronefull:before{content:'\\f4d7'}\n.whhg-slidertwofull:before{content:'\\f4d8'}\n.whhg-sliderthreefull:before{content:'\\f4d9'}\n.whhg-noborders:before{content:'\\f4da'}\n.whhg-bottomborder:before{content:'\\f4db'}\n.whhg-topborder:before{content:'\\f4dc'}\n.whhg-leftborder:before{content:'\\f4dd'}\n.whhg-rightborder:before{content:'\\f4de'}\n.whhg-horizontalborder:before{content:'\\f4df'}\n.whhg-verticalborder:before{content:'\\f4e0'}\n.whhg-outerborders:before{content:'\\f4e1'}\n.whhg-innerborders:before{content:'\\f4e2'}\n.whhg-fullborders:before{content:'\\f4e3'}\n.whhg-networksignalalt:before{content:'\\f4e4'}\n.whhg-resizeverticalalt:before{content:'\\f4e5'}\n.whhg-resizehorizontalalt:before{content:'\\f4e6'}\n.whhg-moneyalt:before{content:'\\f4e7'}\n.whhg-fontcase:before{content:'\\f4e8'}\n.whhg-playstation:before{content:'\\f4e9'}\n.whhg-cube:before{content:'\\f4ea'}\n.whhg-sphere:before{content:'\\f4eb'}\n.whhg-ceilinglight:before{content:'\\f4ec'}\n.whhg-chandelier:before{content:'\\f4ed'}\n.whhg-details:before{content:'\\f4ee'}\n.whhg-detailsalt:before{content:'\\f4ef'}\n.whhg-bullet:before{content:'\\f4f0'}\n.whhg-gun:before{content:'\\f4f1'}\n.whhg-processorthree:before{content:'\\f4f2'}\n.whhg-world:before{content:'\\f4f3'}\n.whhg-statistics:before{content:'\\f4f4'}\n.whhg-shoppingcartalt:before{content:'\\f4f5'}\n.whhg-microphonealt:before{content:'\\f4f6'}\n.whhg-routeralt:before{content:'\\f4f7'}\n.whhg-shell:before{content:'\\f4f8'}\n.whhg-squareplay:before{content:'\\f4f9'}\n.whhg-squarestop:before{content:'\\f4fa'}\n.whhg-squarepause:before{content:'\\f4fb'}\n.whhg-squarerecord:before{content:'\\f4fc'}\n.whhg-squareforward:before{content:'\\f4fd'}\n.whhg-squareback:before{content:'\\f4fe'}\n.whhg-squarenext:before{content:'\\f4ff'}\n.whhg-squareprevious:before{content:'\\f500'}\n.whhg-mega:before{content:'\\f501'}\n.whhg-charliechaplin:before{content:'\\f502'}\n.whhg-popcorn:before{content:'\\f503'}\n.whhg-fatarrowright:before{content:'\\f504'}\n.whhg-fatarrowleft:before{content:'\\f505'}\n.whhg-fatarrowdown:before{content:'\\f506'}\n.whhg-fatarrowup:before{content:'\\f507'}\n.whhg-shirtbutton:before{content:'\\f508'}\n.whhg-shirtbuttonalt:before{content:'\\f509'}\n.whhg-cuckooclock:before{content:'\\f50a'}\n.whhg-lens:before{content:'\\f50b'}\n.whhg-voltage:before{content:'\\f50c'}\n.whhg-planealt:before{content:'\\f50d'}\n.whhg-busalt:before{content:'\\f50e'}\n.whhg-lipstick:before{content:'\\f50f'}\n.whhg-plantalt:before{content:'\\f510'}\n.whhg-paperboat:before{content:'\\f511'}\n.whhg-texture:before{content:'\\f512'}\n.whhg-dominoone:before{content:'\\f513'}\n.whhg-dominotwo:before{content:'\\f514'}\n.whhg-dominothree:before{content:'\\f515'}\n.whhg-dominofour:before{content:'\\f516'}\n.whhg-dominofive:before{content:'\\f517'}\n.whhg-dominosix:before{content:'\\f518'}\n.whhg-dominoseven:before{content:'\\f519'}\n.whhg-dominoeight:before{content:'\\f51a'}\n.whhg-dominonine:before{content:'\\f51b'}\n.whhg-connected:before{content:'\\f51c'}\n.whhg-connectedpc:before{content:'\\f51d'}\n.whhg-musicsheet:before{content:'\\f51e'}\n.whhg-rdio:before{content:'\\f51f'}\n.whhg-spotify:before{content:'\\f520'}\n.whhg-deviantart:before{content:'\\f521'}\n.whhg-yelp:before{content:'\\f522'}\n.whhg-behance:before{content:'\\f523'}\n.whhg-nfc:before{content:'\\f524'}\n.whhg-earbudsalt:before{content:'\\f525'}\n.whhg-earbuds:before{content:'\\f526'}\n.whhg-amazon:before{content:'\\f527'}\n.whhg-openid:before{content:'\\f528'}\n.whhg-digg:before{content:'\\f529'}\n.whhg-retweet-alt:before{content:'\\f52a'}\n.whhg-moonnew:before{content:'\\f52b'}\n.whhg-moonwaxingcrescent:before{content:'\\f52c'}\n.whhg-moonfirstquarter:before{content:'\\f52d'}\n.whhg-moonwaxinggibbous:before{content:'\\f52e'}\n.whhg-moonfull:before{content:'\\f52f'}\n.whhg-moonwaninggibbous:before{content:'\\f530'}\n.whhg-moonthirdquarter:before{content:'\\f531'}\n.whhg-moonwaningcrescent:before{content:'\\f532'}\n.whhg-planet:before{content:'\\f533'}\n.whhg-sodacup:before{content:'\\f534'}\n.whhg-cocktail:before{content:'\\f535'}\n.whhg-church:before{content:'\\f536'}\n.whhg-mosque:before{content:'\\f537'}\n.whhg-comedy:before{content:'\\f538'}\n.whhg-tragedy:before{content:'\\f539'}\n.whhg-bacon:before{content:'\\f53a'}\n.whhg-trailor:before{content:'\\f53b'}\n.whhg-tshirt:before{content:'\\f53c'}\n.whhg-design:before{content:'\\f53d'}\n.whhg-spiderweb:before{content:'\\f53e'}\n.whhg-fireplace:before{content:'\\f53f'}\n.whhg-tallglass:before{content:'\\f540'}\n.whhg-grapes:before{content:'\\f541'}\n.whhg-biohazard:before{content:'\\f542'}\n.whhg-directions:before{content:'\\f543'}\n.whhg-equalizerthree:before{content:'\\f544'}\n.whhg-mountains:before{content:'\\f545'}\n.whhg-bing:before{content:'\\f546'}\n.whhg-windowseight:before{content:'\\f547'}\n.whhg-microsoftoffice:before{content:'\\f548'}\n.whhg-salealt:before{content:'\\f549'}\n.whhg-purse:before{content:'\\f54a'}\n.whhg-chickenalt:before{content:'\\f54b'}\n.whhg-podium:before{content:'\\f54c'}\n.whhg-findfriends:before{content:'\\f54d'}\n.whhg-microphonethree:before{content:'\\f54e'}\n.whhg-workshirt:before{content:'\\f54f'}\n.whhg-donotdisturb:before{content:'\\f550'}\n.whhg-addtags:before{content:'\\f551'}\n.whhg-removetags:before{content:'\\f556'}\n.whhg-carbattery:before{content:'\\f553'}\n.whhg-debug:before{content:'\\f554'}\n.whhg-trojan:before{content:'\\f555'}\n.whhg-molecule:before{content:'\\f556'}\n.whhg-safetygoggles:before{content:'\\f557'}\n.whhg-leather:before{content:'\\f558'}\n.whhg-teddybear:before{content:'\\f559'}\n.whhg-stroller:before{content:'\\f55a'}\n.whhg-circleplay:before{content:'\\f55b'}\n.whhg-circlestop:before{content:'\\f55c'}\n.whhg-circlepause:before{content:'\\f55d'}\n.whhg-circlerecord:before{content:'\\f55e'}\n.whhg-circleforward:before{content:'\\f55f'}\n.whhg-circlebackward:before{content:'\\f560'}\n.whhg-circlenext:before{content:'\\f561'}\n.whhg-circleprevious:before{content:'\\f562'}\n.whhg-circleplayempty:before{content:'\\f563'}\n.whhg-circlestopempty:before{content:'\\f564'}\n.whhg-circlepauseempty:before{content:'\\f565'}\n.whhg-circlerecordempty:before{content:'\\f566'}\n.whhg-circleforwardempty:before{content:'\\f567'}\n.whhg-circlebackwardempty:before{content:'\\f568'}\n.whhg-circlenextempty:before{content:'\\f569'}\n.whhg-circlepreviousempty:before{content:'\\f56a'}\n.whhg-belt:before{content:'\\f56b'}\n.whhg-bait:before{content:'\\f56c'}\n.whhg-manalt:before{content:'\\f56d'}\n.whhg-womanalt:before{content:'\\f56e'}\n.whhg-clover:before{content:'\\f56f'}\n.whhg-pacifier:before{content:'\\f570'}\n.whhg-calcplus:before{content:'\\f571'}\n.whhg-calcminus:before{content:'\\f572'}\n.whhg-calcmultiply:before{content:'\\f573'}\n.whhg-calcdivide:before{content:'\\f574'}\n.whhg-calcequals:before{content:'\\f575'}\n.whhg-city:before{content:'\\f576'}\n.whhg-hdvideo:before{content:'\\f577'}\n.whhg-horizontalexpand:before{content:'\\f578'}\n.whhg-horizontalcontract:before{content:'\\f579'}\n.whhg-radar:before{content:'\\f57a'}\n.whhg-threed:before{content:'\\f57b'}\n.whhg-flickralt:before{content:'\\f57c'}\n.whhg-pattern:before{content:'\\f57d'}\n.whhg-elevator:before{content:'\\f57e'}\n.whhg-escalator:before{content:'\\f57f'}\n.whhg-portrait:before{content:'\\f580'}\n.whhg-cigar:before{content:'\\f581'}\n.whhg-dropbox:before{content:'\\f582'}\n.whhg-origami:before{content:'\\f583'}\n.whhg-opensource:before{content:'\\f585'}\n.whhg-redaxscript:before{content:'\\f586'}\n.whhg-mahara:before{content:'\\f587'}\n.whhg-forkcms:before{content:'\\f588'}\n.whhg-pimcore:before{content:'\\f589'}\n.whhg-bigace:before{content:'\\f58a'}\n.whhg-aef:before{content:'\\f58b'}\n.whhg-punbb:before{content:'\\f58c'}\n.whhg-phorum:before{content:'\\f58d'}\n.whhg-fluxbb:before{content:'\\f58e'}\n.whhg-minibb:before{content:'\\f58f'}\n.whhg-zenphoto:before{content:'\\f590'}\n.whhg-fourimages:before{content:'\\f591'}\n.whhg-plogger:before{content:'\\f592'}\n.whhg-jcow:before{content:'\\f593'}\n.whhg-elgg:before{content:'\\f594'}\n.whhg-etano:before{content:'\\f595'}\n.whhg-openclassifieds:before{content:'\\f596'}\n.whhg-osclass:before{content:'\\f597'}\n.whhg-openx:before{content:'\\f598'}\n.whhg-phplist:before{content:'\\f599'}\n.whhg-roundcube:before{content:'\\f59a'}\n.whhg-pommo:before{content:'\\f59b'}\n.whhg-webinsta:before{content:'\\f59c'}\n.whhg-limesurvey:before{content:'\\f59d'}\n.whhg-fengoffice:before{content:'\\f59e'}\n.whhg-eyeos:before{content:'\\f59f'}\n.whhg-dotproject:before{content:'\\f5a0'}\n.whhg-collabtive:before{content:'\\f5a1'}\n.whhg-projectpier:before{content:'\\f5a2'}\n.whhg-taskfreak:before{content:'\\f5a3'}\n.whhg-eventum:before{content:'\\f5a4'}\n.whhg-traq:before{content:'\\f5a5'}\n.whhg-mantisbugtracker:before{content:'\\f5a6'}\n.whhg-oscommerce:before{content:'\\f5a7'}\n.whhg-zencart:before{content:'\\f5a8'}\n.whhg-tomatocart:before{content:'\\f5a9'}\n.whhg-boxbilling:before{content:'\\f5aa'}\n.whhg-zurmo:before{content:'\\f5ab'}\n.whhg-orangehrm:before{content:'\\f5ac'}\n.whhg-vtiger:before{content:'\\f5ad'}\n.whhg-mibew:before{content:'\\f5ae'}\n.whhg-phpmyfaq:before{content:'\\f5af'}\n.whhg-yiiframework:before{content:'\\f5b0'}\n.whhg-zendframework:before{content:'\\f5b1'}\n.whhg-fuelphp:before{content:'\\f5b2'}\n.whhg-kohana:before{content:'\\f5b3'}\n.whhg-smarty:before{content:'\\f5b4'}\n.whhg-sidu:before{content:'\\f5b5'}\n.whhg-simplepie:before{content:'\\f5b6'}\n.whhg-projectsend:before{content:'\\f5b7'}\n.whhg-extjs:before{content:'\\f5b8'}\n.whhg-raphael:before{content:'\\f5b9'}\n.whhg-sizzle:before{content:'\\f5ba'}\n.whhg-yui:before{content:'\\f5bb'}\n.whhg-scissorsalt:before{content:'\\f5bc'}\n.whhg-cuthere:before{content:'\\f5bd'}\n.whhg-coinsalt:before{content:'\\f5be'}\n.whhg-parkingmeter:before{content:'\\f5bf'}\n.whhg-treethree:before{content:'\\f5c0'}\n.whhg-packarchive:before{content:'\\f5c1'}\n.whhg-unpackarchive:before{content:'\\f5c2'}\n.whhg-terminalalt:before{content:'\\f5c3'}\n.whhg-jersey:before{content:'\\f5c4'}\n.whhg-vial:before{content:'\\f5c5'}\n.whhg-noteslist:before{content:'\\f5c6'}\n.whhg-notestasks:before{content:'\\f5c7'}\n.whhg-notesdate:before{content:'\\f5c8'}\n.whhg-noteslocation:before{content:'\\f5c9'}\n.whhg-noteslistalt:before{content:'\\f5ca'}\n.whhg-notestasksalt:before{content:'\\f5cb'}\n.whhg-notesdatealt:before{content:'\\f5cc'}\n.whhg-noteslocationalt:before{content:'\\f5cd'}\n.whhg-useralt:before{content:'\\f5ce'}\n.whhg-adduseralt:before{content:'\\f5cf'}\n.whhg-removeuseralt:before{content:'\\f5d0'}\n.whhg-banuseralt:before{content:'\\f5d1'}\n.whhg-banuser:before{content:'\\f5d2'}\n.whhg-paintrollalt:before{content:'\\f5d3'}\n.whhg-textcursor:before{content:'\\f5d4'}\n.whhg-textfield:before{content:'\\f5d5'}\n.whhg-precisecursor:before{content:'\\f5d6'}\n.whhg-brokenlink:before{content:'\\f5d7'}\n.whhg-bookmarkthree:before{content:'\\f5d8'}\n.whhg-bookmarkfour:before{content:'\\f5d9'}\n.whhg-warmedalalt:before{content:'\\f5da'}\n.whhg-thinking:before{content:'\\f5db'}\n.whhg-commentlove:before{content:'\\f5dc'}\n.whhg-commentsmiley:before{content:'\\f5dd'}\n.whhg-sharetwo:before{content:'\\f147'}\n.whhg-emptystar:before{content:'\\f2de'}\n.whhg-halfstar:before{content:'\\f2df'}\n.whhg-fullstar:before{content:'\\f2e0'}\n.whhg-forbidden:before{content:'\\f314'}\n.whhg-indentleftalt:before{content:'\\f4c4'}\n.whhg-indentrightalt:before{content:'\\f4c5'}\n.whhg-modxalt:before{content:'\\f5de'}\n.whhg-apple:before{content:'\\f5df'}\n.whhg-greekcolumn:before{content:'\\f5e0'}\n.whhg-walletalt:before{content:'\\f5e1'}\n.whhg-dollarsquare:before{content:'\\f5e2'}\n.whhg-poundsquare:before{content:'\\f5e3'}\n.whhg-yensquare:before{content:'\\f5e4'}\n.whhg-eurosquare:before{content:'\\f5e5'}\n.whhg-bitcoinsquare:before{content:'\\f5e6'}\n.whhg-roublesquare:before{content:'\\f5e7'}\n.whhg-roublealt:before{content:'\\f5e8'}\n.whhg-bitcoinalt:before{content:'\\f5e9'}\n.whhg-gavel:before{content:'\\f5ea'}\n.whhg-barchartasc:before{content:'\\f5eb'}\n.whhg-barchartdesc:before{content:'\\f5ec'}\n.whhg-house:before{content:'\\f5ed'}\n.whhg-garage:before{content:'\\f5ee'}\n.whhg-milk:before{content:'\\f5ef'}\n.whhg-hryvnia:before{content:'\\f5f0'}\n.whhg-hryvniasquare:before{content:'\\f5f1'}\n.whhg-hryvniaalt:before{content:'\\f5f2'}\n.whhg-beeralt:before{content:'\\f5f3'}\n.whhg-trolleyfull:before{content:'\\f5f4'}\n.whhg-trolleyload:before{content:'\\f5f5'}\n.whhg-trolleyunload:before{content:'\\f5f6'}\n.whhg-trolleyempty:before{content:'\\f5f7'}\n.whhg-mootools:before{content:'\\f5f8'}\n.whhg-mootoolstwo:before{content:'\\f5f9'}\n.whhg-mootoolsthree:before{content:'\\f5fa'}\n.whhg-mysqlthree:before{content:'\\f5fb'}\n.whhg-mysqlalt:before{content:'\\f5fc'}\n.whhg-pgsql:before{content:'\\f5fd'}\n.whhg-mongodb:before{content:'\\f5fe'}\n.whhg-neofourj:before{content:'\\f5ff'}\n.whhg-nosql:before{content:'\\f600'}\n.whhg-catface:before{content:'\\f601'}\n.whhg-polaroid:before{content:'\\f602'}\n.whhg-clouderror:before{content:'\\f603'}\n.whhg-camcorder:before{content:'\\f604'}\n.whhg-projector:before{content:'\\f605'}\n.whhg-sdvideo:before{content:'\\f606'}\n.whhg-fx:before{content:'\\f607'}\n.whhg-gramophone:before{content:'\\f608'}\n.whhg-speakeralt:before{content:'\\f609'}\n.whhg-hddalt:before{content:'\\f60a'}\n.whhg-usbflash:before{content:'\\f60b'}\n.whhg-manillaenvelope:before{content:'\\f60c'}\n.whhg-stickynote:before{content:'\\f60d'}\n.whhg-stickynotealt:before{content:'\\f60e'}\n.whhg-torch:before{content:'\\f60f'}\n.whhg-flashlightalt:before{content:'\\f610'}\n.whhg-campfire:before{content:'\\f611'}\n.whhg-cctv:before{content:'\\f612'}\n.whhg-drill:before{content:'\\f613'}\n.whhg-lampalt:before{content:'\\f614'}\n.whhg-flowerpot:before{content:'\\f615'}\n.whhg-defragment:before{content:'\\f616'}\n.whhg-panoramio:before{content:'\\f617'}\n.whhg-panorama:before{content:'\\f618'}\n.whhg-photosphere:before{content:'\\f619'}\n.whhg-panoramaalt:before{content:'\\f61a'}\n.whhg-timer:before{content:'\\f61b'}\n.whhg-burstmode:before{content:'\\f61c'}\n.whhg-cameraflash:before{content:'\\f61d'}\n.whhg-autoflash:before{content:'\\f61e'}\n.whhg-noflash:before{content:'\\f61f'}\n.whhg-threetofour:before{content:'\\f620'}\n.whhg-sixteentonine:before{content:'\\f621'}\n.whhg-cat:before{content:'\\f622'}\n.whhg-dog:before{content:'\\f623'}\n.whhg-rabbit:before{content:'\\f624'}\n.whhg-koala:before{content:'\\f625'}\n.whhg-butterflyalt:before{content:'\\f626'}\n.whhg-butterfly:before{content:'\\f627'}\n.whhg-wwf:before{content:'\\f628'}\n.whhg-poop:before{content:'\\f629'}\n.whhg-poopalt:before{content:'\\f62a'}\n.whhg-kiwi:before{content:'\\f62b'}\n.whhg-kiwifruit:before{content:'\\f62c'}\n.whhg-lemon:before{content:'\\f62d'}\n.whhg-pear:before{content:'\\f62e'}\n.whhg-watermelon:before{content:'\\f62f'}\n.whhg-onion:before{content:'\\f630'}\n.whhg-turnip:before{content:'\\f631'}\n.whhg-eggplant:before{content:'\\f632'}\n.whhg-avocado:before{content:'\\f633'}\n.whhg-perfume:before{content:'\\f634'}\n.whhg-arch:before{content:'\\f635'}\n.whhg-pluspages:before{content:'\\f636'}\n.whhg-community:before{content:'\\f637'}\n.whhg-pluscircles:before{content:'\\f638'}\n.whhg-googleplusold:before{content:'\\f639'}\n.whhg-plusgames:before{content:'\\f63a'}\n.whhg-event:before{content:'\\f63b'}\n.whhg-miui:before{content:'\\f63c'}\n.whhg-hot:before{content:'\\f63d'}\n.whhg-flowup:before{content:'\\f63e'}\n.whhg-flowdown:before{content:'\\f63f'}\n.whhg-moustache:before{content:'\\f640'}\n.whhg-angle:before{content:'\\f641'}\n.whhg-sleep:before{content:'\\f642'}\n.whhg-acorn:before{content:'\\f643'}\n.whhg-steamalt:before{content:'\\f644'}\n.whhg-resizeupleft:before{content:'\\f645'}\n.whhg-resizeupright:before{content:'\\f646'}\n.whhg-resizedownright:before{content:'\\f647'}\n.whhg-resizedownleft:before{content:'\\f648'}\n.whhg-hammeralt:before{content:'\\f649'}\n.whhg-bamboo:before{content:'\\f64a'}\n.whhg-mypictures:before{content:'\\f64b'}\n.whhg-mymusic:before{content:'\\f64c'}\n.whhg-myvideos:before{content:'\\f64d'}\n.whhg-systemfolder:before{content:'\\f64e'}\n.whhg-bookthree:before{content:'\\f64f'}\n.whhg-compile:before{content:'\\f650'}\n.whhg-report:before{content:'\\f651'}\n.whhg-fliphorizontal:before{content:'\\f652'}\n.whhg-flipvertical:before{content:'\\f653'}\n.whhg-construction:before{content:'\\f654'}\n.whhg-counteralt:before{content:'\\f655'}\n.whhg-counter:before{content:'\\f656'}\n.whhg-papercutter:before{content:'\\f657'}\n.whhg-snaptodot:before{content:'\\f658'}\n.whhg-snaptogrid:before{content:'\\f659'}\n.whhg-caligraphy:before{content:'\\f65a'}\n.whhg-icecreamthree:before{content:'\\f65b'}\n.whhg-skitch:before{content:'\\f65c'}\n.whhg-archlinux:before{content:'\\f65d'}\n.whhg-elementaryos:before{content:'\\f65e'}\n.whhg-loadingone:before{content:'\\f65f'}\n.whhg-loadingtwo:before{content:'\\f660'}\n.whhg-loadingthree:before{content:'\\f661'}\n.whhg-loadingfour:before{content:'\\f662'}\n.whhg-loadingfive:before{content:'\\f663'}\n.whhg-loadingsix:before{content:'\\f664'}\n.whhg-loadingseven:before{content:'\\f665'}\n.whhg-loadingeight:before{content:'\\f666'}\n.whhg-brokenheart:before{content:'\\f667'}\n.whhg-heartarrow:before{content:'\\f668'}\n.whhg-heartsparkle:before{content:'\\f669'}\n.whhg-cell:before{content:'\\f66a'}\n.whhg-panda:before{content:'\\f66b'}\n.whhg-refreshalt:before{content:'\\f66c'}\n.whhg-mirror:before{content:'\\f66d'}\n.whhg-headphonesthree:before{content:'\\f66e'}\n.whhg-fan:before{content:'\\f66f'}\n.whhg-tornado:before{content:'\\f670'}\n.whhg-hangout:before{content:'\\f671'}\n.whhg-beaker:before{content:'\\f672'}\n.whhg-beakeralt:before{content:'\\f673'}\n.whhg-phonescreensize:before{content:'\\f674'}\n.whhg-tabletscreensize:before{content:'\\f675'}\n.whhg-notification:before{content:'\\f676'}\n.whhg-googleglass:before{content:'\\f677'}\n.whhg-pinterest:before{content:'\\f678'}\n.whhg-soundcloud:before{content:'\\f679'}\n.whhg-alarmclock:before{content:'\\f67a'}\n.whhg-addalarm:before{content:'\\f67b'}\n.whhg-deletealarm:before{content:'\\f67c'}\n.whhg-turnoffalarm:before{content:'\\f67d'}\n.whhg-snooze:before{content:'\\f67e'}\n.whhg-bringforward:before{content:'\\f67f'}\n.whhg-sendbackward:before{content:'\\f680'}\n.whhg-bringtofront:before{content:'\\f681'}\n.whhg-sendtoback:before{content:'\\f682'}\n.whhg-tectile:before{content:'\\f683'}\n.whhg-grave:before{content:'\\f684'}\n.whhg-gravetwo:before{content:'\\f685'}\n.whhg-gravethree:before{content:'\\f686'}\n.whhg-gravefour:before{content:'\\f687'}\n.whhg-textlayer:before{content:'\\f688'}\n.whhg-vectoralt:before{content:'\\f689'}\n.whhg-drmanhattan:before{content:'\\f68a'}\n.whhg-foursquarealt:before{content:'\\f68b'}\n.whhg-hashtag:before{content:'\\f68c'}\n.whhg-enteralt:before{content:'\\f68d'}\n.whhg-exitalt:before{content:'\\f68e'}\n.whhg-cartalt:before{content:'\\f68f'}\n.whhg-vaultthree:before{content:'\\f690'}\n.whhg-fatundo:before{content:'\\f691'}\n.whhg-fatredo:before{content:'\\f692'}\n.whhg-feedly:before{content:'\\f693'}\n.whhg-feedlyalt:before{content:'\\f694'}\n.whhg-squareheart:before{content:'\\f695'}\n.whhg-squarestar:before{content:'\\f696'}\n.whhg-squarecomment:before{content:'\\f697'}\n.whhg-squarelike:before{content:'\\f698'}\n.whhg-squarebookmark:before{content:'\\f699'}\n.whhg-squaresearch:before{content:'\\f69a'}\n.whhg-squaresettings:before{content:'\\f69b'}\n.whhg-squarevoice:before{content:'\\f69c'}\n.whhg-google:before{content:'\\f69d'}\n.whhg-emojigrinalt:before{content:'\\f69e'}\n.whhg-emojigrin:before{content:'\\f69f'}\n.whhg-constellation:before{content:'\\f6a0'}\n.whhg-emojisurprise:before{content:'\\f6a1'}\n.whhg-emojidead:before{content:'\\f6a2'}\n.whhg-emojiangry:before{content:'\\f6a3'}\n.whhg-emojidevil:before{content:'\\f6a4'}\n.whhg-emojiwink:before{content:'\\f6a5'}\n.whhg-moonorbit:before{content:'\\f6a6'}\n.whhg-emojismile:before{content:'\\f6a7'}\n.whhg-emojisorry:before{content:'\\f6a8'}\n.whhg-emojiconfused:before{content:'\\f6a9'}\n.whhg-emojisleep:before{content:'\\f6aa'}\n.whhg-emojicry:before{content:'\\f6ab'}\n.whhg-circlefork:before{content:'\\f6ac'}\n.whhg-circlespoon:before{content:'\\f6ad'}\n.whhg-circleknife:before{content:'\\f6ae'}\n.whhg-circlepencil:before{content:'\\f6af'}\n.whhg-circlehammer:before{content:'\\f6b0'}\n.whhg-circlescrewdriver:before{content:'\\f6b1'}\n.whhg-middlefinger:before{content:'\\f6b2'}\n.whhg-heavymetal:before{content:'\\f6b3'}\n.whhg-turnright:before{content:'\\f6b4'}\n.whhg-turnleft:before{content:'\\f6b5'}\n.whhg-vineapp:before{content:'\\f6b6'}\n.whhg-vineappalt:before{content:'\\f6b7'}\n.whhg-finance:before{content:'\\f6b8'}\n.whhg-survey:before{content:'\\f6b9'}\n.whhg-hangouts:before{content:'\\f6ba'}\n.whhg-square0:before{content:'\\f6bb'}\n.whhg-square1:before{content:'\\f6bc'}\n.whhg-square2:before{content:'\\f6bd'}\n.whhg-square3:before{content:'\\f6be'}\n.whhg-square4:before{content:'\\f6bf'}\n.whhg-square5:before{content:'\\f6c0'}\n.whhg-square6:before{content:'\\f6c1'}\n.whhg-square7:before{content:'\\f6c2'}\n.whhg-square8:before{content:'\\f6c3'}\n.whhg-square9:before{content:'\\f6c4'}\n.whhg-squarea:before{content:'\\f6c5'}\n.whhg-squareb:before{content:'\\f6c6'}\n.whhg-squarec:before{content:'\\f6c7'}\n.whhg-squared:before{content:'\\f6c8'}\n.whhg-squaree:before{content:'\\f6c9'}\n.whhg-squaref:before{content:'\\f6ca'}\n.whhg-squareg:before{content:'\\f6cb'}\n.whhg-squareh:before{content:'\\f6cc'}\n.whhg-squarei:before{content:'\\f6cd'}\n.whhg-squarej:before{content:'\\f6ce'}\n.whhg-squarek:before{content:'\\f6cf'}\n.whhg-squarel:before{content:'\\f6d0'}\n.whhg-squarem:before{content:'\\f6d1'}\n.whhg-squaren:before{content:'\\f6d2'}\n.whhg-squareo:before{content:'\\f6d3'}\n.whhg-squarep:before{content:'\\f6d4'}\n.whhg-squareq:before{content:'\\f6d5'}\n.whhg-squarer:before{content:'\\f6d6'}\n.whhg-squares:before{content:'\\f6d7'}\n.whhg-squaret:before{content:'\\f6d8'}\n.whhg-squareu:before{content:'\\f6d9'}\n.whhg-squarev:before{content:'\\f6da'}\n.whhg-squarew:before{content:'\\f6db'}\n.whhg-squarex:before{content:'\\f6dc'}\n.whhg-squarey:before{content:'\\f6dd'}\n.whhg-squarez:before{content:'\\f6de'}\n.whhg-shuttle:before{content:'\\f6df'}\n.whhg-meteor:before{content:'\\f6e0'}\n.whhg-galaxy:before{content:'\\f6e1'}\n.whhg-observatory:before{content:'\\f6e2'}\n.whhg-astronaut:before{content:'\\f6e3'}\n.whhg-asteroid:before{content:'\\f6e4'}\n.whhg-sunrise:before{content:'\\f6e5'}\n.whhg-sunset:before{content:'\\f6e6'}\n.whhg-tiderise:before{content:'\\f6e7'}\n.whhg-tidefall:before{content:'\\f6e8'}\n.whhg-mushroomcloud:before{content:'\\f6e9'}\n.whhg-galaxyalt:before{content:'\\f6ea'}\n.whhg-sputnik:before{content:'\\f6eb'}\n.whhg-sextant:before{content:'\\f6ec'}\n.whhg-spock:before{content:'\\f6ed'}\n.whhg-meteorite:before{content:'\\f6ee'}\n.whhg-deathstar:before{content:'\\f6ef'}\n.whhg-deathstarbulding:before{content:'\\f6f0'}\n.whhg-fallingstar:before{content:'\\f6f1'}\n.whhg-windmill:before{content:'\\f6f2'}\n.whhg-windmillalt:before{content:'\\f6f3'}\n.whhg-pumpjack:before{content:'\\f6f4'}\n.whhg-nuclearplant:before{content:'\\f6f5'}\n.whhg-solarpanel:before{content:'\\f6f6'}\n.whhg-barrel:before{content:'\\f6f7'}\n.whhg-canister:before{content:'\\f6f8'}\n.whhg-railtunnel:before{content:'\\f6f9'}\n.whhg-roadtunnel:before{content:'\\f6fa'}\n.whhg-pickaxe:before{content:'\\f6fb'}\n.whhg-cow:before{content:'\\f6fc'}\n.whhg-sheep:before{content:'\\f6fd'}\n.whhg-fountain:before{content:'\\f6fe'}\n.whhg-circlezero:before{content:'\\f6ff'}\n.whhg-circleone:before{content:'\\f700'}\n.whhg-circletwo:before{content:'\\f701'}\n.whhg-circlethree:before{content:'\\f702'}\n.whhg-circlefour:before{content:'\\f703'}\n.whhg-circlefive:before{content:'\\f704'}\n.whhg-circlesix:before{content:'\\f705'}\n.whhg-circleseven:before{content:'\\f706'}\n.whhg-circleeight:before{content:'\\f707'}\n.whhg-circlenine:before{content:'\\f708'}\n.whhg-circlea:before{content:'\\f709'}\n.whhg-circleb:before{content:'\\f70a'}\n.whhg-circlec:before{content:'\\f70b'}\n.whhg-circled:before{content:'\\f70c'}\n.whhg-circlee:before{content:'\\f70d'}\n.whhg-circlef:before{content:'\\f70e'}\n.whhg-circleg:before{content:'\\f70f'}\n.whhg-circleh:before{content:'\\f710'}\n.whhg-circlei:before{content:'\\f711'}\n.whhg-circlej:before{content:'\\f712'}\n.whhg-circlek:before{content:'\\f713'}\n.whhg-circlel:before{content:'\\f714'}\n.whhg-circlem:before{content:'\\f715'}\n.whhg-circlen:before{content:'\\f716'}\n.whhg-circleo:before{content:'\\f717'}\n.whhg-circlep:before{content:'\\f718'}\n.whhg-circleq:before{content:'\\f719'}\n.whhg-circler:before{content:'\\f71a'}\n.whhg-circles:before{content:'\\f71b'}\n.whhg-circlet:before{content:'\\f71c'}\n.whhg-circleu:before{content:'\\f71d'}\n.whhg-circlev:before{content:'\\f71e'}\n.whhg-circlew:before{content:'\\f71f'}\n.whhg-circlex:before{content:'\\f720'}\n.whhg-circley:before{content:'\\f721'}\n.whhg-circlez:before{content:'\\f722'}\n.whhg-creeper:before{content:'\\f723'}\n.whhg-minecraft:before{content:'\\f724'}\n.whhg-minecraftalt:before{content:'\\f725'}\n.whhg-pixelsword:before{content:'\\f726'}\n.whhg-pixelbroadsword:before{content:'\\f727'}\n.whhg-pixelwand:before{content:'\\f728'}\n.whhg-pixelpotion:before{content:'\\f729'}\n.whhg-pixelpotionalt:before{content:'\\f72a'}\n.whhg-pixelpickaxe:before{content:'\\f72b'}\n.whhg-pixelbow:before{content:'\\f72c'}\n.whhg-pixelarrow:before{content:'\\f72d'}\n.whhg-pixelaxe:before{content:'\\f72e'}\n.whhg-pixeldagger:before{content:'\\f72f'}\n.whhg-pixelbastardsword:before{content:'\\f730'}\n.whhg-pixellance:before{content:'\\f731'}\n.whhg-pixelbattleaxe:before{content:'\\f732'}\n.whhg-pixelshovel:before{content:'\\f733'}\n.whhg-pixelsphere:before{content:'\\f734'}\n.whhg-pixelelixir:before{content:'\\f735'}\n.whhg-pixelchest:before{content:'\\f736'}\n.whhg-pixelshield:before{content:'\\f737'}\n.whhg-pixelheart:before{content:'\\f738'}\n.whhg-rudder:before{content:'\\f739'}\n.whhg-folderalt:before{content:'\\f73a'}\n.whhg-removefolderalt:before{content:'\\f73b'}\n.whhg-addfolderalt:before{content:'\\f73c'}\n.whhg-deletefolderalt:before{content:'\\f73d'}\n.whhg-openfolderalt:before{content:'\\f73e'}\n.whhg-clipboardalt:before{content:'\\f73f'}\n.whhg-pastealt:before{content:'\\f740'}\n.whhg-loadingflowccw:before{content:'\\f741'}\n.whhg-loadingflowcw:before{content:'\\f742'}\n.whhg-code:before{content:'\\f743'}\n.whhg-cloveralt:before{content:'\\f744'}\n.whhg-lips:before{content:'\\f745'}\n.whhg-kiss:before{content:'\\f746'}\n.whhg-manualshift:before{content:'\\f747'}\n.whhg-simcardthree:before{content:'\\f748'}\n.whhg-parthenon:before{content:'\\f749'}\n.whhg-addcomment:before{content:'\\f74a'}\n.whhg-deletecomment:before{content:'\\f74b'}\n.whhg-gender:before{content:'\\f74c'}\n.whhg-callalt:before{content:'\\f74d'}\n.whhg-outgoingcallalt:before{content:'\\f74e'}\n.whhg-incomingcallalt:before{content:'\\f74f'}\n.whhg-missedcallalt:before{content:'\\f750'}\n.whhg-export:before{content:'\\f751'}\n.whhg-import:before{content:'\\f752'}\n.whhg-cherryalt:before{content:'\\f753'}\n.whhg-panties:before{content:'\\f754'}\n.whhg-kimai:before{content:'\\f755'}\n.whhg-livejournal:before{content:'\\f756'}\n.whhg-livejournalalt:before{content:'\\f757'}\n.whhg-tagged:before{content:'\\f758'}\n.whhg-temple:before{content:'\\f759'}\n.whhg-mayanpyramid:before{content:'\\f75a'}\n.whhg-egyptpyramid:before{content:'\\f75b'}\n.whhg-tampermonkey:before{content:'\\f75c'}\n.whhg-pushbullet:before{content:'\\f75d'}\n.whhg-currents:before{content:'\\f75e'}\n.whhg-communitysmall:before{content:'\\f75f'}\n.whhg-squaregithub:before{content:'\\f760'}\n.whhg-projectfork:before{content:'\\f761'}\n.whhg-projectmerge:before{content:'\\f762'}\n.whhg-projectcompare:before{content:'\\f763'}\n.whhg-history:before{content:'\\f764'}\n.whhg-notebook:before{content:'\\f765'}\n.whhg-issue:before{content:'\\f766'}\n.whhg-issueclosed:before{content:'\\f767'}\n.whhg-issuereopened:before{content:'\\f768'}\n.whhg-rubyalt:before{content:'\\f769'}\n.whhg-lighton:before{content:'\\f76a'}\n.whhg-lightoff:before{content:'\\f76b'}\n.whhg-bellalt:before{content:'\\f76c'}\n.whhg-versions:before{content:'\\f777'}\n.whhg-twog:before{content:'\\f76e'}\n.whhg-threeg:before{content:'\\f76f'}\n.whhg-fourg:before{content:'\\f770'}\n.whhg-gpsalt:before{content:'\\f771'}\n.whhg-circleloaderfull:before{content:'\\f772'}\n.whhg-circleloaderseven:before{content:'\\f773'}\n.whhg-circleloadersix:before{content:'\\f774'}\n.whhg-circleloaderfive:before{content:'\\f775'}\n.whhg-circleloaderfour:before{content:'\\f776'}\n.whhg-circleloaderthree:before{content:'\\f777'}\n.whhg-circleloadertwo:before{content:'\\f778'}\n.whhg-circleloaderone:before{content:'\\f779'}\n.whhg-circleloaderempty:before{content:'\\f77a'}\n.whhg-whatsapp:before{content:'\\f77b'}\n.whhg-whatsappalt:before{content:'\\f77c'}\n.whhg-viber:before{content:'\\f77d'}\n.whhg-squareviber:before{content:'\\f77e'}\n.whhg-teamviewer:before{content:'\\f77f'}\n.whhg-tunein:before{content:'\\f780'}\n.whhg-tuneinalt:before{content:'\\f781'}\n.whhg-weightscale:before{content:'\\f782'}\n.whhg-boxing:before{content:'\\f783'}\n.whhg-speedalt:before{content:'\\f784'}\n.whhg-scriptalt:before{content:'\\f785'}\n.whhg-splitthree:before{content:'\\f786'}\n.whhg-mergethree:before{content:'\\f787'}\n.whhg-layersthree:before{content:'\\f788'}\n.whhg-mutemic:before{content:'\\f789'}\n.whhg-zerply:before{content:'\\f78a'}\n.whhg-circlegoogleplus:before{content:'\\f78b'}\n.whhg-circletwitter:before{content:'\\f78c'}\n.whhg-circlefacebook:before{content:'\\f78d'}\n.whhg-circleyahoo:before{content:'\\f78e'}\n.whhg-circlegithub:before{content:'\\f78f'}\n.whhg-forumsalt:before{content:'\\f790'}\n.whhg-circlepath:before{content:'\\f791'}\n.whhg-circlevimeo:before{content:'\\f792'}\n.whhg-circlevine:before{content:'\\f793'}\n.whhg-instagramtwo:before{content:'\\f794'}\n.whhg-instagramthree:before{content:'\\f795'}\n.whhg-flickrthree:before{content:'\\f796'}\n.whhg-quora:before{content:'\\f797'}\n.whhg-squarequora:before{content:'\\f798'}\n.whhg-circlequora:before{content:'\\f799'}\n.whhg-picasa:before{content:'\\f79a'}\n.whhg-branch:before{content:'\\f79b'}\n.whhg-ingress:before{content:'\\f79c'}\n.whhg-squarezerply:before{content:'\\f79d'}\n.whhg-circlezerply:before{content:'\\f79e'}\n.whhg-squarevimeo:before{content:'\\f79f'}\n.whhg-squaretwitter:before{content:'\\f7a0'}\n.whhg-brightnessalt:before{content:'\\f7a1'}\n.whhg-brightnessalthalf:before{content:'\\f7a2'}\n.whhg-brightnessaltfull:before{content:'\\f7a3'}\n.whhg-brightnessaltauto:before{content:'\\f7a4'}\n.whhg-shirtbuttonthree:before{content:'\\f7a5'}\n.whhg-openshare:before{content:'\\f7a6'}\n.whhg-copyapp:before{content:'\\f7a7'}\n.whhg-bowl:before{content:'\\f7a8'}\n.whhg-cloudalt:before{content:'\\f7a9'}\n.whhg-cloudaltdownload:before{content:'\\f7aa'}\n.whhg-cloudaltupload:before{content:'\\f7ab'}\n.whhg-cloudaltsync:before{content:'\\f7ac'}\n.whhg-cloudaltprivate:before{content:'\\f7ad'}\n.whhg-flipboard:before{content:'\\f7ae'}\n.whhg-octoloaderempty:before{content:'\\f7af'}\n.whhg-octoloaderone:before{content:'\\f7b0'}\n.whhg-octoloadertwo:before{content:'\\f7b1'}\n.whhg-octoloaderthree:before{content:'\\f7b2'}\n.whhg-octoloaderfour:before{content:'\\f7b3'}\n.whhg-octoloaderfive:before{content:'\\f7b4'}\n.whhg-octoloadersix:before{content:'\\f7b5'}\n.whhg-octoloaderseven:before{content:'\\f7b6'}\n.whhg-octoloaderfull:before{content:'\\f7b7'}\n.whhg-selectionsymbol:before{content:'\\f7b8'}\n.whhg-infinityalt:before{content:'\\f7b9'}\n.whhg-pullrequest:before{content:'\\f7ba'}\n.whhg-projectforkdelete:before{content:'\\f7bb'}\n.whhg-projectforkprivate:before{content:'\\f7bc'}\n.whhg-commit:before{content:'\\f7bd'}\n.whhg-htmlfile:before{content:'\\f7be'}\n.whhg-pushalt:before{content:'\\f7bf'}\n.whhg-pullalt:before{content:'\\f7c0'}\n.whhg-photonineframes:before{content:'\\f7c1'}\n.whhg-wetfloor:before{content:'\\f7c2'}\n.whhg-instagramfour:before{content:'\\f7c3'}\n.whhg-circleinstagram:before{content:'\\f7c4'}\n.whhg-videocamerathree:before{content:'\\f7c5'}\n.whhg-subtitles:before{content:'\\f7c6'}\n.whhg-subtitlesoff:before{content:'\\f7c7'}\n.whhg-compress:before{content:'\\f7c8'}\n.whhg-baby:before{content:'\\f7c9'}\n.whhg-ducky:before{content:'\\f7ca'}\n.whhg-handswipe:before{content:'\\f7cb'}\n.whhg-swipeup:before{content:'\\f7cc'}\n.whhg-swipedown:before{content:'\\f7cd'}\n.whhg-twofingerswipedown:before{content:'\\f7ce'}\n.whhg-twofingerswipeup:before{content:'\\f7cf'}\n.whhg-doubletap:before{content:'\\f7d0'}\n.whhg-dribbblealt:before{content:'\\f7d1'}\n.whhg-circlecallmissed:before{content:'\\f7d2'}\n.whhg-circlecallincoming:before{content:'\\f7d3'}\n.whhg-circlecalloutgoing:before{content:'\\f7d4'}\n.whhg-circledownload:before{content:'\\f7d5'}\n.whhg-circleupload:before{content:'\\f7d6'}\n.whhg-minismile:before{content:'\\f7d7'}\n.whhg-minisad:before{content:'\\f7d8'}\n.whhg-minilaugh:before{content:'\\f7d9'}\n.whhg-minigrin:before{content:'\\f7da'}\n.whhg-miniangry:before{content:'\\f7db'}\n.whhg-minitongue:before{content:'\\f7dc'}\n.whhg-minitonguealt:before{content:'\\f7dd'}\n.whhg-miniwink:before{content:'\\f7de'}\n.whhg-minitonguewink:before{content:'\\f7df'}\n.whhg-miniconfused:before{content:'\\f7e0'}\n.whhg-soundright:before{content:'\\f7e1'}\n.whhg-soundleft:before{content:'\\f7e2'}\n.whhg-savetodrive:before{content:'\\f7e3'}\n.whhg-layerorderup:before{content:'\\f7e4'}\n.whhg-layerorderdown:before{content:'\\f7e5'}\n.whhg-layerorder:before{content:'\\f7e6'}\n.whhg-circledribbble:before{content:'\\f7e7'}\n.whhg-squaredribbble:before{content:'\\f7e8'}\n.whhg-handexpand:before{content:'\\f7e9'}\n.whhg-handpinch:before{content:'\\f7ea'}\n.whhg-fontserif:before{content:'\\f7eb'}\n.whhg-fontsansserif:before{content:'\\f7ec'}\n.whhg-fontrounded:before{content:'\\f7ed'}\n.whhg-fonthandwriting:before{content:'\\f7ee'}\n.whhg-fonttypewriter:before{content:'\\f7ef'}\n.whhg-fontcomic:before{content:'\\f7f0'}\n.whhg-fontcaligraphy:before{content:'\\f7f1'}\n.whhg-fontgothic:before{content:'\\f7f2'}\n.whhg-fontstencil:before{content:'\\f7f3'}\n"
  },
  {
    "path": "icon-packs/ikonli-win10-pack/ikonli-win10-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-win10-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.win10 {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.win10;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.win10.Win10IkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.win10.Win10IkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-win10-pack/src/main/java/org/kordamp/ikonli/win10/Win10.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.win10;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Andres Almiray\n */\npublic enum Win10 implements Ikon {\n    ADD_SHOPPING_CART(\"win10-add-shopping-cart\", '\\uf100'),\n    ADD_USER(\"win10-add-user\", '\\uf101'),\n    ADVENTURES(\"win10-adventures\", '\\uf102'),\n    ADVERTISING(\"win10-advertising\", '\\uf103'),\n    AIRPORT(\"win10-airport\", '\\uf104'),\n    ALIGN_CENTER(\"win10-align-center\", '\\uf105'),\n    ALIGN_JUSTIFY(\"win10-align-justify\", '\\uf106'),\n    ALIGN_LEFT(\"win10-align-left\", '\\uf107'),\n    ALIGN_RIGHT(\"win10-align-right\", '\\uf108'),\n    ALPHABETICAL_SORTING(\"win10-alphabetical-sorting\", '\\uf109'),\n    ALPHABETICAL_SORTING_2(\"win10-alphabetical-sorting-2\", '\\uf10a'),\n    AMEX(\"win10-amex\", '\\uf10b'),\n    ANGLE_DOWN(\"win10-angle-down\", '\\uf10c'),\n    ANGLE_LEFT(\"win10-angle-left\", '\\uf10d'),\n    ANGLE_RIGHT(\"win10-angle-right\", '\\uf10e'),\n    ANGLE_UP(\"win10-angle-up\", '\\uf10f'),\n    ARCHIVE(\"win10-archive\", '\\uf110'),\n    AREA_CHART(\"win10-area-chart\", '\\uf111'),\n    ARROWS_LONG_DOWN(\"win10-arrows-long-down\", '\\uf112'),\n    ARROWS_LONG_LEFT(\"win10-arrows-long-left\", '\\uf113'),\n    ARROWS_LONG_RIGHT(\"win10-arrows-long-right\", '\\uf114'),\n    ARROWS_LONG_UP(\"win10-arrows-long-up\", '\\uf115'),\n    ASTERISK(\"win10-asterisk\", '\\uf116'),\n    AUDIO_FILE(\"win10-audio-file\", '\\uf117'),\n    BABYS_ROOM(\"win10-babys-room\", '\\uf118'),\n    BANKNOTES(\"win10-banknotes\", '\\uf11a'),\n    BANK_CARD(\"win10-bank-card\", '\\uf119'),\n    BARCODE(\"win10-barcode\", '\\uf11c'),\n    BAR_CHART(\"win10-bar-chart\", '\\uf11b'),\n    BED(\"win10-bed\", '\\uf11d'),\n    BINOCULARS(\"win10-binoculars\", '\\uf11e'),\n    BITCOIN(\"win10-bitcoin\", '\\uf11f'),\n    BOLD(\"win10-bold\", '\\uf120'),\n    BOOKMARK(\"win10-bookmark\", '\\uf121'),\n    BOX(\"win10-box\", '\\uf122'),\n    BRIEFCASE(\"win10-briefcase\", '\\uf123'),\n    BRITISH_POUND(\"win10-british-pound\", '\\uf124'),\n    BRUSH(\"win10-brush\", '\\uf125'),\n    BUY(\"win10-buy\", '\\uf126'),\n    CALCULATOR(\"win10-calculator\", '\\uf127'),\n    CAMERA(\"win10-camera\", '\\uf128'),\n    CANCEL(\"win10-cancel\", '\\uf129'),\n    CANCEL_2(\"win10-cancel-2\", '\\uf12a'),\n    CAT_FOOTPRINT(\"win10-cat-footprint\", '\\uf12b'),\n    CHECKED(\"win10-checked\", '\\uf12c'),\n    CHECKED_2(\"win10-checked-2\", '\\uf12d'),\n    CHECKMARK(\"win10-checkmark\", '\\uf12e'),\n    CHEVRON_DOWN(\"win10-chevron-down\", '\\uf12f'),\n    CHEVRON_DOWN_ROUND(\"win10-chevron-down-round\", '\\uf130'),\n    CHEVRON_LEFT(\"win10-chevron-left\", '\\uf131'),\n    CHEVRON_LEFT_ROUND(\"win10-chevron-left-round\", '\\uf132'),\n    CHEVRON_RIGHT(\"win10-chevron-right\", '\\uf133'),\n    CHEVRON_RIGHT_ROUND(\"win10-chevron-right-round\", '\\uf134'),\n    CHEVRON_UP(\"win10-chevron-up\", '\\uf135'),\n    CHEVRON_UP_ROUND(\"win10-chevron-up-round\", '\\uf136'),\n    CIRCLE(\"win10-circle\", '\\uf137'),\n    CIRCLE_NOTCH(\"win10-circle-notch\", '\\uf138'),\n    CIRCLE_THIN(\"win10-circle-thin\", '\\uf139'),\n    CLIPBOARD(\"win10-clipboard\", '\\uf13a'),\n    CODE_FILE(\"win10-code-file\", '\\uf13b'),\n    COLOR_DROPPER(\"win10-color-dropper\", '\\uf13c'),\n    COLUMNS(\"win10-columns\", '\\uf13d'),\n    COMMENTS(\"win10-comments\", '\\uf13e'),\n    COMPRESS(\"win10-compress\", '\\uf13f'),\n    CONTROLLER(\"win10-controller\", '\\uf140'),\n    COPY(\"win10-copy\", '\\uf141'),\n    COPYRIGHT(\"win10-copyright\", '\\uf142'),\n    CREATE_NEW(\"win10-create-new\", '\\uf143'),\n    CROP(\"win10-crop\", '\\uf144'),\n    CUT(\"win10-cut\", '\\uf145'),\n    DATABASE(\"win10-database\", '\\uf146'),\n    DINING_ROOM(\"win10-dining-room\", '\\uf147'),\n    DIPLOMA_1(\"win10-diploma-1\", '\\uf148'),\n    DOCTOR(\"win10-doctor\", '\\uf149'),\n    DOCUMENT(\"win10-document\", '\\uf14a'),\n    DOUBLE_LEFT(\"win10-double-left\", '\\uf14b'),\n    DOUBLE_RIGHT(\"win10-double-right\", '\\uf14c'),\n    DOUBLE_UP(\"win10-double-up\", '\\uf14d'),\n    DOWNLOAD(\"win10-download\", '\\uf151'),\n    DOWNLOAD_2(\"win10-download-2\", '\\uf152'),\n    DOWN_ARROW(\"win10-down-arrow\", '\\uf14e'),\n    DOWN_ROUND(\"win10-down-round\", '\\uf14f'),\n    DOWN_SQUARED(\"win10-down-squared\", '\\uf150'),\n    ELECTRICAL(\"win10-electrical\", '\\uf153'),\n    ELECTRICITY(\"win10-electricity\", '\\uf154'),\n    ERASER(\"win10-eraser\", '\\uf155'),\n    EURO(\"win10-euro\", '\\uf156'),\n    EXCLAMATION_MARK(\"win10-exclamation-mark\", '\\uf157'),\n    EXPORT(\"win10-export\", '\\uf158'),\n    FANTASY(\"win10-fantasy\", '\\uf159'),\n    FAX(\"win10-fax\", '\\uf15a'),\n    FEMALE(\"win10-female\", '\\uf15b'),\n    FILE(\"win10-file\", '\\uf15c'),\n    FILM(\"win10-film\", '\\uf15d'),\n    FILTER(\"win10-filter\", '\\uf15e'),\n    FINISH_FLAG(\"win10-finish-flag\", '\\uf15f'),\n    FIRE_EXTINGUISHER(\"win10-fire-extinguisher\", '\\uf160'),\n    FOLDER(\"win10-folder\", '\\uf161'),\n    FOOTBALL2(\"win10-football2\", '\\uf162'),\n    GENDER(\"win10-gender\", '\\uf163'),\n    GENDERQUEER(\"win10-genderqueer\", '\\uf165'),\n    GENDER_NEUTRAL_USER(\"win10-gender-neutral-user\", '\\uf164'),\n    GENERIC_SORTING(\"win10-generic-sorting\", '\\uf166'),\n    GENERIC_SORTING_2(\"win10-generic-sorting-2\", '\\uf167'),\n    GENERIC_TEXT(\"win10-generic-text\", '\\uf168'),\n    GIFT(\"win10-gift\", '\\uf169'),\n    GOOGLE_WALLET(\"win10-google-wallet\", '\\uf16a'),\n    GPS_DEVICE(\"win10-gps-device\", '\\uf16b'),\n    GRID(\"win10-grid\", '\\uf16c'),\n    GRID_2(\"win10-grid-2\", '\\uf16d'),\n    GRID_3(\"win10-grid-3\", '\\uf16e'),\n    GROUP(\"win10-group\", '\\uf16f'),\n    HDD(\"win10-hdd\", '\\uf170'),\n    HEADER(\"win10-header\", '\\uf171'),\n    HOME(\"win10-home\", '\\uf172'),\n    HOSPITAL_2(\"win10-hospital-2\", '\\uf173'),\n    IDEA(\"win10-idea\", '\\uf174'),\n    IMAGE_FILE(\"win10-image-file\", '\\uf175'),\n    IMPORT(\"win10-import\", '\\uf176'),\n    INDENT(\"win10-indent\", '\\uf177'),\n    INFO(\"win10-info\", '\\uf178'),\n    INSERT_TABLE(\"win10-insert-table\", '\\uf179'),\n    IPAD(\"win10-ipad\", '\\uf17a'),\n    IPHONE(\"win10-iphone\", '\\uf17b'),\n    ITALIC(\"win10-italic\", '\\uf17c'),\n    JAPANESE_YEN(\"win10-japanese-yen\", '\\uf17d'),\n    KEY(\"win10-key\", '\\uf17e'),\n    KEYBOARD(\"win10-keyboard\", '\\uf17f'),\n    LAST_QUARTER(\"win10-last-quarter\", '\\uf180'),\n    LEFT_ARROW(\"win10-left-arrow\", '\\uf181'),\n    LEFT_ROUND(\"win10-left-round\", '\\uf182'),\n    LEFT_SQUARED(\"win10-left-squared\", '\\uf183'),\n    LEVEL_DOWN(\"win10-level-down\", '\\uf184'),\n    LEVEL_UP(\"win10-level-up\", '\\uf185'),\n    LIBRARY(\"win10-library\", '\\uf186'),\n    LIST(\"win10-list\", '\\uf187'),\n    LOCK(\"win10-lock\", '\\uf188'),\n    LOCK_2(\"win10-lock-2\", '\\uf189'),\n    MALE(\"win10-male\", '\\uf18a'),\n    MASTERCARD(\"win10-mastercard\", '\\uf18b'),\n    MINUS(\"win10-minus\", '\\uf18c'),\n    MONITOR(\"win10-monitor\", '\\uf18d'),\n    MOON(\"win10-moon\", '\\uf18e'),\n    MUSIC(\"win10-music\", '\\uf18f'),\n    NEWS(\"win10-news\", '\\uf190'),\n    NOTEBOOK(\"win10-notebook\", '\\uf191'),\n    NUMBERED_LIST(\"win10-numbered-list\", '\\uf192'),\n    NUMERICAL_SORTING_12(\"win10-numerical-sorting-12\", '\\uf193'),\n    NUMERICAL_SORTING_21(\"win10-numerical-sorting-21\", '\\uf194'),\n    OLD_TIME_CAMERA(\"win10-old-time-camera\", '\\uf195'),\n    OPENED_FOLDER(\"win10-opened-folder\", '\\uf196'),\n    ORGANIZATION(\"win10-organization\", '\\uf197'),\n    OUTDENT(\"win10-outdent\", '\\uf198'),\n    PARAGRAPH(\"win10-paragraph\", '\\uf199'),\n    PARALLEL_TASKS(\"win10-parallel-tasks\", '\\uf19a'),\n    PASTE(\"win10-paste\", '\\uf19b'),\n    PAYPAL(\"win10-paypal\", '\\uf19c'),\n    PDF(\"win10-pdf\", '\\uf19d'),\n    PENCIL(\"win10-pencil\", '\\uf19e'),\n    PHONE(\"win10-phone\", '\\uf19f'),\n    PICTURE(\"win10-picture\", '\\uf1a0'),\n    PIE_CHART(\"win10-pie-chart\", '\\uf1a1'),\n    PIN_3(\"win10-pin-3\", '\\uf1a2'),\n    PLUS(\"win10-plus\", '\\uf1a3'),\n    POWERPOINT(\"win10-powerpoint\", '\\uf1a4'),\n    PRICE_TAG(\"win10-price-tag\", '\\uf1a5'),\n    PUZZLE(\"win10-puzzle\", '\\uf1a6'),\n    QR_CODE(\"win10-qr-code\", '\\uf1a7'),\n    QUESTION_MARK(\"win10-question-mark\", '\\uf1a8'),\n    RECYCLING(\"win10-recycling\", '\\uf1a9'),\n    REFRESH(\"win10-refresh\", '\\uf1aa'),\n    REMOVE_USER(\"win10-remove-user\", '\\uf1ab'),\n    RESIZE_DIAGONAL(\"win10-resize-diagonal\", '\\uf1ac'),\n    RESIZE_FOUR_DIRECTIONS(\"win10-resize-four-directions\", '\\uf1ad'),\n    RESIZE_HORIZONTAL(\"win10-resize-horizontal\", '\\uf1ae'),\n    RESIZE_VERTICAL(\"win10-resize-vertical\", '\\uf1af'),\n    RIGHT_ARROW(\"win10-right-arrow\", '\\uf1b0'),\n    RIGHT_ROUND(\"win10-right-round\", '\\uf1b1'),\n    RIGHT_SQUARED(\"win10-right-squared\", '\\uf1b2'),\n    ROTATE_LEFT(\"win10-rotate-left\", '\\uf1b3'),\n    ROTATE_RIGHT(\"win10-rotate-right\", '\\uf1b4'),\n    ROUBLE(\"win10-rouble\", '\\uf1b5'),\n    ROUNDED_RECTANGLE(\"win10-rounded-rectangle\", '\\uf1b6'),\n    ROUNDED_RECTANGLE_FILLED(\"win10-rounded-rectangle-filled\", '\\uf1b7'),\n    RUPEE(\"win10-rupee\", '\\uf1b8'),\n    SEARCH(\"win10-search\", '\\uf1b9'),\n    SENSOR(\"win10-sensor\", '\\uf1ba'),\n    SERVICES(\"win10-services\", '\\uf1bb'),\n    SETTINGS(\"win10-settings\", '\\uf1bc'),\n    SHARE(\"win10-share\", '\\uf1bd'),\n    SHEKEL(\"win10-shekel\", '\\uf1be'),\n    SHOPPING_CART(\"win10-shopping-cart\", '\\uf1bf'),\n    SHUTDOWN(\"win10-shutdown\", '\\uf1c0'),\n    SORT(\"win10-sort\", '\\uf1c1'),\n    SORT_DOWN(\"win10-sort-down\", '\\uf1c2'),\n    SORT_LEFT(\"win10-sort-left\", '\\uf1c3'),\n    SORT_RIGHT(\"win10-sort-right\", '\\uf1c4'),\n    SORT_UP(\"win10-sort-up\", '\\uf1c5'),\n    SPY(\"win10-spy\", '\\uf1c6'),\n    STRIKETHROUGH(\"win10-strikethrough\", '\\uf1c7'),\n    STRIPE(\"win10-stripe\", '\\uf1c8'),\n    STUDENT(\"win10-student\", '\\uf1c9'),\n    SUBSCRIPT(\"win10-subscript\", '\\uf1ca'),\n    SUPERSCRIPT(\"win10-superscript\", '\\uf1cb'),\n    SUPPORT(\"win10-support\", '\\uf1cc'),\n    TAGS(\"win10-tags\", '\\uf1cd'),\n    TASKS(\"win10-tasks\", '\\uf1ce'),\n    TEXT_HEIGHT(\"win10-text-height\", '\\uf1cf'),\n    TEXT_WIDTH(\"win10-text-width\", '\\uf1d0'),\n    TICKET(\"win10-ticket\", '\\uf1d1'),\n    TIMELINE(\"win10-timeline\", '\\uf1d2'),\n    TODO_LIST(\"win10-todo-list\", '\\uf1d3'),\n    TRANSLATION(\"win10-translation\", '\\uf1d4'),\n    TRASH(\"win10-trash\", '\\uf1d5'),\n    TROPHY(\"win10-trophy\", '\\uf1d6'),\n    TURKISH_LIRA(\"win10-turkish-lira\", '\\uf1d7'),\n    UMBRELLA(\"win10-umbrella\", '\\uf1d8'),\n    UNDERLINE(\"win10-underline\", '\\uf1d9'),\n    UNDO(\"win10-undo\", '\\uf1da'),\n    UNLOCK_2(\"win10-unlock-2\", '\\uf1db'),\n    UPLOAD(\"win10-upload\", '\\uf1df'),\n    UPLOAD_2(\"win10-upload-2\", '\\uf1e0'),\n    UP_ARROW(\"win10-up-arrow\", '\\uf1dc'),\n    UP_ROUND(\"win10-up-round\", '\\uf1dd'),\n    UP_SQUARED(\"win10-up-squared\", '\\uf1de'),\n    USER_FEMALE(\"win10-user-female\", '\\uf1e2'),\n    USER_MALE(\"win10-user-male\", '\\uf1e3'),\n    US_DOLLAR(\"win10-us-dollar\", '\\uf1e1'),\n    VIDEO_CALL(\"win10-video-call\", '\\uf1e4'),\n    VIDEO_FILE(\"win10-video-file\", '\\uf1e5'),\n    VISA(\"win10-visa\", '\\uf1e6'),\n    WON(\"win10-won\", '\\uf1e7'),\n    WORD(\"win10-word\", '\\uf1e8'),\n    XLS(\"win10-xls\", '\\uf1e9');\n\n    public static Win10 findByDescription(String description) {\n        for (Win10 font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Win10(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-win10-pack/src/main/java/org/kordamp/ikonli/win10/Win10IkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.win10;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Andres Almiray\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class Win10IkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/win10/1.0.1/fonts/icons8-win10.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"win10-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Win10.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"icons8-win10\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-win10-pack/src/main/java/org/kordamp/ikonli/win10/Win10IkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.win10;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class Win10IkonProvider implements IkonProvider<Win10> {\n    @Override\n    public Class<Win10> getIkon() {\n        return Win10.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-win10-pack/src/main/resources/META-INF/resources/win10/1.0.1/css/icons8-win10.css",
    "content": "/*\n  Icon Font: icons8-win10\n*/\n\n@font-face {\n  font-family: \"icons8-win10\";\n  src: url(\"../fonts/icons8-win10.eot\");\n  src: url(\"../fonts/icons8-win10.eot?#iefix\") format(\"embedded-opentype\"),\n       url(data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAE6YAA0AAAAAijgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAABOfAAAABoAAAAcdUR0EU9TLzIAAAGcAAAASgAAAGBA1V3uY21hcAAAAugAAABCAAABQgAP9ZRjdnQgAAADLAAAAAQAAAAEABEBRGdhc3AAAE50AAAACAAAAAj//wADZ2x5ZgAABQwAAEUQAAB31BfPDatoZWFkAAABMAAAAC4AAAA2BM7jgmhoZWEAAAFgAAAAHAAAACQDzwHFaG10eAAAAegAAAEAAAAB4iW6HnNsb2NhAAADMAAAAdwAAAHc9xcTzG1heHAAAAF8AAAAIAAAACABQQDpbmFtZQAAShwAAAEZAAACNCNVSPNwb3N0AABLOAAAAzsAAAlMpfPuYnjaY2BkYGAAYomC3KB4fpuvDNxMDCBw8frFyQj6/wEmBsb5QC4HA1gaADQ3C3kAAHjaY2BkYGCc//8Agx4TAwgASUYGVMACAEyVApgAAQAAAO0AuAASAAAAAAACAAAAAQABAAAAQAAuAAAAAHjaY2BhYmCcwMDKwMDow5jGwMDgDqW/MkgytDAwMDGwcjLAgQCCyRCQ5prC0PCR4eNLxgP/DzDoMc5ncAAKMyIpUWBgBAAhJQxYAAB42kWQPUoEQRCFPxc8gOGCwQQjIhg0IuiiYo9MICjShhotopnBgBqZdGpm4AEEL2HoETySr1836xTvdU/9vK6qGWygb1YRiEJnrpZkHbu88C1OinwwmK/918mCGbI8k2sze66tGtHomet8EJ6FuX3Fygs7zu3ZbLlFNzFy4ugFrxzzaMVJ74x8csqSX2GraVSdSZ7Avv+LZevduTKCz94TJWcG3zNfPOmOcoY2c3Ifqc0YjNB2U6PJ2ktrXQpHbK+yEgtz5oCr1t+a5o6rrUzmrF4Dh5wrMmnGyI0q3/gRL+TpWOdMFryhyK3fH4V7VxflQfjfzbtU6nyt0z9gKT40eNpjYGBgZoBgGQZGBhCwAfIYwXwWBgUgzQKEQP7Hl///A0mG///5maEqGRjZGGBMBkYmIMHEgAoYGYY9AAA6UgeVAAAAEQFEAAAAKgAqACoAfgDQARYBUgGkAcwB8gIYAkACiALQAzQDSANcA3ADhAPCBAYEHgQ2BE4EaASGBLYFJgVUBaoF1gYEBmwHAAc+B44HrAfiCBQITAiiCPIJRAmICboJ4griCxYLOgtQC3wLqAvUC/4MKgxUDIAMqgzIDPANDg06DXoN5g4CDjQOVA7YDvoPOA92D5wP8hAUEGIRGhF6EaoRzBHuEhASKBJWEnoSmBL+EzwTXBOgE9oT+BQiFJwU+hUsFUwVnBXAFgYWXhaCFwIXeBemGAIYOhhyGIoY4Bm4GdoaKBpMGnwazhr8GzAbWBt8G/AcNBxcHIgcsBzuHSodZh2eHcAeCh56HpQerB7aHvwfGB80H3Yfrh/UIBYgQCCyINYg8iH0IjoilCLEIyYjdiPIJBokTiS4JOIlCCVGJXwl9iaiJvQnZCecJ9AoHChIKHgooij0KYYp5CouKmYqvirYKwQrKCtMK2Qrkiu0LCIskiy4LOgtBC0wLVYtrC5MLrYvJC9OL5ovxi/uMAYwHjA2ME4xUjFsMkwyoDMEM2ozzDQINDQ0VDRyNKo1CjVINaQ17DaUNsI3LjdQN3A3tDfON/w4Hjg+OKY4+jl2OhY6ODpoOvI7QjuEO+p42qW9DXQj13UmWLf+UVUoFIAqVBF/LAAEQLLZJEgQBLub3URTrZZaarUgqVvplm0ZlvVjOZIC2R1ZkhUZceR2W45tRvZYkq04PCeKLWXsDKPdTCRbiZmfmShZnw29yWSSbGYP5yS7s8kkJ53ZmXWSyaL33lcFEOxuycoZkKgqFF69eu/Ve/d+9xccz8U5jnsRznACp3Czvwzc3Mprisj9zcIvy9Kfrbwm8HjI/bJApyU6/Zoiwz+tvAZ0vh6vx6v1eCl+8WP33w9n+v8yDnWsTeZqnAVvQptLcXmuwi1wS9xBjkvWF1LjUG/WFRP2QbEyB6ViZXFJXEjZMh5Uwn2z7tSdklNqlBp1uWgvLOG7NaHHham3KsUpIa6/pcf56QklEoHkZDY7mT3Pth2/VqN/31/3fWhH9VfWX9CjuIuYkZ0sK8L+/4mV2sZynMi1Lm/xHPRYK2epjYmFlGMrKXepHrSmsdislIqyU1pcauKHpaJspxaWFlPhvjrS1tfeu7ZgRopTjZtv/vDN2azfuNlfmln4mbW5ubW5x9vLy+3lbtBE6K3NrhRkycNyNzf2l6ybG/O3Jgsrs8U5Kvwzy1TYY83ksI21y5dgG9bx6RRZK6mNwUCZoODd8+A26s4RaGIbZqGKjakV3Rg0B238xW8++eQ3n/z11bNyLCbfteqv3hUe8OdXLq7UbNO0TVh/kkqd2/M9O7jl4spFKmHaHM4Qn9NgBx7DOZPmShwH8TlwTKjOQvMwVPH+ZaUh7QPnEEhlR065qaVmA3bs76vz6XRaHT98GH7M6L/MF0sA7+3/75JpRsdEeKz/L6QWZMZUZX4MQOt1K/CjrQ83efxOjJqA84nH5/TXsIVjkOWarP85GAcH7822MWisQiPY4pPJ4QlnFRzcNuvj0JiDRrD968nsBS3x9JSSvOWWpDL1dEK70PK1C08nlKnDgnB4Skk8fUGD9az92Ip4kjdzWemYaFni9WImb/InxZXHbNF6VlyxTf4OMasbYBgZ6Q7etFfEZzlOwjlfw+fUZutI52JcEmd8wSm4+FZG9jXY6Hda4Pd3WnuPoO0PXtw71HflH6vvqvf/SF3YoD37d1fXNfvZo0p6e4/21idybU7FZ9vlbG4cZ/gs0Ylx9mRLjWpJwS0+1voq1ONNnNVz0HSrSh3nfQzq7LvST6UFPwa+vCj7+OTz/9GfTh0zjGOp6W0ze6onnjlHb+hqd8KUkDQTCTMpTMGdWv/fTaWu1/XrU1N/V+lU5NM+vve0R0fqNc3tp/bs3qw80oyrm9l0lXp7eEtr2JL/MNpE3zKz0A3v6O8240evaGGtwjFa6nM+rrkOjnSGm0MadZg7TiNOi8CWS4Vi5TAsLrk47e16YQGPS1IdCYLbpBYrJaQH2LxSk04obqmKZ5R6k1GterPaho6dzdr9DdpaFnQsq/8b3vh4KpVLeAmvIldk+49vTKS8QiGVSh3/pp56bXJy2k5AJ2vv0DW48a0dC/9Pnz69snK21Vpbs+2z6fTMTDZ7PJ+NJeJpj/oB3Aw3BX8INs4aLukGg3jszTe9twzjLbB/7de8tzTtLSr345wIN8JTVA5cxVVwrKHmvvwL3qamwVPeyy97m4aB5V7Hcp8NyiXH8clXm9VtLLLp/cIvwFNYZBOLBvd9CO/7I6y+cVCqSrUJnPGWR/fGefCW+ybeG8e5jXR2HWmMEM7qElelcY4XkvFCnGh8MGjsnRecgDssIZm1F9rQ6m/5wHWDaa0YqoS8JmHiMazjjO/1N2hofd/yrRIfMUyVxi42JuVoCeAdW9i2LfgEp+EzrhBdLcTHYRWb21QcGih6Oy47sfu5AFv9XvLEeyT5rpvkJVm56y5JOXzknKL8yLElRT17l6IehBZ8ov+TYIuxFRFiB/fDlASxwwIYR8cOiXxuaXpaFnIrouB+KHhGX+IAHkJ+qNGsH870S/4xr2MYHe8Y9uS7x1J07F5P5Y9yp7HdM6y8y1Y/Pa5vudfD0f53r3exIMx4x4LLqXwLy383KA/BMys0ClW4I6ix/104ej3MBLfyj7H2cNieT+AT4YiKK1XEGsHz6wTVwtMwvNLtsD7chtjjW7h+TY4ru+xxV2mxKk0XMh+snD1b/uCXzOe0mroe3byQ/uxn0xcq0/Wf//n6Prb2h3NAwdWf3n3+Ct2cPfNFhAauPfLQe3ZLnSFoYavq6PM+KVq+8ZBNqEMInrMYPud1pHNHcBWfwvoX3NpifanuFJU87yL2kBEcFSvIUXFqIU+vlJCNxxAoIS8/BG4eFpaQFCJXr+yDakUOkcBSuN9adCA6porj9aJcdGLa2fNntZjjxCI3143xR++5UeIthE2KxUs3Dj+YvPwmwwBPh0igzCd9US03fH3cSkkHTp48IKX8lFS/SU7U1momwimzthYezK8yaBACBH6EVo2/E43Ch95YLF1NfPrr0LWuoi0buG6Q7wR1n8ejCDfFzXMHiD4QQVPwGTVp6ErFqkPADRFcgdYmPqgGniQQNxypEBTBd42C9Cu/nsAl1LoV3LggSULcBSjuHr/GkNu9DDbC+WPj49Zlbod9c89uoeDQYsAtxvBliH855JG9ER7p4hlEyklEzBLtnXrDRVqClLgB7V7Pb/V7tK3RBudPDzr9LWi1kAVzOzutrY1eL+AFNRyD9t56k1TfNd5IfVqdTg+3rVYHtwSLsT7/6jfj6z6uG3p2SaSYSzhTTw2eIP6XGgUkgIvNBj1FOQd1PDgECy5tUuxjpSSFX1RK9eFReK7gsE8daNlZC9vQtrK2EvGzdithmgk86UeUy5wS6USUFtv2LykRmhARhWbDQzEHMf26E3uIlexYdtYwcMp0lEgbZ3Mwp3HbiihIgbtKhPWHAUekA1Xk6O/nHuB+lFZbyq0fwfWD0NR16m4waSpVuVg1gU2UVaBll6JmK7juaDa5SwsuXeNWF+cbszwCycUKfY/joRRlJQvzssPmVMUPJxdJLZupAjLPQsotiQsJmIiszU6tyrFKTF6dml3TS/G6WCojh5g0DXestBw1F83ocmnMNSTLMcxENtHpeFVNoXkFPpuIKLFAN+M4mbwb3Qf3O+7s2tKkaU4urc2m3ffPRt28j4PJi5WCXkX+PV41ioimEzrwJkEKyzKfTtsA8Vhhjs1W/AefeE8vpHk5rhyinTrKE8EyygOO0D7COEzIidcVhxGf0mC/hZNMnVjMO2OLEx5NuJZ/0S0U3Isv0BbWa7Xa4sRk2pgam1jE4xq0/G5htrBOG+K5OOdwzXNRzsH7T+O6WcJ1gvdZWMJRrtJGaTBRrDTYC4GExtoVx4e4sMgas1gCbn2zOJvznNnnukQ+uuu09eeOqpNH57Y7bctqd5HK4PSbLaanVC9XnO11cMmyDfhH5+xUcXHuKHRwrfQYNuW5LraG2idjC4kXEOdNxokPx7vgpx97LO3fr2n3Q7e/njx3LomVX7pFUW4Bi9F6i+HIYKVOMJRcIijRdAoNCd9KrX4Q5lmvUByep+l3BBl2z+pvWD4yl23wfwsAOjS9O6BoogLdzmXiojjOOzs+EuCIIioSw+Q+kxEj2M44N4ZjSVKSW8fb1ZdSRQTMeL8BDaTjv5opys/1O8/JJyfV5e9B51exLjOCXAvWMw5RHkey/PX1Dt3DvKHdxrv2sD897A/2BFe+UsFZTxQMl5JCE6bQwJVVrZAUyHDREmSStlE+at5zVuRj2U/4l7llV40I0tK01qyq0FVz5kw1VvVNcXWu1va9xphp+OPu5IoEjFcu4H1+A2loFuflFNdgd03ZhIdkxcERay41F48IzaVVHmlSDNzmUrVCO7miyPiHLViswuccKxb7niqY9ZvyVlwXeUkWzKT2v1iOqqxnf8Y0lV/3ct7xjCpFJH1mPBLB4Y/ti8FbCsq19bF0hY8rRkSMCdpbli9/IfcFMyZ/0815YxCRiilXHY9k1Kv0HfuROzX+WfoOpfrPVHW0Wu9C09FutTZJyoruwTUDvpFBHk0Ydx9KFfURpBNyJbYP3293PIBAO1tbfm+dsZgWWzxXHOyCIr+DHzv+lS9uOIc7OIeT2LYStotJgmwOExIt4RQrzcGVmGfA0V9fl5LdfqebdJJSBxexlPwum9MfYqqXjy+Vy0tl6Mhp4njpdFre2ZHTNTa9I4HCpUxFcIR29S0xnHtDbcvEQOXjoPCihMAy0K3A2HMPPPDcA3+9suKuHPbYNlSo3PUAfaPD4DRuGd4fvYc7otEpKi6jecRR6gvNoPrt1fn/d/qB359+4MTq/KDeyX+cP3rigSO0mUQ03eJioczq4sjNcYe4G7g7kOtd4F6j2mndII/DG6QWm0vDj0VFtt3UAi2UpZFjeaT8xMixPFJmYuRYWXDzgmvnAZlqwFHxKSkh8EJ2yjcXCDUg0qR/edA5agej80g0Zvng/18txE0zTpt7gh1uDicUVVVo8+Dw6C+H5aAwPPwPw68hMjx8IWvxsiDwWlyJKUbBNfL5WCxvuAVDNZV4BGA8q0oCLyuSYiYETRRNTcnkErmMopmiqAmJmCwpMs8LMnRd+6Dt0uZUuHfdc5pe0bW9m+PDcrubyDXKpdJiRJEApIigatGkW1BVQVILbtLUFUEV+UVfUHjTkGRVAUmSVM1U8YXtww+8okqyERVEkSc+NZhPLuFuRp1LwXTF0WXQmBaKFIpzwJ05lFq48QTNWSmt04QCzdsyjDYKeOuH3AWatCdsO50r30nz75i3pWlt9xjp4bD27yFNjpDWOFkg5N1AdgZhzS34Cb//W8jjEb+eH9TY8/tbv+b/f3ByUA3ykgluDP4M3hvI+KCwVv22198xjJ53Ht6LR5rWc88zHjzGpeE/ofzOVkqSicV8jJ/jV0k70KyiEPmIceHTur6q69uGvq1rq3r1jTeqF1D2vFP79AVdP0Jn8d9YLVW//e0qnrlqDXpXr3PJCZUUe9Z4/59On2ay8J4F7sDpM15H0zrU3vsu/yV8Dp4P2kttJUl32N45bD+sGAd0/eMf1/UDhoGDsmW8+mrp44bxcfiydtCgL4yDuo7Dt1XCL540jCffgWYM6VKoK9nT3C+5QcP2tLbkBX3Atp7Htn4V22rRCCQbg4GlRroKCehu87eNLdaWYYtZS0uvwpcBT+tbethk/VCJNbX06rtoa6iv2dPW73V0vYPt3dtWpgw4fZrNgymcB/ftjivP9CDBuDLVCHDB4zcuXMCHrWnbBpsGF6pwHz3+I7p+4dMafb9dZNPgQpV7V21ltH5PWzdZo7y9s0DSOmy4w3WyheuE6ryqxl/+2qOPfu1R4J+5++5n7obeo/TxtrvpExfoSOjap1kvGf4O9EyIR5xgRVeq4F//HrzsPdc3T+B1J5rwE/qP3nDro4/eesOP6r5+7sDa3XevHTinByLQu2lLhPUqbMsHWG/YGmkz/EtjQzyZOAljxwtM/kGQQDJQqB37g4PRx/pbj82bkVqvtg6cvwXrPgn0KJuhAK+4iGcRtgQ6zQEekTmDoZEMw8f1cT7UtjUQ2CNoLYWTehXq4Yxp/5HcERnm6PhTDyJyyHrj495kBKHrpBqZHPPHYV3syP3fY3CD67hTra2v2JWKXdO0Gr3xGPs1hfOennmZm+XWSDLHYcHJjg9aDv5oYiHvYn+reGNElyHIXKwQAA3+3GEJeBayU/Z+y7Ve8CwjpimGbeCj0BxF5JFWey9YKWu/nY3pM4szhvvQC0k8L8hC0nAk3dKUqP0CrE8dwApSWEFE4XlRtnXNN7AaRY/pcZcqmLV9A6/X8+6pF+yoEonrUspICsi+RMV+IXheFmwiDghwXojp6uyvDZ3+BkIyhPA4Mq2B8M8FOn02Hh1ORbruBPIDXlsi8kcqCyK6pLcY6j9LNdh4cZ9h7HvRvyBPTMgX+jv02tggtcWMps0Awn1poiwCVwsAHs9NXP4LpPkvsXuQZpf003VHYmrqarOE9P/Lz27hZVv+l/AIXvK+5G89e+fWs1/2voRtVBCLZeEvEGOPMUvdGncTdzt3F5vR42IKnwaKHswUtSocAXpWch5l+Uaz7jp5OIIdqSgjxroBerwSTQ4+/8FdnbF0BFLidNGvKx9X635hn5iCiF567twdNj+2ryDwm7xQ2DfG23f8bgBif5eBSZdtT4wcQzuuqmLk5WJTEsvj42VRahZf1gRRN7NfSRWksZRkmrIzJhVSX8kGo8VEO9MN0OnI8YiuuBfKekyqJMncKQ2edosWX7vbA+4yrcJezcI9cCjV+SQ9XknzqtegeSg7KrOB1hEhWtM1A9FlDw18LTdr5NTxZKZcziTH1Zwxm6seOLCHIrrjY9G4jcDajkfHxhFmj7bfwlVfxmOH1h6Pc22VLHhLbqMYQ5qOwpyEBCDEF+t2Jvo1UVp2RUP8WiwpS1+Vs1/Vdbn/L//A/yJ2F/vWg8yk+TX83l2WxK+ZPshfzUhYRvKx11/0/2CEtvYYt6vHyWKKWJ4mYCGcGHim57/64huHvBX/VYi0/J0WqeN+8Kq/4h1648VX/VZrJ9TlDnSdOZRO95M2MrAd28jk61JqV1fcrBIURmwvK3aoKBqHUlUZ+Xx8scLznZdb/TdFlAsraTdxx+lEKl1pGXEhmU4m/80vtT7/WngMnUpaVgR5+e5v63q6guWtuVoMZ65p8GI0iUU+98Hbi8MPXGjTIjq+q48MKEOoh6D3QJKjCULvQAXZbnc7nR5K/8RHjnEiG7spstHh+pVJDkqtEvZD+aDENOREMEguqiwSSmtir6syMeb73RO6diZ1WtdPuDfy0aoJ2eRz3oWcriefcp+6z3EM43E7G41uRuKfTEAvdZOun06d0YLS0WzyZ9wLWcNI/IT31L2plZSuP+5kzcmo7FnPJFj/Dl/+W/gtnM817hHuCe4ZehbjfB0lEqfmjEMqJuCIU9tk1sISIZxKs74K80egOb8KqWJMnJeV4nxMkMdFh7SD9XEhtcqj8L6ANGSpsSoszfGNaqMyJ7qyUsPKEHLUsddIGxHTlSp/l49m8hBzeTlhJyEhLlgnE4ZVx/VjGYmT1mJ4WkxZ45miIeYEsRgVQATeVhWHBxlAVKAkimlDy4riBMgCz0v0rWoLChj4TfZeLQrjSlETq/8NvKqoF3BoTVjXEiKPzwDy6cw4pPMnx6azYycjkZNjmX1jp7KZzLjnWylRTKREmwdJiBZFIRPeRECpZngTEUAQ6T74pSBMgMG+uqTykrw4plXK+lhdJmmD+EXAZzpIi6tcHaXN62g9kfiHsCAVQhZcXYtHCJ2h0If01q1XUNAbpcEDB4UBzf3030nR6Ng9/NzaHH+PFotJkieZNpzy2t4pPhnRHgto4wRTbzQD0tqRk6Ub3mcpkcLcXAGRRvnEfDUS8TT/TqSkty+NxYJrukwhIoZE9Gr8QdqQq/HHLrvbAzve2GCvq4DGwKSNa+VmzoALcB55ncVGJoDm5XDfh9RLL7mv6Dp47s/+LDs47730kveKYbwS7rGOj2Mdv4J1MNw2sHA2w/1zeNEr7ksvfZrtf/Zn4fzIxbQP2rHCTcNvw48HdQysn+P8wAj6uvfNb3qvG+Eeflx/3f3Wt9zX7wv3gU3wIQ7gS9ewCT7kXTSMi95DZBN82LuoaRe9h6/kLelr8Ja6M6hjDzvZ8lvuewzjrlRrDwupvtzy7sLTXutKfGON6KwGsloAcsD/i4GUNsQ6790V0Uivy54/9cnc0ysyYV7yT3tdw+h6p5nPAlH/M15X07remQd8vDPHWcyu4CEKISMo8kpSfTiBoasR2O2O8MxOghw0xjPgXi8QdGfGg32IUgRldxiAm1yNTa/wxeXJ/tbkcnVc8VNiselPLlvxtMjrqXw5A61MOS3PFSxRint5XAReyzBa3gR090/wK9P5qcnl5Ul/QXUyor+Y95cnLcfSeaHkEXf2k5JamDNiYwmt/WDZa+l6yysPafrvwKdxHZcCa3uo2pKLu3S8Su2UbSSjC4hzO27rQCu1WvaM282pWP4x7/G8ad5ueBNjt0vSbZIl3Q4XUq0Dq6nWBBUx84+7H8vHpqhI2bkdv79Nkm5n82oDNx9mOIALhc0AETbJ4D/rfuB8wvzUiZ7/2EfjJnKE+4/rsWf83onHjkdigc189fJl+A34BK7ePDdNzwFbiLh9ntreoIY3SPPtKITZSVLELvApouYw68Q6JsS+HZvGvflmLJ+Qbv/4bbLU+ak7JAneL1ny7fC02cGvv22aHYhNm98GsyDCbU+2FUvqfAi7IWMxCW6jfnRC3jq5q3kh0pEFhzlnIQNxmZGJFONEFOtHePCPzo5NLEwfM55dX3/WODa9MDE2e3T5zmi5AFAoR2aOQm/Jnl6d92Vb9udXp+2l24/4pmj6U0crxO+28V61Pfy8HmdaWyHU3m6TFaNFG+hdJv3sZY40r/TMqb2/iteSfwuhx2pjoMUJaAu2sNqBFsOKBKzk63XteGrqq1+dAman3GqhDGEFji3+dMAPypf/T/hjeJ75Z61wN3KnGbWpO1SjUwo9FkLFQiPU5jIWSuoR4qQN+q6BqKiJz2uUSbgjx3DKyC7ndSO3nDV07zu6Pq3r3/F0PXMwo9vipJgyD+vGpGEcjrrShOykxLKchr9P/GDGtyz8D9XO8LyepwoyB7K67n3b0Kc1A2uhWouOPCGlzCO6PmXoh6OOVBUdOtWEv0/+/VcsVk1I5XWudXmH6VwDianArBSB5v8AdzSwo8ULjBceJouWQ143iLXqyFsKzJzmvp2GnaHCw7C11brMIeMifTk+RGw5wnnrKuX6NvHBbvsyZzE7Ovh+rd2u7ez4W1vs++GrFRhKBzqBN+EpZq9ABD5Y9ntR68BUvrK46C42vMWaf/rx06dXFibnGuW7jx69+yg8BXR+0WvMTS6snMZv/drivUfpO6LVe3jsldx1D0e9kpXinNKGWF24ylbRHEq2jdBYyTQQAx+d0fG8cs9s6zgWZLdkm51r/Q8M8Ba+oEXb2pUGi0A3ssnW0cAHDud6jG8QSa83FaeJoLojPiW30k+JE+dr51/CaiviSx+RaslvvyTK6+ubXe8ss4EG9UgjM4j1zyEvAYY/hv2kVdAIjbGD3uL5+XBP7A87Vbv2iygBduvK08MT2IJuSMvG2Vg3EdkRTVtlvpYBumMq/UboEnsIQlt5vbGIcpRLShH2IUB6JeDGo7cnEqc0LbuV1TScoP5cIYkSrxnxO63Ws5pq92xVO0gyVt4U7heikhLJZba3M7mIMpm1C3Nmwo8otZqi6aJeVyLJ6OZmNBlR2qHfVAfn2BabY1EuMXgGNMnI37OO87rRwWeQZfMsK+L6hfWvy5k/oYn2Rka+8IRlPYH1REYwSxT7vYw07Ch3A6K49l7bTLOiNGTGqkhAIIbI15eYSrdCeuhxAeXYUCFZKWNJHDjFJRFzqVmqp9xQ37ltWNlsrD2ZSYmRg0LqDiHlTCdT4umUcDAipDLVAxq+TkTErPComBW1G7+u56T+d6JS9rkl+5g9YWScfwJ7bKjT5W0bIUbcP6bL0zMl/ZgkHtdL+6YV/dh4fFqR09hk44yun9GVJblk510YyzkKVFqtzxajjhMtEj1YvPxfWf8rbDYylQzJsrJCpiHm72AjuieVF4L4gD6UFJwQzOdGGXpZNQOLDxYOXSJwHpAluNP1l1IFhed5DcG9a6fFCC9mncLabDm/dOCe8Cjjp3zfo//0lYVhvXtgKV+eLciC4ZkJm3wYXFuIaSCoTuG9a6mle4N9OqgAa8pQcYW/ojj2deBz4IRW8sDNoUSdvNLN+zffu7Yws+Tf/OERV27okvd28tb5xs17/bYDP+W/REzyk9wiziAOGkOqaoIyhHuNWR5HiY0YwzslRn2XiOQiUhgQ3V9MzZe9iUY0nksMsF4iF486WS8373cPzOPeSc7bDSwUuij1wF2Y8MoN20sWXPGmAc67WXALybGkk/Oy8we6/jzunWi0UXbL7x/4KylIa9UQV5u4jsjzLc8VGQ8b9Xgtj0hEg3dra2vE0bV/aWOj1+vg2iZvFX/Eu/U/j9h6/4fuhxWP3q9FLk69jQ1sxtvej+d6HBJflFeVQIpJMp/YpFK/5Hf94lNFv1e/n0hnpwOJ5wjPBLyni+2a4Ga5Je4I89Sz3aVG6F9GrSk0Ql8Ht2gfglm+WqkXycJZX1hUQnIthfstH+XtrG9nhTvIu+MOgRzeyoCvxKOxBO3L1qV1f72/zRS0VZBlqJJDYWd7u4PSeRZ7LQA/NsbjDpk6ApHW5sbGZqC7/U/wBlxEGfxe7mnuIvcio9l5HltJajtcgou1BjazsVRlVlny1sdZjudDHzkkTBVcpXiUh/mUW2GfXOwKYC05sB3bwQtTZK1tHhGJuCvsS0YhwtM8o/kVN4yewOqLDpEMPD4MZN+FTsGSo3ZZycQReknAR/WE5Zumbei8FJsbl+ys7ZZUVY2qyVg8GQO+XFJlPeoYpiyrsiRolpgWlYgoWzIv6RGlpHxNUVRByuYkKSIppiIayQmeV25QIaqpvPmnVoQfr9ii5au2Dhdz+viPzNxzRywhGTkAAQezUp3JZxVjxpa0Sd8REraddSQlbu+PagbAWD2v2TO64gtSMiJ510/IOPT8TSuRpMibYrRUXhp775rhi3IyMn3o8GIkKQmGkjleuKnJ8/KNxYJhOMVSaXLCkhXeGcs7SXzkkirgXLyHE+Br8ARyHZLJ3aRL4LiZdBWyYQFn9mKlJ58sxXrmB98ny++DJ0r97WJ0djZahNrsX5d4voQ8auAr8cP8OUaQw+h0fLvPzGcfpxf7629cecB8EsmbkL06Vx2M6oa6e+MDdtsyuOfQHtHfGRolevjaoE1AI3xcg1f28Zp1DfYBumv72/2twWa3zZ3hJsAOXOhLOYmjuTwS+cMYwJVs4RrMYbA/216eLCeT5cllPChUfdyxd7UwGXidfCfwPcFv53OJYjGRmydhfT5nHS7TAb3Lhy08G7igBP+B3nbXJybw68Lej0MOCoeZrqIqjXh13QvLYq3fqWUn4exk/3vQGWjIjC3+Ix/ht2ykka2WNbAj7PLBDPNzZ+S1wfhRnMnhDUZuGwit6/FdjN3uWR2rZ1nhruZv+P4GUl6SNPuInJnESZEePfDpMZLdB2f5nzF7uDfw4g7hK7JAd0ApgTO2PXu9tW5728Z6u9cm+/K257yxsfGG422X1umAu1IHlNzjt0Q1sZoHaqAdEp06/q4WCCWjLabOxhH1EfPtwFdYPQUmVRziVpGK3sB82atlUtWxacBsnSXScTfIMZvUO0su+WkrMimKl5oMIkmMdzklKbi2Sh17uJAqwmG36D566Mysz09o+Ce52YykHJ9XVUktN2W15kvH5SKU1/r/BSH6eq3WfytVcGGh6Baea8FXivjBLaS8M4cOz+YnkiiMdHJJ71hl/rhE5EJcqqxMZWZnxqE8N7tG8Qf3pIrkelmc9EPb3l45zA2e9h5ZbOgYGMQcDNX4e2S0fFTTopF7jAnbMGoebScWvdaVklubza+4PuFoWs2dsHV9okGqu1DvsDWidygxvUMd4TqzBTLN6Ije4fXU1He+w7g59Na7/a3uOlikcCDOH/pY78YhaSGOGEY1lZ1q+arAplp/Gzba/U12wD4MopE22gO5Xtyjv0xe0yMghCJXqC9ZsMeo8QtldJJjr6aHu7T6Kiotvc1xMKPbSIXJfXpkF8ztNnt1Q3ocfAri9Xb98avX8sjHuR3oJvFjpTRwTdzjmU9Kg8AJtf9qSFJGHPQjyg59hZvugLSQTzE+6x4+68F9CTTFmZtrpRFn98WPqUOwsIQfKyU+vO8mu+Hwrhu0+ZHgnj1sDrsp+OyufXZb8JVI/9IuTft5HOv34VhT9A7eFcUxhTZkyCmRWBacabITb24QljIJWA2PxgHRJb474R668VpsC9/BLm7Fd2IW2wS68Y/i/T6H90sxLX9z12ZQCiX1+kcrDzxQeeQoPg8f30eh+/Wvk09mux3aCnb15Unk3BQ9uxBIVVQJiyojmQrHy2a6NJwN9Mc85xaH8R8gPXbmzCES/Lvi0/z67JoA8tMo0VfEsdzs2lomTZZAWD/z2BkLzz4m/4SlHGqszaoJVf7ECTzDm2vvXauRdTFNbbKGvPFayGKXTt58jRlF9sQRXdboW/oh53zYiCaT0X6Htrg2hxqu4X9/axDJ0GJRDf0d/Mz4GrST0R26Djf+zo7/Dq+9PjHRUQmfzN2BR8wWudCM+OawWKcZvOb0FbFOf+g9TLFOzAACp72HArPIu7GD7FK9PYTkTa/18svMFLKHmuRSCMBSdzHat5cHxkZ4YGhgGvC/8wP3ryEDnBj4fgHWAfAm1mGw6wcyVxyZpzUI97qEF/7+9R45ZnnXQzyY823m6/wJGrkwJgupOIvKatM1/UuXgrgsuqb/+z7EsQKOU8OYmE/i7No7p8iXi62aAlsxtEwLVwLTgBwWECXIWxrOA5wE2pb8ZZjp/+nwuSLO68AnhbY0vdlub05L7cIRf3P42rYs5Pmtt6XFDAGRhvYQhNrCaxwzhXrr0qXeFXvoknLdb41sg7U94L36kJPkAodmBiOZqoy88X8TV19/q/Yza3Mb28DB+tpsjbhgbbY4V6jVCo9ubbHYtB1WV4xpm/eHtQ2trWGNSwtuY1HetawifkEqggXoHjiR6SaV05XMhylK/XPppOVbdL/Zuetoxl83N0v3TOGrcJTC0z/sJKMJbXFRS0RH102CZvRQTzTUGZeG6gtrE3FXoC6udp6IB+ri3uYT7x8oijudQE8s7Ylv3c8d525/5+hWZSEMzkcayRwriJswh+JKFbFYicaiXqmWEKujOJ5CSM9I5TUiXS+VcrkSksfZwZ5syHlXkydEmOH5GRAnZM29x0l6XtLB764R9GrZNlJOtvHn1ubsaEyTI4oSUSKxqK3nT+V1PHsFLUhew9f0SjTRv7S1tWf5HwjiUXDLxmrgwxFi9EaJfDlQXNpGeLvNVB19RgMpeIxhpct/y+6/j/sgd4H7Mvcq96vMconLlyx7iimUinM8efzEyIWK4qDchXmyWM5XGdhl4Tak1HMDjQFFIR4EMmg2CfweZrvSHMxCeIbCE5tkGcUJiLMwjNlRwghHhUIbF5uzoCzUlQppERQC1rziuHIM3FTTlUltgRN3iXwcsBp2prKE5OfHI7whigYvTiydqGqewUNElhVVrx+eVg1eich6c2l6EoHCeG0yqmdMRYxbUpQHXhTzEOF5TUBuLyiyIhmSZ8cMy9UBEhr4AnIdHhonVCMauelpUZRNEYdHS9iyEE1ebwgAwMuGmVVAjt6ZFAVBiApJq6zrCqw/eKsh8tgmo3psPitCVIooqpS599Cxpo4TgjfUaV/MgJ2dXajd5qo5AANrBUFV5tcgJmkito5XRR00RRFlBWmqleA9yzB50BOGHpGPNxU+msROgHFrI5qPLt1a9YUYXjAuFROaFfkYSoXYQIXPydEogJmZGxOiIrYxrSux+EQgS5Kd4Rnm3ccivSA+XLkNZXcVN5plSp0wWMriYElvMtekeGwn3EeBi+7sMNCQ7P9NADGe6f81c0mKPDb9PwUHfyTUSojav8XK5QKIobN4mW0Wr2CjVJhFGXGSm8Gzi0z3Tii+PrCnJxlQRNg4IMRuaB6T3sbEU4NWp5zp72TKfsL8ywiLTekksok+Sn7dvf/Q7W6SgZx8nsxELI6CR7uGUu06Rcytk0gweI9gaZLEmX+kw/Tf2MbFVZ5gDwU2IJGiRYHUZsJwY/2fjrnGBAnE/77My3Be5svQ+ZOyMe66vl5+A7nShCDIsiBM4BodxAaryJHJEtTijgVcqSGXGk2WVoHIeYxnqQj4YRDiEvuKchQEQXGNMDyY0hXQV8iiYrp9J1j9SzfGXYM3s21pipdkyXfP0clui5c9Nz45SSGtHi+munQW1rs3qr427bfcuKnxpp8WJ3kqoapxt+a3PFEzUnHXx3pSomwN+F2YO0HjHGalC1tPdpKRvAmBVM0cQFmAyIBiDDr0bMV3Mgkj8idDPe8fW24hHyme6GmyKUwYsahu6VG/AN2N+1N+PGmMZFEouPmkHPctE5cSn1Q0g0KjVNUtjLaviPN/OZRL9jSFv6Iph2Ck3YPOwMWR5kiJZGTQnr8dNviPwi5Ad7Q9gqZJuw0aaXTQjdAXN9T5RHGWFXAeNEfioAgIBdbz+hFyPKlTRBTZkachWKWEJnY9sMKYKL9lsaio90VnFmei7+tIyWXfP8MUTZegczu/3F7mB6FRlkXBUa1UOp1qyemaz5RReq8XUUhPxUJrGa75Q6Ql6/icmQU5sLuVnDk+GeTEIHs+Ara4S3Y4MoNmO/aW8VzRyIotMdvf2UAaSZa4350RJwV4WBX/RUb+/L+WM0+I0H+t8AsZ6bOBHNIK7XvKD5FEGC8kzU9oE45L7yJ67VrHLQQp/qbf7XSZbMH+t97xgISP9X6HuYlu4LbzzrJHoLfYuUpvwQwKTqHsKkO9BdGy7W1yzCRPTIbgt+iN55jSot3uDHyrO2FsZhAjQzo89tfYxUeHoLHFdBQteo5E9FrQ9YMKN0hdiQ+6NxIH3h0Z6VA76OzRCw73eMTiBUeg+lavtlHrDf82kF7s4HB18JY9v9VDwS54t8gKvDNUHgcYd5PhZZd5VLCIA1I9kofz3qgDdmOH6a9Y7IG/0xsEH3Q2/K3OBqz76+T4PBKAsNVttdYRTLN+nkR6+5tMdi/hXDrCcCfFtJPRIsVCNmPkKVoi1XydJV2gCFOcKVhEqTnzJr+PhcnQFw36xpUddhW/W/rz8NxUOiblE2lNu2H/jMV3Re2UuJJdnLX446VFVUnGM+26GzVkMT5mHpCsnBZXkzwvCMpjPLtCUIKiimqp0M1arpLya7PLt0TtGRss+9IpY7I8kUx48XgKzFTUvsmeikVAkURT5amYf0t0slywI3vjLmju3cK9h7uf++ioBpV1XrFlh8XyHQkD+hRHphA9qE6DUkTsRopPhU5VmqGvG24bwcclF/EdVlBvLi3UZ8F1KvI8YfNGRakV5/Ey0pcuLg3cjZ8FVZEEhFkg8nyST4pxRRY1wj0KCJYkKqoAuqgjuVQkTZUs0eNBkkCQoiAKyMOSQKiHV3mQD4Ag8zhyP85HCKmJCr8bdXqnJKl6UvYEHjHRGIIoXkWQpYAFoPM68NgCSEsxRHSCYpp6RMD2RCKSkuYLsmUokvQxkBGhEQAk7AYS3mFMlvB2Kog0lw5d/u9MLnJx9ZQRySyE0cox3o1Jq9Ju9Ei1otQpak0ZF5rMN60Kn6UQZQBN/wdROuuKCRD+UdfAcrB9Wd40lWXwau77XslpgvyNv1HivhqGKPMR/R8FSIjuWUn8B13jLR8vADMmO27Ng28ofCT/yhfBjyulwBe0evn/hu+zmJcTzD+aYmocCnuhCY8zeGGcpwazB1utrPIpbLEjB8thFZbmoBLjqxUG8ck/f45/egyBcws0zY9ns2Vfy2twNBJZgLHxh25qT+hjeCTw85rknzx2f1Sf5/k1np9UtZmykMgi6FEmBR4vX1fhOoBITvOrmUzCh0iEb2FV85DSp29q3+e7i+Dx86BG7z55bFLSsJqjgjCpSImiYO0zo5oyyfNwdIRukU2ZLMrjA+0q6bTpPTSVkI9IU0Hm6VP6D/9ew3jvimGcvoVh2M0uCLmFtVCx+r8Ovvw/fIZdz3Unzs9fZ+/VEzuML43mZQsiXJH31YpIvmZ5ihQK87Bd954HTrTmf0Lkiz8n7jue7JSkQfI15d5jJx6YfEr+lZ+bPr7vOx+YWg6eG93n38PziNv3M10JLj2FHB3nQEFcSOIWzisUj3JAzwfvNAerPIpQcKPxuKbnZw+ocU83rvtU6lPXGwaKuYIb08WblEil+lO5mKCsKZGkC8/rjxtGXj6IwM7Qj33KfQaByZxxtJou25Yi3izzeuanJmcj6prCS1HuqhiSzDW15ENF6BWacqYL3asrpzNX6EwEFvMzSp0GitFGPQib2AcDOrLZIo5GGZYQ6CfM1u7S7yBf0w52EdBnE0H9By7/A9MBaWEkISLnYXTmcIpgleIbuvGCpv1q8pVPvhLa0rqb0q/q+guG/kYWT37SDxXPwTPaZDk0VgNLInY94LpOiWGxUoNJV416oKUpDb+uh9JMPSyAvO2/LZU7PkkgPjW+Qz3rnMomBucoOQg7B+vlTBc/delTG4u2MxIWaOOpdlC2hidrPtPJJ4Y6Q2XI2Q9wh7mj3PVID85w57j3cR/g7uMe5B7mHg05Pj67Q+RGFbqbhc+TMV7q2Hzowzg/KEBfOaRuIh9SnJx1OjeazrE6UOUNPR2DPAP0ud0jp0ZKV+MjLOh1WoGPHolfLb+N2xpz2Gv5G4E3Z6+10epfYu56lygZAljkchJCC3+4CzwfOwOXSbL1+H7NYurjFkl2m7Szwpiegd0ixx1ERLA2sAozt7ZAQmDx6sXw80CHx2LZg3JKfYlxRYQoobz6vQ+dnB0DtTNrSxEFKZvSeQXhlpNYSDiWmkop45IqIfteD5x1j84tVhygfDb7qnFZNyRJliWpVpsrzBUsK2UahplybS2RTEUjUjKWdf1t5tgrIBq24PfgJ5H6Fbj5gMI3HfLhJp0OMpuqMi+zCVmsNBfn682qhAIsJXepNimZyxz8+cHYgnuTtyA78v7s/llvOmLGzp4t+AmYtKE+afnjd506dZcZVSah57WjZ6Zi7UjkJuumD582jxmefzAD1xkxaGUPUOZKN9rCdXEKx/M1HM94mDWEGWjrLLJMqR4B0u2EK9op5XlsBXA/csDvrqauq9Tb8bzzgW18r9x50O+2YtVaut6G3tpC188Xl2eN5nX/iG/6mMxZy2F+rT35PA/98/N5jiZ3+OEJPZ+ZmHAnyh7bvqusnjYMiuM21KVvsvw3gawcusBDaWfb7//gxW1khy9Cd/vF/g/87RchsieGbTy4xm2y0Wso4eBWw8BK8i5rrZ/7zGfOrfuf+Yy/ewS9vZ/ZEYV8cTNwGU6zmEJyLghDTQIzx5e8h+GTD7sXdf2i+3D/6aG5YxAEElo9qH3nL/9H+Gn4ORblycwDQ9NCEHTS8+691+sZ4R6+pvW8+/q/fp/b0/Weex+s3ef1wn7OwHcDe8torrgZaoP3MGV8exhOB3f3H3oX/Kix696+hx+9HISXvPzy3sCTHATRKH7rHewtg6jk0N7yzUEI+669ZRC/Lg/bJ6BcO42rdQ0ROHuCVTfGl6rNQ9AMcoKlQqfxehjvPctTEkdXKeFfFctQIseYUF0VFBepLZ5qNBuXLKsYiYKOCwogCr3ewZuwLz72RHfyCf+XEipEQHBELDHpiQhvszKokM+K4rgoo6Q0lhdBzIEEsn/knjuffPJOyzrxwAMn3Jmyb5zuZiRV8ERQJxwxAirWpcOCiRtDjfJR2NM3iidtYN9OBfaBplt3DyFrLc1RZEIjjGFnfQuDxMolLOLUcc2V8I90B66DU45vVHEsxgWl2qg2gLMsvGEU+8Zu+1c9v7wP++ZjH286iIg0gmellIB7dU2EiJxFkUI8iFIACHlRpP6JEuTwU6p3euyWWeqaZVE37zliyYjhPUGVYjQ4kTjiZhCLPGDPVAPPhHmgAv/BwAcnTNm0y9eaYTas9RcmFhcnHu8wufxxlgGrs3jjYo3SYm2xlFeEFUL9ztvkyNtrke8BR1aJy2zLzN8c23bmCht0Cjd+aDHHDVs3u/VzsLfyOvSKs7PFyxxtoTNb3KAD3LDrBvmdAt1mKUVTkeRZt1Rt1BfC/MIo82KTuinljrZ43ZT7rYWXW/FCRlj/aTmdN0mj4GT86aX1i5Nm3vZjKX3Et5hyfAWrknyGq6Pk9x+ePndutTH9Oe/zxd+79/jxe4/D+rmnzxU/731uurF64Did4pif6t5cDeRbMBdmBN6z1ieuyA1UeZvPIR3wN7rdjW6/zxIy/DtmGXtlJGvQLaH5nBGHD3epcJulazjCLGT7RtIHSUMbusgtX/57+GN4Adu4wHUo+xxO+hSLmaWRlYnLyMw2xwaDwoOWyAMYofwgdcssKHXmGEzX0AZZGbuKNsEYss1icF01RW4CeZYeEs76yXjMtQwxlRL1mBuLJ/GE5SWCE1YqbtnWWLG4ULQyO6CbY6aR01OxrJEThayRNT0jZwQnXRM/C+ykq39wdb89Yfv74YWUaFisVjtupSyd1Rr3LHYb08P7jmPdxTErY92dE4SckcOrsUojaup5w9ut0zPy+uBGudn9486EvX+Vjd+NnAqvw+PMKyKIMN0zFj90KK755P9N0p60k7nERHLW2C/L+w3sTyKHJ50EnrRnjVlZxg2e/DSzWT67SFaMcAY8Pvv2VzilZH735AozbsbJUrIoD+eEFOaEC+IrDiPyviXI00ZWMifMYCkHZk0kjbUgljBsuWJSpDyBmQW2dOqLlLdQvsIZ8f9anOD3NfxK2jT2f2S/YaYrfmMffzNr/9lCNV2JFu8sRivpaiFxMuhVaLnpTaQT7ZogJcvpilzB//REMlJrJ9Iia/6+2JFyJe3E0+m4k66Uj8SK3cDyM+gc0ciAfkSDWNqFIFoEhbQgG+WAox2Cbm3ltH90zvIv+eERdE+vdLtzR0nT2d8Ijtl4rWCdr7OcD4UwNmaYVa1ULQR51cjkeM3Eaqkwo9pJllHt9fyfqmBQUrXXlWgEgqxqwkhWtdZuPrWu/4IelXXlyoxqoh/mBdyNTcqEPHw0PUtjN20LCii1fQ2kFo19B2549GuP3gC9rV8p4UiTtR2Ht2R/8AglbjnyQTbnz6Fs+g34NHLUCPOTIHm/wJSMSoHy3bAkN0Yv3f+f0z3j3GuX4WSakFT93Dm4oPWy2V7pXCfb07SeeO4ctfMAdwB+BzhWH1L1sIqD8NPpDcPYqD/xBHDZDU3bEJ94gvXrM1wEWvCxoDzESSyOgYuYfl3T1sUHH4TH+l9KrxvGev3BB6n8Fpb/2KB8knLyJJ3mFiud9bE0K5uG8f/twUCXcYDrYnuaYf2DvmGXNtL989imJ/4LLGkb2exG6Qmmr6Qcr7/D4inu4p7gXuS+wf0Ky+JJ6cOYv3qooSTBK0VgbBwKq8wEPXBwHyRxcYus0LxNqltnoR74rS81WVQ6igTkGT8LQXYyqnRhIOtVWaoX5kdfcVmMO123issSuaNSrFRr+0iKmYVqseLW5BKTAYOQoCBUiN1hGr6v5ZWImZDtmJY00okx23SAH/c0s6EZ/e8ZkcVoxBvnwTHtdDyjaRE9ZlPmr4jOA6hmar5ux1SIM1943kxEdce8NaZpqu7Mf37e0VU9EpMM3fEWF9KObkzgNV4qm3Vdled1gbeiegIUBRJ61OIF7TcAtLRmLIiKMe/8P3aypsvioqmRPg96qiha+sykikwiGdMVWUoUzMgEpTGbiJgFbIGix5JI8tVJJ2VYvqLEk/tEAbEWTyrZFcNSZRFfH5FkRRTkiBKLKRFZEFVJ0mXci4Ii36JNZtJj2UlN0C0w8AWWLrgwm42qkahSTOlRu4iLNGJkZwOZgvDXeoBpCJuMuth1we8xhRLiM3In75HXJcVnjvqVTHGr3Pu4H+M+xX2Re557iXvlnX1MmN+MydOMIAedulJybHzqDpsGh6G0ysfCUF+aLDT/8IsmTgyaMESblYXhaUdp1N0gaoQlywzjgVk5LObQ3COBzV1i8aBFpV5R6niKTbPq4jX8Vn7JUAVBEkRZPBEXo4ooqrIhq7qgCjNgGoIRUQwXhz1uCFFDNVzrP0NUVrWIqUhpFyK3WvF9IIqyoYlaIhnR7S8IvMBH6DvRTae/qEISzoBE9ZNa/Gqfl6Yq8xI+bFmURDdZVMHmJdmsxHk7AZItS4KkxqOqrNg4U0U1bpgQiaRcXePHpB9TNTcpojAhygk5oqVsF8ADefE2TYfbjsbjglThZcWwmZ5Owuf33+EYswMthZnUgqXO1uJhqDq7zk/VQH8njSzewySbASe9tX///oTh7n9qv2skfAsZlpXe/5b05S9/uf9XkmZVz1fjEenjkgTH+OtisdjtCTOixmIqrtXbtZ6WIKfChPbTauw6f2FhYeoGXlTkaBTnNn/DFM9jO9cYL2hxNjdJ+QCSh5i6uU60qDQX2JCq1PY66aAZZWAB0e48s+ZD0S4x6/MqEO8IdRNrcJ+cTsv3W9etWYOj6/Yty/JyphQ1i5kDknSAHf29nbWLAMsdr8gcj/wstNTJSdX70Ie8cK+eVdWzTcdpDvbrWdszPd63spYnquRGi5ID9aPFbK0ZlCCOMdnhbZsnvcs+wvpVzev/23fZtRJcq53tH9a5XZ35NuvL0SAzAIsyD7NTUnoDyg8QhG6FnrVhggM+zEmJ5DyIWJ/loe1nktaxsetjWuzmBm9c9NZq3mfg5sbkMgjKF0wTzGrsC7IqGpPLPA+Hdb1mGCu8qsA6XnH92DErmfEbN8NnvNqad9HgGzf7y5O6pCqfj1ViYJpfUARYnhQUlV8xjJpurABOK8QCQY6yHtNTZ4P8aKOaapd9giYelgaI56++Lm4a+rqubSY3ntio1cRXdSOfsl+wHgidqL8ubyJrNozNLH7/hLUpfUPTfCzwyWFciHxNf3XmV8/i15lvfbBvDvzSOzsBcAOuFRxsrgcekZ3hhmEmH95iMXhh1iqyUJfdEst+2yi16OcTuhQlw4JikJiT/iR1fOP48Q32TO9Ceerro9cTByDrr6s0Sk61x673t44f3zqOF+/s/HFQ0XLgNxfY3JNkU6ZrQ+17YeAs03TyyAvIe4KiM5eaZBqyWN7sfivYo2SbcaBnOlHctZnenTbtulyYKcj1uhgfi6XwYCTPf495Mw38eEKPDRKqKRvENT4L9fAEj4wHz5QSiF4JxVJu4Jb/UWksPyZ98Yts99E/Z7tSie3+PPhViRge/blgJuyEKZToN466TGcOvTYzB9CmtXtEP1OBx5GYqsYibaixIK/ATnwMcd0WPMRmQJJJ2uQhG+rxmOb+bY5fplhV37N729snr3kID3ktnHOuPeYfY0eeMziic0M/KPLNNpCi7scRXA08wuIF8nOsNxtBfgh8WiQqNUgcqhPZXyINBQsoUsijGPk0SSAMYbbA7/R3Ov6J59f9Wlww9Fh22jKQo8mqKdxa+8bzO52YD+Qw6cdEFXpUGLid50/4lp9z8nzC55MZPSIKsaxfe/7ETn5/R0iYPAIxodM0gzG7F9v9MrMBZ4aR/KEcRA4Zg+gHAi3kJ4+tHIZAjHqi/AU+oY6VtbfsrNXBp7QeUbaUyNYwlXKP5uLlQAvE+Tg3fcuqUfL8iAJcjfk6c8PfIPg+tucIdxLRM+W/fzTwpxgaK0hkGQcK6Q5ArkLhnmTWYOB5sSojA2UoeIClCUSHYZ14olAM0mwHOFlJDbAx/lGHFIIypbO1xPcStaRjKakEYkdXptBvPmErESTrWyVPVe2ExKuaJwhyPO4qlrPPQPQrJx3VBBXwe4hpdhLRgvaPYs5KWLoWj1t58RHft2LaR7QY9CzLSuZSjpaMuxaSVVdSo4YhzqU1FRLZuGWNlUHVM7OIjaKGy0uqZLlxO+KkcklL1UzDUOMJ/WBNFOcPRRNx1TBMTbVuvXnSS6XcqZOnau0Nywr0Y0FuhCxbzU1HYe8jzAeEBNGG0mjSexMpXqezdLup+VrykeutIPXCHSWf/f2idN1iWa2snf7NhM/+9uT0q7CnRfWjaIN4MbA1Xb1fgcYR9gtfSuiOyyxQbhDFS4kOhxrkhcYl/4b7BV81J0zV12KzMS08Fu6/Ye3e03EznnFESRFTKykZwZuTsWLxL/uUdgTnWkG+d1VAzK6iUIC4TpXCYxBh9V55/NAU+eFKvK5TImJDnDrTC2CqZXFhjGEwZkEUaH2v8pdiKLosVJIC7Jl3U2+LaPbWFsXWb/gB9j/KdCYPsfwO5G0z1Csww8T3vPu+P7vmzxW+f5+Hgi+Sl3vXZrvdwhyzMQT25MBvPh3+utSu13zg7kqoBiW5KktlcZXb/KVZ5jZ/99p0Za4QH0/J+eiBc9d0nn/m7lSqMEe6r8LU+lW+85RHi4MvXfO3bC4GYSMUMzGwbHgXuXcTQxIGU16dnvauIFxkj0VjKjRzeHe9YwxJmCVsYNNYH6S6Hdo01nbz3Ab5Qj4d+KOP9krAZ4s963qnKZvWMyyR1gXQu96Z/g8gcsbr9l8Ocmn5zF7nsYzlPyyXlglvl0yrsTsQ75BNS0eZ7lrptCzKrkAptaD3dtm0InH9Wum07gJKsfAgJdViY7qOfehif0hnuRKu42C6Vh135Mc0dpVhDeZuj70MFEjIuMLfvrjkM9V+Oj9ZLyElKdV9P6Vp+UmnnLKzY0nR11L+WBJ6vjBfTKeRR3UleW6citVL6XTKP8/jx1QF8bOQd+ycANVHEOnlBIZPSK/2PRbHcQzpDWVronQmLMELAWRm6mbpPuoB4ScXXTJq1+1BglwnyP4enKFS+CCuTKYKeU2MLZYOfiWdzaafPb74/jsmDwo3CEJRi/j7Kiin+sXkVBWlWTGbO5XL+kUR7hRq+WlNfB/Dqw+GqFVNy7OnvklU5a1TBwv8zNFNQaot20TlBVnUjKoVYQKxFJmdnJ6uzi3Py/D86rT6wkgC1b15MMe5DvchNnsH/R5okQLhshpE1ASDQD8FQ791EbhCLQQJf+vhBMSyKSelmEKRVD8mzyzL9FdrLF49IJYmRiecrOVrmqkV7y3q0YjuW/tmbj0+XlBVUxc03ZDTx9OygfIyAjrVUXWAKEo/uoQwUUcC7dumOZWRlHN7higyJnqFo7FYIhcddwv6xIThJyaiuYRl3jI1XeDz4608Dk8M9Hw6K2cy+J/XIRaRxHzD00QZ4kjBeYqR4JG+JzPk24ZjG/vMnhEkH/gW4ujWSO7ZIDdQgX7ThDIA+dA54bonGOUgn9jW0oTxX42JpZ2trbR/0r9WPHL66syLDmkSm87eAOQXvbbrtj2/eGXM8XVg1kz870zaFGc2qvc5zLxbbuPu5j7ww6KKKBaGKXRombJ8t8hdmEqHSQQsGzWWadbZj+mxBCJl+vWjcX5WqEpK/RqKmieVqChKesS2nbiraRZOUj2eNCzDe3h8xvfGYvzxfCL/y+OptFCWc5c52C+pwEeERDKhQMPyrqF8OS4A7+Fk0GJRPaEJPLiyLkVky4gl+UfORYv6rY888kgs9ogsCAtRJ6rxuenRXArj7DdEp5EPznOLLGa13mRvJfSBVljHyBhF7yY5K7Jvq1SKMtu6zZafe4/ne+/J+blcRasdrDBcWjlY0yq5n1etT2rLqq/W8L2s7diJXsKGDnsxn5xRrxy87ji+rvT5mtn7WyTOMNILAX1jBELQYqQQpYEPGIqZbpw3WFRCi8IbWJyPtOsK1vVvjLuq58Zv9D9EkQw34ipURJCEvXHylFVgjOWXDqPUHbJQD349EVc+y7pFGJrgWJgjOdQXVkkUqbNZU2E2CYWFNTqFNgtsJ28mFmhO2zb2//GEofmUlZX9mpisx9SkrvkAskqf3R/4QQq+9S6LF26xqNeO30P5hecphMONI9FQDM0SeVWQ3KK70W53/3+5apWzeNqNkLFqwzAQhn8ldqAllI6hS29MwDaySZqSNeCxtEvWDsY4oiAF2ZBm79SH6RP1YXpWrmAyxWD03d2v84cB3OEHCufnAU/CClN8CI8Q40t4jDl+hSNM1aNwjHv1Ijzh/omTKrrhahlu9awww5vwCLf4FB7jFd/CEWYqFo5BKhGecP8dWzgccIKHQYM9OhD7VFjwWUAjxwoJs+Geg0WLZ2DrDidvmn1H82pBhc5XCZnK2ZZnw2CKI9eWl2gehEB6NDbnajCQThmudeH07FIHg4wThM2FwXDxeVrwX0mx5vffGqWzXel8U1ORadrQUIDLYpmu0979aucdO3kOmRAmDvRfysLZe2BX+9Y4S1rnmdaart38B0/lU3IAAAB42l3NVbdQVQBF4Tuvgd2F3R13n972qWt3omIXBia2Ynd3F9itmIBid3d3D3+DOnA+uV7mGOvlGxgcmL6/pw2M/DcM/H9/TX8HGWQGZmQmZmYEszArszE7czAnczE38zAv8zE/C7AgC7EwizCSRVmMxVmCJVmKpVmGZVmO5VmBFVmJlVmFVVmN1VmDNVmLIQIJKRk5BSUVkbVZh3VZj/XZgA2paWjp6BlmIzZmEzZlMzZnC7ZkK7ZmG7ZlO7ZnB3ZkJ3ZmFLuwK7sxmt3Zgz3Zi73Zh33Zj/05gAMZw0EczCEcylgO43CO4EiO4mjGcQzHchzHcwInchIncwrjOZXTOJ0zOJOzOJtzOJfzOJ8LuJCLuJhLuJTLuJwruJKruJpruJbruJ4buJGbuJlbuJXbuJ0JTOQO7uQu7uYe7uU+7ucBHuQhHuYRHuUxJvE4T/AkT/E0zzCZKUzlWZ5jGs/zAi/yEi/zCq/yGq/zBm/yFm/zDu/yHu/zAR/yER/zCZ/yGZ/zBV/yFV/zDd/yHd/zAz/yEz/zC7/yG7/zB3+OGDd2zHAYGrLBJja1mc1tYUtb2Whr29jWdra3w/816Af9oB/0g37QD/pBP+gH/aAf9IN+0A/6QT/RT/QT/UQ/0U/0E/1EP9FP9BP9RD/RT/QT/UQ/1U/1U/1UP9VP9VP9VD/VT/VT/VQ/1U/1U/1UP9PP9DP9TD/Tz/Qz/Uw/08/0M/1MP9PP9DP9TD/Xz/Vz/Vw/18/1c/1cP9fP9XP9XD/Xz/Vz/Vy/0C/0C/1Cv9Av9Av9Qr/QL/QL/UK/0C/0C/1Cv9Qv9Uv9Ur/UL/VL/VK/1C/1S/1Sv9Qv9Uv9Ur/Sr/Qr/Uq/0q/0K/1Kv9Kv9Cv9Sr/Sr/Qr/Uo/6kf9qB/1o37Uj/pRP+pH/agf9aN+1I/6Ub/Wr/Vr/Vq/1q/1a/1av9av9Wv9Wr/Wr/Vr/Vq/0W/0G/1Gv9Fv9Bv9Rr/Rb/Qb/Ua/0W/0G/1Gv9Vv9Vv9Vr/Vb/Vb/Va/1W/1W/1Wv9Vv9Vv9Vr/T7/Q7/U6/0+/0O/1Ov9Pv9Dv9Tr/T7/Q7/U6/1+/1e/1ev9fv9Xv9Xr/X7+M/H+d71AAAAAAB//8AAnjaY2BgYGQAgotTLrwG09cvToLSkwFiEwk5AAA=),\n       url(\"../fonts/icons8-win10.woff\") format(\"woff\"),\n       url(\"../fonts/icons8-win10.ttf\") format(\"truetype\"),\n       url(\"../fonts/icons8-win10.svg#icons8-win10\") format(\"svg\");\n  font-weight: normal;\n  font-style: normal;\n}\n\n@media screen and (-webkit-min-device-pixel-ratio:0) {\n  @font-face {\n    font-family: \"icons8-win10\";\n    src: url(\"../fonts/icons8-win10.svg#icons8-win10\") format(\"svg\");\n  }\n}\n\n[data-icon]:before { content: attr(data-icon); }\n\n[data-icon]:before,\n.win10-add-shopping-cart:before,\n.win10-add-user:before,\n.win10-adventures:before,\n.win10-advertising:before,\n.win10-airport:before,\n.win10-align-center:before,\n.win10-align-justify:before,\n.win10-align-left:before,\n.win10-align-right:before,\n.win10-alphabetical-sorting:before,\n.win10-alphabetical-sorting-2:before,\n.win10-amex:before,\n.win10-angle-down:before,\n.win10-angle-left:before,\n.win10-angle-right:before,\n.win10-angle-up:before,\n.win10-archive:before,\n.win10-area-chart:before,\n.win10-arrows-long-down:before,\n.win10-arrows-long-left:before,\n.win10-arrows-long-right:before,\n.win10-arrows-long-up:before,\n.win10-asterisk:before,\n.win10-audio-file:before,\n.win10-babys-room:before,\n.win10-bank-card:before,\n.win10-banknotes:before,\n.win10-bar-chart:before,\n.win10-barcode:before,\n.win10-bed:before,\n.win10-binoculars:before,\n.win10-bitcoin:before,\n.win10-bold:before,\n.win10-bookmark:before,\n.win10-box:before,\n.win10-briefcase:before,\n.win10-british-pound:before,\n.win10-brush:before,\n.win10-buy:before,\n.win10-calculator:before,\n.win10-camera:before,\n.win10-cancel:before,\n.win10-cancel-2:before,\n.win10-cat-footprint:before,\n.win10-checked:before,\n.win10-checked-2:before,\n.win10-checkmark:before,\n.win10-chevron-down:before,\n.win10-chevron-down-round:before,\n.win10-chevron-left:before,\n.win10-chevron-left-round:before,\n.win10-chevron-right:before,\n.win10-chevron-right-round:before,\n.win10-chevron-up:before,\n.win10-chevron-up-round:before,\n.win10-circle:before,\n.win10-circle-notch:before,\n.win10-circle-thin:before,\n.win10-clipboard:before,\n.win10-code-file:before,\n.win10-color-dropper:before,\n.win10-columns:before,\n.win10-comments:before,\n.win10-compress:before,\n.win10-controller:before,\n.win10-copy:before,\n.win10-copyright:before,\n.win10-create-new:before,\n.win10-crop:before,\n.win10-cut:before,\n.win10-database:before,\n.win10-dining-room:before,\n.win10-diploma-1:before,\n.win10-doctor:before,\n.win10-document:before,\n.win10-double-left:before,\n.win10-double-right:before,\n.win10-double-up:before,\n.win10-down-arrow:before,\n.win10-down-round:before,\n.win10-down-squared:before,\n.win10-download:before,\n.win10-download-2:before,\n.win10-electrical:before,\n.win10-electricity:before,\n.win10-eraser:before,\n.win10-euro:before,\n.win10-exclamation-mark:before,\n.win10-export:before,\n.win10-fantasy:before,\n.win10-fax:before,\n.win10-female:before,\n.win10-file:before,\n.win10-film:before,\n.win10-filter:before,\n.win10-finish-flag:before,\n.win10-fire-extinguisher:before,\n.win10-folder:before,\n.win10-football2:before,\n.win10-gender:before,\n.win10-gender-neutral-user:before,\n.win10-genderqueer:before,\n.win10-generic-sorting:before,\n.win10-generic-sorting-2:before,\n.win10-generic-text:before,\n.win10-gift:before,\n.win10-google-wallet:before,\n.win10-gps-device:before,\n.win10-grid:before,\n.win10-grid-2:before,\n.win10-grid-3:before,\n.win10-group:before,\n.win10-hdd:before,\n.win10-header:before,\n.win10-home:before,\n.win10-hospital-2:before,\n.win10-idea:before,\n.win10-image-file:before,\n.win10-import:before,\n.win10-indent:before,\n.win10-info:before,\n.win10-insert-table:before,\n.win10-ipad:before,\n.win10-iphone:before,\n.win10-italic:before,\n.win10-japanese-yen:before,\n.win10-key:before,\n.win10-keyboard:before,\n.win10-last-quarter:before,\n.win10-left-arrow:before,\n.win10-left-round:before,\n.win10-left-squared:before,\n.win10-level-down:before,\n.win10-level-up:before,\n.win10-library:before,\n.win10-list:before,\n.win10-lock:before,\n.win10-lock-2:before,\n.win10-male:before,\n.win10-mastercard:before,\n.win10-minus:before,\n.win10-monitor:before,\n.win10-moon:before,\n.win10-music:before,\n.win10-news:before,\n.win10-notebook:before,\n.win10-numbered-list:before,\n.win10-numerical-sorting-12:before,\n.win10-numerical-sorting-21:before,\n.win10-old-time-camera:before,\n.win10-opened-folder:before,\n.win10-organization:before,\n.win10-outdent:before,\n.win10-paragraph:before,\n.win10-parallel-tasks:before,\n.win10-paste:before,\n.win10-paypal:before,\n.win10-pdf:before,\n.win10-pencil:before,\n.win10-phone:before,\n.win10-picture:before,\n.win10-pie-chart:before,\n.win10-pin-3:before,\n.win10-plus:before,\n.win10-powerpoint:before,\n.win10-price-tag:before,\n.win10-puzzle:before,\n.win10-qr-code:before,\n.win10-question-mark:before,\n.win10-recycling:before,\n.win10-refresh:before,\n.win10-remove-user:before,\n.win10-resize-diagonal:before,\n.win10-resize-four-directions:before,\n.win10-resize-horizontal:before,\n.win10-resize-vertical:before,\n.win10-right-arrow:before,\n.win10-right-round:before,\n.win10-right-squared:before,\n.win10-rotate-left:before,\n.win10-rotate-right:before,\n.win10-rouble:before,\n.win10-rounded-rectangle:before,\n.win10-rounded-rectangle-filled:before,\n.win10-rupee:before,\n.win10-search:before,\n.win10-sensor:before,\n.win10-services:before,\n.win10-settings:before,\n.win10-share:before,\n.win10-shekel:before,\n.win10-shopping-cart:before,\n.win10-shutdown:before,\n.win10-sort:before,\n.win10-sort-down:before,\n.win10-sort-left:before,\n.win10-sort-right:before,\n.win10-sort-up:before,\n.win10-spy:before,\n.win10-strikethrough:before,\n.win10-stripe:before,\n.win10-student:before,\n.win10-subscript:before,\n.win10-superscript:before,\n.win10-support:before,\n.win10-tags:before,\n.win10-tasks:before,\n.win10-text-height:before,\n.win10-text-width:before,\n.win10-ticket:before,\n.win10-timeline:before,\n.win10-todo-list:before,\n.win10-translation:before,\n.win10-trash:before,\n.win10-trophy:before,\n.win10-turkish-lira:before,\n.win10-umbrella:before,\n.win10-underline:before,\n.win10-undo:before,\n.win10-unlock-2:before,\n.win10-up-arrow:before,\n.win10-up-round:before,\n.win10-up-squared:before,\n.win10-upload:before,\n.win10-upload-2:before,\n.win10-us-dollar:before,\n.win10-user-female:before,\n.win10-user-male:before,\n.win10-video-call:before,\n.win10-video-file:before,\n.win10-visa:before,\n.win10-won:before,\n.win10-word:before,\n.win10-xls:before {\n  display: inline-block;\n  font-family: \"icons8-win10\";\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  line-height: 1;\n  text-decoration: inherit;\n  text-rendering: optimizeLegibility;\n  text-transform: none;\n  -moz-osx-font-smoothing: grayscale;\n  -webkit-font-smoothing: antialiased;\n  font-smoothing: antialiased;\n}\n\n.win10-add-shopping-cart:before { content: \"\\f100\"; }\n.win10-add-user:before { content: \"\\f101\"; }\n.win10-adventures:before { content: \"\\f102\"; }\n.win10-advertising:before { content: \"\\f103\"; }\n.win10-airport:before { content: \"\\f104\"; }\n.win10-align-center:before { content: \"\\f105\"; }\n.win10-align-justify:before { content: \"\\f106\"; }\n.win10-align-left:before { content: \"\\f107\"; }\n.win10-align-right:before { content: \"\\f108\"; }\n.win10-alphabetical-sorting:before { content: \"\\f109\"; }\n.win10-alphabetical-sorting-2:before { content: \"\\f10a\"; }\n.win10-amex:before { content: \"\\f10b\"; }\n.win10-angle-down:before { content: \"\\f10c\"; }\n.win10-angle-left:before { content: \"\\f10d\"; }\n.win10-angle-right:before { content: \"\\f10e\"; }\n.win10-angle-up:before { content: \"\\f10f\"; }\n.win10-archive:before { content: \"\\f110\"; }\n.win10-area-chart:before { content: \"\\f111\"; }\n.win10-arrows-long-down:before { content: \"\\f112\"; }\n.win10-arrows-long-left:before { content: \"\\f113\"; }\n.win10-arrows-long-right:before { content: \"\\f114\"; }\n.win10-arrows-long-up:before { content: \"\\f115\"; }\n.win10-asterisk:before { content: \"\\f116\"; }\n.win10-audio-file:before { content: \"\\f117\"; }\n.win10-babys-room:before { content: \"\\f118\"; }\n.win10-bank-card:before { content: \"\\f119\"; }\n.win10-banknotes:before { content: \"\\f11a\"; }\n.win10-bar-chart:before { content: \"\\f11b\"; }\n.win10-barcode:before { content: \"\\f11c\"; }\n.win10-bed:before { content: \"\\f11d\"; }\n.win10-binoculars:before { content: \"\\f11e\"; }\n.win10-bitcoin:before { content: \"\\f11f\"; }\n.win10-bold:before { content: \"\\f120\"; }\n.win10-bookmark:before { content: \"\\f121\"; }\n.win10-box:before { content: \"\\f122\"; }\n.win10-briefcase:before { content: \"\\f123\"; }\n.win10-british-pound:before { content: \"\\f124\"; }\n.win10-brush:before { content: \"\\f125\"; }\n.win10-buy:before { content: \"\\f126\"; }\n.win10-calculator:before { content: \"\\f127\"; }\n.win10-camera:before { content: \"\\f128\"; }\n.win10-cancel:before { content: \"\\f129\"; }\n.win10-cancel-2:before { content: \"\\f12a\"; }\n.win10-cat-footprint:before { content: \"\\f12b\"; }\n.win10-checked:before { content: \"\\f12c\"; }\n.win10-checked-2:before { content: \"\\f12d\"; }\n.win10-checkmark:before { content: \"\\f12e\"; }\n.win10-chevron-down:before { content: \"\\f12f\"; }\n.win10-chevron-down-round:before { content: \"\\f130\"; }\n.win10-chevron-left:before { content: \"\\f131\"; }\n.win10-chevron-left-round:before { content: \"\\f132\"; }\n.win10-chevron-right:before { content: \"\\f133\"; }\n.win10-chevron-right-round:before { content: \"\\f134\"; }\n.win10-chevron-up:before { content: \"\\f135\"; }\n.win10-chevron-up-round:before { content: \"\\f136\"; }\n.win10-circle:before { content: \"\\f137\"; }\n.win10-circle-notch:before { content: \"\\f138\"; }\n.win10-circle-thin:before { content: \"\\f139\"; }\n.win10-clipboard:before { content: \"\\f13a\"; }\n.win10-code-file:before { content: \"\\f13b\"; }\n.win10-color-dropper:before { content: \"\\f13c\"; }\n.win10-columns:before { content: \"\\f13d\"; }\n.win10-comments:before { content: \"\\f13e\"; }\n.win10-compress:before { content: \"\\f13f\"; }\n.win10-controller:before { content: \"\\f140\"; }\n.win10-copy:before { content: \"\\f141\"; }\n.win10-copyright:before { content: \"\\f142\"; }\n.win10-create-new:before { content: \"\\f143\"; }\n.win10-crop:before { content: \"\\f144\"; }\n.win10-cut:before { content: \"\\f145\"; }\n.win10-database:before { content: \"\\f146\"; }\n.win10-dining-room:before { content: \"\\f147\"; }\n.win10-diploma-1:before { content: \"\\f148\"; }\n.win10-doctor:before { content: \"\\f149\"; }\n.win10-document:before { content: \"\\f14a\"; }\n.win10-double-left:before { content: \"\\f14b\"; }\n.win10-double-right:before { content: \"\\f14c\"; }\n.win10-double-up:before { content: \"\\f14d\"; }\n.win10-down-arrow:before { content: \"\\f14e\"; }\n.win10-down-round:before { content: \"\\f14f\"; }\n.win10-down-squared:before { content: \"\\f150\"; }\n.win10-download:before { content: \"\\f151\"; }\n.win10-download-2:before { content: \"\\f152\"; }\n.win10-electrical:before { content: \"\\f153\"; }\n.win10-electricity:before { content: \"\\f154\"; }\n.win10-eraser:before { content: \"\\f155\"; }\n.win10-euro:before { content: \"\\f156\"; }\n.win10-exclamation-mark:before { content: \"\\f157\"; }\n.win10-export:before { content: \"\\f158\"; }\n.win10-fantasy:before { content: \"\\f159\"; }\n.win10-fax:before { content: \"\\f15a\"; }\n.win10-female:before { content: \"\\f15b\"; }\n.win10-file:before { content: \"\\f15c\"; }\n.win10-film:before { content: \"\\f15d\"; }\n.win10-filter:before { content: \"\\f15e\"; }\n.win10-finish-flag:before { content: \"\\f15f\"; }\n.win10-fire-extinguisher:before { content: \"\\f160\"; }\n.win10-folder:before { content: \"\\f161\"; }\n.win10-football2:before { content: \"\\f162\"; }\n.win10-gender:before { content: \"\\f163\"; }\n.win10-gender-neutral-user:before { content: \"\\f164\"; }\n.win10-genderqueer:before { content: \"\\f165\"; }\n.win10-generic-sorting:before { content: \"\\f166\"; }\n.win10-generic-sorting-2:before { content: \"\\f167\"; }\n.win10-generic-text:before { content: \"\\f168\"; }\n.win10-gift:before { content: \"\\f169\"; }\n.win10-google-wallet:before { content: \"\\f16a\"; }\n.win10-gps-device:before { content: \"\\f16b\"; }\n.win10-grid:before { content: \"\\f16c\"; }\n.win10-grid-2:before { content: \"\\f16d\"; }\n.win10-grid-3:before { content: \"\\f16e\"; }\n.win10-group:before { content: \"\\f16f\"; }\n.win10-hdd:before { content: \"\\f170\"; }\n.win10-header:before { content: \"\\f171\"; }\n.win10-home:before { content: \"\\f172\"; }\n.win10-hospital-2:before { content: \"\\f173\"; }\n.win10-idea:before { content: \"\\f174\"; }\n.win10-image-file:before { content: \"\\f175\"; }\n.win10-import:before { content: \"\\f176\"; }\n.win10-indent:before { content: \"\\f177\"; }\n.win10-info:before { content: \"\\f178\"; }\n.win10-insert-table:before { content: \"\\f179\"; }\n.win10-ipad:before { content: \"\\f17a\"; }\n.win10-iphone:before { content: \"\\f17b\"; }\n.win10-italic:before { content: \"\\f17c\"; }\n.win10-japanese-yen:before { content: \"\\f17d\"; }\n.win10-key:before { content: \"\\f17e\"; }\n.win10-keyboard:before { content: \"\\f17f\"; }\n.win10-last-quarter:before { content: \"\\f180\"; }\n.win10-left-arrow:before { content: \"\\f181\"; }\n.win10-left-round:before { content: \"\\f182\"; }\n.win10-left-squared:before { content: \"\\f183\"; }\n.win10-level-down:before { content: \"\\f184\"; }\n.win10-level-up:before { content: \"\\f185\"; }\n.win10-library:before { content: \"\\f186\"; }\n.win10-list:before { content: \"\\f187\"; }\n.win10-lock:before { content: \"\\f188\"; }\n.win10-lock-2:before { content: \"\\f189\"; }\n.win10-male:before { content: \"\\f18a\"; }\n.win10-mastercard:before { content: \"\\f18b\"; }\n.win10-minus:before { content: \"\\f18c\"; }\n.win10-monitor:before { content: \"\\f18d\"; }\n.win10-moon:before { content: \"\\f18e\"; }\n.win10-music:before { content: \"\\f18f\"; }\n.win10-news:before { content: \"\\f190\"; }\n.win10-notebook:before { content: \"\\f191\"; }\n.win10-numbered-list:before { content: \"\\f192\"; }\n.win10-numerical-sorting-12:before { content: \"\\f193\"; }\n.win10-numerical-sorting-21:before { content: \"\\f194\"; }\n.win10-old-time-camera:before { content: \"\\f195\"; }\n.win10-opened-folder:before { content: \"\\f196\"; }\n.win10-organization:before { content: \"\\f197\"; }\n.win10-outdent:before { content: \"\\f198\"; }\n.win10-paragraph:before { content: \"\\f199\"; }\n.win10-parallel-tasks:before { content: \"\\f19a\"; }\n.win10-paste:before { content: \"\\f19b\"; }\n.win10-paypal:before { content: \"\\f19c\"; }\n.win10-pdf:before { content: \"\\f19d\"; }\n.win10-pencil:before { content: \"\\f19e\"; }\n.win10-phone:before { content: \"\\f19f\"; }\n.win10-picture:before { content: \"\\f1a0\"; }\n.win10-pie-chart:before { content: \"\\f1a1\"; }\n.win10-pin-3:before { content: \"\\f1a2\"; }\n.win10-plus:before { content: \"\\f1a3\"; }\n.win10-powerpoint:before { content: \"\\f1a4\"; }\n.win10-price-tag:before { content: \"\\f1a5\"; }\n.win10-puzzle:before { content: \"\\f1a6\"; }\n.win10-qr-code:before { content: \"\\f1a7\"; }\n.win10-question-mark:before { content: \"\\f1a8\"; }\n.win10-recycling:before { content: \"\\f1a9\"; }\n.win10-refresh:before { content: \"\\f1aa\"; }\n.win10-remove-user:before { content: \"\\f1ab\"; }\n.win10-resize-diagonal:before { content: \"\\f1ac\"; }\n.win10-resize-four-directions:before { content: \"\\f1ad\"; }\n.win10-resize-horizontal:before { content: \"\\f1ae\"; }\n.win10-resize-vertical:before { content: \"\\f1af\"; }\n.win10-right-arrow:before { content: \"\\f1b0\"; }\n.win10-right-round:before { content: \"\\f1b1\"; }\n.win10-right-squared:before { content: \"\\f1b2\"; }\n.win10-rotate-left:before { content: \"\\f1b3\"; }\n.win10-rotate-right:before { content: \"\\f1b4\"; }\n.win10-rouble:before { content: \"\\f1b5\"; }\n.win10-rounded-rectangle:before { content: \"\\f1b6\"; }\n.win10-rounded-rectangle-filled:before { content: \"\\f1b7\"; }\n.win10-rupee:before { content: \"\\f1b8\"; }\n.win10-search:before { content: \"\\f1b9\"; }\n.win10-sensor:before { content: \"\\f1ba\"; }\n.win10-services:before { content: \"\\f1bb\"; }\n.win10-settings:before { content: \"\\f1bc\"; }\n.win10-share:before { content: \"\\f1bd\"; }\n.win10-shekel:before { content: \"\\f1be\"; }\n.win10-shopping-cart:before { content: \"\\f1bf\"; }\n.win10-shutdown:before { content: \"\\f1c0\"; }\n.win10-sort:before { content: \"\\f1c1\"; }\n.win10-sort-down:before { content: \"\\f1c2\"; }\n.win10-sort-left:before { content: \"\\f1c3\"; }\n.win10-sort-right:before { content: \"\\f1c4\"; }\n.win10-sort-up:before { content: \"\\f1c5\"; }\n.win10-spy:before { content: \"\\f1c6\"; }\n.win10-strikethrough:before { content: \"\\f1c7\"; }\n.win10-stripe:before { content: \"\\f1c8\"; }\n.win10-student:before { content: \"\\f1c9\"; }\n.win10-subscript:before { content: \"\\f1ca\"; }\n.win10-superscript:before { content: \"\\f1cb\"; }\n.win10-support:before { content: \"\\f1cc\"; }\n.win10-tags:before { content: \"\\f1cd\"; }\n.win10-tasks:before { content: \"\\f1ce\"; }\n.win10-text-height:before { content: \"\\f1cf\"; }\n.win10-text-width:before { content: \"\\f1d0\"; }\n.win10-ticket:before { content: \"\\f1d1\"; }\n.win10-timeline:before { content: \"\\f1d2\"; }\n.win10-todo-list:before { content: \"\\f1d3\"; }\n.win10-translation:before { content: \"\\f1d4\"; }\n.win10-trash:before { content: \"\\f1d5\"; }\n.win10-trophy:before { content: \"\\f1d6\"; }\n.win10-turkish-lira:before { content: \"\\f1d7\"; }\n.win10-umbrella:before { content: \"\\f1d8\"; }\n.win10-underline:before { content: \"\\f1d9\"; }\n.win10-undo:before { content: \"\\f1da\"; }\n.win10-unlock-2:before { content: \"\\f1db\"; }\n.win10-up-arrow:before { content: \"\\f1dc\"; }\n.win10-up-round:before { content: \"\\f1dd\"; }\n.win10-up-squared:before { content: \"\\f1de\"; }\n.win10-upload:before { content: \"\\f1df\"; }\n.win10-upload-2:before { content: \"\\f1e0\"; }\n.win10-us-dollar:before { content: \"\\f1e1\"; }\n.win10-user-female:before { content: \"\\f1e2\"; }\n.win10-user-male:before { content: \"\\f1e3\"; }\n.win10-video-call:before { content: \"\\f1e4\"; }\n.win10-video-file:before { content: \"\\f1e5\"; }\n.win10-visa:before { content: \"\\f1e6\"; }\n.win10-won:before { content: \"\\f1e7\"; }\n.win10-word:before { content: \"\\f1e8\"; }\n.win10-xls:before { content: \"\\f1e9\"; }\n"
  },
  {
    "path": "icon-packs/ikonli-zondicons-pack/ikonli-zondicons-pack.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"
  },
  {
    "path": "icon-packs/ikonli-zondicons-pack/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.zondicons {\n    requires org.kordamp.ikonli.core;\n    requires static org.kordamp.jipsy.annotations;\n    requires static org.osgi.service.component.annotations;\n    requires static org.kordamp.ikonli.infra.nativeimage.annotations;\n    exports org.kordamp.ikonli.zondicons;\n\n    provides org.kordamp.ikonli.IkonHandler\n        with org.kordamp.ikonli.zondicons.ZondiconsIkonHandler;\n    provides org.kordamp.ikonli.IkonProvider\n        with org.kordamp.ikonli.zondicons.ZondiconsIkonProvider;\n}"
  },
  {
    "path": "icon-packs/ikonli-zondicons-pack/src/main/java/org/kordamp/ikonli/zondicons/Zondicons.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.zondicons;\n\nimport org.kordamp.ikonli.Ikon;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\npublic enum Zondicons implements Ikon {\n    // last is ea28\n    ADD_OUTLINE(\"zondi-add-outline\", '\\uea28'),\n    ADD_SOLID(\"zondi-add-solid\", '\\uea27'),\n    ADJUST(\"zondi-adjust\", '\\uea26'),\n    AIRPLANE(\"zondi-airplane\", '\\uea25'),\n    ALBUM(\"zondi-album\", '\\uea24'),\n    ALIGN_CENTER(\"zondi-align-center\", '\\uea23'),\n    ALIGN_JUSTIFIED(\"zondi-align-justified\", '\\uea22'),\n    ALIGN_LEFT(\"zondi-align-left\", '\\uea21'),\n    ALIGN_RIGHT(\"zondi-align-right\", '\\uea20'),\n    ANCHOR(\"zondi-anchor\", '\\uea1f'),\n    ANNOUNCEMENT(\"zondi-announcement\", '\\uea1e'),\n    APPAREL(\"zondi-apparel\", '\\uea1d'),\n    ARROW_DOWN(\"zondi-arrow-down\", '\\uea1c'),\n    ARROW_LEFT(\"zondi-arrow-left\", '\\uea1b'),\n    ARROW_OUTLINE_DOWN(\"zondi-arrow-outline-down\", '\\uea1a'),\n    ARROW_OUTLINE_LEFT(\"zondi-arrow-outline-left\", '\\uea19'),\n    ARROW_OUTLINE_RIGHT(\"zondi-arrow-outline-right\", '\\uea18'),\n    ARROW_OUTLINE_UP(\"zondi-arrow-outline-up\", '\\uea17'),\n    ARROW_RIGHT(\"zondi-arrow-right\", '\\uea16'),\n    ARROW_THICK_DOWN(\"zondi-arrow-thick-down\", '\\uea15'),\n    ARROW_THICK_LEFT(\"zondi-arrow-thick-left\", '\\uea14'),\n    ARROW_THICK_RIGHT(\"zondi-arrow-thick-right\", '\\uea13'),\n    ARROW_THICK_UP(\"zondi-arrow-thick-up\", '\\uea12'),\n    ARROW_THIN_DOWN(\"zondi-arrow-thin-down\", '\\uea11'),\n    ARROW_THIN_LEFT(\"zondi-arrow-thin-left\", '\\uea10'),\n    ARROW_THIN_RIGHT(\"zondi-arrow-thin-right\", '\\uea0f'),\n    ARROW_THIN_UP(\"zondi-arrow-thin-up\", '\\uea0e'),\n    ARROW_UP(\"zondi-arrow-up\", '\\uea0d'),\n    ARTIST(\"zondi-artist\", '\\uea0c'),\n    ATTACHMENT(\"zondi-attachment\", '\\uea0a'),\n    AT_SYMBOL(\"zondi-at-symbol\", '\\uea0b'),\n    BACKSPACE(\"zondi-backspace\", '\\uea09'),\n    BACKWARD(\"zondi-backward\", '\\uea07'),\n    BACKWARD_STEP(\"zondi-backward-step\", '\\uea08'),\n    BADGE(\"zondi-badge\", '\\uea06'),\n    BATTERY_FULL(\"zondi-battery-full\", '\\uea05'),\n    BATTERY_HALF(\"zondi-battery-half\", '\\uea04'),\n    BATTERY_LOW(\"zondi-battery-low\", '\\uea03'),\n    BEVERAGE(\"zondi-beverage\", '\\uea02'),\n    BLOCK(\"zondi-block\", '\\uea01'),\n    BLUETOOTH(\"zondi-bluetooth\", '\\uea00'),\n    BOLT(\"zondi-bolt\", '\\ue9ff'),\n    BOOKMARK(\"zondi-bookmark\", '\\ue9f9'),\n    BOOKMARK_COPY_2(\"zondi-bookmark-copy-2\", '\\ue9fd'),\n    BOOKMARK_COPY_3(\"zondi-bookmark-copy-3\", '\\ue9fc'),\n    BOOKMARK_OUTLINE(\"zondi-bookmark-outline\", '\\ue9fa'),\n    BOOKMARK_OUTLINE_ADD(\"zondi-bookmark-outline-add\", '\\ue9fb'),\n    BOOK_REFERENCE(\"zondi-book-reference\", '\\ue9fe'),\n    BORDER_ALL(\"zondi-border-all\", '\\ue9f8'),\n    BORDER_BOTTOM(\"zondi-border-bottom\", '\\ue9f7'),\n    BORDER_HORIZONTAL(\"zondi-border-horizontal\", '\\ue9f6'),\n    BORDER_INNER(\"zondi-border-inner\", '\\ue9f5'),\n    BORDER_LEFT(\"zondi-border-left\", '\\ue9f4'),\n    BORDER_NONE(\"zondi-border-none\", '\\ue9f3'),\n    BORDER_OUTER(\"zondi-border-outer\", '\\ue9f2'),\n    BORDER_RIGHT(\"zondi-border-right\", '\\ue9f1'),\n    BORDER_TOP(\"zondi-border-top\", '\\ue9f0'),\n    BORDER_VERTICAL(\"zondi-border-vertical\", '\\ue9ef'),\n    BOX(\"zondi-box\", '\\ue9ee'),\n    BRIGHTNESS_DOWN(\"zondi-brightness-down\", '\\ue9ed'),\n    BRIGHTNESS_UP(\"zondi-brightness-up\", '\\ue9ec'),\n    BROWSER_WINDOW(\"zondi-browser-window\", '\\ue9e9'),\n    BROWSER_WINDOW_NEW(\"zondi-browser-window-new\", '\\ue9eb'),\n    BROWSER_WINDOW_OPEN(\"zondi-browser-window-open\", '\\ue9ea'),\n    BUG(\"zondi-bug\", '\\ue9e8'),\n    BUOY(\"zondi-buoy\", '\\ue9e7'),\n    CALCULATOR(\"zondi-calculator\", '\\ue9e6'),\n    CALENDAR(\"zondi-calendar\", '\\ue9e5'),\n    CAMERA(\"zondi-camera\", '\\ue9e4'),\n    CHART(\"zondi-chart\", '\\ue9e1'),\n    CHART_BAR(\"zondi-chart-bar\", '\\ue9e3'),\n    CHART_PIE(\"zondi-chart-pie\", '\\ue9e2'),\n    CHAT_BUBBLE_DOTS(\"zondi-chat-bubble-dots\", '\\ue9e0'),\n    CHECKMARK(\"zondi-checkmark\", '\\ue9de'),\n    CHECKMARK_OUTLINE(\"zondi-checkmark-outline\", '\\ue9df'),\n    CHEVERON_DOWN(\"zondi-cheveron-down\", '\\ue9dd'),\n    CHEVERON_LEFT(\"zondi-cheveron-left\", '\\ue9dc'),\n    CHEVERON_OUTLINE_DOWN(\"zondi-cheveron-outline-down\", '\\ue9db'),\n    CHEVERON_OUTLINE_LEFT(\"zondi-cheveron-outline-left\", '\\ue9da'),\n    CHEVERON_OUTLINE_RIGHT(\"zondi-cheveron-outline-right\", '\\ue9d9'),\n    CHEVERON_OUTLINE_UP(\"zondi-cheveron-outline-up\", '\\ue9d8'),\n    CHEVERON_RIGHT(\"zondi-cheveron-right\", '\\ue9d7'),\n    CHEVERON_UP(\"zondi-cheveron-up\", '\\ue9d6'),\n    CLIPBOARD(\"zondi-clipboard\", '\\ue9d5'),\n    CLOSE(\"zondi-close\", '\\ue9d2'),\n    CLOSE_OUTLINE(\"zondi-close-outline\", '\\ue9d4'),\n    CLOSE_SOLID(\"zondi-close-solid\", '\\ue9d3'),\n    CLOUD(\"zondi-cloud\", '\\ue9d0'),\n    CLOUD_UPLOAD(\"zondi-cloud-upload\", '\\ue9d1'),\n    CODE(\"zondi-code\", '\\ue9cf'),\n    COFFEE(\"zondi-coffee\", '\\ue9ce'),\n    COG(\"zondi-cog\", '\\ue9cd'),\n    COLOR_PALETTE(\"zondi-color-palette\", '\\ue9cc'),\n    COMPOSE(\"zondi-compose\", '\\ue9cb'),\n    COMPUTER_DESKTOP(\"zondi-computer-desktop\", '\\ue9ca'),\n    COMPUTER_LAPTOP(\"zondi-computer-laptop\", '\\ue9c9'),\n    CONVERSATION(\"zondi-conversation\", '\\ue9c8'),\n    COPY(\"zondi-copy\", '\\ue9c7'),\n    CREDIT_CARD(\"zondi-credit-card\", '\\ue9c6'),\n    CURRENCY_DOLLAR(\"zondi-currency-dollar\", '\\ue9c5'),\n    DASHBOARD(\"zondi-dashboard\", '\\ue9c4'),\n    DATE_ADD(\"zondi-date-add\", '\\ue9c3'),\n    DIAL_PAD(\"zondi-dial-pad\", '\\ue9c2'),\n    DIRECTIONS(\"zondi-directions\", '\\ue9c1'),\n    DOCUMENT(\"zondi-document\", '\\ue9bf'),\n    DOCUMENT_ADD(\"zondi-document-add\", '\\ue9c0'),\n    DOTS_HORIZONTAL_DOUBLE(\"zondi-dots-horizontal-double\", '\\ue9be'),\n    DOTS_HORIZONTAL_TRIPLE(\"zondi-dots-horizontal-triple\", '\\ue9bd'),\n    DOWNLOAD(\"zondi-download\", '\\ue9bc'),\n    DUPLICATE(\"zondi-duplicate\", '\\ue9bb'),\n    EDIT_COPY(\"zondi-edit-copy\", '\\ue9ba'),\n    EDIT_CROP(\"zondi-edit-crop\", '\\ue9b9'),\n    EDIT_CUT(\"zondi-edit-cut\", '\\ue9b8'),\n    EDIT_PENCIL(\"zondi-edit-pencil\", '\\ue9b7'),\n    EDUCATION(\"zondi-education\", '\\ue9b6'),\n    ENVELOPE(\"zondi-envelope\", '\\ue9b5'),\n    EXCLAMATION_OUTLINE(\"zondi-exclamation-outline\", '\\ue9b4'),\n    EXCLAMATION_SOLID(\"zondi-exclamation-solid\", '\\ue9b3'),\n    EXPLORE(\"zondi-explore\", '\\ue9b2'),\n    FACTORY(\"zondi-factory\", '\\ue9b1'),\n    FAST_FORWARD(\"zondi-fast-forward\", '\\ue9b0'),\n    FAST_REWIND(\"zondi-fast-rewind\", '\\ue9af'),\n    FILM(\"zondi-film\", '\\ue9ae'),\n    FILTER(\"zondi-filter\", '\\ue9ad'),\n    FLAG(\"zondi-flag\", '\\ue9ac'),\n    FLASHLIGHT(\"zondi-flashlight\", '\\ue9ab'),\n    FOLDER(\"zondi-folder\", '\\ue9a8'),\n    FOLDER_OUTLINE(\"zondi-folder-outline\", '\\ue9a9'),\n    FOLDER_OUTLINE_ADD(\"zondi-folder-outline-add\", '\\ue9aa'),\n    FORMAT_BOLD(\"zondi-format-bold\", '\\ue9a7'),\n    FORMAT_FONT_SIZE(\"zondi-format-font-size\", '\\ue9a6'),\n    FORMAT_ITALIC(\"zondi-format-italic\", '\\ue9a5'),\n    FORMAT_TEXT_SIZE(\"zondi-format-text-size\", '\\ue9a4'),\n    FORMAT_UNDERLINE(\"zondi-format-underline\", '\\ue9a3'),\n    FORWARD(\"zondi-forward\", '\\ue9a1'),\n    FORWARD_STEP(\"zondi-forward-step\", '\\ue9a2'),\n    GIFT(\"zondi-gift\", '\\ue9a0'),\n    GLOBE(\"zondi-globe\", '\\ue99f'),\n    HAND_STOP(\"zondi-hand-stop\", '\\ue99e'),\n    HARD_DRIVE(\"zondi-hard-drive\", '\\ue99d'),\n    HEADPHONES(\"zondi-headphones\", '\\ue99c'),\n    HEART(\"zondi-heart\", '\\ue99b'),\n    HOME(\"zondi-home\", '\\ue99a'),\n    HOT(\"zondi-hot\", '\\ue999'),\n    HOUR_GLASS(\"zondi-hour-glass\", '\\ue998'),\n    INBOX(\"zondi-inbox\", '\\ue994'),\n    INBOX_CHECK(\"zondi-inbox-check\", '\\ue997'),\n    INBOX_DOWNLOAD(\"zondi-inbox-download\", '\\ue996'),\n    INBOX_FULL(\"zondi-inbox-full\", '\\ue995'),\n    INDENT_DECREASE(\"zondi-indent-decrease\", '\\ue993'),\n    INDENT_INCREASE(\"zondi-indent-increase\", '\\ue992'),\n    INFORMATION_OUTLINE(\"zondi-information-outline\", '\\ue991'),\n    INFORMATION_SOLID(\"zondi-information-solid\", '\\ue990'),\n    KEY(\"zondi-key\", '\\ue98f'),\n    KEYBOARD(\"zondi-keyboard\", '\\ue98e'),\n    LAYERS(\"zondi-layers\", '\\ue98d'),\n    LIBRARY(\"zondi-library\", '\\ue98c'),\n    LIGHT_BULB(\"zondi-light-bulb\", '\\ue98b'),\n    LINK(\"zondi-link\", '\\ue98a'),\n    LIST(\"zondi-list\", '\\ue987'),\n    LIST_ADD(\"zondi-list-add\", '\\ue989'),\n    LIST_BULLET(\"zondi-list-bullet\", '\\ue988'),\n    LOAD_BALANCER(\"zondi-load-balancer\", '\\ue986'),\n    LOCATION(\"zondi-location\", '\\ue97d'),\n    LOCATION_CURRENT(\"zondi-location-current\", '\\ue985'),\n    LOCATION_FOOD(\"zondi-location-food\", '\\ue984'),\n    LOCATION_GAS_STATION(\"zondi-location-gas-station\", '\\ue983'),\n    LOCATION_HOTEL(\"zondi-location-hotel\", '\\ue982'),\n    LOCATION_MARINA(\"zondi-location-marina\", '\\ue981'),\n    LOCATION_PARK(\"zondi-location-park\", '\\ue980'),\n    LOCATION_RESTROOM(\"zondi-location-restroom\", '\\ue97f'),\n    LOCATION_SHOPPING(\"zondi-location-shopping\", '\\ue97e'),\n    LOCK_CLOSED(\"zondi-lock-closed\", '\\ue97c'),\n    LOCK_OPEN(\"zondi-lock-open\", '\\ue97b'),\n    MAP(\"zondi-map\", '\\ue97a'),\n    MENU(\"zondi-menu\", '\\ue979'),\n    MIC(\"zondi-mic\", '\\ue978'),\n    MINUS_OUTLINE(\"zondi-minus-outline\", '\\ue977'),\n    MINUS_SOLID(\"zondi-minus-solid\", '\\ue976'),\n    MOBILE_DEVICES(\"zondi-mobile-devices\", '\\ue975'),\n    MOOD_HAPPY_OUTLINE(\"zondi-mood-happy-outline\", '\\ue974'),\n    MOOD_HAPPY_SOLID(\"zondi-mood-happy-solid\", '\\ue973'),\n    MOOD_NEUTRAL_OUTLINE(\"zondi-mood-neutral-outline\", '\\ue972'),\n    MOOD_NEUTRAL_SOLID(\"zondi-mood-neutral-solid\", '\\ue971'),\n    MOOD_SAD_OUTLINE(\"zondi-mood-sad-outline\", '\\ue970'),\n    MOOD_SAD_SOLID(\"zondi-mood-sad-solid\", '\\ue96f'),\n    MOUSE(\"zondi-mouse\", '\\ue96e'),\n    MUSIC_ALBUM(\"zondi-music-album\", '\\ue96d'),\n    MUSIC_ARTIST(\"zondi-music-artist\", '\\ue96c'),\n    MUSIC_NOTES(\"zondi-music-notes\", '\\ue96b'),\n    MUSIC_PLAYLIST(\"zondi-music-playlist\", '\\ue96a'),\n    NAVIGATION_MORE(\"zondi-navigation-more\", '\\ue969'),\n    NETWORK(\"zondi-network\", '\\ue968'),\n    NEWS_PAPER(\"zondi-news-paper\", '\\ue967'),\n    NOTIFICATION(\"zondi-notification\", '\\ue966'),\n    NOTIFICATIONS(\"zondi-notifications\", '\\ue964'),\n    NOTIFICATIONS_OUTLINE(\"zondi-notifications-outline\", '\\ue965'),\n    PASTE(\"zondi-paste\", '\\ue963'),\n    PAUSE(\"zondi-pause\", '\\ue960'),\n    PAUSE_OUTLINE(\"zondi-pause-outline\", '\\ue962'),\n    PAUSE_SOLID(\"zondi-pause-solid\", '\\ue961'),\n    PEN_TOOL(\"zondi-pen-tool\", '\\ue95f'),\n    PHONE(\"zondi-phone\", '\\ue95e'),\n    PHOTO(\"zondi-photo\", '\\ue95d'),\n    PHP_ELEPHANT(\"zondi-php-elephant\", '\\ue95c'),\n    PIN(\"zondi-pin\", '\\ue95b'),\n    PLAY(\"zondi-play\", '\\ue959'),\n    PLAYLIST(\"zondi-playlist\", '\\ue958'),\n    PLAY_OUTLINE(\"zondi-play-outline\", '\\ue95a'),\n    PLUGIN(\"zondi-plugin\", '\\ue957'),\n    PORTFOLIO(\"zondi-portfolio\", '\\ue956'),\n    PRINTER(\"zondi-printer\", '\\ue955'),\n    PYLON(\"zondi-pylon\", '\\ue954'),\n    QUESTION(\"zondi-question\", '\\ue953'),\n    QUEUE(\"zondi-queue\", '\\ue952'),\n    RADAR(\"zondi-radar\", '\\ue950'),\n    RADAR_COPY_2(\"zondi-radar-copy-2\", '\\ue951'),\n    RADIO(\"zondi-radio\", '\\ue94f'),\n    REFRESH(\"zondi-refresh\", '\\ue94e'),\n    RELOAD(\"zondi-reload\", '\\ue94d'),\n    REPLY(\"zondi-reply\", '\\ue94b'),\n    REPLY_ALL(\"zondi-reply-all\", '\\ue94c'),\n    REPOST(\"zondi-repost\", '\\ue94a'),\n    SAVE_DISK(\"zondi-save-disk\", '\\ue949'),\n    SCREEN_FULL(\"zondi-screen-full\", '\\ue948'),\n    SEARCH(\"zondi-search\", '\\ue947'),\n    SEND(\"zondi-send\", '\\ue946'),\n    SERVERS(\"zondi-servers\", '\\ue945'),\n    SHARE(\"zondi-share\", '\\ue942'),\n    SHARE_01(\"zondi-share-01\", '\\ue944'),\n    SHARE_ALT(\"zondi-share-alt\", '\\ue943'),\n    SHIELD(\"zondi-shield\", '\\ue941'),\n    SHOPPING_CART(\"zondi-shopping-cart\", '\\ue940'),\n    SHOW_SIDEBAR(\"zondi-show-sidebar\", '\\ue93f'),\n    SHUFFLE(\"zondi-shuffle\", '\\ue93e'),\n    STAND_BY(\"zondi-stand-by\", '\\ue93d'),\n    STAR_FULL(\"zondi-star-full\", '\\ue93c'),\n    STATION(\"zondi-station\", '\\ue93b'),\n    STEP_BACKWARD(\"zondi-step-backward\", '\\ue93a'),\n    STEP_FORWARD(\"zondi-step-forward\", '\\ue939'),\n    STETHOSCOPE(\"zondi-stethoscope\", '\\ue938'),\n    STORE_FRONT(\"zondi-store-front\", '\\ue937'),\n    STROKE_WIDTH(\"zondi-stroke-width\", '\\ue936'),\n    SUBDIRECTORY_LEFT(\"zondi-subdirectory-left\", '\\ue935'),\n    SUBDIRECTORY_RIGHT(\"zondi-subdirectory-right\", '\\ue934'),\n    SWAP(\"zondi-swap\", '\\ue933'),\n    TABLET(\"zondi-tablet\", '\\ue932'),\n    TAG(\"zondi-tag\", '\\ue931'),\n    TARGET(\"zondi-target\", '\\ue930'),\n    TEXT_BOX(\"zondi-text-box\", '\\ue92f'),\n    TEXT_DECORATION(\"zondi-text-decoration\", '\\ue92e'),\n    THERMOMETER(\"zondi-thermometer\", '\\ue92d'),\n    THUMBS_DOWN(\"zondi-thumbs-down\", '\\ue92c'),\n    THUMBS_UP(\"zondi-thumbs-up\", '\\ue92b'),\n    TICKET(\"zondi-ticket\", '\\ue92a'),\n    TIME(\"zondi-time\", '\\ue929'),\n    TIMER(\"zondi-timer\", '\\ue928'),\n    TOOLS_COPY(\"zondi-tools-copy\", '\\ue927'),\n    TRANSLATE(\"zondi-translate\", '\\ue926'),\n    TRASH(\"zondi-trash\", '\\ue925'),\n    TRAVEL(\"zondi-travel\", '\\ue91e'),\n    TRAVEL_BUS(\"zondi-travel-bus\", '\\ue924'),\n    TRAVEL_CAR(\"zondi-travel-car\", '\\ue923'),\n    TRAVEL_CASE(\"zondi-travel-case\", '\\ue922'),\n    TRAVEL_TAXI_CAB(\"zondi-travel-taxi-cab\", '\\ue921'),\n    TRAVEL_TRAIN(\"zondi-travel-train\", '\\ue920'),\n    TRAVEL_WALK(\"zondi-travel-walk\", '\\ue91f'),\n    TROPHY(\"zondi-trophy\", '\\ue91d'),\n    TUNING(\"zondi-tuning\", '\\ue91c'),\n    UPLOAD(\"zondi-upload\", '\\ue91b'),\n    USB(\"zondi-usb\", '\\ue91a'),\n    USER(\"zondi-user\", '\\ue915'),\n    USER_ADD(\"zondi-user-add\", '\\ue919'),\n    USER_GROUP(\"zondi-user-group\", '\\ue918'),\n    USER_SOLID_CIRCLE(\"zondi-user-solid-circle\", '\\ue917'),\n    USER_SOLID_SQUARE(\"zondi-user-solid-square\", '\\ue916'),\n    VECTOR(\"zondi-vector\", '\\ue914'),\n    VIDEO_CAMERA(\"zondi-video-camera\", '\\ue913'),\n    VIEW_CAROUSEL(\"zondi-view-carousel\", '\\ue912'),\n    VIEW_COLUMN(\"zondi-view-column\", '\\ue911'),\n    VIEW_HIDE(\"zondi-view-hide\", '\\ue910'),\n    VIEW_LIST(\"zondi-view-list\", '\\ue90f'),\n    VIEW_SHOW(\"zondi-view-show\", '\\ue90e'),\n    VIEW_TILE(\"zondi-view-tile\", '\\ue90d'),\n    VOLUME_DOWN(\"zondi-volume-down\", '\\ue90c'),\n    VOLUME_MUTE(\"zondi-volume-mute\", '\\ue90b'),\n    VOLUME_OFF(\"zondi-volume-off\", '\\ue90a'),\n    VOLUME_UP(\"zondi-volume-up\", '\\ue909'),\n    WALLET(\"zondi-wallet\", '\\ue908'),\n    WATCH(\"zondi-watch\", '\\ue907'),\n    WINDOW(\"zondi-window\", '\\ue904'),\n    WINDOW_NEW(\"zondi-window-new\", '\\ue906'),\n    WINDOW_OPEN(\"zondi-window-open\", '\\ue905'),\n    WRENCH(\"zondi-wrench\", '\\ue903'),\n    YIN_YANG(\"zondi-yin-yang\", '\\ue902'),\n    ZOOM_IN(\"zondi-zoom-in\", '\\ue901'),\n    ZOOM_OUT(\"zondi-zoom-out\", '\\ue900');\n\n    public static Zondicons findByDescription(String description) {\n        for (Zondicons font : values()) {\n            if (font.getDescription().equals(description)) {\n                return font;\n            }\n        }\n        throw new IllegalArgumentException(\"Icon description '\" + description + \"' is invalid!\");\n    }\n\n    private final String description;\n    private final int code;\n\n    Zondicons(String description, int code) {\n        this.description = description;\n        this.code = code;\n    }\n\n    @Override\n    public String getDescription() {\n        return description;\n    }\n\n    @Override\n    public int getCode() {\n        return code;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-zondicons-pack/src/main/java/org/kordamp/ikonli/zondicons/ZondiconsIkonHandler.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.zondicons;\n\nimport org.kordamp.ikonli.AbstractIkonHandler;\nimport org.kordamp.ikonli.Ikon;\nimport org.kordamp.ikonli.IkonHandler;\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\nimport org.osgi.service.component.annotations.Component;\n\nimport java.io.InputStream;\nimport java.net.URL;\n\n/**\n * @author Loïc Sculier aka typhon0\n */\n@ServiceProviderFor(IkonHandler.class)\n@Component(service = IkonHandler.class)\npublic class ZondiconsIkonHandler extends AbstractIkonHandler {\n    private static final String FONT_RESOURCE = \"/META-INF/resources/zondicons/20170712/fonts/Zondicons.ttf\";\n\n    @Override\n    public boolean supports(String description) {\n        return description != null && description.startsWith(\"zondi-\");\n    }\n\n    @Override\n    public Ikon resolve(String description) {\n        return Zondicons.findByDescription(description);\n    }\n\n    @Override\n    public URL getFontResource() {\n        return getClass().getResource(FONT_RESOURCE);\n    }\n\n    @Override\n    public InputStream getFontResourceAsStream() {\n        return getClass().getResourceAsStream(FONT_RESOURCE);\n    }\n\n    @Override\n    public String getFontFamily() {\n        return \"Zondicons\";\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-zondicons-pack/src/main/java/org/kordamp/ikonli/zondicons/ZondiconsIkonProvider.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.zondicons;\n\nimport org.kordamp.ikonli.IkonProvider;\n\n/**\n * @author Andres Almiray\n */\n@org.kordamp.jipsy.annotations.ServiceProviderFor(IkonProvider.class)\n@org.osgi.service.component.annotations.Component(service = IkonProvider.class)\n@org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\npublic class ZondiconsIkonProvider implements IkonProvider<Zondicons> {\n    @Override\n    public Class<Zondicons> getIkon() {\n        return Zondicons.class;\n    }\n}"
  },
  {
    "path": "icon-packs/ikonli-zondicons-pack/src/main/resources/META-INF/resources/zondicons/20170712/css/zondicons.css",
    "content": "@font-face {\n    font-family: 'Zondicons';\n    src: url('../fonts/Zondicons.eot?oxca15');\n    src: url('../fonts/Zondicons.eot?oxca15#iefix') format('embedded-opentype'),\n    url('../fonts/Zondicons.ttf?oxca15') format('truetype'),\n    url('../fonts/Zondicons.woff?oxca15') format('woff'),\n    url('../fonts/Zondicons.svg?oxca15#Zondicons') format('svg');\n    font-weight: normal;\n    font-style: normal;\n}\n\n[class^=\"zondi-\"], [class*=\" zondi-\"] {\n    /* use !important to prevent issues with browser extensions that change fonts */\n    font-family: 'Zondicons' !important;\n    speak: none;\n    font-style: normal;\n    font-weight: normal;\n    font-variant: normal;\n    text-transform: none;\n    line-height: 1;\n\n    /* Better Font Rendering =========== */\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n}\n\n.zondi-zoom-out:before {\n    content: \"\\e900\";\n}\n\n.zondi-zoom-in:before {\n    content: \"\\e901\";\n}\n\n.zondi-yin-yang:before {\n    content: \"\\e902\";\n}\n\n.zondi-wrench:before {\n    content: \"\\e903\";\n}\n\n.zondi-window:before {\n    content: \"\\e904\";\n}\n\n.zondi-window-open:before {\n    content: \"\\e905\";\n}\n\n.zondi-window-new:before {\n    content: \"\\e906\";\n}\n\n.zondi-watch:before {\n    content: \"\\e907\";\n}\n\n.zondi-wallet:before {\n    content: \"\\e908\";\n}\n\n.zondi-volume-up:before {\n    content: \"\\e909\";\n}\n\n.zondi-volume-off:before {\n    content: \"\\e90a\";\n}\n\n.zondi-volume-mute:before {\n    content: \"\\e90b\";\n}\n\n.zondi-volume-down:before {\n    content: \"\\e90c\";\n}\n\n.zondi-view-tile:before {\n    content: \"\\e90d\";\n}\n\n.zondi-view-show:before {\n    content: \"\\e90e\";\n}\n\n.zondi-view-list:before {\n    content: \"\\e90f\";\n}\n\n.zondi-view-hide:before {\n    content: \"\\e910\";\n}\n\n.zondi-view-column:before {\n    content: \"\\e911\";\n}\n\n.zondi-view-carousel:before {\n    content: \"\\e912\";\n}\n\n.zondi-video-camera:before {\n    content: \"\\e913\";\n}\n\n.zondi-vector:before {\n    content: \"\\e914\";\n}\n\n.zondi-user:before {\n    content: \"\\e915\";\n}\n\n.zondi-user-solid-square:before {\n    content: \"\\e916\";\n}\n\n.zondi-user-solid-circle:before {\n    content: \"\\e917\";\n}\n\n.zondi-user-group:before {\n    content: \"\\e918\";\n}\n\n.zondi-user-add:before {\n    content: \"\\e919\";\n}\n\n.zondi-usb:before {\n    content: \"\\e91a\";\n}\n\n.zondi-upload:before {\n    content: \"\\e91b\";\n}\n\n.zondi-tuning:before {\n    content: \"\\e91c\";\n}\n\n.zondi-trophy:before {\n    content: \"\\e91d\";\n}\n\n.zondi-travel:before {\n    content: \"\\e91e\";\n}\n\n.zondi-travel-walk:before {\n    content: \"\\e91f\";\n}\n\n.zondi-travel-train:before {\n    content: \"\\e920\";\n}\n\n.zondi-travel-taxi-cab:before {\n    content: \"\\e921\";\n}\n\n.zondi-travel-case:before {\n    content: \"\\e922\";\n}\n\n.zondi-travel-car:before {\n    content: \"\\e923\";\n}\n\n.zondi-travel-bus:before {\n    content: \"\\e924\";\n}\n\n.zondi-trash:before {\n    content: \"\\e925\";\n}\n\n.zondi-translate:before {\n    content: \"\\e926\";\n}\n\n.zondi-tools-copy:before {\n    content: \"\\e927\";\n}\n\n.zondi-timer:before {\n    content: \"\\e928\";\n}\n\n.zondi-time:before {\n    content: \"\\e929\";\n}\n\n.zondi-ticket:before {\n    content: \"\\e92a\";\n}\n\n.zondi-thumbs-up:before {\n    content: \"\\e92b\";\n}\n\n.zondi-thumbs-down:before {\n    content: \"\\e92c\";\n}\n\n.zondi-thermometer:before {\n    content: \"\\e92d\";\n}\n\n.zondi-text-decoration:before {\n    content: \"\\e92e\";\n}\n\n.zondi-text-box:before {\n    content: \"\\e92f\";\n}\n\n.zondi-target:before {\n    content: \"\\e930\";\n}\n\n.zondi-tag:before {\n    content: \"\\e931\";\n}\n\n.zondi-tablet:before {\n    content: \"\\e932\";\n}\n\n.zondi-swap:before {\n    content: \"\\e933\";\n}\n\n.zondi-subdirectory-right:before {\n    content: \"\\e934\";\n}\n\n.zondi-subdirectory-left:before {\n    content: \"\\e935\";\n}\n\n.zondi-stroke-width:before {\n    content: \"\\e936\";\n}\n\n.zondi-store-front:before {\n    content: \"\\e937\";\n}\n\n.zondi-stethoscope:before {\n    content: \"\\e938\";\n}\n\n.zondi-step-forward:before {\n    content: \"\\e939\";\n}\n\n.zondi-step-backward:before {\n    content: \"\\e93a\";\n}\n\n.zondi-station:before {\n    content: \"\\e93b\";\n}\n\n.zondi-star-full:before {\n    content: \"\\e93c\";\n}\n\n.zondi-stand-by:before {\n    content: \"\\e93d\";\n}\n\n.zondi-shuffle:before {\n    content: \"\\e93e\";\n}\n\n.zondi-show-sidebar:before {\n    content: \"\\e93f\";\n}\n\n.zondi-shopping-cart:before {\n    content: \"\\e940\";\n}\n\n.zondi-shield:before {\n    content: \"\\e941\";\n}\n\n.zondi-share:before {\n    content: \"\\e942\";\n}\n\n.zondi-share-alt:before {\n    content: \"\\e943\";\n}\n\n.zondi-share-01:before {\n    content: \"\\e944\";\n}\n\n.zondi-servers:before {\n    content: \"\\e945\";\n}\n\n.zondi-send:before {\n    content: \"\\e946\";\n}\n\n.zondi-search:before {\n    content: \"\\e947\";\n}\n\n.zondi-screen-full:before {\n    content: \"\\e948\";\n}\n\n.zondi-save-disk:before {\n    content: \"\\e949\";\n}\n\n.zondi-repost:before {\n    content: \"\\e94a\";\n}\n\n.zondi-reply:before {\n    content: \"\\e94b\";\n}\n\n.zondi-reply-all:before {\n    content: \"\\e94c\";\n}\n\n.zondi-reload:before {\n    content: \"\\e94d\";\n}\n\n.zondi-refresh:before {\n    content: \"\\e94e\";\n}\n\n.zondi-radio:before {\n    content: \"\\e94f\";\n}\n\n.zondi-radar:before {\n    content: \"\\e950\";\n}\n\n.zondi-radar-copy-2:before {\n    content: \"\\e951\";\n}\n\n.zondi-queue:before {\n    content: \"\\e952\";\n}\n\n.zondi-question:before {\n    content: \"\\e953\";\n}\n\n.zondi-pylon:before {\n    content: \"\\e954\";\n}\n\n.zondi-printer:before {\n    content: \"\\e955\";\n}\n\n.zondi-portfolio:before {\n    content: \"\\e956\";\n}\n\n.zondi-plugin:before {\n    content: \"\\e957\";\n}\n\n.zondi-playlist:before {\n    content: \"\\e958\";\n}\n\n.zondi-play:before {\n    content: \"\\e959\";\n}\n\n.zondi-play-outline:before {\n    content: \"\\e95a\";\n}\n\n.zondi-pin:before {\n    content: \"\\e95b\";\n}\n\n.zondi-php-elephant:before {\n    content: \"\\e95c\";\n}\n\n.zondi-photo:before {\n    content: \"\\e95d\";\n}\n\n.zondi-phone:before {\n    content: \"\\e95e\";\n}\n\n.zondi-pen-tool:before {\n    content: \"\\e95f\";\n}\n\n.zondi-pause:before {\n    content: \"\\e960\";\n}\n\n.zondi-pause-solid:before {\n    content: \"\\e961\";\n}\n\n.zondi-pause-outline:before {\n    content: \"\\e962\";\n}\n\n.zondi-paste:before {\n    content: \"\\e963\";\n}\n\n.zondi-notifications:before {\n    content: \"\\e964\";\n}\n\n.zondi-notifications-outline:before {\n    content: \"\\e965\";\n}\n\n.zondi-notification:before {\n    content: \"\\e966\";\n}\n\n.zondi-news-paper:before {\n    content: \"\\e967\";\n}\n\n.zondi-network:before {\n    content: \"\\e968\";\n}\n\n.zondi-navigation-more:before {\n    content: \"\\e969\";\n}\n\n.zondi-music-playlist:before {\n    content: \"\\e96a\";\n}\n\n.zondi-music-notes:before {\n    content: \"\\e96b\";\n}\n\n.zondi-music-artist:before {\n    content: \"\\e96c\";\n}\n\n.zondi-music-album:before {\n    content: \"\\e96d\";\n}\n\n.zondi-mouse:before {\n    content: \"\\e96e\";\n}\n\n.zondi-mood-sad-solid:before {\n    content: \"\\e96f\";\n}\n\n.zondi-mood-sad-outline:before {\n    content: \"\\e970\";\n}\n\n.zondi-mood-neutral-solid:before {\n    content: \"\\e971\";\n}\n\n.zondi-mood-neutral-outline:before {\n    content: \"\\e972\";\n}\n\n.zondi-mood-happy-solid:before {\n    content: \"\\e973\";\n}\n\n.zondi-mood-happy-outline:before {\n    content: \"\\e974\";\n}\n\n.zondi-mobile-devices:before {\n    content: \"\\e975\";\n}\n\n.zondi-minus-solid:before {\n    content: \"\\e976\";\n}\n\n.zondi-minus-outline:before {\n    content: \"\\e977\";\n}\n\n.zondi-mic:before {\n    content: \"\\e978\";\n}\n\n.zondi-menu:before {\n    content: \"\\e979\";\n}\n\n.zondi-map:before {\n    content: \"\\e97a\";\n}\n\n.zondi-lock-open:before {\n    content: \"\\e97b\";\n}\n\n.zondi-lock-closed:before {\n    content: \"\\e97c\";\n}\n\n.zondi-location:before {\n    content: \"\\e97d\";\n}\n\n.zondi-location-shopping:before {\n    content: \"\\e97e\";\n}\n\n.zondi-location-restroom:before {\n    content: \"\\e97f\";\n}\n\n.zondi-location-park:before {\n    content: \"\\e980\";\n}\n\n.zondi-location-marina:before {\n    content: \"\\e981\";\n}\n\n.zondi-location-hotel:before {\n    content: \"\\e982\";\n}\n\n.zondi-location-gas-station:before {\n    content: \"\\e983\";\n}\n\n.zondi-location-food:before {\n    content: \"\\e984\";\n}\n\n.zondi-location-current:before {\n    content: \"\\e985\";\n}\n\n.zondi-load-balancer:before {\n    content: \"\\e986\";\n}\n\n.zondi-list:before {\n    content: \"\\e987\";\n}\n\n.zondi-list-bullet:before {\n    content: \"\\e988\";\n}\n\n.zondi-list-add:before {\n    content: \"\\e989\";\n}\n\n.zondi-link:before {\n    content: \"\\e98a\";\n}\n\n.zondi-light-bulb:before {\n    content: \"\\e98b\";\n}\n\n.zondi-library:before {\n    content: \"\\e98c\";\n}\n\n.zondi-layers:before {\n    content: \"\\e98d\";\n}\n\n.zondi-keyboard:before {\n    content: \"\\e98e\";\n}\n\n.zondi-key:before {\n    content: \"\\e98f\";\n}\n\n.zondi-information-solid:before {\n    content: \"\\e990\";\n}\n\n.zondi-information-outline:before {\n    content: \"\\e991\";\n}\n\n.zondi-indent-increase:before {\n    content: \"\\e992\";\n}\n\n.zondi-indent-decrease:before {\n    content: \"\\e993\";\n}\n\n.zondi-inbox:before {\n    content: \"\\e994\";\n}\n\n.zondi-inbox-full:before {\n    content: \"\\e995\";\n}\n\n.zondi-inbox-download:before {\n    content: \"\\e996\";\n}\n\n.zondi-inbox-check:before {\n    content: \"\\e997\";\n}\n\n.zondi-hour-glass:before {\n    content: \"\\e998\";\n}\n\n.zondi-hot:before {\n    content: \"\\e999\";\n}\n\n.zondi-home:before {\n    content: \"\\e99a\";\n}\n\n.zondi-heart:before {\n    content: \"\\e99b\";\n}\n\n.zondi-headphones:before {\n    content: \"\\e99c\";\n}\n\n.zondi-hard-drive:before {\n    content: \"\\e99d\";\n}\n\n.zondi-hand-stop:before {\n    content: \"\\e99e\";\n}\n\n.zondi-globe:before {\n    content: \"\\e99f\";\n}\n\n.zondi-gift:before {\n    content: \"\\e9a0\";\n}\n\n.zondi-forward:before {\n    content: \"\\e9a1\";\n}\n\n.zondi-forward-step:before {\n    content: \"\\e9a2\";\n}\n\n.zondi-format-underline:before {\n    content: \"\\e9a3\";\n}\n\n.zondi-format-text-size:before {\n    content: \"\\e9a4\";\n}\n\n.zondi-format-italic:before {\n    content: \"\\e9a5\";\n}\n\n.zondi-format-font-size:before {\n    content: \"\\e9a6\";\n}\n\n.zondi-format-bold:before {\n    content: \"\\e9a7\";\n}\n\n.zondi-folder:before {\n    content: \"\\e9a8\";\n}\n\n.zondi-folder-outline:before {\n    content: \"\\e9a9\";\n}\n\n.zondi-folder-outline-add:before {\n    content: \"\\e9aa\";\n}\n\n.zondi-flashlight:before {\n    content: \"\\e9ab\";\n}\n\n.zondi-flag:before {\n    content: \"\\e9ac\";\n}\n\n.zondi-filter:before {\n    content: \"\\e9ad\";\n}\n\n.zondi-film:before {\n    content: \"\\e9ae\";\n}\n\n.zondi-fast-rewind:before {\n    content: \"\\e9af\";\n}\n\n.zondi-fast-forward:before {\n    content: \"\\e9b0\";\n}\n\n.zondi-factory:before {\n    content: \"\\e9b1\";\n}\n\n.zondi-explore:before {\n    content: \"\\e9b2\";\n}\n\n.zondi-exclamation-solid:before {\n    content: \"\\e9b3\";\n}\n\n.zondi-exclamation-outline:before {\n    content: \"\\e9b4\";\n}\n\n.zondi-envelope:before {\n    content: \"\\e9b5\";\n}\n\n.zondi-education:before {\n    content: \"\\e9b6\";\n}\n\n.zondi-edit-pencil:before {\n    content: \"\\e9b7\";\n}\n\n.zondi-edit-cut:before {\n    content: \"\\e9b8\";\n}\n\n.zondi-edit-crop:before {\n    content: \"\\e9b9\";\n}\n\n.zondi-edit-copy:before {\n    content: \"\\e9ba\";\n}\n\n.zondi-duplicate:before {\n    content: \"\\e9bb\";\n}\n\n.zondi-download:before {\n    content: \"\\e9bc\";\n}\n\n.zondi-dots-horizontal-triple:before {\n    content: \"\\e9bd\";\n}\n\n.zondi-dots-horizontal-double:before {\n    content: \"\\e9be\";\n}\n\n.zondi-document:before {\n    content: \"\\e9bf\";\n}\n\n.zondi-document-add:before {\n    content: \"\\e9c0\";\n}\n\n.zondi-directions:before {\n    content: \"\\e9c1\";\n}\n\n.zondi-dial-pad:before {\n    content: \"\\e9c2\";\n}\n\n.zondi-date-add:before {\n    content: \"\\e9c3\";\n}\n\n.zondi-dashboard:before {\n    content: \"\\e9c4\";\n}\n\n.zondi-currency-dollar:before {\n    content: \"\\e9c5\";\n}\n\n.zondi-credit-card:before {\n    content: \"\\e9c6\";\n}\n\n.zondi-copy:before {\n    content: \"\\e9c7\";\n}\n\n.zondi-conversation:before {\n    content: \"\\e9c8\";\n}\n\n.zondi-computer-laptop:before {\n    content: \"\\e9c9\";\n}\n\n.zondi-computer-desktop:before {\n    content: \"\\e9ca\";\n}\n\n.zondi-compose:before {\n    content: \"\\e9cb\";\n}\n\n.zondi-color-palette:before {\n    content: \"\\e9cc\";\n}\n\n.zondi-cog:before {\n    content: \"\\e9cd\";\n}\n\n.zondi-coffee:before {\n    content: \"\\e9ce\";\n}\n\n.zondi-code:before {\n    content: \"\\e9cf\";\n}\n\n.zondi-cloud:before {\n    content: \"\\e9d0\";\n}\n\n.zondi-cloud-upload:before {\n    content: \"\\e9d1\";\n}\n\n.zondi-close:before {\n    content: \"\\e9d2\";\n}\n\n.zondi-close-solid:before {\n    content: \"\\e9d3\";\n}\n\n.zondi-close-outline:before {\n    content: \"\\e9d4\";\n}\n\n.zondi-clipboard:before {\n    content: \"\\e9d5\";\n}\n\n.zondi-cheveron-up:before {\n    content: \"\\e9d6\";\n}\n\n.zondi-cheveron-right:before {\n    content: \"\\e9d7\";\n}\n\n.zondi-cheveron-outline-up:before {\n    content: \"\\e9d8\";\n}\n\n.zondi-cheveron-outline-right:before {\n    content: \"\\e9d9\";\n}\n\n.zondi-cheveron-outline-left:before {\n    content: \"\\e9da\";\n}\n\n.zondi-cheveron-outline-down:before {\n    content: \"\\e9db\";\n}\n\n.zondi-cheveron-left:before {\n    content: \"\\e9dc\";\n}\n\n.zondi-cheveron-down:before {\n    content: \"\\e9dd\";\n}\n\n.zondi-checkmark:before {\n    content: \"\\e9de\";\n}\n\n.zondi-checkmark-outline:before {\n    content: \"\\e9df\";\n}\n\n.zondi-chat-bubble-dots:before {\n    content: \"\\e9e0\";\n}\n\n.zondi-chart:before {\n    content: \"\\e9e1\";\n}\n\n.zondi-chart-pie:before {\n    content: \"\\e9e2\";\n}\n\n.zondi-chart-bar:before {\n    content: \"\\e9e3\";\n}\n\n.zondi-camera:before {\n    content: \"\\e9e4\";\n}\n\n.zondi-calendar:before {\n    content: \"\\e9e5\";\n}\n\n.zondi-calculator:before {\n    content: \"\\e9e6\";\n}\n\n.zondi-buoy:before {\n    content: \"\\e9e7\";\n}\n\n.zondi-bug:before {\n    content: \"\\e9e8\";\n}\n\n.zondi-browser-window:before {\n    content: \"\\e9e9\";\n}\n\n.zondi-browser-window-open:before {\n    content: \"\\e9ea\";\n}\n\n.zondi-browser-window-new:before {\n    content: \"\\e9eb\";\n}\n\n.zondi-brightness-up:before {\n    content: \"\\e9ec\";\n}\n\n.zondi-brightness-down:before {\n    content: \"\\e9ed\";\n}\n\n.zondi-box:before {\n    content: \"\\e9ee\";\n}\n\n.zondi-border-vertical:before {\n    content: \"\\e9ef\";\n}\n\n.zondi-border-top:before {\n    content: \"\\e9f0\";\n}\n\n.zondi-border-right:before {\n    content: \"\\e9f1\";\n}\n\n.zondi-border-outer:before {\n    content: \"\\e9f2\";\n}\n\n.zondi-border-none:before {\n    content: \"\\e9f3\";\n}\n\n.zondi-border-left:before {\n    content: \"\\e9f4\";\n}\n\n.zondi-border-inner:before {\n    content: \"\\e9f5\";\n}\n\n.zondi-border-horizontal:before {\n    content: \"\\e9f6\";\n}\n\n.zondi-border-bottom:before {\n    content: \"\\e9f7\";\n}\n\n.zondi-border-all:before {\n    content: \"\\e9f8\";\n}\n\n.zondi-bookmark:before {\n    content: \"\\e9f9\";\n}\n\n.zondi-bookmark-outline:before {\n    content: \"\\e9fa\";\n}\n\n.zondi-bookmark-outline-add:before {\n    content: \"\\e9fb\";\n}\n\n.zondi-bookmark-copy-3:before {\n    content: \"\\e9fc\";\n}\n\n.zondi-bookmark-copy-2:before {\n    content: \"\\e9fd\";\n}\n\n.zondi-book-reference:before {\n    content: \"\\e9fe\";\n}\n\n.zondi-bolt:before {\n    content: \"\\e9ff\";\n}\n\n.zondi-bluetooth:before {\n    content: \"\\ea00\";\n}\n\n.zondi-block:before {\n    content: \"\\ea01\";\n}\n\n.zondi-beverage:before {\n    content: \"\\ea02\";\n}\n\n.zondi-battery-low:before {\n    content: \"\\ea03\";\n}\n\n.zondi-battery-half:before {\n    content: \"\\ea04\";\n}\n\n.zondi-battery-full:before {\n    content: \"\\ea05\";\n}\n\n.zondi-badge:before {\n    content: \"\\ea06\";\n}\n\n.zondi-backward:before {\n    content: \"\\ea07\";\n}\n\n.zondi-backward-step:before {\n    content: \"\\ea08\";\n}\n\n.zondi-backspace:before {\n    content: \"\\ea09\";\n}\n\n.zondi-attachment:before {\n    content: \"\\ea0a\";\n}\n\n.zondi-at-symbol:before {\n    content: \"\\ea0b\";\n}\n\n.zondi-artist:before {\n    content: \"\\ea0c\";\n}\n\n.zondi-arrow-up:before {\n    content: \"\\ea0d\";\n}\n\n.zondi-arrow-thin-up:before {\n    content: \"\\ea0e\";\n}\n\n.zondi-arrow-thin-right:before {\n    content: \"\\ea0f\";\n}\n\n.zondi-arrow-thin-left:before {\n    content: \"\\ea10\";\n}\n\n.zondi-arrow-thin-down:before {\n    content: \"\\ea11\";\n}\n\n.zondi-arrow-thick-up:before {\n    content: \"\\ea12\";\n}\n\n.zondi-arrow-thick-right:before {\n    content: \"\\ea13\";\n}\n\n.zondi-arrow-thick-left:before {\n    content: \"\\ea14\";\n}\n\n.zondi-arrow-thick-down:before {\n    content: \"\\ea15\";\n}\n\n.zondi-arrow-right:before {\n    content: \"\\ea16\";\n}\n\n.zondi-arrow-outline-up:before {\n    content: \"\\ea17\";\n}\n\n.zondi-arrow-outline-right:before {\n    content: \"\\ea18\";\n}\n\n.zondi-arrow-outline-left:before {\n    content: \"\\ea19\";\n}\n\n.zondi-arrow-outline-down:before {\n    content: \"\\ea1a\";\n}\n\n.zondi-arrow-left:before {\n    content: \"\\ea1b\";\n}\n\n.zondi-arrow-down:before {\n    content: \"\\ea1c\";\n}\n\n.zondi-apparel:before {\n    content: \"\\ea1d\";\n}\n\n.zondi-announcement:before {\n    content: \"\\ea1e\";\n}\n\n.zondi-anchor:before {\n    content: \"\\ea1f\";\n}\n\n.zondi-align-right:before {\n    content: \"\\ea20\";\n}\n\n.zondi-align-left:before {\n    content: \"\\ea21\";\n}\n\n.zondi-align-justified:before {\n    content: \"\\ea22\";\n}\n\n.zondi-align-center:before {\n    content: \"\\ea23\";\n}\n\n.zondi-album:before {\n    content: \"\\ea24\";\n}\n\n.zondi-airplane:before {\n    content: \"\\ea25\";\n}\n\n.zondi-adjust:before {\n    content: \"\\ea26\";\n}\n\n.zondi-add-solid:before {\n    content: \"\\ea27\";\n}\n\n.zondi-add-outline:before {\n    content: \"\\ea28\";\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-annotations/gradle.properties",
    "content": "#\n# SPDX-License-Identifier: Apache-2.0\n#\n# Copyright 2015-2025 Andres Almiray\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\nproject_description = Ikonli NativeImage Annotations"
  },
  {
    "path": "infra/ikonli-nativeimage-annotations/ikonli-nativeimage-annotations.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nconfig {\n    publishing {\n        enabled = false\n    }\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-annotations/src/main/java/module-info.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nmodule org.kordamp.ikonli.infra.nativeimage.annotations {\n    exports org.kordamp.ikonli.infra.nativeimage.annotations;\n}"
  },
  {
    "path": "infra/ikonli-nativeimage-annotations/src/main/java/org/kordamp/ikonli/infra/nativeimage/annotations/NativeImage.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.annotations;\n\nimport java.lang.annotation.Documented;\nimport java.lang.annotation.ElementType;\nimport java.lang.annotation.Retention;\nimport java.lang.annotation.RetentionPolicy;\nimport java.lang.annotation.Target;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\n@Documented\n@Retention(RetentionPolicy.SOURCE)\n@Target(ElementType.TYPE)\npublic @interface NativeImage {\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-annotations/src/main/java/org/kordamp/ikonli/infra/nativeimage/annotations/ProxyConfig.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.annotations;\n\nimport java.lang.annotation.Documented;\nimport java.lang.annotation.ElementType;\nimport java.lang.annotation.Retention;\nimport java.lang.annotation.RetentionPolicy;\nimport java.lang.annotation.Target;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\n@Documented\n@Retention(RetentionPolicy.SOURCE)\n@Target(ElementType.TYPE)\npublic @interface ProxyConfig {\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-annotations/src/main/java/org/kordamp/ikonli/infra/nativeimage/annotations/ReflectConfig.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.annotations;\n\nimport java.lang.annotation.Documented;\nimport java.lang.annotation.ElementType;\nimport java.lang.annotation.Retention;\nimport java.lang.annotation.RetentionPolicy;\nimport java.lang.annotation.Target;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\n@Documented\n@Retention(RetentionPolicy.SOURCE)\n@Target(ElementType.TYPE)\npublic @interface ReflectConfig {\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/gradle.properties",
    "content": "#\n# SPDX-License-Identifier: Apache-2.0\n#\n# Copyright 2015-2025 Andres Almiray\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     http://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\nproject_description = Ikonli NativeImage Processor"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/ikonli-nativeimage-processor.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nconfig {\n    publishing {\n        enabled = false\n    }\n}\n\ndependencies {\n    api project(':ikonli-nativeimage-annotations')\n\n    compileOnly \"org.kordamp.jipsy:jipsy-annotations:${jipsyVersion}\"\n    annotationProcessor \"org.kordamp.jipsy:jipsy-processor:${jipsyVersion}\"\n}"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/src/main/java/org/kordamp/ikonli/infra/nativeimage/processor/AbstractCompositeGeneratorProcessor.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.processor;\n\nimport java.util.ArrayList;\nimport java.util.List;\n\nimport static org.kordamp.ikonli.infra.nativeimage.processor.ProcessorUtil.stacktrace;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\nabstract class AbstractCompositeGeneratorProcessor extends AbstractNativeImageProcessor {\n    protected final List<Generator> generators = new ArrayList<>();\n\n    @Override\n    protected void process(Context context) {\n        try {\n            for (Generator generator : generators) {\n                generator.generate(context);\n            }\n        } catch (Exception e) {\n            fatalError(stacktrace(e));\n        }\n    }\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/src/main/java/org/kordamp/ikonli/infra/nativeimage/processor/AbstractGenerator.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.processor;\n\nimport javax.lang.model.element.TypeElement;\nimport javax.lang.model.type.ArrayType;\nimport javax.lang.model.type.DeclaredType;\nimport javax.lang.model.type.TypeMirror;\nimport javax.lang.model.util.SimpleTypeVisitor8;\nimport javax.tools.Diagnostic;\nimport javax.tools.StandardLocation;\nimport java.util.Map;\n\nimport static org.kordamp.ikonli.infra.nativeimage.processor.ProcessorUtil.stacktrace;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\nabstract class AbstractGenerator implements Generator {\n    public static final String OPTION_VERBOSE = \"verbose\";\n\n    private final String fileName;\n    private final String disableKey;\n\n    protected AbstractGenerator(String fileName, String disableKey) {\n        this.fileName = fileName;\n        this.disableKey = disableKey;\n    }\n\n    @Override\n    public void generate(Context context) {\n        if (!enabled(context)) {\n            logInfo(context, \"is not enabled\");\n            return;\n        }\n\n        try {\n            String path = createRelativePath(context, fileName());\n            String text = generateConfig(context);\n            if (null != text && !text.isEmpty()) {\n                logInfo(context, \"writing to: \" + StandardLocation.CLASS_OUTPUT + \"/\" + path);\n                ProcessorUtil.generate(StandardLocation.CLASS_OUTPUT, path, text, context);\n            }\n        } catch (Exception e) {\n            fatalError(context, stacktrace(e));\n        }\n    }\n\n    protected abstract String generateConfig(Context context);\n\n    protected boolean enabled(Context context) {\n        Map<String, String> options = context.getProcessingEnv().getOptions();\n        return !options.containsKey(disableKey);\n    }\n\n    protected String fileName() {\n        return fileName;\n    }\n\n    protected String createRelativePath(Context context, String fileName) {\n        Map<String, String> options = context.getProcessingEnv().getOptions();\n        String id = options.get(Constants.OPTION_PROJECT_PATH);\n        String relativeName = Constants.BASE_PATH;\n        if (null == id) {\n            id = \"ikonli-generated\";\n        }\n        relativeName += id + \"/\";\n        return relativeName + fileName;\n    }\n\n    protected void logInfo(Context context, String msg) {\n        if (context.getProcessingEnv().getOptions().containsKey(OPTION_VERBOSE)) {\n            context.getProcessingEnv().getMessager().printMessage(Diagnostic.Kind.NOTE, getClass().getSimpleName() + \" \" + msg);\n        }\n    }\n\n    protected void fatalError(Context context, String msg) {\n        context.getProcessingEnv().getMessager().printMessage(Diagnostic.Kind.ERROR, \"FATAL ERROR: \" + msg);\n    }\n\n    protected String elementTypeName(TypeMirror typeMirror) {\n        String result = typeMirror.accept(new SimpleTypeVisitor8<String, Void>() {\n            @Override\n            public String visitDeclared(DeclaredType declaredType, Void aVoid) {\n                TypeElement typeElement = (TypeElement) declaredType.asElement();\n                if (typeElement.getNestingKind().isNested()) {\n                    return elementTypeName(typeElement.getEnclosingElement().asType()) + \"$\" + typeElement.getSimpleName();\n                }\n                return typeElement.getQualifiedName().toString();\n            }\n\n            @Override\n            public String visitArray(ArrayType arrayType, Void aVoid) {\n                return elementTypeName(arrayType.getComponentType()) + \"[]\";\n            }\n        }, null);\n        if (null == result) {\n            return typeMirror.toString();\n        }\n        return result;\n    }\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/src/main/java/org/kordamp/ikonli/infra/nativeimage/processor/AbstractNativeImageProcessor.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.processor;\n\nimport javax.annotation.processing.AbstractProcessor;\nimport javax.annotation.processing.RoundEnvironment;\nimport javax.annotation.processing.SupportedSourceVersion;\nimport javax.lang.model.SourceVersion;\nimport javax.lang.model.element.Element;\nimport javax.lang.model.element.TypeElement;\nimport javax.tools.Diagnostic;\nimport java.util.LinkedHashSet;\nimport java.util.Set;\n\nimport static org.kordamp.ikonli.infra.nativeimage.processor.ProcessorUtil.stacktrace;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\nabstract class AbstractNativeImageProcessor extends AbstractProcessor {\n    @Override\n    public SourceVersion getSupportedSourceVersion() {\n        SupportedSourceVersion ssv = this.getClass().getAnnotation(SupportedSourceVersion.class);\n        if (null == ssv) {\n            return SourceVersion.latest();\n        } else {\n            return ssv.value();\n        }\n    }\n\n    @Override\n    public boolean process(Set<? extends TypeElement> annotations, RoundEnvironment roundEnv) {\n        try {\n            Set<Element> elements = new LinkedHashSet<>();\n\n            for (Element rootElement : roundEnv.getRootElements()) {\n                elements.add(rootElement);\n                for (Element element : rootElement.getEnclosedElements()) {\n                    switch (element.getKind()) {\n                        case ENUM:\n                        case INTERFACE:\n                        case CLASS:\n                            elements.add(element);\n                            break;\n                        default:\n                            // noop\n                            break;\n                    }\n                }\n            }\n            if (!elements.isEmpty()) {\n                process(new Context(processingEnv, roundEnv, elements));\n            }\n            return false;\n        } catch (Exception e) {\n            fatalError(stacktrace(e));\n        }\n        return false;\n    }\n\n    protected abstract void process(Context context);\n\n    protected void fatalError(String msg) {\n        processingEnv.getMessager().printMessage(Diagnostic.Kind.ERROR, \"FATAL ERROR: \" + msg);\n    }\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/src/main/java/org/kordamp/ikonli/infra/nativeimage/processor/Constants.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.processor;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\npublic interface Constants {\n    String OPTION_PROJECT_PATH = \"projectPath\";\n    String BASE_PATH = \"META-INF/native-image/\";\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/src/main/java/org/kordamp/ikonli/infra/nativeimage/processor/Context.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.processor;\n\nimport javax.annotation.processing.ProcessingEnvironment;\nimport javax.annotation.processing.RoundEnvironment;\nimport javax.lang.model.element.Element;\nimport java.util.Collections;\nimport java.util.LinkedHashSet;\nimport java.util.Set;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\nclass Context {\n    private final ProcessingEnvironment processingEnv;\n    private final RoundEnvironment roundEnv;\n    private final Set<Element> elements = new LinkedHashSet<>();\n\n    public Context(ProcessingEnvironment processingEnv, RoundEnvironment roundEnv, Set<? extends Element> elements) {\n        this.processingEnv = processingEnv;\n        this.roundEnv = roundEnv;\n        this.elements.addAll(elements);\n    }\n\n    public ProcessingEnvironment getProcessingEnv() {\n        return processingEnv;\n    }\n\n    public RoundEnvironment getRoundEnv() {\n        return roundEnv;\n    }\n\n    public Set<Element> getElements() {\n        return Collections.unmodifiableSet(elements);\n    }\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/src/main/java/org/kordamp/ikonli/infra/nativeimage/processor/Generator.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.processor;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\npublic interface Generator {\n    void generate(Context context);\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/src/main/java/org/kordamp/ikonli/infra/nativeimage/processor/ProcessorUtil.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.processor;\n\nimport javax.lang.model.element.Element;\nimport javax.tools.FileObject;\nimport javax.tools.JavaFileManager.Location;\nimport java.io.IOException;\nimport java.io.PrintWriter;\nimport java.io.StringWriter;\nimport java.io.Writer;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\npublic final class ProcessorUtil {\n    private ProcessorUtil() {\n        // noop\n    }\n\n    static void generate(Location location, String fileName, String content, Context context) throws IOException {\n        if (null == content || content.isEmpty()) return;\n\n        FileObject resource = context.getProcessingEnv().getFiler().createResource(\n            location,\n            \"\",\n            fileName,\n            context.getElements().toArray(new Element[0]));\n\n        write(content, resource);\n    }\n\n    static void write(String text, FileObject resource) throws IOException {\n        Writer writer = null;\n        try {\n            writer = resource.openWriter();\n            writer.write(text);\n            writer.flush();\n        } finally {\n            if (null != writer) {\n                writer.close();\n            }\n        }\n    }\n\n    public static String stacktrace(Exception e) {\n        StringWriter writer = new StringWriter();\n        e.printStackTrace(new PrintWriter(writer));\n        return writer.toString();\n    }\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/src/main/java/org/kordamp/ikonli/infra/nativeimage/processor/ProxyConfigGenerator.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.processor;\n\nimport org.kordamp.ikonli.infra.nativeimage.annotations.ProxyConfig;\n\nimport javax.lang.model.element.Element;\nimport java.util.Set;\nimport java.util.TreeSet;\n\nimport static java.util.stream.Collectors.joining;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\nclass ProxyConfigGenerator extends AbstractGenerator {\n    public static final String OPTION_DISABLE = \"disable.proxy.config\";\n\n    public ProxyConfigGenerator() {\n        super(\"proxy-config.json\", OPTION_DISABLE);\n    }\n\n    @Override\n    protected String generateConfig(Context context) {\n        Set<String> collector = new TreeSet<>();\n\n        for (Element element : context.getElements()) {\n            if (null != element.getAnnotation(ProxyConfig.class)) {\n                String className = elementTypeName(element.asType());\n                collector.add(className);\n            }\n        }\n\n        if (collector.isEmpty()) return null;\n\n        return String.format(\"[%n\" +\n            \"  {%n\" +\n            \"    \\\"interfaces\\\": [%s]%n\" +\n            \"  }%n]\", collector.stream()\n            .map(c -> \"\\\"\" + c + \"\\\"\")\n            .collect(joining(\",\")));\n    }\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/src/main/java/org/kordamp/ikonli/infra/nativeimage/processor/ProxyConfigProcessor.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.processor;\n\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\n\nimport javax.annotation.processing.ProcessingEnvironment;\nimport javax.annotation.processing.Processor;\nimport javax.annotation.processing.SupportedAnnotationTypes;\nimport javax.annotation.processing.SupportedOptions;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\n@SupportedOptions({Constants.OPTION_PROJECT_PATH,\n    ProxyConfigGenerator.OPTION_DISABLE\n})\n@ServiceProviderFor(Processor.class)\n@SupportedAnnotationTypes({\"org.kordamp.ikonli.infra.nativeimage.annotations.ProxyConfig\"})\npublic class ProxyConfigProcessor extends AbstractCompositeGeneratorProcessor {\n    @Override\n    public synchronized void init(ProcessingEnvironment processingEnv) {\n        super.init(processingEnv);\n        generators.add(new ProxyConfigGenerator());\n    }\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/src/main/java/org/kordamp/ikonli/infra/nativeimage/processor/ReflectConfigGenerator.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.processor;\n\nimport javax.lang.model.element.Element;\nimport java.util.Map;\nimport java.util.TreeMap;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\nclass ReflectConfigGenerator extends AbstractGenerator {\n    public static final String OPTION_DISABLE = \"disable.reflect.config\";\n\n    public ReflectConfigGenerator() {\n        super(\"reflect-config.json\", OPTION_DISABLE);\n    }\n\n    @Override\n    protected String generateConfig(Context context) {\n        Map<String, String> collector = new TreeMap<>();\n\n        for (Element element : context.getElements()) {\n            String className = elementTypeName(element.asType());\n            if (!collector.containsKey(className)) {\n                switch (element.getKind()) {\n                    case INTERFACE:\n                        collector.put(className, formatInterface(className));\n                        break;\n                    case ENUM:\n                        collector.put(className, formatEnum(className));\n                        break;\n                    case CLASS:\n                        collector.put(className, formatClass(className));\n                        break;\n                    default:\n                        // noop\n                        break;\n                }\n            }\n        }\n\n        if (collector.isEmpty()) return null;\n        return \"[\\n\" + String.join(\"\\n,\\n\", collector.values()) + \"\\n]\";\n    }\n\n    private String formatInterface(String name) {\n        return String.format(\"\" +\n            \"  {%n\" +\n            \"    \\\"name\\\": \\\"%s\\\",%n\" +\n            \"    \\\"queryAllPublicMethods\\\": true%n\" +\n            \"  }\", name);\n    }\n\n    private String formatEnum(String name) {\n        return String.format(\"\" +\n            \"  {%n\" +\n            \"    \\\"name\\\": \\\"%s\\\",%n\" +\n            \"    \\\"allDeclaredFields\\\": true,%n\" +\n            \"    \\\"queryAllDeclaredMethods\\\": true%n\" +\n            \"  }\", name);\n    }\n\n    private String formatClass(String name) {\n        return String.format(\"\" +\n            \"  {%n\" +\n            \"    \\\"name\\\": \\\"%s\\\",%n\" +\n            \"    \\\"allDeclaredFields\\\": true,%n\" +\n            \"    \\\"allPublicConstructors\\\": true,%n\" +\n            \"    \\\"allPublicMethods\\\": true%n\" +\n            \"  }\", name);\n    }\n}\n"
  },
  {
    "path": "infra/ikonli-nativeimage-processor/src/main/java/org/kordamp/ikonli/infra/nativeimage/processor/ReflectConfigProcessor.java",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npackage org.kordamp.ikonli.infra.nativeimage.processor;\n\nimport org.kordamp.jipsy.annotations.ServiceProviderFor;\n\nimport javax.annotation.processing.ProcessingEnvironment;\nimport javax.annotation.processing.Processor;\nimport javax.annotation.processing.SupportedAnnotationTypes;\nimport javax.annotation.processing.SupportedOptions;\n\n/**\n * @author Andres Almiray\n * @since 12.4.0\n */\n@SupportedOptions({Constants.OPTION_PROJECT_PATH,\n    ReflectConfigGenerator.OPTION_DISABLE\n})\n@ServiceProviderFor(Processor.class)\n@SupportedAnnotationTypes({\"org.kordamp.ikonli.infra.nativeimage.annotations.NativeImage\"})\npublic class ReflectConfigProcessor extends AbstractCompositeGeneratorProcessor {\n    @Override\n    public synchronized void init(ProcessingEnvironment processingEnv) {\n        super.init(processingEnv);\n        generators.add(new ReflectConfigGenerator());\n    }\n}\n"
  },
  {
    "path": "jreleaser.yml",
    "content": "#\n# SPDX-License-Identifier: Apache-2.0\n#\n# Copyright 2015-2025 Andres Almiray.\n#\n# Licensed under the Apache License, Version 2.0 (the \"License\");\n# you may not use this file except in compliance with the License.\n# You may obtain a copy of the License at\n#\n#     https://www.apache.org/licenses/LICENSE-2.0\n#\n# Unless required by applicable law or agreed to in writing, software\n# distributed under the License is distributed on an \"AS IS\" BASIS,\n# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n# See the License for the specific language governing permissions and\n# limitations under the License.\n#\n\nenvironment:\n  properties:\n    artifactsDir: apps/ikonli-browser/build\n\nproject:\n  name: ikonli\n  description: Icon packs for Java applications\n  longDescription: Icon packs for Java applications\n  links:\n    homepage: https://kordamp.org/ikonli\n  authors:\n    - Andres Almiray\n  license: Apache-2.0\n  java:\n    groupId: org.kordamp.ikonli\n    mainClass: org.kordamp.ikonli.browser.Launcher\n    mainModule: org.kordamp.ikonli.browser\n    version: 11\n  inceptionYear: 2015\n  stereotype: CLI\n  snapshot:\n    label: '{{projectVersionNumber}}.EarlyAccess'\n\nrelease:\n  github:\n    overwrite: true\n    sign: true\n    branch: master\n    milestone:\n      name: '{{projectVersion}}'\n    issues:\n      enabled: true\n    changelog:\n      formatted: ALWAYS\n      preset: conventional-commits\n      contributors:\n        format: '- {{contributorName}}{{#contributorUsernameAsLink}} ({{.}}){{/contributorUsernameAsLink}}'\n      labelers:\n        - label: 'browser'\n          title: 'regex:^(?:browser(?:\\(.*\\))?!?):\\s.*'\n          order: 120\n        - label: 'dependencies'\n          title: 'regex:^(?:deps(?:\\(.*\\))?!?):\\s.*'\n          order: 130\n      categories:\n        - title: '🖥  Ikonli Browser'\n          key: 'browser'\n          order: 70\n          labels:\n            - 'i18n'\n        - title: '⚙️  Dependencies'\n          key: 'dependencies'\n          order: 80\n          labels:\n            - 'dependencies'\n      hide:\n        categories:\n          - 'merge'\n        contributors:\n          - 'GitHub'\n      replacers:\n        - search: 'browser: '\n        - search: 'deps: '\n\nsigning:\n  active: ALWAYS\n  armored: true\n\nannounce:\n  mastodon:\n    host: https://mastodon.social\n    active: RELEASE\n\ndeploy:\n  maven:\n    nexus2:\n      maven-central:\n        active: RELEASE\n        url: https://s01.oss.sonatype.org/service/local\n        closeRepository: true\n        releaseRepository: true\n        stagingRepositories:\n          - build/repos/local/release\n\ndistributions:\n  ikonli-browser:\n    type: JLINK\n    artifacts:\n      - path: '{{artifactsDir}}/distributions/ikonli-browser-{{projectVersion}}-osx-x86_64.zip'\n        transform: 'ikonli-browser/ikonli-browser-{{projectEffectiveVersion}}-osx-x86_64.zip'\n        platform: 'osx-x86_64'\n      - path: '{{artifactsDir}}/distributions/ikonli-browser-{{projectVersion}}-linux-x86_64.zip'\n        transform: 'ikonli-browser/ikonli-browser-{{projectEffectiveVersion}}-linux-x86_64.zip'\n        platform: 'linux-x86_64'\n      - path: '{{artifactsDir}}/distributions/ikonli-browser-{{projectVersion}}-windows-x86_64.zip'\n        transform: 'ikonli-browser/ikonli-browser-{{projectEffectiveVersion}}-windows-x86_64.zip'\n        platform: 'windows-x86_64'\n\n  ikonli-browser-pkg:\n    type: NATIVE_PACKAGE\n    artifacts:\n      - path: '{{artifactsDir}}/packagers/ikonli-browser-{{projectVersionNumber}}.dmg'\n        transform: 'ikonli-browser/ikonli-browser-{{projectEffectiveVersion}}-osx-x86_64.dmg'\n        platform: 'osx-x86_64'\n      - path: '{{artifactsDir}}/packagers/ikonli-browser-{{projectVersionNumber}}.pkg'\n        transform: 'ikonli-browser/ikonli-browser-{{projectEffectiveVersion}}-osx-x86_64.pkg'\n        platform: 'osx-x86_64'\n      - path: '{{artifactsDir}}/packagers/ikonli-browser-{{projectVersionNumber}}.msi'\n        transform: 'ikonli-browser/ikonli-browser-{{projectEffectiveVersion}}-windows-x86_64.msi'\n        platform: 'windows-x86_64'\n      - path: '{{artifactsDir}}/packagers/ikonli-browser-{{projectVersionNumber}}.exe'\n        transform: 'ikonli-browser/ikonli-browser-{{projectEffectiveVersion}}-windows-x86_64.exe'\n        platform: 'windows-x86_64'\n      - path: '{{artifactsDir}}/packagers/ikonli-browser-{{projectVersionNumber}}-1.x86_64.rpm'\n        transform: 'ikonli-browser/ikonli-browser-{{projectEffectiveVersion}}-1.x86_64.rpm'\n        platform: 'linux-x86_64'\n      #- path: '{{artifactsDir}}/packagers/ikonli-browser-{{projectVersionNumber}}-1_amd64.deb'\n      #  transform: 'ikonli-browser/ikonli-browser-{{projectEffectiveVersion}}-1_amd64.deb'\n      #  platform: 'linux-x86_64'\n"
  },
  {
    "path": "settings.gradle",
    "content": "/*\n * SPDX-License-Identifier: Apache-2.0\n *\n * Copyright 2015-2025 Andres Almiray\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n *     http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\npluginManagement {\n    repositories {\n        mavenLocal()\n        gradlePluginPortal()\n        mavenCentral()\n    }\n    plugins {\n        id 'org.kordamp.gradle.guide'   version kordampPluginVersion\n        id 'org.kordamp.gradle.bom'     version kordampPluginVersion\n        id 'org.ajoberstar.git-publish' version gitPluginVersion\n        id 'com.google.osdetector'      version osPluginVersion\n        id 'org.beryx.jlink'            version jlinkPluginVersion\n        id 'org.jreleaser.jdks'         version jreleaserPluginVersion\n    }\n}\n\nbuildscript {\n    repositories {\n        mavenLocal()\n        gradlePluginPortal()\n        mavenCentral()\n    }\n    dependencies {\n        classpath \"org.kordamp.gradle:kordamp-parentbuild:$kordampBuildVersion\"\n        classpath \"org.cyclonedx:cyclonedx-gradle-plugin:$cyclonedxPluginVersion\"\n        classpath \"biz.aQute.bnd.builder:biz.aQute.bnd.builder.gradle.plugin:$bndPluginVersion\"\n    }\n}\napply plugin: 'org.kordamp.gradle.kordamp-parentbuild'\n\nrootProject.name = 'ikonli'\n\nprojects {\n    directories = ['docs', 'core', 'icon-packs', 'apps', 'infra']\n\n    plugins {\n        all {\n            id 'idea'\n        }\n        path(':') {\n            id 'org.kordamp.gradle.java-project'\n        }\n        dirs(['apps', 'infra']) {\n            id 'java-library'\n        }\n        dirs(['core', 'icon-packs']) {\n            id 'java-library'\n            id 'biz.aQute.bnd.builder'\n            id 'org.cyclonedx.bom'\n        }\n    }\n}\n\nenforce {\n    mergeStrategy = 'append'\n\n    rule(enforcer.rules.BanDuplicateClasses) { r ->\n        r.ignoreWhenIdentical.set(true)\n        r.dependency(\"com.google.guava:guava:$guavaVersion\".toString()) { d->\n            d.ignore('com.google.common.*')\n        }\n    }\n\n    rule(enforcer.rules.ForceDependencies) { r ->\n        r.dependencies.addAll \"com.google.errorprone:error_prone_annotations:$errorproneVersion\",\n            \"com.google.guava:guava:$guavaVersion\"\n    }\n}"
  }
]